/** 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%;
	font-family:'Lucida Grande', 'Lucida Sans', Lucida, Tahoma, sans-serif;
}

/* ------------------- DEFAULT CONTENT STYLES --------------------- */
/* ---------------------------------------------------------------- */


h1 {
	font-weight:normal;
	font-size:25px;
	color:#AE3905;
}

h2 {
	font-weight:bold;
	font-size:125%;
	color:#1C2B66;
}

h3 {
	font-weight:normal;
	font-size:15px;
	color:#AF3906;
	margin:5px 0;
	padding:0;
	text-transform:uppercase;
}

h4 {
	font-family:sans-serif;
	font-weight:bold;
	font-size:90%;
	text-transform:uppercase;
}

p {
	line-height:1.5;
	color:#333333;
}

hr {
	border:0;
	height:1px;
	color:#cccccc;
	background-color:#cccccc;
}

a {
	text-decoration:underline;
	color:#27409A;
}

a:hover {
	color:#AE3905;
}

img {
	border:0;
}

table td {
	vertical-align:top;
}

										/* Ordered Lists */
ol {
	counter-reset:li; /* Initiate a counter */
	margin-left:0; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */
}
ol > li {
	position:relative; /* Create a positioning context */
	margin:0 0 6px 2em; /* Give each list item a left margin to make room for the numbers */
	padding:4px 8px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
	border-top:2px solid #9599A3;
	background:#F3F4F6;
}
ol > li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top:-2px;
	left:-2em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	width:2em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it */
	margin-right:8px;
	padding:4px;
	border-top:1px solid #9599A3;
	color:#fff;
	background:#9599A3;
	font-weight:bold;
	font-family:"Helvetica Neue", Arial, sans-serif;
	text-align:center;
}
li ol,
li ul {margin-top:6px;}
ol ol li:last-child {margin-bottom:0;}

									/* < IE 8 fallback */
.ie7 ol, .ie6 ol {margin-left:40px;}
.ie7 ol li, .ie6 ol li {
	margin-left:0;
	list-style:decimal;
}
.ie7 ol ul li, .ie6 ol ul li {list-style:disc;}					



/* ---------------------- 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;
	width:30%;
}

.ContentTemp_SideCol ul {
	list-style:none;
	margin:0;
	padding:0;
}

.ContentTemp_SideCol ul li {
	background:url(/images/layout/arrow_double.png) left 50% no-repeat;
	padding:3px 0 3px 15px;
	margin:0;
}

.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(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;
}



												/* CONTACT US BOX  */
/* --------------------------------------------------------------- */

.ContentTemp_Contact {
	clear:both!important;
	background:#E2E4F2;
	width:720px;
	margin:20px 0 35px 0;
}

.ContentTemp_Contact img {
	box-shadow:1px 1px 3px #666;
	max-height:122px;
}

.ContentTemp_Contact h3 {
	padding:5px 0 0 0;
	margin:5px 0 0 0;
}

.ContentTemp_Contact p {
	font-size:13px;
	font-weight:normal;
	color:#1C2B66;
	padding:0;
	margin:0;
	line-height:1.5;
}

.ContentTemp_Contact .col1 {
	padding:0 0 10px 15px;
}

.ContentTemp_Contact .col2 {
	vertical-align:middle;
}

.ContentTemp_Contact .col3 {
	text-align:right;
	vertical-align:middle;
	padding-right:10px;
}


/* ----------------- FORMS --------------- */
/* ---------------------------------------- */


#main input[type=text] {
	border:1px solid #cccccc;
	border-radius:5px;
	padding:5px 10px;
	outline:0;
	box-shadow:inset 1px 1px 2px #999;
	min-width:150px;
}

#main input[type=text]:focus {
	border:1px solid #27409A;
	background:#ffffcc;
}
