@CHARSET "UTF-8";
/* base settings for the entire page */
body {
	background-color: #176D7D;
	font: normal 16pt Arial, sans-serif;	
	color: #FFFFFF;
	cursor: pointer;
}
/* size and center the schedule block, and give it the blue color */
#schedule {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
	background-color: #5A67DE;
}
/* fixed width table layout proved very useful */
#schedule table {
	table-layout: fixed;
	margin: 0px 4px 0px 4px;
	width: 1016px;
	font: inherit;
	border-collapse: collapse;
}
#schedule td {
	padding: 4px;	
}
/* TiVo logo */
#logo {
	width: 80px;
}
/* align the clock */
#clock {
	text-align: right;
	vertical-align: bottom;
	width: 80px;
}
/* size, color, and border for the description block */
#program-description {
	background-color: #0A2A2C;
	margin: 0px 4px 0px 4px;
	font-size: 14pt;
	border: 2px inset #999999;
	padding: 4px;
	height: 150px;
}
/* date cells */
.date {
	text-align: center;
	width: 144px;
}
/* channel cells */
.channel {
	background-color: #747474;
	border: 2px outset #999999;
	width: 144px;
	font-weight: bold;
}
/* channel name font */
.channel-name {
	font-size: 12pt;
	font-weight: normal;
}
/* time cells */
.time {
	text-align: center;
	border-left: 2px solid #3845BC;
	height: 30px;
	margin-bottom: 2px;
}
/* tv program cells */
.program {
	background-color: #0090C0;
	border: 2px outset #999999;
	font-size: 14pt;	
}
/* selected program's color */
.selected-program {
	background-color: #B8C67B;	
}
/* font for bottom row */
#footer td {
	font-size: 10pt;
	font-weight: bold;
	text-align: center;
}
