@charset "UTF-8";
/* CSS Document */


/* root element for tabs  */
#rightCol ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	height:32px;
}

/* single tab */
#rightCol ul.tabs li { 
	float:left;	 
	background-image:none;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
#rightCol ul.tabs a { 
	background: url(images/tabs.png) no-repeat -420px 0;
	font-size:0.86em;
	display:block;
	height: 32px;  
	line-height:32px;
	width: auto;
	text-align:center;	
	text-decoration:none;
	color:#FFF;
	padding:0px;
	margin:0px;	
	position:relative;
	top:0px;
}

#rightCol ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
#rightCol ul.tabs a:hover {
	background-position: -420px -32px;	
		
}
/* active tab uses a class name "current". its highlight is also done by moving the background image. */
#rightCol ul.tabs a.current, #rightCol ul.tabs a.current:hover, #rightCol ul.tabs li.current a {
	background-position: -420px -64px;		
	cursor:default !important; 
	color:#000 !important;
}
#rightCol ul.tabs li.first a.current, #rightCol ul.tabs li.first a.current:hover, #rightCol ul.tabs li.current a {
	background-position: -420px -160px;		
	cursor:default !important; 
	color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
#rightCol ul.tabs a.s 			{ background-position: -537px 0px; width:96px; }
#rightCol ul.tabs a.s:hover 	{ background-position: -537px -32px; }
#rightCol ul.tabs a.s.current  { background-position: -537px -64px; }

/* width 2 */
#rightCol ul.tabs a.m 			{ background-position: -409px 0px; width:128px; }
#rightCol ul.tabs a.m:hover 	{ background-position: -409px -32px; }
#rightCol ul.tabs a.m.current  { background-position: -409px -64px; }

/* width 3 */
#rightCol ul.tabs a.l 			{ background-position: -217px 0px; width:192px; }
#rightCol ul.tabs a.l:hover 	{ background-position: -217px -32px; }
#rightCol ul.tabs a.l.current  { background-position: -217px -64px; }


/* width 4 */
#rightCol ul.tabs a.xl 			{ background-position: 0px 0px; width:217px; }
#rightCol ul.tabs a.xl:hover 	{ background-position: 0px -32px; }
#rightCol ul.tabs a.xl.current { background-position: 0px -64px; }

/* first Element */

/* width 1 */
#rightCol ul.tabs li.first a.s 			{ background-position: -537px -96px; width:96px; }
#rightCol ul.tabs li.first a.s:hover 	{ background-position: -537px -128px; }
#rightCol ul.tabs li.first a.s.current  { background-position: -537px -160px; }

/* width 2 */
#rightCol ul.tabs li.first a.m 			{ background-position: -409px -96px; width:128px; }
#rightCol ul.tabs li.first a.m:hover 	{ background-position: -409px -128px; }
#rightCol ul.tabs li.first a.m.current  { background-position: -409px -160px; }

/* width 3 */
#rightCol ul.tabs li.first a.l 			{ background-position: -217px -96px; width:192px; }
#rightCol ul.tabs li.first a.l:hover 	{ background-position: -217px -128px; }
#rightCol ul.tabs li.first a.l.current  { background-position: -217px -160px; }


/* width 4 */
#rightCol ul.tabs li.first a.xl 			{ background-position: 0px -96px; width:217px; }
#rightCol ul.tabs li.first a.xl:hover 	{ background-position: 0px -128px; }
#rightCol ul.tabs li.first a.xl.current { background-position: 0px -160px; }

/* initially all panes are hidden */ 
.panes {
	position:relative;
}
.panes .pane {
	position: absolute;
	left: -10000px;
	display: block;
		
}
.panes div.paneContent {
	height:360px;
	padding: 0;
	overflow:hidden;
}
#rightCol .panes div.paneContent h1, #rightCol .panes div.paneContent h3 {
}
 
#rightCol .panes div.paneContent a {
    
}
#rightCol .panes div.paneContent a:hover {
    	
}
.scroll-pane {
	height:330px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	overflow:hidden;
	
}





/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollableMain {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 540px;
	height:360px;
	float:left;
}
.scrollableMain img {
	padding: 0;
    background: none;
}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollableMain .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.scrollableMain .items div.item {
	float:left;
    width: 540px;
	height:360px;
    overflow:hidden;
}

