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

.typography p { 
	margin-bottom: 10px;
	font-size: 1.2em;
}


.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 ol li {
	padding: 0 0 0 5px; 
    list-style:decimal;                                                
}

.typography ul{
    margin-left:30px;
}
.typography ul li {
    padding: 0 0 0 5px; 
    list-style:disc;                                                
}

/*** Links ***/

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

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

.typography h1 {
	color:#143086;
    font:italic 33px Georgia,"Times New Roman",Times,serif;
}
.typography h2 {
	 color:#E51B24;
     font:italic 26px Georgia,"Times New Roman",Times,serif;
}
.typography h3 {
	color:#143086;
    font:italic 21px Georgia,"Times New Roman",Times,serif;
}
.typography h4 {
    color:#E51B24;
    font:italic 33px Georgia,"Times New Roman",Times,serif;
}
.typography h5 {
	 color:#143086;
     font:italic 26px Georgia,"Times New Roman",Times,serif;
}
.typography h6 {
	color:#E51B24;
    font:italic 21px Georgia,"Times New Roman",Times,serif; 
}

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