/* do some standard initialization here */
body {
	font-family: Tahoma, Helvetica, sans-serif;
	font-size: 11px;
	line-height:20px;
	color: #666666;
	margin:0px;
	padding:0px;
	background-image:url(pics/background.png);
	background-attachment:fixed;
}

/* this div represents the whole page that is centered in the browser */
div.page {
	background-color: #FFFFFF;
	border: 1px solid #999999;
	width:780px;
	margin-right: auto;
	margin-left: auto;
	
}
/* the header container with its background picture */
div.headerContainer {
	width:780px;
	height:80px;
	background-image:url(pics/headerimage.jpg);
}
/* this container (you might have guessed) surrounds the logo */
div.logoContainer {
	width:140px;
	padding:0px;
	float:left;
	display:inline; /* this is a fix for the ie double-margin bug (see foot notes)*/ 
}
/* this is the container containing the permanent links */
div.permanentLinksContainer {
	width:520px;
	padding-right:5px;
	text-align:right;
	float:right;
}
ul.permanentLinks a {
	padding:0px 5px;
	margin:0px;
	height:18px;
	line-height:18px;
}
ul.permanentLinks ul a {
	display:inline;
	
}
ul.permanentLinks {
	float:right;
	list-style:none;
	padding: 0px;
	margin:0px;
}
ul.permanentLinks li {
	/*position:relative;*/
	float:left;
	
}

ul.permanentLinks li img {
	vertical-align: middle;
	padding: 2px 0 0 0;
}

ul.permanentLinks ul{
	list-style:none;
	padding:0px;
	margin:0px;
	text-align:left;
	width: 140px;
	display:block;
}
ul.permanentLinks li ul li {
	float:left;
}

/*ul.permanentLinks li.ieHover ul, ul.permanentLinks li:hover ul {
	left:auto;
}
ul.permanentLinks ul li.ieHover, ul.permanentLinks ul li:hover {
	background-color:#f2f2f2;
}*/
/***********************NAVIGATION*********************/
/* in this container all navigation elements are included */
div.naviContainer {
	width:100%;
	display:inline; /* this is a fix for the ie double-margin bug (see foot notes)*/ 
}
div.naviBar{
	position:relative;
	
	height:18px;
	background-color:#e2e2e2;
	padding:0px 20px;
	border-top:1px solid #999999;
	border-bottom:1px solid #999999;
}
div.naviBar a {
	margin:0px;
	/*height:18px;*/
	line-height:18px;
	padding:0px 10px;
	display:block;
}

div.naviBar li:hover, div.naviBar li.ieHover  {
	background-color:#f2f2f2;
}
div.naviBar li:hover ul, div.naviBar li.ieHover ul, div.naviBar ul li ul li:hover ul, div.naviBar ul li ul li.ieHover ul  {
	left:auto;

}
div.naviBar li ul {
	left:-999em;
}
div.naviBar li:hover ul ul, div.naviBar li.ieHover ul ul {
	left:-999em;
}
/*li.navi1Item:hover >a,li.navi2Item:hover >a,li.navi3Item:hover >a {
	background-color:#f2f2f2;
}
li.ieHover {
	background-color:#f2f2f2;
}*/
/* the formatting of the navigation items */
div.naviBar ul {
	/*common settings for all navigation ul */
	position:absolute;
	z-index: 10;
	padding:0px;
	margin:0px;
	list-style:none;
	border:0px;
	background-color:#e2e2e2;
}
div.naviBar ul li {
	/* common settings for all navigation li */
	position:relative;
	z-index: 10;
	/*height:18px;*/
	line-height:18px;
	color:#999999;
	background-color:#e2e2e2;
	/*specific settings for the first navigation level li */
	border-left:1px solid #999999;
	border-right:1px solid #999999;
	display:inline;
	float:left;
	width:144px;
	margin-left:-1px;
}
div.naviBar ul ul {
	/*specific settings for the second navigation level */
	padding:5px 0px;
	border:1px solid #999999;
	margin:0px;
	width:100%;
	margin-left:-1px;
}
div.naviBar ul ul li {
	/*specific settings for the second navigation level li*/
	border:0px none;
	display:block;
	float:none;
	margin:0px;
}

div.naviBar ul ul ul {
	/*specific settings for the third navigation level ul*/
	top:0px;
	padding:0px;
	margin-left:144px;
	margin-top:-1px;
}
div.naviBar ul ul ul li {
	/*specific settings for the third navigation level li*/
}

/* spacer between navigation elements */
div.navispacer {
	height:10px;
}

/* this div can be used to force the browser after a row of containers to break into a new row */
div.break { /* break with no space between two rows */
	clear:both;
	font-size:0px; /* necessary because ie would otherwise show a space between two container rows */
	height:0px; /* necessary because ie would otherwise show a space between two container rows */
	line-height:0px; /* necessary because ie would otherwise show a space between two container rows */
}
div.spacebreak { /* break with space between two rows */
	clear:both;
	height:20px; /* necessary because ie would otherwise show a space between two container rows */
}
/* all content is located in this container */
div.contentContainer {
	width:780px;
	float:left;
height:100%;
	display:inline; /* this is a fix for the ie double-margin bug (see foot notes)*/ 
}
div.content {
	padding:0px 20px;
	height:500px;
}


/* the following containers can be combined to design a layout with different column combinations */
/* the content area can be divided into four columns */
/* for example: 1col,2col,1col or 3col, 1col or 2col,2col or 1col,1col,1col,1col */
/* this is a container for a column with 1/4 width of the whole content area */
div.contentContainer div.oneColumnContainer {
	width:145px;
	float:left;
	overflow:hidden;
}
div.contentContainer div.oneColumnContainer .fullsize{
	width:145px;
}
div.contentContainer div.oneColumnContainer .fullsizeborder{
	width:143px;
}
div.contentContainer div.oneColumnContainer .spacedsize{
	width:125px;
	margin:0px 10px;
}
div.contentContainer div.oneColumnContainer .spacedsizeborder{
	width:123px;
	margin:0px 10px;
}

