/*
Default style for the nogray calendar
the default class prefix is ng-

made by Wesam Saif
http://www.nogray.com
support@nogray.com

*/

/* the main header table */
.ng-cal-header-table {
	margin:4px;
	border-collapse:collapse;
	/*background:#efefef;*/
	border: none;
	/*background-image:url(../images/template/table-title.jpg);*/
	width: 100%;
}
	
/* the previous and next table cells */
.ng-cal-previous-td, .ng-cal-next-td {
	width:20px;
	height:20px;
	color:#000;
	border: none;
	text-align:center;
	font-size: 20px;
}

/* the calendar header table cell (the area where the month and year is displayed) */
.ng-cal-header-td {
	text-align:center;
	font-weight:normal;
	padding:3px;
	font-size: 12px;
}
	
/* the main month table */
.ng-cal {
	border:solid #5fd7d6 1px;
	border-collapse:collapse;
	margin:5px;
	margin-top:0px;
	background-color:#fff;
	float: left;
	color:#000;
	width: 100%;
}
	
.ng-cal * {font-size:8pt;}
.ng-cal td {padding:3px;
	border:solid #d4d4d4 1px;}

/* the days name table cells */
.ng-cal .ng-days-name-td {
	background:#fff;
	border:solid #d4d4d4 1px;
	font-size: 9px;
	color: #999999;
}
	
/* the month name table cell */
.ng-month-name-th {
	display: none;
	background:#2f99b4;
	font-weight:bold;
	padding:3px;
	color:#ffffff;
	text-align:center;}
	
/* weekends, days off, dates off (holidayes) */
.ng-weekend {
	color:#999999;
}
.ng-dayOff {
	color:#999999;
}
.ng-dateOff {
	background-color: #900;
	color:#FFF;
}

/* out of range days (previous or next month) */
.ng-outOfRange {
	color:#ABABAB;
	background:#efefef;
	/*text-decoration:line-through;*/}

/* the style for the table cell when the mouse is over it */
.ng-mouse-over {font-weight:bold;
	background:#faedd6;}
	
/* selected day */
.ng-selected-day {background:#fff;
		font-weight:normal;}
		
/* the close and clear buttons in the bottom of the calendar */
.ng-close-link, .ng-clear-link  {
	
	display:none;
	padding:3px;
	text-align:center;
	color:#666666;
	text-decoration:none;
	font-size:8pt;
	background:#efefef;
	border:solid #cccccc 1px;
	float:right;
	margin-right:5px;}
	
.ng-close-link  {
	margin-right: 16px;
}
	
	
	
	
	
	
	
	
	
	
