
    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_9d81018d474945dbc1b04275.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4ffe232afe385220040284e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_654c4c1efb9b2707e56e6c34.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_260fe50be076a85741c53428.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_979b5a15846f152bb283f731.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_695ba1df5819e29ea3fa19ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c2dded9e51739a399f05d2f7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6c608f35981d8e564175db0b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_56d85cb558a8f37854f1e9cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935000;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_bd16fbd5e410cd76121c457b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_abe8785d78e036a0dcae185e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710000;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_654c4c1efb9b2707e56e6c34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_10871028f1c36258c015bff7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cdb3ec204ee0fd063d089371.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.716000;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_57b36c8f19fbb91b53595f59.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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_64ac90fbb7fd58b67a437c21.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c93473b72a18ce4f528af81b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.716000;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_a278ef0c6c984083d1d0d872.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.987000;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_3e55cf3b328225cd4868894f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.992000;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_ab103ec97f346f895b34cfde.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.997000;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_10759e8371fb9bd04438ba00.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.716000;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_918bd5cdf8be749d978e6ad7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.957000;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_81d78349ab45c5ce59af4963.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_3a926132f515f087c46f5143.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_dcddc6b183bf630608110ebb.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_654c4c1efb9b2707e56e6c34.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;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_87407f017abccb96f53860f4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.710000;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_ac9b6641017add437142844b.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_161d1da36a902ba33af1ef14.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.710000;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_27e2beb87a4bdb274511b445.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.997000;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_5411da2a7088569e9bf5d9ce.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.987000;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_18c19b4cf9d31cb2f7d2eb04.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.716000;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_1a65d00bdcb07a32a1cc71b0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.913000;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_e1e92449258ec9d7cce05e9c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.710000;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_b2595ea3a8dcf3afc128018f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.913000;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_296cf95bd083ca1660eb7c1e.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.987000;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_41366ddcb9260b116a664b9f.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_7e8f0f815dfc95e33355e5c5.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.957000;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_4db0a64b4a1f0aad2a7da4a5.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.894000;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_4db0a64b4a1f0aad2a7da4a5.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.894000;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_45dedd0a8ae54826f2f3cd8e.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_679fd96218e46558f49100bd.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_1674f4ce9fd6c4eb38b93299.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_4e570fc813f06f4c63467529.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_bd16fbd5e410cd76121c457b.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_f1a0335f97072f60603b3685.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_4e321243c8f7e92f2b5b245b.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_56d85cb558a8f37854f1e9cc.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.935000;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:ff31;src:url('chunks/assets/font_f1a0335f97072f60603b3685.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_f9959c51352903101b78ec22.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_c2b093976ca7fed89a4cf58d.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_654c4c1efb9b2707e56e6c34.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.700000;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:ff35;src:url('chunks/assets/font_58af25227d302ec7d139aec1.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_384be5192fd20033de6aa2a4.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_8435e301ac7347234b5a9850.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.894000;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:ff38;src:url('chunks/assets/font_fe620f1f7b3588bce5194069.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.710000;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:ff39;src:url('chunks/assets/font_406e864fabd08ec3b2eca128.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_9b6818131fa17d3aa800abca.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.940000;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:ff3b;src:url('chunks/assets/font_5e35e904d7cb8aefc30916ad.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.010000;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:ff3c;src:url('chunks/assets/font_fcf6fe36949e4874ea64739a.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.010000;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:ff3d;src:url('chunks/assets/font_cd27a769b10e24d00b9c14c7.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_260fe50be076a85741c53428.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.935000;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;}
.m9{transform:matrix(0.197715,0.152999,-0.152999,0.197715,0,0);-ms-transform:matrix(0.197715,0.152999,-0.152999,0.197715,0,0);-webkit-transform:matrix(0.197715,0.152999,-0.152999,0.197715,0,0);}
.ma{transform:matrix(0.219251,-0.120121,0.120121,0.219251,0,0);-ms-transform:matrix(0.219251,-0.120121,0.120121,0.219251,0,0);-webkit-transform:matrix(0.219251,-0.120121,0.120121,0.219251,0,0);}
.m6{transform:matrix(0.234137,-0.087634,0.087634,0.234137,0,0);-ms-transform:matrix(0.234137,-0.087634,0.087634,0.234137,0,0);-webkit-transform:matrix(0.234137,-0.087634,0.087634,0.234137,0,0);}
.m5{transform:matrix(0.239794,0.070703,-0.070703,0.239794,0,0);-ms-transform:matrix(0.239794,0.070703,-0.070703,0.239794,0,0);-webkit-transform:matrix(0.239794,0.070703,-0.070703,0.239794,0,0);}
.mf{transform:matrix(0.243856,0.055085,-0.055085,0.243856,0,0);-ms-transform:matrix(0.243856,0.055085,-0.055085,0.243856,0,0);-webkit-transform:matrix(0.243856,0.055085,-0.055085,0.243856,0,0);}
.md{transform:matrix(0.246033,0.044357,-0.044357,0.246033,0,0);-ms-transform:matrix(0.246033,0.044357,-0.044357,0.246033,0,0);-webkit-transform:matrix(0.246033,0.044357,-0.044357,0.246033,0,0);}
.mc{transform:matrix(0.246663,-0.040711,0.040711,0.246663,0,0);-ms-transform:matrix(0.246663,-0.040711,0.040711,0.246663,0,0);-webkit-transform:matrix(0.246663,-0.040711,0.040711,0.246663,0,0);}
.m8{transform:matrix(0.248765,0.024821,-0.024821,0.248765,0,0);-ms-transform:matrix(0.248765,0.024821,-0.024821,0.248765,0,0);-webkit-transform:matrix(0.248765,0.024821,-0.024821,0.248765,0,0);}
.m10{transform:matrix(0.249285,-0.018897,0.018897,0.249285,0,0);-ms-transform:matrix(0.249285,-0.018897,0.018897,0.249285,0,0);-webkit-transform:matrix(0.249285,-0.018897,0.018897,0.249285,0,0);}
.m7{transform:matrix(0.249802,0.009954,-0.009954,0.249802,0,0);-ms-transform:matrix(0.249802,0.009954,-0.009954,0.249802,0,0);-webkit-transform:matrix(0.249802,0.009954,-0.009954,0.249802,0,0);}
.m4{transform:matrix(0.249868,-0.008119,0.008119,0.249868,0,0);-ms-transform:matrix(0.249868,-0.008119,0.008119,0.249868,0,0);-webkit-transform:matrix(0.249868,-0.008119,0.008119,0.249868,0,0);}
.me{transform:matrix(0.249944,-0.005284,0.005284,0.249944,0,0);-ms-transform:matrix(0.249944,-0.005284,0.005284,0.249944,0,0);-webkit-transform:matrix(0.249944,-0.005284,0.005284,0.249944,0,0);}
.m2{transform:matrix(0.249960,0.004446,-0.004446,0.249960,0,0);-ms-transform:matrix(0.249960,0.004446,-0.004446,0.249960,0,0);-webkit-transform:matrix(0.249960,0.004446,-0.004446,0.249960,0,0);}
.mb{transform:matrix(0.249998,0.000964,-0.000964,0.249998,0,0);-ms-transform:matrix(0.249998,0.000964,-0.000964,0.249998,0,0);-webkit-transform:matrix(0.249998,0.000964,-0.000964,0.249998,0,0);}
.m3{transform:matrix(0.249999,-0.000641,0.000641,0.249999,0,0);-ms-transform:matrix(0.249999,-0.000641,0.000641,0.249999,0,0);-webkit-transform:matrix(0.249999,-0.000641,0.000641,0.249999,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);}
.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);}
.v1{vertical-align:-16.649913px;}
.v3{vertical-align:-6.525000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.080463px;}
.v4{vertical-align:38.096898px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000139px;}
.ls4{letter-spacing:0.014622px;}
.lsb{letter-spacing:0.021913px;}
.ls9{letter-spacing:0.021936px;}
.lsa{letter-spacing:0.021958px;}
.lsc{letter-spacing:0.028125px;}
.lsd{letter-spacing:0.033750px;}
.ls0{letter-spacing:0.056250px;}
.ls7{letter-spacing:0.056787px;}
.ls6{letter-spacing:0.056809px;}
.ls8{letter-spacing:0.056832px;}
.lse{letter-spacing:10.101915px;}
.ls1{letter-spacing:10.515736px;}
.ls5{letter-spacing:12.753562px;}
.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;}
}
.ws26{word-spacing:-203.939992px;}
.ws24{word-spacing:-134.394748px;}
.ws13{word-spacing:-117.551540px;}
.ws1a{word-spacing:-115.494748px;}
.ws0{word-spacing:-75.599997px;}
.ws1d{word-spacing:-74.040744px;}
.ws5{word-spacing:-65.094750px;}
.ws7{word-spacing:-63.535497px;}
.ws23{word-spacing:-63.251999px;}
.ws25{word-spacing:-62.984251px;}
.ws8{word-spacing:-58.794751px;}
.ws1b{word-spacing:-52.494751px;}
.ws22{word-spacing:-51.124494px;}
.ws4{word-spacing:-50.399998px;}
.ws3{word-spacing:-49.580998px;}
.wse{word-spacing:-46.462498px;}
.ws20{word-spacing:-44.254978px;}
.ws1e{word-spacing:-44.099998px;}
.ws9{word-spacing:-42.895123px;}
.ws15{word-spacing:-42.808496px;}
.ws6{word-spacing:-42.556498px;}
.ws10{word-spacing:-41.532750px;}
.ws18{word-spacing:-37.799998px;}
.ws2{word-spacing:-37.673998px;}
.ws16{word-spacing:-35.972999px;}
.ws1f{word-spacing:-35.689499px;}
.ws21{word-spacing:-35.327249px;}
.ws17{word-spacing:-31.796821px;}
.wsc{word-spacing:-29.249999px;}
.ws12{word-spacing:-26.273541px;}
.wsd{word-spacing:-25.345124px;}
.wsb{word-spacing:-20.496059px;}
.wsa{word-spacing:-17.133838px;}
.ws11{word-spacing:-0.329985px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:2200.843813px;}
.wsf{word-spacing:2528.907271px;}
.ws19{word-spacing:2816.321141px;}
.ws14{word-spacing:3208.932016px;}
._8{margin-left:-1500.345153px;}
._11{margin-left:-2.412054px;}
._a{margin-left:-1.006141px;}
._4{width:1.017752px;}
._5{width:2.088395px;}
._e{width:3.312058px;}
._d{width:7.191234px;}
._2{width:8.501151px;}
._0{width:10.467277px;}
._3{width:12.673295px;}
._f{width:30.273425px;}
._6{width:95.505703px;}
._7{width:153.657210px;}
._9{width:521.435385px;}
._b{width:1610.215911px;}
._10{width:1635.695473px;}
._1{width:1873.946315px;}
._c{width:3838.379453px;}
.fc9{color:rgb(47,85,151);}
.fc7{color:rgb(39,38,101);}
.fc5{color:rgb(238,236,255);}
.fc4{color:rgb(49,39,64);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(254,254,254);}
.fc2{color:rgb(0,0,0);}
.fc8{color:rgb(45,41,50);}
.fc1{color:rgb(149,119,37);}
.fc0{color:rgb(93,83,165);}
.fs14{font-size:77.984997px;}
.fs11{font-size:80.819992px;}
.fs32{font-size:84.105001px;}
.fs12{font-size:88.919996px;}
.fs13{font-size:89.999996px;}
.fs24{font-size:90.989990px;}
.fs23{font-size:90.989992px;}
.fs31{font-size:100.934996px;}
.fs2e{font-size:101.969996px;}
.fs25{font-size:102.779996px;}
.fs6{font-size:107.639996px;}
.fs5{font-size:107.864991px;}
.fs1a{font-size:107.999996px;}
.fs28{font-size:112.499995px;}
.fs19{font-size:113.984995px;}
.fs1d{font-size:115.334990px;}
.fs30{font-size:118.305000px;}
.fs17{font-size:118.665000px;}
.fs22{font-size:119.969995px;}
.fs1e{font-size:119.969998px;}
.fsc{font-size:121.589995px;}
.fs21{font-size:122.309990px;}
.fs20{font-size:123.569994px;}
.fs1f{font-size:124.199994px;}
.fs8{font-size:125.999995px;}
.fs2f{font-size:128.474990px;}
.fs34{font-size:129.284992px;}
.fs10{font-size:131.984995px;}
.fs15{font-size:132.749994px;}
.fs38{font-size:137.609993px;}
.fs7{font-size:141.659994px;}
.fs3b{font-size:143.954994px;}
.fs3{font-size:143.999994px;}
.fs33{font-size:146.069982px;}
.fsf{font-size:149.985003px;}
.fs2{font-size:150.254989px;}
.fs18{font-size:154.664989px;}
.fs36{font-size:155.744997px;}
.fs39{font-size:160.064992px;}
.fs37{font-size:166.589998px;}
.fse{font-size:167.985002px;}
.fs2a{font-size:168.569988px;}
.fs3a{font-size:179.955002px;}
.fs27{font-size:179.999993px;}
.fs2b{font-size:180.584997px;}
.fs35{font-size:180.719997px;}
.fs2c{font-size:181.349988px;}
.fsb{font-size:181.529992px;}
.fsa{font-size:185.985001px;}
.fs3d{font-size:197.999992px;}
.fs2d{font-size:211.544982px;}
.fs1{font-size:215.999991px;}
.fsd{font-size:221.985000px;}
.fs16{font-size:226.619995px;}
.fs26{font-size:238.589990px;}
.fs0{font-size:239.984999px;}
.fs29{font-size:275.984998px;}
.fs9{font-size:329.984995px;}
.fs4{font-size:383.984993px;}
.fs3c{font-size:395.999984px;}
.fs1b{font-size:509.984988px;}
.fs1c{font-size:509.984989px;}
.fs3e{font-size:625.950001px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y12c{bottom:62.658988px;}
.y2b{bottom:70.037997px;}
.yb7{bottom:75.385322px;}
.y13a{bottom:83.249997px;}
.y7{bottom:95.005184px;}
.y12b{bottom:108.601799px;}
.yb6{bottom:118.179747px;}
.ye9{bottom:121.538659px;}
.y5a{bottom:122.981755px;}
.y127{bottom:123.631878px;}
.y106{bottom:127.412383px;}
.y109{bottom:127.696459px;}
.y25{bottom:128.590915px;}
.y23{bottom:136.330842px;}
.y3a{bottom:136.992918px;}
.ydd{bottom:137.889750px;}
.ye6{bottom:140.807190px;}
.y59{bottom:152.231754px;}
.yb5{bottom:159.193566px;}
.y105{bottom:162.811217px;}
.y12a{bottom:163.569091px;}
.y126{bottom:171.311243px;}
.y99{bottom:171.513101px;}
.y24{bottom:173.590913px;}
.y32{bottom:174.169145px;}
.y22{bottom:181.330840px;}
.y58{bottom:181.481752px;}
.ybc{bottom:189.555950px;}
.y39{bottom:193.242916px;}
.yd5{bottom:194.473108px;}
.ye5{bottom:195.932188px;}
.ydc{bottom:199.764748px;}
.yb4{bottom:200.349469px;}
.y21{bottom:204.940899px;}
.y14{bottom:208.313955px;}
.y57{bottom:210.731751px;}
.y98{bottom:210.888099px;}
.y125{bottom:214.590695px;}
.y129{bottom:219.031986px;}
.ybb{bottom:223.246379px;}
.y102{bottom:227.606211px;}
.y10b{bottom:228.163526px;}
.yd7{bottom:231.248222px;}
.yd4{bottom:231.598106px;}
.y143{bottom:237.562910px;}
.y56{bottom:239.981750px;}
.yb3{bottom:240.925836px;}
.y97{bottom:250.263098px;}
.y77{bottom:251.103050px;}
.y7e{bottom:255.150853px;}
.y124{bottom:256.805028px;}
.y101{bottom:259.671517px;}
.ydb{bottom:261.639745px;}
.yae{bottom:261.653745px;}
.yd3{bottom:268.723105px;}
.y55{bottom:269.231749px;}
.yd6{bottom:270.623221px;}
.y128{bottom:273.932844px;}
.y6{bottom:274.425361px;}
.y9f{bottom:284.817300px;}
.y20{bottom:287.866500px;}
.ye4{bottom:288.182184px;}
.y38{bottom:289.259448px;}
.y96{bottom:289.638096px;}
.yc{bottom:291.322068px;}
.y65{bottom:298.144248px;}
.y54{bottom:298.481748px;}
.y76{bottom:300.603047px;}
.y7d{bottom:304.650851px;}
.y84{bottom:304.655603px;}
.yad{bottom:306.680272px;}
.y123{bottom:307.644894px;}
.y88{bottom:307.710167px;}
.y9e{bottom:315.192299px;}
.y50{bottom:317.579135px;}
.y5{bottom:326.175358px;}
.y31{bottom:326.435602px;}
.y64{bottom:327.394246px;}
.y53{bottom:327.731746px;}
.y95{bottom:329.013094px;}
.y138{bottom:329.600362px;}
.y133{bottom:335.615602px;}
.y100{bottom:336.064018px;}
.y136{bottom:336.371746px;}
.y10a{bottom:336.621334px;}
.y37{bottom:345.509446px;}
.y9d{bottom:345.567298px;}
.y4d{bottom:345.704134px;}
.y89{bottom:349.879557px;}
.ycb{bottom:350.206419px;}
.y122{bottom:352.636285px;}
.y63{bottom:356.644245px;}
.y52{bottom:356.981745px;}
.yff{bottom:368.129433px;}
.y1f{bottom:370.955973px;}
.y4c{bottom:373.829132px;}
.yf{bottom:374.329136px;}
.ye3{bottom:378.932024px;}
.y135{bottom:378.964424px;}
.y137{bottom:379.100360px;}
.y12f{bottom:383.630708px;}
.y132{bottom:383.990600px;}
.y130{bottom:384.908636px;}
.yca{bottom:385.081418px;}
.y62{bottom:385.894244px;}
.y51{bottom:386.231744px;}
.y75{bottom:386.233623px;}
.y121{bottom:387.019466px;}
.y7c{bottom:400.010959px;}
.y4b{bottom:401.954131px;}
.yc2{bottom:404.909767px;}
.yc9{bottom:419.956417px;}
.y108{bottom:426.086298px;}
.yb2{bottom:428.079156px;}
.y74{bottom:431.233621px;}
.y134{bottom:434.717118px;}
.ye2{bottom:435.182022px;}
.y12e{bottom:435.380706px;}
.y131{bottom:435.740598px;}
.y36{bottom:441.525870px;}
.y120{bottom:444.030952px;}
.y7b{bottom:446.135957px;}
.ya1{bottom:448.487981px;}
.y141{bottom:452.451405px;}
.y1e{bottom:452.916737px;}
.y87{bottom:454.592789px;}
.yc8{bottom:454.831415px;}
.y6d{bottom:455.767901px;}
.y13{bottom:457.543673px;}
.y107{bottom:457.586297px;}
.yb1{bottom:457.955999px;}
.yc1{bottom:458.909765px;}
.y93{bottom:459.317267px;}
.y43{bottom:468.486448px;}
.y3f{bottom:471.843484px;}
.y112{bottom:473.610351px;}
.y30{bottom:478.701016px;}
.yac{bottom:481.636611px;}
.y6c{bottom:483.892900px;}
.yc7{bottom:489.706414px;}
.y94{bottom:491.522596px;}
.y81{bottom:493.008279px;}
.y86{bottom:493.967787px;}
.y92{bottom:496.442265px;}
.y35{bottom:497.775867px;}
.y42{bottom:498.861447px;}
.yb0{bottom:499.114980px;}
.y73{bottom:499.858618px;}
.y11f{bottom:501.120453px;}
.y3e{bottom:502.218483px;}
.y104{bottom:508.753131px;}
.y10c{bottom:509.394399px;}
.y140{bottom:510.951402px;}
.y4{bottom:511.601638px;}
.yc0{bottom:512.909763px;}
.yfb{bottom:513.926478px;}
.yab{bottom:523.384650px;}
.y111{bottom:523.681276px;}
.yc6{bottom:524.581412px;}
.y142{bottom:527.647564px;}
.ye1{bottom:528.371521px;}
.yf3{bottom:529.998202px;}
.y91{bottom:532.442264px;}
.y12{bottom:533.039039px;}
.yaf{bottom:535.923777px;}
.y80{bottom:535.939358px;}
.y103{bottom:536.403290px;}
.y72{bottom:544.858616px;}
.y1d{bottom:549.225697px;}
.y11d{bottom:556.455204px;}
.y11e{bottom:558.482638px;}
.yc5{bottom:559.456411px;}
.yaa{bottom:563.534888px;}
.y78{bottom:566.558472px;}
.ybf{bottom:566.909760px;}
.y46{bottom:567.765502px;}
.yfa{bottom:567.926476px;}
.y13f{bottom:569.451400px;}
.y90{bottom:570.692262px;}
.y11{bottom:572.414038px;}
.y110{bottom:573.275012px;}
.ye0{bottom:582.371519px;}
.yf2{bottom:583.998200px;}
.y9c{bottom:586.415280px;}
.y3d{bottom:586.421518px;}
.y41{bottom:586.605694px;}
.y3{bottom:588.101635px;}
.yc4{bottom:594.331409px;}
.y71{bottom:594.358614px;}
.y45{bottom:598.140501px;}
.y34{bottom:599.794517px;}
.ya9{bottom:605.920564px;}
.y8f{bottom:608.942261px;}
.y3c{bottom:613.421517px;}
.y11c{bottom:614.310682px;}
.yc3{bottom:620.223811px;}
.y40{bottom:620.355693px;}
.yf9{bottom:621.926474px;}
.ycd{bottom:622.209347px;}
.y10f{bottom:622.775928px;}
.y9b{bottom:625.790231px;}
.y13e{bottom:627.951397px;}
.y44{bottom:628.515499px;}
.y2f{bottom:630.967474px;}
.yfe{bottom:632.878832px;}
.yf1{bottom:637.998198px;}
.y83{bottom:638.021706px;}
.y85{bottom:638.167650px;}
.y1c{bottom:645.534729px;}
.ya8{bottom:645.903544px;}
.y8e{bottom:647.192259px;}
.y10{bottom:650.160545px;}
.y33{bottom:650.419515px;}
.yd2{bottom:662.251480px;}
.ycf{bottom:662.453980px;}
.y9a{bottom:665.165229px;}
.y11b{bottom:666.106177px;}
.y2{bottom:671.351631px;}
.yd1{bottom:671.357258px;}
.y10e{bottom:672.275555px;}
.yf8{bottom:675.926471px;}
.y82{bottom:681.491088px;}
.y7a{bottom:685.295172px;}
.y8d{bottom:685.442257px;}
.y13d{bottom:686.451395px;}
.y70{bottom:689.718708px;}
.yf0{bottom:691.998196px;}
.y4a{bottom:699.139836px;}
.y11a{bottom:702.083079px;}
.yd0{bottom:712.684086px;}
.yce{bottom:713.922727px;}
.y4f{bottom:717.001404px;}
.y61{bottom:719.593915px;}
.y10d{bottom:721.775182px;}
.y6b{bottom:725.524929px;}
.y49{bottom:727.264834px;}
.y1b{bottom:728.540566px;}
.yf7{bottom:729.926469px;}
.y79{bottom:731.420170px;}
.ye{bottom:732.961111px;}
.y6f{bottom:735.843706px;}
.y13c{bottom:744.951393px;}
.y4e{bottom:745.126403px;}
.yef{bottom:745.998193px;}
.y60{bottom:748.843914px;}
.y5f{bottom:753.343914px;}
.ybe{bottom:753.899962px;}
.yfd{bottom:754.025639px;}
.y6a{bottom:754.774928px;}
.y48{bottom:755.389833px;}
.y119{bottom:766.689546px;}
.y2e{bottom:770.806109px;}
.ybd{bottom:774.633636px;}
.y5e{bottom:782.593913px;}
.y47{bottom:783.514832px;}
.yf6{bottom:783.926467px;}
.y69{bottom:784.024927px;}
.ya2{bottom:787.818978px;}
.yee{bottom:799.998191px;}
.ya0{bottom:800.851452px;}
.y13b{bottom:803.451390px;}
.y1a{bottom:811.546425px;}
.y5d{bottom:811.843911px;}
.y68{bottom:813.274926px;}
.yd{bottom:815.966991px;}
.ya7{bottom:828.061165px;}
.y2d{bottom:829.472617px;}
.y9{bottom:831.094813px;}
.ya{bottom:831.544835px;}
.yf5{bottom:837.926465px;}
.y5c{bottom:841.093910px;}
.yba{bottom:841.928695px;}
.y67{bottom:842.524924px;}
.y7f{bottom:845.258278px;}
.yed{bottom:853.998189px;}
.ycc{bottom:857.071393px;}
.ya6{bottom:867.270700px;}
.y5b{bottom:870.343909px;}
.yec{bottom:870.779210px;}
.y66{bottom:871.774923px;}
.y8a{bottom:879.677960px;}
.y8{bottom:880.558822px;}
.y139{bottom:885.739754px;}
.yb9{bottom:885.765189px;}
.y19{bottom:894.552328px;}
.yda{bottom:896.737463px;}
.y15{bottom:898.972850px;}
.y28{bottom:900.836944px;}
.y27{bottom:901.351543px;}
.ya5{bottom:906.629920px;}
.yb8{bottom:925.718515px;}
.ye8{bottom:926.875178px;}
.y12d{bottom:930.571834px;}
.ya4{bottom:945.998114px;}
.y8b{bottom:962.925703px;}
.y2c{bottom:972.481467px;}
.y2a{bottom:972.698021px;}
.y18{bottom:977.558183px;}
.y26{bottom:977.698907px;}
.ydf{bottom:979.335784px;}
.yb{bottom:986.141209px;}
.y115{bottom:988.067812px;}
.yf4{bottom:992.444582px;}
.yea{bottom:1017.213708px;}
.y114{bottom:1024.106476px;}
.y118{bottom:1026.795569px;}
.y8c{bottom:1039.087091px;}
.y6e{bottom:1046.456956px;}
.y17{bottom:1060.566295px;}
.y16{bottom:1065.013836px;}
.y113{bottom:1066.067629px;}
.yd8{bottom:1066.291829px;}
.yd9{bottom:1071.100086px;}
.yde{bottom:1073.835780px;}
.y29{bottom:1074.743131px;}
.ye7{bottom:1076.911830px;}
.y117{bottom:1087.632703px;}
.y116{bottom:1096.028955px;}
.y3b{bottom:1110.437953px;}
.yfc{bottom:1122.441700px;}
.ya3{bottom:1125.401578px;}
.yeb{bottom:1131.800578px;}
.h3d{height:58.873501px;}
.h2b{height:63.692993px;}
.h2a{height:63.692994px;}
.h1a{height:64.415607px;}
.h17{height:66.757314px;}
.h3c{height:70.654497px;}
.h2c{height:71.945997px;}
.h39{height:72.806577px;}
.h18{height:73.447917px;}
.h19{height:74.339997px;}
.ha{height:75.347997px;}
.h9{height:75.505494px;}
.h30{height:75.599997px;}
.h32{height:80.459997px;}
.h24{height:80.734493px;}
.h3b{height:82.813500px;}
.h1d{height:83.065500px;}
.h33{height:83.812497px;}
.h29{height:83.978997px;}
.h25{height:83.978998px;}
.h28{height:85.616993px;}
.h27{height:86.498996px;}
.h26{height:86.939996px;}
.hd{height:88.199996px;}
.h21{height:89.207996px;}
.h3a{height:89.932493px;}
.h3f{height:90.499494px;}
.h11{height:90.584546px;}
.h20{height:94.151606px;}
.h43{height:96.326995px;}
.h1b{height:98.898746px;}
.hb{height:99.161996px;}
.h46{height:100.768496px;}
.h7{height:100.799996px;}
.h3e{height:102.248988px;}
.hc{height:102.815996px;}
.h15{height:104.989502px;}
.h5{height:105.178492px;}
.h6{height:107.282062px;}
.h1f{height:108.265492px;}
.h16{height:109.019605px;}
.h41{height:109.021498px;}
.h44{height:112.045494px;}
.h42{height:116.612998px;}
.h35{height:117.998992px;}
.h31{height:118.556894px;}
.h1e{height:119.069965px;}
.h2d{height:123.887612px;}
.h14{height:125.148826px;}
.h45{height:125.968501px;}
.h2f{height:125.999995px;}
.h36{height:126.409498px;}
.h40{height:126.503998px;}
.h37{height:126.944992px;}
.h10{height:127.070995px;}
.hf{height:130.189501px;}
.h12{height:135.239844px;}
.h4{height:154.223994px;}
.h49{height:156.419993px;}
.h1c{height:158.633997px;}
.h13{height:165.378825px;}
.h2e{height:167.012993px;}
.h3{height:167.989499px;}
.h38{height:186.641950px;}
.h34{height:193.189498px;}
.he{height:230.989497px;}
.h47{height:235.124990px;}
.h8{height:268.789495px;}
.h48{height:312.839987px;}
.h22{height:421.247600px;}
.h23{height:421.247601px;}
.h4a{height:438.165001px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w2{width:1862.999922px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x6b{left:47.941647px;}
.x6c{left:75.656404px;}
.x61{left:88.141598px;}
.x15{left:97.336126px;}
.x62{left:108.543954px;}
.x12{left:117.632238px;}
.x9{left:121.499995px;}
.x16{left:137.233121px;}
.x17{left:138.389617px;}
.x31{left:146.937363px;}
.x63{left:156.246575px;}
.xaa{left:159.300004px;}
.x4{left:163.283624px;}
.x6d{left:165.173613px;}
.x70{left:169.549863px;}
.x64{left:176.356853px;}
.x65{left:177.466677px;}
.x44{left:182.942989px;}
.x28{left:186.445123px;}
.x49{left:188.975228px;}
.x47{left:190.047493px;}
.x4a{left:192.701790px;}
.x72{left:194.075985px;}
.x27{left:195.304497px;}
.x58{left:201.880549px;}
.x29{left:204.831841px;}
.x1c{left:208.153118px;}
.x48{left:209.981086px;}
.x2a{left:217.154106px;}
.x46{left:232.498663px;}
.x89{left:234.702254px;}
.x7f{left:246.538117px;}
.x8a{left:249.894404px;}
.x1d{left:254.313272px;}
.x66{left:261.977805px;}
.x59{left:266.422762px;}
.x13{left:271.871992px;}
.x7d{left:276.224622px;}
.x43{left:277.231474px;}
.x3d{left:278.717597px;}
.x42{left:283.778995px;}
.x3f{left:285.265119px;}
.xa7{left:292.160245px;}
.x88{left:294.163217px;}
.xa2{left:296.836886px;}
.x8b{left:300.970232px;}
.x1{left:333.087879px;}
.x38{left:336.170222px;}
.x40{left:361.506344px;}
.xf{left:376.567850px;}
.xa1{left:387.232850px;}
.x9d{left:391.132735px;}
.x9f{left:393.804805px;}
.x9e{left:396.175907px;}
.xa0{left:397.971586px;}
.x7e{left:407.791081px;}
.x32{left:410.362849px;}
.x3a{left:418.189465px;}
.x39{left:419.852225px;}
.x7a{left:422.625348px;}
.x2c{left:463.678839px;}
.x1e{left:479.328730px;}
.x2b{left:493.561651px;}
.x3c{left:501.895088px;}
.x3e{left:502.928986px;}
.x45{left:519.430496px;}
.x1f{left:522.078728px;}
.x3{left:526.341782px;}
.x78{left:552.525709px;}
.x79{left:560.337734px;}
.x33{left:563.205386px;}
.x2{left:581.396468px;}
.x8c{left:583.458726px;}
.x5{left:628.665742px;}
.xab{left:631.880974px;}
.x18{left:637.014357px;}
.x19{left:644.457357px;}
.x1a{left:650.593089px;}
.xc{left:655.832205px;}
.x4b{left:691.108819px;}
.x34{left:692.492623px;}
.x4e{left:704.714287px;}
.x1b{left:706.029667px;}
.x77{left:714.196122px;}
.x4c{left:719.936943px;}
.x4d{left:721.624443px;}
.x11{left:745.743317px;}
.x56{left:761.011852px;}
.x20{left:769.229968px;}
.x2e{left:780.440583px;}
.x2d{left:787.401521px;}
.x4f{left:805.331471px;}
.xa3{left:807.093239px;}
.x21{left:811.470201px;}
.x93{left:823.544251px;}
.x94{left:824.756836px;}
.x95{left:838.868881px;}
.x96{left:856.671509px;}
.x75{left:868.843080px;}
.xa4{left:908.659641px;}
.x71{left:927.497229px;}
.x10{left:945.766113px;}
.x35{left:967.531496px;}
.x76{left:975.593191px;}
.x30{left:997.944726px;}
.x2f{left:1017.210351px;}
.x22{left:1031.117573px;}
.x8{left:1058.879224px;}
.x23{left:1073.516009px;}
.x73{left:1163.391648px;}
.x3b{left:1178.499407px;}
.x51{left:1181.737031px;}
.x6f{left:1191.878914px;}
.x52{left:1194.604762px;}
.xb{left:1196.566834px;}
.x50{left:1205.027950px;}
.xe{left:1233.645681px;}
.x74{left:1240.557752px;}
.x41{left:1243.864028px;}
.x14{left:1247.736296px;}
.x57{left:1251.298995px;}
.xa{left:1266.472135px;}
.xd{left:1268.819507px;}
.x24{left:1301.242446px;}
.x25{left:1302.525649px;}
.x26{left:1329.209241px;}
.x9b{left:1362.618696px;}
.x9c{left:1364.354916px;}
.x9a{left:1380.360455px;}
.x98{left:1387.089950px;}
.x97{left:1397.253129px;}
.x99{left:1402.817395px;}
.xa8{left:1474.427207px;}
.x91{left:1484.066098px;}
.x92{left:1489.347310px;}
.x90{left:1499.337851px;}
.x8e{left:1540.081966px;}
.xa9{left:1567.221775px;}
.x8f{left:1568.259755px;}
.x6{left:1584.307014px;}
.x54{left:1614.989273px;}
.x53{left:1623.374038px;}
.x7{left:1632.037432px;}
.x5a{left:1636.682439px;}
.xa5{left:1650.808047px;}
.xa6{left:1655.090967px;}
.x80{left:1662.545163px;}
.x5c{left:1665.159480px;}
.x82{left:1667.097003px;}
.x6a{left:1670.048848px;}
.x84{left:1671.295358px;}
.x87{left:1672.946822px;}
.x7b{left:1674.112430px;}
.x86{left:1676.142002px;}
.x55{left:1677.180676px;}
.x83{left:1686.464930px;}
.x5b{left:1687.894611px;}
.x5e{left:1708.113255px;}
.x5d{left:1711.223977px;}
.x8d{left:1721.694172px;}
.x81{left:1746.107855px;}
.x85{left:1754.658035px;}
.x68{left:1756.989009px;}
.x7c{left:1761.171623px;}
.x67{left:1775.814416px;}
.x69{left:1777.081682px;}
.x5f{left:1819.149533px;}
.x60{left:1820.699550px;}
.x37{left:1836.470155px;}
.x36{left:1871.573670px;}
.x6e{left:1985.704909px;}
@media print{
.v1{vertical-align:-14.799923pt;}
.v3{vertical-align:-5.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.515967pt;}
.v4{vertical-align:33.863909pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000124pt;}
.ls4{letter-spacing:0.012997pt;}
.lsb{letter-spacing:0.019479pt;}
.ls9{letter-spacing:0.019499pt;}
.lsa{letter-spacing:0.019519pt;}
.lsc{letter-spacing:0.025000pt;}
.lsd{letter-spacing:0.030000pt;}
.ls0{letter-spacing:0.050000pt;}
.ls7{letter-spacing:0.050477pt;}
.ls6{letter-spacing:0.050497pt;}
.ls8{letter-spacing:0.050517pt;}
.lse{letter-spacing:8.979480pt;}
.ls1{letter-spacing:9.347321pt;}
.ls5{letter-spacing:11.336500pt;}
.ws26{word-spacing:-181.279992pt;}
.ws24{word-spacing:-119.461998pt;}
.ws13{word-spacing:-104.490257pt;}
.ws1a{word-spacing:-102.661999pt;}
.ws0{word-spacing:-67.199997pt;}
.ws1d{word-spacing:-65.813994pt;}
.ws5{word-spacing:-57.862000pt;}
.ws7{word-spacing:-56.475998pt;}
.ws23{word-spacing:-56.223999pt;}
.ws25{word-spacing:-55.986000pt;}
.ws8{word-spacing:-52.262001pt;}
.ws1b{word-spacing:-46.662001pt;}
.ws22{word-spacing:-45.443994pt;}
.ws4{word-spacing:-44.799998pt;}
.ws3{word-spacing:-44.071998pt;}
.wse{word-spacing:-41.299998pt;}
.ws20{word-spacing:-39.337758pt;}
.ws1e{word-spacing:-39.199998pt;}
.ws9{word-spacing:-38.128998pt;}
.ws15{word-spacing:-38.051997pt;}
.ws6{word-spacing:-37.827998pt;}
.ws10{word-spacing:-36.918000pt;}
.ws18{word-spacing:-33.599999pt;}
.ws2{word-spacing:-33.487999pt;}
.ws16{word-spacing:-31.975999pt;}
.ws1f{word-spacing:-31.723999pt;}
.ws21{word-spacing:-31.401999pt;}
.ws17{word-spacing:-28.263841pt;}
.wsc{word-spacing:-25.999999pt;}
.ws12{word-spacing:-23.354259pt;}
.wsd{word-spacing:-22.528999pt;}
.wsb{word-spacing:-18.218719pt;}
.wsa{word-spacing:-15.230079pt;}
.ws11{word-spacing:-0.293320pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:1956.305611pt;}
.wsf{word-spacing:2247.917574pt;}
.ws19{word-spacing:2503.396570pt;}
.ws14{word-spacing:2852.384015pt;}
._8{margin-left:-1333.640136pt;}
._11{margin-left:-2.144048pt;}
._a{margin-left:-0.894348pt;}
._4{width:0.904669pt;}
._5{width:1.856351pt;}
._e{width:2.944051pt;}
._d{width:6.392208pt;}
._2{width:7.556578pt;}
._0{width:9.304247pt;}
._3{width:11.265152pt;}
._f{width:26.909711pt;}
._6{width:84.893958pt;}
._7{width:136.584186pt;}
._9{width:463.498120pt;}
._b{width:1431.303032pt;}
._10{width:1453.951532pt;}
._1{width:1665.730058pt;}
._c{width:3411.892847pt;}
.fs14{font-size:69.319997pt;}
.fs11{font-size:71.839993pt;}
.fs32{font-size:74.760001pt;}
.fs12{font-size:79.039997pt;}
.fs13{font-size:79.999997pt;}
.fs24{font-size:80.879991pt;}
.fs23{font-size:80.879993pt;}
.fs31{font-size:89.719996pt;}
.fs2e{font-size:90.639996pt;}
.fs25{font-size:91.359996pt;}
.fs6{font-size:95.679996pt;}
.fs5{font-size:95.879992pt;}
.fs1a{font-size:95.999996pt;}
.fs28{font-size:99.999996pt;}
.fs19{font-size:101.319996pt;}
.fs1d{font-size:102.519991pt;}
.fs30{font-size:105.160000pt;}
.fs17{font-size:105.480000pt;}
.fs22{font-size:106.639996pt;}
.fs1e{font-size:106.639998pt;}
.fsc{font-size:108.079995pt;}
.fs21{font-size:108.719991pt;}
.fs20{font-size:109.839995pt;}
.fs1f{font-size:110.399995pt;}
.fs8{font-size:111.999995pt;}
.fs2f{font-size:114.199991pt;}
.fs34{font-size:114.919993pt;}
.fs10{font-size:117.319995pt;}
.fs15{font-size:117.999995pt;}
.fs38{font-size:122.319994pt;}
.fs7{font-size:125.919995pt;}
.fs3b{font-size:127.959995pt;}
.fs3{font-size:127.999995pt;}
.fs33{font-size:129.839984pt;}
.fsf{font-size:133.320002pt;}
.fs2{font-size:133.559990pt;}
.fs18{font-size:137.479990pt;}
.fs36{font-size:138.439998pt;}
.fs39{font-size:142.279993pt;}
.fs37{font-size:148.079998pt;}
.fse{font-size:149.320002pt;}
.fs2a{font-size:149.839990pt;}
.fs3a{font-size:159.960001pt;}
.fs27{font-size:159.999993pt;}
.fs2b{font-size:160.519997pt;}
.fs35{font-size:160.639998pt;}
.fs2c{font-size:161.199989pt;}
.fsb{font-size:161.359993pt;}
.fsa{font-size:165.320001pt;}
.fs3d{font-size:175.999993pt;}
.fs2d{font-size:188.039984pt;}
.fs1{font-size:191.999992pt;}
.fsd{font-size:197.320000pt;}
.fs16{font-size:201.439996pt;}
.fs26{font-size:212.079991pt;}
.fs0{font-size:213.319999pt;}
.fs29{font-size:245.319998pt;}
.fs9{font-size:293.319996pt;}
.fs4{font-size:341.319994pt;}
.fs3c{font-size:351.999985pt;}
.fs1b{font-size:453.319989pt;}
.fs1c{font-size:453.319991pt;}
.fs3e{font-size:556.400001pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y12c{bottom:55.696878pt;}
.y2b{bottom:62.255997pt;}
.yb7{bottom:67.009176pt;}
.y13a{bottom:73.999997pt;}
.y7{bottom:84.449052pt;}
.y12b{bottom:96.534932pt;}
.yb6{bottom:105.048664pt;}
.ye9{bottom:108.034363pt;}
.y5a{bottom:109.317115pt;}
.y127{bottom:109.895003pt;}
.y106{bottom:113.255451pt;}
.y109{bottom:113.507963pt;}
.y25{bottom:114.303035pt;}
.y23{bottom:121.182971pt;}
.y3a{bottom:121.771483pt;}
.ydd{bottom:122.568667pt;}
.ye6{bottom:125.161947pt;}
.y59{bottom:135.317114pt;}
.yb5{bottom:141.505392pt;}
.y105{bottom:144.721082pt;}
.y12a{bottom:145.394748pt;}
.y126{bottom:152.276661pt;}
.y99{bottom:152.456090pt;}
.y24{bottom:154.303034pt;}
.y32{bottom:154.817018pt;}
.y22{bottom:161.182969pt;}
.y58{bottom:161.317113pt;}
.ybc{bottom:168.494178pt;}
.y39{bottom:171.771481pt;}
.yd5{bottom:172.864985pt;}
.ye5{bottom:174.161945pt;}
.ydc{bottom:177.568665pt;}
.yb4{bottom:178.088417pt;}
.y21{bottom:182.169688pt;}
.y14{bottom:185.167960pt;}
.y57{bottom:187.317112pt;}
.y98{bottom:187.456088pt;}
.y125{bottom:190.747285pt;}
.y129{bottom:194.695099pt;}
.ybb{bottom:198.441226pt;}
.y102{bottom:202.316632pt;}
.y10b{bottom:202.812024pt;}
.yd7{bottom:205.553975pt;}
.yd4{bottom:205.864983pt;}
.y143{bottom:211.167031pt;}
.y56{bottom:213.317111pt;}
.yb3{bottom:214.156298pt;}
.y97{bottom:222.456087pt;}
.y77{bottom:223.202711pt;}
.y7e{bottom:226.800759pt;}
.y124{bottom:228.271136pt;}
.y101{bottom:230.819126pt;}
.ydb{bottom:232.568662pt;}
.yae{bottom:232.581107pt;}
.yd3{bottom:238.864982pt;}
.y55{bottom:239.317110pt;}
.yd6{bottom:240.553974pt;}
.y128{bottom:243.495862pt;}
.y6{bottom:243.933654pt;}
.y9f{bottom:253.170933pt;}
.y20{bottom:255.881333pt;}
.ye4{bottom:256.161941pt;}
.y38{bottom:257.119509pt;}
.y96{bottom:257.456085pt;}
.yc{bottom:258.952949pt;}
.y65{bottom:265.017109pt;}
.y54{bottom:265.317109pt;}
.y76{bottom:267.202709pt;}
.y7d{bottom:270.800757pt;}
.y84{bottom:270.804981pt;}
.yad{bottom:272.604687pt;}
.y123{bottom:273.462128pt;}
.y88{bottom:273.520149pt;}
.y9e{bottom:280.170932pt;}
.y50{bottom:282.292564pt;}
.y5{bottom:289.933652pt;}
.y31{bottom:290.164980pt;}
.y64{bottom:291.017108pt;}
.y53{bottom:291.317108pt;}
.y95{bottom:292.456084pt;}
.y138{bottom:292.978100pt;}
.y133{bottom:298.324980pt;}
.y100{bottom:298.723572pt;}
.y136{bottom:298.997108pt;}
.y10a{bottom:299.218964pt;}
.y37{bottom:307.119507pt;}
.y9d{bottom:307.170931pt;}
.y4d{bottom:307.292563pt;}
.y89{bottom:311.004051pt;}
.ycb{bottom:311.294595pt;}
.y122{bottom:313.454475pt;}
.y63{bottom:317.017107pt;}
.y52{bottom:317.317107pt;}
.yff{bottom:327.226162pt;}
.y1f{bottom:329.738642pt;}
.y4c{bottom:332.292562pt;}
.yf{bottom:332.737010pt;}
.ye3{bottom:336.828466pt;}
.y135{bottom:336.857266pt;}
.y137{bottom:336.978098pt;}
.y12f{bottom:341.005074pt;}
.y132{bottom:341.324978pt;}
.y130{bottom:342.141010pt;}
.yca{bottom:342.294594pt;}
.y62{bottom:343.017106pt;}
.y51{bottom:343.317106pt;}
.y75{bottom:343.318776pt;}
.y121{bottom:344.017303pt;}
.y7c{bottom:355.565297pt;}
.y4b{bottom:357.292561pt;}
.yc2{bottom:359.919793pt;}
.yc9{bottom:373.294592pt;}
.y108{bottom:378.743376pt;}
.yb2{bottom:380.514805pt;}
.y74{bottom:383.318774pt;}
.y134{bottom:386.415216pt;}
.ye2{bottom:386.828464pt;}
.y12e{bottom:387.005072pt;}
.y131{bottom:387.324976pt;}
.y36{bottom:392.467440pt;}
.y120{bottom:394.694180pt;}
.y7b{bottom:396.565295pt;}
.ya1{bottom:398.655983pt;}
.y141{bottom:402.179026pt;}
.y1e{bottom:402.592655pt;}
.y87{bottom:404.082479pt;}
.yc8{bottom:404.294591pt;}
.y6d{bottom:405.127023pt;}
.y13{bottom:406.705487pt;}
.y107{bottom:406.743375pt;}
.yb1{bottom:407.071999pt;}
.yc1{bottom:407.919791pt;}
.y93{bottom:408.282015pt;}
.y43{bottom:416.432399pt;}
.y3f{bottom:419.416431pt;}
.y112{bottom:420.986979pt;}
.y30{bottom:425.512014pt;}
.yac{bottom:428.121432pt;}
.y6c{bottom:430.127022pt;}
.yc7{bottom:435.294590pt;}
.y94{bottom:436.908974pt;}
.y81{bottom:438.229582pt;}
.y86{bottom:439.082478pt;}
.y92{bottom:441.282014pt;}
.y35{bottom:442.467438pt;}
.y42{bottom:443.432398pt;}
.yb0{bottom:443.657760pt;}
.y73{bottom:444.318772pt;}
.y11f{bottom:445.440403pt;}
.y3e{bottom:446.416429pt;}
.y104{bottom:452.225005pt;}
.y10c{bottom:452.795021pt;}
.y140{bottom:454.179024pt;}
.y4{bottom:454.757011pt;}
.yc0{bottom:455.919789pt;}
.yfb{bottom:456.823536pt;}
.yab{bottom:465.230800pt;}
.y111{bottom:465.494468pt;}
.yc6{bottom:466.294589pt;}
.y142{bottom:469.020057pt;}
.ye1{bottom:469.663574pt;}
.yf3{bottom:471.109513pt;}
.y91{bottom:473.282012pt;}
.y12{bottom:473.812479pt;}
.yaf{bottom:476.376690pt;}
.y80{bottom:476.390540pt;}
.y103{bottom:476.802924pt;}
.y72{bottom:484.318770pt;}
.y1d{bottom:488.200620pt;}
.y11d{bottom:494.626848pt;}
.y11e{bottom:496.429011pt;}
.yc5{bottom:497.294587pt;}
.yaa{bottom:500.919901pt;}
.y78{bottom:503.607531pt;}
.ybf{bottom:503.919787pt;}
.y46{bottom:504.680446pt;}
.yfa{bottom:504.823534pt;}
.y13f{bottom:506.179022pt;}
.y90{bottom:507.282011pt;}
.y11{bottom:508.812478pt;}
.y110{bottom:509.577789pt;}
.ye0{bottom:517.663572pt;}
.yf2{bottom:519.109511pt;}
.y9c{bottom:521.258026pt;}
.y3d{bottom:521.263572pt;}
.y41{bottom:521.427284pt;}
.y3{bottom:522.757009pt;}
.yc4{bottom:528.294586pt;}
.y71{bottom:528.318768pt;}
.y45{bottom:531.680445pt;}
.y34{bottom:533.150682pt;}
.ya9{bottom:538.596057pt;}
.y8f{bottom:541.282009pt;}
.y3c{bottom:545.263571pt;}
.y11c{bottom:546.053939pt;}
.yc3{bottom:551.310054pt;}
.y40{bottom:551.427283pt;}
.yf9{bottom:552.823532pt;}
.ycd{bottom:553.074975pt;}
.y10f{bottom:553.578602pt;}
.y9b{bottom:556.257983pt;}
.y13e{bottom:558.179020pt;}
.y44{bottom:558.680444pt;}
.y2f{bottom:560.859977pt;}
.yfe{bottom:562.558962pt;}
.yf1{bottom:567.109509pt;}
.y83{bottom:567.130405pt;}
.y85{bottom:567.260133pt;}
.y1c{bottom:573.808648pt;}
.ya8{bottom:574.136483pt;}
.y8e{bottom:575.282008pt;}
.y10{bottom:577.920485pt;}
.y33{bottom:578.150680pt;}
.yd2{bottom:588.667982pt;}
.ycf{bottom:588.847982pt;}
.y9a{bottom:591.257982pt;}
.y11b{bottom:592.094379pt;}
.y2{bottom:596.757006pt;}
.yd1{bottom:596.762007pt;}
.y10e{bottom:597.578271pt;}
.yf8{bottom:600.823530pt;}
.y82{bottom:605.769856pt;}
.y7a{bottom:609.151264pt;}
.y8d{bottom:609.282007pt;}
.y13d{bottom:610.179018pt;}
.y70{bottom:613.083296pt;}
.yf0{bottom:615.109507pt;}
.y4a{bottom:621.457632pt;}
.y11a{bottom:624.073848pt;}
.yd0{bottom:633.496966pt;}
.yce{bottom:634.597980pt;}
.y4f{bottom:637.334581pt;}
.y61{bottom:639.639036pt;}
.y10d{bottom:641.577940pt;}
.y6b{bottom:644.911048pt;}
.y49{bottom:646.457631pt;}
.y1b{bottom:647.591615pt;}
.yf7{bottom:648.823528pt;}
.y79{bottom:650.151263pt;}
.ye{bottom:651.520987pt;}
.y6f{bottom:654.083294pt;}
.y13c{bottom:662.179016pt;}
.y4e{bottom:662.334580pt;}
.yef{bottom:663.109505pt;}
.y60{bottom:665.639035pt;}
.y5f{bottom:669.639034pt;}
.ybe{bottom:670.133299pt;}
.yfd{bottom:670.245012pt;}
.y6a{bottom:670.911047pt;}
.y48{bottom:671.457630pt;}
.y119{bottom:681.501819pt;}
.y2e{bottom:685.160986pt;}
.ybd{bottom:688.563232pt;}
.y5e{bottom:695.639033pt;}
.y47{bottom:696.457629pt;}
.yf6{bottom:696.823526pt;}
.y69{bottom:696.911046pt;}
.ya2{bottom:700.283536pt;}
.yee{bottom:711.109503pt;}
.ya0{bottom:711.867958pt;}
.y13b{bottom:714.179013pt;}
.y1a{bottom:721.374600pt;}
.y5d{bottom:721.639032pt;}
.y68{bottom:722.911045pt;}
.yd{bottom:725.303992pt;}
.ya7{bottom:736.054369pt;}
.y2d{bottom:737.308993pt;}
.y9{bottom:738.750945pt;}
.ya{bottom:739.150964pt;}
.yf5{bottom:744.823524pt;}
.y5c{bottom:747.639031pt;}
.yba{bottom:748.381062pt;}
.y67{bottom:748.911044pt;}
.y7f{bottom:751.340692pt;}
.yed{bottom:759.109501pt;}
.ycc{bottom:761.841239pt;}
.ya6{bottom:770.907289pt;}
.y5b{bottom:773.639030pt;}
.yec{bottom:774.025965pt;}
.y66{bottom:774.911043pt;}
.y8a{bottom:781.935964pt;}
.y8{bottom:782.718953pt;}
.y139{bottom:787.324226pt;}
.yb9{bottom:787.346835pt;}
.y19{bottom:795.157624pt;}
.yda{bottom:797.099967pt;}
.y15{bottom:799.086978pt;}
.y28{bottom:800.743951pt;}
.y27{bottom:801.201371pt;}
.ya5{bottom:805.893262pt;}
.yb8{bottom:822.860902pt;}
.ye8{bottom:823.889047pt;}
.y12d{bottom:827.174964pt;}
.ya4{bottom:840.887212pt;}
.y8b{bottom:855.933958pt;}
.y2c{bottom:864.427970pt;}
.y2a{bottom:864.620463pt;}
.y18{bottom:868.940607pt;}
.y26{bottom:869.065695pt;}
.ydf{bottom:870.520697pt;}
.yb{bottom:876.569963pt;}
.y115{bottom:878.282500pt;}
.yf4{bottom:882.172962pt;}
.yea{bottom:904.189962pt;}
.y114{bottom:910.316868pt;}
.y118{bottom:912.707172pt;}
.y8c{bottom:923.632970pt;}
.y6e{bottom:930.183961pt;}
.y17{bottom:942.725596pt;}
.y16{bottom:946.678965pt;}
.y113{bottom:947.615671pt;}
.yd8{bottom:947.814959pt;}
.yd9{bottom:952.088965pt;}
.yde{bottom:954.520693pt;}
.y29{bottom:955.327227pt;}
.ye7{bottom:957.254960pt;}
.y117{bottom:966.784625pt;}
.y116{bottom:974.247960pt;}
.y3b{bottom:987.055959pt;}
.yfc{bottom:997.725955pt;}
.ya3{bottom:1000.356958pt;}
.yeb{bottom:1006.044958pt;}
.h3d{height:52.332001pt;}
.h2b{height:56.615994pt;}
.h2a{height:56.615995pt;}
.h1a{height:57.258318pt;}
.h17{height:59.339834pt;}
.h3c{height:62.803997pt;}
.h2c{height:63.951997pt;}
.h39{height:64.716957pt;}
.h18{height:65.287037pt;}
.h19{height:66.079997pt;}
.ha{height:66.975997pt;}
.h9{height:67.115994pt;}
.h30{height:67.199997pt;}
.h32{height:71.519997pt;}
.h24{height:71.763994pt;}
.h3b{height:73.612000pt;}
.h1d{height:73.836000pt;}
.h33{height:74.499997pt;}
.h29{height:74.647997pt;}
.h25{height:74.647999pt;}
.h28{height:76.103994pt;}
.h27{height:76.887996pt;}
.h26{height:77.279996pt;}
.hd{height:78.399997pt;}
.h21{height:79.295997pt;}
.h3a{height:79.939994pt;}
.h3f{height:80.443995pt;}
.h11{height:80.519597pt;}
.h20{height:83.690317pt;}
.h43{height:85.623996pt;}
.h1b{height:87.909996pt;}
.hb{height:88.143996pt;}
.h46{height:89.571996pt;}
.h7{height:89.599996pt;}
.h3e{height:90.887989pt;}
.hc{height:91.391996pt;}
.h15{height:93.324002pt;}
.h5{height:93.491993pt;}
.h6{height:95.361833pt;}
.h1f{height:96.235993pt;}
.h16{height:96.906316pt;}
.h41{height:96.907998pt;}
.h44{height:99.595995pt;}
.h42{height:103.655999pt;}
.h35{height:104.887993pt;}
.h31{height:105.383906pt;}
.h1e{height:105.839969pt;}
.h2d{height:110.122322pt;}
.h14{height:111.243401pt;}
.h45{height:111.972001pt;}
.h2f{height:111.999995pt;}
.h36{height:112.363998pt;}
.h40{height:112.447998pt;}
.h37{height:112.839992pt;}
.h10{height:112.951995pt;}
.hf{height:115.724001pt;}
.h12{height:120.213195pt;}
.h4{height:137.087994pt;}
.h49{height:139.039994pt;}
.h1c{height:141.007997pt;}
.h13{height:147.003400pt;}
.h2e{height:148.455994pt;}
.h3{height:149.323999pt;}
.h38{height:165.903955pt;}
.h34{height:171.723998pt;}
.he{height:205.323997pt;}
.h47{height:208.999991pt;}
.h8{height:238.923996pt;}
.h48{height:278.079988pt;}
.h22{height:374.442311pt;}
.h23{height:374.442312pt;}
.h4a{height:389.480001pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w2{width:1655.999931pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:42.614797pt;}
.x6c{left:67.250137pt;}
.x61{left:78.348088pt;}
.x15{left:86.521001pt;}
.x62{left:96.483515pt;}
.x12{left:104.561989pt;}
.x9{left:107.999996pt;}
.x16{left:121.984997pt;}
.x17{left:123.012993pt;}
.x31{left:130.610990pt;}
.x63{left:138.885845pt;}
.xaa{left:141.600004pt;}
.x4{left:145.140999pt;}
.x6d{left:146.820989pt;}
.x70{left:150.710989pt;}
.x64{left:156.761647pt;}
.x65{left:157.748158pt;}
.x44{left:162.615990pt;}
.x28{left:165.728998pt;}
.x49{left:167.977980pt;}
.x47{left:168.931105pt;}
.x4a{left:171.290480pt;}
.x72{left:172.511986pt;}
.x27{left:173.603998pt;}
.x58{left:179.449377pt;}
.x29{left:182.072747pt;}
.x1c{left:185.024994pt;}
.x48{left:186.649854pt;}
.x2a{left:193.025872pt;}
.x46{left:206.665479pt;}
.x89{left:208.624226pt;}
.x7f{left:219.144992pt;}
.x8a{left:222.128359pt;}
.x1d{left:226.056242pt;}
.x66{left:232.869160pt;}
.x59{left:236.820233pt;}
.x13{left:241.663993pt;}
.x7d{left:245.532998pt;}
.x43{left:246.427977pt;}
.x3d{left:247.748975pt;}
.x42{left:252.247996pt;}
.x3f{left:253.568994pt;}
.xa7{left:259.697996pt;}
.x88{left:261.478415pt;}
.xa2{left:263.855010pt;}
.x8b{left:267.529095pt;}
.x1{left:296.078114pt;}
.x38{left:298.817975pt;}
.x40{left:321.338972pt;}
.xf{left:334.726978pt;}
.xa1{left:344.206978pt;}
.x9d{left:347.673542pt;}
.x9f{left:350.048716pt;}
.x9e{left:352.156362pt;}
.xa0{left:353.752521pt;}
.x7e{left:362.480961pt;}
.x32{left:364.766977pt;}
.x3a{left:371.723969pt;}
.x39{left:373.201978pt;}
.x7a{left:375.666976pt;}
.x2c{left:412.158968pt;}
.x1e{left:426.069982pt;}
.x2b{left:438.721467pt;}
.x3c{left:446.128967pt;}
.x3e{left:447.047988pt;}
.x45{left:461.715997pt;}
.x1f{left:464.069981pt;}
.x3{left:467.859362pt;}
.x78{left:491.133964pt;}
.x79{left:498.077986pt;}
.x33{left:500.627010pt;}
.x2{left:516.796860pt;}
.x8c{left:518.629978pt;}
.x5{left:558.813993pt;}
.xab{left:561.671977pt;}
.x18{left:566.234984pt;}
.x19{left:572.850984pt;}
.x1a{left:578.304968pt;}
.xc{left:582.961960pt;}
.x4b{left:614.318950pt;}
.x34{left:615.548998pt;}
.x4e{left:626.412700pt;}
.x1b{left:627.581926pt;}
.x77{left:634.840998pt;}
.x4c{left:639.943949pt;}
.x4d{left:641.443949pt;}
.x11{left:662.882948pt;}
.x56{left:676.454980pt;}
.x20{left:683.759972pt;}
.x2e{left:693.724963pt;}
.x2d{left:699.912463pt;}
.x4f{left:715.850196pt;}
.xa3{left:717.416212pt;}
.x21{left:721.306845pt;}
.x93{left:732.039335pt;}
.x94{left:733.117187pt;}
.x95{left:745.661228pt;}
.x96{left:761.485786pt;}
.x75{left:772.304960pt;}
.xa4{left:807.697458pt;}
.x71{left:824.441982pt;}
.x10{left:840.680989pt;}
.x35{left:860.027996pt;}
.x76{left:867.193948pt;}
.x30{left:887.061979pt;}
.x2f{left:904.186978pt;}
.x22{left:916.548954pt;}
.x8{left:941.225977pt;}
.x23{left:954.236452pt;}
.x73{left:1034.125909pt;}
.x3b{left:1047.555028pt;}
.x51{left:1050.432916pt;}
.x6f{left:1059.447924pt;}
.x52{left:1061.870900pt;}
.xb{left:1063.614964pt;}
.x50{left:1071.135955pt;}
.xe{left:1096.573938pt;}
.x74{left:1102.718002pt;}
.x41{left:1105.656914pt;}
.x14{left:1109.098930pt;}
.x57{left:1112.265774pt;}
.xa{left:1125.753009pt;}
.xd{left:1127.839562pt;}
.x24{left:1156.659952pt;}
.x25{left:1157.800577pt;}
.x26{left:1181.519326pt;}
.x9b{left:1211.216618pt;}
.x9c{left:1212.759925pt;}
.x9a{left:1226.987071pt;}
.x98{left:1232.968844pt;}
.x97{left:1242.002782pt;}
.x99{left:1246.948796pt;}
.xa8{left:1310.601961pt;}
.x91{left:1319.169865pt;}
.x92{left:1323.864275pt;}
.x90{left:1332.744756pt;}
.x8e{left:1368.961748pt;}
.xa9{left:1393.086022pt;}
.x8f{left:1394.008671pt;}
.x6{left:1408.272901pt;}
.x54{left:1435.546020pt;}
.x53{left:1442.999145pt;}
.x7{left:1450.699940pt;}
.x5a{left:1454.828835pt;}
.xa5{left:1467.384931pt;}
.xa6{left:1471.191971pt;}
.x80{left:1477.817922pt;}
.x5c{left:1480.141760pt;}
.x82{left:1481.864002pt;}
.x6a{left:1484.487865pt;}
.x84{left:1485.595874pt;}
.x87{left:1487.063842pt;}
.x7b{left:1488.099938pt;}
.x86{left:1489.904002pt;}
.x55{left:1490.827268pt;}
.x83{left:1499.079938pt;}
.x5b{left:1500.350765pt;}
.x5e{left:1518.322893pt;}
.x5d{left:1521.087980pt;}
.x8d{left:1530.394819pt;}
.x81{left:1552.095871pt;}
.x85{left:1559.696031pt;}
.x68{left:1561.768008pt;}
.x7c{left:1565.485887pt;}
.x67{left:1578.501703pt;}
.x69{left:1579.628162pt;}
.x5f{left:1617.021807pt;}
.x60{left:1618.399600pt;}
.x37{left:1632.417916pt;}
.x36{left:1663.621040pt;}
.x6e{left:1765.071030pt;}
}




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