/* 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;
}
/* 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-image: url("../images/background.jpg");
  background-position: top left;
  background-repeat: repeat-x;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 18px;
  margin: 0 0 0 0; 
  padding: 0 0 0 0; 
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
h1 {
	color: #34699A;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 0px;
	line-height: 18px;
	margin-bottom: 0px;
	margin-top: 10px;
}

h2 {
	color: #34699A;
	font-size: 14px;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 0px;
	margin-bottom: 0px;
	margin-top: 10px;
}

h3 {
  color: #34699A;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #B04B09;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #B04B09;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #B04B09;
  border-bottom: #B04B09 1px dashed;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#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: 862px;
}
#outerWrapper #header {
  background-image: url("../images/header.jpg");
  background-repeat: no-repeat;
  font-size: 18px;
  font-weight: bold;
  height: 157px;
}

#outerWrapper #header h1{
	display: none;
}

#outerWrapper #contentWrapper {
	background: url(../images/background_content.gif) left repeat-y;
}

#outerWrapper #contentWrapper #navColumn {
  float: left;
  padding: 10px 10px 10px 10px;
  width: 200px;
}
/* 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 {
	margin-bottom: 0px;
	margin-left: 220px;
	margin-top: 0;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 10px;
}

#outerWrapper #contentWrapper #content img{
  float: right;
  padding: 4px ; 
  border: #34699A 1px solid;
  margin: 10px;
}

#outerWrapper #contentWrapper #content img.thumb {
  float: left;
  padding: 2px; 
  margin: 0 7px 4px 0;
  border: #34699A 1px solid;
}

/* Site Navigation*/
#navColumn #nav ul  { list-style:none; margin: 6px 0 10px 10px; padding: 0;}
#navColumn #nav ul li { font-weight: bold; font-size:12px;  border-bottom: 1px dashed #ccc;}
#navColumn #nav ul li a {  text-decoration: none; color: #666; display: block; padding: 8px 3px 8px 12px; margin: 0;}
#navColumn #nav ul li.current a { background:url(../images/bullet.gif) center left no-repeat; margin: 0; padding: 8px 3px 8px 12px; border-bottom: none;}
#navColumn #nav ul li.current ul { display:block; }
#navColumn #nav ul li.current ul a { background:none; }
#navColumn #nav ul li a:hover { background:url(../images/bullet.gif) center left no-repeat; border-bottom: none;}
/* Sub Links */
#navColumn #nav ul ul { margin:0; padding:0; }
#navColumn #nav ul ul li { font: 1em/2em; color: #34699A; border: none;  margin:0  5px; padding:0;}
#navColumn #nav ul ul a { line-height: .9em; color: #34699A; border: none; background-image:none;}
#navColumn #nav ul ul a:hover { text-decoration: underline; border: none; background-image:none;}
#navColumn #nav ul li.noncurrent ul { display:none; }


/* resource box styles */
.resources { margin: 30px 0px 15px 10px; padding:0; repeat-x top; border: 1px solid #ccc;}
.resources h2 { font-size: 1em; line-height:1em; font-weight:bold; color:#666; padding: 8px 8px; margin:0; background-color:#ebebeb;}
.resources ul  { list-style: none; margin: 5px 0 0 12px; padding: 0px; }
.resources ul li { font-weight: normal; line-height:1.5em; color: #333; padding: 3px 5px 3px 0px;}
.resources ul li p { line-height: 1.5em; color:#444; padding: 0; margin:0;  }
.resources ul li a { text-decoration: none; border:none; }
.resources ul li a:hover { border-bottom: #B04B09 1px dashed;}
.resources p { color: #444; padding: 6px 5px 5px; margin:0;}


/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  padding: 10px 10px 10px 10px; 
  border-top: #CCCCCC 1px solid;
  background: url(../images/background_footer.jpg) left bottom no-repeat;
  text-align:center;
}

/* table styles */
table td {
	border-bottom: #ccc 1px solid;
	padding: 5px;
