﻿  /* unvisited link */
  :root {
	--article-font-size:20px;
}
  a:link {
      color: black;
      text-decoration:underline; 
  }
  /* visited link */
  
  a:visited {
      color: black;
      text-decoration: underline;
  }
  /* mouse over link */
  
  a:hover {
      color: #77787b;
 
      text-decoration: none;
  }
  /* selected link */
  
  a:active {
      color: black;
      text-decoration: none;
  }
  
  html {
      height: 100%;
      font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  }
  
  body {
      display: block;
      margin: 0px;

      background-size: cover;
      height: 100%;
      padding-top: 60px;
      padding-left: 125px;
      padding-right: 125px;
  }
  
  #outer {
      margin: auto;
  }
  
  #wrapper {
      padding: 20px;
      padding-bottom: 0px;
      /* background-color: aliceblue; */
      background-color: rgba(255,255,255,.5);
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
      height: 95%;
      width:  95%;
      margin:auto;
      border-radius: 15px;
  }
  
  #pres_msg {
      align-items: center;
      
      border-radius: 25px;
      padding: 2px;
  }
  
  #pres_msg img {
  /*     width: 85px;
      height: 85px;
      border-radius: 40%;
      vertical-align: middle;
      margin-right: 20px;
      margin-left: 10px;
  */
      width: 30%;} 
  
  #pres_msg_msg {
      display: inline-block;
      font-size: 18px;
  }
  
  #pres_msg_hdr {
      text-align: center;
      font-size: 26px;
      margin-top: 0px;
  }
  
  body:focus {
      outline: none;
  }
  
  * {
      box-sizing: border-box;
  }
  
  body {

      align-content: center;
      display: inline;
  }
  /* Style the header */
  
  header {
      /* background-color: aliceblue; */
      padding: 15px;
      text-align: center;
      font-size: 20px;
  }
  
  #snav {
      padding-top: 20px;
      font-size: 14px;
  }

  #snav span, #snav  a:link {
    padding: 10px 8px;
    color: #74491f;
    text-decoration: none;
}
#snav span:hover,
#snav a:hover {
    background-color: #f59e64;
    color: black;
}
h1 {
	/* color: #74491f; */
	font-style:normal;
	font-weight:bolder;
	font-size:27px;
	margin: 15;
	text-align:center;
}

h2 {
	/* color: #74491f; */
	font-size:18px;

	margin: 0;
}

p	{
	margin: 0;
	/* color: #77787b; */
	margin-top: 7px;
	font-size: var(--article-font-size);
	line-height: 27px;
	
	/* display: inline-flex; */
}

.bkg_Hero {
	background: rgb(33,68,159);
	background: radial-gradient(circle, 
		 rgba(64,213,92,0.5536589635854341) 41%,
  		rgba(161,119,47,0.6208858543417367) 89%);
	 border-radius:1em;
	 padding: 25px;
	 margin-bottom: 25px;
}
.bkg_meeting {
    background: rgb(159,125,33);
    background: linear-gradient(256deg, rgba(159,125,33,0.5) 15%,
 rgba(213,197,64,0.5) 41%, rgba(95,161,47,0.6) 89%);
    border-radius:1em;
    padding: 10px;
}

.bkg_skills {
    background: rgb(33,159,144);
    background: linear-gradient(256deg, rgba(33,159,144,0.5) 15%,
 rgba(213,197,64,0.5) 41%, rgba(161,47,47,0.6) 89%);
     border-radius:1em;
    padding: 10px;
}

