html {
	  box-sizing: border-box;
  }
   
*, *:before, *:after {
	box-sizing: inherit;
}

body {
	padding: 0;
	margin:  0;
	background: #eee;
}

#header {
	background-color:  #f8f8f8;
	background-image:  url("/images/mustang-alpha.png");
	background-repeat: no-repeat;
}

#logo {
	width:  164px;
	margin: 18px 0 15px 42px;
}

#menu {
	border-top:       5px solid #006695;
	background-color: #464646;
	overflow:         hidden;
	padding-left:     24px;
}

#menu .item {
	font-size:    10px;
	font-weight:  bold;
	float:        left;
	padding:      8px 16px;
	border-left:  2px solid #666;
	border-right: 2px solid #363636;
	color:        #cbcbcb;
	user-select:  none;
}

#menu .item:hover {
	background-color: #565656;
	color:            #fff;
}

#menu .item.selected {
	color:            #fff;
	border-left:      2px solid #222;
	background-color: #363636;
}

#menu .item a:hover {
	text-decoration: none;
}

#databases {
	width:            258px;
	background-color: #f6f6f6;
	box-shadow:       inset 0px 33px 40px -26px rgba(0,0,0,0.26);
}

#content {
	padding:          32px 16px;
	background-color: #fff;
	border-bottom:    5px solid #006695;
	box-shadow:       inset 0px 33px 40px -26px rgba(0,0,0,0.26);
}

@media print {
	body     { background-color: #fff; }
	#header  { display:    none; }
	#logo    { display:    none; }
	#menu    { display:    none; }
	#content {
		border-bottom: none;
		padding:       0;
		box-shadow:    none;
	}
}
