html {
    scroll-behavior: smooth;
  }
  
/*#page-container{
    position: relative;
    min-height: 100vh;
}

#main-content{
    padding-bottom: 20px;
}*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #f8f8f8;
    padding: 1em 0;
    border-bottom: 1px solid #ddd;
}

#logo {
    text-align: center;
    padding-bottom: 50px;
}

#logo img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    max-width: 90vw;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #5f5f5f;
    text-decoration: none;
}

#carousel {
    width: 150%;
    position: relative;
    max-width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 50px;
}


main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #333;
    padding-top: 25px;
    padding-bottom: 25px;
}

h2 {
    text-align: center;
}

section {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

#spacer {
    padding: 30px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

#checkboxLabel {
    font-size: small;
    font-weight: 100;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

form input {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    width: calc(100% - 22px); /* Adjust width considering padding and border */
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

form input[type="tel"],
form input[type="text"],
form input[type="email"],
form input[type="name"] {
    display: block;
    width: 100%;
}

form input[type="checkbox"] {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    vertical-align: middle;
}

form select {
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 15px;
    width: calc(100% - 22px); /* Adjust width considering padding and border */
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    width: 100%;
}

form p {
    font-size: 12px;
}

.submitButton {
    margin: 25px;
    padding: 10px;
    width: 90px;
    align-self: center;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.submitButton:hover {
    background-color: #555;
}

#promoPopup {
    position: fixed;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    z-index: 1000; /* Ensure it's above other elements */
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none; /* Enable flexbox */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center content horizontally */
    max-width: 90vw; /* Maximum width is 90% of the viewport width */
    max-height: 90vh; /* Maximum height is 90% of the viewport height */
    min-width: 300px;
    overflow: auto; /* Enable scrolling if content exceeds max dimensions */
    box-sizing: border-box; /* Include padding in width/height calculations */
}

#promoButton {
    margin-top: auto; /* Push the button to the bottom */
    padding: 10px;
    width: auto; /* Adjust width as needed */
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    text-align: center; /* Center text inside the button */
}

#promoBanner {
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center; /* Vertically aligns items in the center */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    z-index: 1000;
}

#promoText {
    margin: 0; /* Removes default margin from the heading */
    text-align: center; /* Centers the text */
    margin-right: 10px; /* Adds spacing between the text and the button */
}

#openPopup {
    margin-left: 20px; /* Adds space between the text and the button */
    background-color: #5f5f5f; /* Button background color */
    color: #fff; /* Button text color */
    border: none; /* Removes the default border */
    padding: 10px 15px; /* Adds padding for a better look */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    border-radius: 5px; /* Adds rounded corners */
}

.detailsButton {
    background: none;
    border: none;
    font-size: 12px;
}

.detailsButton:hover {
    cursor: pointer;
}

#contestRules {
    display: none;
    position: absolute; 
    font-size: small;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    margin-top: 500px;
    z-index: 1000; /* Ensure it's above other elements */
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#terms {
    display: none;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: small;
    z-index: 1000;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 80vh;
}

#privacy {
    display: none;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: small;
    z-index: 1000;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 80vh;
}

.closePopup {
    position: absolute;
    font-size: xx-large;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    text-align: center;
    /*position: absolute;
    bottom: 0;
    width: 100%;*/
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    text-align: left;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
}

.footer-section form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    width: calc(100% - 22px);
    border: 1px solid #ddd;
    border-radius: 4px;
}

