/* CSS Document by Brad Rogers 3.4.2010*/
body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin: 0px 0px 0px 0px;
}
#main_wrapper {
	margin-right: auto;
	margin-left: auto;
}
#topbar {
	height: 211px;
	width: 100%;
	background-color: #000000;
}
#header {
	height: 211px;
	width: 936px;
	background-color: #000000;
	background-image: url(../img/logo.jpg);
	margin-right: auto;
	margin-left: auto;
	background-repeat: no-repeat;
	background-position: left;
	padding-left: 170px;
}
#middlebar {
	background-color: #f2f2f2;
	height: 650px;
	width: 100%;
}
#content {
	height: 650px;
	width: 938px;
	margin-right: auto;
	margin-left: auto;
}
#design {
	height: 200px;
	width: 286px;
	margin-right: 40px;
	float: left;
	margin-top: 10px;
	margin-bottom: 5px;
	color: #4e4e4f;
	font-size: 12px;
}
#design2 {
	height: 200px;
	width: 286px;
	float: left;
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 12px;
	color: #4e4e4f;
}
#nav {
	height: 100px;
	width: 500px;
	float: right;
	margin-top: 110px;
	color: #CCCCCC;
	font-size: 14px;
	margin-right: 80px;
}
#pic {
	background-color: #999999;
	height: 121px;
	border: 1px solid #333333;
	margin-bottom: 5px;
	margin-top: 5px;
}

#bottombar {
	background-color: #000000;
	height: 20px;
	width: 100%;
}
.titles {
	font-size:15px;
}

/*--Set relative positioning on the unordered list itself - not on the list item--*/

ul#topnav {
	margin: 0;
	padding: 0;
	float: right;
	width: 385px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 14px;
	background: url(topnav_stretch.gif) repeat-x;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #555; /*--Divider for each parent level links--*/
}
ul#topnav li a {
	padding: 10px 10px;
	display: block;
	color: #f0f0f0;
	text-decoration: none;
}
ul#topnav li:hover { background: #333 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: right;
	position: absolute;
	left: 0px;
	top:35px;
	display: none; /*--Hide by default--*/
	width: 382px;
	background: #333;
	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;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 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;}
