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

table#calendar {
	font-family:  Arial, Helvetica, sans-serif;
	font-size: 11px;
	position: absolute;
	margin: 0px;
	border-collapse: collapse;
	background: #FFFFFF;
	border: 1px solid #ABABAB;
}

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

table#calendar th { /* Po Ut Str ... */
	border: 0px;
	background: #ABABAB;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
	color: black;
}

table#calendar thead th { /* Sipky vlevo vpravo */
	background: white;
	border: 0;
	cursor: pointer;
}

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

table#calendar td { /* Dny v mesici */
	background: #C4D3EA; /*svetlemodra*/
	color: #333333; /*tmave hneda*/
	text-align: center;
	text-decoration: none;
	border: 1px solid #6487AE;
	cursor: pointer;
	height: 18px;
	width: 18px;
}

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

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

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: #C4D3EA; /*svetlemodra*/
	cursor: default;
}