/*features tab*/
.features-tab-container {
    background: #fff url(../images/bg-features-tab.png) repeat-y;
	background-position: -66px 0px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    -moz-border-radius: 5px;    
    -webkit-border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.features-tab-container .features-tab-wrapper {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
}

.content .features-tab-container .features-tab-labels {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    list-style-type: none;
	margin-left: 30px;
}

.features-tab-container .features-tab-labels li {
    border-bottom: 1px solid #d4d4d4;
    color: #727171;
    cursor: pointer;
    font-family: 'Maven Pro', 'Verdana', 'Arial', sans-serif;
    font-size: 16px !important;
    padding: 10px 16px;
    position: relative;
    z-index: 100;
}

.features-tab-container .features-tab-labels li:last-child {
    border-bottom: none;
}

.features-tab-container .features-tab-content {
	padding: 20px;
}

img.attachment-features_tab_icon {
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    margin: 0 15px 0 0;
    vertical-align: middle;
}

.features-tab-container .features-tab-labels li.current-feature {
    background-color: #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #d4d4d4;
    border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    color: #000;
}

@media (min-width: 1200px) {
	.features-tab-container { background-position: -16px 0px; }
}

@media (max-width: 1200px) {
	.content .features-tab-container .features-tab-labels { margin-left: 20px; }
}

@media (max-width: 979px) and (min-width: 768px) {
	.features-tab-container { background-position: -120px 0px; }
	.content .features-tab-container .features-tab-labels { margin-left: 20px; }
}

@media (max-width: 767px) {
	.features-tab-container { background: none; }
	
	.features-tab-container .features-tab-labels li {
		background-color: #eee;
	}
	
	.features-tab-container .features-tab-labels li:first-child {
		-webkit-border-top-left-radius: 5px;
		-webkit-border-top-right-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-moz-border-radius-topright: 5px;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}
	
	.features-tab-container .features-tab-labels li:last-child {
		border-bottom: 1px solid #d4d4d4;
	}
	.content .features-tab-container .features-tab-labels { margin-left: 0px; }
}