
    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_972181dfe6fbe0a9a57ba26a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;font-style:normal;font-weight: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_63173f454cb61cb9f474169f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d57daa214bfdc2ce0f594486.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;font-style:normal;font-weight: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_cca9553dae0e2739b1db1e69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;font-style:normal;font-weight: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_0a85f0c6730add6f48aae152.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_94ee9d385bc6bf245d534278.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b89631e5a4a5191e0076b5f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;font-style:normal;font-weight: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_3e798faed2958d96976a9ea6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;font-style:normal;font-weight: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_ddc52ddc006acb4d96b13b40.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894531;font-style:normal;font-weight: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_99023093660c6573ec9778ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.907227;font-style:normal;font-weight: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_bb9b197d48209e3fb3a42930.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight: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_1497004681fa8f154efb91db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.907227;font-style:normal;font-weight: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_3526ed6ffb83b261a179ec65.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.905762;font-style:normal;font-weight: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_37203b1b9c9cd5e313500e74.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927246;font-style:normal;font-weight: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_583eaedfa38b744447b9886e.woff2')format("woff");}.fff{font-family:fff;line-height:0.881836;font-style:normal;font-weight: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_dbd4917768a6bda490050f3d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.872559;font-style:normal;font-weight: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_a908e818c8b02f6e546dff4f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.881836;font-style:normal;font-weight: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_653c3e631b25849f206c6c36.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677734;font-style:normal;font-weight: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_581f4f25ea853dcc5dfc75dc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.881836;font-style:normal;font-weight: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_fa79ddb0250c03204ce79db9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.677246;font-style:normal;font-weight: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_8e8175894c403b7b5e59e497.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.881836;font-style:normal;font-weight: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_edf871c2291229f4b2f7c6bd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.693359;font-style:normal;font-weight: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_a6bf621a85ea400c9f02afa9.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.881836;font-style:normal;font-weight: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_653c3e631b25849f206c6c36.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.677734;font-style:normal;font-weight: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_c13c99bf1fc99be819bf5a4a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.920898;font-style:normal;font-weight: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_80cc511235d027b1492e00ed.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.881836;font-style:normal;font-weight: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_93843c868a988679dea5e60b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.886719;font-style:normal;font-weight: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_5756b83f4a8bf955a05633bb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.883000;font-style:normal;font-weight: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_665eb342968c6de8b32a07ac.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.893555;font-style:normal;font-weight: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_6a1a3da5e468f2566ddcf624.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.886719;font-style:normal;font-weight: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_80cc511235d027b1492e00ed.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.881836;font-style:normal;font-weight: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_7db572075f49b04b2ff97e08.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.881836;font-style:normal;font-weight: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_583eaedfa38b744447b9886e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.881836;font-style:normal;font-weight: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_243f2b37a4109944f4b9207c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.706000;font-style:normal;font-weight: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_4574bb1d59ea78f643fa78ec.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.905762;font-style:normal;font-weight: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_51b5a21f871f56ea4b8cb260.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.905762;font-style:normal;font-weight: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_43bf57ac2f6f909d6e31a28f.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.977051;font-style:normal;font-weight: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_c7a9ecef3602b928bffe9995.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.075195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m4{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-12.862200px;}
