/*
	color: #556270;		//drak gray
	color: #dfe5eb;		//light gray
	color: #59e9df;		//light blue-green
	B2DB38				//logo light green
	24AE5C				//logo dark green
	7C92A8				//menu bar gray
	8FA9C2
	ECF5ED				// x-light green
*/

/* Reset */

body {
	font-size: 14px;
	font-family: Arial;
	line-height: 150%;
	background: #eeeeee;
	/* color: #888888; */
	color: black;
	margin: 0;
	padding: 0;
}
a,
a:hover,
a:active {
	text-decoration: none;
}
p {
	margin: 0px 0px 20px 0px;
	line-height: 150%;
}
h1,
h2 {
	font-family: Arial;
	line-height: 150%;
	color: #ffffff;
	padding: 10px;
}
h1 {
	font-weight: 300;
	font-size: 20px;
	background: #222222;
}
h2 {
	font-weight: 700;
	font-size: 16px;
	background: #77c043;
	display: inline-block;
	margin: 0px 0px 20px 0px;
}
/* Layout */
#container-outer,
#container {
	min-width: 320px;
	width: 100%;
	overflow: hidden;
	display: block;
}
#container-inner {
	max-width: 880px;
	overflow: hidden;
	display: block;	
	padding: 20px;
	padding-top: 50px;
	/* margin: 10px auto; */
	margin: 10px auto;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff;
}
/* Mobile Menu */
.mobile-header {
	line-height: 100%;	
	width: 100%;
	display: block;
	/* position: relative; */
	position: fixed;
	z-index: 30;
	background: #ffffff;
	z-index: 9999;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.mobile-header .sep{
	width: 100%;
	height: 10px;
	display: block;
	background: #dfe5eb;
}
.mobile-header .userNameBar{
	width: 100%;
	font-size: 12px;
	text-align: right;
	height: 25px;
	display: block;
	padding: 5px;
}
.mobile-header ul {
	margin: 0px;
	padding: 0px;
	z-index: 30;
	list-style: none;
}
.mobile-header ul li {
	float: left;
	list-style: none;
	margin: 0px;
	padding: 0px;
	position: relative;
	z-index: 30;
	width: 100%;
	min-width: 150px;	
}
.mobile-header ul li a {
	margin: 0px;
	padding: 12px 0px;	/* menu button size */
	width: auto;
	display: block;
	background: none;
	text-align: center;
	font-size: 12px;
	line-height: 100%;
	color: #888888;
	cursor: pointer;
	border-right: 1px solid #eeeeee;
	font-family: Arial;
	font-weight: 300;
	text-transform: uppercase;
}
.mobile-header ul li div {
	font-size: 12px;
}
.mobile-header ul li.m-menu a {
	font-weight: 700;
}
.mobile-header ul li a:hover,
.mobile-header ul li.active,
.mobile-header ul li.active a {
	color: #ffffff;
	background: #77c043;
}
.mobile-header ul li a:hover,
.mobile-header ul li.active a {
	border-right: 1px solid #63A832;
}
.mobile-header ul li a span.menu-open,
.mobile-header ul li.active a span.menu-close {
	display: inline;
}
.mobile-header ul li.active a span.menu-open,
.mobile-header ul li a span.menu-close {
	display: none;
}
/* Mobile Menu */
.mobile-menu {
	/* background: #222222; */
	position: fixed;
	margin: 0px;
	padding: 30px;
	width: 200px;
	text-transform: none;
	font-size: 14px;
	position: absolute;
	top: 72px;
	bottom: 0px;
	left: -270px; /* Hides Brief Menu Popup As JavaScript Loads */
	z-index: 9998;
	display: block;
	height: 100%;
	overflow: hidden;
	color: #ffffff;
}
.mobile-menu.active {
	height: auto;
	overflow: visible;
}
.mobile-menu-bg {
	background: #222222;
	margin: 0px;
	position: fixed;
	width: 270px;
	top: 0px;
	bottom: 0px;
	left: -270px; /* Hides Brief Menu Popup As JavaScript Loads */
	z-index: 9997;
	display: block;
	height: 100%;
	-webkit-box-shadow: inset 0px 0px 100px 0px rgba(0, 0, 0, 1);
	box-shadow: inset 0px 0px 100px 0px rgba(0, 0, 0, 1);
}
.mobile-menu.active,
.mobile-menu-bg.active {
	display: block;
}
/* Floats */
.clearfloat:after {
	content: ""; 
	display: table;
	clear: both;
}

.mobile-menu .m-menu-container > ul{
	display:block;
	/*margin: 40px;*/
	padding: 0;
	list-style: none;
	opacity: 0.9;
  -moz-transition: all 300ms;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.mobile-menu .m-menu-container > ul li {
  color: #dfe5eb;
  padding: 6px 0;
  cursor: pointer;
  font-family: Arial;
  font-size: 16px;			/* menu content button size */
}
.mobile-menu .m-menu-container > ul li:hover {
  color: #59e9df;
}
.mobile-menu .m-menu-container > ul li:before {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;  
  width: 1em;
  color: #59e9df;
  margin-right: 12px;
  text-align: center;
  font-variant: normal;
  font-size: 16px;			/* menu content button size */
  text-transform: none;
  line-height: 1em;
}
.mobile-menu .m-menu-container > ul li a{
  color: #dfe5eb;
  padding: 6px 0;
  cursor: pointer;
  font-family: Arial;
  font-size: 14px;			/* menu content button size */
}
.mobile-menu .m-menu-container > ul li a:hover {
  color: #59e9df;
}
.mobile-menu .m-menu-container > ul li a:before {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;  
  width: 1em;
  color: #59e9df;
  margin-right: 12px;
  text-align: center;
  font-variant: normal;
  font-size: 14px;			/* menu content button size */
  text-transform: none;
  line-height: 1em;
}
.mobile-menu .m-menu-container > ul li.sep {
  margin-top: 7px;
  padding-top: 2px;
  border-top: 2px solid #6b7b8d;  
}
.mobile-menu .m-menu-container > ul li.empty {
  margin-top: 100px;
  padding-top: 2px;
  margin-bottom: 100px;
}
.logo{
	font-size: 28px;
	font-weight: bold;
	font-family: Calibri, Arial;
}
.logo #p1{
	display: inline-block;
	color: #B2DB38;	
	line-height: 5px;
}
.logo #p2{
	display: inline-block;
	color: #24AE5C;
	line-height: 5px;
}
.m-menu-container{
	position: fixed;
	/*margin: 40px;*/
	padding: 0;
	margin-top: -20px;
	margin-left: 20px;
	margin-right: 20px;
	width: 230px;
	/* background-color: #24AE5C; */
	/* background: transparent; */
	background: transparent;
	font-family: Arial;
	font-weight: bold;
	font-size: 14px;
	
	height: 90%;
	overflow-y: overlay;
	overflow-scrolling: touch;
	-webkit-overflow-scrolling: touch;
	-moz-overflow-scrolling: touch;
}
.m-menu-container::-webkit-scrollbar{
	width:15px;
} 

.m-menu-container::-webkit-scrollbar-thumb{
   background-color:rgba(85,98, 112, 0.3);	/* #556270 */
   border-radius: 14px 14px 14px 14px;
   -webkit-border-radius: 14px 14px 14px 14px;
   -moz-border-radius: 14px 14px 14px 14px;
}  

.countTable {
	font-size: 12px;
	padding-bottom:5px;	
}