.footer-section form button {
    padding: 10px 20px;
    width: fit-content;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-section form button:hover {
    background-color: #555;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
}







[data-custom-class='body'],
[data-custom-class='body'] * {
  background: transparent !important;
}

[data-custom-class='title'],
[data-custom-class='title'] * {
  font-family: Arial !important;
  font-size: 26px !important;
  color: #000000 !important;
}

[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
  font-family: Arial !important;
  color: #595959 !important;
  font-size: 14px !important;
}

[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
  font-family: Arial !important;
  font-size: 19px !important;
  color: #000000 !important;
}

[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
  font-family: Arial !important;
  font-size: 17px !important;
  color: #000000 !important;
}

[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
  color: #595959 !important;
  font-size: 14px !important;
  font-family: Arial !important;
}

[data-custom-class='link'],
[data-custom-class='link'] * {
  color: #3030F1 !important;
  font-size: 14px !important;
  font-family: Arial !important;
  word-break: break-word !important;
}

ul {
  list-style-type: square;
}

ul>li>ul {
  list-style-type: circle;
}

ul>li>ul>li>ul {
  list-style-type: square;
}

ol li {
  font-family: Arial;
}
.inline-style-1 {display: block;margin: 0 auto 3.125rem;width: 11.125rem;height: 2.375rem; center: no-repeat;}
.inline-style-2 {text-align: left;}
.inline-style-3 {line-height: 1.5;}
.inline-style-4 {font-size: 19px;}
.inline-style-5 {line-height: 1.5;}
.inline-style-6 {line-height: 1.5;}
.inline-style-7 {line-height: 1.1;}
.inline-style-8 {line-height: 115%;}
.inline-style-9 {line-height: 115%;}
.inline-style-10 {line-height: 1.5;}
.inline-style-11 {text-align: left;}
.inline-style-12 {line-height: 1.5;}
.inline-style-13 {line-height: 1;}
.inline-style-14 {text-align: left;}
.inline-style-15 {line-height: 1.5;}
.inline-style-16 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri:color#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-17 {font-size:11.0pt;line-height:115%;
          Arialmso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-18 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-19 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-20 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-21 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-22 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-23 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-24 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-25 {font-size: 15px;}
.inline-style-26 {font-size: 15px;}
.inline-style-27 {color: rgb(89, 89, 89);}
.inline-style-28 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-29 {font-size:11.0pt;line-height:115%;
          Arial;mso-fareast-font-family:Calibri;color:#595959;mso-themecolor:text1;
          mso-themetint:166;}
.inline-style-30 {line-height: 1;}
.inline-style-31 {text-align: left;}
.inline-style-32 {line-height: 1.5;}
.inline-style-33 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-34 {color: rgb(0, 58, 250);}
.inline-style-35 {line-height: 1;}
.inline-style-36 {line-height: 1.5;}
.inline-style-37 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-38 {line-height: 1;}
.inline-style-39 {line-height: 1.5;}
.inline-style-40 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-41 {line-height: 1;}
.inline-style-42 {line-height: 1.5;}
.inline-style-43 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-44 {line-height: 1;}
.inline-style-45 {text-align: left;}
.inline-style-46 {line-height: 1.5;}
.inline-style-47 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-48 {line-height: 1;}
.inline-style-49 {line-height: 1.5;}
.inline-style-50 {line-height: 1.5;}
.inline-style-51 {line-height: 1.5;}
.inline-style-52 {line-height: 1.5;}
.inline-style-53 {line-height: 1.5;}
.inline-style-54 {line-height: 1.5;}
.inline-style-55 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-56 {line-height: 1.5;}
.inline-style-57 {color: rgb(0, 58, 250);}
.inline-style-58 {line-height: 1.5;}
.inline-style-59 {color: rbg(0, 58, 250); font-size: 15px;}
.inline-style-60 {line-height: 1.5;}
.inline-style-61 {font-size: 15px;}
.inline-style-62 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-63 {font-size: 15px;}
.inline-style-64 {line-height: 1.5;}
.inline-style-65 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-66 {line-height: 1.5;}
.inline-style-67 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-68 {line-height: 1.5;}
.inline-style-69 {font-size: 15px;}
.inline-style-70 {line-height: 1.5;}
.inline-style-71 {font-size: 15px;}
.inline-style-72 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-73 {font-size: 15px;}
.inline-style-74 {line-height: 1.5;}
.inline-style-75 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-76 {line-height: 1.5;}
.inline-style-77 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-78 {line-height: 1.5;}
.inline-style-79 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-80 {line-height: 1.5;}
.inline-style-81 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-82 {line-height: 1.5;}
.inline-style-83 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-84 {line-height: 1.5;}
.inline-style-85 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-86 {line-height: 1.5;}
.inline-style-87 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-88 {line-height: 1.5;}
.inline-style-89 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-90 {line-height: 1.5;}
.inline-style-91 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-92 {line-height: 1.5;}
.inline-style-93 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-94 {line-height: 1.5;}
.inline-style-95 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-96 {line-height: 1.5;}
.inline-style-97 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-98 {line-height: 1.5;}
.inline-style-99 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-100 {line-height: 1.5;}
.inline-style-101 {font-size: 15px;}
.inline-style-102 {line-height: 1.5;}
.inline-style-103 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-104 {line-height: 1.5;}
.inline-style-105 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-106 {line-height: 1.5;}
.inline-style-107 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-108 {line-height: 1.5;}
.inline-style-109 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-110 {line-height: 1.5;}
.inline-style-111 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-112 {line-height: 1.5;}
.inline-style-113 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-114 {line-height: 1.5;}
.inline-style-115 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-116 {line-height: 1.5;}
.inline-style-117 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-118 {line-height: 1.5;}
.inline-style-119 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-120 {line-height: 1.5;}
.inline-style-121 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-122 {line-height: 1.5;}
.inline-style-123 {font-size: 15px;}
.inline-style-124 {line-height: 1.5;}
.inline-style-125 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-126 {line-height: 1.5;}
.inline-style-127 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-128 {line-height: 1.5;}
.inline-style-129 {line-height: 1.5;}
.inline-style-130 {line-height: 1.5;}
.inline-style-131 {line-height: 1.5;}
.inline-style-132 {line-height: 1.5;}
.inline-style-133 {line-height: 1.5;}
.inline-style-134 {line-height: 1.5;}
.inline-style-135 {line-height: 1.5;}
.inline-style-136 {line-height: 1.5;}
.inline-style-137 {line-height: 1.5;}
.inline-style-138 {line-height: 1.5;}
.inline-style-139 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-140 {text-align: left;}
.inline-style-141 {line-height: 1.5;}
.inline-style-142 {line-height: 1.5;}
.inline-style-143 {line-height: 1.5;}
.inline-style-144 {line-height: 1.5;}
.inline-style-145 {font-size: 19px;}
.inline-style-146 {line-height: 1.5;}
.inline-style-147 {line-height: 1.5;}
.inline-style-148 {font-size: 15px;}
.inline-style-149 {line-height: 1.5;}
.inline-style-150 {text-align: left; line-height: 1.5;}
.inline-style-151 {font-size: 19px;}
.inline-style-152 {line-height: 1.5;}
.inline-style-153 {text-align: left;}
.inline-style-154 {line-height: 1.5;}
.inline-style-155 {line-height: 1.5;}
.inline-style-156 {line-height: 1.5;}
.inline-style-157 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-158 {line-height: 1.5;}
.inline-style-159 {line-height: 1.5;}
.inline-style-160 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-161 {line-height: 1.5;}
.inline-style-162 {line-height: 1.5;}
.inline-style-163 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-164 {line-height: 1.5;}
.inline-style-165 {line-height: 1.5;}
.inline-style-166 {line-height: 1.5;}
.inline-style-167 {line-height: 1.5;}
.inline-style-168 {font-size: 15px;}
.inline-style-169 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-170 {font-size: 15px;}
.inline-style-171 {line-height: 1.5;}
.inline-style-172 {font-size: 15px;}
.inline-style-173 {line-height: 1.5;}
.inline-style-174 {font-size: 15px;}
.inline-style-175 {line-height: 1.5;}
.inline-style-176 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-177 {line-height: 1.5;}
.inline-style-178 {line-height: 1.5;}
.inline-style-179 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-180 {line-height: 1.5;}
.inline-style-181 {line-height: 1.5;}
.inline-style-182 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-183 {line-height: 1.5;}
.inline-style-184 {text-align: left;}
.inline-style-185 {line-height: 1.5;}
.inline-style-186 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-187 {line-height: 1.5;}
.inline-style-188 {line-height: 1.5;}
.inline-style-189 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-190 {line-height: 1.5;}
.inline-style-191 {line-height: 1.5;}
.inline-style-192 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-193 {line-height: 1.5;}
.inline-style-194 {line-height: 1.5;}
.inline-style-195 {font-size: 15px;}
.inline-style-196 {color: rgb(0, 58, 250);}
.inline-style-197 {line-height: 1.5;}
.inline-style-198 {line-height: 1.5;}
.inline-style-199 {font-size: 15px;}
.inline-style-200 {line-height: 1.5;}
.inline-style-201 {line-height: 1.5;}
.inline-style-202 {font-size: 15px;}
.inline-style-203 {line-height: 1.5;}
.inline-style-204 {font-size: 15px;}
.inline-style-205 {color: rgb(0, 58, 250); font-size: 15px;}
.inline-style-206 {font-size: 15px;}
.inline-style-207 {line-height: 1.5;}
.inline-style-208 {font-size: 15px;}
.inline-style-209 {line-height: 1.5;}
.inline-style-210 {font-size: 15px;}
.inline-style-211 {line-height: 1.5;}
.inline-style-212 {font-size: 15px;}
.inline-style-213 {line-height: 1.5;}
.inline-style-214 {line-height: 1.5;}
.inline-style-215 {text-align: left;}
.inline-style-216 {line-height: 1.5;}
.inline-style-217 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-218 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-219 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-220 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-221 {line-height: 1.5;}
.inline-style-222 {text-align: left;}
.inline-style-223 {line-height: 1.5;}
.inline-style-224 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-225 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-226 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-227 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-228 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-229 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-230 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-231 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-232 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-233 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-234 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-235 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-236 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-237 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-238 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-239 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-240 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-241 {color: rgb(89, 89, 89); font-size: 11pt;}
.inline-style-242 {color: rgb(89, 89, 89); font-size: 14.6667px;}
.inline-style-243 {line-height: 1.5;}
.inline-style-244 {text-align: left;}
.inline-style-245 {text-align: justify; line-height: 115%;}
.inline-style-246 {line-height: 17.25px;}
.inline-style-247 {line-height: 1.5; text-align: left;}
.inline-style-248 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-249 {line-height: 1.1; text-align: left;}
.inline-style-250 {line-height: 1.5; text-align: left;}
.inline-style-251 {line-height: 1;}
.inline-style-252 {line-height: 1.5; text-align: left;}
.inline-style-253 {line-height: 24.5333px; font-size: 19px;}
.inline-style-254 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-255 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-256 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-257 {line-height: 1.5; text-align: left;}
.inline-style-258 {line-height: 1;}
.inline-style-259 {text-align: left; line-height: 1.5;}
.inline-style-260 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-261 {line-height: 1.5; text-align: left;}
.inline-style-262 {font-size: 15px;}
.inline-style-263 {font-size: 15px;}
.inline-style-264 {line-height: 1.5; text-align: left;}
.inline-style-265 {line-height: 1.5; text-align: left;}
.inline-style-266 {font-size: 19px;}
.inline-style-267 {line-height: 1.5; text-align: left;}
.inline-style-268 {line-height: 1.5; text-align: left;}
.inline-style-269 {font-size: 15px;}
.inline-style-270 {font-size: 15px;}
.inline-style-271 {line-height: 1.5; text-align: left;}
.inline-style-272 {font-size: 15px;}
.inline-style-273 {line-height: 1.5; text-align: left;}
.inline-style-274 {text-align: left;}
.inline-style-275 {line-height: 1.5;}
.inline-style-276 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-277 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-278 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-279 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-280 {line-height: 1.5;}
.inline-style-281 {text-align: left;}
.inline-style-282 {line-height: 1.5;}
.inline-style-283 {font-size: 15px;}
.inline-style-284 {line-height: 1.5;}
.inline-style-285 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-286 {text-align:justify;line-height:115%;}
.inline-style-287 {text-align: left; line-height: 1;}
.inline-style-288 {line-height: 1.5; margin-left: 20px;}
.inline-style-289 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-290 {line-height: 1.5; margin-left: 20px;}
.inline-style-291 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-292 {line-height: 1.5; margin-left: 20px;}
.inline-style-293 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-294 {line-height: 1.5;}
.inline-style-295 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-296 {font-size: 15px; line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);}
.inline-style-297 {line-height: 1.5;}
.inline-style-298 {text-align: left;}
.inline-style-299 {line-height: 1.5;}
.inline-style-300 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-301 {line-height: 1.5;}
.inline-style-302 {text-align: left;}
.inline-style-303 {line-height: 1.5;}
.inline-style-304 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-305 {line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);}
.inline-style-306 {color: rgb(10, 54, 90); text-align: left;}
.inline-style-307 {font-size: 15px;}
.inline-style-308 {line-height: 1.5;}
.inline-style-309 {font-size: 15px;}
.inline-style-310 {font-size: 15px;}
.inline-style-311 {font-size: 15px;}
.inline-style-312 {line-height: 1.5;}
.inline-style-313 {line-height: 1.5;}
.inline-style-314 {font-size: 19px;}
.inline-style-315 {line-height: 1.5;}
.inline-style-316 {line-height: 1.5;}
.inline-style-317 {font-size: 15px;}
.inline-style-318 {line-height: 1.5;}
.inline-style-319 {text-align: justify; line-height: 1.5;}
.inline-style-320 {line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);}
.inline-style-321 {color: rgb(10, 54, 90); text-align: left;}
.inline-style-322 {font-size: 15px; line-height: 1.5;}
.inline-style-323 {text-align: left; line-height: 1.5;}
.inline-style-324 {line-height: 24.5333px; font-size: 19px;}
.inline-style-325 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-326 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-327 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-328 {line-height: 1.5;}
.inline-style-329 {text-align: justify; line-height: 1;}
.inline-style-330 {line-height: 1.5; text-align: left;}
.inline-style-331 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-332 {line-height: 1.5;}
.inline-style-333 {text-align: justify; line-height: 1;}
.inline-style-334 {line-height: 17.25px;}
.inline-style-335 {line-height: 1.1;}
.inline-style-336 {line-height: 17.25px;}
.inline-style-337 {line-height: 1.5; text-align: left;}
.inline-style-338 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-339 {line-height: 1.5; text-align: left;}
.inline-style-340 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-341 {font-family: sans-serif; font-size: 15px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-342 {line-height: 1.5; text-align: left;}
.inline-style-343 {font-size: 15px;}
.inline-style-344 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-345 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-346 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-347 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-348 {line-height: 1.5; text-align: left;}
.inline-style-349 {font-size: 15px;}
.inline-style-350 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-351 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-352 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-353 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-354 {line-height: 1.5; text-align: left;}
.inline-style-355 {font-size: 15px;}
.inline-style-356 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-357 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-358 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-359 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-360 {line-height: 1.5; text-align: left;}
.inline-style-361 {font-size: 15px;}
.inline-style-362 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-363 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-364 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-365 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-366 {line-height: 1.5; text-align: left;}
.inline-style-367 {font-size: 15px;}
.inline-style-368 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-369 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-370 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-371 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-372 {line-height: 1.5; text-align: left;}
.inline-style-373 {font-size: 15px;}
.inline-style-374 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-375 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-376 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-377 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-378 {line-height: 1.5; text-align: left;}
.inline-style-379 {font-size: 15px;}
.inline-style-380 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-381 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-382 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-383 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-384 {line-height: 1.5; text-align: left;}
.inline-style-385 {font-size: 15px;}
.inline-style-386 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-387 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-388 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-389 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-390 {line-height: 1.5; text-align: left;}
.inline-style-391 {font-size: 15px;}
.inline-style-392 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-393 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-394 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-395 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-396 {line-height: 1.5; text-align: left;}
.inline-style-397 {font-size: 15px;}
.inline-style-398 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-399 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-400 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-401 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-402 {line-height: 1.5; text-align: left;}
.inline-style-403 {font-size: 15px;}
.inline-style-404 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-405 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-406 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-407 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-408 {line-height: 1.5; text-align: left;}
.inline-style-409 {font-size: 15px;}
.inline-style-410 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-411 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-412 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-413 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-414 {line-height: 1.5; text-align: left;}
.inline-style-415 {font-size: 15px;}
.inline-style-416 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-417 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-418 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-419 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-420 {line-height: 1.5; text-align: left;}
.inline-style-421 {font-size: 15px;}
.inline-style-422 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-423 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-424 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-425 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-426 {line-height: 1.5; text-align: left;}
.inline-style-427 {font-size: 15px;}
.inline-style-428 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-429 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-430 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-431 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-432 {line-height: 1.5; text-align: left;}
.inline-style-433 {font-size: 15px;}
.inline-style-434 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-435 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-436 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-437 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-438 {line-height: 1.5; text-align: left;}
.inline-style-439 {font-size: 15px;}
.inline-style-440 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-441 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-442 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-443 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-444 {line-height: 1.5; text-align: left;}
.inline-style-445 {font-size: 15px;}
.inline-style-446 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-447 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-448 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-449 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-450 {line-height: 1.5; text-align: left;}
.inline-style-451 {font-size: 15px;}
.inline-style-452 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-453 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-454 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-455 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-456 {line-height: 1.5; text-align: left;}
.inline-style-457 {font-size: 15px;}
.inline-style-458 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-459 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-460 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-461 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-462 {line-height: 1.5; text-align: left;}
.inline-style-463 {font-size: 15px;}
.inline-style-464 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-465 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-466 {line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-467 {font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-468 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);font-family: sans-serif; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: -29.4px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); text-decoration-style: initial; text-decoration-color: initial; color: rgb(89, 89, 89);}
.inline-style-469 {line-height: 1.5; text-align: left;}
.inline-style-470 {line-height: 17.25px;}
.inline-style-471 {line-height: 1;}
.inline-style-472 {text-align: left;}
.inline-style-473 {line-height: 1.5;}
.inline-style-474 {line-height: 24.5333px; font-size: 19px;}
.inline-style-475 {line-height: 24.5333px; font-size: 19px;}
.inline-style-476 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-477 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-478 {line-height: 1.5; text-align: left;}
.inline-style-479 {line-height: 1;}
.inline-style-480 {text-align: left;}
.inline-style-481 {line-height: 1.5;}
.inline-style-482 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-483 {text-align: left;}
.inline-style-484 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-485 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-486 {font-size: medium;text-align: left;}
.inline-style-487 {line-height: 1.5;}
.inline-style-488 {color: rgb(89, 89, 89);}
.inline-style-489 {font-size: 14px;}
.inline-style-490 {line-height: 1.5;}
.inline-style-491 {color: rgb(89, 89, 89);}
.inline-style-492 {font-size: 14px;}
.inline-style-493 {line-height: 1.5;}
.inline-style-494 {color: rgb(89, 89, 89);}
.inline-style-495 {font-size: 14px;}
.inline-style-496 {line-height: 1.5;}
.inline-style-497 {color: rgb(89, 89, 89);}
.inline-style-498 {font-size: 14px;}
.inline-style-499 {line-height: 1.5;}
.inline-style-500 {color: rgb(89, 89, 89);}
.inline-style-501 {font-size: 14px;}
.inline-style-502 {line-height: 1.5;}
.inline-style-503 {color: rgb(89, 89, 89);}
.inline-style-504 {font-size: 14px;}
.inline-style-505 {line-height: 1.5;}
.inline-style-506 {color: rgb(89, 89, 89);}
.inline-style-507 {font-size: 14px;}
.inline-style-508 {line-height: 1.5;}
.inline-style-509 {color: rgb(89, 89, 89);}
.inline-style-510 {font-size: 14px;}
.inline-style-511 {line-height: 1.5;}
.inline-style-512 {color: rgb(89, 89, 89);}
.inline-style-513 {font-size: 14px;}
.inline-style-514 {line-height: 1.5;}
.inline-style-515 {color: rgb(89, 89, 89);}
.inline-style-516 {font-size: 14px;}
.inline-style-517 {line-height: 1.5;}
.inline-style-518 {color: rgb(89, 89, 89);}
.inline-style-519 {font-size: 14px;}
.inline-style-520 {line-height: 1.5;}
.inline-style-521 {color: rgb(89, 89, 89);}
.inline-style-522 {font-size: 14px;}
.inline-style-523 {line-height: 1.5;}
.inline-style-524 {color: rgb(89, 89, 89);}
.inline-style-525 {font-size: 14px;}
.inline-style-526 {text-align: justify; line-height: 1.5;}
.inline-style-527 {text-align: left;}
.inline-style-528 {line-height: 1.5;}
.inline-style-529 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-530 {line-height: 1.5;}
.inline-style-531 {text-align: justify; line-height: 1;}
.inline-style-532 {text-align: left;}
.inline-style-533 {line-height: 1.5;}
.inline-style-534 {line-height: 24.5333px; font-size: 19px;}
.inline-style-535 {line-height: 24.5333px; font-size: 19px;}
.inline-style-536 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-537 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-538 {line-height: 1.5;}
.inline-style-539 {line-height: 1;}
.inline-style-540 {text-align: left;}
.inline-style-541 {line-height: 1.5;}
.inline-style-542 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-543 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-544 {line-height: 1.5;}
.inline-style-545 {line-height: 1.5;}
.inline-style-546 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-547 {line-height: 1.5;}
.inline-style-548 {line-height: 1.5;}
.inline-style-549 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-550 {line-height: 1.5;}
.inline-style-551 {line-height: 1.5;}
.inline-style-552 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-553 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-554 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-555 {text-align: left;}
.inline-style-556 {line-height: 1.5;}
.inline-style-557 {text-align: left;}
.inline-style-558 {line-height: 1.5;}
.inline-style-559 {line-height: 24.5333px; font-size: 19px;}
.inline-style-560 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-561 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-562 {line-height: 1.5;}
.inline-style-563 {line-height: 1.5;}
.inline-style-564 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-565 {line-height: 1.5;}
.inline-style-566 {line-height: 1.5;}
.inline-style-567 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-568 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-569 {line-height: 1.5;}
.inline-style-570 {line-height: 1.5;}
.inline-style-571 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-572 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-573 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-574 {text-align: left;}
.inline-style-575 {line-height: 1.5;}
.inline-style-576 {text-align: left;}
.inline-style-577 {line-height: 1.5;}
.inline-style-578 {text-align: left;}
.inline-style-579 {line-height: 1.5;}
.inline-style-580 {text-align: left;}
.inline-style-581 {line-height: 1.5;}
.inline-style-582 {text-align: left;}
.inline-style-583 {line-height: 1.5;}
.inline-style-584 {line-height: 24.5333px; font-size: 19px;}
.inline-style-585 {line-height: 24.5333px; font-size: 19px;}
.inline-style-586 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-587 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-588 {line-height: 1.5;}
.inline-style-589 {line-height: 1.5;}
.inline-style-590 {line-height: 1.5;}
.inline-style-591 {line-height: 1.5;}
.inline-style-592 {text-align: left;}
.inline-style-593 {line-height: 1.5;}
.inline-style-594 {line-height: 24.5333px; font-size: 19px;}
.inline-style-595 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-596 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-597 {line-height: 1.5;}
.inline-style-598 {line-height: 1.5;}
.inline-style-599 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-600 {color: rgb(0, 58, 250);}
.inline-style-601 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-602 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-603 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-604 {line-height: 1.5;}
.inline-style-605 {line-height: 1.5;}
.inline-style-606 {text-align: left;}
.inline-style-607 {font-size: 14.6667px;}
.inline-style-608 {line-height: 1.5;}
.inline-style-609 {text-align: left;}
.inline-style-610 {line-height: 1.5; text-align: left;}
.inline-style-611 {line-height: 1.5; text-align: left;}
.inline-style-612 {line-height: 24.5333px; font-size: 19px;}
.inline-style-613 {line-height: 24.5333px; font-size: 19px;}
.inline-style-614 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-615 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-616 {line-height: 1.5; text-align: left;}
.inline-style-617 {line-height: 1.5; text-align: left;}
.inline-style-618 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-619 {line-height: 1.5; text-align: left;}
.inline-style-620 {line-height: 1.5; text-align: left;}
.inline-style-621 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-622 {line-height: 1.5; text-align: left;}
.inline-style-623 {line-height: 1.5; text-align: left;}
.inline-style-624 {line-height: 24.5333px; font-size: 19px;}
.inline-style-625 {line-height: 24.5333px; font-size: 19px;}
.inline-style-626 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-627 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-628 {line-height: 1.5; text-align: left;}
.inline-style-629 {line-height: 1.5; text-align: left;}
.inline-style-630 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-631 {line-height: 1.5; text-align: left;}
.inline-style-632 {line-height: 1.5; text-align: left;}
.inline-style-633 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-634 {line-height: 1.5; text-align: left;}
.inline-style-635 {line-height: 1.5; text-align: left;}
.inline-style-636 {line-height: 24.5333px; font-size: 19px;}
.inline-style-637 {line-height: 24.5333px; font-size: 19px;}
.inline-style-638 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-639 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-640 {line-height: 1.5; text-align: left;}
.inline-style-641 {line-height: 1.5; text-align: left;}
.inline-style-642 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-643 {line-height: 1.5; text-align: left;}
.inline-style-644 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-645 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-646 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-647 {font-size: 11pt; line-height: 16.8667px; color: rgb(89, 89, 89);}
.inline-style-648 {line-height: 1.5; text-align: left;}
.inline-style-649 {line-height: 1.5; text-align: left;}
.inline-style-650 {line-height: 24.5333px; font-size: 19px;}
.inline-style-651 {line-height: 24.5333px; font-size: 19px;}
.inline-style-652 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-653 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-654 {line-height: 1.5; text-align: left;}
.inline-style-655 {line-height: 1.5; text-align: left;}
.inline-style-656 {line-height: 1.5; text-align: left;}
.inline-style-657 {line-height: 1.5; text-align: left;}
.inline-style-658 {line-height: 1.5; text-align: left;}
.inline-style-659 {line-height: 1.5; text-align: left;}
.inline-style-660 {font-size: 15px;}
.inline-style-661 {line-height: 1.5; text-align: left;}
.inline-style-662 {line-height: 1.5; text-align: left;}
.inline-style-663 {line-height: 1.5; text-align: left;}
.inline-style-664 {line-height: 1.5; text-align: left;}
.inline-style-665 {line-height: 1.5; text-align: left;}
.inline-style-666 {font-size: 15px;}
.inline-style-667 {line-height: 1.5; text-align: left;}
.inline-style-668 {line-height: 1.5; text-align: left;}
.inline-style-669 {line-height: 1.5; text-align: left;}
.inline-style-670 {line-height: 1.5; text-align: left;}
.inline-style-671 {line-height: 1.5; text-align: left;}
.inline-style-672 {line-height: 1.5; text-align: left;}
.inline-style-673 {line-height: 1.5; text-align: left;}
.inline-style-674 {line-height: 1.5; text-align: left;}
.inline-style-675 {line-height: 1.5; text-align: left;}
.inline-style-676 {line-height: 1.5; text-align: left;}
.inline-style-677 {line-height: 1.5; text-align: left;}
.inline-style-678 {line-height: 1.5; text-align: left;}
.inline-style-679 {font-size: 19px;}
.inline-style-680 {line-height: 24.5333px; font-size: 19px;}
.inline-style-681 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-682 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-683 {line-height: 1.5; text-align: left;}
.inline-style-684 {line-height: 1.5; text-align: left;}
.inline-style-685 {line-height: 1.5; text-align: left;}
.inline-style-686 {line-height: 1.5; text-align: left;}
.inline-style-687 {font-size: 19px; color: rgb(0, 0, 0);}
.inline-style-688 {line-height: 24.5333px; font-size: 19px;}
.inline-style-689 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-690 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-691 {line-height: 1.5; text-align: left;}
.inline-style-692 {line-height: 1.5; text-align: left;}
.inline-style-693 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-694 {line-height: 1.5; text-align: left;}
.inline-style-695 {line-height: 1.5; text-align: left;}
.inline-style-696 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-697 {line-height: 24.5333px; font-size: 19px;}
.inline-style-698 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-699 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-700 {line-height: 1.5; text-align: left;}
.inline-style-701 {line-height: 1.5; text-align: left;}
.inline-style-702 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-703 {font-size: 11pt; color: rgb(89, 89, 89); text-transform: uppercase;}
.inline-style-704 {line-height: 1.5; text-align: left;}
.inline-style-705 {line-height: 1.5; text-align: left;}
.inline-style-706 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-707 {line-height: 24.5333px; font-size: 19px;}
.inline-style-708 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-709 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-710 {line-height: 1.5; text-align: left;}
.inline-style-711 {line-height: 1.5; text-align: left;}
.inline-style-712 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-713 {font-size: 14.6667px;}
.inline-style-714 {font-size: 14.6667px;}
.inline-style-715 {font-size: 14.6667px;}
.inline-style-716 {font-size: 14.6667px;}
.inline-style-717 {font-size: 14.6667px;}
.inline-style-718 {line-height: 1.5; text-align: left;}
.inline-style-719 {line-height: 1.5; text-align: left;}
.inline-style-720 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-721 {line-height: 24.5333px; font-size: 19px;}
.inline-style-722 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-723 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-724 {line-height: 1.5; text-align: left;}
.inline-style-725 {line-height: 1.5; text-align: left;}
.inline-style-726 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-727 {line-height: 1.5; text-align: left;}
.inline-style-728 {line-height: 1.5; text-align: left;}
.inline-style-729 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-730 {line-height: 24.5333px; font-size: 19px;}
.inline-style-731 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-732 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-733 {line-height: 1.5; text-align: left;}
.inline-style-734 {line-height: 1.5; text-align: left;}
.inline-style-735 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-736 {line-height: 1.5; text-align: left;}
.inline-style-737 {line-height: 1.5; text-align: left;}
.inline-style-738 {font-size: 15px;}
.inline-style-739 {line-height: 1.5; text-align: left;}
.inline-style-740 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-741 {line-height: 24.5333px; font-size: 19px;}
.inline-style-742 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-743 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-744 {line-height: 1.5; text-align: left;}
.inline-style-745 {line-height: 1.5; text-align: left;}
.inline-style-746 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-747 {line-height: 1.5; text-align: left;}
.inline-style-748 {font-size: 15px;}
.inline-style-749 {line-height: 1.5; text-align: left;}
.inline-style-750 {line-height: 1.5; text-align: left;}
.inline-style-751 {line-height: 115%; font-family: Arial;}
.inline-style-752 {font-size: 19px;}
.inline-style-753 {line-height: 24.5333px; font-size: 19px;}
.inline-style-754 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-755 {line-height: 115%; font-family: Arial; font-size: 19px;}
.inline-style-756 {line-height: 1.5; text-align: left;}
.inline-style-757 {line-height: 1.5; text-align: left;}
.inline-style-758 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-759 {line-height: 1.5; text-align: left;}
.inline-style-760 {line-height: 1.5; text-align: left;}
.inline-style-761 {font-size: 15px;}
.inline-style-762 {color: rgb(89, 89, 89);}
.inline-style-763 {line-height: 1.5; text-align: left;}
.inline-style-764 {line-height: 1.5; text-align: left;}
.inline-style-765 {font-size: 15px;}
.inline-style-766 {color: rgb(89, 89, 89);}
.inline-style-767 {line-height: 1.5; text-align: left;}
.inline-style-768 {font-size: 15px;}
.inline-style-769 {line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);}
.inline-style-770 {line-height: 115%; font-family: Arial; color: rgb(89, 89, 89);}
.inline-style-771 {line-height: 1.5; text-align: left;}
.inline-style-772 {font-size: 15px;}
.inline-style-773 {color: rgb(89, 89, 89);}
.inline-style-774 {color: rgb(89, 89, 89);}
.inline-style-775 {line-height: 1.5; text-align: left;}
.inline-style-776 {line-height: 1.5; text-align: left;}
.inline-style-777 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-778 {line-height: 1.5; text-align: left;}
.inline-style-779 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
.inline-style-780 {line-height: 1.5; text-align: left;}
.inline-style-781 {font-size:11.0pt;line-height:115%;font-family:Arial;
          Calibri;color:#595959;mso-themecolor:text1;mso-themetint:166;}
