
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d3b858b421c347c926ad06c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f61dcc0d8f8a58bfb107acd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_66294fda24a111f3f6bbd11f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_173894dc61bdc680dfdf729b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b3fdafd50ec1d69d3a0f25d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d24ba4af62ab78f4e3694c4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6fa3ea28871b8a9c7d4d2cc2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0f88dc3776bdfd00867cb867.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_88a493b8ec0259b282dd8310.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.201660;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_440ee4b9115e9a00c22c67dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ba2144d7f98dc66004d6e9fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.491260px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:16.663445px;}
.ls3{letter-spacing:18.000000px;}
.ls7{letter-spacing:22.500000px;}
.ls2{letter-spacing:29.988281px;}
.ls5{letter-spacing:35.999989px;}
.ls4{letter-spacing:36.000000px;}
.ls8{letter-spacing:45.000000px;}
.ls6{letter-spacing:49.500000px;}
.lsa{letter-spacing:62.999989px;}
.ls1{letter-spacing:64.511718px;}
.ls9{letter-spacing:90.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-33.339843px;}
.ws2b{word-spacing:-26.671876px;}
.ws3{word-spacing:-18.336914px;}
.ws35{word-spacing:-18.000000px;}
.wsa6{word-spacing:-17.144532px;}
.wsa8{word-spacing:-15.937500px;}
.ws30{word-spacing:-15.000000px;}
.wsa5{word-spacing:-13.500000px;}
.wsa7{word-spacing:-0.051000px;}
.ws31{word-spacing:-0.011720px;}
.wse{word-spacing:-0.000035px;}
.ws7e{word-spacing:-0.000033px;}
.ws15{word-spacing:-0.000023px;}
.ws22{word-spacing:-0.000013px;}
.wsb{word-spacing:-0.000012px;}
.ws28{word-spacing:-0.000001px;}
.ws0{word-spacing:0.000000px;}
.ws82{word-spacing:0.000001px;}
.ws24{word-spacing:0.000010px;}
.ws4c{word-spacing:0.000011px;}
.ws3c{word-spacing:0.000021px;}
.ws49{word-spacing:0.000033px;}
.ws5f{word-spacing:4.499964px;}
.ws8{word-spacing:4.499966px;}
.ws37{word-spacing:4.499976px;}
.ws3d{word-spacing:4.499977px;}
.ws7{word-spacing:4.499988px;}
.ws52{word-spacing:4.499997px;}
.ws96{word-spacing:4.499999px;}
.ws10{word-spacing:4.500000px;}
.wsc{word-spacing:4.500002px;}
.ws4a{word-spacing:4.500009px;}
.ws16{word-spacing:4.500011px;}
.ws3b{word-spacing:4.500022px;}
.ws47{word-spacing:4.500033px;}
.ws19{word-spacing:8.999966px;}
.ws39{word-spacing:8.999976px;}
.ws1b{word-spacing:8.999978px;}
.ws7d{word-spacing:8.999987px;}
.ws9{word-spacing:8.999988px;}
.ws65{word-spacing:8.999997px;}
.ws46{word-spacing:8.999999px;}
.ws11{word-spacing:9.000000px;}
.ws4e{word-spacing:9.000001px;}
.ws3f{word-spacing:9.000003px;}
.ws3a{word-spacing:9.000009px;}
.ws4b{word-spacing:9.000010px;}
.ws25{word-spacing:9.000022px;}
.ws54{word-spacing:9.000033px;}
.ws26{word-spacing:12.023438px;}
.ws9c{word-spacing:13.499964px;}
.ws51{word-spacing:13.499966px;}
.ws2e{word-spacing:13.499977px;}
.wsd{word-spacing:13.499988px;}
.ws60{word-spacing:13.499997px;}
.ws40{word-spacing:13.499999px;}
.ws12{word-spacing:13.500000px;}
.ws99{word-spacing:13.500002px;}
.ws45{word-spacing:13.500010px;}
.wsa0{word-spacing:13.500012px;}
.ws71{word-spacing:13.500021px;}
.ws4d{word-spacing:13.500022px;}
.wsa1{word-spacing:13.500033px;}
.ws5e{word-spacing:17.999966px;}
.ws21{word-spacing:17.999977px;}
.ws1c{word-spacing:17.999988px;}
.ws2f{word-spacing:17.999997px;}
.ws17{word-spacing:17.999999px;}
.ws5c{word-spacing:18.000002px;}
.ws13{word-spacing:18.000011px;}
.ws8d{word-spacing:18.000021px;}
.ws14{word-spacing:18.000022px;}
.ws36{word-spacing:22.499965px;}
.ws27{word-spacing:22.499977px;}
.ws4f{word-spacing:22.499986px;}
.ws6{word-spacing:22.499988px;}
.ws2c{word-spacing:22.499997px;}
.ws5{word-spacing:22.499999px;}
.ws77{word-spacing:22.500000px;}
.ws48{word-spacing:22.500010px;}
.ws50{word-spacing:22.500022px;}
.ws9f{word-spacing:22.500033px;}
.ws5d{word-spacing:26.999977px;}
.ws1a{word-spacing:26.999978px;}
.ws78{word-spacing:26.999987px;}
.ws20{word-spacing:26.999988px;}
.ws42{word-spacing:26.999998px;}
.ws1f{word-spacing:27.000000px;}
.ws53{word-spacing:27.000002px;}
.ws87{word-spacing:27.000010px;}
.ws57{word-spacing:27.000011px;}
.ws74{word-spacing:27.000023px;}
.ws3e{word-spacing:27.000034px;}
.ws34{word-spacing:30.023438px;}
.ws8c{word-spacing:31.499966px;}
.ws29{word-spacing:31.499977px;}
.ws97{word-spacing:31.499985px;}
.ws1e{word-spacing:31.499987px;}
.ws2d{word-spacing:31.499988px;}
.ws63{word-spacing:31.499997px;}
.wsf{word-spacing:31.500000px;}
.ws44{word-spacing:31.500010px;}
.ws64{word-spacing:31.500011px;}
.ws41{word-spacing:31.500033px;}
.ws9b{word-spacing:35.999965px;}
.ws5a{word-spacing:35.999978px;}
.ws32{word-spacing:35.999988px;}
.ws5b{word-spacing:35.999997px;}
.ws33{word-spacing:36.000000px;}
.ws59{word-spacing:36.000002px;}
.ws66{word-spacing:36.000011px;}
.ws80{word-spacing:40.499987px;}
.ws23{word-spacing:40.499988px;}
.ws43{word-spacing:40.499999px;}
.ws90{word-spacing:40.500000px;}
.ws38{word-spacing:40.500003px;}
.ws8f{word-spacing:40.500011px;}
.ws2a{word-spacing:44.980419px;}
.wsa{word-spacing:44.999977px;}
.ws62{word-spacing:44.999988px;}
.ws8e{word-spacing:45.000000px;}
.ws9d{word-spacing:45.000002px;}
.ws81{word-spacing:45.000011px;}
.ws9e{word-spacing:45.000019px;}
.ws1d{word-spacing:49.499988px;}
.ws61{word-spacing:49.500002px;}
.ws55{word-spacing:49.500010px;}
.ws18{word-spacing:53.999999px;}
.ws6b{word-spacing:58.499976px;}
.ws6a{word-spacing:58.500033px;}
.ws88{word-spacing:63.000000px;}
.ws84{word-spacing:67.500000px;}
.ws83{word-spacing:71.999989px;}
.ws7a{word-spacing:72.000000px;}
.wsa4{word-spacing:76.499987px;}
.ws79{word-spacing:76.500000px;}
.wsa3{word-spacing:81.000000px;}
.ws56{word-spacing:94.499988px;}
.ws58{word-spacing:103.500011px;}
.ws92{word-spacing:107.999989px;}
.ws93{word-spacing:108.000000px;}
.ws91{word-spacing:112.500009px;}
.ws95{word-spacing:125.999977px;}
.ws8a{word-spacing:126.000000px;}
.ws89{word-spacing:126.000011px;}
.ws67{word-spacing:139.499988px;}
.ws68{word-spacing:139.500000px;}
.ws94{word-spacing:148.500000px;}
.ws73{word-spacing:171.000000px;}
.ws6c{word-spacing:175.499988px;}
.ws6d{word-spacing:175.500000px;}
.ws72{word-spacing:175.500011px;}
.wsa2{word-spacing:260.999977px;}
.ws75{word-spacing:269.999986px;}
.ws76{word-spacing:270.000000px;}
.ws70{word-spacing:292.499999px;}
.ws86{word-spacing:301.500000px;}
.ws85{word-spacing:306.000000px;}
.ws6f{word-spacing:337.500000px;}
.ws6e{word-spacing:341.999987px;}
.ws7c{word-spacing:414.000000px;}
.ws7b{word-spacing:418.499988px;}
.ws8b{word-spacing:458.999978px;}
.ws69{word-spacing:490.500012px;}
.ws98{word-spacing:796.500000px;}
.ws9a{word-spacing:832.500000px;}
.ws7f{word-spacing:837.000000px;}
.ws2{word-spacing:2385.072909px;}
.ws1{word-spacing:2392.402323px;}
._41{margin-left:-17.999999px;}
._36{margin-left:-9.281250px;}
._0{margin-left:-8.015625px;}
._12{margin-left:-6.256650px;}
._23{margin-left:-5.020938px;}
._2{margin-left:-3.972656px;}
._1{margin-left:-1.951173px;}
._35{width:2.355468px;}
._2d{width:17.999963px;}
._3d{width:19.951171px;}
._2c{width:22.500000px;}
._44{width:25.945333px;}
._29{width:27.000000px;}
._2a{width:31.500002px;}
._27{width:36.000023px;}
._2e{width:40.499999px;}
._28{width:44.999999px;}
._39{width:48.023438px;}
._30{width:49.500002px;}
._38{width:52.066406px;}
._32{width:54.000113px;}
._37{width:58.499999px;}
._31{width:63.000111px;}
._2b{width:67.499999px;}
._34{width:72.000054px;}
._2f{width:76.500000px;}
._33{width:81.000002px;}
._3f{width:90.000011px;}
._3a{width:117.000001px;}
._3b{width:126.000001px;}
._43{width:130.124434px;}
._40{width:148.500002px;}
._45{width:171.000022px;}
._3e{width:292.500012px;}
._42{width:481.499988px;}
._3c{width:512.999989px;}
._a{width:534.320206px;}
._9{width:549.047745px;}
._8{width:568.972548px;}
._46{width:818.279321px;}
._47{width:855.000023px;}
._1b{width:860.769079px;}
._1a{width:875.496619px;}
._13{width:1113.178078px;}
._11{width:1261.192917px;}
._7{width:1269.970608px;}
._e{width:1321.462445px;}
._b{width:1350.756391px;}
._d{width:1446.179244px;}
._5{width:1449.730377px;}
._6{width:1464.393463px;}
._4{width:1492.594632px;}
._f{width:1497.615771px;}
._c{width:1550.675337px;}
._14{width:1561.863819px;}
._10{width:1593.108937px;}
._19{width:1605.451706px;}
._18{width:1730.104052px;}
._20{width:1776.100146px;}
._1f{width:1893.372609px;}
._24{width:1951.623041px;}
._3{width:1999.887611px;}
._17{width:2016.340385px;}
._1d{width:2031.035699px;}
._22{width:2067.741753px;}
._21{width:2089.752497px;}
._1e{width:2102.959528px;}
._1c{width:2119.110895px;}
._16{width:2175.902887px;}
._25{width:2197.881403px;}
._15{width:2205.100153px;}
._26{width:2324.452695px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(67,67,67);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(29,33,37);}
.fsb{font-size:32.399999px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:43.200002px;}
.fsc{font-size:50.999999px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:59.999999px;}
.fs3{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.999997px;}
.fs2{font-size:90.000000px;}
.fs5{font-size:96.000003px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y2ce{bottom:4.165646px;}
.y2c9{bottom:4.165649px;}
.y2d3{bottom:4.171509px;}
.y2cb{bottom:4.177368px;}
.y2d1{bottom:6.131834px;}
.y2dc{bottom:6.137695px;}
.y2d5{bottom:6.143554px;}
.y27f{bottom:10.787114px;}
.y26f{bottom:10.792964px;}
.y27c{bottom:10.792967px;}
.y275{bottom:10.792973px;}
.y287{bottom:10.792974px;}
.y289{bottom:10.792979px;}
.y277{bottom:10.798823px;}
.y26a{bottom:10.798824px;}
.y268{bottom:10.798829px;}
.y273{bottom:10.798833px;}
.y285{bottom:10.798838px;}
.yb7{bottom:11.119619px;}
.yc2{bottom:11.119623px;}
.ycc{bottom:11.119625px;}
.yab{bottom:11.119628px;}
.ybc{bottom:11.119629px;}
.yb2{bottom:11.119634px;}
.yaf{bottom:11.119638px;}
.y2d8{bottom:21.099247px;}
.y26e{bottom:26.314454px;}
.y27b{bottom:26.320307px;}
.y267{bottom:26.320313px;}
.ybb{bottom:28.368159px;}
.yb1{bottom:28.368164px;}
.yae{bottom:28.368168px;}
.ycb{bottom:28.368170px;}
.y2cd{bottom:38.021119px;}
.y27a{bottom:41.841797px;}
.yba{bottom:45.616689px;}
.yad{bottom:45.616698px;}
.yca{bottom:45.616700px;}
.ye3{bottom:45.616704px;}
.y2d0{bottom:50.446289px;}
.y99{bottom:59.967044px;}
.y34{bottom:59.967584px;}
.y4a{bottom:59.967779px;}
.y166{bottom:59.968499px;}
.yc9{bottom:62.865230px;}
.yb9{bottom:62.865234px;}
.y2{bottom:72.076904px;}
.ye8{bottom:80.113770px;}
.yc8{bottom:80.113775px;}
.yc7{bottom:97.362305px;}
.y28f{bottom:111.410148px;}
.y33{bottom:114.385259px;}
.ya7{bottom:115.098637px;}
.y243{bottom:115.623052px;}
.y196{bottom:117.102165px;}
.y24c{bottom:120.574223px;}
.y52{bottom:121.924072px;}
.yb8{bottom:125.900394px;}
.y6e{bottom:127.622317px;}
.ye4{bottom:129.187500px;}
.y117{bottom:131.748053px;}
.y7e{bottom:131.749507px;}
.y1e4{bottom:131.750978px;}
.y1b0{bottom:133.505857px;}
.y28e{bottom:134.350703px;}
.y165{bottom:135.878902px;}
.y265{bottom:137.226563px;}
.y155{bottom:139.924808px;}
.ya6{bottom:146.145998px;}
.ye5{bottom:146.436035px;}
.y242{bottom:146.671867px;}
.y32{bottom:148.358639px;}
.y24b{bottom:151.623052px;}
.y51{bottom:152.971433px;}
.y17b{bottom:155.581058px;}
.y6d{bottom:158.669678px;}
.y100{bottom:159.193358px;}
.yb6{bottom:160.397464px;}
.y152{bottom:160.924808px;}
.y7d{bottom:162.796867px;}
.y1d1{bottom:163.461908px;}
.y208{bottom:164.800778px;}
.y195{bottom:166.652341px;}
.y20f{bottom:166.921867px;}
.y98{bottom:166.923338px;}
.y164{bottom:166.924808px;}
.y264{bottom:168.275392px;}
.y16b{bottom:170.970698px;}
.y154{bottom:170.972168px;}
.y2c7{bottom:175.406978px;}
.ya5{bottom:177.193358px;}
.ybd{bottom:177.646000px;}
.y241{bottom:177.714848px;}
.y31{bottom:182.332033px;}
.y24a{bottom:182.671867px;}
.y50{bottom:184.018793px;}
.y6c{bottom:189.717038px;}
.yff{bottom:190.240717px;}
.y151{bottom:191.970698px;}
.y109{bottom:193.842773px;}
.y7c{bottom:193.844243px;}
.y1e3{bottom:193.845698px;}
.y1d0{bottom:194.507812px;}
.y1af{bottom:195.638671px;}
.y207{bottom:195.849607px;}
.ye1{bottom:197.808103px;}
.y194{bottom:197.818366px;}
.y97{bottom:197.970698px;}
.y263{bottom:199.324223px;}
.y2c6{bottom:201.246818px;}
.y133{bottom:202.019528px;}
.y30{bottom:205.805413px;}
.y2aa{bottom:205.946048px;}
.ya4{bottom:208.240717px;}
.y240{bottom:208.763678px;}
.y28d{bottom:209.835932px;}
.yd{bottom:209.845462px;}
.yb4{bottom:211.769524px;}
.y1f5{bottom:212.888678px;}
.y249{bottom:213.714848px;}
.y4f{bottom:215.066167px;}
.y17a{bottom:217.675777px;}
.y6b{bottom:220.764398px;}
.yfe{bottom:221.288092px;}
.y150{bottom:223.019528px;}
.y7b{bottom:224.891603px;}
.y1e6{bottom:224.894528px;}
.y1cf{bottom:225.556642px;}
.y1ae{bottom:226.804681px;}
.y206{bottom:226.898438px;}
.y2c5{bottom:227.086673px;}
.y193{bottom:228.984376px;}
.yb5{bottom:229.018061px;}
.y96{bottom:229.018073px;}
.y163{bottom:229.019528px;}
.y2f{bottom:229.278808px;}
.y262{bottom:230.367187px;}
.y2a9{bottom:231.785888px;}
.ye2{bottom:232.305174px;}
.y132{bottom:233.066888px;}
.y16a{bottom:233.068358px;}
.ya3{bottom:239.288092px;}
.y23f{bottom:239.812492px;}
.y1f4{bottom:243.937492px;}
.y248{bottom:244.763678px;}
.y4e{bottom:246.113528px;}
.y179{bottom:248.721683px;}
.ydf{bottom:249.553710px;}
.yfd{bottom:252.335452px;}
.y2e{bottom:252.752204px;}
.y2c4{bottom:252.926513px;}
.y14f{bottom:254.065433px;}
.y108{bottom:255.937492px;}
.y7a{bottom:255.938962px;}
.y1e2{bottom:255.940433px;}
.y1ce{bottom:256.605473px;}
.y2a8{bottom:257.625728px;}
.y28b{bottom:257.759762px;}
.y205{bottom:257.941403px;}
.y1ad{bottom:257.970706px;}
.yc{bottom:258.892823px;}
.y95{bottom:260.065433px;}
.y162{bottom:260.068358px;}
.y6a{bottom:260.093254px;}
.y192{bottom:260.109367px;}
.y228{bottom:260.894528px;}
.y261{bottom:261.416017px;}
.yac{bottom:263.141595px;}
.y131{bottom:264.114262px;}
.y1e5{bottom:264.221194px;}
.ya2{bottom:270.335452px;}
.y28c{bottom:273.281246px;}
.y1f3{bottom:274.980473px;}
.y247{bottom:275.812492px;}
.y286{bottom:277.335930px;}
.y2c3{bottom:278.766353px;}
.y178{bottom:279.770512px;}
.yb0{bottom:280.390129px;}
.y9{bottom:281.040903px;}
.yfc{bottom:283.382812px;}
.y2a7{bottom:283.465568px;}
.ye0{bottom:284.050780px;}
.y23e{bottom:284.501950px;}
.y14e{bottom:285.114262px;}
.y2d{bottom:286.725584px;}
.y79{bottom:286.986323px;}
.y1cd{bottom:287.651363px;}
.y204{bottom:288.990233px;}
.y1ac{bottom:289.136716px;}
.y4d{bottom:290.802970px;}
.y94{bottom:291.112793px;}
.y161{bottom:291.114262px;}
.y20e{bottom:291.117187px;}
.y227{bottom:291.943358px;}
.y260{bottom:292.464848px;}
.y130{bottom:295.161623px;}
.yb3{bottom:297.638666px;}
.y169{bottom:301.081050px;}
.y2c2{bottom:304.606193px;}
.y246{bottom:306.861323px;}
.y28a{bottom:307.031246px;}
.y2a6{bottom:308.097652px;}
.ya1{bottom:309.663576px;}
.y177{bottom:310.816402px;}
.yfb{bottom:314.430172px;}
.y14d{bottom:316.160152px;}
.y8{bottom:316.745373px;}
.y107{bottom:318.032227px;}
.y78{bottom:318.033697px;}
.y1e1{bottom:318.035152px;}
.yde{bottom:318.174315px;}
.yb{bottom:318.289312px;}
.y1cc{bottom:318.697268px;}
.y203{bottom:320.039063px;}
.y1ab{bottom:320.261722px;}
.y2c{bottom:320.698978px;}
.y93{bottom:322.160152px;}
.y191{bottom:322.245121px;}
.y226{bottom:322.992188px;}
.y25f{bottom:323.507812px;}
.y12f{bottom:326.208983px;}
.y2c1{bottom:330.446048px;}
.yaa{bottom:331.762211px;}
.ydd{bottom:335.422849px;}
.y1f2{bottom:337.116211px;}
.y288{bottom:339.433585px;}
.y176{bottom:341.865233px;}
.y2b{bottom:344.172358px;}
.yfa{bottom:345.477533px;}
.y14c{bottom:347.208983px;}
.y69{bottom:349.081057px;}
.y1e0{bottom:349.083983px;}
.y1cb{bottom:349.746098px;}
.y202{bottom:351.087892px;}
.y1aa{bottom:351.348631px;}
.y245{bottom:351.550780px;}
.y7{bottom:352.449843px;}
.y92{bottom:353.207513px;}
.y160{bottom:353.208983px;}
.y190{bottom:353.411131px;}
.y225{bottom:354.041017px;}
.y25e{bottom:354.556642px;}
.y2c0{bottom:356.285888px;}
.y12e{bottom:357.256342px;}
.ya8{bottom:357.361819px;}
.ya{bottom:367.336672px;}
.y2a{bottom:367.645753px;}
.y1f1{bottom:368.244142px;}
.ya0{bottom:372.246087px;}
.y175{bottom:372.911137px;}
.yf9{bottom:376.524907px;}
.y14b{bottom:378.254887px;}
.y23d{bottom:379.300778px;}
.y106{bottom:380.126947px;}
.y68{bottom:380.128418px;}
.y1df{bottom:380.129887px;}
.y2a5{bottom:380.403068px;}
.y1ca{bottom:380.794928px;}
.y2bf{bottom:382.125728px;}
.y201{bottom:382.136723px;}
.y1a9{bottom:382.514641px;}
.y91{bottom:384.254887px;}
.y15f{bottom:384.257812px;}
.y18f{bottom:384.577141px;}
.y224{bottom:385.089847px;}
.y4c{bottom:385.604738px;}
.y25d{bottom:385.605473px;}
.ydb{bottom:386.794924px;}
.y6{bottom:388.154313px;}
.y12d{bottom:388.303717px;}
.y284{bottom:390.726557px;}
.y29{bottom:391.119133px;}
.y3{bottom:400.266345px;}
.y174{bottom:403.959967px;}
.ydc{bottom:404.043461px;}
.y14a{bottom:409.303717px;}
.y23c{bottom:410.349607px;}
.y67{bottom:411.175777px;}
.y200{bottom:413.179688px;}
.y9f{bottom:413.642575px;}
.y1a8{bottom:413.680666px;}
.y28{bottom:414.592528px;}
.y20d{bottom:415.300778px;}
.y90{bottom:415.302248px;}
.y15e{bottom:415.303717px;}
.y18e{bottom:415.743166px;}
.yf8{bottom:415.853031px;}
.y223{bottom:416.132812px;}
.y49{bottom:416.652097px;}
.y25c{bottom:416.654303px;}
.y12c{bottom:419.351077px;}
.y5{bottom:423.858783px;}
.y1c9{bottom:425.484370px;}
.y1f0{bottom:430.335938px;}
.y2be{bottom:430.564447px;}
.y2a4{bottom:432.082763px;}
.y173{bottom:435.005857px;}
.y27{bottom:438.065923px;}
.yd9{bottom:438.166984px;}
.y283{bottom:438.650387px;}
.y149{bottom:440.349607px;}
.y23b{bottom:441.398438px;}
.y105{bottom:442.221683px;}
.y66{bottom:442.223138px;}
.y1de{bottom:442.224607px;}
.y1ff{bottom:444.228517px;}
.y1a7{bottom:444.808598px;}
.y8f{bottom:446.349607px;}
.y18d{bottom:446.871098px;}
.y222{bottom:447.181642px;}
.y48{bottom:447.699458px;}
.y25b{bottom:447.703117px;}
.y12b{bottom:450.398438px;}
.yda{bottom:455.415521px;}
.y280{bottom:456.878906px;}
.y2a3{bottom:457.922603px;}
.y1ef{bottom:461.422846px;}
.y26{bottom:461.539303px;}
.y172{bottom:466.054687px;}
.y148{bottom:471.398438px;}
.y23a{bottom:472.447268px;}
.y65{bottom:473.270512px;}
.y1dd{bottom:473.273438px;}
.y1fe{bottom:475.277348px;}
.y8e{bottom:477.396968px;}
.y15d{bottom:477.398438px;}
.y4{bottom:477.563239px;}
.y18c{bottom:477.958006px;}
.y221{bottom:478.230473px;}
.yf7{bottom:478.435540px;}
.y25a{bottom:478.746098px;}
.y4b{bottom:478.746832px;}
.y12a{bottom:481.445798px;}
.y2a2{bottom:483.762443px;}
.y25{bottom:485.012698px;}
.y282{bottom:486.574217px;}
.yd7{bottom:489.539059px;}
.y1ee{bottom:492.588871px;}
.y171{bottom:497.100592px;}
.y147{bottom:502.444342px;}
.y2bd{bottom:503.186273px;}
.y239{bottom:503.496098px;}
.y104{bottom:504.316402px;}
.y64{bottom:504.317873px;}
.y1dc{bottom:504.319342px;}
.y1fd{bottom:506.320312px;}
.y1bb{bottom:506.586916px;}
.yd8{bottom:506.787595px;}
.y1a6{bottom:506.903318px;}
.y8d{bottom:508.444342px;}
.y15c{bottom:508.447268px;}
.y24{bottom:508.486079px;}
.y18b{bottom:509.124016px;}
.y220{bottom:509.273438px;}
.y47{bottom:509.794193px;}
.y259{bottom:509.794928px;}
.y129{bottom:512.493158px;}
.y1c8{bottom:520.283198px;}
.yd4{bottom:523.662600px;}
.y1ed{bottom:523.754881px;}
.y23{bottom:527.459474px;}
.y170{bottom:528.149408px;}
.y146{bottom:533.493158px;}
.y281{bottom:534.498047px;}
.y238{bottom:534.539063px;}
.y63{bottom:535.365233px;}
.y2a1{bottom:535.448003px;}
.y1fc{bottom:537.369142px;}
.y1ba{bottom:537.752926px;}
.y1a5{bottom:537.949222px;}
.y8c{bottom:539.491702px;}
.y168{bottom:539.493158px;}
.y20c{bottom:539.496098px;}
.y18a{bottom:540.290041px;}
.y21f{bottom:540.322268px;}
.y46{bottom:540.841553px;}
.y258{bottom:540.843742px;}
.yd5{bottom:540.911135px;}
.y128{bottom:543.540533px;}
.y1c7{bottom:551.332027px;}
.y2bc{bottom:554.865968px;}
.y1ec{bottom:554.882812px;}
.yd6{bottom:558.159670px;}
.y16f{bottom:559.195312px;}
.y2a0{bottom:561.287843px;}
.y22{bottom:561.432869px;}
.y145{bottom:564.539063px;}
.y237{bottom:565.587893px;}
.y103{bottom:566.411137px;}
.y62{bottom:566.412592px;}
.y1db{bottom:566.414062px;}
.y1b9{bottom:568.918951px;}
.y8b{bottom:570.539063px;}
.y21e{bottom:571.371098px;}
.y189{bottom:571.415033px;}
.y257{bottom:571.886723px;}
.y45{bottom:571.888913px;}
.yf6{bottom:573.237308px;}
.y127{bottom:574.587893px;}
.y2bb{bottom:580.705808px;}
.y1fb{bottom:582.058585px;}
.y1c6{bottom:582.380857px;}
.y27e{bottom:585.796871px;}
.y1eb{bottom:585.969721px;}
.y29f{bottom:587.127683px;}
.y16e{bottom:590.244142px;}
.yd3{bottom:592.283201px;}
.y21{bottom:595.406248px;}
.y144{bottom:595.587893px;}
.y236{bottom:596.636723px;}
.y61{bottom:597.459968px;}
.y1a4{bottom:600.084961px;}
.y27d{bottom:601.312496px;}
.y8a{bottom:601.586423px;}
.y15b{bottom:601.587893px;}
.y21d{bottom:602.419928px;}
.y256{bottom:602.935552px;}
.y44{bottom:602.936272px;}
.yf5{bottom:604.284668px;}
.y126{bottom:605.635252px;}
.ya9{bottom:605.740714px;}
.y77{bottom:605.741449px;}
.y2ba{bottom:606.545648px;}
.y1c5{bottom:613.426762px;}
.y1ea{bottom:617.135746px;}
.y20{bottom:618.879643px;}
.y16d{bottom:621.290033px;}
.y143{bottom:626.633783px;}
.y235{bottom:627.679688px;}
.y102{bottom:628.505858px;}
.y60{bottom:628.507328px;}
.y1da{bottom:628.508783px;}
.y1a3{bottom:631.250971px;}
.y89{bottom:632.633783px;}
.y15a{bottom:632.636723px;}
.y21c{bottom:633.468742px;}
.y188{bottom:633.509768px;}
.y279{bottom:633.714848px;}
.y43{bottom:633.983648px;}
.y255{bottom:633.984367px;}
.yf4{bottom:635.332027px;}
.y125{bottom:636.682613px;}
.y29e{bottom:638.807378px;}
.yd2{bottom:640.649408px;}
.y1f{bottom:642.353023px;}
.y1e9{bottom:648.301756px;}
.y278{bottom:649.236332px;}
.y142{bottom:657.682613px;}
.y1c4{bottom:658.116205px;}
.y2b9{bottom:658.225343px;}
.y234{bottom:658.728517px;}
.y5f{bottom:659.554688px;}
.y1b8{bottom:662.378902px;}
.y1a2{bottom:662.416996px;}
.y20b{bottom:663.679688px;}
.y88{bottom:663.681157px;}
.y159{bottom:663.682613px;}
.y21b{bottom:664.511723px;}
.y187{bottom:664.558598px;}
.y29d{bottom:664.647218px;}
.y42{bottom:665.031007px;}
.y254{bottom:665.033198px;}
.y1e{bottom:665.826418px;}
.yf3{bottom:666.379388px;}
.y124{bottom:667.729987px;}
.y116{bottom:667.836919px;}
.y1e8{bottom:679.429688px;}
.y16c{bottom:681.011718px;}
.y272{bottom:682.986321px;}
.y2b8{bottom:684.071048px;}
.y141{bottom:688.728517px;}
.y1d{bottom:689.299798px;}
.y233{bottom:689.777348px;}
.y29c{bottom:690.487058px;}
.y5e{bottom:690.602048px;}
.y1d9{bottom:690.603518px;}
.y1a1{bottom:693.583006px;}
.y87{bottom:694.728517px;}
.y76{bottom:694.729252px;}
.y21a{bottom:695.560552px;}
.y41{bottom:696.078368px;}
.y253{bottom:696.082027px;}
.y276{bottom:697.160162px;}
.yf2{bottom:697.426762px;}
.y123{bottom:698.777348px;}
.y2b7{bottom:709.910888px;}
.y1c{bottom:712.773193px;}
.y29b{bottom:716.332763px;}
.y140{bottom:719.777348px;}
.yd0{bottom:720.673830px;}
.y232{bottom:720.826178px;}
.y5d{bottom:721.649408px;}
.y1d8{bottom:721.652348px;}
.y1e7{bottom:724.119145px;}
.y1b7{bottom:724.511716px;}
.y1a0{bottom:724.749016px;}
.y86{bottom:725.775877px;}
.y75{bottom:725.776612px;}
.y158{bottom:725.777348px;}
.y219{bottom:726.609367px;}
.y186{bottom:726.691411px;}
.y252{bottom:727.124992px;}
.y40{bottom:727.125728px;}
.yf1{bottom:728.474122px;}
.y122{bottom:729.824707px;}
.y101{bottom:729.930169px;}
.y1b{bottom:736.246588px;}
.ycf{bottom:737.922365px;}
.y29a{bottom:742.172603px;}
.y274{bottom:745.083977px;}
.y13f{bottom:750.823238px;}
.y231{bottom:751.874992px;}
.y5c{bottom:752.696783px;}
.y1c3{bottom:752.917973px;}
.yd1{bottom:755.170901px;}
.y1b6{bottom:755.677741px;}
.y19f{bottom:755.876948px;}
.y85{bottom:756.823238px;}
.y74{bottom:756.823972px;}
.y115{bottom:756.824707px;}
.y157{bottom:756.826178px;}
.y218{bottom:757.652348px;}
.y185{bottom:757.857421px;}
.y3f{bottom:758.173103px;}
.y251{bottom:758.173822px;}
.yf0{bottom:759.521482px;}
.y1a{bottom:759.719968px;}
.y121{bottom:760.872067px;}
.y2b6{bottom:761.590568px;}
.y299{bottom:768.012443px;}
.y13e{bottom:781.872067px;}
.y230{bottom:782.917973px;}
.y19{bottom:783.193363px;}
.y5b{bottom:783.744142px;}
.y1c2{bottom:783.966802px;}
.y1b5{bottom:786.843751px;}
.y2b5{bottom:787.430423px;}
.y84{bottom:787.870612px;}
.y73{bottom:787.871332px;}
.y114{bottom:787.872067px;}
.y20a{bottom:787.874992px;}
.y217{bottom:788.701178px;}
.y184{bottom:789.023431px;}
.y3e{bottom:789.220462px;}
.y250{bottom:789.222652px;}
.ycd{bottom:789.294435px;}
.yef{bottom:790.568842px;}
.y120{bottom:791.919427px;}
.y298{bottom:793.852298px;}
.y271{bottom:797.730461px;}
.y1{bottom:805.752679px;}
.y2db{bottom:805.980463px;}
.y18{bottom:806.666743px;}
.y2da{bottom:808.593746px;}
.y13d{bottom:812.917973px;}
.y2b4{bottom:813.270263px;}
.y22f{bottom:813.966802px;}
.y5a{bottom:814.791502px;}
.y1d7{bottom:814.792973px;}
.y19e{bottom:818.009761px;}
.y83{bottom:818.917973px;}
.y72{bottom:818.918707px;}
.y113{bottom:818.919427px;}
.y216{bottom:819.749992px;}
.y183{bottom:820.189456px;}
.y24f{bottom:820.265618px;}
.y3d{bottom:820.267822px;}
.yee{bottom:821.616217px;}
.y11f{bottom:822.966802px;}
.yce{bottom:823.791505px;}
.y1c1{bottom:828.656245px;}
.y17{bottom:830.140138px;}
.y270{bottom:831.480461px;}
.y2b3{bottom:839.110103px;}
.y13c{bottom:843.966802px;}
.y22e{bottom:845.015618px;}
.y297{bottom:845.531978px;}
.y1d6{bottom:845.841803px;}
.y19d{bottom:849.175786px;}
.y82{bottom:849.965332px;}
.y71{bottom:849.966067px;}
.y112{bottom:849.966802px;}
.y215{bottom:850.798822px;}
.y182{bottom:851.314448px;}
.y3c{bottom:851.315182px;}
.y2d7{bottom:851.414062px;}
.yed{bottom:852.663577px;}
.y16{bottom:853.613518px;}
.y11e{bottom:854.014162px;}
.y59{bottom:854.120359px;}
.yc6{bottom:857.915039px;}
.y26d{bottom:863.882815px;}
.y2b2{bottom:864.949943px;}
.y2d9{bottom:865.722649px;}
.y2d6{bottom:868.347660px;}
.y269{bottom:869.285160px;}
.y296{bottom:871.371818px;}
.y13b{bottom:875.012692px;}
.y22d{bottom:876.058598px;}
.y1d5{bottom:876.887692px;}
.y15{bottom:877.086913px;}
.y19c{bottom:880.341796px;}
.y81{bottom:881.012692px;}
.y70{bottom:881.013428px;}
.y111{bottom:881.014162px;}
.y156{bottom:881.015617px;}
.y214{bottom:881.847652px;}
.y3b{bottom:882.362543px;}
.y24e{bottom:882.363277px;}
.yec{bottom:883.710938px;}
.y11d{bottom:885.061523px;}
.y1c0{bottom:892.409182px;}
.y295{bottom:897.217523px;}
.y2e0{bottom:899.988277px;}
.y14{bottom:900.560308px;}
.y13a{bottom:906.061523px;}
.y22c{bottom:907.107427px;}
.y1d4{bottom:907.933598px;}
.yc4{bottom:909.660645px;}
.y1b4{bottom:911.466802px;}
.y19b{bottom:911.507806px;}
.y209{bottom:912.058598px;}
.y80{bottom:912.060052px;}
.y6f{bottom:912.060788px;}
.y110{bottom:912.061523px;}
.y213{bottom:912.890617px;}
.y26c{bottom:913.148440px;}
.y3a{bottom:913.409917px;}
.y181{bottom:913.412107px;}
.yeb{bottom:914.758298px;}
.y11c{bottom:916.108882px;}
.y2b1{bottom:916.629638px;}
.y294{bottom:923.057378px;}
.y1bf{bottom:923.455073px;}
.y13{bottom:924.033688px;}
.y2d4{bottom:931.617184px;}
.y2d2{bottom:934.236321px;}
.y139{bottom:937.107427px;}
.y22b{bottom:938.156242px;}
.y1d3{bottom:938.982427px;}
.y2b0{bottom:942.469478px;}
.y19a{bottom:942.673831px;}
.y7f{bottom:943.107427px;}
.y58{bottom:943.108147px;}
.y10f{bottom:943.108882px;}
.y212{bottom:943.939448px;}
.yc5{bottom:944.157715px;}
.y39{bottom:944.457277px;}
.y180{bottom:944.458012px;}
.y24d{bottom:944.460938px;}
.yea{bottom:945.805658px;}
.y26b{bottom:946.898440px;}
.y11b{bottom:947.156242px;}
.y12{bottom:947.507083px;}
.y2df{bottom:947.595697px;}
.y1be{bottom:954.503902px;}
.y1fa{bottom:954.808598px;}
.y138{bottom:968.156242px;}
.y2af{bottom:968.309318px;}
.y22a{bottom:969.205073px;}
.y11{bottom:970.980464px;}
.y1b3{bottom:973.602541px;}
.y199{bottom:973.839841px;}
.y9e{bottom:974.154787px;}
.y57{bottom:974.155522px;}
.y10e{bottom:974.156242px;}
.y293{bottom:974.737058px;}
.y211{bottom:974.988277px;}
.y17f{bottom:975.503902px;}
.y38{bottom:975.504637px;}
.y11a{bottom:978.203617px;}
.yc1{bottom:978.281250px;}
.y1d2{bottom:978.312010px;}
.y266{bottom:982.675780px;}
.y2cf{bottom:983.208984px;}
.y153{bottom:984.124511px;}
.y1bd{bottom:985.552733px;}
.y1f9{bottom:985.851562px;}
.y2cc{bottom:991.042968px;}
.y2ae{bottom:994.149169px;}
.ye7{bottom:994.782714px;}
.y2de{bottom:995.197266px;}
.yc3{bottom:995.529786px;}
.y137{bottom:999.202149px;}
.y292{bottom:1000.576904px;}
.y1b2{bottom:1004.768554px;}
.y10{bottom:1004.953858px;}
.y198{bottom:1004.964843px;}
.y9d{bottom:1005.202149px;}
.y56{bottom:1005.202881px;}
.y10d{bottom:1005.203613px;}
.y167{bottom:1005.205079px;}
.y210{bottom:1006.031250px;}
.y37{bottom:1006.552002px;}
.y17e{bottom:1006.552734px;}
.y2ca{bottom:1007.964844px;}
.y119{bottom:1009.250976px;}
.y229{bottom:1013.894530px;}
.y1bc{bottom:1016.601562px;}
.y1f8{bottom:1016.900391px;}
.y291{bottom:1026.416747px;}
.ybf{bottom:1029.653321px;}
.y136{bottom:1030.250976px;}
.y1b1{bottom:1035.934570px;}
.y9c{bottom:1036.249512px;}
.y55{bottom:1036.250244px;}
.y10c{bottom:1036.250976px;}
.y244{bottom:1036.253905px;}
.y36{bottom:1037.599365px;}
.y17d{bottom:1037.601562px;}
.yf{bottom:1038.927246px;}
.y2ad{bottom:1045.834717px;}
.y118{bottom:1046.219238px;}
.ye9{bottom:1046.528321px;}
.yc0{bottom:1046.901857px;}
.y1f7{bottom:1047.949218px;}
.y2c8{bottom:1053.023438px;}
.y135{bottom:1061.296875px;}
.y2dd{bottom:1063.209960px;}
.ye6{bottom:1063.776855px;}
.y197{bottom:1067.100586px;}
.y9b{bottom:1067.296875px;}
.y54{bottom:1067.297607px;}
.y10b{bottom:1067.298340px;}
.y2ac{bottom:1071.674560px;}
.y290{bottom:1074.539062px;}
.ybe{bottom:1081.025391px;}
.y35{bottom:1087.010008px;}
.y17c{bottom:1087.010742px;}
.y1f6{bottom:1092.638673px;}
.ye{bottom:1094.143798px;}
.y2ab{bottom:1097.514404px;}
.y134{bottom:1098.266602px;}
.y9a{bottom:1098.344238px;}
.y53{bottom:1098.344970px;}
.y10a{bottom:1098.345704px;}
.h25{height:16.921875px;}
.h2a{height:16.927734px;}
.h27{height:16.933594px;}
.h2d{height:22.154297px;}
.h2b{height:22.160156px;}
.h1d{height:31.277345px;}
.h19{height:32.273438px;}
.h10{height:32.998534px;}
.h20{height:46.792969px;}
.h1a{height:46.798829px;}
.h1b{height:47.961914px;}
.h1f{height:48.410156px;}
.h1e{height:49.537353px;}
.hf{height:49.992188px;}
.h13{height:50.247071px;}
.h28{height:50.777345px;}
.h2c{height:50.789062px;}
.h26{height:51.024901px;}
.h11{height:53.291014px;}
.h14{height:53.789061px;}
.h24{height:56.299806px;}
.ha{height:58.910158px;}
.h9{height:59.167970px;}
.h8{height:59.715822px;}
.h22{height:62.320312px;}
.h6{height:63.949219px;}
.h5{height:64.546875px;}
.h17{height:65.144531px;}
.h18{height:65.691213px;}
.h29{height:66.462891px;}
.h12{height:67.495605px;}
.he{height:75.304685px;}
.h7{height:79.936523px;}
.h15{height:84.744141px;}
.hd{height:86.062503px;}
.h2{height:95.923828px;}
.h4{height:96.820313px;}
.hc{height:107.578122px;}
.hb{height:107.625000px;}
.h1c{height:108.890625px;}
.h21{height:108.896484px;}
.h16{height:119.241211px;}
.h1{height:123.158935px;}
.h23{height:124.417970px;}
.h3{height:528.645270px;}
.h0{height:1263.000000px;}
.w6{width:88.875000px;}
.wa{width:90.000000px;}
.w7{width:106.875000px;}
.wb{width:108.000000px;}
.wf{width:135.000000px;}
.wc{width:223.875000px;}
.wd{width:255.375000px;}
.w10{width:302.625000px;}
.w8{width:306.000000px;}
.w4{width:307.125000px;}
.w2{width:315.000000px;}
.w9{width:322.875000px;}
.w5{width:324.000000px;}
.w1{width:354.375000px;}
.we{width:390.375000px;}
.w3{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:7.976074px;}
.x31{left:9.846625px;}
.x1a{left:11.368137px;}
.x1d{left:12.708040px;}
.x2e{left:14.355346px;}
.x8{left:15.622559px;}
.x32{left:16.728238px;}
.x18{left:17.847548px;}
.x27{left:19.967179px;}
.x19{left:21.797424px;}
.x28{left:23.294724px;}
.x37{left:24.390532px;}
.x1c{left:25.537085px;}
.x2{left:26.703369px;}
.x1e{left:28.705224px;}
.x21{left:30.367163px;}
.x42{left:32.369019px;}
.x7{left:33.987305px;}
.x2c{left:35.519760px;}
.x38{left:37.323715px;}
.x29{left:39.017490px;}
.x2d{left:43.900697px;}
.x17{left:46.125000px;}
.x24{left:48.190653px;}
.x43{left:49.247315px;}
.x45{left:51.208374px;}
.x23{left:54.121321px;}
.x60{left:55.125000px;}
.x25{left:57.243885px;}
.x41{left:58.696656px;}
.x48{left:61.715698px;}
.x1f{left:64.524979px;}
.x33{left:66.451767px;}
.x46{left:69.576416px;}
.x26{left:72.962488px;}
.x2b{left:75.451733px;}
.x2f{left:81.382419px;}
.x5{left:83.458740px;}
.x47{left:86.253662px;}
.x6{left:87.974121px;}
.x16{left:89.263607px;}
.x44{left:96.938965px;}
.x14{left:99.012316px;}
.xe{left:108.000000px;}
.x1{left:109.125000px;}
.x36{left:111.525366px;}
.x3b{left:114.337128px;}
.x5a{left:116.691068px;}
.x22{left:118.637178px;}
.x55{left:121.062716px;}
.x4b{left:122.121412px;}
.x4f{left:123.280744px;}
.x35{left:124.436568px;}
.x51{left:125.913395px;}
.x2a{left:127.807182px;}
.x49{left:129.427621px;}
.x5d{left:130.623182px;}
.x53{left:133.010279px;}
.xf{left:135.000000px;}
.x1b{left:136.125000px;}
.x39{left:137.344139px;}
.x4d{left:140.843824px;}
.x5e{left:143.017571px;}
.x34{left:149.940917px;}
.x20{left:158.940926px;}
.xb{left:162.983062px;}
.x4e{left:165.117345px;}
.x3e{left:168.750000px;}
.x3d{left:169.875000px;}
.x4a{left:177.247298px;}
.x5c{left:178.281842px;}
.x50{left:184.283801px;}
.x57{left:187.796782px;}
.x10{left:189.000000px;}
.x59{left:200.082484px;}
.x3c{left:216.000000px;}
.x4c{left:217.544927px;}
.x3f{left:236.519123px;}
.x13{left:244.125000px;}
.x64{left:250.292171px;}
.x5f{left:270.990950px;}
.x58{left:291.444300px;}
.x54{left:301.475745px;}
.x61{left:311.625000px;}
.x40{left:334.125000px;}
.x5b{left:339.693458px;}
.xc{left:391.204249px;}
.x63{left:399.375000px;}
.x56{left:409.027961px;}
.xd{left:416.453040px;}
.x52{left:425.367315px;}
.x3{left:465.750000px;}
.x30{left:551.250000px;}
.x15{left:552.375000px;}
.x9{left:559.438763px;}
.xa{left:562.093065px;}
.x62{left:703.125000px;}
.x11{left:766.573380px;}
.x3a{left:767.798010px;}
.x12{left:775.743390px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.214453pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:14.811951pt;}
.ls3{letter-spacing:16.000000pt;}
.ls7{letter-spacing:20.000000pt;}
.ls2{letter-spacing:26.656250pt;}
.ls5{letter-spacing:31.999990pt;}
.ls4{letter-spacing:32.000000pt;}
.ls8{letter-spacing:40.000000pt;}
.ls6{letter-spacing:44.000000pt;}
.lsa{letter-spacing:55.999990pt;}
.ls1{letter-spacing:57.343750pt;}
.ls9{letter-spacing:80.000000pt;}
.ws4{word-spacing:-29.635416pt;}
.ws2b{word-spacing:-23.708334pt;}
.ws3{word-spacing:-16.299479pt;}
.ws35{word-spacing:-16.000000pt;}
.wsa6{word-spacing:-15.239584pt;}
.wsa8{word-spacing:-14.166666pt;}
.ws30{word-spacing:-13.333333pt;}
.wsa5{word-spacing:-12.000000pt;}
.wsa7{word-spacing:-0.045333pt;}
.ws31{word-spacing:-0.010418pt;}
.wse{word-spacing:-0.000031pt;}
.ws7e{word-spacing:-0.000029pt;}
.ws15{word-spacing:-0.000020pt;}
.ws22{word-spacing:-0.000011pt;}
.wsb{word-spacing:-0.000010pt;}
.ws28{word-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws82{word-spacing:0.000000pt;}
.ws24{word-spacing:0.000009pt;}
.ws4c{word-spacing:0.000010pt;}
.ws3c{word-spacing:0.000019pt;}
.ws49{word-spacing:0.000030pt;}
.ws5f{word-spacing:3.999968pt;}
.ws8{word-spacing:3.999970pt;}
.ws37{word-spacing:3.999979pt;}
.ws3d{word-spacing:3.999980pt;}
.ws7{word-spacing:3.999990pt;}
.ws52{word-spacing:3.999997pt;}
.ws96{word-spacing:3.999999pt;}
.ws10{word-spacing:4.000000pt;}
.wsc{word-spacing:4.000002pt;}
.ws4a{word-spacing:4.000008pt;}
.ws16{word-spacing:4.000010pt;}
.ws3b{word-spacing:4.000020pt;}
.ws47{word-spacing:4.000030pt;}
.ws19{word-spacing:7.999970pt;}
.ws39{word-spacing:7.999979pt;}
.ws1b{word-spacing:7.999980pt;}
.ws7d{word-spacing:7.999988pt;}
.ws9{word-spacing:7.999990pt;}
.ws65{word-spacing:7.999998pt;}
.ws46{word-spacing:7.999999pt;}
.ws11{word-spacing:8.000000pt;}
.ws4e{word-spacing:8.000001pt;}
.ws3f{word-spacing:8.000002pt;}
.ws3a{word-spacing:8.000008pt;}
.ws4b{word-spacing:8.000009pt;}
.ws25{word-spacing:8.000020pt;}
.ws54{word-spacing:8.000029pt;}
.ws26{word-spacing:10.687500pt;}
.ws9c{word-spacing:11.999968pt;}
.ws51{word-spacing:11.999970pt;}
.ws2e{word-spacing:11.999980pt;}
.wsd{word-spacing:11.999990pt;}
.ws60{word-spacing:11.999997pt;}
.ws40{word-spacing:11.999999pt;}
.ws12{word-spacing:12.000000pt;}
.ws99{word-spacing:12.000002pt;}
.ws45{word-spacing:12.000009pt;}
.wsa0{word-spacing:12.000010pt;}
.ws71{word-spacing:12.000019pt;}
.ws4d{word-spacing:12.000020pt;}
.wsa1{word-spacing:12.000030pt;}
.ws5e{word-spacing:15.999970pt;}
.ws21{word-spacing:15.999980pt;}
.ws1c{word-spacing:15.999990pt;}
.ws2f{word-spacing:15.999997pt;}
.ws17{word-spacing:16.000000pt;}
.ws5c{word-spacing:16.000002pt;}
.ws13{word-spacing:16.000010pt;}
.ws8d{word-spacing:16.000019pt;}
.ws14{word-spacing:16.000020pt;}
.ws36{word-spacing:19.999969pt;}
.ws27{word-spacing:19.999980pt;}
.ws4f{word-spacing:19.999988pt;}
.ws6{word-spacing:19.999990pt;}
.ws2c{word-spacing:19.999998pt;}
.ws5{word-spacing:19.999999pt;}
.ws77{word-spacing:20.000000pt;}
.ws48{word-spacing:20.000009pt;}
.ws50{word-spacing:20.000020pt;}
.ws9f{word-spacing:20.000029pt;}
.ws5d{word-spacing:23.999979pt;}
.ws1a{word-spacing:23.999980pt;}
.ws78{word-spacing:23.999988pt;}
.ws20{word-spacing:23.999990pt;}
.ws42{word-spacing:23.999998pt;}
.ws1f{word-spacing:24.000000pt;}
.ws53{word-spacing:24.000002pt;}
.ws87{word-spacing:24.000009pt;}
.ws57{word-spacing:24.000010pt;}
.ws74{word-spacing:24.000020pt;}
.ws3e{word-spacing:24.000030pt;}
.ws34{word-spacing:26.687500pt;}
.ws8c{word-spacing:27.999970pt;}
.ws29{word-spacing:27.999980pt;}
.ws97{word-spacing:27.999987pt;}
.ws1e{word-spacing:27.999988pt;}
.ws2d{word-spacing:27.999990pt;}
.ws63{word-spacing:27.999998pt;}
.wsf{word-spacing:28.000000pt;}
.ws44{word-spacing:28.000009pt;}
.ws64{word-spacing:28.000010pt;}
.ws41{word-spacing:28.000030pt;}
.ws9b{word-spacing:31.999969pt;}
.ws5a{word-spacing:31.999980pt;}
.ws32{word-spacing:31.999989pt;}
.ws5b{word-spacing:31.999998pt;}
.ws33{word-spacing:32.000000pt;}
.ws59{word-spacing:32.000001pt;}
.ws66{word-spacing:32.000010pt;}
.ws80{word-spacing:35.999988pt;}
.ws23{word-spacing:35.999990pt;}
.ws43{word-spacing:35.999999pt;}
.ws90{word-spacing:36.000000pt;}
.ws38{word-spacing:36.000003pt;}
.ws8f{word-spacing:36.000010pt;}
.ws2a{word-spacing:39.982594pt;}
.wsa{word-spacing:39.999980pt;}
.ws62{word-spacing:39.999990pt;}
.ws8e{word-spacing:40.000000pt;}
.ws9d{word-spacing:40.000002pt;}
.ws81{word-spacing:40.000010pt;}
.ws9e{word-spacing:40.000017pt;}
.ws1d{word-spacing:43.999990pt;}
.ws61{word-spacing:44.000002pt;}
.ws55{word-spacing:44.000009pt;}
.ws18{word-spacing:47.999999pt;}
.ws6b{word-spacing:51.999979pt;}
.ws6a{word-spacing:52.000030pt;}
.ws88{word-spacing:56.000000pt;}
.ws84{word-spacing:60.000000pt;}
.ws83{word-spacing:63.999990pt;}
.ws7a{word-spacing:64.000000pt;}
.wsa4{word-spacing:67.999988pt;}
.ws79{word-spacing:68.000000pt;}
.wsa3{word-spacing:72.000000pt;}
.ws56{word-spacing:83.999990pt;}
.ws58{word-spacing:92.000010pt;}
.ws92{word-spacing:95.999990pt;}
.ws93{word-spacing:96.000000pt;}
.ws91{word-spacing:100.000008pt;}
.ws95{word-spacing:111.999980pt;}
.ws8a{word-spacing:112.000000pt;}
.ws89{word-spacing:112.000010pt;}
.ws67{word-spacing:123.999990pt;}
.ws68{word-spacing:124.000000pt;}
.ws94{word-spacing:132.000000pt;}
.ws73{word-spacing:152.000000pt;}
.ws6c{word-spacing:155.999990pt;}
.ws6d{word-spacing:156.000000pt;}
.ws72{word-spacing:156.000010pt;}
.wsa2{word-spacing:231.999980pt;}
.ws75{word-spacing:239.999988pt;}
.ws76{word-spacing:240.000000pt;}
.ws70{word-spacing:259.999999pt;}
.ws86{word-spacing:268.000000pt;}
.ws85{word-spacing:272.000000pt;}
.ws6f{word-spacing:300.000000pt;}
.ws6e{word-spacing:303.999989pt;}
.ws7c{word-spacing:368.000000pt;}
.ws7b{word-spacing:371.999989pt;}
.ws8b{word-spacing:407.999980pt;}
.ws69{word-spacing:436.000010pt;}
.ws98{word-spacing:708.000000pt;}
.ws9a{word-spacing:740.000000pt;}
.ws7f{word-spacing:744.000000pt;}
.ws2{word-spacing:2120.064808pt;}
.ws1{word-spacing:2126.579843pt;}
._41{margin-left:-15.999999pt;}
._36{margin-left:-8.250000pt;}
._0{margin-left:-7.125000pt;}
._12{margin-left:-5.561467pt;}
._23{margin-left:-4.463056pt;}
._2{margin-left:-3.531250pt;}
._1{margin-left:-1.734376pt;}
._35{width:2.093749pt;}
._2d{width:15.999967pt;}
._3d{width:17.734374pt;}
._2c{width:20.000000pt;}
._44{width:23.062518pt;}
._29{width:24.000000pt;}
._2a{width:28.000002pt;}
._27{width:32.000020pt;}
._2e{width:36.000000pt;}
._28{width:39.999999pt;}
._39{width:42.687500pt;}
._30{width:44.000002pt;}
._38{width:46.281250pt;}
._32{width:48.000100pt;}
._37{width:52.000000pt;}
._31{width:56.000098pt;}
._2b{width:60.000000pt;}
._34{width:64.000048pt;}
._2f{width:68.000000pt;}
._33{width:72.000002pt;}
._3f{width:80.000010pt;}
._3a{width:104.000001pt;}
._3b{width:112.000001pt;}
._43{width:115.666163pt;}
._40{width:132.000002pt;}
._45{width:152.000020pt;}
._3e{width:260.000010pt;}
._42{width:427.999989pt;}
._3c{width:455.999990pt;}
._a{width:474.951294pt;}
._9{width:488.042440pt;}
._8{width:505.753376pt;}
._46{width:727.359396pt;}
._47{width:760.000020pt;}
._1b{width:765.128071pt;}
._1a{width:778.219217pt;}
._13{width:989.491625pt;}
._11{width:1121.060371pt;}
._7{width:1128.862763pt;}
._e{width:1174.633284pt;}
._b{width:1200.672348pt;}
._d{width:1285.492661pt;}
._5{width:1288.649224pt;}
._6{width:1301.683079pt;}
._4{width:1326.750784pt;}
._f{width:1331.214019pt;}
._c{width:1378.378077pt;}
._14{width:1388.323394pt;}
._10{width:1416.096833pt;}
._19{width:1427.068183pt;}
._18{width:1537.870269pt;}
._20{width:1578.755685pt;}
._1f{width:1682.997874pt;}
._24{width:1734.776037pt;}
._3{width:1777.677876pt;}
._17{width:1792.302565pt;}
._1d{width:1805.365066pt;}
._22{width:1837.992670pt;}
._21{width:1857.557775pt;}
._1e{width:1869.297358pt;}
._1c{width:1883.654129pt;}
._16{width:1934.135900pt;}
._25{width:1953.672358pt;}
._15{width:1960.089025pt;}
._26{width:2066.180174pt;}
.fsb{font-size:28.799999pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:38.400002pt;}
.fsc{font-size:45.333332pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:53.333332pt;}
.fs3{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666664pt;}
.fs2{font-size:80.000000pt;}
.fs5{font-size:85.333336pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y2ce{bottom:3.702797pt;}
.y2c9{bottom:3.702799pt;}
.y2d3{bottom:3.708008pt;}
.y2cb{bottom:3.713216pt;}
.y2d1{bottom:5.450519pt;}
.y2dc{bottom:5.455729pt;}
.y2d5{bottom:5.460937pt;}
.y27f{bottom:9.588546pt;}
.y26f{bottom:9.593746pt;}
.y27c{bottom:9.593748pt;}
.y275{bottom:9.593754pt;}
.y287{bottom:9.593755pt;}
.y289{bottom:9.593759pt;}
.y277{bottom:9.598954pt;}
.y26a{bottom:9.598955pt;}
.y268{bottom:9.598959pt;}
.y273{bottom:9.598963pt;}
.y285{bottom:9.598967pt;}
.yb7{bottom:9.884106pt;}
.yc2{bottom:9.884110pt;}
.ycc{bottom:9.884111pt;}
.yab{bottom:9.884114pt;}
.ybc{bottom:9.884115pt;}
.yb2{bottom:9.884119pt;}
.yaf{bottom:9.884123pt;}
.y2d8{bottom:18.754886pt;}
.y26e{bottom:23.390626pt;}
.y27b{bottom:23.395828pt;}
.y267{bottom:23.395834pt;}
.ybb{bottom:25.216142pt;}
.yb1{bottom:25.216146pt;}
.yae{bottom:25.216150pt;}
.ycb{bottom:25.216151pt;}
.y2cd{bottom:33.796550pt;}
.y27a{bottom:37.192708pt;}
.yba{bottom:40.548168pt;}
.yad{bottom:40.548176pt;}
.yca{bottom:40.548178pt;}
.ye3{bottom:40.548182pt;}
.y2d0{bottom:44.841146pt;}
.y99{bottom:53.304039pt;}
.y34{bottom:53.304519pt;}
.y4a{bottom:53.304692pt;}
.y166{bottom:53.305332pt;}
.yc9{bottom:55.880204pt;}
.yb9{bottom:55.880208pt;}
.y2{bottom:64.068359pt;}
.ye8{bottom:71.212240pt;}
.yc8{bottom:71.212244pt;}
.yc7{bottom:86.544271pt;}
.y28f{bottom:99.031243pt;}
.y33{bottom:101.675786pt;}
.ya7{bottom:102.309900pt;}
.y243{bottom:102.776047pt;}
.y196{bottom:104.090814pt;}
.y24c{bottom:107.177087pt;}
.y52{bottom:108.376953pt;}
.yb8{bottom:111.911461pt;}
.y6e{bottom:113.442060pt;}
.ye4{bottom:114.833333pt;}
.y117{bottom:117.109380pt;}
.y7e{bottom:117.110673pt;}
.y1e4{bottom:117.111980pt;}
.y1b0{bottom:118.671873pt;}
.y28e{bottom:119.422847pt;}
.y165{bottom:120.781247pt;}
.y265{bottom:121.979167pt;}
.y155{bottom:124.377607pt;}
.ya6{bottom:129.907553pt;}
.ye5{bottom:130.165364pt;}
.y242{bottom:130.374993pt;}
.y32{bottom:131.874346pt;}
.y24b{bottom:134.776047pt;}
.y51{bottom:135.974607pt;}
.y17b{bottom:138.294273pt;}
.y6d{bottom:141.039713pt;}
.y100{bottom:141.505207pt;}
.yb6{bottom:142.575524pt;}
.y152{bottom:143.044273pt;}
.y7d{bottom:144.708327pt;}
.y1d1{bottom:145.299473pt;}
.y208{bottom:146.489580pt;}
.y195{bottom:148.135414pt;}
.y20f{bottom:148.374993pt;}
.y98{bottom:148.376300pt;}
.y164{bottom:148.377607pt;}
.y264{bottom:149.578127pt;}
.y16b{bottom:151.973953pt;}
.y154{bottom:151.975260pt;}
.y2c7{bottom:155.917314pt;}
.ya5{bottom:157.505207pt;}
.ybd{bottom:157.907556pt;}
.y241{bottom:157.968753pt;}
.y31{bottom:162.072918pt;}
.y24a{bottom:162.374993pt;}
.y50{bottom:163.572260pt;}
.y6c{bottom:168.637367pt;}
.yff{bottom:169.102860pt;}
.y151{bottom:170.640620pt;}
.y109{bottom:172.304687pt;}
.y7c{bottom:172.305993pt;}
.y1e3{bottom:172.307287pt;}
.y1d0{bottom:172.895833pt;}
.y1af{bottom:173.901041pt;}
.y207{bottom:174.088540pt;}
.ye1{bottom:175.829425pt;}
.y194{bottom:175.838548pt;}
.y97{bottom:175.973953pt;}
.y263{bottom:177.177087pt;}
.y2c6{bottom:178.886061pt;}
.y133{bottom:179.572913pt;}
.y30{bottom:182.938145pt;}
.y2aa{bottom:183.063154pt;}
.ya4{bottom:185.102860pt;}
.y240{bottom:185.567713pt;}
.y28d{bottom:186.520828pt;}
.yd{bottom:186.529300pt;}
.yb4{bottom:188.239577pt;}
.y1f5{bottom:189.234380pt;}
.y249{bottom:189.968753pt;}
.y4f{bottom:191.169927pt;}
.y17a{bottom:193.489580pt;}
.y6b{bottom:196.235020pt;}
.yfe{bottom:196.700527pt;}
.y150{bottom:198.239580pt;}
.y7b{bottom:199.903647pt;}
.y1e6{bottom:199.906247pt;}
.y1cf{bottom:200.494793pt;}
.y1ae{bottom:201.604161pt;}
.y206{bottom:201.687500pt;}
.y2c5{bottom:201.854821pt;}
.y193{bottom:203.541667pt;}
.yb5{bottom:203.571609pt;}
.y96{bottom:203.571620pt;}
.y163{bottom:203.572913pt;}
.y2f{bottom:203.803385pt;}
.y262{bottom:204.770833pt;}
.y2a9{bottom:206.031901pt;}
.ye2{bottom:206.493488pt;}
.y132{bottom:207.170567pt;}
.y16a{bottom:207.171873pt;}
.ya3{bottom:212.700527pt;}
.y23f{bottom:213.166660pt;}
.y1f4{bottom:216.833327pt;}
.y248{bottom:217.567713pt;}
.y4e{bottom:218.767580pt;}
.y179{bottom:221.085940pt;}
.ydf{bottom:221.825520pt;}
.yfd{bottom:224.298180pt;}
.y2e{bottom:224.668626pt;}
.y2c4{bottom:224.823567pt;}
.y14f{bottom:225.835940pt;}
.y108{bottom:227.499993pt;}
.y7a{bottom:227.501300pt;}
.y1e2{bottom:227.502607pt;}
.y1ce{bottom:228.093753pt;}
.y2a8{bottom:229.000647pt;}
.y28b{bottom:229.119788pt;}
.y205{bottom:229.281247pt;}
.y1ad{bottom:229.307294pt;}
.yc{bottom:230.126953pt;}
.y95{bottom:231.169273pt;}
.y162{bottom:231.171873pt;}
.y6a{bottom:231.194003pt;}
.y192{bottom:231.208327pt;}
.y228{bottom:231.906247pt;}
.y261{bottom:232.369793pt;}
.yac{bottom:233.903640pt;}
.y131{bottom:234.768233pt;}
.y1e5{bottom:234.863283pt;}
.ya2{bottom:240.298180pt;}
.y28c{bottom:242.916663pt;}
.y1f3{bottom:244.427087pt;}
.y247{bottom:245.166660pt;}
.y286{bottom:246.520827pt;}
.y2c3{bottom:247.792314pt;}
.y178{bottom:248.684900pt;}
.yb0{bottom:249.235671pt;}
.y9{bottom:249.814136pt;}
.yfc{bottom:251.895833pt;}
.y2a7{bottom:251.969394pt;}
.ye0{bottom:252.489583pt;}
.y23e{bottom:252.890622pt;}
.y14e{bottom:253.434900pt;}
.y2d{bottom:254.867186pt;}
.y79{bottom:255.098953pt;}
.y1cd{bottom:255.690100pt;}
.y204{bottom:256.880207pt;}
.y1ac{bottom:257.010414pt;}
.y4d{bottom:258.491529pt;}
.y94{bottom:258.766927pt;}
.y161{bottom:258.768233pt;}
.y20e{bottom:258.770833pt;}
.y227{bottom:259.505207pt;}
.y260{bottom:259.968753pt;}
.y130{bottom:262.365887pt;}
.yb3{bottom:264.567703pt;}
.y169{bottom:267.627600pt;}
.y2c2{bottom:270.761061pt;}
.y246{bottom:272.765620pt;}
.y28a{bottom:272.916663pt;}
.y2a6{bottom:273.864580pt;}
.ya1{bottom:275.256512pt;}
.y177{bottom:276.281247pt;}
.yfb{bottom:279.493487pt;}
.y14d{bottom:281.031247pt;}
.y8{bottom:281.551443pt;}
.y107{bottom:282.695313pt;}
.y78{bottom:282.696620pt;}
.y1e1{bottom:282.697913pt;}
.yde{bottom:282.821613pt;}
.yb{bottom:282.923833pt;}
.y1cc{bottom:283.286460pt;}
.y203{bottom:284.479167pt;}
.y1ab{bottom:284.677087pt;}
.y2c{bottom:285.065758pt;}
.y93{bottom:286.364580pt;}
.y191{bottom:286.440108pt;}
.y226{bottom:287.104167pt;}
.y25f{bottom:287.562500pt;}
.y12f{bottom:289.963540pt;}
.y2c1{bottom:293.729821pt;}
.yaa{bottom:294.899743pt;}
.ydd{bottom:298.153644pt;}
.y1f2{bottom:299.658854pt;}
.y288{bottom:301.718743pt;}
.y176{bottom:303.880207pt;}
.y2b{bottom:305.930985pt;}
.yfa{bottom:307.091140pt;}
.y14c{bottom:308.630207pt;}
.y69{bottom:310.294273pt;}
.y1e0{bottom:310.296873pt;}
.y1cb{bottom:310.885420pt;}
.y202{bottom:312.078127pt;}
.y1aa{bottom:312.309894pt;}
.y245{bottom:312.489582pt;}
.y7{bottom:313.288750pt;}
.y92{bottom:313.962233pt;}
.y160{bottom:313.963540pt;}
.y190{bottom:314.143228pt;}
.y225{bottom:314.703127pt;}
.y25e{bottom:315.161460pt;}
.y2c0{bottom:316.698567pt;}
.y12e{bottom:317.561193pt;}
.ya8{bottom:317.654950pt;}
.ya{bottom:326.521486pt;}
.y2a{bottom:326.796225pt;}
.y1f1{bottom:327.328127pt;}
.ya0{bottom:330.885411pt;}
.y175{bottom:331.476567pt;}
.yf9{bottom:334.688807pt;}
.y14b{bottom:336.226567pt;}
.y23d{bottom:337.156247pt;}
.y106{bottom:337.890620pt;}
.y68{bottom:337.891927pt;}
.y1df{bottom:337.893233pt;}
.y2a5{bottom:338.136061pt;}
.y1ca{bottom:338.484380pt;}
.y2bf{bottom:339.667314pt;}
.y201{bottom:339.677087pt;}
.y1a9{bottom:340.013014pt;}
.y91{bottom:341.559900pt;}
.y15f{bottom:341.562500pt;}
.y18f{bottom:341.846347pt;}
.y224{bottom:342.302087pt;}
.y4c{bottom:342.759767pt;}
.y25d{bottom:342.760420pt;}
.ydb{bottom:343.817711pt;}
.y6{bottom:345.026056pt;}
.y12d{bottom:345.158860pt;}
.y284{bottom:347.312495pt;}
.y29{bottom:347.661451pt;}
.y3{bottom:355.792307pt;}
.y174{bottom:359.075527pt;}
.ydc{bottom:359.149743pt;}
.y14a{bottom:363.825527pt;}
.y23c{bottom:364.755207pt;}
.y67{bottom:365.489580pt;}
.y200{bottom:367.270833pt;}
.y9f{bottom:367.682289pt;}
.y1a8{bottom:367.716148pt;}
.y28{bottom:368.526691pt;}
.y20d{bottom:369.156247pt;}
.y90{bottom:369.157553pt;}
.y15e{bottom:369.158860pt;}
.y18e{bottom:369.549481pt;}
.yf8{bottom:369.647139pt;}
.y223{bottom:369.895833pt;}
.y49{bottom:370.357420pt;}
.y25c{bottom:370.359380pt;}
.y12c{bottom:372.756513pt;}
.y5{bottom:376.763363pt;}
.y1c9{bottom:378.208329pt;}
.y1f0{bottom:382.520833pt;}
.y2be{bottom:382.723953pt;}
.y2a4{bottom:384.073567pt;}
.y173{bottom:386.671873pt;}
.y27{bottom:389.391931pt;}
.yd9{bottom:389.481764pt;}
.y283{bottom:389.911455pt;}
.y149{bottom:391.421873pt;}
.y23b{bottom:392.354167pt;}
.y105{bottom:393.085940pt;}
.y66{bottom:393.087233pt;}
.y1de{bottom:393.088540pt;}
.y1ff{bottom:394.869793pt;}
.y1a7{bottom:395.385420pt;}
.y8f{bottom:396.755207pt;}
.y18d{bottom:397.218753pt;}
.y222{bottom:397.494793pt;}
.y48{bottom:397.955073pt;}
.y25b{bottom:397.958327pt;}
.y12b{bottom:400.354167pt;}
.yda{bottom:404.813796pt;}
.y280{bottom:406.114583pt;}
.y2a3{bottom:407.042314pt;}
.y1ef{bottom:410.153641pt;}
.y26{bottom:410.257158pt;}
.y172{bottom:414.270833pt;}
.y148{bottom:419.020833pt;}
.y23a{bottom:419.953127pt;}
.y65{bottom:420.684900pt;}
.y1dd{bottom:420.687500pt;}
.y1fe{bottom:422.468753pt;}
.y8e{bottom:424.352860pt;}
.y15d{bottom:424.354167pt;}
.y4{bottom:424.500657pt;}
.y18c{bottom:424.851561pt;}
.y221{bottom:425.093753pt;}
.yf7{bottom:425.276035pt;}
.y25a{bottom:425.552087pt;}
.y4b{bottom:425.552740pt;}
.y12a{bottom:427.951820pt;}
.y2a2{bottom:430.011061pt;}
.y25{bottom:431.122398pt;}
.y282{bottom:432.510415pt;}
.yd7{bottom:435.145831pt;}
.y1ee{bottom:437.856774pt;}
.y171{bottom:441.867193pt;}
.y147{bottom:446.617193pt;}
.y2bd{bottom:447.276687pt;}
.y239{bottom:447.552087pt;}
.y104{bottom:448.281247pt;}
.y64{bottom:448.282553pt;}
.y1dc{bottom:448.283860pt;}
.y1fd{bottom:450.062500pt;}
.y1bb{bottom:450.299481pt;}
.yd8{bottom:450.477863pt;}
.y1a6{bottom:450.580727pt;}
.y8d{bottom:451.950527pt;}
.y15c{bottom:451.953127pt;}
.y24{bottom:451.987625pt;}
.y18b{bottom:452.554681pt;}
.y220{bottom:452.687500pt;}
.y47{bottom:453.150393pt;}
.y259{bottom:453.151047pt;}
.y129{bottom:455.549473pt;}
.y1c8{bottom:462.473953pt;}
.yd4{bottom:465.477867pt;}
.y1ed{bottom:465.559894pt;}
.y23{bottom:468.852866pt;}
.y170{bottom:469.466140pt;}
.y146{bottom:474.216140pt;}
.y281{bottom:475.109375pt;}
.y238{bottom:475.145833pt;}
.y63{bottom:475.880207pt;}
.y2a1{bottom:475.953781pt;}
.y1fc{bottom:477.661460pt;}
.y1ba{bottom:478.002601pt;}
.y1a5{bottom:478.177087pt;}
.y8c{bottom:479.548180pt;}
.y168{bottom:479.549473pt;}
.y20c{bottom:479.552087pt;}
.y18a{bottom:480.257814pt;}
.y21f{bottom:480.286460pt;}
.y46{bottom:480.748047pt;}
.y258{bottom:480.749993pt;}
.yd5{bottom:480.809897pt;}
.y128{bottom:483.147140pt;}
.y1c7{bottom:490.072913pt;}
.y2bc{bottom:493.214194pt;}
.y1ec{bottom:493.229167pt;}
.yd6{bottom:496.141929pt;}
.y16f{bottom:497.062500pt;}
.y2a0{bottom:498.922527pt;}
.y22{bottom:499.051439pt;}
.y145{bottom:501.812500pt;}
.y237{bottom:502.744793pt;}
.y103{bottom:503.476567pt;}
.y62{bottom:503.477860pt;}
.y1db{bottom:503.479167pt;}
.y1b9{bottom:505.705734pt;}
.y8b{bottom:507.145833pt;}
.y21e{bottom:507.885420pt;}
.y189{bottom:507.924473pt;}
.y257{bottom:508.343753pt;}
.y45{bottom:508.345700pt;}
.yf6{bottom:509.544273pt;}
.y127{bottom:510.744793pt;}
.y2bb{bottom:516.182941pt;}
.y1fb{bottom:517.385409pt;}
.y1c6{bottom:517.671873pt;}
.y27e{bottom:520.708329pt;}
.y1eb{bottom:520.861974pt;}
.y29f{bottom:521.891274pt;}
.y16e{bottom:524.661460pt;}
.yd3{bottom:526.473956pt;}
.y21{bottom:529.249998pt;}
.y144{bottom:529.411460pt;}
.y236{bottom:530.343753pt;}
.y61{bottom:531.075527pt;}
.y1a4{bottom:533.408854pt;}
.y27d{bottom:534.499996pt;}
.y8a{bottom:534.743487pt;}
.y15b{bottom:534.744793pt;}
.y21d{bottom:535.484380pt;}
.y256{bottom:535.942713pt;}
.y44{bottom:535.943353pt;}
.yf5{bottom:537.141927pt;}
.y126{bottom:538.342447pt;}
.ya9{bottom:538.436190pt;}
.y77{bottom:538.436843pt;}
.y2ba{bottom:539.151687pt;}
.y1c5{bottom:545.268233pt;}
.y1ea{bottom:548.565108pt;}
.y20{bottom:550.115238pt;}
.y16d{bottom:552.257807pt;}
.y143{bottom:557.007807pt;}
.y235{bottom:557.937500pt;}
.y102{bottom:558.671873pt;}
.y60{bottom:558.673180pt;}
.y1da{bottom:558.674473pt;}
.y1a3{bottom:561.111974pt;}
.y89{bottom:562.341140pt;}
.y15a{bottom:562.343753pt;}
.y21c{bottom:563.083327pt;}
.y188{bottom:563.119793pt;}
.y279{bottom:563.302087pt;}
.y43{bottom:563.541020pt;}
.y255{bottom:563.541660pt;}
.yf4{bottom:564.739580pt;}
.y125{bottom:565.940100pt;}
.y29e{bottom:567.828781pt;}
.yd2{bottom:569.466140pt;}
.y1f{bottom:570.980465pt;}
.y1e9{bottom:576.268227pt;}
.y278{bottom:577.098961pt;}
.y142{bottom:584.606767pt;}
.y1c4{bottom:584.992182pt;}
.y2b9{bottom:585.089194pt;}
.y234{bottom:585.536460pt;}
.y5f{bottom:586.270833pt;}
.y1b8{bottom:588.781247pt;}
.y1a2{bottom:588.815107pt;}
.y20b{bottom:589.937500pt;}
.y88{bottom:589.938807pt;}
.y159{bottom:589.940100pt;}
.y21b{bottom:590.677087pt;}
.y187{bottom:590.718753pt;}
.y29d{bottom:590.797527pt;}
.y42{bottom:591.138673pt;}
.y254{bottom:591.140620pt;}
.y1e{bottom:591.845705pt;}
.yf3{bottom:592.337233pt;}
.y124{bottom:593.537767pt;}
.y116{bottom:593.632817pt;}
.y1e8{bottom:603.937500pt;}
.y16c{bottom:605.343750pt;}
.y272{bottom:607.098952pt;}
.y2b8{bottom:608.063154pt;}
.y141{bottom:612.203127pt;}
.y1d{bottom:612.710931pt;}
.y233{bottom:613.135420pt;}
.y29c{bottom:613.766274pt;}
.y5e{bottom:613.868487pt;}
.y1d9{bottom:613.869793pt;}
.y1a1{bottom:616.518227pt;}
.y87{bottom:617.536460pt;}
.y76{bottom:617.537113pt;}
.y21a{bottom:618.276047pt;}
.y41{bottom:618.736327pt;}
.y253{bottom:618.739580pt;}
.y276{bottom:619.697921pt;}
.yf2{bottom:619.934900pt;}
.y123{bottom:621.135420pt;}
.y2b7{bottom:631.031901pt;}
.y1c{bottom:633.576171pt;}
.y29b{bottom:636.740234pt;}
.y140{bottom:639.802087pt;}
.yd0{bottom:640.598960pt;}
.y232{bottom:640.734380pt;}
.y5d{bottom:641.466140pt;}
.y1d8{bottom:641.468753pt;}
.y1e7{bottom:643.661462pt;}
.y1b7{bottom:644.010414pt;}
.y1a0{bottom:644.221347pt;}
.y86{bottom:645.134113pt;}
.y75{bottom:645.134767pt;}
.y158{bottom:645.135420pt;}
.y219{bottom:645.874993pt;}
.y186{bottom:645.947921pt;}
.y252{bottom:646.333327pt;}
.y40{bottom:646.333980pt;}
.yf1{bottom:647.532553pt;}
.y122{bottom:648.733073pt;}
.y101{bottom:648.826817pt;}
.y1b{bottom:654.441411pt;}
.ycf{bottom:655.930991pt;}
.y29a{bottom:659.708981pt;}
.y274{bottom:662.296868pt;}
.y13f{bottom:667.398433pt;}
.y231{bottom:668.333327pt;}
.y5c{bottom:669.063807pt;}
.y1c3{bottom:669.260420pt;}
.yd1{bottom:671.263023pt;}
.y1b6{bottom:671.713547pt;}
.y19f{bottom:671.890620pt;}
.y85{bottom:672.731767pt;}
.y74{bottom:672.732420pt;}
.y115{bottom:672.733073pt;}
.y157{bottom:672.734380pt;}
.y218{bottom:673.468753pt;}
.y185{bottom:673.651041pt;}
.y3f{bottom:673.931647pt;}
.y251{bottom:673.932287pt;}
.yf0{bottom:675.130207pt;}
.y1a{bottom:675.306638pt;}
.y121{bottom:676.330727pt;}
.y2b6{bottom:676.969394pt;}
.y299{bottom:682.677727pt;}
.y13e{bottom:694.997393pt;}
.y230{bottom:695.927087pt;}
.y19{bottom:696.171878pt;}
.y5b{bottom:696.661460pt;}
.y1c2{bottom:696.859380pt;}
.y1b5{bottom:699.416667pt;}
.y2b5{bottom:699.938154pt;}
.y84{bottom:700.329433pt;}
.y73{bottom:700.330073pt;}
.y114{bottom:700.330727pt;}
.y20a{bottom:700.333327pt;}
.y217{bottom:701.067713pt;}
.y184{bottom:701.354161pt;}
.y3e{bottom:701.529300pt;}
.y250{bottom:701.531247pt;}
.ycd{bottom:701.595053pt;}
.yef{bottom:702.727860pt;}
.y120{bottom:703.928380pt;}
.y298{bottom:705.646487pt;}
.y271{bottom:709.093743pt;}
.y1{bottom:716.224604pt;}
.y2db{bottom:716.427078pt;}
.y18{bottom:717.037105pt;}
.y2da{bottom:718.749997pt;}
.y13d{bottom:722.593753pt;}
.y2b4{bottom:722.906901pt;}
.y22f{bottom:723.526047pt;}
.y5a{bottom:724.259113pt;}
.y1d7{bottom:724.260420pt;}
.y19e{bottom:727.119787pt;}
.y83{bottom:727.927087pt;}
.y72{bottom:727.927740pt;}
.y113{bottom:727.928380pt;}
.y216{bottom:728.666660pt;}
.y183{bottom:729.057294pt;}
.y24f{bottom:729.124993pt;}
.y3d{bottom:729.126953pt;}
.yee{bottom:730.325527pt;}
.y11f{bottom:731.526047pt;}
.yce{bottom:732.259116pt;}
.y1c1{bottom:736.583329pt;}
.y17{bottom:737.902345pt;}
.y270{bottom:739.093743pt;}
.y2b3{bottom:745.875647pt;}
.y13c{bottom:750.192713pt;}
.y22e{bottom:751.124993pt;}
.y297{bottom:751.583981pt;}
.y1d6{bottom:751.859380pt;}
.y19d{bottom:754.822921pt;}
.y82{bottom:755.524740pt;}
.y71{bottom:755.525393pt;}
.y112{bottom:755.526047pt;}
.y215{bottom:756.265620pt;}
.y182{bottom:756.723953pt;}
.y3c{bottom:756.724607pt;}
.y2d7{bottom:756.812500pt;}
.yed{bottom:757.923180pt;}
.y16{bottom:758.767571pt;}
.y11e{bottom:759.123700pt;}
.y59{bottom:759.218097pt;}
.yc6{bottom:762.591145pt;}
.y26d{bottom:767.895836pt;}
.y2b2{bottom:768.844394pt;}
.y2d9{bottom:769.531243pt;}
.y2d6{bottom:771.864587pt;}
.y269{bottom:772.697920pt;}
.y296{bottom:774.552727pt;}
.y13b{bottom:777.789060pt;}
.y22d{bottom:778.718753pt;}
.y1d5{bottom:779.455727pt;}
.y15{bottom:779.632811pt;}
.y19c{bottom:782.526041pt;}
.y81{bottom:783.122393pt;}
.y70{bottom:783.123047pt;}
.y111{bottom:783.123700pt;}
.y156{bottom:783.124993pt;}
.y214{bottom:783.864580pt;}
.y3b{bottom:784.322260pt;}
.y24e{bottom:784.322913pt;}
.yec{bottom:785.520833pt;}
.y11d{bottom:786.721353pt;}
.y1c0{bottom:793.252607pt;}
.y295{bottom:797.526687pt;}
.y2e0{bottom:799.989580pt;}
.y14{bottom:800.498051pt;}
.y13a{bottom:805.388020pt;}
.y22c{bottom:806.317713pt;}
.y1d4{bottom:807.052087pt;}
.yc4{bottom:808.587240pt;}
.y1b4{bottom:810.192713pt;}
.y19b{bottom:810.229161pt;}
.y209{bottom:810.718753pt;}
.y80{bottom:810.720047pt;}
.y6f{bottom:810.720700pt;}
.y110{bottom:810.721353pt;}
.y213{bottom:811.458327pt;}
.y26c{bottom:811.687503pt;}
.y3a{bottom:811.919927pt;}
.y181{bottom:811.921873pt;}
.yeb{bottom:813.118487pt;}
.y11c{bottom:814.319007pt;}
.y2b1{bottom:814.781901pt;}
.y294{bottom:820.495447pt;}
.y1bf{bottom:820.848953pt;}
.y13{bottom:821.363278pt;}
.y2d4{bottom:828.104163pt;}
.y2d2{bottom:830.432285pt;}
.y139{bottom:832.984380pt;}
.y22b{bottom:833.916660pt;}
.y1d3{bottom:834.651047pt;}
.y2b0{bottom:837.750647pt;}
.y19a{bottom:837.932294pt;}
.y7f{bottom:838.317713pt;}
.y58{bottom:838.318353pt;}
.y10f{bottom:838.319007pt;}
.y212{bottom:839.057287pt;}
.yc5{bottom:839.251303pt;}
.y39{bottom:839.517580pt;}
.y180{bottom:839.518233pt;}
.y24d{bottom:839.520833pt;}
.yea{bottom:840.716140pt;}
.y26b{bottom:841.687503pt;}
.y11b{bottom:841.916660pt;}
.y12{bottom:842.228518pt;}
.y2df{bottom:842.307287pt;}
.y1be{bottom:848.447913pt;}
.y1fa{bottom:848.718753pt;}
.y138{bottom:860.583327pt;}
.y2af{bottom:860.719394pt;}
.y22a{bottom:861.515620pt;}
.y11{bottom:863.093746pt;}
.y1b3{bottom:865.424481pt;}
.y199{bottom:865.635414pt;}
.y9e{bottom:865.915367pt;}
.y57{bottom:865.916020pt;}
.y10e{bottom:865.916660pt;}
.y293{bottom:866.432941pt;}
.y211{bottom:866.656247pt;}
.y17f{bottom:867.114580pt;}
.y38{bottom:867.115233pt;}
.y11a{bottom:869.514327pt;}
.yc1{bottom:869.583333pt;}
.y1d2{bottom:869.610675pt;}
.y266{bottom:873.489583pt;}
.y2cf{bottom:873.963541pt;}
.y153{bottom:874.777343pt;}
.y1bd{bottom:876.046873pt;}
.y1f9{bottom:876.312500pt;}
.y2cc{bottom:880.927083pt;}
.y2ae{bottom:883.688150pt;}
.ye7{bottom:884.251301pt;}
.y2de{bottom:884.619792pt;}
.yc3{bottom:884.915365pt;}
.y137{bottom:888.179688pt;}
.y292{bottom:889.401693pt;}
.y1b2{bottom:893.127603pt;}
.y10{bottom:893.292318pt;}
.y198{bottom:893.302083pt;}
.y9d{bottom:893.513021pt;}
.y56{bottom:893.513672pt;}
.y10d{bottom:893.514323pt;}
.y167{bottom:893.515625pt;}
.y210{bottom:894.250000pt;}
.y37{bottom:894.712891pt;}
.y17e{bottom:894.713541pt;}
.y2ca{bottom:895.968750pt;}
.y119{bottom:897.111979pt;}
.y229{bottom:901.239582pt;}
.y1bc{bottom:903.645832pt;}
.y1f8{bottom:903.911459pt;}
.y291{bottom:912.370442pt;}
.ybf{bottom:915.247396pt;}
.y136{bottom:915.778645pt;}
.y1b1{bottom:920.830729pt;}
.y9c{bottom:921.110677pt;}
.y55{bottom:921.111328pt;}
.y10c{bottom:921.111979pt;}
.y244{bottom:921.114583pt;}
.y36{bottom:922.310547pt;}
.y17d{bottom:922.312500pt;}
.yf{bottom:923.490885pt;}
.y2ad{bottom:929.630859pt;}
.y118{bottom:929.972656pt;}
.ye9{bottom:930.247396pt;}
.yc0{bottom:930.579428pt;}
.y1f7{bottom:931.510416pt;}
.y2c8{bottom:936.020833pt;}
.y135{bottom:943.375000pt;}
.y2dd{bottom:945.075520pt;}
.ye6{bottom:945.579427pt;}
.y197{bottom:948.533854pt;}
.y9b{bottom:948.708333pt;}
.y54{bottom:948.708984pt;}
.y10b{bottom:948.709636pt;}
.y2ac{bottom:952.599609pt;}
.y290{bottom:955.145833pt;}
.ybe{bottom:960.911459pt;}
.y35{bottom:966.231119pt;}
.y17c{bottom:966.231771pt;}
.y1f6{bottom:971.234376pt;}
.ye{bottom:972.572265pt;}
.y2ab{bottom:975.568359pt;}
.y134{bottom:976.236980pt;}
.y9a{bottom:976.305989pt;}
.y53{bottom:976.306640pt;}
.y10a{bottom:976.307292pt;}
.h25{height:15.041667pt;}
.h2a{height:15.046875pt;}
.h27{height:15.052083pt;}
.h2d{height:19.692708pt;}
.h2b{height:19.697917pt;}
.h1d{height:27.802084pt;}
.h19{height:28.687500pt;}
.h10{height:29.332031pt;}
.h20{height:41.593751pt;}
.h1a{height:41.598959pt;}
.h1b{height:42.632813pt;}
.h1f{height:43.031250pt;}
.h1e{height:44.033202pt;}
.hf{height:44.437500pt;}
.h13{height:44.664063pt;}
.h28{height:45.135417pt;}
.h2c{height:45.145833pt;}
.h26{height:45.355467pt;}
.h11{height:47.369790pt;}
.h14{height:47.812499pt;}
.h24{height:50.044272pt;}
.ha{height:52.364585pt;}
.h9{height:52.593751pt;}
.h8{height:53.080730pt;}
.h22{height:55.395833pt;}
.h6{height:56.843750pt;}
.h5{height:57.375000pt;}
.h17{height:57.906250pt;}
.h18{height:58.392190pt;}
.h29{height:59.078125pt;}
.h12{height:59.996093pt;}
.he{height:66.937498pt;}
.h7{height:71.054688pt;}
.h15{height:75.328125pt;}
.hd{height:76.500002pt;}
.h2{height:85.265625pt;}
.h4{height:86.062500pt;}
.hc{height:95.624998pt;}
.hb{height:95.666667pt;}
.h1c{height:96.791667pt;}
.h21{height:96.796875pt;}
.h16{height:105.992188pt;}
.h1{height:109.474609pt;}
.h23{height:110.593751pt;}
.h3{height:469.906907pt;}
.h0{height:1122.666667pt;}
.w6{width:79.000000pt;}
.wa{width:80.000000pt;}
.w7{width:95.000000pt;}
.wb{width:96.000000pt;}
.wf{width:120.000000pt;}
.wc{width:199.000000pt;}
.wd{width:227.000000pt;}
.w10{width:269.000000pt;}
.w8{width:272.000000pt;}
.w4{width:273.000000pt;}
.w2{width:280.000000pt;}
.w9{width:287.000000pt;}
.w5{width:288.000000pt;}
.w1{width:315.000000pt;}
.we{width:347.000000pt;}
.w3{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:7.089844pt;}
.x31{left:8.752556pt;}
.x1a{left:10.105011pt;}
.x1d{left:11.296036pt;}
.x2e{left:12.760307pt;}
.x8{left:13.886719pt;}
.x32{left:14.869545pt;}
.x18{left:15.864487pt;}
.x27{left:17.748604pt;}
.x19{left:19.375488pt;}
.x28{left:20.706421pt;}
.x37{left:21.680473pt;}
.x1c{left:22.699631pt;}
.x2{left:23.736328pt;}
.x1e{left:25.515755pt;}
.x21{left:26.993034pt;}
.x42{left:28.772461pt;}
.x7{left:30.210938pt;}
.x2c{left:31.573120pt;}
.x38{left:33.176636pt;}
.x29{left:34.682213pt;}
.x2d{left:39.022842pt;}
.x17{left:41.000000pt;}
.x24{left:42.836136pt;}
.x43{left:43.775391pt;}
.x45{left:45.518555pt;}
.x23{left:48.107841pt;}
.x60{left:49.000000pt;}
.x25{left:50.883453pt;}
.x41{left:52.174805pt;}
.x48{left:54.858398pt;}
.x1f{left:57.355537pt;}
.x33{left:59.068237pt;}
.x46{left:61.845703pt;}
.x26{left:64.855545pt;}
.x2b{left:67.068207pt;}
.x2f{left:72.339928pt;}
.x5{left:74.185547pt;}
.x47{left:76.669922pt;}
.x6{left:78.199219pt;}
.x16{left:79.345428pt;}
.x44{left:86.167969pt;}
.x14{left:88.010948pt;}
.xe{left:96.000000pt;}
.x1{left:97.000000pt;}
.x36{left:99.133659pt;}
.x3b{left:101.633003pt;}
.x5a{left:103.725394pt;}
.x22{left:105.455269pt;}
.x55{left:107.611303pt;}
.x4b{left:108.552366pt;}
.x4f{left:109.582884pt;}
.x35{left:110.610283pt;}
.x51{left:111.923018pt;}
.x2a{left:113.606384pt;}
.x49{left:115.046774pt;}
.x5d{left:116.109495pt;}
.x53{left:118.231359pt;}
.xf{left:120.000000pt;}
.x1b{left:121.000000pt;}
.x39{left:122.083679pt;}
.x4d{left:125.194510pt;}
.x5e{left:127.126730pt;}
.x34{left:133.280815pt;}
.x20{left:141.280823pt;}
.xb{left:144.873833pt;}
.x4e{left:146.770973pt;}
.x3e{left:150.000000pt;}
.x3d{left:151.000000pt;}
.x4a{left:157.553154pt;}
.x5c{left:158.472748pt;}
.x50{left:163.807823pt;}
.x57{left:166.930473pt;}
.x10{left:168.000000pt;}
.x59{left:177.851097pt;}
.x3c{left:192.000000pt;}
.x4c{left:193.373268pt;}
.x3f{left:210.239220pt;}
.x13{left:217.000000pt;}
.x64{left:222.481930pt;}
.x5f{left:240.880844pt;}
.x58{left:259.061600pt;}
.x54{left:267.978440pt;}
.x61{left:277.000000pt;}
.x40{left:297.000000pt;}
.x5b{left:301.949740pt;}
.xc{left:347.737110pt;}
.x63{left:355.000000pt;}
.x56{left:363.580410pt;}
.xd{left:370.180480pt;}
.x52{left:378.104280pt;}
.x3{left:414.000000pt;}
.x30{left:490.000000pt;}
.x15{left:491.000000pt;}
.x9{left:497.278900pt;}
.xa{left:499.638280pt;}
.x62{left:625.000000pt;}
.x11{left:681.398560pt;}
.x3a{left:682.487120pt;}
.x12{left:689.549680pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  