/* css for media print  20130321*/
/* attributes for the main text section, called bulk */

@media print
/* define menu items with zero size type to make the items disappear  */
{
#menu{
  font-size: 0pt;
  font-family: tahoma,arial,helvetica,sans-serif;
  font-weight: bold;
}

#menu1{display:none}
#menu2{display:none}
#menu3{display:none}

/* define the ul listtype as none to supress the disc that appears by default */
#menu ul{
  list-style-type: none;
}

/* define selected menuitem as having 8pt type to make it appear */
#urhere a{
  font-size: 8pt;
}

#mnuihere a{
  font-size: 8pt;

}

#bulk table.caltab{
width: 500px;

border-color: black;
border-width: 1px;
font-size: 9pt;
font-family: tahoma,arial,helvetica,sans-serif;
}
#bulk td.col1{
width: 80px;
}
#bulk td.col2{
width:36px;
}
#bulk td.col3{
width: 80px;
}
#bulk td{
vertical-align: top;
}
#bulk td.hilite{
font-weight: bold;
}
/* set border style for header cell class "month" to solid to show up better */
#bulk th.month{
border-style: double;
background-color: #ffff00;
}


}
/* end of media print section */


