
/* rightnav */
#Rnav {
width: 196px;
text-align:left;
margin:0; 
float:left; 
}



/* new info for floating nav items */ 

#Rnav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 196px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	
	}
	
#Rnav ul li {
	position: relative;
	background: url('themes/deep_interactive/images/navline.gif') repeat-x left bottom; 
	list-style: none;
	padding:0; 
	}
	
li ul {
	position: absolute;
	left: -195px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	background-color:#e7e7e7;
	}

/* Styles for Menu Items */
#Rnav li a {
	display: block;
	text-decoration: none;
	background: #fff; /* IE6 Bug */
	border: 1px solid #ccc; /* IE6 Bug */
	padding: 4px 0 4px 20px; 
	background: url('themes/deep_interactive/images/arrow.gif') no-repeat 10px 12px; 
	color:#0070FF;
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size:10px; 
	font-weight: bold;
 background-color: #E1E1E1; 

	}
	

#Rnav  li a:hover, #Rnav li a.ont-selected:hover {
background: url('themes/deep_interactive/images/arrow2.gif') no-repeat 12px 12px; 
background-color: #4c607e; 
color:#FFFFFF; 
font-family:Verdana, Arial, Helvetica, sans-serif; 
font-size:10px; 
font-weight: bold;
}



	
/* Holly Hack. IE Requirement \*/
* html ul#nav li { float: left; height: 1%; }
* html ul#nav li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */
 
