﻿/* remove the list style */
#navLeft {
    margin:0; 
    padding:0; 
    list-style:none;
}   
     
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#navLeft li {
    float:left; 
    display:block; 
    position:relative;
    z-index: 1; 
    margin: 0px 0px;
    background-image: url(../images/yellow_grad_02.gif);
	background-repeat: repeat;
    width: 160px;
    border:1px solid #32496C;
    border-left-width: 0;
}

#navLeft li:last-child {
    border-radius: 0 5px 5px 0;
}
         
/* this is the parent menu */
#navLeft li a {
    display:block; 
    padding: 4px 5px 0 5px;
    font-weight:700;  
    height:20px;
    text-decoration:none; 
    color:#32496C; 
    text-align:center; 
}
 
#navLeft li:hover {
    color:#32496C;
}
     
/* you can make a different style for default selected value */
#navLeft a.selected {
    background-color: #FCBE71;
    border-radius: inherit;
}
     
/* submenu, it's hidden by default */
#navLeft ul {
    position:absolute; 
    left: 1px;
    top: 24px;
    display:none; 
    margin:0 0 0 -1px; 
    padding:0; 
    list-style:none;
    text-align: left;
}
         
#navLeft ul li {
    width:160px;
    float:left; 
    border:1px solid #32496C;
    position:relative;
    left: -1px; /*To offset the border*/
    margin-bottom: -1px; /*To offset the border*/
}

#navLeft ul li:last-child {
    border-radius: 0 0 5px 5px;
}
         
/* display block will make the link fill the whole area of LI */
#navLeft ul a {
    display:block;  
    height:15px;
    padding:5px 5px; 
}
         
#navLeft ul a:hover {
    text-decoration:underline;  
}

#navRight {
    margin:0; 
    padding:0; 
    list-style:none;
}   
     
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#navRight li {
    float:right; 
    display:block; 
    position:relative;
    z-index: 1; 
    margin: 0px 0px;
    background-image: url(../images/yellow_grad_02.gif);
	background-repeat: repeat;
    width: 160px;
    border:1px solid #32496C;
    border-right-width: 0;
}

#navRight li:last-child {
    border-radius: 5px 0 0 5px;
}
         
/* this is the parent menu */
#navRight li a {
    display:block; 
    padding: 4px 5px 0 5px;
    font-weight:700;  
    height:20px;
    text-decoration:none; 
    color:#32496C; 
    text-align: right; 
}
 
#navRight li:hover {
    color:#32496C;
}
     
/* you can make a different style for default selected value */
#navRight a.selected {
    background-color: #FCBE71;
    border-radius: inherit;
}
     
#navRight ul li {
    width:160px;
    float:left; 
    border:1px solid #32496C;
    position:relative;
    left: -1px; /*To offset the border*/
    margin-bottom: -1px; /*To offset the border*/
}

#navRight ul li:last-child {
    border-radius: 5px 0 0 5px;
}
         
/* display block will make the link fill the whole area of LI */
#navRight ul a {
    display:block;  
    height:15px;
    padding:5px 5px; 
}
         
#navRight ul a:hover {
    text-decoration:underline;  
}
 
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #navLeft ul {
    margin:0 0 0 -2px;
}

a.CurrentPage
    {
        color: #7A003B;
        font-weight: bold;
        text-decoration: none;
    }

.clearNav
{
    clear: both; 
}

