﻿@media Screen
{
	#DDGSMenu ul { 
	margin: 0; 
	padding: 0; 
	list-style: none;
	width: 150px; /* Width of Menu Items */ 
	border-bottom: 1px solid #ccc; 
	} 

	#DDGSMenu ul li { 
		position: relative; 
	} 

	#DDGSMenu li ul { 
		position: absolute; 
		left: 149px; /*Set 1px less than menu width */ 
		top: 0; 
		display: block; 
	} 

	#DDGSMenu li:hover ul {
		display: block; 
	} 

	#DDGSMenu li:hover>ul { 
		visibility:visible; 
	} 

	#DDGSMenu ul ul {
		visibility:hidden; 
	} 

	/* Fix IE. Hide from IE Mac \*/ 
	* html #DDGSMenu ul li { float: left; height: 1%; } 
	* html #DDGSMenu ul li a { height: 1%; } 
	/* End */ 

	/* Make-up syles */ 

	#DDGSMenu ul, li { 
		margin: 0 0 0 0; 
	} 

	/* Styles for Menu Items */ 
	#DDGSMenu ul a { 
		display: block; 
		text-decoration: none; 
		color: #777; 
		background: #fff; /* IE6 Bug */ 
		padding: 5px; 
		border: 1px solid #ccc; 
		border-bottom: 0; 
	} 

	/* Hover Styles */ 
	#DDGSMenu ul a:hover { 
		color: #E2144A; 
		background: #f9f9f9; 
	} 

	/* Sub Menu Styles */ 
	#DDGSMenu li ul a { 
		text-decoration: none; 
		color: #77F; 
		background: #fff; /* IE6 Bug */ 
		padding: 5px; 
		border: 1px solid #ccc; 
		border-bottom: 0; 
	} 

	/* Sub Menu Hover Styles */ 
	#DDGSMenu li ul a:hover { 
		color: #E2144A; 
		background: #f9f9f9; 
	} 

	/* Icon Styles */ 
	#DDGSMenu ul a.submenu {background:#fff url("r_arrow.gif") no-repeat right; } 
	#DDGSMenu ul a.submenu:hover {background:#f9f9f9 url("r_arrow.gif") no-repeat right;}
}

