
/*for menu*/
.NavBarBox{
  position: fixed;
  left: 0;
  top: 80px;
  z-index:1;
  padding:0;
  height:100%;
  padding-bottom:80px;
}
a.icon {
   clear: both;
}
a.icon  img{
   width:30px;
   display: block;
   margin:0;
}
a.icon  img:hover {
  width:32px;  
  text-decoration: none;
  
}


.leftNavBox {
  margin-left:0;
  padding-left:0;
  position: relative;
  display:block;
  height:100%;
  
}

.leftNavBox #NavItemsPan {
  
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 0;
  
  overflow:scroll;
  background-image: linear-gradient(to right, #00264d 5% , #0066cc 80% );
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
  z-index:1;
  transition: width 2s;
  display:block;
}

.leftNavBox #NavItemsPan ul{
  margin-left:10px;
  padding-left:0;
}
.leftNavBox #NavItemsPan ul ul{
  background-color: #0066cc;
  box-shadow:20px 20px 50px 10px #0066cc inset;  
  display:none;
}
.leftNavBox #NavItemsPan ul ul li{
  font-size: 0.8em;
}
.leftNavBox #NavItemsPan ul li{
  padding: 3px;
  list-style: none;
}
.leftNavBox #NavItemsPan ul li a{
  color: white;
  display:block;
  font-size: 1.1em;
  text-decoration:none;
  
}
.leftNavBox #NavItemsPan ul li a:hover{
	background-image: linear-gradient(to right, #0066cc 5% , #00264d 80% );
}


