/* styles.css */

/* Main body styles and main table styles */
body {
font-family: arial;
}
table.my_table {
border-collapse: collapse;
width: 800px;
}
/* Bottom Left Cell (after spacer) for video and other stuff */
td.my_cell {
background: black;
height: 250px;
width: 340px;
/*border: 1px solid yellow;*/
}
/* Bottom Right Cell (before spacer) for links and stuff */
td.my_cell_links {
background: black;
color: white;
font-size: 9pt;
line-height: 15px;
width: 260px;
}
/* Middle Main Cell (between spacers) for main links and logo graphic */
td.top-right {
background: white;
text-align: right;
font-size: 12pt;
color: gray;
font-weight: bold;
height: 280px;
width: 600px;
}
/* Spacers (named correctly) */
td.spacer_top {
background: white;
height: 40px;
width: 800px;
}
td.spacer_middle_left {
background: white;
width: 100px;
}
td.spacer_middle_right {
background: white;
width: 100px;
}
td.spacer_bottom_left {
background: black;
width: 100px;
}
td.spacer_bottom_right {
background: black;
width: 100px;
}
/* Links in Bottom Row (more than one cell) */
a.links:link {
color: white;
text-decoration: none;
}
a.links:visited {
color: white;
text-decoration: none;
}
a.links:hover {
color: white;
text-decoration: underline;
}
/* Links in Middle_Right Cell (main page links) */
a.main_links:link {
color: gray;
text-decoration: none;
}
a.main_links:visited {
color: gray;
text-decoration: none;
}
a.main_links:hover {
color: gray;
text-decoration: underline;
}
