/*
	Stylesheet for the StbBookingCalendar.cs WebControl
	!!	If you modify the style names, you must modify the default style settings 
		in the StbBookingCalendar WebControl accordingly !!
	
	Changes:
	#20.10.2007/bap: initial release
*/

/* The base DIV surrounding the control  */
DIV.base {
	width: 500px;
}

/* The calendarcontent DIV displaying the calender tables */
DIV.calendarcontent { }

/* The tables displaying the calendar inside the calendarcontent DIV */
.calendartable 
{
	margin-top: 10px; 
	border-collapse: collapse;	
	font-size: 11px; 
	font-family: arial
}

/* Each tablecell inside the tables */
.calendartable TD {
	border: gray 1px solid; 
	width: 60px; 
	height: 30px;
	text-align:center; 
}

/* The tablecells for workdays */
.calendartable .workday {
	background-color: #f0f0f0
}

/* The tablecells for weekend days */
.calendartable .weekend {
	background-color: #fff8dc
}

/* Specify the font for title cells: Month, calendarweeks and day names  */
.calendartable .title {
	font-weight: bold; 
	font-size: 11px; 
	text-align: center;  
}

/* Specially for the cell to display month and year
---> do NOT modify this name! */
#langtext {
	white-space: nowrap; 
	padding-left: 200px;
}

/* **************************************************** */
/* The DIV arround the date numbers in the tablecells */
/* Do NOT modify this class name */
.date
{
 text-align:center;
 font-size:10px;
}
/* The DIV arround the booking images */    
/* Do NOT modify this class name */
.pic {}

/* ******************************************************* */

/* The legend formatting */
DIV.legend
{
     margin: 5px 5px 5px 20px;
}

DIV.legend TD
{
 font-size: 9px;    
}

DIV.legend IMG
{
    height:10px;
    width:20px;
}
DIV.legend TABLE
{
    border:1px solid gray;
}