/*******************************************************************************
** tooltips.css
** CSS based tooltips.
*/

/* Regular Tooltips */
a.tooltip{ /* css based tooltips */
text-decoration: none;
text-align: center;
padding-left: 2px;
padding-right: 2px;
position: relative;
/*background-color: #c8ccd2;*/
font-size: 10px;
font-family: Verdana;
}

a.tooltip img{
border: none;
}

a:hover.tooltip{ /* css based tooltips */
font-size: .8em;
font-family: Verdana;
}

a.tooltip span.tooltip{ /* css based tooltips */
display: none;
}

a:hover.tooltip span.tooltip{ /* css based tooltips */
text-align: left;
padding: 5px;
display: block;
position: absolute;
background-color: #c8ccd2;
color: #000000;
border: solid #000000 1px;
font-size: 10px;
}

table.StdCal {
  background-color: #b1c9cb;
  border: 1px solid #669999;
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

table.StdCal td {
  border: 1px solid #669999;
  padding: 4px;
}

