/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, i, img, ins, s, samp,
strike, tt, var,
u, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	font: inherit;
	vertical-align: baseline;
}

th {
	vertical-align: middle;
}

/*RM - Moving this out of the section above to make strong tag actually do what it is supposed to do (make normal font bold)*/
strong {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	vertical-align: baseline;
}

b {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	vertical-align: baseline;
}

/* JC - Moving out so the tag does what it's actually supposed to do */
i, em {
	font-style:italic;
}

/*RM - Moving this out of the section above to make small tag actually do what it is supposed to do (make normal font smaller)*/
small {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 0.75em;
	vertical-align: baseline;
}

/* RM - CHANGED TO ALIGN TOP AS BASELINE BREAKS DIV INLINE-BLOCK */
div {
	vertical-align: top;
}
/* RM - ADDING PADDING BACK TO P ELEMENTS BECAUSE THE PADDING IS KIND OF THE POINT OF THE ELEMENT*/
p {
	margin: 0.375em 0;
}
/* RM - ADDING SIZE BACK TO HEADER ELEMENTS BECAUSE THE INCREASED SIZE IS KIND OF THE POINT OF THE ELEMENT*/
h1 {
	font-size: 3em;
	font-weight: bold;
	line-height: 1.2em;
    margin-bottom: 0.3em;
}
h2 {
	font-size: 2.5em;
	font-weight: bold;
	line-height: 1.2em;
    margin-bottom: 0.3em;
}
h3 {
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1.2em;
    margin-bottom: 0.3em;
}
h4 {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.2em;
    margin-bottom: 0.3em;
}
h5 {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
    margin-bottom: 0.3em;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* changing box sizes to calculate WITH padding and margin instead of before */
html {
    height: 100%;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

/* default padding for UL and OL since browsers differ */
ul, ol {
	padding-left: 40px;
}
