/* CSS Document */

@charset "UTF-8";

/* Zero down margin & padding on all elements */
* {
  margin: 0;
  padding: 0;
}

/* set body */

body
	{
	margin: 40px 20px;
	padding: 0;
	background: #c60024;
	color: #606060;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	}
	

/* typography */

h1 {
  font-family: Trebuchet, Trebuchet MS, Tahoma, Arial, sans-serif;
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 30px 0;
  color: #c60024;
}

h2 {
  font-family: Trebuchet, Trebuchet MS, Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  margin: 20px 0 4px 0;
  color: #c60024;
}

p {
  font-family: Trebuchet, Trebuchet MS, Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
   margin: 0 0 10px 0;
}

li {
  font-family: Trebuchet, Trebuchet MS, Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 2px 0 2px 25px;
  line-height:16px;
}

#noLeftMargin li {
    margin: 2px 0 2px 0;
}

 
#rightNav p  {
font-family: Trebuchet, Trebuchet MS, Tahoma, Arial, sans-serif;
font-size: 12px;
line-height: normal;
color:#c60024;
margin: 0;
padding: 5px 5px 5px 15px;
border-bottom-style: solid;
border-width: thin;
border-bottom-color:#000; 
}

#rightNav p.first  {
border-top-style: solid;
border-width: thin;
border-top-color:#000;
}

#rightNav a:link  {
color:#c60024;
text-decoration: none;
}

#rightNav a:visited  {
color:#c60024;
text-decoration: none;
}

#rightNav a:hover  {
color:#000;
text-decoration: underline;
}

a:link		{color:#c60024;
text-decoration: none;}
				
a:visited	{color:#c60024;
text-decoration: none;}

a:active	{color:#000;
text-decoration: underline;}

a:hover		{color:#000;
text-decoration: underline;}

.smallSpaceBelow {
	
	margin-bottom: 2px; }

.finalBullet {
	
	margin-bottom: 10px; 
	}

/* The structure of the page
================================= */

#container {
  width: 980px; 
  margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  background: #ffffff;
  border: solid 10px #fff;
  text-align: left; /* this overrides the text-align: center on the body element. */
}

#header { 
	background: #fff;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 30px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
} 

#leftPic {
float: left;
height: 395px;
width: 250px;
}


#mainContent { 
 margin: 0 170px 0 250px;
 padding: 0 15px 0 15px; 
}

#mainContentCustomSubDiv {
height: 430px;
margin-left: 50px;
}

#rightNav {
float: right;
  width: 155px; 
 }

#footer {
margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 30px 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
  background: #fff;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;

-->