/**
 *These define simply the general look and feel of the site.
 */
body {background-color: black} 
p {font-family: courier; color: white}

/**
 *These eight table-data styles are the foundation of the update bubble system. Each
 *one defines a different portion of the update box. The corners are a set size, while
 *the sides can grow and shrink as needed.
 */
td.topleft {background-image:url('images/entry-left.bmp')}
td.center {background-image:url('images/entry-center.bmp'); background-repeat: repeat-x}
td.topright {background-image:url('images/entry-right.bmp')}
td.left {background-image:url('images/entry-left-side.bmp'); background-repeat: repeat-y}
td.right {background-image:url('images/entry-right-side.bmp'); background-repeat: repeat-y}
td.bottomleft {background-image:url('images/entry-left-bottom.bmp')}
td.bottom {background-image:url('images/entry-center-bottom.bmp'); background-repeat: repeat-x}
td.bottomright {background-image:url('images/entry-right-bottom.bmp')}

/**
 *This portion of the style sheet provides the styles for the main DIVs that make up the
 *main page. This page uses AJAX (kinda), so the left DIV acts as a menu and the right
 *one is the display DIV.
 */
div.navigate {position:absolute; width:20%}
div.target {position:absolute; left:25%; width:70%}