/*
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! 
*/

/* HACS CALENDAR */


.hacs{
		
	background-color: #EEEEEE;
	margin:0px;
	border:3px solid #BEC5C9;

	width:450px;
	height:348px;
	display:block;
	padding:1px;
	font-family:Arial,'Lucida Grande',Verdana,Sans-Serif;
	line-height:normal;
	color:#666666;
	cursor:pointer;
}
.hacs:hover{
	cursor:pointer;
	/*cursor:hand; /* If you're worried about old IE versions, turn this on.  I have it off because I hate seeing css exceptions in my debug window. ;) */
}
.hacs .calwrapper{
}
.hacs .calweekswrapper{
	display:block;
}
.hacs .calheader{
	display: block;
	width:99%;
	text-align:center;
	margin:2px;
	padding-top:2px;
	padding-bottom:2px;
	font-size:12pt;
	color:#666666;
	font-weight:bolder;
	
}
.hacs .caltitle{
	width:60%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	text-transform: uppercase;
	
}
.hacs .calcontrol{
	

}
.hacs .calcontrol:hover{
	color:#6f0000;
}
.hacs .calclose{
	display:none;
}
.hacs .calprevmonth{
	padding-left:4px;
	float:left;
}
.hacs .calnextmonth{
	padding-right:4px;
	float:right;
}
.hacs .calnextyear{
	display:none;
}
.hacs .calprevyear{
	display:none;
}
.hacs .daybox{
	float:left;
	background-color: #CECFD1;
	width: 60px;
	height:45px;
	text-align:center;	
	margin:1px;
	border-left:1px solid #FFF;
	border-right:1px solid #CCC;
	border-top:1px solid #FFF;
	border-bottom:1px solid #CCC;
}
.hacs .dayboxvalue{
    display: none;
}
.hacs .dayboxname{
	font-size:10pt;
	font-weight:bolder;
	text-transform: uppercase;
	background-color:#EEEEEE;
	height:18px;
	border-bottom:2px solid #CCCCCC;
}
.hacs .dayboxsunday{
	background-color: #CECFD1;
}
.hacs .dayboxsaturday{
	background-color: #CECFD1;
}
.hacs .daybox:hover{
	background-color:#086699;
	color:#FFFFFF;
	
}
.hacs .dayboxname:hover{
	color:#FFF;
}
.hacs .dayinmonth{
	color: #666666;
}
.hacs .dayoutmonth{
	color:#FFFFFF;
	background-color:#EEEEEE;
}
.hacs .dayselected{
	color: #FFFFFF;
	background-color:#0b2b44;
	border-top:1px solid #AAA;
	border-left:1px solid #AAA;
}
.hacs .daycurrent{
	background-color:#d9d9d9;
}
.hacs .weekbox{
	width:100%;
	display:block;
	padding:1px;
}
.hacs .endweek{
	float:left;
}
.hacs .weekboxname{
}
.hacs .dayboxdate{
	padding-top:4px;
    text-align: center;
   
   	font-weight:bolder;
   	font-size:20pt;
   	
}


/* DEFAULT*/
.scal{
	background-color: white;
	margin:3px;
	border:1px dashed gray;
	font-size:24pt;
	width:436px;
	min-height:300px;
	display:block;
	padding:10px;
	font-size:24pt;
	font-family:'Lucida Grande',Verdana,Arial,Sans-Serif;
	line-height:normal;
}
.scal:hover{
	cursor:pointer;
	/*cursor:hand; /* If you're worried about old IE versions, turn this on.  I have it off because I hate seeing css exceptions in my debug window. ;) */
}
.scal .calwrapper{
}
.scal .calweekswrapper{
	display:block;
}
.scal .calheader{
	display: block;
	width:100%;
	text-align:center;
	margin-bottom:2px;
}
.scal .caltitle{
	width:60%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}
.scal .calcontrol{
	margin: 2px;
	padding: 2px;
	font-size:12pt;
	font-weight: bold;
}
.scal .calcontrol:hover{
	background-color:red;
	color:white;
}
.scal .calclose{
	border: 1px solid black;
	float:right;
}
.scal .calprevmonth{
	float:left;
}
.scal .calnextmonth{
	float:right;
}
.scal .calnextyear{
	display:none;
}
.scal .calprevyear{
	display:none;
}
.scal .daybox{
	float:left;
	border:1px solid black;
	width: 60px;
	color:black;
	text-align:center;	
}
.scal .dayboxvalue{
    display: none;
}
.scal .dayboxname{
	background-color: black;
	color:white;
	font-size:16pt;
}
.scal .dayboxsunday{
	background-color: lightgray;
}
.scal .dayboxsaturday{
	background-color: lightgray;
}
.scal .daybox:hover{
	border:1px solid red;
}
.scal .dayboxname:hover{
	border:1px solid black;
}
.scal .dayinmonth{
	color: black;
}
.scal .dayoutmonth{
	color:gray;
}
.scal .dayselected{
	background-color: red;
	color: white;
}
.scal .daycurrent{
	border:1px solid red;
}
.scal .weekbox{
	width:100%;
	display:block;
}
.scal .endweek{
	float:left;
}
.scal .weekboxname{
}

