body {
	background-color: #528713;
}

div.container
{
width:950px;
height:90%;
margin-left:auto;
margin-right:auto;
border:1px solid gray;
line-height:150%;
background-color: White;
}
div.header,div.footer
{
	/*padding: 0.5em;*/
	color: white;
	background-color: #4169E1;
	clear: left;
	padding: 0;
	margin: 0;
}

h1.header
{
	padding: 0;
	margin: 0;
}
h2.header
{
	color: #D2691E;
}

div.left
{
float:left;
width:160px;
margin:0;
padding:1em;
text-decoration: none;
}

div.content
{
margin-left:190px;
border-left:1px solid gray;
padding:1em;
}

div.full
{
	padding:2em;
}

div.center{
	text-align: center;
}

.centertext{
	text-align: center;
}

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nounderline a {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

.textwhite
{
	color: white;
}

.textred
{
	color: Red;
} 

.bold
{
	font-weight: bold;
	padding: 0px	
}

.underline{
	text-decoration: underline;
}

#navcontainer ul
{
	padding-left: 0;
	margin-left: 0;
	background-color: #00BFFF;
	color: #2E0854;
	float: left;
	width: 100%;
	font-family: arial, helvetica, sans-serif;
	margin-top: 0; /*added to remove space that was appearing in firefox between header and navbar */
}

#navcontainer ul li {
	display: inline;
}

#navcontainer ul li a
{
	padding: 0.2em 1em;
	background-color: #00BFFF;
	color: #2E0854;
	text-decoration: none;
	float: left;
	border-right: 1px solid #fff;
	line-height: 65%;
}

#navcontainer ul li a:hover
{
background-color: #369;
color: #fff;
}

#navcontainer ul li a:active 
{
color:red
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
.gallerycontainer{
position: relative;
height: 600px;
/*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: lightyellow;
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: 230px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;			/* width of page */
		position:relative;
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, make it whatever value you need */
		overflow:hidden;
	}
	/* 3 Column settings */
	.threecol {
		/*background:#eee;		 right column background colour */
	}
	.threecol .colmid {
		right:25%;			/* width of the right column */
		/*background:#fff;		/* center column background colour */
	}
	.threecol .colleft {
		right:50%;			/* width of the middle column */
		/*background:#f4f4f4;	/* left column background colour */
	}
	.threecol .col1 {
		width:46%;			/* width of center column content (column width minus padding on either side) */
		left:102%;			/* 100% plus left padding of center column */
	}
	.threecol .col2 {
		width:21%;			/* Width of left column content (column width minus padding on either side) */
		left:31%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:21%;			/* Width of right column content (column width minus padding on either side) */
		left:60%;			/* Please make note of the brackets here:
						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
	}
