@charset "UTF-8";
/* Some stylesheet reset */
#infomenu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1;
}
/* The container */
#infomenu > ul {
  display: block;
  position: relative;
  width:100%;
  border-top:1px solid black;
  border-bottom:1px solid black;
}
#infomenu > ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
/* General link styling */
#infomenu > ul li a {
  /* Layout */

  display: block;
  position: relative;
  margin: 0;
  border-top: 1px solid darkred;
  border-bottom: 1px solid darkred;

  padding: 2px 10px 5px 2px;

  /* Typography */
  font-family: verdana,tahoma;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px 1px #000;
  font-size: 10px;
  text-align:center;
  /* Background & effects */

  background: red;
  background: -webkit-linear-gradient(#ff494d,#ac0004);
  background: -moz-linear-gradient(#ff494d,#ac0004);
  background: linear-gradient(#ff494d,#ac0004);

}

/* The hover state of the menu/submenu links */
#infomenu > ul li > a:hover,
#infomenu > ul li:hover > a {
  color: white;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  background: black;
  background: -webkit-linear-gradient(#888,#222);
  background: -moz-linear-gradient(#888,#222);
  background: linear-gradient(#888,#222);
  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 */
#infomenu > ul .has-sub > a::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 1px;
  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 */
#infomenu > ul .has-sub > a::before {
  content: "";
  position: absolute;
  top: 7px;
  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 */
#infomenu > ul li > a:hover::after,
#infomenu > ul li:hover > a::after {
  border-left: 4px solid white;
}
#infomenu > ul li > a:hover::before,
#infomenu > ul li:hover > a::before {
  border-left: 4px solid black;
}
/* THE SUBMENUS */
#infomenu > 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 */
#infomenu > ul li:hover > ul {
  top: 0px;
  opacity: 1;
}
