@charset 'UTF-8';
/* Some stylesheet reset */
#cssmenu
{
    position: relative;
    background-color: #f8f8f8;
    border: 1px solid #d7d7d7;
    border-top: none;
}
/* The container */
#cssmenu > ul {
 list-style: none;
    width: 100%;
}
/* The list elements which contain the links */
#cssmenu > ul li {
     display: block;
     white-space: revert;
    -webkit-transition: background .2s;
    transition: background .2s;
    z-index: 100;
    padding: 5px 10px;
	line-height: 30px;
}
.cate_index{
    width: 23%;
    float: left;
}
#cssmenu ul .has_child{
	background: url(../img/arrowd.png) no-repeat right center;
	background-size: 20px;
}
#cssmenu ul .has_child:hover{
	background: url(../img/arrow.png) no-repeat right center;
    background-size: 20px;
}
#cssmenu > ul > li > a{
    font-size: 16px;
    text-transform: uppercase;
    color: #323232;
    padding-left: 5px;
}
#cssmenu > ul li a:hover{
    color: #FF8800;
    text-decoration: none;
}
#cssmenu .lv2 .lv2_li{
    width: 200px;
    float: left;
}
/* Rounded corners for the first link of the menu/submenus */
#cssmenu .lv2 .lv2_li a{
	text-transform: capitalize;
	font-size: 15px;
    background: url(../img/icon_menu_blue.png) 7px 5px no-repeat;
    padding: 1px 0 5px 0px;
    line-height: 20px;
    color: #FF8800;
    font-weight: bold;
}
#cssmenu .lv2 .lv2_li a:hover
{
    color: #b82400;
    font-weight: bold;
}
/* The arrow indicating a submenu */
#cssmenu > ul .has-sub > a::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 10px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */
  border: 4px solid transparent;
  border-left: 4px solid #e4433c;
  
}
/* The same arrow, but with a darker color, to create the shadow effect */
#cssmenu > ul .has-sub > a::before {
  content: '';
  position: absolute;
  top: 17px;
  right: 10px;
  width: 0px;
  height: 0px;
  /* Creating the arrow using borders */
  border: 4px solid transparent;
  border-left: 4px solid #fff;
  
}
/* Changing the color of the arrow on hover */
#cssmenu > ul li > a:hover::after,
#cssmenu > ul li:hover > a::after {
  border-left: 4px solid #fff;
}
#cssmenu > ul li > a:hover::before,
#cssmenu > ul li:hover > a::before {
  border-left: 4px solid rgba(0, 0, 0, 0.25);
}
/* THE SUBMENUS */
#cssmenu > ul > li > ul {
	height: 100%;
	background: #fff;
	border: 1px solid #FF6B00;
	position: absolute;
	left: 100%;
	top: -9999px;
	opacity: 0;
	min-width: 840px;
	margin-top:0px;
	box-shadow: 0 0 15px #BCBCBC;
	/* 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;
}
.lv2_menu {
    /*min-width: 800px;*/
    height: auto;
    background: #fff;
    padding: 0px;
    position: absolute;
    z-index: 1000;
}
/* Showing the submenu when the user is hovering the parent link */
#cssmenu > ul li:hover > ul {
	top: 0px;
	opacity: 1;
	z-index: 1000;
}
.lv3 a
{
    padding-left: 15px !important; ;
    color: #000000 !important;
    font-weight: normal !important;
    line-height: 15px !important;
}
.lv3 a:hover,.lv3 li:hover
{
    color: #FF8800 !important;
    font-weight: normal !important;
}
