/*________________________________*/
/* Basic Setup */
/*________________________________*/

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'ariel', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

h1 {
    margin:0;
    font-size: 100%;
    font-weight: 300;
    color: antiquewhite;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 5px;
}

/*________________________________*/
/* Reusable components */
/*________________________________*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

/*________________________________*/
/* Header */
/*________________________________*/

header {
    background-color: darkred;
    height:150px;
}

.head-text-box {
    position: absolute;
    width: 90%;
    top: 30px;
    left: 3%;
    
}

.head-text-box h1 {
	
	text-shadow: 3px 3px 2px black;
	font-weight: bolder;
	padding: .5rem;
	text-align: center;
	margin-top: 0;
}

.logo {
    position: absolute;
    top:25px;
    left:15px;
    height:100px;
    width:auto;
    float: left;
}
.main-nav {
    list-style: none;
}
.main-nav li {
    display: inline-block;
    margin-left: 20px;
}

.main-nav li a:link {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 80%;
    
}
.main-nav li a:visited {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 80%;
    
}
.main-nav li a:hover {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 80%;
    font-weight: bold;
    
}
.main-nav li a:active {
    color: red;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 80%;
    
}
/*________________________________*/
/* Dashboard */
/*________________________________*/
.dashboard h1 {
    text-align: center;
	color: #000000;
	font-weight: bolder;
    margin: 15px 0;
}


.dashboard h2 {
    text-align: center;
    margin: 15px 0;
}
.dashboard h3 {
    background-color: darkred;
    color: antiquewhite;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 2px solid black;
	font-size: 125%;
}
.dashboard h5 {
    text-align: left;
    padding-bottom: 5px;
    border-bottom: 2px solid black;
    margin-bottom: 5px;
	font-size: 100%;
}
.dashboard p {
    padding-top: 5px;
    text-align: left;
    font-size: 90%;
    border-top: 2px solid black;
}
.dashboard ul {
   margin-bottom: 5px;
}
.dashboard li {
    list-style: none;
    padding-left: 5px;
    
}
.dash-list {
	min-height: 150px;
}
.box {
    border: 2px solid black;
	margin-bottom: 20px;
	min-height: 250px;
	
}

.box p{
    margin-bottom: 0px;
}


.dash-list li {
    font-size: 80%;
    margin-bottom: 8px;
}

.box_buttons {
    list-style: none;
	text-align: center;
}
.box_buttons li {
    display: inline-block;
    margin:10px 0 10px 15px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 0px 5px 5px 5px;
}

.box_buttons li a:link {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 60%;
    
}
.box_buttons li a:visited {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 60%;
    
}
.box_buttons li a:hover {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 60%;
    
}
.box_buttons li a:active {
    color: red;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 60%;
    
}
table.dreport {
 width: 99%;
}
table.dreport tr{
height: 60px;
}

table.tire {
 width: 50%;
border: black solid 5px;
	margin: 0 auto 0 auto;
}
table.tire tr{
height: 60px;
}
table.tire td{
	text-align: center;
}
.tirep {
	text-align: center;
	width: 60px;
}
.btn {
	padding: 0, 5px, 0, 5px;
	margin: 0, 5px, 0, 5px;
}
.td_left{
padding-left: 25px;	
}

.td_right{
	width: 600px;
	text-align: right;
}
table.dreport tr:nth-child(even) {background: #CCC}
table.dreport tr:nth-child(odd) {background: #FFF}

.container {
	display: grid;
	grid-template-columns: auto .5fr auto;
	padding: 15px 5px;
	max-width: 50%;
}
.itemContent h4 {
	text-align: center;
}
.itemContent {
padding: 20px 20px 20px;
background-color: cornsilk;
border: 3px solid black;
-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,.5);
-moz-box-shadow: 2px 2px 5px rgba(0,0,0,.5);
box-shadow: 2px 2px 5px rgba(0,0,0,.5);
	
}

table.apparatus {
	width: 100%;
	text-align: left;
}

table.apparatus td {
	width: 50%;

}


/*________________________________*/
/* footer */
/*________________________________*/

footer {
    color: lightgray;
    margin-left: 20px;
    font-size: 80%;
    word-spacing: 3px;
    letter-spacing: 2px;
}

