/*** 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:0px; 
}
.typography ol li{
    margin-left:25px; 
    list-style:decimal;
    font-size:1.2em;
}
.typography ul{
    margin-left:20px;
}
.typography ul li {
	padding: 0 0 0 5px;                                                 
    list-style:disc;
    list-style-position:inside;
    font-size:1.2em;
}

/*** Links ***/

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

.typography a:hover {
	text-decoration: underline;
}
/*** Headers ***/
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6{
    font-family:Georgia,"Times New Roman",Times,serif;
    font-style:italic;
    margin:0 0 0px 0;
    font-weight:normal;
}

.typography h1 {
	color:#7b7f39;
	font-size:26px;
}
.typography h2 {
	font-size:22px;
	color:#7b7f39;
}
.typography h3 {
	font-size: 17px;
	color:#7b7f39;
}
.typography h4 {
	font-size:26px;
	color:#C4931A;
}
.typography h5 {
	font-size:22px;
	color:#C4931A;
}
.typography h6 {
	font-size: 17px;
	color:#C4931A;
}

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