/*
  (c) Mediaweb Studio
*/


/* GENERIC STYLES
-------------------------------------------- */
.typography{
	font-family: Tahoma;
	color:#3F3F3F;
	font-size:16px; 
	line-height:24px;
}

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

/* QUOTES
-------------------------------------------- */
.typography blockquote {
	margin: 10px;
	line-height:16px;
}	

/* LINKS 
-------------------------------------------- */
.typography a, 
.typography a:hover, 
.typography a:visited {color:#43916b;}
	
/* LIST STYLES 
-------------------------------------------- */
.typography ul, 
.typography ol {
	margin: 20px 0;
    padding: 0 0 0 15px;
}
.typography li {
	margin: 0;
}
.typography ul{
	list-style-type:none;
}
.typography ul li{
}

/* HEADER STYLES
-------------------------------------------- */
.typography h1 {
	color: #3F3F3F;
    font-size: 20px;
	line-height:23px;
	font-family: Tahoma;
    font-weight: normal;
    margin-bottom: 25px;
	margin-top:0;
}
.typography h2 {
	font-weight:normal; 
	font-size: 21px;
	color: #2D2D2D;
	line-height:24px;
	font-family: Tahoma;
	margin:20px 0 25px 0; 
}
.typography h3 {
	font-weight:bold; 
	font-size: 16px;
	color: #2D2D2D;
	line-height:20px;
	font-family: Tahoma;
	margin:15px 0 20px 0;
}
.typography h4, 
.typography h5, 
.typography h6 {
	color: #2D2D2D;
	font-weight:bold; 
	font-size:15px; 
	font-family: Tahoma;
	line-height:17px;
	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 {
	margin: 20px 0;
	border-spacing:0;
	border-collapse:collapse;
}
.typography th,
.typography thead td {
	background-color:#EDEDED;
	text-align:center;
	border:1px solid #C8C8C8;
	padding:9px;
	font-weight:bold;
}
.typography td {
	border:1px solid #C8C8C8;
	background-color:#ffffff;
	padding:9px 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;
}