/** EDITOR.CSS
	This file contains default styles for Content Templates and 
	basic text styling and should be loaded into the editor 
	via Tools > Configuration
**/ 

body {
	margin: 0;
	padding: 0;
}
nav ul:before, nav ul:after {
box-shadow: none;
}
/* ------------------- DEFAULT CONTENT STYLES --------------------- */
/* ---------------------------------------------------------------- */
h1 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	font-size: 22px;
	color: #00703C;
	margin-top: 40px;
}
h2 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	font-size: 20px;
	color: #00703C;
}
h3 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	font-size: 18px;
	color: #00703C;
}
h4 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #00703C;
}
p {
	line-height: 1.5;
	font-size: 100%;
	color: #000;
	font-weight: 400;
}
hr {
	border: 0;
	height: 1px;
	color: #cccccc;
	background-color: #cccccc;
}
a {
	text-decoration: underline;
	color: #00703C;
}
a:hover {
	color: #405e74;
}
img {
	border: 0;
}
table td {
	vertical-align: top;
}
/* ---------------------- CONTENT TEMPLATES ----------------------- */
/* ---------------------------------------------------------------- */


												/* Two column table */
/* ---------------------------------------------------------------- */

.ContentTemp_2Column {
	width: 100%;
	border-collapse: collapse;
	margin-top: 40px;
}
.ContentTemp_MainCol {							/* Main column */
	padding-right: 20px;
	width: 65%;
}
.ContentTemp_SideCol {							/* Sidebar */
	padding: 10px;
	width: 30%;
	background: #fff;
	position: relative;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.6);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.6);
}
.ContentTemp_MainCol h1, .ContentTemp_SideCol h1, .ContentTemp_SideCol h2, .ContentTemp_SideCol h3 {
	margin-top: 0px;
}
.ContentTemp_MainCol img {						/* Constrain images */
	max-width: 400px!important;					/* prevents broken tables */
}
.ContentTemp_SideCol img {
	max-width: 150px!important;
}

.ContentTemp_MainCol li {
	margin-bottom: 12px;
}

/* Zebra list table */
/* ---------------------------------------------------------------- */

.ContentTemp_Zebra {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #cccccc;
}
.ContentTemp_Zebra th {							/* Column headings */
	font-weight: bold;
	background: #F4F5FB;
	border-bottom: 1px solid #cccccc;
	text-align: left;
	padding: 3px;
}
.ContentTemp_Zebra tbody td {
	border-left: 1px solid #cccccc;
	padding: 2px;
}
.ContentTemp_Zebra tr:nth-child(even) {			/* Needs jquery fallback */
	background: #f4f4f4;
}
.ContentTemp_Zebra img {						/* constrain images */
	max-width: 100px;
}

/* Box table */
/* ---------------------------------------------------------------- */
.ContentTemp_Box {
	width: 100%;
}
.ContentTemp_Box td {
	padding: 5px;
	width: 48%;
}
.ContentTemp_Box td img {
	max-width: 200px;
}
 @media (max-width: 960px) {
.ContentTemp_MainCol {							/* Main column */
	padding: 0;
	width: 100%!important;
	display: block;
}
.ContentTemp_SideCol {							/* Sidebar */
	padding: 0;
	margin-top: 20px;
	width: 100%!important;
	display: block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: none;
}
}

/* FAQ Accordion */
/* ---------------------------------------------------------------- */
#accwrapper {
  	position:relative;
	width: 100%;
  	height:auto;
  	display:block;
  	bottom:10px;
	}

.accButton {	
	width: calc(100% - 20px);
	width: -moz-calc(100% - 20px);
	width: -webkit-calc(100% - 20px);
  padding:10px;
	float: left;
	_float: none;  /* Float works in all browsers but IE6 */
background: #405e74;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f5d5d', endColorstr='#400000', GradientType=0 );	border-bottom: 1px solid #FFFFFF;
	cursor: pointer;
	font-weight: bold;
  	color:#fff;
  -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	}
	
.accContent {	
	width: calc(100% - 10px);
	width: -moz-calc(100% - 10px);
	width: -webkit-calc(100% - 10px);
  padding-left:10px;
	float: left;
	_float: none; /* Float works in all browsers but IE6 */
	background: #fff;
  	color:#fff;
	font-weight: normal;
	font-size: 13px;
  -webkit-box-shadow:inset 0 1px 2px 1px rgba(0,0,0,.3);
box-shadow:inset 0 1px 2px 1px rgba(0,0,0,.3);
  -webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
	}

.on {
	background: #00703C;
  	color:#fff;
	}
	
.over {
	background: #00703C;
  	color:#fff;
	}