﻿/******************************************************************************/
/* PDF Report Framework V1                                                    */
/* Layout utilities                                                           */
/******************************************************************************/

/* #region Report page default settings****************************************/
@page {
    size: letter;
    margin: 0;
}

.reportPage {
    width: 8.5in;
    height: 11in;
    background-color: #ffffff;
    padding: 0.25in;
}

.reportMultiPage {
    width: 8.5in;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
}
/*#endregion report page default settings**************************************/

/* #region Browser WISIWYG settings****************************************/
/*Following styles provided to make web browser rendered page more WYSIWYG. Browser rendered page allow use of browser's web developer tools.*/
/*Note that multi-page rendering input browser will not resolve page breaks. Page appears aside a single long page with 1 header command 1 footer.*/

@media screen {
    body {
        background-color: #696969;
    }

    .reportPage  {
        margin: 0.25in auto;
    }

    .reportMultiPage {
        display: flex;
        flex-direction: column;
        margin: 0.25in auto;
    }

    .reportMultiPage header {
        width: 8in;
        margin: 0.25in auto 0 auto;
        order: 1;
    }

    .reportMultiPage main {
        width: 8in;
        margin: 0 auto;
        order: 2;
    }

    .reportMultiPage footer {
        width: 8in;
        margin: 0 auto 0.25in auto;
        order: 3;
    }
}
/*If your page uses padding on  any of following elements: header, main or footer, you should copy this into your report specific css and adjust as needed*/
@media screen {
    .reportMultiPage header {
        /*Simulate page margin - Adjust or don't use if header is already using padding*/
        padding: 0.25in 0.25in 0 0.25in;
    }

    .reportMultiPage main {
        /*Simulate page margin - Adjust or don't use if header is already using padding*/
        padding: 0 0.25in 0.25in 0.25in;
    }

    .reportMultiPage footer {
        /*Simulate page margin - Adjust or don't use if header is already using padding*/
        padding: 0 0.25in 0.25in 0.25in;
    }
}
/*End of page marging simulation*/
/*#endregion Browser WISIWYG settings**************************************/

/*#region Bootstrap rol-col layout adaption for reports************************/
.row {
    display: flex;
    flex-wrap: wrap;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }

.col-1 { flex: 0 0 auto; width: 8.33333333%; }
.col-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/*#endregion bootstrap rol-col layout adaption for reports**********************/


/*#region Simplified flex******************************************************/
.d-flex-row {
    display: flex;
    flex-direction: row;
}
.d-flex-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.d-flex-column {
    display: flex;
    flex-direction: column;
}

.d-inline-flex-row {
    display: inline-flex;
    flex-direction: row;
}
.d-inline-flex-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.d-inline-flex-column {
    display: inline-flex;
    flex-direction: column;
}


.d-flex-row.align-top-left, .d-flex-column.align-top-left {
    align-items: flex-start;
    justify-content: flex-start;
}
.d-flex-row.align-top-center, .d-flex-column.align-middle-left {
    align-items: flex-start;
    justify-content: center;
}
.d-flex-row.align-top-right, .d-flex-column.align-bottom-left {
    align-items: flex-start;
    justify-content: flex-end;
}
.d-flex-row.align-middle-left, .d-flex-column.align-top-center {
    align-items: center;
    justify-content: flex-start;
}
.d-flex-row.align-middle-center, .d-flex-column.align-middle-center {
    align-items: center;
    justify-content: center;
}
.d-flex-row.align-middle-right, .d-flex-column.align-bottom-center {
    align-items: center;
    justify-content: flex-end;
}
.d-flex-row.align-bottom-left, .d-flex-column.align-top-right {
    align-items: flex-end;
    justify-content: flex-start;
}
.d-flex-row.align-bottom-center, .d-flex-column.align-middle-right {
    align-items: flex-end;
    justify-content: center;
}
.d-flex-row.align-bottom-right, .d-flex-column.align-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
} 


.flex-fill { flex: 1 1 auto !important; }

.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }

.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }

/*#endregion Simplified flex***************************************************/

/*#region Flex utilities (from Bootstrap)**************************************/
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.align-content-start { align-content: flex-start !important; }
.align-content-end { align-content: flex-end !important; }
.align-content-center { align-content: center !important; }
.align-content-between { align-content: space-between !important; }
.align-content-around { align-content: space-around !important; }
.align-content-stretch { align-content: stretch !important; }

