/* CSS Document */

/* Below is a set of CSS rules that will allow you to style the drop down menu bar. */

/* note: the term 'dropdown' refers to the second level menus, which drop down vertically. */
/* note: the term 'flyout' refers to the third level menus, which stick out from the second level drop down menus. */
/* note: you need to change #menubar to reflect the name of the menubar you are styling.
    if the menubar is called 'henry', then change #menubar to #henry
*/

/* use this to style the main menu */
#menubar1 ul.horizontal li.level1 {
width: 180px;
font-size: 12px;
font-family: Arial, Helvetica, sans-serif;
margin-top: 1px;
}

/* controls the root menu's list item links, use this to style the main menus links */
#menubar1 ul.horizontal li.level1 a {
background-color: #A42A30;
text-align: center;
border-top: 1px #494949 solid;
border-left: 1px #494949 solid;
border-right: 1px #F6F7C0 solid;
border-bottom: 1px #F6F7C0 solid;
width: 180px;
padding: 1 6 3 4;
  font-weight : bold;
  font-style : normal;
  color: #F0F0F0;
  text-decoration: none;
}

/* controls the root menu's list item links when a cursor is over them (mouseover) */
#menubar1 ul.horizontal li.level1 a:hover {
border-top: 1px #F6F7C0 solid;
border-left: 1px #F6F7C0 solid;
border-right: 1px #494949 solid;
border-bottom: 1px #494949 solid;
  color: #F6F7C0;
  background-color: #A42A30;
  padding: 2 4 2 6; }

/* this controls the style of the dropdown and flyout menus, A great deal of the styling will be done here, probably. */
/* note that the comma needs to be there, don't remove it. */
#menubar1 ul.dropdown,
#menubar1 ul.flyout {
width: 135px;
margin-top: 1px;
margin-left: 4px;
}

/* this controls the styles of the list items that are in the dropdown and flyout menus.
/* note that the comma needs to be there, don't remove it. */
#menubar1 ul.flyout li.level2,
#menubar1 ul.flyout li.level3 {
margin-top: 2px;
  border-bottom: 1px transparent solid;
}

/* this controls the styles of the list item's links that are in the dropdown and flyout menus */
/* note that the comma needs to be there, don't remove it. */
#menubar1 ul.flyout li.level2 a,
#menubar1 ul.flyout li.level3 a {
background-color: #A42A30;
border-top: 1px #494949 solid;
border-left: 1px #494949 solid;
border-right: 1px #F6F7C0 solid;
border-bottom: 1px #F6F7C0 solid;
width: 135px;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #F0F0F0;
  padding: 1px 5px 3px 5px;
}

/* this controls the style of the list item's links that are in the dropdown and flyout menus when a cursor is over them. (mouseover) */
/* note that the comma needs to be there, don't remove it. */
#menubar1 ul.flyout li.level2 a:hover,
#menubar1 ul.flyout li.level3 a:hover {
background-color: #A42A30;
border-top: 1px #F6F7C0 solid;
border-left: 1px #F6F7C0 solid;
border-right: 1px #494949 solid;
border-bottom: 1px #494949 solid;
  color: #F6F7C0;
  padding: 2 4 2 6;
}

/* This is a set of CSS rules that allow the drop down menubar to function properly. Change these at your own risk!  */

/* this controls the div that is wrapped around the entire menubar */
#menubar1 { position: relative; float: left; }

/* controls the unordered list tag, I don't think styling should be done here either. Use more specific selectors to style the menu. */
#menubar1 ul { margin: 0px; padding: 0px; list-style: none; }

/* controls a list item in an unordered list tag, I don't think styling should be done here either. Use more specific selectors to style the menu. */
#menubar1 ul li { list-style: none; }

/* controls the list item link tag. */
#menubar1 ul li a { float: left; display: block; }


/* controls the width of a list item's link tag. DON'T CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING.
This is needed for things to function well. */
#menubar1 ul.horizontal > li.level1 a { width: auto; }

/* More functional css, don't change unless you know what you are doing */
/* Commented Backslash Hack hides rule from IE5-Mac */
#menubar1 ul li a { float:none; }
/* End IE5-Mac hack */

/* this controls the style of the dropdown and flyout menus, A great deal of the styling will be done here, probably. */
/* note that the comma needs to be there, don't remove it. */
#menubar1 ul.dropdown,
#menubar1 ul.flyout { position: relative; top: 0px; left: 0px; visibility: hidden; }

/* don't change this unless you know what you are doing, this makes sure that the menus appear on the top like they are supposed to */
#menubar1 ul { z-index: 1 !important; }

#menubar1 #bridgetools { margin-bottom: 0px; height: 5px; white-space: nowrap;}

#menubar1 #bridgetools a { padding: 2 10 2 10; }
