/* CSS Document */

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: #666;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  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: #cc0000;
  font-size: 18px;
  font-weight: bold;
  line-height: 14px;
  padding: 10px 0 10px 0;
}
/* Commonly used to style section titles. */
h2 {
  color: #666;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  font-style:italic;
}
h3 {
  color: #666;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  font-style:normal;
  text-align: center;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* 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;
}
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  max-width: 850px;
  min-width: 850px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 100%;
  padding: 0;
}
#outerWrapper #header {
  background-color: #ddd;
  border-bottom: solid 0px #cc0000; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  background-image:url(images/background.jpg);
  background-repeat:no-repeat;
  height: 290px;
  line-height: 15px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.nav {
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	margin: 110px 0 0 0;
	}
.nav ul {list-style-image: url(images/arrow.gif);
	}
.nav ul li {
	list-style-image:url(images/arrow.gif);
	height: 22px;
	line-height: 22px;
	text-indent: 0;
	padding: 0 5px;
	width: 200px;
	}
.nav ul li a {
	color: #000;
	text-decoration: none;
	height: 24px;
	}
.nav li:hover {
	background-color: #666;
	color: #fff;
	height: 22px;
	line-height: 22px;
	}
.nav li a:hover {
	color: #fff;
	}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #ebebeb;
  border-right: solid 1px #cc0000; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 233px;
  height: 500px;
}
#outerWrapper #contentWrapper #leftColumn1 p { 
  font-size: 16px;
  line-height: 125%;
  font-weight: bold;
  margin: 0 0 0 19px;
  letter-spacing: 0.05em;
  color: #666;
}  
/* 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: 0 0 0 253px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0;
}
#outerWrapper #contentWrapper #content #text {
	height:34px;
	z-index:1;
	background-image: url(images/tile_back.gif);
	background-repeat:repeat-x;
	padding: 8px 5px 5px 10px;
	margin: 0 0 0 0;
}
#outerWrapper #contentWrapper #content #mainContent {
    margin: 0 20px 10px 28px;
	line-height:125%;
	font-size:14px;
}
/* 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 {
  background-color: #ddd;
  border-top: solid 1px #cc0000; /* 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) */
}


