/*
	Stylesheet for admin navigation bar 
*/

a.adminHome { /* definition of the "Admin Home" class in the <a> tag */
     display: block; /* a tag must be a block */
     width: 106px; /* width of reactive image */
     height: 30px; /* height of reactive image */
     background-image: url(/images/nav_adminhome_unselected.gif); /* source for start image */
     background-repeat: no-repeat;
    }
    
a.adminHome:hover { /* definition of the "Admin Home" class for <a> tag when hovered onto */
     background-image: url(/images/nav_adminhome_mouse-over.gif); /* source for target image */
    } 
    
a.accountList { /* definition of the "Account List" class in the <a> tag */
     display: block; /* a tag must be a block */
     width: 103px; /* width of reactive image */
     height: 30px; /* height of reactive image */
     background-image: url(/images/nav_accountlist_unselected.gif); /* source for start image */
     background-repeat: no-repeat;
    }
a.accountList:hover { /* definition of the "Account List" class for <a> tag when hovered onto */
     background-image: url(/images/nav_accountlist_mouse-over.gif); /* source for target image */
    }                 
    
a.contactAccountList { /* definition of the "Contact Account List" class in the <a> tag */
     display: block; /* a tag must be a block */
     width: 149px; /* width of reactive image */
     height: 30px; /* height of reactive image */
     background-image: url(/images/nav_contactaccountlist_unselected.gif); /* source for start image */
     background-repeat: no-repeat;
    }
a.contactAccountList:hover { /* definition of the "Contact Account List" class for <a> tag when hovered onto */
     background-image: url(/images/nav_contactaccountlist_mouse-over.gif); /* source for target image */
    }
    
a.territoryList { /* definition of the "Territory List" class in the <a> tag */
     display: block; /* a tag must be a block */
     width: 100px; /* width of reactive image */
     height: 30px; /* height of reactive image */
     background-image: url(/images/nav_territorylist_unselected.gif); /* source for start image */
     background-repeat: no-repeat;
    }
a.territoryList:hover { /* definition of the "Territory List" class for <a> tag when hovered onto */
     background-image: url(/images/nav_territorylist_mouse-over.gif); /* source for target image */
    }
    
a.certifiedSolutionProList { /* definition of the "Certified Solution Pro List" class in the <a> tag */
     display: block; /* a tag must be a block */
     width: 172px; /* width of reactive image */
     height: 30px; /* height of reactive image */
     background-image: url(/images/nav_csplist_unselected.gif); /* source for start image */
     background-repeat: no-repeat;
    }
a.certifiedSolutionProList:hover { /* definition of the "Certified Solution Pro List" class for <a> tag when hovered onto */
     background-image: url(/images/nav_csplist_mouse-over.gif); /* source for target image */
    }