
    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_9712dbf79669a6d7c09d4b43.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_738a0c33cb6747d28283667d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_5df825859bb0b55eb7971aab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.036000;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_e37392801a24749d6bd8305b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.762000;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_21269d95b4ae1451350d483e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_2b4ba670aafb1828e77dcb23.woff')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_cc9312e2728df03c28d79296.woff')format("woff");}.ff7{font-family:ff7;line-height:0.795000;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_81daf8ef44cfbbdffd3d4617.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947000;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_d8191b12ac0ee50678819d14.woff')format("woff");}.ff9{font-family:ff9;line-height:0.989000;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_c8e55b9622e54650da255abb.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ab38ffffea7bd03d980a79a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_49390a0310746ec1f182e21e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.981000;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_99afc317847796633ed8c7cd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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_886bb8be63b9b53bea6a024d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ecf3f71299793806d041d40b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.712000;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_ec5cffb58e0b185d3c554156.woff')format("woff");}.ff11{font-family:ff11;line-height:0.989000;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_a4e9831b3a241e84f8836738.woff')format("woff");}.ff12{font-family:ff12;line-height:0.946000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ecf3f71299793806d041d40b.woff')format("woff");}.ff14{font-family:ff14;line-height:0.712000;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_c97ca4baf3864246f168b2bc.woff')format("woff");}.ff15{font-family:ff15;line-height:0.989000;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_c9353e4b876bad85d88d73df.woff')format("woff");}.ff16{font-family:ff16;line-height:0.989000;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_eaf419686b9efbe09deef286.woff')format("woff");}.ff17{font-family:ff17;line-height:0.946000;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;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ecf3f71299793806d041d40b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.712000;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_6f8c1cee830fd83a64e78c2a.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.989000;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_6476a83cd58ade623bd9d4ce.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.041000;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e71eb3c0e0ea869dd7653a09.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.712000;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_9c9990a8e8efbec0ad787620.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.989000;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_a7258210101ca607db02f79c.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.941000;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_57e57e2179132888376b833d.woff')format("woff");}.ff20{font-family:ff20;line-height:0.989000;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_73d509912954f01d6afe39cc.woff')format("woff");}.ff21{font-family:ff21;line-height:0.989000;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_94ba1efe960c36b1c6c01bb7.woff')format("woff");}.ff22{font-family:ff22;line-height:1.041000;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;}
