@charset "utf-8";
/* CSS Document */
	ul.tabs {
		margin: 0;
		padding: 0;
		float: left;
		list-style: none;
		height: 55px;
		border-bottom: none;
		border-left: none;
		width: 100%;
	}
	ul.tabs li {
		float: left;
		margin: 0;
		cursor: pointer;
		padding: 9px 38px 0;
		height: 45px;
		border: 1px solid #999999;
		border-left: none;
		background: #EEEEEE;
		overflow: hidden;
		position: relative;
	}
	.data ul.tabs li {
		padding: 9px 28px 0;
	}
	ul.tabs li:hover {
		background: #CCCCCC;
	}	
	ul.tabs li.active{
		background: #FFFFFF;
		border-bottom: 1px solid #FFFFFF;
		color:#222222;
	}
	.tab_container {
		border: none;
		border-top: none;
		clear: both;
		float: left; 
		width: 100%;
		background: #FFFFFF;
	}
	.tab_content {
		padding: 20px;
		font-size: 1.2em;
		display: none;
	}
	#container {
		width: 650px;
		margin: 0 auto;	
	}

