/* The main calendar widget.  DIV containing a table. */

/* Hervorhebung der Termine */
.calendar_special {
	background-color: #FFFBBD;
	background-image: url(../_images/calendar_corner.gif);
	background-position: left top;
	background-repeat: no-repeat;
}

/* Hervorhebung der Termine: Turnier */
.calendar_specialT{
	background-image: url(../_images/calendar_corner.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFBBD;
}

/* Hervorhebung der Termine: Parties */
.calendar_specialP{
	background-image: url(../_images/calendar_corner.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFBBD;
}

/* Hervorhebung der Termine: Schnupperkurse */
.calendar_specialS{
	background-image: url(../_images/calendar_corner.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFBBD;
}

/* Hervorhebung der Termine: Mehrere */
.calendar_specialM{
	background-image: url(../_images/calendar_corner.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFBBD;
}

.calendar {
  position: relative;
  display: none;
  font-size: 12px;
  font-family: helvetica,verdana,sans-serif;
  font-weight: bold;
}

.calendar table {
  border: 3px solid #ffffff;
  border-color: #fff #fff #fff #fff;
  font-size: 12px;
  cursor: default;
  font-family: helvetica,verdana,sans-serif;
  background-color:#eeeeee;
  width:211px;
  font-weight: bold;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px 0 1px 1px;
  font-weight:bold;
  font-size:14px;
  background-color: #FFFFFF;
}

.calendar .nav {
	
} /* background-image:0; */

.calendar thead .title { /* This holds the current "month, year" */
  height: 38px;
  width: 144px;
  color: #868686; 
  text-align: center;
  font-weight:bold;
  font-size:12px;
  background-image: url(../_images/calendar_month_pattern.png);
  background-repeat: repeat-x;
  background-position: -5px -3px;
  background-color: #FFFFFF;
  vertical-align: top;
  padding-top: 6px;
  
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  /*background-color: white;*/
  height: 45px;
  width:215px;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
	margin-left: 1px;
}

.calendar thead .name { /* Cells <TD> containing the day names */
  padding: 2px;
  text-align: center;
  border-left: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;   
  background-color:#c8c8c8;
  height:25px;
  color:white;
  cursor:pointer;
}

.calendar thead .weekend { /* How a weekend day name shows in header */

}

.rightarrow {

	background-image: url(../_images/calendar_arrow_right.png);
	background-repeat: no-repeat;
	background-position: -4px 2px;


	border:0;
	width:25px;
	height:25px;
	font-weight:bold;
	font-size:14px;
	cursor:pointer;
	text-align:right;
	}
	
.rightarrow img { position:absolute; top: 5px; left:180px; }	

.rightarrow hilite {

	background-image: url(../_images/calendar_arrow_right.png);
	background-repeat: no-repeat;
	background-position: -4px 2px;

border:0;
width:25px;
height:25px;
font-weight:bold;
font-size:14px;
cursor:pointer;
text-align:right;

}

.leftarrow {
	
	background-image: url(../_images/calendar_arrow_left.png);
	background-repeat: no-repeat;
	background-position: -3px 2px;
	
	border:0;
	width:25px;
	height:25px;
	font-weight:bold;
	font-size:14px;
	cursor:pointer;
	
}

.leftarrow hilite {
	
	background-image: url(../_images/calendar_arrow_left.png);
	background-repeat: no-repeat;
	background-position: -3px 2px;	
	border:0;
	width:25px;
	height:25px;
	font-weight:bold;
	font-size:14px;
	cursor:pointer;
	
	}	


	
	
	

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  width: 2em;

  
} /* border: solid 1px #ffffff; */

.calendar thead .active { /* Active (pressed) buttons in header */
  border-width: 1px;
  padding: 2px 0px 0px 2px;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 25px;
  height:25px;
  text-align: center;
  padding:2px 4px 2px 2px;
  border-left: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
  background-color: #dddddd;
  color:white;
  cursor:pointer;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  
} /* border: solid 1px #ffffff; */
.calendar tbody .day.othermonth.oweekend {
  
} /* border: solid 1px #ffffff; */

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  background: ButtonFace;
  color: ButtonText;
}

.hidden {
	
	display:none;
	
	}

.calendar tbody .rowhilite td {

}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  width: 25px;
  height:25px;
  text-align: center;
  padding:2px 4px 2px 2px;
  background-color:#bfbfbf;
  color:white;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  width: 25px;
  height:25px;
  text-align: center;
  padding:2px 4px 2px 2px;
  background-color:#bfbfbf;
  color:white;
}

.calendar tbody td.selected { /* Cell showing selected date */
  width: 25px;
  height:25px;
  text-align: center;
  padding:2px 4px 2px 2px;
  background-color:#bfbfbf;
  color:white;
}

.calendar tbody td.weekend { /* Cells showing weekend days */

}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color:white;
}

.calendar tbody td.disabled { color: GrayText; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
	  width: 25px;
	  height:25px;
	  text-align: center;
	  padding:2px 2px 2px 2px;
	  border-bottom: solid 2px #ffffff;   
	  border-left: solid 2px #ffffff;   
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
    visibility:hidden;
    height:25px;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
	
	display:none;
	
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  padding: 1px;
  border: 1px solid;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border: 1px solid;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  padding: 0px;
  border: 1px solid #fff;
}

.calendar .combo .hilite {

}

.calendar td.time {
  padding: 1px 0px;
  text-align: center;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: Menu;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #fff;
  color: #0f0;
}