@charset "utf-8";

.typography {
   color: #fff;
   font: 16px/1.2 Georgia;
   font-style: italic;
   text-align: left;
}

/* Paragraphs */
.typography p {
   margin-bottom: 10px;
}

.typography blockquote {
   margin: 10px 20px;
}

.typography pre {
   font-family: "Courier New", Courier, monospace;
   margin: 10px 20px;
}

/* Headers */
.typography h1 {
   font-size: 24px;
   margin-bottom: 3px;
   font-weight: bold;
}

.typography h2 {
   font-size: 20px;
   margin-bottom: 3px;
   font-weight: bold;
}

.typography h3 {
   font-size: 16px;
   margin-bottom: 3px;
   font-weight: bold;
}

.typography h4 {
   font-size: 14px;
   margin-bottom: 3px;
   font-weight: bold;
}

.typography h5 {
   font-size: 14px;
   margin-bottom: 3px;
   font-weight: bold;
}

.typography h6 {
   font-size: 14px;
   margin-bottom: 3px;
   font-weight: bold;
}

/* Font styles */

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

ins {
	border-bottom: 1px solid #000;
}

del {
   text-decoration: line-through;
}

acronym, abbr {
	border-bottom: 1px dotted #000;
}

/* Links */
.typography a:link {
   color:#fff;
   border-bottom: 1px dotted #ddd;
}

.typography a:visited {
   color: #ddd;
   border-bottom: 1px dotted #ddd;
}

.typography a:hover {
   color: #000;
   border-bottom: 1px solid #000;
   background-color: #ddd;
}

/* Lists */
.typography ul {
   margin: 20px 37px;
   list-style-type: disc;
}

.typography ul ul {
   list-style-type: circle;
}

.typography ul li {
   padding-left: 3px;
}

.typography ol {
   margin: 20px 40px;
   list-style-type: decimal;
}

.typography ol ol {
   list-style-type: upper-alpha;
}

.typography dl {
   margin: 20px;
}

.typography dl dt {
   margin-top:10px;
}

.typography dl dd {
   margin-left:20px;
}

/* Tables */
.typography table {
   margin-bottom: 20px;
}

.typography caption {
   margin: 10px 0px 5px 0px;
   font-size: 14px;
   color: #333;
   text-align: center;
}

.typography td {
   padding: 10px;
}


/* Miscellaneous */
.typography hr {
   background-color: #666;
   color: #666;
   margin: 10px;
}

