/* Default attributes of table container for entire calendar */
.table-style
{
    background-color: #f2f2f2;
    border: solid 1px #808080;
    font-family: arial,helvetica,clean,sans-serif;
    cursor: default;
    width: 220px;
    font-size: 12px;
    text-align: center;
    padding: 0px;
    margin: 0px;
}


/* Default attributes of DIV containing table container for entire calendar.
 * You probably don't want to alter this style.
 */
.div-style {
	z-index: 999;
	position: absolute;
	visibility: hidden;
}

/* Default attributes used in calendar title (month and year columns).*/
.title-style
{
    height: 22px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    padding-top: 3px;
    color: #f5f5f5;
}

/* Default attributes used in calendar title background.*/
.title-background-style
{
    background-image: url(sprite.png);
    background-color: transparent;
    background-position: 0px -1284px;
    background-repeat: repeat-x;
}

/* Normal appearance of controls in calendar title. */
/* Note: The right, left and down icons are images, which must be edited if you need to change them. */
.title-control-normal-style {
	border-style: none;
    border-width: 1px;
	border-color: black;
	cursor: pointer;
}

.calendar_prev 
{
    margin-left:2px;
    height:15px;
    width:20px;
    cursor:pointer;
    float:left;
    background:url(sprite.png) 0px -500px no-repeat;
}

.calendar_next
{
    margin-right: 2px;
    height: 15px;
    width: 20px;
    cursor: pointer;
    background: url(sprite.png) 0px -516px no-repeat;
    float: left;
}

.month_dropdown
{
    height: 15px;
    cursor: pointer;
    background: url(sprite.png) no-repeat 100% -814px;
    text-align: right;
    padding-right: 17px;
}
.year_dropdown
{
    height: 15px;
    cursor: pointer;
    background: url(sprite.png) no-repeat 100% -814px;
    text-align: left;
    padding-left: 4px;
    padding-right: 17px;
}

.monthyear{
    height:17px;
    width:168px;
    float:left;
}
/* Moused-over (selected) appearance of controls in calendar title. */
.title-control-select-style {
	/*border-style: solid;
	border-width: 1;
	border-color: #3a6ea5; */
	cursor: pointer;
}

/* Default attributes of drop down lists (month and year). */
.dropdown-style {
	font-family: arial; 
	font-size: 11px; 
	border-width: 1px; 
	border-style: solid; 
	/*border-color: #a0a0a0;
	background-color: #cee3ef;*/
	background-color: #0066cc;
	border-color: #cccccc;
	color: White;
	cursor: default;
}

/* Default attributes selected (mouse-over) item in drop down lists (month and year). */
.dropdown-select-style
{
    background-color: #3a6ea5;
    cursor: pointer;
}

/* Default attributes unselected (mouse-off) item in drop down lists (month and year). */
.dropdown-normal-style
{
    background-color: #0066cc;
}

/* Default attributes of calendar body (weekday titles and numbers). */
.body-style
{
    padding: 5px; /*background-color: #cee3ef;*/
    background-color: white;
    font-family: verdana;
    font-size: 10px;
    background: transparent url(sprite.png) repeat-x 0px -1658px;
}

/* Attributes of current day in calendar body. */
.current-day-style {
	/*color: red;*/
	color: red;
	font-weight: bold;
	text-decoration: none;
}

/* Attributes of end-of-week days (Sundays) in calendar body. */
.end-of-weekday-style {
	color: #909090;
	text-decoration: none;
}

/* Attributes of all other days in calendar body. */
.normal-day-style {
	color: black;
	text-decoration: none;
}

/* Attributes of disabled days in calendar body. */
.disabled-day-style
{
    color: #ffa07a;
    text-decoration: line-through;
}

/* Attributes of border around selected day in calendar body. */
.selected-day-style {
	border-style: solid;
	border-width: 1px; 
	border-color: #a0a0a0;
	color: #0066cc;
	font-weight: bold;
}

/* Default attributes of designated holidays. */
.holiday-style {
	background-color: #FFDDDD;
}

/* Attributes of today display at bottom on calendar */
.today-style {
	padding: 0px;
	color: white;
	/*background-color: #cee3ef;*/
	background-color: #acacac;
	text-align: center;
	text-decoration: none;
}

/* Attributes of week number division (divider.gif) */
.weeknumber-div-style {
	background-color: #d0d0d0; 
	padding: 0px;
}

