@charset "UTF-8";
/* CSS Document */




#menu_plumbing{
	font-family: Arial,Verdana,sans-serif;

	color: #fff;
	list-style: none;
	font-weight: bold;
	width: 100%;
	padding: 0px;
	margin: 0px;
}
#menu_plumbing li{
	/*float:right;
	margin-right:10px;
	 */ 
	position: relative;
	line-height: 20px;
}
#menu_plumbing a{
	
	display:block;
	/*padding:5px;*/
	text-decoration:none; 
	font-weight: bold;
	font-family: arial;
	font-style: normal;
	font-size: 80%;
	color: #fff;
	
	padding: 2px 0px;
	border-radius: 5px;
}
#menu_plumbing a:hover{
	color:#fff;
	background:#6b0c36;
	text-decoration:underline;
	
}

/*--- DROPDOWN ---*/
#menu_plumbing ul{
	background-color:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	margin:0px;
	padding:0px;
	
}
#menu_plumbing ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	
}

#menu_plumbing ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	
}
#menu_plumbing li:hover ul{ /* Display the dropdown on hover   sub menu main   */
	left:0; /* Bring back on-screen when needed */
	width:180px;
	

}
#menu_plumbing li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background-color: #F7941D;
	text-decoration: none;
	color: #fff;
	
}
#menu_plumbing li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */

	text-decoration: none;
	width: 200px;
	padding:4px 2px 4px 2px;
	background: #fff;
	color: #666;
	text-align: left;
	border-radius: 1px;
	/*list-style-type: none;*/	
	border-left: 1px solid #F7F7F7;
	border-top: 1px solid #F7F7F7;
	border-right: 1px solid #E5E5E5;
	/*box-shadow: 3px 3px 8px #818181;
	-webkit-box-shadow: 3px 3px 8px #818181;
	-moz-box-shadow: 3px 3px 8px #818181;	*/
}

#menu_plumbing ul li ul{
    position:absolute;
    display:none;
	margin:0px 0px 0px 6px;
	
}
#menu_plumbing ul li:hover ul{
	left:200px;
    top:0px;
    display:block;
	list-style-type: none;	

}

.glob_rec{
	font-size: 11px;
	margin: 0px 4px 0px 0px;
	text-decoration: none;
	padding: 2px 2px 2px 6px;
	background: #ED6E21;
	color: #fff;
	text-align: left;
	border-radius: 1px;
	border-left: 1px solid #F7F7F7;
	border-top: 1px solid #F7F7F7;
	border-right: 1px solid #E5E5E5;
	box-shadow: 3px 3px 8px #818181;
	-webkit-box-shadow: 3px 3px 8px #818181;
	-moz-box-shadow: 3px 3px 8px #818181;
	width:195px
	}

#menu_plumbing li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	/*background: #F0F0F0;*/
	background-color: #EBEFF3;
}
