/* Табы */

.tabs {
    float: left;
    width: 100%;
	position: relative;
	-moz-box-sizing: border-box; /*Firefox 1+*/ /*Игнорим отступы и бордеры для ширины в 100%*/
	-webkit-box-sizing: border-box; /*Safari 3+, Chrome 1+*/
	box-sizing: border-box; /*Opera 7+, IE8+*/
	padding-bottom: 20px;
    }
	
.tabs li {  
	color: #000000;
	cursor: pointer;
	position: relative;
	-moz-box-sizing: border-box; /*Firefox 1+*/ /*Игнорим отступы и бордеры для ширины в 100%*/
	-webkit-box-sizing: border-box; /*Safari 3+, Chrome 1+*/
	box-sizing: border-box; /*Opera 7+, IE8+*/
	text-align: center;  
    }
	
.tabs li:hover {
	color: #333333;
    }
	
.tabs li:last-child { 
    right: -1px !important;
    }

.tabs li.current h3 {
	color: #FFFFFF !important; 
    }
	
.tabs li.current h4 {
	color: #999999 !important; 
    }
	
.box {
    float: left;
    width: 100%; 
	display: none; 
	position: relative; 
    }

.box.visible {
	display: block;
    }