/**** MAIN LAYOUT ****/
BODY
{
	height: 100%;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	background: url(/design/bg.jpg) repeat-y center #D0DCE2;
	text-align: center;
	margin: 0;
	padding: 0;
}

DIV#top
{
	margin: 0;
	height: 11px;
	background: url(/design/bg_top.jpg) no-repeat bottom center #D0DCE2;
}

DIV#centerblock
{
	width: 900px;
	margin: 0 auto 0 auto;
	text-align: left;
}

DIV#header
{
	height: 170px;
	margin: 0 0 16px 0;
	position: relative;
	z-index: 10;
}

A#logo
{
	display: block;
	float: left;
	width: 209px;
	height: 170px;
	text-align: center;
}

DIV#headerimage
{
	float: left;
	position: relative;
	width: 690px;
	height: 150px;
	border-left: 1px solid #5a6870;
	border-bottom: 1px solid #5a6870;
	background: #FFF;
}

/**** NAVIGATION LAYOUT ****/

UL#navigation
{
	float: left;
	width: 690px;
	height: 18px;
	margin: 0;
	padding: 0;

	background: #7C92A2;
	border-bottom: 1px solid #5a6870;
	border-left: 1px solid #5a6870;

	list-style: none;
}

UL#navigation LI
{	
	float: left;
	position: relative;

	color:  #FFFFFF;
	cursor: default;
	margin: 0;
	padding: 0;
}

UL#navigation A
{
	float: left;
	margin: 0;
	height: 16px;
	padding: 2px 12px 0 12px;
	
	border-right: 1px solid #666;
	cursor: pointer;

	font-size: 12px;
	text-decoration: none;
	white-space: nowrap; 
	color: #FFF;
}

UL#navigation A:hover, UL#navigation A.active, UL#navigation LI:hover A, UL#navigation LI.dropdown_active A
{
	background: #D0DCE2;
	color: #000;
}

UL#navigation UL.dropdown
{
	display: none;
	position: absolute;
	top: 19px;
	left: -1px;
	background: #D0DCE2;
	padding: 3px;
	margin: 0;
	
	float: left;
	
	border: 1px solid #666;
	border-top: none;
	zoom: 1;
	list-style: none;
}

UL#navigation LI.dropdown:hover, UL#navigation LI.dropdown_active
{
	border-bottom: 1px solid #D0DCE2;
}

/* Evil CSS Hack for IE6 to avoid the border-bottom (it moves the whole document otherwise) */
* html UL#navigation LI.dropdown_active {border-bottom: none;}

/* Evil CSS Hack for IE6 to avoid the border of the surrounding UL to shine through */
* html UL#navigation UL.dropdown {top: 18px;}

UL#navigation LI.dropdown:hover UL.dropdown
{
	display: block;
}

UL#navigation UL.dropdown LI, UL#navigation UL.dropdown LI A
{
	float: none;
	border: none;
	display: block;
	
	color: #000;
}

UL#navigation UL.dropdown LI A
{
	padding: 3px 30px 3px 15px;
}

UL#navigation UL.dropdown LI A:hover, UL#navigation UL.dropdown LI.active
{
	color: #FFF;
	background: #7C92A2;
}

UL#navigation UL.dropdown LI.separator
{
	background: url(/design/seppixel.png) repeat-x center;
}

/* Evil css hack to avoid that IE7  reads the min-height property because it chokes on it, making the separator disappear */
html>/**/body UL#navigation UL.dropdown LI.separator { min-height: 16px; }

/**** FOOTER ****/
#footer
{
	font-size: 11px;
	color: #666;
	text-align: center;
}

#footer A
{
	color: #666;
	text-decoration: none;
}

#footer A:hover
{
	color: #C33;
}

/**** TEXT HEADER ****/
DIV#textheader
{
	height: 52px;
	padding: 0 14px 0 14px;
	margin-bottom: 10px;
}

DIV#textheader H2
{
	float: left;
	width: 181px;
	padding: 0;
	margin: 0 14px 0 0;
	
	font-weight: normal;
	
	color: #666;
	cursor: default;
	font-size: 10px;
}

DIV#textheader H1
{
	margin: 0;
	padding: 0;
	font-size: 18px;
}

/**** LEFT BLOCK ****/

DIV#leftblock
{
	float: left;
	width: 181px;
	padding: 0 14px 2em 14px;
}

/**** SUCHBOX ****/

DIV#searchblock
{
	margin-bottom: 12px;
	padding: 2px;
	background: #D9D9D9;
}

DIV#searchblock FORM
{
	padding: 0px;
	margin: 0px;
}

DIV#searchblock INPUT
{
	width: 135px;
	font-size: 10px;
	color: #888;
	border: 1px solid #666;
	padding-left: 3px;
}

