.clearfix_menu1 {
	margin: 0px;
	padding: 0px;
}

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
   margin-left: 0px;
   background-color: none;  /* background color for the entire menu row */
   width: 100%;
   text-align: right;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding-left: 10px;
   padding-right: 10px;
}


/* menu list items */
div#menu_horiz li {
   float: right; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */
   text-align: center; 
   margin: 0;
   width: 80px;
   padding-top: 0px;
}

/* the links, that is each list item */
div#menu_horiz a {
	margin: 0; /* margin outside each list item box */
	padding-top: 12px;
	display: block;
	width: 80px;
	height: 28px;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
}

/* the page that is now selected */
div#menu_horiz a.currentpage {
	margin: 0; /* margin outside each list item box */
	padding-top: 12px;
	display: block;
	width: 80px;
	height: 28px;
	background-image: url(../images/menu1_active.png);
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #0099ff;
	font-weight: bold;
	text-decoration: none;
}

/* hover state for links */
div#menu_horiz li a:hover {
	color: #0099ff;
}

/* hover state for currently active link */
div#menu_horiz a.currentpage:hover {
	color: #0099ff;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   display: block;
   padding-top: 12px;
   width: 80px;
   height: 28px;
   background-image: url(../images/menu1_active.png);
	
   font-family: Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-style: normal;
   color: #0099ff;
   font-weight: bold;
   text-decoration: none;
}