<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('normalize.css');
@import url('fonts/Lato.css');

html {font-family: 'Lato', sans-serif;}

body
{
  background: white;
  color: black;
  max-width: 1500px;
  background: white;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6
{
  margin: 5px 0 5px;
  text-align: center;
}

h1 { font-size: 150% }
h2 { font-size: 140% }
h3 { font-size: 130% }
h4 { font-size: 120%; }
h5 { font-size: 110%; }
h6 { font-size: 100%; }

a
{
  color: #060;
  background: #efe;
}

div.floatwrapper
{
  overflow: auto;
  /* display: flow-root; newer way to make sure float elements are contained */
}

/*
 * Overall page layout
 *   +-----------------body-----------------------+
 *   | +-----------------header-----------------+ |
 *   | |      +------------nav----------+       | |
 *   | |      |                         |       | |
 *   | |      +-------------------------+       | |
 *   | +----------------------------------------+ |
 *   | +------------------main------------------+ |
 *   | |                                        | |
 *   | +----------------------------------------+ |
 *   +--------------------------------------------+
 */


/* contains nav information, full width, colour background or images */
header
{
  background: black;
  color: white;
}

header div.title
{
  font-size: 300%;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 500px)
{
  header div.title {font-size: 150%; }
}


/* contains nav buttons or icon, set positioning */
nav
{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 5px;
  text-align: center;
}

/* under nav header, all page content between header and footer */
main
{
  padding: 5px;
  background: white;
  color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

div#maincontent
{
  flex-basis: 600px;
  flex-grow: 2;
  margin-bottom: 20px;
  min-height: 500px;
}

div#sidebar 
{
  margin: 20px;
  flex-basis: 250px;
  flex-grow: 1;
  background: #f0f4f0;
  padding: 5px 5px 5px 20px;
}

div#sidebar h3
{
  margin-top: 30px;
}

div.all_xlinks
{
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}



div#sidebar div.xlink
{
  margin: 0 10px;
  padding: 8px 0;
  border-bottom: 1px solid #ded;
}

div#sidebar div.xlink a
{
  text-decoration: none;
  background: none;
}

div#sidebar div.all_xlinks div.linkgroup
{
  flex-grow: 1;
}



@media screen and ( max-width: 500px )
{
  div#sidebar { font-size: 90% }
  div#sidebar div.xlink { padding: 4px 0 }
}

/* buttons for wide screen menu */
nav a
{
  display: block;
  margin: 0 20px 0 0;
  padding: 10px 5px;
  width: max-content;
  font-size: 80%;
  text-align: center;
  text-decoration: none;
  color: white;
  background: none;
}

nav a:hover
{
  background: #060;
}

nav a.selflink, nav a.selflink:hover
{
  background: #090;
}

/* hide small menu and icon for wide screen */
nav.small { display: none }
div.menuicon { display: none }
div.menuiconcontainer { display: none }

/* Nav menu changes for small screen */

@media screen and ( max-width: 500px )
{
  nav { display: none }
  /* contains site name/logo and hamburger icon */
  nav.small 
  { 
    display: flex; 
    justify-content: space-between;
    align-items: center;
  }
  /* styles for dropdown menu */
  nav.small a 
  { 
    display: block;
    margin: 5px auto;
    width: 90%; /* not 100%, to stop horiz movement on small screens */
  }

  /* menu icon ("hamburger") and 'menu' text if shown */
  div.menuiconcontainer, div.menuiconcontainer a
  { 
    background: none;
    display: block; 
    color: white;
    text-decoration: none;
    font-size: 90%;
  }


  div.menuicon
  {
    background: none;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    height: 20px;
  }

  div.menuicon div.menuline
  {
    display: block;
    margin: 4px;
    height: 4px;
    width: 20px;
    background: white;
  }
} /* small screen NAV */

nav.submenu
{
  background: black;
  color: white;
  width: max-content;
  padding: 0;
}

nav.submenu a
{
  color: white;
  text-decoration: none;
  font-size: 80%;
}



nav.submenu a
{
  padding: 7px;
}

@media (max-width: 500px)
{
  nav.submenu 
  { 
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav.submenu a
  {
    display: block;
    padding: 5px;
  }

}

nav.submenu a.selflink, nav.submenu a.selflink:hover
{
  background: #090;
}

footer
{
  background: #999;
  color: white;
  padding: 0;
  margin: 20px 0 5px;
}

footer form { color: black }

footer a { background: #ddd; padding: 0 10px }

/* captioned images */
div.caption 
{ 
  font-family: 'Times New Roman', serif; 
  font-style: italic; 
  text-align: center;
  color: black;
  background: white;
}

/********* buttons **********/
form.centrebutton
{
  width: max-content;
  margin: auto;
}

form input[type=submit]
{
  background: linear-gradient(white, #ccc);
}

form.spacedbutton
{
  margin-top: 10px;
  margin-bottom: 10px;
}

form.actionbutton input[type=submit]
{
  background: linear-gradient(white, #0c6);
}

form.inlinebutton
{
  display: inline-block;
  width: max-content;
  vertical-align: middle;
  margin-right: 10px;
}

form.delbutton input[type=submit]
{
  background: linear-gradient(white, #f66);
  color: black;
}

form.editbutton input[type=submit]
{
  background: linear-gradient(white, #9f8);
}

/*********** message and error boxes ***********/
div.errorbox, div.msgbox
{
  width: max-content;
  max-width: 90%;
  padding: 10px;
  background: white;
}

div.errorbox
{
  border: 2px solid #900;
  color: #900;
}
div.msgbox
{
  border: 2px solid #090;
  color: #090;
}

table.reqvars tr td
{
  border: 1px solid #999;
  font-family: monospace;
  font-size: 80%;
  padding: 5px;
  vertical-align: top;
}


/**** text boxes ****/

div.text
{
  width: 100%;
  max-width: 700px;
  line-height: 1.5;
  color: #444;
  font-size: calc(90% + 0.2vw);
}

@media (min-width: 1000px)
{
  div.text { max-width: 800px }
}

div.text.wide
{
  max-width: 1000px;
}

div.centred
{
  margin: auto;
}


/* images */

figure
{
  margin: 1em auto;
}

figcaption
{
  font-style: italic;
  text-align: center;
}


/***************** authenticator ***************/
div.auth_form 
{ 
  width: 90%; 
  max-width: 500px;
  margin: 0 auto; 
  padding: 10px;
  background: #ccf;
} 
div.auth_form input { width: 90%}
div.auth_form input[type="submit"] { width: max-content }
div.auth_form table tr td { padding: 0 2px }
div.auth_error { color: red; background: white; padding: 5px }

/******** events display *******/


table.events_list
{
  width: 100%;
  max-width: 700px;
  margin: 20px 0;
}

table.events_list tr.future td
{
  color: black;
  background: white;
  font-size: 110%;
}

table.events_list tr.past td
{
  color: #999;
  background: #eee;
  font-size: 100%;
}

table.events_list tr td
{
  vertical-align: top;
  padding: 5px;
}

table.events_list tr td.date
{
  white-space: nowrap;
}

table.events_list tr td.year 
{ 
  font-size: 120%; 
  font-weight: bold; 
}



div.details
{
  border: 3px solid #ccc;
  border-radius: 7px;
  padding: 10px;
  margin: 20px 0;
  background: #f8f8f8;
  color: black;
}

div.details p
{
  margin: 0.7em 0;
}

div.details div.date
{
  font-weight: bold;
  color: black;
  font-size: 110%;
}

div.details h3
{
  font-size: 250%;
  font-size: clamp(120%,3vw, 200%);
  font-weight: normal;
  color: #933;
}

@media (max-width: 500px)
{
  div.details h3
  { font-size: 120% }
}

div.details img
{
  display: block;
  margin: 10px auto;
  max-width: 90%;
  max-height: 500px;
}

@media (max-width: 500px)
{
  div.details img { max-width: 100% }

}

</pre></body></html>