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

div.navi {
	/*background: url(none);*/
	margin: 0px;
	padding: 10px;
}
div.navi a {
	cursor: pointer;
}

/* ========== Scrollable ================== */ 

div.scrollable {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */ 
    height: 600px;
	width: 700px;
} 
div.scrollable div.items { 
    position:absolute; 
    /* this time we have very large space for the height */ 
    height:20000em; 
}
div.scrollable div.items div { 
    /*float:left;*/
} 

div.tabPanes > div { display: none; } /* initially all panes are hidden */

ul.tabs {
	list-style:none;
	margin:0 !important;
	height:30px;
	background: url(../images/ui-bg1x100.png) repeat-x left center;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
	text-transform: uppercase;
	border-bottom: 1px solid #666666;
}

/* 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/tab.png) no-repeat -420px 0;
	display:block;
	height: 30px;
	width: 134px;
	text-align:center;
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;
	position:relative;
	top:1px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 30px;
}

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;		
}
/* Disabled Next or Previous button */
a.disabled { visibility: hidden !important; } 

/* tooltip styling */ 
.tooltip {
	display:none;
	background:url(../images/jquery_tooltip/black_arrow.png) no-repeat center bottom;
	height:100px;
	width:209px;
	padding:60px 30px 10px 60px;
	color:#fff;
	font: bold 12px Georgia, Times, serif;
	text-transform: uppercase;
} 
 
/* a .label element inside tooltip */ 
.tooltip .label {
	color:yellow;
	padding-top: 10px;
	font: bold 10px Verdana, Arial, Helvetica, sans-serif;
} 
/* ===== CSS Rounded Corners ===== */
	/*div.tabPanes { -moz-border-radius: 8px; -webkit-border-radius: 8px; }*/
	/*div.tooltip, div.scrollable div.items div { -moz-border-radius: 8px; -webkit-border-radius: 8px; }*/
	
/* 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 {
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
	background: url(../images/jquery_overlay/close.png);
}
.apple_overlay {
	/* initially overlay is hidden */ 
    display:none;
	/*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    width:640px;
	/* some padding to layout nested elements nicely  */ 
    padding:35px;
	/* a little styling */     
    font-size:11px;
	background: url(../images/jquery_overlay/white.png);
} 
 
/* default close button positioned on upper right corner */ 
.apple_overlay div.close {
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
	background: url(../images/jquery_overlay/apple-close.png);
}


/* root element for tabs */
#flowtabs {
	/* dimensions */
	width:680px;
	height:30px !important;
	margin:0 !important; 
	padding:0;	
	
	/* IE6 specific branch (prefixed with "_") */
	_margin-bottom:-2px;
}
#flowtabs a {
	height: 25px;
	width: 30px;
	border: 1px solid #f1f1f1;
	font-family: Arial, Helvetica, sans-serif;
	padding: 2px;
}
#flowtabs a:hover,
#flowtabs a.active {
	color: #FFFFFF;
	background: #333333;
	text-decoration: none;
}


/* panes */
#flowpanes {
	width:680px;
	height:680px;
}

/* override the root element to enable scrolling */ 
#flowpanes { 
    position:relative; 
    overflow:hidden; 
    clear:both; 
} 
 
/* override single pane */ 
#flowpanes div { 
    float:left; 
    display:block; 
    width:680px; 
    /* cursor:pointer; */ 
} 
 
/* our additional wrapper element for the items */ 
#flowpanes .items { 
    width:20000em; 
    position:absolute; 
    clear:both; 
    margin:0; 
    padding:0; 
} 
#flowpanes .less, #flowpanes .less a { 
    color:#999 !important; 
    font-size:11px; 
}
