@charset "utf-8";
/* CSS Document */


* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}

body, html {
font-family: Verdana, Arial, Tahoma, sans-serif;
text-align: center; /*** Centers the design in old IE versions ***/
}


.clear { clear: both; }
#mainContainer {
width: 950px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
border: 1px solid #5b692e;
margin-top: 7px;
margin-bottom: 7px;
background-color: #fff;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 150px; /*** Make som space for our top menu ***/
padding-left: 165px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 785px; /*** 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: 100%;
}
/*** 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: 950px;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 725px;
background: #fff;
padding-right:7px;
}
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap {

}
.contentWrap ol{

}
.contentWrap li {

}
/**************************
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: 196px;
min-height: 250px;
padding: 5px;
margin-left:5px;
}
* html #left {
position: relative; /*** IE needs this  ***/
height: 250px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
Header Container
**************************/
#header {
margin: -140px 0 0 -950px; /*** Move the right column so it takes the positon as a top menu ***/
float: left; 
width: 940px;
padding: 5px;
height: 130px;
}
* html #header {
position: relative; /*** IE needs this  ***/
}
#header ul {
list-style: none;
}
#header li {
display: inline;
}
/*************************
Crumb Trail Container
**************************/
#crumbtrail {
margin: -10px 0 0 -950px; /*** Move the right column so it takes the positon as a top menu ***/
float: left; 
width: 930px;
padding: 5px;
height: 15px;
background-color:#333366
}
* html #crumbtrail {
position: relative; /*** IE needs this  ***/
}
#crumbtrail ul {
list-style: none;
}
#crumbtrail li {
display: inline;
}
/**************************
FOOTER
**************************/
#footer {
width: 950px;
margin: 0 auto;
}



/**************************
Search Box
**************************/
#searchkeywords {
border-bottom-color:#DADBE0;
border-bottom-style:solid;
border-bottom-width:1px;
border-left-color:-moz-use-text-color;
border-left-style:none;
border-left-width:0px;
border-right-color:-moz-use-text-color;
border-right-style:none;
border-right-width:0px;
border-top-color:#DADBE0;
border-top-style:solid;
border-top-width:1px;
font-family:Arial,Helvetica,sans-serif;
font-size:15px;
line-height:21px;
height:21px;
width:320px;
padding-bottom:0px;
padding-left:0px;
padding-right:0px;
padding-top:2px;
color:#F15C30;
}

#recentitems{
width:175px;
padding-left:10px;
}

#recentitems a img{
border:solid 1px #b0ca4c;
}








