html {min-height: 100%;	overflow-y: scroll;}
body { margin:0; background-color: #bbbec1; }

.header {
  overflow: hidden;
  background-image: url("../img/flr_banner.png"); 
  background-repeat: no-repeat;
  background-color: #243a74;
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
}

.header .left {
  margin-top: 6px;
  padding: 2px;
  float: left;
  color: #FFF;
  width: 80%;
  height: 45px;
  font: normal 2em "Trebuchet MS",sans-serif;
  line-height: 50px;
}

#navbar {
  overflow: hidden;
  background-color: #dbe4e8;
  position: fixed;
  top: 60;
  width: 100%;
  font: bold 1.1em sans-serif;
  -moz-box-shadow: 1px 3px 5px rgba(68,68,68,0.6);
	-webkit-box-shadow: 3px 5px 5px rgba(68,68,68,0.6);
	box-shadow: 1px 3px 5px rgba(68,68,68,0.6);
}

#navbar a {
  display: block;
  float: left;
  height: 17px;
  padding: 14px 16px;
  text-align: center;
  color: #445566;
  text-decoration: none;
  font-size: 13px;
  list-style:none;
  border-right: 1px solid #c9d5d9;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -moz-box-shadow: inset 1px 0px 0px rgba(255, 255, 255, .4);
  -webkit-box-shadow: inset 1px 2px 1px rgba(255, 255, 255, .4);
}

#navbar a:hover {
  background: #a2a7a9;
}

#navbar #logout {
  float: right;
}

#navbar #logout button {
  border-radius: 5px;
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background-color: #555;
  color: white;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

#navbar #logout button:hover {
  background-color: #445566;
}

#sidebar,
#sidebar ul,
#sidebar li,
#sidebar a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  position: relative;
}

#sidebar a {
  line-height: 1.3;
}

#sidebar {
	position: fixed;
  padding: 0px;
  margin-top: 107px;
  height: 1500px; /* Used in this example to enable scrolling */
	float:left;
	width: 200px;
	transition: 0.1s;
	background: #e5e5e5;
	overflow-x: hidden;
  font: bold 1.1em sans-serif;
}

#sidebar > ul > li {
  margin: 0 0 2px 0;
}
#sidebar > ul > li:last-child {
  margin: 0;
}
#sidebar > ul > li > a {
  font-size: 13px;
  display: block;
  color: #ffffff;
  text-shadow: 0 1px 1px #000;
  background: #445566;
  background: -moz-linear-gradient(#445566 0%, #323232 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #445566), color-stop(100%, #323232));
  background: -webkit-linear-gradient(#445566 0%, #323232 100%);
  background: linear-gradient(#445566 0%, #323232 100%);
  border: 1px solid #000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#sidebar > ul > li > a > span {
  display: block;
  border: 1px solid #666666;
  padding: 6px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-weight: bold;
}
#sidebar > ul > li > a:hover {
  text-decoration: none;
}
#sidebar > ul > li.active {
  border-bottom: none;
}
/* #97be10;*/
#sidebar > ul > li.active > a {
  background: #445566;
  background: -moz-linear-gradient(#445566 0%, #8d9dad 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #445566), color-stop(100%, #8d9dad));
  background: -webkit-linear-gradient(#445566 0%, #8d9dad 100%);
  background: linear-gradient(#445566 0%, #8d9dad 100%);
  color: #fff;
  text-shadow: 0 1px 1px #000;
  border: 1px solid #8d9dad;
}
#sidebar > ul > li.active > a span {
  border: 1px solid #445566;
}
#sidebar > ul > li.has-sub > a span {
  background: url(../img/icon_plus.png) 98% center no-repeat;
}
#sidebar > ul > li.has-sub.active > a span {
  background: url(../img/icon_minus.png) 98% center no-repeat;
}
/* Sub menu */
#sidebar ul ul {
  padding: 5px 12px;
  display: none;
}
#sidebar ul ul li {
  padding: 3px 0;
}
#sidebar ul ul a {
  display: block;
  color: #595959;
  font-size: 13px;
  font-weight: bold;
}
#sidebar ul ul a:hover {
  color: #79980d;
}


#main {
	/*transition: margin-left .5s;*/
  padding: 16px;
  margin-top: 30px;
}

#main_inner {
  background-color: #fafafa;
	/*transition: margin-left .5s;*/
  padding: 3px;
  margin-top: 20px;
  margin-left: 0px;
}

/* misc */
.clearer {clear: both;}

.left {float: left;}

.right {float: right;}

.footer {
	background: url(../img/bgfooter.gif) repeat-x;
	color: #FFF;
	font: bold 0.8em sans-serif;
	line-height: 39px;
	padding: 0 12px;
	text-align: center;
}
.footer .right {color: #DEF;}
.footer .right a {color: #DEF; text-decoration: none;}
.footer a, .footer a:hover,.footer .right a:hover {color: #FFF;}
