/* Put this inside a @media qualifier so Netscape 4 ignores it */
@media screen, print { 
	/* Turn off list bullets */
	ul.mktree  li { list-style:none; font-family:arial, sans serif; 
    font-size:24px;color:#bb0000;font-weight:bold;line-height:200%; 
    } 
    
	/* Control how "spaced out" the tree is */
	ul.mktree, ul.mktree ul , ul.mktree li { margin-left:5px; padding:0px; padding-right:5px;}
    
    	/* 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/arw_red5.gif') center left no-repeat; }

	ul.mktree  li.liBullet  .bullet { cursor: default; padding-left:0px;}
    
	/* 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 */
    
    /* This is the li that expands and collapses*/
	ul.mktree  li {clear:left;  font-size:14px; color:#990000; font-weight:bold;
                   line-height:200%;
                   }
	/* 1st entry after expanding li */    
	ul.mktree  li ul li{font-size:12px;font-weight:300;line-height:150%;
               color:#000000; 
               font-family:arial, arial, "sans serif"; }
                         
    ul.mktree  li ul li ul { font-size:12px;line-height:140%;
               font-weight:normal;color:#000000;margin-left:25px;
               font-family:arial, arial, "sans serif";  }
             
    ul.mktree  li ul li ul li { font-size:12px;line-height:140%;
               font-weight:bold;color:#000000; border:none;
               font-family:arial, "sans serif";  }
               
	ul.mktree  li ul li ul li ul li { font-size: 6pt; }
}
   ul.mktree { font-family:helvetica, arial, sans serif;}
   
   ul.mktree a {color:#0000A0;font-weight:bold; line-height:250%;}   
   
   ul.mktree p {padding-left:15px;font-size:12px;line-height:140%;font-weight:normal;}
   
    /* not used yet*/
   ul.mktree h2 {font-size:14px;font-weight:bold;color:#000000;line-height:190%;
               }
   
    /* This formats the link to youtube section*/   
   ul.mktree h3 {font-size:12px; font-weight:bold; line-height:150%; color:#ffffff; background-color:#aa0000; padding:7px; }
   
    /* This formats the other bout titles - see h2 for the 1s title*/ 
   ul.mktree h4 {font-size:14px;font-weight:bold;color:#000000;line-height:190%;
              border-top-style:solid; border-top-color:#000000;
			   border-top-width:5px; }  
               
    /* This formats the winner line*/   
   ul.mktree h5 {padding-left:15px;font-size:12px;font-weight:bold;line-height:175%;
               font-style:italic;  }   
               
ul.mktree  li.liOpen span.poster{ /*CSS for enlarged image*/
position: absolute;
background-color:#C0C0C0;
padding: 5px;
left: -900px;
width:auto;
border: 2px dashed #bb0000;
visibility: hidden;
color: black;
text-decoration: none;
}
               
ul.mktree  li.liOpen span.poster img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
margin-left:auto;
margin-right:auto;
}

ul.mktree  li.liOpen:hover span.poster{ /*CSS for enlarged image*/
visibility: visible;
position: fixed;
max-width:405px;
top: 175px;
left:690px; /*position where enlarged image should offset horizontally */
z-index: 50;
}               

