/* -------------------------------------------------------------- 
   
   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: 12px;
  color: #333333; 
  background: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}


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

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

h1 { font-size: 14px; margin-bottom: 0.5em; }
h2 { font-size: 13px; margin-bottom: 0.5em; }
h3 { font-size: 12px; margin-bottom: 0.5em; }
h4 { font-size: 100%; margin-bottom: 0.1em; clear:both; }
h5 { font-size: 10px;  margin-bottom: 0.5em; }
h6 { font-size: 10px; font-weight:normal; }



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


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

p           { margin: 0px 0px 10px 0px; }
p img.left  { float: left; margin: 4px 15px 15px 0; padding: 0; }
p img.right { float: right; margin: 4px 0 15px 15px; }

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

blockquote  { margin: 15px; 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 15px; font-style: italic; }
del         { color:#666; }

pre,code    { margin: 15px 0; white-space: pre; }
pre,code,tt { font: 10px 'andale mono', 'lucida console', monospace; line-height: 15px; } 


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

li ul, 
li ol       { margin:5px 0px 0px 15px; }
ul, ol      { margin: 0 15px 15px 15px }

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

dl          { margin: 0 0 15px 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 15px;}


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

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


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

.hide       { display: none; }

.highlight  { background:#ff0; }

.last       { margin-bottom:0px; }
