/*==============================
	GLOBALS
Sets the default document font size, family
and color
===============================*/
body
{
	font-family:"Century Gothic";
	font-size:14px; 
	line-height: 17px;
	color: rgb(3, 31, 48);
	background-color: rgb(3, 31, 48);
}

a
{
	border: 0px;
	padding: 0px;
	margin: 0px;
	color: rgb(3, 31, 48);
	text-decoration: none;
}

div {
	padding: 0px;
	margin: 0px;
}

img {
	border: 0px;
	padding: 0px;
	margin: 0px;
}

ul {
	margin: 0px;
	padding: 0px;
}

td {
	vertical-align: top;
}

/*==============================
	GENERAL
===============================*/
.more-information 
{
	font-weight: bold;
	text-transform: uppercase;
	text-align: right;
	margin-right: 5px;
}

.more-information a {
	color: inherit;
	text-decoration: none;
}


/*==============================
	SITE WRAPPER
===============================*/
.site-wrapper
{
	width:759px; 
 
	/* min-height lets your site grow vertically 
	(like in tables). */
	/*min-height:600px;*/ 
 
	/* By setting these to auto you are centering the 
	site */
	margin-left:auto;  
	margin-right:auto; 
 
	border:solid 1px black; 
}


/*==============================
	HEADER WRAPPER
===============================*/
.header-wrapper
{
	width:759px; 
	height:89px; 
 
 	overflow: hidden;
	

}

/*==============================
	HEADER MENU
===============================*/
.main-nav-menu
{
	width:759px; 
	height:28px; 
 
	background-color:rgb(243,180,30);
	border-style: solid;
	border-left-width: 0px;
	border-right-width: 0px;
	border-top-width: 3px;
	border-top-color: rgb(228,163,10);
	border-bottom-width: 3px;
	border-bottom-color: rgb(228,163,10);
}

.main-nav-menu ul 
{
	margin-top: 0px;
	padding-left: 15px;
	list-style: none;
	
}

.main-nav-menu ul li 
{
	vertical-align: middle;
	float: left;	
	margin-right: 20px;
}

.main-nav-menu ul li a {
	color: white;
	font-family: "Arial Black";
	font-size: 14px;
	
	padding-left: 5px;
	padding-right: 5px;
	height: 23px;
	display: block;

	padding-top: 5px;
	text-decoration: none;
    float: left;
}

.main-nav-menu ul li a:hover, .main-nav-menu ul li a.current {
	background-color: rgb(3, 31, 48);
}


/*==============================
		BODY WRAPPER
===============================*/
.body-wrapper
{
	/* floats are crucial to the creation of any
	web interface. Every web developer must master
	this concept. Don't worry I'll be writing a
	tutorial about this a little later.	:)	*/
	float:left; 
 
 
	width:759px; 
	background-color: white;
	/*min-height:530px;*/ 
}

/*==============================
		FOOTER
===============================*/
.footer
{
	/* clears are the sisters to float, it's 
	time to meet the whole family :) */
	clear:left; 
	width:759px; 
	height:20px;
	padding-top: 8px;
 
	background-color:rgb(243,180,30);
	border-style: solid;
	border-left-width: 0px;
	border-right-width: 0px;
	border-top-width: 3px;
	border-top-color: rgb(228,163,10);
	border-bottom-width: 3px;
	border-bottom-color: rgb(228,163,10);
	
	font-family: Century Gothic;
	font-size: 12px;
	
	color: rgb(3,31,48);
	text-align: center;
}
