/*
 * PureDOMExplorer Demo styles 
 * written by Chris Heilmann 
 * More at http://onlinetools.org/tools/puredom/
 */
	

	ul.pde a{
	text-decoration:none;
	color: #4b4b4b;
	}
	ul.pde a:hover{
		text-decoration:none;
		color: #dd0000;
		font-weight: bold;
	}
	ul.pde, ul.pde li{
	font-size: 12px;
	margin:0;
	padding:0;
	list-style:none;
	}
	ul.pde{
	text-align:left;
	margin-left: 30px;
	padding: 10px 0 10px 0;
	}
	ul.pde li{
	line-height:14px;
	padding:0px 0px 5px 20px;
	margin:0;
	background-image: url(../images/bullet_menu.gif);
	background-repeat: no-repeat;
	background-position: 0px 3px;
	}
	ul.pde ul{
	margin: 0;
	padding:1px 0 1px 0;
	font-size: 10px;
	}
	ul.pde ul li{
	background-image: url(../images/bullet_submenu.gif);
	margin: 0 0 0 3px;
	padding:0px 0px 3px 10px;
	background-repeat: no-repeat;
	background-position: 0px 5px;
	}
	
/* dynamically added to LIs with nested ULs */
	ul.pde li.parent{
		padding-left:15px;
		margin: 0;
	}
	ul.pde li.parent img{
		border:none;
		padding-right:5px;
	}
/* dynamically added to LIs with nested ULs and STRONG elements in them */
	ul.pde li.current li{
		padding-left:12px;
	}
/* The class to hide nested ULs */
       .hide{
               position:absolute;
               top:0;
               left:-4000px;
       }

/* The class to show nested ULs */
       .show{
               position:static;
               display: table;
               top:0;
               left:1em;
       }