.bkg_side_bar {
    background: rgb(33,68,159);
    background: linear-gradient(273deg, rgba(33,68,159,0.5676645658263305) 15%,
 rgba(64,213,92,0.5536589635854341) 41%, rgba(161,119,47,0.6208858543417367) 89%);
    border-radius: 1em;
    padding: 10px;
}

  /* Container for flexboxes */
  
  .row {
      display: -webkit-flex;
      display: -ms-flex;
      display: flex;
  }
  /* Create three unequal columns that sits next to each other */
  
  .column {
      padding: 10px;
  }

  .column.hdr_left {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.column.hdr_right {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
/* Middle header column */

.column.hdr_middle {
    -webkit-flex: 7;
    -ms-flex: 7;
    flex: 7;
}

  /* Left and right column */
  
  .column.left {
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
  }
  
  .column.right {
      -webkit-flex: 2;
      -ms-flex: 2;
      flex: 2;
  }
  /* Middle column */
  
  .column.middle {
      -webkit-flex: 6;
      -ms-flex: 6;
      flex: 6;
  }
  /* Footer left column */
  
  .column.ftrc1 {
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
      padding: 0px;
  }
  /* Footer 2nd column */
  
  .column.ftrc2 {
      -webkit-flex: 3;
      -ms-flex: 3;
      flex: 4;
      padding: 0px;
  }
  /* Style the footer */
  
  .footer {
      /* background-color: aliceblue; */
      padding: 10px;
      padding-bottom: 0px;
      text-align: center;
  }
  
  .footer img {
      max-width: 50%;
  }
  
  #mNav {
      text-align: left;
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      /* background: aliceblue; */
      z-index: 2;
      padding-top:20px;
      padding-bottom: 20px;
      background-color: rgba(255,255,255,.4);
  }
  
  #mNav span, #mNav  a:link {
      padding: 0px 8px;
      color: black;
      text-decoration: none;
  }
  #mNav span:hover,
  #mNav a:hover {
      text-decoration: underline;
      color: black;
  }

  #mNav .icon_dropdown{
      float:right;
  }
  
  
  #mNav ul {
      list-style-type: none;
      padding-left: 0px;
  }
  
  #mNav li {
      padding-top: 4px;
      padding-bottom: 4px;
  }

  .icon_dropdown {
    position: relative;
    display: inline-block;
}

.icon_droplist {
    display: none;
    background-color: aliceblue;
    position: absolute;
    right: 0;
    z-index: 3;
    width: max-content;
}

.icon_droplist span {
    display:block;
}

.icon_dropdown:hover .icon_droplist {
    display: block;
}

.drop_small {
    display: none;
}

.menu_horiz {
    display:inline;
}


  .dropdown {
      position: relative;
      display: inline-block;
  }
  
  .droplist {
      display: none;
      background-color: aliceblue;
      /* position: absolute; */
      right: 0;
      z-index: 3;
      width: max-content;
  }
.droplist a{
    display: block;
}
 .droplist a:hover{
     background-color: aliceblue;
 }
  
  .dropdown:hover .droplist {
      display: block;
  }
  
  #updnotify {
      cursor: pointer;
  }
  
  .notify_modal {
      display: none;
      /* Hidden by default */
      position: fixed;
      /* Stay in place */
      z-index: 1;
      /* Sit on top */
      top: 0;
      width: 80%;
      /* Full width */
      height: 80%;
      /* Full height */
      background-color: rgb(0, 0, 0);
      /* Fallback color */
      background-color: rgba(0, 0, 0, 0.4);
      /* Black w/ opacity */
  }
  /* Modal Content/Box */
  
  .notify_modal-content {
      background-color: aliceblue;
      margin: 7% auto;
      /* 15% from the top and centered */
      padding: 20px;
      border: 1px solid #888;
      width: 80%;
      text-align: left;
      /* Could be more or less, depending on screen size */
  }
  
  #subpara {
      display: flex;
      justify-content: center;
  }
  /* The Close Button */
  
  .notify_close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
  }
  
  .notify_lose:hover,
  .notify_close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
  }
  
  #emailbtn {
      border-width: 2px;
      border-style: solid;
      border-radius: 30px;
  }
  
  #heroimg {
      max-width: 100%;
      display: block;
      margin-left: auto;
      margin-right: auto;
  }
  
  #footer-aaw {
      float: left;
  }
  
  #copy {
      text-align: center;
  }
  
  #updated {
      font-size: 14px;
      float: right;
  }
  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  
  @media (max-width:1000px),
  (max-width:600px) {
      body {
          padding-top: 10px;
          padding-left: 30px;
          padding-right: 30px;
          font-size: x-large;
      }
      .row {
          -webkit-flex-direction: column;
          flex-direction: column;
      }
      #pres_msg img {
        /*     width: 85px;
            height: 85px;
            border-radius: 40%;
            vertical-align: middle;
            margin-right: 20px;
            margin-left: 10px;
        */
            width:auto;} 
      #mNav {
          text-align: left;
          position: -webkit-sticky;
          position: sticky;
          top: 0;
          /* background: aliceblue; */
          z-index: 2;
          padding-left: 5px;
      }
      ul {
          list-style-type: none;
          margin: 0;
          padding: 0;
          overflow: hidden;
      }
      #mNav li {
          float: left;
          
      }
      li a {
          display: block;
          color: white;
          text-align: center;
          padding: 8px;
          text-decoration: none;
      }
      li a:hover {
          background-color: #111111;
      }
      .drop_small {
          display:block;
      }
      .menu_horiz {
          display: none;
      }
  }