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

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

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

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

.albumnavlinks a{ /*CSS for each navigational link*/
	margin-right: 5px;
	padding: 1px 5px;
	border: 1px solid #9aafe5;
	text-decoration: none;
	color: transparent;
	font-weight: bold;
}


.albumnavlinks a:hover, .albumnavlinks a.current{ /*CSS for currently selected navigational link*/
	border: 0px solid #2b66a5;
}

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

#thumbBox{ /*Outermost DIV for thumbnail viewer*/
	position: absolute;
	left: 0px;
	top: 0;
	width: auto;
	padding: 8px;
	padding-bottom: 0;
	background: black;
	visibility: hidden;
	z-index: 10;
	cursor: hand;
	cursor: pointer;
	
}

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


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

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