/* The main calendar widget.  DIV containing a table. */

div.calendar {
	margin-left: -179px;
	margin-top: -10px;
	background: url("images/dhtml-calendar.png") no-repeat left top;
	padding: 10px 10px 10px 2px;
	width: 200px;
	height: 163px;
	z-index: 1000000;
}

.calendar, .calendar table {
	font-size: 11px;
	color: #000;
	cursor: default;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
	text-align: center;
	padding: 2px;
}

/* hónapnév */
.calendar thead .title {
	font-weight: bold;
	text-align: center;
	background: #DDD;
	color: #000;
	padding: 2px;
}

/* napnevek */
.calendar thead .name {
	border-bottom: 1px solid #655;
	padding: 2px;
	text-align: center;
	color: #000;
}

/* border-bottom korrigálás */
.calendar thead .wn { border-bottom: none; }


/* fejléc hover */
.calendar thead .hilite {
	background-color: #000;
	color: #FFF;
}

/* nap td */
.calendar tbody .day {
	width: 2em;
	text-align: center;
	cursor: pointer;
	padding: 2px;
	background: #DDD;
}

/* hét sorszáma */
.calendar tbody .wn {
	background: #FFF;
	color: #CCC;
}

/* td hover */
.calendar tbody td.hilite {
	background: #000;
	color: #FFF;
}

/* ma */
.calendar tbody td.selected {
	border: 1px solid #000;
	padding: 1px 3px 1px 1px;
}

/* hétvége */
.calendar tbody td.weekend { }

/* nem hónaphoz tartozó napok */
.calendar tbody .emptycell { background: #FFF; }

/* 6.sor elrejtése, ha nem kell */
.calendar tbody .emptyrow { display: none; }

/* lábléc nincs */
.calendar tfoot { display: none; }


/* hosszan lenyomott nyilak */
.calendar .combo {
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	width: 4em;
	cursor: default;
	border: 1px solid #655;
	background: #ffe;
	color: #000;
	font-size: 90%;
	z-index: 100;
}

.calendar .combo .label, .calendar .combo .label-IEfix {
	text-align: center;
	padding: 1px;
}

.calendar .combo .label-IEfix {
	width: 4em;
}

.calendar .disabled {
	cursor: not-allowed !important;
	color: #AAA;
}
