/*** This typography file is included in the WYSIWYG editor ***/
.typography * {
	color: #565656;
}

.typography p { 
	margin-bottom: 10px;
	font-size: 1.2em;
	font-size: 14px;
	line-height: 18px;
	color: #757575;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}


.typography span.orange, .typography p.orange {
    color: #F0701F;
}

.typography blockquote {
	margin: 10px;
	font-size: 16px;
	font-style: italic;
}

/*** Lists ***/
.typography ol{
    margin-left:30px;
}
.typography li {
	padding: 0 0 0 5px;                                                 
}

/*** Links ***/

.typography a {
	color: #FC9400;
	cursor: pointer;
	text-decoration: none;
}

.typography a:hover {
	text-decoration: underline;
}
/*** Headers ***/

.typography h1 {
	font-style: normal;
	line-height: normal;
	color:#182d72;
	font-size: 18px;
}
.typography h2 {
	font-size: 18px;
	font-style: normal;
	font-weight: bolder;
	color:#182d72;
}
.typography h3 {
	font-size: 16px;
	color:#182d72;
}
.typography h4 {
	font-size: 14px;
	font-weight: bold;
	color:#f67220;
}
.typography h5 {
	font-size: 12px;
	font-weight: normal;
	color:#f67220;
}
.typography h6 {
	font-size: 10px;
	color:#f67220;
}

/*** Addresses ***/	
.typography pre {
	font-family:"Courier New",Courier;
	display:block;
	font-size:14px;
	margin:2em 5em;
	padding:0.5em;
	border:1px #ccc solid;
	background:#eee;
}

.typography q {
	display:block;
	font-size:12px;
	margin:1em 1em;
	padding:0.5em;
	border:1px #ccc solid;;
}

/*** Tables ***/
.typography table {
	border: 2px solid black;
	border-collapse: collapse;
}

.typography table td, table th {
	padding: 5px;
}

.typography table th {
	background-color:#0061aa;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
}

.typography td {
	border: 1px solid #bebebe;
	border-collapse: collapse;
}

/* IMAGES 
-------------------------------------------- */
.typography img {
    border: none;
}
    .typography img.right,
    .typography div.captionImage.right {
        float: right;
        padding: 5px 0px 5px 8px;
    }
    
    .typography .captionImage {
        border: 1px solid #aaa;
        padding: 5px;
    }
    
    .typography img.left,
    .typography div.captionImage.left {
        float: left;
        padding: 5px 8px 5px 0px;
    }
    .typography img.leftAlone,
    .typography div.captionImage.leftAlone {
        float: left;
        margin-right: 100%;
    }
    .typography img.center,
    .typography div.captionImage.center {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .typography .caption {
        font-weight: bold;
        color: #666;
        clear:both;
    }
