/* For the sticky buttoned nav and the colour change of its buttons, and its slight reduction in size*/





/*min-width to only apply to buttond.   The 769 hereis the value of tablet's max-width, 768, and 1 pixel, so that fixed-nav class only applies to everything after 768; ie beginning with what's 769*/

/*For Dyamisim dict, value is 511 - when slide out menu ceases to apply*/
@media screen and (min-width: 511px) {
/* class 'created' and added by the jquery*/
.fixed-nav {
position: fixed;
top: 0;
left:0;
/*pn*/

z-index:10;
width:100%;
/*Applies colour for whole sticky strip across the screen*/
background:;
/*Affects opacity of whole sticky strip across the screen*/
opacity:;
/*Affects fatness/height of whole sticky strip across the screen*/
padding: 0;
}



/*For highlighting the text on the button corresponding to the current page.  Normally, the class .currentpage_shower does this.  However, with the change of colour of buttons when nav is other than non-sticky buttoned nav, may be needed.  Later: prob won't use; yellow or gold works for both colours of buttons.  Jquery is anyway set up to appy this*/
.currentpage_shower_strong {
color:;
text-decoration:;
}

/*For giving the buttons of the sticky nav a different colour*/
/* class 'created' and added by the jquery*/
.recoloured_buttons {
background-color: ;
}

/*reduces height of buttoned navbar, when it is in sticky position*/
/* class 'created' and added by the jquery*/
.shortened_navbar {
}


/*Background colour here applies to background of nav words (doesn't go beyond the words, to cover the full screen width).  Is for when the menu IS -sticky - i.e. when scrolling HAS happened. Applies to ALL pages.*/
.stickynav_ul {
/*Affects positioning of the  sticky strip of just the menu's words (which can give  impression of part of the whole strip being fatter).  Doesn't affect the whole whole sticky strip across the screen */
top:4px;
padding: 0;
/*Affects colour  of the  sticky strip of just the menu's words.  A background-colour has to be specified.  Leaving this empty will result in an invisible background on pages 2-6.  And 'inherit' doesn't work to get the FS menu bar's blue.  The specified colour will apply to sticky FS strip of the menu's words for index page and pages 2-6(even though for non sticky the word strip is specified differently for index and pp 2-6, in main.css*/
/*same blue as on pages 2-6.   Blue on pages 2-6 is #000040 with a bit of red; that is rgb(40, 0, 68) aka #280044*/
background:#280044;

/*Apr2022 Oxblood*/
background: #440000;

opacity: .9;

}


/*end MQ*/
}
/* END: For the buttned sticky nav and its buttons*/