/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
	/* Turn off list bullets */
	ul.mktree  li { list-style: none; } 
	/* Control how "spaced out" the tree is */
	ul.mktree { margin-left:0px; padding:0px; width: 140px;}
	ul.mktree ul { margin-left:0px; padding:0px;}
	ul.mktree li { margin-left:0px; padding:0px;}
	
	/* Provide space for our own "bullet" inside the LI */
	ul.mktree  li.bullet { padding-left: 0px; }
	
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.mktree  li.liOpen    .bullet { cursor: hand; }
	ul.mktree  li.liClosed  .bullet { cursor: hand; }
	ul.mktree  li.liBullet  .bullet { cursor: hand; }
	/* Sublists are visible or not based on class of parent LI */
	ul.mktree  li.liOpen    ul { display: block; }
	ul.mktree  li.liClosed  ul { display: none; }
	/* Format menu items differently depending on what level of the tree they are in */
	ul.mktree  li { 
		position:relative;
		top: -1px;
		font-size: 11px;
		font-weight: bold;
		font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
		line-height: 23px;
		width: 140px;
		color:#2E2D28; 
		background: url(../imagenes/borde_pestana_menu.gif) top left no-repeat;width:140px;
	}
	ul.mktree  li ul li { 
		position:relative;
		top: 0px;	
		font-size: 11px; 
		font-weight: bold;
		font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
		line-height: 19px;
		width: 140px;
		color:#72614D; 
		background: url(../imagenes/fondo_opcion_menu.gif) top left no-repeat;
	}
	ul.mktree  li ul li ul li { 
		font-size: 11px; 
		font-weight: normal;
		font-family : Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
		line-height: 19px;
		width: 140px;
		color:#72614D;
		background: url(../imagenes/fondo_opcion_submenu.gif) top left repeat;
	}
}