@charset "utf-8";

body {
	color: white;
	background: #4E5869;

	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	/*font-family: 100%/1.4 Geneva, Tahoma, Verdana, sans-serif;*/
}

h1 {
	font: 14 Arial;
}

h2 {
	font: 12 Arial;
}

h1, h2, h3, h4, h5, h6, p , label, span{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

a:link {
    color:white;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
    color:white;
    text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
}

table, th, tr, td {
	/*border: 1px solid red;*/
	padding: 0;
}

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

.container-table {
	width: 90%;
	height: 100%;
	/*margin-left: 5%; 
	margin-right: 5%;*/
}

.header-row{
	height: 68px;
}

.footer-row{
	height: 50px;
}

.footer-cell{
	background: #6F7D94;
}

.content{
}

.content-scroll{
	@extend .content;
	height: 100%;
	overflow-y: scroll;
}

.content-row{
}

.sidebar-cell{
	width: 270px;
	background: #93A5C4;
	padding-bottom: 10px;
	

}
.content-cell{
	color: black;
	background: white;
	padding: 20 20;
	text-align: left;
	vertical-align:top;
	
	font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 40px;
}

.content-cell td{
	color: black;
	background: white;
	padding: 1 15;
	
	font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 20px;
}

.sidebar {
	height: 100%;
	background: #93A5C4;
	padding-bottom: 10px;
}

ul.nav {
	list-style: none;
	border-top: 1px solid #666;
	margin-bottom: 15px;
}

ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}

ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background: #8090AB;
	color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #6F7D94;
	color: #FFF;
}


.ip-table {

}

