.tabs {
    position: relative;
	margin:auto;
	width: 800px;

}

.tabs input {
	position: absolute;
	z-index: 1000;
	width: 120px;
	height: 30px;
	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: 120px;
}


.tabs label {
	background: #D8D8D8;
	background: -moz-linear-gradient(top,#D8D8D8 0%, #848484 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#D8D8D8), color-stop(100%,#848484));
	background: -webkit-linear-gradient(top, #D8D8D8 0%,#848484 100%);
	background: -o-linear-gradient(top, #D8D8D8 0%,#848484 100%);
	background: -ms-linear-gradient(top, #D8D8D8 0%,#848484 100%);
	background: linear-gradient(top, #D8D8D8 0%,#848484 100%);
	font-size: 14px;
	line-height: 40px;
	height: 30px;
	position: relative;
	padding: 0 20px;
    float: left;
	display: block;
	width: 90px;
	color: #0B0B61;
	top: 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
	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: 4px 4px 2px black;
}

.tabs label:after {
    content: '';
	background:#6E6E6E;
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 5px;
	display: block;
}

.tabs input:hover + label {
	background: #F4D03F;
	top: -8px;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}
.tabs input:hover + label:after{
	background:#545457;
}
.tabs input:hover + label ~ .clear-shadow {
    top: -8px;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}

.tabs input:checked:hover + label {
    top: 0;
}
.tabs input:checked:hover + label:after{
	background: #fff;
}
.tabs input:checked:hover + label ~ .clear-shadow {
    top: 0;
	background: black;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}

.tabs input.tab-selector-1:hover + label.tab-label-1 ~ .clear-shadow{
    z-index: 3;
}

.tabs input.tab-selector-2:hover + label.tab-label-2 ~ .clear-shadow {
    z-index: 2;
}


.tabs label:first-of-type {
    z-index: 4;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}

.tab-label-2 {
    z-index: 3;
}



.tabs input:checked + label {
    background: #fff;
	z-index: 6;
	-webkit-transition: top linear 0.2s;
    -moz-transition: top linear 0.2s;
    -o-transition: top linear 0.2s;
    -ms-transition: top linear 0.2s;
    transition: top linear 0.2s;
}

.clear-shadow {
    background:#46474A;
	position: relative;
	top: 0;
    height: 10px;
	margin-bottom: -10px;
    clear: both;
	z-index: -2;
    box-shadow: 0 -2px 3px -2px rgba(0,0,0,0.2);
    border-radius: 3px;
}
.content{
    background:white;
	position: relative;
    width: 100%;
	height: 500px; /*cambiar el tamaņo*/
	z-index: 5;
	overflow: hidden;
    box-shadow: 4px 4px 2px black;
    border-radius: 0 3px 3px 3px;
}
.content-2 {
    background:white;
	position: relative;
    width: 34%;
	height: 580px; /*cambiar el tamaņo*/
	z-index: 5;   
}
.content-1 {
    background:white;
	position: relative;
    width: 35%;
	height: 590px; /*cambiar el tamaņo*/
	z-index: 5; 
}
.content-2 h6 {
    background: #E6E7EB;
    text-align:justify;
	font-size: 13.5px;
	line-height: 22px;
	font-style: italic;
	margin: 0;
	color:black;
	padding-left:8px;
    padding-right:22px;
	font-family: Cambria, Georgia, serif;
	border-left: 5px solid rgba(63,148,148, 0.1);
    box-shadow: 0.5px 3px 0.5px black;
}
.content div {
    position: absolute;
	top: 0;
	left: 0;
	bottom: 100%;
	padding: 5px 10px;
	overflow: hidden;
	-webkit-transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -o-transition: all linear 0.1s;
    -ms-transition: all linear 0.1s;
    transition: all 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 {
	bottom: 0px;
    z-index: 100;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all ease-out 0.2s 0.2s;
    -moz-transition: all ease-out 0.2s 0.2s;
    -o-transition: all ease-out 0.2s 0.2s;
    -ms-transition: all ease-out 0.2s 0.2s;
    transition: all ease-out 0.2s 0.2s;
}

.content div h2,
.content div h3{
	color:black;
    font-size: 19px;
    font-style: italic;
    text-shadow: 3px 3px 2px transparent;
}
.content div p {
    background: #E6E7EB;
    text-align:justify;
	font-size: 13.5px;
	line-height: 22px;
	font-style: italic;
	margin: 0;
	color:black;
	padding-left:2px;
    padding-right:13px;
	font-family: Cambria, Georgia, serif;
	border-left: 5px solid rgba(63,148,148, 0.1);
    box-shadow: 0.5px 3px 0.5px black;
}
hr {
    border: 0; 
    height: 2px; 
    border-top: 1px dashed black; 
    border-bottom: 1px dashed black;
}
em{
    color:#7592FA;
}