html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: #333;
	margin: 0;
	padding: 8px;
	box-sizing: border-box;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: sans-serif;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

/*  calendar */
.hgh_clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.hgh_clearfix { display: inline-table; }
.hgh_clearfix { display: block; }
.hgh_opertation_cursor {cursor:pointer}
.hgh_calendar_wrapper {
	display:block;
	width: 1000px;
	margin: 10px auto;
	background: #FCFCFC;
	color: #C5C2C2;
}
.hgh_calendar {
	margin: 0;
	padding: 0;
	display: block;
	width: 60%;
	float: left;
	height: 300px;
	background: #F3F3F3;
}
.hgh_calendar table {
	width: 100%;
	font-family: sans-serif;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #DADADA;
	background: #ECECEC;
	height: 300px;
}
.hgh_calendar thead {}
.hgh_calendar tr.subhead_cal {
	background: #FF8585;
	color: #FFF;
	font-size: 18px;
	line-height: 48px;
}
.hgh_calendar tr.week_cal {
	background: #FFF;
	color: #D5D5D5;
	font-size: 15px;
	line-height: 47px;
}
.hgh_calendar td.white_cal {
	background: #ECECEC!important;
}
.hgh_calendar tbody.days_cal tr td a {
	padding: 5px 7px;
	text-decoration: none;
	color: #B9B9B9;
	font-size:18px;
	line-height: 40px;
}
.hgh_calendar tbody.days_cal tr td {
	padding: 0;
	margin: 0;
	background: #FAFAFA;
	border: 1px solid #EBEAEA;
	text-align: center;
}
.hgh_calendar .event {
	border-radius: 100%;
	border-bottom: 1px solid #3498DB;
	transition: all 0.3s ease;
}
.hgh_calendar .today_cal {
	font-weight:700;
	font-size:18px;
}
.hgh_calendar .event:hover{
	border-color: #E26D2B;
	color: #E26D2B;
	transition: all 0.3s ease;
}
.hgh_calendar .week_event {
	color: #EE7171;
	width:14.28%;
}
.hgh_calendar_data {
	margin: 0;
	padding: 0;
	display: block;
	width: 40%;
	float: left;
	height: 460px;
	background: #fff;
	border: 1px solid #E6E6E6;
	color: #C5C2C2;
	font-size: 13px;
	font-family: sans-serif;
	font-weight: 700;
	}
.hgh_calendar_data h3 {
	text-align: center;
	font-size: 20px;
	padding: 5px 10px;
	margin: 0;
	color: #FF7676;
	border-bottom: 1px solid #EEEBEB;
	text-transform: capitalize;
	line-height: 40px;
}
.hgh_calendar_data .taskinfo {
	font-size:16px;
	font-weight:500;
	line-height:24px;
}
.hgh_entry {
	position: relative;
	padding: 0 0 0 20px;
	font-size: 13px;
	display: inline-block;
	line-height: 30px;
	background: transparent;
}
.hgh_entry:after {
	position: absolute;
	content: '';
	height: 5px;
	width: 5px;
	top: 12px;
	left: 14px;
}
.hgh_entry.blue:after { background: rgba(156, 202, 235, 1); }
.hgh_entry.orange:after { background: rgba(247, 167, 0, 1); }
.hgh_entry.green:after { background: rgba(153, 198, 109, 1); }
.hgh_entry.yellow:after { background: rgba(249, 233, 0, 1); }
