/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   */

   /* HTML5 display-role reset for older browsers */
   article, aside, details, figcaption, figure, 
   footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

/*=========================================
    Main Styles
    =========================================*/
    header {
      text-align: center;
      border-bottom: black;
      padding-top: 10px;
      padding-bottom: 70px;
      border-bottom: 3px solid black;
    }

    body {
      font-family: "Candara";
      background-color: #F0F8FF;
      padding: 25px 50px 25px;     
    }

    h1 {
      font-family: "Open-Sans";
      font-size: 45px;
    }

    .headline {
      font-family: "Open-Sans";
      font-size: 30px;
      padding-bottom: 0px;
      padding-left: 20px;

    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }

    iframe {
      padding-left: 20px;
    }

    h5 {
      font-size: 18px;
      text-indent: 40px;
      font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif; 
      font-style: normal; 
      font-variant: normal; 
      font-weight: 100; 
      line-height: 23px; 
      padding-left: 20px;
      padding-right: 180px;
    }

    form{
      padding-left: 20px;
    }

    .pageHeader {
      font-family: "Open-Sans";
      font-size: 40px;
      text-decoration: underline;
    }

    .date {
      font-family: "Candara";
      font-size: 15px;
      padding-left: 20px;
      padding-top: 0px;

    }

    .logo {
      width: 200px;
      height: auto;
      top: 0;
      left: 0;
    }

    .container {
      width: 989px;
      padding: 5px;
      margin: 2px auto;
      background-color: #ADD8E6;
    }

    .footer {
      font-family: "Candara";
      font-size 15px;
      text-align: center;
      background-color: #ADD8E6;
    }

    .socialLink {
      display: inline-block;
      width: 25%;
      height: auto;
    }

    .btn {
      background-color: #F0F8FF;
      color: black;
      padding: 16px;
      font-size: 16px;
      border: none;
      border-radius: 4px;
    }

    .btn:hover {background-color: #ddd;}

    /* Dropdown Button */
    .dropbtn {
      background-color: #F0F8FF;
      color: black;
      padding: 16px;
      font-size: 16px;
      border: none;
      border-radius: 4px;
    }

    /* button container */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #F0F8FF;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }

    /* Links inside the dropdown */
    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }

    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {background-color: #ddd;}

    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {display: block;}

    /* Change the background color of the dropdown button when the dropdown content is shown */
    .dropdown:hover .dropbtn {background-color: #F0F8FF;}

    

    
