html, body {
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	font-family: sans-serif;
	color: #212121;
	background-color: #f5f5f5;
}
.content-header {
	width: 100%;
	height: 80px;
	padding-top: 30px;
	padding-bottom: 10px;
	position: fixed;
	background-color: #fff;
	z-index: 1000;
	box-shadow: 0px 1px 5px #212121;
}
.content-header img {
	width: 120px;
	margin-left: 25px;
}
.content-left {
	width: 250px;
	height: calc(100% - 80px);
	position: fixed;
	top: 80px;
	padding: 0px 0px 15px 0px;
	overflow: hidden;
	background-color: #f5f5f5;
	z-index: 900;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}
.content-right {
	width: calc(100% - 275px);
	height: 100%;
	float: right;
	right: 0px;
	padding: 80px 0px 15px 20px;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}

ul.lang-options {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	padding-right: 15px;
	float: right;
	position: absolute;
	top: 0px;
	right: 0px;
}
ul.lang-options li {
	display: inline;
	font-size: 0.8em;
	padding: 3px 7px;
	border-right: 1px solid #212121;
}
ul.lang-options li:last-child {
	border-right: none;
}
ul.lang-options li.active {
	font-weight: bold;
}
ul.lang-options li img {
	margin: 0px;
	padding: 0px;
	width: 14px;
}

ul.top-menu {
	list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  float: right;
  font-weight: bold;
}
ul.top-menu li {
	float: left;
	padding: 10px;
}
ul.top-menu li a {
	text-decoration: none;
	color: #01579b;
}
ul.top-menu li a:hover {
	text-decoration: underline;
}

.top-button {
	position: absolute;
	right: 25px;
	top: 35px;
}
.top-button a {
	margin-left: 15px;
}
.top-button .toggle-left-menu {
	visibility: hidden;
}

ul.left-menu, ul.left-submenu {
	width: 100%;
	list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
ul.left-menu li, ul.left-submenu li {
	border-left: 0px solid #01579b;
	display: block;
	padding: 0px;
}
ul.left-menu li a, ul.left-submenu li a {
	text-decoration: none;
	color: #01579b;
	display: block;
	padding: 10px;
}
ul.left-menu li ul.left-submenu {
	display: none;
}
ul.left-menu li:hover, ul.left-menu li.active {
	border-left: 5px solid #01579b;
	background-color: #fff;
	font-weight: bold;
	-webkit-transition: border 0.4s;
  transition: border 0.4s;
}
ul.left-menu li:hover ul.left-submenu, ul.left-menu li.active ul.left-submenu {
	display: block;
}
ul.left-submenu li a {
	background-color: #fff;
	padding: 5px 10px;
}
ul.left-submenu li {
	padding-left: 5px;
	font-weight: normal;
}
ul.left-submenu li:hover {
	border-left: none;
}
ul.left-submenu li:hover a {
	background-color: #f5f5f5;
}

h1 {
	padding-top: 15px;
	border-bottom: 1px solid #01579b;
}
h3 {
	padding-top: 15px;
}

.dark-blue {
	color: #01579b;
}
.light-blue {
	color: #03a9f4;
}
.dark-cyan {
	color: #006064;
}
.dark-red {
	color: #b71c1c;
}
.dot-list:before {
	content: "\2022";
	margin-right: 10px;
}

.block-code {
	font-family: 'Courier New';
	padding: 10px;
	background: #fff;
	border: 1px solid #2196f3;
	font-size: 10pt;
	color: #000000;
	word-wrap: break-word;
}
.text-red {
	color: #f44336;
}
.text-blue {
	color: #2196f3;
}
.text-grey {
	color: #9e9e9e;
}
.text-green {
	color: #4caf50;
}
.text-orange {
	color: #ff9800;
}
.text-purple {
	color: #9c27b0;
}
.text-underline {
	text-decoration: underline;
}
.text-italic {
	font-style: italic;
}
.text-bold {
	font-weight: bold;
}

.espay-table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
	background-color: #fff;
	border-spacing: 0;
	border-collapse: collapse;
}
.espay-table th, .espay-table td {
	padding: 8px;
	line-height: 1.4;
	text-align: left;
	border: 1px solid #ddd;
}
.espay-table td {
	vertical-align: top;
}
.table-blue th {
	background-color: #03a9f4;
	color: #fff;
}

.image-content img {
	max-width: 100%;
}

/*Nano Scroller CSS*/
.nano.nano-left {
	width: 100%;
	height: 100%;
	transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}
.nano.nano-right {
	width: 100%;
	height: calc(100% + 15px);
}
.nano .nano-content {
	padding: 10px 20px 10px 0px;
}
.nano .nano-pane {
	background: none;
}
.nano .nano-slider {
	background: rgba(1, 87, 155, 0.3) !important;
}

@media (max-width: 767px) {
	.content-left {
		width: 0px;
		transition: all ease 0.5s;
		-webkit-transition: all ease 0.5s;
	}
	.content-left.show-left-menu {
		width: 100%;
		transition: all ease 0.5s;
		-webkit-transition: all ease 0.5s;
	}
	.top-button .toggle-left-menu {
		visibility: visible;
	}
	.content-right {
		width: 100%;
		transition: all ease 0.5s;
		-webkit-transition: all ease 0.5s;
	}
}
