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

/* ======= START MOVIE OVERLAY ======= */
div.movielink {
	height:225px;
	width:300px;
	border:2px solid #999;
	outline:1px solid #333;
	-moz-outline-radius:4px;
	float:left;
	margin-right:15px;
}

/* play button */
div.movieplay {
	height: 83px;
	width: 83px;
	margin-top: 71px;
	margin-left: 108px;
	cursor: pointer;
	background-image:url(../media/movies/player/play_large.png);
}

div.movieplay:hover {
	background-image:url(../media/movies/player/play_large_over.png);
}

/* info area */
div.movielink div.info {
	height:30px;
	background:#000 url(../media/movies/player/h80.png) repeat-x;
	opacity:0.7;
	filter:alpha(opacity=70);
	color:#fff;
	text-align:left;
	padding:5px 15px;
	font-size:12px;
	border-top:1px solid #ccc;
	margin-top:30px;
}

/* movie popup layer */
div.overlay {
	background:url(../media/movies/player/white.png) no-repeat;
	padding:40px;	
	width:576px;
	display:none;
	margin-left: -400px;
}

div.overlay div.close {
	background:url(../media/movies/player/close.png) no-repeat;
	position:absolute;
	top:2px;
	right:5px; 
	width:35px;
	height:35px;
	cursor:pointer;
}

a.player { 		
	display:block;
	height:450px;
}
/* ======= END MOVIE OVERLAY ======= */

/* ======= START POPUP ======= */
div.popup {
	background:url(../media/images/site/popup_bg.jpg) no-repeat;
	padding:0px;	
	width:850px;
	height:622px;
	display:none;
	margin-left: -400px;
}

div.popup div.close {
	background:url(../media/movies/player/close.png) no-repeat;
	position:absolute;
	top:-15px;
	right:-15px; 
	width:35px;
	height:35px;
	cursor:pointer;
}
/* ======= END POPUP ======= */

/* ======= START ACCORDEON ======= */
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	border-bottom: solid 2px #EBEBEB;
	-background:#666;
}

/* accordion header */
#accordion h3 {
	background: #CCC url(../media/images/site/accordeon_right.png) no-repeat;
	background-position: 5px center;
	margin:0;
	padding:5px 20px;
	border:1px solid #999;
	cursor:pointer;		
}

#accordion h3:hover {
	background: #CCC url(../media/images/site/accordeon_over.png) no-repeat;
	background-position: 5px center;
	text-decoration: underline;
}

/* currently active header */
#accordion h3.current {
	background: #CCC url(../media/images/site/accordeon_down.png) no-repeat;
	background-position: 5px center;
	cursor:default;
	text-decoration: none;
}

/* accordion pane */
#accordion div.pane {
	border: solid #EBEBEB;
	border-width: 0 2px;
	display:none;
	padding:15px;
	font-size:12px;
}
/* ======= END ACCORDEON ======= */

/* ======= START SLIDESHOW ======= */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 520px;
	height:200px;

	/* custom decorations */
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;

	background-color: #EBEBEB;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:16px 5px 16px 21px;
	background-color:#000000;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	height:160px;
	
	/*-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.left, a.right {
	display: block;
	width:10px;
	padding: 2px;
	height:196px;
	float: left;
	cursor:pointer;
	font-size:1px;
	border:1px solid #ccc;
}

a.left {
	background:#EBEBEB url(../media/images/site/slideshow/backward.png) no-repeat;
	background-position: center;
	border-right: none;
}

a.left:hover {
	background:#EBEBEB url(../media/images/site/slideshow/backward_over.png) no-repeat;
	background-position: center;
}

a.right {
	background:#EBEBEB url(../media/images/site/slideshow/forward.png) no-repeat;
	background-position: center;
	border-left: none;
}

a.right:hover {
	background:#EBEBEB url(../media/images/site/slideshow/forward_over.png) no-repeat;
	background-position: center;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}
/* ======= END SLIDESHOW ======= */

/* ======= START TOOLTIP ======= */
/* trigger button */
.tooltip_trigger {
	font-size: 18px;
	color: #9C3CFF;
	cursor: default;
}

/* tooltip styling */
.tooltip { 
    display:none; 
    background:url(../media/images/site/tooltip_white_up.png) no-repeat; 
    height:163px; 
    padding:40px 30px 10px 30px; 
    width:310px; 
	text-align: center;
} 

.tooltip.bottom {
	background:url(../media/images/site/tooltip_white_down.png) no-repeat;
	padding-top: 60px;
}

.tooltip a {
	font-size: 18px;	
}
/* ======= END TOOLTIP ======= */

/* ======= START EXPOSE ======= */
.expose {
	width: 160px;
	color: #F3F3F3;
	float: left;
	margin: 2px 5px;
	text-align: center;
}
.expose img {
	border: solid 2px #666666;
}
/* ======= END EXPOSE ======= */

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

/* single tab */
ul.tabs li { 
	float:left;	 
	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(../media/images/site/blue.png) no-repeat -420px 0;
	font-size:12px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 134px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	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". it's 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:#000 !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 */ 
div.panes div.pane {
	display:none;		
}

/* tab pane styling */
div.panes > div {
	display:none;		
	padding:15px 10px;
	border:1px solid #999;
	border-top:0;
	font-size:12px;
	background-color:#fff;
}
/* ======= END TABS ======= */

/* ======= START IMAGE MOUSEOVER ======= */
.images-mouseover img {
	margin:0 50px 10px 0;	
	cursor:pointer;
	border: solid 1px black;
}

.images-description {
	background-color:#edecbc;
	border:1px solid #999;	
	width:745px;
	min-height:125px;
	display:none;
	margin-top:17px;
	margin-bottom: 20px;
	-moz-border-radius:4px;
	padding:0 10px;
}

.images-description .arrow {
	width:34px;
	height:34px;
	background:transparent url(../media/images/site/arrows.png) repeat scroll 0 -68px;
	margin-top:-28px;
	margin-left:50px;
	font-size:1px;
	position:relative;
}

#images-description-2 .arrow {
	margin-left:250px;	
}

#images-description-3 .arrow {
	margin-left:460px;	
}

#images-description-4 .arrow {
	margin-left:665px;
}
/* ======= END IMAGE MOUSEOVER ======= */

/* ======= START IMAGE OVERLAY ======= */
.simple_overlay {
    display: none;
    z-index: 10000;
	min-height: 200px;
	
	background-color:#fff;
    padding: 4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
} 

.simple_overlay .close { 
    background-image:url(../media/images/site/close.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}
/* ======= END IMAGE OVERLAY ======= */