/* Calendar Interface Elements */

DIV.calendar{

	width: 240px;
	background-color: #fff;
	border: 1px solid black;
	text-align: center;
	z-index: 100;

	position: absolute;
/*	left: 100px;
	top: 100px;*/

}

IFRAME.empty{
	background-color: blue;
	border: 1px solid black;
	z-index: 99;
	position: absolute;
}

TABLE.calendar{
	z-index: 0;
}

TABLE.calendar TD.emptyDay{
	background-color: #bbb;
	height: 20px;
}

TABLE.calendar TD.day{
	width: 30px;
	height: 20px;
	background-color: #aea;
	text-align: center;
	cursor: pointer;
}


TABLE.calendar TD.selectedDay{
	height: 20px;
	background-color: #4a5;
	text-align: center;
	font-weight: bold;
	color: #fff;
}

TABLE.calendar TD.day:hover{
	background-color: #7e7;
}

TABLE.calendar TD.title{
	width: 30px;
	height: 20px;
	color: #fff;
	font-weight: bold;
	background-color: #56f;
	text-align: center;
}

TABLE.calendar TD.month{
	text-align: center;
	font-weight: bold;
}

TABLE.calendar TD.direction{
	text-align: center;
	font-weight: bold;
	background-color: #f92;
	cursor: pointer;
}

/* Tool Tip Interface Elements */

HR.popup {
	margin-top: 2px;
	margin-bottom: 2px;
	padding-top: 0px;
	padding-bottom: 0px;
	display: block;
/* 	height: 1px; */
	background-color: black;
	font-size: 1px;
}

DIV.popupTitle{
	font-weight: bold;
	border-bottom: solid black 1px;
}

/* This is where you can customize the appearance of the tooltip */

DIV#tipDiv {
	position:absolute;
	visibility:hidden;
	left:0;
	top:0;
	z-index:10000;
	background-color:#dee7f7;
	border:1px solid #336;
	width:250px;
	padding:4px;
	color:#000;
	font-size:11px;
	line-height:1.2;
}

/* Tabs Interface Elements */

TABLE.tabTable{
	width: 400px;
}

TD.tip{
	background: #eee;
	color: black;
	text-align: center;
}

/* Button Interface Elements */

TABLE.button a{
	color: white;
	text-decoration: none;
}
TABLE.button a:visited{
	color: white;
	text-decoration: none;
}
TABLE.button a:hover{
	color: white;
	text-decoration: underline;
}
TABLE.button a:active{
	color: white;
	text-decoration: none;
}
