/*
Company:	Nautica X - ost.org
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, form, label, ul, ol, dl, fieldset, address { margin:20px 0; }

li, dd, blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
	text-align: center;
	font-size: 16px;
	font-family: Verdana;
	background:transparent url(../images/header-bkg.gif) repeat-x scroll 0 0;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	width:1000px;
	margin:0 auto;
	overflow:hidden;
	background: url('../images/body-bkg.gif') repeat-y top center;
}
div#inner-wrapper {
	margin:0 auto;
	width:100%;
	background: url('../images/header-bkg.gif') repeat-x;
}
div#content-wrapper {
	width:100%;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	overflow:hidden;
}
div#logo {
	background: url('../images/logo-box-bkg.gif') no-repeat;
	width: 194px;
	height: 225px;
	margin-top: 4px;
	text-align: center
}
div#logo img {
	margin-top: 85px;
}
div#sidebar {
	float: left;
	width: 210px;
	display: inline;
}

div#content {
	float: right;
	width: 730px;
	margin-right: 30px;
	display: inline;
}
div#content-inner {
	background-position: bottom right; margin-top: 20px; 
       	; padding-left:0; padding-right:0; padding-top:1px; padding-bottom:1px; background-color:transparent; background-repeat:no-repeat; background-attachment:scroll
}
div.content-left {
	padding: 4px;
    width: 218px;
	background-color: #D7E6C6;
	float: left;
	display: inline;
	margin-right: 20px;
}
div.content-left img {
	border: 1px solid #fff;
       }
div.content-left p {
	background-color: #4A831A;
	margin: 4px 0 0 0 !important;
	color: #fff;
	text-align: center;
	font-family:verdana;
	padding: 2px;
	font-size: 11px;
	line-height:20px;
	border: 1px solid #fff;
 
}
div.content-left p span {
	font-size: .8em;
}
div.content-right {
	float: left;
	margin-left: 20px;
	width: 484px;
	display: inline;
}
div.content-full {
	clear: both;
	padding-top: 15px;
}
p.end-story-links {
	border-bottom: 4px solid #BED1AA;
	margin-bottom: 15px !important;
	font-size: .8em;
}
div#footer {
	width:100%;
	clear: both;
	border-top: 1px solid #5e534f;
	background-color: #4A831A;
	padding:10px 0;
}

img.content-img {
	float: left;
	border: 2px solid #ccc;
	margin: 0 10px 10px 0;
}

/* @end */

/* @group Nav */
ul#nav {
	margin: 2px 0 20px 0;
	height: 40px;
	line-height: 50px;
	font-size: 19px;
	font-family: verdana;
	overflow: hidden;
}
ul#nav li {
	display: inline;
	list-style-type: none;
	text-transform: uppercase;
	margin: 0 20px 0 0;
}
	ul#nav li img {
	position:relative;
	top:5px;
	}
ul#nav li a:link, ul#nav li a:visited {
	color: #333333;
	text-decoration: none;
}
ul#nav li a:hover {
	color: #ff9900;
}

ul.side-nav {
	margin: 10px 5px 10px 17px;
	border-top: 1px solid #e9e7e7;
	font-size: 13px;
	color: #333333;
	text-transform: title;
}
ul.side-nav li {
	display: block;
	margin: 0;
	background: url('../images/side-nav-bullet.gif') no-repeat 5px 50%; list-style:none; padding-left:20px; padding-right:0; padding-top:2px; padding-bottom:2px;
}
ul.side-nav li a {
	display: block;
	border-bottom: 1px solid #e9e7e7;
	margin: 0;
}
ul.side-nav li a:link, ul.side-nav li a:visited {
	color: #333333;
	text-decoration: none;
}
ul.side-nav li a:hover {
	background: #f6f5f0 ;
	color: #ff9900;
}

ul#footer-nav {
	font-family:verdana;
	font-size: 13px;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
ul#footer-nav li {
	display: inline;
	margin: 0;
	padding: 0 10px 0 5px;
	border-right: 1px solid #958d83;
}
ul#footer-nav li.last {
	border-right: none;
}
ul#footer-nav li a:link, ul#footer-nav li a:visited {
	color: #ffffff;
	text-decoration: none;
}
ul#footer-nav li a:hover {
	color: #ff9900;
}
/* @end */

/* @group Headings */
h1 {
	margin: 0 0 8 0;
	font-family: Verdana;
	font-weight: lighter;
	font-size: 17px;
	color: #464031;
 }
h2 {
	margin: 0 0 0 0;
	font-family: Verdana;
	font-weight: bold;
	font-size: 14px;
	color: #464031;
}
h3.dateline {
	font-size:13px;
	font-weight: lighter;
	color: #dc3409;
	margin: 0 0 10px 0;
}
h4 {
	margin-left: 25px;
	margin-right: 10px;
	text-transform: title;
	font-weight: solid;
	margin-bottom: 10px;
	font-family: verdana;
	color: #70645B;
}
h5 { }
h6 { }
/* @end */

/* @group Text Styles */
div#content-inner {
	font-size:11px;
	color: #333333;
	line-height: 1.7em;
	
}
div#content-inner p {
	margin: 2px 0 30px 0;
	font-size:11px;
	font:verdana;
	line-height:20px;
}
p.intro:first-letter {
	font-size: 12px;
	letter-spacing: -1px;
}
p.copyright {
	font-size: 12px;
	font-family: verdana;
	color: #ffffff;
	text-transform: uppercase;
	margin: 6px 0;
}
/* @end */

/* @group Lists */
	
/* @end */

/* @group Forms */
form#search-form {
	/*width: 150px;*/
	float: right;
	margin: 4px 0 0 0;
	border-right: 1px solid #736749;
	border-left: 1px solid #736749;
	border-bottom: 1px solid #736749;
}
form#search-form input.txt {
	width: 140px;
	/*border: 1px solid #736749;*/
	/*border-top: 4px solid #635534;*/
	border: none;
	margin: 0;
	padding: 4px;
	background-color: #dbd6c9;
	color: #fff;
	text-transform: uppercase;
}
/* @end */

/* @group Links - link visited hover active */
div#content-inner a:link, div#content-inner a:visited {
	color: #8b7f73;
	text-decoration: none;
	border-bottom: 1px dotted #8b7f73;
}
div#content-inner a:hover {
	color: #706153;
	border-bottom: 1px dotted #706153;
}

p.end-story-links a:link, p.end-story-links a:visited {
	color: #8b7f73;
	text-decoration: none;
	border-bottom: none !important;
}

p.copyright a:link, p.copyright a:visited {
	color: #797069;
	text-decoration: none;
}
p.copyright a:hover {
	color: #453e3b;
}
/* @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 */

.style1 {
	color: #FFFFFF;
	font-size: 12px;
}
.style2 {color: #000000;}
.style4 {font-size: 12px;}

.style5 {font-size:11px; width:99%; 
	font:verdana;
	line-height:20px;
}


.style6 
{
background-color: #D7E6C6;
}
.style7
{
background-color: #FFFFFF;
}
.style8
{
background-color: #BED1AA;
}
.style9 {font-size: 12px;}
.style10 {font-size: larger}
.ht{ height:6px;
}
.leftmar
{
 margin-left: 20px;
}
.style11 {
	color: #FF0000;
	font-weight: bold;
	font-style: italic;
}
.style13 {color: #FF0000; font-size: smaller;padding-left: 10px; }
.style15 {font-weight: bold; color: #FF0000;}
/* @end */

