/*
Company:	Nautica X - ost.org
File:		print.css - This contains the print style for the website.
                        The code originated from main.css with much of the site formatting removed by C.D.Schmitz

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: 1em;
	font-family: Verdana, sans-serif;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	background: url(images/body-bkg.gif) repeat-y top center;
	
}
div#inner-wrapper {
	background: url(images/header-bkg.gif) repeat-x;
}
div#content-wrapper {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
div#logo {
	display:none;
}

div#sidebar {
	display:none;
}
div#content {
	float: left;
	width: 730px;
	margin-right: 30px;
	display: inline;
}
div#content-inner {
	margin-top: 20px;
	padding: 1px 0;
	/* background: url(images/leaf-watermark.gif) no-repeat bottom right; */
}
div.content-left {
	padding: 4px;
	width: 218px;
	background-color: #d7d7d7;
	float: left;
	display: inline;
}
div.content-right {
	float: left;
	margin-left: 20px;
	width: 484px;
	display: inline;
}
div.content-full {
	clear: both;
	padding-top: 15px;
}
p.end-story-links {
	display:none;
}
div#footer {
	clear: both;
	border-top: 1px solid #5e534f;
	background-color: #e7e5d2;
	padding: 10px;
}

img.content-img {
	display:none;
}

/* @end */

/* @group Nav */
ul#nav {
	display:none;
}


ul.side-nav {
	display:none;
}

ul#footer-nav {
	display:none;
}

/* @end */

/* @group Headings */
h1 { }
h2 {
	margin: 0 0 0 0;
	font-family: "Times New Roman", serif;
	font-weight: lighter;
	font-size: 1.6em;
	color: #464031;
}
h3.dateline {
	font-size: .8em;
	font-weight: lighter;
	color: #e69048;
	margin: 0 0 10px 0;
}
h4 {
	margin-left: 25px;
	margin-right: 10px;
	text-transform: uppercase;
	font-weight: lighter;
	margin-bottom: 10px;
	font-family: "Times New Roman", serif;
	color: #a1a09b;
}
h5 { }
h6 { }
/* @end */

/* @group Text Styles */
div#content-inner {
	font-size: .75em;
	color: #505050;
	line-height: 1.7em;
}
div#content-inner p {
	margin: 2px 0 30px 0;
}
p.intro:first-letter {
	font-size: 1.4em;
	letter-spacing: -1px;
}
p.copyright {
	font-size: .65em;
	font-family: "Times New Roman", serif;
	color: #797069;
	text-transform: uppercase;
	margin: 10px 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 */
/* @end */

