/*
	(1) html elements
	(2) global structures
	(3) formatting for global structures
	(4) general purpose */ 
	
/*
	(1) html elements */
body {
	background: #eeeff2 url(../images/bg_body.gif) repeat;
	margin: 0;
	padding: 0;
	font-family: arial, sans-serif;
	font-size: 70%;
}

h1 {
	font-size: 3em;
	font-weight: normal;
	font-family: garamond, georgia, serif;
	color: #003e74;
	margin: 0;
}

h3 {
	font-size: 1.2em;
}

a img {
	border: 0;
}
	
/*
	(2) global structures */
#main {
	width: px;
	margin: 0 auto;
	padding: 0 7px;
	width: 872px;
	/*background: transparent url(../images/bg_main.png) 0 0 repeat-y;*/
	background: transparent url(../images/bg_main2.gif) 0 0 repeat-y;
}

#masthead {
	background: transparent url(../images/bg_masthead.png) 0 0 repeat-x;
	width: 832px;
	height: 135px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

#search {
	float: right;
	padding-top: 2px;
}

#tagline {

}

#content-wrapper {
	/*background: #fff url(../images/bg_content-wrapper.gif) 0 0 repeat-y;*/
      background: transparent url(../images/bg_content-wrapper.gif) 0 0 repeat-y;
}

/* This content wrapper is only for the Search and Signup pages, removing the vertical line with a different bg image. */
#content-wrapper2 {
	background: #fff url(../images/bg_content-wrapper_no_vertical_line.gif) 0 0 repeat-y;
}


#resources {
	float: left;
	width: 207px;
	background-color: #9c001f;
} 

#primary-nav {
	margin: 0;
	padding: 0;
	padding-top: 10px;
	/*background-color: #205283;*/
	background-color: #FFFFFF;
	color: #fff;
}

#content {	
	float: left;
	padding: 9px 16px 0 16px;
	width: 507px;
	/* produces the gap between the tagline/search bar and the body in the repeating vertical line */
	background: transparent url(../images/bg_content_white_notch.gif) 0 0 no-repeat;
}

#content.full-column {
	width: 632px;
}

#page-banner {
	border: 1px solid #003e74;
	border-left: 0;
	border-right: 0;
	margin-bottom: 5px;
}


#discuss-page {
	float: right;
	color: #194576;
	font-weight: bold;
}

#ads {

	float: left;
	width: 125px;
}

#logo-series{
	border-top: 1px solid #666;
}

#footer {
	border-top: 1px solid #666;
	color: #666;
	text-align: center;
	padding-top: 8px;
}

/*
	(3) formatting for global structures */

	
#masthead div.ad {
	padding-top: 15px;
	float: right;
}

/* search */
#search #query {
	height: 13px;
	font-size: .9em;
	float: left;
}
#search label {
	float: left;
	padding: 2px 5px 0 0;
	color: #fff;
}
#search #submit {
	float: left;
	padding: 0 0 0 5px;
}

#tagline img {
	display: block;
}

/* primary nav */
#primary-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-nav ul li { 
	margin: 0;
	padding: 0;
	float: left;
	width: 207px;
}

#primary-nav ul li a {
	display: block;
	margin: 5px 0 0 0;
	padding: 3px 0 3px 10px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	background: #9C001F url(../images/bg_nav_arrow.gif) 98% 50% no-repeat;

}
	
#primary-nav ul li li a { 
	padding-left: 17px; 
	margin-top: 1px;
}

#primary-nav ul li li a { font-weight: normal; }


#primary-nav ul a:hover,
#primary-nav ul a.active {
	background-color: #F1CA45;
	background-image: url(../images/bg_nav_arrow_active.gif);
	color: #000;
}

#primary-nav ul a.home {
	background-color: #fff;
	background-image: none;
	color: #000;
	margin-top: 0;
	padding: 0 0 0 10px;
}

#contact-columnist h3 {
	background-color: #063a78;
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 8px 5px;
}

#contact-columnist td {
	padding: 0;
}

#contact-columnist img {
	padding: 0 10px;
}

/* discuss-page */
#discuss-page b {
	color: #837569;
}

#discuss-page a {
	color: #194576;
	text-decoration: none;
	padding-left: 5px;
}

#discuss-page a.sponsor {
	text-decoration: underline;
}

#discuss-page a.email {
	background: transparent url(../images/icon_email.gif) 0 0 no-repeat;
	padding-left: 25px;
}

#ads p {
	margin: 0;
	padding: 0;
}

#ads div {
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
}

#footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

#footer ul li {
	display: inline;
	margin: 0;
	padding: 4px;
}

#footer ul li a {
	color: #666;
}

table.videos {

}
table.videos td {
	vertical-align: top;
	padding: 4px 4px 4px 0;
	border-bottom: 1px solid #ccc;
}


	(4) general purpose 
	
	
.left			{ float: left; }
.right			{ float: right; }
.t-right		{ text-align: right; }
.t-left			{ text-align: left; }

.clear {
	clear: both;
	height: 1px;
	overflow: hidden;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix { display: inline-block; }
.clearfix { display: block; }
* html .clearfix { height: 1%; }

.center {
	text-align: center;
}

