/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
.content { 
  font-size: 100%;
  line-height: 1.5em;
  color: #000; 
  background: #fff;
  font-family: Arial, Verdana, Helvetica, "Helvetica Neue", sans-serif;
}


/* Headings
-------------------------------------------------------------- */

.content h1,.content h2,.content h3,.content h4,.content h5,.content h6 { font-weight: bold; color: #000; }

.content h1 { font-size: 1.5em; line-height: 1; margin-bottom: 0.5em; text-transform: uppercase; font-weight:bold; }
.content h2 { font-size: 1.2em; margin-top: 1em; margin-bottom: 1em; text-transform: uppercase; font-weight:bold;  }
.content h3 { font-size: 1.2em; line-height: 1; margin-bottom: 1em; }
.content h4 { font-size: 1.1em; line-height: 1.25; margin-bottom: 1.25em; }
.content h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
.content h6 { font-size: 1em; font-weight: bold; }

.content h1 img, .content h2 img, .content h3 img, 
.content h4 img, .content h5 img, .content h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

.content p           { margin: 0 0 1.5em; }
.content p img.left,
.content img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
.content p img.right,
.content img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

.content a:focus, 
.content a:hover     { color: #000; }
.content a           { color: #009; text-decoration: underline; }

.content blockquote  { margin: 1.5em; color: #666; font-style: italic; }
.content strong, .content b      { font-weight: bold; }
.content em, .content dfn      { font-style: italic; }
.content dfn         { font-weight: bold; }
.content sup, .content sub    { line-height: 0; }

.content abbr, 
.content acronym     { border-bottom: 1px dotted #666; }
.content address     { margin: 0 0 1.5em; font-style: italic; }
.content del         { color:#666; }

.content pre 				{ margin: 1.5em 0; white-space: pre; }
.content pre,.content code,.content tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

.content li ul, 
.content li ol       { margin:0 1.5em; }
.content ul, .content ol      { margin: 0 1.5em 1.5em 1.5em; }

.content ul          { list-style-type: disc; }
.content ol          { list-style-type: decimal; }

.content dl          { margin: 0 0 1.5em 0; }
.content dl dt       { font-weight: bold; }
.content dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

.content table       { margin-bottom: 1.4em; width:100%; }
.content th          { font-weight: bold; }
.content thead th 		{ background: #c3d9ff; }
.content th,.content td,.content caption { padding: 4px 10px 4px 5px; }
.content tr.even td  { background: #e5ecf9; }
.content tfoot       { font-style: italic; }
.content caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

