/* inline-block browser solution courtesy of http://www.webmasterworld.com/css/3649638.htm */

/* Images inserted by Picasa Image Express */
.pie-image{
  text-align:center;
}

/* Wrapper around a series of images */
.pie-gallery{
	margin-top:0.5em;
	margin-bottom:0.5em;
}

/* Wrapper around an image and a caption */
.pie-gallery HR{

}

/* Wrapper around an image and a caption */
.pie-item{
	display: -moz-inline-box; /* For FF<3 */ 
	-moz-box-orient: vertical; /* For FF<3 */ 
	display:inline-block; /*IE <8 needs this tripped back to display: inline; to make it work on block elements  */
	vertical-align: top; /* explicitly declare your preference as Moz inline-box auto aligns to top */
}

/* <P> containing an image or thumbnail */
.pie-img-wrapper{
	padding:0;
	margin:0;
       text-align: center;
color: rgb(153, 255, 255);
font-size: 13px;
font-style: italic;
line-height:16px;
width:576px;
padding-top:5px;
padding-bottom:10x;
}

/* <P> containing a caption */
.pie-caption{
   text-align: center;
color: rgb(153, 255, 255);
font-size: 13px;
font-style: italic;
line-height:16px;
width:576px;
padding-top:5px;
padding-bottom:5px;

}

/* Alignment options for single images */
.pie-img.alignleft,
.pie-item.alignleft{
	text-align:left;
}

.pie-img.alignright,
.pie-item.alignright{
		text-align:right;
}
.pie-img.aligncenter,
.pie-item.aligncenter{
		text-align:center;
        padding-bottom:15px;
}

/* Alignment options for galleries */
.pie-gallery.alignGalleryLeft{
	text-align:left;
}

.pie-gallery.alignGalleryRight{
	text-align:right;
}

.pie-gallery.alignGalleryCenter{
	text-align:center;
}

.pie-gallery.alignGalleryCenter .pie-caption{
	text-align:center;
	margin:0 auto;
}