

		   /* Tree look */
            ul.tm_tree
			{
                /*overflow:hidden;*/
				width:100%;
                height:100%;
				margin-left:0px;
				padding-left:0px;
			} 
           
            /* Item look */
            ul.tm_tree  li 
			{ 
				list-style: none;
			} 
			
			/* Item indent */
			ul.tm_tree ul, ul.tm_tree li 
			{ 
                margin-left:5px;
                padding:2px 2px 2px 0px;
			}
			
			/* Create space for the icons */
			ul.tm_tree li .bullet 
			{ 
                padding-left:15px; 
                padding-top:4pxpx;                 
                padding-bottom:4px;
			}
    
   
			/* Show "bullets" in the links, depending on the class of the LI that the link's in */
            ul.tm_tree li.tm_opened
			{ 
				cursor: pointer; 
				font-weight: bold;
			}
   
			ul.tm_tree  li.tm_closed
			{ 
				cursor: pointer; 
				font-weight:bold;      
			}
   
			ul.tm_tree  li.tm_bullet 
			{ 
				cursor: default; 
			}
			
			/* Sublists are visible or not based on class of parent LI */
			ul.tm_tree li.tm_opened ul { display: block; }
			ul.tm_tree li.tm_closed ul { display: none; }
			
			/* Format menu items differently depending on what level of the tree they are in */
			ul.tm_tree li a {
                font-family: arial;
                font-size: 11px;
                font-weight:bold;
                text-decoration:none;
                color: #31383B;
            }
			
            ul.tm_tree li ul li a { font-size: 10px; }
			ul.tm_tree li ul li ul li a { font-size: 10px; }
			ul.tm_tree ul li ul li ul li li a { font-size: 10px; }
			
            /* the selected node */
			ul.tm_tree li.tm_selected a {
                color:red;
            }
            /* reset the subnodes of a selected node  */
            ul.tm_tree li.tm_selected ul li a 
            { 
                color:#31383B; 
            } 	
            
            /* bullet nodes are nodes without children */
            ul.tm_tree li.tm_bullet a
            {
                font-style: italic;
            }

    