/* 

Our color scheme
gray 	#cccccc
green 	#669966
white	#ffffff
brown	#cccc99

*/

body
{
	font-family: verdana, arial; 
	color: #000000; 
	font-size : 10pt; 
	background-color: #cccc99;
}

/*
a:link {color: #000000; text-decoration: none;}
a:visited {color: #000000; text-decoration: none;}
a:hover	{color: #ffffff; text-decoration: underline;}

*/

a:link {color: #000000; text-decoration: underline;}
a:visited {color: #000000; text-decoration: underline;}
a:hover	{color: #ffffff; text-decoration: none;}

.linkSet {font-size: 14px; color: #000000;}
a:link.linkSet {text-decoration: none; color: #000000;}
a:visited.linkSet {text-decoration: none; color: #000000;}
a:hover.linkSet {text-decoration: underline; color: #ffffff;}

.smallBoxHeader {
	font-weight: bold;
	font-size: 11pt;
}

.newsHeader {
	font-weight: bold;
	font-size: 11pt;
	text-align: center;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

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

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

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

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

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #669966;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: -50px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

/* dynamicdrive image gallery */
.slideshow{ /*CSS for DIV containing each image*/
float: left;
width: 200px;
height: 270px;
}

.slideshow img{ /*Change "auto" below to a number (ie: 200px) to hard code dimensions of album images*/
width: 174px;
height: 146px;
}

#navlinks{ /*CSS for DIV containing the navigational links*/
width: 400px;
}

#navlinks a{ /*CSS for each navigational link*/
margin-right: 8px;
margin-bottom: 3px;
font-size: 75%;
}

#navlinks a.current{ /*CSS for currently selected navigational link*/
/* background-color: #669966; */
text-decoration: none;
font-weight: bold;
}