body{
	
		font-family: 'Open Sans', sans-serif;
		color: #333;
		font-size: 12px;
}



#box{
	
	width: 900px;
	height: 100%;
	margin: 0 auto;
}



#header{
	
	width: 880px;
	height: 35px;
	padding: 10px;
	margin: 0 auto;
	border: 0px solid #ccc;
	
}



#banner{
	
	width: 900px;
	height: 250px;
	padding: 0px;
	margin: 0 auto;
	border: 0px solid #ccc;
	
}
























a{
	position: relative;

}

a:link	{
	
	
	text-decoration: none;
	color: #398080;
	
}

a:visited {
	
	text-decoration: none;
	color: #398080;
	
	}
a:hover {
	

	text-decoration: none;
	color: #000;
	
	
}
a:active {
	
	text-decoration: none;
	color: #398080;
}






.tabs {
    position: relative;
	margin: 20px auto;
	width: 900px;
}

.tabs input {
	position: absolute;
	z-index: 1000;
	width: 170px;
	height: 35px;
	left: 0px;
	top: 0px;
	opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
	cursor: pointer;
}
.tabs input#tab-2{
	left: 178px;
}
.tabs input#tab-3{
	left:356px;
}
.tabs input#tab-4{
	left: 534px;
}
.tabs input#tab-5{
	left: 712px;
}




.tabs label {
	background: #eee;
	font-size: 12px;
	line-height: 35px;
	height: 35px;
	position: relative;
	padding: 0 4px;
    float: left;
	display: block;
	width: 170px;
	color: #385c5b;
	letter-spacing: 1px;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
    border-radius: 3px 3px 0 0;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1), -2px 0 2px rgba(0,0,0,0.1);
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	display: block;
}

.tabs input:hover + label {
	background: #ccc;
}

.tabs label:first-of-type {
    z-index: 5;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}

.tab-label-2 {
    z-index: 3;
}

.tab-label-3 {
    z-index: 2;
}

.tab-label-4 {
    z-index: 5;
}

.tab-label-5 {
    z-index: 1;
}



.tabs input:checked + label {
    background: #fff;
	z-index: 6;
}

.clear-shadow {
	clear: both;
}

.content {
    background: #fff;
	position: relative;
    width: 100%;
	height: 500px;
	z-index: 5;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2), 0 2px 2px rgba(0,0,0,0.1);
    border-radius: 0 3px 3px 3px;
}

.content div {
    position: absolute;
	top: 0;
	left: 0;
	padding: 20px 20px;
	z-index: 1;
    opacity: 0;

    -webkit-transition: opacity linear 0.1s;
    -moz-transition: opacity linear 0.1s;
    -o-transition: opacity linear 0.1s;
    -ms-transition: opacity linear 0.1s;
    transition: opacity linear 0.1s;
}

.tabs input.tab-selector-1:checked ~ .content .content-1,
.tabs input.tab-selector-2:checked ~ .content .content-2,
.tabs input.tab-selector-3:checked ~ .content .content-3,
.tabs input.tab-selector-4:checked ~ .content .content-4, 
.tabs input.tab-selector-5:checked ~ .content .content-5 {
	z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;

    -webkit-transition: opacity ease-out 0.2s 0.1s;
    -moz-transition: opacity ease-out 0.2s 0.1s;
    -o-transition: opacity ease-out 0.2s 0.1s;
    -ms-transition: opacity ease-out 0.2s 0.1s;
    transition: opacity ease-out 0.2s 0.1s;
}
.content div h2,
.content div h3{
	color: #398080;
}
.content div p {
	font-size: 13px;
	line-height: 24px;
	text-align: left;
	color: #777;
	padding-left: 5px;
	border-left: 8px solid rgba(63,148,148, 0.1);
}


.content ul{

	text-decoration: none;
	margin:0; padding:0;
}

.content li{

	border-bottom: 1px solid #ccc;
	list-style: none;
}


.content th{

	color: #398080;
	
	

}

.content td{
	
	line-height: 24px;
	padding: 10px;
	border: 1px solid #eee; 
	border-radius: 8px;	

background: rgb(255,255,255); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 74%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(243,243,243,1)), color-stop(74%,rgba(237,237,237,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 74%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 74%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 74%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 50%,rgba(237,237,237,1) 74%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	
	
	
}	
}
