/*
* File Name     : core.css
* Dependencies  : none
* Description   : resets css and sets up crucial style elements
* Version       : 1.0.1
* Date Modified : 10/9/2007
* Usage         : Copyright 2007 Craig Phares. All rights reserved.
*/

/* main elements of the site */

/* remove margin and padding from all elements */
* { padding:0px; margin:0px; }
/* reset 1em to 10px and eliminate border */
body { font-size:62.5%; border:0px none; }
/* add a space after some elements */
h1,h2,h3,h4,h5,p,ul,ol,blockquote,hr { margin-bottom:1em; }
/* remove border from images that link */
img { border:0px none; }
/* remove extra space from tables */
table { border-collapse:collapse; }
/* clean up superscripts - prevents extra line space */
sup { font-size:0.8em; vertical-align:top; }

/* useful styles */

/* mouse cursor */
.pointer { cursor:pointer; }

