/* 

This CSS stylesheet deals with the physical layout and element placements for the web pages.

For individual styling of content block elements (headers, paragraphs, links, lists, etc), see style.css 

*/

* {
padding:0;
margin:0;
}

body {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
background-color:#bdb6b0;
}

#container { 
margin:0 auto;
width:960px;
background-color:#ffffff;
}

#row_1 {
width:960px;
height:123px;
}

#nav {
width:960px;
height:35px;
}

#content {
	width:960px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#footer {
width:960px;
height:30px;
border-top:1px solid #293f6f;
margin-top:5px;
padding-top:10px;
}

#clear_div {
clear:both;
}