.va{vertical-align:-11.284260px;}
.vc{vertical-align:-9.873660px;}
.v7{vertical-align:-6.000000px;}
.v1{vertical-align:-1.413750px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.399740px;}
.v9{vertical-align:6.000000px;}
.v5{vertical-align:15.300000px;}
.v8{vertical-align:18.000000px;}
.v6{vertical-align:19.800000px;}
.v3{vertical-align:33.051480px;}
.v4{vertical-align:44.305800px;}
.ls3e{letter-spacing:-13.320000px;}
.ls3a{letter-spacing:-11.430000px;}
.ls38{letter-spacing:-10.845000px;}
.ls43{letter-spacing:-9.180000px;}
.ls40{letter-spacing:-4.995000px;}
.ls18{letter-spacing:-1.320000px;}
.ls28{letter-spacing:-0.990000px;}
.ls29{letter-spacing:-0.924000px;}
.ls27{letter-spacing:-0.858000px;}
.ls31{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.449261px;}
.ls6{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000600px;}
.ls37{letter-spacing:0.006600px;}
.ls3b{letter-spacing:0.007200px;}
.ls3c{letter-spacing:0.007800px;}
.ls24{letter-spacing:0.009000px;}
.ls21{letter-spacing:0.010200px;}
.ls2{letter-spacing:0.042000px;}
.ls2a{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls5{letter-spacing:0.096000px;}
.ls12{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.132000px;}
.ls4{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.198000px;}
.ls2f{letter-spacing:0.214500px;}
.ls33{letter-spacing:0.224630px;}
.ls3d{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.396000px;}
.lsb{letter-spacing:0.462000px;}
.ls13{letter-spacing:0.528000px;}
.ls2e{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.726000px;}
.lse{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.858000px;}
.ls2b{letter-spacing:0.990000px;}
.ls35{letter-spacing:1.122000px;}
.ls34{letter-spacing:1.254000px;}
.ls42{letter-spacing:1.260000px;}
.lsf{letter-spacing:1.320000px;}
.ls17{letter-spacing:1.386000px;}
.ls2d{letter-spacing:1.452000px;}
.ls36{letter-spacing:1.518000px;}
.ls46{letter-spacing:1.920000px;}
.ls39{letter-spacing:2.400000px;}
.ls45{letter-spacing:3.000000px;}
.ls3f{letter-spacing:4.380000px;}
.ls20{letter-spacing:4.609800px;}
.ls44{letter-spacing:4.680000px;}
.ls1a{letter-spacing:5.399760px;}
.ls41{letter-spacing:5.400000px;}
.ls19{letter-spacing:7.502880px;}
.ls1{letter-spacing:10.656000px;}
.ls1e{letter-spacing:10.995600px;}
.ls1c{letter-spacing:11.189640px;}
.ls3{letter-spacing:12.510000px;}
.ls1b{letter-spacing:14.332500px;}
.ls23{letter-spacing:15.264480px;}
.ls1f{letter-spacing:23.672880px;}
.ls22{letter-spacing:23.737560px;}
.ls1d{letter-spacing:25.101120px;}
.ls26{letter-spacing:108.345000px;}
.ls30{letter-spacing:114.756600px;}
.ls8{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.ws12{word-spacing:-66.000000px;}
.ws9{word-spacing:-64.680000px;}
.wsd{word-spacing:-60.000000px;}
.wsb{word-spacing:-55.883520px;}
.wsa{word-spacing:-54.978000px;}
.ws3{word-spacing:-16.566000px;}
.ws4{word-spacing:-16.500000px;}
.ws13{word-spacing:-15.510000px;}
.ws1{word-spacing:-15.000000px;}
.ws11{word-spacing:-10.725000px;}
.wse{word-spacing:-9.750000px;}
.ws0{word-spacing:-9.324000px;}
.wsf{word-spacing:-8.287500px;}
.ws1a{word-spacing:-6.255000px;}
.ws15{word-spacing:-0.033855px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:7.095600px;}
.ws1b{word-spacing:7.110000px;}
.ws17{word-spacing:10.440000px;}
.ws18{word-spacing:11.025000px;}
.ws19{word-spacing:15.390000px;}
.ws8{word-spacing:70.582800px;}
.ws7{word-spacing:104.909400px;}
.wsc{word-spacing:142.153704px;}
.ws14{word-spacing:148.081770px;}
.ws6{word-spacing:314.644200px;}
.ws10{word-spacing:363.756000px;}
.ws5{word-spacing:432.128400px;}
.ws16{word-spacing:922.555800px;}
._29{margin-left:-1782.712200px;}
._d{margin-left:-16.500000px;}
._1{margin-left:-10.662600px;}
._5{margin-left:-9.324000px;}
._2b{margin-left:-7.524000px;}
._2a{margin-left:-5.940000px;}
._2d{margin-left:-4.831200px;}
._f{margin-left:-3.110250px;}
._b{margin-left:-1.843200px;}
._7{width:1.056000px;}
._4{width:2.814000px;}
._3{width:4.662000px;}
._6{width:6.000000px;}
._9{width:7.321200px;}
._8{width:8.515200px;}
._a{width:9.628800px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._21{width:23.689800px;}
._1a{width:28.685400px;}
._20{width:33.710400px;}
._22{width:37.020000px;}
._1c{width:39.360000px;}
._1b{width:40.380000px;}
._1e{width:43.731000px;}
._e{width:45.357000px;}
._1d{width:49.080000px;}
._19{width:54.612000px;}
._17{width:57.082800px;}
._2c{width:59.607000px;}
._18{width:70.582200px;}
._14{width:121.891800px;}
._10{width:123.324000px;}
._13{width:126.159000px;}
._12{width:127.575000px;}
._11{width:129.014400px;}
._15{width:143.133600px;}
._16{width:162.982800px;}
._23{width:190.519200px;}
._1f{width:377.256000px;}
._28{width:379.809600px;}
._27{width:477.283200px;}
._25{width:538.470000px;}
._26{width:594.244200px;}
._c{width:1157.565600px;}
._24{width:1159.762800px;}
.fc2{color:rgb(97,151,215);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs18{font-size:19.737600px;}
.fs3{font-size:27.000000px;}
.fs19{font-size:28.078800px;}
.fs14{font-size:33.150000px;}
.fs17{font-size:33.855000px;}
.fs16{font-size:33.910200px;}
.fs0{font-size:36.000000px;}
.fs13{font-size:39.000000px;}
.fs11{font-size:41.895000px;}
.fs5{font-size:42.000000px;}
.fs15{font-size:42.900000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fse{font-size:56.550000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs12{font-size:64.033200px;}
.fs10{font-size:64.680000px;}
.fsc{font-size:66.000000px;}
.fsf{font-size:66.670618px;}
.fs8{font-size:72.000000px;}
.fsd{font-size:79.962600px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.yba{bottom:1.371750px;}
.yf5{bottom:1.410300px;}
.y95{bottom:6.130200px;}
.yb9{bottom:12.448200px;}
.yf4{bottom:12.486750px;}
.ybb{bottom:14.331750px;}
.y9b{bottom:21.979012px;}
.ya3{bottom:40.258800px;}
.y121{bottom:53.040249px;}
.y146{bottom:57.219750px;}
.ya2{bottom:57.223800px;}
.y144{bottom:57.572400px;}
.y145{bottom:68.507565px;}
.y159{bottom:71.869350px;}
.y143{bottom:76.974150px;}
.y120{bottom:79.888650px;}
.y122{bottom:80.236230px;}
.y9c{bottom:81.780637px;}
.y158{bottom:83.059800px;}
.y1ad{bottom:85.038900px;}
.y193{bottom:85.039050px;}
.y1{bottom:85.039350px;}
.y30{bottom:85.039500px;}
.y148{bottom:85.039650px;}
.y12c{bottom:85.039800px;}
.y157{bottom:92.961000px;}
.y5b{bottom:119.055000px;}
.yf{bottom:119.055150px;}
.y192{bottom:119.134050px;}
.yb4{bottom:119.503050px;}
.y147{bottom:119.744100px;}
.y117{bottom:120.541050px;}
.y93{bottom:120.582600px;}
.ydf{bottom:120.798450px;}
.y80{bottom:120.805200px;}
.y163{bottom:121.015500px;}
.y1ac{bottom:122.029200px;}
.y108{bottom:122.359200px;}
.ya1{bottom:123.910387px;}
.y1cf{bottom:128.522100px;}
.y99{bottom:129.127125px;}
.ye{bottom:131.055150px;}
.y191{bottom:136.730550px;}
.y5a{bottom:136.909350px;}
.yb3{bottom:137.099550px;}
.y116{bottom:138.137700px;}
.y92{bottom:138.179100px;}
.yde{bottom:138.395100px;}
.y7f{bottom:138.401700px;}
.y1ab{bottom:139.625700px;}
.ya0{bottom:140.875387px;}
.y105{bottom:143.558100px;}
.y107{bottom:145.058100px;}
.y1ce{bottom:146.337600px;}
.y142{bottom:147.787500px;}
.y12b{bottom:148.340550px;}
.yd{bottom:149.433000px;}
.y9a{bottom:151.195762px;}
.y190{bottom:154.327050px;}
.yb2{bottom:154.696050px;}
.y59{bottom:154.763850px;}
.y115{bottom:155.734200px;}
.y91{bottom:155.775600px;}
.y7e{bottom:155.998200px;}
.y1aa{bottom:157.222200px;}
.y1cd{bottom:164.153100px;}
.y12a{bottom:165.937050px;}
.y106{bottom:167.757000px;}
.yc{bottom:167.811000px;}
.y18f{bottom:171.923550px;}
.yb1{bottom:172.292550px;}
.y58{bottom:172.618200px;}
.y90{bottom:173.372100px;}
.y7d{bottom:173.594700px;}
.y1a9{bottom:174.818700px;}
.y1cc{bottom:181.968600px;}
.y114{bottom:182.127900px;}
.y129{bottom:183.533550px;}
.yb{bottom:184.062900px;}
.ydd{bottom:188.077200px;}
.y18e{bottom:189.520050px;}
.yb0{bottom:189.889050px;}
.y57{bottom:190.472550px;}
.y8f{bottom:190.968600px;}
.y7c{bottom:191.191200px;}
.y1a8{bottom:192.415200px;}
.y9f{bottom:194.626162px;}
.ya{bottom:196.062900px;}
.y113{bottom:199.724400px;}
.y1cb{bottom:199.784100px;}
.y104{bottom:200.739150px;}
.y128{bottom:201.130050px;}
.ydc{bottom:205.005450px;}
.y18d{bottom:207.116550px;}
.y56{bottom:208.327050px;}
.y7b{bottom:208.787700px;}
.y1a7{bottom:210.011700px;}
.y9{bottom:214.440900px;}
.y98{bottom:215.620350px;}
.y112{bottom:217.320900px;}
.y8e{bottom:217.362450px;}
.y103{bottom:218.335650px;}
.y127{bottom:218.726550px;}
.ydb{bottom:221.933550px;}
.y18c{bottom:224.713050px;}
.y55{bottom:226.181400px;}
.y7a{bottom:226.384200px;}
.y8{bottom:226.440900px;}
.y1a6{bottom:227.608200px;}
.y17a{bottom:232.860450px;}
.y111{bottom:234.917400px;}
.y8d{bottom:234.958950px;}
.y1ca{bottom:235.194300px;}
.y102{bottom:235.932150px;}
.y126{bottom:236.323050px;}
.y9e{bottom:238.410000px;}
.yda{bottom:238.861650px;}
.yaf{bottom:239.571300px;}
.y18b{bottom:242.309550px;}
.y79{bottom:243.980700px;}
.y54{bottom:244.035750px;}
.y1a5{bottom:245.204700px;}
.y179{bottom:250.456950px;}
.y110{bottom:252.514050px;}
.y8c{bottom:252.555450px;}
.y101{bottom:253.528650px;}
.y125{bottom:253.919550px;}
.yd9{bottom:255.789900px;}
.y141{bottom:258.303450px;}
.y78{bottom:261.577200px;}
.y53{bottom:261.890100px;}
.y1a4{bottom:262.801200px;}
.yae{bottom:265.003350px;}
.y178{bottom:268.053450px;}
.y10f{bottom:270.110400px;}
.y8b{bottom:270.151950px;}
.y100{bottom:271.125150px;}
.yd8{bottom:272.718000px;}
.y97{bottom:273.640650px;}
.y140{bottom:275.899950px;}
.y77{bottom:279.173700px;}
.y52{bottom:279.744600px;}
.y1a3{bottom:280.397700px;}
.y9d{bottom:282.900712px;}
.y177{bottom:285.649950px;}
.y10e{bottom:287.706900px;}
.y1c9{bottom:287.980050px;}
.yff{bottom:288.721650px;}
.y162{bottom:289.138350px;}
.y2f{bottom:289.471350px;}
.yd7{bottom:289.646100px;}
.y18a{bottom:291.991800px;}
.y13f{bottom:293.496450px;}
.y76{bottom:296.770200px;}
.yad{bottom:297.391800px;}
.y51{bottom:297.598950px;}
.y176{bottom:303.246450px;}
.y8a{bottom:305.343000px;}
.y1c8{bottom:305.576550px;}
.yd6{bottom:306.574350px;}
.y124{bottom:306.705300px;}
.y161{bottom:306.734850px;}
.y189{bottom:308.919900px;}
.y13e{bottom:311.092950px;}
.y2e{bottom:311.857500px;}
.y75{bottom:314.366700px;}
.ya4{bottom:314.574300px;}
.y96{bottom:314.576550px;}
.y50{bottom:315.453300px;}
.y123{bottom:322.692300px;}
.y1c7{bottom:323.173050px;}
.yd5{bottom:323.502450px;}
.yfd{bottom:323.572200px;}
.y160{bottom:324.331350px;}
.y188{bottom:325.848000px;}
.y2d{bottom:326.250000px;}
.y13d{bottom:328.689450px;}
.y175{bottom:329.640300px;}
.y74{bottom:331.963200px;}
.y1a2{bottom:336.555300px;}
.yac{bottom:338.890500px;}
.yd4{bottom:340.430550px;}
.y10d{bottom:340.492800px;}
.y2c{bottom:340.642500px;}
.y1c6{bottom:340.769550px;}
.y15f{bottom:341.927700px;}
.y4f{bottom:342.105150px;}
.y187{bottom:342.776250px;}
.yfc{bottom:346.271100px;}
.y13c{bottom:346.285950px;}
.yfe{bottom:346.303650px;}
.y174{bottom:347.236800px;}
.y73{bottom:349.559700px;}
.y11f{bottom:352.023000px;}
.y1a1{bottom:352.542300px;}
.y2b{bottom:355.035000px;}
.yab{bottom:356.487000px;}
.yd3{bottom:357.358800px;}
.y89{bottom:358.128900px;}
.y1c5{bottom:358.366050px;}
.y15e{bottom:359.524350px;}
.y4e{bottom:359.959500px;}
.y13b{bottom:363.882450px;}
.y173{bottom:364.833300px;}
.y72{bottom:367.156200px;}
.y186{bottom:368.208300px;}
.yfb{bottom:368.969850px;}
.y2a{bottom:369.427500px;}
.yaa{bottom:374.083500px;}
.yd2{bottom:374.286900px;}
.y88{bottom:375.725400px;}
.y15d{bottom:377.120700px;}
.y4d{bottom:377.813850px;}
.yf7{bottom:380.319300px;}
.y13a{bottom:381.478950px;}
.y172{bottom:382.429800px;}
.y185{bottom:382.600800px;}
.y29{bottom:383.820000px;}
.y71{bottom:384.752700px;}
.yd1{bottom:391.215000px;}
.yfa{bottom:391.668750px;}
.ya9{bottom:391.680000px;}
.y87{bottom:393.321900px;}
.y1c4{bottom:393.557250px;}
.y4c{bottom:395.668350px;}
.y28{bottom:398.212500px;}
.y139{bottom:399.075450px;}
.y70{bottom:402.349200px;}
.yf3{bottom:403.020000px;}
.yd0{bottom:408.143250px;}
.y171{bottom:408.823650px;}
.ya8{bottom:409.276500px;}
.y86{bottom:410.918400px;}
.y27{bottom:412.605000px;}
.yf6{bottom:412.835100px;}
.y4b{bottom:413.522700px;}
.yf9{bottom:414.367650px;}
.y184{bottom:414.989100px;}
.y138{bottom:416.671950px;}
.ycf{bottom:425.071350px;}
.ya7{bottom:426.873000px;}
.y15c{bottom:426.900450px;}
.y26{bottom:426.997500px;}
.y85{bottom:428.514900px;}
.y6f{bottom:428.742900px;}
.y4a{bottom:431.377050px;}
.y137{bottom:434.268450px;}
.yf8{bottom:437.066550px;}
.y25{bottom:441.390000px;}
.yce{bottom:441.999450px;}
.y15b{bottom:442.887450px;}
.ya6{bottom:444.469500px;}
.y84{bottom:446.111400px;}
.y6e{bottom:446.339550px;}
.y1c3{bottom:446.343000px;}
.y49{bottom:449.231400px;}
.y136{bottom:451.864950px;}
.y170{bottom:452.812200px;}
.y24{bottom:455.782500px;}
.ycd{bottom:458.927700px;}
.y83{bottom:463.707900px;}
.y15a{bottom:463.844400px;}
.y6d{bottom:463.935900px;}
.y1c2{bottom:463.939500px;}
.y183{bottom:466.165350px;}
.y135{bottom:469.461450px;}
.y23{bottom:470.175000px;}
.y16f{bottom:470.408550px;}
.y11e{bottom:472.166100px;}
.yf2{bottom:472.731750px;}
.ycc{bottom:475.855800px;}
.y48{bottom:475.883250px;}
.y82{bottom:481.304400px;}
.y6c{bottom:481.532550px;}
.y1c1{bottom:481.536000px;}
.y182{bottom:483.761850px;}
.y22{bottom:484.567500px;}
.y134{bottom:487.057950px;}
.y156{bottom:487.197000px;}
.y155{bottom:487.197900px;}
.y16e{bottom:488.005200px;}
.y11d{bottom:489.762600px;}
.yf1{bottom:490.328250px;}
.ya5{bottom:492.123150px;}
.ycb{bottom:492.783900px;}
.y47{bottom:493.737600px;}
.y6b{bottom:499.129050px;}
.y1c0{bottom:499.132500px;}
.y181{bottom:501.358500px;}
.y133{bottom:504.654450px;}
.y16d{bottom:505.601550px;}
.y11c{bottom:507.359100px;}
.yf0{bottom:507.924750px;}
.yca{bottom:509.712000px;}
.y46{bottom:511.591950px;}
.y21{bottom:514.947450px;}
.y94{bottom:516.103500px;}
.y6a{bottom:516.725400px;}
.y1bf{bottom:516.729000px;}
.y180{bottom:518.954850px;}
.y132{bottom:522.250950px;}
.y16c{bottom:523.198050px;}
.y11b{bottom:524.955600px;}
.yef{bottom:525.521250px;}
.yc9{bottom:526.640250px;}
.y45{bottom:529.446450px;}
.y81{bottom:534.090150px;}
.y69{bottom:534.322050px;}
.y1be{bottom:534.325500px;}
.y17f{bottom:536.551500px;}
.y20{bottom:537.333600px;}
.y131{bottom:539.847450px;}
.y16b{bottom:540.794700px;}
.y11a{bottom:542.552100px;}
.yee{bottom:543.117750px;}
.yc8{bottom:543.568350px;}
.y1f{bottom:551.726100px;}
.y68{bottom:551.918400px;}
.y1bd{bottom:551.922000px;}
.y44{bottom:556.098150px;}
.yc7{bottom:560.496600px;}
.yed{bottom:560.714250px;}
.y17e{bottom:562.945200px;}
.y1e{bottom:566.118600px;}
.y130{bottom:566.241300px;}
.y119{bottom:568.945950px;}
.y67{bottom:569.514900px;}
.y1bc{bottom:569.518500px;}
.y43{bottom:573.952500px;}
.yec{bottom:578.310750px;}
.y1d{bottom:580.511100px;}
.yc6{bottom:585.928650px;}
.y66{bottom:587.111550px;}
.y1bb{bottom:587.115000px;}
.y42{bottom:591.806850px;}
.yc3{bottom:593.124900px;}
.y16a{bottom:593.580450px;}
.y1c{bottom:594.903600px;}
.yeb{bottom:595.907250px;}
.yc5{bottom:600.321150px;}
.y1e0{bottom:602.193300px;}
.y1ba{bottom:604.711500px;}
.y17d{bottom:606.933750px;}
.yc2{bottom:607.517400px;}
.y1b{bottom:609.296100px;}
.y41{bottom:609.661350px;}
.yea{bottom:613.503750px;}
.yc4{bottom:614.713650px;}
.y1df{bottom:620.008800px;}
.y1b9{bottom:622.308000px;}
.y17c{bottom:622.920750px;}
.y1a{bottom:623.688600px;}
.y12f{bottom:627.237600px;}
.y40{bottom:627.515700px;}
.ye9{bottom:631.100250px;}
.y65{bottom:636.891150px;}
.y1de{bottom:637.824300px;}
.y19{bottom:638.081100px;}
.y118{bottom:639.326400px;}
.y154{bottom:639.903450px;}
.y1b8{bottom:639.904500px;}
.y3f{bottom:645.370050px;}
.yc1{bottom:647.101950px;}
.ye8{bottom:648.696750px;}
.y18{bottom:652.473600px;}
.y64{bottom:652.878150px;}
.y1dd{bottom:655.639950px;}
.y10c{bottom:657.494100px;}
.y153{bottom:657.499950px;}
.y1b7{bottom:657.501000px;}
.y3e{bottom:663.224550px;}
.ye7{bottom:666.293250px;}
.y17{bottom:666.866100px;}
.y63{bottom:668.865150px;}
.y1dc{bottom:673.455300px;}
.y10b{bottom:675.090600px;}
.y152{bottom:675.096450px;}
.y1b6{bottom:675.097500px;}
.y3d{bottom:681.078900px;}
.y16{bottom:681.258600px;}
.ye6{bottom:683.889750px;}
.y62{bottom:686.845800px;}
.y1db{bottom:691.270800px;}
.y10a{bottom:692.687100px;}
.y151{bottom:692.692950px;}
.yc0{bottom:695.254650px;}
.y15{bottom:695.651100px;}
.y3c{bottom:698.933250px;}
.y1a0{bottom:701.252250px;}
.ye5{bottom:701.486250px;}
.y1da{bottom:709.086300px;}
.y14{bottom:710.043600px;}
.y109{bottom:710.283600px;}
.y1b5{bottom:710.288700px;}
.y150{bottom:710.289450px;}
.y3b{bottom:716.787750px;}
.ybf{bottom:717.103200px;}
.y19f{bottom:718.848750px;}
.y1d9{bottom:726.901950px;}
.ye4{bottom:727.880100px;}
.y1b4{bottom:727.885200px;}
.y14f{bottom:727.885950px;}
.yb8{bottom:728.187000px;}
.y19e{bottom:736.445250px;}
.ybc{bottom:738.951600px;}
.y3a{bottom:743.439450px;}
.y1d8{bottom:744.717300px;}
.ye3{bottom:745.476600px;}
.y1b3{bottom:745.481700px;}
.y14e{bottom:745.482450px;}
.y19d{bottom:754.041750px;}
.ybe{bottom:760.800000px;}
.y39{bottom:761.293800px;}
.y1d7{bottom:762.532800px;}
.ye2{bottom:763.073100px;}
.y1b2{bottom:763.078200px;}
.y14d{bottom:763.078950px;}
.y19c{bottom:771.638250px;}
.y38{bottom:779.148150px;}
.y1d6{bottom:780.348300px;}
.y169{bottom:780.438150px;}
.ye1{bottom:780.669600px;}
.y14c{bottom:780.675450px;}
.ybd{bottom:782.648550px;}
.y19b{bottom:789.234750px;}
.y13{bottom:796.719600px;}
.y37{bottom:797.002650px;}
.y168{bottom:798.034650px;}
.y1d5{bottom:798.163950px;}
.ye0{bottom:798.266100px;}
.y1b1{bottom:798.269400px;}
.y19a{bottom:806.831250px;}
.y36{bottom:814.857000px;}
.yb7{bottom:815.630700px;}
.y167{bottom:815.631150px;}
.y61{bottom:815.862600px;}
.y14b{bottom:815.866650px;}
.y1d4{bottom:815.979450px;}
.y12{bottom:821.503950px;}
.y199{bottom:824.427750px;}
.y35{bottom:832.711500px;}
.yb6{bottom:833.227350px;}
.y166{bottom:833.227650px;}
.y60{bottom:833.459100px;}
.y1d3{bottom:833.794950px;}
.y198{bottom:842.024250px;}
.y34{bottom:850.565850px;}
.yb5{bottom:850.823700px;}
.y165{bottom:850.824150px;}
.y1b0{bottom:851.055150px;}
.y5f{bottom:851.055600px;}
.y1d2{bottom:851.610300px;}
.y11{bottom:856.108200px;}
.y197{bottom:859.620750px;}
.y1af{bottom:868.651650px;}
.y5e{bottom:868.652100px;}
.y14a{bottom:868.652400px;}
.y1d1{bottom:869.425800px;}
.y17b{bottom:873.253500px;}
.y10{bottom:881.960250px;}
.y196{bottom:886.014600px;}
.y33{bottom:886.014900px;}
.y164{bottom:886.015350px;}
.y1ae{bottom:886.248300px;}
.y5d{bottom:886.248600px;}
.y149{bottom:886.248900px;}
.y1d0{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y195{bottom:931.877700px;}
.y32{bottom:931.878150px;}
.y12e{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y194{bottom:949.474200px;}
.y5c{bottom:949.474500px;}
.y31{bottom:949.474650px;}
.y12d{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h4{height:19.764000px;}
.h2a{height:22.430135px;}
.h27{height:23.258782px;}
.h25{height:23.296705px;}
.h28{height:24.658522px;}
.h6{height:31.206000px;}
.h18{height:32.779500px;}
.he{height:32.929688px;}
.hc{height:32.976562px;}
.hb{height:33.328125px;}
.h7{height:33.435000px;}
.hd{height:33.539062px;}
.h20{height:33.880500px;}
.h17{height:35.037598px;}
.h5{height:35.328000px;}
.h2b{height:35.411133px;}
.ha{height:37.098633px;}
.h1e{height:38.074438px;}
.h16{height:38.850513px;}
.h15{height:39.513208px;}
.h2d{height:41.162109px;}
.h2{height:41.220703px;}
.h12{height:41.660156px;}
.h22{height:43.867441px;}
.hf{height:45.278320px;}
.h11{height:45.342773px;}
.h1d{height:45.604453px;}
.h10{height:45.826172px;}
.h1c{height:46.367791px;}
.h19{height:47.007994px;}
.h23{height:47.220703px;}
.h1f{height:49.272803px;}
.h9{height:49.464844px;}
.h2c{height:53.818359px;}
.h14{height:55.559951px;}
.h8{height:62.490234px;}
.h21{height:76.918921px;}
.h1a{height:78.655933px;}
.h26{height:85.558500px;}
.h1b{height:89.910253px;}
.h24{height:93.898500px;}
.h3{height:104.850000px;}
.h29{height:131.761500px;}
.h13{height:331.653000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w4{width:59.482500px;}
.w3{width:165.613500px;}
.w6{width:280.630500px;}
.w2{width:406.060500px;}
.w5{width:498.754500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x22{left:2.939700px;}
.x11{left:9.388200px;}
.x23{left:14.561850px;}
.x2e{left:24.700800px;}
.x2f{left:37.976700px;}
.x1b{left:46.221150px;}
.x12{left:47.804550px;}
.x1c{left:49.345538px;}
.x13{left:53.699888px;}
.x38{left:65.504700px;}
.x3a{left:74.934300px;}
.x39{left:90.759321px;}
.x24{left:92.609700px;}
.x9{left:110.551200px;}
.x1{left:113.476500px;}
.x7{left:116.674950px;}
.x20{left:121.275450px;}
.x1f{left:129.023250px;}
.x33{left:130.297350px;}
.xe{left:131.811000px;}
.xa{left:136.063050px;}
.x4{left:138.988350px;}
.x25{left:142.314150px;}
.x45{left:146.692950px;}
.x21{left:149.457000px;}
.x37{left:155.996250px;}
.x1e{left:158.122200px;}
.xf{left:159.849000px;}
.x27{left:164.046000px;}
.x1d{left:167.078850px;}
.xd{left:169.187250px;}
.x5{left:173.632800px;}
.x34{left:175.793400px;}
.x6{left:179.257800px;}
.x41{left:181.536150px;}
.x15{left:191.088113px;}
.x30{left:205.557150px;}
.x36{left:209.581200px;}
.x17{left:221.342363px;}
.x40{left:230.699400px;}
.x14{left:233.090625px;}
.x16{left:250.536300px;}
.x1a{left:252.656925px;}
.x28{left:268.909650px;}
.x29{left:273.080100px;}
.xc{left:275.019150px;}
.x18{left:283.632188px;}
.x19{left:297.515213px;}
.x8{left:298.856700px;}
.x3e{left:312.528600px;}
.x3f{left:331.653000px;}
.x42{left:344.669550px;}
.x26{left:349.299150px;}
.x3c{left:361.999526px;}
.x3b{left:376.633350px;}
.x2a{left:379.261050px;}
.x2b{left:386.718150px;}
.x35{left:392.643750px;}
.x10{left:401.063850px;}
.x3d{left:408.372600px;}
.x31{left:409.651650px;}
.x3{left:441.045750px;}
.x32{left:452.171400px;}
.x43{left:474.021000px;}
.x44{left:497.740500px;}
.x2c{left:509.786550px;}
.x2{left:521.280900px;}
.x2d{left:524.304600px;}
.xb{left:606.831900px;}
@media print{
.v2{vertical-align:-11.433067pt;}
.va{vertical-align:-10.030453pt;}
.vc{vertical-align:-8.776587pt;}
.v7{vertical-align:-5.333333pt;}
.v1{vertical-align:-1.256667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.244213pt;}
.v9{vertical-align:5.333333pt;}
.v5{vertical-align:13.600000pt;}
.v8{vertical-align:16.000000pt;}
.v6{vertical-align:17.600000pt;}
.v3{vertical-align:29.379093pt;}
.v4{vertical-align:39.382933pt;}
.ls3e{letter-spacing:-11.840000pt;}
.ls3a{letter-spacing:-10.160000pt;}
.ls38{letter-spacing:-9.640000pt;}
.ls43{letter-spacing:-8.160000pt;}
.ls40{letter-spacing:-4.440000pt;}
.ls18{letter-spacing:-1.173333pt;}
.ls28{letter-spacing:-0.880000pt;}
.ls29{letter-spacing:-0.821333pt;}
.ls27{letter-spacing:-0.762667pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.399343pt;}
.ls6{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000533pt;}
.ls37{letter-spacing:0.005867pt;}
.ls3b{letter-spacing:0.006400pt;}
.ls3c{letter-spacing:0.006933pt;}
.ls24{letter-spacing:0.008000pt;}
.ls21{letter-spacing:0.009067pt;}
.ls2{letter-spacing:0.037333pt;}
.ls2a{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls5{letter-spacing:0.085333pt;}
.ls12{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.117333pt;}
.ls4{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.176000pt;}
.ls2f{letter-spacing:0.190667pt;}
.ls33{letter-spacing:0.199671pt;}
.ls3d{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.352000pt;}
.lsb{letter-spacing:0.410667pt;}
.ls13{letter-spacing:0.469333pt;}
.ls2e{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.762667pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls35{letter-spacing:0.997333pt;}
.ls34{letter-spacing:1.114667pt;}
.ls42{letter-spacing:1.120000pt;}
.lsf{letter-spacing:1.173333pt;}
.ls17{letter-spacing:1.232000pt;}
.ls2d{letter-spacing:1.290667pt;}
.ls36{letter-spacing:1.349333pt;}
.ls46{letter-spacing:1.706667pt;}
.ls39{letter-spacing:2.133333pt;}
.ls45{letter-spacing:2.666667pt;}
.ls3f{letter-spacing:3.893333pt;}
.ls20{letter-spacing:4.097600pt;}
.ls44{letter-spacing:4.160000pt;}
.ls1a{letter-spacing:4.799787pt;}
.ls41{letter-spacing:4.800000pt;}
.ls19{letter-spacing:6.669227pt;}
.ls1{letter-spacing:9.472000pt;}
.ls1e{letter-spacing:9.773867pt;}
.ls1c{letter-spacing:9.946347pt;}
.ls3{letter-spacing:11.120000pt;}
.ls1b{letter-spacing:12.740000pt;}
.ls23{letter-spacing:13.568427pt;}
.ls1f{letter-spacing:21.042560pt;}
.ls22{letter-spacing:21.100053pt;}
.ls1d{letter-spacing:22.312107pt;}
.ls26{letter-spacing:96.306667pt;}
.ls30{letter-spacing:102.005867pt;}
.ls8{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.ws12{word-spacing:-58.666667pt;}
.ws9{word-spacing:-57.493333pt;}
.wsd{word-spacing:-53.333333pt;}
.wsb{word-spacing:-49.674240pt;}
.wsa{word-spacing:-48.869333pt;}
.ws3{word-spacing:-14.725333pt;}
.ws4{word-spacing:-14.666667pt;}
.ws13{word-spacing:-13.786667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws11{word-spacing:-9.533333pt;}
.wse{word-spacing:-8.666667pt;}
.ws0{word-spacing:-8.288000pt;}
.wsf{word-spacing:-7.366667pt;}
.ws1a{word-spacing:-5.560000pt;}
.ws15{word-spacing:-0.030093pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:6.307200pt;}
.ws1b{word-spacing:6.320000pt;}
.ws17{word-spacing:9.280000pt;}
.ws18{word-spacing:9.800000pt;}
.ws19{word-spacing:13.680000pt;}
.ws8{word-spacing:62.740267pt;}
.ws7{word-spacing:93.252800pt;}
.wsc{word-spacing:126.358848pt;}
.ws14{word-spacing:131.628240pt;}
.ws6{word-spacing:279.683733pt;}
.ws10{word-spacing:323.338667pt;}
.ws5{word-spacing:384.114133pt;}
.ws16{word-spacing:820.049600pt;}
._29{margin-left:-1584.633067pt;}
._d{margin-left:-14.666667pt;}
._1{margin-left:-9.477867pt;}
._5{margin-left:-8.288000pt;}
._2b{margin-left:-6.688000pt;}
._2a{margin-left:-5.280000pt;}
._2d{margin-left:-4.294400pt;}
._f{margin-left:-2.764667pt;}
._b{margin-left:-1.638400pt;}
._7{width:0.938667pt;}
._4{width:2.501333pt;}
._3{width:4.144000pt;}
._6{width:5.333333pt;}
._9{width:6.507733pt;}
._8{width:7.569067pt;}
._a{width:8.558933pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._21{width:21.057600pt;}
._1a{width:25.498133pt;}
._20{width:29.964800pt;}
._22{width:32.906667pt;}
._1c{width:34.986667pt;}
._1b{width:35.893333pt;}
._1e{width:38.872000pt;}
._e{width:40.317333pt;}
._1d{width:43.626667pt;}
._19{width:48.544000pt;}
._17{width:50.740267pt;}
._2c{width:52.984000pt;}
._18{width:62.739733pt;}
._14{width:108.348267pt;}
._10{width:109.621333pt;}
._13{width:112.141333pt;}
._12{width:113.400000pt;}
._11{width:114.679467pt;}
._15{width:127.229867pt;}
._16{width:144.873600pt;}
._23{width:169.350400pt;}
._1f{width:335.338667pt;}
._28{width:337.608533pt;}
._27{width:424.251733pt;}
._25{width:478.640000pt;}
._26{width:528.217067pt;}
._c{width:1028.947200pt;}
._24{width:1030.900267pt;}
.fs18{font-size:17.544533pt;}
.fs3{font-size:24.000000pt;}
.fs19{font-size:24.958933pt;}
.fs14{font-size:29.466667pt;}
.fs17{font-size:30.093333pt;}
.fs16{font-size:30.142400pt;}
.fs0{font-size:32.000000pt;}
.fs13{font-size:34.666667pt;}
.fs11{font-size:37.240000pt;}
.fs5{font-size:37.333333pt;}
.fs15{font-size:38.133333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:50.266667pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs12{font-size:56.918400pt;}
.fs10{font-size:57.493333pt;}
.fsc{font-size:58.666667pt;}
.fsf{font-size:59.262772pt;}
.fs8{font-size:64.000000pt;}
.fsd{font-size:71.077867pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:1.219333pt;}
.yf5{bottom:1.253600pt;}
.y95{bottom:5.449067pt;}
.yb9{bottom:11.065067pt;}
.yf4{bottom:11.099333pt;}
.ybb{bottom:12.739333pt;}
.y9b{bottom:19.536900pt;}
.ya3{bottom:35.785600pt;}
.y121{bottom:47.146888pt;}
.y146{bottom:50.862000pt;}
.ya2{bottom:50.865600pt;}
.y144{bottom:51.175467pt;}
.y145{bottom:60.895613pt;}
.y159{bottom:63.883867pt;}
.y143{bottom:68.421467pt;}
.y120{bottom:71.012133pt;}
.y122{bottom:71.321093pt;}
.y9c{bottom:72.693900pt;}
.y158{bottom:73.830933pt;}
.y1ad{bottom:75.590133pt;}
.y193{bottom:75.590267pt;}
.y1{bottom:75.590533pt;}
.y30{bottom:75.590667pt;}
.y148{bottom:75.590800pt;}
.y12c{bottom:75.590933pt;}
.y157{bottom:82.632000pt;}
.y5b{bottom:105.826667pt;}
.yf{bottom:105.826800pt;}
.y192{bottom:105.896933pt;}
.yb4{bottom:106.224933pt;}
.y147{bottom:106.439200pt;}
.y117{bottom:107.147600pt;}
.y93{bottom:107.184533pt;}
.ydf{bottom:107.376400pt;}
.y80{bottom:107.382400pt;}
.y163{bottom:107.569333pt;}
.y1ac{bottom:108.470400pt;}
.y108{bottom:108.763733pt;}
.ya1{bottom:110.142567pt;}
.y1cf{bottom:114.241867pt;}
.y99{bottom:114.779667pt;}
.ye{bottom:116.493467pt;}
.y191{bottom:121.538267pt;}
.y5a{bottom:121.697200pt;}
.yb3{bottom:121.866267pt;}
.y116{bottom:122.789067pt;}
.y92{bottom:122.825867pt;}
.yde{bottom:123.017867pt;}
.y7f{bottom:123.023733pt;}
.y1ab{bottom:124.111733pt;}
.ya0{bottom:125.222567pt;}
.y105{bottom:127.607200pt;}
.y107{bottom:128.940533pt;}
.y1ce{bottom:130.077867pt;}
.y142{bottom:131.366667pt;}
.y12b{bottom:131.858267pt;}
.yd{bottom:132.829333pt;}
.y9a{bottom:134.396233pt;}
.y190{bottom:137.179600pt;}
.yb2{bottom:137.507600pt;}
.y59{bottom:137.567867pt;}
.y115{bottom:138.430400pt;}
.y91{bottom:138.467200pt;}
.y7e{bottom:138.665067pt;}
.y1aa{bottom:139.753067pt;}
.y1cd{bottom:145.913867pt;}
.y12a{bottom:147.499600pt;}
.y106{bottom:149.117333pt;}
.yc{bottom:149.165333pt;}
.y18f{bottom:152.820933pt;}
.yb1{bottom:153.148933pt;}
.y58{bottom:153.438400pt;}
.y90{bottom:154.108533pt;}
.y7d{bottom:154.306400pt;}
.y1a9{bottom:155.394400pt;}
.y1cc{bottom:161.749867pt;}
.y114{bottom:161.891467pt;}
.y129{bottom:163.140933pt;}
.yb{bottom:163.611467pt;}
.ydd{bottom:167.179733pt;}
.y18e{bottom:168.462267pt;}
.yb0{bottom:168.790267pt;}
.y57{bottom:169.308933pt;}
.y8f{bottom:169.749867pt;}
.y7c{bottom:169.947733pt;}
.y1a8{bottom:171.035733pt;}
.y9f{bottom:173.001033pt;}
.ya{bottom:174.278133pt;}
.y113{bottom:177.532800pt;}
.y1cb{bottom:177.585867pt;}
.y104{bottom:178.434800pt;}
.y128{bottom:178.782267pt;}
.ydc{bottom:182.227067pt;}
.y18d{bottom:184.103600pt;}
.y56{bottom:185.179600pt;}
.y7b{bottom:185.589067pt;}
.y1a7{bottom:186.677067pt;}
.y9{bottom:190.614133pt;}
.y98{bottom:191.662533pt;}
.y112{bottom:193.174133pt;}
.y8e{bottom:193.211067pt;}
.y103{bottom:194.076133pt;}
.y127{bottom:194.423600pt;}
.ydb{bottom:197.274267pt;}
.y18c{bottom:199.744933pt;}
.y55{bottom:201.050133pt;}
.y7a{bottom:201.230400pt;}
.y8{bottom:201.280800pt;}
.y1a6{bottom:202.318400pt;}
.y17a{bottom:206.987067pt;}
.y111{bottom:208.815467pt;}
.y8d{bottom:208.852400pt;}
.y1ca{bottom:209.061600pt;}
.y102{bottom:209.717467pt;}
.y126{bottom:210.064933pt;}
.y9e{bottom:211.920000pt;}
.yda{bottom:212.321467pt;}
.yaf{bottom:212.952267pt;}
.y18b{bottom:215.386267pt;}
.y79{bottom:216.871733pt;}
.y54{bottom:216.920667pt;}
.y1a5{bottom:217.959733pt;}
.y179{bottom:222.628400pt;}
.y110{bottom:224.456933pt;}
.y8c{bottom:224.493733pt;}
.y101{bottom:225.358800pt;}
.y125{bottom:225.706267pt;}
.yd9{bottom:227.368800pt;}
.y141{bottom:229.603067pt;}
.y78{bottom:232.513067pt;}
.y53{bottom:232.791200pt;}
.y1a4{bottom:233.601067pt;}
.yae{bottom:235.558533pt;}
.y178{bottom:238.269733pt;}
.y10f{bottom:240.098133pt;}
.y8b{bottom:240.135067pt;}
.y100{bottom:241.000133pt;}
.yd8{bottom:242.416000pt;}
.y97{bottom:243.236133pt;}
.y140{bottom:245.244400pt;}
.y77{bottom:248.154400pt;}
.y52{bottom:248.661867pt;}
.y1a3{bottom:249.242400pt;}
.y9d{bottom:251.467300pt;}
.y177{bottom:253.911067pt;}
.y10e{bottom:255.739467pt;}
.y1c9{bottom:255.982267pt;}
.yff{bottom:256.641467pt;}
.y162{bottom:257.011867pt;}
.y2f{bottom:257.307867pt;}
.yd7{bottom:257.463200pt;}
.y18a{bottom:259.548267pt;}
.y13f{bottom:260.885733pt;}
.y76{bottom:263.795733pt;}
.yad{bottom:264.348267pt;}
.y51{bottom:264.532400pt;}
.y176{bottom:269.552400pt;}
.y8a{bottom:271.416000pt;}
.y1c8{bottom:271.623600pt;}
.yd6{bottom:272.510533pt;}
.y124{bottom:272.626933pt;}
.y161{bottom:272.653200pt;}
.y189{bottom:274.595467pt;}
.y13e{bottom:276.527067pt;}
.y2e{bottom:277.206667pt;}
.y75{bottom:279.437067pt;}
.ya4{bottom:279.621600pt;}
.y96{bottom:279.623600pt;}
.y50{bottom:280.402933pt;}
.y123{bottom:286.837600pt;}
.y1c7{bottom:287.264933pt;}
.yd5{bottom:287.557733pt;}
.yfd{bottom:287.619733pt;}
.y160{bottom:288.294533pt;}
.y188{bottom:289.642667pt;}
.y2d{bottom:290.000000pt;}
.y13d{bottom:292.168400pt;}
.y175{bottom:293.013600pt;}
.y74{bottom:295.078400pt;}
.y1a2{bottom:299.160267pt;}
.yac{bottom:301.236000pt;}
.yd4{bottom:302.604933pt;}
.y10d{bottom:302.660267pt;}
.y2c{bottom:302.793333pt;}
.y1c6{bottom:302.906267pt;}
.y15f{bottom:303.935733pt;}
.y4f{bottom:304.093467pt;}
.y187{bottom:304.690000pt;}
.yfc{bottom:307.796533pt;}
.y13c{bottom:307.809733pt;}
.yfe{bottom:307.825467pt;}
.y174{bottom:308.654933pt;}
.y73{bottom:310.719733pt;}
.y11f{bottom:312.909333pt;}
.y1a1{bottom:313.370933pt;}
.y2b{bottom:315.586667pt;}
.yab{bottom:316.877333pt;}
.yd3{bottom:317.652267pt;}
.y89{bottom:318.336800pt;}
.y1c5{bottom:318.547600pt;}
.y15e{bottom:319.577200pt;}
.y4e{bottom:319.964000pt;}
.y13b{bottom:323.451067pt;}
.y173{bottom:324.296267pt;}
.y72{bottom:326.361067pt;}
.y186{bottom:327.296267pt;}
.yfb{bottom:327.973200pt;}
.y2a{bottom:328.380000pt;}
.yaa{bottom:332.518667pt;}
.yd2{bottom:332.699467pt;}
.y88{bottom:333.978133pt;}
.y15d{bottom:335.218400pt;}
.y4d{bottom:335.834533pt;}
.yf7{bottom:338.061600pt;}
.y13a{bottom:339.092400pt;}
.y172{bottom:339.937600pt;}
.y185{bottom:340.089600pt;}
.y29{bottom:341.173333pt;}
.y71{bottom:342.002400pt;}
.yd1{bottom:347.746667pt;}
.yfa{bottom:348.150000pt;}
.ya9{bottom:348.160000pt;}
.y87{bottom:349.619467pt;}
.y1c4{bottom:349.828667pt;}
.y4c{bottom:351.705200pt;}
.y28{bottom:353.966667pt;}
.y139{bottom:354.733733pt;}
.y70{bottom:357.643733pt;}
.yf3{bottom:358.240000pt;}
.yd0{bottom:362.794000pt;}
.y171{bottom:363.398800pt;}
.ya8{bottom:363.801333pt;}
.y86{bottom:365.260800pt;}
.y27{bottom:366.760000pt;}
.yf6{bottom:366.964533pt;}
.y4b{bottom:367.575733pt;}
.yf9{bottom:368.326800pt;}
.y184{bottom:368.879200pt;}
.y138{bottom:370.375067pt;}
.ycf{bottom:377.841200pt;}
.ya7{bottom:379.442667pt;}
.y15c{bottom:379.467067pt;}
.y26{bottom:379.553333pt;}
.y85{bottom:380.902133pt;}
.y6f{bottom:381.104800pt;}
.y4a{bottom:383.446267pt;}
.y137{bottom:386.016400pt;}
.yf8{bottom:388.503600pt;}
.y25{bottom:392.346667pt;}
.yce{bottom:392.888400pt;}
.y15b{bottom:393.677733pt;}
.ya6{bottom:395.084000pt;}
.y84{bottom:396.543467pt;}
.y6e{bottom:396.746267pt;}
.y1c3{bottom:396.749333pt;}
.y49{bottom:399.316800pt;}
.y136{bottom:401.657733pt;}
.y170{bottom:402.499733pt;}
.y24{bottom:405.140000pt;}
.ycd{bottom:407.935733pt;}
.y83{bottom:412.184800pt;}
.y15a{bottom:412.306133pt;}
.y6d{bottom:412.387467pt;}
.y1c2{bottom:412.390667pt;}
.y183{bottom:414.369200pt;}
.y135{bottom:417.299067pt;}
.y23{bottom:417.933333pt;}
.y16f{bottom:418.140933pt;}
.y11e{bottom:419.703200pt;}
.yf2{bottom:420.206000pt;}
.ycc{bottom:422.982933pt;}
.y48{bottom:423.007333pt;}
.y82{bottom:427.826133pt;}
.y6c{bottom:428.028933pt;}
.y1c1{bottom:428.032000pt;}
.y182{bottom:430.010533pt;}
.y22{bottom:430.726667pt;}
.y134{bottom:432.940400pt;}
.y156{bottom:433.064000pt;}
.y155{bottom:433.064800pt;}
.y16e{bottom:433.782400pt;}
.y11d{bottom:435.344533pt;}
.yf1{bottom:435.847333pt;}
.ya5{bottom:437.442800pt;}
.ycb{bottom:438.030133pt;}
.y47{bottom:438.877867pt;}
.y6b{bottom:443.670267pt;}
.y1c0{bottom:443.673333pt;}
.y181{bottom:445.652000pt;}
.y133{bottom:448.581733pt;}
.y16d{bottom:449.423600pt;}
.y11c{bottom:450.985867pt;}
.yf0{bottom:451.488667pt;}
.yca{bottom:453.077333pt;}
.y46{bottom:454.748400pt;}
.y21{bottom:457.731067pt;}
.y94{bottom:458.758667pt;}
.y6a{bottom:459.311467pt;}
.y1bf{bottom:459.314667pt;}
.y180{bottom:461.293200pt;}
.y132{bottom:464.223067pt;}
.y16c{bottom:465.064933pt;}
.y11b{bottom:466.627200pt;}
.yef{bottom:467.130000pt;}
.yc9{bottom:468.124667pt;}
.y45{bottom:470.619067pt;}
.y81{bottom:474.746800pt;}
.y69{bottom:474.952933pt;}
.y1be{bottom:474.956000pt;}
.y17f{bottom:476.934667pt;}
.y20{bottom:477.629867pt;}
.y131{bottom:479.864400pt;}
.y16b{bottom:480.706400pt;}
.y11a{bottom:482.268533pt;}
.yee{bottom:482.771333pt;}
.yc8{bottom:483.171867pt;}
.y1f{bottom:490.423200pt;}
.y68{bottom:490.594133pt;}
.y1bd{bottom:490.597333pt;}
.y44{bottom:494.309467pt;}
.yc7{bottom:498.219200pt;}
.yed{bottom:498.412667pt;}
.y17e{bottom:500.395733pt;}
.y1e{bottom:503.216533pt;}
.y130{bottom:503.325600pt;}
.y119{bottom:505.729733pt;}
.y67{bottom:506.235467pt;}
.y1bc{bottom:506.238667pt;}
.y43{bottom:510.180000pt;}
.yec{bottom:514.054000pt;}
.y1d{bottom:516.009867pt;}
.yc6{bottom:520.825467pt;}
.y66{bottom:521.876933pt;}
.y1bb{bottom:521.880000pt;}
.y42{bottom:526.050533pt;}
.yc3{bottom:527.222133pt;}
.y16a{bottom:527.627067pt;}
.y1c{bottom:528.803200pt;}
.yeb{bottom:529.695333pt;}
.yc5{bottom:533.618800pt;}
.y1e0{bottom:535.282933pt;}
.y1ba{bottom:537.521333pt;}
.y17d{bottom:539.496667pt;}
.yc2{bottom:540.015467pt;}
.y1b{bottom:541.596533pt;}
.y41{bottom:541.921200pt;}
.yea{bottom:545.336667pt;}
.yc4{bottom:546.412133pt;}
.y1df{bottom:551.118933pt;}
.y1b9{bottom:553.162667pt;}
.y17c{bottom:553.707333pt;}
.y1a{bottom:554.389867pt;}
.y12f{bottom:557.544533pt;}
.y40{bottom:557.791733pt;}
.ye9{bottom:560.978000pt;}
.y65{bottom:566.125467pt;}
.y1de{bottom:566.954933pt;}
.y19{bottom:567.183200pt;}
.y118{bottom:568.290133pt;}
.y154{bottom:568.803067pt;}
.y1b8{bottom:568.804000pt;}
.y3f{bottom:573.662267pt;}
.yc1{bottom:575.201733pt;}
.ye8{bottom:576.619333pt;}
.y18{bottom:579.976533pt;}
.y64{bottom:580.336133pt;}
.y1dd{bottom:582.791067pt;}
.y10c{bottom:584.439200pt;}
.y153{bottom:584.444400pt;}
.y1b7{bottom:584.445333pt;}
.y3e{bottom:589.532933pt;}
.ye7{bottom:592.260667pt;}
.y17{bottom:592.769867pt;}
.y63{bottom:594.546800pt;}
.y1dc{bottom:598.626933pt;}
.y10b{bottom:600.080533pt;}
.y152{bottom:600.085733pt;}
.y1b6{bottom:600.086667pt;}
.y3d{bottom:605.403467pt;}
.y16{bottom:605.563200pt;}
.ye6{bottom:607.902000pt;}
.y62{bottom:610.529600pt;}
.y1db{bottom:614.462933pt;}
.y10a{bottom:615.721867pt;}
.y151{bottom:615.727067pt;}
.yc0{bottom:618.004133pt;}
.y15{bottom:618.356533pt;}
.y3c{bottom:621.274000pt;}
.y1a0{bottom:623.335333pt;}
.ye5{bottom:623.543333pt;}
.y1da{bottom:630.298933pt;}
.y14{bottom:631.149867pt;}
.y109{bottom:631.363200pt;}
.y1b5{bottom:631.367733pt;}
.y150{bottom:631.368400pt;}
.y3b{bottom:637.144667pt;}
.ybf{bottom:637.425067pt;}
.y19f{bottom:638.976667pt;}
.y1d9{bottom:646.135067pt;}
.ye4{bottom:647.004533pt;}
.y1b4{bottom:647.009067pt;}
.y14f{bottom:647.009733pt;}
.yb8{bottom:647.277333pt;}
.y19e{bottom:654.618000pt;}
.ybc{bottom:656.845867pt;}
.y3a{bottom:660.835067pt;}
.y1d8{bottom:661.970933pt;}
.ye3{bottom:662.645867pt;}
.y1b3{bottom:662.650400pt;}
.y14e{bottom:662.651067pt;}
.y19d{bottom:670.259333pt;}
.ybe{bottom:676.266667pt;}
.y39{bottom:676.705600pt;}
.y1d7{bottom:677.806933pt;}
.ye2{bottom:678.287200pt;}
.y1b2{bottom:678.291733pt;}
.y14d{bottom:678.292400pt;}
.y19c{bottom:685.900667pt;}
.y38{bottom:692.576133pt;}
.y1d6{bottom:693.642933pt;}
.y169{bottom:693.722800pt;}
.ye1{bottom:693.928533pt;}
.y14c{bottom:693.933733pt;}
.ybd{bottom:695.687600pt;}
.y19b{bottom:701.542000pt;}
.y13{bottom:708.195200pt;}
.y37{bottom:708.446800pt;}
.y168{bottom:709.364133pt;}
.y1d5{bottom:709.479067pt;}
.ye0{bottom:709.569867pt;}
.y1b1{bottom:709.572800pt;}
.y19a{bottom:717.183333pt;}
.y36{bottom:724.317333pt;}
.yb7{bottom:725.005067pt;}
.y167{bottom:725.005467pt;}
.y61{bottom:725.211200pt;}
.y14b{bottom:725.214800pt;}
.y1d4{bottom:725.315067pt;}
.y12{bottom:730.225733pt;}
.y199{bottom:732.824667pt;}
.y35{bottom:740.188000pt;}
.yb6{bottom:740.646533pt;}
.y166{bottom:740.646800pt;}
.y60{bottom:740.852533pt;}
.y1d3{bottom:741.151067pt;}
.y198{bottom:748.466000pt;}
.y34{bottom:756.058533pt;}
.yb5{bottom:756.287733pt;}
.y165{bottom:756.288133pt;}
.y1b0{bottom:756.493467pt;}
.y5f{bottom:756.493867pt;}
.y1d2{bottom:756.986933pt;}
.y11{bottom:760.985067pt;}
.y197{bottom:764.107333pt;}
.y1af{bottom:772.134800pt;}
.y5e{bottom:772.135200pt;}
.y14a{bottom:772.135467pt;}
.y1d1{bottom:772.822933pt;}
.y17b{bottom:776.225333pt;}
.y10{bottom:783.964667pt;}
.y196{bottom:787.568533pt;}
.y33{bottom:787.568800pt;}
.y164{bottom:787.569200pt;}
.y1ae{bottom:787.776267pt;}
.y5d{bottom:787.776533pt;}
.y149{bottom:787.776800pt;}
.y1d0{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y195{bottom:828.335733pt;}
.y32{bottom:828.336133pt;}
.y12e{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y194{bottom:843.977067pt;}
.y5c{bottom:843.977333pt;}
.y31{bottom:843.977467pt;}
.y12d{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h4{height:17.568000pt;}
.h2a{height:19.937898pt;}
.h27{height:20.674473pt;}
.h25{height:20.708182pt;}
.h28{height:21.918686pt;}
.h6{height:27.738667pt;}
.h18{height:29.137333pt;}
.he{height:29.270833pt;}
.hc{height:29.312500pt;}
.hb{height:29.625000pt;}
.h7{height:29.720000pt;}
.hd{height:29.812500pt;}
.h20{height:30.116000pt;}
.h17{height:31.144531pt;}
.h5{height:31.402667pt;}
.h2b{height:31.476562pt;}
.ha{height:32.976562pt;}
.h1e{height:33.843945pt;}
.h16{height:34.533789pt;}
.h15{height:35.122852pt;}
.h2d{height:36.588542pt;}
.h2{height:36.640625pt;}
.h12{height:37.031250pt;}
.h22{height:38.993281pt;}
.hf{height:40.247396pt;}
.h11{height:40.304688pt;}
.h1d{height:40.537292pt;}
.h10{height:40.734375pt;}
.h1c{height:41.215814pt;}
.h19{height:41.784884pt;}
.h23{height:41.973958pt;}
.h1f{height:43.798047pt;}
.h9{height:43.968750pt;}
.h2c{height:47.838542pt;}
.h14{height:49.386623pt;}
.h8{height:55.546875pt;}
.h21{height:68.372375pt;}
.h1a{height:69.916385pt;}
.h26{height:76.052000pt;}
.h1b{height:79.920225pt;}
.h24{height:83.465333pt;}
.h3{height:93.200000pt;}
.h29{height:117.121333pt;}
.h13{height:294.802667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w4{width:52.873333pt;}
.w3{width:147.212000pt;}
.w6{width:249.449333pt;}
.w2{width:360.942667pt;}
.w5{width:443.337333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x22{left:2.613067pt;}
.x11{left:8.345067pt;}
.x23{left:12.943867pt;}
.x2e{left:21.956267pt;}
.x2f{left:33.757067pt;}
.x1b{left:41.085467pt;}
.x12{left:42.492933pt;}
.x1c{left:43.862700pt;}
.x13{left:47.733233pt;}
.x38{left:58.226400pt;}
.x3a{left:66.608267pt;}
.x39{left:80.674952pt;}
.x24{left:82.319733pt;}
.x9{left:98.267733pt;}
.x1{left:100.868000pt;}
.x7{left:103.711067pt;}
.x20{left:107.800400pt;}
.x1f{left:114.687333pt;}
.x33{left:115.819867pt;}
.xe{left:117.165333pt;}
.xa{left:120.944933pt;}
.x4{left:123.545200pt;}
.x25{left:126.501467pt;}
.x45{left:130.393733pt;}
.x21{left:132.850667pt;}
.x37{left:138.663333pt;}
.x1e{left:140.553067pt;}
.xf{left:142.088000pt;}
.x27{left:145.818667pt;}
.x1d{left:148.514533pt;}
.xd{left:150.388667pt;}
.x5{left:154.340267pt;}
.x34{left:156.260800pt;}
.x6{left:159.340267pt;}
.x41{left:161.365467pt;}
.x15{left:169.856100pt;}
.x30{left:182.717467pt;}
.x36{left:186.294400pt;}
.x17{left:196.748767pt;}
.x40{left:205.066133pt;}
.x14{left:207.191667pt;}
.x16{left:222.698933pt;}
.x1a{left:224.583933pt;}
.x28{left:239.030800pt;}
.x29{left:242.737867pt;}
.xc{left:244.461467pt;}
.x18{left:252.117500pt;}
.x19{left:264.457967pt;}
.x8{left:265.650400pt;}
.x3e{left:277.803200pt;}
.x3f{left:294.802667pt;}
.x42{left:306.372933pt;}
.x26{left:310.488133pt;}
.x3c{left:321.777357pt;}
.x3b{left:334.785200pt;}
.x2a{left:337.120933pt;}
.x2b{left:343.749467pt;}
.x35{left:349.016667pt;}
.x10{left:356.501200pt;}
.x3d{left:362.997867pt;}
.x31{left:364.134800pt;}
.x3{left:392.040667pt;}
.x32{left:401.930133pt;}
.x43{left:421.352000pt;}
.x44{left:442.436000pt;}
.x2c{left:453.143600pt;}
.x2{left:463.360800pt;}
.x2d{left:466.048533pt;}
.xb{left:539.406133pt;}
}




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