﻿/* 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: 11px;
}

body {
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  margin:  0 auto; 
  padding: 0 0 0 0; 
  background-color: #808080;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #2e2d2c;
  line-height: 16px;
}

h1 {
  color: #510102;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
}

h2 {
  color: #510102;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0px 0px 20px;
  float: left;
}  

/* Removes spacing after heading and before paragraph */
h2 + p {
  margin-top: 0;
}

/* Removes spacing after heading and before list */
h2 + ul {
  margin-top: 0;
}

h3 {
  color: #510102;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 0px 0px 0px;
  float: left;
}  

.h3sub {
  color: #404040;
  padding-bottom: 16px;
}

h4 {
  color: black;
  line-height: 18px;
  font-size: 11px;
  font-weight: bold;
  padding-top: 0px;
}  

/* Removes spacing after heading and before paragraph */
h4 + p {
  margin-top: 0;
}

#wrapper { 
 margin: 0 auto;
 width: 800px;
}

#header {
 color: white;
 width: 780px;
 height: 150px;
 background: url('../images/Header.jpg') no-repeat;
 float: left;
}

#collage {
  width: 780px;
  padding: 0;
  margin: 0;
  /*border-bottom: 2px solid #000000;*/
  background: url('../images/collagebar.jpg') no-repeat 0 0;
  float: left;
}
  
/* Used to style the nav bar */
div#navbar {
   height: 26px;
   width: 780px;
   border-bottom: solid #404040 3px;
   background-color: #510102;
   float: left;
}
div#navbar ul {
   margin: 0px;
   padding: 0px 13px 0px 13px;
   font-family: Arial, Helvetica, sans-serif;
   font-size: small;
   /*font-weight: bold;*/
   color: #FFF;
   line-height: 26px;
   white-space: nowrap;
}
div#navbar li {
   list-style-type: none;
   display: inline;
}
div#navbar li a {
   text-decoration: none;
   color: #FFF;
   padding: 7px 15px;
}
div#navbar li a:link {
   color: #FFF:
}
div#navbar li a:visited {
   color: #fff;
}
div#navbar li a:hover {
   color: #000;
   background-color: #C0C0C0;
}

#content {
 margin-bottom: 0px;
 overflow: auto; /* Fix for IE */
 width: 749px;
 background-color: #E7E7E7;
 padding: 15px;
 float: left;
 clear: both;
}

.leftColumn { 
 float: left;
 display: inline;
 color: black;
 text-align: left;
 margin: 0px 10px;
 padding: 15px 10px;
 width: 200px;
 position: relative;
}

.centerColumn { 
 float: left;
 display: inline;
 color: black;
 text-align: left;
 margin: 0px 10px;
 padding: 15px 10px;
 width: 200px;
 position: relative;
}

.rightColumn { 
 float: left;
 display: inline;
 color: black;
 text-align: left;
 margin: 0px 10px;
 padding: 15px 10px;
 width: 200px;
}

.rightColumn ul li {
   color: #FFF;
   line-height: 18px;
   margin-left: -23px;
   margin-right: 10px;
   text-align: left;
}

img {
  vertical-align: bottom;
} 

#logoRight {
	margin: 5px 5px 20px 10px;
	width: 170px;
	float: right;
}

#rightColumn h3{
  line-height: 24px;
  color: #C0C0C0;
  font-size: 18px;
  font-weight: bold;
}

.hr {
  background: url('../images/hr.jpg') no-repeat;
  width: 521px;
  margin: 20px 0px 20px 0px;
}

#footer { 
  background-color: #404040;
  border-top: solid 1px #808080; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  line-height: 14px;
  color: white;
  font-size: 11px;
  text-align: center;
  width: 780px;
  float: left;
}
.clear { clear: both; background: none; }

