/*** This typography file is included in the WYSIWYG editor ***/
.typography {
    padding:0;
    margin:0;
}
.typography * {
	color: #5c4e29;
}

.typography p { 
	font-size:13px;
    line-height:20px;
    margin-bottom:20px;
}

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

/*** Lists ***/
.typography ul {
    margin:14px 0 21px 28px
}
.typography ul li {
	list-style-type:disc;
    margin-top:5px;                                              
}

/*** Links ***/

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

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

.typography h1 {

}
.typography h2 {
	font-size:16px; 
    font-style:italic; 
    color:#fff; 
    margin-bottom:12px; 
    line-height:20px;
}
.typography h3 {
	color:#E8E7D6;
    font-size:15px;
    font-style:italic;
    line-height:20px;
    margin-bottom:20px;
}
.typography h4 {

}
.typography h5 {

}
.typography h6 {

}

.typography .burnt-orange {
    color: #a57f07;
}

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