/* CSS Document */

hr {
	color:#CCCCCC;
}

#tabs {
	display: block;
	margin-top: 10px;
	/*margin: 10px auto;*/
	/*width: 400px;*/
	padding: 20px 20px 20px 0px;
	background-color:#FFFFFF;
}

	#tabs .tabbuttons {
		display: block;
		width: 100%;
		height: 30px;
		overflow: hidden;
	}
		#tabs .tabbuttons .but {
			display: block;
			position:relative;
			float: left;
			width: 50%;
			overflow:hidden;
		}
		#tabs .tabbuttons a {
			display: block;
			height: 18px;
			padding: 5px;
			margin: 0px;
			border-top: 1px solid #999999;
			border-left: 1px solid #999999;
			border-right: 1px solid #999999;
			border-bottom: 1px solid #999999;
			color: #669000;
			font-size: 1.3em;
			text-align:center;
			text-decoration:none;
		}
		#tabs .tabbuttons .but.on a {
			border-bottom: 1px solid #ffffff;
			font-weight:bold;
		}
		#tabs .tabbuttons .but.off a {
		background-color:#EEEEEE;
		}
		#tabs .tabbuttons .but.off a:hover {
			background-color: #669000;
			color: #ffffff;
		}
	
	#tabs .tabcontent {
		display: block;
		clear: both;
		padding: 10px;
		margin: 0px;
		border-bottom: 1px solid #999999;
		border-left: 1px solid #999999;
		border-right: 1px solid #999999;
	}

	#tabs .tab1 {
		display: block;
	}
	#tabs .tab2 {
		display: none;
	}
	
#tabs .title {
	vertical-align:top;
	text-align:right;
	padding: 6px 10px 4px 4px;
}
#tabs .value {
	vertical-align:top;
	padding: 4px 4px 4px 4px;
}
#tabs .sub {
	font-size: .8em;
}
#tabs .pre {
	vertical-align:top;
	padding: 6px 0px 0px 0px;
}

