/*
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;
outline: 0;
}
body, html {
color: #9EC0DA; 
font: 14px Georgia,"Times New Roman",Times,serif;
height: 100%;
background: url("./../images/left.jpg") repeat-y #054973;
}
th {font-size: 13px; background:#438bbb; color:white;text-align:left; padding:2px 5px; }
th a { color:white; text-decoration:none; font-size: 10px; }
td { font-size: 10px; color:#000; padding:2px 5px; }
table.sortable tr.odd td {background-color: #63abdb;}
table.sortable tr.even td {
	background-color: #73bbeb;
}
table.sortable a {
	color: #FFF;
}


.invis {display:none;}
body {
min-width: 950px;
}
p {
padding: 7px 0;
clear: both;
}
#text p {
padding: 2px 12px 2px 50px;
margin:0;
}
#text ul {
padding: 2px 12px 2px 50px;
margin:0;
}
a {
color: #1FE8FA;
text-decoration: none;
}
a:hover {
color: #1FE8FA;
text-decoration: underline;
}
h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
color:#6790AA;
}
h1 {
font-size: 2em;
}
h2 {
font-variant:small-caps;
font-size: 1.4em;
color:#1E72A5;
}
h3 {
font-size: 1.2em;
color: #fff;
padding:2px;
padding-top:30px;
border-bottom:1px solid #1E72A5;
clear:both;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
min-height: 100%;
background: url("./../images/right.jpg") 100% 0 repeat-y; /*** This is the right column background "faked" with an image. You can also position the image using right top repeat-y also. ***/
}
* 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: #000099;
padding: 10px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px; /*** Same width as margin-left for the float-wrap div ***/
padding-right: 100px; /*** Our right column width ***/
}
.inner {
width: 100%;
padding-bottom: 45px; /*** Padding-bottom value is the same value as the total height of the footer ***/
}
/*** 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: 100%;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}

#content {
float: right;
margin-right: -165px; /*** Same length as .outer padding-left but with negative value ***/
width: 100%;
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. 
***/
#left {
float: left;
width: 155px;
padding: 5px;
background: url(/examples/rounded-images/t-1.gif) 100% 0 no-repeat; /*** Our upper left rounded image to create the rounded content look ***/
position: relative; /*** IE needs this  ***/
}

#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 100px;
padding: 0px 0 0 10px;
position: relative; /*** IE needs this  ***/
margin-right: -100px; /** This negative margin-right value is in this example the same as the right column width. ***/
position: relative; /*** IE needs this  ***/
}

#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
height: 45px; /*** 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 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin-top: -45px; /*** 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: url(/examples/rounded-images/b-bg.gif) repeat-x #F1F1F1; /*** The lower part of the rounded content look ***/
}
#footerLeft, #footerRight {
height: 15px; 
background: #F1F1F1;
}
#footerLeft {
float: left; 
width: 165px; /*** Same length as .outer padding-left ***/
background: url(/examples/rounded-images/b-1.gif) 100% 0 no-repeat #F1F1F1; /*** Our left bottom part of the rounded content look ***/
}
#footerRight {
float: right;
width: 115px; /*** Same length as right plus some padding. If you get a horisontal scrollbar try to adjust this value. ***/
background: url(/examples/rounded-images/b-2.gif) no-repeat #F1F1F1; /*** Our right bottom part of the rounded content look ***/
}
#footer p {
clear: both;
}



dl.table-display
{
width: 100%;
clear:both;
padding-left:45px;
}

.table-display dt
{
width: 150px;
float: left;
clear:both;
margin: 0;
padding: 5px;
border-bottom:1px solid #1E72A5;
font-weight: bold;
}

.table-display dd
{
float: left;
width: 410px;
margin: 0;
padding: 5px;
border-bottom:1px solid #1E72A5;
}

form .table-display dd, form .table-display dt {
	border:0;
}

