/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#ffffff; 
     
    width:900px;     
    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/icon_close.png); 
    position:absolute; 
    right:-15px; 
    top:-15px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}
.simple_overlay h1 {
	background:#1c82bc;
	color:#fff;
	padding:6px;
}
/* styling for elements inside overlay */ 
.details { 
    position:absolute; 
    top:15px; 
    right:15px; 
    font-size:11px; 
    color:#fff; 
    width:150px; 
} 
 
.details h3 { 
    color:#aba; 
    font-size:15px; 
    margin:0 0 -10px 0; 
}

/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;	
	border:0px; 	
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	background-color:#fff;
 	
	color:#000;	
	cursor:default;	
}

ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	float:left;
	font-size:13px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #1c82bc;	
	border-bottom:0px;
	height:18px;
	background-color:#1c82bc;
	color:#fff;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;
}

ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
 
	background-color:#ffffff;
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:14px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #888;	
	border-bottom:0px;
	height:18px;
 	background-color:#888;
	color:#fff;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;	
	color:#333;
}
		
/* tab pane */
div.css-panes div {
	display:none;
 	
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	border:1px solid #ddd;	
 	-moz-border-radius:4px; 
	-webkit-border-radius:4px; 
}



	/* main vertical scroll */
	#main {
		position:relative;
		overflow:hidden;
		height: 850px;
		width:650px;
	}
	
	/* root element for pages */
	#pages {
		position:absolute;
		height:20000em;
	}
	
	/* single page */
	.page {
 
		height: 900px;
		background:#fff;
		width:650px;
	}
	
	/* root element for horizontal scrollables */
	.scrollable {
		position:absolute;
		overflow:hidden;
		width: 650px;
		height: 950px;
	}
	
	/* root element for scrollable items */
	.scrollable .items {
		width:20000em;
		position:absolute;
		clear:both;
	}
	
	/* single scrollable item */
	.item {
		float:center;
 
		width:550px;
		height:950px;
		margin-left:10px;
	}
 
	
	/* main navigator */
	#main_navi {
		float:left;
		padding:0px !important;
		margin:0px !important;
	}
	
	#main_navi li {
		background-color:#fff;
		border-top:1px solid #aaa;
		clear:both;
		color:#000;
		font-size:12px;
		height:75px;
		list-style-type:none;
		padding:10px;
		width:290px;
		cursor:pointer;
	}
	
	#main_navi li:hover {
		background-color:#eee;
	}
	
	#main_navi li.active {
		background-color:#f1f1f1;
	}
	
	#main_navi img {
		float:left;
		
	}
	
	#main_navi strong {
		display:block;
	}
	
	#main div.navi {
		margin-left:250px;
		cursor:pointer;
	}



