tr, td {
	margin: 0;
	padding: 0;
}

div.tmr_prg_title {
	font-family:verdana,sans-serif;
	font-weight:normal;
	font-size:13px;
}

td.tmr_td {				/* Upper line, the hours */
	text-align:center;
	font-family:verdana,sans-serif;
	font-weight:bold;
	font-size:12px;
	border:1px solid rgba(0,0,0,0);
}

.tmr_tq {			/* Lower line, the boxes */
	width: 6px;
	height:15px;
	border:1px solid rgba(0,0,0,0);
	margin-right:1px;
	border-radius:2px;
	background-color: green;
	margin: 1px;
	float: left;
}

.tmr_current {
	box-shadow: 0 12px 3px rgba(0, 0, 0, .6);
}

div#heattimer .tmr_tq {
	background-color: blue;
}

.tmr_tq_on {		/* Selected boxes */
	background-color: red;
}
div#heattimer .tmr_tq_on {
	background-color: red;
}

.tmr_tq:hover {
	border:1px solid blue;
}

.tmr_td:hover {
	background-color: SteelBlue;
}

