 /*CSS Document */
#menuContainer {
	position: relative;
	float: right;
	height: 40px;
	width: 550px;
}

#menu {
	position: absolute;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-right: 0px;
	height: 60px;
	width: 800px;
	/*overflow: hidden;*/
}

#menu:hover {
	overflow: visible;
}

#menu ul {
	position: absolute;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-left: 0px;
}

#menu a {
	font-size: 14px;
	font-weight: normal;
}

#aboutBtn li, #servicesBtn li, #approvalsBtn li {
	position: relative;
	background: #3F3F3F;
	padding: 0px 15px 0px 15px;
	margin: 0px 0px 0px 0px;
}

#menu #aboutDropdown, #menu #servicesDropdown {
	position: absolute;
	z-index: 45;
	display: none;
	opacity: 0;
}

#menu #aboutDropdown {
	margin: 70px 0px 0px 71px;
}

#menu #servicesDropdown {
	width: 220px;
	margin: 70px 0px 0px 73px;
}

#servicesDropdown a, #aboutDropdown a {
	color: #FFF;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 19px;
	padding: 10px 0px 10px 0px;
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
}

#aboutDropdown li, #servicesDropdown li {
	background-color: #3F3F3F;
	height: 39px;
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
}

#aboutDropdown li div, #servicesDropdown li div {
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
}

#aboutDropdown li:last-child, #servicesDropdown li:last-child {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

#aboutDropdown li:hover, #servicesDropdown li:hover {
	background-color: #FFF;
}

#aboutDropdown li:hover a, #servicesDropdown li:hover a {
	color: #3F3F3F;
}

#servicesDropdown li{
	width: 166px;
}

#servicesDropdown ul {
	margin-left: 180px;
	margin-top: -39px;
	display: block;
	opacity: 0;
	z-index: 45;
	border-left: 2px solid transparent;
	border-bottom-left-radius: 0px;
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
}

#servicesDropdown li:hover ul {
	opacity: 1;
	z-index: 65;
}

#servicesDropdown ul li{
	width: 155px;
	background-color: #FFF;
	color: #3F3F3F;
}

#servicesDropdown ul li:first-child {
	border-top-right-radius: 5px;
}

#servicesDropdown ul li:last-child {
	border-bottom-left-radius: 0px;
}

#servicesDropdown ul li:hover {
	background-color: #3F3F3F;
}

#servicesDropdown ul li:hover a{
	color: #FFF;
}

#bakingDropdown li {
	width: 151px;
}

#blastingDropdown li {
	width: 121px;
}

#cleaningDropdown li {
	width: 59px;
}

#inspectionDropdown li {
	width: 72px;
}

#lubricantDropdown li {
	width: 115px;
}

#passivationDropdown li {
	width: 125px;
}

#platingDropdown li {
	width: 68px;
}

.menuBtn {
	display: block;
	float: left;
	position: relative;
	background: none;
	height: 30px;
	padding: 10px 10px 0px 10px;
	margin: 10px 5px 0px 5px;
	color: #3F3F3F;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
	border-radius: 5px;
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
	
}

.menuBtn:hover{
	background-color: #3F3F3F;
	color: #FFF;		
}

.menuBtnList {
	display: block;
	background: none;
	float: left;
	position: relative;
	height: 50px;
	padding: 10px 10px 0px 10px;
	margin: 10px 5px 0px 5px;
	color: #3F3F3F;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;

}

#aboutBtn:hover .menuBtnList, #servicesBtn:hover .menuBtnList {
	background-color: #3F3F3F;
	color: #FFF;
	padding-bottom: 0;
	margin-bottom: 0;
	height: 50px;	
}

.menuBtnList div {
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;
	-webkit-transition: all .5s ease;
  	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
}

#aboutBtn:hover .menuBtnList div, #servicesBtn:hover .menuBtnList div {
	margin-top: 25px;

}

#aboutBtn:hover .menuBtnList .arrow-down, #servicesBtn:hover .menuBtnList .arrow-down{
	border-top: 5px solid #FFF;
}

#servicesBtn #servicesDropdown li:hover .arrow-right {
	border-left: 5px solid #3F3F3F;
}

.icon-arrow {
	float: right;
}

/* ***************************FIREFOX ADJUSTMENTS****************************** */

@-moz-document url-prefix() {

	#menu #aboutDropdown {
		margin: 70px 0px 0px 73px;
	}

	#menu #servicesDropdown {
		margin: 70px 0px 0px 75px;
	}
}