.AccordionTitle, .AccordionContent, .AccordionContainer
{
  position:relative;
  width:200px;
}

.AccordionTitle
{
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
  text-align: left;
  display: table-cell;
  background-color: #CCCCCC;
  -moz-user-select: none;
}

.AccordionTitle:hover
{
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  vertical-align: middle;
  text-align: left;
  display: table-cell;
  background-color: #CCCCCC;
  -moz-user-select: none;
  color: #000066;
}

.AccordionContent
{
  height: 0px;
  width: 95%;
  overflow: auto;
  display: none;
  margin-left: 15px;
  font-family: Arial;
  font-size: 8pt;
  background-color: #CCCCCC;
}

.AccordionContainer
{
  border: 0px;
  margin-top: 5px;
  background-color: #CCCCCC;
}