/* ######### 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: 150px;
	height: 225px;
	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: #2e6ab1;
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;
	
}
#welcome h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
	color: #FF8400;
	font-size: 24px;
}
#welcome {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-right: auto;
	margin-left: auto;
	background-color: #333333;
	color: #999999;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	margin-bottom: 10px;
	text-align: justify;
	background-image: url(images/blkgrad.png);
	background-repeat: repeat-x;
	background-position: center bottom;
}
#container {
	width: 810px;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
	background-color: #000000;
}
#words {
	width: 65%;
	float: left;
}
#container #title {
	background-attachment: scroll;
	background-image: url(images/blkgradtop.png);
	background-position: center top;
	background-repeat: no-repeat;
	height: 160px;
	padding-left: 20px;
	padding-top: 20px;
	background-color: #333333;
}


/* Remove margins from the 'html' and 'body' tags, and ensure the page takes up full screen height */
html, body {height:100%; margin:0; padding:0;}
/* Set the position and dimensions of the background image. */
#page-background {position:fixed; top:0; left:0; width:100%; height:100%;}
/* Specify the position and layering for the content that needs to appear in front of the background image. Must have a higher z-index value than the background image. Also add some padding to compensate for removing the margin from the 'html' and 'body' tags. */
#content {position:relative; z-index:1;padding:10px;}
</style>
 The above code doesn't work in Internet Explorer 6. To address this, we use a conditional comment to specify an alternative style sheet for IE 6 
[if IE 6]>
<style type="text/css">
html {overflow-y:hidden;}
body {overflow-y:auto;}
#page-background {position:absolute; z-index:-1;}
#content {position:static;padding:10px;}


#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;
}
#container #gallery {
	width: 800px;
	padding-left: 10px;
}
#container #break_bar {
	background-color: #333333;
	padding-top: 45px;
	background-image: url(media/blockdefault.gif);
}
#bottom {
	background-color: #333333;
	height: auto;
	background-image: url(images/blkgradtop.png);
	background-repeat: repeat-x;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 25px;
	padding-left: 85px;
}

#twitter, #flickr, #scrnshots 						{
	width: 29%;
	float: right;
	min-width: 200px;
	height: 430px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	overflow: hidden;
	background-color: transparent;
	text-align: left;
	color: #999999;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
	margin-left: 5px;
}
