/* Put this inside a @media qualifier so Netscape 4 ignores it */

@media screen, print 
{ 
	/* Turn off list bullets */
	ul.MakeTree li {
	list-style: none;
	}
	
	/* Control how "spaced out" the tree is */
	ul.MakeTree, ul.MakeTree ul, ul.MakeTree li{
	padding-left:0px;
	}
	
	/* Provide space for our own "bullet" inside the LI */
	ul.MakeTree li .Bullet{
	padding-left: 0px;
	}
	
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	
	ul.MakeTree  li.LIOpen .Bullet{
	cursor: pointer;
	/*background: url(make_tree/make_tree_pictures/minus.gif)  center left no-repeat;*/
	padding-bottom:0px;
	}
	
	ul.MakeTree li.LIClosed .Bullet {
	cursor: pointer;
	/*background: url(make_tree/make_tree_pictures/plus.gif) center left no-repeat;*/
	padding-bottom:0px;	
	}
	
	ul.MakeTree li.LIBullet .Bullet{
	cursor: default;
	/*background: url(make_tree/make_tree_pictures/bullet.gif) center left no-repeat;*/
	padding-bottom:0px;
	}
	
	ul.MakeTree li.LIBulletSelected .Bullet{
	cursor: default;
	/*background: url(make_tree/make_tree_pictures/checked.gif) center left no-repeat;*/
	padding-bottom:0px;
	}
	
	/* Sublists are visible or not based on class of parent LI */
	ul.MakeTree  li.LIOpen ul{
	display: block;
	padding-left: 0px;
	}
	
	ul.MakeTree  li.LIClosed  ul {
	display: none;
	}
	
	/* Format menu items differently depending on what level of the tree they are in */
	
	ul.MakeTree, ul.MakeTree  li ul, ul.MakeTree  li ul li ul {
	margin:0px;
	padding:0px;
	border:0px;
	}
	
	ul.MakeTree  li{
	text-align:left;
	margin-bottom:1px;
	}
	
	ul.MakeTree  li a{
	width:170px;
	font:12px Arial, Helvetica, sans-serif;
	display: block;
	padding:10px 30px 10px 30px;
	color: #5c3914;
	text-decoration: none;
	background:url(../Images/button_menu.jpg);
	background-repeat:repeat;
	margin-bottom:1px;
	
	}
	
	ul.MakeTree  li a:hover{
	color:#f5b138;
	background:url(../Images/button_up.jpg);
	background-repeat:repeat-y;
	text-decoration: none;
	}
	
	ul.MakeTree  li ul li{
	text-align:left;
	list-style-type:none;
	width:230px;
	margin:0px;
	padding:0px;
	border:0px;
	}
	
	ul.MakeTree  li ul li a{
	width:170px;
	font:12px Arial, Helvetica, sans-serif;
	display: block;
	padding:5px 30px 5px 30px;
	color: #5c3914;
	background:#f9c967;
	text-decoration: underline;
	margin:0px;
	}
	
	ul.MakeTree  li ul li a:hover{
	background:#f9c967;
	text-decoration: underline;
	color: #96520a;
	}
	
	ul.MakeTree  li ul li ul li{
	text-align:left;
	list-style-type:none;
	width:230px;
	margin:0px;
	padding:0px;
	border:0px;
	}
	
	ul.MakeTree  li ul li ul li a{
	width:165px;
	font:12px Arial, Helvetica, sans-serif;
	display: block;
	padding:5px 30px 5px 35px;
	color: #5c3914;
	background:#f9c967;
	text-decoration: none;
	margin:0px;
	}
	
	ul.MakeTree  li ul li ul li a:hover{
	background:#f9c967;
	text-decoration: underline;
	color:#96520a;
	}
	
	ul.MakeTree  li ul li ul li ul li{
	font-size: 10px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#5C5B60;
	padding-top:10px;
	padding-left:15px;
	padding-bottom:0px;
	}
}

