/* core.css - sets up crucial style elements */ 

/* remove margin and padding from all elements */
*   { background-color: white; background-image: none; background-repeat: repeat; margin: 0; padding: 0 }
/* keep the scrollbar at all times */
html  { background-color: transparent; margin-bottom: 1px; min-height: 100% }
/* reset 1em to 10px */
body  { font-size: 62.5%; background-color: transparent }
/* 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; }
/* clears space after float elements */
.clearer { clear:both; overflow:hidden; height:0px; font-size:0px; line-height:0px; }
/* inline images and copy */
.floatleft { float:left; }
.floatRight { float:right; }
/* fake horizontal rule */
.hr { height:1px; background-color:#dadada; overflow:hidden; clear:both; margin-bottom:1em; }
