@charset "utf-8";
/* CSS Document */

table#calendar {
    z-index:100;
	position: absolute;
	font-family:  Arial, Helvetica, sans-serif;
	margin: 0px;
	border-collapse: collapse;
	background: #FF00FF;      /* FFFFFF */
	border: 1px solid #ABABAB;
	height: 200px;
}

table#calendar th, table#calendar td {
	padding: 1px;
	margin: 0px;
}

table#calendar th { /* Giorni settimana */
	border: 1px solid silver;
	background: #3399CC;
	text-align: center;
	font-weight: normal;
	color: black;
	height: 15px;
}

table#calendar thead th { /* Primo rigo anno e frecce */
	background: #66CCFF;
	border: 1px solid silver;
	cursor: pointer;
}

table#calendar thead th#top_date { /* LED 2008 */
	font-weight: bold;
	cursor: default;
}

table#calendar td { /* Dny v mesici */
	background: #66CCFF; /*svetlemodra*/
	color: #000000; /*tmave hneda*/
	text-align: center;
	text-decoration: none;
	border: 1px solid silver;
	cursor: pointer;
	height: 15px;
	width: 18px;
}

table#calendar td.selected { /* Vybrany den */
	background: #FF00FF; /* svetlezluta */
	font-weight: bold;
	color: #000000; /* */
}

table#calendar td.today { /* Vybrany den */
	background: #FFFF00; /* 93b5ea svetlezluta */
	color: #000000; /* */
}

table#calendar td.old { /* Stare dny */
	background: #C4D3EA; /* svetlemodra */
	color: #ABABAB; /* svetleseda */
	text-decoration: line-through;
	cursor: default;
}

/* apply position hover to all previous td element */
table#calendar td:hover, table#calendar td.hover { /* Nefungujev IE7 pokud neni definovany doctype */
	background: #FFCC66;
}

table#calendar td {
	behavior: url(./hover.htc); /* hover IE6 fix */
}

table#calendar td.none { /* empty cells, without hover efect */
	background: #808080; /*svetlemodra*/
	cursor: default;
}
