/* ######### CSS for PHP Photo Album itself ######### */

.photodiv{
	/*CSS for DIV containing each image*/
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	font: "Comic Sans MS";
	font-size: 0.75em;
	text-align: center;
	color: #FF7010;
}

.photodiv img{
	/*CSS for each image tag*/
	border: 0;
	width: 190px;
	height: 140px;
	cursor: hand;
	cursor: pointer;
}

.albumnavlinks{
	/*CSS for DIV containing the navigational links*/
	text-align: center;
 white-space: 
}

.albumnavlinks a{
	/*CSS for each navigational link*/
	margin-right: 5px;
	margin-top: 10px;
	padding: 5px 15px 0 20px;
	/*border: 1px solid #9aafe5;*/
	text-decoration: none;
	color: #ffcc55;
	/*	font-weight: bold; */
	font-size: 1.25em;
	background-image: url(images/pic_button.png);
	background-repeat: no-repeat;
}

.albumnavlinks a:hover, .albumnavlinks a.current{
	border: 1px solid #ffcc55;
	background-color: transparent;
	background-position: top;
}

/* ######### CSS for thumbnail viewer plugin ######### */

#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 8px;
padding-bottom: 0;
background: #313131;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;  
box-shadow: 5px 5px #ffcc55; /* Experimental box shadow properties* original color = 818181 */ 
-webkit-box-shadow: 5px 5px #ffcc55;
-moz-box-shadow: 5px 5px #ffcc55;
-ms-filter: "progid:DXImageTransform.Microsoft.dropShadow(color=#ffcc55, offX=5, offY=5,  positive=true)"; /* IE8 drop shadow*/
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#ffcc55, offX=5, offY=5,  positive=true); /* IE drop shadow*/
}

#thumbBox .footerbar{
	/*Footer DIV of thumbbox that contains "close" link */
	font: bold 0.65em comic sans ms;
	letter-spacing: 5px;
	line-height: 1.1em;
	color: #FF7010;
	padding: 5px 0;
	text-align: right;
}


#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
background-color: white;
margin: 5px;
}

#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
position: absolute;
visibility: hidden;
border: 1px solid black;
background-color: #EFEFEF;
padding: 10px;
font: bold 14px Arial;
z-index: 5;
}