
    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_e47ae0cd2e6e240d03d7c404.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight: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_7e9c857d4412a972b2f88e85.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;font-style:normal;font-weight: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_00cde638a495299cac05bff9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0f9f92d1479785554fb2cd3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_246605a8f7421c338f1edd0e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9d6ac7d6a8e5d333b37d267e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;font-style:normal;font-weight: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_1c9091cc7cb8b80b700ff21e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight: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_1bb72161c23b8f6d7caae171.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a5275dc639c64dba7f9c1759.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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;font-style:normal;font-weight: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_8e7d5a25753a43a2a9ddc998.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.112305;font-style:normal;font-weight: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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_71e33dbaef48b1406b181d9c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_86512e226addf6770c5e0d84.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_09605cdc3c01b05f43fe9582.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.767578;font-style:normal;font-weight: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_7e2e4ba5b12295992175eaf3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.112305;font-style:normal;font-weight: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_bc5a8b5d36c912109c21dee8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;font-style:normal;font-weight: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_5529ad9f694112ea4647a316.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_05dbe356310ad8d0a044fa86.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_f91f8fcf47f2e598a6e1aa70.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.767578;font-style:normal;font-weight: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_16333a32b61ffb50a9f2e327.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.112305;font-style:normal;font-weight: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_62c5f6ac5471be20fa0449d7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;font-style:normal;font-weight: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_b50dfea6eab1b9f3a4af949d.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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;font-style:normal;font-weight: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_82f6a882c06a6d85ab152e87.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.040039;font-style:normal;font-weight: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_cbb7f87fda1245d9be64917d.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_52531b18c2ad4992ebdc1b90.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.767578;font-style:normal;font-weight: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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910156;font-style:normal;font-weight: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_8d387f7bbb31cb7724e8fb9d.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.402354;font-style:normal;font-weight: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_719831547d98f0339e28096f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.040039;font-style:normal;font-weight: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_f729a317d205ab39550d7609.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.112305;font-style:normal;font-weight: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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_05dbe356310ad8d0a044fa86.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_55a97bf276908939cc099408.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.767578;font-style:normal;font-weight: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_3f6f74a2239943e157974a06.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_d40e309f8014eeaa6eaeac11.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_96fd8c9b25adc91660c1c341.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.767578;font-style:normal;font-weight: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_a53a44708cd1b11b77239c4b.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_659afa801c5cac7c28360475.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.112305;font-style:normal;font-weight: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_7636dae6fd239dccfe23f776.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_f641563cd2a1f64fb6b2a906.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.040039;font-style:normal;font-weight: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_05dbe356310ad8d0a044fa86.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_38f197bd2fd87ec9f43d9867.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.767578;font-style:normal;font-weight: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_89bf06b8405727cbb4fb8e19.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_fe8f00e45b67b6db6c3c5670.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.040039;font-style:normal;font-weight: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_5d7f9e09efa15dfa4501614f.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.112305;font-style:normal;font-weight: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_9495ee33ea0fcea884c9c9e3.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_bb191189415b6935b4347e63.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.767578;font-style:normal;font-weight: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_38eb407657b1131290624bc0.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.112305;font-style:normal;font-weight: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_4d5c27b2a588baa9e22be4f8.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_20186f872d654a61a305ac26.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.767578;font-style:normal;font-weight: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_f7715e72541c696036038c4a.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_e532cdddbb5e71f4be75f510.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.112305;font-style:normal;font-weight: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_90794c70a96cf924fc513c67.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.040039;font-style:normal;font-weight: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_05dbe356310ad8d0a044fa86.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_08e8074beec49774a50ac8ec.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_1ecdff57986caf8a6544e077.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_971be2bb90c6b9e7b14f1ce6.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_566cfc75024e7c381777baa5.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_05dbe356310ad8d0a044fa86.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_82ec20b5a500d83d8257fb75.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_b51d904bc07a5f75091bdf6e.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_8cc8a694e74933e19c46e84b.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-88.560000px;}
