/****************************
 * Author: TSI Apps (2)
 * Date Created: 21 Oct 2014
 * Date Modified: 02 Dec 2015
 * Coilcraft Header Menu CSS 
 ***************************/
#ccmenu,
#ccmenu ul,
#ccmenu ul li,
#ccmenu ul li a,
#ccmenu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#ccmenu:after,
#ccmenu > ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#ccmenu #menu-button {
	display: none;
}
#ccmenu {
	background:none;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1;
	white-space:nowrap;
	width:700px;
}
#ccmenu > ul > li {
	float: left;
	margin-right:5px;
}
#ccmenu  ul li li {
	z-index:1000000;
}
#ccmenu > ul > li:hover {
	background: #ff0000;
	transition-delay: 0.5s; /* Delay for menu background */
}
#ccmenu > ul > li > a {
	padding: 10px 10px 7px 10px;
	font-size: 13px;
	text-decoration: none;
	text-transform: capitalize;
	color: #000000;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
}
#ccmenu > ul > li:hover > a,
#ccmenu > ul > li.active > a {
  	color: #ffffff !important;
  	transition-delay: 0.5s; /* Delay for menu text */
}
#ccmenu > ul > li.has-sub > a {
	padding-right: 25px;
}
#ccmenu > ul > li.has-sub > a::after {
	font-weight:bold;
	position: absolute;
	top: 14px;
	right: 10px;
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
	content: "";
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
#ccmenu > ul > li.has-sub:hover > a::after {
	border-color: #ffffff;
	transition-delay: 0.5s; /* Delay for menu arrow */
}
#ccmenu ul ul {
	position: absolute;
	left: -9999px;
}
/* */
#ccmenu > ul > li > ul li.has-sub:hover > ul {
	left: auto;
	/* transition-delay: 0.5s; /* Delay for menu arrow */
}
/* */
#ccmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}
#ccmenu ul ul li {
	height: 0;
	-webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
}
/* */
#ccmenu > ul > li > ul li.has-sub:hover > ul > li {
	height: 32px;
	/* transition-delay: 0.5s; /* Delay for menu arrow */
}
/* */
#ccmenu ul ul li a {
	padding: 12px 10px;
	min-width: 160px;
	font-size: 12px;
	background: Gold;
	text-decoration: none;
	color: #444444;
	box-shadow: 1px 1px #d4af37;
  -webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
}
#ccmenu ul ul li:hover > a,
#ccmenu ul ul li a:hover {
	background: #ffff00;
	color: #000000;
}
#ccmenu ul ul li.has-sub > a::after {
	position: absolute;
	top: 13px;
	right: 10px;
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #444444;
	border-right: 1px solid #444444;
  content: "";
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}

#ccmenu ul ul li.has-sub:hover > a::after {
	border-color: #ff0000;
}
@media all and (max-width: 200px) { /* 200px is a hack to prevent mobile type display */
  #ccmenu {
	width: 100%;
  }
  #ccmenu ul {
    width: 100%;
    display: none;
  }
  #ccmenu ul li a,
  #ccmenu ul ul li a {
    width: 100%;
  }
  #ccmenu > ul > li,
  #ccmenu ul ul li a {
    padding: 20px 20px 20px 30px;
    font-size: 12px;
    color: #000000;
    background: none;
  }
  #ccmenu ul ul li:hover > a,
  #ccmenu ul ul li a:hover {
    color: #000000;
  }
  #ccmenu ul ul ul li a {
    padding-left: 40px;
  }
  #ccmenu ul ul,
  #ccmenu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0;
  }
  #ccmenu > ul > li.has-sub > a::after,
  #ccmenu ul ul li.has-sub > a::after {
    display: none;
  }
}