/* 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(../images/ui/tabs.png) no-repeat -420px 0;
	font-size:11px;
	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.tabpanes div.tabcontent {
	display:none;		
}

/** Tabs Slideshoe **/
/* container for slides */
.slideshow-ui {
	background:#000000;
	position:relative;	
	height:620px;
	background: url(../images/slideshow-bgr-920x600.jpg) top center no-repeat;
	width:980px;
	margin:0;
	
}

/* single slide */
.slideshow-ui div.slide-single {
	display:none;
	position:absolute;
	top:0;
	left:0;	
	margin:0;
	padding:0;
	font-size:14px;
	width:980px; height:720px;
}

/* header */
.slideshow-ui h2 {
	font-size:20px;
	margin:0 0 10px 0;
}

/* tabs (those little circles below slides) */
.slideshow-tabs {
	clear:both;
	margin:auto;
	width:980px;
	position:absolute; top:480px; left:0px;
}

/* single tab */
.slideshow-tabs a {
	width:90px;
	height:120px;
	float:left;
	margin:3px;
	display:block;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

/* mouseover state */
.slideshow-tabs a:hover {
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

/* active state (current page state) */
.slideshow-tabs a.current {
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity:1;
	opacity:1;
} 	


/* prev and next buttons */
.forward, .backward {
	margin:0;
	display:block;
	width:15px;
	height:60px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	z-index:1000; position:absolute;
}

/* next */
.forward 				{ background:url(../images/slideshow-nav-buttons.png) 0 0 no-repeat; position:absolute; top:450px; left:100px; }
.forward:hover 		{ background:url(../images/slideshow-nav-buttons.png) 0 -60px no-repeat; }
.forward:active 	 	{ background:url(../images/slideshow-nav-buttons.png) 0 -60px no-repeat; } 


/* prev */
.backward { background:url(../images/slideshow-nav-buttons.png) -15px 0 no-repeat; position:absolute; top:450px; right:100px;}
.backward:hover  		{ background:url(../images/slideshow-nav-buttons.png) -15px -60px no-repeat; }
.backward:active  	{ background:url(../images/slideshow-nav-buttons.png) -15px -60px no-repeat; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

/** End Tabs Slideshow **/




/* root element for accordion. decorated with rounded borders and gradient background image */
.accordion {
 	background: url(../images/h300.png) top left repeat-x;
	width: 100%;
}
/* accordion header */
.accordion h2 {
	background:url(../images/accordion-go-down.png) top right no-repeat #003333; 
	margin:0;
	height:30px; line-height:30px; padding:0px 0px 0px 10px;
	font-size:14px;
	font-weight:normal;
	border-bottom:1px solid #000000;
	cursor:pointer;	
}

/* currently active header */
.accordion h2.current {
	cursor:default;
	background:url(../images/accordion-go-left.png) top right no-repeat #669999; 
}
.accordion h2:hover {
	background:url(../images/accordion-go-left.png) top right no-repeat #339999; 
}

/* accordion pane */
.accordion div.pane {
	border-width:0 2px;
	display:none;
	height:auto;
	padding:10px;
	color:#fff;
	font-size:13px;
}

/* a title inside pane */
.accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}
/** Horizontal Accordion with images **/
/* root element for accordion. decorated with rounded borders and gradient background image */
.accordion-horizontal {
	background:#006600 url(../images/h150.png) bottom left repeat-x;
	height:130px;
	padding:0;
	width:100%;
}

/* accordion header */
.accordion-horizontal img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
.accordion-horizontal img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
.accordion-horizontal div {
	width:0px;
	float:left;	
	display:none;		
	margin:0;
}

/* content inside a pane should have fixed width */
.accordion-horizontal div h3 {
	color:#444;
	margin:0 0 -10px 0;
	width:290px;
	font-size:15px;	
}
	
.accordion-horizontal div p {	
	font-size:11px;
	width:290px;
}

/** Product list Mouseover **/
#products img {
	margin:0 20px 10px 0;	
	cursor:pointer;	
}

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

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

#commercial .arrow {
	margin-left:210px;	
}

#multidomain .arrow {
	margin-left:385px;	
}

/** End product List **/

/* the overlayed element */
.triggers {
	text-align:center;
}
.triggers img {
	cursor:pointer;
	margin:0 5px;
	background-color:#fff;
	border:1px solid #ccc;
	padding:2px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    position:absolute; z-index:1000000; 
     
    /* styling */ 
    background:none; 
     
    width:auto;     
    min-height:200px; 
    border:1px solid #ccffcc;
	padding-right:190px;
     
    /* 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; z-index:100;
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}
/* styling for elements inside overlay */ 
.simple_overlay .details { 
    position:absolute;  z-index:10;
    top:0px; 
    right:0px; 
    font-size:11px; 
    color:#fff; 
    width:150px; height:100%;
	display:block;
	background: url(../images/ui/h300.png) bottom left repeat-x;
	padding:0px 20px;
} 
 
.simple_overlay .details h3 { 
    color:#ccffcc; 
    font-size:16px; 
    margin:10px 0 -10px 0; 
}
/** External content overlay **/
.overlay-external {
	background:url(../images/ui/transparent.png) top left no-repeat;
	color:#efefef;
	height:450px;
}

/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:441px;
	overflow-y:auto;
}


/** Tooltips **/
/* tooltip styling */ 
.tooltip { 
    display:none; 
    background:url(../images/ui/black_arrow_big.png); 
    height:163px; 
    padding:40px 30px 10px 30px; 
    width:310px; 
    font-size:11px; 
    color:#fff; 
}
.tooltip-small { 
    display:none; 
    background: url(../images/ui/black_arrow.png); 
    font-size:12px; 
    height:70px; 
    width:160px; 
    padding:25px; 
    color:#fff;     
}


/** IE6 Warning **/
#IE6warning { 
 
    /* overlay is hidden before loading */ 
    display:none; 
 
    /* standard decorations */ 
    width:400px;     
    border:10px solid #666; 
 
    /* for modern browsers use semi-transparent color on the border. nice! */ 
    border:10px solid rgba(82, 82, 82, 0.698); 
 
    /* hot CSS3 features for mozilla and webkit-based browsers (rounded borders) */ 
    -moz-border-radius:8px; 
    -webkit-border-radius:8px; 
} 
 
#IE6warning div { 
    padding:10px; 
    border:1px solid #3B5998; 
    background-color:#fff; 
    font-family:"lucida grande",tahoma,verdana,arial,sans-serif 
} 
 
#IE6warning h2 { 
    margin:-11px; 
    margin-bottom:0px; 
    color:#fff; 
    background-color:#6D84B4; 
    padding:5px 10px; 
    border:1px solid #3B5998; 
    font-size:20px; 
}