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

/* CSS Document                                                   */
/* This is the main CSS used by the site template verney.dwt         */
/* It is overridden by verneyperson.css for PERSON.html           */


body  {
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults - that was a comment from the old css file */
	padding: 0;
	color:darkslategray;
	font-family: Segoe, "Palatino Linotype", "Book Antiqua", "Palatino", "serif";
}

h1 {
    font-family: Segoe, "Palatino Linotype", "Book Antiqua", "Palatino", "serif";
    font-size: 24px;
    color: darkblue;
}
h2 {
    font-family: Segoe, "Palatino Linotype", "Book Antiqua", "Palatino", "serif";
    font-size: 21px;
    color: darkblue;
}
h3 {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", "Verdana", "sans-serif";
    font-size: 18px;
    color: darkblue;
}

h1, h2, h3 {
    text-align: center;
}

p {
    text-align: left;
}

/* ---- */
p, td, li, details {
    color: darkblue;
} 

details { font-size: smaller;}

summary {font-weight:bold;}

.thumbnail {
    box-shadow: 3px 3px 5px #000000;
    margin: 10px;
}

@media (min-width: 640px) {
    h1, h2, h3 {
        text-align: left;
        }

    p {
        text-align: justify;
        }
}

/* used for emphasis */
.announcement {
    color:crimson;
    font-weight: 700;
}

/* used for messages where emphasis not necessary */
.normal {
    color: darkblue;
}

/* .hide {display: none;} [not used] */

input {
    width: 100%;
}

ul.naked {
    list-style-type: none;
    background-color: none;
}

li.spaced {
    padding: 0 0 10px 0;
}

/*.button {
    background-color: #95BF49;
    color: black;
    font-size: smaller;
    text-decoration: None;
    margin-left: auto;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0px 3px 5px #000000;
    text-align: center;
    }
.smallbutton {
    background-color: darkblue;
    color: white;
    font-size: smaller;
    text-decoration: None;
    margin-left: auto;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0px 3px 5px #000000;
    text-align: center;
    }

.button:hover, .InlineFlex:hover {
    background-color: lightsteelblue; 
    color: darkblue;
    }*/
    
.button {
    background-color: darkblue;
    color: white;
    font-size: medium;
    text-decoration: None;
    margin-left: auto;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0px 3px 5px #000000;
    text-align: center;
    /* width: 100px; */
    }
a.button:link { 
	color: white;
	text-decoration: none;
	font-weight: normal;
}
a.button:visited {
	color: white;
	text-decoration: none;
	font-weight: normal;
}
a.button:hover {
	color: lightskyblue;
	text-decoration: none;
	font-weight: normal;
    }


/********************************/
/* Structural styles            */
/********************************/

.Page {
	max-width: 1000px;
	margin: 0 auto;
}

/* Top of the Page */
.Header {
	width: 100%;
	background-color: #ffffff;
	text-align: center;
}

.HeaderFlex {
    display: flex;
    flex-direction: column;
	justify-content: center;
    align-items: center;
    }
    
@media (min-width: 640px) {
.HeaderFlex {
    flex-direction: row;
    width: 100%;
    background-color: #ffffff;
    align-items: center;
    }
}

.logo, .cart {
    background-color: #ffffff;
    width: 20%;
    display: none;
    }

@media (min-width: 640px) {
.logo, .cart {
    background-color: #ffffff;
    width: 20%;
    display: inline;
    }
 }
 
.title {
    background-color: #ffffff;
    width: 80%;
}
.masthead {
    font-family: "Palatino Linotype", "Book Antiqua", "Palatino", "serif";
    font-size: 48px;
    background-color: #ffffff;
    color: darkblue;
    text-align: center;
    line-height: 48px;
    margin: 38px 1px 10px 1px;
    }

@media (min-width: 640px) {
.masthead {
    font-family: "Palatino Linotype", "Book Antiqua", "Palatino", "serif";
    font-size: 48px;
    background-color: #ffffff;
    color: darkblue;
    text-align: center;
    line-height: 48px;
    margin: 10px 1px 10px 1px;
    }
}
.strapline {
	font-family: "Palatino Linotype", "Book Antiqua", "Palatino", "serif";
	font-size: 48px;
	font-style: italic;
    text-align: center;
    color: darkblue;
    line-height: 48px;
    margin: 0px 1px 10px 1px;
    }
    
/**********************************/
/* Menus: first the hamburger and */
/* then the horizontal menu bar   */
/**********************************/
   
/* The 'hamburger menu' for narrow screens */
#menuToggle
{
  display: block;
  position: fixed;
  top: 0;
  padding: 5px;
  background-color: white;
  /* border: 2px solid #4CAF50;*/
  width: 100%;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: white;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: lightsteelblue;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: darkblue; /* hamburger */
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white; /* X */
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: darkblue;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

/* links - didn't make any difference removing this
#menu li
{
  padding: 10px 0;
  font-size: medium;
  color: white;
}
*/

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
      transform: none;
}
/* end of narrow-screen 'hamburger menu' */

