
    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_891419fcf3516d943c01f835.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.742000;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_560dbb987564edad9eba8ff2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_f5370ff73ff3627206f314b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_6b3176efb4d0d0342f3a0d55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_573d297b13cb613fb943f9d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_6226d16b460e5cfaf495dfef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5381e36a8ebbe5732e65e5fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_9de6fb9c240377cf0925f561.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873000;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_1c8877a28712615935c134e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_e53f484f512833fa2fc517f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_ac88b200e193e52dd8ad863e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942871;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:ffc;src:url('chunks/assets/font_891419fcf3516d943c01f835.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;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:ffd;src:url('chunks/assets/font_0e10126750d4cc60b7e4a14e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919434;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:ffe;src:url('chunks/assets/font_b4f9d78369e87679615a14da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.849609;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:fff;src:url('chunks/assets/font_d2b93b2a466a0a97f1ac62bc.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_891419fcf3516d943c01f835.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.742000;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:ff11;src:url('chunks/assets/font_5cc81ae04d13744a1be74265.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919434;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:ff12;src:url('chunks/assets/font_17ab68021da374a586aec0f2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.849609;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:ff13;src:url('chunks/assets/font_d2b93b2a466a0a97f1ac62bc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;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:ff14;src:url('chunks/assets/font_891419fcf3516d943c01f835.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.742000;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:ff15;src:url('chunks/assets/font_de9f9c925ce53c526401211c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.742000;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:ff16;src:url('chunks/assets/font_dec5463ab4e340cacfb11ef5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919434;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:ff17;src:url('chunks/assets/font_4c8a92d80c1f4e168c8de7d8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.849609;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:ff18;src:url('chunks/assets/font_d2b93b2a466a0a97f1ac62bc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;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:ff19;src:url('chunks/assets/font_854654d143d3dd13015d949f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.919434;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:ff1a;src:url('chunks/assets/font_23c865da23b76e60490c17ee.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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:ff1b;src:url('chunks/assets/font_14c926b62e54507763cd5837.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.096680;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:ff1c;src:url('chunks/assets/font_d008494f24d6565075439052.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;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:ff1d;src:url('chunks/assets/font_2e38f804fe9c810031ef9628.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.942871;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:ff1e;src:url('chunks/assets/font_891419fcf3516d943c01f835.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.742000;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:ff1f;src:url('chunks/assets/font_d2b93b2a466a0a97f1ac62bc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938965;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:ff20;src:url('chunks/assets/font_dec5463ab4e340cacfb11ef5.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.919434;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:ff21;src:url('chunks/assets/font_4c8a92d80c1f4e168c8de7d8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.849609;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:ff22;src:url('chunks/assets/font_891419fcf3516d943c01f835.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.742000;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:ff23;src:url('chunks/assets/font_710c308bbdd9e3c5c90838fc.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.919434;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:ff24;src:url('chunks/assets/font_557d2ed0f5a7aa3170bdeefc.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.849609;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:ff25;src:url('chunks/assets/font_de9f9c925ce53c526401211c.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.742000;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:ff26;src:url('chunks/assets/font_d2b93b2a466a0a97f1ac62bc.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938965;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:ff27;src:url('chunks/assets/font_6b3176efb4d0d0342f3a0d55.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.912000;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:ff28;src:url('chunks/assets/font_891419fcf3516d943c01f835.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.742000;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:ff29;src:url('chunks/assets/font_710c308bbdd9e3c5c90838fc.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.919434;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:ff2a;src:url('chunks/assets/font_557d2ed0f5a7aa3170bdeefc.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.849609;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:ff2b;src:url('chunks/assets/font_d2b93b2a466a0a97f1ac62bc.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938965;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:ff2c;src:url('chunks/assets/font_0e17db0532a95dbf3425b5c5.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.690918;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:ff2d;src:url('chunks/assets/font_b8415e310de508c15ab1519e.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938477;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:ff2e;src:url('chunks/assets/font_e68a89d85ec341cd8025ca30.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938965;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:ff2f;src:url('chunks/assets/font_e511aba46fcee2a805e9f2d9.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.096680;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:ff30;src:url('chunks/assets/font_ebd06d70b764c3937d172746.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.942871;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:66.596400px;}
.v1{vertical-align:86.400600px;}
.ls8{letter-spacing:-4.440000px;}
.ls5{letter-spacing:-1.026000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.008400px;}
.ls2{letter-spacing:1.890000px;}
.lsa{letter-spacing:7.200000px;}
.ls9{letter-spacing:9.000000px;}
.ls1{letter-spacing:10.800000px;}
.ls6{letter-spacing:36.000000px;}
.ls7{letter-spacing:57.600000px;}
.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;}
}
.ws15{word-spacing:-120.960000px;}
.ws13{word-spacing:-98.766600px;}
.ws2{word-spacing:-80.064000px;}
.ws0{word-spacing:-74.747520px;}
.ws1{word-spacing:-69.120000px;}
.ws14{word-spacing:-36.180000px;}
.ws32{word-spacing:-31.680000px;}
.ws6{word-spacing:-25.812000px;}
.ws7e{word-spacing:-20.016000px;}
.ws7{word-spacing:-15.012000px;}
.ws2f{word-spacing:-15.000000px;}
.ws2d{word-spacing:-14.640000px;}
.ws1e{word-spacing:-14.220000px;}
.ws1b{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.344000px;}
.ws29{word-spacing:-12.240000px;}
.ws4{word-spacing:-11.523576px;}
.ws2c{word-spacing:-11.100000px;}
.ws24{word-spacing:-10.440000px;}
.ws22{word-spacing:-10.380000px;}
.ws26{word-spacing:-9.360000px;}
.ws7d{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.400680px;}
.ws25{word-spacing:-7.320000px;}
.ws3d{word-spacing:-7.200000px;}
.ws1d{word-spacing:-7.140000px;}
.ws28{word-spacing:-6.900000px;}
.ws2a{word-spacing:-6.840000px;}
.ws2b{word-spacing:-5.760000px;}
.ws1f{word-spacing:-4.200000px;}
.ws27{word-spacing:-4.020000px;}
.ws7f{word-spacing:-3.960000px;}
.ws16{word-spacing:-3.882669px;}
.ws23{word-spacing:-3.720000px;}
.ws33{word-spacing:-3.630000px;}
.ws17{word-spacing:-3.480000px;}
.ws5b{word-spacing:-3.300000px;}
.ws52{word-spacing:-3.000000px;}
.wsb{word-spacing:-2.970000px;}
.ws48{word-spacing:-2.940000px;}
.wsa{word-spacing:-2.916000px;}
.ws43{word-spacing:-2.820000px;}
.ws20{word-spacing:-2.640000px;}
.ws51{word-spacing:-2.460000px;}
.ws2e{word-spacing:-2.160000px;}
.wsc{word-spacing:-1.998000px;}
.ws74{word-spacing:-1.980000px;}
.ws55{word-spacing:-1.860000px;}
.ws18{word-spacing:-1.776000px;}
.ws34{word-spacing:-1.728000px;}
.ws49{word-spacing:-1.500000px;}
.ws73{word-spacing:-1.380000px;}
.ws50{word-spacing:-1.260000px;}
.wse{word-spacing:-1.104000px;}
.ws66{word-spacing:-1.080000px;}
.ws1c{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.918000px;}
.ws21{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.486000px;}
.ws46{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.240000px;}
.ws56{word-spacing:-0.180000px;}
.ws7b{word-spacing:-0.108000px;}
.ws5{word-spacing:0.000000px;}
.ws78{word-spacing:0.300000px;}
.ws58{word-spacing:0.600000px;}
.ws6c{word-spacing:0.660000px;}
.ws38{word-spacing:0.756000px;}
.ws75{word-spacing:1.260000px;}
.ws37{word-spacing:1.350000px;}
.ws4f{word-spacing:1.560000px;}
.ws7a{word-spacing:1.782000px;}
.ws5c{word-spacing:1.860000px;}
.ws6d{word-spacing:1.980000px;}
.ws3b{word-spacing:2.106000px;}
.ws65{word-spacing:2.340000px;}
.ws72{word-spacing:2.460000px;}
.ws71{word-spacing:2.520000px;}
.ws67{word-spacing:2.700000px;}
.ws40{word-spacing:2.820000px;}
.ws64{word-spacing:3.000000px;}
.ws4a{word-spacing:3.420000px;}
.ws4b{word-spacing:3.480000px;}
.wsf{word-spacing:3.696000px;}
.ws6e{word-spacing:3.780000px;}
.ws79{word-spacing:3.960000px;}
.ws7c{word-spacing:3.996000px;}
.ws6b{word-spacing:4.140000px;}
.ws63{word-spacing:4.260000px;}
.ws62{word-spacing:4.560000px;}
.ws4e{word-spacing:4.740000px;}
.ws69{word-spacing:4.920000px;}
.ws5e{word-spacing:4.980000px;}
.ws47{word-spacing:5.040000px;}
.ws60{word-spacing:5.100000px;}
.ws39{word-spacing:5.184000px;}
.ws3e{word-spacing:5.280000px;}
.ws77{word-spacing:5.400000px;}
.ws10{word-spacing:5.808000px;}
.ws35{word-spacing:5.994000px;}
.ws76{word-spacing:6.000000px;}
.ws5a{word-spacing:6.060000px;}
.ws53{word-spacing:6.180000px;}
.ws4c{word-spacing:6.780000px;}
.ws3a{word-spacing:6.858000px;}
.ws45{word-spacing:6.960000px;}
.ws4d{word-spacing:7.080000px;}
.ws41{word-spacing:7.560000px;}
.ws68{word-spacing:7.920000px;}
.ws44{word-spacing:8.100000px;}
.ws42{word-spacing:8.460000px;}
.ws5f{word-spacing:8.820000px;}
.ws36{word-spacing:9.234000px;}
.ws70{word-spacing:10.020000px;}
.ws54{word-spacing:10.260000px;}
.ws5d{word-spacing:10.500000px;}
.ws57{word-spacing:10.800000px;}
.ws59{word-spacing:11.340000px;}
.ws3f{word-spacing:11.400000px;}
.wsd{word-spacing:13.296000px;}
.ws61{word-spacing:15.600000px;}
.ws31{word-spacing:16.912200px;}
.ws11{word-spacing:19.440000px;}
.ws12{word-spacing:81.018000px;}
.ws30{word-spacing:202.123200px;}
._11{margin-left:-23.640000px;}
._18{margin-left:-19.680000px;}
._0{margin-left:-17.129640px;}
._d{margin-left:-15.084000px;}
._7{margin-left:-13.451418px;}
._1{margin-left:-11.523576px;}
._6{margin-left:-9.364601px;}
._b{margin-left:-8.265600px;}
._16{margin-left:-7.254000px;}
._9{margin-left:-5.972400px;}
._4{margin-left:-3.996000px;}
._3{margin-left:-2.361600px;}
._2{margin-left:-1.346400px;}
._5{width:1.069200px;}
._a{width:3.013200px;}
._17{width:4.026000px;}
._c{width:5.038800px;}
._10{width:6.060600px;}
._e{width:7.608600px;}
._15{width:8.808000px;}
._1a{width:10.554000px;}
._19{width:11.688000px;}
._f{width:13.657200px;}
._13{width:14.846400px;}
._1b{width:59.007000px;}
._14{width:81.375600px;}
._1c{width:125.521378px;}
._1d{width:143.910600px;}
._8{width:313.293535px;}
._12{width:924.849696px;}
.fce{color:rgb(246,130,19);}
.fcd{color:rgb(55,159,146);}
.fc0{color:rgb(246,131,19);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(35,31,32);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(54,159,146);}
.fcb{color:rgb(0,173,239);}
.fc4{color:rgb(61,122,199);}
.fc8{color:rgb(42,62,146);}
.fc6{color:rgb(38,122,200);}
.fca{color:rgb(210,32,39);}
.fc3{color:rgb(47,168,65);}
.fcc{color:transparent;}
.fc9{color:rgb(217,242,245);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:104.937000px;}
.fsc{font-size:120.000000px;}
.fsd{font-size:126.000000px;}
.fsa{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs6{font-size:227.045400px;}
.fs4{font-size:288.000000px;}
.fs0{font-size:311.448000px;}
.y0{bottom:0.000000px;}
.y97{bottom:76.343700px;}
.y194{bottom:76.439550px;}
.y96{bottom:106.299150px;}
.y13d{bottom:106.603950px;}
.y10e{bottom:107.876700px;}
.y21{bottom:116.447250px;}
.y93{bottom:116.550750px;}
.y59{bottom:117.648900px;}
.y16f{bottom:117.715800px;}
.ycd{bottom:120.026100px;}
.y1b0{bottom:124.299150px;}
.y13c{bottom:124.603950px;}
.y10d{bottom:125.876700px;}
.y3{bottom:129.136200px;}
.y92{bottom:132.450750px;}
.y20{bottom:132.647250px;}
.ycc{bottom:134.426100px;}
.y16e{bottom:135.715800px;}
.y13b{bottom:142.603950px;}
.y10c{bottom:143.876700px;}
.y58{bottom:144.152700px;}
.y91{bottom:148.350750px;}
.y1f{bottom:148.847250px;}
.y2{bottom:151.134450px;}
.ycb{bottom:152.426100px;}
.y16d{bottom:153.715800px;}
.y13a{bottom:160.603950px;}
.y10b{bottom:161.876700px;}
.y57{bottom:162.152700px;}
.y90{bottom:164.250750px;}
.y16c{bottom:171.715800px;}
.yca{bottom:174.678000px;}
.y139{bottom:178.603950px;}
.y10a{bottom:179.876700px;}
.y8f{bottom:180.150750px;}
.y56{bottom:180.152700px;}
.yc9{bottom:189.078150px;}
.y16b{bottom:189.715800px;}
.y8e{bottom:196.050750px;}
.y138{bottom:196.603950px;}
.y55{bottom:198.152700px;}
.y109{bottom:206.380650px;}
.y16a{bottom:207.715800px;}
.yc8{bottom:211.330050px;}
.y8d{bottom:211.950750px;}
.y54{bottom:216.152700px;}
.y193{bottom:220.755300px;}
.y137{bottom:223.107900px;}
.y169{bottom:225.715800px;}
.yc7{bottom:225.730050px;}
.y8c{bottom:227.850750px;}
.y53{bottom:234.152850px;}
.y192{bottom:236.955300px;}
.y4f{bottom:238.380300px;}
.y168{bottom:243.715800px;}
.y8b{bottom:243.750750px;}
.y1{bottom:244.568850px;}
.y108{bottom:245.980650px;}
.yc6{bottom:247.982100px;}
.y136{bottom:249.611850px;}
.y191{bottom:253.155300px;}
.y4e{bottom:254.880300px;}
.y8a{bottom:259.650750px;}
.y52{bottom:260.656650px;}
.y107{bottom:262.180500px;}
.yc5{bottom:262.381950px;}
.y190{bottom:269.355300px;}
.y167{bottom:270.219750px;}
.y4d{bottom:271.380300px;}
.y89{bottom:275.550750px;}
.y135{bottom:276.115650px;}
.y106{bottom:278.380650px;}
.yc4{bottom:280.381950px;}
.y18f{bottom:285.555300px;}
.y51{bottom:287.160600px;}
.y4c{bottom:287.880300px;}
.y88{bottom:291.450750px;}
.y166{bottom:296.723700px;}
.y18e{bottom:301.755300px;}
.y134{bottom:302.619750px;}
.yc3{bottom:302.634000px;}
.y105{bottom:303.084450px;}
.y4b{bottom:304.380300px;}
.y50{bottom:305.160600px;}
.y87{bottom:307.350750px;}
.yc2{bottom:317.034000px;}
.y18d{bottom:317.955300px;}
.y104{bottom:319.284450px;}
.y4a{bottom:320.880300px;}
.y165{bottom:323.227650px;}
.y133{bottom:329.123700px;}
.y16{bottom:331.071300px;}
.y18c{bottom:334.155300px;}
.y103{bottom:335.484450px;}
.y49{bottom:337.380300px;}
.yc1{bottom:339.285900px;}
.y15{bottom:347.271300px;}
.y164{bottom:349.731600px;}
.y18b{bottom:350.355300px;}
.y102{bottom:351.684450px;}
.yc0{bottom:353.685900px;}
.y48{bottom:353.880300px;}
.y132{bottom:355.627500px;}
.y14{bottom:363.471300px;}
.y1b5{bottom:363.748200px;}
.y18a{bottom:366.555300px;}
.y101{bottom:367.884450px;}
.y1a6{bottom:369.107850px;}
.y47{bottom:370.380300px;}
.ybf{bottom:375.937950px;}
.y163{bottom:376.235550px;}
.y13{bottom:379.671300px;}
.y131{bottom:382.131450px;}
.y1b4{bottom:383.548200px;}
.y100{bottom:384.084450px;}
.y46{bottom:386.880300px;}
.ybe{bottom:390.337950px;}
.y86{bottom:390.943200px;}
.y12{bottom:395.871300px;}
.y17{bottom:398.194050px;}
.y1a5{bottom:399.211800px;}
.y130{bottom:400.131450px;}
.yff{bottom:400.284600px;}
.y189{bottom:400.755300px;}
.y162{bottom:402.739500px;}
.y1b3{bottom:403.348200px;}
.y45{bottom:403.380300px;}
.y85{bottom:407.443200px;}
.ybd{bottom:408.337950px;}
.y11{bottom:412.071300px;}
.yfe{bottom:416.484450px;}
.y12f{bottom:418.131450px;}
.y188{bottom:418.755300px;}
.y44{bottom:419.880300px;}
.y161{bottom:420.739500px;}
.y1b2{bottom:423.148200px;}
.y84{bottom:423.943200px;}
.y10{bottom:428.271300px;}
.y1a4{bottom:429.315750px;}
.ybc{bottom:430.589850px;}
.y43{bottom:436.380300px;}
.y187{bottom:436.755300px;}
.yfd{bottom:438.312900px;}
.y83{bottom:440.443200px;}
.y1b1{bottom:442.948200px;}
.yf{bottom:444.471300px;}
.y12e{bottom:444.635400px;}
.ybb{bottom:444.989850px;}
.y160{bottom:447.243450px;}
.y42{bottom:452.880300px;}
.yfc{bottom:454.512900px;}
.y186{bottom:454.755300px;}
.y82{bottom:456.943200px;}
.y1a3{bottom:459.419700px;}
.ye{bottom:460.671300px;}
.yba{bottom:462.989850px;}
.y15f{bottom:465.243450px;}
.y41{bottom:469.380300px;}
.y18{bottom:472.273800px;}
.y185{bottom:472.755300px;}
.y81{bottom:473.443200px;}
.yd{bottom:476.871300px;}
.yfb{bottom:479.216850px;}
.y15e{bottom:483.243450px;}
.y12d{bottom:484.235400px;}
.yb9{bottom:485.241900px;}
.y40{bottom:485.880300px;}
.y1a2{bottom:489.523650px;}
.y80{bottom:489.943200px;}
.y184{bottom:490.755300px;}
.yc{bottom:493.071300px;}
.yfa{bottom:495.416850px;}
.yb8{bottom:499.641750px;}
.y15d{bottom:501.243450px;}
.y12c{bottom:502.235400px;}
.y3f{bottom:502.380300px;}
.y7f{bottom:506.443200px;}
.y183{bottom:508.755300px;}
.yb{bottom:509.271300px;}
.yf9{bottom:511.616850px;}
.yb7{bottom:517.641750px;}
.y3e{bottom:518.880300px;}
.y15c{bottom:519.243450px;}
.y1a1{bottom:519.627600px;}
.y12b{bottom:520.235400px;}
.y7e{bottom:522.943200px;}
.ya{bottom:525.471300px;}
.y182{bottom:526.755300px;}
.yf8{bottom:527.816850px;}
.y3d{bottom:535.380300px;}
.y15b{bottom:537.243450px;}
.y12a{bottom:538.235400px;}
.y7d{bottom:539.443200px;}
.yb6{bottom:539.893800px;}
.y9{bottom:541.671300px;}
.yf7{bottom:544.016850px;}
.y181{bottom:544.755300px;}
.y1a0{bottom:549.731550px;}
.y3c{bottom:551.880300px;}
.yb5{bottom:554.293800px;}
.y15a{bottom:555.243450px;}
.y7c{bottom:555.943200px;}
.y129{bottom:556.235400px;}
.y8{bottom:557.871300px;}
.yf6{bottom:560.216850px;}
.y180{bottom:562.755300px;}
.y3b{bottom:568.380300px;}
.yb4{bottom:572.293800px;}
.y1af{bottom:572.325300px;}
.y7b{bottom:572.443200px;}
.y159{bottom:573.243450px;}
.y7{bottom:574.071300px;}
.y128{bottom:574.235400px;}
.yf5{bottom:576.416850px;}
.y19f{bottom:579.835350px;}
.y17f{bottom:580.755300px;}
.y3a{bottom:584.880300px;}
.y7a{bottom:588.943200px;}
.y6{bottom:590.271450px;}
.y158{bottom:591.243450px;}
.y1ae{bottom:592.125300px;}
.y127{bottom:592.235400px;}
.yb3{bottom:594.545850px;}
.yf4{bottom:598.245150px;}
.y17e{bottom:598.755300px;}
.y39{bottom:601.380300px;}
.y79{bottom:605.443200px;}
.y5{bottom:606.471300px;}
.yb2{bottom:608.945700px;}
.y157{bottom:609.243450px;}
.y19e{bottom:609.939450px;}
.y1ad{bottom:611.925300px;}
.yf3{bottom:614.445150px;}
.y17d{bottom:616.755300px;}
.y38{bottom:617.880300px;}
.y126{bottom:618.739350px;}
.y78{bottom:621.943200px;}
.yb1{bottom:626.945700px;}
.y156{bottom:627.243450px;}
.y1ac{bottom:631.725300px;}
.y37{bottom:634.380300px;}
.y17c{bottom:634.755300px;}
.y125{bottom:636.739350px;}
.y77{bottom:638.443200px;}
.yf2{bottom:639.149100px;}
.y19d{bottom:640.043400px;}
.y155{bottom:645.243450px;}
.yb0{bottom:649.197750px;}
.y36{bottom:650.880300px;}
.y17b{bottom:652.755300px;}
.y76{bottom:654.943200px;}
.yf1{bottom:655.349100px;}
.y124{bottom:663.243300px;}
.y154{bottom:663.243450px;}
.yaf{bottom:663.597750px;}
.y35{bottom:667.380300px;}
.y19c{bottom:670.147200px;}
.y17a{bottom:670.755300px;}
.y75{bottom:671.443200px;}
.yf0{bottom:671.549100px;}
.y123{bottom:681.243300px;}
.y153{bottom:681.243450px;}
.y34{bottom:683.880300px;}
.yae{bottom:685.849800px;}
.yef{bottom:687.749100px;}
.y74{bottom:687.943200px;}
.y179{bottom:688.755300px;}
.y152{bottom:699.243450px;}
.yad{bottom:700.249650px;}
.y19b{bottom:700.251150px;}
.y33{bottom:700.380300px;}
.yee{bottom:703.949100px;}
.y73{bottom:704.443200px;}
.y178{bottom:706.755300px;}
.y122{bottom:707.747250px;}
.y32{bottom:716.880300px;}
.y151{bottom:717.243450px;}
.yed{bottom:720.149100px;}
.y72{bottom:720.943200px;}
.yac{bottom:722.501700px;}
.y177{bottom:724.755300px;}
.y121{bottom:725.747250px;}
.y19a{bottom:730.355100px;}
.y31{bottom:733.380300px;}
.y150{bottom:735.243450px;}
.yec{bottom:736.349100px;}
.yab{bottom:736.901700px;}
.y71{bottom:737.443200px;}
.y176{bottom:742.755300px;}
.y30{bottom:749.880300px;}
.y120{bottom:752.251200px;}
.y14f{bottom:753.243450px;}
.y70{bottom:753.943200px;}
.yaa{bottom:759.153600px;}
.y199{bottom:760.459050px;}
.y175{bottom:760.755300px;}
.y1a7{bottom:761.102400px;}
.y2f{bottom:766.380300px;}
.y11f{bottom:770.251200px;}
.y6f{bottom:770.443200px;}
.y14e{bottom:771.243450px;}
.ya9{bottom:773.553600px;}
.yeb{bottom:776.177550px;}
.y174{bottom:778.755300px;}
.y2e{bottom:782.880300px;}
.y6e{bottom:786.943200px;}
.y11e{bottom:788.251200px;}
.y14d{bottom:789.243450px;}
.y198{bottom:790.563000px;}
.yea{bottom:794.177550px;}
.ya8{bottom:795.805650px;}
.y173{bottom:796.755300px;}
.y2d{bottom:799.380300px;}
.y6d{bottom:803.443200px;}
.y1ab{bottom:806.079750px;}
.y14c{bottom:807.243450px;}
.ya7{bottom:810.205650px;}
.y11d{bottom:814.755150px;}
.y172{bottom:814.755300px;}
.y2c{bottom:815.880300px;}
.y6c{bottom:819.943200px;}
.y197{bottom:820.666950px;}
.y14b{bottom:825.243450px;}
.ye9{bottom:825.977550px;}
.ydf{bottom:826.547250px;}
.y2b{bottom:832.380300px;}
.ya6{bottom:832.457550px;}
.y11c{bottom:832.755150px;}
.y171{bottom:832.755300px;}
.y1aa{bottom:836.183550px;}
.y6b{bottom:836.443200px;}
.yde{bottom:840.947250px;}
.y14a{bottom:843.243450px;}
.ye8{bottom:843.977550px;}
.ya5{bottom:846.857550px;}
.y2a{bottom:848.880300px;}
.y196{bottom:850.770900px;}
.y6a{bottom:852.943200px;}
.ydd{bottom:858.947250px;}
.y11b{bottom:859.259100px;}
.y170{bottom:859.259250px;}
.y149{bottom:861.243450px;}
.ye7{bottom:861.977550px;}
.y29{bottom:865.380300px;}
.y1a9{bottom:866.287650px;}
.ya4{bottom:869.109600px;}
.y69{bottom:869.443200px;}
.y148{bottom:879.243450px;}
.y195{bottom:880.874850px;}
.ydc{bottom:881.199300px;}
.y28{bottom:881.880300px;}
.ya3{bottom:883.509450px;}
.y68{bottom:885.943200px;}
.ydb{bottom:895.599300px;}
.y1a8{bottom:896.391600px;}
.y147{bottom:897.243450px;}
.y27{bottom:898.380300px;}
.y11a{bottom:898.859100px;}
.ye6{bottom:899.777550px;}
.y67{bottom:902.443200px;}
.ya2{bottom:905.761500px;}
.y26{bottom:914.880300px;}
.y146{bottom:915.243450px;}
.y119{bottom:916.859100px;}
.yda{bottom:917.851200px;}
.y66{bottom:918.943200px;}
.ya1{bottom:920.161500px;}
.yd9{bottom:932.251200px;}
.y145{bottom:933.243450px;}
.y118{bottom:934.859100px;}
.y65{bottom:935.443200px;}
.ya0{bottom:938.161500px;}
.y25{bottom:939.884250px;}
.ye5{bottom:942.977550px;}
.yd8{bottom:950.251200px;}
.y64{bottom:951.943200px;}
.y117{bottom:952.859100px;}
.y24{bottom:956.384250px;}
.y144{bottom:959.747250px;}
.y9f{bottom:960.413400px;}
.y63{bottom:968.443200px;}
.y116{bottom:970.859100px;}
.yd7{bottom:972.503100px;}
.y9e{bottom:974.813550px;}
.y23{bottom:981.388200px;}
.y62{bottom:984.943200px;}
.ye4{bottom:986.177550px;}
.yd6{bottom:986.903100px;}
.y115{bottom:988.859100px;}
.y9d{bottom:992.813550px;}
.y22{bottom:997.888200px;}
.y143{bottom:999.347400px;}
.y61{bottom:1001.443200px;}
.yd5{bottom:1004.903100px;}
.y114{bottom:1006.859100px;}
.y9c{bottom:1015.065450px;}
.y142{bottom:1017.347400px;}
.y60{bottom:1017.943200px;}
.y113{bottom:1024.859100px;}
.yd4{bottom:1027.155150px;}
.ye3{bottom:1029.377550px;}
.y9b{bottom:1029.465450px;}
.y5f{bottom:1034.443200px;}
.y1d{bottom:1035.138750px;}
.y1e{bottom:1035.138900px;}
.yd3{bottom:1041.555150px;}
.y112{bottom:1042.859100px;}
.y141{bottom:1043.851350px;}
.y9a{bottom:1047.465450px;}
.y5e{bottom:1050.943200px;}
.y111{bottom:1060.859100px;}
.y140{bottom:1061.851350px;}
.yd2{bottom:1063.807050px;}
.ye2{bottom:1072.577550px;}
.y5d{bottom:1075.947150px;}
.yd1{bottom:1078.207050px;}
.y110{bottom:1078.859100px;}
.y99{bottom:1087.775700px;}
.y13f{bottom:1088.355150px;}
.y5c{bottom:1092.447150px;}
.y10f{bottom:1096.859100px;}
.yd0{bottom:1100.459100px;}
.y1c{bottom:1103.252400px;}
.y13e{bottom:1106.355150px;}
.ycf{bottom:1114.859100px;}
.ye1{bottom:1115.777550px;}
.y5b{bottom:1117.451100px;}
.yce{bottom:1132.859100px;}
.y5a{bottom:1133.951100px;}
.y4{bottom:1155.259800px;}
.y1b{bottom:1155.259950px;}
.y1a{bottom:1167.259950px;}
.y95{bottom:1168.374600px;}
.y19{bottom:1179.259950px;}
.ye0{bottom:1185.023700px;}
.y98{bottom:1185.032850px;}
.y94{bottom:1199.855700px;}
.h8{height:34.945312px;}
.he{height:34.968750px;}
.h16{height:35.156250px;}
.h5{height:39.312000px;}
.hc{height:39.313477px;}
.hb{height:39.339844px;}
.hd{height:39.550781px;}
.hf{height:42.539062px;}
.h14{height:43.710938px;}
.h19{height:47.856445px;}
.h18{height:48.082031px;}
.h20{height:48.339844px;}
.h3{height:50.484375px;}
.h12{height:52.416000px;}
.ha{height:52.417969px;}
.h1e{height:52.453125px;}
.h15{height:53.173828px;}
.h1f{height:58.491211px;}
.h4{height:61.195312px;}
.h10{height:76.394136px;}
.h1b{height:84.140625px;}
.h1c{height:84.141225px;}
.h1d{height:85.148438px;}
.h17{height:100.968750px;}
.h11{height:126.210938px;}
.h1a{height:127.791713px;}
.h9{height:165.289051px;}
.h13{height:201.937500px;}
.h6{height:209.664000px;}
.h2{height:226.734144px;}
.h7{height:255.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1f{left:-667.732650px;}
.x0{left:0.000000px;}
.x18{left:68.031450px;}
.x23{left:70.582650px;}
.x1b{left:72.283350px;}
.x30{left:74.031450px;}
.x19{left:76.960650px;}
.x39{left:88.116150px;}
.xd{left:98.032500px;}
.xc{left:104.598450px;}
.x38{left:106.348350px;}
.x24{left:110.551200px;}
.x2{left:127.133700px;}
.x6{left:128.311800px;}
.x5{left:132.371250px;}
.x1e{left:140.314950px;}
.x33{left:172.346400px;}
.x37{left:178.582650px;}
.x40{left:186.097050px;}
.x3e{left:198.173850px;}
.x3f{left:212.393850px;}
.x1d{left:214.597950px;}
.x3d{left:220.631850px;}
.xa{left:225.295650px;}
.x32{left:252.514200px;}
.x3b{left:268.706100px;}
.x1{left:292.535400px;}
.x3a{left:299.518350px;}
.x41{left:313.698000px;}
.x2a{left:319.454100px;}
.x4{left:341.574750px;}
.x29{left:353.573250px;}
.x3c{left:374.189550px;}
.x36{left:380.868900px;}
.x3{left:399.207150px;}
.x2f{left:461.617200px;}
.x27{left:472.893450px;}
.x2d{left:485.772450px;}
.x26{left:506.713800px;}
.x9{left:515.864400px;}
.x7{left:520.311600px;}
.x8{left:532.753950px;}
.x2e{left:549.326100px;}
.x20{left:559.728000px;}
.x2c{left:563.328600px;}
.x12{left:565.511850px;}
.x11{left:566.635800px;}
.x14{left:572.594700px;}
.xe{left:576.774000px;}
.x13{left:580.162050px;}
.x15{left:585.778350px;}
.x17{left:587.614200px;}
.x31{left:598.615800px;}
.x1c{left:601.592100px;}
.x16{left:607.149000px;}
.x28{left:611.391600px;}
.x10{left:620.269950px;}
.xf{left:655.928250px;}
.xb{left:676.795050px;}
.x2b{left:686.028300px;}
.x34{left:769.198500px;}
.x25{left:777.838350px;}
.x22{left:786.478200px;}
.x35{left:843.964950px;}
.x21{left:855.632400px;}
.x1a{left:1452.641400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:59.196800pt;}
.v1{vertical-align:76.800533pt;}
.ls8{letter-spacing:-3.946667pt;}
.ls5{letter-spacing:-0.912000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.007467pt;}
.ls2{letter-spacing:1.680000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls9{letter-spacing:8.000000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls6{letter-spacing:32.000000pt;}
.ls7{letter-spacing:51.200000pt;}
.ws15{word-spacing:-107.520000pt;}
.ws13{word-spacing:-87.792533pt;}
.ws2{word-spacing:-71.168000pt;}
.ws0{word-spacing:-66.442240pt;}
.ws1{word-spacing:-61.440000pt;}
.ws14{word-spacing:-32.160000pt;}
.ws32{word-spacing:-28.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws7e{word-spacing:-17.792000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws2f{word-spacing:-13.333333pt;}
.ws2d{word-spacing:-13.013333pt;}
.ws1e{word-spacing:-12.640000pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws29{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.243179pt;}
.ws2c{word-spacing:-9.866667pt;}
.ws24{word-spacing:-9.280000pt;}
.ws22{word-spacing:-9.226667pt;}
.ws26{word-spacing:-8.320000pt;}
.ws7d{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.467271pt;}
.ws25{word-spacing:-6.506667pt;}
.ws3d{word-spacing:-6.400000pt;}
.ws1d{word-spacing:-6.346667pt;}
.ws28{word-spacing:-6.133333pt;}
.ws2a{word-spacing:-6.080000pt;}
.ws2b{word-spacing:-5.120000pt;}
.ws1f{word-spacing:-3.733333pt;}
.ws27{word-spacing:-3.573333pt;}
.ws7f{word-spacing:-3.520000pt;}
.ws16{word-spacing:-3.451261pt;}
.ws23{word-spacing:-3.306667pt;}
.ws33{word-spacing:-3.226667pt;}
.ws17{word-spacing:-3.093333pt;}
.ws5b{word-spacing:-2.933333pt;}
.ws52{word-spacing:-2.666667pt;}
.wsb{word-spacing:-2.640000pt;}
.ws48{word-spacing:-2.613333pt;}
.wsa{word-spacing:-2.592000pt;}
.ws43{word-spacing:-2.506667pt;}
.ws20{word-spacing:-2.346667pt;}
.ws51{word-spacing:-2.186667pt;}
.ws2e{word-spacing:-1.920000pt;}
.wsc{word-spacing:-1.776000pt;}
.ws74{word-spacing:-1.760000pt;}
.ws55{word-spacing:-1.653333pt;}
.ws18{word-spacing:-1.578667pt;}
.ws34{word-spacing:-1.536000pt;}
.ws49{word-spacing:-1.333333pt;}
.ws73{word-spacing:-1.226667pt;}
.ws50{word-spacing:-1.120000pt;}
.wse{word-spacing:-0.981333pt;}
.ws66{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.816000pt;}
.ws21{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.432000pt;}
.ws46{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.213333pt;}
.ws56{word-spacing:-0.160000pt;}
.ws7b{word-spacing:-0.096000pt;}
.ws5{word-spacing:0.000000pt;}
.ws78{word-spacing:0.266667pt;}
.ws58{word-spacing:0.533333pt;}
.ws6c{word-spacing:0.586667pt;}
.ws38{word-spacing:0.672000pt;}
.ws75{word-spacing:1.120000pt;}
.ws37{word-spacing:1.200000pt;}
.ws4f{word-spacing:1.386667pt;}
.ws7a{word-spacing:1.584000pt;}
.ws5c{word-spacing:1.653333pt;}
.ws6d{word-spacing:1.760000pt;}
.ws3b{word-spacing:1.872000pt;}
.ws65{word-spacing:2.080000pt;}
.ws72{word-spacing:2.186667pt;}
.ws71{word-spacing:2.240000pt;}
.ws67{word-spacing:2.400000pt;}
.ws40{word-spacing:2.506667pt;}
.ws64{word-spacing:2.666667pt;}
.ws4a{word-spacing:3.040000pt;}
.ws4b{word-spacing:3.093333pt;}
.wsf{word-spacing:3.285333pt;}
.ws6e{word-spacing:3.360000pt;}
.ws79{word-spacing:3.520000pt;}
.ws7c{word-spacing:3.552000pt;}
.ws6b{word-spacing:3.680000pt;}
.ws63{word-spacing:3.786667pt;}
.ws62{word-spacing:4.053333pt;}
.ws4e{word-spacing:4.213333pt;}
.ws69{word-spacing:4.373333pt;}
.ws5e{word-spacing:4.426667pt;}
.ws47{word-spacing:4.480000pt;}
.ws60{word-spacing:4.533333pt;}
.ws39{word-spacing:4.608000pt;}
.ws3e{word-spacing:4.693333pt;}
.ws77{word-spacing:4.800000pt;}
.ws10{word-spacing:5.162667pt;}
.ws35{word-spacing:5.328000pt;}
.ws76{word-spacing:5.333333pt;}
.ws5a{word-spacing:5.386667pt;}
.ws53{word-spacing:5.493333pt;}
.ws4c{word-spacing:6.026667pt;}
.ws3a{word-spacing:6.096000pt;}
.ws45{word-spacing:6.186667pt;}
.ws4d{word-spacing:6.293333pt;}
.ws41{word-spacing:6.720000pt;}
.ws68{word-spacing:7.040000pt;}
.ws44{word-spacing:7.200000pt;}
.ws42{word-spacing:7.520000pt;}
.ws5f{word-spacing:7.840000pt;}
.ws36{word-spacing:8.208000pt;}
.ws70{word-spacing:8.906667pt;}
.ws54{word-spacing:9.120000pt;}
.ws5d{word-spacing:9.333333pt;}
.ws57{word-spacing:9.600000pt;}
.ws59{word-spacing:10.080000pt;}
.ws3f{word-spacing:10.133333pt;}
.wsd{word-spacing:11.818667pt;}
.ws61{word-spacing:13.866667pt;}
.ws31{word-spacing:15.033067pt;}
.ws11{word-spacing:17.280000pt;}
.ws12{word-spacing:72.016000pt;}
.ws30{word-spacing:179.665067pt;}
._11{margin-left:-21.013333pt;}
._18{margin-left:-17.493333pt;}
._0{margin-left:-15.226347pt;}
._d{margin-left:-13.408000pt;}
._7{margin-left:-11.956816pt;}
._1{margin-left:-10.243179pt;}
._6{margin-left:-8.324090pt;}
._b{margin-left:-7.347200pt;}
._16{margin-left:-6.448000pt;}
._9{margin-left:-5.308800pt;}
._4{margin-left:-3.552000pt;}
._3{margin-left:-2.099200pt;}
._2{margin-left:-1.196800pt;}
._5{width:0.950400pt;}
._a{width:2.678400pt;}
._17{width:3.578667pt;}
._c{width:4.478933pt;}
._10{width:5.387200pt;}
._e{width:6.763200pt;}
._15{width:7.829333pt;}
._1a{width:9.381333pt;}
._19{width:10.389333pt;}
._f{width:12.139733pt;}
._13{width:13.196800pt;}
._1b{width:52.450667pt;}
._14{width:72.333867pt;}
._1c{width:111.574558pt;}
._1d{width:127.920533pt;}
._8{width:278.483142pt;}
._12{width:822.088619pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:93.277333pt;}
.fsc{font-size:106.666667pt;}
.fsd{font-size:112.000000pt;}
.fsa{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs6{font-size:201.818133pt;}
.fs4{font-size:256.000000pt;}
.fs0{font-size:276.842667pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:67.861067pt;}
.y194{bottom:67.946267pt;}
.y96{bottom:94.488133pt;}
.y13d{bottom:94.759067pt;}
.y10e{bottom:95.890400pt;}
.y21{bottom:103.508667pt;}
.y93{bottom:103.600667pt;}
.y59{bottom:104.576800pt;}
.y16f{bottom:104.636267pt;}
.ycd{bottom:106.689867pt;}
.y1b0{bottom:110.488133pt;}
.y13c{bottom:110.759067pt;}
.y10d{bottom:111.890400pt;}
.y3{bottom:114.787733pt;}
.y92{bottom:117.734000pt;}
.y20{bottom:117.908667pt;}
.ycc{bottom:119.489867pt;}
.y16e{bottom:120.636267pt;}
.y13b{bottom:126.759067pt;}
.y10c{bottom:127.890400pt;}
.y58{bottom:128.135733pt;}
.y91{bottom:131.867333pt;}
.y1f{bottom:132.308667pt;}
.y2{bottom:134.341733pt;}
.ycb{bottom:135.489867pt;}
.y16d{bottom:136.636267pt;}
.y13a{bottom:142.759067pt;}
.y10b{bottom:143.890400pt;}
.y57{bottom:144.135733pt;}
.y90{bottom:146.000667pt;}
.y16c{bottom:152.636267pt;}
.yca{bottom:155.269333pt;}
.y139{bottom:158.759067pt;}
.y10a{bottom:159.890400pt;}
.y8f{bottom:160.134000pt;}
.y56{bottom:160.135733pt;}
.yc9{bottom:168.069467pt;}
.y16b{bottom:168.636267pt;}
.y8e{bottom:174.267333pt;}
.y138{bottom:174.759067pt;}
.y55{bottom:176.135733pt;}
.y109{bottom:183.449467pt;}
.y16a{bottom:184.636267pt;}
.yc8{bottom:187.848933pt;}
.y8d{bottom:188.400667pt;}
.y54{bottom:192.135733pt;}
.y193{bottom:196.226933pt;}
.y137{bottom:198.318133pt;}
.y169{bottom:200.636267pt;}
.yc7{bottom:200.648933pt;}
.y8c{bottom:202.534000pt;}
.y53{bottom:208.135867pt;}
.y192{bottom:210.626933pt;}
.y4f{bottom:211.893600pt;}
.y168{bottom:216.636267pt;}
.y8b{bottom:216.667333pt;}
.y1{bottom:217.394533pt;}
.y108{bottom:218.649467pt;}
.yc6{bottom:220.428533pt;}
.y136{bottom:221.877200pt;}
.y191{bottom:225.026933pt;}
.y4e{bottom:226.560267pt;}
.y8a{bottom:230.800667pt;}
.y52{bottom:231.694800pt;}
.y107{bottom:233.049333pt;}
.yc5{bottom:233.228400pt;}
.y190{bottom:239.426933pt;}
.y167{bottom:240.195333pt;}
.y4d{bottom:241.226933pt;}
.y89{bottom:244.934000pt;}
.y135{bottom:245.436133pt;}
.y106{bottom:247.449467pt;}
.yc4{bottom:249.228400pt;}
.y18f{bottom:253.826933pt;}
.y51{bottom:255.253867pt;}
.y4c{bottom:255.893600pt;}
.y88{bottom:259.067333pt;}
.y166{bottom:263.754400pt;}
.y18e{bottom:268.226933pt;}
.y134{bottom:268.995333pt;}
.yc3{bottom:269.008000pt;}
.y105{bottom:269.408400pt;}
.y4b{bottom:270.560267pt;}
.y50{bottom:271.253867pt;}
.y87{bottom:273.200667pt;}
.yc2{bottom:281.808000pt;}
.y18d{bottom:282.626933pt;}
.y104{bottom:283.808400pt;}
.y4a{bottom:285.226933pt;}
.y165{bottom:287.313467pt;}
.y133{bottom:292.554400pt;}
.y16{bottom:294.285600pt;}
.y18c{bottom:297.026933pt;}
.y103{bottom:298.208400pt;}
.y49{bottom:299.893600pt;}
.yc1{bottom:301.587467pt;}
.y15{bottom:308.685600pt;}
.y164{bottom:310.872533pt;}
.y18b{bottom:311.426933pt;}
.y102{bottom:312.608400pt;}
.yc0{bottom:314.387467pt;}
.y48{bottom:314.560267pt;}
.y132{bottom:316.113333pt;}
.y14{bottom:323.085600pt;}
.y1b5{bottom:323.331733pt;}
.y18a{bottom:325.826933pt;}
.y101{bottom:327.008400pt;}
.y1a6{bottom:328.095867pt;}
.y47{bottom:329.226933pt;}
.ybf{bottom:334.167067pt;}
.y163{bottom:334.431600pt;}
.y13{bottom:337.485600pt;}
.y131{bottom:339.672400pt;}
.y1b4{bottom:340.931733pt;}
.y100{bottom:341.408400pt;}
.y46{bottom:343.893600pt;}
.ybe{bottom:346.967067pt;}
.y86{bottom:347.505067pt;}
.y12{bottom:351.885600pt;}
.y17{bottom:353.950267pt;}
.y1a5{bottom:354.854933pt;}
.y130{bottom:355.672400pt;}
.yff{bottom:355.808533pt;}
.y189{bottom:356.226933pt;}
.y162{bottom:357.990667pt;}
.y1b3{bottom:358.531733pt;}
.y45{bottom:358.560267pt;}
.y85{bottom:362.171733pt;}
.ybd{bottom:362.967067pt;}
.y11{bottom:366.285600pt;}
.yfe{bottom:370.208400pt;}
.y12f{bottom:371.672400pt;}
.y188{bottom:372.226933pt;}
.y44{bottom:373.226933pt;}
.y161{bottom:373.990667pt;}
.y1b2{bottom:376.131733pt;}
.y84{bottom:376.838400pt;}
.y10{bottom:380.685600pt;}
.y1a4{bottom:381.614000pt;}
.ybc{bottom:382.746533pt;}
.y43{bottom:387.893600pt;}
.y187{bottom:388.226933pt;}
.yfd{bottom:389.611467pt;}
.y83{bottom:391.505067pt;}
.y1b1{bottom:393.731733pt;}
.yf{bottom:395.085600pt;}
.y12e{bottom:395.231467pt;}
.ybb{bottom:395.546533pt;}
.y160{bottom:397.549733pt;}
.y42{bottom:402.560267pt;}
.yfc{bottom:404.011467pt;}
.y186{bottom:404.226933pt;}
.y82{bottom:406.171733pt;}
.y1a3{bottom:408.373067pt;}
.ye{bottom:409.485600pt;}
.yba{bottom:411.546533pt;}
.y15f{bottom:413.549733pt;}
.y41{bottom:417.226933pt;}
.y18{bottom:419.798933pt;}
.y185{bottom:420.226933pt;}
.y81{bottom:420.838400pt;}
.yd{bottom:423.885600pt;}
.yfb{bottom:425.970533pt;}
.y15e{bottom:429.549733pt;}
.y12d{bottom:430.431467pt;}
.yb9{bottom:431.326133pt;}
.y40{bottom:431.893600pt;}
.y1a2{bottom:435.132133pt;}
.y80{bottom:435.505067pt;}
.y184{bottom:436.226933pt;}
.yc{bottom:438.285600pt;}
.yfa{bottom:440.370533pt;}
.yb8{bottom:444.126000pt;}
.y15d{bottom:445.549733pt;}
.y12c{bottom:446.431467pt;}
.y3f{bottom:446.560267pt;}
.y7f{bottom:450.171733pt;}
.y183{bottom:452.226933pt;}
.yb{bottom:452.685600pt;}
.yf9{bottom:454.770533pt;}
.yb7{bottom:460.126000pt;}
.y3e{bottom:461.226933pt;}
.y15c{bottom:461.549733pt;}
.y1a1{bottom:461.891200pt;}
.y12b{bottom:462.431467pt;}
.y7e{bottom:464.838400pt;}
.ya{bottom:467.085600pt;}
.y182{bottom:468.226933pt;}
.yf8{bottom:469.170533pt;}
.y3d{bottom:475.893600pt;}
.y15b{bottom:477.549733pt;}
.y12a{bottom:478.431467pt;}
.y7d{bottom:479.505067pt;}
.yb6{bottom:479.905600pt;}
.y9{bottom:481.485600pt;}
.yf7{bottom:483.570533pt;}
.y181{bottom:484.226933pt;}
.y1a0{bottom:488.650267pt;}
.y3c{bottom:490.560267pt;}
.yb5{bottom:492.705600pt;}
.y15a{bottom:493.549733pt;}
.y7c{bottom:494.171733pt;}
.y129{bottom:494.431467pt;}
.y8{bottom:495.885600pt;}
.yf6{bottom:497.970533pt;}
.y180{bottom:500.226933pt;}
.y3b{bottom:505.226933pt;}
.yb4{bottom:508.705600pt;}
.y1af{bottom:508.733600pt;}
.y7b{bottom:508.838400pt;}
.y159{bottom:509.549733pt;}
.y7{bottom:510.285600pt;}
.y128{bottom:510.431467pt;}
.yf5{bottom:512.370533pt;}
.y19f{bottom:515.409200pt;}
.y17f{bottom:516.226933pt;}
.y3a{bottom:519.893600pt;}
.y7a{bottom:523.505067pt;}
.y6{bottom:524.685733pt;}
.y158{bottom:525.549733pt;}
.y1ae{bottom:526.333600pt;}
.y127{bottom:526.431467pt;}
.yb3{bottom:528.485200pt;}
.yf4{bottom:531.773467pt;}
.y17e{bottom:532.226933pt;}
.y39{bottom:534.560267pt;}
.y79{bottom:538.171733pt;}
.y5{bottom:539.085600pt;}
.yb2{bottom:541.285067pt;}
.y157{bottom:541.549733pt;}
.y19e{bottom:542.168400pt;}
.y1ad{bottom:543.933600pt;}
.yf3{bottom:546.173467pt;}
.y17d{bottom:548.226933pt;}
.y38{bottom:549.226933pt;}
.y126{bottom:549.990533pt;}
.y78{bottom:552.838400pt;}
.yb1{bottom:557.285067pt;}
.y156{bottom:557.549733pt;}
.y1ac{bottom:561.533600pt;}
.y37{bottom:563.893600pt;}
.y17c{bottom:564.226933pt;}
.y125{bottom:565.990533pt;}
.y77{bottom:567.505067pt;}
.yf2{bottom:568.132533pt;}
.y19d{bottom:568.927467pt;}
.y155{bottom:573.549733pt;}
.yb0{bottom:577.064667pt;}
.y36{bottom:578.560267pt;}
.y17b{bottom:580.226933pt;}
.y76{bottom:582.171733pt;}
.yf1{bottom:582.532533pt;}
.y124{bottom:589.549600pt;}
.y154{bottom:589.549733pt;}
.yaf{bottom:589.864667pt;}
.y35{bottom:593.226933pt;}
.y19c{bottom:595.686400pt;}
.y17a{bottom:596.226933pt;}
.y75{bottom:596.838400pt;}
.yf0{bottom:596.932533pt;}
.y123{bottom:605.549600pt;}
.y153{bottom:605.549733pt;}
.y34{bottom:607.893600pt;}
.yae{bottom:609.644267pt;}
.yef{bottom:611.332533pt;}
.y74{bottom:611.505067pt;}
.y179{bottom:612.226933pt;}
.y152{bottom:621.549733pt;}
.yad{bottom:622.444133pt;}
.y19b{bottom:622.445467pt;}
.y33{bottom:622.560267pt;}
.yee{bottom:625.732533pt;}
.y73{bottom:626.171733pt;}
.y178{bottom:628.226933pt;}
.y122{bottom:629.108667pt;}
.y32{bottom:637.226933pt;}
.y151{bottom:637.549733pt;}
.yed{bottom:640.132533pt;}
.y72{bottom:640.838400pt;}
.yac{bottom:642.223733pt;}
.y177{bottom:644.226933pt;}
.y121{bottom:645.108667pt;}
.y19a{bottom:649.204533pt;}
.y31{bottom:651.893600pt;}
.y150{bottom:653.549733pt;}
.yec{bottom:654.532533pt;}
.yab{bottom:655.023733pt;}
.y71{bottom:655.505067pt;}
.y176{bottom:660.226933pt;}
.y30{bottom:666.560267pt;}
.y120{bottom:668.667733pt;}
.y14f{bottom:669.549733pt;}
.y70{bottom:670.171733pt;}
.yaa{bottom:674.803200pt;}
.y199{bottom:675.963600pt;}
.y175{bottom:676.226933pt;}
.y1a7{bottom:676.535467pt;}
.y2f{bottom:681.226933pt;}
.y11f{bottom:684.667733pt;}
.y6f{bottom:684.838400pt;}
.y14e{bottom:685.549733pt;}
.ya9{bottom:687.603200pt;}
.yeb{bottom:689.935600pt;}
.y174{bottom:692.226933pt;}
.y2e{bottom:695.893600pt;}
.y6e{bottom:699.505067pt;}
.y11e{bottom:700.667733pt;}
.y14d{bottom:701.549733pt;}
.y198{bottom:702.722667pt;}
.yea{bottom:705.935600pt;}
.ya8{bottom:707.382800pt;}
.y173{bottom:708.226933pt;}
.y2d{bottom:710.560267pt;}
.y6d{bottom:714.171733pt;}
.y1ab{bottom:716.515333pt;}
.y14c{bottom:717.549733pt;}
.ya7{bottom:720.182800pt;}
.y11d{bottom:724.226800pt;}
.y172{bottom:724.226933pt;}
.y2c{bottom:725.226933pt;}
.y6c{bottom:728.838400pt;}
.y197{bottom:729.481733pt;}
.y14b{bottom:733.549733pt;}
.ye9{bottom:734.202267pt;}
.ydf{bottom:734.708667pt;}
.y2b{bottom:739.893600pt;}
.ya6{bottom:739.962267pt;}
.y11c{bottom:740.226800pt;}
.y171{bottom:740.226933pt;}
.y1aa{bottom:743.274267pt;}
.y6b{bottom:743.505067pt;}
.yde{bottom:747.508667pt;}
.y14a{bottom:749.549733pt;}
.ye8{bottom:750.202267pt;}
.ya5{bottom:752.762267pt;}
.y2a{bottom:754.560267pt;}
.y196{bottom:756.240800pt;}
.y6a{bottom:758.171733pt;}
.ydd{bottom:763.508667pt;}
.y11b{bottom:763.785867pt;}
.y170{bottom:763.786000pt;}
.y149{bottom:765.549733pt;}
.ye7{bottom:766.202267pt;}
.y29{bottom:769.226933pt;}
.y1a9{bottom:770.033467pt;}
.ya4{bottom:772.541867pt;}
.y69{bottom:772.838400pt;}
.y148{bottom:781.549733pt;}
.y195{bottom:782.999867pt;}
.ydc{bottom:783.288267pt;}
.y28{bottom:783.893600pt;}
.ya3{bottom:785.341733pt;}
.y68{bottom:787.505067pt;}
.ydb{bottom:796.088267pt;}
.y1a8{bottom:796.792533pt;}
.y147{bottom:797.549733pt;}
.y27{bottom:798.560267pt;}
.y11a{bottom:798.985867pt;}
.ye6{bottom:799.802267pt;}
.y67{bottom:802.171733pt;}
.ya2{bottom:805.121333pt;}
.y26{bottom:813.226933pt;}
.y146{bottom:813.549733pt;}
.y119{bottom:814.985867pt;}
.yda{bottom:815.867733pt;}
.y66{bottom:816.838400pt;}
.ya1{bottom:817.921333pt;}
.yd9{bottom:828.667733pt;}
.y145{bottom:829.549733pt;}
.y118{bottom:830.985867pt;}
.y65{bottom:831.505067pt;}
.ya0{bottom:833.921333pt;}
.y25{bottom:835.452667pt;}
.ye5{bottom:838.202267pt;}
.yd8{bottom:844.667733pt;}
.y64{bottom:846.171733pt;}
.y117{bottom:846.985867pt;}
.y24{bottom:850.119333pt;}
.y144{bottom:853.108667pt;}
.y9f{bottom:853.700800pt;}
.y63{bottom:860.838400pt;}
.y116{bottom:862.985867pt;}
.yd7{bottom:864.447200pt;}
.y9e{bottom:866.500933pt;}
.y23{bottom:872.345067pt;}
.y62{bottom:875.505067pt;}
.ye4{bottom:876.602267pt;}
.yd6{bottom:877.247200pt;}
.y115{bottom:878.985867pt;}
.y9d{bottom:882.500933pt;}
.y22{bottom:887.011733pt;}
.y143{bottom:888.308800pt;}
.y61{bottom:890.171733pt;}
.yd5{bottom:893.247200pt;}
.y114{bottom:894.985867pt;}
.y9c{bottom:902.280400pt;}
.y142{bottom:904.308800pt;}
.y60{bottom:904.838400pt;}
.y113{bottom:910.985867pt;}
.yd4{bottom:913.026800pt;}
.ye3{bottom:915.002267pt;}
.y9b{bottom:915.080400pt;}
.y5f{bottom:919.505067pt;}
.y1d{bottom:920.123333pt;}
.y1e{bottom:920.123467pt;}
.yd3{bottom:925.826800pt;}
.y112{bottom:926.985867pt;}
.y141{bottom:927.867867pt;}
.y9a{bottom:931.080400pt;}
.y5e{bottom:934.171733pt;}
.y111{bottom:942.985867pt;}
.y140{bottom:943.867867pt;}
.yd2{bottom:945.606267pt;}
.ye2{bottom:953.402267pt;}
.y5d{bottom:956.397467pt;}
.yd1{bottom:958.406267pt;}
.y110{bottom:958.985867pt;}
.y99{bottom:966.911733pt;}
.y13f{bottom:967.426800pt;}
.y5c{bottom:971.064133pt;}
.y10f{bottom:974.985867pt;}
.yd0{bottom:978.185867pt;}
.y1c{bottom:980.668800pt;}
.y13e{bottom:983.426800pt;}
.ycf{bottom:990.985867pt;}
.ye1{bottom:991.802267pt;}
.y5b{bottom:993.289867pt;}
.yce{bottom:1006.985867pt;}
.y5a{bottom:1007.956533pt;}
.y4{bottom:1026.897600pt;}
.y1b{bottom:1026.897733pt;}
.y1a{bottom:1037.564400pt;}
.y95{bottom:1038.555200pt;}
.y19{bottom:1048.231067pt;}
.ye0{bottom:1053.354400pt;}
.y98{bottom:1053.362533pt;}
.y94{bottom:1066.538400pt;}
.h8{height:31.062500pt;}
.he{height:31.083333pt;}
.h16{height:31.250000pt;}
.h5{height:34.944000pt;}
.hc{height:34.945312pt;}
.hb{height:34.968750pt;}
.hd{height:35.156250pt;}
.hf{height:37.812500pt;}
.h14{height:38.854167pt;}
.h19{height:42.539062pt;}
.h18{height:42.739583pt;}
.h20{height:42.968750pt;}
.h3{height:44.875000pt;}
.h12{height:46.592000pt;}
.ha{height:46.593750pt;}
.h1e{height:46.625000pt;}
.h15{height:47.265625pt;}
.h1f{height:51.992188pt;}
.h4{height:54.395833pt;}
.h10{height:67.905899pt;}
.h1b{height:74.791667pt;}
.h1c{height:74.792200pt;}
.h1d{height:75.687500pt;}
.h17{height:89.750000pt;}
.h11{height:112.187500pt;}
.h1a{height:113.592633pt;}
.h9{height:146.923601pt;}
.h13{height:179.500000pt;}
.h6{height:186.368000pt;}
.h2{height:201.541461pt;}
.h7{height:226.875000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1f{left:-593.540133pt;}
.x0{left:0.000000pt;}
.x18{left:60.472400pt;}
.x23{left:62.740133pt;}
.x1b{left:64.251867pt;}
.x30{left:65.805733pt;}
.x19{left:68.409467pt;}
.x39{left:78.325467pt;}
.xd{left:87.140000pt;}
.xc{left:92.976400pt;}
.x38{left:94.531867pt;}
.x24{left:98.267733pt;}
.x2{left:113.007733pt;}
.x6{left:114.054933pt;}
.x5{left:117.663333pt;}
.x1e{left:124.724400pt;}
.x33{left:153.196800pt;}
.x37{left:158.740133pt;}
.x40{left:165.419600pt;}
.x3e{left:176.154533pt;}
.x3f{left:188.794533pt;}
.x1d{left:190.753733pt;}
.x3d{left:196.117200pt;}
.xa{left:200.262800pt;}
.x32{left:224.457067pt;}
.x3b{left:238.849867pt;}
.x1{left:260.031467pt;}
.x3a{left:266.238533pt;}
.x41{left:278.842667pt;}
.x2a{left:283.959200pt;}
.x4{left:303.622000pt;}
.x29{left:314.287333pt;}
.x3c{left:332.612933pt;}
.x36{left:338.550133pt;}
.x3{left:354.850800pt;}
.x2f{left:410.326400pt;}
.x27{left:420.349733pt;}
.x2d{left:431.797733pt;}
.x26{left:450.412267pt;}
.x9{left:458.546133pt;}
.x7{left:462.499200pt;}
.x8{left:473.559067pt;}
.x2e{left:488.289867pt;}
.x20{left:497.536000pt;}
.x2c{left:500.736533pt;}
.x12{left:502.677200pt;}
.x11{left:503.676267pt;}
.x14{left:508.973067pt;}
.xe{left:512.688000pt;}
.x13{left:515.699600pt;}
.x15{left:520.691867pt;}
.x17{left:522.323733pt;}
.x31{left:532.102933pt;}
.x1c{left:534.748533pt;}
.x16{left:539.688000pt;}
.x28{left:543.459200pt;}
.x10{left:551.351067pt;}
.xf{left:583.047333pt;}
.xb{left:601.595600pt;}
.x2b{left:609.802933pt;}
.x34{left:683.732000pt;}
.x25{left:691.411867pt;}
.x22{left:699.091733pt;}
.x35{left:750.191067pt;}
.x21{left:760.562133pt;}
.x1a{left:1291.236800pt;}
}




    .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; }
  