.tabs {
    position: relative;
background-color: #E2E2E2;
	width: 100%;
}

.tabs input {
	position: absolute;
	z-index: 0;
	

	left: 0px;
	top: 0px;
	opacity: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
	cursor: pointer;
}




.tabs label {
	background: white url(../images/shade.gif) top left repeat-x;
	font-size: 12px;
	line-height: 30px;
	height: 30px;
	position: relative;

    float: left;
	display: block;
	padding:0px 15px 0px 15px;

	color: #000;

	font-weight: bold;
	text-align: center;
margin-right: 3px;
    border-radius: 5px 5px 0 0;
}

.tabs label:after {
    content: '';
	background: #fff;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	display: block;
}

.tabs input:hover + label {
	background: white url(../images/shade.gif) top left repeat-x;
}

.tabs label:first-of-type {
    z-index: 0;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}

.tab-label-2 {
    z-index: 0;
}

.tab-label-3 {
    z-index: 0;
}

.tab-label-4 {
    z-index: 0;
}

.tabs input:checked + label {
    background-image: url(../images/shadeactive.gif);
	z-index: 0;
	color:#FFF;
	font-size:12px;
}

.clear-shadow {
	clear: both;
}

.content {

	position: relative;
    width: 100%;
	height: auto;
	z-index: 0;
	text-align:justify;
	

}

.content div {
    position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
    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;
	margin-top: 10px;
margin-left: 10px;
margin-right:10px;
}

.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 {
	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{
	background: white url(../images/shade.gif) top left repeat-x;
	font-size: 12px;
}
.content div p {
	font-size: 1.4em;

	text-align:justify;
	margin: 0;
	color: #000;

;
}