

		   /* Tree look */
            ul.tm_tree
			{
                /*overflow:hidden;*/
				width:100%;
                height:100%;
				margin-left:0px;
                padding-top:10px;
				padding-left:0px;
    

			} 
           
            /* Item look */
            ul.tm_tree  li 
			{ 
				list-style: none;

			} 
			
			/* Item indent */
			ul.tm_tree ul, ul.tm_tree li 
			{ 
                margin-left:0px;
                padding:2px 2px 2px 0px;
                
			}
			
			/* Create space for the icons */
			ul.tm_tree li .bullet 
			{ 
                padding-left:0px; 
                padding-top:2px;                 
                padding-bottom:2px;
                
			}
    
   
			/* Show "bullets" in the links, depending on the class of the LI that the link's in */
            ul.tm_tree li.tm_opened .bullet 
			{ 
				cursor: pointer; 
			}
            
            li.tm_opened
            {
                cursor: pointer;
                color:#000000; 
            }
            
            li.tm_bullet
            { 
                color:#000000; 
            }
            
            li.tm_closed
            {
                 
                color:#000000; 
            }
            
            li.tm_selected  
            {

               cursor: pointer; 
            }  
   
			ul.tm_tree  li.tm_closed  .bullet 
			{ 
				cursor: pointer; 
           
			}
   
			ul.tm_tree  li.tm_bullet  .bullet 
			{ 
				cursor: default;
     
			}
            
            ul.tm_tree  li.tm_selected 
			{ 
    
			}
			
			/* 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: 12px; text-decoration:none; color: #000000; }
			
            ul.tm_tree li ul li a { font-size: 12px;  color: #5c6264; padding-left: 10px; }
			ul.tm_tree li ul li ul li a { font-size: 10px;  color: #5c6264; padding-left: 20px; }
			ul.tm_tree ul li ul li ul li li a { font-size: 10px; }
			
				
    