/* prev, next, prevPage and nextPage buttons */
.scrollableMain a.browse {
	position:absolute;
	background:url(images/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	top: 160px;
    cursor:pointer;
	font-size:1px;
	
}

/* right */
.scrollableMain a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px }
.scrollableMain a.right:hover 		{ background-position:-30px -30px; }
.scrollableMain a.right:active 	{ background-position:-60px -30px; } 


/* left */
.scrollableMain a.left				{ margin-left: 0px; } 
.scrollableMain a.left:hover  		{ background-position:-30px 0; }
.scrollableMain a.left:active  	{ background-position:-60px 0; }



.scrollableMain a.onTopLeft {
	left: -30px;
	z-index:1;
}
.scrollableMain a.onTopRight {
	right: -30px;
	z-index:0;
}

/* disabled navigational button */
.scrollableMain a.disabled {
    visibility:hidden !important;		
} 	

.scrollableMain .hotspot {
	position:absolute;
	z-index:1;
	left:0;
	top:0;
	width: 540px;
	height: 360px;
}



/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollableNews {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 520px;
	height:463px;
	float:left;
	
}


/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollableNews .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

.newsElement {
	height: 121px;
	overflow:hidden;
	margin: 0 0 10px 0;
	padding: 10px 0 0 10px;
    background-image: url(../images/leftcol_box_row_bgr.jpg);
	background-position: left top;
	background-repeat: no-repeat;

}
.newsElementLast {
	height: 119px;
}
.newsElement h3 a {
}
.newsElement h3 a:hover {
}
.newsElement img {
}
.newsElement p {
	margin-top: 0;
	margin-bottom: 0;
}
.newsElement h3 {
	margin-top: 0.25em;	
}
.newsElement .newsImageContainer {
	float: left;
	height: 115px;
	width: 115px;
	margin-right: 10px;
}
.newsElement .newsTextContainer {
	float: left;
	width: 360px;
}


/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.scrollableNews .items div.item {
	float:left;
	width: 520px;
}

/* prev, next, prevPage and nextPage buttons */
.scrollableNews a.browse {
	background-repeat:no-repeat;
	display:block;
	width:260px;
	height:30px;
	float:left;
	margin: 0;
	cursor:pointer;
	font-size:1px;
	position:absolute;
	bottom:0px;
}


/* right */
#leftCol .scrollableNews a.right			{ background:url(images/scrollable/arrow/button_big_right.png); width: 259px; background-position: 0 0; right: 0px; z-index:0; clear:right; }
#leftCol .scrollableNews a.right:hover		{ background-position: -260px 0px; }
#leftCol .scrollableNews a.right:active 	{ background-position: -520px 0px; } 


/* left */
#leftCol .scrollableNews a.left			{ background:url(images/scrollable/arrow/button_big_left.png); background-position: 0 0; left: 0px; z-index:1; } 
#leftCol .scrollableNews a.left:hover  		{ background-position: -260px 0px; }
#leftCol .scrollableNews a.left:active  	{ background-position: -520px 0px; }


/* disabled navigational button */
#leftCol.scrollableNews a.disabled {
	visibility:visible !important;
} 
#leftCol .scrollableNews a.disabled, #leftCol .scrollableNews a.disabled:hover, #leftCol .scrollableNews a.disabled:active {
    background-position: -780px 0px;
} 



.scrollableNewsContainer {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 520px;
	height:442px;
	float:left;
	
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollableStandard {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 520px;
	height:240px;
	float:left;
	
}

	 
#leftCol .scrollableStandard a {
}
#leftCol .scrollableStandard a:hover {
}
#rightCol .scrollableStandard {
	width: 352px;
	height:235px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollableStandard .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.scrollableStandard .items div.item {
	float:left;
	overflow:hidden;
	background-repeat: repeat-x;
	
	
}
#leftCol .scrollableStandard .items div.item {
	width: 520px;
	height:190px;
}



#leftCol .moduleNews {
}

#rightCol .scrollableStandard .items div.item {
	width: 352px;
	height:175px;
	
	
}

