/***************************************************/
/* CSS For PCSG Menu Navigation                    */
/* DLM     By     Reason                           */
/* 2020 11 23  KenR  First Version                 */
/* 2020 11 27  KenR  Removed Bottom Line in Menu box    */
/* 2020 12 14  KenR  Changed menu font size.       */
/***************************************************/
nav ul {
  margin: 0;
  padding:0;
  list-style: none;
  z-index: 10;
}
.nav a {
  display:block;
  /* background of menu block */
  background: #1f9ec4; 
  /* font color */
  color: white; 
  text-decoration: none;
  padding: 0.8em 1.8em;
  font-size: 18px;
  letter-spacing: 2px;
  font-family: arial;
  /* drop shadow color of font */
  text-shadow: 0 -1px 0 #49a0ba;
  position: relative;
}
.nav{  
  vertical-align: top; 
  display: inline-block;
  z-index: 10;

}
.nav li {
  position: relative;
}
.nav > li { 
  float: left; 
  /* bottomline color */
  border-bottom: 4px #6dbad1 solid; 
  margin-right: 1px; 
} 
.nav > li > a { 
  margin-bottom: 1px;
  /* top half of menu block */
  /* box-shadow: inset 0 2em .33em -0.5em #1f9ec4; */
  
  
}
.nav > li:hover, 
.nav > li:hover > a { 
  border-bottom-color: #2762c2;
  color: yellow;
  
}
.nav li:hover > a { 
	/# hover colors #/
  color: yellow; 
  background-color: #1f7d99;
  /* box-shadow: inset 0 2em .33em -0.5em #1f7d99; */
}
.nav > li:first-child { 
  border-radius: 4px 0 0 4px;
} 
.nav > li:first-child > a { 
  border-radius: 4px 0 0 0;
}
.nav > li:last-child { 
  border-radius: 0 0 4px 0; 
  margin-right: 0;
} 
.nav li:last-child:hover > a { 
	/# hover colors #/
  color: yellow; 
  background-color: #1f7d99;
  /* box-shadow: inset 0 2em .33em -0.5em #1f7d99; */
}
/* Donate should be last menu item; it's a different colour */
.nav > li:last-child > a { 
  border-radius: 0 4px 0 0;
  background: #748edb;
}
.nav li li a { 
  margin-top: 1px;
}

.nav li a:first-child:nth-last-child(2):before { 
  content: ""; 
  position: absolute; 
  height: 0; 
  width: 0; 
  border: 5px solid transparent; 
  top: 50% ;
  right:5px;  
 }
 
 /* submenu positioning*/
 .nav ul {
   position: absolute;
   white-space: nowrap;
   border-bottom: 5px solid  #2762c2;
   z-index: 10;
   left: -99999em;
 }
 /* kbr hange here */
 .nav > li:hover > ul {
   left: auto;
   margin-top: 4px;
   min-width: 100%;
 }
 .nav > li li:hover > ul { 
   left: 100%;
   margin-left: 1px;
   top: -1px;
 }
 /* arrow hover styling */
 .nav > li > a:first-child:nth-last-child(2):before { 
   border-top-color: yellow; 
 }
 .nav > li:hover > a:first-child:nth-last-child(2):before {
   border: 5px solid transparent; 
   border-bottom-color: red; 
   margin-top:-5px
 }
 .nav li li > a:first-child:nth-last-child(2):before {  
   border-left-color: yellow; 
   margin-top: -5px
 }
 .nav li li:hover > a:first-child:nth-last-child(2):before {
   border: 5px solid transparent; 
   border-right-color: red;
   right: 10px; 
 }
 /***************************************************/
 /*    End Nav CSS                                  */
 /***************************************************/