/* Assigning "*" in the css sheet means every element in the page will follow this rule unless stated otherwise by an
element's specific class or id definition. */
* {font-family:Tahoma;font-size:11px}
BODY
{
	BACKGROUND-COLOR: #000000;
  COLOR: #000000;
	margin: 0px auto;
	text-align: center;
	background-image:url("/images/page_bg.gif");
  height: 100%;
}

#content{
	width: 1024px;	
	margin: 0px auto ;
	position: relative; top: 0px; left: 0px; 
	text-align:left;
	height: 100%;
	
}
.schedulelist{
	font-size: 12px;
	font-family: 'verdana';
}
/* HTML elements are things like "div", "span", "table", "a", "img".  An element whose style is unique and will be used 
once is given an id denoted by "#".  An element whose style is general and may be used again is given a class denoted by
".".  Assigning padding to an element means that the content of the element will have space between it and what would 
be the border of the element.  Assigning a margin to an element means that the element will have space between it and
the next element.  Often, you can choose either padding or margin to get the desired effect.  */
.marginbottom10 {margin-bottom:10px}

.noborder {border:none}
.clearboth {clear:both}
.displayblock {display:block}

#contact_content {padding:20px;text-align:center}
#news_content {padding:10px;width:75%}
/* the following rule says do this for every div element in the div whose id is "news_content" */
#news_content div {margin-bottom:10px}
.news_title {font-weight:bold;font-size:13px}
.news_subtitle {font-style:italic}	

#points_content {float:left;width:300px;margin:70px 20px 0px 25px;text-align:center}
#images_content {float:left;width:428px}
.eachimage {border:none;display:block;margin:10px 0px}
#points_title {margin:10px;font-weight:bold;font-size:16px;text-align:center}
#points_table {margin:auto}
/* the following rule says do this for every td element in the table whose id is "points_table" */
table#points_table td {padding:0px 10px;text-align:center}
.points_hilite {color:blue;font-weight:bold}
