/*
		File: 	nav_bottom.css
		Auth:	Creativeink Design Group | web@creativeink.ca
		~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/*---------------------------------------------------------------------------- 
	NAVIGATION SETUP
-----------------------------------------------------------------------------*/
#nav_btm_outerBtm {
	width:100%;
	padding:0;
	margin:0;
}
#nav_btm{
	list-style:none;
	font-weight:bold;
	float:left;
	width:100%;
	margin:0;
	padding:0;
	cursor:pointer;
}
#nav_btm li{
	float:left;
	margin:0;
	padding:0;
	position:relative;
	background:none;
}
#nav_btm a{
	display:block;
	text-decoration:none;
}

/*---------------------------------------------------------------------------- 
	RESET
-----------------------------------------------------------------------------*/
#nav_btm ul, #nav_btm li{
	margin:0;
	padding:0;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}

/*---------------------------------------------------------------------------- 
	DROPDOWN
-----------------------------------------------------------------------------*/
#nav_btm ul, #nav_btm ul ul {
	z-index:100000000 !important;
}
#nav_btm ul{
	background:#ffffff; /* IE7+ (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* Background fully transparent */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen */
}
#nav_btm ul li{
	float:none; /* Inherit width */
	min-width:inherit;
	width:inherit;
}
#nav_btm ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav_btm li:hover ul{ /* Display the dropdown on hover */
	left:0;
}
#nav_btm li:hover ul a{
	text-decoration:none;
}