﻿@charset "UTF-8";
/* Some stylesheet reset */
#cssmenu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1;
}
/* The container */
#cssmenu > ul {
  display: block;
  position: relative;
  width:100%;
  border-top:1px solid black;
  border-bottom:1px solid black;
  z-index:10000;
}
#cssmenu > ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
/* General link styling */
#cssmenu > ul li a {
  /* Layout */

  display: block;
  position: relative;
  margin: 0;
  border-top: 1px solid #111111;
  border-bottom: 1px solid #474747;
  border-right:1px solid black;
  border-left:1px solid black;
  padding: 1px 10px 7px 3px;

  /* Typography */
  font-family: calibri,verdana,tahoma;
  color: #cccccc;
  text-decoration: none;
  text-shadow: 0 1px 1px #000;
  font-size: 12px;
  text-align:left;
  /* Background & effects */

  background: #505050;
  background: -webkit-linear-gradient(#505050,#111111);
  background: -moz-linear-gradient(#505050,#111111);
  background: linear-gradient(#505050,#111111);

}

/* The hover state of the menu/submenu links */
#cssmenu > ul li > a:hover,
#cssmenu > ul li:hover > a {
  color: black;
  text-shadow: 0 0 3px white;
  background: silver;
  background: -webkit-linear-gradient(silver, gray);
  background: -moz-linear-gradient(silver, gray);
  background: linear-gradient(silver, gray);
  border-color: black;
  -moz-box-shadow: 4px 4px 5px #333;-webkit-box-shadow: 4px 4px 5px #333;box-shadow: 4px 4px 5px #333;


}
/* The arrow indicating a submenu */
#cssmenu > ul .has-sub > a::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */

  border: 4px solid transparent;
  border-left: 4px solid #cccccc;
}
/* The same arrow, but with a darker color, to create the shadow effect */
#cssmenu > ul .has-sub > a::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 0px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */

  border: 4px solid transparent;
  border-left: 4px solid #000;
}
/* Changing the color of the arrow on hover */
#cssmenu > ul li > a:hover::after,
#cssmenu > ul li:hover > a::after {
  border-left: 4px solid white;
}
#cssmenu > ul li > a:hover::before,
#cssmenu > ul li:hover > a::before {
  border-left: 4px solid black;
}
/* THE SUBMENUS */
#cssmenu > ul ul {
  position: absolute;
  left: 100%;
  top: -9999px;
  padding-left: 2px;
  opacity: 0;
  width: 170px;
  /* The fade effect, created using an opacity transition */

  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
-moz-box-shadow: 4px 4px 5px #222;-webkit-box-shadow: 4px 4px 5px #222;box-shadow: 4px 4px 5px #222;

}
/* Showing the submenu when the user is hovering the parent link */
#cssmenu > ul li:hover > ul {
  top: 0px;
  opacity: 1;
}
