﻿/* These styles control the menu and/or contact buttons.
 * Menu buttons run across the top of the page (e.g. Products).
 * Contact buttons are similar, but specialized for requesting
 * a demo or going straight to the "contact us" page.
 * The real difference is just the colors and background image they use.
 */
 
/* This produces the default coloring of the menubar along the top of the page.
 */
div#MenuBar {
	background-image: url("../images/MenuBarBackground.gif");
	background-repeat: repeat-x;
	border-bottom: 1px solid silver;
	border-top:    1px solid silver;
	float: left;
	position: relative;
	width: 850px;
	height: 25px;
}

/* for the buttons in the menu bar... */
div#MenuBar ul {
	list-style-type: none;
	font-family: Tahoma;
	font-size: 12px;
	font-weight:normal;
	text-align: center;
	text-transform: uppercase;
	float: left;
	height: 25px;
	margin: 0;
	padding: 0;
}

div#MenuBar ul a {
	display: block;
	text-decoration: none;
	background-repeat: no-repeat;
	width: 170px;
	height: 25px;
	line-height: 25px;
	color: black;
}

div#MenuBar ul a:hover {
	color: blue;
	text-decoration: underline;
}

div#MenuBar ul li {
	display: inline;
	float: left;
}

/* for the buttons in the button box in the top banner... */
div#ButtonBox ul {
	list-style-type: none;
	font-family: Tahoma;
	font-size: 12px;
	font-weight:bold;
	text-align: center;
	float: left;
	height: 29px;
	margin: 0;
	padding: 0;
}

div#ButtonBox ul a {
	display: block;
	text-decoration: none;
	background-repeat: repeat-x;
	width: 250px;
	height: 29px;
	line-height: 29px;
	color: red;
	background-image: url('../images/ContactButton.gif');
}

div#ButtonBox ul a:hover {
	color: #FF6820;
}

div#ButtonBox ul li {
	display: inline;
	float: left;
}

