body { background-color: #fff; color: #333; }

body, p, ol, ul, td {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size:   10px;
  line-height: 14px;
}

pre {
  background-color: #eee;
  padding: 3px;
  font-size: 8px;
}

a { color: #000; }
a:visited { color: #666; }
a:hover { color: #fff; background-color:#000; }

.fieldWithErrors {
  padding: 2px;
  background-color: red;
  display: table;
}

#errorExplanation {
  width: 400px;
  border: 2px solid red;
  padding: 3px;
  padding-bottom: 9px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

#errorExplanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 2px 2px 2px 12px;
  font-size: 6px;
  margin: -7px;
  background-color: #c00;
  color: #fff;
}

#errorExplanation p {
  color: #333;
  margin-bottom: 0;
  padding: 2px;
}

#errorExplanation ul li {
  font-size: 6px;
  list-style: square;
}

.ListTitle {
color: #244;
font-weight: bold;
font-size: larger;
}
.ListActions {
font-size: x-small;
text-align: right;
padding-left: 1em;
}
.ListLine0 {
background: #E4E4E4;
}
.ListLine1 {
background: #ccc;
}
.ListLine2 {
background: #FFCCCC;
}
.ListLine3 {
background: #FF6666;
}
.ListLine11 {
background: #8FBC8F;
}
.ListLine12 {
background: #FFA54F;
}
.ListLine13 {
background: #F08080;
}
.ListLine14 {
background: #9C9C9C;
}
.ListLine20 {
background: #98FB98;
}
.ListLine21 {
background: #00FF7F;
}
.ListLine30 {
background: #FFB6C1;
}
.ListLine31 {
background: #FFC0CB;
}
.image {
  padding: 0px 0px 0px 0px;
}
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
	left: 30px;
  	top: 20px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}