/** 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;
}
/* ------------------- DEFAULT CONTENT STYLES --------------------- */
/* ---------------------------------------------------------------- */


h1 {
	font-family: 'Droid Sans', sans-serif;
	font-weight: bold;
	font-size: 24px;
	color: #0D294A;
  	margin-top: 0;
}
h2 {
	font-family: 'Droid Sans', sans-serif;
	font-weight: bold;
	font-size: 18px;
	color: #0D294A;
 	margin-top: 0;
}
h3 {
	font-family: 'Droid Sans', sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #0D294A;
    margin-top: 0;
}
h4 {
	font-family: 'Droid Sans', sans-serif;
	font-weight: bold;
	font-size: 15px;
	color: #0D294A;
    margin-top: 0;
}
#tou h1,
#tou h2,
#tou h3,
#tou h4{
	color:#000;
}
p {
	font-family: 'Droid Sans', sans-serif;
	font-weight: normal;
	font-size: 13px;
	color: #000;
  	line-height:1.4;
}
hr {
	border: 0;
	height: 1px;
	color: #cccccc;
	background-color: #cccccc;
}
a {
	text-decoration: underline;
	color: #0D294A;
}
a:hover {
	color: #6291F5;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
img {
	border: 0;
}
table td {
	vertical-align: top;
}
#FB_AP h2{
	display:none!Important;
}

/* ---------------------- CONTENT TEMPLATES ----------------------- */
/* ---------------------------------------------------------------- */


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

.ContentTemp_2Column {
	width: 100%;
	border-collapse: collapse;
}
.ContentTemp_MainCol {							/* Main column */
	padding-right: 10px;
	width: 65%;
}
.ContentTemp_MainCol h1 {
	margin-top: 0!important;
	padding-top: 0!important;
}
.ContentTemp_SideCol {							/* Sidebar */
	padding-left: 10px;
	border-left: 1px solid #cccccc;
	width: 30%;
}
.ContentTemp_SideCol h2, .ContentTemp_SideCol h3 {
	margin-top: 0!important;
	padding-top: 0!important;
}
.ContentTemp_MainCol img {						/* Constrain images */
	max-width: 400px!important;					/* prevents broken tables */
}
.ContentTemp_SideCol img {
	max-width: 150px!important;
}
.ContentTemp_SideCol ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ContentTemp_SideCol ol {
list-style-type: disc;
padding-left: 15px;
}
.ContentTemp_SideCol ul li {
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
	width: 100%;
	margin-bottom: 5px;
	padding: 5px;
	padding-left: 13px;
	background: url("/data/layout/images/add_arrow.png") top left no-repeat;
	background-position: 2px 8px;
}
.ContentTemp_SideCol ul li a {
	position: relative;
	display: block;
	text-decoration: none;
	font-family: 'Droid Sans', sans-serif;
	font-size: 13px;
	color: #000;
}
.ContentTemp_SideCol ul li:hover {
	background: #0D294A url("/data/layout/images/add_arrow_roll.png") top left no-repeat;
	background-position: 2px 8px;
	-webkit-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	color: #fff;
}
.ContentTemp_SideCol ul li:hover a {
	color: #fff;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
/* 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:5px 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!important;
	width: 100%!important;
	display: block!important;
}
.ContentTemp_SideCol {							/* Sidebar */
	padding: 0!important;
	width: 100%!important;
	display: block!important;
	border-left: none;
}
}