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

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


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

/*** Lists ***/
.typography ol, .typography ul{
    margin-left:30px;
    font-size: 14px;
}
.typography ol {
    list-style-type: decimal;
}
.typography ul {
    list-style-type: disc;
}
.typography li {
	padding: 0 0 0 5px;    
    margin-bottom: 8px;                                             
}

/*** Links ***/

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

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

.typography h1 {
    color:#76C3E7;
    font-size:32px;
    font-weight:normal;
    margin-bottom:10px;
}
.typography h2 {
	color:#D87D2A;
    font-size:32px;
    font-weight:normal;
    margin-bottom:10px;
}
.typography h3 {
    color:#76C3E7;
    font-size:28px;
    font-weight:normal;
    margin-bottom:10px;
}
.typography h4 {
    color:#D87D2A;    
    font-size:28px;
    font-weight:normal;
    margin-bottom:10px;
}
.typography h5 {
    color:#76C3E7;
    font-size:22px;
    font-weight:normal;
    margin-bottom:10px;
}
.typography h6 {
	color:#D87D2A;    
    font-size:22px;
    font-weight:normal;
    margin-bottom:10px;
}

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


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