/**
 * This stylesheet is used by the iCM editor to determine which styles to
 * provide in the iCM HTML editor. Refer to the accompanying iCM
 * documentation for more details.
 *
 * The file is broken into 3 sections:
 *    1/. "Base" defines the core structural styles which dictate the main HTML structural elements.
 *    2/. "Editor" defines styles listed in iCM's HTML Editor (the "Styles" drop down").
 *    3/. "Tables" defines table auto-format rules for iCM's HTML Editor
 */

/**
 * Base styles
 */

body
{
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight:normal;
    background:#FFF url("../images/bg.jpg") no-repeat center top;
    color:#464646;
    font-size:12px;
    line-height:1.4em;
}

@font-face {font-family:'SlabSerif';src:url('../font/slabserif-webfont.eot');src:url('../font/slabserif-webfont.eot?#iefix') format('embedded-opentype'),url('../font/slabserif-webfont.woff') format('woff'),url('../font/slabserif-webfont.ttf') format('truetype'),url('../font/slabserif-webfont.svg#SlabSerifHPLHS') format('svg');font-weight:normal;font-style:normal;}

h1, h2, h3, h4, h5, h6{padding:0;margin:0;font-family:"SlabSerif", Helvetica, Arial, sans-serif;text-transform:uppercase;color:#0C0E1D;letter-spacing:1px;font-weight:normal;}
h1{font-size:36px;line-height:1.3em;}
h2{font-size:30px;line-height:1.1em;margin:0 0 5px;}
h3{font-size:26px;line-height:1.1em;margin:0 0 10px;}
h4{font-size:20px;line-height:1.1em;}
h5{font-size:16px;line-height:1.2em;}
h6{font-size:12px;line-height:1.1em;}
p{font-size:12px;line-height:18px;margin-bottom:10px;color:#464646;}

.lead{
	margin-bottom: 15px;	
}

a
{
    color:#073380;
    text-decoration:underline;
    -webkit-transition:all .1s linear;
    -moz-transition:all .1s linear;
    -ms-transition:all .1s linear;
    -o-transition:all .1s linear;
    transition:all .1s linear;
}

a:hover,a:focus,a:active
{
    color:#073380;
    text-decoration:none;
}

.more{
	margin-bottom: 40px;
}

.more h1
,.extra h1, .more .classH1, .extra .classH1{
	font-size: 26px;
}

.more h2
,.extra h2{
	font-size: 22px;
}

.more h3
,.extra h3{
	font-size: 20px;
}

.more h4
,.extra h4{
	font-size: 18px;
}

/**
 * iCM Editor Styles
 */

/*Inline positioning*/
.limage, .rimage, span.positionleft, span.positionright, img.positionleft, img.positionright 
{
    float: left;
	display: inline;
}

.rimage, span.positionright, img.positionright {
	float: right;
}

/* $name='Red Text' */
.redtext a, .redtext {
	color: #933;
}

/***** Buttons ***/

.btn, .button {
	display:inline-block;
	padding:6px 12px;
	margin-bottom:0;
	font-size:14px;
	font-weight:normal;
	line-height:1.428571429;
	text-align:center;
	/*white-space:nowrap;*/
	white-space: inherit;
	vertical-align:middle;
	cursor:pointer;
	border:1px solid transparent;
	border-radius:4px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none
}

.btn strong, .button strong
{
  font-weight: normal;
}

.main .btn, .main .button
{
	margin-bottom: 15px;
}

.btn:focus, .button:focus {
	outline:thin dotted #333;
	outline:5px auto -webkit-focus-ring-color;
	outline-offset:-2px
}

.btn:hover,.btn:focus, .button:hover, .button:focus {
	color:#333;
	text-decoration:none
}

.btn:active, .button:active {
	background-image:none;
	outline:0;
	-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);
	box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)
}

.btn, .button {
	border-radius: 0;
	color: #333;
	background-color: #ebebeb;
	border-color: #adadad;
	font-size: 18px;
	font-family: 'Source Sans Pro', sans-serif;
}

.btn:hover
,.btn:focus
,.btn:active
,.button:hover
,.button:focus
,.button:active{
	background-color: #FFF;
}

.button {
	border:1px solid #FFF;
	color: #FFF;
	background: #077F85;
}

.button:hover
,.button:focus
,.button:active {
	background: #38404F;
	color: #FFF;
}

.button a {
	color: #FFF;
}

a.button{
	text-align: left;
}



/*** TABLES Styles***/

table 
{
    width: 100%;
    margin-bottom: 20px;
    max-width: 100%;
    background-color: transparent;
}

table thead > tr > th, table tbody > tr > th, table tfoot > tr > th, table thead > tr > td, table tbody > tr > td, table tfoot > tr > td {
	padding:  8px;
	line-height: 1.42857;
	vertical-align: top;
	border-top: 1px solid #DDD;
}

th {
	font-size: 18px;
	text-align: left;
	font-weight: normal;
}

table caption {
	font-size: 20px;
	font-weight: bold;
}

abbr[title] 
{
	cursor: help;
	border-bottom: 1px dotted #999;
}