/* The photo gallery depends on the fact that different browsers handle duplicate properties differently. So, this file can't be */
/* run through CSSTidy. Enclose the photo and caption each in their own span and enclose both in a paragraph. Also, set the */
/* width of the photo span. */

div.Gallery             {text-align: center;}
div.Gallery p           {display: inline;}

div.Gallery p > span    {display: table-cell;   /* gecko & Opera6- */
	                      display: inline-table; /* Safari & some other browsers */
                         display: inline-block; /* WinIE & some other browsers */
                         padding: 0.5em;
                         vertical-align: middle;}

div.Gallery p span span {display: block;}
