/* cominus style */

/* tag elements ****************************************************************/
html, body {
	margin: 0;
	padding: 0;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #000000;
	color: #363636;
}
h1 {
 	font-size: 160%;
}
h2 {
 	font-size: 130%;
}
h3 {
 	font-size: 120%;
}
h4 {
 	font-size: 110%;
}
h4.notice {
	text-align: center;
	color: #660000;
}
h4.page_name {
	color: #5b5b5b;
	padding: 10px 0 0 10px;
}
h5 {
 	font-size: 100%;
}
p {
	font-size: 100%;
}
img {
	border: 0;
	padding: 10px;
	border-top: 1px solid #cccccc;
	border-right: 2px solid #cccccc;
	border-bottom: 2px solid #cccccc;
	border-left: 1px solid #cccccc;
	margin-bottom: 5px;
	background-color: #ffffff;
}

/* link and navigation elements ***************************************************/
a:link, a:visited {
	text-decoration: none;
	font-weight: bold;
	color: #00248F;
}
a:hover {
	text-transform: none;
	font-weight: bold;
	color: #003300;
}
	
/* class elements **************************************************************/
.boldRed {
	font-weight: bold;
	color: #FF0000;
}
.boldBlue {
	font-weight: bold;
	color: #00248f;
}
.boldCominusBlue {
	font-weight: bold;
	color: #5d857c;
}
.byline {
	font-size: 90%;
	font-style: italic;
	text-align: right;
}	
.error {
	font-weight: bold;
	font-size: 110%;
	color: #FF0000;
}
.footnote {
	font-size: 95%;
}
.small {
	font-size: 90%;
}

/* 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 */
	margin-top: 10px;
	margin-left: 100px;
	position: absolute;
	background-image: url("http://jackcase.com/images/JackCase.jpg");
	background-repeat: no-repeat;
	width: 843px; 
	height: 1100px;
	padding: 0;
}
#content {
	margin-top: 275px;
	margin-left: 262px;
	position: absolute;
	background-image: url("http://jackcase.com/images/content_bkgrd.jpg");
	width: 500px; 
	height: 520px;
	padding: 10px;
	color: #363636;
}
#footer { /* holds site info and small print, etc */
	margin-top: 1035px;
	margin-left: 240px;
	position: absolute;
	text-align: center;
	width: 486px; 
	padding: 10px;
	font-size: 90%;
	color: #363636;
	clear: both;
}
#right_column { 
	width:150px; 
	position:absolute; 
	right:-170px; 
	top:0; 
	padding-top:29em; 
	padding-right: 5px; 
	padding-left: 5px; 
	padding-bottom: 3em; 
	font-size: 80%; 
	line-height:140%; 
}
#right_column a { 
	font-weight: normal;
	color: #ffffff;
	text-decoration:none; 
}
#right_column a:hover {
	color: #ff0000;
}
#menu_background {
	margin-top: 280px;
	margin-left: 60px;
	position: absolute;
	background-image: url("http://jackcase.com/images/menu_bkgrd.jpg");
	width: 190px; 
	height: 80px;
}
#menu_list {
	color: #000000;
	font-family: Times, serif;
	font-weight: normal;
}

/* 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 */
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
	height: 20px; /*do not format a width */
	z-index: 999999; /* object is tight to content_box and this assures menu_bar will drop in front of content */
	}
#menu_bar_nav, #menu_bar_nav ul { /* menu horizontal bar object */
	padding: 0;
	margin: 0;
	list-style: none;
	}
#menu_bar_nav li {
	font-weight: normal;
	display: block;
	float: left;
	text-align: left;
	font-size: 16px;
	height: 18px;
	line-height: 18px;
	}
#menu_bar_nav li a {
	display: block;
	width: 160px; /* width of space for menu items on the bar */
	color: #000000; /* menu bar font color */
	text-decoration: none;
	}
#menu_bar_nav li a:hover {
	color: #666666; /* menu bar font color - hover */
	}
/* these next lines are for the drop down from the menu bar */
#menu_bar_nav li ul {
	background-color: #cccccc; /* drop-down background color */
	position: absolute;
	z-index: 999999;
	padding: 0;
	margin: 0;
	list-style: none;
	border: 3px solid #333333;
	margin: 0 0 0 -5px;
	display: none;
	}
#menu_bar_nav li ul li {
	float: none;
	width: 155px; /* width of drop down box */
	padding: 0;
	margin: 0;
	font-size: 10px;
	border-bottom: 1px solid #333333;
	}
#menu_bar_nav li ul li a {
	color: #333333; /* drop down font color */
	width: 155px; /* width of drop down box */
	height: 20px;
	line-height: 20px;
	}
#menu_bar_nav li ul li a:hover {
	background-color: #666666; /* drop-down background color - hover*/
	color: #f0eed7; /* drop down font color - hover */
	}
#menu_bar_nav li:hover ul {
	display: block;
	}
/* END NAV BAR STYLES **********************************************************/

