body {
	background-color:#eee;
	margin:0;
	font-size:12pt;
}
#main {
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	margin:55px 10px 10px 10px;
}

#navbar {
	position:fixed;
	left:0; top:0;
	z-index:900;
	width:100vw;
	background: #555555;
	color:#fff;
	background: #646446; /* Old browsers */
	background: -moz-linear-gradient(top,  #646446 0%, #11100b 100%, #11100b 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #646446 0%,#11100b 100%,#11100b 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #646446 0%,#11100b 100%,#11100b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#646446', endColorstr='#11100b',GradientType=0 ); /* IE6-9 */
}
#navbar ul {
	width:100%;
	list-style-type:none;
	margin:0; padding:0 15px;
	display:flex;
	flex-direction:row;
	justify-content:flex-end;
}
#navbar ul li {
	display:inline-flex;
	flex-direction:row;
	align-items:center;
}
#navbar ul li a {
	display:inline-block;
	color:#fff;
	text-decoration:none;
	height:45px; line-height:45px;
	padding:0 15px;
}
#navbar, #navbar-spacer {
	height:45px;
}

#navbar-agent-name {}
#navbar-agent-photo {}
#navbar-agent-photo img {
	width:60px; height:60px;
	margin-top:-5px;
	border:1px solid rgba(255,255,255,0.5);
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
	transition:0.2s ease-in-out;
	background-color:#eee;
}
#navbar-agent-photo img:hover {
	transform:scale(105%);
}

#popup-message {
	position:fixed;
	top:100vh;
	left:0;
	width:100vw; height:90px;
	padding:15px 30px;
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	align-items:center;
	transition:0.5s ease-in-out;
	background-color:rgba(0,0,0,0.75);
	color:#fff;
}
#popup-message.visible {
	top:calc(100vh - 90px);
}
#popup-message-icon {
	width:90px;
	font-size:3em;
}
#popup-message-content {
	width:calc(100vw - 120px);
}
.pane {
	background-color:#fff;
	border-radius:5px;
	-webkit-border-radius:5px;
	margin:10px;
	padding:10px;
}

button:focus {outline: none;}
.btn-primary, .btn-primary:focus {
	background-color:#666954;
	border:1px solid #666954;
}
.btn-primary:hover {
	background-color:#969a76;
	border:1px solid #969a76;
}
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(149, 153, 118, 0.5);
}