/* prev, next, prevPage and nextPage buttons */
.scrollableStandard a.browse {
	background-repeat:no-repeat;
	display:block;
	width:20px;
	height:20px;
	float:left;
	margin: 0;
	cursor:pointer;
	font-size:1px;
	position:absolute;
	bottom:0px;
}


/* right */
#leftCol .scrollableStandard a.right, #rightCol .scrollableStandard a.right			{ background:url(images/scrollable/arrow/hori_small_right.png); background-position: 0 0; right: 0px; z-index:0; clear:right; }
#leftCol .scrollableStandard a.right:hover, #rightCol .scrollableStandard a.right:hover 		{ background-position: -20px 0px; }
#leftCol .scrollableStandard a.right:active, #rightCol .scrollableStandard a.right:active 	{ background-position: -40 0px; } 


/* left */
#leftCol .scrollableStandard a.left, #rightCol .scrollableStandard a.left			{ background:url(images/scrollable/arrow/hori_small_left.png); background-position: 0 0; right: 21px; z-index:1; } 
#leftCol .scrollableStandard a.left:hover, #rightCol .scrollableStandard a.left:hover  		{ background-position: -20 0px; }
#leftCol .scrollableStandard a.left:active, #rightCol .scrollableStandard a.left:active  	{ background-position: -40px 0px; }


/* disabled navigational button */
#leftCol.scrollableStandard a.disabled, #rightCol.scrollableStandard a.disabled {
	visibility:visible !important;
} 
#leftCol .scrollableStandard a.disabled, #leftCol .scrollableStandard a.disabled:hover, #leftCol .scrollableStandard a.disabled:active, #rightCol .scrollableStandard a.disabled, #rightCol .scrollableStandard a.disabled:hover, #rightCol .scrollableStandard a.disabled:active {
    background-position: -60px 0px;
} 


/* weitere Standardgrößen */
#leftCol .scrollableDownloads {
	height: 279px; 
}
#leftCol .scrollableDownloads .items div.item {
	height: 229px;
}
#rightCol .scrollableCalendar {
	height: 234px; 
}
#rightCol .scrollableCalendar .items div.item {
	height: 184px;
}
#rightCol .scrollableReferences {
	height: 210px; 
}
#rightCol .scrollableReferences .items div.item {
	height: 190px;
}
#rightCol .scrollableReferences2 {
	height: 420px; 
}
#rightCol .scrollableReferences2 .items div.item {
	height: 420px;
}
#rightCol .scrollableLinks {
	height: 234px; 
}
#rightCol .scrollableLinks .items div.item {
	height: 184px;
}

/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#333 url(images/global/gradient/h300.png) 0 0;
	width: auto;
	border:1px solid #333;	
	-background:#666;
}

/* accordion header */
#accordion h2 {
	background:#ccc url(images/global/gradient/h30.png);
	margin:0;
	padding:5px 15px;
	font-size:14px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #ddd;
	cursor:pointer;		
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#fff;
}

/* accordion pane */
#accordion .pane {
	border:1px solid #fff;
	border-width:0 2px;
	display:none;
	height:180px;
	padding:15px;
	color:#fff;
	font-size:12px;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}




.tooltip {
	display:none;
	background:transparent url(images/tooltip/tooltip.png);
	font-size:12px;
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;	
	z-index:19999;
}


/* use a semi-transparent image for the overlay */
#overlay {
	
}
/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	color:#333;
    padding: 5px;
	height: 465px; 
	overflow-y:auto;
}
div.contentWrap p {
	
    
}
div.contentWrap a, div.contentWrap a:hover {
}
div.contentWrap .areaTitle {
    font-weight: bold;
	
}

div.contentWrap #overlayFooter {
	color: #6E6E70;
	position:absolute;
	left: 40px;
	bottom: 25px;
	
}
div.contentWrap #overlayFooter .notInOverlay {
	display:none;
}

/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(images/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}



/* the overlayed element */
div.overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* background image */
	background-image:url(images/overlay/transparent_710x580.png);
    background-repeat: no-repeat;    
	/* 
		width and height
	*/
	width:640px;
    height:465px;   		
	
	/* some padding to layout nested elements nicely  */
	padding:35px 35px 80px 35px;

	/* a little styling */	
	z-index:10000;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(images/overlay/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(images/overlay/transparent.png);    
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:640px;
    	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	z-index:10000;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(images/overlay/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}



