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

/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:40px;
	border-bottom:1px solid #666;	 	
}

/* 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 {
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	display:block;
	padding:5px 20px;
	text-decoration:none;
	border:1px solid #666;
	border-bottom:0px;
	height:28px;
	background-color:blue;
	color:#fff;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;
	font-style: normal;
	font-weight: bold;
}

ul.css-tabs a:hover {
	background-color:#F18D23;
	color:#fff;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#FBFBFB;
	border-bottom:2px solid #fbfbfb;
	color:#000;
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border:1px solid #666;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	background-color:#FBFBFB;
}
.tablediv {
	width: 80%;
	height:100px;
	margin-left:30px;

}

/* links */
.css-panes a {
color:#000099;
text-decoration:underline;
}

.css-panes a:hover {
color:#F18D22;
}

.notice {
	width:250px;
	height:100px;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
	padding-left: 50px;
}
