#menuBar
{
    position:fixed;
    top: 0;
    width: 100%;
	z-index: 100;
}

#menubar_container {
	z-index: 100;
}

.menu_bar {
    margin: 0;
    padding: 0;
    display: inherit;
}

.menu_bar table {
    display: table;
    border-collapse: separate;
    border-spacing: 0px;
    border-color: gray;
}

.menuBar,
.menuBar ul,
.menuBar li,
.menuBar a {
  border: none;
  line-height: 0.3;
  margin: 0;
  padding: 0;
}
.menuBar {
  height: 28px;
  display: block;
  border: 1px solid;
  width: auto;
  border-color: #080808;
  margin: 0;
  padding: 0;
  border-right: 0;
}
.menuBar > ul {
  list-style: inside none;
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.menuBar > ul > li {
  list-style: inside none;
  float: left;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  white-space:nowrap;
}
.menuBar.align-center > ul {
  text-align: center;
}
.menuBar.align-center > ul > li {
  float: none;
  margin-left: -3px;
}
.menuBar.align-center ul ul {
  text-align: left;
}
.menuBar.align-center > ul > li:first-child > a {
  border-radius: 0;
}
.menuBar > ul > li > a {
  outline: none;
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  border-right: 1px solid gray;
  color: #ffffff;
  padding: 12px 20px;
}
.menuBar > ul > li:first-child > a {
  border-radius: 5px 0 0 5px;
}
.menuBar > ul > li > a:after {
  content: "";
  position: absolute;
  border-right: 1px solid;
  top: -1px;
  bottom: -1px;
  right: -2px;
  z-index: 99;
  border-color: #3c3c3c;
}
.menuBar ul li.has-sub:hover > a:after {
  top: 0;
  bottom: 0;
}

.menuBar > ul  li > ul li.has-sub > a:before {
  content: "";
  position: absolute;
  top: 11px;
  right: 6px;
  border: 5px solid transparent;
  border-top: 5px solid #ffffff;
  -webkit-transform: rotate(-90deg);
}

.menuBar > ul > li.has-sub:hover > a:before {
  top: 19px;
}
.menuBar > ul > li.has-sub:hover > a {
  padding-bottom: 14px;
  z-index: 999;
  border-color: #3f3f3f;
}
.menuBar ul li.has-sub:hover > ul,
.menuBar ul li.has-sub:hover > div {
  display: block;
}
.menuBar > ul > li.has-sub > a:hover,
.menuBar > ul > li.has-sub:hover > a {
  background: #8E044F;
  border-color: #3f3f3f;
}
.menuBar ul li > ul,
.menuBar ul li > div {
  display: none;
  width: auto;
  position: absolute;
  top: 29px;
  background: #8E044F;
  border-radius: 0 0 5px 5px;
  z-index: 999;
  padding: 10px 0;
}
.menuBar ul li > ul {
  min-width: 200px;
}
.menuBar ul ul ul {
  position: absolute;
}
.menuBar ul ul li:hover > ul {
  left: 100%;
  top: -10px;
  border-radius: 5px;
}
.menuBar ul li > ul li {
  display: block;
  list-style: inside none;
  position: relative;
  margin: 0;
  padding: 0;
}
.menuBar ul li > ul li a {
  outline: none;
  display: block;
  position: relative;
  font: 10pt Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 8px 20px;
}
.menuBar,
.menuBar ul ul > li:hover > a,
.menuBar ul ul li a:hover {
  background: #3c3c3c;
  background: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3c3c3c), color-stop(100%, #222222));
  background: -webkit-linear-gradient(top, #5d0133 0%, #5d0133 100%);
  background: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);
  background: -ms-linear-gradient(top, #3c3c3c 0%, #222222 100%);
  background: linear-gradient(top, #3c3c3c 0%, #222222 100%);
}
.menuBar > ul > li > a:hover {
  background: #8E044F;
  color: #ffffff;
}
.menuBar ul ul a:hover {
  color: #ffffff;
}
.menuBar > ul > li.has-sub > a:hover:before {
  border-top: 5px solid #ffffff;
}

/*new css*/

.menuBar ul > li.info {
  float: right;
}

.menuBar ul > li.info > a {
  border-radius: 0 5px 5px 0 ;
}

.menuBar > ul > li.info > a:after { 
  content: "";
  position: absolute;
  border-left:1px solid;
  border-right: 0px;
  top: -1px;
  bottom: -1px;
  left: -2px;
  z-index: 99;
  border-color: #3c3c3c;
}

/*Disable*/

.menuBar > ul > li > a.disable {
  color: rgb(161, 161, 161);
  pointer-events: none;
  cursor: default;
  background: #8E044F;
}

.menuBar ul li > ul li a.disable {
  color: rgb(161, 161, 161);
  pointer-events: none;
  cursor: default;
  background: #8E044F;
}

.topBar {
	background: #5d0133;
	list-style-type: none;
	height: 30px;
}

.topBar li a {
	padding: 7px 15px;
	display: block;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	font: 12px arial, verdana, sans-serif;
	border-right: 1px solid #75809a;
}

.menuBar_right,
.menuBar_right ul,
.menuBar_right li,
.menuBar_right a {
  border: none;
  line-height: 0.3;
  margin: 0;
  padding: 0;
}