.v1{vertical-align:-78.480000px;}
.v3{vertical-align:-73.440000px;}
.v2{vertical-align:-71.280000px;}
.v4{vertical-align:-61.320000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:33.120000px;}
.ls13{letter-spacing:-6.180000px;}
.lsd{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.152400px;}
.ls1b{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.305400px;}
.lse{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.440000px;}
.ls14{letter-spacing:4.320000px;}
.ls10{letter-spacing:5.760000px;}
.ls0{letter-spacing:12.780000px;}
.ls1c{letter-spacing:15.120000px;}
.lsf{letter-spacing:15.984000px;}
.ls3{letter-spacing:18.900000px;}
.ls12{letter-spacing:25.344000px;}
.lsb{letter-spacing:27.540000px;}
.lsc{letter-spacing:196.536000px;}
.ls17{letter-spacing:198.156000px;}
.lsa{letter-spacing:243.336000px;}
.ls1{letter-spacing:676.620000px;}
.ls2{letter-spacing:677.340000px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws9{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.450800px;}
.ws7{word-spacing:-14.940000px;}
.wsa{word-spacing:-12.329400px;}
.ws8{word-spacing:-11.820000px;}
.ws6{word-spacing:0.000000px;}
._31{margin-left:-6.192000px;}
._5{margin-left:-3.375360px;}
._3{margin-left:-2.232000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.678880px;}
._1e{width:3.816000px;}
._1d{width:5.184000px;}
._1f{width:7.056000px;}
._1b{width:8.478720px;}
._1c{width:9.944640px;}
._2b{width:11.008080px;}
._15{width:12.216960px;}
._16{width:13.262400px;}
._23{width:14.618880px;}
._13{width:15.678720px;}
._14{width:16.721280px;}
._30{width:18.476400px;}
._11{width:19.638720px;}
._2e{width:20.690640px;}
._4{width:21.744000px;}
._2c{width:22.798800px;}
._6{width:23.823360px;}
._2d{width:24.897600px;}
._19{width:25.920000px;}
._2a{width:27.576000px;}
._2f{width:28.656000px;}
._32{width:30.384000px;}
._1a{width:32.256000px;}
._25{width:33.768000px;}
._26{width:34.920000px;}
._29{width:36.288000px;}
._8{width:37.440000px;}
._9{width:38.638080px;}
._7{width:39.816000px;}
._d{width:40.944960px;}
._e{width:42.462720px;}
._a{width:44.726400px;}
._22{width:46.224000px;}
._20{width:47.736000px;}
._21{width:48.844080px;}
._10{width:52.022880px;}
._f{width:53.285760px;}
._27{width:59.584320px;}
._28{width:63.472320px;}
._24{width:74.088000px;}
._b{width:76.302720px;}
._c{width:77.414400px;}
._12{width:79.070400px;}
._17{width:103.815360px;}
._18{width:105.255360px;}
._35{width:131.976000px;}
._36{width:133.956000px;}
._33{width:143.352000px;}
._34{width:144.532080px;}
._38{width:552.384000px;}
._37{width:905.112000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fs6{font-size:33.120000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.040000px;}
.y5b{bottom:5.212500px;}
.y4{bottom:5.220000px;}
.y9{bottom:15.120000px;}
.y8{bottom:33.120000px;}
.y5a{bottom:69.703500px;}
.y3{bottom:69.876000px;}
.y5d{bottom:70.956000px;}
.y6{bottom:105.516000px;}
.yb1{bottom:146.196000px;}
.y86{bottom:147.276000px;}
.y175{bottom:147.816000px;}
.y133{bottom:148.176000px;}
.y14c{bottom:152.130000px;}
.y195{bottom:152.670000px;}
.y118{bottom:158.430000px;}
.yf2{bottom:163.290000px;}
.y58{bottom:169.770000px;}
.yb0{bottom:169.950000px;}
.y85{bottom:171.030000px;}
.y174{bottom:171.570000px;}
.y132{bottom:171.930000px;}
.y14b{bottom:175.890000px;}
.y194{bottom:176.430000px;}
.y161{bottom:178.230000px;}
.y117{bottom:182.370000px;}
.y57{bottom:193.530000px;}
.yaf{bottom:193.890000px;}
.yf1{bottom:194.250000px;}
.y84{bottom:194.970000px;}
.y173{bottom:195.510000px;}
.y131{bottom:195.870000px;}
.y160{bottom:198.570000px;}
.y14a{bottom:199.830000px;}
.y116{bottom:206.130000px;}
.y1b1{bottom:213.510000px;}
.y56{bottom:217.470000px;}
.yae{bottom:217.650000px;}
.y193{bottom:218.370000px;}
.y83{bottom:218.730000px;}
.y172{bottom:219.270000px;}
.y130{bottom:219.630000px;}
.y149{bottom:223.590000px;}
.yf0{bottom:225.390000px;}
.y115{bottom:229.890000px;}
.y1b0{bottom:237.270000px;}
.y55{bottom:241.230000px;}
.yad{bottom:241.410000px;}
.y192{bottom:242.130000px;}
.y82{bottom:242.490000px;}
.y171{bottom:243.030000px;}
.y12f{bottom:243.390000px;}
.y148{bottom:246.990000px;}
.y114{bottom:252.390000px;}
.yef{bottom:256.350000px;}
.y1af{bottom:261.030000px;}
.ycf{bottom:261.570000px;}
.y54{bottom:264.990000px;}
.yac{bottom:265.170000px;}
.y191{bottom:265.890000px;}
.y81{bottom:266.250000px;}
.y170{bottom:266.790000px;}
.y12e{bottom:267.150000px;}
.y147{bottom:267.330000px;}
.y113{bottom:273.495000px;}
.yce{bottom:277.275000px;}
.y146{bottom:283.215000px;}
.y1ae{bottom:285.015000px;}
.y53{bottom:288.750000px;}
.yee{bottom:288.795000px;}
.yab{bottom:289.155000px;}
.y80{bottom:290.235000px;}
.y16f{bottom:290.775000px;}
.y12d{bottom:291.135000px;}
.y112{bottom:297.435000px;}
.ycd{bottom:301.035000px;}
.y145{bottom:305.715000px;}
.y190{bottom:307.695000px;}
.y52{bottom:312.690000px;}
.yaa{bottom:312.915000px;}
.y15f{bottom:313.635000px;}
.y7f{bottom:313.995000px;}
.y16e{bottom:314.535000px;}
.y12c{bottom:314.895000px;}
.yed{bottom:319.755000px;}
.y111{bottom:321.195000px;}
.ycc{bottom:324.795000px;}
.y144{bottom:326.775000px;}
.y18f{bottom:331.635000px;}
.y15e{bottom:334.695000px;}
.y51{bottom:336.495000px;}
.ya9{bottom:336.675000px;}
.y7e{bottom:337.755000px;}
.y16d{bottom:338.295000px;}
.y12b{bottom:338.655000px;}
.y110{bottom:344.955000px;}
.ycb{bottom:348.555000px;}
.y143{bottom:350.535000px;}
.yec{bottom:352.155000px;}
.y15d{bottom:358.455000px;}
.y50{bottom:360.255000px;}
.ya8{bottom:360.435000px;}
.y7d{bottom:361.515000px;}
.y12a{bottom:362.415000px;}
.y10f{bottom:368.715000px;}
.yca{bottom:372.315000px;}
.y18e{bottom:373.395000px;}
.y142{bottom:374.295000px;}
.y3c{bottom:378.075000px;}
.y15c{bottom:382.395000px;}
.yeb{bottom:383.115000px;}
.y4f{bottom:384.015000px;}
.ya7{bottom:384.375000px;}
.y7c{bottom:385.275000px;}
.y129{bottom:386.355000px;}
.y10e{bottom:392.655000px;}
.yc9{bottom:396.255000px;}
.y141{bottom:396.975000px;}
.y18d{bottom:397.155000px;}
.y1ad{bottom:398.235000px;}
.y3b{bottom:399.855000px;}
.y15b{bottom:406.155000px;}
.y4e{bottom:407.955000px;}
.ya6{bottom:408.135000px;}
.y7b{bottom:409.215000px;}
.y128{bottom:410.115000px;}
.yea{bottom:414.255000px;}
.y10d{bottom:416.415000px;}
.y140{bottom:418.035000px;}
.yc8{bottom:420.015000px;}
.y3a{bottom:421.635000px;}
.y1ac{bottom:421.995000px;}
.y15a{bottom:429.915000px;}
.y4d{bottom:431.715000px;}
.ya5{bottom:431.895000px;}
.y7a{bottom:432.975000px;}
.y127{bottom:433.875000px;}
.y18c{bottom:438.915000px;}
.y10c{bottom:440.175000px;}
.y13f{bottom:440.535000px;}
.y39{bottom:443.595000px;}
.yc7{bottom:443.775000px;}
.y1ab{bottom:445.755000px;}
.ye9{bottom:446.655000px;}
.y159{bottom:453.675000px;}
.y4c{bottom:455.475000px;}
.ya4{bottom:455.655000px;}
.y79{bottom:456.735000px;}
.y126{bottom:457.635000px;}
.y13e{bottom:461.595000px;}
.y10b{bottom:462.675000px;}
.yc6{bottom:467.535000px;}
.y158{bottom:476.175000px;}
.ye8{bottom:477.615000px;}
.y4b{bottom:479.235000px;}
.ya3{bottom:479.595000px;}
.y78{bottom:480.495000px;}
.y125{bottom:481.575000px;}
.y38{bottom:483.195000px;}
.y10a{bottom:483.915000px;}
.y13d{bottom:485.535000px;}
.y1aa{bottom:487.515000px;}
.yc5{bottom:491.475000px;}
.y37{bottom:497.055000px;}
.y157{bottom:497.415000px;}
.y4a{bottom:503.175000px;}
.ya2{bottom:503.355000px;}
.y124{bottom:504.075000px;}
.y18b{bottom:504.615000px;}
.y16c{bottom:505.335000px;}
.y109{bottom:507.675000px;}
.ye7{bottom:508.575000px;}
.y13c{bottom:509.295000px;}
.y1a9{bottom:511.455000px;}
.yc4{bottom:515.235000px;}
.y156{bottom:521.175000px;}
.y77{bottom:524.055000px;}
.y123{bottom:525.135000px;}
.y36{bottom:526.755000px;}
.y49{bottom:526.935000px;}
.ya1{bottom:527.115000px;}
.y18a{bottom:528.375000px;}
.y16b{bottom:529.095000px;}
.y108{bottom:531.435000px;}
.y13b{bottom:533.055000px;}
.y1a8{bottom:535.215000px;}
.yc3{bottom:538.995000px;}
.ye6{bottom:539.715000px;}
.y35{bottom:541.515000px;}
.y155{bottom:544.935000px;}
.y122{bottom:548.895000px;}
.y48{bottom:550.695000px;}
.ya0{bottom:550.875000px;}
.y16a{bottom:552.855000px;}
.y107{bottom:555.195000px;}
.y76{bottom:556.845000px;}
.y1a7{bottom:559.005000px;}
.y34{bottom:559.515000px;}
.ye5{bottom:561.165000px;}
.yc2{bottom:562.785000px;}
.y154{bottom:568.725000px;}
.y189{bottom:570.165000px;}
.y121{bottom:572.685000px;}
.y47{bottom:574.455000px;}
.y9f{bottom:574.665000px;}
.y75{bottom:575.925000px;}
.ye4{bottom:576.825000px;}
.y106{bottom:578.985000px;}
.y13a{bottom:580.785000px;}
.y33{bottom:581.475000px;}
.yc1{bottom:586.725000px;}
.y153{bottom:592.665000px;}
.y188{bottom:593.925000px;}
.y120{bottom:596.625000px;}
.y46{bottom:598.245000px;}
.y9e{bottom:598.605000px;}
.y74{bottom:599.685000px;}
.ye3{bottom:600.585000px;}
.y1a6{bottom:600.765000px;}
.y105{bottom:602.925000px;}
.y32{bottom:603.285000px;}
.yc0{bottom:610.485000px;}
.y152{bottom:616.425000px;}
.y187{bottom:617.865000px;}
.y11f{bottom:620.385000px;}
.y45{bottom:622.185000px;}
.y9d{bottom:622.365000px;}
.y73{bottom:623.445000px;}
.ye2{bottom:624.345000px;}
.y1a5{bottom:624.705000px;}
.y31{bottom:625.065000px;}
.y104{bottom:626.685000px;}
.ybf{bottom:632.985000px;}
.y151{bottom:640.185000px;}
.y186{bottom:641.625000px;}
.y11e{bottom:644.145000px;}
.y44{bottom:645.945000px;}
.y9c{bottom:646.125000px;}
.y72{bottom:647.205000px;}
.y139{bottom:647.745000px;}
.ye1{bottom:648.105000px;}
.y1a4{bottom:648.465000px;}
.y103{bottom:650.445000px;}
.ybe{bottom:652.785000px;}
.y150{bottom:663.945000px;}
.y30{bottom:664.845000px;}
.y185{bottom:665.385000px;}
.y11d{bottom:667.905000px;}
.y43{bottom:669.705000px;}
.y9b{bottom:669.885000px;}
.y71{bottom:670.965000px;}
.ye0{bottom:671.865000px;}
.ybd{bottom:672.585000px;}
.y102{bottom:674.205000px;}
.y2f{bottom:678.705000px;}
.y1a3{bottom:687.165000px;}
.y14f{bottom:687.885000px;}
.y184{bottom:689.145000px;}
.y11c{bottom:691.845000px;}
.ybc{bottom:692.565000px;}
.y9a{bottom:693.285000px;}
.y42{bottom:693.465000px;}
.y169{bottom:694.545000px;}
.y70{bottom:694.905000px;}
.ydf{bottom:695.805000px;}
.y101{bottom:698.145000px;}
.y2e{bottom:708.405000px;}
.y1a2{bottom:711.105000px;}
.y14e{bottom:711.645000px;}
.ybb{bottom:712.365000px;}
.y99{bottom:715.245000px;}
.y11b{bottom:715.605000px;}
.y41{bottom:717.405000px;}
.y6f{bottom:718.665000px;}
.yde{bottom:719.565000px;}
.y100{bottom:721.905000px;}
.y2d{bottom:723.345000px;}
.y183{bottom:731.085000px;}
.yba{bottom:732.165000px;}
.y1a1{bottom:734.865000px;}
.y14d{bottom:735.405000px;}
.y2c{bottom:737.385000px;}
.y98{bottom:738.105000px;}
.y11a{bottom:739.365000px;}
.y40{bottom:741.165000px;}
.y6e{bottom:742.425000px;}
.ydd{bottom:743.325000px;}
.yff{bottom:745.665000px;}
.yb9{bottom:749.625000px;}
.y182{bottom:754.845000px;}
.y1a0{bottom:758.625000px;}
.y97{bottom:759.165000px;}
.y119{bottom:761.865000px;}
.y168{bottom:763.125000px;}
.y3f{bottom:764.925000px;}
.yb8{bottom:765.105000px;}
.y6d{bottom:766.185000px;}
.ydc{bottom:767.085000px;}
.y2b{bottom:768.345000px;}
.yfe{bottom:769.425000px;}
.y181{bottom:778.605000px;}
.y19f{bottom:782.385000px;}
.y96{bottom:783.105000px;}
.y2a{bottom:783.285000px;}
.y167{bottom:787.065000px;}
.y3e{bottom:788.325000px;}
.yb7{bottom:789.045000px;}
.y138{bottom:789.765000px;}
.y6c{bottom:790.125000px;}
.ydb{bottom:791.025000px;}
.yfd{bottom:793.365000px;}
.y29{bottom:797.505000px;}
.y95{bottom:806.865000px;}
.y28{bottom:810.105000px;}
.y137{bottom:810.825000px;}
.y3d{bottom:811.365000px;}
.yb6{bottom:812.805000px;}
.y6b{bottom:813.885000px;}
.yda{bottom:814.785000px;}
.yfc{bottom:815.865000px;}
.y180{bottom:820.365000px;}
.y19e{bottom:824.325000px;}
.y94{bottom:830.625000px;}
.y136{bottom:834.585000px;}
.yb5{bottom:836.565000px;}
.y6a{bottom:837.645000px;}
.yd9{bottom:838.590000px;}
.y19{bottom:839.985000px;}
.y27{bottom:847.365000px;}
.y19d{bottom:848.130000px;}
.y93{bottom:854.430000px;}
.y26{bottom:857.985000px;}
.y135{bottom:858.390000px;}
.yb4{bottom:859.470000px;}
.yd8{bottom:861.090000px;}
.y18{bottom:861.405000px;}
.y69{bottom:861.450000px;}
.y17f{bottom:862.350000px;}
.y25{bottom:877.830000px;}
.y92{bottom:878.370000px;}
.yb3{bottom:881.970000px;}
.yd7{bottom:882.330000px;}
.y68{bottom:885.390000px;}
.y17e{bottom:886.110000px;}
.yfb{bottom:887.910000px;}
.y19c{bottom:889.890000px;}
.y17{bottom:890.250000px;}
.y91{bottom:902.130000px;}
.yb2{bottom:904.470000px;}
.y134{bottom:904.830000px;}
.yd6{bottom:906.090000px;}
.y67{bottom:909.150000px;}
.y17d{bottom:909.870000px;}
.y19b{bottom:913.650000px;}
.y24{bottom:914.010000px;}
.y16{bottom:918.510000px;}
.yfa{bottom:918.870000px;}
.y23{bottom:924.630000px;}
.y90{bottom:925.890000px;}
.yd5{bottom:929.850000px;}
.y66{bottom:932.910000px;}
.y17c{bottom:933.630000px;}
.y19a{bottom:937.410000px;}
.y15{bottom:940.110000px;}
.y22{bottom:944.610000px;}
.y8f{bottom:949.650000px;}
.yf9{bottom:950.010000px;}
.yd4{bottom:953.610000px;}
.y65{bottom:956.670000px;}
.y17b{bottom:957.570000px;}
.y199{bottom:961.350000px;}
.y14{bottom:961.890000px;}
.y21{bottom:968.010000px;}
.y8e{bottom:973.410000px;}
.yd3{bottom:977.550000px;}
.y1b2{bottom:979.350000px;}
.y64{bottom:980.610000px;}
.y17a{bottom:981.330000px;}
.yf8{bottom:982.230000px;}
.y13{bottom:983.670000px;}
.y7{bottom:992.850000px;}
.y8d{bottom:997.350000px;}
.y20{bottom:999.690000px;}
.yd2{bottom:1001.310000px;}
.y198{bottom:1003.110000px;}
.y63{bottom:1004.370000px;}
.y12{bottom:1005.450000px;}
.yf7{bottom:1013.370000px;}
.y8c{bottom:1021.110000px;}
.y179{bottom:1023.090000px;}
.yd1{bottom:1025.070000px;}
.y197{bottom:1026.870000px;}
.y62{bottom:1028.130000px;}
.y1f{bottom:1031.370000px;}
.yf6{bottom:1044.510000px;}
.y8b{bottom:1044.870000px;}
.y11{bottom:1046.850000px;}
.yd0{bottom:1047.570000px;}
.y166{bottom:1048.830000px;}
.y196{bottom:1050.630000px;}
.y61{bottom:1051.890000px;}
.y1e{bottom:1059.810000px;}
.y10{bottom:1067.730000px;}
.y8a{bottom:1068.630000px;}
.y178{bottom:1070.610000px;}
.y165{bottom:1072.590000px;}
.y60{bottom:1075.830000px;}
.yf5{bottom:1076.730000px;}
.y1d{bottom:1079.790000px;}
.yf{bottom:1082.850000px;}
.y89{bottom:1092.570000px;}
.y177{bottom:1094.550000px;}
.y164{bottom:1096.530000px;}
.ye{bottom:1097.790000px;}
.y1c{bottom:1099.590000px;}
.yf4{bottom:1107.870000px;}
.yd{bottom:1112.730000px;}
.y88{bottom:1116.330000px;}
.y176{bottom:1117.410000px;}
.y163{bottom:1119.030000px;}
.y5f{bottom:1119.210000px;}
.y1b{bottom:1119.390000px;}
.yc{bottom:1127.850000px;}
.y5e{bottom:1137.600000px;}
.yf3{bottom:1138.860000px;}
.y1a{bottom:1139.580000px;}
.y162{bottom:1139.760000px;}
.y87{bottom:1140.120000px;}
.yb{bottom:1142.820000px;}
.ya{bottom:1157.760000px;}
.y59{bottom:1189.620000px;}
.y1{bottom:1189.800000px;}
.y5c{bottom:1240.200000px;}
.y5{bottom:1240.380000px;}
.h2{height:19.440000px;}
.h15{height:20.872500px;}
.h4{height:20.880000px;}
.h10{height:32.505469px;}
.h18{height:35.314453px;}
.h12{height:35.332031px;}
.h11{height:40.985156px;}
.h7{height:47.505000px;}
.h6{height:50.229844px;}
.h13{height:52.998047px;}
.h9{height:58.651172px;}
.h1a{height:59.343750px;}
.he{height:60.226875px;}
.h16{height:64.546875px;}
.hb{height:64.978594px;}
.h3{height:65.010937px;}
.h8{height:66.757500px;}
.h19{height:70.628906px;}
.h5{height:70.664062px;}
.hf{height:72.562500px;}
.h17{height:74.004654px;}
.h1b{height:80.464922px;}
.ha{height:82.676953px;}
.hc{height:96.508125px;}
.hd{height:103.038750px;}
.h14{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:23.925000px;}
.w4{width:163.108500px;}
.w2{width:623.070000px;}
.w5{width:892.980000px;}
.w6{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x12{left:1.429500px;}
.x3{left:3.060000px;}
.x4{left:25.560000px;}
.x6{left:34.020000px;}
.x5{left:37.621500px;}
.x1{left:104.986500px;}
.x13{left:127.656000px;}
.x15{left:138.276000px;}
.x14{left:139.536000px;}
.x1d{left:180.750000px;}
.x16{left:191.550000px;}
.x18{left:202.170000px;}
.x10{left:224.130000px;}
.x17{left:255.270000px;}
.xe{left:260.850000px;}
.x19{left:262.650000px;}
.x1b{left:265.890000px;}
.x7{left:269.310000px;}
.xa{left:278.175000px;}
.x9{left:284.475000px;}
.x1c{left:287.130000px;}
.x1a{left:289.650000px;}
.xf{left:409.575000px;}
.xd{left:435.315000px;}
.xb{left:473.865000px;}
.x11{left:514.005000px;}
.xc{left:519.585000px;}
.x8{left:534.525000px;}
.x2{left:765.870000px;}
@media print{
.v5{vertical-align:-78.720000pt;}
.v1{vertical-align:-69.760000pt;}
.v3{vertical-align:-65.280000pt;}
.v2{vertical-align:-63.360000pt;}
.v4{vertical-align:-54.506667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:29.440000pt;}
.ls13{letter-spacing:-5.493333pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.135467pt;}
.ls1b{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls10{letter-spacing:5.120000pt;}
.ls0{letter-spacing:11.360000pt;}
.ls1c{letter-spacing:13.440000pt;}
.lsf{letter-spacing:14.208000pt;}
.ls3{letter-spacing:16.800000pt;}
.ls12{letter-spacing:22.528000pt;}
.lsb{letter-spacing:24.480000pt;}
.lsc{letter-spacing:174.698667pt;}
.ls17{letter-spacing:176.138667pt;}
.lsa{letter-spacing:216.298667pt;}
.ls1{letter-spacing:601.440000pt;}
.ls2{letter-spacing:602.080000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.622933pt;}
.ws7{word-spacing:-13.280000pt;}
.wsa{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.506667pt;}
.ws6{word-spacing:0.000000pt;}
._31{margin-left:-5.504000pt;}
._5{margin-left:-3.000320pt;}
._3{margin-left:-1.984000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:2.381227pt;}
._1e{width:3.392000pt;}
._1d{width:4.608000pt;}
._1f{width:6.272000pt;}
._1b{width:7.536640pt;}
._1c{width:8.839680pt;}
._2b{width:9.784960pt;}
._15{width:10.859520pt;}
._16{width:11.788800pt;}
._23{width:12.994560pt;}
._13{width:13.936640pt;}
._14{width:14.863360pt;}
._30{width:16.423467pt;}
._11{width:17.456640pt;}
._2e{width:18.391680pt;}
._4{width:19.328000pt;}
._2c{width:20.265600pt;}
._6{width:21.176320pt;}
._2d{width:22.131200pt;}
._19{width:23.040000pt;}
._2a{width:24.512000pt;}
._2f{width:25.472000pt;}
._32{width:27.008000pt;}
._1a{width:28.672000pt;}
._25{width:30.016000pt;}
._26{width:31.040000pt;}
._29{width:32.256000pt;}
._8{width:33.280000pt;}
._9{width:34.344960pt;}
._7{width:35.392000pt;}
._d{width:36.395520pt;}
._e{width:37.744640pt;}
._a{width:39.756800pt;}
._22{width:41.088000pt;}
._20{width:42.432000pt;}
._21{width:43.416960pt;}
._10{width:46.242560pt;}
._f{width:47.365120pt;}
._27{width:52.963840pt;}
._28{width:56.419840pt;}
._24{width:65.856000pt;}
._b{width:67.824640pt;}
._c{width:68.812800pt;}
._12{width:70.284800pt;}
._17{width:92.280320pt;}
._18{width:93.560320pt;}
._35{width:117.312000pt;}
._36{width:119.072000pt;}
._33{width:127.424000pt;}
._34{width:128.472960pt;}
._38{width:491.008000pt;}
._37{width:804.544000pt;}
.fs6{font-size:29.440000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.480000pt;}
.y5b{bottom:4.633333pt;}
.y4{bottom:4.640000pt;}
.y9{bottom:13.440000pt;}
.y8{bottom:29.440000pt;}
.y5a{bottom:61.958667pt;}
.y3{bottom:62.112000pt;}
.y5d{bottom:63.072000pt;}
.y6{bottom:93.792000pt;}
.yb1{bottom:129.952000pt;}
.y86{bottom:130.912000pt;}
.y175{bottom:131.392000pt;}
.y133{bottom:131.712000pt;}
.y14c{bottom:135.226667pt;}
.y195{bottom:135.706667pt;}
.y118{bottom:140.826667pt;}
.yf2{bottom:145.146667pt;}
.y58{bottom:150.906667pt;}
.yb0{bottom:151.066667pt;}
.y85{bottom:152.026667pt;}
.y174{bottom:152.506667pt;}
.y132{bottom:152.826667pt;}
.y14b{bottom:156.346667pt;}
.y194{bottom:156.826667pt;}
.y161{bottom:158.426667pt;}
.y117{bottom:162.106667pt;}
.y57{bottom:172.026667pt;}
.yaf{bottom:172.346667pt;}
.yf1{bottom:172.666667pt;}
.y84{bottom:173.306667pt;}
.y173{bottom:173.786667pt;}
.y131{bottom:174.106667pt;}
.y160{bottom:176.506667pt;}
.y14a{bottom:177.626667pt;}
.y116{bottom:183.226667pt;}
.y1b1{bottom:189.786667pt;}
.y56{bottom:193.306667pt;}
.yae{bottom:193.466667pt;}
.y193{bottom:194.106667pt;}
.y83{bottom:194.426667pt;}
.y172{bottom:194.906667pt;}
.y130{bottom:195.226667pt;}
.y149{bottom:198.746667pt;}
.yf0{bottom:200.346667pt;}
.y115{bottom:204.346667pt;}
.y1b0{bottom:210.906667pt;}
.y55{bottom:214.426667pt;}
.yad{bottom:214.586667pt;}
.y192{bottom:215.226667pt;}
.y82{bottom:215.546667pt;}
.y171{bottom:216.026667pt;}
.y12f{bottom:216.346667pt;}
.y148{bottom:219.546667pt;}
.y114{bottom:224.346667pt;}
.yef{bottom:227.866667pt;}
.y1af{bottom:232.026667pt;}
.ycf{bottom:232.506667pt;}
.y54{bottom:235.546667pt;}
.yac{bottom:235.706667pt;}
.y191{bottom:236.346667pt;}
.y81{bottom:236.666667pt;}
.y170{bottom:237.146667pt;}
.y12e{bottom:237.466667pt;}
.y147{bottom:237.626667pt;}
.y113{bottom:243.106667pt;}
.yce{bottom:246.466667pt;}
.y146{bottom:251.746667pt;}
.y1ae{bottom:253.346667pt;}
.y53{bottom:256.666667pt;}
.yee{bottom:256.706667pt;}
.yab{bottom:257.026667pt;}
.y80{bottom:257.986667pt;}
.y16f{bottom:258.466667pt;}
.y12d{bottom:258.786667pt;}
.y112{bottom:264.386667pt;}
.ycd{bottom:267.586667pt;}
.y145{bottom:271.746667pt;}
.y190{bottom:273.506667pt;}
.y52{bottom:277.946667pt;}
.yaa{bottom:278.146667pt;}
.y15f{bottom:278.786667pt;}
.y7f{bottom:279.106667pt;}
.y16e{bottom:279.586667pt;}
.y12c{bottom:279.906667pt;}
.yed{bottom:284.226667pt;}
.y111{bottom:285.506667pt;}
.ycc{bottom:288.706667pt;}
.y144{bottom:290.466667pt;}
.y18f{bottom:294.786667pt;}
.y15e{bottom:297.506667pt;}
.y51{bottom:299.106667pt;}
.ya9{bottom:299.266667pt;}
.y7e{bottom:300.226667pt;}
.y16d{bottom:300.706667pt;}
.y12b{bottom:301.026667pt;}
.y110{bottom:306.626667pt;}
.ycb{bottom:309.826667pt;}
.y143{bottom:311.586667pt;}
.yec{bottom:313.026667pt;}
.y15d{bottom:318.626667pt;}
.y50{bottom:320.226667pt;}
.ya8{bottom:320.386667pt;}
.y7d{bottom:321.346667pt;}
.y12a{bottom:322.146667pt;}
.y10f{bottom:327.746667pt;}
.yca{bottom:330.946667pt;}
.y18e{bottom:331.906667pt;}
.y142{bottom:332.706667pt;}
.y3c{bottom:336.066667pt;}
.y15c{bottom:339.906667pt;}
.yeb{bottom:340.546667pt;}
.y4f{bottom:341.346667pt;}
.ya7{bottom:341.666667pt;}
.y7c{bottom:342.466667pt;}
.y129{bottom:343.426667pt;}
.y10e{bottom:349.026667pt;}
.yc9{bottom:352.226667pt;}
.y141{bottom:352.866667pt;}
.y18d{bottom:353.026667pt;}
.y1ad{bottom:353.986667pt;}
.y3b{bottom:355.426667pt;}
.y15b{bottom:361.026667pt;}
.y4e{bottom:362.626667pt;}
.ya6{bottom:362.786667pt;}
.y7b{bottom:363.746667pt;}
.y128{bottom:364.546667pt;}
.yea{bottom:368.226667pt;}
.y10d{bottom:370.146667pt;}
.y140{bottom:371.586667pt;}
.yc8{bottom:373.346667pt;}
.y3a{bottom:374.786667pt;}
.y1ac{bottom:375.106667pt;}
.y15a{bottom:382.146667pt;}
.y4d{bottom:383.746667pt;}
.ya5{bottom:383.906667pt;}
.y7a{bottom:384.866667pt;}
.y127{bottom:385.666667pt;}
.y18c{bottom:390.146667pt;}
.y10c{bottom:391.266667pt;}
.y13f{bottom:391.586667pt;}
.y39{bottom:394.306667pt;}
.yc7{bottom:394.466667pt;}
.y1ab{bottom:396.226667pt;}
.ye9{bottom:397.026667pt;}
.y159{bottom:403.266667pt;}
.y4c{bottom:404.866667pt;}
.ya4{bottom:405.026667pt;}
.y79{bottom:405.986667pt;}
.y126{bottom:406.786667pt;}
.y13e{bottom:410.306667pt;}
.y10b{bottom:411.266667pt;}
.yc6{bottom:415.586667pt;}
.y158{bottom:423.266667pt;}
.ye8{bottom:424.546667pt;}
.y4b{bottom:425.986667pt;}
.ya3{bottom:426.306667pt;}
.y78{bottom:427.106667pt;}
.y125{bottom:428.066667pt;}
.y38{bottom:429.506667pt;}
.y10a{bottom:430.146667pt;}
.y13d{bottom:431.586667pt;}
.y1aa{bottom:433.346667pt;}
.yc5{bottom:436.866667pt;}
.y37{bottom:441.826667pt;}
.y157{bottom:442.146667pt;}
.y4a{bottom:447.266667pt;}
.ya2{bottom:447.426667pt;}
.y124{bottom:448.066667pt;}
.y18b{bottom:448.546667pt;}
.y16c{bottom:449.186667pt;}
.y109{bottom:451.266667pt;}
.ye7{bottom:452.066667pt;}
.y13c{bottom:452.706667pt;}
.y1a9{bottom:454.626667pt;}
.yc4{bottom:457.986667pt;}
.y156{bottom:463.266667pt;}
.y77{bottom:465.826667pt;}
.y123{bottom:466.786667pt;}
.y36{bottom:468.226667pt;}
.y49{bottom:468.386667pt;}
.ya1{bottom:468.546667pt;}
.y18a{bottom:469.666667pt;}
.y16b{bottom:470.306667pt;}
.y108{bottom:472.386667pt;}
.y13b{bottom:473.826667pt;}
.y1a8{bottom:475.746667pt;}
.yc3{bottom:479.106667pt;}
.ye6{bottom:479.746667pt;}
.y35{bottom:481.346667pt;}
.y155{bottom:484.386667pt;}
.y122{bottom:487.906667pt;}
.y48{bottom:489.506667pt;}
.ya0{bottom:489.666667pt;}
.y16a{bottom:491.426667pt;}
.y107{bottom:493.506667pt;}
.y76{bottom:494.973333pt;}
.y1a7{bottom:496.893333pt;}
.y34{bottom:497.346667pt;}
.ye5{bottom:498.813333pt;}
.yc2{bottom:500.253333pt;}
.y154{bottom:505.533333pt;}
.y189{bottom:506.813333pt;}
.y121{bottom:509.053333pt;}
.y47{bottom:510.626667pt;}
.y9f{bottom:510.813333pt;}
.y75{bottom:511.933333pt;}
.ye4{bottom:512.733333pt;}
.y106{bottom:514.653333pt;}
.y13a{bottom:516.253333pt;}
.y33{bottom:516.866667pt;}
.yc1{bottom:521.533333pt;}
.y153{bottom:526.813333pt;}
.y188{bottom:527.933333pt;}
.y120{bottom:530.333333pt;}
.y46{bottom:531.773333pt;}
.y9e{bottom:532.093333pt;}
.y74{bottom:533.053333pt;}
.ye3{bottom:533.853333pt;}
.y1a6{bottom:534.013333pt;}
.y105{bottom:535.933333pt;}
.y32{bottom:536.253333pt;}
.yc0{bottom:542.653333pt;}
.y152{bottom:547.933333pt;}
.y187{bottom:549.213333pt;}
.y11f{bottom:551.453333pt;}
.y45{bottom:553.053333pt;}
.y9d{bottom:553.213333pt;}
.y73{bottom:554.173333pt;}
.ye2{bottom:554.973333pt;}
.y1a5{bottom:555.293333pt;}
.y31{bottom:555.613333pt;}
.y104{bottom:557.053333pt;}
.ybf{bottom:562.653333pt;}
.y151{bottom:569.053333pt;}
.y186{bottom:570.333333pt;}
.y11e{bottom:572.573333pt;}
.y44{bottom:574.173333pt;}
.y9c{bottom:574.333333pt;}
.y72{bottom:575.293333pt;}
.y139{bottom:575.773333pt;}
.ye1{bottom:576.093333pt;}
.y1a4{bottom:576.413333pt;}
.y103{bottom:578.173333pt;}
.ybe{bottom:580.253333pt;}
.y150{bottom:590.173333pt;}
.y30{bottom:590.973333pt;}
.y185{bottom:591.453333pt;}
.y11d{bottom:593.693333pt;}
.y43{bottom:595.293333pt;}
.y9b{bottom:595.453333pt;}
.y71{bottom:596.413333pt;}
.ye0{bottom:597.213333pt;}
.ybd{bottom:597.853333pt;}
.y102{bottom:599.293333pt;}
.y2f{bottom:603.293333pt;}
.y1a3{bottom:610.813333pt;}
.y14f{bottom:611.453333pt;}
.y184{bottom:612.573333pt;}
.y11c{bottom:614.973333pt;}
.ybc{bottom:615.613333pt;}
.y9a{bottom:616.253333pt;}
.y42{bottom:616.413333pt;}
.y169{bottom:617.373333pt;}
.y70{bottom:617.693333pt;}
.ydf{bottom:618.493333pt;}
.y101{bottom:620.573333pt;}
.y2e{bottom:629.693333pt;}
.y1a2{bottom:632.093333pt;}
.y14e{bottom:632.573333pt;}
.ybb{bottom:633.213333pt;}
.y99{bottom:635.773333pt;}
.y11b{bottom:636.093333pt;}
.y41{bottom:637.693333pt;}
.y6f{bottom:638.813333pt;}
.yde{bottom:639.613333pt;}
.y100{bottom:641.693333pt;}
.y2d{bottom:642.973333pt;}
.y183{bottom:649.853333pt;}
.yba{bottom:650.813333pt;}
.y1a1{bottom:653.213333pt;}
.y14d{bottom:653.693333pt;}
.y2c{bottom:655.453333pt;}
.y98{bottom:656.093333pt;}
.y11a{bottom:657.213333pt;}
.y40{bottom:658.813333pt;}
.y6e{bottom:659.933333pt;}
.ydd{bottom:660.733333pt;}
.yff{bottom:662.813333pt;}
.yb9{bottom:666.333333pt;}
.y182{bottom:670.973333pt;}
.y1a0{bottom:674.333333pt;}
.y97{bottom:674.813333pt;}
.y119{bottom:677.213333pt;}
.y168{bottom:678.333333pt;}
.y3f{bottom:679.933333pt;}
.yb8{bottom:680.093333pt;}
.y6d{bottom:681.053333pt;}
.ydc{bottom:681.853333pt;}
.y2b{bottom:682.973333pt;}
.yfe{bottom:683.933333pt;}
.y181{bottom:692.093333pt;}
.y19f{bottom:695.453333pt;}
.y96{bottom:696.093333pt;}
.y2a{bottom:696.253333pt;}
.y167{bottom:699.613333pt;}
.y3e{bottom:700.733333pt;}
.yb7{bottom:701.373333pt;}
.y138{bottom:702.013333pt;}
.y6c{bottom:702.333333pt;}
.ydb{bottom:703.133333pt;}
.yfd{bottom:705.213333pt;}
.y29{bottom:708.893333pt;}
.y95{bottom:717.213333pt;}
.y28{bottom:720.093333pt;}
.y137{bottom:720.733333pt;}
.y3d{bottom:721.213333pt;}
.yb6{bottom:722.493333pt;}
.y6b{bottom:723.453333pt;}
.yda{bottom:724.253333pt;}
.yfc{bottom:725.213333pt;}
.y180{bottom:729.213333pt;}
.y19e{bottom:732.733333pt;}
.y94{bottom:738.333333pt;}
.y136{bottom:741.853333pt;}
.yb5{bottom:743.613333pt;}
.y6a{bottom:744.573333pt;}
.yd9{bottom:745.413333pt;}
.y19{bottom:746.653333pt;}
.y27{bottom:753.213333pt;}
.y19d{bottom:753.893333pt;}
.y93{bottom:759.493333pt;}
.y26{bottom:762.653333pt;}
.y135{bottom:763.013333pt;}
.yb4{bottom:763.973333pt;}
.yd8{bottom:765.413333pt;}
.y18{bottom:765.693333pt;}
.y69{bottom:765.733333pt;}
.y17f{bottom:766.533333pt;}
.y25{bottom:780.293333pt;}
.y92{bottom:780.773333pt;}
.yb3{bottom:783.973333pt;}
.yd7{bottom:784.293333pt;}
.y68{bottom:787.013333pt;}
.y17e{bottom:787.653333pt;}
.yfb{bottom:789.253333pt;}
.y19c{bottom:791.013333pt;}
.y17{bottom:791.333333pt;}
.y91{bottom:801.893333pt;}
.yb2{bottom:803.973333pt;}
.y134{bottom:804.293333pt;}
.yd6{bottom:805.413333pt;}
.y67{bottom:808.133333pt;}
.y17d{bottom:808.773333pt;}
.y19b{bottom:812.133333pt;}
.y24{bottom:812.453333pt;}
.y16{bottom:816.453333pt;}
.yfa{bottom:816.773333pt;}
.y23{bottom:821.893333pt;}
.y90{bottom:823.013333pt;}
.yd5{bottom:826.533333pt;}
.y66{bottom:829.253333pt;}
.y17c{bottom:829.893333pt;}
.y19a{bottom:833.253333pt;}
.y15{bottom:835.653333pt;}
.y22{bottom:839.653333pt;}
.y8f{bottom:844.133333pt;}
.yf9{bottom:844.453333pt;}
.yd4{bottom:847.653333pt;}
.y65{bottom:850.373333pt;}
.y17b{bottom:851.173333pt;}
.y199{bottom:854.533333pt;}
.y14{bottom:855.013333pt;}
.y21{bottom:860.453333pt;}
.y8e{bottom:865.253333pt;}
.yd3{bottom:868.933333pt;}
.y1b2{bottom:870.533333pt;}
.y64{bottom:871.653333pt;}
.y17a{bottom:872.293333pt;}
.yf8{bottom:873.093333pt;}
.y13{bottom:874.373333pt;}
.y7{bottom:882.533333pt;}
.y8d{bottom:886.533333pt;}
.y20{bottom:888.613333pt;}
.yd2{bottom:890.053333pt;}
.y198{bottom:891.653333pt;}
.y63{bottom:892.773333pt;}
.y12{bottom:893.733333pt;}
.yf7{bottom:900.773333pt;}
.y8c{bottom:907.653333pt;}
.y179{bottom:909.413333pt;}
.yd1{bottom:911.173333pt;}
.y197{bottom:912.773333pt;}
.y62{bottom:913.893333pt;}
.y1f{bottom:916.773333pt;}
.yf6{bottom:928.453333pt;}
.y8b{bottom:928.773333pt;}
.y11{bottom:930.533333pt;}
.yd0{bottom:931.173333pt;}
.y166{bottom:932.293333pt;}
.y196{bottom:933.893333pt;}
.y61{bottom:935.013333pt;}
.y1e{bottom:942.053333pt;}
.y10{bottom:949.093333pt;}
.y8a{bottom:949.893333pt;}
.y178{bottom:951.653333pt;}
.y165{bottom:953.413333pt;}
.y60{bottom:956.293333pt;}
.yf5{bottom:957.093333pt;}
.y1d{bottom:959.813333pt;}
.yf{bottom:962.533333pt;}
.y89{bottom:971.173333pt;}
.y177{bottom:972.933333pt;}
.y164{bottom:974.693333pt;}
.ye{bottom:975.813333pt;}
.y1c{bottom:977.413333pt;}
.yf4{bottom:984.773333pt;}
.yd{bottom:989.093333pt;}
.y88{bottom:992.293333pt;}
.y176{bottom:993.253333pt;}
.y163{bottom:994.693333pt;}
.y5f{bottom:994.853333pt;}
.y1b{bottom:995.013333pt;}
.yc{bottom:1002.533333pt;}
.y5e{bottom:1011.200000pt;}
.yf3{bottom:1012.320000pt;}
.y1a{bottom:1012.960000pt;}
.y162{bottom:1013.120000pt;}
.y87{bottom:1013.440000pt;}
.yb{bottom:1015.840000pt;}
.ya{bottom:1029.120000pt;}
.y59{bottom:1057.440000pt;}
.y1{bottom:1057.600000pt;}
.y5c{bottom:1102.400000pt;}
.y5{bottom:1102.560000pt;}
.h2{height:17.280000pt;}
.h15{height:18.553333pt;}
.h4{height:18.560000pt;}
.h10{height:28.893750pt;}
.h18{height:31.390625pt;}
.h12{height:31.406250pt;}
.h11{height:36.431250pt;}
.h7{height:42.226667pt;}
.h6{height:44.648750pt;}
.h13{height:47.109375pt;}
.h9{height:52.134375pt;}
.h1a{height:52.750000pt;}
.he{height:53.535000pt;}
.h16{height:57.375000pt;}
.hb{height:57.758750pt;}
.h3{height:57.787500pt;}
.h8{height:59.340000pt;}
.h19{height:62.781250pt;}
.h5{height:62.812500pt;}
.hf{height:64.500000pt;}
.h17{height:65.781915pt;}
.h1b{height:71.524375pt;}
.ha{height:73.490625pt;}
.hc{height:85.785000pt;}
.hd{height:91.590000pt;}
.h14{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:21.266667pt;}
.w4{width:144.985333pt;}
.w2{width:553.840000pt;}
.w5{width:793.760000pt;}
.w6{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x12{left:1.270667pt;}
.x3{left:2.720000pt;}
.x4{left:22.720000pt;}
.x6{left:30.240000pt;}
.x5{left:33.441333pt;}
.x1{left:93.321333pt;}
.x13{left:113.472000pt;}
.x15{left:122.912000pt;}
.x14{left:124.032000pt;}
.x1d{left:160.666667pt;}
.x16{left:170.266667pt;}
.x18{left:179.706667pt;}
.x10{left:199.226667pt;}
.x17{left:226.906667pt;}
.xe{left:231.866667pt;}
.x19{left:233.466667pt;}
.x1b{left:236.346667pt;}
.x7{left:239.386667pt;}
.xa{left:247.266667pt;}
.x9{left:252.866667pt;}
.x1c{left:255.226667pt;}
.x1a{left:257.466667pt;}
.xf{left:364.066667pt;}
.xd{left:386.946667pt;}
.xb{left:421.213333pt;}
.x11{left:456.893333pt;}
.xc{left:461.853333pt;}
.x8{left:475.133333pt;}
.x2{left:680.773333pt;}
}




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