/* core.css - sets up crucial style elements */ 

/* main elements of the site */

/* remove margin and padding from all elements */
* { padding:0px; margin:0px; }
/* keep the scrollbar at all times */
html { min-height: 100%; margin-bottom: 1px; }
/* reset 1em to 10px */
body { font-size:62.5%; }
/* add a space after some elements */
p,ul,ol,blockquote,hr { margin-bottom:1em; }
/* remove border from images that link */
img { border:0px none; }
/* give nice proportion for list item bullets */
/*li { margin-left:5%; }*/
/* remove extra space from tables */
table { border-collapse:collapse; }
/* remove extra space from form elements */
fieldset { border:0px none; }

/* useful styles */

/* clears space after float elements */
.clearer { clear:both; overflow:hidden; }
/* inline images and copy */
.floatLeft { float:left; }
.floatRight { float:right; }
.centered { text-align:center; }
/* fake horizontal rule */
.hr { height:1px; overflow:hidden; clear:both; margin:1.5em 10px 1.5em 10px; }
/* mouse cursor */
.over { cursor:pointer; }
