
/* Base Styles */
#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu 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;
  text-align: left;
}
#cssmenu {
  width: 210px;
}
#cssmenu a {
  line-height: 1.3;
}
/*
#cssmenu > ul > li:first-child {
  background: #66665e;
  background: -moz-linear-gradient(#66665e 0%, #45463d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66665e), color-stop(100%, #45463d));
  background: -webkit-linear-gradient(#66665e 0%, #45463d 100%);
  background: linear-gradient(#66665e 0%, #45463d 100%);
  border: 1px solid #45463d;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}
#cssmenu > ul > li:first-child > a {
  padding: 15px 10px;
  background: url(pattern.png) top left repeat;
  border: none;
  border-top: 1px solid #818176;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  text-shadow: 0 -1px 1px #000000;
}
#cssmenu > ul > li:first-child > a > span {
  padding: 0;
}
#cssmenu > ul > li:first-child:hover {
  background: #66665e;
  background: -moz-linear-gradient(#66665e 0%, #45463d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66665e), color-stop(100%, #45463d));
  background: -webkit-linear-gradient(#66665e 0%, #45463d 100%);
  background: linear-gradient(#66665e 0%, #45463d 100%);
}                 */
#cssmenu > ul > li {
  background: transparent;

}
#cssmenu > ul > li:hover, #cssmenu > ul > li.active {
  background: #d9dce2;
  outline:1px solid #b3b5ba;
  box-shadow: inset 1px -3px 5px rgba(0,0,0,0.7);
}
#cssmenu > ul > li > a {
  font-size: 14px;
  display: block;
  color: #000;
  border-bottom: 1px solid #a9a9a9;
  border-top: none;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);    
  font-size: 20px;
  font-family: 'roboto';
  font-weight: 500;
  text-transform: uppercase;
}
#cssmenu > ul > li > a > span {
  display: block;
  padding: 12px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#cssmenu > ul > li > a:hover, #cssmenu > ul > li.active > a {
  text-decoration: none;
   color: #f6f6f8;
}
#cssmenu > ul > li.active {
  border-bottom: none;
}
#cssmenu > ul > li.has-sub > a span {
background:  url(../images/arrow-left.png) 96% center no-repeat;
}
#cssmenu > ul > li.has-sub.active > a span {
background:  url(../images/arrow-bottom.png) 96% center no-repeat;
}
/* Sub menu */
#cssmenu ul ul {
  display: none;
  background: transparent;
  border-right: 1px solid #a2a194;
  border-left: 1px solid #a2a194;
}
#cssmenu ul ul li {
  padding: 0;
  border-bottom: 1px solid #acadad;
  border-left: 1px solid #acadad;
  border-top: none;
  background: none;

}
#cssmenu ul ul li:last-child {
  border-bottom: none;
}
#cssmenu ul ul a {
  padding: 10px 10px 10px 25px;
  display: block;
  color: #676767;
  font-size: 12px;
  font-weight: normal;
  font-size: 14px;
  display: block;
  color: #000;
  border-bottom: 1px solid #a9a9a9;
  border-top: none;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);    
  font-size: 20px;
  font-family: 'roboto';
  font-weight: 500;
  text-transform: uppercase;
}

#cssmenu ul ul a:hover{
  
     color: #f6f6f8;
}




/* DEMO 3 */

.wrapper-dropdown-3 {
    /* Size and position */
    position: relative;
    float:left;
     margin:0px 2px 5px 12px;
    /* Styles */
    
    cursor: pointer;
    outline: none;

    /* Font settings */

}

.wrapper-dropdown-3:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
   right: 6px;
    top: 60%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #000 transparent;
    
}

.wrapper-dropdown-3 .dropdown {
  /* Size & position */
    position: absolute;
    top: 140%;
    left: 0px;
    right: 0;
    width:80px;
    /* Styles */
    background: rgba(182,213,246,0.6) ;
    border-radius: inherit;

    font-weight: normal;
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    list-style: none;

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-3 .dropdown:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color:  rgba(182,213,246,0.8) transparent;    
}

.wrapper-dropdown-3 .dropdown:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(182,213,246,0.8) transparent;    
}

.wrapper-dropdown-3 .dropdown li a {
    display: block;
   text-decoration: none;
-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
     border:none;
   padding:3px 3px 3px 10px;
   margin:5px 0 5px 0px;
  outline:none;
  font-family: 'Roboto', sans-serif;
   font-weight: 500;
   font-style: italic;
   font-size: 14px;
   color:#000; 
   width:70px;
}

.wrapper-dropdown-3 span{
display: block;
 border:none;
 background: #fff;
padding: 0px 5px 7px 10px;
   margin:5px 0 0px 0;
   width:70px;
   font-size: 14px;
    
   height:15px;
   outline:none;
   border-radius:12px;
   font-family: 'Roboto', sans-serif;
   font-weight: 200;
   font-style: italic; color:#000; 
   box-shadow:  0 5px 5px rgba(0,0,0,0.15),
    inset 0px 2px 5px rgba(0,0,0,.8);
    border:1px solid rgba(0,0,0,0.6);
}



/* Hover state */

.wrapper-dropdown-3 .dropdown li:hover a {
   background: rgba(222,234,247,.8);  
}

/* Active state */

.wrapper-dropdown-3.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-3 .dropdown,
.no-pointerevents .wrapper-dropdown-3 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-3.active .dropdown,
.no-pointerevents .wrapper-dropdown-3.active .dropdown {
    display: block;
}
