/* RESETTING STYLES TO NORMAL BEHAVIOR*/
/* SET BASE FONT ATTRUBUTES */
html, body {
	font: Georgia, ?Times New Roman?, Times, serif 14px/1.5em;
	color: #000;
}

/* REMOVE PADDING AND MARGIN VALUES */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, dd, dt, img, blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form, input, textarea, fieldset, pre {
	margin: 0; padding: 0;
}

/* SORT OUT HEADER FORMATTING AND SIZES */
h1, h2, h3, h4, h5 {
	font-weight: bold;
}

h1 {font-size: 2em;}
h2 {font-size: 1.75em;}
h3 {font-size: 1.2em;}
h4 {font-size: 1.2em;}
h5 {font-size: 1.1em;}
h6 {font-size: 1em;}

/*font sizing*/
html 	{ font-size: 100%; }				/* IE hack */ 			
body 	{ font-size: 75%;/*62.5*/ }			/* Takes 16px down to 12px. Now, 100% is 12px, 80% is 10px etc. (http://www.clagnut.com/blog/348/#c2331) */
html>body { font-size: 12px; }			/* To get more consistent sizing, a pixel size is given to all other browsers than IE */
table, td 	{ font-size: 100%; }				/* IE hack */
h1	{ font-size: 210%; }
h2	{ font-size: 180%; }
h3	{ font-size: 126%; }
h4	{ font-size: 126%; }
h5	{ font-size: 110%; }
h6	{ font-size: 100%; }

/* HARMONIZE LINKS, KILL BORDER ON IMG LINKS */
a {text-decoration: underline;}
a:link, a:visited {color: #00f;}
a:hover {color: #33f;}
a:active {color: #fff;}
a img, :link img, :visited img {border: none}

/* REMOVE BROWSERS DEFAULT TABLE BORDERS */
table {border-collapse: collapse;}

/* REMOVE AUTOMATIC TOP/BOTTOM MARGINS ON NESTED LISTS */
ul ul, ul ol, ul dir, ul menu, ul dl, ol ul, ol ol, ol dir, ol menu, ol dl, dir ul, dir ol, dir dir, dir menu, dir dl, menu ul, menu ol, menu dir, menu menu, menu dl, dl ul, dl ol, dl dir, dl menu, dl dl {
	margin-top: 0; margin-bottom: 0;
}

/*Fix for the "hiding the drop-down arrow of a select form widget in Firefox"*/
select { min-width:1.5em; }
option {min-width: 1.5em;}

/*RE-APPLYING SOME OF THE REMOVED STYLE WITH RELATIVE UNITS */
*								{ padding:0; margin:0; } 
h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, ul, ol, dl, fieldset, address	{ margin:.1em 0%; }
li, dd								{ margin-left:5%; }
fieldset								{ padding: .5em; }
p								{ margin-top: .2em; margin-bottom: 1em;}
ul, ol, dl, li							{ margin-left: .8em;}
ul 								{margin-bottom: 1em;}
