.header
   {
   z-index: 4;
   position: fixed;
   top: 0; left: 0;
   width: 100%; height: 60px;
   background-color: #217345;
   color: #FFFFFF;
   z-index: 2;
   }

.header_shadow
   {
   z-index: 1;
   position: fixed;
   top: -500px; left: 0;
   width: 100%; height: 500px;
   box-shadow: 0 0 200px #000000;
   }

.header_title
   {
   z-index: 5;
   position: relative;
   display: inline-block;
   top: 0; left: 0;
   width: 280px; height: 60px;
   cursor: pointer;
   font-size: 26px;
   line-height: 60px;
   color: #ffffff;
   }

.menu
   {
   font-size: 14px;
   font-weight: bold;
   line-height: 60px;
   float: right;
   text-transform: uppercase;
   cursor: pointer;
   color: #FFFFFF;
   }
.menutext
   {
   padding: 0 20px;
   opacity: 0.7;
   transition: 0.2s linear;
   }
.menutext:hover
   {
   opacity: 1;
   }

.menu_selected
   {
   height: 55px;
   border-bottom: 5px solid white;
   }
