/*
scal.css - The style sheet for the scal calendar control.

Everything style-wise in scal is controlled through the use of css classes.  You begin by defining your
base element (i.e. the div that will hold the calendar) with a style class as defined in this file.  From there,
all elements of the calendar will automatically be assigned their style as a subset of the class.

To make a new style, just copy the scal classes paste at the bottom of the file.  Change the
css class name to a unique name (ex. .scal to .mycalendar) and then you will have your own unique class for scal.
Once the css is in place, update your HTML to use the new class name in the base element definition:

<div id="calendar_holder" class="scal"></div>

That's all you need to do to create your own style for scal.  Of course, you can also derive your own classes from
the scal class itself.  Just override the element you want to change and then append your new class name to the 
class element of the base element:

.mycal{background-color:red;}

<div id="calendar_holder" class="scal mycal"></div>

Now, you'll have a sweet red background for your scal.

P.S. Try out the included versions to see how they work and have fun! 
*/

/*
googleblue - inspired by google's default calendar widget on iGoogle
*/
.googleblue{
	background-color: #eef1f4;
	margin:1px;
	border:1px solid #eef1f4;
	font-size:9pt;
	width:219px; /* cellwidth * 7 + cellpadding * 14 + cellborder * 14 */
	display:block;
	padding:3px;
	/*min-height:175px;*/
}
/*
.googleblue:hover{
	cursor:pointer;
}*/

.googleblue .dayinmonth{
    cursor:pointer;
}

.googleblue .disabled{
	cursor:default !important;
}

.googleblue .calwrapper{
	display:block;
}
.googleblue .calweekswrapper{
	display:block;
}
.googleblue .calheader{
	display: block;
	width:100%;
	text-align:center;
	color:#112aab;
	font-size:11pt;
	font-weight: bold;
	margin-bottom:2px;
}
.googleblue .caltitle{
	width:auto;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}
.googleblue .calcontrol{
	font-weight: bold;
	width:25px;
}
.googleblue .calcontrol:hover{
}
.googleblue .calclose{
	float:right;
	display:none;
}
.googleblue .calprevmonth{
	float:left;
	cursor: pointer;
}
.googleblue .calnextmonth{
	float:right;
	cursor: pointer;
}
.googleblue .calnextyear{
	display:none;
}
.googleblue .calprevyear{
	display:none;
}
.googleblue .daybox{
	float:left;
	background-color: white;
	border:1px solid white;
	width:25px;
	padding:2px;
	color:black;
	text-align:center;	
}
.googleblue .dayboxvalue{
    display: none;
}
.googleblue .dayboxname{
	border: 1px solid #d7d7d7;
	background-color: #d7d7d7;
	color:black;
}
/*
.googleblue .dayboxвс{
	background-color: #e6ffd1;
	border: 1px solid #e6ffd1;
}
.googleblue .dayboxсб{
	##background-color: #e6ffd1;
	border: 1px solid #e6ffd1;
}
*/
.googleblue .dayinmonth{
	color: black;
}
.googleblue .dayoutmonth{
	color: #adb7ba;
}
.googleblue .disabled{
    color: #adb7ba;
}
.googleblue .enabled{
	font-weight: 500;
    color: black;
    border: 1px dotted green;
}
.googleblue .enabled :hover{
    background-color: #72c92c;
}
.googleblue .dayselected{
	background-color: #72c92c;
	color: black;
}
.googleblue .daycurrent{
	border:1px solid #e8eef7;
}
.googleblue .weekbox{
	width:100%;
	min-height:21px;
	display:block;
}
.googleblue .endweek{
	float:left;
}
.googleblue .weekboxname{
}