/* GENERIC STYLES 
-------------------------------------------- */
 
.typography * {
/*    font: 12px/18px Verdana, Geneva, sans-serif;*/
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p { 
    color:#00428D;
    font:12px/18px Verdana,Geneva,sans-serif;
    margin:0;
    padding:10px 30px 0;
/*    text-align:justify;*/
    width:auto;
}

.typography strong,
.typography p strong {
    font-weight:bold;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	font-size: 1.4em;
	color: #777;
	font-style: italic;
}	
.typography q {
	display:block;
	font-size: 0.8em;
	margin: 1em 1em;
	padding: 0.5em;
	border: 1px #ccc solid;
}

/* LINKS 
-------------------------------------------- */

.typography a { 
 	text-decoration: none; 
	color: #00428D;
}
	.typography a:hover { 
 		text-decoration: underline;
	}


/* LIST STYLES 
-------------------------------------------- */
.typography ul, 
.typography ol {
	margin:15px 0 18px 5px;
	color: #00428D;
}
	.typography li {
		margin: 5px 10px;
/*      font-size: 11px;*/
	}
		.typography li li {
			font-size: 10px;
		}
		
/* HEADER STYLES 
-------------------------------------------- */

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 { 
    margin: 0;
	font-weight: 300;
	font-family: Tahoma, Verdana, sans-serif;
    color:#00428D;
    padding:30px 0 0 30px;
}

.typography h1 {
	font-size: 24px;
}
.typography h2 { 
 	font-size: 20px; 
}	
.typography h3 {
	margin: 0;
	font-weight: 300;
	clear: both;
	font-size: 18px;
}
.typography h4 {
	font-size: 14px;
	color: #00428D;
	font-weight: bold;
	border-bottom: 1px solid #e4e7ec;
	padding-bottom:5px;
}
.typography h5 {
	font-size: 12px;
	color: #000;
	font-weight: bold;
	border-bottom: 1px solid #c4cad6;
}
.typography h6 {
    font-size: 12px;
    font-weight: normal;
    border-bottom: 1px solid #c4cad6;
}

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

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 0 0 18px 0;
	font-size: 11px;
	color: #666;
	border-collapse:collapse;
}
	.typography tr {}
	
		.typography td {
			border:1px solid #999;
			padding:5px;
		}

/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
	text-align: left;
}
.typography .center {
	text-align: center;
}
.typography .right {
	text-align: right;
}

/* IMAGES 
-------------------------------------------- */
.typography img {
	border: none;
}
	.typography img.right {
		float: right;
		border-bottom:5px solid #E4EBF2;
        border-left:5px solid #E4EBF2;
        margin: 0 -30px 0 25px;
	}
	.typography img.left {
		float: left;
		border-bottom:5px solid #E4EBF2;
        border-right:5px solid #E4EBF2;
        margin:5px 20px 0 -30px; 
	}
	
	.typography img.rightNoBorder {
		float: right;
        margin: 0 0 0 25px;
	}
	.typography img.leftNoBorder {
		float: left;
        margin:5px 20px 0 0; 
	}
	
	.typography img.leftAlone {
		float: left;
		margin-right: 100%;
	}
	.typography img.rightAlone {
		float: right;
		margin-left: 100%;
	}
	.typography img.center {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
