
/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/

body, html {
	color: #444; 
	font-family: Arial, Tahoma, sans-serif;
	text-align: center; /*** Centers the design in old IE versions ***/
	/*height: 100%;*/
	
}
body {
	padding: 0;
	margin: 0;
	font-size:70%;
	background:#fff url('images/bg.gif') top left  repeat-x;
	margin-top: 0px;
}

p, table, div, ul {
	font-size:1em;
	line-height: 1.5em;
	}
a {
	color: #002A4C;
	text-decoration: underline;
}
a:hover{
	color: #002A4C;
	text-decoration: underline;
}
a.con {
	color: #002A4C;
	text-decoration: none;
}
a.con:hover{
	color: #E93213;
	text-decoration: none;
}

h1 {
	font-size: 1.1em; 
	font-weight: bold;
	padding-bottom: 1px;
	color: #666;
}
h2 {
	font-size: 1.2em;
	font-weight: bold;
	color: #E93213;
	padding-bottom: 1px;
}
h3 {
	font-weight: normal;
	font-size: 1.5em;
	color: #E93213;
	padding-bottom: 3px;
}
ul {
	list-style-type: none;
	padding-left:0px;
	margin-left: 10px;
	}
li {
	background: url('images/bullet.gif') no-repeat left top;
	padding-left: 20px;
	margin-bottom: 3px;
	}
	
hr {

	color: #ccc;
	border-style: solid;
	}
	
table.fine {
	border-width: 1px;
	border-style: solid;
	border-color: #D1D3C0;
	border-collapse: collapse;
}

table.fine td {
	border-width: 1px;
	border-style: solid;
	border-color: #D1D3C0;
	padding: 3px;
}
select, input, menu, list {
	font-family: Arial, Tahoma, sans-serif;
	font-size: 1em;
}	
.clear { clear: both; }
.orange{ color: #FF9900;}
.white{ color: white;}
.border { border: 3px solid #ccc; }

#mainContainer {
	width: 850px;
	min-width: 850px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 100%;
	background-color: transparent; /*** This is our faux columns ***/
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
	height: 100%;  /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background: transparent url('images/head_bg.jpg') no-repeat;
	padding: 0px;
	height: 260px;
}
#tag {
	margin-left: 0px;
	margin-top: 0px;
	}


/**************************
NAV
**************************/
#nav {
	background: transparent;
	padding: 0px;
	height: 0px;
	margin-left: 0px;
}
/**************************
CONTENT AND COLUMNS
**************************/
#content {
float: right;
width: 250px;
padding: 20px;
margin-top: 10px;
border-left:1px solid #ccc;

}
* html #content {
position: relative;  /*** IE needs this  ***/
}

#left {
float: left;
width: 420px;
min-height: 250px;
padding: 20px;
margin-top: 10px;
margin-left: 0px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
height: 250px;
}


/**************************
FOOTER
**************************/
#footer {
	width: 850px;
	height: 50px; 
	margin: 0 auto;
	margin-top: -50px;

}
