/*
 * 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:#B7B7B7;
		font-size:1em;
		/* padding-left:15px; */
	}
	
	ul.pde a:hover {
		color: #fff;
	}

	ul.pde li.parent > a:hover:first-child {
		background-color: transparent;
	}
	
	ul.pde,ul.pde li{
		margin:0;
		padding:0;
		list-style:none;
	}
	ul.pde{
		text-align:left;
		font-size:1em;
		margin:.5em auto;
		/* 
		background:#ccc;
		width:80%; */
	}
	ul.pde ul{
		margin:0 0 0 1em;
		padding:0;
	}
	ul.pde li{
		line-height:20px;
		/*padding:.2em 0;
		margin-left: -10px;
		padding-left:15px;*/
	}
/* dynamically added to LIs with nested ULs */
	ul.pde li.parent{
		padding-left:-10px;
	}
	ul.pde li.parent img{
		border:none;
		/* padding-right:5px; */
		margin-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{
               display: none;
       }

/* The class to show nested ULs */
       .show{
               display: block;
       }
