/*
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: Arial, sans-serif, Helvetica;
background-color: #ffffff; 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 85%;
}
p {padding: 7px 0 7px 0;}

a {
color: #506a83;
}
a:hover{
color: #7fa7cf;
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;
}
#header h2{
color: #fff;
}
.clear { clear: both; }

td {
padding-right:20px;
font-size: 110%;
}

#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #ffffff;
/*background: #7fa7cf;*/
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
**************************/
#headertop {
background: #ffffff;
padding-bottom: 10px;
margin-top: 20px;
/*border-top: 1px solid #7fa7cf;*/
}
#header {
/*background: #000099 url('herbstbg.jpg');*/
padding: 0px;
height: 100px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 195px;  
padding-right: 10px;
}
* html .outer {

}
.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: -195px; /*** Same length as .outer padding-left but with negative value ***/
/*background: #7fa7cf;*/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
/*** 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. 
***/
#content {
float: right;
width: 550px;
background: #fff;
position: relative; /*** IE needs this  ***/
padding-left:10px;
border-left: 2px solid #7fa7cf;
}
* html #content {

}
.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: 180px;
/*background: #7fa7cf;*/
min-height: 250px;
padding: 0px;
position: relative; /*** IE needs this  ***/
color: #000;
}
* html #left {
height: 250px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
/*
#left a {
color: #000;
text-decoration: none;
}
#left a:hover {
color: #000;
text-decoration: underline;
}
*/
.highlight {
/*background: #277bfd;*/
background: #277bdd;
color:#fff;
padding:1px;
}

#left li {
padding-bottom: 2px;
}
#menu {
margin-left:0px;
}
/**************************
FOOTER
**************************/
#footer {
width: 760px;
margin: 0 auto;
text-align: center;
background-color: #fff;
margin-top:10px;
border-top: 1px solid #7fa7cf;
}
#hspacer {
width: 760px;
height: 1px;
margin: 0 auto;
text-align: center;
background: #7fa7cf;
}
/**************************
FORM
**************************/

input, textarea {
border: 1px solid #7fa7cf;
}

#submitbtn {
border: 1px solid #555;
border-left: 1px solid #eee;
border-top: 1px solid #eee;
margin: 5px;
padding:5px;
}

form
{
margin-top:2em;
margin-left:6em;
margin-bottom:2em;
}

form.meta
{
margin-top:0em;
margin-left:0em;
margin-bottom:0em;
}


label
{
width: 8em;
float: left;
text-align: left;
margin-right: 0.5em;
display: block
}

#regform {
list-style: none;
/*border-bottom: 1px solid gray;*/
width: 23em;
}

#metaform {
list-style: none;
/*border-bottom: 1px solid gray;*/
margin: 0px;
width: 50em;
}


#regform li {
padding-top: 5px;
margin-bottom: 5px;
border-top: 1px solid gray;
}

/* Table */
#filelist td {
padding-left: 10px;
padding-bottom:10px;
};

#shortmeta td {
padding: 0px;
margin:0px;
border:1px solid red;
};