﻿* /*Set's border, padding and margin to 0 for all values*/
{
margin: 0;
border: 0;
padding: 0;
}
body, html {
color: #000; 
font-family: Verdana, Tahoma, Arial, Sans-Serif;
background-color: #163960;
background-image: url(images/bg2009.gif);
text-align: center; /*** Centers the design in old IE versions ***/
}

a {
color: #000099;
}
a:hover{
color: #0000ff;
text-decoration:  none;
}

.clear { clear: both; }
#mainContainer {
width: 1000px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background-color: #163960;
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 ***/
}

/**************************
HEADER
**************************/
#header 
{
    font-family:Verdana, Tahoma, Arial, Sans-Serif;
    font-size: 8pt;
    font-weight:  bold;
    text-align: right;
    padding-left: 0px;
    padding-right: 28px;
    padding-top: 0px;
    padding-bottom: 0px;    
    color: #ffffff;
    background-color: Transparent;
 }

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 128px; /*** Make som space for our top menu ***/
padding-left: 256px;  
background-color: Transparent;
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 744px; /*** 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: 1000px;
margin-left: -256px; /*** 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: 768px;
background-color: Transparent;
}
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap {
margin: 0px 24px 0px 24px;
background-color: #ffffff;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li 
{
    font-family: Verdana, Tahoma, Arial, Sans-Serif;
    font-size: 8pt;
    font-weight: bold;
    padding-bottom: 2px;
    color: #163960;
}
/**************************
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: 220px;
min-height: 300px;
height: 100%;
padding: 0px 6px 0px 6px; /*** tot width with padding 242  ***/
}
* html #left {
position: relative; /*** IE needs this  ***/
height: 300px;
}

#right {
margin: -128px 0 0 -1000px; /*** Move the right column so it takes the positon as a top menu ***/
float: left; 
width: 1000px;
height: 120px;
background-color: Transparent;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 8px;
padding-left: 0px;
}
* html #right {
position: relative; /*** IE needs this  ***/
}

#footer 
{
    width: 1000px;
    height: 60px;
    margin: 0 auto;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #163960;
}

#footer a:link {
    color: #ffffff;
}
#footer a:visited {
    color: #f6f6dd;
}

#footer p 
{
    font-family:Verdana, Tahoma, Arial, Sans-Serif;
    font-size: 8pt;
    font-weight:  normal;
    text-align: right;
    padding-left: 10px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;    
    color: #ffffff;
}

#seaporte 
{
   font-family:Verdana, Tahoma, Arial, Sans-Serif;
   font-size: 8pt;
   font-weight: bold;
   color: #003366;
   text-align: center;
}

#searchlayout 
{
    font-family:Verdana, Tahoma, Arial, Sans-Serif;
    font-size: 8pt;
    font-weight: bold;
    color: #ffffff;
    margin-right: 24px;
    margin-top: 4px;
    text-align: right;
    float: right;
    vertical-align: top;
    width: 1000px;
}
