@charset "utf-8";
/* CSS Document */
body {
    background: url(images/bg.jpg) no-repeat;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #000; /* for black */
}
#wrapper {
	margin: 0 auto;
	width: 800px;
}
ul#topnav {
	margin: 0; padding: 0;
	float: left;
	width: 800px;
	top: 0;
	list-style: none;
	position: fixed; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	background: #444;
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/
	border-bottom: 3px solid #222;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 3px solid #222; /*--Divider for each parent level links--*/
}
ul#topnav li a {
	padding: 10px 15px;
	display: block;
	color: #FFF;
	text-decoration: none;
}
ul#topnav li:hover { background: #1376c9 url(topnav_active.gif) repeat-x;}
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/
ul#topnav li span {
	float: left;
	padding: 7px 0;
	position: absolute;
	left: 0; top:33px;
	display: none; /*--Hide by default--*/
	width: 800px;
	background: #666;
	color: #FFF;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: underline;}

#header {
	margin-top: 350px;
	width: 800px;
	height: 150px;
}
#header img{
	padding-left: 8px;
}
#content1 {
	width: 800px;
	background-color: #f2eeee;
	border: 1px #cfcccc solid;
	margin: 0 auto;
	min-height: 400px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-webkit-box-shadow: 0 0 1em #999;
	-webkit-box-shadow: 0 0 1em #999;
}
#content h3 {
	line-height: 20px;
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border-bottom: 1px #666 inset;
	padding-bottom: 5px;
}
#content {
	margin: 10px;
}
#content p {
	line-height: 22px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
       border-bottom: 1px #666 inset;
	color: #666;
}
#footer {
	width: 800px;
	background-color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	bottom:0;
	margin-top: 10px;
	border: 1px  #666 solid;
	text-align: center;
	color: #CCC;
	line-height: 14px;
	margin-bottom: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}