/** Associated with mktree.js **/
/* 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, ul.mktree ul  { margin:0; padding:0px; }
	ul.mktree li { margin-left:5px; padding:0px; }
	/* Provide space for our own "bullet" inside the LI */
	ul.mktree  li           .bullet { padding-left: 15px; }
	/* Show "bullets" in the links, depending on the class of the LI that the link's in */
	ul.mktree  li.liOpen    .bullet { cursor: pointer; background: url(/images/minus.gif)  center left no-repeat; }
	ul.mktree  li.liClosed  .bullet { cursor: pointer; background: url(/images/plus.gif)  center left no-repeat; }
	ul.mktree  li.liBullet  .bullet { cursor: default; background: none; }
	/* 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 { background:white; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#333333; font-size-adjust: none; font-streatch: normal; font-style: normal; font-variant: normal; font-weight: bold; line-height: normal; margin:0; padding:5px;  }
	ul.mktree  li ul li { text-decoration:none; background:white; font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#666666; font-size-adjust: none; font-streatch: normal; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; margin: 2px 5px; padding:0px;  }
	ul.mktree  li ul li a, li ul li a:visited{ text-decoration:none;}
	.moreLi{ display: none; }
	.showAll .moreLi { display:list-item; }
	.more_link { color:#FF6363; font-weight:bold; margin-left:9px; text-decoration:none; }
	.showAll .more_link { display:none; }
	
	ul.mktree  li ul li a:hover{ text-decoration:underline; background:#f1f6fa;}
	ul.mktree  li ul li ul li { font-size: 8pt; }
	ul.mktree  li ul li ul li ul li { font-size: 6pt; }
}