DIV#searchblock INPUT.submit
{
	width: 32px;
	color: #000;
	padding: 0px;
}

/**** SUBNAVIGATION LAYOUT ****/

UL#subnavigation, UL#subnavigation UL
{
	margin: 0;
	padding: 0;
	list-style: none;
}

UL#subnavigation LI
{	
	display: block;
	margin: 0 0 2px 0;
	padding: 0;
	position: relative;
	background: #E1E1E1;
	overflow: hidden;
}

UL#subnavigation  LI.separator
{
	height: 2px;
	margin: 0 0 4px 0;
	border-bottom: 1px solid #999;
	background: #FFF;
	overflow: hidden;
}

UL#subnavigation A
{
	display: block;
	padding: 2px 2px 2px 18px;
	background:#E1E1E1 url(/design/triangle.png) no-repeat 3px 4px;
	
	font-size: 11px;
	text-decoration: none;
	color: #000;
}

UL#subnavigation A.active
{
	color: #000;
	background-color: #D9FBFF;
	background-image: url(/design/triangle_down.png);
}

UL#subnavigation A:hover
{
	color: #000;
	background-color: #D9FBFF;
}

UL#subnavigation UL
{
	background: #FFF;
}

UL#subnavigation UL A
{
	padding-left: 36px;
	background-position: 21px 4px;
}

UL#subnavigation UL UL A
{
	padding-left: 54px;
	background-position: 39px 4px;
}

/**** RIGHT BLOCK ****/

DIV#rightblock
{
	float: right;
	width: 156px;
	padding: 0 14px 2em 14px;
}

DIV#rightblock A
{
	display: block;
	margin-bottom: 10px;
}

/**** CONTENT LAYOUT ****/

DIV#content
{
	float: left;
	width: 507px;
	margin: 0 0 2em 0;
}

DIV#content UL
{
	list-style-type: square;
	list-style-image: url(/design/bullet.png);
	margin: 1em 0 1em 0;
	padding: 0 0 0 20px;
}

DIV#content UL LI
{
	padding: 0 0 1px 0;
}

DIV#content P
{
	margin: 0 0 1em 0;
	padding: 0;
}

DIV#content A
{
	text-decoration: none;
	color: #009;
}

DIV#content A:hover
{
	color: #900;
}

/**** FORMULARE ****/
TABLE.formtable
{
	width: 507px;
}

TABLE.formtable TD.label
{
	vertical-align: top;
	font-weight: bold;
	padding-top: 2px;
	color: #666;
}

TABLE.formtable TD.thirdcol INPUT
{
	width: 120px;
}

TABLE.formtable TD.doublecol INPUT
{
	width: 147px;
}

TABLE.formtable TD.separator
{
	padding: 2px;
	padding-left: 0px;
	border-bottom: 1px solid #000;
	font-weight: bold;
	padding-top: 20px;
}

TABLE.formtable INPUT, TABLE.formtable TEXTAREA, TABLE.formtable SELECT
{
	border: 1px solid #CCC;
	width: 300px;
}

TABLE.formtable INPUT[type="submit"]
{
	border: 1px solid #999;
	background: #D0DCE2;
	color: #000;
}

TABLE.formtable INPUT[type="checkbox"]
{
	border: none;
}

TABLE.formtable INPUT.checkbox
{
	margin-left: 0;
	width: auto;
}

TABLE.formtable TEXTAREA
{
	height: 150px;
}

TABLE.formtable SELECT
{
	width: 302px;
}

TABLE.formtable LABEL.direct
{
	position: relative;
	top: -2px;
}

/**** SUCCESS UND ERROR BLÖCKE ****/

DIV.errorblock, DIV.successblock
{
	border: 1px solid #900;
	padding: 4px;
	padding-left: 21px;
	background: url(/design/error.png) #FCC no-repeat 2px 50%;
	margin-top: 10px;
	margin-bottom: 10px;
}

DIV.successblock
{
	border: 1px solid #090;
	background: url(/design/success.png) #CFC no-repeat 2px 50%;
}

/**** SPECIALS ****/

DIV.linkblock
{
	font-weight: bold;
	padding: 3px 3px 3px 5px;
}

DIV#content DIV.linkblock P, DIV#content H2.titleheader P, DIV#content *.nopmargin P
{
	margin: 0;
	padding: 0;
}

*.whitelinks A
{
	color: #FFF !important;
}

*.blacklinks A
{
	color: #000 !important;
}

TABLE.twocolumns TD
{
	vertical-align: top;
}

TABLE.twocolumns UL A
{
	color: #000 !important;
}

TABLE.twocolumns UL A:hover
{
	color: #900 !important;
}

H2.titleheader, A.titleheader
{
	display: block;
	background: #D9FBFF;
	margin: 0px;
	padding: 3px;
	font-size: 13px;
	margin-bottom: 5px;
}

