/* CSS Document */

/* Overall CSS properties */

body {
	margin:0;
	padding:0;
	color:#000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	min-width:750px;
	background: url(images/background.gif) repeat fixed;
    }

/* Overall Text Properties */
	
h1 {
	font: bold 110% Verdana, Arial, Helvetica, sans-serif;
	padding: 5px;
	margin: 10px;
	}

p {
	font-size: 90%;
	text-align: justify;
	padding: 0px;
	margin: 20px;
	}
	
/* Main Link Properties */

a:link {
	color: #cc0000;
	text-decoration: none;
	font-weight: bold;
	}
a:visited {
	color: #cc0000;
	text-decoration: none;
	font-weight: bold;
	}
a:hover {
	color: #cc0000;
	text-decoration: none;
	font-weight: bold;
	}
a:active {
	color: #cc0000;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	}

/*End Main link Properties */
	
/*End overall CSS Properties*/

/* CSS for Main Divs*/

#container {
	margin:0 auto;
	width:740px;
	border: thin solid #000000;
	background: #000000;
	}
	
#main {
	float: left;
	width: 100%;
	clear: both;
	padding: 0px;
	background: #FFFFFF;
	}
	
#main li {
	font-size: 90%;
	text-indent: 20px;
	}

#footer {
	clear: both;
	width: 100%;
	color: #FFFFFF;
	background: #000000;
	text-align: center;
	}

#footer p {
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	margin: 5px;
	}

/*End CSS for Main Divs */

/*Nav bar here*/
	
#nav {
	background:#000000;
	padding:5px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 110%;
    }
	
#nav ul{
	margin:0;
	padding:0;
	list-style:none;
	text-align: center;
    }
	
#nav li{
    display:inline;
    margin:0;
    padding:0;
    }
	
#nav ul {
	list-style: none;
	text-align: center;
	margin: 5px;
	color: #FFFFFF;
	}
	
#nav p {
	text-align: left;
	}

#nav li a
	{
	display: inline;
	text-decoration: none;
	list-style: none;
	text-align: center;
	white-space: nowrap;
	color: #FFFFFF;
	padding: 2px;
	} 

#nav li a:hover
	{
	display: inline;
	text-decoration: none;
	list-style: none;
	text-align: center;
	white-space: nowrap;
	color: #CC0000;
	padding: 2px;
	background-color: #000000;
	} 

#nav li a:active
	{
	display: inline;
	text-decoration: none;
	list-style: none;
	text-align: center;
	white-space: nowrap;
	color: #CC0000;
	padding: 2px;
	background-color: #000000;
	} 

/* end nav */

/* Image CSS */

img.floatRight {
	float: right;
	margin: 5px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
}

img.floatleft {
	float: left;
	margin: 4px;
	border: thin solid #000000;
}

a:link img.floatleft {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	}
	
a:visited img.floatleft {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	}
a:hover img.floatleft{
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	}
a:active img.floatleft {
	color: #000000;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	}
	

/*End CSS for images*/

/*Gallery CSS */

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid black;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid black;
}

/*CSS for enlarged image*/

.thumbnail span{ 
position: absolute;
background-color: #ffffff;
padding: 5px;
left: 0px;
border: 1px solid black;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ 
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ 
visibility: visible;
top: 0;
left: 300px; /*offsets large image horizontally */
z-index: 50;
}

/* End of Gallery CSS */
