@import url(odds.css);

/*
Company:	Seaport Builders
File:		main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - this is handled by the reset-fonts.css file from YUI
HTML, Body - for the html and body tags
Layout - styles that define the layout of the site
Modules - styles for content modules
Nav - navigation bar
Default Headings - headings like h1, h2, etc
Common Text Styles - Styles for text
Default Lists - unordered and ordered lists
Forms - html forms
Default Links - links
Misc - anything that doesn't fit elsewhere
*/

/* @group HTML, Body */
html, body {
	background-color: #53647e;
}
body {
	font-family: Arial, Helvetica, Verdana, sans-serif;
}
/* @end */

/* @group Layout */
/* Head */

/* Body */
div#bd {
	background-color: #8a9091;
}

/* Footer */
div#ft {
	border-top: 3px solid #fffaec;
	padding: 5px 0 0 0;
}
div#ft p {
	padding-left: 60px;
	font-weight: bold;
	color: #fffaec;
	font-size: 93%;
}
div#ft p span {
	padding: 0 15px;
}
div#ft a:link, div#ft a:visited {
	color: #fffaec;
	text-decoration: none;
}
div#ft a:hover {
	color: #FFDB80;
}
/* @end */

/* @group Modules */
/* Logo */
div#logo {
	height: 45px;
	background: url(../images/seaport-logo.gif) no-repeat 0 0 #53647e;
	text-indent: -9000px;
}
div#logo a {
	display: block;
	height: 100%;
}

/* Featured Head */
div.page-heading {
	border-top: 3px solid #fffaec;
}
div.page-heading h4 {
	font-family:"Times New Roman", Times, serif;
	font-size:36px;
	color:#FFF;
	font-weight:normal;
	padding-left:30px;
}

/* Main */
div.main {
	width: 610px;
	margin: 0 0 0 19px;
	padding: 20px 0;
	float: left;
	display: inline;
}

/* Side */
div.side {
	width: 400px;
	margin: 0 0 0 19px;
	padding: 20px 0;
	float: left;
	display: inline;
}
/* @end */

/* @group Nav */
div#nav {
	background-color: #b7493f;
	padding: 5px 0 5px 17px;
}
div#nav ul {
	margin: 0;
	padding: 0;
}
div#nav ul li {
	list-style: none;
	background: url(../images/nav-div.gif) no-repeat 0 50%;
	padding-left: 1px;
	float: left;
	display: inline;
}
div#nav ul li.first {
	background: none;
}
div#nav ul li a {
	display: block;
	padding: 0 10px;
	font-weight: bold;
	font-size: 85%;
}
div#nav ul li a:link, div#nav ul li a:visited {
	color: #fffaec;
	text-decoration: none;
}
div#nav ul li a:hover, div#nav ul li a.active:link, div#nav ul li a.active:visited {
	color: #ffdb80;
}

div#subnav {
	background-color: #93433b;
	padding: 5px 0 5px 17px;
	border-top: 3px solid #fffaec;
}
div#subnav ul {
	margin: 0;
	padding: 0;
}
div#subnav ul li {
	list-style: none;
	background: url(../images/nav-div.gif) no-repeat 0 50%;
	padding-left: 1px;
	float: left;
	display: inline;
}
div#subnav ul li.first {
	background: none;
}
div#subnav ul li a {
	display: block;
	padding: 0 10px;
	font-weight: bold;
	font-size: 85%;
}
div#subnav ul li a:link, div#subnav ul li a:visited {
	color: #fffaec;
	text-decoration: none;
}
div#subnav ul li a:hover, div#subnav ul li a.active:link, div#subnav ul li a.active:visited {
	color: #ffdb80;
}
/* @end */

/* @group Default Headings */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
}
/* @end */

/* @group Common Text Styles */
div#bd {
	color: #fffaec;
}
/* @end */

/* @group Default Lists */
	
/* @end */

/* @group Forms */
	
/* @end */

/* @group Default Links - link visited hover active */
div#bd a:link, div#bd a:visited {
	color: #fffaec;
}
div#bd a:hover {
	color: #ffdb80;
}
/* @end */

/* @group Misc */
.clear {
	clear: both;
}
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* @end */