* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 70%;
}
p, ul, ol, li {
margin-bottom: 10px;
margin-top: 10px;
}
ul, ol, li {
margin-left: 15px;
}
#mainContainer ul, #mainContainer ol, #mainContainer li {
margin-left: 10px;
}
.clear { clear: both; }
#mainContainer {
width: 775px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
width: 775px;
overlow: hidden;
}
/**************************
HEADER
**************************/
#header {
background-color:#000000;
}
* html #header {
width: 773px;
overflow:hidden;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 140px;  
padding-right: 140px;
}
* html .outer {

}
.inner {
width: 635px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
width: 96%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 600px;
margin-left: -140px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
width: 590px;
/*** No need for hacking IE on this layout ***/
}
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#content {
padding-top: 5px;
float: right;
width: 385px;
position: relative; /*** IE needs this  ***/
}
* html #content {

}
#content.full {
padding-top: 5px;
float: right;
width: 595px;
position: relative; /*** IE needs this  ***/
}
* html #content.full {
width: 585px;
}

#content.small {
padding-top: 5px;
float: right;
width: 270px;
position: relative; /*** IE needs this  ***/
}
* html #content.small {
width: 265px;
}
#content_new {
padding-top: 5px;
float: right;
width: 260px;
position: relative; /*** IE needs this  ***/
}
.contentWrap {
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 200px;
min-height: 250px;
padding: 5px;
position: relative; /*** IE needs this  ***/
}
#left.large {
float: left;
width: 315px;
min-height: 250px;
padding: 5px;
position: relative; /*** IE needs this  ***/
}
* html #left {
height: 250px;
}
* html #left.large {
width: 325px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 162px;
padding: 5px;
min-height: 250px;
position: relative; /*** IE needs this  ***/
}
* html #right {
margin-right: -160px; /*** IE gets this margin. ***/
height: 250px;
}
/**************************
FOOTER
**************************/
#footer {
width: 775px;
margin: 0 auto;
text-align: center;
}
/**************************
SEARCH
**************************/
#content p.searchTitle{
	margin-bottom: 0px;
}
#content #searchresultsDIV p{
	margin-bottom: 0px;
}
#content div.searchInfo{
	margin-bottom: 15px;
	color: #666666;
}
#content div.searchResult p{
	margin-top: 0px;
	margin-bottom: 0px;
}