/*
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;
  background-color: #435154;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	background: url(../images/body-bkg3.gif) repeat-y top center;
	width: 1000px;
  margin:0 auto 0 auto;
}
div#inner-wrapper {
	background: url(../images/header-bkg3.png) repeat-x;
}
div#content-wrapper {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
div#logo {
	background: url(../images/back_logo.png) no-repeat;
	width: 210px;
	height: 230px;
	margin-top: 4px;
	text-align: center;
}
div#logo img {
	margin-top: 27px;
}
div#sidebar {
	float: left;
	width: 210px;
	display: inline;
}
div#content {
	float: right;
	width: 740px;
	margin-right: 30px;
	display: inline;
}
div#content-inner {
	padding: 1px 0;
}
div.content-left {
	padding: 4px;
	width: 218px;
	background-color: #d7d7d7;
	float: left;
	display: inline;
}
div.content-left img {
	border: 1px solid #fff;
}
div.content-left p {
	background-color: #dc3409;
	margin: 4px 0 0 0 !important;
	color: #fff;
	text-align: center;
	font-family: "Times New Roman", serif;
	padding: 2px;
	font-size: 1.3em;
	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;
	
}
p.end-story-links {
	border-bottom: 4px solid #d1b9b3;
	margin-bottom: 15px !important;
}
div#footer {
	clear: both;
	width:1000px;
	margin:0 auto 0 auto;
	border: 0;
	background-color:#435154;
	padding: 10px;
	font-size:10px;
	font-family:Verdana;
	color:#fff;
}

img.content-img {
	float: left;
	border: 2px solid #ccc;
	margin: 0 10px 10px 0;
}
.calendar
{
  margin:10px 0 30px 20px;
  border:0;
  float:left;
  padding:0;
}

/* @end */

/* @group Nav */
ul#nav {
	margin: 8px 0 0 0;
	height: 60px;
	line-height: 45px;
	font-size: 1em;
	overflow: hidden;
}
ul#nav li {
	display: inline;
	list-style-type: none;
	margin: 0 10px 0 0;
	padding:20px 0 0 0;
}
ul#nav li a:link, ul#nav li a:visited {
  vertical-align: top;
  color: #003366;
  text-decoration: underline;
  font-family: Arial;
  font-weight: bold;
}
ul#nav li a:hover {
  color: #003366;
  text-decoration: none;
  font-family: Arial;
  font-weight: bold;
}
ul#nav li img {
	display: inline;
  margin:0 10px 0 0;
  padding:0;
  border:0;

}

ul.side-nav {
	margin: 0 5px 10px 15px;
	border:0;
	font-size: .7em;
	color: #978f7c;
	text-transform: uppercase;
}
ul.side-nav li {
	margin: 0;
	list-style-type: none;
	padding: 1px 0;
}
ul.side-nav li a {
	display: block;
	border:0;
	margin: 0;
	padding: 5px 0 10px 20px;
	/*background: url(../images/side-nav-bullet.gif) no-repeat 5px 50%;*/
}
ul.side-nav li a:link, ul.side-nav li a:visited {
  color: #3366CC;
  text-decoration: underline;
}
ul.side-nav li a:hover {
	/*background: url(../images/side-nav-bullet-light.gif) no-repeat 5px 50% #f6f5f0;*/
	color: #3366CC;
	  text-decoration: none;

}

ul#footer-nav {
	font-family: Verdana;
	font-size: .5em;
	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: #5e534f;
	text-decoration: none;
}
ul#footer-nav li a:hover {
	color: #453e3b;
}
/* @end */

/* @group Headings */
h1 {
  color: #494949;
}
h1 { font-size: 20px/*.6em*/; }
h2 {
  margin: 0 0 0 0;
  font-family: Arial;
  font-weight: bolder;
  font-size: 1.6em;
  color: #AE4600;
}
h3.dateline {
	font-size: .8em;
	font-weight: lighter;
	color: #dc3409;
	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: #363636;
  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
{
  margin:0;
  padding:0; 
}
form#search-form {
	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: none;
	margin: 0;
	padding: 4px;
	background-color: #dbd6c9;
	color: #fff;
	text-transform: uppercase;
}
/* @end */


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 */


.pWPLink ul {
  list-style-type: none;
  margin:0 0 20px 0;
  padding:0;
}
.pWPLink li {
  margin:0 0 8px 10px;
  padding:0;
}
.pWPLink a, .pWPLink a:hover {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color:#0054A8;
  text-decoration:underline;
}
.pWPLink a:hover {
  text-decoration:none;
}

.menuTitle
{
  font-family:Verdana;
  font-weight:bold;
  font-size:14px;
  padding:0 0 10px 0;
}

.aRed,
.aRed:hover {
  color: #800000 !important;
}

.subNewsLetter
{
  font-size:11px;
  margin:0 0 10px 0;
}