/*
  (c) Mediaweb Studio
*/

/* GENERIC STYLES
-------------------------------------------- */
.typography {
	font: 16px/140% Tahoma;
	color: #4A4A4A;
}

/* PARAGRAPHS
-------------------------------------------- */
.typography p {
	margin: 0 0 15px;
}
.typography p.red {
	color: red;
}

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 15px 0 15px 30px;
	font-style: italic;
}

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

/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin: 15px 0;
	padding: 0 0 0 20px;
}
.typography ul ul, .typography ol ol {
	margin: 8px 0;
}
.typography li {
	margin: 0 0 8px;
}

/* HEADER STYLES
-------------------------------------------- */
.typography h1 {
	font: bold 26px Tahoma;
	margin: 0 0 25px;
	font-weight:normal;
}
.typography h2 {
	font: bold 20px 'Trebuchet MS', Helvetica, sans-serif;
	margin: 20px 0 10px;
}
.typography h3, .typography h4 {
	font: bold 16px 'Trebuchet MS', Helvetica, sans-serif;
	margin: 15px 0 5px;
}

/* PRE STYLES 
-------------------------------------------- */	
.typography pre {
	background: none;
	border: none;
	display: block;
	font-family: Courier, monospace;
	font-size: 123%;
	margin: 0;
	padding: 0;
}

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	margin: 20px 0;
	border-spacing: 0;
	border-collapse: collapse;
}
.typography th,
.typography thead td {
	text-align: center;
	padding: 10px;
	font-weight: bold;
}
.typography td {
	padding: 10px 12px;
	vertical-align: top;
	font-size: 13px;
}
.typography caption {
	caption-side: top;
	font-size: 12px;
	font-style: italic;
	padding-bottom: 7px;
	text-align: center;
}

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

/* IMAGES 
-------------------------------------------- */
.typography img, .typography a img {
	border:0;
	margin: 0;
}
.typography img.right {
	float: right;
	margin-left:5px;
}
.typography img.left, .typography .img-left {
	float: left;
	margin-right:5px;
}
.typography img.leftAlone {
	float: left;
	margin-right: 100%;
}
.typography img.center {
	display: block;
	float: none;
	margin: 3px auto;
}