/** EDITOR.CSS
	This file contains default styles for Content Templates and 
	basic text styling and should be loaded into the editor 
	via Tools > Configuration
**/
@import url(http://fonts.googleapis.com/css?family=Varela);

body {
	margin:0;
	padding:0;
	font-size:100%;
}

/* ------------------- DEFAULT CONTENT STYLES --------------------- */
/* ---------------------------------------------------------------- */


h1 {
	font-family:'Arvo', Georgia, serif;
	font-weight:400;
	font-size:150%;
	color:#2D4B21;
	margin:0;
	padding:0 0 10px 0;
}

h2, .FORM_LABEL_TEXT {
	font-family:'Varela', Helvetica, Arial, sans-serif;
	font-weight:400;
	font-size:16px;
	color:#2D4B21;
	text-transform:uppercase;
	margin:10px 0;
	padding:0;
	text-shadow:1px 1px 0 white;
}

h3 {
	font-family:'Varela', Helvetica, Arial, sans-serif;
	font-weight:400;
	font-size:120%;
	color:#333333;
	margin:0;
	padding:0;
}

h4 {
	font-family:sans-serif;
	font-weight:bold;
	font-size:90%;
	text-transform:uppercase;
}

.editable {
	font-size:13px;
	line-height:1.5;
	color:#666666;
}

.home .editable {
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px solid #cccccc;
}

hr {
	border:0;
	height:1px;
	color:#cccccc;
	background-color:#cccccc;
}

a {
	text-decoration:none;
	border-bottom:1px solid #2D4B21;
	color:#2D4B21;
}

a:hover {
	color:#75A565;
	border-color:#75A565;
}

img {
	border:0;
	vertical-align:middle;
}

table td {
	vertical-align:top;
}

.editable ul {
	margin:10px;
	list-style:none;
	padding:0;
}

.editable ul li {
	margin:0;
	padding:3px 0 3px 15px;
	background:url(/images/layout/arrow_double.png) left 9px no-repeat;
}

/* ---------------------- CONTENT TEMPLATES ----------------------- */
/* ---------------------------------------------------------------- */


												/* Two column table */
/* ---------------------------------------------------------------- */

.ContentTemp_2Column {							
	width:100%;
	border-collapse:collapse;
}

.ContentTemp_MainCol {					/* Main column */
	padding:0 15px 0 0;
	width:65%;
}

.ContentTemp_MainCol select {
	max-width:400px;
}

.ContentTemp_SideCol {					/* Sidebar */
	padding:10px;
	width:30%;
	font-size:14px;
}

.ContentTemp_MainCol img {									/* Constrain images */
	max-width:400px!important;					/* prevents broken tables */
}

.ContentTemp_SideCol img {
	max-width:200px!important;
}

.ContentTemp_2Column img {
	max-width:100%;
}

												/* Zebra list table */
/* ---------------------------------------------------------------- */

.ContentTemp_Zebra {
	width:100%;
	border-collapse:collapse;
}

.ContentTemp_Zebra th {							/* Column headings */
	font-weight:normal;
	background:#ffffff;
	text-align:left;
	padding:3px;
	color:black;
	border-bottom:1px solid #cccccc;
}

.ContentTemp_Zebra tbody td {
	padding:5px;
}

.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;
}








