﻿/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #000;
  background-image:url(images/bg.jpg);
  background-repeat:repeat-x;
  color: #000;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #fff;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #fff;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #fff;
}
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 820px;
}
#outerWrapper #header h1 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 14px;
  padding-left: 15px;
  padding-top: 15px;
}
#outerWrapper #header h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
#outerWrapper #header a, #outerWrapper #header a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #header a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
#outerWrapper #header a:hover {
  color: #000;
  text-decoration: underline;
}
#outerWrapper #header a:focus {
  color: #000;
}
#outerWrapper #header a:active {
  color: #000;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content #columnCenter {
	float:left;
	width:770px;
	margin-left: 0px;
	margin-right: 10px;
	padding:0px;
	border: none;
}
#outerWrapper #contentWrapper #content #columnLeft {
	float:left;
	width:324px;
	margin-left: 0px;
	margin-right: 10px;
	padding:0px;
	border: none;
}
#outerWrapper #contentWrapper #content #columnRight {
	float:left;
	width:400px;
	margin: 0px;
	margin-left: 10px;
	padding:0px;
	border:none;
}
#outerWrapper #contentWrapper #content #contentSection {
	clear:both;
	padding-top: 15px;
}
#outerWrapper #footer {
  color:#FFFFFF;
  font-size: 14px;
  background-color: #000;
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* nav bar */

div#navcontainer
{
	background: #012e5c url(/images/navbar1.png) right top no-repeat;
}

div#navcontainer, div#tertiary
{
	margin: 0 1% 10px;
	min-width: 771px; /* 770px - 2 * 9.5px padding */
	overflow: hidden;
}

ul#navlist
{
	display: block;
	padding: 0;
	margin: 0;
	float: left;
}

ul#navlist li
{
	display: block;
	float: left;
	position:relative
}

ul#navlist li a
{
	display: block;
	float: left;
	padding: 8px 8px;
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 114%;
	color: #CCDDEE;
	border: 1px solid #446688;
	border-width: 0 1px 1px 0;
	white-space: nowrap;
}

ul#navlist li a:hover
{
	background: #446688 url(/images/navbarhighlight1.png);
	color: #FFFFFF;
}

ul#navlist li a.active
{
	color: #fff;
	font-weight: bold;
}

div#navcontainer form
{
	display: block;
	float: right;
	margin: 0;
}


div#navcontainer form input
{
	border-width: 1px;
	vertical-align: middle;
	font-size: small;
	padding: 0;
	font-family: Tahoma, sans-serif;
}
#cu3er-container {margin: 70px 100px auto; width:600px; outline:0;}