/*
  (c) Mediaweb Studio
*/


/* GENERIC STYLES
-------------------------------------------- */
.typography * {font-family: Verdana;}

/* PARAGRAPHS
-------------------------------------------- */
.typography p { 
	color:#333333;
	font-size:12px; 
	font-weight: normal;
	margin:15px 0px;
	line-height:20px;
}
p.red{
	color:red;
}

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

/* LINKS 
-------------------------------------------- */
.typography a, 
.typography a:hover, 
.typography a:visited {color:#35689C;}
	
/* LIST STYLES 
-------------------------------------------- */
.typography ul, 
.typography ol {
	margin:10px 0 10px 14px;
	padding:0;
}
.typography li {
	padding:0 0 0 14px;
	background:url(../img/list.png) no-repeat left 3px;
	list-style-type:none;
	line-height:25px;
}

/* HEADER STYLES
-------------------------------------------- */
.typography h1 {
	color:#F48F1F; 
	font-weight:normal; 
	font-size:24px; 
	margin-bottom:15px;
}
.typography h2 {
	color:#333333; 
	font-weight:normal; 
	font-size:18x; 
	margin:20px 0 10px 0; 
}
.typography h3 {
	color:#333333; 
	font-weight:normal; 
	font-size:14px; 
	margin:15px 0 5px 0;
}
.typography h4, 
.typography h5, 
.typography h6 {
	color:#333333; 
	font-weight:bold; 
	font-size:13px; 
	margin:15px 0 5px 0; 
}

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

/* TABLE STYLING 
-------------------------------------------- */
.typography table {
	width:100%;
	margin: 20px 0;
	border-spacing:0;
	border-collapse:collapse;
}
.typography th,
.typography thead td {
	background-color:#F1EFED;
	text-align:center;
	border:1px solid #D5D5D5;
	padding:15px 10px;
	font-weight:bold;
}
.typography td {
	border:1px solid #D5D5D5;
	padding:15px 10px;
	vertical-align: top;
}
.typography caption {
	font-size:12px;
	font-style:italic;
	text-align:center;
	caption-side:top;
	padding-bottom:7px;
}

/* 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: 0px solid #CCCCCC;
	margin: 0;
}
.typography img.right {
	float: right;
	margin-left:5px;
}
.typography img.left {
	float: left;
	margin-right:5px;
}
.typography img.leftAlone {
	float: left;
	margin-right:100%;
}
.typography img.center {
	float: none;
	margin: 3px auto;
	display: block;
}