/** 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;
	font-size:100%;
}

/* ------------------- DEFAULT CONTENT STYLES --------------------- */
/* ---------------------------------------------------------------- */


h1 {
	font-family:'Lucida Sans', Lucida, 'Lucida Grande', verdana, sans-serif;
	font-weight:bold;
	font-size:22px;
	color:#0A0D38;
}

h2 {
	font-family:Georgia, Times, serif;
	font-weight:bold;
	font-size:18px;
	color:#326634;
}

h3 {
	font-family:Georgia, Times, serif;
	font-weight:normal;
	font-size:14px;
	text-transform:uppercase;
	color:#326634;
}

h4 {
	font-family:sans-serif;
	font-weight:bold;
	font-size:90%;
	text-transform:uppercase;
}

.editable {
	line-height:1.5;
	font-size:14px;
	color:#333333;
}

hr {
	border:0;
	height:1px;
	color:#cccccc;
	background-color:#cccccc;
}

a {
	text-decoration:underline;
	color:#0A0D38;
}

a:hover {
	color:#326634;
}

.editable a {
	color:#326634;
}

.editable a:hover {
	color:#0A0D38;
}

img {
	border:0;
}

table td {
	vertical-align:top;
}

/* ---------------------- CONTENT TEMPLATES ----------------------- */
/* ---------------------------------------------------------------- */


												/* Two column table */
/* ---------------------------------------------------------------- */

.ContentTemp_2Column {							
	width:100%;
	border-collapse:collapse;
}

.ContentTemp_MainCol {							/* Main column */
	padding:10px;
	width:65%;
}

.ContentTemp_SideCol {							/* Sidebar */
	padding:10px;
	border-left:1px solid #cccccc;
	width:30%;
}

.ContentTemp_MainCol img {						/* Constrain images */
	max-width:400px!important;					/* prevents broken tables */
}

.ContentTemp_SideCol img {
	max-width:150px!important;
}



												/* 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(odd) {			/* 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;
}








