/** 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 --------------------- */
/* ---------------------------------------------------------------- */

body, h1, h2 {
/* responsive transitions */
	-webkit-transition-property: font-size;
	-moz-transition-property: font-size;
	transition-property: font-size;
	-webkit-transition-duration: 0.5s, 0.5s;
	-moz-transition-duration: 0.5s, 0.5s;
	transition-duration: 0.5s, 0.5s; 
	-webkit-transition-timing function: linear, ease-in;
	-moz-transition-timing function: linear, ease-in; 
	transition-timing function: linear, ease-in;  
}

h1,
.QLINKSHARE_HEADER_TEXT {
	font-family:'Crimson Text', Georgia, Times, serif;
	font-weight:400;
	color:#213E52;
	font-style: normal;
	font-size: 175%;
	margin: 0;
	padding: 0;
}

h1 strong {
	font-family:'Crimson Text', Georgia, Times, serif;
	font-weight:600;
	font-style: italic;
	color: #0C2339;
}

h2 {
	font-family:'Crimson Text', Georgia, Times, serif;
	font-weight:600;
	font-size:18px;
	color:#B87722;
	padding: 0;
	margin: 0;
	line-height: 2;
	text-shadow: 1px 1px 2px white;
}

h3 {
	font-family:'PT Sans', Arial, sans-serif;
	font-weight:700;
	font-size:100%;
	text-transform: uppercase;
	color:#1D457B;
	margin: 0;
	padding: 0;
	text-shadow: 1px 1px 2px white;
}

h4 {
	font-family:'Crimson Text', Georgia, Times, serif;
	font-weight:600;
	font-style: italic;
	font-size:20px;
	margin: 0;
	padding: 0;
	color: #1D457B;
	text-shadow: 1px 1px 1px white;
}

.editable {
	line-height:1.5;
	font-size:90%;
	color:#333333;
	padding: 15px 0;
}

.editable select {
	width: auto;
}

.editable table {
	max-width: 670px !important;
}

.editable label {
	display: inline-block;
	padding:0 5px;
}

hr {
	border:0;
	height:1px;
	color:#cccccc;
	background-color:#cccccc;
}

a {
	text-decoration:underline;
	color:#26588C;
}

a:hover {
	color:#9C4030;
}

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:5px 10px;
	width:65%;
}

.ContentTemp_SideCol {					/* Sidebar */
	padding:5px 20px;
	background: url(/data/images/sidecol_bg.png) top no-repeat;
	width:200px;
	color: #0C2339;
}

.ContentTemp_SideCol h3 {
	font-family:'Crimson Text', Georgia, Times, serif;
	font-weight:600;
	font-size:17px;
	color: #98A4B3;
	margin: 0;
	padding: 0;
	line-height: 2;
	text-transform: none;
}

.ContentTemp_SideCol ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ContentTemp_SideCol li {
	padding: 4px 0;
	margin: 0;
	font-size: 14px;
}
.ContentTemp_SideCol li a {
	text-decoration: none;
}

.ContentTemp_SideCol a {
	color: #905D19;
	font-weight: bold;
}

.ContentTemp_SideCol a:hover {
	color: #DB8224;
}

.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 #C4D2DF;
}

.ContentTemp_Zebra th {							/* Column headings */
	font-weight:bold;
	background:#C4D2DF;
	border-bottom:1px solid #C4D2DF;
	text-align:left;
	padding:5px;
}

.ContentTemp_Zebra tbody td {
	border:1px solid #C4D2DF;
	padding:5px;
}

.evenZeb {										/* Needs jquery fallback */
	background:#F2F7FB;
}

.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;
}








