#main .tabs {
	position: relative;
    margin: 0;
    padding: 0;
	width: 100%;
	overflow: hidden;
	font-weight: 300;
}
#main .tabs nav {
	text-align: center;
}
#main .tabs nav ul {
	padding: 0;
	margin: 15px 0 0;
	list-style: none;
	display: inline-block;
    width: 100%;
}
#main .tabs nav ul li {
    list-style: none;
    float: left;
	margin: 0 1%;
    padding: 10px 0;
    width: 23.5%;
	position: relative;
    background: #ffa500;
    cursor: pointer;
}
#main .tabs nav ul li:first-child{
    margin-left: 0px;
}
#main .tabs nav ul li:last-child{
    margin-right: 0px;
}

@media screen and (max-width: 992px) {
    #main .tabs nav ul li {
        margin: 2px 0;
        padding: 10px 0;
        width: 100%;
    }
}

#main .tabs nav li.tab-current {
	background: #ff8800;
	z-index: 100;
}
#main .tabs nav a {
    margin: 0;
    padding: 0;
	color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}
#main .tabs nav li.tab-current a {
	color: #fff;
}


/* Content */
.content section {
	font-size: 1.25em;
	padding: 25px 0;
	display: none;
	max-width: 1230px;
	margin: 0 auto;
}

.content section:before,
.content section:after {
	content: '';
	display: table;
}

.content section:after {
	clear: both;
}

/* Fallback example */
.no-js .content section {
	display: block;
	padding-bottom: 2em;
	border-bottom: 1px solid #47a3da;
}

.content section.content-current {
	display: block;
}



	