
    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_a2b9a09e5e1fbaebb9bd727b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914000;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_7498fb04ad97826f20c06eda.woff')format("woff");}.ff2{font-family:ff2;line-height:0.734863;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_e345a7401dc0aab05464f35a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a700ac1f2a5c30f6f7edc988.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_38eeeaf2552e800867a9eb1f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.718000;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_35fe337e885fd2c04ba75fc1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_ce408c8ac2a68314a3247d7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.733398;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_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.830000;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_ea7b5bf0df8f913350ec705a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_be45eb505637305260b8817f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.718000;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_3e34a5882adc0ab13a9ba102.woff')format("woff");}.ffb{font-family:ffb;line-height:0.956000;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_f51f639cafae398b5951b2af.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764000;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_d714aaeaad70f8b2bab13cc5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.698242;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_15ce531c489c2a966126e25c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_85c142c9d75ea04518b74fa2.woff')format("woff");}.fff{font-family:fff;line-height:0.956000;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_15ce531c489c2a966126e25c.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.830000;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_f51f639cafae398b5951b2af.woff')format("woff");}.ff12{font-family:ff12;line-height:0.764000;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_887c1a534025ea3ccaf63413.woff')format("woff");}.ff13{font-family:ff13;line-height:0.708008;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_3e34a5882adc0ab13a9ba102.woff')format("woff");}.ff14{font-family:ff14;line-height:0.956000;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_8f2f612e070cb02488d2f3d9.woff')format("woff");}.ff15{font-family:ff15;line-height:0.970000;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_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.830000;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_f51f639cafae398b5951b2af.woff')format("woff");}.ff17{font-family:ff17;line-height:0.764000;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_c41bb1b342c0d7e3bd25f861.woff')format("woff");}.ff18{font-family:ff18;line-height:0.970000;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_bb204579f92eb445c7297010.woff')format("woff");}.ff19{font-family:ff19;line-height:0.687988;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_3e34a5882adc0ab13a9ba102.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.956000;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_fc6d49795cd5b39213771be4.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.970000;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_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.830000;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_61065157728ddba85bf19e85.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.970000;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_f51f639cafae398b5951b2af.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.764000;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_72693d1b0068a20ed9fbd5bd.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.697754;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_3e34a5882adc0ab13a9ba102.woff')format("woff");}.ff20{font-family:ff20;line-height:0.956000;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_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff21{font-family:ff21;line-height:0.830000;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_f51f639cafae398b5951b2af.woff')format("woff");}.ff22{font-family:ff22;line-height:0.764000;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_3156a5b06be64a3c7cc382c6.woff')format("woff");}.ff23{font-family:ff23;line-height:0.708008;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_3e34a5882adc0ab13a9ba102.woff')format("woff");}.ff24{font-family:ff24;line-height:0.956000;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_f0eeefd4dae8bcf9d78b2e23.woff')format("woff");}.ff25{font-family:ff25;line-height:0.970000;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_8e3c70c95e47b8c40918423c.woff')format("woff");}.ff26{font-family:ff26;line-height:0.718000;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_99a21ce24022a16a11804b71.woff')format("woff");}.ff27{font-family:ff27;line-height:0.970000;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_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff28{font-family:ff28;line-height:0.830000;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_f51f639cafae398b5951b2af.woff')format("woff");}.ff29{font-family:ff29;line-height:0.764000;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_8595e45e8bba853b0a381b4c.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.687988;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_3e34a5882adc0ab13a9ba102.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.956000;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_34776049aeb960b9aa791bdd.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.970000;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_af41f66d7567372efd62799d.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.970000;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_ee42e89bea77b1f051ef2d2f.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.970000;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_e59e0248e2687c924095b469.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.956000;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_b65698bff4947f1fb895ffc8.woff')format("woff");}.ff30{font-family:ff30;line-height:0.708008;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_6a6caba669a420c71b2fde8f.woff')format("woff");}.ff31{font-family:ff31;line-height:0.763000;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_80652fd27bf711c5f793831d.woff')format("woff");}.ff32{font-family:ff32;line-height:0.970000;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_c0e07cad96b9150ba177b3e3.woff')format("woff");}.ff33{font-family:ff33;line-height:0.964000;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_39ab150c26dd9a63abade853.woff')format("woff");}.ff34{font-family:ff34;line-height:0.956000;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_30b76e68fd62165676023770.woff')format("woff");}.ff35{font-family:ff35;line-height:0.708008;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_b256ba25b16420b9257f3e22.woff')format("woff");}.ff36{font-family:ff36;line-height:0.951000;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_5be4d1c9543b53640f991f96.woff')format("woff");}.ff37{font-family:ff37;line-height:0.964000;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_e144345977f81869018ac3dc.woff')format("woff");}.ff38{font-family:ff38;line-height:0.970000;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_74f472a4f484692b93806d60.woff')format("woff");}.ff39{font-family:ff39;line-height:0.708008;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_0926184b72dcea4ecc2c9f72.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.230000;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_386861704c927dc566a20191.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.956000;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_85ce356ac0304e3106e274c8.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.964000;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_9e1e3e64310cc5c6f8e223be.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.768000;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_895a816026907bded8f397b0.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.945000;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_890ec765c74348474f4ff3f2.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.950000;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_6e43970655ac6763f295f699.woff')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_b631fd589dd33b9f3c2f2caa.woff')format("woff");}.ff41{font-family:ff41;line-height:0.927000;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_fb51ba05e30b011b49c077d0.woff')format("woff");}.ff42{font-family:ff42;line-height:0.990000;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_6817049e8f62b5561a279913.woff')format("woff");}.ff43{font-family:ff43;line-height:0.996000;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_041961e1b2d1538efe91a26d.woff')format("woff");}.ff44{font-family:ff44;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.042204px;}
.ls0{letter-spacing:3.865949px;}
.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;}
}
.ws6{word-spacing:-337.069959px;}
.ws0{word-spacing:-123.911149px;}
.ws1{word-spacing:-65.994865px;}
.ws7{word-spacing:-53.997845px;}
.wsd{word-spacing:-53.997245px;}
.ws4{word-spacing:-53.986590px;}
.ws8{word-spacing:-44.994453px;}
.wse{word-spacing:-25.839736px;}
.ws3{word-spacing:-24.435747px;}
.wsb{word-spacing:-23.274219px;}
.wsc{word-spacing:-20.068426px;}
.ws12{word-spacing:-17.999082px;}
.wsf{word-spacing:-16.841385px;}
.ws9{word-spacing:-16.296268px;}
.ws10{word-spacing:-16.287587px;}
.ws2{word-spacing:-15.126059px;}
.wsa{word-spacing:-13.964531px;}
.ws11{word-spacing:-13.191770px;}
.ws13{word-spacing:-12.951920px;}
.ws14{word-spacing:-11.632743px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:25.581294px;}
._3{margin-left:-3.884491px;}
._2{margin-left:-1.199920px;}
._6{width:1.243227px;}
._1{width:2.999694px;}
._0{width:4.199986px;}
._4{width:5.952547px;}
._17{width:6.997311px;}
._5{width:8.152959px;}
._8{width:10.176109px;}
._10{width:11.761486px;}
._7{width:12.961977px;}
._2a{width:13.981117px;}
._d{width:15.041001px;}
._a{width:16.213286px;}
._b{width:17.769403px;}
._9{width:19.187777px;}
._c{width:21.093896px;}
._11{width:23.069438px;}
._13{width:24.920390px;}
._20{width:25.965336px;}
._f{width:27.000311px;}
._18{width:29.096718px;}
._12{width:30.730110px;}
._14{width:32.016755px;}
._24{width:33.653132px;}
._e{width:36.077281px;}
._16{width:38.233569px;}
._1a{width:40.490496px;}
._1d{width:41.782532px;}
._23{width:44.068149px;}
._1b{width:47.863150px;}
._1e{width:49.138832px;}
._26{width:53.088449px;}
._19{width:55.480133px;}
._28{width:56.531377px;}
._1f{width:70.261986px;}
._2b{width:72.042380px;}
._15{width:85.663418px;}
._25{width:89.435001px;}
._1c{width:95.704013px;}
._22{width:96.953913px;}
._27{width:98.184150px;}
._21{width:100.603216px;}
._29{width:108.407215px;}
._2c{width:112.687983px;}
.fca{color:rgb(73,97,63);}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(44,55,32);}
.fc6{color:rgb(43,71,67);}
.fc4{color:transparent;}
.fc3{color:rgb(42,54,32);}
.fc2{color:rgb(253,254,254);}
.fc1{color:rgb(212,186,133);}
.fc9{color:rgb(38,38,38);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1b{font-size:36.013972px;}
.fs1{font-size:44.997704px;}
.fs0{font-size:53.997245px;}
.fs16{font-size:59.962591px;}
.fs7{font-size:59.981939px;}
.fs12{font-size:65.994864px;}
.fs10{font-size:71.981890px;}
.fs6{font-size:71.982120px;}
.fs13{font-size:71.996327px;}
.fs8{font-size:72.027138px;}
.fs4{font-size:77.969377px;}
.fsd{font-size:78.014394px;}
.fs18{font-size:83.956633px;}
.fsf{font-size:84.001381px;}
.fse{font-size:89.988618px;}
.fs9{font-size:89.988906px;}
.fs17{font-size:90.033923px;}
.fs15{font-size:96.021179px;}
.fs1a{font-size:107.994490px;}
.fsc{font-size:107.995690px;}
.fsa{font-size:119.970202px;}
.fs5{font-size:125.957458px;}
.fs11{font-size:126.002475px;}
.fs3{font-size:131.989731px;}
.fs2{font-size:179.977811px;}
.fs19{font-size:179.990817px;}
.fs14{font-size:290.764535px;}
.fsb{font-size:432.140973px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000021px;}
.y24{bottom:0.171031px;}
.y10b{bottom:2.306241px;}
.y4{bottom:3.612902px;}
.y3d{bottom:4.550796px;}
.y17{bottom:4.670677px;}
.y105{bottom:4.684043px;}
.y88{bottom:4.713674px;}
.y107{bottom:5.657768px;}
.ye8{bottom:5.743901px;}
.ye2{bottom:5.768909px;}
.y109{bottom:5.770707px;}
.ye4{bottom:5.771323px;}
.ye6{bottom:5.797163px;}
.yec{bottom:8.187967px;}
.ydf{bottom:13.810748px;}
.y104{bottom:20.433240px;}
.y3{bottom:20.487041px;}
.y3c{bottom:30.435466px;}
.y2{bottom:36.236237px;}
.y87{bottom:36.495019px;}
.ye1{bottom:37.267301px;}
.yeb{bottom:39.686360px;}
.y1{bottom:40.455019px;}
.y25{bottom:41.201929px;}
.yd6{bottom:42.366353px;}
.y10a{bottom:46.575019px;}
.y103{bottom:60.615018px;}
.y23{bottom:61.695018px;}
.y86{bottom:63.741849px;}
.yd5{bottom:70.501954px;}
.yea{bottom:71.184753px;}
.y3b{bottom:82.204805px;}
.y85{bottom:89.626602px;}
.y44{bottom:97.737555px;}
.y9e{bottom:98.085250px;}
.yd4{bottom:98.637554px;}
.y3a{bottom:110.340316px;}
.y84{bottom:115.511355px;}
.y43{bottom:119.120612px;}
.y9d{bottom:119.468307px;}
.yd3{bottom:126.773155px;}
.y31{bottom:135.912285px;}
.y39{bottom:138.475827px;}
.y42{bottom:140.503668px;}
.y9c{bottom:140.851364px;}
.y83{bottom:141.396108px;}
.ye7{bottom:143.415015px;}
.yd2{bottom:154.908756px;}
.y108{bottom:159.255014px;}
.y5e{bottom:160.994567px;}
.y41{bottom:161.886725px;}
.y9b{bottom:162.234420px;}
.y30{bottom:162.922462px;}
.y38{bottom:166.611338px;}
.y82{bottom:167.280860px;}
.y5d{bottom:182.377624px;}
.yd1{bottom:183.044357px;}
.y40{bottom:183.269782px;}
.ye5{bottom:188.775013px;}
.y2f{bottom:189.932639px;}
.y92{bottom:190.920155px;}
.ye0{bottom:192.375013px;}
.y26{bottom:193.033102px;}
.y81{bottom:193.165613px;}
.y37{bottom:194.746849px;}
.y8b{bottom:199.347562px;}
.y5c{bottom:203.760681px;}
.y3f{bottom:204.652838px;}
.yd0{bottom:211.179958px;}
.y106{bottom:215.775012px;}
.y91{bottom:216.804908px;}
.y2e{bottom:216.942816px;}
.y36{bottom:220.631519px;}
.y5b{bottom:225.143737px;}
.ye3{bottom:234.495011px;}
.ycf{bottom:239.315559px;}
.y3e{bottom:239.717905px;}
.ybc{bottom:240.494804px;}
.y90{bottom:242.689661px;}
.y2d{bottom:243.952993px;}
.y80{bottom:244.935119px;}
.y5a{bottom:246.526794px;}
.y35{bottom:248.767030px;}
.ybb{bottom:264.128709px;}
.yce{bottom:267.451159px;}
.y59{bottom:267.909850px;}
.y7f{bottom:270.819871px;}
.y2c{bottom:270.963169px;}
.y9a{bottom:283.327203px;}
.yba{bottom:287.762613px;}
.y58{bottom:289.292907px;}
.ycd{bottom:295.586760px;}
.y7e{bottom:296.704624px;}
.y2b{bottom:297.973346px;}
.y99{bottom:304.710259px;}
.y34{bottom:305.038051px;}
.yb9{bottom:311.396518px;}
.ydd{bottom:316.691376px;}
.y102{bottom:321.190188px;}
.y7d{bottom:322.589377px;}
.ycc{bottom:323.722361px;}
.y2a{bottom:324.983523px;}
.y98{bottom:326.093316px;}
.y1f{bottom:329.756023px;}
.y32{bottom:332.055007px;}
.ydc{bottom:333.572736px;}
.yb8{bottom:335.030423px;}
.y57{bottom:337.686140px;}
.y101{bottom:342.573245px;}
.y33{bottom:345.553187px;}
.y97{bottom:347.476372px;}
.y7c{bottom:348.474130px;}
.ydb{bottom:350.454097px;}
.ycb{bottom:351.857962px;}
.y29{bottom:351.993700px;}
.y1e{bottom:356.766200px;}
.yb7{bottom:358.664327px;}
.y7b{bottom:374.358882px;}
.y100{bottom:377.425760px;}
.y8f{bottom:379.758867px;}
.yca{bottom:379.993563px;}
.yb6{bottom:382.298232px;}
.y1d{bottom:383.776377px;}
.y8a{bottom:388.186383px;}
.yda{bottom:389.843943px;}
.yff{bottom:394.307120px;}
.y7a{bottom:400.243635px;}
.y13{bottom:404.205815px;}
.y8e{bottom:405.643620px;}
.yb5{bottom:405.932137px;}
.yd9{bottom:406.725303px;}
.yc9{bottom:408.129163px;}
.y1c{bottom:410.786554px;}
.yfe{bottom:411.188481px;}
.yd8{bottom:423.606664px;}
.y79{bottom:426.128388px;}
.yfd{bottom:428.069841px;}
.yb4{bottom:429.566042px;}
.y8d{bottom:431.528373px;}
.y12{bottom:433.466840px;}
.yc8{bottom:436.264764px;}
.y1b{bottom:437.796731px;}
.yd7{bottom:441.613448px;}
.y78{bottom:452.013141px;}
.y4b{bottom:452.611759px;}
.yb3{bottom:453.199946px;}
.y11{bottom:462.727865px;}
.yc7{bottom:464.400365px;}
.y1a{bottom:464.806907px;}
.yfc{bottom:468.408948px;}
.y96{bottom:471.269479px;}
.y6b{bottom:472.113960px;}
.y4a{bottom:473.994815px;}
.y28{bottom:476.302134px;}
.yb2{bottom:476.833851px;}
.yfb{bottom:487.541157px;}
.y19{bottom:491.817084px;}
.y10{bottom:491.988890px;}
.yc6{bottom:492.535966px;}
.y95{bottom:492.652535px;}
.y6a{bottom:493.497016px;}
.y49{bottom:495.377872px;}
.y77{bottom:503.782646px;}
.yfa{bottom:508.924214px;}
.y94{bottom:514.035592px;}
.y69{bottom:514.880073px;}
.y48{bottom:516.760929px;}
.y18{bottom:518.827261px;}
.yc5{bottom:520.671567px;}
.yf{bottom:521.249915px;}
.y56{bottom:529.198005px;}
.y76{bottom:529.667399px;}
.yb1{bottom:534.306511px;}
.y93{bottom:535.418649px;}
.y68{bottom:536.263129px;}
.y47{bottom:538.143985px;}
.yf9{bottom:547.188631px;}
.yc4{bottom:548.807168px;}
.ye{bottom:550.510940px;}
.y55{bottom:550.581062px;}
.y75{bottom:555.552152px;}
.y20{bottom:555.630275px;}
.y89{bottom:557.105432px;}
.y67{bottom:557.646186px;}
.yb0{bottom:557.940416px;}
.y46{bottom:559.527042px;}
.yf8{bottom:568.571687px;}
.y54{bottom:571.964118px;}
.y8c{bottom:574.553883px;}
.yc3{bottom:576.942768px;}
.y66{bottom:579.029243px;}
.y45{bottom:580.910099px;}
.y74{bottom:581.436905px;}
.yaf{bottom:581.574321px;}
.yf7{bottom:589.954744px;}
.y53{bottom:593.347175px;}
.yc2{bottom:605.078369px;}
.yae{bottom:605.208226px;}
.y73{bottom:607.321657px;}
.yf6{bottom:611.337801px;}
.y52{bottom:614.730232px;}
.y14{bottom:620.127540px;}
.y65{bottom:628.858499px;}
.y51{bottom:636.113288px;}
.yf5{bottom:649.602218px;}
.y64{bottom:650.241556px;}
.yad{bottom:655.153346px;}
.yf4{bottom:670.985274px;}
.y63{bottom:671.624613px;}
.y72{bottom:673.977639px;}
.yac{bottom:678.787250px;}
.yf3{bottom:692.368331px;}
.y62{bottom:693.007669px;}
.y71{bottom:697.611544px;}
.yab{bottom:702.421155px;}
.y61{bottom:714.390726px;}
.y70{bottom:721.245448px;}
.yaa{bottom:726.055060px;}
.yf2{bottom:730.632748px;}
.y60{bottom:735.773783px;}
.y6f{bottom:744.879353px;}
.ya9{bottom:749.688964px;}
.yf1{bottom:752.015805px;}
.y5f{bottom:757.156839px;}
.y6e{bottom:768.513258px;}
.ya8{bottom:773.322869px;}
.yf0{bottom:773.398861px;}
.y9{bottom:776.454129px;}
.y6d{bottom:792.147162px;}
.yef{bottom:794.781918px;}
.y8{bottom:804.589730px;}
.y4f{bottom:808.849091px;}
.y15{bottom:814.718547px;}
.yee{bottom:816.164975px;}
.ya7{bottom:827.087915px;}
.y4e{bottom:830.232148px;}
.y27{bottom:835.312400px;}
.yed{bottom:837.548031px;}
.y6c{bottom:850.669212px;}
.ya6{bottom:850.721820px;}
.y4d{bottom:851.615204px;}
.y4c{bottom:872.998261px;}
.ya5{bottom:874.355724px;}
.y7{bottom:889.483353px;}
.ya4{bottom:897.989629px;}
.yc1{bottom:930.799177px;}
.y6{bottom:935.625738px;}
.y16{bottom:940.814981px;}
.yc0{bottom:958.934777px;}
.ya3{bottom:961.533992px;}
.ya2{bottom:985.167897px;}
.ybf{bottom:987.070378px;}
.yde{bottom:999.134979px;}
.ya1{bottom:1008.801802px;}
.ybe{bottom:1015.205979px;}
.y50{bottom:1031.173158px;}
.ya0{bottom:1032.435707px;}
.ybd{bottom:1043.341580px;}
.y9f{bottom:1056.069611px;}
.yd{bottom:1058.371512px;}
.yc{bottom:1095.510505px;}
.ye9{bottom:1125.854974px;}
.yb{bottom:1132.649498px;}
.y22{bottom:1164.477253px;}
.ya{bottom:1169.788492px;}
.y21{bottom:1199.365398px;}
.h35{height:10.800000px;}
.he{height:18.359999px;}
.h22{height:19.439999px;}
.h36{height:25.146475px;}
.h34{height:30.599999px;}
.h4{height:32.627730px;}
.h3{height:37.906066px;}
.h2c{height:44.072504px;}
.h2d{height:44.372317px;}
.h26{height:45.211794px;}
.h2{height:46.439998px;}
.h33{height:46.770821px;}
.h27{height:48.506225px;}
.h1d{height:49.522855px;}
.h21{height:49.760128px;}
.hf{height:49.785010px;}
.h15{height:50.260953px;}
.h23{height:50.270873px;}
.h30{height:50.541421px;}
.h2f{height:51.119998px;}
.hd{height:52.158919px;}
.h1c{height:54.274345px;}
.h1f{height:54.274519px;}
.h10{height:54.308462px;}
.h9{height:54.734503px;}
.h2a{height:57.697339px;}
.hb{height:58.788910px;}
.h18{height:58.822853px;}
.h2b{height:63.303301px;}
.h1b{height:63.337041px;}
.h11{height:63.352190px;}
.h17{height:66.591790px;}
.h1a{height:67.851418px;}
.h1e{height:67.851635px;}
.h25{height:69.327291px;}
.h32{height:75.812132px;}
.h16{height:76.028966px;}
.h29{height:87.332905px;}
.ha{height:88.674050px;}
.h20{height:88.705742px;}
.h12{height:88.777949px;}
.h31{height:90.359996px;}
.h28{height:90.457532px;}
.h8{height:92.656791px;}
.hc{height:94.971923px;}
.h7{height:95.640996px;}
.h6{height:126.344424px;}
.h2e{height:126.353553px;}
.h24{height:209.931994px;}
.h14{height:321.945025px;}
.h19{height:367.199985px;}
.h13{height:922.319962px;}
.h1{height:1263.000000px;}
.h5{height:1263.374947px;}
.h0{height:1263.374968px;}
.w3{width:3.600000px;}
.w6{width:10.440000px;}
.w7{width:20.879999px;}
.w10{width:61.559997px;}
.w4{width:102.599996px;}
.wc{width:151.919994px;}
.wb{width:153.359994px;}
.wa{width:158.759993px;}
.wf{width:163.439993px;}
.w9{width:183.959992px;}
.w8{width:348.839985px;}
.we{width:573.839976px;}
.wd{width:620.999974px;}
.w5{width:651.959973px;}
.w1{width:675.359972px;}
.w2{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:21.599999px;}
.x3e{left:23.067652px;}
.xd{left:52.919998px;}
.x18{left:62.432360px;}
.x24{left:78.699045px;}
.xe{left:81.187144px;}
.x6{left:83.469211px;}
.x7{left:88.439157px;}
.x22{left:92.858684px;}
.x1f{left:95.047984px;}
.x25{left:101.910916px;}
.x20{left:105.782273px;}
.x29{left:112.077614px;}
.x2f{left:116.315539px;}
.x2a{left:124.510032px;}
.x32{left:126.092660px;}
.x2b{left:127.253254px;}
.x8{left:134.334236px;}
.x2d{left:140.195630px;}
.x35{left:142.165122px;}
.x36{left:143.659826px;}
.x2e{left:146.561310px;}
.x1{left:155.879994px;}
.x1c{left:156.963972px;}
.x26{left:164.301611px;}
.x39{left:169.801521px;}
.x1b{left:172.948510px;}
.x42{left:174.959993px;}
.x3a{left:178.485935px;}
.x17{left:182.480410px;}
.x21{left:185.683287px;}
.x16{left:187.980350px;}
.x11{left:190.555106px;}
.xb{left:204.905360px;}
.x38{left:206.747082px;}
.x12{left:209.519991px;}
.x1d{left:212.847529px;}
.x1e{left:223.397919px;}
.x13{left:233.836032px;}
.x15{left:244.697771px;}
.x10{left:250.179117px;}
.x1a{left:255.337351px;}
.x3f{left:257.389687px;}
.x3b{left:259.199989px;}
.xc{left:260.452937px;}
.x43{left:325.079986px;}
.x34{left:326.242296px;}
.x28{left:339.167082px;}
.x37{left:368.041242px;}
.x31{left:370.643785px;}
.x30{left:382.566246px;}
.x33{left:387.894431px;}
.x27{left:389.140236px;}
.x2c{left:413.585746px;}
.x19{left:447.037408px;}
.x3c{left:520.919978px;}
.x3{left:530.932777px;}
.x14{left:544.890959px;}
.x40{left:551.770379px;}
.x41{left:567.508730px;}
.xa{left:596.519975px;}
.x2{left:601.282883px;}
.x4{left:700.748713px;}
.x5{left:730.912686px;}
.x9{left:749.767919px;}
.x44{left:771.839968px;}
.x23{left:855.719964px;}
.xf{left:864.517716px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.037515pt;}
.ls0{letter-spacing:3.436399pt;}
.ws6{word-spacing:-299.617741pt;}
.ws0{word-spacing:-110.143243pt;}
.ws1{word-spacing:-58.662102pt;}
.ws7{word-spacing:-47.998085pt;}
.wsd{word-spacing:-47.997551pt;}
.ws4{word-spacing:-47.988080pt;}
.ws8{word-spacing:-39.995069pt;}
.wse{word-spacing:-22.968654pt;}
.ws3{word-spacing:-21.720664pt;}
.wsb{word-spacing:-20.688195pt;}
.wsc{word-spacing:-17.838601pt;}
.ws12{word-spacing:-15.999184pt;}
.wsf{word-spacing:-14.970120pt;}
.ws9{word-spacing:-14.485572pt;}
.ws10{word-spacing:-14.477855pt;}
.ws2{word-spacing:-13.445386pt;}
.wsa{word-spacing:-12.412917pt;}
.ws11{word-spacing:-11.726018pt;}
.ws13{word-spacing:-11.512817pt;}
.ws14{word-spacing:-10.340216pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:22.738928pt;}
._3{margin-left:-3.452881pt;}
._2{margin-left:-1.066596pt;}
._6{width:1.105091pt;}
._1{width:2.666394pt;}
._0{width:3.733321pt;}
._4{width:5.291153pt;}
._17{width:6.219832pt;}
._5{width:7.247075pt;}
._8{width:9.045431pt;}
._10{width:10.454654pt;}
._7{width:11.521757pt;}
._2a{width:12.427660pt;}
._d{width:13.369779pt;}
._a{width:14.411810pt;}
._b{width:15.795025pt;}
._9{width:17.055801pt;}
._c{width:18.750130pt;}
._11{width:20.506167pt;}
._13{width:22.151458pt;}
._20{width:23.080298pt;}
._f{width:24.000277pt;}
._18{width:25.863750pt;}
._12{width:27.315654pt;}
._14{width:28.459337pt;}
._24{width:29.913895pt;}
._e{width:32.068694pt;}
._16{width:33.985395pt;}
._1a{width:35.991552pt;}
._1d{width:37.140029pt;}
._23{width:39.171688pt;}
._1b{width:42.545022pt;}
._1e{width:43.678961pt;}
._26{width:47.189733pt;}
._19{width:49.315674pt;}
._28{width:50.250113pt;}
._1f{width:62.455099pt;}
._2b{width:64.037671pt;}
._15{width:76.145260pt;}
._25{width:79.497778pt;}
._1c{width:85.070234pt;}
._22{width:86.181256pt;}
._27{width:87.274800pt;}
._21{width:89.425080pt;}
._29{width:96.361969pt;}
._2c{width:100.167096pt;}
.fs1b{font-size:32.012420pt;}
.fs1{font-size:39.997959pt;}
.fs0{font-size:47.997551pt;}
.fs16{font-size:53.300081pt;}
.fs7{font-size:53.317279pt;}
.fs12{font-size:58.662102pt;}
.fs10{font-size:63.983902pt;}
.fs6{font-size:63.984107pt;}
.fs13{font-size:63.996735pt;}
.fs8{font-size:64.024123pt;}
.fs4{font-size:69.306113pt;}
.fsd{font-size:69.346128pt;}
.fs18{font-size:74.628118pt;}
.fsf{font-size:74.667894pt;}
.fse{font-size:79.989883pt;}
.fs9{font-size:79.990138pt;}
.fs17{font-size:80.030153pt;}
.fs15{font-size:85.352159pt;}
.fs1a{font-size:95.995102pt;}
.fsc{font-size:95.996169pt;}
.fsa{font-size:106.640179pt;}
.fs5{font-size:111.962185pt;}
.fs11{font-size:112.002200pt;}
.fs3{font-size:117.324205pt;}
.fs2{font-size:159.980277pt;}
.fs19{font-size:159.991837pt;}
.fs14{font-size:258.457365pt;}
.fsb{font-size:384.125309pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000018pt;}
.y24{bottom:0.152028pt;}
.y10b{bottom:2.049992pt;}
.y4{bottom:3.211468pt;}
.y3d{bottom:4.045152pt;}
.y17{bottom:4.151713pt;}
.y105{bottom:4.163594pt;}
.y88{bottom:4.189932pt;}
.y107{bottom:5.029127pt;}
.ye8{bottom:5.105690pt;}
.ye2{bottom:5.127919pt;}
.y109{bottom:5.129518pt;}
.ye4{bottom:5.130065pt;}
.ye6{bottom:5.153033pt;}
.yec{bottom:7.278193pt;}
.ydf{bottom:12.276221pt;}
.y104{bottom:18.162880pt;}
.y3{bottom:18.210703pt;}
.y3c{bottom:27.053747pt;}
.y2{bottom:32.209989pt;}
.y87{bottom:32.440017pt;}
.ye1{bottom:33.126490pt;}
.yeb{bottom:35.276765pt;}
.y1{bottom:35.960017pt;}
.y25{bottom:36.623937pt;}
.yd6{bottom:37.658980pt;}
.y10a{bottom:41.400017pt;}
.y103{bottom:53.880016pt;}
.y23{bottom:54.840016pt;}
.y86{bottom:56.659422pt;}
.yd5{bottom:62.668403pt;}
.yea{bottom:63.275336pt;}
.y3b{bottom:73.070938pt;}
.y85{bottom:79.668091pt;}
.y44{bottom:86.877827pt;}
.y9e{bottom:87.186889pt;}
.yd4{bottom:87.677826pt;}
.y3a{bottom:98.080281pt;}
.y84{bottom:102.676760pt;}
.y43{bottom:105.884988pt;}
.y9d{bottom:106.194051pt;}
.yd3{bottom:112.687249pt;}
.y31{bottom:120.810920pt;}
.y39{bottom:123.089624pt;}
.y42{bottom:124.892150pt;}
.y9c{bottom:125.201212pt;}
.y83{bottom:125.685429pt;}
.ye7{bottom:127.480013pt;}
.yd2{bottom:137.696672pt;}
.y108{bottom:141.560012pt;}
.y5e{bottom:143.106282pt;}
.y41{bottom:143.899311pt;}
.y9b{bottom:144.208374pt;}
.y30{bottom:144.819966pt;}
.y38{bottom:148.098967pt;}
.y82{bottom:148.694098pt;}
.y5d{bottom:162.113443pt;}
.yd1{bottom:162.706095pt;}
.y40{bottom:162.906473pt;}
.ye5{bottom:167.800011pt;}
.y2f{bottom:168.829012pt;}
.y92{bottom:169.706804pt;}
.ye0{bottom:171.000011pt;}
.y26{bottom:171.584980pt;}
.y81{bottom:171.702767pt;}
.y37{bottom:173.108310pt;}
.y8b{bottom:177.197833pt;}
.y5c{bottom:181.120605pt;}
.y3f{bottom:181.913634pt;}
.yd0{bottom:187.715518pt;}
.y106{bottom:191.800010pt;}
.y91{bottom:192.715474pt;}
.y2e{bottom:192.838059pt;}
.y36{bottom:196.116906pt;}
.y5b{bottom:200.127766pt;}
.ye3{bottom:208.440010pt;}
.ycf{bottom:212.724941pt;}
.y3e{bottom:213.082582pt;}
.ybc{bottom:213.773159pt;}
.y90{bottom:215.724143pt;}
.y2d{bottom:216.847105pt;}
.y80{bottom:217.720105pt;}
.y5a{bottom:219.134928pt;}
.y35{bottom:221.126248pt;}
.ybb{bottom:234.781074pt;}
.yce{bottom:237.734364pt;}
.y59{bottom:238.142089pt;}
.y7f{bottom:240.728775pt;}
.y2c{bottom:240.856151pt;}
.y9a{bottom:251.846402pt;}
.yba{bottom:255.788990pt;}
.y58{bottom:257.149251pt;}
.ycd{bottom:262.743787pt;}
.y7e{bottom:263.737444pt;}
.y2b{bottom:264.865197pt;}
.y99{bottom:270.853564pt;}
.y34{bottom:271.144934pt;}
.yb9{bottom:276.796905pt;}
.ydd{bottom:281.503445pt;}
.y102{bottom:285.502389pt;}
.y7d{bottom:286.746113pt;}
.ycc{bottom:287.753210pt;}
.y2a{bottom:288.874243pt;}
.y98{bottom:289.860725pt;}
.y1f{bottom:293.116465pt;}
.y32{bottom:295.160006pt;}
.ydc{bottom:296.509099pt;}
.yb8{bottom:297.804820pt;}
.y57{bottom:300.165458pt;}
.y101{bottom:304.509551pt;}
.y33{bottom:307.158388pt;}
.y97{bottom:308.867887pt;}
.y7c{bottom:309.754782pt;}
.ydb{bottom:311.514752pt;}
.ycb{bottom:312.762633pt;}
.y29{bottom:312.883289pt;}
.y1e{bottom:317.125511pt;}
.yb7{bottom:318.812736pt;}
.y7b{bottom:332.763451pt;}
.y100{bottom:335.489564pt;}
.y8f{bottom:337.563437pt;}
.yca{bottom:337.772056pt;}
.yb6{bottom:339.820651pt;}
.y1d{bottom:341.134557pt;}
.y8a{bottom:345.054562pt;}
.yda{bottom:346.527949pt;}
.yff{bottom:350.495218pt;}
.y7a{bottom:355.772120pt;}
.y13{bottom:359.294058pt;}
.y8e{bottom:360.572107pt;}
.yb5{bottom:360.828566pt;}
.yd9{bottom:361.533603pt;}
.yc9{bottom:362.781479pt;}
.y1c{bottom:365.143603pt;}
.yfe{bottom:365.500872pt;}
.yd8{bottom:376.539257pt;}
.y79{bottom:378.780789pt;}
.yfd{bottom:380.506526pt;}
.yb4{bottom:381.836481pt;}
.y8d{bottom:383.580776pt;}
.y12{bottom:385.303858pt;}
.yc8{bottom:387.790902pt;}
.y1b{bottom:389.152649pt;}
.yd7{bottom:392.545287pt;}
.y78{bottom:401.789458pt;}
.y4b{bottom:402.321563pt;}
.yb3{bottom:402.844397pt;}
.y11{bottom:411.313658pt;}
.yc7{bottom:412.800325pt;}
.y1a{bottom:413.161695pt;}
.yfc{bottom:416.363510pt;}
.y96{bottom:418.906203pt;}
.y6b{bottom:419.656853pt;}
.y4a{bottom:421.328725pt;}
.y28{bottom:423.379675pt;}
.yb2{bottom:423.852312pt;}
.yfb{bottom:433.369917pt;}
.y19{bottom:437.170741pt;}
.y10{bottom:437.323458pt;}
.yc6{bottom:437.809748pt;}
.y95{bottom:437.913365pt;}
.y6a{bottom:438.664014pt;}
.y49{bottom:440.335886pt;}
.y77{bottom:447.806797pt;}
.yfa{bottom:452.377079pt;}
.y94{bottom:456.920526pt;}
.y69{bottom:457.671176pt;}
.y48{bottom:459.343048pt;}
.y18{bottom:461.179788pt;}
.yc5{bottom:462.819170pt;}
.yf{bottom:463.333257pt;}
.y56{bottom:470.398227pt;}
.y76{bottom:470.815466pt;}
.yb1{bottom:474.939121pt;}
.y93{bottom:475.927688pt;}
.y68{bottom:476.678337pt;}
.y47{bottom:478.350209pt;}
.yf9{bottom:486.389894pt;}
.yc4{bottom:487.828593pt;}
.ye{bottom:489.343057pt;}
.y55{bottom:489.405388pt;}
.y75{bottom:493.824135pt;}
.y20{bottom:493.893578pt;}
.y89{bottom:495.204828pt;}
.y67{bottom:495.685499pt;}
.yb0{bottom:495.947037pt;}
.y46{bottom:497.357371pt;}
.yf8{bottom:505.397055pt;}
.y54{bottom:508.412550pt;}
.y8c{bottom:510.714562pt;}
.yc3{bottom:512.838016pt;}
.y66{bottom:514.692660pt;}
.y45{bottom:516.364532pt;}
.y74{bottom:516.832804pt;}
.yaf{bottom:516.954952pt;}
.yf7{bottom:524.404217pt;}
.y53{bottom:527.419711pt;}
.yc2{bottom:537.847439pt;}
.yae{bottom:537.962867pt;}
.y73{bottom:539.841473pt;}
.yf6{bottom:543.411378pt;}
.y52{bottom:546.426873pt;}
.y14{bottom:551.224480pt;}
.y65{bottom:558.985333pt;}
.y51{bottom:565.434034pt;}
.yf5{bottom:577.424194pt;}
.y64{bottom:577.992494pt;}
.yad{bottom:582.358529pt;}
.yf4{bottom:596.431355pt;}
.y63{bottom:596.999656pt;}
.y72{bottom:599.091235pt;}
.yac{bottom:603.366445pt;}
.yf3{bottom:615.438516pt;}
.y62{bottom:616.006817pt;}
.y71{bottom:620.099150pt;}
.yab{bottom:624.374360pt;}
.y61{bottom:635.013979pt;}
.y70{bottom:641.107065pt;}
.yaa{bottom:645.382275pt;}
.yf2{bottom:649.451332pt;}
.y60{bottom:654.021140pt;}
.y6f{bottom:662.114980pt;}
.ya9{bottom:666.390190pt;}
.yf1{bottom:668.458493pt;}
.y5f{bottom:673.028302pt;}
.y6e{bottom:683.122896pt;}
.ya8{bottom:687.398106pt;}
.yf0{bottom:687.465655pt;}
.y9{bottom:690.181448pt;}
.y6d{bottom:704.130811pt;}
.yef{bottom:706.472816pt;}
.y8{bottom:715.190871pt;}
.y4f{bottom:718.976970pt;}
.y15{bottom:724.194264pt;}
.yee{bottom:725.479977pt;}
.ya7{bottom:735.189258pt;}
.y4e{bottom:737.984131pt;}
.y27{bottom:742.499911pt;}
.yed{bottom:744.487139pt;}
.y6c{bottom:756.150411pt;}
.ya6{bottom:756.197173pt;}
.y4d{bottom:756.991293pt;}
.y4c{bottom:775.998454pt;}
.ya5{bottom:777.205088pt;}
.y7{bottom:790.651869pt;}
.ya4{bottom:798.213004pt;}
.yc1{bottom:827.377046pt;}
.y6{bottom:831.667323pt;}
.y16{bottom:836.279984pt;}
.yc0{bottom:852.386469pt;}
.ya3{bottom:854.696882pt;}
.ya2{bottom:875.704797pt;}
.ybf{bottom:877.395892pt;}
.yde{bottom:888.119981pt;}
.ya1{bottom:896.712713pt;}
.ybe{bottom:902.405315pt;}
.y50{bottom:916.598362pt;}
.ya0{bottom:917.720628pt;}
.ybd{bottom:927.414738pt;}
.y9f{bottom:938.728543pt;}
.yd{bottom:940.774678pt;}
.yc{bottom:973.787116pt;}
.ye9{bottom:1000.759977pt;}
.yb{bottom:1006.799554pt;}
.y22{bottom:1035.090892pt;}
.ya{bottom:1039.811993pt;}
.y21{bottom:1066.102576pt;}
.h35{height:9.600000pt;}
.he{height:16.319999pt;}
.h22{height:17.279999pt;}
.h36{height:22.352422pt;}
.h34{height:27.199999pt;}
.h4{height:29.002427pt;}
.h3{height:33.694281pt;}
.h2c{height:39.175560pt;}
.h2d{height:39.442060pt;}
.h26{height:40.188261pt;}
.h2{height:41.279998pt;}
.h33{height:41.574063pt;}
.h27{height:43.116645pt;}
.h1d{height:44.020316pt;}
.h21{height:44.231225pt;}
.hf{height:44.253342pt;}
.h15{height:44.676403pt;}
.h23{height:44.685220pt;}
.h30{height:44.925708pt;}
.h2f{height:45.439998pt;}
.hd{height:46.363484pt;}
.h1c{height:48.243862pt;}
.h1f{height:48.244017pt;}
.h10{height:48.274189pt;}
.h9{height:48.652891pt;}
.h2a{height:51.286524pt;}
.hb{height:52.256809pt;}
.h18{height:52.286980pt;}
.h2b{height:56.269601pt;}
.h1b{height:56.299592pt;}
.h11{height:56.313057pt;}
.h17{height:59.192702pt;}
.h1a{height:60.312371pt;}
.h1e{height:60.312564pt;}
.h25{height:61.624259pt;}
.h32{height:67.388562pt;}
.h16{height:67.581303pt;}
.h29{height:77.629249pt;}
.ha{height:78.821378pt;}
.h20{height:78.849549pt;}
.h12{height:78.913733pt;}
.h31{height:80.319997pt;}
.h28{height:80.406695pt;}
.h8{height:82.361592pt;}
.hc{height:84.419487pt;}
.h7{height:85.014219pt;}
.h6{height:112.306154pt;}
.h2e{height:112.314270pt;}
.h24{height:186.606217pt;}
.h14{height:286.173355pt;}
.h19{height:326.399986pt;}
.h13{height:819.839966pt;}
.h1{height:1122.666667pt;}
.h5{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w3{width:3.200000pt;}
.w6{width:9.280000pt;}
.w7{width:18.559999pt;}
.w10{width:54.719998pt;}
.w4{width:91.199996pt;}
.wc{width:135.039994pt;}
.wb{width:136.319994pt;}
.wa{width:141.119994pt;}
.wf{width:145.279994pt;}
.w9{width:163.519993pt;}
.w8{width:310.079987pt;}
.we{width:510.079979pt;}
.wd{width:551.999977pt;}
.w5{width:579.519976pt;}
.w1{width:600.319975pt;}
.w2{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:19.199999pt;}
.x3e{left:20.504580pt;}
.xd{left:47.039998pt;}
.x18{left:55.495431pt;}
.x24{left:69.954707pt;}
.xe{left:72.166350pt;}
.x6{left:74.194855pt;}
.x7{left:78.612584pt;}
.x22{left:82.541053pt;}
.x1f{left:84.487097pt;}
.x25{left:90.587481pt;}
.x20{left:94.028687pt;}
.x29{left:99.624546pt;}
.x2f{left:103.391590pt;}
.x2a{left:110.675584pt;}
.x32{left:112.082364pt;}
.x2b{left:113.114003pt;}
.x8{left:119.408209pt;}
.x2d{left:124.618338pt;}
.x35{left:126.368997pt;}
.x36{left:127.697623pt;}
.x2e{left:130.276720pt;}
.x1{left:138.559994pt;}
.x1c{left:139.523531pt;}
.x26{left:146.045876pt;}
.x39{left:150.934685pt;}
.x1b{left:153.732009pt;}
.x42{left:155.519994pt;}
.x3a{left:158.654165pt;}
.x17{left:162.204809pt;}
.x21{left:165.051811pt;}
.x16{left:167.093644pt;}
.x11{left:169.382316pt;}
.xb{left:182.138098pt;}
.x38{left:183.775184pt;}
.x12{left:186.239992pt;}
.x1d{left:189.197803pt;}
.x1e{left:198.575928pt;}
.x13{left:207.854251pt;}
.x15{left:217.509130pt;}
.x10{left:222.381437pt;}
.x1a{left:226.966535pt;}
.x3f{left:228.790833pt;}
.x3b{left:230.399990pt;}
.xc{left:231.513722pt;}
.x43{left:288.959988pt;}
.x34{left:289.993152pt;}
.x28{left:301.481851pt;}
.x37{left:327.147771pt;}
.x31{left:329.461143pt;}
.x30{left:340.058886pt;}
.x33{left:344.795050pt;}
.x27{left:345.902432pt;}
.x2c{left:367.631774pt;}
.x19{left:397.366585pt;}
.x3c{left:463.039981pt;}
.x3{left:471.940246pt;}
.x14{left:484.347519pt;}
.x40{left:490.462559pt;}
.x41{left:504.452205pt;}
.xa{left:530.239978pt;}
.x2{left:534.473674pt;}
.x4{left:622.887745pt;}
.x5{left:649.700165pt;}
.x9{left:666.460372pt;}
.x44{left:686.079971pt;}
.x23{left:760.639968pt;}
.xf{left:768.460192pt;}
}




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