/* GENERAL SETTINGS */
.calCalendar
{
	border:none;
	width:210px;
	font-family: Verdana, sans-serif;
}
.CalendarBodyRows a{
	color: #069;
}

/* Navigation Header */
tr.calNavigation
{
	background-color:#FFF;
	height:16px;
}

td.calNavigationArrows
{
	text-align:center;
	width:50px;
}

td.calNavigationMonth
{
	width:160px;
	font-weight:bolder;
	text-align:center;
}


/* Calendar Content */
tr.calBodyRows TD
{
	color:#000;
	height:16px;
	width:30px;
	text-align:center;
}

.calWeekdayHeaders
{
	font-weight:bolder;
}

.calWeekdays
{
	background-color:#FFF;
}

.calWeekends
{
	background-color:#9CF;
}

.calCurrentDay
{
	background-color:#FF6;
}

.calActivityDay
{
	background-color:#C9F;
}

.tooltip
{
  position: relative;

  cursor: help;
  display: inline-block;
  text-decoration: none;

  outline: none;
}

.tooltip span
{
  visibility: hidden;
  position: absolute; 
  bottom: 50px;
  left: 50%;
  z-index: 999;
	color: #400000;
  width: 230px;
  margin-left: -127px;
  padding: 10px;
  border: 2px solid #ccc;
  opacity: .9;
  background-color: #ddd;                     
  background-image: -webkit-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));
  background-image: -ms-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));
  background-image: -o-linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));
  background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0));  
  -moz-border-radius: 4px;
  border-radius: 4px;  
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset;
  box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.5) inset;  
  text-shadow: 0 1px 0 rgba(255,255,255,.4); 
}

.tooltip:hover
{
  border: 0; /* IE6 fix */
}

.tooltip:hover span
{
  visibility: visible;
}

.tooltip span:before,
.tooltip span:after
{
  content: "";
  position: absolute;
  z-index: 1000;
  bottom: -7px;
  left: 50%;
  margin-left: -8px;  
  border-top: 8px solid #ddd;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;        
  border-bottom: 0;  
}

.tooltip span:before
{
  border-top-color: #ccc;
  bottom: -8px;
}