/* ======== */
/* = Base = */
/* ======== */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 81.25%; /* 13px,  16px is default on IE */
	line-height: 1.5em; /* 19.5px */
}
html>body{
	font-size: 13px
}

/* ========= */
/* = Links = */
/* ========= */

.typography a {
	color: #006691;
	text-decoration: underline;
}

.typography a:hover, .typography a:active, .typography a:focus {
	text-decoration: none;
}

.typography a img {
	border: 0;
}

/* ============== */
/* = Paragraphs = */
/* ============== */

.typography p, .typography ol, .typography ul {
	margin-bottom: 1.5em;
}
.typography p.small {
	font-size: 0.9em;
}

/* ========= */
/* = Lists = */
/* ========= */

.typography ol, .typography ul {
	padding-left: 2em;
}
.typography ul {
	list-style: none;
	padding: 0;
}
.typography ul li {
	padding-left: 2em;
	background: url(../images/bullet-off.gif) no-repeat 7px 7px;
}
.typography ol {
	list-style: decimal;
}

/* ============ */
/* = Headings = */
/* ============ */

.typography h1, .typography h2, .typography h3, .typography h4 {
	font-weight: normal;
	line-height: 1.5em;
}

.typography h1 {
	font-size: 2.76em; /* 36px */
	line-height: 1.5em;
	margin: 0.5em 0 0.5em 0;
	color: #D1232A;
}

.typography h2 {
	font-size: 1.38em; /* 18px */
	margin: 0 0 0.4em 0;
	color: #AA1D28;
}

.typography h3 {
	font-size: 1.38em; /* 18px */
	margin: 0 0 0.1em 0;
	color:#999;
}

.typography h4 {
	color:#990033;
	font-size: 1.25em;
	line-height: 1.2;
	margin-bottom: .3em;
	text-transform: uppercase;
	font-weight: bold;
}

.typography h5, .typography h6 {
	font-size: 1em;
	line-height: 1.5em;
}

/* 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;
		margin-left: 20px;
	}
	.typography img.left {
		float: left;
		margin-right: 20px;
	}
	.typography img.leftAlone {
		float: left;
		margin-right: 100%;
	}
	.typography img.center {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