.navbar {
    /* for narrow screens, hide the horizontal menu bar */
    display: none;
}


@media (min-width: 640px) {

    nav {
        /* for wide screens, hide the 'hamburger menu' */
        /* not sure why but this did not seem to work */
        display: none;
        }

    #menu {
        /* for wide screens, hide the 'hamburger menu' */
        display: none;
        }

    .navbar {
        /* for wide screens, this is the menu bar */
        overflow: hidden;
        background-color: darkblue;
        display: flex;
        flex-direction: row;
        }

    .navbar a { /* links */
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        }

    .dropdown {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        }

    .dropdown .dropbtn {
        font-size: 16px;  
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
        }

    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: lightsteelblue;
        }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: darkblue;
        color: white;
        /* min-width: 160px; */
        width: auto;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        }

    .dropdown-content a { /* links */
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        text-align: left;
        }

    .dropdown-content a:hover { /* links */
        background-color: lightsteelblue;
        }

    .dropdown:hover .dropdown-content {
        display: flex;
        flex-direction: column
      }
}      

.buttons {
	margin: 20px 10px 20px 10px;
    font-size: 1rem;
    min-height: 2.75rem;
    display: none;
    align-items: center;
    flex-direction: column;
    padding: 0 1rem;
}

/* For a wide screen the buttons are in a horizontal row */
@media (min-width: 640px) {    
    .buttons {
	    margin: 20px 10px 20px 10px;
        font-size: 1rem;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        flex-direction: row;
        padding: 0 1rem;
        }
}

.choices {    
    background-color: darkblue;
    }
    
.choice {
    color: white;
    font-size: large;
    text-decoration: None;
    margin-left: auto;
	padding: 10px;
	margin: 10px;
    display: inline-block;
}

.choice:hover { /* links - is this valid? */
  background-color: lightsteelblue; 
  color: darkblue;
}


/* img.catalog-thumbnail {
    box-shadow: 3px 3px 5px #000000;
    vertical-align: text-top;
}
*/

/* Middle of the Page: Main content */
.Main {
/*	width: 95%; */
	margin: 10px; 
	padding: 10px;
}
 
/* Bottom of Page */
.Footer {
	width: 100%;
    background-color: darkblue;
    color: #ffffff;
    padding: 5px 5px 5px 5px;
    align-items: center;
    justify-content: center;
}

div.final a:link {  
    color: white;
    text-decoration: none;
    }
 
div.final a:visited {  
    color: white;
    text-decoration: none;
    }

div.final a:hover { 
    color: lightsteelblue;
    }
    
.final {
    text-decoration: None;
    font-size: smaller;
    color: #ffffff;
    text-align: center;
}

ul.gallery {
    list-style-type: none; /* Remove bullets */
}

li.narrow {
    display: block;
}

li.wide {
    display: none;
}

@media (min-width: 640px) {
    li.narrow {
        display: none;
    }

    li.wide {
        display: inline;
    }
}
.signoff {
 color: darkblue;
 text-align: right;
}
.list {
 color: darkblue;
}

.flex {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    flex-direction: column;
    padding: 0px 5px;

    /* main axis is vertical */
}
.flex-image {
        width: 100%;
        margin: 5px;
        justify-content: center;
}

.flex-space {
        width: 1%;
        margin: 1px;
}

.flex-text {
        width: 100%;
        margin: 1px;
}

      @media only screen and (min-width: 800px) {
.flex {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    flex-direction: row;
    padding: 0px 5px;

    /* main axis is vertical */
}
.flex-image {
        width: 49%;
        margin: 5px;
        text-align: center;
}

.flex-text {
        width: 50%;
        margin: 1px;
}

}
.centered {
    text-align: center;
}
.shaded {
    background-color:darkblue;
    padding: 10px;
    text-align: center;
    justify-content: center;
}

h3.shaded {color: white;
   }
p.shaded {color: white;}
a.shaded {color: white;}

/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: white;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 65%;
  color: darkblue;
}

/* Top right text */
.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
  width: 10%;
  text-align: right;
  font-size: smaller;
}

/* Bottom right text */
.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Container holding the image and the text */
.container2 {
  position: relative;
  text-align: center;
}

/* Bottom left text */
.bottom-left2 {
  position: absolute;
  bottom: 8px;
  left: 16px;
  color: white;
}

/* Top left text */
.top-left2 {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 65%;
  color: darkblue;
}

/* Top right text */
.top-right2 {
  position: absolute;
  top: 8px;
  right: 16px;
  width: 30%;
  text-align: right;
}

/* Bottom right text */
.bottom-right2 {
  position: absolute;
  bottom: 8px;
  right: 16px;
    width: 30%;
  font-style: italic;
}

/* Centered text */
.centered2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}