/* 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, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, 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: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*My styles*/

em {
    font-weight: bold;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #222;
}

h1, h2, h3, h4, h5 {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 36px;
    padding-top: 20px;
    padding-bottom: 30px;
}

h2 {
    font-size: 28px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.block {
    max-width: 960px; 
    margin: auto;
}

ul {
    list-style-type: square;
    list-style-position: inside;
    padding-top: 10px;
}

p {
    padding-top: 10px;
}

.navcontainer {
    background-color: #555;
    padding-bottom: 10px
}

.nav {
    position: relative;
}

.nav a {
    color: white;
    margin-left: 20px;
}

.logo a {
    color: white;
    margin-left: 0px;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

.menu {
    position: absolute;
    right: 0px;
    top: 30px;
}

#mainimage {
    margin: auto;
    display: block;
}

.video {
    margin: auto;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    max-width: 800px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

th {
    border: 1px solid #dddddd;
    padding: 8px;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

.spacer {
    height: 20px;
}