/* root element for tabs  */
ul.tabs {
	padding:0;
	height:30px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #104B7B;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

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

/* link inside the tab. uses a background image */
ul.tabs a {
	float:left;
	font-size:13px;
	display:block;
	padding:5px 30px;
	text-decoration:none;
	height:18px;
	background-color:#104B7B;
	color:#FFFFFF;
	margin-right:2px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright:10px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius:10px;
	-khtml-border-radius-topleft:10px;
	-khtml-border-radius-topright:10px;
	border-radius-topleft: 10px;
	border-radius-topright:10px;
	position:relative;
	top:1px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #104B7B;
	border-right-color: #104B7B;
	border-bottom-color: #104B7B;
	border-left-color: #104B7B;
}

ul.tabs a:hover {
	background-color:#33CC00;
	color:#FFFFFF;
}
	
/* selected tab */
ul.tabs a.current {
	background-color:#E3F5FD;
	color:#104B7B;
	cursor:default;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #E3F5FD;
}
/* tab pane */
div.panes div {
	display:none;
	min-height:150px;
	background-color:#E3F5FD;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright:10px;
	-moz-border-radius-topright:10px;
	-khtml-border-radius-bottomleft: 10px;
	-khtml-border-radius-bottomright:10px;
	-khtml-border-radius-topright:10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius:10px;
	-webkit-border-top-right-radius:10px;
	border-radius-bottomleft: 10px;
	border-radius-bottomright:10px;
	border-radius-topright:10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #104B7B;
	border-right-color: #104B7B;
	border-bottom-color: #104B7B;
	border-left-color: #104B7B;
	background-image: url(/images/tabBg.png);
	background-repeat: repeat-y;
	background-position: right top;
	padding-top: 40px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
}
div.panes li {
	list-style-type: disc;
	list-style-position: outside;
	display: list-item;
	line-height: 20px;
	margin-left: 10px;
}
div.panes ul {
	padding-top: 10px;
	padding-bottom: 10px;
}

div.panes p {
	display: block;
	line-height: 20px;
	margin-left: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
div.panes span      {
	display: block;
}