.clear
{
	clear: both;
}

.hide
{
	display: none;
}

.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box
	 * model. so it's okay to apply vertical padding to the parent element,
	 * just not horizontal padding.
	 */
	padding: 0.6em 1em;
}

.insideRight {padding: 0 3px;}
.insideLeft {padding: 0.1em 0.3em;}


html[xmlns] .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;
}

/* 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: 5px;
	margin-bottom: 5px;
	padding-top: 0;
	padding-bottom: 0;
}

h1
{
	font-size: 100%;
}

h2
{
	font-size: 100%;
}

h3
{
	font-size: 115%;
}

h4
{
	font-size: 100%;
}

h5
{
	font-size: 100%;
}

h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */

a, a:link, a:visited, a:active
{
         color:#0000ff;
         text-decoration: underline;
}

a:hover
{
	text-decoration: none;
}


code
{
	font-family: "Courier New", Courier, monospace;
}

label
{
	cursor: pointer;
}

table, input {font-size: 100%;}
td, th {vertical-align: top;}
input, legend, option, select, textarea {font-weight: bold; line-height: normal; line-height:1.8em;}
a, address, blockquote, div, caption, cite, dfn, dl, dt, fieldset, h1, h2, h3, h4, img, input, label, legend, li, ol, option, p, q, select, textarea, td, th, ul {font-family: tahoma, verdana, arial, helvetica, sans-serif}
form {margin:0px;}

#middleColumn label {clear: both; float: left; width: 30%; padding:0px 0px; text-align: right}
#middleColumn form {line-height: 150%;}


.img2 {margin-right:10px;}

/* 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: 2px 2px;
	margin: 0px;
}

#pageWrapper
{
	border: solid 1px #fff;
	border-width: 1 1px;
	margin: 0 0 0 1px;		/* 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: 945px;
         float:left;
}

* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

#masthead
{
         border: solid 1px #fff;
         width:945px;
	border-width: 0px 0;
	padding: 0em;
}

#masthead h1
{
	padding: 0;
	margin: 0;
}

#outerColumnContainer
{
	border-left: solid 168px #000;     /* breite für linken Rand  #leftColumn +1px */
	border-right: solid 165px #000;    /* breite für rechten Rand */
}

#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 0px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}

#leftColumn, #middleColumn, #rightColumn, * html #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
{
	float: left;
	margin: 0 0px 0 -170px;   /* Abstand von linken Randen - outerColumnContainer Breite +3px*/
	width: 168px;
	z-index: 4;
}

#rightColumn
{
	float: right;
	width: 165px;
	margin: 0 -15.0em 0 1px;
    border: 0px solid #000;
	z-index: 2;
}

#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

.vnav

{
	margin:0px 0px 0px 2px;

}

.vnav ul, .vnav ul li

{

	margin: 0;

	padding: 0px 0px;

	list-style-type: none;

	display: block;

}

.vnav ul

{

	border: solid 0px #fff;

	border-bottom-width: 0;

}

.vnav ul li

{

	border-bottom: solid 0px #fff;

}

.vnav ul li, .vnav ul li a

{

	margin: 0;

	display: block;

	padding: 0;

	line-height: normal;

}

.vnav ul li a

{
	display: block;
         padding: 3px 5px 4px 5px;
}

.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover

{

	text-decoration: none;

	cursor: pointer;

}


.vnav h3

{

	margin-bottom: 0;

	padding-bottom: 0;

	font-size: 126%;

}

* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */

{

	height: 0.01%;

}

* html .vnav ul

{

	position: relative;	/* IE needs this to fix a rendering problem */

}



/* horizontal navigation stuff. mostly exactly as seen in the hnav.css styleheet

 * in the original skidoo layout.

 */



.hnav

{

	border-bottom: solid 1px #2f2f2f;

         width:945px;

	margin: 0;

	padding: 3px 0 4px 0;

	white-space: nowrap;


}

.hnav ul span.divider

{

	display: inherit;

}

* html .hnav/* Hide from IE5/Mac (& IE5.0/Win) */

{

	height: 0.01%;	/* holly hack to fix a render bug in IE6/Win */

}

* html .HNAV

{

	height: auto;	/* above IE6/Win holly hack breaks IE5/Win when page

			   length get beyond the point that 1% height is taller

			   than the text height. IE5/Win does not need this

			   holly hack so we remove it here */

	padding: 0;	/* IE5/Win will resize #hnav to fit the heights of its

			   inline children that have vertical padding. So this

			   incorrect case selector will remove that padding */

}

.hnav ul

{

	text-align: left;

	list-style-type: none;

	line-height: normal;

	margin: 0;

	padding: 0;

}

.hnav ul li

{

	display: inline;

	white-space: nowrap;

	margin: 0;

}

.hnav ul li a, .hnav ul li a:link, .hnav ul li a:visited, .hnav ul li a:active

{

	text-decoration: none;

	margin: 0 -1px 0 0;

	padding: 3px 10px 4px 10px;

	border-left: solid 0px #000;

	border-right: solid 0px #000;

}

* html .HNAV ul li a

