
    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_83742283ea002fbe5e211647.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;font-style:normal;font-weight: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_27ec7aa929f1effa3ae0fb8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.018000;font-style:normal;font-weight: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_85fe4024fcfa8a55a9b031e4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2cf59be81b21ca5e7e09202c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026000;font-style:normal;font-weight: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_4d9c164a04c2458c734a872c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.023000;font-style:normal;font-weight: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_003abdeed46c5b264f04d45c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;font-style:normal;font-weight: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_d2b13a2877e2e194e020d46f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.592000;font-style:normal;font-weight: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_7c3de2521c6f93493fd1d78a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.575000;font-style:normal;font-weight: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_870b5e4e68f5f99e508695bf.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c15a55c46ff7214fbc84b257.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0a3765006109232e618c0642.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;font-style:normal;font-weight: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_e50b3c6a40576e3ada096614.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1c{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203832,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.204428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204428,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.225612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225612,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.225928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225928,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.226644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226644,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.229554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229554,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.232158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232158,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.239261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239261,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.240734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240734,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.242431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242431,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243917,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.243972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243972,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249954,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);}
.m21{transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.260289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260289,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.260357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260357,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260655,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262491,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.282194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282194,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.286783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286783,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.294753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294753,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.325082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325082,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.405985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405985,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.425129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425129,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.469626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469626,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.516997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516997,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.547018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547018,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.550434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550434,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.617600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617600,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-34.546200px;}
.v6{vertical-align:-32.400000px;}
.v2{vertical-align:-13.690026px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:39.959400px;}
.v1{vertical-align:53.946600px;}
.v3{vertical-align:69.012000px;}
.ls38{letter-spacing:-4.137021px;}
.ls37{letter-spacing:-4.095000px;}
.ls33{letter-spacing:-3.780000px;}
.ls11{letter-spacing:-3.528000px;}
.ls1c{letter-spacing:-3.381000px;}
.ls26{letter-spacing:-3.360000px;}
.ls2b{letter-spacing:-3.276000px;}
.ls25{letter-spacing:-3.266640px;}
.ls17{letter-spacing:-3.255840px;}
.ls23{letter-spacing:-3.066000px;}
.ls24{letter-spacing:-2.877000px;}
.ls31{letter-spacing:-2.730000px;}
.ls3b{letter-spacing:-2.468700px;}
.ls30{letter-spacing:-2.184000px;}
.ls2f{letter-spacing:-2.056320px;}
.ls21{letter-spacing:-1.427880px;}
.ls12{letter-spacing:-1.189440px;}
.ls1a{letter-spacing:-0.715680px;}
.ls16{letter-spacing:-0.624960px;}
.ls13{letter-spacing:-0.312480px;}
.lse{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000024px;}
.ls0{letter-spacing:0.000112px;}
.ls2c{letter-spacing:0.140160px;}
.ls39{letter-spacing:0.320160px;}
.lsb{letter-spacing:0.529200px;}
.ls1d{letter-spacing:0.563340px;}
.ls19{letter-spacing:0.715680px;}
.ls2a{letter-spacing:0.838080px;}
.ls7{letter-spacing:1.068480px;}
.ls2e{letter-spacing:1.105920px;}
.ls5{letter-spacing:1.112400px;}
.ls32{letter-spacing:1.350030px;}
.ls1b{letter-spacing:1.350720px;}
.lsf{letter-spacing:1.461600px;}
.ls9{letter-spacing:1.580100px;}
.ls27{letter-spacing:1.965780px;}
.ls20{letter-spacing:2.032320px;}
.ls28{letter-spacing:2.231460px;}
.ls1e{letter-spacing:2.278080px;}
.ls1f{letter-spacing:2.303880px;}
.ls18{letter-spacing:2.328480px;}
.lsc{letter-spacing:2.451960px;}
.lsa{letter-spacing:2.640600px;}
.ls6{letter-spacing:2.751840px;}
.lsd{letter-spacing:2.936640px;}
.ls14{letter-spacing:3.255840px;}
.ls3a{letter-spacing:3.610080px;}
.ls3c{letter-spacing:3.665280px;}
.ls4{letter-spacing:3.961440px;}
.ls8{letter-spacing:4.072320px;}
.ls15{letter-spacing:4.080000px;}
.ls36{letter-spacing:4.261440px;}
.ls2d{letter-spacing:4.350000px;}
.ls29{letter-spacing:4.710000px;}
.ls10{letter-spacing:5.040000px;}
.ls35{letter-spacing:5.520000px;}
.ls34{letter-spacing:5.850000px;}
.ls22{letter-spacing:6.000000px;}
.ls2{letter-spacing:1253.259840px;}
.ls3{letter-spacing:1289.865120px;}
.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;}
}
.ws0{word-spacing:-86.736000px;}
.ws2{word-spacing:-54.368960px;}
.ws4{word-spacing:-42.240000px;}
.ws1{word-spacing:-26.255988px;}
.ws8{word-spacing:-22.579200px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:548.400000px;}
.ws7{word-spacing:727.200000px;}
.ws3{word-spacing:1175.520000px;}
.ws5{word-spacing:1353.600000px;}
._3{margin-left:-20.248800px;}
._7{margin-left:-19.220160px;}
._12{margin-left:-16.848000px;}
._5{margin-left:-15.288000px;}
._4{margin-left:-13.272000px;}
._8{margin-left:-11.928000px;}
._b{margin-left:-10.434000px;}
._2{margin-left:-8.835840px;}
._1{margin-left:-6.626880px;}
._1f{margin-left:-5.526016px;}
._0{margin-left:-4.417920px;}
._6{margin-left:-2.688000px;}
._c{margin-left:-1.392000px;}
._11{width:1.089920px;}
._30{width:2.116560px;}
._2f{width:5.019840px;}
._10{width:9.072000px;}
._f{width:11.016000px;}
._13{width:12.702000px;}
._d{width:14.190000px;}
._e{width:15.264000px;}
._1c{width:17.334000px;}
._1b{width:18.630000px;}
._17{width:20.022000px;}
._18{width:21.368880px;}
._19{width:22.695120px;}
._a{width:29.160000px;}
._16{width:31.266000px;}
._9{width:35.316000px;}
._2e{width:41.448000px;}
._2c{width:43.560000px;}
._2b{width:45.672000px;}
._2d{width:47.916000px;}
._14{width:71.928000px;}
._15{width:116.964000px;}
._24{width:176.760000px;}
._25{width:185.280000px;}
._33{width:187.231658px;}
._31{width:189.012600px;}
._23{width:195.360000px;}
._34{width:233.827200px;}
._26{width:255.720000px;}
._22{width:294.000000px;}
._2a{width:559.080000px;}
._32{width:566.993400px;}
._35{width:719.145600px;}
._29{width:741.120000px;}
._21{width:808.320000px;}
._28{width:864.120000px;}
._27{width:870.480000px;}
._20{width:1027.320000px;}
._1d{width:3029.166000px;}
._1a{width:5552.233397px;}
._1e{width:5678.101405px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,107,156);}
.fc2{color:rgb(64,144,181);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs20{font-size:27.000600px;}
.fse{font-size:57.000000px;}
.fsb{font-size:61.800000px;}
.fs1d{font-size:62.400000px;}
.fsc{font-size:62.640600px;}
.fs7{font-size:69.960000px;}
.fs1b{font-size:73.440600px;}
.fs1f{font-size:77.400000px;}
.fs26{font-size:77.760600px;}
.fs1e{font-size:78.000000px;}
.fs11{font-size:79.920600px;}
.fsd{font-size:81.600000px;}
.fs14{font-size:82.200000px;}
.fs13{font-size:82.800000px;}
.fs1a{font-size:86.400000px;}
.fs1c{font-size:87.000000px;}
.fs12{font-size:87.600000px;}
.fs18{font-size:88.200000px;}
.fs15{font-size:93.600000px;}
.fs19{font-size:94.200000px;}
.fs4{font-size:94.446000px;}
.fs16{font-size:96.000000px;}
.fsf{font-size:96.600000px;}
.fs17{font-size:97.800000px;}
.fs8{font-size:100.800000px;}
.fs23{font-size:106.200600px;}
.fs21{font-size:108.000000px;}
.fs24{font-size:110.400000px;}
.fs22{font-size:117.000000px;}
.fs25{font-size:118.200600px;}
.fs6{font-size:120.000000px;}
.fs9{font-size:132.000000px;}
.fs10{font-size:137.400000px;}
.fsa{font-size:147.000000px;}
.fs3{font-size:162.000000px;}
.fs1{font-size:168.000000px;}
.fs5{font-size:195.571800px;}
.fs2{font-size:312.000000px;}
.fs0{font-size:368.160000px;}
.y0{bottom:0.000000px;}
.y16{bottom:162.841800px;}
.y2a{bottom:162.859050px;}
.y15{bottom:211.441800px;}
.y29{bottom:211.459050px;}
.y14{bottom:260.041800px;}
.y28{bottom:260.059050px;}
.y30{bottom:364.542150px;}
.y8{bottom:375.894150px;}
.y5d{bottom:426.345150px;}
.y5c{bottom:462.525150px;}
.y27{bottom:538.739550px;}
.y5b{bottom:571.605150px;}
.y26{bottom:587.339550px;}
.y25{bottom:635.939550px;}
.y5a{bottom:683.940150px;}
.y38{bottom:734.669850px;}
.y59{bottom:796.245150px;}
.y37{bottom:810.287550px;}
.y58{bottom:844.860150px;}
.y36{bottom:885.917550px;}
.y57{bottom:909.105150px;}
.y2e{bottom:971.596650px;}
.y56{bottom:1006.305150px;}
.y55{bottom:1019.805150px;}
.y2d{bottom:1020.196650px;}
.y22{bottom:1087.960050px;}
.y24{bottom:1127.042550px;}
.y21{bottom:1136.560050px;}
.y23{bottom:1175.642550px;}
.y2f{bottom:1243.918650px;}
.y51{bottom:1309.785150px;}
.y69{bottom:1329.240150px;}
.y4f{bottom:1360.020150px;}
.y68{bottom:1370.805150px;}
.y4e{bottom:1392.945150px;}
.y67{bottom:1489.080150px;}
.y4d{bottom:1505.805150px;}
.y66{bottom:1608.402150px;}
.y4c{bottom:1619.745150px;}
.y54{bottom:1645.140150px;}
.y65{bottom:1727.220150px;}
.y4b{bottom:1733.685150px;}
.y50{bottom:1736.940150px;}
.y4a{bottom:1753.680150px;}
.y64{bottom:1846.005150px;}
.y49{bottom:1847.647950px;}
.y48{bottom:1866.000150px;}
.y53{bottom:1881.105150px;}
.y52{bottom:1911.360150px;}
.y47{bottom:1958.325150px;}
.y63{bottom:1965.900150px;}
.y62{bottom:2006.400150px;}
.y32{bottom:2023.913095px;}
.y61{bottom:2040.960150px;}
.y60{bottom:2086.320150px;}
.y35{bottom:2150.613150px;}
.y34{bottom:2223.603750px;}
.y33{bottom:2296.593750px;}
.y2c{bottom:2373.585150px;}
.y20{bottom:2453.984550px;}
.y1f{bottom:2501.977050px;}
.y1e{bottom:2549.969550px;}
.y31{bottom:2620.993800px;}
.y7{bottom:2730.636150px;}
.y46{bottom:2905.500150px;}
.y3b{bottom:2965.440150px;}
.y45{bottom:3111.225150px;}
.y44{bottom:3151.725150px;}
.y43{bottom:3218.685150px;}
.y41{bottom:3255.945150px;}
.y42{bottom:3264.045150px;}
.y40{bottom:3326.685150px;}
.y3f{bottom:3348.285150px;}
.y3e{bottom:3379.605150px;}
.y3c{bottom:3411.465150px;}
.y3d{bottom:3420.105150px;}
.y3a{bottom:3544.305150px;}
.y39{bottom:3571.845150px;}
.y5f{bottom:3612.885150px;}
.y1d{bottom:3615.690000px;}
.y5e{bottom:3618.285150px;}
.y1c{bottom:3664.290150px;}
.y1b{bottom:3712.890000px;}
.y1a{bottom:3761.490300px;}
.y18{bottom:3764.916900px;}
.y19{bottom:3810.090150px;}
.y17{bottom:3813.516750px;}
.y2b{bottom:3883.173000px;}
.y9{bottom:3978.480150px;}
.y13{bottom:4142.846850px;}
.ye{bottom:4142.847150px;}
.y12{bottom:4191.446850px;}
.yd{bottom:4191.447000px;}
.y11{bottom:4240.046850px;}
.yc{bottom:4240.047000px;}
.y10{bottom:4288.646850px;}
.yb{bottom:4288.647000px;}
.yf{bottom:4337.246850px;}
.ya{bottom:4337.247000px;}
.y6{bottom:4433.216250px;}
.y5{bottom:4599.998100px;}
.y4{bottom:4646.492100px;}
.y3{bottom:4734.644250px;}
.y2{bottom:4845.092250px;}
.y1{bottom:4955.540400px;}
.h27{height:26.499612px;}
.h11{height:41.718640px;}
.h21{height:48.911440px;}
.h2d{height:51.788560px;}
.h16{height:53.227120px;}
.h10{height:64.455469px;}
.h24{height:65.081250px;}
.h13{height:66.529687px;}
.h26{height:75.963867px;}
.h1a{height:80.674805px;}
.h25{height:81.351562px;}
.h12{height:85.106250px;}
.h23{height:85.385742px;}
.h17{height:85.974609px;}
.h18{height:86.357813px;}
.h1e{height:86.563477px;}
.h20{height:87.075000px;}
.h22{height:90.738281px;}
.h1b{height:91.863281px;}
.h1c{height:94.218750px;}
.h14{height:94.807617px;}
.h1f{height:98.247656px;}
.hd{height:98.929688px;}
.h1d{height:102.002344px;}
.h28{height:105.996094px;}
.h2b{height:108.351562px;}
.h2a{height:110.763907px;}
.h29{height:114.829102px;}
.h2c{height:116.007425px;}
.h19{height:117.773438px;}
.h5{height:122.310000px;}
.h7{height:125.251530px;}
.h8{height:125.252130px;}
.h6{height:125.253330px;}
.hb{height:128.040000px;}
.he{height:129.550781px;}
.hc{height:130.080000px;}
.h15{height:134.850586px;}
.hf{height:144.272461px;}
.h9{height:147.656709px;}
.h3{height:164.882812px;}
.ha{height:191.322000px;}
.h4{height:235.560000px;}
.h2{height:277.960800px;}
.h1{height:5127.750000px;}
.h0{height:5127.870000px;}
.w1{width:3426.750000px;}
.w0{width:3427.080000px;}
.x0{left:0.000000px;}
.x6{left:97.795200px;}
.x4{left:155.500650px;}
.x2e{left:157.305000px;}
.x3c{left:165.345000px;}
.x2f{left:166.650000px;}
.xc{left:174.330750px;}
.x3d{left:176.745000px;}
.x30{left:187.560000px;}
.x3e{left:196.950000px;}
.xe{left:235.793100px;}
.xd{left:262.553100px;}
.xf{left:280.526700px;}
.x31{left:319.350000px;}
.x9{left:331.653600px;}
.x15{left:387.750000px;}
.x3f{left:397.965000px;}
.x27{left:414.450000px;}
.x26{left:419.850000px;}
.x2c{left:421.905000px;}
.x21{left:439.290000px;}
.x32{left:449.520000px;}
.x3b{left:463.485000px;}
.x2d{left:498.405000px;}
.x1c{left:521.295000px;}
.x34{left:536.085000px;}
.x28{left:562.785000px;}
.x22{left:581.235000px;}
.x1d{left:592.590000px;}
.x1e{left:600.030000px;}
.x16{left:648.735000px;}
.x1b{left:653.790000px;}
.x23{left:673.305000px;}
.x33{left:683.265000px;}
.x38{left:713.460000px;}
.x17{left:721.110000px;}
.x35{left:734.850000px;}
.x29{left:741.120000px;}
.x13{left:743.310000px;}
.x14{left:744.720000px;}
.x18{left:747.450000px;}
.x37{left:760.845000px;}
.x2a{left:773.055000px;}
.x36{left:798.930000px;}
.x19{left:800.475000px;}
.x24{left:831.255000px;}
.x39{left:845.235000px;}
.x1a{left:871.455000px;}
.x2b{left:919.710000px;}
.x25{left:923.865000px;}
.x1f{left:932.295000px;}
.x1{left:960.343800px;}
.x3a{left:976.080000px;}
.x20{left:985.170000px;}
.x2{left:1079.143200px;}
.x40{left:1100.265000px;}
.x41{left:1164.750000px;}
.x45{left:1179.570000px;}
.x42{left:1184.265000px;}
.x43{left:1193.445000px;}
.x46{left:1229.355000px;}
.x44{left:1235.685000px;}
.x47{left:1238.505000px;}
.x48{left:1280.385000px;}
.x3{left:1428.793200px;}
.xb{left:1681.304700px;}
.x11{left:1704.835050px;}
.x8{left:1715.314800px;}
.x10{left:1731.535050px;}
.x7{left:1734.795840px;}
.x12{left:1749.508650px;}
.x5{left:1772.986650px;}
.x49{left:2042.550000px;}
.x4d{left:2055.509400px;}
.x4c{left:2056.740000px;}
.x4e{left:2070.210000px;}
.xa{left:2126.591700px;}
.x4a{left:2137.515000px;}
.x4b{left:2217.750000px;}
.x4f{left:2351.040000px;}
@media print{
.v5{vertical-align:-30.707733pt;}
.v6{vertical-align:-28.800000pt;}
.v2{vertical-align:-12.168912pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:35.519467pt;}
.v1{vertical-align:47.952533pt;}
.v3{vertical-align:61.344000pt;}
.ls38{letter-spacing:-3.677352pt;}
.ls37{letter-spacing:-3.640000pt;}
.ls33{letter-spacing:-3.360000pt;}
.ls11{letter-spacing:-3.136000pt;}
.ls1c{letter-spacing:-3.005333pt;}
.ls26{letter-spacing:-2.986667pt;}
.ls2b{letter-spacing:-2.912000pt;}
.ls25{letter-spacing:-2.903680pt;}
.ls17{letter-spacing:-2.894080pt;}
.ls23{letter-spacing:-2.725333pt;}
.ls24{letter-spacing:-2.557333pt;}
.ls31{letter-spacing:-2.426667pt;}
.ls3b{letter-spacing:-2.194400pt;}
.ls30{letter-spacing:-1.941333pt;}
.ls2f{letter-spacing:-1.827840pt;}
.ls21{letter-spacing:-1.269227pt;}
.ls12{letter-spacing:-1.057280pt;}
.ls1a{letter-spacing:-0.636160pt;}
.ls16{letter-spacing:-0.555520pt;}
.ls13{letter-spacing:-0.277760pt;}
.lse{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000021pt;}
.ls0{letter-spacing:0.000099pt;}
.ls2c{letter-spacing:0.124587pt;}
.ls39{letter-spacing:0.284587pt;}
.lsb{letter-spacing:0.470400pt;}
.ls1d{letter-spacing:0.500747pt;}
.ls19{letter-spacing:0.636160pt;}
.ls2a{letter-spacing:0.744960pt;}
.ls7{letter-spacing:0.949760pt;}
.ls2e{letter-spacing:0.983040pt;}
.ls5{letter-spacing:0.988800pt;}
.ls32{letter-spacing:1.200027pt;}
.ls1b{letter-spacing:1.200640pt;}
.lsf{letter-spacing:1.299200pt;}
.ls9{letter-spacing:1.404533pt;}
.ls27{letter-spacing:1.747360pt;}
.ls20{letter-spacing:1.806507pt;}
.ls28{letter-spacing:1.983520pt;}
.ls1e{letter-spacing:2.024960pt;}
.ls1f{letter-spacing:2.047893pt;}
.ls18{letter-spacing:2.069760pt;}
.lsc{letter-spacing:2.179520pt;}
.lsa{letter-spacing:2.347200pt;}
.ls6{letter-spacing:2.446080pt;}
.lsd{letter-spacing:2.610347pt;}
.ls14{letter-spacing:2.894080pt;}
.ls3a{letter-spacing:3.208960pt;}
.ls3c{letter-spacing:3.258027pt;}
.ls4{letter-spacing:3.521280pt;}
.ls8{letter-spacing:3.619840pt;}
.ls15{letter-spacing:3.626667pt;}
.ls36{letter-spacing:3.787947pt;}
.ls2d{letter-spacing:3.866667pt;}
.ls29{letter-spacing:4.186667pt;}
.ls10{letter-spacing:4.480000pt;}
.ls35{letter-spacing:4.906667pt;}
.ls34{letter-spacing:5.200000pt;}
.ls22{letter-spacing:5.333333pt;}
.ls2{letter-spacing:1114.008747pt;}
.ls3{letter-spacing:1146.546773pt;}
.ws0{word-spacing:-77.098667pt;}
.ws2{word-spacing:-48.327965pt;}
.ws4{word-spacing:-37.546667pt;}
.ws1{word-spacing:-23.338656pt;}
.ws8{word-spacing:-20.070400pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:487.466667pt;}
.ws7{word-spacing:646.400000pt;}
.ws3{word-spacing:1044.906667pt;}
.ws5{word-spacing:1203.200000pt;}
._3{margin-left:-17.998933pt;}
._7{margin-left:-17.084587pt;}
._12{margin-left:-14.976000pt;}
._5{margin-left:-13.589333pt;}
._4{margin-left:-11.797333pt;}
._8{margin-left:-10.602667pt;}
._b{margin-left:-9.274667pt;}
._2{margin-left:-7.854080pt;}
._1{margin-left:-5.890560pt;}
._1f{margin-left:-4.912014pt;}
._0{margin-left:-3.927040pt;}
._6{margin-left:-2.389333pt;}
._c{margin-left:-1.237333pt;}
._11{width:0.968818pt;}
._30{width:1.881387pt;}
._2f{width:4.462080pt;}
._10{width:8.064000pt;}
._f{width:9.792000pt;}
._13{width:11.290667pt;}
._d{width:12.613333pt;}
._e{width:13.568000pt;}
._1c{width:15.408000pt;}
._1b{width:16.560000pt;}
._17{width:17.797333pt;}
._18{width:18.994560pt;}
._19{width:20.173440pt;}
._a{width:25.920000pt;}
._16{width:27.792000pt;}
._9{width:31.392000pt;}
._2e{width:36.842667pt;}
._2c{width:38.720000pt;}
._2b{width:40.597333pt;}
._2d{width:42.592000pt;}
._14{width:63.936000pt;}
._15{width:103.968000pt;}
._24{width:157.120000pt;}
._25{width:164.693333pt;}
._33{width:166.428140pt;}
._31{width:168.011200pt;}
._23{width:173.653333pt;}
._34{width:207.846400pt;}
._26{width:227.306667pt;}
._22{width:261.333333pt;}
._2a{width:496.960000pt;}
._32{width:503.994133pt;}
._35{width:639.240533pt;}
._29{width:658.773333pt;}
._21{width:718.506667pt;}
._28{width:768.106667pt;}
._27{width:773.760000pt;}
._20{width:913.173333pt;}
._1d{width:2692.592000pt;}
._1a{width:4935.318575pt;}
._1e{width:5047.201249pt;}
.fs20{font-size:24.000533pt;}
.fse{font-size:50.666667pt;}
.fsb{font-size:54.933333pt;}
.fs1d{font-size:55.466667pt;}
.fsc{font-size:55.680533pt;}
.fs7{font-size:62.186667pt;}
.fs1b{font-size:65.280533pt;}
.fs1f{font-size:68.800000pt;}
.fs26{font-size:69.120533pt;}
.fs1e{font-size:69.333333pt;}
.fs11{font-size:71.040533pt;}
.fsd{font-size:72.533333pt;}
.fs14{font-size:73.066667pt;}
.fs13{font-size:73.600000pt;}
.fs1a{font-size:76.800000pt;}
.fs1c{font-size:77.333333pt;}
.fs12{font-size:77.866667pt;}
.fs18{font-size:78.400000pt;}
.fs15{font-size:83.200000pt;}
.fs19{font-size:83.733333pt;}
.fs4{font-size:83.952000pt;}
.fs16{font-size:85.333333pt;}
.fsf{font-size:85.866667pt;}
.fs17{font-size:86.933333pt;}
.fs8{font-size:89.600000pt;}
.fs23{font-size:94.400533pt;}
.fs21{font-size:96.000000pt;}
.fs24{font-size:98.133333pt;}
.fs22{font-size:104.000000pt;}
.fs25{font-size:105.067200pt;}
.fs6{font-size:106.666667pt;}
.fs9{font-size:117.333333pt;}
.fs10{font-size:122.133333pt;}
.fsa{font-size:130.666667pt;}
.fs3{font-size:144.000000pt;}
.fs1{font-size:149.333333pt;}
.fs5{font-size:173.841600pt;}
.fs2{font-size:277.333333pt;}
.fs0{font-size:327.253333pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:144.748267pt;}
.y2a{bottom:144.763600pt;}
.y15{bottom:187.948267pt;}
.y29{bottom:187.963600pt;}
.y14{bottom:231.148267pt;}
.y28{bottom:231.163600pt;}
.y30{bottom:324.037467pt;}
.y8{bottom:334.128133pt;}
.y5d{bottom:378.973467pt;}
.y5c{bottom:411.133467pt;}
.y27{bottom:478.879600pt;}
.y5b{bottom:508.093467pt;}
.y26{bottom:522.079600pt;}
.y25{bottom:565.279600pt;}
.y5a{bottom:607.946800pt;}
.y38{bottom:653.039867pt;}
.y59{bottom:707.773467pt;}
.y37{bottom:720.255600pt;}
.y58{bottom:750.986800pt;}
.y36{bottom:787.482267pt;}
.y57{bottom:808.093467pt;}
.y2e{bottom:863.641467pt;}
.y56{bottom:894.493467pt;}
.y55{bottom:906.493467pt;}
.y2d{bottom:906.841467pt;}
.y22{bottom:967.075600pt;}
.y24{bottom:1001.815600pt;}
.y21{bottom:1010.275600pt;}
.y23{bottom:1045.015600pt;}
.y2f{bottom:1105.705467pt;}
.y51{bottom:1164.253467pt;}
.y69{bottom:1181.546800pt;}
.y4f{bottom:1208.906800pt;}
.y68{bottom:1218.493467pt;}
.y4e{bottom:1238.173467pt;}
.y67{bottom:1323.626800pt;}
.y4d{bottom:1338.493467pt;}
.y66{bottom:1429.690800pt;}
.y4c{bottom:1439.773467pt;}
.y54{bottom:1462.346800pt;}
.y65{bottom:1535.306800pt;}
.y4b{bottom:1541.053467pt;}
.y50{bottom:1543.946800pt;}
.y4a{bottom:1558.826800pt;}
.y64{bottom:1640.893467pt;}
.y49{bottom:1642.353733pt;}
.y48{bottom:1658.666800pt;}
.y53{bottom:1672.093467pt;}
.y52{bottom:1698.986800pt;}
.y47{bottom:1740.733467pt;}
.y63{bottom:1747.466800pt;}
.y62{bottom:1783.466800pt;}
.y32{bottom:1799.033862pt;}
.y61{bottom:1814.186800pt;}
.y60{bottom:1854.506800pt;}
.y35{bottom:1911.656133pt;}
.y34{bottom:1976.536667pt;}
.y33{bottom:2041.416667pt;}
.y2c{bottom:2109.853467pt;}
.y20{bottom:2181.319600pt;}
.y1f{bottom:2223.979600pt;}
.y1e{bottom:2266.639600pt;}
.y31{bottom:2329.772267pt;}
.y7{bottom:2427.232133pt;}
.y46{bottom:2582.666800pt;}
.y3b{bottom:2635.946800pt;}
.y45{bottom:2765.533467pt;}
.y44{bottom:2801.533467pt;}
.y43{bottom:2861.053467pt;}
.y41{bottom:2894.173467pt;}
.y42{bottom:2901.373467pt;}
.y40{bottom:2957.053467pt;}
.y3f{bottom:2976.253467pt;}
.y3e{bottom:3004.093467pt;}
.y3c{bottom:3032.413467pt;}
.y3d{bottom:3040.093467pt;}
.y3a{bottom:3150.493467pt;}
.y39{bottom:3174.973467pt;}
.y5f{bottom:3211.453467pt;}
.y1d{bottom:3213.946667pt;}
.y5e{bottom:3216.253467pt;}
.y1c{bottom:3257.146800pt;}
.y1b{bottom:3300.346667pt;}
.y1a{bottom:3343.546933pt;}
.y18{bottom:3346.592800pt;}
.y19{bottom:3386.746800pt;}
.y17{bottom:3389.792667pt;}
.y2b{bottom:3451.709333pt;}
.y9{bottom:3536.426800pt;}
.y13{bottom:3682.530533pt;}
.ye{bottom:3682.530800pt;}
.y12{bottom:3725.730533pt;}
.yd{bottom:3725.730667pt;}
.y11{bottom:3768.930533pt;}
.yc{bottom:3768.930667pt;}
.y10{bottom:3812.130533pt;}
.yb{bottom:3812.130667pt;}
.yf{bottom:3855.330533pt;}
.ya{bottom:3855.330667pt;}
.y6{bottom:3940.636667pt;}
.y5{bottom:4088.887200pt;}
.y4{bottom:4130.215200pt;}
.y3{bottom:4208.572667pt;}
.y2{bottom:4306.748667pt;}
.y1{bottom:4404.924800pt;}
.h27{height:23.555211pt;}
.h11{height:37.083235pt;}
.h21{height:43.476835pt;}
.h2d{height:46.034275pt;}
.h16{height:47.312995pt;}
.h10{height:57.293750pt;}
.h24{height:57.850000pt;}
.h13{height:59.137500pt;}
.h26{height:67.523438pt;}
.h1a{height:71.710937pt;}
.h25{height:72.312500pt;}
.h12{height:75.650000pt;}
.h23{height:75.898438pt;}
.h17{height:76.421875pt;}
.h18{height:76.762500pt;}
.h1e{height:76.945312pt;}
.h20{height:77.400000pt;}
.h22{height:80.656250pt;}
.h1b{height:81.656250pt;}
.h1c{height:83.750000pt;}
.h14{height:84.273438pt;}
.h1f{height:87.331250pt;}
.hd{height:87.937500pt;}
.h1d{height:90.668750pt;}
.h28{height:94.218750pt;}
.h2b{height:96.312500pt;}
.h2a{height:98.456806pt;}
.h29{height:102.070312pt;}
.h2c{height:103.117711pt;}
.h19{height:104.687500pt;}
.h5{height:108.720000pt;}
.h7{height:111.334693pt;}
.h8{height:111.335227pt;}
.h6{height:111.336293pt;}
.hb{height:113.813333pt;}
.he{height:115.156250pt;}
.hc{height:115.626667pt;}
.h15{height:119.867187pt;}
.hf{height:128.242188pt;}
.h9{height:131.250408pt;}
.h3{height:146.562500pt;}
.ha{height:170.064000pt;}
.h4{height:209.386667pt;}
.h2{height:247.076267pt;}
.h1{height:4558.000000pt;}
.h0{height:4558.106667pt;}
.w1{width:3046.000000pt;}
.w0{width:3046.293333pt;}
.x0{left:0.000000pt;}
.x6{left:86.929067pt;}
.x4{left:138.222800pt;}
.x2e{left:139.826667pt;}
.x3c{left:146.973333pt;}
.x2f{left:148.133333pt;}
.xc{left:154.960667pt;}
.x3d{left:157.106667pt;}
.x30{left:166.720000pt;}
.x3e{left:175.066667pt;}
.xe{left:209.593867pt;}
.xd{left:233.380533pt;}
.xf{left:249.357067pt;}
.x31{left:283.866667pt;}
.x9{left:294.803200pt;}
.x15{left:344.666667pt;}
.x3f{left:353.746667pt;}
.x27{left:368.400000pt;}
.x26{left:373.200000pt;}
.x2c{left:375.026667pt;}
.x21{left:390.480000pt;}
.x32{left:399.573333pt;}
.x3b{left:411.986667pt;}
.x2d{left:443.026667pt;}
.x1c{left:463.373333pt;}
.x34{left:476.520000pt;}
.x28{left:500.253333pt;}
.x22{left:516.653333pt;}
.x1d{left:526.746667pt;}
.x1e{left:533.360000pt;}
.x16{left:576.653333pt;}
.x1b{left:581.146667pt;}
.x23{left:598.493333pt;}
.x33{left:607.346667pt;}
.x38{left:634.186667pt;}
.x17{left:640.986667pt;}
.x35{left:653.200000pt;}
.x29{left:658.773333pt;}
.x13{left:660.720000pt;}
.x14{left:661.973333pt;}
.x18{left:664.400000pt;}
.x37{left:676.306667pt;}
.x2a{left:687.160000pt;}
.x36{left:710.160000pt;}
.x19{left:711.533333pt;}
.x24{left:738.893333pt;}
.x39{left:751.320000pt;}
.x1a{left:774.626667pt;}
.x2b{left:817.520000pt;}
.x25{left:821.213333pt;}
.x1f{left:828.706667pt;}
.x1{left:853.638933pt;}
.x3a{left:867.626667pt;}
.x20{left:875.706667pt;}
.x2{left:959.238400pt;}
.x40{left:978.013333pt;}
.x41{left:1035.333333pt;}
.x45{left:1048.506667pt;}
.x42{left:1052.680000pt;}
.x43{left:1060.840000pt;}
.x46{left:1092.760000pt;}
.x44{left:1098.386667pt;}
.x47{left:1100.893333pt;}
.x48{left:1138.120000pt;}
.x3{left:1270.038400pt;}
.xb{left:1494.493067pt;}
.x11{left:1515.408933pt;}
.x8{left:1524.724267pt;}
.x10{left:1539.142267pt;}
.x7{left:1542.040747pt;}
.x12{left:1555.118800pt;}
.x5{left:1575.988133pt;}
.x49{left:1815.600000pt;}
.x4d{left:1827.119467pt;}
.x4c{left:1828.213333pt;}
.x4e{left:1840.186667pt;}
.xa{left:1890.303733pt;}
.x4a{left:1900.013333pt;}
.x4b{left:1971.333333pt;}
.x4f{left:2089.813333pt;}
}




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