.ff23{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff24;src:url('chunks/assets/font_e71eb3c0e0ea869dd7653a09.woff')format("woff");}.ff24{font-family:ff24;line-height:0.712000;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_4cc292ed4821b51c0b18940e.woff')format("woff");}.ff25{font-family:ff25;line-height:0.981000;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_21da10d8d2215a26a64d3039.woff')format("woff");}.ff26{font-family:ff26;line-height:0.946000;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_153d2b0e901d848c99157f9c.woff')format("woff");}.ff27{font-family:ff27;line-height:0.989000;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_e71eb3c0e0ea869dd7653a09.woff')format("woff");}.ff28{font-family:ff28;line-height:0.712000;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_3475999fc57a3b33276f847f.woff')format("woff");}.ff29{font-family:ff29;line-height:0.989000;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_d2d23a2757ca5b69ae98184b.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.946000;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_77c815945c5b5fb2adae53dd.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_5bf9f8453f75b26a65daf138.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.941000;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_2e2add0caa8fc3188d8b4ed1.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.936000;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_8370449229522aa4db9c8c6d.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.989000;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;}
.ff2f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff30;src:url('chunks/assets/font_e4ecee01eaf1d8fbab3dfe63.woff')format("woff");}.ff30{font-family:ff30;line-height:0.946000;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_a82c048aa68d572c78c0b078.woff')format("woff");}.ff31{font-family:ff31;line-height:0.712000;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_e38ddd348ce9476a6a8e99a6.woff')format("woff");}.ff32{font-family:ff32;line-height:0.748000;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_9ec07c69e07eac633cae9203.woff')format("woff");}.ff33{font-family:ff33;line-height:0.989000;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_f1f7f67e88e14b9ecf48b4d6.woff')format("woff");}.ff34{font-family:ff34;line-height:0.989000;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;}
.ff35{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff36;src:url('chunks/assets/font_d08fd15ab57d3caded6f8e47.woff')format("woff");}.ff36{font-family:ff36;line-height:0.946000;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_a82c048aa68d572c78c0b078.woff')format("woff");}.ff37{font-family:ff37;line-height:0.712000;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_097645def51b0e77cc511b1c.woff')format("woff");}.ff38{font-family:ff38;line-height:0.989000;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;}
.ff39{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_c282f6558571fbbd9ea7002b.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.041000;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;}
.ff3b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_a82c048aa68d572c78c0b078.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.712000;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_dc6af9afaa0a25a6386608be.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.989000;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_e25ead2b9d3623822c5b8226.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.724000;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:ff3f;src:url('chunks/assets/font_cbd966a1db8fdc2029559a9a.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.946000;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:ff40;src:url('chunks/assets/font_19d43459c0e33f4f92478c6d.woff')format("woff");}.ff40{font-family:ff40;line-height:0.989000;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:ff41;src:url('chunks/assets/font_b46c683bd53f91408d42f231.woff')format("woff");}.ff41{font-family:ff41;line-height:0.846000;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:ff42;src:url('chunks/assets/font_206a9f3ffa5fae832910f5fc.woff')format("woff");}.ff42{font-family:ff42;line-height:0.708000;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:ff43;src:url('chunks/assets/font_e25ead2b9d3623822c5b8226.woff')format("woff");}.ff43{font-family:ff43;line-height:0.724000;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:ff44;src:url('chunks/assets/font_9056dd1a2ad2760eba4f7737.woff')format("woff");}.ff44{font-family:ff44;line-height:1.041000;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:ff45;src:url('chunks/assets/font_7f3f1e99c48e490b5c125402.woff')format("woff");}.ff45{font-family:ff45;line-height:0.989000;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:ff46;src:url('chunks/assets/font_ad8e162fed6fe24897c9cc6f.woff')format("woff");}.ff46{font-family:ff46;line-height:0.952000;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:ff47;src:url('chunks/assets/font_78f313bc4298ec354d12787b.woff')format("woff");}.ff47{font-family:ff47;line-height:0.989000;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:ff48;src:url('chunks/assets/font_c1ccfd48b8f5f046e2aa36ac.woff')format("woff");}.ff48{font-family:ff48;line-height:1.004000;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:ff49;src:url('chunks/assets/font_32108e0969f02767d8780907.woff')format("woff");}.ff49{font-family:ff49;line-height:1.044000;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:ff4a;src:url('chunks/assets/font_738a0c33cb6747d28283667d.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.941000;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:ff4b;src:url('chunks/assets/font_5df825859bb0b55eb7971aab.woff')format("woff");}.ff4b{font-family:ff4b;line-height:1.036000;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:ff4c;src:url('chunks/assets/font_5895ccafa5d871df099a58b7.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-37.454793px;}
.v2{vertical-align:-15.159913px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.398447px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-41.844975px;}
.ws5{word-spacing:-36.087076px;}
.ws9{word-spacing:-29.943629px;}
.wsc{word-spacing:-28.838416px;}
.ws8{word-spacing:-20.362518px;}
.ws4{word-spacing:-19.928749px;}
.ws3{word-spacing:-19.923698px;}
.ws6{word-spacing:-18.851518px;}
.wsb{word-spacing:-18.792607px;}
.ws0{word-spacing:-17.791121px;}
.ws7{word-spacing:-5.212750px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:9.361352px;}
._43{margin-left:-5.033081px;}
._41{margin-left:-3.125326px;}
._42{margin-left:-1.033800px;}
._1c{width:1.700703px;}
._22{width:2.731038px;}
._6{width:3.838188px;}
._3{width:5.402441px;}
._17{width:7.068978px;}
._0{width:8.231738px;}
._1a{width:9.758487px;}
._1e{width:10.778158px;}
._19{width:12.614988px;}
._10{width:13.796071px;}
._5{width:15.739785px;}
._20{width:17.338700px;}
._1f{width:18.463537px;}
._4{width:20.558764px;}
._21{width:21.692388px;}
._1b{width:22.778660px;}
._1d{width:24.444065px;}
._d{width:26.437928px;}
._15{width:27.483092px;}
._2{width:29.072126px;}
._24{width:30.082280px;}
._1{width:31.110769px;}
._2e{width:32.240843px;}
._2a{width:33.494041px;}
._29{width:34.958960px;}
._13{width:36.106297px;}
._12{width:37.171659px;}
._2d{width:38.603798px;}
._25{width:41.077837px;}
._28{width:42.211421px;}
._18{width:44.080853px;}
._2c{width:45.944005px;}
._2b{width:47.138870px;}
._30{width:49.086995px;}
._b{width:50.363609px;}
._23{width:51.957153px;}
._3e{width:53.255595px;}
._c{width:54.702937px;}
._8{width:55.721146px;}
._27{width:57.589436px;}
._a{width:60.573768px;}
._f{width:62.018280px;}
._26{width:63.852230px;}
._34{width:65.297901px;}
._3d{width:68.176415px;}
._11{width:78.393790px;}
._40{width:79.587766px;}
._9{width:80.712784px;}
._7{width:87.036350px;}
._3f{width:88.338909px;}
._32{width:98.443375px;}
._2f{width:104.649736px;}
._e{width:123.915146px;}
._14{width:130.006902px;}
._37{width:133.330741px;}
._31{width:136.738348px;}
._35{width:153.883583px;}
._3c{width:157.045681px;}
._39{width:159.258132px;}
._3a{width:163.860994px;}
._33{width:169.798631px;}
._38{width:244.139393px;}
._3b{width:354.000845px;}
._36{width:447.384162px;}
._16{width:923.781166px;}
.fc6{color:rgb(154,113,157);}
.fc5{color:rgb(153,181,101);}
.fc3{color:rgb(219,195,88);}
.fc2{color:transparent;}
.fc1{color:rgb(152,103,137);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:67.905041px;}
.fsd{font-size:71.727507px;}
.fs7{font-size:71.952359px;}
.fs4{font-size:76.044650px;}
.fs5{font-size:76.063927px;}
.fsc{font-size:77.753523px;}
.fs6{font-size:95.921489px;}
.fsa{font-size:96.775924px;}
.fse{font-size:101.902529px;}
.fsb{font-size:105.807875px;}
.fs8{font-size:119.890619px;}
.fs3{font-size:147.862103px;}
.fsf{font-size:156.181590px;}
.fs1{font-size:156.191594px;}
.fs0{font-size:169.020634px;}
.fs9{font-size:261.636767px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.000016px;}
.y22{bottom:0.450016px;}
.y1b{bottom:5.564300px;}
.y15{bottom:5.679305px;}
.y17{bottom:5.816195px;}
.y13{bottom:5.837135px;}
.y19{bottom:5.842694px;}
.y96{bottom:7.584759px;}
.y5{bottom:10.227961px;}
.y3{bottom:11.062333px;}
.y15c{bottom:11.298451px;}
.y15e{bottom:17.891777px;}
.y7{bottom:18.341777px;}
.y60{bottom:30.386685px;}
.y21{bottom:30.836685px;}
.yf7{bottom:31.281916px;}
.y41{bottom:39.750384px;}
.y95{bottom:44.460180px;}
.y13e{bottom:44.702237px;}
.yf6{bottom:56.015540px;}
.y117{bottom:57.784394px;}
.y7f{bottom:58.568064px;}
.y8f{bottom:61.650014px;}
.y20{bottom:62.841367px;}
.y121{bottom:63.484528px;}
.y40{bottom:64.484007px;}
.yb2{bottom:65.066302px;}
.y5f{bottom:67.895021px;}
.y13d{bottom:69.435861px;}
.y2{bottom:69.757333px;}
.y15b{bottom:69.993452px;}
.y159{bottom:74.730259px;}
.yf5{bottom:80.749164px;}
.y94{bottom:81.335601px;}
.yd7{bottom:81.705301px;}
.y116{bottom:82.518017px;}
.y7e{bottom:83.301688px;}
.y6f{bottom:85.865746px;}
.y120{bottom:88.218152px;}
.y3f{bottom:89.217631px;}
.yb1{bottom:89.799925px;}
.y5e{bottom:92.628645px;}
.y13c{bottom:94.169484px;}
.y1f{bottom:95.444780px;}
.y158{bottom:99.463883px;}
.yf4{bottom:105.482787px;}
.yd6{bottom:106.438924px;}
.y115{bottom:107.251641px;}
.y7d{bottom:108.035312px;}
.y11f{bottom:112.951775px;}
.y3e{bottom:113.951254px;}
.yb0{bottom:114.533549px;}
.y5d{bottom:117.362268px;}
.y93{bottom:118.211022px;}
.yc0{bottom:118.294472px;}
.y13b{bottom:118.903108px;}
.y6e{bottom:119.593415px;}
.y157{bottom:124.197507px;}
.y1e{bottom:128.048193px;}
.yf3{bottom:130.216411px;}
.yd5{bottom:131.172548px;}
.y114{bottom:131.985265px;}
.y7c{bottom:132.768935px;}
.y11e{bottom:137.685399px;}
.y3d{bottom:138.684878px;}
.yaf{bottom:139.267173px;}
.y13a{bottom:143.636731px;}
.ybf{bottom:145.276607px;}
.y16c{bottom:148.674332px;}
.y5c{bottom:149.740879px;}
.y6d{bottom:153.321083px;}
.yf2{bottom:154.950034px;}
.y92{bottom:155.086444px;}
.yd4{bottom:155.906172px;}
.y113{bottom:156.718888px;}
.y7b{bottom:157.502559px;}
.y1d{bottom:160.651606px;}
.y11d{bottom:162.419022px;}
.y3c{bottom:163.418502px;}
.yae{bottom:164.000796px;}
.y139{bottom:168.370355px;}
.ybe{bottom:172.258742px;}
.y156{bottom:173.664754px;}
.y5b{bottom:174.474502px;}
.yf1{bottom:179.683658px;}
.yd3{bottom:180.639795px;}
.y112{bottom:181.452512px;}
.y7a{bottom:182.236182px;}
.y6c{bottom:187.048752px;}
.y11c{bottom:187.152646px;}
.y3b{bottom:188.152125px;}
.yad{bottom:188.734420px;}
.y91{bottom:191.961865px;}
.y138{bottom:193.103978px;}
.y1c{bottom:193.255019px;}
.y16b{bottom:198.141579px;}
.y5a{bottom:199.208126px;}
.ybd{bottom:199.240877px;}
.yf0{bottom:204.417281px;}
.yd2{bottom:205.373419px;}
.y111{bottom:206.186135px;}
.y79{bottom:206.969806px;}
.y11b{bottom:211.886270px;}
.yac{bottom:213.468043px;}
.y137{bottom:217.837602px;}
.y59{bottom:223.941750px;}
.y3a{bottom:226.152002px;}
.ybc{bottom:226.223012px;}
.y90{bottom:228.837286px;}
.yef{bottom:229.150905px;}
.yd1{bottom:230.107042px;}
.y110{bottom:230.919759px;}
.y78{bottom:231.703430px;}
.y11a{bottom:236.619893px;}
.yab{bottom:238.201667px;}
.y136{bottom:242.571226px;}
.y152{bottom:244.272682px;}
.y16a{bottom:247.608826px;}
.y58{bottom:248.675373px;}
.y39{bottom:250.885625px;}
.ybb{bottom:253.205146px;}
.yee{bottom:253.884529px;}
.yd0{bottom:254.840666px;}
.y10f{bottom:255.653382px;}
.y77{bottom:256.437053px;}
.y119{bottom:261.353517px;}
.yaa{bottom:262.935290px;}
.y135{bottom:267.304849px;}
.y151{bottom:269.006306px;}
.y169{bottom:272.342449px;}
.y57{bottom:273.408997px;}
.y10e{bottom:273.628778px;}
.y38{bottom:275.619249px;}
.yed{bottom:278.618152px;}
.y1a{bottom:278.730005px;}
.ycf{bottom:279.574289px;}
.yba{bottom:280.187281px;}
.y76{bottom:281.170677px;}
.y10{bottom:284.481727px;}
.y118{bottom:286.087140px;}
.ya9{bottom:287.668914px;}
.y6b{bottom:288.750729px;}
.y134{bottom:292.038473px;}
.y150{bottom:293.739929px;}
.y168{bottom:297.076073px;}
.y56{bottom:298.142620px;}
.y10d{bottom:298.362402px;}
.y37{bottom:300.352872px;}
.y75{bottom:305.904300px;}
.yb9{bottom:307.169416px;}
.ya8{bottom:312.402538px;}
.y6a{bottom:313.484352px;}
.y133{bottom:316.772096px;}
.yec{bottom:317.346150px;}
.y14f{bottom:318.473553px;}
.y167{bottom:321.809697px;}
.y55{bottom:322.876244px;}
.y10c{bottom:323.096025px;}
.y36{bottom:325.086496px;}
.yce{bottom:329.041537px;}
.y74{bottom:330.637924px;}
.yb8{bottom:334.151551px;}
.ya7{bottom:337.136161px;}
.y69{bottom:338.217976px;}
.y132{bottom:341.505720px;}
.yeb{bottom:342.079773px;}
.y14e{bottom:343.207176px;}
.y166{bottom:346.543320px;}
.y54{bottom:347.609868px;}
.y10b{bottom:347.829649px;}
.y35{bottom:349.820119px;}
.ycd{bottom:353.775160px;}
.y73{bottom:355.371547px;}
.y18{bottom:356.850001px;}
.yf{bottom:359.971184px;}
.yb7{bottom:361.133686px;}
.ya6{bottom:361.869785px;}
.y68{bottom:362.951599px;}
.y131{bottom:366.239343px;}
.yea{bottom:366.813397px;}
.y14d{bottom:367.940800px;}
.y53{bottom:372.343491px;}
.y10a{bottom:372.563272px;}
.y34{bottom:374.553743px;}
.ycc{bottom:378.508784px;}
.y72{bottom:380.105171px;}
.ye{bottom:385.829063px;}
.ya5{bottom:386.603408px;}
.y67{bottom:387.685223px;}
.yb6{bottom:388.115821px;}
.y130{bottom:390.972967px;}
.ye9{bottom:391.547020px;}
.y14c{bottom:392.674424px;}
.y52{bottom:397.077115px;}
.y109{bottom:397.296896px;}
.y33{bottom:399.287367px;}
.y8e{bottom:400.326472px;}
.ycb{bottom:403.242407px;}
.y71{bottom:404.838795px;}
.ya4{bottom:411.337032px;}
.y66{bottom:412.418847px;}
.y165{bottom:412.564398px;}
.yb5{bottom:415.097955px;}
.y12f{bottom:415.706591px;}
.ye8{bottom:416.280644px;}
.y14b{bottom:417.408047px;}
.y51{bottom:421.810738px;}
.y108{bottom:422.030519px;}
.y32{bottom:424.020990px;}
.y8d{bottom:425.060096px;}
.yca{bottom:427.976031px;}
.y16{bottom:435.329998px;}
.y65{bottom:437.152470px;}
.y70{bottom:437.325461px;}
.y12e{bottom:440.440214px;}
.ye7{bottom:441.014267px;}
.yd{bottom:441.278374px;}
.yb4{bottom:442.080090px;}
.y14a{bottom:442.141671px;}
.y107{bottom:446.764143px;}
.y31{bottom:448.754614px;}
.y8c{bottom:449.793719px;}
.ya3{bottom:452.709654px;}
.y64{bottom:461.886094px;}
.y164{bottom:462.031645px;}
.y4f{bottom:462.059084px;}
.y12d{bottom:465.173838px;}
.ye6{bottom:465.747891px;}
.y149{bottom:466.875294px;}
.yb3{bottom:469.062225px;}
.y106{bottom:471.497767px;}
.y30{bottom:473.488237px;}
.y8b{bottom:474.527343px;}
.ya2{bottom:477.443278px;}
.y63{bottom:486.619717px;}
.y163{bottom:486.765269px;}
.y4e{bottom:486.792708px;}
.y12c{bottom:489.907461px;}
.ye5{bottom:490.481515px;}
.y148{bottom:491.608918px;}
.y105{bottom:496.231390px;}
.y2f{bottom:498.221861px;}
.y8a{bottom:499.260967px;}
.ya1{bottom:502.176902px;}
.y62{bottom:511.353341px;}
.y162{bottom:511.498892px;}
.y4d{bottom:511.526332px;}
.y14{bottom:513.809995px;}
.y12b{bottom:514.641085px;}
.ye4{bottom:515.215138px;}
.y147{bottom:516.342541px;}
.yc{bottom:519.676723px;}
.y104{bottom:520.965014px;}
.y2e{bottom:522.955484px;}
.y89{bottom:523.994590px;}
.ya0{bottom:526.910525px;}
.y61{bottom:536.086964px;}
.y161{bottom:536.232516px;}
.y4c{bottom:536.259955px;}
.y12a{bottom:539.374709px;}
.ye3{bottom:539.948762px;}
.y146{bottom:541.076165px;}
.y103{bottom:545.698637px;}
.y4{bottom:546.209993px;}
.y88{bottom:548.728214px;}
.y9f{bottom:551.644149px;}
.y15d{bottom:556.391613px;}
.y2c{bottom:560.820588px;}
.y160{bottom:560.966139px;}
.y4b{bottom:560.993579px;}
.y129{bottom:564.108332px;}
.yc8{bottom:565.116436px;}
.y145{bottom:565.809789px;}
.y102{bottom:570.432261px;}
.y87{bottom:573.461837px;}
.y101{bottom:574.193791px;}
.y9e{bottom:576.377772px;}
.ye0{bottom:582.914616px;}
.y2b{bottom:585.554212px;}
.y15f{bottom:585.699763px;}
.y4a{bottom:585.727202px;}
.y128{bottom:588.841956px;}
.yc7{bottom:589.850060px;}
.y144{bottom:590.543412px;}
.y12{bottom:591.209992px;}
.yb{bottom:598.075024px;}
.y86{bottom:598.195461px;}
.y100{bottom:598.927414px;}
.y9d{bottom:601.111396px;}
.y1{bottom:607.049991px;}
.ydf{bottom:607.648240px;}
.y2a{bottom:610.287835px;}
.y49{bottom:610.460826px;}
.y127{bottom:613.575579px;}
.yc6{bottom:614.583684px;}
.y143{bottom:615.277036px;}
.y85{bottom:622.929084px;}
.yff{bottom:623.661038px;}
.y9c{bottom:625.845020px;}
.yde{bottom:632.381863px;}
.y15a{bottom:634.049990px;}
.y29{bottom:635.021459px;}
.y48{bottom:635.194450px;}
.y126{bottom:638.309203px;}
.yc5{bottom:639.317307px;}
.y142{bottom:640.010659px;}
.y84{bottom:647.662708px;}
.yfe{bottom:648.394662px;}
.y9b{bottom:650.578643px;}
.ydd{bottom:657.115487px;}
.y28{bottom:659.755082px;}
.y47{bottom:659.928073px;}
.y125{bottom:663.042826px;}
.yc4{bottom:664.050931px;}
.y141{bottom:664.744283px;}
.y83{bottom:672.396332px;}
.yfd{bottom:673.128285px;}
.y9a{bottom:675.312267px;}
.ya{bottom:676.473326px;}
.y11{bottom:677.313890px;}
.ydc{bottom:681.849110px;}
.y27{bottom:684.488706px;}
.y46{bottom:684.661697px;}
.y124{bottom:687.776450px;}
.yc3{bottom:688.784554px;}
.y82{bottom:697.129955px;}
.yfc{bottom:697.861909px;}
.y99{bottom:700.045890px;}
.ydb{bottom:706.582734px;}
.y26{bottom:709.222329px;}
.y45{bottom:709.395320px;}
.y123{bottom:712.510074px;}
.yc2{bottom:713.518178px;}
.y81{bottom:721.863579px;}
.yfb{bottom:722.595532px;}
.y98{bottom:724.779514px;}
.yda{bottom:731.316358px;}
.y25{bottom:733.955953px;}
.y44{bottom:734.128944px;}
.y155{bottom:736.737473px;}
.y122{bottom:737.243697px;}
.yc1{bottom:738.251801px;}
.y9{bottom:742.662706px;}
.y80{bottom:746.597202px;}
.yfa{bottom:747.329156px;}
.y97{bottom:749.513137px;}
.yd9{bottom:756.049981px;}
.y24{bottom:758.689577px;}
.y43{bottom:758.862567px;}
.y154{bottom:771.589397px;}
.yf9{bottom:772.062779px;}
.y8{bottom:794.378465px;}
.yf8{bottom:796.796403px;}
.ye2{bottom:798.641925px;}
.y153{bottom:806.441321px;}
.y2d{bottom:806.865227px;}
.yc9{bottom:807.315227px;}
.y140{bottom:811.902280px;}
.y50{bottom:816.871078px;}
.yd8{bottom:819.194559px;}
.y23{bottom:823.494075px;}
.y13f{bottom:840.421762px;}
.ye1{bottom:841.294786px;}
.y42{bottom:841.422336px;}
.hc{height:23.039999px;}
.ha{height:23.399999px;}
.h4{height:48.239998px;}
.h22{height:53.388651px;}
.he{height:53.748413px;}
.h1e{height:56.449548px;}
.h11{height:56.626507px;}
.h9{height:56.805354px;}
.hb{height:56.819753px;}
.h7{height:57.176045px;}
.h1c{height:58.081882px;}
.h1f{height:60.394561px;}
.h17{height:60.583887px;}
.h1b{height:61.192023px;}
.h14{height:68.354742px;}
.hd{height:75.490212px;}
.h16{height:76.162652px;}
.h21{height:76.426897px;}
.h19{height:83.270798px;}
.h20{height:83.923433px;}
.h13{height:88.958839px;}
.h1d{height:91.057426px;}
.h10{height:94.353917px;}
.h1a{height:96.752364px;}
.h2{height:110.159995px;}
.h23{height:110.519995px;}
.h8{height:110.896577px;}
.h25{height:115.886740px;}
.h5{height:115.894163px;}
.h3{height:133.019239px;}
.h24{height:142.315374px;}
.h12{height:183.145737px;}
.h15{height:186.285378px;}
.h18{height:253.439989px;}
.hf{height:892.799963px;}
.h6{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w6{width:12.239999px;}
.w5{width:14.039999px;}
.w8{width:15.479999px;}
.w7{width:20.159999px;}
.w9{width:21.239999px;}
.wa{width:221.759991px;}
.w3{width:276.479988px;}
.w2{width:496.079979px;}
.w4{width:628.874974px;}
.w0{width:628.875000px;}
.w1{width:629.250000px;}
.x0{left:0.000000px;}
.x22{left:4.408681px;}
.x21{left:6.540541px;}
.x20{left:17.353490px;}
.x23{left:18.640289px;}
.x13{left:24.560746px;}
.x2b{left:27.383702px;}
.x1f{left:37.634972px;}
.x32{left:40.637176px;}
.x39{left:43.921198px;}
.x2{left:46.998257px;}
.x15{left:48.903023px;}
.x27{left:50.032126px;}
.x16{left:51.746004px;}
.x40{left:53.607530px;}
.x33{left:59.011763px;}
.x1{left:60.839997px;}
.x3a{left:62.401150px;}
.x1e{left:63.719997px;}
.x1c{left:65.376689px;}
.x11{left:66.555806px;}
.x12{left:67.943559px;}
.x17{left:69.734129px;}
.x14{left:70.910134px;}
.x18{left:72.317999px;}
.x1d{left:74.053799px;}
.x1a{left:75.689136px;}
.x3f{left:77.638494px;}
.x24{left:79.203682px;}
.x44{left:89.095605px;}
.x2c{left:92.658697px;}
.x19{left:98.613410px;}
.xd{left:102.645135px;}
.x45{left:107.663389px;}
.xb{left:109.144737px;}
.x9{left:113.343129px;}
.x1b{left:118.814879px;}
.xa{left:124.814050px;}
.xc{left:131.700116px;}
.x25{left:137.053362px;}
.x3d{left:138.836277px;}
.x10{left:142.921214px;}
.x5{left:157.875484px;}
.x26{left:170.095938px;}
.x3{left:172.439993px;}
.x3b{left:182.662135px;}
.x41{left:195.774188px;}
.x4{left:199.562762px;}
.x3c{left:213.157568px;}
.x3e{left:214.402887px;}
.x42{left:221.667200px;}
.x43{left:233.770514px;}
.x34{left:288.573695px;}
.x28{left:299.279475px;}
.x2f{left:300.768979px;}
.x35{left:307.200063px;}
.x36{left:311.687718px;}
.x37{left:318.725584px;}
.x2d{left:320.896830px;}
.x2e{left:322.019336px;}
.x38{left:323.614954px;}
.x31{left:325.069324px;}
.x29{left:326.138679px;}
.x30{left:327.985362px;}
.x2a{left:343.429959px;}
.x8{left:482.039980px;}
.x7{left:485.279980px;}
.x6{left:486.851602px;}
.xf{left:542.536764px;}
.xe{left:565.987476px;}
@media print{
.v1{vertical-align:-33.293149pt;}
.v2{vertical-align:-13.475478pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.131953pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-37.195534pt;}
.ws5{word-spacing:-32.077401pt;}
.ws9{word-spacing:-26.616559pt;}
.wsc{word-spacing:-25.634147pt;}
.ws8{word-spacing:-18.100016pt;}
.ws4{word-spacing:-17.714443pt;}
.ws3{word-spacing:-17.709954pt;}
.ws6{word-spacing:-16.756905pt;}
.wsb{word-spacing:-16.704540pt;}
.ws0{word-spacing:-15.814330pt;}
.ws7{word-spacing:-4.633555pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:8.321202pt;}
._43{margin-left:-4.473850pt;}
._41{margin-left:-2.778068pt;}
._42{margin-left:-0.918934pt;}
._1c{width:1.511736pt;}
._22{width:2.427589pt;}
._6{width:3.411722pt;}
._3{width:4.802170pt;}
._17{width:6.283536pt;}
._0{width:7.317101pt;}
._1a{width:8.674211pt;}
._1e{width:9.580585pt;}
._19{width:11.213322pt;}
._10{width:12.263174pt;}
._5{width:13.990920pt;}
._20{width:15.412178pt;}
._1f{width:16.412033pt;}
._4{width:18.274457pt;}
._21{width:19.282123pt;}
._1b{width:20.247698pt;}
._1d{width:21.728058pt;}
._d{width:23.500381pt;}
._15{width:24.429415pt;}
._2{width:25.841890pt;}
._24{width:26.739805pt;}
._1{width:27.654017pt;}
._2e{width:28.658527pt;}
._2a{width:29.772481pt;}
._29{width:31.074631pt;}
._13{width:32.094486pt;}
._12{width:33.041474pt;}
._2d{width:34.314487pt;}
._25{width:36.513633pt;}
._28{width:37.521264pt;}
._18{width:39.182980pt;}
._2c{width:40.839116pt;}
._2b{width:41.901218pt;}
._30{width:43.632884pt;}
._b{width:44.767652pt;}
._23{width:46.184136pt;}
._3e{width:47.338307pt;}
._c{width:48.624833pt;}
._8{width:49.529907pt;}
._27{width:51.190610pt;}
._a{width:53.843350pt;}
._f{width:55.127360pt;}
._26{width:56.757538pt;}
._34{width:58.042579pt;}
._3d{width:60.601258pt;}
._11{width:69.683369pt;}
._40{width:70.744681pt;}
._9{width:71.744697pt;}
._7{width:77.365644pt;}
._3f{width:78.523475pt;}
._32{width:87.505222pt;}
._2f{width:93.021988pt;}
._e{width:110.146796pt;}
._14{width:115.561690pt;}
._37{width:118.516214pt;}
._31{width:121.545198pt;}
._35{width:136.785407pt;}
._3c{width:139.596161pt;}
._39{width:141.562784pt;}
._3a{width:145.654217pt;}
._33{width:150.932117pt;}
._38{width:217.012794pt;}
._3b{width:314.667418pt;}
._36{width:397.674811pt;}
._16{width:821.138814pt;}
.fs2{font-size:60.360037pt;}
.fsd{font-size:63.757784pt;}
.fs7{font-size:63.957653pt;}
.fs4{font-size:67.595244pt;}
.fs5{font-size:67.612379pt;}
.fsc{font-size:69.114243pt;}
.fs6{font-size:85.263546pt;}
.fsa{font-size:86.023043pt;}
.fse{font-size:90.580026pt;}
.fsb{font-size:94.051445pt;}
.fs8{font-size:106.569439pt;}
.fs3{font-size:131.432981pt;}
.fsf{font-size:138.828080pt;}
.fs1{font-size:138.836973pt;}
.fs0{font-size:150.240563pt;}
.fs9{font-size:232.566015pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.000014pt;}
.y22{bottom:0.400014pt;}
.y1b{bottom:4.946045pt;}
.y15{bottom:5.048271pt;}
.y17{bottom:5.169951pt;}
.y13{bottom:5.188564pt;}
.y19{bottom:5.193506pt;}
.y96{bottom:6.742008pt;}
.y5{bottom:9.091521pt;}
.y3{bottom:9.833184pt;}
.y15c{bottom:10.043067pt;}
.y15e{bottom:15.903801pt;}
.y7{bottom:16.303801pt;}
.y60{bottom:27.010387pt;}
.y21{bottom:27.410387pt;}
.yf7{bottom:27.806148pt;}
.y41{bottom:35.333674pt;}
.y95{bottom:39.520160pt;}
.y13e{bottom:39.735322pt;}
.yf6{bottom:49.791591pt;}
.y117{bottom:51.363906pt;}
.y7f{bottom:52.060502pt;}
.y8f{bottom:54.800012pt;}
.y20{bottom:55.858993pt;}
.y121{bottom:56.430692pt;}
.y40{bottom:57.319118pt;}
.yb2{bottom:57.836713pt;}
.y5f{bottom:60.351130pt;}
.y13d{bottom:61.720765pt;}
.y2{bottom:62.006519pt;}
.y15b{bottom:62.216401pt;}
.y159{bottom:66.426897pt;}
.yf5{bottom:71.777034pt;}
.y94{bottom:72.298312pt;}
.yd7{bottom:72.626934pt;}
.y116{bottom:73.349349pt;}
.y7e{bottom:74.045945pt;}
.y6f{bottom:76.325108pt;}
.y120{bottom:78.416135pt;}
.y3f{bottom:79.304561pt;}
.yb1{bottom:79.822156pt;}
.y5e{bottom:82.336573pt;}
.y13c{bottom:83.706208pt;}
.y1f{bottom:84.839805pt;}
.y158{bottom:88.412341pt;}
.yf4{bottom:93.762478pt;}
.yd6{bottom:94.612377pt;}
.y115{bottom:95.334792pt;}
.y7d{bottom:96.031388pt;}
.y11f{bottom:100.401578pt;}
.y3e{bottom:101.290004pt;}
.yb0{bottom:101.807599pt;}
.y5d{bottom:104.322016pt;}
.y93{bottom:105.076464pt;}
.yc0{bottom:105.150642pt;}
.y13b{bottom:105.691651pt;}
.y6e{bottom:106.305257pt;}
.y157{bottom:110.397784pt;}
.y1e{bottom:113.820616pt;}
.yf3{bottom:115.747921pt;}
.yd5{bottom:116.597820pt;}
.y114{bottom:117.320235pt;}
.y7c{bottom:118.016831pt;}
.y11e{bottom:122.387021pt;}
.y3d{bottom:123.275447pt;}
.yaf{bottom:123.793042pt;}
.y13a{bottom:127.677094pt;}
.ybf{bottom:129.134762pt;}
.y16c{bottom:132.154961pt;}
.y5c{bottom:133.103003pt;}
.y6d{bottom:136.285407pt;}
.yf2{bottom:137.733364pt;}
.y92{bottom:137.854617pt;}
.yd4{bottom:138.583264pt;}
.y113{bottom:139.305678pt;}
.y7b{bottom:140.002274pt;}
.y1d{bottom:142.801428pt;}
.y11d{bottom:144.372464pt;}
.y3c{bottom:145.260890pt;}
.yae{bottom:145.778485pt;}
.y139{bottom:149.662538pt;}
.ybe{bottom:153.118882pt;}
.y156{bottom:154.368670pt;}
.y5b{bottom:155.088447pt;}
.yf1{bottom:159.718807pt;}
.yd3{bottom:160.568707pt;}
.y112{bottom:161.291121pt;}
.y7a{bottom:161.987718pt;}
.y6c{bottom:166.265557pt;}
.y11c{bottom:166.357908pt;}
.y3b{bottom:167.246334pt;}
.yad{bottom:167.763929pt;}
.y91{bottom:170.632769pt;}
.y138{bottom:171.647981pt;}
.y1c{bottom:171.782239pt;}
.y16b{bottom:176.125848pt;}
.y5a{bottom:177.073890pt;}
.ybd{bottom:177.103002pt;}
.yf0{bottom:181.704250pt;}
.yd2{bottom:182.554150pt;}
.y111{bottom:183.276565pt;}
.y79{bottom:183.973161pt;}
.y11b{bottom:188.343351pt;}
.yac{bottom:189.749372pt;}
.y137{bottom:193.633424pt;}
.y59{bottom:199.059333pt;}
.y3a{bottom:201.024001pt;}
.ybc{bottom:201.087121pt;}
.y90{bottom:203.410921pt;}
.yef{bottom:203.689693pt;}
.yd1{bottom:204.539593pt;}
.y110{bottom:205.262008pt;}
.y78{bottom:205.958604pt;}
.y11a{bottom:210.328794pt;}
.yab{bottom:211.734815pt;}
.y136{bottom:215.618867pt;}
.y152{bottom:217.131273pt;}
.y16a{bottom:220.096734pt;}
.y58{bottom:221.044776pt;}
.y39{bottom:223.009445pt;}
.ybb{bottom:225.071241pt;}
.yee{bottom:225.675137pt;}
.yd0{bottom:226.525036pt;}
.y10f{bottom:227.247451pt;}
.y77{bottom:227.944047pt;}
.y119{bottom:232.314237pt;}
.yaa{bottom:233.720258pt;}
.y135{bottom:237.604310pt;}
.y151{bottom:239.116716pt;}
.y169{bottom:242.082177pt;}
.y57{bottom:243.030219pt;}
.y10e{bottom:243.225580pt;}
.y38{bottom:244.994888pt;}
.yed{bottom:247.660580pt;}
.y1a{bottom:247.760004pt;}
.ycf{bottom:248.510480pt;}
.yba{bottom:249.055361pt;}
.y76{bottom:249.929490pt;}
.y10{bottom:252.872646pt;}
.y118{bottom:254.299680pt;}
.ya9{bottom:255.705701pt;}
.y6b{bottom:256.667314pt;}
.y134{bottom:259.589754pt;}
.y150{bottom:261.102159pt;}
.y168{bottom:264.067620pt;}
.y56{bottom:265.015663pt;}
.y10d{bottom:265.211024pt;}
.y37{bottom:266.980331pt;}
.y75{bottom:271.914934pt;}
.yb9{bottom:273.039481pt;}
.ya8{bottom:277.691145pt;}
.y6a{bottom:278.652758pt;}
.y133{bottom:281.575197pt;}
.yec{bottom:282.085466pt;}
.y14f{bottom:283.087603pt;}
.y167{bottom:286.053064pt;}
.y55{bottom:287.001106pt;}
.y10c{bottom:287.196467pt;}
.y36{bottom:288.965774pt;}
.yce{bottom:292.481366pt;}
.y74{bottom:293.900377pt;}
.yb8{bottom:297.023601pt;}
.ya7{bottom:299.676588pt;}
.y69{bottom:300.638201pt;}
.y132{bottom:303.560640pt;}
.yeb{bottom:304.070909pt;}
.y14e{bottom:305.073046pt;}
.y166{bottom:308.038507pt;}
.y54{bottom:308.986549pt;}
.y10b{bottom:309.181910pt;}
.y35{bottom:310.951217pt;}
.ycd{bottom:314.466809pt;}
.y73{bottom:315.885820pt;}
.y18{bottom:317.200001pt;}
.yf{bottom:319.974386pt;}
.yb7{bottom:321.007721pt;}
.ya6{bottom:321.662031pt;}
.y68{bottom:322.623644pt;}
.y131{bottom:325.546083pt;}
.yea{bottom:326.056353pt;}
.y14d{bottom:327.058489pt;}
.y53{bottom:330.971992pt;}
.y10a{bottom:331.167353pt;}
.y34{bottom:332.936660pt;}
.ycc{bottom:336.452252pt;}
.y72{bottom:337.871263pt;}
.ye{bottom:342.959167pt;}
.ya5{bottom:343.647474pt;}
.y67{bottom:344.609087pt;}
.yb6{bottom:344.991840pt;}
.y130{bottom:347.531526pt;}
.ye9{bottom:348.041796pt;}
.y14c{bottom:349.043932pt;}
.y52{bottom:352.957435pt;}
.y109{bottom:353.152796pt;}
.y33{bottom:354.922104pt;}
.y8e{bottom:355.845753pt;}
.ycb{bottom:358.437695pt;}
.y71{bottom:359.856706pt;}
.ya4{bottom:365.632917pt;}
.y66{bottom:366.594530pt;}
.y165{bottom:366.723909pt;}
.yb5{bottom:368.975960pt;}
.y12f{bottom:369.516969pt;}
.ye8{bottom:370.027239pt;}
.y14b{bottom:371.029375pt;}
.y51{bottom:374.942878pt;}
.y108{bottom:375.138239pt;}
.y32{bottom:376.907547pt;}
.y8d{bottom:377.831196pt;}
.yca{bottom:380.423139pt;}
.y16{bottom:386.959998pt;}
.y65{bottom:388.579973pt;}
.y70{bottom:388.733743pt;}
.y12e{bottom:391.502413pt;}
.ye7{bottom:392.012682pt;}
.yd{bottom:392.247443pt;}
.yb4{bottom:392.960080pt;}
.y14a{bottom:393.014818pt;}
.y107{bottom:397.123683pt;}
.y31{bottom:398.892990pt;}
.y8c{bottom:399.816639pt;}
.ya3{bottom:402.408582pt;}
.y64{bottom:410.565417pt;}
.y164{bottom:410.694796pt;}
.y4f{bottom:410.719186pt;}
.y12d{bottom:413.487856pt;}
.ye6{bottom:413.998125pt;}
.y149{bottom:415.000262pt;}
.yb3{bottom:416.944200pt;}
.y106{bottom:419.109126pt;}
.y30{bottom:420.878433pt;}
.y8b{bottom:421.802083pt;}
.ya2{bottom:424.394025pt;}
.y63{bottom:432.550860pt;}
.y163{bottom:432.680239pt;}
.y4e{bottom:432.704629pt;}
.y12c{bottom:435.473299pt;}
.ye5{bottom:435.983569pt;}
.y148{bottom:436.985705pt;}
.y105{bottom:441.094569pt;}
.y2f{bottom:442.863876pt;}
.y8a{bottom:443.787526pt;}
.ya1{bottom:446.379468pt;}
.y62{bottom:454.536303pt;}
.y162{bottom:454.665682pt;}
.y4d{bottom:454.690073pt;}
.y14{bottom:456.719995pt;}
.y12b{bottom:457.458742pt;}
.ye4{bottom:457.969012pt;}
.y147{bottom:458.971148pt;}
.yc{bottom:461.934864pt;}
.y104{bottom:463.080012pt;}
.y2e{bottom:464.849320pt;}
.y89{bottom:465.772969pt;}
.ya0{bottom:468.364911pt;}
.y61{bottom:476.521746pt;}
.y161{bottom:476.651125pt;}
.y4c{bottom:476.675516pt;}
.y12a{bottom:479.444185pt;}
.ye3{bottom:479.954455pt;}
.y146{bottom:480.956591pt;}
.y103{bottom:485.065455pt;}
.y4{bottom:485.519994pt;}
.y88{bottom:487.758412pt;}
.y9f{bottom:490.350354pt;}
.y15d{bottom:494.570323pt;}
.y2c{bottom:498.507189pt;}
.y160{bottom:498.636568pt;}
.y4b{bottom:498.660959pt;}
.y129{bottom:501.429629pt;}
.yc8{bottom:502.325721pt;}
.y145{bottom:502.942034pt;}
.y102{bottom:507.050899pt;}
.y87{bottom:509.743855pt;}
.y101{bottom:510.394481pt;}
.y9e{bottom:512.335798pt;}
.ye0{bottom:518.146325pt;}
.y2b{bottom:520.492633pt;}
.y15f{bottom:520.622012pt;}
.y4a{bottom:520.646402pt;}
.y128{bottom:523.415072pt;}
.yc7{bottom:524.311164pt;}
.y144{bottom:524.927478pt;}
.y12{bottom:525.519993pt;}
.yb{bottom:531.622244pt;}
.y86{bottom:531.729299pt;}
.y100{bottom:532.379924pt;}
.y9d{bottom:534.321241pt;}
.y1{bottom:539.599992pt;}
.ydf{bottom:540.131769pt;}
.y2a{bottom:542.478076pt;}
.y49{bottom:542.631845pt;}
.y127{bottom:545.400515pt;}
.yc6{bottom:546.296608pt;}
.y143{bottom:546.912921pt;}
.y85{bottom:553.714742pt;}
.yff{bottom:554.365367pt;}
.y9c{bottom:556.306684pt;}
.yde{bottom:562.117212pt;}
.y15a{bottom:563.599991pt;}
.y29{bottom:564.463519pt;}
.y48{bottom:564.617288pt;}
.y126{bottom:567.385958pt;}
.yc5{bottom:568.282051pt;}
.y142{bottom:568.898364pt;}
.y84{bottom:575.700185pt;}
.yfe{bottom:576.350810pt;}
.y9b{bottom:578.292127pt;}
.ydd{bottom:584.102655pt;}
.y28{bottom:586.448962pt;}
.y47{bottom:586.602732pt;}
.y125{bottom:589.371401pt;}
.yc4{bottom:590.267494pt;}
.y141{bottom:590.883807pt;}
.y83{bottom:597.685628pt;}
.yfd{bottom:598.336253pt;}
.y9a{bottom:600.277570pt;}
.ya{bottom:601.309623pt;}
.y11{bottom:602.056791pt;}
.ydc{bottom:606.088098pt;}
.y27{bottom:608.434405pt;}
.y46{bottom:608.588175pt;}
.y124{bottom:611.356844pt;}
.yc3{bottom:612.252937pt;}
.y82{bottom:619.671071pt;}
.yfc{bottom:620.321697pt;}
.y99{bottom:622.263014pt;}
.ydb{bottom:628.073541pt;}
.y26{bottom:630.419848pt;}
.y45{bottom:630.573618pt;}
.y123{bottom:633.342288pt;}
.yc2{bottom:634.238380pt;}
.y81{bottom:641.656514pt;}
.yfb{bottom:642.307140pt;}
.y98{bottom:644.248457pt;}
.yda{bottom:650.058984pt;}
.y25{bottom:652.405292pt;}
.y44{bottom:652.559061pt;}
.y155{bottom:654.877754pt;}
.y122{bottom:655.327731pt;}
.yc1{bottom:656.223824pt;}
.y9{bottom:660.144628pt;}
.y80{bottom:663.641958pt;}
.yfa{bottom:664.292583pt;}
.y97{bottom:666.233900pt;}
.yd9{bottom:672.044428pt;}
.y24{bottom:674.390735pt;}
.y43{bottom:674.544504pt;}
.y154{bottom:685.857242pt;}
.yf9{bottom:686.278026pt;}
.y8{bottom:706.114191pt;}
.yf8{bottom:708.263469pt;}
.ye2{bottom:709.903934pt;}
.y153{bottom:716.836730pt;}
.y2d{bottom:717.213535pt;}
.yc9{bottom:717.613535pt;}
.y140{bottom:721.690915pt;}
.y50{bottom:726.107625pt;}
.yd8{bottom:728.172941pt;}
.y23{bottom:731.994733pt;}
.y13f{bottom:747.041566pt;}
.ye1{bottom:747.817588pt;}
.y42{bottom:747.930965pt;}
.hc{height:20.479999pt;}
.ha{height:20.799999pt;}
.h4{height:42.879998pt;}
.h22{height:47.456578pt;}
.he{height:47.776367pt;}
.h1e{height:50.177376pt;}
.h11{height:50.334673pt;}
.h9{height:50.493648pt;}
.hb{height:50.506447pt;}
.h7{height:50.823151pt;}
.h1c{height:51.628339pt;}
.h1f{height:53.684054pt;}
.h17{height:53.852344pt;}
.h1b{height:54.392909pt;}
.h14{height:60.759770pt;}
.hd{height:67.102411pt;}
.h16{height:67.700135pt;}
.h21{height:67.935019pt;}
.h19{height:74.018487pt;}
.h20{height:74.598607pt;}
.h13{height:79.074524pt;}
.h1d{height:80.939934pt;}
.h10{height:83.870149pt;}
.h1a{height:86.002101pt;}
.h2{height:97.919996pt;}
.h23{height:98.239996pt;}
.h8{height:98.574736pt;}
.h25{height:103.010436pt;}
.h5{height:103.017034pt;}
.h3{height:118.239323pt;}
.h24{height:126.502554pt;}
.h12{height:162.796211pt;}
.h15{height:165.587003pt;}
.h18{height:225.279991pt;}
.hf{height:793.599967pt;}
.h6{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w6{width:10.880000pt;}
.w5{width:12.479999pt;}
.w8{width:13.759999pt;}
.w7{width:17.919999pt;}
.w9{width:18.879999pt;}
.wa{width:197.119992pt;}
.w3{width:245.759990pt;}
.w2{width:440.959982pt;}
.w4{width:558.999977pt;}
.w0{width:559.000000pt;}
.w1{width:559.333333pt;}
.x0{left:0.000000pt;}
.x22{left:3.918828pt;}
.x21{left:5.813815pt;}
.x20{left:15.425325pt;}
.x23{left:16.569146pt;}
.x13{left:21.831774pt;}
.x2b{left:24.341068pt;}
.x1f{left:33.453309pt;}
.x32{left:36.121934pt;}
.x39{left:39.041065pt;}
.x2{left:41.776228pt;}
.x15{left:43.469354pt;}
.x27{left:44.473001pt;}
.x16{left:45.996448pt;}
.x40{left:47.651138pt;}
.x33{left:52.454901pt;}
.x1{left:54.079998pt;}
.x3a{left:55.467689pt;}
.x1e{left:56.639998pt;}
.x1c{left:58.112613pt;}
.x11{left:59.160716pt;}
.x12{left:60.394275pt;}
.x17{left:61.985892pt;}
.x14{left:63.031231pt;}
.x18{left:64.282666pt;}
.x1d{left:65.825599pt;}
.x1a{left:67.279232pt;}
.x3f{left:69.011994pt;}
.x24{left:70.403273pt;}
.x44{left:79.196093pt;}
.x2c{left:82.363286pt;}
.x19{left:87.656365pt;}
.xd{left:91.240120pt;}
.x45{left:95.700790pt;}
.xb{left:97.017544pt;}
.x9{left:100.749448pt;}
.x1b{left:105.613225pt;}
.xa{left:110.945822pt;}
.xc{left:117.066770pt;}
.x25{left:121.825211pt;}
.x3d{left:123.410024pt;}
.x10{left:127.041080pt;}
.x5{left:140.333764pt;}
.x26{left:151.196389pt;}
.x3{left:153.279994pt;}
.x3b{left:162.366342pt;}
.x41{left:174.021500pt;}
.x4{left:177.389122pt;}
.x3c{left:189.473394pt;}
.x3e{left:190.580344pt;}
.x42{left:197.037511pt;}
.x43{left:207.796013pt;}
.x34{left:256.509951pt;}
.x28{left:266.026200pt;}
.x2f{left:267.350203pt;}
.x35{left:273.066722pt;}
.x36{left:277.055749pt;}
.x37{left:283.311630pt;}
.x2d{left:285.241626pt;}
.x2e{left:286.239410pt;}
.x38{left:287.657737pt;}
.x31{left:288.950510pt;}
.x29{left:289.901048pt;}
.x30{left:291.542544pt;}
.x2a{left:305.271075pt;}
.x8{left:428.479982pt;}
.x7{left:431.359982pt;}
.x6{left:432.756979pt;}
.xf{left:482.254902pt;}
.xe{left:503.099979pt;}
}




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