/**
 * Tab Me
 *
 * Simple CSS stylesheet for Tab Me Tabs
 *
 * @since 0.5
 */

.tab-me-tab-content {
	background-color:#ffffff;
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
        margin-top: 0px;
}

.tab-me-content-wrapper{
	clear:both;
	border: 1px solid #ccc;
        margin-top: -5px !important;
}

ul.tab-me-tabs {
	margin: 0px; 
        padding: 0;
	position: relative;
	z-index: 50;
}

ul.tab-me-tabs li{
	display: block;
	background: none;
	float:left;
        margin: 0; 
        padding: 0;
}

ul.tab-me-tabs li a{
	list-style:none;
	display: block;
	padding: 10px;
	color: #777;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	background: #eee;
        border: 1px solid #ddd;
        border-bottom: 1px solid #ddd; 
        margin-right: 0px;
        margin-bottom: 0;
       font-weight: 100;
-o-transition:.5s; -ms-transition:.5s; -moz-transition:.5s; -webkit-transition:.5s; transition:.5s;
}

ul.tab-me-tabs li a:hover, ul.tab-me-tabs li.active a, ul.tab-me-tabs li.active a:hover {
 text-decoration: none;
 border: 1px solid #bbb;
 border-bottom: 1px solid #bbb; 
 background: #fff;
 color: #000;
}

ul.tab-me-tabs li a:hover {
 color: #000;
 background: #eee;
 border-bottom: 1px solid #ddd; 
}

ul.tab-me-tabs li.active a:hover {
 background: #fff; 
 border-bottom: 1px solid #fff;
}

ul.tab-me-tabs li.active{
	border-top: 0px solid #2b3475;
}