/* 
 * Tabber v3.0.5 - 2014-02-06 
 * A jQuery plugin for adding simple tabbed interfaces. Part of the Formstone Library. 
 * http://formstone.it/tabber/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */ 
 
.tabbed {
	margin-top:0;
} 
 
.tabber {
	overflow: hidden;
}

.tabber .tabber-handle {
	color: #71d8ff!important;
	background-color:#006cb7;
	cursor: pointer;
	display: block;
	float: left;
	font-family: "MyriadPro", Arial;
	font-weight:bold;
	font-size:15px;
	padding:10px;
	margin-right:3px;
	-webkit-transition:all .25s ease;
	-moz-transition:all .25s ease;
	-ms-transition:all .25s ease;
	-o-transition:all .25s ease;
	transition:all .25s ease;
}

.tabber .tabber-handle:hover {
	color: #454545!important;
	background-color:#f2f2f2;
}

.tabber .tabber-handle.active {
	color: #454545!important;
	background-color:#f2f2f2;
}
.tabber .tabber-handle.mobile {
	display: none;
	float: none;
}

.tabber .tabber-tab {
	clear: both;
	display: none;
	background-color:#f2f2f2;
	padding:  30px 15px;
	position:relative;
	height:auto;
	overflow:auto;
}

.tabber .tabber-tab.active {
	display: block;
}
.tabber.mobile .tabber-handle {
	display: none;
}
.tabber.mobile .tabber-handle.mobile {
	display: block;
}

sidenav {
	display:inline-block;
	width:235px;
	vertical-align:top;
	margin-left:-15px;
	margin-right:30px;
}

.sidetabber-handle {
	color: #71d8ff!important;
	background-color:#006cb7;
	cursor: pointer;
	display: inline-block;
	font-family: "Helvetica-Neue", Arial;
	font-size:14px;
	padding:10px;
	width:215px;
	margin-bottom:10px;
	overflow:hidden;
	-webkit-transition:all .25s ease;
	-moz-transition:all .25s ease;
	-ms-transition:all .25s ease;
	-o-transition:all .25s ease;
	transition:all .25s ease;
}

.sidetabber-handle:hover {
	color: #fff!important;
	background-color:#7c7c7c;
}

.sidetabber-handle.active{
	color: #fff!important;
	background-color:#7c7c7c;
}

.sidetabber-tab {
	display: inline-block;
	background-color:#f2f2f2;
	padding:  0;
	position:relative;
	width:495px;
	height:auto;
	overflow:auto;
}
.sidetab-container {
	clear: both;
	background-color: #f2f2f2;
	padding: 30px 15px;
	position: relative;
	height: auto;
	overflow: auto;
}