/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 13-Jul-2016, 16:07:17
    Author     : charlie.tapping
*/
@font-face {
    font-family: gotham-book;
    src: url(../fonts/Gotham-Book.ttf);
}

@font-face {
    font-family: gotham-bold;
    src: url(../fonts/Gotham-Bold.ttf);
}

body {
	margin: 0px;
	font-family: gotham-book;
}

h2 {
	font-weight: normal;
	margin: 0px;
	margin-bottom: 15px;
}

h4 {
	font-weight: normal;
	font-size: 18px;
	margin: 0px;
}



#header {
	height: 111px;
	display: flex;
}

#header #branding {
	width: 275px;
	height: 110px;
	display: block;
	padding-left:	15px;
	vertical-align: top;
	background: #36353a;
	border-bottom: 1px solid #47464a;
	
}

#header #branding img{
	width: 138px;
	height: 50px;
	top: 50%;
    margin-top: 25px;
}

#header #summary {
	width: calc(100% - 290px);
	height: 110px;
	color: #555555;
	box-sizing: border-box;
	padding-left:	50px;
	padding-top:	33px;
	vertical-align: top;
	background: #f4f4f4;
	border-bottom: 1px solid #e5e2e2;
	
}

#container {
	display: flex;
}


#container #sidebar {
	width: 290px;
	min-height: 100%;
	display: block;
	vertical-align: top;
	background: #36353a;
}

#container #sidebar #search {
	box-sizing: border-box;
	height: 70px;
	padding-top:	20px;
	padding-bottom: 20px;
	padding-left:	15px;
	padding-right:	15px;
}

#container #sidebar #search input {
	width: 252px;
	height: 30px;
	background-image: url(../img/search.png);
	background-position: right 4px center;
	background-repeat: no-repeat;
	padding-left: 8px;
	padding-right:30px;
	border: none;
}
#container #sidebar ul {
	margin-top: 0px;
	padding-left: 0px;
}

#container #sidebar ul li {
	width: 290px;
	height: 50px;
	color: #ffffff;
	list-style-type: none;
	border-top: 1px solid #47464a;
	border-bottom: 1px solid #47464a;	
}

#container #sidebar ul li.active {
	width: 287px;
	height: 50px;
	color: #ffffff;
	list-style-type: none;
	border-left: 3px solid #fbb031;
}

#container #sidebar ul li a {
	display: block;
	width: 260px;
	color: #ffffff;
	padding-left: 15px;
	padding-right: 15px;
	list-style-type: none;
	text-decoration: none;
	line-height: 50px;
}

#container #sidebar ul li a:hover {
	background: #5e5d61;
}

#container #sidebar ul li a span.error_code {
	display: inline-block;
	width: 150px;
	font-size: 14px;
}

#container #sidebar ul li a span.error_date {
	font-size: 12px;
}

#container #content {
	width: calc(100% - 290px);
	display: block;
	box-sizing: border-box;
	padding-left: 50px;
	padding-top: 55px;
	vertical-align: top;
	background: #ffffff;
}

#container #content table{
	display: block;
	width: 100%;
}

#container #content table th {
	font-family: gotham-bold;
	color: #555555;
	vertical-align: top;
	text-align: left;
	width: 100px;
}

#container #content table td {
	padding-bottom: 15px;
}

#request_divider {
	width: 100%;
	height: 100px;
}