@charset "UTF-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Montserrat);
* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
.myclear {
	clear: both;
}
body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 100%;
	min-height: 100vh;
}
#container {
	max-width: 1200px;
	min-height: 100vh;
	margin: 0 auto;
	background-color: rgba(250,250,250,0.7);
	box-shadow: 0px 0px 20px 10px rgba(20, 20, 20, 0.75);
}
header {
	text-align: center;
}
header h1{
	padding: 2%;
	color: #777;
	font-size: 30px;
	line-height: 1;
}
main {
	padding:1%;
}

main a{
	text-decoration: none;
}

.mycenter{
	background-color: #fff !important;
	color:#A90002 !important;
	text-align: center !important;
}
/*table styles*/


table{
	width:100%;
}

table th{
	text-align: left;
	font-weight: 700;
	font-size: 120%;
	padding:8px;
}

table td{
	text-align: left;
	font-weight: 400;
	font-size: 110%;
	padding:8px;
}

table.info td{
background-color:#FFF!important;
}

tr:nth-child(odd) td {
  background-color:#D2FDFF;
}

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

tr.tableTotals td{
	background-color:#DFDFDF;
	font-size: 120%;
	font-weight: 800;
}

button{
	padding:8px;
}

.wrong{
	color:#A90002;
}
