@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	background-color: #D1E0EF;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
}
.thrColFixHdr #container {
	width: 960px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	border: thin solid #FF0000;
} 
.thrColFixHdr #header {
	background-color: #0099FF;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#demo-container{
	padding:10px 15px 0 15px;
	background-color: #0099FF;
}
.copyright {
	font-size: 1em;
	text-align: right;
}

ul#simple-menu{
	list-style-type:none;
	width:100%;
	position:relative;
	height:27px;
	font-family:"Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	margin:0;
}
ul#simple-menu li{display:block;float:left;margin:0 0 0 4px;height:27px;}
ul#simple-menu li.left{margin:0;}
ul#simple-menu li a{
	display:block;
	float:left;
	color:#F5FCEE;
	line-height:27px;
	text-decoration:none;
	padding:0 17px 0 18px;
	height:27px;
	background-color: #990000;
}
ul#simple-menu li a.right{padding-right:19px;}
ul#simple-menu li a:hover{
	color: #003466;
	background-color: #D9ECFF;
}
ul#simple-menu li a.current{
	color:#000033;
	background:#fff;
}
ul#simple-menu li a.current:hover{
	color:#000033;
	background:#fff;
}

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	background-color: #99CCFF;
	font-size: 1.1em;
	color: #003366;
	margin-right: 15px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px;
	background-color: #99CCFF;
	font-size: 1.1em;
	color: #003366;
	margin-left: 15px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
.thrColFixHdr #mainContent {
	margin: 20px 200x; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 10px 10px 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #000066;
	font-size: 1.2em;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	background-image: url(images/d2dfooter.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	font-size: 1.1em;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #FF0000;
} 
.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 50px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
h1 {
	font-family: "Times New Roman", Times, serif;
	color: #990000;
	font-style: italic;
	padding-top: 10px;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	color: #990000;
	font-style: italic;
	padding-top: 10px;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	margin-top: 20px;
	font-size: 1.5em;
}
a {
	font-weight: bold;
	text-decoration: none;
	color: #000099;
}
#secondcontent {
	font-size: 1.1em;
	font-style: italic;
	padding: 10px 20px;
	margin-top: 20px;
	margin-right: 200px;
	margin-bottom: 20px;
	margin-left: 200px;
	color: #003333;
}
#mainContent2 {
	color: #000066;
	margin-top: 0px;
	margin-right: 50px;
	margin-bottom: 0;
	margin-left: 50px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
	font-size: 1.2em;
}

#imagegallery{
	background:#F2F2F2;
	clear:left;
	padding:10px;
	min-height:200px;
}


#items{
	float: left;
	width: 33%;
	border: 1px solid #C7ECAA;
	background:white;
}
#items .item {
	float: left;
	padding:5px;
	position: relative;
	width: 52px;
	height:52px;
	margin: 10px;
	background-color: #fff;
	cursor: pointer;
	border: 2px solid #C7ECAA;
}
#items .item:hover{border: 1px solid #ddd;}
#items .item img {
	width:50px;
	max-height:35px;
}


#large{
	border: 1px solid #DFDFDF;
	width: 66%%;
	margin-left:34%;
	background-color: #fff;
	text-align:center;
	font-family:Georgia, Times, san-serif;
	font-size:12px;
}
#large .info{
	font-size: 1.2em;
	text-align: center;
	font-weight: bold;
	padding:10px;
	color:#B3B3B3;
}
#items  p{display:none;}
#large .item {
	margin-top:20px;
	margin-bottom:20px;
	border-width: 1px;
	cursor: default;
	text-align:center;
}
#large .item img{
	max-width:600px;
	max-height: 600px;
}



#kwphotomain {
	position:relative;
	left:300px;
	top:50px;
	width:113px;
	height:150px;
	z-index:3;
	visibility: visible;
}
#KWscrollCover {
	left:100px;
	top:0px;
	width:486px;
	height:126px;
	visibility:visible;
	z-index:900;
	background-color:#D9ECFF;
	layer-background-color:#66FFCC
}
#KWscrollLayer {
	position:relative;
	left:100px;
	top:20px;
	width:482px;
	height:122px;
	clip:rect(0px 482px 122px 0px);
	overflow:hidden;
	visibility:visible;
	z-index:800;
}
#KWscrollControl  {
	position:relative;
	width:480px;
	height:4px;
	left:20px;
	top:30px;
	z-index:800;
}
#kwthumbnails {
	left:0px;
	top:0px;
	width:840px;
	height:120px;
	z-index:1;
	visibility: visible;
	background-color:#99CCFF;
	layer-background-color:#66FFCC;
}

#frontPageNews {
	background-color: #002640;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #FFF;
}
#frontPageNews1 {
	background-color: #002640;
	color: #FFF;
	padding: 10px;
	height: 220px;
}
