/*
 * PureDOMExplorer Demo styles 
 * written by Chris Heilmann 
 * More at http://onlinetools.org/tools/puredom/
 */
	
	ul.pde a:link,
	ul.pde a:visited,
	ul.pde a:hover,
	ul.pde a:active{
		text-decoration:none;
		color:#fff;
	}
ul.pde a:hover {
		text-decoration: none;
		color:#000;
	}
	ul.pde,ul.pde li{
		margin:0;
		padding:0;
		list-style: none;
	}
	ul.pde{
		text-align:left;
		font-size: 10px;
		margin: 8px 0 0 0;
		/* margin:.5em auto;*/
		background: #B33331;
/* 		width:80%;*/
	}
	ul.pde ul{
		margin:0 5 0 5;
		padding:5 0 0 0;
	}
	ul.pde li{
		line-height: 10px;
		padding: 0 0 5px 10px;
		margin: 0 5 0 0px;
	}
/* dynamically added to LIs with nested ULs */
	ul.pde li.parent{
		padding: 5 0 0 5;
	}
	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:0;
	}
/* 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;
       }

