/* Put this inside a @media qualifier so Netscape 4 ignores it */

@media screen, print {
 
/* Gray box with border */
#listdestinationDiv {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	width:162px;
	margin:10px 0 0px 0;
	padding:5px 0 0px 5px;
	background:#FFFFFF;
	border:1px solid #b9b9b9;
	position: relative;
	float:left;
}
/* Turn off list bullets */
ul.mktree  li {
	list-style-image: none;
	list-style-type: none;
	width: 165px;
} 
/* Title box */
#listdestinationDiv h3{ 
	padding:0 0 10px 0;
	margin: 3px 0 0px 0px;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14px;
	font-weight: bold;
	/*color: #66656a;*/
	color: #e9851a /*Orange*/
}
#tree1{ 
	margin-top: 3px;
	margin-left: 20px;
	margin-bottom: 0px;
	width: 165px;
}
/* Control how "spaced out" the tree is */
ul.mktree, ul.mktree ul , ul.mktree li {
	margin-left:5px;
	padding:0px 0 0 0;
	margin-right: -50px;
}
/* Provide space for our own "bullet" inside the LI */
ul.mktree  li .bullet {	
	margin-left: 0px;
	padding-left: 8px;
}
/* Show "bullets" in the links, depending on the class of the LI that the link's in */
ul.mktree  li.liOpen    .bullet { /* First Level Bullet Open */
	cursor: pointer;
	color: rgb(85, 85, 85);
	font-weight: bold;
	margin-left: 0px;
	padding-left: 8px;
	background-image: url("/images/trianglebulletmenu_down.png");
	background-repeat: no-repeat;
	background-position: left center;
}
ul.mktree  li.liClosed  .bullet { /* First Level Bullet Close */
	cursor: pointer;
	background-image: url("/images/trianglebulletmenu.gif");
	background-repeat: no-repeat;
	background-position: left center;
	color: rgb(101, 111, 118);
	font-weight: bold;
}
ul.mktree  li.liBullet  .bullet { /* Second Level Bullet */
	cursor: default;
	background-image: none;
}
/* Sublists are visible or not based on class of parent LI */
ul.mktree  li.liOpen    ul {
	display: block;
	margin-left: 24px;
	padding-top: 5px;
	margin-bottom: -5px;
}
ul.mktree  li.liClosed  ul { display: none; }

/* Format menu items differently depending on what level of the tree they are in */
/* Uncomment this if you want your fonts to decrease in size the deeper they are in the tree */

ul.mktree  li ul li a:link, ul.mktree  li ul li a:visited, ul.mktree  li ul li a:active {
	text-decoration:none;
	color:#656f76;
	border: 0px solid #FF0000;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: -22px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 21px;
}
ul.mktree  li ul li a:hover {
	color: #e9851a; /*color:#003067;*/
	text-decoration:underline;
	background-image: none;
	background-repeat: no-repeat;
	background-position: left center;
}

}
