/* ######### CSS for PHP Photo Album itself ######### */
.transparent_class {
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.photodiv{ /*CSS for DIV containing each image*/
float: left;
margin-right: 10px;
margin-left: 10px;
margin-bottom: 35px;
}

.photodiv img{ /*CSS for each image tag*/
border: 4px solid #000000;
float: left;
margin-right: 0px;
width: 150px;
height: 200px;
cursor: hand;
cursor: pointer;
}

.albumnavlinks{ /*CSS for DIV containing the navigational links*/
}

.albumnavlinks a{ /*CSS for each navigational link*/
margin-right: 10px;
padding: 1px 5px;
border: 1px solid #14281d;
background-color: black;
text-decoration: none; 
color: #5c6a3b;
font-weight: bold;
}


.albumnavlinks a:hover, .albumnavlinks a.current{ /*CSS for currently selected navigational link*/
border: 1px solid #000000;
background-color: #222222;
color: #FFFFFF;
}

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

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

#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
font: bold 14px Tahoma;
letter-spacing: 5px;
line-height: 1.1em;
color: white;
padding: 5px 0;
text-align: center;
}


#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;
}