/* 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;
	background: #f5f5f5;
}
ol, ul {
	list-style: none;
}

p{
	margin-bottom: 16px;
}

b{
	font-weight: 500;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	background: #ffffff;
	box-shadow: 0 4px 6px rgba(0,0,0,.09);
}

/*Start Styling*/

body {
	max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
	padding: 16px;
}

.header{
	padding: 16px 0;
}
img#logo {
	width: 220px;
	white-space: nowrap;
}
td#notes, td#files {
	width: 50%;
	line-height: 1.4em;
	padding-left: 24px
}
.footer {
	padding-top: 16px;
	text-align: right;
}
a,a:visited{
    color: #C8102E;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

pre {
	font-family: 'Roboto Mono', monospace;
	font-size: 90%;
}
table {
	width: 100%;
	overflow: scroll;
}
tbody tr{
    border-bottom: 1px solid #E6E8F4;
}
th{
    padding: 8px;
    text-align: left;
    background: #f5f5f5;
    font-weight: 600;
}

th img{
	display: none;
}

td{
	text-align: left;
	vertical-align: middle;
	padding: 8px;
}

tr > td:first-of-type{
	width: 38px;
}

hr {
	border: none;
	border-bottom: 1px solid #ddd;
}
h2 {
	padding-top: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #ddd;
	font-weight: 500;
	font-size: 24px;
}

h3{
	font-size: 16px;
	padding-bottom: 16px;
	font-weight: 500;
}

.banner{
	display: none;
	padding: 16px;
	margin: 16px 0;
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 4px 6px rgba(0,0,0,.09);
}

.banner img{
	width: 96px;
	margin-right: 16px;
}

 .modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal h2{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 16px;
}

.modal-content {
	background-color: #ffffff;
	border-radius: 4px;
	margin: 5% auto;
	padding: 16px;
	border: 1px solid #888;
	width: 90%;
	max-width: 640px;
}

.modal-buttons{
	text-align: right;
}

button{
	padding: 8px 18px;
	cursor: pointer;
}

button:hover{
	box-shadow: 0 4px 8px rgba(0,0,0,.2);
}

.agree-button {
	background-color: #68910f; /* Green */
	border: none;
	color: white; 
	border-radius: 4px;
}

.disagree-button {
	background-color: #515A61; /* Red */
	border: none;
	color: white; 
	border-radius: 4px;
}