/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px 0px;
	height:29px;
	width:722px;
	margin:0px 0px;
	background-image:url(/images/Nav_Background.jpg);
	background-repeat:repeat-x;
	
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
}

div#listmenu ul li.home{
	background-image:url(/images/Nav_Home.jpg);
	background-position:left;
	width:70px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(/images/Nav_Home_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.about{
	background-image:url(/images/Nav_AboutUs.jpg);
	background-position:left;
	width:94px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.about:hover  {
	background-image:url(/images/Nav_AboutUs_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.services{
	background-image:url(/images/Nav_TypesOfLoans.jpg);
	background-position:left;
	width:146px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.services:hover  {
	background-image:url(/images/Nav_TypesOfLoans_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.started{
	background-image:url(/images/Nav_GettingStarted.jpg);
	background-position:left;
	width:121px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.started:hover  {
	background-image:url(/images/Nav_GettingStarted_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.faq{
	background-image:url(/images/Nav_FAQ.jpg);
	background-position:left;
	width:60px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.faq:hover  {
	background-image:url(/images/Nav_FAQ_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.contact{
	background-image:url(/images/Nav_ContactUs.jpg);
	background-position:left;
	width:104px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(/images/Nav_ContactUs_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.apply{
	background-image:url(/images/Nav_ApplyOnline.jpg);
	background-position:left;
	width:127px;
	height:29px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.apply:hover  {
	background-image:url(/images/Nav_ApplyOnline_Over.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}



/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	/*color:#6993bc;*/
	color:#104e99;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:5px;
	font-size:12px;
	font-weight:bold;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:white;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	padding:0px;
	border-left:1px solid #b6c0d5;
	border-right:1px solid #b6c0d5;
	border-bottom:1px solid #b6c0d5;
	z-index:99;
}


div#listmenu ul li ul.about{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:155px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.services{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:176px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.started{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:135px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.faq{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:79px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.contact{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:134px;
	margin-top:29px;
	padding:0px;
}
div#listmenu ul li ul.apply{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:132px;
	margin-top:29px;
	padding:0px;
}

div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	border-top:0px;
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#e6ebf4;
}

div#listmenu ul li ul li:hover {
	background-color:#b6c0d5;
}

