* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}

body, html {
color: #000; 
font-family: Verdana, Arial, Tahoma, sans-serif;
text-align: center; /*** Centers the design in old IE versions ***/
height: 100%;
}

body {
background-image:url(../img/bg.gif);
}

.clear { clear: both; }
#mainContainer {
width: 778px;
margin: 0 auto; /*** Centers the design ***/
min-height: 100%;
background: #fff; /*** 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 {
}

.headerlogo{
}

.topmenu{
}

.topnavigation{
	height:22px;
	background-image:url(../img/topnavigation.gif);
	margin:0;
	padding:0;
}


.headerspacer{
	height:3px;
	background-image:url(../img/headerspacer.gif);
}

#breaddate{
	height: 16px;
	width:764px;
	background-image: url(../img/breadcrumb.gif);
	font-family: Verdana,Helvetica,Arial,sans-serif;
	font-size: 10px;
	line-height: 10px;
	color: #000;
	padding: 7px 0 0 14px;
}

.breadcrumb{
	width:564px;
}

.breadcrumb a:link{
	color:#ff3300;
	text-decoration:none;
}

.breadcrumb a:active{
	color:#ff3300;
	text-decoration:none;
}

.breadcrumb a:hover{
	color:#ff3300;
	text-decoration:underline;
}

.breadcrumb a:visited{
	color:#ff3300;
	text-decoration:none;
}

.date{
	position:relative;
	width:185px;
	height:15px;
	display:inline;
	margin:0 14px 0 0;
	padding:0;
	text-align:right;
	font-family: Verdana,Helvetica,Arial,sans-serif;
	font-size: 10px;
	line-height: 10px;
	float:right;
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px;
}

* html .outer {
padding-right: 170px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}

.inner {
width: 613px; /*** 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 ***/
padding-bottom: 30px;
/* background-image:url(../img/wrap_bg.gif); */
}

* 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: 607px;
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: 442px;
background: #fff;
}

* html #content {
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: 165px;
}

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

#left ul{
	margin:15px 0 0 20px;
	padding:0;
	font-family: Verdana,Helvetica,Arial,sans-serif;
	font-size: 11px;
	font-weight:bold;
	color: #000;
}

#left ul li{
	list-style:none;
	margin:0;
	padding:0;
}

#left ul li a:active{
	color:#ff3300;
	text-decoration:none;
	font-weight:100;
}

#left ul li a:link{
	color:#ff3300;
	text-decoration:none;
	font-weight:100;
}

#left ul li a:visited{
	color:#ff3300;
	text-decoration:none;
	font-weight:100;
}

#left ul li a:hover{
	color:#ff3300;
	text-decoration:underline;
	font-weight:100;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 170px;
height:100%;
background-color:#ccc;
}

* html #right {
position: relative;  /*** IE needs this  ***/
margin-right: -170px; /*** IE gets this margin. ***/
}

#right h1{
	color:#002040;
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:15px;
	font-weight:bold;
	margin:15px 0 5px 10px;
}

#right p{
	color:#002040;
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:11px;
	font-weight:normal;
	margin:15px 10px 5px 10px;
}


/**************************
FOOTER
**************************/
#footer {
width: 778px;
height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin: 0 auto;
margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
background-image:url(../img/footer.gif);
}

.footertext{
	position:relative;
	top:8px;
	font-weight:normal;
	font-size:10px;
}

.footertext a{
	color:#000;
	textdecoration:underline;
}


/**************************
Global
**************************/
p{
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:12px;
	margin:0;
	padding:0;
}

img{
	margin:0;
	padding:0;
	border:0;
}

h1{
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:16px;
	font-weight:bold;
}

h2{
	font-family:Arial,Helvetica,Verdana,sans-serif;
	font-size:14px;
	font-weight:normal;
}

.standard {
	font-weight:normal;
}

.post {
	margin: 0px 0px 30px 0px;
	text-align: justify;
	width: 424px;
	font-size:11px;
	clear: both;
}

.post .navtitle {
	font-size:16px;
	font-weight:bold;
	margin: 0px;
	padding: 0px 0px 5px 0px;
	color: #111111;
}

.post .title {
	font-size:15px;
	font-weight:bold;
	margin: 0px;
	padding: 0px 0px 5px 0px;
	color: #111111;
}

.post .title a {
	padding: 0 0 4px 0;
	text-decoration: none;
	// font-weight: normal;
	color: #111111;
}
.post .title a:hover {
	padding: 0 0 4px 0;
	text-decoration: none;
	// font-weight: normal;
	color: #007FA0;
}

.post img {
	padding:0 5px 5px 0;
}

.entry {
	overflow: hidden;
}

.entry a:link{
	color: #000000;
}

.entry a:active{
	color: #000000;
}

.entry a:hover{
	color: #007FA0;
}

.entry a:visited{
	color: #000000;
}



/* Search */

#search {
	height: 45px;
	padding: 0px 0px 40px 0px;
	margin-top:20px;
}

#search form {
	margin: 0;
	padding: 12px 0px 0 0;
}

#search fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

#search input {
	float: left;
	font: 11px Georgia, "Times New Roman", Times, serif;
}

.search-text {
	width: 60px;
	height: 18px;
	padding: 3px 0 0 5px;
	border: 1px solid #000000;
	color: #000000;
}


#search-submit {
	height: 18px;
	margin-left: 10px;
	padding: 0px 2px;
	border: 1px;
	background: #000000;
	color: #FFFFFF;
}



.input_ok{
	background-color:#d8f4ff;
	width:260px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	border:1px solid #000;
	color:#000;
}

.input_error{
	background-color:#ffcc99;
	width:260px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	border:1px solid #ff000c;
	color:#000;	
}

.checkbox_ok{
	background-color:#d8f4ff;
	width:16px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	border:0px solid #000;
	color:#000;
}

.checkbox_error{
	background-color:#ffcc99;
	width:16px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	border:0px solid #ff000c;
	color:#000;	
}




