@import url("layouts/layout-2d.css");

.calendar, .calendar table {
	border-color: #4dc9ee;
	border-width: 1px;
	color: #FFF;
	background-color: #4dc9ee;
	line-height: normal;
	background-image: url(/images/calendar-background2.gif);
	background-position: left top;
	background-repeat: repeat;
}

.calendar .nav {
	background-color: transparent;
	color: FFFFFF;
	line-height: normal;
	

}


/* Header part -- contains navigation buttons and day names. *//* This holds the current "month, year" */
.calendar thead .title { 
	background-color: transparent;
	color: #FFF;
	line-height: normal;
	border: solid #04C1FF 1px;

}


.calendar thead .headrow { /* Row <TR> containing navigation buttons */
	background-color: #0073DA;
	color: #FFF;
	line-height: normal;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
	background-color: #ABE8FB;
	color: FFF;
}

.calendar thead .name { /* Cells <TD> containing the day names */
	border-color: #fff;
	background-color: #ABE8FB;
	color: #006CB1;
	line-height: normal;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
	color: #8D4D0D;
	line-height: normal;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
background-image:url(/images/calendar-nav-background.gif);
	background-color: #0069B5;
	color: #FFF;
	border-color: #ABE8FB;
	line-height: normal;
}

.calendar thead .active { /* Active (pressed) buttons in header */
	background-color: #0069B5;
	color: #FFF;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
	font-weight: bold;
	background-color: #ffffff;
	color: #006CB1;
	line-height: normal;
}
.calendar tbody .day.othermonth {
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
	border-color: #000;
	background-color: #D6EFF6;
}

.calendar tbody .rowhilite td {
	background-color: #D6EFF6;
}

.calendar tbody .rowhilite td.wn {
	background-color: #D6EFF6;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
	background-color: #D6EFF6;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
	background-color: #D6EFF6;
	color: FFF;
}

.calendar tbody td.selected { /* Cell showing selected date */
	background-color: #6AD3F1;
	color: #FFF;
	border: solid #004070 1px;
	height:22px;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
	color: #0073DA;
	line-height: normal;
}

.calendar tbody td.today { /* Cell showing today date */
	color: #FFFFFF;
	line-height: normal;
	background-color: transparent;
}

.calendar tbody .disabled {
	color: #999;
	line-height: normal;
}

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
}

/* The footer part -- status bar and "Close" button */
.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
	background-color: #0069B5;
	color: #fff;
	line-height: normal;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
	background-color: #D6EFF6;
	color: #004070;
	line-height: normal;
	border: solid #04C1FF 1px;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
	background-color: #BFC2BB;
	border-color: #04C1FF;
	color: #004070;
	line-height: normal;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
	background-color: #6AD3F1;
}

/* Combo boxes (menus that display months/years for direct selection) */
.calendar .combo {
	background-color: #D6EFF6;
	color: #004070;
	border: solid #04C1FF 1px;
}

.calendar .combo .hilite {
	background-color: #ABE8FB;
}

.calendar .combo .active {
	border-color: #004070;
	background-color: #ABE8FB;
}

/* time */

.calendar tfoot tr.time td { border-color: #000; }
.calendar tfoot tr.time td.hour,
.calendar tfoot tr.time td.minute {
	border-color: #D6EFF6;
}
.calendar tfoot tr.time td.hilite {
	background-color: #ABE8FB;
}
.calendar tfoot tr.time td.active {
	background-color: #D6EFF6;
}

/*
Reduce size to small
*/.calendar {
  border-width: 1px;
  font-size: 12px;
}

.calendar table {
  font-size: 12px;
}

.calendar tbody .day { width: 1.5em; }

.calendar td {
   font-size: 12px;
}
/*
Define elements to show start/end dates and the dates in between
*/

/*
* for start/end dates
*/
.edges {
	border : 1px solid #04C1FF;
	background-color: #004070;
	height:22px;
}

/*
* for dates between start and end dates
*/
.between {
	background-color: #ABE8FB;
}

/*
*.calendar tbody .disabled { text-decoration: line-through; color:#000}
*/

