@charset "UTF-8";
/* CSS Document */

/* colour scrollbar ?*/
.menu-rhs  ::-webkit-scrollbar {
      width: 15px;
} /* this targets the default scrollbar (compulsory) */
.menu-rhs  ::-webkit-scrollbar-track {
      background-color: #069;
} /* the new scrollbar will have a flat appearance with the set background color */
 
.menu-rhs ::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2); 
} /* this will style the thumb, ignoring the track */
 
.menu-rhs ::-webkit-scrollbar-button {
      background-color: #000;
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
 
.menu-rhs  ::-webkit-scrollbar-corner {
      background-color: #069;
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */
.menu-rhs button {
	font-size: 1.1em;
	text-align:left;
	color:#fff;
	padding:5px;
	display: block;
	background-color: #069;
	border: none;
	border-bottom: #307899 1px solid;
	width: 95%;
	border-radius:4px;
}
.menu-rhs button:hover, .menu-rhs button[aria-pressed=true] {
	background-color: #036;
}
