/* HORIZONTAL / HORIZ. PERSISTENT CSS --------------- */
ul.menubeanh,
ul.menubeanh-persistent {
  list-style: none;
  position: relative;
  overflow: visible;
}
ul.menubeanh,
ul.menubeanh ul,
ul.menubeanh-persistent,
ul.menubeanh-persistent ul {
  padding: 0;
  margin: 0;
  list-style: none;
  /* background-color: #fff;  IE Requires a background color. */
}
ul.menubeanh li,
ul.menubeanh-persistent li {
  float: left;
  position: relative;
  list-style: none;
  /*
  	width: 8em;
	overflow: visible;
	*/
}
ul.menubeanh li ul,
ul.menubeanh-persistent li ul {
  display: none;
  position: absolute;
  top: 1.2em; /* IE */
  left: 0; /* IE */ /* background-color: #fff;  IE Requires a background color. */
}
ul.menubeanh > li > ul,
ul.menubeanh-persistent > li > ul {
  top: auto; /* Non-IE */
  left: auto; /* Non-IE */
}
/* (sub-)submenus */
ul.menubeanh ul,
ul.menubeanh ul ul,
ul.menubeanh ul ul ul,
ul.menubeanh-persistent ul,
ul.menubeanh-persistent ul ul,
ul.menubeanh-persistent ul ul ul {
  position: absolute;
  top: 0;
  left: 95%;
}
/* Interactive lines: show/hide menus */
ul.menubeanh li.over ul ul,
ul.menubeanh li.over ul ul ul,
ul.menubeanh-persistent li.over ul ul,
ul.menubeanh-persistent li.over ul ul ul {
  display: none;
}
ul.menubeanh li.over ul,
ul.menubeanh ul li.over ul,
ul.menubeanh ul ul li.over ul,
ul.menubeanh-persistent li.over ul,
ul.menubeanh-persistent ul li.over ul,
ul.menubeanh-persistent ul ul li.over ul {
  display: block;
}

/* VERTICAL CSS --------------- */
ul.menubeanv,
ul.menubeanv-persistent,
ul.menubeanv ul,
ul.menubeanv-persistent, ul {
  /* background-color: #fff;  IE requires a background color. */
}
ul.menubeanv li,
ul.menubeanv-persistent li {
  position: relative;
  /* background-color: #fff;  IE requires a background color. */
}
ul.menubeanv li ul {
  display: none;
  position: absolute;
  top: 2px; /* IE */
  left: 6em; /* IE */ 
  /* background-color: #fff;  IE requires a background color. */
}
ul.menubeanv li:hover ul,
ul.menubeanv li.over ul {
  display: block;
}

ul.menubeanv-persistent li.mi-parent {
  cursor: pointer;
}
ul.menubeanv-persistent li ul {
  display: none;
}
ul.menubeanv-persistent li.over ul {
  display: block;
}
/*
Item Name : Circular Countdown jQuery Plugin
Item URI : http://codecanyon.net/item/circular-countdown-jquery-plugin/3761921
Author URI : http://codecanyon.net/user/Pixelworkshop/
Version : 1.21
*/
/*  _______________________________________

	COUNTDOWN
    _______________________________________  */
#countdown {
  display: block;
  width: 480px;
  height: 120px;
  overflow: hidden;
}

/*
   IMPORTANT
   The exact same width must be set to the #countdown_container and to the canvas
   element #circular_countdown in the HTML markup !
*/
#countdown_container {
  height: 100px;
  width: 480px;
  display: block;
  overflow: hidden;
  /*
  Additional styling
  */
}

#countdown_timer,
#circular_countdown {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

#countdown_timer ul,
#countdown_clock {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}

#circular_countdown_days,
#circular_countdown_hours,
#circular_countdown_minutes,
#circular_countdown_seconds {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 120px;
  margin: 0;
}

#countdown_timer {
  z-index: 2;
  width: 480px;
}

#countdown_timer li {
  list-style: none;
  padding: 8px 10px;
  margin-top: 28px;
  display: inline-block;
  vertical-align: top;
  width: 120px;
  color: #333333;
  font-size: 9px;
  position: absolute;
  top: 0;
  text-align: center;
  text-transform: uppercase;
}

#countdown_timer li.days {
  left: -10px;
}

#countdown_timer li.hours {
  left: 110px;
}

#countdown_timer li.minutes {
  left: 230px;
}

#countdown_timer li.seconds {
  left: 350px;
}

#countdown_timer li em {
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  font-style: normal;
  padding: 0;
}

