/*
Company:		
File:		main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/

/* @group Global Browser Reset */
* {

padding:0;

margin:0;

}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, fieldset, address { margin:10px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
	background-color: #ffa612;
}
body#p-splash {
	background-color: #fe9900;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	font-size: 13px;
}
div#splash a {
	display: block;
	width: 573px;
	height: 387px;
	background: url(../images/splash.jpg) no-repeat;
	margin-left: auto;
	margin-right: auto;
	margin-top: 150px;
}

div#top {
	height: 59px;
	overflow: hidden;
}
div#audio {
	margin-left: 520px;
	margin-top: 13px;
}

div#hd {
	background-color: #fff;
	height: 106px;
}
div#hd img {
	margin-left: 15px;
	float: left;
	display: inline;
}

div#flash-box {
	background-color: #ff912d;
}

div#bd {
	background-color: #fff;
	font-family: Verdana, Arial, sans-serif;
	font-size: 85%;
	color: #797979;
	line-height: 160%;
}
div#content {
	width: 752px;
	margin-left: 48px;
	padding: 20px 0;
}
body#p-home div#content {
	width: 495px;
	float: left;
	display: inline;
}
div#sidebar {
	width: 190px;
	margin-left: 30px;
	padding: 20px 0;
	float: left;
	display: inline;
}

div#ft {
	background: url(../images/ft-stripe.gif) no-repeat top left #ff912d;
	height: 21px;
}
/* @end */

/* @group Nav */
div#hd ul {
	list-style-type: none;
	margin: 0 0 0 3px!important;
	width: 573px;
	text-align: center;
	font-family: Georgia, Times, serif;
	font-size: 92%;
	text-transform: uppercase;
	float: left;
	display: inline;
}
div#hd ul li {
	width: 142px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	float: left;
	display: inline;
}
div#hd ul li a {
	display: block;
	width: 142px;
	height: 27px;
	line-height: 27px;
}
div#hd ul a:link, div#hd ul a:visited {
	background-color: #ffeed6;
	color: #ec6c17;
	text-decoration: none;
}
div#hd ul li.selectedPage a:link, div#hd ul li.selectedPage a:visited, div#hd ul a:hover {
	background: url(../images/nav-arrow.gif) no-repeat 40px 0 #eb6c18;
	color: #fff;
}
/* @end */

/* @group Headings */
h1 {
	color: #797979;
	font-size: 169%;
	font-weight: normal;
	font-family: Georgia, Times, serif;
	margin-top: 0;
}
h2 {
	color: #797979;
	font-weight: normal;
	font-family: Georgia, Times, serif;
	font-size: 133%;
}
h3 {
	color: #797979;
	font-weight: normal;
	font-family: Georgia, Times, serif;
	font-size: 116%;
}
h4 {
	color: #797979;
	font-weight: normal;
	font-family: Georgia, Times, serif;
	font-size: 108%;
}
h5 {
	color: #797979;
	font-family: Georgia, Times, serif;
	font-size: 100%;
	font-weight: bold;
}
h6 {
	font-size: 100%;
	color: #797979;
	font-family: Georgia, Times, serif;
	font-weight: normal;
}
/* @end */

/* @group Text Styles */
	
/* @end */

/* @group Lists */
div#outer-wrapper ul {
	margin-left: 20px;
}
div#outer-wrapper ol {
	margin-left: 27px;
}
/* @end */

/* @group Forms */
	
/* @end */

/* @group Links - link visited hover active */
a:link, a:visited {
	color: #ef6815;
	text-decoration:none;
}
a:hover, a:active {
	text-decoration: underline;
}
/* @end */

/* @group Misc */
.clear {
	clear: both;
}
/* @end */
