/* Generic Styles
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
 
.typography * {
    color: #706c5e;
	font-family: Verdana, Lucida, Arial, sans-serif;
    font-size: 11px;
}
.typography em {
    font-style: italic;
}

/* Paragraphs
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.typography p { 
 	color: #706c5e;
 	line-height: 18px;
 	font-size: 11px;
	margin: 0 0 18px 0;
}

/* Links
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.typography a { 
 	text-decoration: underline; 
	color: #6e8406;
    padding: 2px;
}
#Content .typography a:hover { 
    background: #706c5e none;
    color: #fff;
}


/* List Styles
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.typography ul, 
.typography ol {
    margin: 10px 0 10px 20px;
    }
.typography ul {
    list-style-type: circle;    
    } 
.typography ol {
    list-style-type: decimal;
}
	.typography li {
        line-height: 18px;
        list-style-position: outside;
		margin: 5px 0;
	}

/* Headlines
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    color: #6e8406;
    font-weight: bold;
}

.typography h1,
.typography h2 { 
	font-weight: bold;
	margin: 0 0 10px;    
}

.typography h1 {
	font-size: 24px;
}
.typography h2 { 
 	font-size: 18px; 
}	
.typography h3 {
	font-size: 16px;
	margin: 0 0 8px;    
}
.typography h4 {
	font-size: 14px;
    font-weight: normal;
	margin: 0 0 6px;
}
.typography h5 {
	font-size: 13px;
    font-weight: normal;
	margin: 0 0 4px;
}
.typography h6 {
	font-size: 12px;
    font-weight: normal;
	margin: 0 0 2px;
}

/* Tables
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.typography table {
	border-collapse:collapse;
    margin: 0 0 18px 0;
    }
	.typography tr {
        
    }
	.typography td {
		border:1px solid #999;
		padding:5px;
	}

/* Alignment Classes
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.typography .left {
	text-align: left;
}
.typography .center {
	text-align: center;
}
.typography .right {
	text-align: right;
}

/* Images
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.typography img {
	border: 1px solid #ccc;
    padding: 2px;
}
	.typography div.image.right,
	.typography div.captionImage.right {
		float: right;
		margin-left: 20px;
	}	
	.typography .captionImage {
		border: 1px solid #aaa;
		padding: 5px;
	}	
	.typography div.image.left,
	.typography div.captionImage.left {
		float: left;
        margin: 0 10px 0 0;
	}
	.typography div.image.leftAlone,
	.typography div.captionImage.leftAlone {
		float: left;
		margin-right: 100%;
	}
	.typography div.image.center,
	.typography div.captionImage.center {
		float: none;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	
	.typography .caption {
		font-weight: bold;
		text-align: center;
		color: #666;
	}
