.tip {
  float: left;
  clear: both;
}

/* remove the bullets, padding and margins from the lists */
.tip ul{
  list-style-type:none;
  padding:0;
  margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.tip li{
  float:left;
  position:relative;
  z-index:100;
}

/* use the table to position the dropdown list */
.tip table{
  position:absolute;
  border-collapse:collapse;
  z-index:80;
  left:-1px;
  top:25px;
}

/* style all the links */
.tip a, .tip :visited {
  display:block;
  font-size:10px;
  width:149px;
  padding-bottom:4px;
  color:#F89828!important;
  text-decoration:none;
  margin-right:1px;
  text-align:left;
  font-family:verdana, sans-serif;
  font-weight: bold;
}
/* style the links hover */
.tip a:hover{
  text-decoration: underline;
}

/* hide the sub level links */
.tip ul ul {
  width:149px;
  height:0;
}
/* make the sub level visible on hover list or link */
.tip ul li:hover ul,
.tip ul a:hover ul{
  visibility:visible;
}

.tip-months {
  border-right: 4px solid #F1EEEC;
  padding: 5px 0 0 5px;
}

.tip-content {
  padding-left: 10px;
}
