/* Applied on Level_2.dwt */
/* Applying a hover style on the Index.html year wise listing*/

/* div:not([menu]) */ /*will not be applied on main menu, id of div of the main menu is "menu" */

div {
  width:auto ; 
}

h2 {
  font: 400 40px/1.5 Helvetica, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}
 
#Year-List > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;


}
 
#Year-List > li {
  font: 200 20px/1.5 Helvetica, Verdana, sans-serif;
  border-bottom: 1px solid #ccc;
  list-style-type: none;
}
 
#Year-List > li:last-child {
  border: none;
}
 
#Year-List > li > a {
  text-decoration: none;
/*  color: #000; */
  display: block;
  width: 200px;
 
  -webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
  -moz-transition: font-size 0.3s ease, background-color 0.3s ease;
  -o-transition: font-size 0.3s ease, background-color 0.3s ease;
  -ms-transition: font-size 0.3s ease, background-color 0.3s ease;
  transition: font-size 0.3s ease, background-color 0.3s ease;

font:Verdana, Arial, Helvetica, sans-serif;
font-weight:bold;

}
 
#Year-List > li a:hover {
  font-size: 30px;
  background: #f6f6f6;
}