@charset "utf-8";
/* CSS Document */
body {
  font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 12pt;
	width:900px;
}
.div-center {
 margin: 0 auto;
}
h1 {
	color:#000099;
}
h2 {
	color:#0080FF;
}
h3 {
	color:#0080FF;
}
.italic {
	font-style: italic;
}
.inlineList {
   display: flex;
   flex-direction: row;
   /* Below sets up your display method: flex-start|flex-end|space-between|space-around */
   justify-content: flex-start; 
   /* Below removes bullets and cleans white-space */
   list-style: none;
   padding: none;
   font-size: 11pt;
   /* Bonus: forces no word-wrap */
   white-space: nowrap
 }
.links-anchor {
text-decoration: none;
}
a:hover {
color: red;
}
 li {
   padding-left: 11px;
   padding-right: 22px;
 }
.image-left {
	float: left;
	padding-right: 10px;
	padding-bottom: 10px;
}
.image-right {
	float: right;
	padding-left: 10px;
	padding-bottom: 10px;
}
.rounded {
	border-radius: 8px;
}
.column {
  float: left;
  width: 32%;
  padding: 1px;
}
/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}
.column-az {
  float: left;
  width: 49%;
  padding: 1px;
}
figcaption {
	color: blue;
	font-size: 10pt;
}
strong {
	font-style: bold;
}
 form {
            display: flex;
            flex-direction: column;
}
input[type="text"],
        input[type="email"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 6px;
            box-sizing: border-box;
            font-size: 16px;
 }
.textarea {
            height: 150px;
            padding: 10px;
            resize: none;
            overflow: auto;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 6px;
            box-sizing: border-box;
            font-size: 16px;
 }
 input[type="submit"] {
            width: 20%;
            position: relative;
            left: 50%;
            padding: 10px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
  }
input[type="reset"] {
            width: 10%;
            position: relative;
            left: 50%;
            padding: 10px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
  }
.footer {
	text-align: center;
	font-size: small;
}
.footer a {
	text-decoration: none;	
}
#popup-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#popup-form-container form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    margin: 30px auto;
}