/* Some classes for calendar and main window */

.defclass {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
}    

.defbutton {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    border: #555555 1px dotted; 
    background: #EAEAFF;
    height: 20px;
    margin-top: 4px;
    margin-bottom: 4px;
}

div.themes_container {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    width:100%; 
    border: #518AE5 1px solid; 
    background: #D1E2FE; 
    margin:0;
}

div.themes_container_2 {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    border: #555555 1px dotted;
    background: #EAEAFF;
    margin: 2px;
}

input.calendar_input {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    border: #CCCCCC 1px solid;
    height:20px;
}

select.hour_select {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    width: 50px; 
    border: #CCCCCC 1px solid;
}

p.hubs_group_name {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    margin: 0px;
    margin-left: 10px;
    color: #555555;
}

div.hubs_list_class {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    border: #90A0C0 1px dotted;
    background: #C0D0F0;
    margin: 4px;
}

p.hubs_list_class {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    margin: 0px;
    color: #111111;
}

p.hubs_prices_class {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    margin: 0px;
    color: #555555;
}

div.legend {
    font-family : tahoma, verdana, arial;
    font-size: 8pt;
    width:100%; 
    border: #518AE5 1px solid; 
    background: #FFFFFF; 
    margin:0;
    margin-top:4px;
}

td.legend {
    font-family : monospace, courier;
    font-size: 8pt;
    color: #777777;
}

/* calendar icon */
img.tcalIcon {
	cursor: pointer;
	margin-left: 1px;
	vertical-align: middle;
}

/* calendar container element */
div#tcal {
	position: absolute;
	visibility: hidden;
	z-index: 10000;
	width: 158px;
	padding: 2px 0 0 0;
}

/* all tables in calendar */
div#tcal table {
	width: 100%;
	border: 1px solid silver;
	border-collapse: collapse;
	background-color: white;
}

/* navigation table */
div#tcal table.ctrl {
	border-bottom: 0;
}

/* navigation buttons */
div#tcal table.ctrl td {
	width: 15px;
	height: 20px;
}

/* month year header */
div#tcal table.ctrl th {
	background-color: white;
	color: black;
	border: 0;
}

/* week days header */
div#tcal th {
	border: 1px solid silver;
	border-collapse: collapse;
	text-align: center;
	padding: 3px 0;
	font-family: tahoma, verdana, arial;
	font-size: 10px;
	background-color: gray;
	color: white;
}

/* date cells */
div#tcal td {
	border: 0;
	border-collapse: collapse;
	text-align: center;
	padding: 2px, 0;
	font-family: tahoma, verdana, arial;
	font-size: 11px;
	width: 22px;
    height: 18px;
	cursor: pointer;
}

/* date highlight
   in case of conflicting settings order here determines the priority from least to most important */
div#tcal td.othermonth {
	color: #888888;
}
div#tcal td.weekend {
	background-color: #ACD6F5;
}
div#tcal td.today {
	color: #FF7755;
}
div#tcal td.highlighted {
    font-weight: bold;
    text-decoration: underline;
}
div#tcal td.selected {
	background-color: #FFB3BE;
}

/* iframe element used to suppress windowed controls in IE5/6 */
iframe#tcalIF {
	position: absolute;
	visibility: hidden;
	z-index: 98;
	border: 0;
}

/* transparent shadow */
div#tcalShade {
	position: absolute;
	visibility: hidden;
	z-index: 99;
}
div#tcalShade table {
	border: 0;
	border-collapse: collapse;
	width: 100%;
}
div#tcalShade table td {
	border: 0;
	border-collapse: collapse;
	padding: 0;
}

