@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../assets/material_icons.woff2);
}

* {
	padding: 0px;
	margin: 0px;
	font-size: 14px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

html, body {
	height: 100%;
	width: 100%;
}

body {
	height: calc(100% - 40px);
	background-image: url(../assets/background.jpg);
	background-position: center center;
	background-attachment: fixed;
	overflow: auto;
}





modal-container {
	height: 0px;
	width: 0px;
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,.5);
	display: block;
	
}

modal-window {
	height: auto;
	width: 720px;
	background-color: white;
	margin: 80px auto 0px auto;
	display: block;
	box-shadow: 0px 3px 6px rgba(0,0,0,.3);
}

modal-header {
	height: 16px;
	width: calc(100% - 16px);
	padding: 8px;
	padding-bottom: 0px;
	display: inline-block;
	font-size: 20px;
}

modal-title {
	display: block;
	float: left;
	font-size: 16px;
}

modal-close {
	display: block;
	float: right;
	font-family: 'Material Icons';
	cursor: default;
	height: 16px;
	font-size: 16px;
	margin-top: -5px;
}

modal-content {
	width: calc(100% - 16px);
	display: block;
	font-size: 12px;
	padding: 8px;
	padding-top: 4px;
	padding-bottom: 16px;
	max-height: 600px;
	overflow: auto;
}

modal-footer {
	display: block;
	height: auto;
	min-height: 16px;
	width: calc(100% - 16px);
	background-color: white;
	padding: 8px;
}





table {
	border: 1px solid rgba(0,0,0,.2);
	height: auto;
	width: calc(100% - 16px);
	margin: 8px auto 16px auto;
	border-collapse: collapse;
	table-layout: auto;
}

thead {
	border-bottom: 1px solid rgba(0,0,0,.1);
	color: #898989;
	cursor: default
}

tbody {

}

tr {
	border-bottom: 1px solid rgba(0,0,0,.1);
}

tbody tr:nth-child(odd) {
	background-color: rgba(0,0,0,.05);
}

tr:last-of-type {
	border-bottom: none;
}

td {
	padding: 8px 12px;
	border: none;
	max-width: 100%;
}

td[number] {
	text-align: right;
}

td[collapse] {
	width: 1px;
	white-space:nowrap;
}

tfoot {
	border: none;
	border-top: 1px solid rgba(0,0,0,.1); 
}





label {
	display: inline-block;
}

input {
	vertical-align: middle;
	outline:none;
}

input[type="text"], input[type="password"], input[type="number"] {
	border: 1px solid rgba(0,0,0,.5);
	height: 12px;
	font-size: 12px;
	-webkit-appearance: none;
	padding: 4px;
	vertical-align: middle;
}

input[type=checkbox] {
	border: 1px solid rgba(0,0,0,.5);
	height: 16px;
	width: 16px;
	background-color: white;
	background-image: none;
	-webkit-appearance: none;
}

input[type=checkbox]:checked {
	background-image: url(../assets/icons/ic_check_black_48dp.png);
	background-size: 16px;
	background-position: -1px;
	
}

select {
	border: 1px solid rgba(0,0,0,.5);
	font-size: 12px;
	padding: 2px 4px;
	vertical-align: middle;
}


/* utility attributes */
divider {
	display: block;
	width: 100%;
	height: 0px;
	border-bottom: 1px solid rgba(0,0,0,.2);
	margin: 16px 0px 16px 0px;
}

[left] {
	float: left;
}

[right] {
	float: right;
}

clear {
	display: block;
	clear: both;
}


icon {
	height: 16px;
	width: auto;
	display: inline-block;
	font-family: 'Material Icons';
	font-size: 16px;
	vertical-align:  middle;
	cursor: default;
}

button {
	border: 1px solid #999;
	padding: 1px 12px;
	font-size: 12px;
	background-color: white;
	border-radius: 3px;
}


fieldset {
	border: none;
}





/* colors */
[blue] { background-color: #3FA9F5 !important;}
[green] { background-color: #7AC943 !important;}
[orange] { background-color: #FF931E !important;}
[red] { background-color: #FF1D25 !important;}
[gray] { background-color: #BDCCD4 !important;}








menu-bar {
	display: block;
	width: 1024px;
	padding: 8px calc(50% - 512px) 0px calc(50% - 512px);
	background-color: #3FA9F5;
	height: 24px;
	color: white;
	box-shadow: 0px 2px 2px rgba(0,0,0,.4);
	position: fixed;
	top: 0px;
	left: 0px;
}

menu-bar a {
	color: white;
	text-decoration: none;
	margin: 0px 32px 0px 0px;
}

menu-bar a[selected]{
	text-decoration: underline;
}

menu-bar a:hover {
	text-decoration: underline;
}

template {
	display: none;
}

content {
	display: block;
	width: 1008px;
	margin: 40px auto 0px auto;
	height: auto;
	background-color: white;
	box-shadow: 0px 2px 8px rgba(0,0,0,.3);
	padding: 8px;
}




#report {
	background-color: white;
	box-shadow: 0px 2px 8px rgba(0,0,0,.3);
}

#report td {
	border-right: 1px solid rgba(0,0,0,.1);
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: right;
}

#report td:first-child {
	text-align: left;
}