@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
}


 #container { 
	width: 700px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
 #header { 
	width: 700px;
	height: 350px;
	background-repeat:no-repeat;
	padding-bottom:10px;
	border-bottom: 2px solid #EF0022;
	background-image:url(../images/header/header.jpg);
} 

#logo {
padding-top: 20px;
padding-left: 7px;
}


#navbar {
margin-top: 30px;
height: 144px;
float:left;
}

.nav {
background-color:#FFFFFF;
padding-top:1px;
padding-bottom:1px;
padding-right:5px;
margin-top:5px;
}

a {
text-decoration:none;
color:#FF0000;
outline:none;
border:none;
}

 #sidebar1 {
	float: left; 
	width: 200px; /* since this element is floated, a width must be given */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin-left:0px; /* top and bottom padding create visual space within this div */
}
 #sidebar2 {
	 float:left;
	 width:500px;
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div */
}

#sidebar2 a{
font-family:Helvetica, sans-serif;
font-size: 10px;
color: #EF0022;
line-height:20px;

}

p {
font-size:14px;
line-height:19px;
margin-top:0px;
margin-bottom:14px;
}

h1 {

font-size:14px;
line-height:19px;
margin-top:0px;
margin-bottom:0px;
color:#FF0000;
font-style:normal;
font-weight:normal;

}


#title {
width: 700px;
height: 20px;
margin-top: 50px;
margin-bottom:10px;
background-image: url(../images/interface/dot.gif);
/*In ie6 it is making the title box bigger for some reason, so it was making the repeat of the
y visible, so I set it to repeat x only*/
background-repeat:repeat-x;
padding-bottom:25px;
}

#title h1{
font-family:"Times New Roman", Times, serif;
  font-size: 24px;
  color: #EF0022;
  font-weight: normal;
}

.whiteout {
background-color: white;
}

 #mainContent {
 	margin: 0 12em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 
#footer {
width: 700px;
height: 30px;
border-top: 4px solid #EF0022;
border-bottom: 1px dotted #EF0022;
margin-bottom: 25px;
padding-bottom: 3px;
clear:both;
}

#footer p {
color: #EF0022;
font-family:  Helvetica, Verdana, san-serif;
font-size: 10px;
margin-top:5px
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}