/**
 * common styles for td which contains menu item.
 */
.menu_common {
  height: 28px;
  width : 1%;
  padding-left: 28px;
  padding-right: 28px;
}
/**
 * style for selected menu item td, provides top,left and right border and make
 * bottom border null.
 */
.menu_selected {
  border-top: 2px solid #ea5b00;
  border-right: 2px solid #ea5b00;
  border-bottom:0px;
  border-left: 2px solid #ea5b00;
}
/**
 * style provides bottom border for td
 */
.menu_bottom_border {
  border-bottom:2px solid #ea5b00;
}
/**
 *common styles for submenu td
 */
.submenu_common {
  height: 18px;
  width: 1%;
  padding-left: 20px;
  padding-right: 20px;
}
/**
 * style for div between main main menu and sub menu.
 */
.submenu_clear {
  border-left: 2px solid #ea5b00;
  height: 2px;
  border-right: 2px solid #ea5b00;
}
/**
 * specify the width of table which contains the menu. Otherwise it will not
 * align properly in firefox version 2.0.0.12
 */
.menu_container_table {
  width: 946px;
}
/**
 * style provides left border of submenu.
 */
.menu_left_border {
  border-left:2px solid #ea5b00;
}
/**
 * style provides right border of submenu.
 */
.menu_right_border {
  border-right:2px solid #ea5b00;
}