/* this is a container for a column with 2/4 width of the whole content area */
div.contentContainer div.twoColumnContainer {
	width:290px;
	float:left;
	overflow:hidden;
}
div.contentContainer div.twoColumnContainer .fullsize {
	width:290px;
}
div.contentContainer div.twoColumnContainer .fullsizeborder {
	width:288px;
}
div.contentContainer div.twoColumnContainer .spacedsize {
	width:270px;
	margin:0px 10px;
}
div.contentContainer div.twoColumnContainer .spacedsizeborder {
	width:268px;
	margin:0px 10px;
}

/* this is a container for a column with 3/4 width of the whole content area */
div.contentContainer div.threeColumnContainer {
	width:435px;
	float:left;
	overflow:hidden;
}
div.contentContainer div.threeColumnContainer .fullsize {
	width:435px;
}
div.contentContainer div.threeColumnContainer .fullsizeborder {
	width:433px;
}
div.contentContainer div.threeColumnContainer .spacedsize {
	width:415px;
	margin:0px 10px;
}
div.contentContainer div.threeColumnContainer .spacedsizeborder {
	width:403px;
	margin:0px 10px;
}
/* this is a container for a column with complete width of the whole content area */
div.contentContainer div.fourColumnContainer {
	width:580px;
	float:left;
}
div.contentContainer div.fourColumnContainer .fullsize {
	width:580px;
}
div.contentContainer div.fourColumnContainer .fullsizeborder {
	width:580px;
}
div.contentContainer div.fourColumnContainer .spacedsize {
	width:560px;
	margin:0px 10px;
}
div.contentContainer div.fourColumnContainer .spacedsizeborder {
	width:558px;
	margin:0px 10px;
}
div.contentContainer div.oneColumnEndContainer {
	width:145px;
	float:left;
	overflow:hidden;
}
div.contentContainer div.oneColumnEndContainer .fullsize{
	width:145px;
}
div.contentContainer div.oneColumnEndContainer .fullsizeborder{
	width:143px;
}
div.contentContainer div.oneColumnEndContainer .spacedsize{
	width:125px;
	margin:0px 10px;
}
div.contentContainer div.oneColumnEndContainer .spacedsizeborder{
	width:123px;
	margin:0px 10px;
}
/* this is a container for a column with 2/4 width of the whole content area */
div.contentContainer div.twoColumnEndContainer {
	width:300px;
	float:left;
	overflow:hidden;
}
div.contentContainer div.twoColumnEndContainer .fullsize {
	width:300px;
}
div.contentContainer div.twoColumnEndContainer .fullsizeborder {
	width:298px;
}
div.contentContainer div.twoColumnEndContainer .spacedsize {
	width:280px;
	margin:0px 10px;
}
div.contentContainer div.twoColumnEndContainer .spacedsizeborder {
	width:278px;
	margin:0px 10px;
}
div.contentContainer div.twoColumnEndContainer .spacedsizesmall{
	width:140px;
	float:left;
	margin:0px 0px 0px 10px;
	
}
div.contentContainer div.twoColumnEndContainer .spacedsizeright{
	width:145px;
	float: right;
	margin: 0;
}
/* this div can be used to column some content */
div.floatleft {
	float:left;
	margin-right:10px;
}



/* logo the logo */
div.logo {
	height:80px;
	background-image:url(pics/logo.png);
}
ul {
	list-style-type:square;
	list-style-position:outside;
	padding:0px;
	padding-left:15px;
	margin:0px;
}
ol {
	list-style-position:outside;
	text-indent:0px;
	padding-left:20px;
	margin:0px;
}
p {
	margin:0px 0px 20px 0px;
}
h1 {
	font-weight:bold;
	font-size:17px;
	color:#383872;
	margin:20px 0px 10px 0px;
}

h2 {
	font-weight:bold;
	font-size:15px;
	color:#383872;
	margin:10px 0px 10px 0px;
}

h3 {
	font-weight:bold;
	font-size:11px;
	color:#777777;
	margin:0px;
}

h3.news {
	color:#383872;
	border-bottom: solid 1px #383872;
	margin-bottom:7px;
	}

a.news{
	color:#383872;
	}	
	
/* standard links in text with hover effect */
a {
	color:#383872;
	text-decoration:none;
}
a:hover {
	color:#000000;
}
/* standard border for images and otther stuff */
.border {
	border:1px solid #999999;
}
/* picture legends */
.legend {
	padding:5px 0px;
	font-size:9px;
	line-height:10px;
	color:#999999;
}
img {
	border:0px none;
}

object {
	position:static;
	
}

.mapborder {
	border: 1px solid #999;
	margin-bottom: 10px;
}

/* labels the elements of a form */
p.label {
	font-size:11x;
	color:#aaaaaa;
	margin:0px;
}
/* input elements */
input, textarea {
	margin:0px;
	width:99%;
	font-size:11px;
	line-height:13px;
	font-family:arial,helvetica,sans-serif;
	color:#666666;
	padding:2px 5px;
	border:1px solid #999999;
}
/*
foot notes
IE-Double-Margin Bug:
IE displays the first left floating div in a row with a margin two times greater than defined in the css
the display:inline should be ignored by all other browsers, because all floating elements are by definition block-elements
but display:inline forces ie too not display the margin twice. Future browsers might throw an error with this hack!
See also: http://www.positioniseverything.net/explorer/doubled-margin.html 
*/
