/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
*
  /*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;
	background-color: #eee;
	text-align: center; /*** Centers the design in old IE versions ***/
}


body {
	font-size: 70%;
}

p {
	padding: 7px 0 7px 0;
}

a {
	color: #000099;
}

a:hover {
	color: #0000FF;
	text-decoration: none;
}

h1,h2,h3,h4,h5 {
	font-weight: bold;
	padding-bottom: 5px;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.4em;
}

h3 {
	font-size: 1.3em;
}

h1 a,#header h2 {
	color: #fff;
}

.clear {
	clear: both;
}

#mainContainer {
	width: 760px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 300px;
	/*background: #add8e6;*/
	background: #fff;
	text-align: left;
	border-left:1px solid #4B4439;
	border-right:1px solid #4B4439;
	border-top:1px solid #4B4439;
	/*** 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 ***/
}

/**************************
HEADER
**************************/
div #header {
	background-color: #837B6F;
	padding: 0px;
	margin:0px;
	text-align: right;
	color: #ffffff;
	font-size: 14px;

	width: 100%;
	
}

div #header a	{
	padding: 2px;
	color: #ffffff; 
	text-decoration: none;
	
}
div #header a:hover	{
	padding: 2px;
	color: #ffffff;
	text-decoration: underline;
}

div #header ul {
	padding-top:20px;
	padding-right:14px;
	list-style-type:none; 
}
div #header li {
	display:inline;

}

div #menu {
	margin: 20px 0 0 0;
	/*** Move the right column so it takes the positon as a top menu ***/
	
	width: 750px;
	background-color: #4B4439;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 4px;
	height: 20px;
	font-size: 11px;
	color: #ffffff;
	text-align: left;

}



div #menu ul {
	list-style: none;
	display: inline;
}

div #menu li {
	display: inline;
	padding-right: 3px;
	padding-left: 3px;
		
}

div #menu a	{
	padding: 2px;
	color: #ffffff;
	text-decoration: none;
	font-style: normal;
}
div #menu a:hover	{
	padding: 2px;
	color: #ffffff;
	text-decoration: none;
	background-color: #837B6F ;
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	margin-top: 0px; /*** We need to add some space for our top menu ***/
	padding-left: 165px;
}

* html .outer { /*** No need for hacking IE on this layout ***/
	
}

.inner {
	width: 595px;
	/*** 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: 760px;
	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: left;
	width: 600px;
	background: #fff;
}

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

.contentWrapIndex {
	padding: 0px;
}

div.boxhome{
	float: left;
	width: 33%;
	padding-top: 10px;
}

div.boxhome h1{
	padding-left:10px;
	color: #837B6F;
	font-size:18px;
	font-weight: normal;
	white-space: nowrap;
}

div.boxhome li{
	padding-left:10px;
	margin-bottom:10px;
	
	list-style-type : none;
	color: #003664;
	font-size: 10px;
	line-height:11px;
	text-align:left;
}

div.boxhome a{
	color: #003664;
	text-decoration:none;
}

div.boxhome a:hover	{
	color: #003664;
	text-decoration:underline;
}

div.contentWrap {
	padding: 10px;
	font-size:10px;
	line-height:18px;
}

div.contentWrap h1{
	padding-top:15px;
	padding-bottom:15px;
	color: #4B4439;
	font-size:18px;
	font-weight: normal;
}

div.contentWrap h2{
	padding-top: 10px;
	padding-bottom: 0px;
	color: #4B4439;
	font-size:11px;
}

div.contentWrap ul{
	list-style: disc;
	padding: 10px;
	margin-left: 20px;
}
div.contentWrap a{
	color: #003664;
	text-decoration:none;
}

div.contentWrap a:hover	{
	color: #003664;
	text-decoration:underline;
}

div.contentWrap p{
	padding-left: 0px;
	padding-top: 3px;
}
div.contentWrap td{
	padding-left: 0px;
	padding-bottom: 10px;
}
div.contentWrap input{
	border: 1px solid black;
}
div.contentWrap textarea{
	border: 1px solid black;
}
div.contentWrap select{
	border: 1px solid black;
}
div.contentWrap fieldset{
	border: 1px solid black;
}
div.contentWrap legend{
	/*border: 1px solid black;*/
    margin: 3px;
    padding: 2px;
}
div.contentWrap label{
    padding-left: 5px;
    padding-right: 15px;
}

div.menumondo ul{
	list-style: none;
	display: inline;
	margin: 0px;
	padding: 0px;
}
div.menumondo li{
	display: inline;
	margin: 0px;
	padding: 0px;
}
div.mondo h3{
	padding-left:0px;
	padding-bottom:0px;
	color: red;
	font-size:10px;
	font-weight: normal;
	white-space: nowrap;
}
div.mondo hr{
	border-top: 1px  solid #003664;
	font-size: 0;
	height: 0px;
}

div.tabscad table{
	border-left: 1px #cecece solid;
	border-top: 1px #cecece solid;
}

div.tabscad td{
	border-right: 1px #cecece solid;
	border-bottom: 1px #cecece solid;
	text-align: center;
	padding: 2px;
	
}
div.tabform table{
}

div.tabform td{
	text-align: left;
	padding: 2px;
	vertical-align: top;
}
div.tabform h3{
	padding: 0px;
	margin: 0px;
	color: red;
	font-size: 10px;
	font-weight: normal;
	white-space: nowrap;
}



/**************************
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: right;
	width: 150px;
	/**background: #fcc;**/
	background: #fff;
	min-height: 250px;
	padding: 5px;
}

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

div.boxmenu{
	padding-top: 10px;
}

div.boxmenu h1{
	padding-left:0px;
	color: #837B6F;
	font-size:18px;
	font-weight: normal;
	white-space: nowrap;
}

div.boxmenu li{
	padding-left:0px;
	margin-bottom:10px;
	
	list-style-type : none;
	color: #003664;
	font-size: 10px;
	line-height:11px;
	text-align:left;
}

div.boxmenu a{
	color: #003664;
	text-decoration:none;
}

div.boxmenu a:hover	{
	color: #003664;
	text-decoration:underline;
}


/*************************
RIGHT COLUMN
**************************/


/**************************
FOOTER
**************************/
#footer {
	width: 760px;
	height:30px;
	margin: 0 auto;
	
	background-color: #4B4439;
	border-top: 3px solid #837B6F;
	border-left: 1px solid #4B4439;
	border-right: 1px solid #4B4439;
	border-bottom: 1px solid #4B4439;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #eee9e1;
	padding-top:1px;
    text-align:left;
}

#footer a.mail	{
	color: #ffffff;
	text-decoration:none;
}
#footer a.mail:hover	{
	color: #ffffff;
	text-decoration:underline;
}

div.marqueeBody{
	padding-left:10px;
}
