/* Stylesheet based on the examples at http://www.strictlycss.com/ */

A:link { color: blue }
A:active { color: 0000ce}
A:visited { color: 0000ce }

H1 { color: 000099; font-size: 24pt; font-family: arial, sans-serif }
H5 { color: 000099; font-size: 10pt; font-family: arial, sans-serif }
H2 { color: 000099; font-family: arial, font-variant: small-caps }
H3 { color: 000099; font-family: arial }
P  { color: 000099; text-indent: 1cm; font-family: arial; padding: 7px 0 7px 0; text-align: justify; line-height: 135% }

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

ul {
list-style: none;
padding-bottom: 4px;
}

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

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

#logo { float: left }
#intro { color: 000099; font-size: 9pt; font-family: arial, sans-serif; text-align: justify }

/**************************
Title
**************************/
#title {
background: #dbdbdb;
padding: 10px;
min-height: 160
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 50px; /*** Make som 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: right;
width: 600px;
background: #dbdbdb;
}
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap {
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
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. 
***/
#menu {
float: left;
width: 150px;
background: #dbdbdb; 
min-height: 250px;
padding: 5px;
}
* html #menu {
position: relative; /*** IE needs this  ***/
height: 250px;
}
#menu ul {
list-style: none;
padding-bottom: 4px;
}
#menu li {
padding-bottom: 6px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
margin: -50px 0 0 -760px; /*** Move the right column so it takes the positon as a top menu ***/
float: left; 
width: 750px;
background: #dbdbdb;
padding: 5px;
height: 56px;
}
* html #right {
position: relative; /*** IE needs this  ***/
}
#right ul {
list-style: none;
}
#right li {
display: inline;
padding-right: 15px;
}
/**************************
FOOTER
**************************/
#footer {
width: 760px;
margin: 0 auto;
text-align: center;
color: 000099;
background-color: dbdbdb;
}