/*cominus style */

/* tag elements ******************************************************************************/
html, body {
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 200px;
	overflow: scroll;
	background-color: #000000;
	color: #ffffcc;
	font-size: 12px;
	}
h1 {
 	font-size: 160%;
	}
h2 {
 	font-size: 130%;
	}
h3 {
 	font-size: 120%;
	}
h4 {
 	font-size: 110%;
	}
h5 {
 	font-size: 100%;
	}
p {
	font-size: 100%;
	}
img {
	border: 0;
	padding: 2px;
	}
ol {
	list-style-type: decimal;
	text-indent: 5em;
	}
ul {
 	list-style-type: square;
	}
ul ul {
 	list-style-type: disc;
	}
td {
	font-size: 90%;
	color: #660066;
	}

/*link and navigation elements *****************************************************************/
a:link, a:visited {
	font-weight: normal;
	color: #ffff00;
	text-decoration:none; 
	}
a:hover {
	text-transform: none;
	color: #80C9FF;
	}
	
/* class elements ***************************************************************************/
.smallRedBold {
	font-weight: bold;
	font-size: 90%;
	color:#FF0000;
	}
.smallBlueBold {
	font-weight: bold;
	font-size: 90%;
	color:#0000FF;
	}
.smallGreenBold {
	font-weight: bold;
	font-size: 90%;
	color: #003300;
	}

/* object elements *************************************************************/                 
/* here are the objects that contain header bars, menu, content and footers ****/
/* NOTE FOR THESE OBJECTS: *****************************************************/
/* total recomend width of page is 1000 for mozilla 998 for IE *****************/
/* total width = width + padding ***********************************************/
#box { /* holds the content container in template */
	position: relative;
	float: left;
	margin-top: 0;
	margin-left: 0;
	display: block;
	width: 100%;
}
#masthead {
	display: none;
}
#content {
	position: relative;
	float: left;
	margin-top: 0;
	margin-left: 0;
	display: block;
	width: 100%;
}
#footer { /* holds site info and small print, etc */
	position: relative;
	float: left;
	margin-top: 0;
	margin-left: 0;
	display: block;
	width: 100%;
}
#right_column { 
	position: relative;
	float: left;
	margin-top: 0;
	margin-left: 0;
	display: block;
	width: 100%;
}
#right_column a { 
	font-weight: normal;
	color: #ffff00;
	text-decoration:none; 
}
#right_column a:hover {
	color: #80C9FF;
}
#right_column ul { 
	margin-left:1em; 
	list-style-type:none; 
}

/* two options for menu: horizontal bar and sidebar ****************************/
/* FIRST menu bar navigation ***************************************************/
/* this section is for bar style menu with drop-down lists *********************/
#menu_bar { /* menu horizontal bar object */
	display: block;
	background-color: #666666; /* bar background color */
	}
#menu_bar_nav, #menu_bar_nav ul { /* menu horizontal bar object */
	display: block;
}
#menu_bar_nav li {
	font-weight: bold;
	display: block;
	}
#menu_bar_nav li a {
	display: block;
	color: #ffffcc; /* menu bar font color */
	text-decoration: none;
	}
#menu_bar_nav li a:hover {
	color: #ffff00; /* menu bar font color - hover */
	}
/* these next lines are for the drop down from the menu bar */
#menu_bar_nav li ul {
	background-color: #f0eed7; /* drop-down background color */
	list-style: none;
	display: block;
	}
#menu_bar_nav li ul li {
	display: block;
	font-size: 10px;
	}
#menu_bar_nav li ul li a {
	color: #333333; /* drop down font color */
	display: block;
	}
#menu_bar_nav li ul li a:hover {
	background-color: #999999; /* drop-down background color - hover*/
	color: #f0eed7; /* drop down font color - hover */
	display: block;
	}
#menu_bar_nav li:hover ul {
	display: block;
	}
/* END NAV BAR STYLES **********************************************************/

