html {
	overflow-y: scroll;
}

body {
	font-family: Arial;
	padding: 70px 0 0;
	background: #EEEEEE;
	line-height: normal;
}

.header {
	position: fixed;
	background: #4D698E;
	width: 100%;
	top: 0;
	height: 50px;
	line-height: 50px;
	box-shadow: 0 6px 4px -4px rgba(0, 0, 0, .2);
}

.header_text {
	color: #fff;
	float: right;
	font-weight: bold;
}

.menu {
	float: left;
	list-style-type: none;
	margin: 0;
    padding: 0;
}

.menu li {
	display:inline-block;
	padding: 0 10px;
}

.menu li a {
	text-decoration: none;
	color: white;
	display: block;
}

.menu li.active {
	background: #455f80;
}

.menu-toggle:before {
	position: fixed;
	content: "III";
	transform: rotate(90deg);
	float: left;
	font-size: 30px;
	color: #fff;
	left: 15px;
	transition: left 0.1s linear;
}

.container {
	max-width: 960px;
}

.panel-default>.panel-heading {
	color: #fff;
	background: #4d698e;
	border-color: #4d698e;
}

.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.footer {
	margin: auto;
	margin-bottom: 30px;
	text-align: center;
	background: #f5f5f5;
	width: 90%;
	height: 30px;
	line-height: 30px;
	box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}

.mobile_show {
	display: none;
}

.hide {
	display: none;
}

@media ( max-width: 600px ) {

	.mobile_show {
		display:block;
	}

	.mobile_hide {
		display: none;
	}

	.menu_close {
		left: -70%;
		transition: left 0.1s linear;
	}

	.menu_open {
		left: -1px;
		transition: left 0.1s linear;
	}

	.menu_body {
		width: 70%;
		line-height: 40px;
		position: fixed;
		right: 10px;
		background: #7187A5;
		height: 100%;
		top: 50px;
		padding-top: 10px;
	}

	.menu {
		float: none;
	}

	.menu li {
		font-weight: bold;
		display:block;
		padding-left: 10px;
		margin: 0 10px;
		border-bottom: 1px double silver;
	}

	.menu li.active {
		background: #455f80;
		border-radius: 3px;
	}

	.menu li:last-child {
		border-bottom: 0px;
	}

	.blocker {
		position: fixed;
		left:0px;
		top:0px;
		width:100%;
		height:100%;
		z-index:0;
		background: #000;
		opacity: 0.70;
	}

}

a {
	color: #0072d1;
}

a:hover {
	color: #0055aa;
}