/*these rules construct the left-side menu for the tutorial pages*/
/*they are narrower due to the size of the flash*/
#navlisttut {
  position: absolute;
  left: 10px;
  top: 150px;
  width: 100px;
  z-index: 110;
}
#navlisttut ul {
  margin: 0; /*removes indent IE and Opera*/
  padding: 0; /*removes indent Mozilla and NN7*/
  list-style-type: none; /*turns off display of bullet*/
  font-size: .9em;
}
#navlisttut li {
  margin: 0px;
  padding: 0px;
}
#navlisttut a {
  display: block;
  padding: 2px 2px 2px 2px;
  border: 1px solid;
  border-color: #ddd #000 #000 #ddd;
  background-color: #71828a;
  background-image:  url(../images/ct_navbutton_up2.jpg);
  background-repeat: no-repeat;
  background-position: 0% 50%;
}
#navlisttut a:link, #navlisttut a:visited {
  color: #1C4DB6;
  text-decoration: none;
}
#navlisttut a:hover, #navlisttut a:active {
  background-color: #c5cfd0;
  background-image:  url(../images/ct_navbutton_hover3.jpg);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  color: #CC0404;
}
#navlisttut p {
  margin: 0px;
  padding: 5px 5px 5px 15px;
  background-color: #c5c9cf;
}
#navlisttut h2 {
  margin-top: 10px;
  margin-bottom: 0;
  padding: 5px;
  font-size: 8pt;
  font-family: Verdana, Arial, Helvetica, sans-serif;
	color: white;
}

