/*================================================================
BASE stylesheet (probably best to leave as is)

- Resets browser defaults
- Provides some basic extra classes
    - .clear
    - .clearfix
    - .hide
    - .block
- Corrects centering problem in IE 5
  
================================================================*/


/* RESET BROWSER DEFAULTS
----------------------------------------------------------------*/
html,body,form,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input { 
  margin: 0; 
  padding: 0;
  }

h1,h2,h3,h4,h5,h6,legend,pre,code { 
  font-size: 1em; 
  }

a { outline: 0; }

a img,:link img,:visited img { 
  border: none;
  }

img {
  border: 0;
  }

address { 
  font-style: normal;
  }


/* EXTRA CLASSES EVERY CSS HACKER NEEDS
----------------------------------------------------------------*/
.clear { 
  clear: both; 
  }

.clearfix:after {
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}


.hide {
  display: none; 
  }

.block {
  display: block;
  }

