/* root element for tabs  */
ul.tabs {
    list-style:none;
    margin:0 !important;
    padding:0;
    border-bottom:1px solid #ddd;
}

/* single tab */
ul.tabs li {
    float:left;
    text-indent:0;
    padding:0;
    margin:0 !important;
    list-style-image:none !important;
    width: 25%;
}

/* link inside the tab. uses a background image */
ul.tabs a {
    background: #477292;
    border-left:1px solid #698DAB;
    font-size:2.2em;
    display:block;
	font-family: 'Bariol Bold';
	line-height:66px;
	padding:15px 0;
    text-align:center;
    text-decoration:none;
    color:#fff;
    padding:0px;
    margin:0px;
    position:relative;
    cursor:pointer;
    top:1px;
	-webkit-transition: background 0.4s ease;
	-moz-transition: background 0.4s ease;
	-o-transition: background 0.4s ease;
	-ms-transition: background 0.4s ease;
	transition: background 0.4s ease;
}

ul.tabs a:active, ul.tabs li:active {
    outline:none !important;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    background: #70AB3A;
    border-left:1px solid #94BD6A;
    color:#fff;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current,
ul.tabs a.current:hover,
ul.tabs li.current a {
    background:#F3F3F3;
    cursor:default !important;
    color:#1E6895 !important;
    outline:none !important;
    border-left:1px solid #ddd;
    
}

ul.tabs a.current.end,
ul.tabs li.current a.end {border-left:0;border-right:1px solid #ddd;}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* initially all panes are hidden */
.panes .pane {
    display:none;
}

