/* Following styles will be dynamically load when the use is not logged in*/

#nav li a {
    background:transparent url(/images/nav1.gif) repeat scroll 0 0;
    display:block;
    font-size:1%;
    height:36px;
    overflow:hidden;
    position:absolute;
    text-indent:-9999px;
    top:0;
}

li#homeowners a {
	left:0;
	width:126px;
}
li#professionals a {
	left:126px;
	width:224px;
	background-position:-126px 0;
}
li#contractors a {
	left:350px;
	width:131px;
	background-position:-350px 0;
}
/* hover states */
li#homeowners a:hover {
	background-position:0 100%;
}
li#professionals a:hover {
	background-position:-126px 100%;
}
li#contractors a:hover {
	background-position:-350px 100%;
}
/* you-are-here navigation marker */
li#homeowners.current a {
	background-position:0 -36px;
}
li#professionals.current a {
	background-position:-126px -36px;
}
li#contractors.current a {
	background-position:-350px -36px;
}