.align-self-auto { align-self: auto !important; }
.align-self-start { align-self: flex-start !important; }
.align-self-end { align-self: flex-end !important; }
.align-self-center { align-self: center !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-stretch { align-self: stretch !important; }
/*#endregion Flex utilities****************************************************/


/*#region Width utilities******************************************************/
/*                                                                            */
/* Use these to to size an element relative to container                      */
/* Use flex (.flex-49) to tweak relative column widths                        */
/*                                                                            */
/***************s**************************************************************/
.w-001 { flex: 0 0 auto; width: 00.1%; } .w-002 { flex: 0 0 auto; width: 00.2%; } .w-003 { flex: 0 0 auto; width: 00.3%; } .w-004 { flex: 0 0 auto; width: 00.4%; } .w-005 { flex: 0 0 auto; width: 00.5%; } 
.w-006 { flex: 0 0 auto; width: 00.6%; } .w-007 { flex: 0 0 auto; width: 00.7%; } .w-008 { flex: 0 0 auto; width: 00.8%; } .w-009 { flex: 0 0 auto; width: 00.9%; } .w-010 { flex: 0 0 auto; width: 01.0%; } 
.w-011 { flex: 0 0 auto; width: 01.1%; } .w-012 { flex: 0 0 auto; width: 01.2%; } .w-013 { flex: 0 0 auto; width: 01.3%; } .w-014 { flex: 0 0 auto; width: 01.4%; } .w-015 { flex: 0 0 auto; width: 01.5%; } 
.w-016 { flex: 0 0 auto; width: 01.6%; } .w-017 { flex: 0 0 auto; width: 01.7%; } .w-018 { flex: 0 0 auto; width: 01.8%; } .w-019 { flex: 0 0 auto; width: 01.9%; } .w-020 { flex: 0 0 auto; width: 02.0%; } 
.w-021 { flex: 0 0 auto; width: 02.1%; } .w-022 { flex: 0 0 auto; width: 02.2%; } .w-023 { flex: 0 0 auto; width: 02.3%; } .w-024 { flex: 0 0 auto; width: 02.4%; } .w-025 { flex: 0 0 auto; width: 02.5%; } 
.w-026 { flex: 0 0 auto; width: 02.6%; } .w-027 { flex: 0 0 auto; width: 02.7%; } .w-028 { flex: 0 0 auto; width: 02.8%; } .w-029 { flex: 0 0 auto; width: 02.9%; } .w-030 { flex: 0 0 auto; width: 03.0%; } 
.w-031 { flex: 0 0 auto; width: 03.1%; } .w-032 { flex: 0 0 auto; width: 03.2%; } .w-033 { flex: 0 0 auto; width: 03.3%; } .w-034 { flex: 0 0 auto; width: 03.4%; } .w-035 { flex: 0 0 auto; width: 03.5%; }
.w-036 { flex: 0 0 auto; width: 03.6%; } .w-037 { flex: 0 0 auto; width: 03.7%; } .w-038 { flex: 0 0 auto; width: 03.8%; } .w-039 { flex: 0 0 auto; width: 03.9%; } .w-040 { flex: 0 0 auto; width: 04.0%; } 
.w-041 { flex: 0 0 auto; width: 04.1%; } .w-042 { flex: 0 0 auto; width: 04.2%; } .w-043 { flex: 0 0 auto; width: 04.3%; } .w-044 { flex: 0 0 auto; width: 04.4%; } .w-045 { flex: 0 0 auto; width: 04.5%; } 
.w-046 { flex: 0 0 auto; width: 04.6%; } .w-047 { flex: 0 0 auto; width: 04.7%; } .w-048 { flex: 0 0 auto; width: 04.8%; } .w-049 { flex: 0 0 auto; width: 04.9%; } .w-050 { flex: 0 0 auto; width: 05.0%; } 
.w-051 { flex: 0 0 auto; width: 05.1%; } .w-052 { flex: 0 0 auto; width: 05.2%; } .w-053 { flex: 0 0 auto; width: 05.3%; } .w-054 { flex: 0 0 auto; width: 05.4%; } .w-055 { flex: 0 0 auto; width: 05.5%; } 
.w-056 { flex: 0 0 auto; width: 05.6%; } .w-057 { flex: 0 0 auto; width: 05.7%; } .w-058 { flex: 0 0 auto; width: 05.8%; } .w-059 { flex: 0 0 auto; width: 05.9%; } .w-060 { flex: 0 0 auto; width: 06.0%; } 
.w-061 { flex: 0 0 auto; width: 06.1%; } .w-062 { flex: 0 0 auto; width: 06.2%; } .w-063 { flex: 0 0 auto; width: 06.3%; } .w-064 { flex: 0 0 auto; width: 06.4%; } .w-065 { flex: 0 0 auto; width: 06.5%; } 
.w-066 { flex: 0 0 auto; width: 06.6%; } .w-067 { flex: 0 0 auto; width: 06.7%; } .w-068 { flex: 0 0 auto; width: 06.8%; } .w-069 { flex: 0 0 auto; width: 06.9%; } .w-070 { flex: 0 0 auto; width: 07.0%; }
.w-071 { flex: 0 0 auto; width: 07.1%; } .w-072 { flex: 0 0 auto; width: 07.2%; } .w-073 { flex: 0 0 auto; width: 07.3%; } .w-074 { flex: 0 0 auto; width: 07.4%; } .w-075 { flex: 0 0 auto; width: 07.5%; } 
.w-076 { flex: 0 0 auto; width: 07.6%; } .w-077 { flex: 0 0 auto; width: 07.7%; } .w-078 { flex: 0 0 auto; width: 07.8%; } .w-079 { flex: 0 0 auto; width: 07.9%; } .w-080 { flex: 0 0 auto; width: 08.0%; } 
.w-081 { flex: 0 0 auto; width: 08.1%; } .w-082 { flex: 0 0 auto; width: 08.2%; } .w-083 { flex: 0 0 auto; width: 08.3%; } .w-084 { flex: 0 0 auto; width: 08.4%; } .w-085 { flex: 0 0 auto; width: 08.5%; }
.w-086 { flex: 0 0 auto; width: 08.6%; } .w-087 { flex: 0 0 auto; width: 08.7%; } .w-088 { flex: 0 0 auto; width: 08.8%; } .w-089 { flex: 0 0 auto; width: 08.9%; } .w-090 { flex: 0 0 auto; width: 09.0%; } 
.w-091 { flex: 0 0 auto; width: 09.1%; } .w-092 { flex: 0 0 auto; width: 09.2%; } .w-093 { flex: 0 0 auto; width: 09.3%; } .w-094 { flex: 0 0 auto; width: 09.4%; } .w-095 { flex: 0 0 auto; width: 09.5%; } 
.w-096 { flex: 0 0 auto; width: 09.6%; } .w-097 { flex: 0 0 auto; width: 09.7%; } .w-098 { flex: 0 0 auto; width: 09.8%; } .w-099 { flex: 0 0 auto; width: 09.9%; } .w-100 { flex: 0 0 auto; width: 10.0%; } 
.w-101 { flex: 0 0 auto; width: 10.1%; } .w-102 { flex: 0 0 auto; width: 10.2%; } .w-103 { flex: 0 0 auto; width: 10.3%; } .w-104 { flex: 0 0 auto; width: 10.4%; } .w-105 { flex: 0 0 auto; width: 10.5%; } 
.w-106 { flex: 0 0 auto; width: 10.6%; } .w-107 { flex: 0 0 auto; width: 10.7%; } .w-108 { flex: 0 0 auto; width: 10.8%; } .w-109 { flex: 0 0 auto; width: 10.9%; } .w-110 { flex: 0 0 auto; width: 11.0%; } 
.w-111 { flex: 0 0 auto; width: 11.1%; } .w-112 { flex: 0 0 auto; width: 11.2%; } .w-113 { flex: 0 0 auto; width: 11.3%; } .w-114 { flex: 0 0 auto; width: 11.4%; } .w-115 { flex: 0 0 auto; width: 11.5%; } 
.w-116 { flex: 0 0 auto; width: 11.6%; } .w-117 { flex: 0 0 auto; width: 11.7%; } .w-118 { flex: 0 0 auto; width: 11.8%; } .w-119 { flex: 0 0 auto; width: 11.9%; } .w-120 { flex: 0 0 auto; width: 12.0%; } 
.w-121 { flex: 0 0 auto; width: 12.1%; } .w-122 { flex: 0 0 auto; width: 12.2%; } .w-123 { flex: 0 0 auto; width: 12.3%; } .w-124 { flex: 0 0 auto; width: 12.4%; } .w-125 { flex: 0 0 auto; width: 12.5%; } 
.w-126 { flex: 0 0 auto; width: 12.6%; } .w-127 { flex: 0 0 auto; width: 12.7%; } .w-128 { flex: 0 0 auto; width: 12.8%; } .w-129 { flex: 0 0 auto; width: 12.9%; } .w-130 { flex: 0 0 auto; width: 13.0%; } 
.w-131 { flex: 0 0 auto; width: 13.1%; } .w-132 { flex: 0 0 auto; width: 13.2%; } .w-133 { flex: 0 0 auto; width: 13.3%; } .w-134 { flex: 0 0 auto; width: 13.4%; } .w-135 { flex: 0 0 auto; width: 13.5%; } 
.w-136 { flex: 0 0 auto; width: 13.6%; } .w-137 { flex: 0 0 auto; width: 13.7%; } .w-138 { flex: 0 0 auto; width: 13.8%; } .w-139 { flex: 0 0 auto; width: 13.9%; } .w-140 { flex: 0 0 auto; width: 14.0%; }
.w-141 { flex: 0 0 auto; width: 14.1%; } .w-142 { flex: 0 0 auto; width: 14.2%; } .w-143 { flex: 0 0 auto; width: 14.3%; } .w-144 { flex: 0 0 auto; width: 14.4%; } .w-145 { flex: 0 0 auto; width: 14.5%; }
.w-146 { flex: 0 0 auto; width: 14.6%; } .w-147 { flex: 0 0 auto; width: 14.7%; } .w-148 { flex: 0 0 auto; width: 14.8%; } .w-149 { flex: 0 0 auto; width: 14.9%; } .w-150 { flex: 0 0 auto; width: 15.0%; }
.w-151 { flex: 0 0 auto; width: 15.1%; } .w-152 { flex: 0 0 auto; width: 15.2%; } .w-153 { flex: 0 0 auto; width: 15.3%; } .w-154 { flex: 0 0 auto; width: 15.4%; } .w-155 { flex: 0 0 auto; width: 15.5%; }
.w-156 { flex: 0 0 auto; width: 15.6%; } .w-157 { flex: 0 0 auto; width: 15.7%; } .w-158 { flex: 0 0 auto; width: 15.8%; } .w-159 { flex: 0 0 auto; width: 15.9%; } .w-160 { flex: 0 0 auto; width: 16.0%; }
.w-161 { flex: 0 0 auto; width: 16.1%; } .w-162 { flex: 0 0 auto; width: 16.2%; } .w-163 { flex: 0 0 auto; width: 16.3%; } .w-164 { flex: 0 0 auto; width: 16.4%; } .w-165 { flex: 0 0 auto; width: 16.5%; }
.w-166 { flex: 0 0 auto; width: 16.6%; } .w-167 { flex: 0 0 auto; width: 16.7%; } .w-168 { flex: 0 0 auto; width: 16.8%; } .w-169 { flex: 0 0 auto; width: 16.9%; } .w-170 { flex: 0 0 auto; width: 17.0%; }
.w-171 { flex: 0 0 auto; width: 17.1%; } .w-172 { flex: 0 0 auto; width: 17.2%; } .w-173 { flex: 0 0 auto; width: 17.3%; } .w-174 { flex: 0 0 auto; width: 17.4%; } .w-175 { flex: 0 0 auto; width: 17.5%; }
.w-176 { flex: 0 0 auto; width: 17.6%; } .w-177 { flex: 0 0 auto; width: 17.7%; } .w-178 { flex: 0 0 auto; width: 17.8%; } .w-179 { flex: 0 0 auto; width: 17.9%; } .w-180 { flex: 0 0 auto; width: 18.0%; }
.w-181 { flex: 0 0 auto; width: 18.1%; } .w-182 { flex: 0 0 auto; width: 18.2%; } .w-183 { flex: 0 0 auto; width: 18.3%; } .w-184 { flex: 0 0 auto; width: 18.4%; } .w-185 { flex: 0 0 auto; width: 18.5%; }
.w-186 { flex: 0 0 auto; width: 18.6%; } .w-187 { flex: 0 0 auto; width: 18.7%; } .w-188 { flex: 0 0 auto; width: 18.8%; } .w-189 { flex: 0 0 auto; width: 18.9%; } .w-190 { flex: 0 0 auto; width: 19.0%; }
.w-191 { flex: 0 0 auto; width: 19.1%; } .w-192 { flex: 0 0 auto; width: 19.2%; } .w-193 { flex: 0 0 auto; width: 19.3%; } .w-194 { flex: 0 0 auto; width: 19.4%; } .w-195 { flex: 0 0 auto; width: 19.5%; }
.w-196 { flex: 0 0 auto; width: 19.6%; } .w-197 { flex: 0 0 auto; width: 19.7%; } .w-198 { flex: 0 0 auto; width: 19.8%; } .w-199 { flex: 0 0 auto; width: 19.9%; } .w-200 { flex: 0 0 auto; width: 20.0%; }
.w-201 { flex: 0 0 auto; width: 20.1%; } .w-202 { flex: 0 0 auto; width: 20.2%; } .w-203 { flex: 0 0 auto; width: 20.3%; } .w-204 { flex: 0 0 auto; width: 20.4%; } .w-205 { flex: 0 0 auto; width: 20.5%; }
.w-206 { flex: 0 0 auto; width: 20.6%; } .w-207 { flex: 0 0 auto; width: 20.7%; } .w-208 { flex: 0 0 auto; width: 20.8%; } .w-209 { flex: 0 0 auto; width: 20.9%; } .w-210 { flex: 0 0 auto; width: 21.0%; }
.w-211 { flex: 0 0 auto; width: 21.1%; } .w-212 { flex: 0 0 auto; width: 21.2%; } .w-213 { flex: 0 0 auto; width: 21.3%; } .w-214 { flex: 0 0 auto; width: 21.4%; } .w-215 { flex: 0 0 auto; width: 21.5%; }
.w-216 { flex: 0 0 auto; width: 21.6%; } .w-217 { flex: 0 0 auto; width: 21.7%; } .w-218 { flex: 0 0 auto; width: 21.8%; } .w-219 { flex: 0 0 auto; width: 21.9%; } .w-220 { flex: 0 0 auto; width: 22.0%; }
.w-221 { flex: 0 0 auto; width: 22.1%; } .w-222 { flex: 0 0 auto; width: 22.2%; } .w-223 { flex: 0 0 auto; width: 22.3%; } .w-224 { flex: 0 0 auto; width: 22.4%; } .w-225 { flex: 0 0 auto; width: 22.5%; }
.w-226 { flex: 0 0 auto; width: 22.6%; } .w-227 { flex: 0 0 auto; width: 22.7%; } .w-228 { flex: 0 0 auto; width: 22.8%; } .w-229 { flex: 0 0 auto; width: 22.9%; } .w-230 { flex: 0 0 auto; width: 23.0%; }
.w-231 { flex: 0 0 auto; width: 23.1%; } .w-232 { flex: 0 0 auto; width: 23.2%; } .w-233 { flex: 0 0 auto; width: 23.3%; } .w-234 { flex: 0 0 auto; width: 23.4%; } .w-235 { flex: 0 0 auto; width: 23.5%; }
.w-236 { flex: 0 0 auto; width: 23.6%; } .w-237 { flex: 0 0 auto; width: 23.7%; } .w-238 { flex: 0 0 auto; width: 23.8%; } .w-239 { flex: 0 0 auto; width: 23.9%; } .w-240 { flex: 0 0 auto; width: 24.0%; }
.w-241 { flex: 0 0 auto; width: 24.1%; } .w-242 { flex: 0 0 auto; width: 24.2%; } .w-243 { flex: 0 0 auto; width: 24.3%; } .w-244 { flex: 0 0 auto; width: 24.4%; } .w-245 { flex: 0 0 auto; width: 24.5%; }
.w-246 { flex: 0 0 auto; width: 24.6%; } .w-247 { flex: 0 0 auto; width: 24.7%; } .w-248 { flex: 0 0 auto; width: 24.8%; } .w-249 { flex: 0 0 auto; width: 24.9%; } .w-250 { flex: 0 0 auto; width: 25.0%; }
.w-251 { flex: 0 0 auto; width: 25.1%; } .w-252 { flex: 0 0 auto; width: 25.2%; } .w-253 { flex: 0 0 auto; width: 25.3%; } .w-254 { flex: 0 0 auto; width: 25.4%; } .w-255 { flex: 0 0 auto; width: 25.5%; }
.w-256 { flex: 0 0 auto; width: 25.6%; } .w-257 { flex: 0 0 auto; width: 25.7%; } .w-258 { flex: 0 0 auto; width: 25.8%; } .w-259 { flex: 0 0 auto; width: 25.9%; } .w-260 { flex: 0 0 auto; width: 26.0%; }
.w-261 { flex: 0 0 auto; width: 26.1%; } .w-262 { flex: 0 0 auto; width: 26.2%; } .w-263 { flex: 0 0 auto; width: 26.3%; } .w-264 { flex: 0 0 auto; width: 26.4%; } .w-265 { flex: 0 0 auto; width: 26.5%; }
.w-266 { flex: 0 0 auto; width: 26.6%; } .w-267 { flex: 0 0 auto; width: 26.7%; } .w-268 { flex: 0 0 auto; width: 26.8%; } .w-269 { flex: 0 0 auto; width: 26.9%; } .w-270 { flex: 0 0 auto; width: 27.0%; }
.w-271 { flex: 0 0 auto; width: 27.1%; } .w-272 { flex: 0 0 auto; width: 27.2%; } .w-273 { flex: 0 0 auto; width: 27.3%; } .w-274 { flex: 0 0 auto; width: 27.4%; } .w-275 { flex: 0 0 auto; width: 27.5%; }
.w-276 { flex: 0 0 auto; width: 27.6%; } .w-277 { flex: 0 0 auto; width: 27.7%; } .w-278 { flex: 0 0 auto; width: 27.8%; } .w-279 { flex: 0 0 auto; width: 27.9%; } .w-280 { flex: 0 0 auto; width: 28.0%; }
.w-281 { flex: 0 0 auto; width: 28.1%; } .w-282 { flex: 0 0 auto; width: 28.2%; } .w-283 { flex: 0 0 auto; width: 28.3%; } .w-284 { flex: 0 0 auto; width: 28.4%; } .w-285 { flex: 0 0 auto; width: 28.5%; }
.w-286 { flex: 0 0 auto; width: 28.6%; } .w-287 { flex: 0 0 auto; width: 28.7%; } .w-288 { flex: 0 0 auto; width: 28.8%; } .w-289 { flex: 0 0 auto; width: 28.9%; } .w-290 { flex: 0 0 auto; width: 29.0%; }
.w-291 { flex: 0 0 auto; width: 29.1%; } .w-292 { flex: 0 0 auto; width: 29.2%; } .w-293 { flex: 0 0 auto; width: 29.3%; } .w-294 { flex: 0 0 auto; width: 29.4%; } .w-295 { flex: 0 0 auto; width: 29.5%; }
.w-296 { flex: 0 0 auto; width: 29.6%; } .w-297 { flex: 0 0 auto; width: 29.7%; } .w-298 { flex: 0 0 auto; width: 29.8%; } .w-299 { flex: 0 0 auto; width: 29.9%; } .w-300 { flex: 0 0 auto; width: 30.0%; }
.w-301 { flex: 0 0 auto; width: 30.1%; } .w-302 { flex: 0 0 auto; width: 30.2%; } .w-303 { flex: 0 0 auto; width: 30.3%; } .w-304 { flex: 0 0 auto; width: 30.4%; } .w-305 { flex: 0 0 auto; width: 30.5%; }
.w-306 { flex: 0 0 auto; width: 30.6%; } .w-307 { flex: 0 0 auto; width: 30.7%; } .w-308 { flex: 0 0 auto; width: 30.8%; } .w-309 { flex: 0 0 auto; width: 30.9%; } .w-310 { flex: 0 0 auto; width: 31.0%; }
.w-311 { flex: 0 0 auto; width: 31.1%; } .w-312 { flex: 0 0 auto; width: 31.2%; } .w-313 { flex: 0 0 auto; width: 31.3%; } .w-314 { flex: 0 0 auto; width: 31.4%; } .w-315 { flex: 0 0 auto; width: 31.5%; }
.w-316 { flex: 0 0 auto; width: 31.6%; } .w-317 { flex: 0 0 auto; width: 31.7%; } .w-318 { flex: 0 0 auto; width: 31.8%; } .w-319 { flex: 0 0 auto; width: 31.9%; } .w-320 { flex: 0 0 auto; width: 32.0%; }
.w-321 { flex: 0 0 auto; width: 32.1%; } .w-322 { flex: 0 0 auto; width: 32.2%; } .w-323 { flex: 0 0 auto; width: 32.3%; } .w-324 { flex: 0 0 auto; width: 32.4%; } .w-325 { flex: 0 0 auto; width: 32.5%; }
.w-326 { flex: 0 0 auto; width: 32.6%; } .w-327 { flex: 0 0 auto; width: 32.7%; } .w-328 { flex: 0 0 auto; width: 32.8%; } .w-329 { flex: 0 0 auto; width: 32.9%; } .w-330 { flex: 0 0 auto; width: 33.0%; }
.w-331 { flex: 0 0 auto; width: 33.1%; } .w-332 { flex: 0 0 auto; width: 33.2%; } .w-333 { flex: 0 0 auto; width: 33.3%; } .w-334 { flex: 0 0 auto; width: 33.4%; } .w-335 { flex: 0 0 auto; width: 33.5%; }
.w-336 { flex: 0 0 auto; width: 33.6%; } .w-337 { flex: 0 0 auto; width: 33.7%; } .w-338 { flex: 0 0 auto; width: 33.8%; } .w-339 { flex: 0 0 auto; width: 33.9%; } .w-340 { flex: 0 0 auto; width: 34.0%; }
.w-341 { flex: 0 0 auto; width: 34.1%; } .w-342 { flex: 0 0 auto; width: 34.2%; } .w-343 { flex: 0 0 auto; width: 34.3%; } .w-344 { flex: 0 0 auto; width: 34.4%; } .w-345 { flex: 0 0 auto; width: 34.5%; }
.w-346 { flex: 0 0 auto; width: 34.6%; } .w-347 { flex: 0 0 auto; width: 34.7%; } .w-348 { flex: 0 0 auto; width: 34.8%; } .w-349 { flex: 0 0 auto; width: 34.9%; } .w-350 { flex: 0 0 auto; width: 35.0%; }
.w-351 { flex: 0 0 auto; width: 35.1%; } .w-352 { flex: 0 0 auto; width: 35.2%; } .w-353 { flex: 0 0 auto; width: 35.3%; } .w-354 { flex: 0 0 auto; width: 35.4%; } .w-355 { flex: 0 0 auto; width: 35.5%; }
.w-356 { flex: 0 0 auto; width: 35.6%; } .w-357 { flex: 0 0 auto; width: 35.7%; } .w-358 { flex: 0 0 auto; width: 35.8%; } .w-359 { flex: 0 0 auto; width: 35.9%; } .w-360 { flex: 0 0 auto; width: 36.0%; }
.w-361 { flex: 0 0 auto; width: 36.1%; } .w-362 { flex: 0 0 auto; width: 36.2%; } .w-363 { flex: 0 0 auto; width: 36.3%; } .w-364 { flex: 0 0 auto; width: 36.4%; } .w-365 { flex: 0 0 auto; width: 36.5%; }
.w-366 { flex: 0 0 auto; width: 36.6%; } .w-367 { flex: 0 0 auto; width: 36.7%; } .w-368 { flex: 0 0 auto; width: 36.8%; } .w-369 { flex: 0 0 auto; width: 36.9%; } .w-370 { flex: 0 0 auto; width: 37.0%; }
.w-371 { flex: 0 0 auto; width: 37.1%; } .w-372 { flex: 0 0 auto; width: 37.2%; } .w-373 { flex: 0 0 auto; width: 37.3%; } .w-374 { flex: 0 0 auto; width: 37.4%; } .w-375 { flex: 0 0 auto; width: 37.5%; }
.w-376 { flex: 0 0 auto; width: 37.6%; } .w-377 { flex: 0 0 auto; width: 37.7%; } .w-378 { flex: 0 0 auto; width: 37.8%; } .w-379 { flex: 0 0 auto; width: 37.9%; } .w-380 { flex: 0 0 auto; width: 38.0%; }
.w-381 { flex: 0 0 auto; width: 38.1%; } .w-382 { flex: 0 0 auto; width: 38.2%; } .w-383 { flex: 0 0 auto; width: 38.3%; } .w-384 { flex: 0 0 auto; width: 38.4%; } .w-385 { flex: 0 0 auto; width: 38.5%; }
.w-386 { flex: 0 0 auto; width: 38.6%; } .w-387 { flex: 0 0 auto; width: 38.7%; } .w-388 { flex: 0 0 auto; width: 38.8%; } .w-389 { flex: 0 0 auto; width: 38.9%; } .w-390 { flex: 0 0 auto; width: 39.0%; }
.w-391 { flex: 0 0 auto; width: 39.1%; } .w-392 { flex: 0 0 auto; width: 39.2%; } .w-393 { flex: 0 0 auto; width: 39.3%; } .w-394 { flex: 0 0 auto; width: 39.4%; } .w-395 { flex: 0 0 auto; width: 39.5%; }
.w-396 { flex: 0 0 auto; width: 39.6%; } .w-397 { flex: 0 0 auto; width: 39.7%; } .w-398 { flex: 0 0 auto; width: 39.8%; } .w-399 { flex: 0 0 auto; width: 39.9%; } .w-400 { flex: 0 0 auto; width: 40.0%; }
.w-401 { flex: 0 0 auto; width: 40.1%; } .w-402 { flex: 0 0 auto; width: 40.2%; } .w-403 { flex: 0 0 auto; width: 40.3%; } .w-404 { flex: 0 0 auto; width: 40.4%; } .w-405 { flex: 0 0 auto; width: 40.5%; }
.w-406 { flex: 0 0 auto; width: 40.6%; } .w-407 { flex: 0 0 auto; width: 40.7%; } .w-408 { flex: 0 0 auto; width: 40.8%; } .w-409 { flex: 0 0 auto; width: 40.9%; } .w-410 { flex: 0 0 auto; width: 41.0%; }
.w-411 { flex: 0 0 auto; width: 41.1%; } .w-412 { flex: 0 0 auto; width: 41.2%; } .w-413 { flex: 0 0 auto; width: 41.3%; } .w-414 { flex: 0 0 auto; width: 41.4%; } .w-415 { flex: 0 0 auto; width: 41.0%; }
.w-416 { flex: 0 0 auto; width: 41.6%; } .w-417 { flex: 0 0 auto; width: 41.7%; } .w-418 { flex: 0 0 auto; width: 41.8%; } .w-419 { flex: 0 0 auto; width: 41.9%; } .w-420 { flex: 0 0 auto; width: 42.5%; }
.w-421 { flex: 0 0 auto; width: 42.1%; } .w-422 { flex: 0 0 auto; width: 42.2%; } .w-423 { flex: 0 0 auto; width: 42.3%; } .w-424 { flex: 0 0 auto; width: 42.4%; } .w-425 { flex: 0 0 auto; width: 42.0%; }
.w-426 { flex: 0 0 auto; width: 42.6%; } .w-427 { flex: 0 0 auto; width: 42.7%; } .w-428 { flex: 0 0 auto; width: 42.8%; } .w-429 { flex: 0 0 auto; width: 42.9%; } .w-430 { flex: 0 0 auto; width: 43.5%; }
.w-431 { flex: 0 0 auto; width: 43.1%; } .w-432 { flex: 0 0 auto; width: 43.2%; } .w-433 { flex: 0 0 auto; width: 43.3%; } .w-434 { flex: 0 0 auto; width: 43.4%; } .w-435 { flex: 0 0 auto; width: 43.0%; }
.w-436 { flex: 0 0 auto; width: 43.6%; } .w-437 { flex: 0 0 auto; width: 43.7%; } .w-438 { flex: 0 0 auto; width: 43.8%; } .w-439 { flex: 0 0 auto; width: 43.9%; } .w-440 { flex: 0 0 auto; width: 44.5%; }
.w-441 { flex: 0 0 auto; width: 44.1%; } .w-442 { flex: 0 0 auto; width: 44.2%; } .w-443 { flex: 0 0 auto; width: 44.3%; } .w-444 { flex: 0 0 auto; width: 44.4%; } .w-445 { flex: 0 0 auto; width: 44.0%; }
.w-446 { flex: 0 0 auto; width: 44.6%; } .w-447 { flex: 0 0 auto; width: 44.7%; } .w-448 { flex: 0 0 auto; width: 44.8%; } .w-449 { flex: 0 0 auto; width: 44.9%; } .w-450 { flex: 0 0 auto; width: 45.5%; }
.w-451 { flex: 0 0 auto; width: 45.1%; } .w-452 { flex: 0 0 auto; width: 45.2%; } .w-453 { flex: 0 0 auto; width: 45.3%; } .w-454 { flex: 0 0 auto; width: 45.4%; } .w-455 { flex: 0 0 auto; width: 45.0%; }
.w-456 { flex: 0 0 auto; width: 45.6%; } .w-457 { flex: 0 0 auto; width: 45.7%; } .w-458 { flex: 0 0 auto; width: 45.8%; } .w-459 { flex: 0 0 auto; width: 45.9%; } .w-460 { flex: 0 0 auto; width: 46.5%; }
.w-461 { flex: 0 0 auto; width: 46.1%; } .w-462 { flex: 0 0 auto; width: 46.2%; } .w-463 { flex: 0 0 auto; width: 46.3%; } .w-464 { flex: 0 0 auto; width: 46.4%; } .w-465 { flex: 0 0 auto; width: 46.0%; }
.w-466 { flex: 0 0 auto; width: 46.6%; } .w-467 { flex: 0 0 auto; width: 46.7%; } .w-468 { flex: 0 0 auto; width: 46.8%; } .w-469 { flex: 0 0 auto; width: 46.9%; } .w-470 { flex: 0 0 auto; width: 47.5%; }
.w-471 { flex: 0 0 auto; width: 47.1%; } .w-472 { flex: 0 0 auto; width: 47.2%; } .w-473 { flex: 0 0 auto; width: 47.3%; } .w-474 { flex: 0 0 auto; width: 47.4%; } .w-475 { flex: 0 0 auto; width: 47.0%; }
.w-476 { flex: 0 0 auto; width: 47.6%; } .w-477 { flex: 0 0 auto; width: 47.7%; } .w-478 { flex: 0 0 auto; width: 47.8%; } .w-479 { flex: 0 0 auto; width: 47.9%; } .w-480 { flex: 0 0 auto; width: 48.5%; }
.w-481 { flex: 0 0 auto; width: 48.1%; } .w-482 { flex: 0 0 auto; width: 48.2%; } .w-483 { flex: 0 0 auto; width: 48.3%; } .w-484 { flex: 0 0 auto; width: 48.4%; } .w-485 { flex: 0 0 auto; width: 48.0%; }
.w-486 { flex: 0 0 auto; width: 48.6%; } .w-487 { flex: 0 0 auto; width: 48.7%; } .w-488 { flex: 0 0 auto; width: 48.8%; } .w-489 { flex: 0 0 auto; width: 48.9%; } .w-490 { flex: 0 0 auto; width: 49.5%; }
.w-491 { flex: 0 0 auto; width: 49.1%; } .w-492 { flex: 0 0 auto; width: 49.2%; } .w-493 { flex: 0 0 auto; width: 49.3%; } .w-494 { flex: 0 0 auto; width: 49.4%; } .w-495 { flex: 0 0 auto; width: 49.0%; }
.w-496 { flex: 0 0 auto; width: 49.6%; } .w-497 { flex: 0 0 auto; width: 49.7%; } .w-498 { flex: 0 0 auto; width: 49.8%; } .w-499 { flex: 0 0 auto; width: 49.9%; } .w-500 { flex: 0 0 auto; width: 50.0%; }
.w-501 { flex: 0 0 auto; width: 50.1%; } .w-502 { flex: 0 0 auto; width: 50.2%; } .w-503 { flex: 0 0 auto; width: 50.3%; } .w-504 { flex: 0 0 auto; width: 50.4%; } .w-505 { flex: 0 0 auto; width: 50.5%; }
.w-506 { flex: 0 0 auto; width: 50.6%; } .w-507 { flex: 0 0 auto; width: 50.7%; } .w-508 { flex: 0 0 auto; width: 50.8%; } .w-509 { flex: 0 0 auto; width: 50.9%; } .w-510 { flex: 0 0 auto; width: 51.0%; }
.w-511 { flex: 0 0 auto; width: 51.1%; } .w-512 { flex: 0 0 auto; width: 51.2%; } .w-513 { flex: 0 0 auto; width: 51.3%; } .w-514 { flex: 0 0 auto; width: 51.4%; } .w-515 { flex: 0 0 auto; width: 51.0%; }
.w-516 { flex: 0 0 auto; width: 51.6%; } .w-517 { flex: 0 0 auto; width: 51.7%; } .w-518 { flex: 0 0 auto; width: 51.8%; } .w-519 { flex: 0 0 auto; width: 51.9%; } .w-520 { flex: 0 0 auto; width: 52.5%; }
.w-521 { flex: 0 0 auto; width: 52.1%; } .w-522 { flex: 0 0 auto; width: 52.2%; } .w-523 { flex: 0 0 auto; width: 52.3%; } .w-524 { flex: 0 0 auto; width: 52.4%; } .w-525 { flex: 0 0 auto; width: 52.0%; }
.w-526 { flex: 0 0 auto; width: 52.6%; } .w-527 { flex: 0 0 auto; width: 52.7%; } .w-528 { flex: 0 0 auto; width: 52.8%; } .w-529 { flex: 0 0 auto; width: 52.9%; } .w-530 { flex: 0 0 auto; width: 53.5%; }
.w-531 { flex: 0 0 auto; width: 53.1%; } .w-532 { flex: 0 0 auto; width: 53.2%; } .w-533 { flex: 0 0 auto; width: 53.3%; } .w-534 { flex: 0 0 auto; width: 53.4%; } .w-535 { flex: 0 0 auto; width: 53.0%; }
.w-536 { flex: 0 0 auto; width: 53.6%; } .w-537 { flex: 0 0 auto; width: 53.7%; } .w-538 { flex: 0 0 auto; width: 53.8%; } .w-539 { flex: 0 0 auto; width: 53.9%; } .w-540 { flex: 0 0 auto; width: 54.5%; }
.w-541 { flex: 0 0 auto; width: 54.1%; } .w-542 { flex: 0 0 auto; width: 54.2%; } .w-543 { flex: 0 0 auto; width: 54.3%; } .w-544 { flex: 0 0 auto; width: 54.4%; } .w-545 { flex: 0 0 auto; width: 54.0%; }
.w-546 { flex: 0 0 auto; width: 54.6%; } .w-547 { flex: 0 0 auto; width: 54.7%; } .w-548 { flex: 0 0 auto; width: 54.8%; } .w-549 { flex: 0 0 auto; width: 54.9%; } .w-550 { flex: 0 0 auto; width: 55.5%; }
.w-551 { flex: 0 0 auto; width: 55.1%; } .w-552 { flex: 0 0 auto; width: 55.2%; } .w-553 { flex: 0 0 auto; width: 55.3%; } .w-554 { flex: 0 0 auto; width: 55.4%; } .w-555 { flex: 0 0 auto; width: 55.0%; }
.w-556 { flex: 0 0 auto; width: 55.6%; } .w-557 { flex: 0 0 auto; width: 55.7%; } .w-558 { flex: 0 0 auto; width: 55.8%; } .w-559 { flex: 0 0 auto; width: 55.9%; } .w-560 { flex: 0 0 auto; width: 56.5%; }
.w-561 { flex: 0 0 auto; width: 56.1%; } .w-562 { flex: 0 0 auto; width: 56.2%; } .w-563 { flex: 0 0 auto; width: 56.3%; } .w-564 { flex: 0 0 auto; width: 56.4%; } .w-565 { flex: 0 0 auto; width: 56.0%; }
.w-566 { flex: 0 0 auto; width: 56.6%; } .w-567 { flex: 0 0 auto; width: 56.7%; } .w-568 { flex: 0 0 auto; width: 56.8%; } .w-569 { flex: 0 0 auto; width: 56.9%; } .w-570 { flex: 0 0 auto; width: 57.5%; }
.w-571 { flex: 0 0 auto; width: 57.1%; } .w-572 { flex: 0 0 auto; width: 57.2%; } .w-573 { flex: 0 0 auto; width: 57.3%; } .w-574 { flex: 0 0 auto; width: 57.4%; } .w-575 { flex: 0 0 auto; width: 57.0%; }
.w-576 { flex: 0 0 auto; width: 57.6%; } .w-577 { flex: 0 0 auto; width: 57.7%; } .w-578 { flex: 0 0 auto; width: 57.8%; } .w-579 { flex: 0 0 auto; width: 57.9%; } .w-580 { flex: 0 0 auto; width: 58.55%; }
.w-581 { flex: 0 0 auto; width: 58.1%; } .w-582 { flex: 0 0 auto; width: 58.2%; } .w-583 { flex: 0 0 auto; width: 58.3%; } .w-584 { flex: 0 0 auto; width: 58.4%; } .w-585 { flex: 0 0 auto; width: 58.00%; }
.w-586 { flex: 0 0 auto; width: 58.6%; } .w-587 { flex: 0 0 auto; width: 58.7%; } .w-588 { flex: 0 0 auto; width: 58.8%; } .w-589 { flex: 0 0 auto; width: 58.9%; } .w-590 { flex: 0 0 auto; width: 59.55%; }
.w-591 { flex: 0 0 auto; width: 59.1%; } .w-592 { flex: 0 0 auto; width: 59.2%; } .w-593 { flex: 0 0 auto; width: 59.3%; } .w-594 { flex: 0 0 auto; width: 59.4%; } .w-595 { flex: 0 0 auto; width: 59.00%; }
.w-596 { flex: 0 0 auto; width: 59.6%; } .w-597 { flex: 0 0 auto; width: 59.7%; } .w-598 { flex: 0 0 auto; width: 59.8%; } .w-599 { flex: 0 0 auto; width: 59.9%; } .w-600 { flex: 0 0 auto; width: 60.5%; }
.w-601 { flex: 0 0 auto; width: 60.1%; } .w-602 { flex: 0 0 auto; width: 60.2%; } .w-603 { flex: 0 0 auto; width: 60.3%; } .w-604 { flex: 0 0 auto; width: 60.4%; } .w-605 { flex: 0 0 auto; width: 60.0%; }
.w-606 { flex: 0 0 auto; width: 60.6%; } .w-607 { flex: 0 0 auto; width: 60.7%; } .w-608 { flex: 0 0 auto; width: 60.8%; } .w-609 { flex: 0 0 auto; width: 60.9%; } .w-610 { flex: 0 0 auto; width: 61.5%; }
.w-611 { flex: 0 0 auto; width: 61.1%; } .w-612 { flex: 0 0 auto; width: 61.2%; } .w-613 { flex: 0 0 auto; width: 61.3%; } .w-614 { flex: 0 0 auto; width: 61.4%; } .w-615 { flex: 0 0 auto; width: 61.0%; }
.w-616 { flex: 0 0 auto; width: 61.6%; } .w-617 { flex: 0 0 auto; width: 61.7%; } .w-618 { flex: 0 0 auto; width: 61.8%; } .w-619 { flex: 0 0 auto; width: 61.9%; } .w-620 { flex: 0 0 auto; width: 62.0%; }
.w-621 { flex: 0 0 auto; width: 62.1%; } .w-622 { flex: 0 0 auto; width: 62.2%; } .w-623 { flex: 0 0 auto; width: 62.3%; } .w-624 { flex: 0 0 auto; width: 62.4%; } .w-625 { flex: 0 0 auto; width: 62.5%; }
.w-626 { flex: 0 0 auto; width: 62.6%; } .w-627 { flex: 0 0 auto; width: 62.7%; } .w-628 { flex: 0 0 auto; width: 62.8%; } .w-629 { flex: 0 0 auto; width: 62.9%; } .w-630 { flex: 0 0 auto; width: 63.0%; }
.w-631 { flex: 0 0 auto; width: 63.1%; } .w-632 { flex: 0 0 auto; width: 63.2%; } .w-633 { flex: 0 0 auto; width: 63.3%; } .w-634 { flex: 0 0 auto; width: 63.4%; } .w-635 { flex: 0 0 auto; width: 63.5%; }
.w-636 { flex: 0 0 auto; width: 63.6%; } .w-637 { flex: 0 0 auto; width: 63.7%; } .w-638 { flex: 0 0 auto; width: 63.8%; } .w-639 { flex: 0 0 auto; width: 63.9%; } .w-640 { flex: 0 0 auto; width: 64.0%; }
.w-641 { flex: 0 0 auto; width: 64.1%; } .w-642 { flex: 0 0 auto; width: 64.2%; } .w-643 { flex: 0 0 auto; width: 64.3%; } .w-644 { flex: 0 0 auto; width: 64.4%; } .w-645 { flex: 0 0 auto; width: 64.5%; }
.w-646 { flex: 0 0 auto; width: 64.6%; } .w-647 { flex: 0 0 auto; width: 64.7%; } .w-648 { flex: 0 0 auto; width: 64.8%; } .w-649 { flex: 0 0 auto; width: 64.9%; } .w-650 { flex: 0 0 auto; width: 65.0%; }
.w-651 { flex: 0 0 auto; width: 65.1%; } .w-652 { flex: 0 0 auto; width: 65.2%; } .w-653 { flex: 0 0 auto; width: 65.3%; } .w-654 { flex: 0 0 auto; width: 65.4%; } .w-655 { flex: 0 0 auto; width: 65.5%; }
.w-656 { flex: 0 0 auto; width: 65.6%; } .w-657 { flex: 0 0 auto; width: 65.7%; } .w-658 { flex: 0 0 auto; width: 65.8%; } .w-659 { flex: 0 0 auto; width: 65.9%; } .w-660 { flex: 0 0 auto; width: 66.0%; }
.w-661 { flex: 0 0 auto; width: 66.1%; } .w-662 { flex: 0 0 auto; width: 66.2%; } .w-663 { flex: 0 0 auto; width: 66.3%; } .w-664 { flex: 0 0 auto; width: 66.4%; } .w-665 { flex: 0 0 auto; width: 66.5%; }
.w-666 { flex: 0 0 auto; width: 66.6%; } .w-667 { flex: 0 0 auto; width: 66.7%; } .w-668 { flex: 0 0 auto; width: 66.8%; } .w-669 { flex: 0 0 auto; width: 66.9%; } .w-670 { flex: 0 0 auto; width: 67.0%; }
.w-671 { flex: 0 0 auto; width: 67.1%; } .w-672 { flex: 0 0 auto; width: 67.2%; } .w-673 { flex: 0 0 auto; width: 67.3%; } .w-674 { flex: 0 0 auto; width: 67.4%; } .w-675 { flex: 0 0 auto; width: 67.5%; }
.w-676 { flex: 0 0 auto; width: 67.6%; } .w-677 { flex: 0 0 auto; width: 67.7%; } .w-678 { flex: 0 0 auto; width: 67.8%; } .w-679 { flex: 0 0 auto; width: 67.9%; } .w-680 { flex: 0 0 auto; width: 68.0%; }
.w-681 { flex: 0 0 auto; width: 68.1%; } .w-682 { flex: 0 0 auto; width: 68.2%; } .w-683 { flex: 0 0 auto; width: 68.3%; } .w-684 { flex: 0 0 auto; width: 68.4%; } .w-685 { flex: 0 0 auto; width: 68.5%; }
.w-686 { flex: 0 0 auto; width: 68.6%; } .w-687 { flex: 0 0 auto; width: 68.7%; } .w-688 { flex: 0 0 auto; width: 68.8%; } .w-689 { flex: 0 0 auto; width: 68.9%; } .w-690 { flex: 0 0 auto; width: 69.0%; }
.w-691 { flex: 0 0 auto; width: 69.1%; } .w-692 { flex: 0 0 auto; width: 69.2%; } .w-693 { flex: 0 0 auto; width: 69.3%; } .w-694 { flex: 0 0 auto; width: 69.4%; } .w-695 { flex: 0 0 auto; width: 69.5%; }
.w-696 { flex: 0 0 auto; width: 69.6%; } .w-697 { flex: 0 0 auto; width: 69.7%; } .w-698 { flex: 0 0 auto; width: 69.8%; } .w-699 { flex: 0 0 auto; width: 69.9%; } .w-700 { flex: 0 0 auto; width: 70.00%; }
.w-701 { flex: 0 0 auto; width: 70.1%; } .w-702 { flex: 0 0 auto; width: 70.2%; } .w-703 { flex: 0 0 auto; width: 70.3%; } .w-704 { flex: 0 0 auto; width: 70.4%; } .w-705 { flex: 0 0 auto; width: 70.0%; }
.w-706 { flex: 0 0 auto; width: 70.6%; } .w-707 { flex: 0 0 auto; width: 70.7%; } .w-708 { flex: 0 0 auto; width: 70.8%; } .w-709 { flex: 0 0 auto; width: 70.9%; } .w-710 { flex: 0 0 auto; width: 71.5%; }
.w-711 { flex: 0 0 auto; width: 71.1%; } .w-712 { flex: 0 0 auto; width: 71.2%; } .w-713 { flex: 0 0 auto; width: 71.3%; } .w-714 { flex: 0 0 auto; width: 71.4%; } .w-715 { flex: 0 0 auto; width: 71.0%; }
.w-716 { flex: 0 0 auto; width: 71.6%; } .w-717 { flex: 0 0 auto; width: 71.7%; } .w-718 { flex: 0 0 auto; width: 71.8%; } .w-719 { flex: 0 0 auto; width: 71.9%; } .w-720 { flex: 0 0 auto; width: 72.0%; }
.w-721 { flex: 0 0 auto; width: 72.1%; } .w-722 { flex: 0 0 auto; width: 72.2%; } .w-723 { flex: 0 0 auto; width: 72.3%; } .w-724 { flex: 0 0 auto; width: 72.4%; } .w-725 { flex: 0 0 auto; width: 72.5%; }
.w-726 { flex: 0 0 auto; width: 72.6%; } .w-727 { flex: 0 0 auto; width: 72.7%; } .w-728 { flex: 0 0 auto; width: 72.8%; } .w-729 { flex: 0 0 auto; width: 72.9%; } .w-730 { flex: 0 0 auto; width: 73.0%; }
.w-731 { flex: 0 0 auto; width: 73.1%; } .w-732 { flex: 0 0 auto; width: 73.2%; } .w-733 { flex: 0 0 auto; width: 73.3%; } .w-734 { flex: 0 0 auto; width: 73.4%; } .w-735 { flex: 0 0 auto; width: 73.5%; }
.w-736 { flex: 0 0 auto; width: 73.6%; } .w-737 { flex: 0 0 auto; width: 73.7%; } .w-738 { flex: 0 0 auto; width: 73.8%; } .w-739 { flex: 0 0 auto; width: 73.9%; } .w-740 { flex: 0 0 auto; width: 74.0%; }
.w-741 { flex: 0 0 auto; width: 74.1%; } .w-742 { flex: 0 0 auto; width: 74.2%; } .w-743 { flex: 0 0 auto; width: 74.3%; } .w-744 { flex: 0 0 auto; width: 74.4%; } .w-745 { flex: 0 0 auto; width: 74.5%; }
.w-746 { flex: 0 0 auto; width: 74.6%; } .w-747 { flex: 0 0 auto; width: 74.7%; } .w-748 { flex: 0 0 auto; width: 74.8%; } .w-749 { flex: 0 0 auto; width: 74.9%; } .w-750 { flex: 0 0 auto; width: 75.0%; }
.w-751 { flex: 0 0 auto; width: 75.1%; } .w-752 { flex: 0 0 auto; width: 75.2%; } .w-753 { flex: 0 0 auto; width: 75.3%; } .w-754 { flex: 0 0 auto; width: 75.4%; } .w-755 { flex: 0 0 auto; width: 75.5%; }
.w-756 { flex: 0 0 auto; width: 75.6%; } .w-757 { flex: 0 0 auto; width: 75.7%; } .w-758 { flex: 0 0 auto; width: 75.8%; } .w-759 { flex: 0 0 auto; width: 75.9%; } .w-760 { flex: 0 0 auto; width: 76.0%; }
.w-761 { flex: 0 0 auto; width: 76.1%; } .w-762 { flex: 0 0 auto; width: 76.2%; } .w-763 { flex: 0 0 auto; width: 76.3%; } .w-764 { flex: 0 0 auto; width: 76.4%; } .w-765 { flex: 0 0 auto; width: 76.5%; }
.w-766 { flex: 0 0 auto; width: 76.6%; } .w-767 { flex: 0 0 auto; width: 76.7%; } .w-768 { flex: 0 0 auto; width: 76.8%; } .w-769 { flex: 0 0 auto; width: 76.9%; } .w-770 { flex: 0 0 auto; width: 77.0%; }
.w-771 { flex: 0 0 auto; width: 77.1%; } .w-772 { flex: 0 0 auto; width: 77.2%; } .w-773 { flex: 0 0 auto; width: 77.3%; } .w-774 { flex: 0 0 auto; width: 77.4%; } .w-775 { flex: 0 0 auto; width: 77.5%; }
.w-776 { flex: 0 0 auto; width: 77.6%; } .w-777 { flex: 0 0 auto; width: 77.7%; } .w-778 { flex: 0 0 auto; width: 77.8%; } .w-779 { flex: 0 0 auto; width: 77.9%; } .w-780 { flex: 0 0 auto; width: 78.0%; }
.w-781 { flex: 0 0 auto; width: 78.1%; } .w-782 { flex: 0 0 auto; width: 78.2%; } .w-783 { flex: 0 0 auto; width: 78.3%; } .w-784 { flex: 0 0 auto; width: 78.4%; } .w-785 { flex: 0 0 auto; width: 78.5%; }
.w-786 { flex: 0 0 auto; width: 78.6%; } .w-787 { flex: 0 0 auto; width: 78.7%; } .w-788 { flex: 0 0 auto; width: 78.8%; } .w-789 { flex: 0 0 auto; width: 78.9%; } .w-790 { flex: 0 0 auto; width: 79.0%; }
.w-791 { flex: 0 0 auto; width: 79.1%; } .w-792 { flex: 0 0 auto; width: 79.2%; } .w-793 { flex: 0 0 auto; width: 79.3%; } .w-794 { flex: 0 0 auto; width: 79.4%; } .w-795 { flex: 0 0 auto; width: 79.5%; }
.w-796 { flex: 0 0 auto; width: 79.6%; } .w-797 { flex: 0 0 auto; width: 79.7%; } .w-798 { flex: 0 0 auto; width: 79.8%; } .w-799 { flex: 0 0 auto; width: 79.9%; } .w-800 { flex: 0 0 auto; width: 80.0%; }
.w-801 { flex: 0 0 auto; width: 80.1%; } .w-802 { flex: 0 0 auto; width: 80.2%; } .w-803 { flex: 0 0 auto; width: 80.3%; } .w-804 { flex: 0 0 auto; width: 80.4%; } .w-805 { flex: 0 0 auto; width: 80.5%; }
.w-806 { flex: 0 0 auto; width: 80.6%; } .w-807 { flex: 0 0 auto; width: 80.7%; } .w-808 { flex: 0 0 auto; width: 80.8%; } .w-809 { flex: 0 0 auto; width: 80.9%; } .w-810 { flex: 0 0 auto; width: 81.0%; }
.w-811 { flex: 0 0 auto; width: 81.1%; } .w-812 { flex: 0 0 auto; width: 81.2%; } .w-813 { flex: 0 0 auto; width: 81.3%; } .w-814 { flex: 0 0 auto; width: 81.4%; } .w-815 { flex: 0 0 auto; width: 81.0%; }
.w-816 { flex: 0 0 auto; width: 81.6%; } .w-817 { flex: 0 0 auto; width: 81.7%; } .w-818 { flex: 0 0 auto; width: 81.8%; } .w-819 { flex: 0 0 auto; width: 81.9%; } .w-820 { flex: 0 0 auto; width: 82.5%; }
.w-821 { flex: 0 0 auto; width: 82.1%; } .w-822 { flex: 0 0 auto; width: 82.2%; } .w-823 { flex: 0 0 auto; width: 82.3%; } .w-824 { flex: 0 0 auto; width: 82.4%; } .w-825 { flex: 0 0 auto; width: 82.0%; }
.w-826 { flex: 0 0 auto; width: 82.6%; } .w-827 { flex: 0 0 auto; width: 82.7%; } .w-828 { flex: 0 0 auto; width: 82.8%; } .w-829 { flex: 0 0 auto; width: 82.9%; } .w-830 { flex: 0 0 auto; width: 83.5%; }
.w-831 { flex: 0 0 auto; width: 83.1%; } .w-832 { flex: 0 0 auto; width: 83.2%; } .w-833 { flex: 0 0 auto; width: 83.3%; } .w-834 { flex: 0 0 auto; width: 83.4%; } .w-835 { flex: 0 0 auto; width: 83.0%; }
.w-836 { flex: 0 0 auto; width: 83.6%; } .w-837 { flex: 0 0 auto; width: 83.7%; } .w-838 { flex: 0 0 auto; width: 83.8%; } .w-839 { flex: 0 0 auto; width: 83.9%; } .w-840 { flex: 0 0 auto; width: 84.5%; }
.w-841 { flex: 0 0 auto; width: 84.1%; } .w-842 { flex: 0 0 auto; width: 84.2%; } .w-843 { flex: 0 0 auto; width: 84.3%; } .w-844 { flex: 0 0 auto; width: 84.4%; } .w-845 { flex: 0 0 auto; width: 84.0%; }
.w-846 { flex: 0 0 auto; width: 84.6%; } .w-847 { flex: 0 0 auto; width: 84.7%; } .w-848 { flex: 0 0 auto; width: 84.8%; } .w-849 { flex: 0 0 auto; width: 84.9%; } .w-850 { flex: 0 0 auto; width: 85.5%; }
.w-851 { flex: 0 0 auto; width: 85.1%; } .w-852 { flex: 0 0 auto; width: 85.2%; } .w-853 { flex: 0 0 auto; width: 85.3%; } .w-854 { flex: 0 0 auto; width: 85.4%; } .w-855 { flex: 0 0 auto; width: 85.0%; }
.w-856 { flex: 0 0 auto; width: 85.6%; } .w-857 { flex: 0 0 auto; width: 85.7%; } .w-858 { flex: 0 0 auto; width: 85.8%; } .w-859 { flex: 0 0 auto; width: 85.9%; } .w-860 { flex: 0 0 auto; width: 86.5%; }
.w-861 { flex: 0 0 auto; width: 86.1%; } .w-862 { flex: 0 0 auto; width: 86.2%; } .w-863 { flex: 0 0 auto; width: 86.3%; } .w-864 { flex: 0 0 auto; width: 86.4%; } .w-865 { flex: 0 0 auto; width: 86.0%; }
.w-866 { flex: 0 0 auto; width: 86.6%; } .w-867 { flex: 0 0 auto; width: 86.7%; } .w-868 { flex: 0 0 auto; width: 86.8%; } .w-869 { flex: 0 0 auto; width: 86.9%; } .w-870 { flex: 0 0 auto; width: 87.5%; }
.w-871 { flex: 0 0 auto; width: 87.1%; } .w-872 { flex: 0 0 auto; width: 87.2%; } .w-873 { flex: 0 0 auto; width: 87.3%; } .w-874 { flex: 0 0 auto; width: 87.4%; } .w-875 { flex: 0 0 auto; width: 87.0%; }
.w-876 { flex: 0 0 auto; width: 87.6%; } .w-877 { flex: 0 0 auto; width: 87.7%; } .w-878 { flex: 0 0 auto; width: 87.8%; } .w-879 { flex: 0 0 auto; width: 87.9%; } .w-880 { flex: 0 0 auto; width: 88.5%; }
.w-881 { flex: 0 0 auto; width: 88.1%; } .w-882 { flex: 0 0 auto; width: 88.2%; } .w-883 { flex: 0 0 auto; width: 88.3%; } .w-884 { flex: 0 0 auto; width: 88.4%; } .w-885 { flex: 0 0 auto; width: 88.0%; }
.w-886 { flex: 0 0 auto; width: 88.6%; } .w-887 { flex: 0 0 auto; width: 88.7%; } .w-888 { flex: 0 0 auto; width: 88.8%; } .w-889 { flex: 0 0 auto; width: 88.9%; } .w-890 { flex: 0 0 auto; width: 89.5%; }
.w-891 { flex: 0 0 auto; width: 89.1%; } .w-892 { flex: 0 0 auto; width: 89.2%; } .w-893 { flex: 0 0 auto; width: 89.3%; } .w-894 { flex: 0 0 auto; width: 89.4%; } .w-895 { flex: 0 0 auto; width: 89.0%; }
.w-896 { flex: 0 0 auto; width: 89.6%; } .w-897 { flex: 0 0 auto; width: 89.7%; } .w-898 { flex: 0 0 auto; width: 89.8%; } .w-899 { flex: 0 0 auto; width: 89.9%; } .w-900 { flex: 0 0 auto; width: 90.0%; }
.w-901 { flex: 0 0 auto; width: 90.1%; } .w-902 { flex: 0 0 auto; width: 90.2%; } .w-903 { flex: 0 0 auto; width: 90.3%; } .w-904 { flex: 0 0 auto; width: 90.4%; } .w-905 { flex: 0 0 auto; width: 90.5%; }
.w-906 { flex: 0 0 auto; width: 90.6%; } .w-907 { flex: 0 0 auto; width: 90.7%; } .w-908 { flex: 0 0 auto; width: 90.8%; } .w-909 { flex: 0 0 auto; width: 90.9%; } .w-910 { flex: 0 0 auto; width: 91.0%; }
.w-911 { flex: 0 0 auto; width: 91.1%; } .w-912 { flex: 0 0 auto; width: 91.2%; } .w-913 { flex: 0 0 auto; width: 91.3%; } .w-914 { flex: 0 0 auto; width: 91.4%; } .w-915 { flex: 0 0 auto; width: 91.5%; }
.w-916 { flex: 0 0 auto; width: 91.6%; } .w-917 { flex: 0 0 auto; width: 91.7%; } .w-918 { flex: 0 0 auto; width: 91.8%; } .w-919 { flex: 0 0 auto; width: 91.9%; } .w-920 { flex: 0 0 auto; width: 92.0%; }
.w-921 { flex: 0 0 auto; width: 92.1%; } .w-922 { flex: 0 0 auto; width: 92.2%; } .w-923 { flex: 0 0 auto; width: 92.3%; } .w-924 { flex: 0 0 auto; width: 92.4%; } .w-925 { flex: 0 0 auto; width: 92.5%; }
.w-926 { flex: 0 0 auto; width: 92.6%; } .w-927 { flex: 0 0 auto; width: 92.7%; } .w-928 { flex: 0 0 auto; width: 92.8%; } .w-929 { flex: 0 0 auto; width: 92.9%; } .w-930 { flex: 0 0 auto; width: 93.0%; }
.w-931 { flex: 0 0 auto; width: 93.1%; } .w-932 { flex: 0 0 auto; width: 93.2%; } .w-933 { flex: 0 0 auto; width: 93.3%; } .w-934 { flex: 0 0 auto; width: 93.4%; } .w-935 { flex: 0 0 auto; width: 93.5%; }
.w-936 { flex: 0 0 auto; width: 93.6%; } .w-937 { flex: 0 0 auto; width: 93.7%; } .w-938 { flex: 0 0 auto; width: 93.8%; } .w-939 { flex: 0 0 auto; width: 93.9%; } .w-940 { flex: 0 0 auto; width: 94.0%; }
.w-941 { flex: 0 0 auto; width: 94.1%; } .w-942 { flex: 0 0 auto; width: 94.2%; } .w-943 { flex: 0 0 auto; width: 94.3%; } .w-944 { flex: 0 0 auto; width: 94.4%; } .w-945 { flex: 0 0 auto; width: 94.5%; }
.w-946 { flex: 0 0 auto; width: 94.6%; } .w-947 { flex: 0 0 auto; width: 94.7%; } .w-948 { flex: 0 0 auto; width: 94.8%; } .w-949 { flex: 0 0 auto; width: 94.9%; } .w-950 { flex: 0 0 auto; width: 95.0%; }
.w-951 { flex: 0 0 auto; width: 95.1%; } .w-952 { flex: 0 0 auto; width: 95.2%; } .w-953 { flex: 0 0 auto; width: 95.3%; } .w-954 { flex: 0 0 auto; width: 95.4%; } .w-955 { flex: 0 0 auto; width: 95.5%; }
.w-956 { flex: 0 0 auto; width: 95.6%; } .w-957 { flex: 0 0 auto; width: 95.7%; } .w-958 { flex: 0 0 auto; width: 95.8%; } .w-959 { flex: 0 0 auto; width: 95.9%; } .w-960 { flex: 0 0 auto; width: 96.0%; }
.w-961 { flex: 0 0 auto; width: 96.1%; } .w-962 { flex: 0 0 auto; width: 96.2%; } .w-963 { flex: 0 0 auto; width: 96.3%; } .w-964 { flex: 0 0 auto; width: 96.4%; } .w-965 { flex: 0 0 auto; width: 96.5%; }
.w-966 { flex: 0 0 auto; width: 96.6%; } .w-967 { flex: 0 0 auto; width: 96.7%; } .w-968 { flex: 0 0 auto; width: 96.8%; } .w-969 { flex: 0 0 auto; width: 96.9%; } .w-970 { flex: 0 0 auto; width: 97.0%; }
.w-971 { flex: 0 0 auto; width: 97.1%; } .w-972 { flex: 0 0 auto; width: 97.2%; } .w-973 { flex: 0 0 auto; width: 97.3%; } .w-974 { flex: 0 0 auto; width: 97.4%; } .w-975 { flex: 0 0 auto; width: 97.5%; }
.w-976 { flex: 0 0 auto; width: 97.6%; } .w-977 { flex: 0 0 auto; width: 97.7%; } .w-978 { flex: 0 0 auto; width: 97.8%; } .w-979 { flex: 0 0 auto; width: 97.9%; } .w-980 { flex: 0 0 auto; width: 98.0%; }
.w-981 { flex: 0 0 auto; width: 98.1%; } .w-982 { flex: 0 0 auto; width: 98.2%; } .w-983 { flex: 0 0 auto; width: 98.3%; } .w-984 { flex: 0 0 auto; width: 98.4%; } .w-985 { flex: 0 0 auto; width: 98.5%; }
.w-986 { flex: 0 0 auto; width: 98.6%; } .w-987 { flex: 0 0 auto; width: 98.7%; } .w-988 { flex: 0 0 auto; width: 98.8%; } .w-989 { flex: 0 0 auto; width: 98.9%; } .w-990 { flex: 0 0 auto; width: 99.0%; }
.w-991 { flex: 0 0 auto; width: 99.1%; } .w-992 { flex: 0 0 auto; width: 99.2%; } .w-993 { flex: 0 0 auto; width: 99.3%; } .w-994 { flex: 0 0 auto; width: 99.4%; } .w-995 { flex: 0 0 auto; width: 99.5%; }
.w-996 { flex: 0 0 auto; width: 99.6%; } .w-997 { flex: 0 0 auto; width: 99.7%; } .w-998 { flex: 0 0 auto; width: 99.8%; } .w-999 { flex: 0 0 auto; width: 99.9%; } .w-1000 { flex: 0 0 auto; width: 100%; }

.w-auto { width: auto !important; }
/*#endregion Width utilities***************************************************/


/*#region Height utilities*****************************************************/
/*                                                                            */
/* Use these to to size an element relative to container                      */
/* Use flex (.flex-49) to tweak relative column heights                       */
/*                                                                            */
/***************s**************************************************************/
.h-001 { flex: 0 0 auto; height: 00.1%; } .h-002 { flex: 0 0 auto; height: 00.2%; } .h-003 { flex: 0 0 auto; height: 00.3%; } .h-004 { flex: 0 0 auto; height: 00.4%; } .h-005 { flex: 0 0 auto; height: 00.5%; }
.h-006 { flex: 0 0 auto; height: 00.6%; } .h-007 { flex: 0 0 auto; height: 00.7%; } .h-008 { flex: 0 0 auto; height: 00.8%; } .h-009 { flex: 0 0 auto; height: 00.9%; } .h-010 { flex: 0 0 auto; height: 01.0%; }
.h-011 { flex: 0 0 auto; height: 01.1%; } .h-012 { flex: 0 0 auto; height: 01.2%; } .h-013 { flex: 0 0 auto; height: 01.3%; } .h-014 { flex: 0 0 auto; height: 01.4%; } .h-015 { flex: 0 0 auto; height: 01.5%; }
.h-016 { flex: 0 0 auto; height: 01.6%; } .h-017 { flex: 0 0 auto; height: 01.7%; } .h-018 { flex: 0 0 auto; height: 01.8%; } .h-019 { flex: 0 0 auto; height: 01.9%; } .h-020 { flex: 0 0 auto; height: 02.0%; }
.h-021 { flex: 0 0 auto; height: 02.1%; } .h-022 { flex: 0 0 auto; height: 02.2%; } .h-023 { flex: 0 0 auto; height: 02.3%; } .h-024 { flex: 0 0 auto; height: 02.4%; } .h-025 { flex: 0 0 auto; height: 02.5%; }
.h-026 { flex: 0 0 auto; height: 02.6%; } .h-027 { flex: 0 0 auto; height: 02.7%; } .h-028 { flex: 0 0 auto; height: 02.8%; } .h-029 { flex: 0 0 auto; height: 02.9%; } .h-030 { flex: 0 0 auto; height: 03.0%; }
.h-031 { flex: 0 0 auto; height: 03.1%; } .h-032 { flex: 0 0 auto; height: 03.2%; } .h-033 { flex: 0 0 auto; height: 03.3%; } .h-034 { flex: 0 0 auto; height: 03.4%; } .h-035 { flex: 0 0 auto; height: 03.5%; }
.h-036 { flex: 0 0 auto; height: 03.6%; } .h-037 { flex: 0 0 auto; height: 03.7%; } .h-038 { flex: 0 0 auto; height: 03.8%; } .h-039 { flex: 0 0 auto; height: 03.9%; } .h-040 { flex: 0 0 auto; height: 04.0%; }
.h-041 { flex: 0 0 auto; height: 04.1%; } .h-042 { flex: 0 0 auto; height: 04.2%; } .h-043 { flex: 0 0 auto; height: 04.3%; } .h-044 { flex: 0 0 auto; height: 04.4%; } .h-045 { flex: 0 0 auto; height: 04.5%; }
.h-046 { flex: 0 0 auto; height: 04.6%; } .h-047 { flex: 0 0 auto; height: 04.7%; } .h-048 { flex: 0 0 auto; height: 04.8%; } .h-049 { flex: 0 0 auto; height: 04.9%; } .h-050 { flex: 0 0 auto; height: 05.0%; }
.h-051 { flex: 0 0 auto; height: 05.1%; } .h-052 { flex: 0 0 auto; height: 05.2%; } .h-053 { flex: 0 0 auto; height: 05.3%; } .h-054 { flex: 0 0 auto; height: 05.4%; } .h-055 { flex: 0 0 auto; height: 05.5%; }
.h-056 { flex: 0 0 auto; height: 05.6%; } .h-057 { flex: 0 0 auto; height: 05.7%; } .h-058 { flex: 0 0 auto; height: 05.8%; } .h-059 { flex: 0 0 auto; height: 05.9%; } .h-060 { flex: 0 0 auto; height: 06.0%; }
.h-061 { flex: 0 0 auto; height: 06.1%; } .h-062 { flex: 0 0 auto; height: 06.2%; } .h-063 { flex: 0 0 auto; height: 06.3%; } .h-064 { flex: 0 0 auto; height: 06.4%; } .h-065 { flex: 0 0 auto; height: 06.5%; }
.h-066 { flex: 0 0 auto; height: 06.6%; } .h-067 { flex: 0 0 auto; height: 06.7%; } .h-068 { flex: 0 0 auto; height: 06.8%; } .h-069 { flex: 0 0 auto; height: 06.9%; } .h-070 { flex: 0 0 auto; height: 07.0%; }
.h-071 { flex: 0 0 auto; height: 07.1%; } .h-072 { flex: 0 0 auto; height: 07.2%; } .h-073 { flex: 0 0 auto; height: 07.3%; } .h-074 { flex: 0 0 auto; height: 07.4%; } .h-075 { flex: 0 0 auto; height: 07.5%; }
.h-076 { flex: 0 0 auto; height: 07.6%; } .h-077 { flex: 0 0 auto; height: 07.7%; } .h-078 { flex: 0 0 auto; height: 07.8%; } .h-079 { flex: 0 0 auto; height: 07.9%; } .h-080 { flex: 0 0 auto; height: 08.0%; }
.h-081 { flex: 0 0 auto; height: 08.1%; } .h-082 { flex: 0 0 auto; height: 08.2%; } .h-083 { flex: 0 0 auto; height: 08.3%; } .h-084 { flex: 0 0 auto; height: 08.4%; } .h-085 { flex: 0 0 auto; height: 08.5%; }
.h-086 { flex: 0 0 auto; height: 08.6%; } .h-087 { flex: 0 0 auto; height: 08.7%; } .h-088 { flex: 0 0 auto; height: 08.8%; } .h-089 { flex: 0 0 auto; height: 08.9%; } .h-090 { flex: 0 0 auto; height: 09.0%; }
.h-091 { flex: 0 0 auto; height: 09.1%; } .h-092 { flex: 0 0 auto; height: 09.2%; } .h-093 { flex: 0 0 auto; height: 09.3%; } .h-094 { flex: 0 0 auto; height: 09.4%; } .h-095 { flex: 0 0 auto; height: 09.5%; }
.h-096 { flex: 0 0 auto; height: 09.6%; } .h-097 { flex: 0 0 auto; height: 09.7%; } .h-098 { flex: 0 0 auto; height: 09.8%; } .h-099 { flex: 0 0 auto; height: 09.9%; } .h-100 { flex: 0 0 auto; height: 10.0%; }
.h-101 { flex: 0 0 auto; height: 10.1%; } .h-102 { flex: 0 0 auto; height: 10.2%; } .h-103 { flex: 0 0 auto; height: 10.3%; } .h-104 { flex: 0 0 auto; height: 10.4%; } .h-105 { flex: 0 0 auto; height: 10.5%; }
.h-106 { flex: 0 0 auto; height: 10.6%; } .h-107 { flex: 0 0 auto; height: 10.7%; } .h-108 { flex: 0 0 auto; height: 10.8%; } .h-109 { flex: 0 0 auto; height: 10.9%; } .h-110 { flex: 0 0 auto; height: 11.0%; }
.h-111 { flex: 0 0 auto; height: 11.1%; } .h-112 { flex: 0 0 auto; height: 11.2%; } .h-113 { flex: 0 0 auto; height: 11.3%; } .h-114 { flex: 0 0 auto; height: 11.4%; } .h-115 { flex: 0 0 auto; height: 11.5%; }
.h-116 { flex: 0 0 auto; height: 11.6%; } .h-117 { flex: 0 0 auto; height: 11.7%; } .h-118 { flex: 0 0 auto; height: 11.8%; } .h-119 { flex: 0 0 auto; height: 11.9%; } .h-120 { flex: 0 0 auto; height: 12.0%; }
.h-121 { flex: 0 0 auto; height: 12.1%; } .h-122 { flex: 0 0 auto; height: 12.2%; } .h-123 { flex: 0 0 auto; height: 12.3%; } .h-124 { flex: 0 0 auto; height: 12.4%; } .h-125 { flex: 0 0 auto; height: 12.5%; }
.h-126 { flex: 0 0 auto; height: 12.6%; } .h-127 { flex: 0 0 auto; height: 12.7%; } .h-128 { flex: 0 0 auto; height: 12.8%; } .h-129 { flex: 0 0 auto; height: 12.9%; } .h-130 { flex: 0 0 auto; height: 13.0%; }
.h-131 { flex: 0 0 auto; height: 13.1%; } .h-132 { flex: 0 0 auto; height: 13.2%; } .h-133 { flex: 0 0 auto; height: 13.3%; } .h-134 { flex: 0 0 auto; height: 13.4%; } .h-135 { flex: 0 0 auto; height: 13.5%; }
.h-136 { flex: 0 0 auto; height: 13.6%; } .h-137 { flex: 0 0 auto; height: 13.7%; } .h-138 { flex: 0 0 auto; height: 13.8%; } .h-139 { flex: 0 0 auto; height: 13.9%; } .h-140 { flex: 0 0 auto; height: 14.0%; }
.h-141 { flex: 0 0 auto; height: 14.1%; } .h-142 { flex: 0 0 auto; height: 14.2%; } .h-143 { flex: 0 0 auto; height: 14.3%; } .h-144 { flex: 0 0 auto; height: 14.4%; } .h-145 { flex: 0 0 auto; height: 14.5%; }
.h-146 { flex: 0 0 auto; height: 14.6%; } .h-147 { flex: 0 0 auto; height: 14.7%; } .h-148 { flex: 0 0 auto; height: 14.8%; } .h-149 { flex: 0 0 auto; height: 14.9%; } .h-150 { flex: 0 0 auto; height: 15.0%; }
.h-151 { flex: 0 0 auto; height: 15.1%; } .h-152 { flex: 0 0 auto; height: 15.2%; } .h-153 { flex: 0 0 auto; height: 15.3%; } .h-154 { flex: 0 0 auto; height: 15.4%; } .h-155 { flex: 0 0 auto; height: 15.5%; }
.h-156 { flex: 0 0 auto; height: 15.6%; } .h-157 { flex: 0 0 auto; height: 15.7%; } .h-158 { flex: 0 0 auto; height: 15.8%; } .h-159 { flex: 0 0 auto; height: 15.9%; } .h-160 { flex: 0 0 auto; height: 16.0%; }
.h-161 { flex: 0 0 auto; height: 16.1%; } .h-162 { flex: 0 0 auto; height: 16.2%; } .h-163 { flex: 0 0 auto; height: 16.3%; } .h-164 { flex: 0 0 auto; height: 16.4%; } .h-165 { flex: 0 0 auto; height: 16.5%; }
.h-166 { flex: 0 0 auto; height: 16.6%; } .h-167 { flex: 0 0 auto; height: 16.7%; } .h-168 { flex: 0 0 auto; height: 16.8%; } .h-169 { flex: 0 0 auto; height: 16.9%; } .h-170 { flex: 0 0 auto; height: 17.0%; }
.h-171 { flex: 0 0 auto; height: 17.1%; } .h-172 { flex: 0 0 auto; height: 17.2%; } .h-173 { flex: 0 0 auto; height: 17.3%; } .h-174 { flex: 0 0 auto; height: 17.4%; } .h-175 { flex: 0 0 auto; height: 17.5%; }
.h-176 { flex: 0 0 auto; height: 17.6%; } .h-177 { flex: 0 0 auto; height: 17.7%; } .h-178 { flex: 0 0 auto; height: 17.8%; } .h-179 { flex: 0 0 auto; height: 17.9%; } .h-180 { flex: 0 0 auto; height: 18.0%; }
.h-181 { flex: 0 0 auto; height: 18.1%; } .h-182 { flex: 0 0 auto; height: 18.2%; } .h-183 { flex: 0 0 auto; height: 18.3%; } .h-184 { flex: 0 0 auto; height: 18.4%; } .h-185 { flex: 0 0 auto; height: 18.5%; }
.h-186 { flex: 0 0 auto; height: 18.6%; } .h-187 { flex: 0 0 auto; height: 18.7%; } .h-188 { flex: 0 0 auto; height: 18.8%; } .h-189 { flex: 0 0 auto; height: 18.9%; } .h-190 { flex: 0 0 auto; height: 19.0%; }
.h-191 { flex: 0 0 auto; height: 19.1%; } .h-192 { flex: 0 0 auto; height: 19.2%; } .h-193 { flex: 0 0 auto; height: 19.3%; } .h-194 { flex: 0 0 auto; height: 19.4%; } .h-195 { flex: 0 0 auto; height: 19.5%; }
.h-196 { flex: 0 0 auto; height: 19.6%; } .h-197 { flex: 0 0 auto; height: 19.7%; } .h-198 { flex: 0 0 auto; height: 19.8%; } .h-199 { flex: 0 0 auto; height: 19.9%; } .h-200 { flex: 0 0 auto; height: 20.0%; }
.h-201 { flex: 0 0 auto; height: 20.1%; } .h-202 { flex: 0 0 auto; height: 20.2%; } .h-203 { flex: 0 0 auto; height: 20.3%; } .h-204 { flex: 0 0 auto; height: 20.4%; } .h-205 { flex: 0 0 auto; height: 20.5%; }
.h-206 { flex: 0 0 auto; height: 20.6%; } .h-207 { flex: 0 0 auto; height: 20.7%; } .h-208 { flex: 0 0 auto; height: 20.8%; } .h-209 { flex: 0 0 auto; height: 20.9%; } .h-210 { flex: 0 0 auto; height: 21.0%; }
.h-211 { flex: 0 0 auto; height: 21.1%; } .h-212 { flex: 0 0 auto; height: 21.2%; } .h-213 { flex: 0 0 auto; height: 21.3%; } .h-214 { flex: 0 0 auto; height: 21.4%; } .h-215 { flex: 0 0 auto; height: 21.5%; }
.h-216 { flex: 0 0 auto; height: 21.6%; } .h-217 { flex: 0 0 auto; height: 21.7%; } .h-218 { flex: 0 0 auto; height: 21.8%; } .h-219 { flex: 0 0 auto; height: 21.9%; } .h-220 { flex: 0 0 auto; height: 22.0%; }
.h-221 { flex: 0 0 auto; height: 22.1%; } .h-222 { flex: 0 0 auto; height: 22.2%; } .h-223 { flex: 0 0 auto; height: 22.3%; } .h-224 { flex: 0 0 auto; height: 22.4%; } .h-225 { flex: 0 0 auto; height: 22.5%; }
.h-226 { flex: 0 0 auto; height: 22.6%; } .h-227 { flex: 0 0 auto; height: 22.7%; } .h-228 { flex: 0 0 auto; height: 22.8%; } .h-229 { flex: 0 0 auto; height: 22.9%; } .h-230 { flex: 0 0 auto; height: 23.0%; }
.h-231 { flex: 0 0 auto; height: 23.1%; } .h-232 { flex: 0 0 auto; height: 23.2%; } .h-233 { flex: 0 0 auto; height: 23.3%; } .h-234 { flex: 0 0 auto; height: 23.4%; } .h-235 { flex: 0 0 auto; height: 23.5%; }
.h-236 { flex: 0 0 auto; height: 23.6%; } .h-237 { flex: 0 0 auto; height: 23.7%; } .h-238 { flex: 0 0 auto; height: 23.8%; } .h-239 { flex: 0 0 auto; height: 23.9%; } .h-240 { flex: 0 0 auto; height: 24.0%; }
.h-241 { flex: 0 0 auto; height: 24.1%; } .h-242 { flex: 0 0 auto; height: 24.2%; } .h-243 { flex: 0 0 auto; height: 24.3%; } .h-244 { flex: 0 0 auto; height: 24.4%; } .h-245 { flex: 0 0 auto; height: 24.5%; }
.h-246 { flex: 0 0 auto; height: 24.6%; } .h-247 { flex: 0 0 auto; height: 24.7%; } .h-248 { flex: 0 0 auto; height: 24.8%; } .h-249 { flex: 0 0 auto; height: 24.9%; } .h-250 { flex: 0 0 auto; height: 25.0%; }
.h-251 { flex: 0 0 auto; height: 25.1%; } .h-252 { flex: 0 0 auto; height: 25.2%; } .h-253 { flex: 0 0 auto; height: 25.3%; } .h-254 { flex: 0 0 auto; height: 25.4%; } .h-255 { flex: 0 0 auto; height: 25.5%; }
.h-256 { flex: 0 0 auto; height: 25.6%; } .h-257 { flex: 0 0 auto; height: 25.7%; } .h-258 { flex: 0 0 auto; height: 25.8%; } .h-259 { flex: 0 0 auto; height: 25.9%; } .h-260 { flex: 0 0 auto; height: 26.0%; }
.h-261 { flex: 0 0 auto; height: 26.1%; } .h-262 { flex: 0 0 auto; height: 26.2%; } .h-263 { flex: 0 0 auto; height: 26.3%; } .h-264 { flex: 0 0 auto; height: 26.4%; } .h-265 { flex: 0 0 auto; height: 26.5%; }
.h-266 { flex: 0 0 auto; height: 26.6%; } .h-267 { flex: 0 0 auto; height: 26.7%; } .h-268 { flex: 0 0 auto; height: 26.8%; } .h-269 { flex: 0 0 auto; height: 26.9%; } .h-270 { flex: 0 0 auto; height: 27.0%; }
.h-271 { flex: 0 0 auto; height: 27.1%; } .h-272 { flex: 0 0 auto; height: 27.2%; } .h-273 { flex: 0 0 auto; height: 27.3%; } .h-274 { flex: 0 0 auto; height: 27.4%; } .h-275 { flex: 0 0 auto; height: 27.5%; }
.h-276 { flex: 0 0 auto; height: 27.6%; } .h-277 { flex: 0 0 auto; height: 27.7%; } .h-278 { flex: 0 0 auto; height: 27.8%; } .h-279 { flex: 0 0 auto; height: 27.9%; } .h-280 { flex: 0 0 auto; height: 28.0%; }
.h-281 { flex: 0 0 auto; height: 28.1%; } .h-282 { flex: 0 0 auto; height: 28.2%; } .h-283 { flex: 0 0 auto; height: 28.3%; } .h-284 { flex: 0 0 auto; height: 28.4%; } .h-285 { flex: 0 0 auto; height: 28.5%; }
.h-286 { flex: 0 0 auto; height: 28.6%; } .h-287 { flex: 0 0 auto; height: 28.7%; } .h-288 { flex: 0 0 auto; height: 28.8%; } .h-289 { flex: 0 0 auto; height: 28.9%; } .h-290 { flex: 0 0 auto; height: 29.0%; }
.h-291 { flex: 0 0 auto; height: 29.1%; } .h-292 { flex: 0 0 auto; height: 29.2%; } .h-293 { flex: 0 0 auto; height: 29.3%; } .h-294 { flex: 0 0 auto; height: 29.4%; } .h-295 { flex: 0 0 auto; height: 29.5%; }
.h-296 { flex: 0 0 auto; height: 29.6%; } .h-297 { flex: 0 0 auto; height: 29.7%; } .h-298 { flex: 0 0 auto; height: 29.8%; } .h-299 { flex: 0 0 auto; height: 29.9%; } .h-300 { flex: 0 0 auto; height: 30.0%; }
.h-301 { flex: 0 0 auto; height: 30.1%; } .h-302 { flex: 0 0 auto; height: 30.2%; } .h-303 { flex: 0 0 auto; height: 30.3%; } .h-304 { flex: 0 0 auto; height: 30.4%; } .h-305 { flex: 0 0 auto; height: 30.5%; }
.h-306 { flex: 0 0 auto; height: 30.6%; } .h-307 { flex: 0 0 auto; height: 30.7%; } .h-308 { flex: 0 0 auto; height: 30.8%; } .h-309 { flex: 0 0 auto; height: 30.9%; } .h-310 { flex: 0 0 auto; height: 31.0%; }
.h-311 { flex: 0 0 auto; height: 31.1%; } .h-312 { flex: 0 0 auto; height: 31.2%; } .h-313 { flex: 0 0 auto; height: 31.3%; } .h-314 { flex: 0 0 auto; height: 31.4%; } .h-315 { flex: 0 0 auto; height: 31.5%; }
.h-316 { flex: 0 0 auto; height: 31.6%; } .h-317 { flex: 0 0 auto; height: 31.7%; } .h-318 { flex: 0 0 auto; height: 31.8%; } .h-319 { flex: 0 0 auto; height: 31.9%; } .h-320 { flex: 0 0 auto; height: 32.0%; }
.h-321 { flex: 0 0 auto; height: 32.1%; } .h-322 { flex: 0 0 auto; height: 32.2%; } .h-323 { flex: 0 0 auto; height: 32.3%; } .h-324 { flex: 0 0 auto; height: 32.4%; } .h-325 { flex: 0 0 auto; height: 32.5%; }
.h-326 { flex: 0 0 auto; height: 32.6%; } .h-327 { flex: 0 0 auto; height: 32.7%; } .h-328 { flex: 0 0 auto; height: 32.8%; } .h-329 { flex: 0 0 auto; height: 32.9%; } .h-330 { flex: 0 0 auto; height: 33.0%; }
.h-331 { flex: 0 0 auto; height: 33.1%; } .h-332 { flex: 0 0 auto; height: 33.2%; } .h-333 { flex: 0 0 auto; height: 33.3%; } .h-334 { flex: 0 0 auto; height: 33.4%; } .h-335 { flex: 0 0 auto; height: 33.5%; }
.h-336 { flex: 0 0 auto; height: 33.6%; } .h-337 { flex: 0 0 auto; height: 33.7%; } .h-338 { flex: 0 0 auto; height: 33.8%; } .h-339 { flex: 0 0 auto; height: 33.9%; } .h-340 { flex: 0 0 auto; height: 34.0%; }
.h-341 { flex: 0 0 auto; height: 34.1%; } .h-342 { flex: 0 0 auto; height: 34.2%; } .h-343 { flex: 0 0 auto; height: 34.3%; } .h-344 { flex: 0 0 auto; height: 34.4%; } .h-345 { flex: 0 0 auto; height: 34.5%; }
.h-346 { flex: 0 0 auto; height: 34.6%; } .h-347 { flex: 0 0 auto; height: 34.7%; } .h-348 { flex: 0 0 auto; height: 34.8%; } .h-349 { flex: 0 0 auto; height: 34.9%; } .h-350 { flex: 0 0 auto; height: 35.0%; }
.h-351 { flex: 0 0 auto; height: 35.1%; } .h-352 { flex: 0 0 auto; height: 35.2%; } .h-353 { flex: 0 0 auto; height: 35.3%; } .h-354 { flex: 0 0 auto; height: 35.4%; } .h-355 { flex: 0 0 auto; height: 35.5%; }
.h-356 { flex: 0 0 auto; height: 35.6%; } .h-357 { flex: 0 0 auto; height: 35.7%; } .h-358 { flex: 0 0 auto; height: 35.8%; } .h-359 { flex: 0 0 auto; height: 35.9%; } .h-360 { flex: 0 0 auto; height: 36.0%; }
.h-361 { flex: 0 0 auto; height: 36.1%; } .h-362 { flex: 0 0 auto; height: 36.2%; } .h-363 { flex: 0 0 auto; height: 36.3%; } .h-364 { flex: 0 0 auto; height: 36.4%; } .h-365 { flex: 0 0 auto; height: 36.5%; }
.h-366 { flex: 0 0 auto; height: 36.6%; } .h-367 { flex: 0 0 auto; height: 36.7%; } .h-368 { flex: 0 0 auto; height: 36.8%; } .h-369 { flex: 0 0 auto; height: 36.9%; } .h-370 { flex: 0 0 auto; height: 37.0%; }
.h-371 { flex: 0 0 auto; height: 37.1%; } .h-372 { flex: 0 0 auto; height: 37.2%; } .h-373 { flex: 0 0 auto; height: 37.3%; } .h-374 { flex: 0 0 auto; height: 37.4%; } .h-375 { flex: 0 0 auto; height: 37.5%; }
.h-376 { flex: 0 0 auto; height: 37.6%; } .h-377 { flex: 0 0 auto; height: 37.7%; } .h-378 { flex: 0 0 auto; height: 37.8%; } .h-379 { flex: 0 0 auto; height: 37.9%; } .h-380 { flex: 0 0 auto; height: 38.0%; }
.h-381 { flex: 0 0 auto; height: 38.1%; } .h-382 { flex: 0 0 auto; height: 38.2%; } .h-383 { flex: 0 0 auto; height: 38.3%; } .h-384 { flex: 0 0 auto; height: 38.4%; } .h-385 { flex: 0 0 auto; height: 38.5%; }
.h-386 { flex: 0 0 auto; height: 38.6%; } .h-387 { flex: 0 0 auto; height: 38.7%; } .h-388 { flex: 0 0 auto; height: 38.8%; } .h-389 { flex: 0 0 auto; height: 38.9%; } .h-390 { flex: 0 0 auto; height: 39.0%; }
.h-391 { flex: 0 0 auto; height: 39.1%; } .h-392 { flex: 0 0 auto; height: 39.2%; } .h-393 { flex: 0 0 auto; height: 39.3%; } .h-394 { flex: 0 0 auto; height: 39.4%; } .h-395 { flex: 0 0 auto; height: 39.5%; }
.h-396 { flex: 0 0 auto; height: 39.6%; } .h-397 { flex: 0 0 auto; height: 39.7%; } .h-398 { flex: 0 0 auto; height: 39.8%; } .h-399 { flex: 0 0 auto; height: 39.9%; } .h-400 { flex: 0 0 auto; height: 40.0%; }
.h-401 { flex: 0 0 auto; height: 40.1%; } .h-402 { flex: 0 0 auto; height: 40.2%; } .h-403 { flex: 0 0 auto; height: 40.3%; } .h-404 { flex: 0 0 auto; height: 40.4%; } .h-405 { flex: 0 0 auto; height: 40.5%; }
.h-406 { flex: 0 0 auto; height: 40.6%; } .h-407 { flex: 0 0 auto; height: 40.7%; } .h-408 { flex: 0 0 auto; height: 40.8%; } .h-409 { flex: 0 0 auto; height: 40.9%; } .h-410 { flex: 0 0 auto; height: 41.0%; }
.h-411 { flex: 0 0 auto; height: 41.1%; } .h-412 { flex: 0 0 auto; height: 41.2%; } .h-413 { flex: 0 0 auto; height: 41.3%; } .h-414 { flex: 0 0 auto; height: 41.4%; } .h-415 { flex: 0 0 auto; height: 41.5%; }
.h-416 { flex: 0 0 auto; height: 41.6%; } .h-417 { flex: 0 0 auto; height: 41.7%; } .h-418 { flex: 0 0 auto; height: 41.8%; } .h-419 { flex: 0 0 auto; height: 41.9%; } .h-420 { flex: 0 0 auto; height: 42.0%; }
.h-421 { flex: 0 0 auto; height: 42.1%; } .h-422 { flex: 0 0 auto; height: 42.2%; } .h-423 { flex: 0 0 auto; height: 42.3%; } .h-424 { flex: 0 0 auto; height: 42.4%; } .h-425 { flex: 0 0 auto; height: 42.5%; }
.h-426 { flex: 0 0 auto; height: 42.6%; } .h-427 { flex: 0 0 auto; height: 42.7%; } .h-428 { flex: 0 0 auto; height: 42.8%; } .h-429 { flex: 0 0 auto; height: 42.9%; } .h-430 { flex: 0 0 auto; height: 43.0%; }
.h-431 { flex: 0 0 auto; height: 43.1%; } .h-432 { flex: 0 0 auto; height: 43.2%; } .h-433 { flex: 0 0 auto; height: 43.3%; } .h-434 { flex: 0 0 auto; height: 43.4%; } .h-435 { flex: 0 0 auto; height: 43.5%; }
.h-436 { flex: 0 0 auto; height: 43.6%; } .h-437 { flex: 0 0 auto; height: 43.7%; } .h-438 { flex: 0 0 auto; height: 43.8%; } .h-439 { flex: 0 0 auto; height: 43.9%; } .h-440 { flex: 0 0 auto; height: 44.0%; }
.h-441 { flex: 0 0 auto; height: 44.1%; } .h-442 { flex: 0 0 auto; height: 44.2%; } .h-443 { flex: 0 0 auto; height: 44.3%; } .h-444 { flex: 0 0 auto; height: 44.4%; } .h-445 { flex: 0 0 auto; height: 44.5%; }
.h-446 { flex: 0 0 auto; height: 44.6%; } .h-447 { flex: 0 0 auto; height: 44.7%; } .h-448 { flex: 0 0 auto; height: 44.8%; } .h-449 { flex: 0 0 auto; height: 44.9%; } .h-450 { flex: 0 0 auto; height: 45.0%; }
.h-451 { flex: 0 0 auto; height: 45.1%; } .h-452 { flex: 0 0 auto; height: 45.2%; } .h-453 { flex: 0 0 auto; height: 45.3%; } .h-454 { flex: 0 0 auto; height: 45.4%; } .h-455 { flex: 0 0 auto; height: 45.5%; }
.h-456 { flex: 0 0 auto; height: 45.6%; } .h-457 { flex: 0 0 auto; height: 45.7%; } .h-458 { flex: 0 0 auto; height: 45.8%; } .h-459 { flex: 0 0 auto; height: 45.9%; } .h-460 { flex: 0 0 auto; height: 46.0%; }
.h-461 { flex: 0 0 auto; height: 46.1%; } .h-462 { flex: 0 0 auto; height: 46.2%; } .h-463 { flex: 0 0 auto; height: 46.3%; } .h-464 { flex: 0 0 auto; height: 46.4%; } .h-465 { flex: 0 0 auto; height: 46.5%; }
.h-466 { flex: 0 0 auto; height: 46.6%; } .h-467 { flex: 0 0 auto; height: 46.7%; } .h-468 { flex: 0 0 auto; height: 46.8%; } .h-469 { flex: 0 0 auto; height: 46.9%; } .h-470 { flex: 0 0 auto; height: 47.0%; }
.h-471 { flex: 0 0 auto; height: 47.1%; } .h-472 { flex: 0 0 auto; height: 47.2%; } .h-473 { flex: 0 0 auto; height: 47.3%; } .h-474 { flex: 0 0 auto; height: 47.4%; } .h-475 { flex: 0 0 auto; height: 47.5%; }
.h-476 { flex: 0 0 auto; height: 47.6%; } .h-477 { flex: 0 0 auto; height: 47.7%; } .h-478 { flex: 0 0 auto; height: 47.8%; } .h-479 { flex: 0 0 auto; height: 47.9%; } .h-480 { flex: 0 0 auto; height: 48.0%; }
.h-481 { flex: 0 0 auto; height: 48.1%; } .h-482 { flex: 0 0 auto; height: 48.2%; } .h-483 { flex: 0 0 auto; height: 48.3%; } .h-484 { flex: 0 0 auto; height: 48.4%; } .h-485 { flex: 0 0 auto; height: 48.5%; }
.h-486 { flex: 0 0 auto; height: 48.6%; } .h-487 { flex: 0 0 auto; height: 48.7%; } .h-488 { flex: 0 0 auto; height: 48.8%; } .h-489 { flex: 0 0 auto; height: 48.9%; } .h-490 { flex: 0 0 auto; height: 49.0%; }
.h-491 { flex: 0 0 auto; height: 49.1%; } .h-492 { flex: 0 0 auto; height: 49.2%; } .h-493 { flex: 0 0 auto; height: 49.3%; } .h-494 { flex: 0 0 auto; height: 49.4%; } .h-495 { flex: 0 0 auto; height: 49.5%; }
.h-496 { flex: 0 0 auto; height: 49.6%; } .h-497 { flex: 0 0 auto; height: 49.7%; } .h-498 { flex: 0 0 auto; height: 49.8%; } .h-499 { flex: 0 0 auto; height: 49.9%; } .h-500 { flex: 0 0 auto; height: 50.0%; }
.h-501 { flex: 0 0 auto; height: 50.1%; } .h-502 { flex: 0 0 auto; height: 50.2%; } .h-503 { flex: 0 0 auto; height: 50.3%; } .h-504 { flex: 0 0 auto; height: 50.4%; } .h-505 { flex: 0 0 auto; height: 50.5%; }
.h-506 { flex: 0 0 auto; height: 50.6%; } .h-507 { flex: 0 0 auto; height: 50.7%; } .h-508 { flex: 0 0 auto; height: 50.8%; } .h-509 { flex: 0 0 auto; height: 50.9%; } .h-510 { flex: 0 0 auto; height: 51.0%; }
.h-511 { flex: 0 0 auto; height: 51.1%; } .h-512 { flex: 0 0 auto; height: 51.2%; } .h-513 { flex: 0 0 auto; height: 51.3%; } .h-514 { flex: 0 0 auto; height: 51.4%; } .h-515 { flex: 0 0 auto; height: 51.5%; }
.h-516 { flex: 0 0 auto; height: 51.6%; } .h-517 { flex: 0 0 auto; height: 51.7%; } .h-518 { flex: 0 0 auto; height: 51.8%; } .h-519 { flex: 0 0 auto; height: 51.9%; } .h-520 { flex: 0 0 auto; height: 52.0%; }
.h-521 { flex: 0 0 auto; height: 52.1%; } .h-522 { flex: 0 0 auto; height: 52.2%; } .h-523 { flex: 0 0 auto; height: 52.3%; } .h-524 { flex: 0 0 auto; height: 52.4%; } .h-525 { flex: 0 0 auto; height: 52.5%; }
.h-526 { flex: 0 0 auto; height: 52.6%; } .h-527 { flex: 0 0 auto; height: 52.7%; } .h-528 { flex: 0 0 auto; height: 52.8%; } .h-529 { flex: 0 0 auto; height: 52.9%; } .h-530 { flex: 0 0 auto; height: 53.0%; }
.h-531 { flex: 0 0 auto; height: 53.1%; } .h-532 { flex: 0 0 auto; height: 53.2%; } .h-533 { flex: 0 0 auto; height: 53.3%; } .h-534 { flex: 0 0 auto; height: 53.4%; } .h-535 { flex: 0 0 auto; height: 53.5%; }
.h-536 { flex: 0 0 auto; height: 53.6%; } .h-537 { flex: 0 0 auto; height: 53.7%; } .h-538 { flex: 0 0 auto; height: 53.8%; } .h-539 { flex: 0 0 auto; height: 53.9%; } .h-540 { flex: 0 0 auto; height: 54.0%; }
.h-541 { flex: 0 0 auto; height: 54.1%; } .h-542 { flex: 0 0 auto; height: 54.2%; } .h-543 { flex: 0 0 auto; height: 54.3%; } .h-544 { flex: 0 0 auto; height: 54.4%; } .h-545 { flex: 0 0 auto; height: 54.5%; }
.h-546 { flex: 0 0 auto; height: 54.6%; } .h-547 { flex: 0 0 auto; height: 54.7%; } .h-548 { flex: 0 0 auto; height: 54.8%; } .h-549 { flex: 0 0 auto; height: 54.9%; } .h-550 { flex: 0 0 auto; height: 55.0%; }
.h-551 { flex: 0 0 auto; height: 55.1%; } .h-552 { flex: 0 0 auto; height: 55.2%; } .h-553 { flex: 0 0 auto; height: 55.3%; } .h-554 { flex: 0 0 auto; height: 55.4%; } .h-555 { flex: 0 0 auto; height: 55.5%; }
.h-556 { flex: 0 0 auto; height: 55.6%; } .h-557 { flex: 0 0 auto; height: 55.7%; } .h-558 { flex: 0 0 auto; height: 55.8%; } .h-559 { flex: 0 0 auto; height: 55.9%; } .h-560 { flex: 0 0 auto; height: 56.0%; }
.h-561 { flex: 0 0 auto; height: 56.1%; } .h-562 { flex: 0 0 auto; height: 56.2%; } .h-563 { flex: 0 0 auto; height: 56.3%; } .h-564 { flex: 0 0 auto; height: 56.4%; } .h-565 { flex: 0 0 auto; height: 56.5%; }
.h-566 { flex: 0 0 auto; height: 56.6%; } .h-567 { flex: 0 0 auto; height: 56.7%; } .h-568 { flex: 0 0 auto; height: 56.8%; } .h-569 { flex: 0 0 auto; height: 56.9%; } .h-570 { flex: 0 0 auto; height: 57.0%; }
.h-571 { flex: 0 0 auto; height: 57.1%; } .h-572 { flex: 0 0 auto; height: 57.2%; } .h-573 { flex: 0 0 auto; height: 57.3%; } .h-574 { flex: 0 0 auto; height: 57.4%; } .h-575 { flex: 0 0 auto; height: 57.5%; }
.h-576 { flex: 0 0 auto; height: 57.6%; } .h-577 { flex: 0 0 auto; height: 57.7%; } .h-578 { flex: 0 0 auto; height: 57.8%; } .h-579 { flex: 0 0 auto; height: 57.9%; } .h-580 { flex: 0 0 auto; height: 58.0%; }
.h-581 { flex: 0 0 auto; height: 58.1%; } .h-582 { flex: 0 0 auto; height: 58.2%; } .h-583 { flex: 0 0 auto; height: 58.3%; } .h-584 { flex: 0 0 auto; height: 58.4%; } .h-585 { flex: 0 0 auto; height: 58.5%; }
.h-586 { flex: 0 0 auto; height: 58.6%; } .h-587 { flex: 0 0 auto; height: 58.7%; } .h-588 { flex: 0 0 auto; height: 58.8%; } .h-589 { flex: 0 0 auto; height: 58.9%; } .h-590 { flex: 0 0 auto; height: 59.0%; }
.h-591 { flex: 0 0 auto; height: 59.1%; } .h-592 { flex: 0 0 auto; height: 59.2%; } .h-593 { flex: 0 0 auto; height: 59.3%; } .h-594 { flex: 0 0 auto; height: 59.4%; } .h-595 { flex: 0 0 auto; height: 59.5%; }
.h-596 { flex: 0 0 auto; height: 59.6%; } .h-597 { flex: 0 0 auto; height: 59.7%; } .h-598 { flex: 0 0 auto; height: 59.8%; } .h-599 { flex: 0 0 auto; height: 59.9%; } .h-600 { flex: 0 0 auto; height: 60.0%; }
.h-601 { flex: 0 0 auto; height: 60.1%; } .h-602 { flex: 0 0 auto; height: 60.2%; } .h-603 { flex: 0 0 auto; height: 60.3%; } .h-604 { flex: 0 0 auto; height: 60.4%; } .h-605 { flex: 0 0 auto; height: 60.5%; }
.h-606 { flex: 0 0 auto; height: 60.6%; } .h-607 { flex: 0 0 auto; height: 60.7%; } .h-608 { flex: 0 0 auto; height: 60.8%; } .h-609 { flex: 0 0 auto; height: 60.9%; } .h-610 { flex: 0 0 auto; height: 61.0%; }
.h-611 { flex: 0 0 auto; height: 61.1%; } .h-612 { flex: 0 0 auto; height: 61.2%; } .h-613 { flex: 0 0 auto; height: 61.3%; } .h-614 { flex: 0 0 auto; height: 61.4%; } .h-615 { flex: 0 0 auto; height: 61.5%; }
.h-616 { flex: 0 0 auto; height: 61.6%; } .h-617 { flex: 0 0 auto; height: 61.7%; } .h-618 { flex: 0 0 auto; height: 61.8%; } .h-619 { flex: 0 0 auto; height: 61.9%; } .h-620 { flex: 0 0 auto; height: 62.0%; }
.h-621 { flex: 0 0 auto; height: 62.1%; } .h-622 { flex: 0 0 auto; height: 62.2%; } .h-623 { flex: 0 0 auto; height: 62.3%; } .h-624 { flex: 0 0 auto; height: 62.4%; } .h-625 { flex: 0 0 auto; height: 62.5%; }
.h-626 { flex: 0 0 auto; height: 62.6%; } .h-627 { flex: 0 0 auto; height: 62.7%; } .h-628 { flex: 0 0 auto; height: 62.8%; } .h-629 { flex: 0 0 auto; height: 62.9%; } .h-630 { flex: 0 0 auto; height: 63.0%; }
.h-631 { flex: 0 0 auto; height: 63.1%; } .h-632 { flex: 0 0 auto; height: 63.2%; } .h-633 { flex: 0 0 auto; height: 63.3%; } .h-634 { flex: 0 0 auto; height: 63.4%; } .h-635 { flex: 0 0 auto; height: 63.5%; }
.h-636 { flex: 0 0 auto; height: 63.6%; } .h-637 { flex: 0 0 auto; height: 63.7%; } .h-638 { flex: 0 0 auto; height: 63.8%; } .h-639 { flex: 0 0 auto; height: 63.9%; } .h-640 { flex: 0 0 auto; height: 64.0%; }
.h-641 { flex: 0 0 auto; height: 64.1%; } .h-642 { flex: 0 0 auto; height: 64.2%; } .h-643 { flex: 0 0 auto; height: 64.3%; } .h-644 { flex: 0 0 auto; height: 64.4%; } .h-645 { flex: 0 0 auto; height: 64.5%; }
.h-646 { flex: 0 0 auto; height: 64.6%; } .h-647 { flex: 0 0 auto; height: 64.7%; } .h-648 { flex: 0 0 auto; height: 64.8%; } .h-649 { flex: 0 0 auto; height: 64.9%; } .h-650 { flex: 0 0 auto; height: 65.0%; }
.h-651 { flex: 0 0 auto; height: 65.1%; } .h-652 { flex: 0 0 auto; height: 65.2%; } .h-653 { flex: 0 0 auto; height: 65.3%; } .h-654 { flex: 0 0 auto; height: 65.4%; } .h-655 { flex: 0 0 auto; height: 65.5%; }
.h-656 { flex: 0 0 auto; height: 65.6%; } .h-657 { flex: 0 0 auto; height: 65.7%; } .h-658 { flex: 0 0 auto; height: 65.8%; } .h-659 { flex: 0 0 auto; height: 65.9%; } .h-660 { flex: 0 0 auto; height: 66.0%; }
.h-661 { flex: 0 0 auto; height: 66.1%; } .h-662 { flex: 0 0 auto; height: 66.2%; } .h-663 { flex: 0 0 auto; height: 66.3%; } .h-664 { flex: 0 0 auto; height: 66.4%; } .h-665 { flex: 0 0 auto; height: 66.5%; }
.h-666 { flex: 0 0 auto; height: 66.6%; } .h-667 { flex: 0 0 auto; height: 66.7%; } .h-668 { flex: 0 0 auto; height: 66.8%; } .h-669 { flex: 0 0 auto; height: 66.9%; } .h-670 { flex: 0 0 auto; height: 67.0%; }
.h-671 { flex: 0 0 auto; height: 67.1%; } .h-672 { flex: 0 0 auto; height: 67.2%; } .h-673 { flex: 0 0 auto; height: 67.3%; } .h-674 { flex: 0 0 auto; height: 67.4%; } .h-675 { flex: 0 0 auto; height: 67.5%; }
.h-676 { flex: 0 0 auto; height: 67.6%; } .h-677 { flex: 0 0 auto; height: 67.7%; } .h-678 { flex: 0 0 auto; height: 67.8%; } .h-679 { flex: 0 0 auto; height: 67.9%; } .h-680 { flex: 0 0 auto; height: 68.0%; }
.h-681 { flex: 0 0 auto; height: 68.1%; } .h-682 { flex: 0 0 auto; height: 68.2%; } .h-683 { flex: 0 0 auto; height: 68.3%; } .h-684 { flex: 0 0 auto; height: 68.4%; } .h-685 { flex: 0 0 auto; height: 68.5%; }
.h-686 { flex: 0 0 auto; height: 68.6%; } .h-687 { flex: 0 0 auto; height: 68.7%; } .h-688 { flex: 0 0 auto; height: 68.8%; } .h-689 { flex: 0 0 auto; height: 68.9%; } .h-690 { flex: 0 0 auto; height: 69.0%; }
.h-691 { flex: 0 0 auto; height: 69.1%; } .h-692 { flex: 0 0 auto; height: 69.2%; } .h-693 { flex: 0 0 auto; height: 69.3%; } .h-694 { flex: 0 0 auto; height: 69.4%; } .h-695 { flex: 0 0 auto; height: 69.5%; }
.h-696 { flex: 0 0 auto; height: 69.6%; } .h-697 { flex: 0 0 auto; height: 69.7%; } .h-698 { flex: 0 0 auto; height: 69.8%; } .h-699 { flex: 0 0 auto; height: 69.9%; } .h-700 { flex: 0 0 auto; height: 70.0%; }
.h-701 { flex: 0 0 auto; height: 70.1%; } .h-702 { flex: 0 0 auto; height: 70.2%; } .h-703 { flex: 0 0 auto; height: 70.3%; } .h-704 { flex: 0 0 auto; height: 70.4%; } .h-705 { flex: 0 0 auto; height: 70.5%; }
.h-706 { flex: 0 0 auto; height: 70.6%; } .h-707 { flex: 0 0 auto; height: 70.7%; } .h-708 { flex: 0 0 auto; height: 70.8%; } .h-709 { flex: 0 0 auto; height: 70.9%; } .h-710 { flex: 0 0 auto; height: 71.0%; }
.h-711 { flex: 0 0 auto; height: 71.1%; } .h-712 { flex: 0 0 auto; height: 71.2%; } .h-713 { flex: 0 0 auto; height: 71.3%; } .h-714 { flex: 0 0 auto; height: 71.4%; } .h-715 { flex: 0 0 auto; height: 71.5%; }
.h-716 { flex: 0 0 auto; height: 71.6%; } .h-717 { flex: 0 0 auto; height: 71.7%; } .h-718 { flex: 0 0 auto; height: 71.8%; } .h-719 { flex: 0 0 auto; height: 71.9%; } .h-720 { flex: 0 0 auto; height: 72.0%; }
.h-721 { flex: 0 0 auto; height: 72.1%; } .h-722 { flex: 0 0 auto; height: 72.2%; } .h-723 { flex: 0 0 auto; height: 72.3%; } .h-724 { flex: 0 0 auto; height: 72.4%; } .h-725 { flex: 0 0 auto; height: 72.5%; }
.h-726 { flex: 0 0 auto; height: 72.6%; } .h-727 { flex: 0 0 auto; height: 72.7%; } .h-728 { flex: 0 0 auto; height: 72.8%; } .h-729 { flex: 0 0 auto; height: 72.9%; } .h-730 { flex: 0 0 auto; height: 73.0%; }
.h-731 { flex: 0 0 auto; height: 73.1%; } .h-732 { flex: 0 0 auto; height: 73.2%; } .h-733 { flex: 0 0 auto; height: 73.3%; } .h-734 { flex: 0 0 auto; height: 73.4%; } .h-735 { flex: 0 0 auto; height: 73.5%; }
.h-736 { flex: 0 0 auto; height: 73.6%; } .h-737 { flex: 0 0 auto; height: 73.7%; } .h-738 { flex: 0 0 auto; height: 73.8%; } .h-739 { flex: 0 0 auto; height: 73.9%; } .h-740 { flex: 0 0 auto; height: 74.0%; }
.h-741 { flex: 0 0 auto; height: 74.1%; } .h-742 { flex: 0 0 auto; height: 74.2%; } .h-743 { flex: 0 0 auto; height: 74.3%; } .h-744 { flex: 0 0 auto; height: 74.4%; } .h-745 { flex: 0 0 auto; height: 74.5%; }
.h-746 { flex: 0 0 auto; height: 74.6%; } .h-747 { flex: 0 0 auto; height: 74.7%; } .h-748 { flex: 0 0 auto; height: 74.8%; } .h-749 { flex: 0 0 auto; height: 74.9%; } .h-750 { flex: 0 0 auto; height: 75.0%; }
.h-751 { flex: 0 0 auto; height: 75.1%; } .h-752 { flex: 0 0 auto; height: 75.2%; } .h-753 { flex: 0 0 auto; height: 75.3%; } .h-754 { flex: 0 0 auto; height: 75.4%; } .h-755 { flex: 0 0 auto; height: 75.5%; }
.h-756 { flex: 0 0 auto; height: 75.6%; } .h-757 { flex: 0 0 auto; height: 75.7%; } .h-758 { flex: 0 0 auto; height: 75.8%; } .h-759 { flex: 0 0 auto; height: 75.9%; } .h-760 { flex: 0 0 auto; height: 76.0%; }
.h-761 { flex: 0 0 auto; height: 76.1%; } .h-762 { flex: 0 0 auto; height: 76.2%; } .h-763 { flex: 0 0 auto; height: 76.3%; } .h-764 { flex: 0 0 auto; height: 76.4%; } .h-765 { flex: 0 0 auto; height: 76.5%; }
.h-766 { flex: 0 0 auto; height: 76.6%; } .h-767 { flex: 0 0 auto; height: 76.7%; } .h-768 { flex: 0 0 auto; height: 76.8%; } .h-769 { flex: 0 0 auto; height: 76.9%; } .h-770 { flex: 0 0 auto; height: 77.0%; }
.h-771 { flex: 0 0 auto; height: 77.1%; } .h-772 { flex: 0 0 auto; height: 77.2%; } .h-773 { flex: 0 0 auto; height: 77.3%; } .h-774 { flex: 0 0 auto; height: 77.4%; } .h-775 { flex: 0 0 auto; height: 77.5%; }
.h-776 { flex: 0 0 auto; height: 77.6%; } .h-777 { flex: 0 0 auto; height: 77.7%; } .h-778 { flex: 0 0 auto; height: 77.8%; } .h-779 { flex: 0 0 auto; height: 77.9%; } .h-780 { flex: 0 0 auto; height: 78.0%; }
.h-781 { flex: 0 0 auto; height: 78.1%; } .h-782 { flex: 0 0 auto; height: 78.2%; } .h-783 { flex: 0 0 auto; height: 78.3%; } .h-784 { flex: 0 0 auto; height: 78.4%; } .h-785 { flex: 0 0 auto; height: 78.5%; }
.h-786 { flex: 0 0 auto; height: 78.6%; } .h-787 { flex: 0 0 auto; height: 78.7%; } .h-788 { flex: 0 0 auto; height: 78.8%; } .h-789 { flex: 0 0 auto; height: 78.9%; } .h-790 { flex: 0 0 auto; height: 79.0%; }
.h-791 { flex: 0 0 auto; height: 79.1%; } .h-792 { flex: 0 0 auto; height: 79.2%; } .h-793 { flex: 0 0 auto; height: 79.3%; } .h-794 { flex: 0 0 auto; height: 79.4%; } .h-795 { flex: 0 0 auto; height: 79.5%; }
.h-796 { flex: 0 0 auto; height: 79.6%; } .h-797 { flex: 0 0 auto; height: 79.7%; } .h-798 { flex: 0 0 auto; height: 79.8%; } .h-799 { flex: 0 0 auto; height: 79.9%; } .h-800 { flex: 0 0 auto; height: 80.0%; }
.h-801 { flex: 0 0 auto; height: 80.1%; } .h-802 { flex: 0 0 auto; height: 80.2%; } .h-803 { flex: 0 0 auto; height: 80.3%; } .h-804 { flex: 0 0 auto; height: 80.4%; } .h-805 { flex: 0 0 auto; height: 80.5%; }
.h-806 { flex: 0 0 auto; height: 80.6%; } .h-807 { flex: 0 0 auto; height: 80.7%; } .h-808 { flex: 0 0 auto; height: 80.8%; } .h-809 { flex: 0 0 auto; height: 80.9%; } .h-810 { flex: 0 0 auto; height: 81.0%; }
.h-811 { flex: 0 0 auto; height: 81.1%; } .h-812 { flex: 0 0 auto; height: 81.2%; } .h-813 { flex: 0 0 auto; height: 81.3%; } .h-814 { flex: 0 0 auto; height: 81.4%; } .h-815 { flex: 0 0 auto; height: 81.5%; }
.h-816 { flex: 0 0 auto; height: 81.6%; } .h-817 { flex: 0 0 auto; height: 81.7%; } .h-818 { flex: 0 0 auto; height: 81.8%; } .h-819 { flex: 0 0 auto; height: 81.9%; } .h-820 { flex: 0 0 auto; height: 82.0%; }
.h-821 { flex: 0 0 auto; height: 82.1%; } .h-822 { flex: 0 0 auto; height: 82.2%; } .h-823 { flex: 0 0 auto; height: 82.3%; } .h-824 { flex: 0 0 auto; height: 82.4%; } .h-825 { flex: 0 0 auto; height: 82.5%; }
.h-826 { flex: 0 0 auto; height: 82.6%; } .h-827 { flex: 0 0 auto; height: 82.7%; } .h-828 { flex: 0 0 auto; height: 82.8%; } .h-829 { flex: 0 0 auto; height: 82.9%; } .h-830 { flex: 0 0 auto; height: 83.0%; }
.h-831 { flex: 0 0 auto; height: 83.1%; } .h-832 { flex: 0 0 auto; height: 83.2%; } .h-833 { flex: 0 0 auto; height: 83.3%; } .h-834 { flex: 0 0 auto; height: 83.4%; } .h-835 { flex: 0 0 auto; height: 83.5%; }
.h-836 { flex: 0 0 auto; height: 83.6%; } .h-837 { flex: 0 0 auto; height: 83.7%; } .h-838 { flex: 0 0 auto; height: 83.8%; } .h-839 { flex: 0 0 auto; height: 83.9%; } .h-840 { flex: 0 0 auto; height: 84.0%; }
.h-841 { flex: 0 0 auto; height: 84.1%; } .h-842 { flex: 0 0 auto; height: 84.2%; } .h-843 { flex: 0 0 auto; height: 84.3%; } .h-844 { flex: 0 0 auto; height: 84.4%; } .h-845 { flex: 0 0 auto; height: 84.5%; }
.h-846 { flex: 0 0 auto; height: 84.6%; } .h-847 { flex: 0 0 auto; height: 84.7%; } .h-848 { flex: 0 0 auto; height: 84.8%; } .h-849 { flex: 0 0 auto; height: 84.9%; } .h-850 { flex: 0 0 auto; height: 85.0%; }
.h-851 { flex: 0 0 auto; height: 85.1%; } .h-852 { flex: 0 0 auto; height: 85.2%; } .h-853 { flex: 0 0 auto; height: 85.3%; } .h-854 { flex: 0 0 auto; height: 85.4%; } .h-855 { flex: 0 0 auto; height: 85.5%; }
.h-856 { flex: 0 0 auto; height: 85.6%; } .h-857 { flex: 0 0 auto; height: 85.7%; } .h-858 { flex: 0 0 auto; height: 85.8%; } .h-859 { flex: 0 0 auto; height: 85.9%; } .h-860 { flex: 0 0 auto; height: 86.0%; }
.h-861 { flex: 0 0 auto; height: 86.1%; } .h-862 { flex: 0 0 auto; height: 86.2%; } .h-863 { flex: 0 0 auto; height: 86.3%; } .h-864 { flex: 0 0 auto; height: 86.4%; } .h-865 { flex: 0 0 auto; height: 86.5%; }
.h-866 { flex: 0 0 auto; height: 86.6%; } .h-867 { flex: 0 0 auto; height: 86.7%; } .h-868 { flex: 0 0 auto; height: 86.8%; } .h-869 { flex: 0 0 auto; height: 86.9%; } .h-870 { flex: 0 0 auto; height: 87.0%; }
.h-871 { flex: 0 0 auto; height: 87.1%; } .h-872 { flex: 0 0 auto; height: 87.2%; } .h-873 { flex: 0 0 auto; height: 87.3%; } .h-874 { flex: 0 0 auto; height: 87.4%; } .h-875 { flex: 0 0 auto; height: 87.5%; }
.h-876 { flex: 0 0 auto; height: 87.6%; } .h-877 { flex: 0 0 auto; height: 87.7%; } .h-878 { flex: 0 0 auto; height: 87.8%; } .h-879 { flex: 0 0 auto; height: 87.9%; } .h-880 { flex: 0 0 auto; height: 88.0%; }
.h-881 { flex: 0 0 auto; height: 88.1%; } .h-882 { flex: 0 0 auto; height: 88.2%; } .h-883 { flex: 0 0 auto; height: 88.3%; } .h-884 { flex: 0 0 auto; height: 88.4%; } .h-885 { flex: 0 0 auto; height: 88.5%; }
.h-886 { flex: 0 0 auto; height: 88.6%; } .h-887 { flex: 0 0 auto; height: 88.7%; } .h-888 { flex: 0 0 auto; height: 88.8%; } .h-889 { flex: 0 0 auto; height: 88.9%; } .h-890 { flex: 0 0 auto; height: 89.0%; }
.h-891 { flex: 0 0 auto; height: 89.1%; } .h-892 { flex: 0 0 auto; height: 89.2%; } .h-893 { flex: 0 0 auto; height: 89.3%; } .h-894 { flex: 0 0 auto; height: 89.4%; } .h-895 { flex: 0 0 auto; height: 89.5%; }
.h-896 { flex: 0 0 auto; height: 89.6%; } .h-897 { flex: 0 0 auto; height: 89.7%; } .h-898 { flex: 0 0 auto; height: 89.8%; } .h-899 { flex: 0 0 auto; height: 89.9%; } .h-900 { flex: 0 0 auto; height: 90.0%; }
.h-901 { flex: 0 0 auto; height: 90.1%; } .h-902 { flex: 0 0 auto; height: 90.2%; } .h-903 { flex: 0 0 auto; height: 90.3%; } .h-904 { flex: 0 0 auto; height: 90.4%; } .h-905 { flex: 0 0 auto; height: 90.5%; }
.h-906 { flex: 0 0 auto; height: 90.6%; } .h-907 { flex: 0 0 auto; height: 90.7%; } .h-908 { flex: 0 0 auto; height: 90.8%; } .h-909 { flex: 0 0 auto; height: 90.9%; } .h-910 { flex: 0 0 auto; height: 91.0%; }
.h-911 { flex: 0 0 auto; height: 91.1%; } .h-912 { flex: 0 0 auto; height: 91.2%; } .h-913 { flex: 0 0 auto; height: 91.3%; } .h-914 { flex: 0 0 auto; height: 91.4%; } .h-915 { flex: 0 0 auto; height: 91.5%; }
.h-916 { flex: 0 0 auto; height: 91.6%; } .h-917 { flex: 0 0 auto; height: 91.7%; } .h-918 { flex: 0 0 auto; height: 91.8%; } .h-919 { flex: 0 0 auto; height: 91.9%; } .h-920 { flex: 0 0 auto; height: 92.0%; }
.h-921 { flex: 0 0 auto; height: 92.1%; } .h-922 { flex: 0 0 auto; height: 92.2%; } .h-923 { flex: 0 0 auto; height: 92.3%; } .h-924 { flex: 0 0 auto; height: 92.4%; } .h-925 { flex: 0 0 auto; height: 92.5%; }
.h-926 { flex: 0 0 auto; height: 92.6%; } .h-927 { flex: 0 0 auto; height: 92.7%; } .h-928 { flex: 0 0 auto; height: 92.8%; } .h-929 { flex: 0 0 auto; height: 92.9%; } .h-930 { flex: 0 0 auto; height: 93.0%; }
.h-931 { flex: 0 0 auto; height: 93.1%; } .h-932 { flex: 0 0 auto; height: 93.2%; } .h-933 { flex: 0 0 auto; height: 93.3%; } .h-934 { flex: 0 0 auto; height: 93.4%; } .h-935 { flex: 0 0 auto; height: 93.5%; }
.h-936 { flex: 0 0 auto; height: 93.6%; } .h-937 { flex: 0 0 auto; height: 93.7%; } .h-938 { flex: 0 0 auto; height: 93.8%; } .h-939 { flex: 0 0 auto; height: 93.9%; } .h-940 { flex: 0 0 auto; height: 94.0%; }
.h-941 { flex: 0 0 auto; height: 94.1%; } .h-942 { flex: 0 0 auto; height: 94.2%; } .h-943 { flex: 0 0 auto; height: 94.3%; } .h-944 { flex: 0 0 auto; height: 94.4%; } .h-945 { flex: 0 0 auto; height: 94.5%; }
.h-946 { flex: 0 0 auto; height: 94.6%; } .h-947 { flex: 0 0 auto; height: 94.7%; } .h-948 { flex: 0 0 auto; height: 94.8%; } .h-949 { flex: 0 0 auto; height: 94.9%; } .h-950 { flex: 0 0 auto; height: 95.0%; }
.h-951 { flex: 0 0 auto; height: 95.1%; } .h-952 { flex: 0 0 auto; height: 95.2%; } .h-953 { flex: 0 0 auto; height: 95.3%; } .h-954 { flex: 0 0 auto; height: 95.4%; } .h-955 { flex: 0 0 auto; height: 95.5%; }
.h-956 { flex: 0 0 auto; height: 95.6%; } .h-957 { flex: 0 0 auto; height: 95.7%; } .h-958 { flex: 0 0 auto; height: 95.8%; } .h-959 { flex: 0 0 auto; height: 95.9%; } .h-960 { flex: 0 0 auto; height: 96.0%; }
.h-961 { flex: 0 0 auto; height: 96.1%; } .h-962 { flex: 0 0 auto; height: 96.2%; } .h-963 { flex: 0 0 auto; height: 96.3%; } .h-964 { flex: 0 0 auto; height: 96.4%; } .h-965 { flex: 0 0 auto; height: 96.5%; }
.h-966 { flex: 0 0 auto; height: 96.6%; } .h-967 { flex: 0 0 auto; height: 96.7%; } .h-968 { flex: 0 0 auto; height: 96.8%; } .h-969 { flex: 0 0 auto; height: 96.9%; } .h-970 { flex: 0 0 auto; height: 97.0%; }
.h-971 { flex: 0 0 auto; height: 97.1%; } .h-972 { flex: 0 0 auto; height: 97.2%; } .h-973 { flex: 0 0 auto; height: 97.3%; } .h-974 { flex: 0 0 auto; height: 97.4%; } .h-975 { flex: 0 0 auto; height: 97.5%; }
.h-976 { flex: 0 0 auto; height: 97.6%; } .h-977 { flex: 0 0 auto; height: 97.7%; } .h-978 { flex: 0 0 auto; height: 97.8%; } .h-979 { flex: 0 0 auto; height: 97.9%; } .h-980 { flex: 0 0 auto; height: 98.0%; }
.h-981 { flex: 0 0 auto; height: 98.1%; } .h-982 { flex: 0 0 auto; height: 98.2%; } .h-983 { flex: 0 0 auto; height: 98.3%; } .h-984 { flex: 0 0 auto; height: 98.4%; } .h-985 { flex: 0 0 auto; height: 98.5%; }
.h-986 { flex: 0 0 auto; height: 98.6%; } .h-987 { flex: 0 0 auto; height: 98.7%; } .h-988 { flex: 0 0 auto; height: 98.8%; } .h-989 { flex: 0 0 auto; height: 98.9%; } .h-990 { flex: 0 0 auto; height: 99.0%; }
.h-991 { flex: 0 0 auto; height: 99.1%; } .h-992 { flex: 0 0 auto; height: 99.2%; } .h-993 { flex: 0 0 auto; height: 99.3%; } .h-994 { flex: 0 0 auto; height: 99.4%; } .h-995 { flex: 0 0 auto; height: 99.5%; }
.h-996 { flex: 0 0 auto; height: 99.6%; } .h-997 { flex: 0 0 auto; height: 99.7%; } .h-998 { flex: 0 0 auto; height: 99.8%; } .h-999 { flex: 0 0 auto; height: 99.9%; } .h-1000 { flex: 0 0 auto; height: 100%; }
.h-auto { height: auto !important; }

.mh-250 { min-height: 25%;}
/*#endregion  height utilities*************************************************/


/*#region Margin and Padding utils*********************************************/

.m-0 { margin: 0 !important; }
.mt-0, .my-0 { margin-top: 0 !important; }
.mr-0, .mx-0 { margin-right: 0 !important; }
.mb-0, .my-0 { margin-bottom: 0 !important; }
.ml-0, .mx-0 { margin-left: 0 !important; }

.m-1 { margin: 0.25rem !important; }
.mt-1, .my-1 { margin-top: 0.25rem !important; }
.mr-1, .mx-1 { margin-right: 0.25rem !important; }
.mb-1, .my-1 { margin-bottom: 0.25rem !important; }
.ml-1, .mx-1 { margin-left: 0.25rem !important; }

.m-2 { margin: 0.5rem !important; }
.mt-2, .my-2 { margin-top: 0.5rem !important; }
.mr-2, .mx-2 { margin-right: 0.5rem !important; }
.mb-2, .my-2 { margin-bottom: 0.5rem !important; }
.ml-2, .mx-2 { margin-left: 0.5rem !important; }

.m-3 { margin: 1rem !important; }
.mt-3, .my-3 { margin-top: 1rem !important; }
.mr-3, .mx-3 { margin-right: 1rem !important; }
.mb-3, .my-3 { margin-bottom: 1rem !important; }
.ml-3, .mx-3 { margin-left: 1rem !important; }

.m-4 { margin: 1.5rem !important; }
.mt-4, .my-4 { margin-top: 1.5rem !important; }
.mr-4, .mx-4 { margin-right: 1.5rem !important; }
.mb-4, .my-4 { margin-bottom: 1.5rem !important; }
.ml-4, .mx-4 { margin-left: 1.5rem !important; }

.m-5 { margin: 3rem !important; }
.mt-5, .my-5 { margin-top: 3rem !important; }
.mr-5, .mx-5 { margin-right: 3rem !important; }
.mb-5, .my-5 { margin-bottom: 3rem !important; }
.ml-5, .mx-5 { margin-left: 3rem !important; }

.m-00 { margin: 0.0rem !important; }
.m-01 { margin: 0.1rem !important; } .m-02 { margin: 0.2rem !important; } .m-03 { margin: 0.3rem !important; } .m-04 { margin: 0.4rem !important; } .m-05 { margin: 0.5rem !important; }
.m-06 { margin: 0.6rem !important; } .m-07 { margin: 0.7rem !important; } .m-08 { margin: 0.8rem !important; } .m-09 { margin: 0.9rem !important; } .m-10 { margin: 1.0rem !important; }
.m-11 { margin: 1.1rem !important; } .m-12 { margin: 1.2rem !important; } .m-13 { margin: 1.3rem !important; } .m-14 { margin: 1.4rem !important; } .m-15 { margin: 1.5rem !important; }
.m-16 { margin: 1.6rem !important; } .m-17 { margin: 1.7rem !important; } .m-18 { margin: 1.8rem !important; } .m-19 { margin: 1.9rem !important; } .m-20 { margin: 2.0rem !important; }
.m-21 { margin: 2.1rem !important; } .m-22 { margin: 2.2rem !important; } .m-23 { margin: 2.3rem !important; } .m-24 { margin: 2.4rem !important; } .m-25 { margin: 2.5rem !important; }
.m-26 { margin: 2.6rem !important; } .m-27 { margin: 2.7rem !important; } .m-28 { margin: 2.8rem !important; } .m-29 { margin: 2.9rem !important; } .m-30 { margin: 3.0rem !important; }
.m-31 { margin: 3.1rem !important; } .m-32 { margin: 3.2rem !important; } .m-33 { margin: 3.3rem !important; } .m-34 { margin: 3.4rem !important; } .m-35 { margin: 3.5rem !important; }
.m-36 { margin: 3.6rem !important; } .m-37 { margin: 3.7rem !important; } .m-38 { margin: 3.8rem !important; } .m-39 { margin: 3.9rem !important; } .m-40 { margin: 4.0rem !important; }
.m-41 { margin: 4.1rem !important; } .m-42 { margin: 4.2rem !important; } .m-43 { margin: 4.3rem !important; } .m-44 { margin: 4.4rem !important; } .m-45 { margin: 4.5rem !important; }
.m-46 { margin: 4.6rem !important; } .m-47 { margin: 4.7rem !important; } .m-48 { margin: 4.8rem !important; } .m-49 { margin: 4.9rem !important; } .m-50 { margin: 5.0rem !important; }

.ms-00 { margin-left: 0.0rem !important; }
.ms-01 { margin-left: 0.1rem !important; } .ms-02 { margin-left: 0.2rem !important; } .ms-03 { margin-left: 0.3rem !important; } .ms-04 { margin-left: 0.4rem !important; } .ms-05 { margin-left: 0.5rem !important; }
.ms-06 { margin-left: 0.6rem !important; } .ms-07 { margin-left: 0.7rem !important; } .ms-08 { margin-left: 0.8rem !important; } .ms-09 { margin-left: 0.9rem !important; } .ms-10 { margin-left: 1.0rem !important; }
.ms-11 { margin-left: 1.1rem !important; } .ms-12 { margin-left: 1.2rem !important; } .ms-13 { margin-left: 1.3rem !important; } .ms-14 { margin-left: 1.4rem !important; } .ms-15 { margin-left: 1.5rem !important; }
.ms-16 { margin-left: 1.6rem !important; } .ms-17 { margin-left: 1.7rem !important; } .ms-18 { margin-left: 1.8rem !important; } .ms-19 { margin-left: 1.9rem !important; } .ms-20 { margin-left: 2.0rem !important; }
.ms-21 { margin-left: 2.1rem !important; } .ms-22 { margin-left: 2.2rem !important; } .ms-23 { margin-left: 2.3rem !important; } .ms-24 { margin-left: 2.4rem !important; } .ms-25 { margin-left: 2.5rem !important; }
.ms-26 { margin-left: 2.6rem !important; } .ms-27 { margin-left: 2.7rem !important; } .ms-28 { margin-left: 2.8rem !important; } .ms-29 { margin-left: 2.9rem !important; } .ms-30 { margin-left: 3.0rem !important; }
.ms-31 { margin-left: 3.1rem !important; } .ms-32 { margin-left: 3.2rem !important; } .ms-33 { margin-left: 3.3rem !important; } .ms-34 { margin-left: 3.4rem !important; } .ms-35 { margin-left: 3.5rem !important; }
.ms-36 { margin-left: 3.6rem !important; } .ms-37 { margin-left: 3.7rem !important; } .ms-38 { margin-left: 3.8rem !important; } .ms-39 { margin-left: 3.9rem !important; } .ms-40 { margin-left: 4.0rem !important; }
.ms-41 { margin-left: 4.1rem !important; } .ms-42 { margin-left: 4.2rem !important; } .ms-43 { margin-left: 4.3rem !important; } .ms-44 { margin-left: 4.4rem !important; } .ms-45 { margin-left: 4.5rem !important; }
.ms-46 { margin-left: 4.6rem !important; } .ms-47 { margin-left: 4.7rem !important; } .ms-48 { margin-left: 4.8rem !important; } .ms-49 { margin-left: 4.9rem !important; } .ms-50 { margin-left: 5.0rem !important; }

.me-00 { margin-right: 0.0rem !important; }
.me-01 { margin-right: 0.1rem !important; } .me-02 { margin-right: 0.2rem !important; } .me-03 { margin-right: 0.3rem !important; } .me-04 { margin-right: 0.4rem !important; } .me-05 { margin-right: 0.5rem !important; }
.me-06 { margin-right: 0.6rem !important; } .me-07 { margin-right: 0.7rem !important; } .me-08 { margin-right: 0.8rem !important; } .me-09 { margin-right: 0.9rem !important; } .me-10 { margin-right: 1.0rem !important; }
.me-11 { margin-right: 1.1rem !important; } .me-12 { margin-right: 1.2rem !important; } .me-13 { margin-right: 1.3rem !important; } .me-14 { margin-right: 1.4rem !important; } .me-15 { margin-right: 1.5rem !important; }
.me-16 { margin-right: 1.6rem !important; } .me-17 { margin-right: 1.7rem !important; } .me-18 { margin-right: 1.8rem !important; } .me-19 { margin-right: 1.9rem !important; } .me-20 { margin-right: 2.0rem !important; }
.me-21 { margin-right: 2.1rem !important; } .me-22 { margin-right: 2.2rem !important; } .me-23 { margin-right: 2.3rem !important; } .me-24 { margin-right: 2.4rem !important; } .me-25 { margin-right: 2.5rem !important; }
.me-26 { margin-right: 2.6rem !important; } .me-27 { margin-right: 2.7rem !important; } .me-28 { margin-right: 2.8rem !important; } .me-29 { margin-right: 2.9rem !important; } .me-30 { margin-right: 3.0rem !important; }
.me-31 { margin-right: 3.1rem !important; } .me-32 { margin-right: 3.2rem !important; } .me-33 { margin-right: 3.3rem !important; } .me-34 { margin-right: 3.4rem !important; } .me-35 { margin-right: 3.5rem !important; }
.me-36 { margin-right: 3.6rem !important; } .me-37 { margin-right: 3.7rem !important; } .me-38 { margin-right: 3.8rem !important; } .me-39 { margin-right: 3.9rem !important; } .me-40 { margin-right: 4.0rem !important; }
.me-41 { margin-right: 4.1rem !important; } .me-42 { margin-right: 4.2rem !important; } .me-43 { margin-right: 4.3rem !important; } .me-44 { margin-right: 4.4rem !important; } .me-45 { margin-right: 4.5rem !important; }
.me-46 { margin-right: 4.6rem !important; } .me-47 { margin-right: 4.7rem !important; } .me-48 { margin-right: 4.8rem !important; } .me-49 { margin-right: 4.9rem !important; } .me-50 { margin-right: 5.0rem !important; }

.mt-00 { margin-top: 0.0rem !important; }
.mt-01 { margin-top: 0.1rem !important; } .mt-02 { margin-top: 0.2rem !important; } .mt-03 { margin-top: 0.3rem !important; } .mt-04 { margin-top: 0.4rem !important; } .mt-05 { margin-top: 0.5rem !important; }
.mt-06 { margin-top: 0.6rem !important; } .mt-07 { margin-top: 0.7rem !important; } .mt-08 { margin-top: 0.8rem !important; } .mt-09 { margin-top: 0.9rem !important; } .mt-10 { margin-top: 1.0rem !important; }
.mt-11 { margin-top: 1.1rem !important; } .mt-12 { margin-top: 1.2rem !important; } .mt-13 { margin-top: 1.3rem !important; } .mt-14 { margin-top: 1.4rem !important; } .mt-15 { margin-top: 1.5rem !important; }
.mt-16 { margin-top: 1.6rem !important; } .mt-17 { margin-top: 1.7rem !important; } .mt-18 { margin-top: 1.8rem !important; } .mt-19 { margin-top: 1.9rem !important; } .mt-20 { margin-top: 2.0rem !important; }
.mt-21 { margin-top: 2.1rem !important; } .mt-22 { margin-top: 2.2rem !important; } .mt-23 { margin-top: 2.3rem !important; } .mt-24 { margin-top: 2.4rem !important; } .mt-25 { margin-top: 2.5rem !important; }
.mt-26 { margin-top: 2.6rem !important; } .mt-27 { margin-top: 2.7rem !important; } .mt-28 { margin-top: 2.8rem !important; } .mt-29 { margin-top: 2.9rem !important; } .mt-30 { margin-top: 3.0rem !important; }
.mt-31 { margin-top: 3.1rem !important; } .mt-32 { margin-top: 3.2rem !important; } .mt-33 { margin-top: 3.3rem !important; } .mt-34 { margin-top: 3.4rem !important; } .mt-35 { margin-top: 3.5rem !important; }
.mt-36 { margin-top: 3.6rem !important; } .mt-37 { margin-top: 3.7rem !important; } .mt-38 { margin-top: 3.8rem !important; } .mt-39 { margin-top: 3.9rem !important; } .mt-40 { margin-top: 4.0rem !important; }
.mt-41 { margin-top: 4.1rem !important; } .mt-42 { margin-top: 4.2rem !important; } .mt-43 { margin-top: 4.3rem !important; } .mt-44 { margin-top: 4.4rem !important; } .mt-45 { margin-top: 4.5rem !important; }
.mt-46 { margin-top: 4.6rem !important; } .mt-47 { margin-top: 4.7rem !important; } .mt-48 { margin-top: 4.8rem !important; } .mt-49 { margin-top: 4.9rem !important; } .mt-50 { margin-top: 5.0rem !important; }

.mb-00 { margin-bottom: 0.0rem !important; }
.mb-01 { margin-bottom: 0.1rem !important; } .mb-02 { margin-bottom: 0.2rem !important; } .mb-03 { margin-bottom: 0.3rem !important; } .mb-04 { margin-bottom: 0.4rem !important; } .mb-05 { margin-bottom: 0.5rem !important; }
.mb-06 { margin-bottom: 0.6rem !important; } .mb-07 { margin-bottom: 0.7rem !important; } .mb-08 { margin-bottom: 0.8rem !important; } .mb-09 { margin-bottom: 0.9rem !important; } .mb-10 { margin-bottom: 1.0rem !important; }
.mb-11 { margin-bottom: 1.1rem !important; } .mb-12 { margin-bottom: 1.2rem !important; } .mb-13 { margin-bottom: 1.3rem !important; } .mb-14 { margin-bottom: 1.4rem !important; } .mb-15 { margin-bottom: 1.5rem !important; }
.mb-16 { margin-bottom: 1.6rem !important; } .mb-17 { margin-bottom: 1.7rem !important; } .mb-18 { margin-bottom: 1.8rem !important; } .mb-19 { margin-bottom: 1.9rem !important; } .mb-20 { margin-bottom: 2.0rem !important; }
.mb-21 { margin-bottom: 2.1rem !important; } .mb-22 { margin-bottom: 2.2rem !important; } .mb-23 { margin-bottom: 2.3rem !important; } .mb-24 { margin-bottom: 2.4rem !important; } .mb-25 { margin-bottom: 2.5rem !important; }
.mb-26 { margin-bottom: 2.6rem !important; } .mb-27 { margin-bottom: 2.7rem !important; } .mb-28 { margin-bottom: 2.8rem !important; } .mb-29 { margin-bottom: 2.9rem !important; } .mb-30 { margin-bottom: 3.0rem !important; }
.mb-31 { margin-bottom: 3.1rem !important; } .mb-32 { margin-bottom: 3.2rem !important; } .mb-33 { margin-bottom: 3.3rem !important; } .mb-34 { margin-bottom: 3.4rem !important; } .mb-35 { margin-bottom: 3.5rem !important; }
.mb-36 { margin-bottom: 3.6rem !important; } .mb-37 { margin-bottom: 3.7rem !important; } .mb-38 { margin-bottom: 3.8rem !important; } .mb-39 { margin-bottom: 3.9rem !important; } .mb-40 { margin-bottom: 4.0rem !important; }
.mb-41 { margin-bottom: 4.1rem !important; } .mb-42 { margin-bottom: 4.2rem !important; } .mb-43 { margin-bottom: 4.3rem !important; } .mb-44 { margin-bottom: 4.4rem !important; } .mb-45 { margin-bottom: 4.5rem !important; }
.mb-46 { margin-bottom: 4.6rem !important; } .mb-47 { margin-bottom: 4.7rem !important; } .mb-48 { margin-bottom: 4.8rem !important; } .mb-49 { margin-bottom: 4.9rem !important; } .mb-50 { margin-bottom: 5.0rem !important; }

.mx-00 { margin-left: 0.0rem !important;  margin-right: 0.0rem !important; }
.mx-01 { margin-left: 0.1rem !important;  margin-right: 0.1rem !important; } .mx-02 { margin-left: 0.2rem !important;  margin-right: 0.2rem !important; }
.mx-03 { margin-left: 0.3rem !important;  margin-right: 0.3rem !important; } .mx-04 { margin-left: 0.4rem !important;  margin-right: 0.4rem !important; }
.mx-05 { margin-left: 0.5rem !important;  margin-right: 0.5rem !important; } .mx-06 { margin-left: 0.6rem !important;  margin-right: 0.6rem !important; }
.mx-07 { margin-left: 0.7rem !important;  margin-right: 0.7rem !important; } .mx-08 { margin-left: 0.8rem !important;  margin-right: 0.8rem !important; }
.mx-09 { margin-left: 0.9rem !important;  margin-right: 0.9rem !important; } .mx-10 { margin-left: 1.0rem !important;  margin-right: 1.0rem !important; }
.mx-11 { margin-left: 1.1rem !important;  margin-right: 1.1rem !important; } .mx-12 { margin-left: 1.2rem !important;  margin-right: 1.2rem !important; }
.mx-13 { margin-left: 1.3rem !important;  margin-right: 1.3rem !important; } .mx-14 { margin-left: 1.4rem !important;  margin-right: 1.4rem !important; }
.mx-15 { margin-left: 1.5rem !important;  margin-right: 1.5rem !important; } .mx-16 { margin-left: 1.6rem !important;  margin-right: 1.6rem !important; }
.mx-17 { margin-left: 1.7rem !important;  margin-right: 1.7rem !important; } .mx-18 { margin-left: 1.8rem !important;  margin-right: 1.8rem !important; }
.mx-19 { margin-left: 1.9rem !important;  margin-right: 1.9rem !important; } .mx-20 { margin-left: 2.0rem !important;  margin-right: 2.0rem !important; }
.mx-21 { margin-left: 2.1rem !important;  margin-right: 2.1rem !important; } .mx-22 { margin-left: 2.2rem !important;  margin-right: 2.2rem !important; }
.mx-23 { margin-left: 2.3rem !important;  margin-right: 2.3rem !important; } .mx-24 { margin-left: 2.4rem !important;  margin-right: 2.4rem !important; }
.mx-25 { margin-left: 2.5rem !important;  margin-right: 2.5rem !important; } .mx-26 { margin-left: 2.6rem !important;  margin-right: 2.6rem !important; }
.mx-27 { margin-left: 2.7rem !important;  margin-right: 2.7rem !important; } .mx-28 { margin-left: 2.8rem !important;  margin-right: 2.8rem !important; }
.mx-29 { margin-left: 2.9rem !important;  margin-right: 2.9rem !important; } .mx-30 { margin-left: 3.0rem !important;  margin-right: 3.0rem !important; }
.mx-31 { margin-left: 3.1rem !important;  margin-right: 3.1rem !important; } .mx-32 { margin-left: 3.2rem !important;  margin-right: 3.2rem !important; }
.mx-33 { margin-left: 3.3rem !important;  margin-right: 3.3rem !important; } .mx-34 { margin-left: 3.4rem !important;  margin-right: 3.4rem !important; }
.mx-35 { margin-left: 3.5rem !important;  margin-right: 3.5rem !important; } .mx-36 { margin-left: 3.6rem !important;  margin-right: 3.6rem !important; }
.mx-37 { margin-left: 3.7rem !important;  margin-right: 3.7rem !important; } .mx-38 { margin-left: 3.8rem !important;  margin-right: 3.8rem !important; }
.mx-39 { margin-left: 3.9rem !important;  margin-right: 3.9rem !important; } .mx-40 { margin-left: 4.0rem !important;  margin-right: 4.0rem !important; }
.mx-41 { margin-left: 4.1rem !important;  margin-right: 4.1rem !important; } .mx-42 { margin-left: 4.2rem !important;  margin-right: 4.2rem !important; }
.mx-43 { margin-left: 4.3rem !important;  margin-right: 4.3rem !important; } .mx-44 { margin-left: 4.4rem !important;  margin-right: 4.4rem !important; }
.mx-45 { margin-left: 4.5rem !important;  margin-right: 4.5rem !important; } .mx-46 { margin-left: 4.6rem !important;  margin-right: 4.6rem !important; }
.mx-47 { margin-left: 4.7rem !important;  margin-right: 4.7rem !important; } .mx-48 { margin-left: 4.8rem !important;  margin-right: 4.8rem !important; }
.mx-49 { margin-left: 4.9rem !important;  margin-right: 4.9rem !important; } .mx-50 { margin-left: 5.0rem !important;  margin-right: 5.0rem !important; }

.my-00 { margin-top: 0.0rem !important;  margin-bottom: 0.0rem !important; }
.my-01 { margin-top: 0.1rem !important;  margin-bottom: 0.1rem !important; } .my-02 { margin-top: 0.2rem !important;  margin-bottom: 0.2rem !important; }
.my-03 { margin-top: 0.3rem !important;  margin-bottom: 0.3rem !important; } .my-04 { margin-top: 0.4rem !important;  margin-bottom: 0.4rem !important; }
.my-05 { margin-top: 0.5rem !important;  margin-bottom: 0.5rem !important; } .my-06 { margin-top: 0.6rem !important;  margin-bottom: 0.6rem !important; }
.my-07 { margin-top: 0.7rem !important;  margin-bottom: 0.7rem !important; } .my-08 { margin-top: 0.8rem !important;  margin-bottom: 0.8rem !important; }
.my-09 { margin-top: 0.9rem !important;  margin-bottom: 0.9rem !important; } .my-10 { margin-top: 1.0rem !important;  margin-bottom: 1.0rem !important; }
.my-11 { margin-top: 1.1rem !important;  margin-bottom: 1.1rem !important; } .my-12 { margin-top: 1.2rem !important;  margin-bottom: 1.2rem !important; }
.my-13 { margin-top: 1.3rem !important;  margin-bottom: 1.3rem !important; } .my-14 { margin-top: 1.4rem !important;  margin-bottom: 1.4rem !important; }
.my-15 { margin-top: 1.5rem !important;  margin-bottom: 1.5rem !important; } .my-16 { margin-top: 1.6rem !important;  margin-bottom: 1.6rem !important; }
.my-17 { margin-top: 1.7rem !important;  margin-bottom: 1.7rem !important; } .my-18 { margin-top: 1.8rem !important;  margin-bottom: 1.8rem !important; }
.my-19 { margin-top: 1.9rem !important;  margin-bottom: 1.9rem !important; } .my-20 { margin-top: 2.0rem !important;  margin-bottom: 2.0rem !important; }
.my-21 { margin-top: 2.1rem !important;  margin-bottom: 2.1rem !important; } .my-22 { margin-top: 2.2rem !important;  margin-bottom: 2.2rem !important; }
.my-23 { margin-top: 2.3rem !important;  margin-bottom: 2.3rem !important; } .my-24 { margin-top: 2.4rem !important;  margin-bottom: 2.4rem !important; }
.my-25 { margin-top: 2.5rem !important;  margin-bottom: 2.5rem !important; } .my-26 { margin-top: 2.6rem !important;  margin-bottom: 2.6rem !important; }
.my-27 { margin-top: 2.7rem !important;  margin-bottom: 2.7rem !important; } .my-28 { margin-top: 2.8rem !important;  margin-bottom: 2.8rem !important; }
.my-29 { margin-top: 2.9rem !important;  margin-bottom: 2.9rem !important; } .my-30 { margin-top: 3.0rem !important;  margin-bottom: 3.0rem !important; }
.my-31 { margin-top: 3.1rem !important;  margin-bottom: 3.1rem !important; } .my-32 { margin-top: 3.2rem !important;  margin-bottom: 3.2rem !important; }
.my-33 { margin-top: 3.3rem !important;  margin-bottom: 3.3rem !important; } .my-34 { margin-top: 3.4rem !important;  margin-bottom: 3.4rem !important; }
.my-35 { margin-top: 3.5rem !important;  margin-bottom: 3.5rem !important; } .my-36 { margin-top: 3.6rem !important;  margin-bottom: 3.6rem !important; }
.my-37 { margin-top: 3.7rem !important;  margin-bottom: 3.7rem !important; } .my-38 { margin-top: 3.8rem !important;  margin-bottom: 3.8rem !important; }
.my-39 { margin-top: 3.9rem !important;  margin-bottom: 3.9rem !important; } .my-40 { margin-top: 4.0rem !important;  margin-bottom: 4.0rem !important; }
.my-41 { margin-top: 4.1rem !important;  margin-bottom: 4.1rem !important; } .my-42 { margin-top: 4.2rem !important;  margin-bottom: 4.2rem !important; }
.my-43 { margin-top: 4.3rem !important;  margin-bottom: 4.3rem !important; } .my-44 { margin-top: 4.4rem !important;  margin-bottom: 4.4rem !important; }
.my-45 { margin-top: 4.5rem !important;  margin-bottom: 4.5rem !important; } .my-46 { margin-top: 4.6rem !important;  margin-bottom: 4.6rem !important; }
.my-47 { margin-top: 4.7rem !important;  margin-bottom: 4.7rem !important; } .my-48 { margin-top: 4.8rem !important;  margin-bottom: 4.8rem !important; }
.my-49 { margin-top: 4.9rem !important;  margin-bottom: 4.9rem !important; } .my-50 { margin-top: 5.0rem !important;  margin-bottom: 5.0rem !important; }


.m-auto { margin: auto !important; }
.mt-auto, .my-auto { margin-top: auto !important; }
.mr-auto, .mx-auto { margin-right: auto !important; }
.mb-auto, .my-auto { margin-bottom: auto !important; }
.ml-auto, .mx-auto { margin-left: auto !important; }


.p-0 { padding: 0 !important; }
.pt-0, .py-0 { padding-top: 0 !important; }
.pr-0, .px-0 { padding-right: 0 !important; }
.pb-0, .py-0 { padding-bottom: 0 !important; }
.pl-0, .px-0 { padding-left: 0 !important; }

.p-1 { padding: 0.25rem !important; }
.pt-1, .py-1 { padding-top: 0.25rem !important; }
.pr-1, .px-1 { padding-right: 0.25rem !important; }
.pb-1, .py-1 { padding-bottom: 0.25rem !important; }
.pl-1, .px-1 { padding-left: 0.25rem !important; }

.p-2 { padding: 0.5rem !important; }
.pt-2, .py-2 { padding-top: 0.5rem !important; }
.pr-2, .px-2 { padding-right: 0.5rem !important; }
.pb-2, .py-2 { padding-bottom: 0.5rem !important; }
.pl-2, .px-2 { padding-left: 0.5rem !important; }

.p-3 { padding: 1rem !important; }
.pt-3, .py-3 { padding-top: 1rem !important; }
.pr-3, .px-3 { padding-right: 1rem !important; }
.pb-3, .py-3 { padding-bottom: 1rem !important; }
.pl-3, .px-3 { padding-left: 1rem !important; }

.p-4 { padding: 1.5rem !important; }
.pt-4, .py-4 { padding-top: 1.5rem !important; }
.pr-4, .px-4 { padding-right: 1.5rem !important; }
.pb-4, .py-4 { padding-bottom: 1.5rem !important; }
.pl-4, .px-4 { padding-left: 1.5rem !important; }

.p-5 { padding: 3rem !important; }
.pt-5, .py-5 { padding-top: 3rem !important; }
.pr-5, .px-5 { padding-right: 3rem !important; }
.pb-5, .py-5 { padding-bottom: 3rem !important; }
.pl-5, .px-5 { padding-left: 3rem !important; }

.p-00 { padding: 0.0rem !important; }
.p-01 { padding: 0.1rem !important; } .p-02 { padding: 0.2rem !important; } .p-03 { padding: 0.3rem !important; } .p-04 { padding: 0.4rem !important; } .p-05 { padding: 0.5rem !important; }
.p-06 { padding: 0.6rem !important; } .p-07 { padding: 0.7rem !important; } .p-08 { padding: 0.8rem !important; } .p-09 { padding: 0.9rem !important; } .p-10 { padding: 1.0rem !important; }
.p-11 { padding: 1.1rem !important; } .p-12 { padding: 1.2rem !important; } .p-13 { padding: 1.3rem !important; } .p-14 { padding: 1.4rem !important; } .p-15 { padding: 1.5rem !important; }
.p-16 { padding: 1.6rem !important; } .p-17 { padding: 1.7rem !important; } .p-18 { padding: 1.8rem !important; } .p-19 { padding: 1.9rem !important; } .p-20 { padding: 2.0rem !important; }
.p-21 { padding: 2.1rem !important; } .p-22 { padding: 2.2rem !important; } .p-23 { padding: 2.3rem !important; } .p-24 { padding: 2.4rem !important; } .p-25 { padding: 2.5rem !important; }
.p-26 { padding: 2.6rem !important; } .p-27 { padding: 2.7rem !important; } .p-28 { padding: 2.8rem !important; } .p-29 { padding: 2.9rem !important; } .p-30 { padding: 3.0rem !important; }
.p-31 { padding: 3.1rem !important; } .p-32 { padding: 3.2rem !important; } .p-33 { padding: 3.3rem !important; } .p-34 { padding: 3.4rem !important; } .p-35 { padding: 3.5rem !important; }
.p-36 { padding: 3.6rem !important; } .p-37 { padding: 3.7rem !important; } .p-38 { padding: 3.8rem !important; } .p-39 { padding: 3.9rem !important; } .p-40 { padding: 4.0rem !important; }
.p-41 { padding: 4.1rem !important; } .p-42 { padding: 4.2rem !important; } .p-43 { padding: 4.3rem !important; } .p-44 { padding: 4.4rem !important; } .p-45 { padding: 4.5rem !important; }
.p-46 { padding: 4.6rem !important; } .p-47 { padding: 4.7rem !important; } .p-48 { padding: 4.8rem !important; } .p-49 { padding: 4.9rem !important; } .p-50 { padding: 5.0rem !important; }

.ps-00 { padding-left: 0.0rem !important; }
.ps-01 { padding-left: 0.1rem !important; } .ps-02 { padding-left: 0.2rem !important; } .ps-03 { padding-left: 0.3rem !important; } .ps-04 { padding-left: 0.4rem !important; } .ps-05 { padding-left: 0.5rem !important; }
.ps-06 { padding-left: 0.6rem !important; } .ps-07 { padding-left: 0.7rem !important; } .ps-08 { padding-left: 0.8rem !important; } .ps-09 { padding-left: 0.9rem !important; } .ps-10 { padding-left: 1.0rem !important; }
.ps-11 { padding-left: 1.1rem !important; } .ps-12 { padding-left: 1.2rem !important; } .ps-13 { padding-left: 1.3rem !important; } .ps-14 { padding-left: 1.4rem !important; } .ps-15 { padding-left: 1.5rem !important; }
.ps-16 { padding-left: 1.6rem !important; } .ps-17 { padding-left: 1.7rem !important; } .ps-18 { padding-left: 1.8rem !important; } .ps-19 { padding-left: 1.9rem !important; } .ps-20 { padding-left: 2.0rem !important; }
.ps-21 { padding-left: 2.1rem !important; } .ps-22 { padding-left: 2.2rem !important; } .ps-23 { padding-left: 2.3rem !important; } .ps-24 { padding-left: 2.4rem !important; } .ps-25 { padding-left: 2.5rem !important; }
.ps-26 { padding-left: 2.6rem !important; } .ps-27 { padding-left: 2.7rem !important; } .ps-28 { padding-left: 2.8rem !important; } .ps-29 { padding-left: 2.9rem !important; } .ps-30 { padding-left: 3.0rem !important; }
.ps-31 { padding-left: 3.1rem !important; } .ps-32 { padding-left: 3.2rem !important; } .ps-33 { padding-left: 3.3rem !important; } .ps-34 { padding-left: 3.4rem !important; } .ps-35 { padding-left: 3.5rem !important; }
.ps-36 { padding-left: 3.6rem !important; } .ps-37 { padding-left: 3.7rem !important; } .ps-38 { padding-left: 3.8rem !important; } .ps-39 { padding-left: 3.9rem !important; } .ps-40 { padding-left: 4.0rem !important; }
.ps-41 { padding-left: 4.1rem !important; } .ps-42 { padding-left: 4.2rem !important; } .ps-43 { padding-left: 4.3rem !important; } .ps-44 { padding-left: 4.4rem !important; } .ps-45 { padding-left: 4.5rem !important; }
.ps-46 { padding-left: 4.6rem !important; } .ps-47 { padding-left: 4.7rem !important; } .ps-48 { padding-left: 4.8rem !important; } .ps-49 { padding-left: 4.9rem !important; } .ps-50 { padding-left: 5.0rem !important; }

.pe-00 { padding-right: 0.0rem !important; }
.pe-01 { padding-right: 0.1rem !important; } .pe-02 { padding-right: 0.2rem !important; } .pe-03 { padding-right: 0.3rem !important; } .pe-04 { padding-right: 0.4rem !important; } .pe-05 { padding-right: 0.5rem !important; }
.pe-06 { padding-right: 0.6rem !important; } .pe-07 { padding-right: 0.7rem !important; } .pe-08 { padding-right: 0.8rem !important; } .pe-09 { padding-right: 0.9rem !important; } .pe-10 { padding-right: 1.0rem !important; }
.pe-11 { padding-right: 1.1rem !important; } .pe-12 { padding-right: 1.2rem !important; } .pe-13 { padding-right: 1.3rem !important; } .pe-14 { padding-right: 1.4rem !important; } .pe-15 { padding-right: 1.5rem !important; }
.pe-16 { padding-right: 1.6rem !important; } .pe-17 { padding-right: 1.7rem !important; } .pe-18 { padding-right: 1.8rem !important; } .pe-19 { padding-right: 1.9rem !important; } .pe-20 { padding-right: 2.0rem !important; }
.pe-21 { padding-right: 2.1rem !important; } .pe-22 { padding-right: 2.2rem !important; } .pe-23 { padding-right: 2.3rem !important; } .pe-24 { padding-right: 2.4rem !important; } .pe-25 { padding-right: 2.5rem !important; }
.pe-26 { padding-right: 2.6rem !important; } .pe-27 { padding-right: 2.7rem !important; } .pe-28 { padding-right: 2.8rem !important; } .pe-29 { padding-right: 2.9rem !important; } .pe-30 { padding-right: 3.0rem !important; }
.pe-31 { padding-right: 3.1rem !important; } .pe-32 { padding-right: 3.2rem !important; } .pe-33 { padding-right: 3.3rem !important; } .pe-34 { padding-right: 3.4rem !important; } .pe-35 { padding-right: 3.5rem !important; }
.pe-36 { padding-right: 3.6rem !important; } .pe-37 { padding-right: 3.7rem !important; } .pe-38 { padding-right: 3.8rem !important; } .pe-39 { padding-right: 3.9rem !important; } .pe-40 { padding-right: 4.0rem !important; }
.pe-41 { padding-right: 4.1rem !important; } .pe-42 { padding-right: 4.2rem !important; } .pe-43 { padding-right: 4.3rem !important; } .pe-44 { padding-right: 4.4rem !important; } .pe-45 { padding-right: 4.5rem !important; }
.pe-46 { padding-right: 4.6rem !important; } .pe-47 { padding-right: 4.7rem !important; } .pe-48 { padding-right: 4.8rem !important; } .pe-49 { padding-right: 4.9rem !important; } .pe-50 { padding-right: 5.0rem !important; }

.pt-00 { padding-top: 0.0rem !important; }
.pt-01 { padding-top: 0.1rem !important; } .pt-02 { padding-top: 0.2rem !important; } .pt-03 { padding-top: 0.3rem !important; } .pt-04 { padding-top: 0.4rem !important; } .pt-05 { padding-top: 0.5rem !important; }
.pt-06 { padding-top: 0.6rem !important; } .pt-07 { padding-top: 0.7rem !important; } .pt-08 { padding-top: 0.8rem !important; } .pt-09 { padding-top: 0.9rem !important; } .pt-10 { padding-top: 1.0rem !important; }
.pt-11 { padding-top: 1.1rem !important; } .pt-12 { padding-top: 1.2rem !important; } .pt-13 { padding-top: 1.3rem !important; } .pt-14 { padding-top: 1.4rem !important; } .pt-15 { padding-top: 1.5rem !important; }
.pt-16 { padding-top: 1.6rem !important; } .pt-17 { padding-top: 1.7rem !important; } .pt-18 { padding-top: 1.8rem !important; } .pt-19 { padding-top: 1.9rem !important; } .pt-20 { padding-top: 2.0rem !important; }
.pt-21 { padding-top: 2.1rem !important; } .pt-22 { padding-top: 2.2rem !important; } .pt-23 { padding-top: 2.3rem !important; } .pt-24 { padding-top: 2.4rem !important; } .pt-25 { padding-top: 2.5rem !important; }
.pt-26 { padding-top: 2.6rem !important; } .pt-27 { padding-top: 2.7rem !important; } .pt-28 { padding-top: 2.8rem !important; } .pt-29 { padding-top: 2.9rem !important; } .pt-30 { padding-top: 3.0rem !important; }
.pt-31 { padding-top: 3.1rem !important; } .pt-32 { padding-top: 3.2rem !important; } .pt-33 { padding-top: 3.3rem !important; } .pt-34 { padding-top: 3.4rem !important; } .pt-35 { padding-top: 3.5rem !important; }
.pt-36 { padding-top: 3.6rem !important; } .pt-37 { padding-top: 3.7rem !important; } .pt-38 { padding-top: 3.8rem !important; } .pt-39 { padding-top: 3.9rem !important; } .pt-40 { padding-top: 4.0rem !important; }
.pt-41 { padding-top: 4.1rem !important; } .pt-42 { padding-top: 4.2rem !important; } .pt-43 { padding-top: 4.3rem !important; } .pt-44 { padding-top: 4.4rem !important; } .pt-45 { padding-top: 4.5rem !important; }
.pt-46 { padding-top: 4.6rem !important; } .pt-47 { padding-top: 4.7rem !important; } .pt-48 { padding-top: 4.8rem !important; } .pt-49 { padding-top: 4.9rem !important; } .pt-50 { padding-top: 5.0rem !important; }

.pb-00 { padding-bottom: 0.0rem !important; }
.pb-01 { padding-bottom: 0.1rem !important; } .pb-02 { padding-bottom: 0.2rem !important; } .pb-03 { padding-bottom: 0.3rem !important; } .pb-04 { padding-bottom: 0.4rem !important; } .pb-05 { padding-bottom: 0.5rem !important; }
.pb-06 { padding-bottom: 0.6rem !important; } .pb-07 { padding-bottom: 0.7rem !important; } .pb-08 { padding-bottom: 0.8rem !important; } .pb-09 { padding-bottom: 0.9rem !important; } .pb-10 { padding-bottom: 1.0rem !important; }
.pb-11 { padding-bottom: 1.1rem !important; } .pb-12 { padding-bottom: 1.2rem !important; } .pb-13 { padding-bottom: 1.3rem !important; } .pb-14 { padding-bottom: 1.4rem !important; } .pb-15 { padding-bottom: 1.5rem !important; }
.pb-16 { padding-bottom: 1.6rem !important; } .pb-17 { padding-bottom: 1.7rem !important; } .pb-18 { padding-bottom: 1.8rem !important; } .pb-19 { padding-bottom: 1.9rem !important; } .pb-20 { padding-bottom: 2.0rem !important; }
.pb-21 { padding-bottom: 2.1rem !important; } .pb-22 { padding-bottom: 2.2rem !important; } .pb-23 { padding-bottom: 2.3rem !important; } .pb-24 { padding-bottom: 2.4rem !important; } .pb-25 { padding-bottom: 2.5rem !important; }
.pb-26 { padding-bottom: 2.6rem !important; } .pb-27 { padding-bottom: 2.7rem !important; } .pb-28 { padding-bottom: 2.8rem !important; } .pb-29 { padding-bottom: 2.9rem !important; } .pb-30 { padding-bottom: 3.0rem !important; }
.pb-31 { padding-bottom: 3.1rem !important; } .pb-32 { padding-bottom: 3.2rem !important; } .pb-33 { padding-bottom: 3.3rem !important; } .pb-34 { padding-bottom: 3.4rem !important; } .pb-35 { padding-bottom: 3.5rem !important; }
.pb-36 { padding-bottom: 3.6rem !important; } .pb-37 { padding-bottom: 3.7rem !important; } .pb-38 { padding-bottom: 3.8rem !important; } .pb-39 { padding-bottom: 3.9rem !important; } .pb-40 { padding-bottom: 4.0rem !important; }
.pb-41 { padding-bottom: 4.1rem !important; } .pb-42 { padding-bottom: 4.2rem !important; } .pb-43 { padding-bottom: 4.3rem !important; } .pb-44 { padding-bottom: 4.4rem !important; } .pb-45 { padding-bottom: 4.5rem !important; }
.pb-46 { padding-bottom: 4.6rem !important; } .pb-47 { padding-bottom: 4.7rem !important; } .pb-48 { padding-bottom: 4.8rem !important; } .pb-49 { padding-bottom: 4.9rem !important; } .pb-50 { padding-bottom: 5.0rem !important; }

.px-00 { padding-left: 0.0rem !important;  padding-right: 0.0rem !important; }
.px-01 { padding-left: 0.1rem !important;  padding-right: 0.1rem !important; } .px-02 { padding-left: 0.2rem !important;  padding-right: 0.2rem !important; }
.px-03 { padding-left: 0.3rem !important;  padding-right: 0.3rem !important; } .px-04 { padding-left: 0.4rem !important;  padding-right: 0.4rem !important; }
.px-05 { padding-left: 0.5rem !important;  padding-right: 0.5rem !important; } .px-06 { padding-left: 0.6rem !important;  padding-right: 0.6rem !important; }
.px-07 { padding-left: 0.7rem !important;  padding-right: 0.7rem !important; } .px-08 { padding-left: 0.8rem !important;  padding-right: 0.8rem !important; }
.px-09 { padding-left: 0.9rem !important;  padding-right: 0.9rem !important; } .px-10 { padding-left: 1.0rem !important;  padding-right: 1.0rem !important; }
.px-11 { padding-left: 1.1rem !important;  padding-right: 1.1rem !important; } .px-12 { padding-left: 1.2rem !important;  padding-right: 1.2rem !important; }
.px-13 { padding-left: 1.3rem !important;  padding-right: 1.3rem !important; } .px-14 { padding-left: 1.4rem !important;  padding-right: 1.4rem !important; }
.px-15 { padding-left: 1.5rem !important;  padding-right: 1.5rem !important; } .px-16 { padding-left: 1.6rem !important;  padding-right: 1.6rem !important; }
.px-17 { padding-left: 1.7rem !important;  padding-right: 1.7rem !important; } .px-18 { padding-left: 1.8rem !important;  padding-right: 1.8rem !important; }
.px-19 { padding-left: 1.9rem !important;  padding-right: 1.9rem !important; } .px-20 { padding-left: 2.0rem !important;  padding-right: 2.0rem !important; }
.px-21 { padding-left: 2.1rem !important;  padding-right: 2.1rem !important; } .px-22 { padding-left: 2.2rem !important;  padding-right: 2.2rem !important; }
.px-23 { padding-left: 2.3rem !important;  padding-right: 2.3rem !important; } .px-24 { padding-left: 2.4rem !important;  padding-right: 2.4rem !important; }
.px-25 { padding-left: 2.5rem !important;  padding-right: 2.5rem !important; } .px-26 { padding-left: 2.6rem !important;  padding-right: 2.6rem !important; }
.px-27 { padding-left: 2.7rem !important;  padding-right: 2.7rem !important; } .px-28 { padding-left: 2.8rem !important;  padding-right: 2.8rem !important; }
.px-29 { padding-left: 2.9rem !important;  padding-right: 2.9rem !important; } .px-30 { padding-left: 3.0rem !important;  padding-right: 3.0rem !important; }
.px-31 { padding-left: 3.1rem !important;  padding-right: 3.1rem !important; } .px-32 { padding-left: 3.2rem !important;  padding-right: 3.2rem !important; }
.px-33 { padding-left: 3.3rem !important;  padding-right: 3.3rem !important; } .px-34 { padding-left: 3.4rem !important;  padding-right: 3.4rem !important; }
.px-35 { padding-left: 3.5rem !important;  padding-right: 3.5rem !important; } .px-36 { padding-left: 3.6rem !important;  padding-right: 3.6rem !important; }
.px-37 { padding-left: 3.7rem !important;  padding-right: 3.7rem !important; } .px-38 { padding-left: 3.8rem !important;  padding-right: 3.8rem !important; }
.px-39 { padding-left: 3.9rem !important;  padding-right: 3.9rem !important; } .px-40 { padding-left: 4.0rem !important;  padding-right: 4.0rem !important; }
.px-41 { padding-left: 4.1rem !important;  padding-right: 4.1rem !important; } .px-42 { padding-left: 4.2rem !important;  padding-right: 4.2rem !important; }
.px-43 { padding-left: 4.3rem !important;  padding-right: 4.3rem !important; } .px-44 { padding-left: 4.4rem !important;  padding-right: 4.4rem !important; }
.px-45 { padding-left: 4.5rem !important;  padding-right: 4.5rem !important; } .px-46 { padding-left: 4.6rem !important;  padding-right: 4.6rem !important; }
.px-47 { padding-left: 4.7rem !important;  padding-right: 4.7rem !important; } .px-48 { padding-left: 4.8rem !important;  padding-right: 4.8rem !important; }
.px-49 { padding-left: 4.9rem !important;  padding-right: 4.9rem !important; } .px-50 { padding-left: 5.0rem !important;  padding-right: 5.0rem !important; }

.py-00 { padding-top: 0.0rem !important;  padding-bottom: 0.0rem !important; }
.py-01 { padding-top: 0.1rem !important;  padding-bottom: 0.1rem !important; } .py-02 { padding-top: 0.2rem !important;  padding-bottom: 0.2rem !important; }
.py-03 { padding-top: 0.3rem !important;  padding-bottom: 0.3rem !important; } .py-04 { padding-top: 0.4rem !important;  padding-bottom: 0.4rem !important; }
.py-05 { padding-top: 0.5rem !important;  padding-bottom: 0.5rem !important; } .py-06 { padding-top: 0.6rem !important;  padding-bottom: 0.6rem !important; }
.py-07 { padding-top: 0.7rem !important;  padding-bottom: 0.7rem !important; } .py-08 { padding-top: 0.8rem !important;  padding-bottom: 0.8rem !important; }
.py-09 { padding-top: 0.9rem !important;  padding-bottom: 0.9rem !important; } .py-10 { padding-top: 1.0rem !important;  padding-bottom: 1.0rem !important; }
.py-11 { padding-top: 1.1rem !important;  padding-bottom: 1.1rem !important; } .py-12 { padding-top: 1.2rem !important;  padding-bottom: 1.2rem !important; }
.py-13 { padding-top: 1.3rem !important;  padding-bottom: 1.3rem !important; } .py-14 { padding-top: 1.4rem !important;  padding-bottom: 1.4rem !important; }
.py-15 { padding-top: 1.5rem !important;  padding-bottom: 1.5rem !important; } .py-16 { padding-top: 1.6rem !important;  padding-bottom: 1.6rem !important; }
.py-17 { padding-top: 1.7rem !important;  padding-bottom: 1.7rem !important; } .py-18 { padding-top: 1.8rem !important;  padding-bottom: 1.8rem !important; }
.py-19 { padding-top: 1.9rem !important;  padding-bottom: 1.9rem !important; } .py-20 { padding-top: 2.0rem !important;  padding-bottom: 2.0rem !important; }
.py-21 { padding-top: 2.1rem !important;  padding-bottom: 2.1rem !important; } .py-22 { padding-top: 2.2rem !important;  padding-bottom: 2.2rem !important; }
.py-23 { padding-top: 2.3rem !important;  padding-bottom: 2.3rem !important; } .py-24 { padding-top: 2.4rem !important;  padding-bottom: 2.4rem !important; }
.py-25 { padding-top: 2.5rem !important;  padding-bottom: 2.5rem !important; } .py-26 { padding-top: 2.6rem !important;  padding-bottom: 2.6rem !important; }
.py-27 { padding-top: 2.7rem !important;  padding-bottom: 2.7rem !important; } .py-28 { padding-top: 2.8rem !important;  padding-bottom: 2.8rem !important; }
.py-29 { padding-top: 2.9rem !important;  padding-bottom: 2.9rem !important; } .py-30 { padding-top: 3.0rem !important;  padding-bottom: 3.0rem !important; }
.py-31 { padding-top: 3.1rem !important;  padding-bottom: 3.1rem !important; } .py-32 { padding-top: 3.2rem !important;  padding-bottom: 3.2rem !important; }
.py-33 { padding-top: 3.3rem !important;  padding-bottom: 3.3rem !important; } .py-34 { padding-top: 3.4rem !important;  padding-bottom: 3.4rem !important; }
.py-35 { padding-top: 3.5rem !important;  padding-bottom: 3.5rem !important; } .py-36 { padding-top: 3.6rem !important;  padding-bottom: 3.6rem !important; }
.py-37 { padding-top: 3.7rem !important;  padding-bottom: 3.7rem !important; } .py-38 { padding-top: 3.8rem !important;  padding-bottom: 3.8rem !important; }
.py-39 { padding-top: 3.9rem !important;  padding-bottom: 3.9rem !important; } .py-40 { padding-top: 4.0rem !important;  padding-bottom: 4.0rem !important; }
.py-41 { padding-top: 4.1rem !important;  padding-bottom: 4.1rem !important; } .py-42 { padding-top: 4.2rem !important;  padding-bottom: 4.2rem !important; }
.py-43 { padding-top: 4.3rem !important;  padding-bottom: 4.3rem !important; } .py-44 { padding-top: 4.4rem !important;  padding-bottom: 4.4rem !important; }
.py-45 { padding-top: 4.5rem !important;  padding-bottom: 4.5rem !important; } .py-46 { padding-top: 4.6rem !important;  padding-bottom: 4.6rem !important; }
.py-47 { padding-top: 4.7rem !important;  padding-bottom: 4.7rem !important; } .py-48 { padding-top: 4.8rem !important;  padding-bottom: 4.8rem !important; }
.py-49 { padding-top: 4.9rem !important;  padding-bottom: 4.9rem !important; } .py-50 { padding-top: 5.0rem !important;  padding-bottom: 5.0rem !important; }

/*#endregion Margin and Padding utils******************************************/


/*#region Other Layout utils***************************************************/
/*Display*/
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-table { display: table !important; }
.d-table-row { display: table-row !important; }
.d-table-cell { display: table-cell !important; }

/*Image-text align*/
.align-baseline { vertical-align: baseline !important; }
.align-top { vertical-align: top !important; }
.align-middle { vertical-align: middle !important; }
.align-bottom { vertical-align: bottom !important; }
.align-text-bottom { vertical-align: text-bottom !important; }
.align-text-top { vertical-align: text-top !important; }

/*Text alignment*/
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-justify { text-align: justify !important; }

/*Text wrapping*/
.text-wrap { white-space: normal !important; }
.text-nowrap { white-space: nowrap !important; }
.text-truncate { 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*Sequences of white space are preserved. Lines are only broken at newline characters in the source and at <br > elements.*/
.text-whitespace-pre { white-space: pre !important; }
/*Sequences of white space are preserved. Lines are broken at newline characters, at <br >, and as necessary to fill line boxes.*/
.text-whitespace-pre-wrap { white-space: pre-wrap !important; }
/*Sequences of white space are collapsed. Lines are broken at newline characters, at <br >, and as necessary to fill line boxes.*/
.text-whitespace-pre-line { white-space: pre-line !important; }

/*Clear floats (just don't use floats)*/
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }

.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/*#endregion Other Layout utils************************************************/


/*#region PDF Tag Mapping***************************************************/

aside, section {
    -ro-pdf-tag-type: "Sect";
}

article {
    -ro-pdf-tag-type: "Art";
}

p {
    -ro-pdf-tag-type: "P";
}

span {
    -ro-pdf-tag-type: "Span";
}

img {
    -ro-pdf-tag-type: "Figure";
}


/*Convenience classes for PDF tags with no corresponding HTML element*/
.artifact {
    -ro-pdf-tag-type: "Artifact";
}

.toc {
    -ro-pdf-tag-type: "TOC";
}

.toci {
    -ro-pdf-tag-type: "TOCI";
}

.index {
    -ro-pdf-tag-type: "Index";
}

/* Footnote support using <sup> tags*************************************************/
/*                                                                                  */
/* Embed the reference to the footnote:                                             */
/* <th>                                                                             */
/*     Country<sup class="footRef">1</sup>                                          */
/* </th>                                                                            */
/*                                                                                  */
/*  ...                                                                             */
/*                                                                                  */
/*  Embed the actual footnote content:                                              */
/*  <p>                                                                             */
/*      <span id="1" class="footNote">                                              */
/*          <sup>1</sup>                                                            */
/*          <span>Country of origin.<span>                                          */
/*      </span>                                                                     */
/*  </p>                                                                            */
/*                                                                                  */
/* Note: The id is required for legacy support and should match the footRef content */                                                                      */
/*       The footnote structure (element with class = "footNote" must be contained  */
/*       inside a block level element (such as <p>) and use above tag structure.    */
/*                                                                                  */
/************************************************************************************/

sup.footRef {
    -ro-pdf-tag-type: "Reference";
}

span.footNote {
    -ro-pdf-tag-type: "Note";
}

    span.footNote > sup {
        -ro-pdf-tag-type: "Lbl";
    }

    span.footNote > span {
        -ro-pdf-tag-type: "Span";
    }

/*#endregion PDF Tag Mapping************************************************/
