
/* GENERIC STYLES 
-------------------------------------------- */
 
.typography * {
    font: 12px/18px Arial, Verdana, Helvetica, sans-serif;
    color: #455052;
}

.typography strong {
    font-weight:bold;
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p { 
    margin:0 0 18px;
}
.typography .small { 
    color: #999;
    font-size: 9px;
    font-weight:normal;
}

/* 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:#003b83;*/
    color:#455052;
	border-bottom:1px solid #ff5000;
}
.typography a:hover{
	text-decoration:none;
	border-bottom:none;
	color:#003b83;
}

/* LIST STYLES 
-------------------------------------------- */
.typography ul, 
.typography ol {
	margin: 0 0 18px 10px;
	color: #666;
	padding:0;
/*  list-style:none;*/
}
	.typography li {
		margin: 5px 10px;
    	padding:0 0 0 5px;
    	line-height:18px;
	}
		.typography li li {
			font-size: 10px;
		}
		
/* HEADER STYLES 
-------------------------------------------- */

.typography h1 { 
    font-size:24px;
    color:#004e85;
    padding:0 0 12px;
    margin:0 0 16px 0;
    border-bottom:1px solid #ccc;
	font-weight: bold;
}
.typography h2 { 
    font-size:24px;
    color:#455052;
    margin:0 0 20px;
	font-weight: bold;
}	
.typography h3 {
    font-size: 16px;
	color: #444;
/*  margin: 0 0 18px 0;*/
	font-weight: bold;
	clear: both;
}
.typography h4 {
	font-size: 12px;
	font-weight: bold;
	color: #222;
  width: 95%;
/*  font-weight: 300;*/
/*  line-height: 18px;*/
  border-bottom: 1px solid #ccc;
	margin: 0 0 10px 0;
}
.typography h5 {
	font-size: 11px;
	color: #222;
	font-weight: 700;
	margin: 0 0 12px 0;
}
.typography h6 {
	font-size: 11px;
	color: #555;
	line-height: 1.4em;
	margin: 0 0 12px 0;
}

.typography h2{
	margin:0 0 12px;
	font-size:24px;
	line-height:30px;
}
/* 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;
	color: #333;
	border-collapse:collapse;
/*  max-width:710px;*/
}
	.typography tr {}
	
		.typography td {
		    vertical-align:top;
/*          border:none;*/
			padding:5px;
			border-bottom:1px solid #eee;
		}

/* 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.center {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.typography img.right {
		float: right;
		margin-left: 20px;
	}
	.typography img.left {
		float: left;
		margin-right: 20px;
	}
	.typography img.leftAlone {
		float: left;
		margin-right: auto;
		display: block;
	}
	.typography img.rightAlone {
		float: right;
		margin-right: auto;
		display: block;
	}
