/* External Style Sheet for colit */

/* No error or warning found - W3C CSS Validator results */
/* 9/7 note: works!! make no changes */

body {
  font-family: arial, sans-serif;
  background-color: #FFFFFF;
  color: #000000;
  margin: 2px;
}

td.width15 {
  width: 15%;
}
td.width25 {
  width: 25%;
}
td.width75 {
  width: 75%;
}
td.ssNavMenu {
  font-size: 12px;
  color: #0075BA;
  text-align: center;
  background-color: #FFFFFF;
}
td.ssStudNavMenu {
  font-size: 12px;
  color: #0075BA;
  text-align: center;
  background-color: #FFFFFF;
  width: 85%;
}
td.smallFont {
  font-size: 12px;
}

ul {
/* remove indents and bullets */
  margin: 0;
  padding: 0;
  list-style: none;
/* set width of main menu */
  width: 153px;
  border-bottom: 1px solid #FFFFFF; 
  font-size: 16px;
  font-weight: bold;
}

ul li {
  position: relative;
}

li ul {
/* absolute position submenu within parent menu */
  position: absolute;
  left: 153px; /* must exact same as width above */
  top: 0;
  display: none; /* prevents visibility by default */
  font-size: 12px;
  font-weight: bold;
  width: 225px; /* width of submenu */
}

ul li a { /* main menu */
  display: block;
  text-decoration: none;
  color: #FFFFFF; /* white text */
  background: #339966; /* light green */
  padding: 5px;
  border: 1px solid #FFFFFF;

}
ul li ul li a { /* submenu */
  display: block;
  text-decoration: none;
  color: #000000; /* black text */
  background: #B7CCE9; /* pale blue */
  padding: 5px;
  border: 1px solid #0066CC;
}

/* "Holly Hack". Fix for IE interpreting line breaks in HTML list */
/* items as white space. The 1% height prevents jumping menu bug */
/* in IE5.01 Windows. */
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left;  height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; }

ul li a:hover { /* provides rollover color for main menu */
  background: #0066CC; /* bright blue */
  color: #000000; /* black text */
}

ul li ul a:hover { /* provides rollover color for submenu */
  background: #FFFFCC; /* pale yellow */
  color: #0066CC; /* blue text */
}
