/*
PureDOMExplorer Demo styles
written by Chris Heilmann,
adapted for use by Jayden Seric.
More at http://onlinetools.org/tools/puredom/
*/
ul.pde {
   margin: 0;
   padding: 0;
}
ul.pde ul {
   margin: 0;
   padding: 0;
   padding-bottom: 12px;
   padding-left: 19px;
}
ul.pde li {
   margin: 0;
   padding-left: 17px;
   list-style: none;
   list-style-image: none;
}
/* dynamically added to LIs with nested ULs */
ul.pde li.parent {
   padding-left: 0;
}
ul.pde li.parent img {
   padding-right: 5px;
   vertical-align: text-bottom;
}
/* 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 {
   position: static;
   display: table;
   top: 0;
   left: 25px;
}
