/* CSS Document */

/*********************************/
/*          NAVIGATION
/*********************************/

#nav  {
position:relative;
float:right;
width:590px;
margin:-95px 0 0 0;
z-index:99;
clear:right;
}

#nav ul {
margin:0;

}

#nav ul li {
background:url(../images/navLeftdoor.png) no-repeat left top;
float: left;
min-width:40px;
line-height:80px;/*brings text down from top edge of buttons*/
list-style: none;
padding:0 0px 0 12px;/*must match "#nav ul li:hover" */
}

/*CSS Sprite for 'border' seperator*/
#nav ul li a {
background:url(../images/navRightdoor.png) no-repeat right top;
position:relative;
display: block;
height: 95px;
text-align:center;
text-decoration: none;
text-transform:uppercase;
font-size:14px;
font-weight:normal;
color:#3e4854;
outline:none;
padding:0 29px 0 13px;
margin:0 -18px 0 0;/*compensates for shadows*/

}

/*sliding doors technique on hover*/
#nav ul li:hover {
background:url(../images/navLeftdoor.png) no-repeat left top;
background-position:0% -95px;
padding:0 0 0 12px;/*width of left door image-will not display left door if altered*/
margin:0;
}

/*sliding doors technique on hover*/
#nav li:hover a {
background-position:100% -95px;
color:#2c5f67;
line-height:95px;
}