{

	/* \*/

		width: 1%;

	/* holly hack for IE5/Win inline padding. this hack fixes different

	 * rendering bugs in 5.0 and 5.5. Width is used instead of height

	 * because if the document is too long, these elements become very tall

	 * and disrupt the look of the document. too wide an element is better,

	 * visually, than too tall. */

}

.hnav ul li a:hover

{

	text-decoration: none;

}



/* below is a series of selectors to get a consistent font size across

 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper

 * to set the base font-size for the layout.

 */



body

{

	font-size: 100%;

}

html>body

{

	/* Opera's default font size is typically 10% smaller than IE or Mozilla

	 * so we correct for this here, since we're using percentages

	 * everywhere. And we do this because pixel-based fonts don't resize

	 * under IE/Win and percentages/ems are essentially the same, and I like

	 * percentages for fonts.

	 */

	font-size: 105%;

}

body:last-child, * html body

{

	/* of course the previous selector for Opera's fix is caught by more

	 * than a few other browsers, so we reset that value here.

	 */

	font-size: 100.1%;

}



/* everything below this point is related to the page's "theme" and could be

 * placed in a separate stylesheet to allow for multiple color/font scemes on

 * the layout. you should probably leave a default theme within this stylesheet

 * just to be on the safe side.

 */



#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a

{

	border-color: #565;

}

body

{

	background-color: #fff;

	color: #000;

	font-family: tahoma, verdana, arial, helvetica, sans-serif;

}

#pageWrapper

{

	font-size:70%;	/* set your default font size here. */
         line-height:1.4em;

}

#masthead

{

	background-color: #4040ff;         /* 4040ff */

	color: #fff;

}

.hnav
{
	/*background-color: #9FA9CF; */    /* aba 405080  6078bf*/
         background-image: url(../images/bg_hnav.jpg);
         background-repeat: no-repeat;
         color: #000;
}

#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color ded  E6ECFF */
	border-right-color: #E3E4FF ;	/* right column background color cfd4e6  FFF280 FFF4BF*/
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

.vnavtitle {
display:block;
margin:5px 0px 1px 0px;
padding: 1px 5px;
background-color: #FFF280;     /* bf3030 */
border:1px solid #FFF4BF;
font-weight:bold;
background-image: url(../images/tabhead_yellow_klein.gif);
color:#000;
}

.vnav ul
{
         background-color:FFFFC0;
}

.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #FFFFC0;   /* cdc cfd4e6  6078bf 4784c4  fffc0*/
         color: #0000ff;
         font-weight:bold;
         border-bottom: 1px solid #FDFF31;
	border-right:  1px solid #FDFF4D;
	border-left:   1px solid #FFFFEB;
	border-top:    2px solid #FFFFEB;
}


.vnav ul li a:hover
{
	text-decoration: none;
	background-color: #F8F8F8;   /* 898 458A8A*/
	color: #0000ff;
         border:0px solid #999BFF;      /* bfcfff  999bff*/
         border-bottom: 1px solid #FDFF4D;
	border-right:  1px solid #FDFF4D;
	border-left:   1px solid #EEEEEE;
	border-top:    2px solid #F8F8F8;
}

.hnav ul li a:link, .hnav ul li a:visited
{
	background-color: none;   /* bcb 6078bf 4784c4  9FA9CF*/
	color: #DF0000;
         font-weight:bold;
}

.hnav ul li a:hover
{
	background-color: none;
	color: #3f3f3f;
         border:0px 0px solid #BFCFFF;
}

#rightColumn .inside

{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}

#footer
{
	background-color: #4040ff;
	color: #fff;
	text-align: center;
}

.tabhead
{
background-color: #3570B3;
font-weight: bold;
color: #FFFFFF;
text-align: left;
padding: 2px;
background-image: url(../images/tabhead.gif);
}

.tabheadyellow
{
background-color: #3570B3;
font-weight: bold;
color: #000;
text-align: left;
padding: 2px;
background-image: url(../images/tabhead_yellow.gif);
}

.boxblue /* normale Box mit Rahmen */
{
font-size: 100%;
background-color: #E3E4FF;     /* ffffc0 */
border:1px solid #999BFF;      /* bfcfff */
color:#000
margin: 3px;
}


.box /* normale Box mit Rahmen */
{
font-size: 100%;
background-color: #ffffc0;     /* ffffc0 */
border:1px solid #FFF280;      /* bfcfff */
color:#000
margin: 3px;
}

.topicline
{
display:block;
margin:5px 0px 1px 0px;
padding: 1px 5px;
background-color: #E6ECFF;
border: 0px solid #BFCFFF;
border-width: 1px 0px;
font-weight:bold;
color:#000
}

.topicline a, .topicline a:link, .topicline a:visited, .topicline a:active, .topicline a:hover
{
text-decoration:none;
}

.infobox
{
background-color: #ffffff;
border: 0px solid #BFAE60;
border-width: 2px 0px;
padding:3px;
}

.boxborder  {font-size: 100%;
line-height:1.3em;
border: 1px solid #FFF280;
background-color : #f9f9f9;
color: #000000;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 0px;
margin-right: 0px;
padding:0px;
}


.boxtitle /* für Titel der Box */
{
background-color: #FFF280;       /* bfcfff 4040ff*/
padding: 2px 2px 2px 3px;
font-weight:bold;
color:#000}      /* bf3030 */
}
