/* General menu styling */
.nav {
position: relative;
margin: 0;
padding: 0;
line-height: 28px;    /* rjs June 11, 2019  was 22px; */
}
/* The main navigation link containers */
.nav>li {
display: block;
float: left; /* Displaying them on the same line */
margin: 0;
padding: 0;
}
/* The main navigation links */
.nav>li>a {
/* Layout */
display: block;
position: relative;
padding: 5px 15px;  /* changed for wh from 5px 30px; */ /* rjs was 10px 40px; */   /* rjs was 10 20 */
/* Text */
font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
color: #000;
font-size: 16px;   /* change back for WH from 30px;   */     /* rjs June 11, 2019  was 22px; */
text-decoration: none;
/* Background */
/* rjs background: black; /* For older browsers */
/* invalid property name background-color:#DAA520; */
/* background: rgba(0, 0, 0, .6); rjs 11 June 2019 try opaque for phone *//* Transparent background for modern browsers */
background: #DAA520;  /* rjs rgba(0, 0, 0, 1.0); */ /* 0 is transparent, 1 is completely opaque */
/* Making the color to change on hover with a transition */
/*
-webkit-transition: color .3s ease-in;
-moz-transition: color .3s ease-in;
-o-transition: color .3s ease-in;
-ms-transition: color .3s ease-in;
*/
/* rjs maybe speeding up the menu will make it easier to use. */
-webkit-transition: color .2s ease-in;
-moz-transition: color .2s ease-in;
-o-transition: color .2s ease-in;
-ms-transition: color .2s ease-in;
}
/* Changing the color on hover */  /* this affects the top level menu, not the dropdowns */
.nav>li>a:hover, .nav>li:hover>a {
color: #F8F8F8;
}
/* The links which contain dropdowns menu are wider, because they have a little arrow */
.nav>.dropdown>a {
/* padding: 10px 30px 10px 20px; */
padding: 5px 15px;  /* rjs  10px 20px;  */
z-index: 999;  /* rjs added */
}
/* The arrow indicating the dropdown */
.dropdown>a::after {
content: "";
position: absolute;
top: 17px;   /* rjs was 17 */
right: 5px;
width: 7px;  /* rjs june 11 was 7px; */
height: 7px;      /* rjs June 11, 2019  was 7px; */
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
}
/* Changing the color of the arrow on hover */	
.dropdown>a:hover::after, .dropdown:hover>a::after {
border-color: #E0C010;
}
/* The submenus */
.nav ul {
position: absolute;
margin: 0;
padding: 0;
list-style: none;
display: block;
}
/* General layout settings for the link containers of the submenus */
.nav ul li {
position: absolute;
top: -9999px; /* Hiding them */
height: 0px;
display: block;
margin: 0;
padding: 0;

/* invalid property name background-color: #DAA520;  */ 
background: #DAA520;

/* Making them to expand their height with a transition, for a slide effect */
/*
-webkit-transition: height .2s ease-in;
-moz-transition: height .2s ease-in;
-o-transition: height .2s ease-in;
-ms-transition: height .2s ease-in;
*/
/* rjs maybe speeding up the menu will make it easier to use. */
-webkit-transition: height .1s ease-in;
-moz-transition: height .1s ease-in;
-o-transition: height .1s ease-in;
-ms-transition: height .1s ease-in;
}
/* Displays the submenu links, by expading their containers (with a transition, previously defined) and by repositioning them */
.dropdown:hover>ul>li {
height: 36px;      /* rjs June 11, 2019  was 30px; */
position: relative;
top: auto;
}
/* The submenu links */
.nav ul li a {
/* Layout */
padding: 4px 15px;  /*  rjs was 4px 20px; */
width: 140px;    /* rjs June 11, 2019  was 130px; */  /* rjs make wider 120px; */
display: block;
position: relative;
/* Text */
font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif;
color: #000;  /* rjs was #bbb;  */
text-decoration: none;
font-size: 16px;      /* rjs June 11, 2019  was 16px; */
/* Background & effects */
/* rjs background: black;  */
background: #DAA520;
/* invalid property background-color: #DAA520;  */
/*  background: rgba(0, 0, 0, .6);  rjs try opaque */
/* rjs background: rgba(0, 0, 0, 1.0); */  /* 0 is transparent, 1 is completely opaque */
/*
-webkit-transition: color .3s ease-in, background .3s ease-in;
-moz-transition: color .3s ease-in, background .3s ease-in;
-o-transition: color .3s ease-in, background .3s ease-in;
-ms-transition: color .3s ease-in, background .3s ease-in;
*/
/* rjs maybe speeding up the menu will make it easier to use. */
-webkit-transition: color .2s ease-in, background .2s ease-in;
-moz-transition: color .2s ease-in, background .2s ease-in;
/* invalid property name -o-transition: color .2s ease-in, background .2s ease-in;  */
/* invalid property name -ms-transition: color .2s ease-in, background .2s ease-in;  */

z-index: 999;  /* rjs added to keep on top of the photo gallery */
}
/* Changing the link's color and background on hover */
.nav ul li:hover>a, .nav ul li th a:hover {
color: #F4F4F4;  /* rjs try this   #0fd0f9;  */
/*  rjs try opaque   background: rgba(0, 0, 0, .75);  */
/*background: rgba(0, 0, 0, 1.0);   */  /* 0 is transparent, 1 is completely opaque */
background: #E0C010;
}
/* Making the level 2 (or higher) submenus to appear at the right of their parent */
.nav ul .dropdown:hover ul {
left: 160px;
top: 0px;
}
/* The submenu links have a different arrow which indicates another dropdown submenu */
.nav ul .dropdown a::after {
width: 9px;  /* rjs was 6px; */
height: 10px;  /* rjs was 6px; */
border-bottom: 0;
border-right: 1px solid #fff;
border-top: 1px solid #fff;
top: 14px;  /* rjs was 12px */
}
/* Changing the color of the arrow on hover */
.nav ul .dropdown:hover>a::after, .nav ul .dropdown>a:hover::after {
border-right: 1px solid #0fd0f9;
border-top: 1px solid #0fd0f9;
}
