
    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_e208aaa428170dd88a2aa165.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b0727e226d4c995439b610f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_70c47dce92ec4e00a9e08ee4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_df55ef06213df96ea8a7f7a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_32fc5590bf73e8e60a4100a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb13c445772c9f2d5e8664a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.313477;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_89a13b687540e444f106971d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_429615d87de31b8199715ce5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_948ca410153e48a5a03f4da2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_598a8673071537d8ebcb91e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.113281;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_8f44c33c8ee7aa4938e4df8b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_8ac397d9779ae38475d19f1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_8405c9dd0b28bf234af6f228.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.073242;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_932efa4fa43fb36e596e01cc.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;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_3e6cea3d51e1d98c76da162e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.313477;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_89a13b687540e444f106971d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bde2c80ce2285bd8afed886f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.095703;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_7cd3b9ddf8cd0cf488ae93e4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;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_89a13b687540e444f106971d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_89a13b687540e444f106971d.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.762207;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.284180;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_c4c07d131e6671df6198f667.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.249680,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249680,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249680,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);}
.m1{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v4{vertical-align:-82.800000px;}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls18{letter-spacing:-3.110039px;}
.ls45{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.106456px;}
.ls11{letter-spacing:-1.008000px;}
.ls58{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls59{letter-spacing:-0.220800px;}
.ls16{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls4f{letter-spacing:-0.072000px;}
.ls50{letter-spacing:-0.027600px;}
.lse{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.053400px;}
.ls2c{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls54{letter-spacing:0.576000px;}
.ls2d{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.744000px;}
.ls52{letter-spacing:0.756000px;}
.ls51{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.900000px;}
.ls5{letter-spacing:1.440000px;}
.ls15{letter-spacing:2.160000px;}
.ls2{letter-spacing:2.340000px;}
.ls1c{letter-spacing:2.880000px;}
.ls49{letter-spacing:2.892000px;}
.ls3e{letter-spacing:3.060000px;}
.ls1e{letter-spacing:3.600000px;}
.ls4d{letter-spacing:4.296000px;}
.ls2a{letter-spacing:4.320000px;}
.ls3a{letter-spacing:5.040000px;}
.ls22{letter-spacing:5.772000px;}
.ls25{letter-spacing:6.456000px;}
.ls47{letter-spacing:6.480000px;}
.ls1a{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.920000px;}
.ls57{letter-spacing:8.622720px;}
.ls6{letter-spacing:8.640000px;}
.ls39{letter-spacing:9.360000px;}
.ls28{letter-spacing:9.480000px;}
.ls26{letter-spacing:10.800000px;}
.ls37{letter-spacing:12.216000px;}
.ls8{letter-spacing:12.240000px;}
.ls0{letter-spacing:12.960000px;}
.ls41{letter-spacing:13.680000px;}
.ls1d{letter-spacing:14.400000px;}
.ls3{letter-spacing:15.120000px;}
.ls42{letter-spacing:15.840000px;}
.ls1f{letter-spacing:15.960000px;}
.ls44{letter-spacing:16.560000px;}
.ls3c{letter-spacing:16.740000px;}
.ls34{letter-spacing:18.000000px;}
.ls55{letter-spacing:18.156720px;}
.ls56{letter-spacing:18.180000px;}
.ls27{letter-spacing:18.720000px;}
.ls4a{letter-spacing:19.440000px;}
.ls30{letter-spacing:20.160000px;}
.lsb{letter-spacing:20.880000px;}
.ls53{letter-spacing:21.060000px;}
.ls33{letter-spacing:21.600000px;}
.lsc{letter-spacing:22.320000px;}
.ls19{letter-spacing:23.040000px;}
.ls38{letter-spacing:23.760000px;}
.ls46{letter-spacing:24.660000px;}
.ls3b{letter-spacing:26.100000px;}
.lsa{letter-spacing:26.640000px;}
.ls35{letter-spacing:28.080000px;}
.ls2e{letter-spacing:30.240000px;}
.ls29{letter-spacing:30.960000px;}
.ls2f{letter-spacing:32.400000px;}
.ls21{letter-spacing:33.960000px;}
.ls23{letter-spacing:36.720000px;}
.ls32{letter-spacing:41.040000px;}
.ls14{letter-spacing:41.760000px;}
.ls4{letter-spacing:45.360000px;}
.ls31{letter-spacing:47.664000px;}
.ls4c{letter-spacing:50.520000px;}
.ls20{letter-spacing:54.840000px;}
.ls4b{letter-spacing:68.400000px;}
.ls48{letter-spacing:74.880000px;}
.ls12{letter-spacing:194.376000px;}
.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;}
}
.ws1{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.648000px;}
.ws10{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.wse{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.064000px;}
.wsc{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.252647px;}
.wsb{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.220000px;}
.ws13{word-spacing:-14.192400px;}
.ws14{word-spacing:-13.999200px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:29.987060px;}
._31{margin-left:-5.616000px;}
._b{margin-left:-2.633280px;}
._0{margin-left:-1.095120px;}
._1{width:1.605360px;}
._8{width:2.849280px;}
._24{width:4.091760px;}
._1c{width:6.014160px;}
._14{width:7.095120px;}
._13{width:8.544000px;}
._c{width:9.894240px;}
._7{width:11.304000px;}
._2{width:12.312000px;}
._4{width:13.370640px;}
._3{width:14.471520px;}
._a{width:15.528000px;}
._9{width:16.752000px;}
._3d{width:17.763840px;}
._27{width:19.023120px;}
._11{width:20.160000px;}
._12{width:21.672000px;}
._19{width:22.728000px;}
._21{width:23.976000px;}
._20{width:25.143120px;}
._5{width:26.712000px;}
._6{width:27.912000px;}
._15{width:29.304000px;}
._1e{width:30.384000px;}
._1f{width:31.536000px;}
._16{width:32.616000px;}
._2a{width:33.635520px;}
._f{width:34.659120px;}
._10{width:36.283920px;}
._2c{width:37.291440px;}
._1d{width:39.000000px;}
._17{width:40.335120px;}
._25{width:41.725680px;}
._2e{width:43.647120px;}
._d{width:44.784000px;}
._e{width:46.120320px;}
._2b{width:47.195280px;}
._34{width:49.516560px;}
._3a{width:50.559120px;}
._33{width:52.272000px;}
._32{width:53.943120px;}
._3b{width:55.043520px;}
._1b{width:58.055520px;}
._1a{width:59.247120px;}
._26{width:60.701280px;}
._2d{width:62.631120px;}
._3c{width:66.075600px;}
._37{width:67.248000px;}
._38{width:68.792400px;}
._36{width:73.586640px;}
._35{width:75.015120px;}
._2f{width:92.016000px;}
._30{width:93.312000px;}
._29{width:123.048000px;}
._28{width:124.056000px;}
._39{width:136.848000px;}
._23{width:179.784000px;}
._22{width:181.287120px;}
._18{width:194.400000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(43,82,110);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:56.880000px;}
.fs4{font-size:58.462760px;}
.fs5{font-size:58.537612px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:72.069182px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:2.242817px;}
.y30{bottom:3.885000px;}
.y5b{bottom:4.485634px;}
.y55{bottom:7.849859px;}
.y4a{bottom:10.122580px;}
.y5a{bottom:22.502929px;}
.y53{bottom:51.734309px;}
.y1{bottom:57.420000px;}
.y59{bottom:64.099706px;}
.y4c{bottom:73.115830px;}
.y2f{bottom:77.399231px;}
.y4d{bottom:105.748816px;}
.ye3{bottom:109.836000px;}
.yc1{bottom:110.736000px;}
.y66{bottom:111.636000px;}
.y12e{bottom:125.316000px;}
.y81{bottom:126.036000px;}
.ye2{bottom:127.116000px;}
.yc0{bottom:131.436000px;}
.y112{bottom:131.796000px;}
.y65{bottom:132.336000px;}
.y4e{bottom:138.381801px;}
.y9f{bottom:142.956000px;}
.ye1{bottom:144.396000px;}
.y12d{bottom:146.016000px;}
.y80{bottom:146.736000px;}
.y2e{bottom:147.276000px;}
.ybf{bottom:152.130000px;}
.y111{bottom:152.310000px;}
.y64{bottom:153.030000px;}
.ye0{bottom:161.670000px;}
.y9e{bottom:163.650000px;}
.y12c{bottom:166.710000px;}
.y7f{bottom:167.430000px;}
.y2d{bottom:167.970000px;}
.y4f{bottom:171.007311px;}
.ybe{bottom:172.830000px;}
.y63{bottom:173.730000px;}
.y110{bottom:174.270000px;}
.y9d{bottom:184.170000px;}
.y12b{bottom:187.410000px;}
.ydf{bottom:187.950000px;}
.y7e{bottom:188.130000px;}
.y2c{bottom:188.490000px;}
.ybd{bottom:193.530000px;}
.y62{bottom:194.430000px;}
.y10f{bottom:196.410000px;}
.yde{bottom:199.650000px;}
.y50{bottom:204.769181px;}
.y9c{bottom:204.870000px;}
.yc4{bottom:206.130000px;}
.y12a{bottom:208.110000px;}
.y7d{bottom:208.830000px;}
.y2b{bottom:209.190000px;}
.ybc{bottom:214.230000px;}
.y61{bottom:215.130000px;}
.ydd{bottom:216.930000px;}
.y9b{bottom:225.570000px;}
.yc3{bottom:228.270000px;}
.y129{bottom:228.630000px;}
.y7c{bottom:229.530000px;}
.y2a{bottom:229.890000px;}
.ybb{bottom:234.930000px;}
.y60{bottom:235.830000px;}
.y51{bottom:237.364786px;}
.y10e{bottom:239.070000px;}
.ydc{bottom:240.870000px;}
.y9a{bottom:246.270000px;}
.yc2{bottom:248.790000px;}
.y7b{bottom:250.230000px;}
.y29{bottom:250.590000px;}
.y128{bottom:250.770000px;}
.ydb{bottom:252.030000px;}
.yba{bottom:255.630000px;}
.y5f{bottom:256.170000px;}
.y10d{bottom:261.210000px;}
.y99{bottom:266.970000px;}
.y52{bottom:269.990295px;}
.y7a{bottom:270.930000px;}
.y28{bottom:271.290000px;}
.yb9{bottom:276.330000px;}
.y10c{bottom:281.730000px;}
.y98{bottom:287.670000px;}
.y79{bottom:291.630000px;}
.y27{bottom:291.990000px;}
.y127{bottom:293.250000px;}
.yb8{bottom:297.030000px;}
.y10b{bottom:303.690000px;}
.y97{bottom:308.370000px;}
.y78{bottom:312.330000px;}
.y26{bottom:312.690000px;}
.y5e{bottom:313.230000px;}
.yda{bottom:314.130000px;}
.y126{bottom:315.210000px;}
.yb7{bottom:317.730000px;}
.y10a{bottom:325.650000px;}
.y96{bottom:329.115000px;}
.y77{bottom:333.075000px;}
.y25{bottom:333.435000px;}
.y5d{bottom:333.975000px;}
.yd9{bottom:334.695000px;}
.y125{bottom:337.395000px;}
.y12f{bottom:338.115000px;}
.yb6{bottom:338.475000px;}
.y109{bottom:347.655000px;}
.y95{bottom:349.815000px;}
.y5c{bottom:350.175000px;}
.y4b{bottom:350.190000px;}
.y76{bottom:353.775000px;}
.y24{bottom:354.135000px;}
.yd8{bottom:356.835000px;}
.y124{bottom:358.095000px;}
.yb5{bottom:359.175000px;}
.y54{bottom:368.207296px;}
.y108{bottom:369.795000px;}
.y94{bottom:370.515000px;}
.y23{bottom:374.475000px;}
.yd7{bottom:377.355000px;}
.y123{bottom:378.435000px;}
.yb4{bottom:379.875000px;}
.y107{bottom:390.495000px;}
.y93{bottom:391.215000px;}
.y75{bottom:395.175000px;}
.yd6{bottom:399.495000px;}
.yb3{bottom:400.575000px;}
.y106{bottom:411.195000px;}
.y92{bottom:411.915000px;}
.y122{bottom:414.615000px;}
.y74{bottom:415.875000px;}
.yd5{bottom:420.195000px;}
.yb2{bottom:421.275000px;}
.y22{bottom:431.535000px;}
.y105{bottom:431.715000px;}
.y91{bottom:432.615000px;}
.y121{bottom:435.315000px;}
.y73{bottom:436.575000px;}
.yd4{bottom:440.895000px;}
.yb1{bottom:441.975000px;}
.y21{bottom:452.235000px;}
.y90{bottom:453.315000px;}
.y104{bottom:453.675000px;}
.y120{bottom:456.015000px;}
.y72{bottom:457.275000px;}
.yd3{bottom:461.595000px;}
.yb0{bottom:462.675000px;}
.y20{bottom:472.935000px;}
.y8f{bottom:474.015000px;}
.y103{bottom:475.815000px;}
.y11f{bottom:476.715000px;}
.y71{bottom:477.975000px;}
.yaf{bottom:483.375000px;}
.yd2{bottom:483.735000px;}
.y58{bottom:487.450393px;}
.y1f{bottom:493.635000px;}
.y8e{bottom:494.715000px;}
.y102{bottom:496.515000px;}
.y11e{bottom:497.415000px;}
.y70{bottom:498.675000px;}
.y56{bottom:502.058607px;}
.yae{bottom:504.075000px;}
.yd1{bottom:504.435000px;}
.y1e{bottom:514.335000px;}
.y8d{bottom:515.415000px;}
.y11d{bottom:518.115000px;}
.y101{bottom:518.475000px;}
.y6f{bottom:519.375000px;}
.yad{bottom:524.775000px;}
.yd0{bottom:525.135000px;}
.y1d{bottom:535.035000px;}
.y8c{bottom:536.115000px;}
.y11c{bottom:538.815000px;}
.y6e{bottom:540.075000px;}
.y100{bottom:540.435000px;}
.yac{bottom:545.475000px;}
.ycf{bottom:545.835000px;}
.y1c{bottom:555.735000px;}
.y8b{bottom:556.815000px;}
.y11b{bottom:559.515000px;}
.y6d{bottom:560.775000px;}
.yff{bottom:562.575000px;}
.yab{bottom:566.175000px;}
.yce{bottom:566.535000px;}
.y1b{bottom:576.435000px;}
.y8a{bottom:578.775000px;}
.y11a{bottom:580.215000px;}
.y6c{bottom:581.475000px;}
.yfe{bottom:583.095000px;}
.yaa{bottom:586.875000px;}
.ycd{bottom:587.235000px;}
.y1a{bottom:597.165000px;}
.y89{bottom:599.505000px;}
.y119{bottom:600.945000px;}
.y6b{bottom:602.205000px;}
.yfd{bottom:605.085000px;}
.ya9{bottom:607.605000px;}
.ycc{bottom:607.785000px;}
.y19{bottom:617.865000px;}
.y88{bottom:620.205000px;}
.y118{bottom:621.645000px;}
.y6a{bottom:622.905000px;}
.yfc{bottom:627.225000px;}
.ya8{bottom:628.305000px;}
.ycb{bottom:628.485000px;}
.y18{bottom:638.565000px;}
.y87{bottom:640.905000px;}
.y117{bottom:642.345000px;}
.y69{bottom:643.605000px;}
.yfb{bottom:647.925000px;}
.ya7{bottom:649.005000px;}
.yca{bottom:649.185000px;}
.y49{bottom:656.184982px;}
.y17{bottom:659.265000px;}
.y86{bottom:661.605000px;}
.y116{bottom:663.045000px;}
.y68{bottom:664.305000px;}
.yfa{bottom:668.625000px;}
.ya6{bottom:669.705000px;}
.yc9{bottom:669.885000px;}
.y16{bottom:679.965000px;}
.y85{bottom:682.305000px;}
.y115{bottom:683.745000px;}
.y67{bottom:685.005000px;}
.yf9{bottom:689.325000px;}
.ya5{bottom:690.405000px;}
.yc8{bottom:690.585000px;}
.y15{bottom:700.665000px;}
.y84{bottom:704.445000px;}
.y48{bottom:705.705000px;}
.yf8{bottom:710.025000px;}
.ya4{bottom:711.105000px;}
.yc7{bottom:711.285000px;}
.y14{bottom:721.365000px;}
.y83{bottom:725.145000px;}
.y47{bottom:726.405000px;}
.yf7{bottom:730.725000px;}
.yc6{bottom:731.625000px;}
.ya3{bottom:731.805000px;}
.y13{bottom:742.065000px;}
.y82{bottom:745.665000px;}
.y114{bottom:745.845000px;}
.y46{bottom:747.105000px;}
.yf6{bottom:751.065000px;}
.ya2{bottom:752.505000px;}
.y12{bottom:762.765000px;}
.y113{bottom:766.545000px;}
.y45{bottom:767.805000px;}
.ya1{bottom:773.205000px;}
.y11{bottom:783.465000px;}
.yf5{bottom:787.245000px;}
.y44{bottom:788.505000px;}
.ya0{bottom:793.545000px;}
.y10{bottom:804.165000px;}
.yf4{bottom:807.945000px;}
.y43{bottom:809.205000px;}
.yf{bottom:824.865000px;}
.yf3{bottom:828.645000px;}
.y42{bottom:829.905000px;}
.ye{bottom:845.565000px;}
.yf2{bottom:849.345000px;}
.y41{bottom:850.605000px;}
.yd{bottom:866.310000px;}
.yf1{bottom:870.090000px;}
.y40{bottom:871.350000px;}
.yc{bottom:887.010000px;}
.yf0{bottom:890.790000px;}
.y3f{bottom:892.050000px;}
.yb{bottom:907.710000px;}
.yef{bottom:911.490000px;}
.y3e{bottom:912.750000px;}
.ya{bottom:928.410000px;}
.yee{bottom:932.190000px;}
.y3d{bottom:933.450000px;}
.y9{bottom:949.110000px;}
.yed{bottom:952.710000px;}
.y3c{bottom:954.150000px;}
.y8{bottom:969.810000px;}
.yec{bottom:973.410000px;}
.y3b{bottom:974.850000px;}
.y7{bottom:990.510000px;}
.yeb{bottom:994.110000px;}
.y3a{bottom:995.550000px;}
.y6{bottom:1011.210000px;}
.yea{bottom:1014.810000px;}
.y39{bottom:1016.250000px;}
.y5{bottom:1031.550000px;}
.ye9{bottom:1035.510000px;}
.y38{bottom:1036.950000px;}
.ye8{bottom:1056.210000px;}
.y37{bottom:1057.650000px;}
.ye7{bottom:1076.910000px;}
.y36{bottom:1078.350000px;}
.y4{bottom:1088.610000px;}
.ye6{bottom:1097.610000px;}
.y35{bottom:1099.050000px;}
.y3{bottom:1112.730000px;}
.ye5{bottom:1118.310000px;}
.y34{bottom:1119.750000px;}
.y2{bottom:1137.060000px;}
.ye4{bottom:1139.040000px;}
.yc5{bottom:1140.120000px;}
.y33{bottom:1140.480000px;}
.y32{bottom:1140.930000px;}
.y31{bottom:1192.950000px;}
.h6{height:19.800105px;}
.he{height:25.867155px;}
.ha{height:32.632986px;}
.h16{height:38.158594px;}
.h9{height:43.909277px;}
.h19{height:47.344922px;}
.h10{height:50.612901px;}
.h17{height:52.435898px;}
.hf{height:52.782052px;}
.h18{height:58.651172px;}
.hd{height:60.974832px;}
.h11{height:61.052900px;}
.h5{height:63.175781px;}
.h13{height:63.351562px;}
.hb{height:65.066366px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h7{height:72.492188px;}
.h4{height:72.562500px;}
.h14{height:75.093750px;}
.h15{height:80.464922px;}
.h12{height:81.003069px;}
.h3{height:82.635820px;}
.hc{height:351.000841px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:18.000000px;}
.w5{width:21.408896px;}
.w6{width:25.862845px;}
.w7{width:175.508037px;}
.w3{width:320.609453px;}
.w4{width:580.510461px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:2.275631px;}
.x7{left:3.368533px;}
.x10{left:18.002936px;}
.x12{left:39.374404px;}
.xb{left:46.111469px;}
.xa{left:54.008807px;}
.x9{left:61.868716px;}
.xc{left:86.608717px;}
.x1{left:106.236000px;}
.x17{left:133.236000px;}
.x16{left:141.516000px;}
.x8{left:156.165000px;}
.x3{left:160.230000px;}
.xf{left:174.167936px;}
.x2{left:183.450000px;}
.x18{left:195.510000px;}
.x19{left:214.230000px;}
.x14{left:258.150000px;}
.x6{left:286.676926px;}
.x5{left:336.690000px;}
.xd{left:376.661662px;}
.x15{left:402.195000px;}
.x4{left:437.490006px;}
.x11{left:549.909039px;}
.x1a{left:589.785000px;}
.x13{left:736.710000px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls18{letter-spacing:-2.764479pt;}
.ls45{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-0.983517pt;}
.ls11{letter-spacing:-0.896000pt;}
.ls58{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls59{letter-spacing:-0.196267pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls4f{letter-spacing:-0.064000pt;}
.ls50{letter-spacing:-0.024533pt;}
.lse{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.047467pt;}
.ls2c{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls54{letter-spacing:0.512000pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.661333pt;}
.ls52{letter-spacing:0.672000pt;}
.ls51{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls2{letter-spacing:2.080000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls49{letter-spacing:2.570667pt;}
.ls3e{letter-spacing:2.720000pt;}
.ls1e{letter-spacing:3.200000pt;}
.ls4d{letter-spacing:3.818667pt;}
.ls2a{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:4.480000pt;}
.ls22{letter-spacing:5.130667pt;}
.ls25{letter-spacing:5.738667pt;}
.ls47{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls57{letter-spacing:7.664640pt;}
.ls6{letter-spacing:7.680000pt;}
.ls39{letter-spacing:8.320000pt;}
.ls28{letter-spacing:8.426667pt;}
.ls26{letter-spacing:9.600000pt;}
.ls37{letter-spacing:10.858667pt;}
.ls8{letter-spacing:10.880000pt;}
.ls0{letter-spacing:11.520000pt;}
.ls41{letter-spacing:12.160000pt;}
.ls1d{letter-spacing:12.800000pt;}
.ls3{letter-spacing:13.440000pt;}
.ls42{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:14.186667pt;}
.ls44{letter-spacing:14.720000pt;}
.ls3c{letter-spacing:14.880000pt;}
.ls34{letter-spacing:16.000000pt;}
.ls55{letter-spacing:16.139307pt;}
.ls56{letter-spacing:16.160000pt;}
.ls27{letter-spacing:16.640000pt;}
.ls4a{letter-spacing:17.280000pt;}
.ls30{letter-spacing:17.920000pt;}
.lsb{letter-spacing:18.560000pt;}
.ls53{letter-spacing:18.720000pt;}
.ls33{letter-spacing:19.200000pt;}
.lsc{letter-spacing:19.840000pt;}
.ls19{letter-spacing:20.480000pt;}
.ls38{letter-spacing:21.120000pt;}
.ls46{letter-spacing:21.920000pt;}
.ls3b{letter-spacing:23.200000pt;}
.lsa{letter-spacing:23.680000pt;}
.ls35{letter-spacing:24.960000pt;}
.ls2e{letter-spacing:26.880000pt;}
.ls29{letter-spacing:27.520000pt;}
.ls2f{letter-spacing:28.800000pt;}
.ls21{letter-spacing:30.186667pt;}
.ls23{letter-spacing:32.640000pt;}
.ls32{letter-spacing:36.480000pt;}
.ls14{letter-spacing:37.120000pt;}
.ls4{letter-spacing:40.320000pt;}
.ls31{letter-spacing:42.368000pt;}
.ls4c{letter-spacing:44.906667pt;}
.ls20{letter-spacing:48.746667pt;}
.ls4b{letter-spacing:60.800000pt;}
.ls48{letter-spacing:66.560000pt;}
.ls12{letter-spacing:172.778667pt;}
.ws1{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.576000pt;}
.ws10{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.168000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.446798pt;}
.wsb{word-spacing:-13.280000pt;}
.ws11{word-spacing:-12.640000pt;}
.ws13{word-spacing:-12.615467pt;}
.ws14{word-spacing:-12.443733pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:26.655164pt;}
._31{margin-left:-4.992000pt;}
._b{margin-left:-2.340693pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.426987pt;}
._8{width:2.532693pt;}
._24{width:3.637120pt;}
._1c{width:5.345920pt;}
._14{width:6.306773pt;}
._13{width:7.594667pt;}
._c{width:8.794880pt;}
._7{width:10.048000pt;}
._2{width:10.944000pt;}
._4{width:11.885013pt;}
._3{width:12.863573pt;}
._a{width:13.802667pt;}
._9{width:14.890667pt;}
._3d{width:15.790080pt;}
._27{width:16.909440pt;}
._11{width:17.920000pt;}
._12{width:19.264000pt;}
._19{width:20.202667pt;}
._21{width:21.312000pt;}
._20{width:22.349440pt;}
._5{width:23.744000pt;}
._6{width:24.810667pt;}
._15{width:26.048000pt;}
._1e{width:27.008000pt;}
._1f{width:28.032000pt;}
._16{width:28.992000pt;}
._2a{width:29.898240pt;}
._f{width:30.808107pt;}
._10{width:32.252373pt;}
._2c{width:33.147947pt;}
._1d{width:34.666667pt;}
._17{width:35.853440pt;}
._25{width:37.089493pt;}
._2e{width:38.797440pt;}
._d{width:39.808000pt;}
._e{width:40.995840pt;}
._2b{width:41.951360pt;}
._34{width:44.014720pt;}
._3a{width:44.941440pt;}
._33{width:46.464000pt;}
._32{width:47.949440pt;}
._3b{width:48.927573pt;}
._1b{width:51.604907pt;}
._1a{width:52.664107pt;}
._26{width:53.956693pt;}
._2d{width:55.672107pt;}
._3c{width:58.733867pt;}
._37{width:59.776000pt;}
._38{width:61.148800pt;}
._36{width:65.410347pt;}
._35{width:66.680107pt;}
._2f{width:81.792000pt;}
._30{width:82.944000pt;}
._29{width:109.376000pt;}
._28{width:110.272000pt;}
._39{width:121.642667pt;}
._23{width:159.808000pt;}
._22{width:161.144107pt;}
._18{width:172.800000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:50.560000pt;}
.fs4{font-size:51.966898pt;}
.fs5{font-size:52.033433pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:64.061495pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:1.993615pt;}
.y30{bottom:3.453333pt;}
.y5b{bottom:3.987230pt;}
.y55{bottom:6.977653pt;}
.y4a{bottom:8.997849pt;}
.y5a{bottom:20.002604pt;}
.y53{bottom:45.986053pt;}
.y1{bottom:51.040000pt;}
.y59{bottom:56.977517pt;}
.y4c{bottom:64.991849pt;}
.y2f{bottom:68.799316pt;}
.y4d{bottom:93.998947pt;}
.ye3{bottom:97.632000pt;}
.yc1{bottom:98.432000pt;}
.y66{bottom:99.232000pt;}
.y12e{bottom:111.392000pt;}
.y81{bottom:112.032000pt;}
.ye2{bottom:112.992000pt;}
.yc0{bottom:116.832000pt;}
.y112{bottom:117.152000pt;}
.y65{bottom:117.632000pt;}
.y4e{bottom:123.006045pt;}
.y9f{bottom:127.072000pt;}
.ye1{bottom:128.352000pt;}
.y12d{bottom:129.792000pt;}
.y80{bottom:130.432000pt;}
.y2e{bottom:130.912000pt;}
.ybf{bottom:135.226667pt;}
.y111{bottom:135.386667pt;}
.y64{bottom:136.026667pt;}
.ye0{bottom:143.706667pt;}
.y9e{bottom:145.466667pt;}
.y12c{bottom:148.186667pt;}
.y7f{bottom:148.826667pt;}
.y2d{bottom:149.306667pt;}
.y4f{bottom:152.006498pt;}
.ybe{bottom:153.626667pt;}
.y63{bottom:154.426667pt;}
.y110{bottom:154.906667pt;}
.y9d{bottom:163.706667pt;}
.y12b{bottom:166.586667pt;}
.ydf{bottom:167.066667pt;}
.y7e{bottom:167.226667pt;}
.y2c{bottom:167.546667pt;}
.ybd{bottom:172.026667pt;}
.y62{bottom:172.826667pt;}
.y10f{bottom:174.586667pt;}
.yde{bottom:177.466667pt;}
.y50{bottom:182.017050pt;}
.y9c{bottom:182.106667pt;}
.yc4{bottom:183.226667pt;}
.y12a{bottom:184.986667pt;}
.y7d{bottom:185.626667pt;}
.y2b{bottom:185.946667pt;}
.ybc{bottom:190.426667pt;}
.y61{bottom:191.226667pt;}
.ydd{bottom:192.826667pt;}
.y9b{bottom:200.506667pt;}
.yc3{bottom:202.906667pt;}
.y129{bottom:203.226667pt;}
.y7c{bottom:204.026667pt;}
.y2a{bottom:204.346667pt;}
.ybb{bottom:208.826667pt;}
.y60{bottom:209.626667pt;}
.y51{bottom:210.990921pt;}
.y10e{bottom:212.506667pt;}
.ydc{bottom:214.106667pt;}
.y9a{bottom:218.906667pt;}
.yc2{bottom:221.146667pt;}
.y7b{bottom:222.426667pt;}
.y29{bottom:222.746667pt;}
.y128{bottom:222.906667pt;}
.ydb{bottom:224.026667pt;}
.yba{bottom:227.226667pt;}
.y5f{bottom:227.706667pt;}
.y10d{bottom:232.186667pt;}
.y99{bottom:237.306667pt;}
.y52{bottom:239.991374pt;}
.y7a{bottom:240.826667pt;}
.y28{bottom:241.146667pt;}
.yb9{bottom:245.626667pt;}
.y10c{bottom:250.426667pt;}
.y98{bottom:255.706667pt;}
.y79{bottom:259.226667pt;}
.y27{bottom:259.546667pt;}
.y127{bottom:260.666667pt;}
.yb8{bottom:264.026667pt;}
.y10b{bottom:269.946667pt;}
.y97{bottom:274.106667pt;}
.y78{bottom:277.626667pt;}
.y26{bottom:277.946667pt;}
.y5e{bottom:278.426667pt;}
.yda{bottom:279.226667pt;}
.y126{bottom:280.186667pt;}
.yb7{bottom:282.426667pt;}
.y10a{bottom:289.466667pt;}
.y96{bottom:292.546667pt;}
.y77{bottom:296.066667pt;}
.y25{bottom:296.386667pt;}
.y5d{bottom:296.866667pt;}
.yd9{bottom:297.506667pt;}
.y125{bottom:299.906667pt;}
.y12f{bottom:300.546667pt;}
.yb6{bottom:300.866667pt;}
.y109{bottom:309.026667pt;}
.y95{bottom:310.946667pt;}
.y5c{bottom:311.266667pt;}
.y4b{bottom:311.280000pt;}
.y76{bottom:314.466667pt;}
.y24{bottom:314.786667pt;}
.yd8{bottom:317.186667pt;}
.y124{bottom:318.306667pt;}
.yb5{bottom:319.266667pt;}
.y54{bottom:327.295374pt;}
.y108{bottom:328.706667pt;}
.y94{bottom:329.346667pt;}
.y23{bottom:332.866667pt;}
.yd7{bottom:335.426667pt;}
.y123{bottom:336.386667pt;}
.yb4{bottom:337.666667pt;}
.y107{bottom:347.106667pt;}
.y93{bottom:347.746667pt;}
.y75{bottom:351.266667pt;}
.yd6{bottom:355.106667pt;}
.yb3{bottom:356.066667pt;}
.y106{bottom:365.506667pt;}
.y92{bottom:366.146667pt;}
.y122{bottom:368.546667pt;}
.y74{bottom:369.666667pt;}
.yd5{bottom:373.506667pt;}
.yb2{bottom:374.466667pt;}
.y22{bottom:383.586667pt;}
.y105{bottom:383.746667pt;}
.y91{bottom:384.546667pt;}
.y121{bottom:386.946667pt;}
.y73{bottom:388.066667pt;}
.yd4{bottom:391.906667pt;}
.yb1{bottom:392.866667pt;}
.y21{bottom:401.986667pt;}
.y90{bottom:402.946667pt;}
.y104{bottom:403.266667pt;}
.y120{bottom:405.346667pt;}
.y72{bottom:406.466667pt;}
.yd3{bottom:410.306667pt;}
.yb0{bottom:411.266667pt;}
.y20{bottom:420.386667pt;}
.y8f{bottom:421.346667pt;}
.y103{bottom:422.946667pt;}
.y11f{bottom:423.746667pt;}
.y71{bottom:424.866667pt;}
.yaf{bottom:429.666667pt;}
.yd2{bottom:429.986667pt;}
.y58{bottom:433.289238pt;}
.y1f{bottom:438.786667pt;}
.y8e{bottom:439.746667pt;}
.y102{bottom:441.346667pt;}
.y11e{bottom:442.146667pt;}
.y70{bottom:443.266667pt;}
.y56{bottom:446.274317pt;}
.yae{bottom:448.066667pt;}
.yd1{bottom:448.386667pt;}
.y1e{bottom:457.186667pt;}
.y8d{bottom:458.146667pt;}
.y11d{bottom:460.546667pt;}
.y101{bottom:460.866667pt;}
.y6f{bottom:461.666667pt;}
.yad{bottom:466.466667pt;}
.yd0{bottom:466.786667pt;}
.y1d{bottom:475.586667pt;}
.y8c{bottom:476.546667pt;}
.y11c{bottom:478.946667pt;}
.y6e{bottom:480.066667pt;}
.y100{bottom:480.386667pt;}
.yac{bottom:484.866667pt;}
.ycf{bottom:485.186667pt;}
.y1c{bottom:493.986667pt;}
.y8b{bottom:494.946667pt;}
.y11b{bottom:497.346667pt;}
.y6d{bottom:498.466667pt;}
.yff{bottom:500.066667pt;}
.yab{bottom:503.266667pt;}
.yce{bottom:503.586667pt;}
.y1b{bottom:512.386667pt;}
.y8a{bottom:514.466667pt;}
.y11a{bottom:515.746667pt;}
.y6c{bottom:516.866667pt;}
.yfe{bottom:518.306667pt;}
.yaa{bottom:521.666667pt;}
.ycd{bottom:521.986667pt;}
.y1a{bottom:530.813333pt;}
.y89{bottom:532.893333pt;}
.y119{bottom:534.173333pt;}
.y6b{bottom:535.293333pt;}
.yfd{bottom:537.853333pt;}
.ya9{bottom:540.093333pt;}
.ycc{bottom:540.253333pt;}
.y19{bottom:549.213333pt;}
.y88{bottom:551.293333pt;}
.y118{bottom:552.573333pt;}
.y6a{bottom:553.693333pt;}
.yfc{bottom:557.533333pt;}
.ya8{bottom:558.493333pt;}
.ycb{bottom:558.653333pt;}
.y18{bottom:567.613333pt;}
.y87{bottom:569.693333pt;}
.y117{bottom:570.973333pt;}
.y69{bottom:572.093333pt;}
.yfb{bottom:575.933333pt;}
.ya7{bottom:576.893333pt;}
.yca{bottom:577.053333pt;}
.y49{bottom:583.275540pt;}
.y17{bottom:586.013333pt;}
.y86{bottom:588.093333pt;}
.y116{bottom:589.373333pt;}
.y68{bottom:590.493333pt;}
.yfa{bottom:594.333333pt;}
.ya6{bottom:595.293333pt;}
.yc9{bottom:595.453333pt;}
.y16{bottom:604.413333pt;}
.y85{bottom:606.493333pt;}
.y115{bottom:607.773333pt;}
.y67{bottom:608.893333pt;}
.yf9{bottom:612.733333pt;}
.ya5{bottom:613.693333pt;}
.yc8{bottom:613.853333pt;}
.y15{bottom:622.813333pt;}
.y84{bottom:626.173333pt;}
.y48{bottom:627.293333pt;}
.yf8{bottom:631.133333pt;}
.ya4{bottom:632.093333pt;}
.yc7{bottom:632.253333pt;}
.y14{bottom:641.213333pt;}
.y83{bottom:644.573333pt;}
.y47{bottom:645.693333pt;}
.yf7{bottom:649.533333pt;}
.yc6{bottom:650.333333pt;}
.ya3{bottom:650.493333pt;}
.y13{bottom:659.613333pt;}
.y82{bottom:662.813333pt;}
.y114{bottom:662.973333pt;}
.y46{bottom:664.093333pt;}
.yf6{bottom:667.613333pt;}
.ya2{bottom:668.893333pt;}
.y12{bottom:678.013333pt;}
.y113{bottom:681.373333pt;}
.y45{bottom:682.493333pt;}
.ya1{bottom:687.293333pt;}
.y11{bottom:696.413333pt;}
.yf5{bottom:699.773333pt;}
.y44{bottom:700.893333pt;}
.ya0{bottom:705.373333pt;}
.y10{bottom:714.813333pt;}
.yf4{bottom:718.173333pt;}
.y43{bottom:719.293333pt;}
.yf{bottom:733.213333pt;}
.yf3{bottom:736.573333pt;}
.y42{bottom:737.693333pt;}
.ye{bottom:751.613333pt;}
.yf2{bottom:754.973333pt;}
.y41{bottom:756.093333pt;}
.yd{bottom:770.053333pt;}
.yf1{bottom:773.413333pt;}
.y40{bottom:774.533333pt;}
.yc{bottom:788.453333pt;}
.yf0{bottom:791.813333pt;}
.y3f{bottom:792.933333pt;}
.yb{bottom:806.853333pt;}
.yef{bottom:810.213333pt;}
.y3e{bottom:811.333333pt;}
.ya{bottom:825.253333pt;}
.yee{bottom:828.613333pt;}
.y3d{bottom:829.733333pt;}
.y9{bottom:843.653333pt;}
.yed{bottom:846.853333pt;}
.y3c{bottom:848.133333pt;}
.y8{bottom:862.053333pt;}
.yec{bottom:865.253333pt;}
.y3b{bottom:866.533333pt;}
.y7{bottom:880.453333pt;}
.yeb{bottom:883.653333pt;}
.y3a{bottom:884.933333pt;}
.y6{bottom:898.853333pt;}
.yea{bottom:902.053333pt;}
.y39{bottom:903.333333pt;}
.y5{bottom:916.933333pt;}
.ye9{bottom:920.453333pt;}
.y38{bottom:921.733333pt;}
.ye8{bottom:938.853333pt;}
.y37{bottom:940.133333pt;}
.ye7{bottom:957.253333pt;}
.y36{bottom:958.533333pt;}
.y4{bottom:967.653333pt;}
.ye6{bottom:975.653333pt;}
.y35{bottom:976.933333pt;}
.y3{bottom:989.093333pt;}
.ye5{bottom:994.053333pt;}
.y34{bottom:995.333333pt;}
.y2{bottom:1010.720000pt;}
.ye4{bottom:1012.480000pt;}
.yc5{bottom:1013.440000pt;}
.y33{bottom:1013.760000pt;}
.y32{bottom:1014.160000pt;}
.y31{bottom:1060.400000pt;}
.h6{height:17.600093pt;}
.he{height:22.993026pt;}
.ha{height:29.007098pt;}
.h16{height:33.918750pt;}
.h9{height:39.030469pt;}
.h19{height:42.084375pt;}
.h10{height:44.989245pt;}
.h17{height:46.609688pt;}
.hf{height:46.917380pt;}
.h18{height:52.134375pt;}
.hd{height:54.199850pt;}
.h11{height:54.269244pt;}
.h5{height:56.156250pt;}
.h13{height:56.312500pt;}
.hb{height:57.836770pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h7{height:64.437500pt;}
.h4{height:64.500000pt;}
.h14{height:66.750000pt;}
.h15{height:71.524375pt;}
.h12{height:72.002728pt;}
.h3{height:73.454062pt;}
.hc{height:312.000748pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:16.000000pt;}
.w5{width:19.030130pt;}
.w6{width:22.989196pt;}
.w7{width:156.007144pt;}
.w3{width:284.986180pt;}
.w4{width:516.009299pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:2.022783pt;}
.x7{left:2.994251pt;}
.x10{left:16.002609pt;}
.x12{left:34.999470pt;}
.xb{left:40.987973pt;}
.xa{left:48.007828pt;}
.x9{left:54.994415pt;}
.xc{left:76.985527pt;}
.x1{left:94.432000pt;}
.x17{left:118.432000pt;}
.x16{left:125.792000pt;}
.x8{left:138.813333pt;}
.x3{left:142.426667pt;}
.xf{left:154.815943pt;}
.x2{left:163.066667pt;}
.x18{left:173.786667pt;}
.x19{left:190.426667pt;}
.x14{left:229.466667pt;}
.x6{left:254.823935pt;}
.x5{left:299.280000pt;}
.xd{left:334.810366pt;}
.x15{left:357.506667pt;}
.x4{left:388.880005pt;}
.x11{left:488.808035pt;}
.x1a{left:524.253333pt;}
.x13{left:654.853333pt;}
}




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