/*   PC Styles   */

#main_menu {
  max-width: 840px;
  position: relative;
  background-color: -green;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  z-index: 1000;
}

/*Strip the ul of padding and list styling*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
}

/*Create a horizontal list with spacing*/
li {
  display: inline-block;
  float: left;
}

/*Style for menu links*/
li a {
  display: block;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #000000;
  background: #fdbb30;
  text-decoration: none;
  padding: 0px 10.95px;
}

/*Hover state for top level links*/
li:hover a {
  color: #000000;
  background: #ffffff;
}

/*Style for dropdown links*/
li:hover ul a {
  text-align: left;
  background: #ffcf6b;
  color: #000000;
  height: 40px;
  line-height: 40px;
  width: auto;
  border-bottom: solid 1px #fdbb30;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
  background: #ffffff;
  color: #000000;
}

/*Hide dropdown links until they are needed*/
li ul {
  display: none;
}

/*Make dropdown links vertical*/
li ul li {
  display: block;
  float: none;
}

/*Prevent text wrapping*/
li ul li a {
  width: auto;
  min-width: 100px;
  padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden,
.hidden:hover {
  display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-main-menu {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 14px;
  text-decoration: none;
  height: 50px;
  color: #ffffff;
  background: #fdbb30;
  text-align: center;
  padding: 0px 0;
  display: none;
  background-image: url(../images/horiz_menu_button_out.png);
  background-repeat: no-repeat;
  background-position: right 5px top 50%;
  background-attachment: scroll;
  border-bottom: solid 0px #ffcf6b;
}

.show-main-menu:hover {
  background-image: url(../images/horiz_menu_button_over.png);
  cursor: pointer;
}

/*Hide checkbox*/
input[type="checkbox"] {
  display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type="checkbox"]:checked ~ #main_menu {
  display: block;
}

/*   Tab port Styles   */

@media screen and (max-width: 990px) {
   {
    max-width: 100%;
    height: 50px;
    position: relative;
    background-color: -blue;
  }

  /*Style for menu links*/
  li a {
    display: block;
    width: calc(100% - 10px);
    height: 40px;
    text-align: left;
    line-height: 40px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    text-decoration: none;
    padding: 0px 0px 0px 10px;
    border-bottom: solid 0px #ffcf6b;
  }

  /*Hover state for top level links*/
  li:hover a {
    color: #fdbb30;
    background: #000000;
  }

  /*Style for dropdown links*/
  li:hover ul a {
    background: #ffcf6b;
    color: #000000;
    height: 40px;
    line-height: 40px;
    width: auto;
    text-align: left;
  }

  /*Make dropdown links appear inline*/
  ul {
    position: static;
    display: none;
  }
  /*Create vertical spacing*/
  li {
    margin-bottom: 0px;
  }
  /*Make all menu links full width*/
  ul li,
  li a {
    width: 100%;
  }
  /*Display 'show menu' link*/
  .show-main-menu {
    display: block;
  }
}

/*----------	MAIN MENU HIGHLIGHTS ON BEGIN  ---------*/

#business .overview,
#timeline .overview,
#disclaimer .overview,
#privacy .overview,
#data .shares,
#diary .shares,
#analysis .shares,
#alert .shares,
#sens .press,
#press .press,
#presentations .press,
#review .financials,
#report .financials,
#archive .financials,
#directors .governance,
#exec_com .governance,
#governance .governance,
#sustain .governance,
#bel .statutory,
#becsa .statutory,
#bessa .statutory,
#begs .statutory,
#contacts .contact {
  color: #000000;
  background: white;
}

/*----------	MAIN MENU HIGHLIGHTS ON ENDS  ---------*/
