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

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

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  /*font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;*/
  font-family: Tahoma, Verdana, "Lucida Grande", "Helvetica Neue", Arial, Verdana, sans-serif;
}


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

h1,h2,h3,h4,h5,h6 {
	color: #111;
	font-weight: normal;
	line-height: 2;
}

h1 { font-size: 22pt; margin-bottom: .5em; line-height: 2; }
h2 { font-size: 20pt; margin-bottom: .75em; line-height: 2; }
h3 { font-size: 18pt; margin-bottom: .5em; line-height: 1.5; }
h4 { font-size: 16pt; margin-bottom: .5em; line-height: 1; }
h5 { font-size: 14pt; margin-bottom: 1em; line-height: 1; }
h6 { font-size: 12pt; margin-bottom: 1em; line-height: 1; margin-left: .3em }


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


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

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

img {
	vertical-align: middle;
}

a:focus, 
a:hover     { color: #03f; text-decoration: underline; }
a           { color: #03c; text-decoration: underline; }

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

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

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


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

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

ul li, ol li	{ margin: 0 0 .25em 0; _vertical-align: baseline; }

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

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


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

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


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

.hide       { display: none; }

.dark      { color: #333; }
.gray      { color: #666; }

.quiet      { color: #999; }
.loud       { color: #309; }

.highlight  { background: #ffc; }

.added      { background: #99CC99 !important; color: #000; }
.removed    { background: #FBC2C4 !important; color: #8a1f11; }

.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; }


.center {
	text-align: center;
}

.right {
	text-align: right;
}


hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 80%; 
  height: .1em;
  margin: 0 auto;
  margin-bottom: 1.5em;
  border: none;
}

hr.space {
  background: #fff;
  color: #fff;
}