
body
{
	background-color: #fff;
	color: #000;
	font-family: arial, helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */

.clear
{
	clear: both;

}
.hide
{
	display: none;
}

:root .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick
	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector
	 * :root .mozclear for what's given here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}




/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */

body
{
	padding: 0;
	margin: 0;
}
#pageWrapper
{
	border: solid 0px #fff;
	border-width: 2px 2px;
	margin: 0;		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 40em;	/* IE doens't understand this property. I use ems rather
				   than pixels so that the layout shouldn't break even
				   when the browser's default size is set very large */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border: solid 1px #fff;
	background-color: #09306B;
	border-width: 0 0 1px 0;
	padding: 0;
}
#masthead h1
{
	padding: 0.3em;
	margin: 0;
	color: #FFFFFF;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you 
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 206px #fff;
	border-right: solid 205px #fff;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;

	margin-top: -2px;
	border-top: 2px solid red;

}
#leftColumn, #middleColumn, #rightColumn, #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	background-color:#09306B;
	color:#FFFFFF;
	float: left;
	margin: 0 1px 0 -206px;
	width: 205px;
	z-index: 4;
	border-right: 1px solid #FFFFFF;
}
#rightColumn
{
	float: right;
	width: 204px;
	margin: 0 -204px 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}

h1, h2, h3, h4, h5, h6
{
	color: #09306B;
}
h1
{
	font-size: 170%;
}
h2
{
	font-size: 150%;
}
h3
{
	font-size: 120%;
}
h4
{
	font-size: 120%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}




/* Bertram Schittenhelm styles */


a:link, a:visited, a:active
{
	text-decoration: none;
	color: #29508B;
}
a:hover
{
	text-decoration: underline;
}


/* main Navigation */

.mainNavi {
	position:relative;
	margin: 0;
	padding: -1px;
	color:#FFFFFF;
}

.mainNavi h1 {
	font-size: 120%;
	margin: 0px;
	padding: 5px;
	color:#FFFFFF;
}

.naviBox
{
	position:relative;
	float: left;
	background-color:#006699;
	width: 7.5em;
	height: 3.8em;
	padding: 0.4em;
	margin: 3px 0 0 -1px;
	border: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
	top: -2px;	
}
	

.naviBox h2
{
	font-size: 100%;
	color:#FFFFFF;
	margin: 0;
	padding: 0;
	margin-top: -4px;
	margin-bottom: -3px;
}

.naviBox ul
{
	margin: 0;
	padding: 0;
}


.naviBox li
{
	display:inline;
	list-style-type:none;
	margin: 0;
	padding: 0;
	line-height: 100%;
}

.naviBox a
{
	position:relative;
	display:block;
	padding: 0;
	margin: 0;
}

.naviBox a:link, .naviBox a:visited, .naviBox a:active
{
	color:#FFFFFF;
	font-size: 80%;
	text-decoration: underline;
}

.naviBox  a:hover
{
	color:#FFFFFF;
	background-color:#29508B;
}

/* left Navigation */

#leftColumn .naviBox {
	background-color:#09306B; 
	width:auto; 
	height:auto; 
	overflow:hidden;
	border: 0;
}

/* breadcrumb */

.breadcrumb {
	position:relative;
	background-color:#09306B;
	color:#ffffff;
	padding: 3px;
	top: -1px;
	left: -1px;
	font-size: 80%;
	border-top: 1px solid #ffffff;
	border-left: 0px solid #ffffff;
}


.breadcrumb a
{
	position:relative;
	padding: 0;
	margin: 0;
}


.breadcrumb a:link, .breadcrumb a:visited, .breadcrumb a:active
{
	text-decoration: underline;
	color: #ffffff;	
}

.breadcrumb a:hover
{
	text-decoration: underline;
	color:#FFFFFF;
	background-color:#29508B;
}


.innerBody
{
	background-color: #ffffff;
	margin: 0;
	position: relative;
	padding: 1em;
	padding-right: 3em;
	font-size: 80%;
	text-align:left;
}


a img 
{
	border: 0;
}

.container {
	padding: 0;
	margin: 0;
}

/* Formulare */


.input { 
	border: 1px solid #888888;
	margin-left: 1em;
	padding: .2em;
} 

.stdform label {
/*	clear:left;
	float:left;
	width:80px;
	margin: 2px 0px 2px 0px; */
	display:block;
	margin: 0;
	margin-top: 0.4em;
}

.wideform label {
/*	clear:left;
	float:left;
	width:160px;
	margin: 2px 0px 2px 0px; */
	display:block;
	margin: 0;
	margin-top: 0.4em;
}

.stdform fieldset, .wideform fieldset {
	padding: 0;
	margin: 0;
}


.innerfieldset{
	padding: 0.5em 1em 1em 1em;
}

.innerfieldset div {
	float:left;
	display:block;
	width: 310px;
}

.clearfix:after , .innerfieldset:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

input, textarea {
	color: #000;
	background: #fff;
}

.errHilite {
	color: #FF0000;
}

input:focus, textarea:focus {
	color: #000;
	background: #ddd;
}

label,
select,
input[type=checkbox],
input[type=radio],
input[type=button],
input[type=submit] {
cursor: pointer;
}

.error {
	font-size: 110%;
	color: #FF0000;
	font-weight:bold;
}

.lnav a:link, .lnav a:visited, .lnav a:active{ 
	text-decoration:underline;
	color:#ffffff;
}

.lnav a:hover {
	background-color:#94A7C5
}

.lnav {
	margin: 1px 1px;
	padding-left: 5px;
	padding-top: 10px;
	font-size:80%;
}

