/* Start of CMSMS style sheet 'typo' */
/* -------------------------------------------------------------- 
    
   Typography.css
   * Sets some default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   * Typogrify         [code.google.com/p/typogrify]
   
   The default font size is 12px. The baseline is set to 
   18px. When you're setting heights of elements, always 
   remember to use a multiple of the baseline (18,36,54..).
   
   The height of images shoud also be a multiple of 18.
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
  
-------------------------------------------------------------- */   

body,ul,ol,dl,h1,h2,h3,h4,h5,h6,td,th,
caption,pre,p,blockquote,input,textarea {
  font-family: "Lucida Grande", Helvetica, Arial, Verdana, sans-serif;
  font-size: .9em;
  line-height: 1.2em; /* Baseline here at 150%. This is set multiple places. */
  color: #EFEFEF;
}

.arialblack{font-family: "Arial black", gadget, Helvetica, Arial, Verdana, sans-serif;}
/* Headings
-------------------------------------------------------------- */

h2,h3,h4,h5,h6 { 
  font-family: Helvetica, Arial, "Lucida Grande", Verdana, sans-serif;
  color:#fff; 
}

h2 strong,h3 strong,h4 strong,h5 strong,h6 strong { 
  color:#f00; 
}

/* Total height for each heading has to be a multiple of the baseline (18). */
h1 { color:#02acf8;font-weight:bold;font-size: 1.7em;letter-spacing:-1px; line-height: 1.5em; }
h2 { font-size: 1.4em; line-height: 1.7em; padding:0 1em 0 .2em; }
h3 { color:#ff9300;font-size: 1.3em; padding:0;font-weight:bold;}
h4 { color:#00bd00;font-size: .8em;margin:.3em 0 0; }
h5 { font-size: .9em; font-weight:bold; }
h6 { font-size: .9em;}


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

p           { margin: 0 0 .5em 0; text-align:left;}
p.last      { margin-bottom:0; }
p img       { float: left; margin: 18px 18px 18px 0; padding:0;}
p img.top   { margin-top:0; } /* Use this if the image is at the top of the <p>. */

ul, ol      { margin: .5em 0 1em .5em; list-style:none;}
li          { line-height:1.6em; }
ol          { list-style-type: decimal; }
dl          { margin: .5em 0; }
dl dt       { font-weight: bold; }

a           { color: #125AA7; text-decoration: none; outline: none; }
a:hover     { color: #fff; }

blockquote  { margin: 18px 0 18px 23px; font-size: 0.9em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em          { font-style: italic; }
pre         { margin-bottom: 18px; line-height:18px; background: #eee; padding:8px; border:1px solid #ddd; }
code        { font:0.9em Monaco, monospace; }


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

table   { margin-bottom: 13px; border-top:1px solid #ddd; border-left:1px solid #ddd; }
th,td   { height:17px; padding:0 8px; border-bottom:1px solid #ddd; border-right:1px solid #ddd; }
th      { font-weight:bold; }


/* Some default classes
-------------------------------------------------------------- */

.small, .small p  { font-size: 10px; }
.large, .large p  { font-size: 14px; }
.quiet, .quiet p  { color: #666; }
.hide             { display: none; }

/* TODO: Implement image captions. */
.caption { }


/* Extra fancy typography
-------------------------------------------------------------- */

/* For great looking ampersands, use this code instead of &amp;: 
   <span class="amp">&amp;</span>  */
  
.amp { 
  color: #666; 
  font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", serif; 
  font-size: 1.1em;
  line-height:10%; /* Fix to maintain correct baseline */
  font-style: italic;
}

/* For great looking quote marks in titles, replace "asdf" width:
   <span class="dquo">&#8220;</span>asdf&#8221;
   (That is, when the title starts with a quote mark). */  

.dquo { margin-left: -.7em; } 
/* (You may have to change this value depending on your font size). */


/* End of 'typo' */

