/**************************
1.0 Columns
**************************/
.row {
	clear:left;
	overflow:hidden;
}
.half-col { 
	width: 48%; 
}
.third-col { 
	width: 30.6667%; 
}
.two-thirds-col { 
	width: 65.3333%;
}
.fourth-col { 
	width: 22%; 
}
.three-quarters-col {
	width:74%
}
.fifth-col { 
	width: 16.8%; 
}
.sixth-col { 
	width: 13.3333%; 
}

.half-col,
.third-col,
.two-thirds-col,
.fourth-col,
.three-quarters-col,
.fifth-col,
.sixth-col {
	float: left;
	margin-left: 4%;
	position: relative;
}
.column:first-child {
	clear:both;
	margin-left:0;
}


/**************************
2.0 Default Tab Styles
**************************/
.tabs {
	overflow:visible;
	margin-bottom:30px;
}
.tabnav {
	width:100%;
	background:#fff;
	position:relative;
	display:table;
	border:1px solid #cacaca;
	border-radius:20px;
	margin:2em 0;
	overflow:hidden;
}

.tabnav  > .tab {
	display:table-cell;
	vertical-align:middle;
	padding:10px;
	cursor:pointer;
	position:relative;
	margin-left:-0.25em;
	text-align:center;
	z-index:99;
	color:#333333;
	border-left:1px solid #cacaca;
}
.tabnav > .tab:first-child {
	border-left:0;
	border-radius:20px 0 0 20px;
}
.tabnav > .tab:last-child {
	border-radius:0 20px 20px 0;
}
.tabnav  > .tab:hover {
	opacity:0.7;
}
.tabnav  > .tab.active {
	color:#000;
	opacity:1 !important;
	background-color:#F0F0F0;
}
/* tab widths */
.tabs-2 .tabnav .tab {
	width:50%;
}
.tabs-3 .tabnav .tab {
	width:33.3%;
}
.tabs-4 .tabnav .tab {
	width:25%;
}
.tabs-5 .tabnav .tab {
	width:20%;
}
.tabs-6 .tabnav .tab {
	width:16.6%;
}

#content .tabnav p {
	margin:0;
}
.tabcontent {
	width:100%;
	height:auto;
	overflow:hidden;
	position:relative;
}
.tab.content {
	position:relative;
	display:none;
}
.tab.content.active {
	display:block;
}

/**************************
3.0 Default Button Styles
**************************/
button,
input[type="submit"],
.button > a {
	background: #dfdfdf;
	border: 1px solid #ccc;
	border-radius:4px;
	color: #333 ;
	display: inline-block;
	font-size: 0.9em;
	line-height: 1;
	padding: 10px;
	text-decoration: none;
}
.button.blue > a {
	background: #458ED1;
	border-color:#0764BC;
	color:#fff;
}
.button.red > a {
	background:#DB5561;
	border-color:#D00013;
	color:#fff;
}
.button.green > a{
	background: #4CB462;
	border-color: #0F9600;
	color:#fff;
}
.button.blue > a,
.button.red > a,
.button.green > a {
	text-shadow:1px 1px 1px #333;
}