/* --------------------------------------------------------------

   typography.css
   * Sets up some sensible default typography.

-------------------------------------------------------------- */

/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */

.typography {
	color:#ccc;
	font-size: 9pt;
	font-family: Verdana, Arial, sans-serif;
	line-height: 16pt;
}
/* Headings
-------------------------------------------------------------- */

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

.typography h1 { font-size: 1.9em; line-height: 1; margin-bottom: 0.5em; color:#ccc;}
.typography h2 { font-size: 1.3em; margin-bottom: 1em; color:#ccc; font-weight:bold; }
.typography h3 { font-size: 1.3em; line-height: 1.2; margin-bottom: 0.1em; color:#ccc; }
.typography h4 {
	font-size: 1.1em;
	line-height: 1.2;
	height:1.2em;
	color:#00FFFF;
}
.typography h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; color:red; }
.typography h6 { font-size: 1em; font-weight: bold; color:red; }

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


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

.typography p           {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0.8em;
	margin-left: 0;
}
.typography p img       { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
.typography p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

.typography a:focus,
.typography a:hover     { color: #38a5aa; text-decoration:underline; }
.typography a           { color: #38a5aa; text-decoration: none; font-weight:bold; }

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

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

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


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

.typography li ul,
.typography li ol       { margin:0; }
.typography ul,
.typography ol          { margin: 0 1.5em 1.5em 2.5em; }
.typography li          { margin-bottom: 0.8em; }

.typography ul          { list-style-image:url("img/list-image.png"); }
.typography ol          { list-style-type: circle; }

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


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

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


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

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

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

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