@charset "UTF-8";
/* CSS Document */


/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #333;	
	height:30px;
}

/* single tab */
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 */
ul.tabs a { 
	background: url(images/tabs.png) no-repeat -420px 0;
	font-size:0.92em;
	display:block;
	height: 30px;  
	line-height:30px;
	width: auto;
	text-align:center;	
	text-decoration:none;
	color:#CCC;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -420px -31px;	
	color:#FFF;	
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#FFF !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabs a.s 			{ background-position: -553px 0; width:81px; }
ul.tabs a.s:hover 	{ background-position: -553px -31px; }
ul.tabs a.s.current  { background-position: -553px -62px; }

/* width 2 */
ul.tabs a.l 			{ background-position: -248px -0px; width:174px; }
ul.tabs a.l:hover 	{ background-position: -248px -31px; }
ul.tabs a.l.current  { background-position: -248px -62px; }


/* width 3 */
ul.tabs a.xl 			{ background-position: 0 -0px; width:248px; }
ul.tabs a.xl:hover 	{ background-position: 0 -31px; }
ul.tabs a.xl.current { background-position: 0 -62px; }


/* initially all panes are hidden */ 
.panes {
	position:relative;
}
.panes .pane {
	position: absolute;
	left: -10000px;
	display: block;
		
}
.panes div.paneContent {
	color: #FFF;
	border:1px solid #333;
	border-top:0;
	height:365px;
	background-color:#333;
	padding: 0;
	overflow:hidden;
	background-image: url(images/rightcol_box_bgr.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.scroll-pane {
	height:333px;
	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: 585px;
	height:335px;
	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.
*/
.scrollableMain .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/*
	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;
}




/* 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;
	float:left;
	top: 150px;
	cursor:pointer;
	font-size:1px;
	
}

/* right */
.scrollableMain a.right 				{ background-position: 0 -30px; right: -30px; z-index:0; }
.scrollableMain a.right:hover 		{ background-position:-30px -30px; }
.scrollableMain a.right:active 	{ background-position:-60px -30px; } 


/* left */
.scrollableMain a.left				{ left: -30px; z-index:1; background-position: 0 0; } 
.scrollableMain a.left:hover  		{ background-position:-30px 0; }
.scrollableMain a.left:active  	{ background-position:-60px 0; }


/* disabled navigational button */
.scrollableMain a.disabled {
	visibility:hidden !important;		
} 	


.scrollableMain .hotspot {
	position:absolute;
	z-index:1;
	left:0;
	top:0;
	width: 535px;
	height: 335px;
}





/* GallerySlider */
.gallerySlider {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 535px;
	height:84px;
	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.
*/
.gallerySlider .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.gallerySlider .items div.item {
	float:left;
	width:529px;
	padding: 0px 3px;
	
}
.gallerySlider .items div.item img {
	float:left;
	margin:0 2px;
	border: 2px solid #72CAEE;
	width:80px;
	height:80px;
}

/* prev, next, prevPage and nextPage buttons */
.gallerySliderContainer a.browse {
	background:url(images/scrollable/arrow/ahoi_gallery_arrow.png) no-repeat;
	display:block;
	width:20px;
	height:84px;
	float:left;
	margin:0px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
.gallerySliderContainer a.right 				{ background-position: 0 -108px; clear:right; margin-right: 0px;}
.gallerySliderContainer a.right:hover 		{ background-position:-20px -108px; }
.gallerySliderContainer a.right:active 	{ background-position:-40px -108px; } 


/* left */
.gallerySliderContainer a.left				{ background-position: 0 -8px; margin-left: 0px; } 
.gallerySliderContainer a.left:hover  		{ background-position:-20px -8px; }
.gallerySliderContainer a.left:active  	{ background-position:-40px -8px; }


/* disabled navigational button */
.gallerySliderContainer a.disabled {
	visibility:hidden !important;		
} 	





/* 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: #A0D8FA;
    padding: 5px;
	height: 500px; 
	overflow-y:auto;
}
div.contentWrap h1, div.contentWrap h2, div.contentWrap h3, div.contentWrap h4, div.contentWrap h5, div.contentWrap h6 {
	color:#FFF;	
}
div.contentWrap p {
    
}
div.contentWrap a {
	color: #FFF;
	text-decoration:none;
}
div.contentWrap a:hover {
	color: #FFF;
	text-decoration:underline;
}

/* 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:515px;   		
	
	/* some padding to layout nested elements nicely  */
	padding:35px 35px 35px 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;
}