DIV.titleblock
{
	margin-bottom: 1.2em;
}

H2.seminartitle
{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 13px;
	color: #666;
	margin-bottom: 5px;
}

/**** SITEMAPS ****/

DIV#content H2.sitemap
{
	font-size: 13px;
	padding: 0 0 0 20px;
	margin: 0 0 4px 0;
	background: url(/design/house.png) no-repeat;
}

DIV#content UL.sitemap
{
	list-style: none;
	list-style-image: none;
	margin: 0 0 4px 20px;
	padding: 0;
}

DIV#content UL LI.sitemap_folder, DIV#content UL LI.sitemap_page, DIV#content UL LI.sitemap_link
{
	display: block;
	min-height: 16px;
	padding: 0 0 0 20px;
	background: url(/design/page.png) no-repeat;
	margin-bottom: 2px;
}

DIV#content UL.sitemap LI.sitemap_folder
{
	background-image: url(/design/folder.png);
}

DIV#content UL.sitemap LI.sitemap_link
{
	background-image: url(/design/link.png);
}


/**** SUCHERGEBNISSE ****/

UL.searchresult
{
	list-style: none;
	margin: 0;
	padding: 0;
}

A.searchresult
{
	display: block;
	margin: 10px 0 10px 0;
	font-weight: bold;
}

SPAN.searchresult_teaser
{
	font-weight: normal;
	display: block;
	font-size: 11px;
	color: #666;
}

SPAN.searchresult_teaser EM
{
	font-weight: bold;
	color: #C33;
	font-style: normal;
}

/**** EVENTS ****/

DIV.eventitem
{
	border-bottom: 1px dashed #666666;
	margin-bottom: 4px;
	padding-bottom: 4px;
}

DIV.eventitem A.eventtitle
{
	background: transparent url(/design/calendar.png) no-repeat;
	display: block;
	font-size: 13px;
	font-weight: bold;
	padding-left: 23px;
}

DIV.eventitem TD.eventlabel
{
	color: #666666;
	cursor: default;
	font-weight: bold;
}

DIV.eventitem TABLE
{
	font-size: 11px;
}

DIV.filterbox, DIV.filterbox_show, DIV.jsfilterbox
{
	background: #FFFFFF;
	border: 1px solid #999999;
	cursor: default;
	height: auto;
	overflow: hidden;
	position: relative;
	width: 498px;
}

DIV.filterheader
{
	background: #DDDDDD url(/design/zoom.png) no-repeat 2px 2px;
	border-bottom: 1px solid #999999;
	font-weight: bold;
	height: 16px;
	padding: 2px 2px 2px 23px;
}

FORM.filterform
{
	padding:3px;
}

DIV.filterswitch
{
	color: #666666;
	font-size: 10px;
	position: absolute;
	text-align: right;
	top: 3px;
	width: 490px;
}

H2.eventlistheader
{
	border-bottom: 1px dashed #666666;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 6px;
	margin-top: 10px;
	padding-bottom: 4px;
	width: 500px;
}

DIV.listpagenav
{
	margin-top:20px;
	text-align:center;
}

A.bookinglink, DIV#rightblock A.bookinglink
{
	text-decoration: none;
	color: #C33;
	font-weight: bold;
	display: block;
	background: url(/design/cart.png) no-repeat;
	padding: 0 0 0 20px;
	margin: 0 0 5px 0;
}

A.bookinglink:hover
{
	text-decoration: underline !important;
}

H2.eventheader
{
	font-size:12px;
	font-weight:bold;
	margin-bottom:-3px;
	margin-top:10px;
	padding-bottom:4px;
	width:500px;
}

/**** GOOGLE MAPS ****/

DIV#gmapwrapper
{
	border: 1px solid #000;
	height: 350px;
	overflow: hidden;
	margin-top: 20px;
}

DIV#gmap
{
	height: 350px;
}

/**** VIDEOS ****/

DIV.videoitem
{
	padding-bottom: 10px;
	margin: 0 0 10px 0;
	border-bottom: 1px solid #000;
}

/**** MARQUEE ****/

DIV.refa_marquee, DIV.refa_marqueeshadow
{
	position: absolute;
	left: 0;
	top: 57px;
	padding: 5px 0 5px 0;
	height: 30px;
	width: 690px;
	font-size: 20px;
}
DIV[class].refa_marquee, DIV[class].refa_marqueeshadow
{
	padding: 5px 0 0 0;
}

DIV.refa_marqueeshadow
{
	background: #FFF;
	opacity: 0.8;
	filter: alpha(opacity=80);
}


DIV.refa_marquee A
{
	color: #000;
	text-decoration: none;
}

DIV.refa_marquee A:hover
{
	color: #C33;
}