
    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_f1704caa71c8b4d25be05cfc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_21a88c44516cff2af3f72ecd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.911000;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_4c3673bb2f17b49245cf2467.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_d4f6d4623e600c32114330d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_58308e36b195bc44d8377a13.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_a243499f0ee3c205f2ef61ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_30158837c771f1ae42797af4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.887000;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_519e73261cc234077e9fcaf4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_a7fdabfedb48437a628d55dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.868000;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_4981bc30017646ebbb7023be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.714000;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_5c3a03504fb2bd271ef14948.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.999000;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_88d40b03c138c5138740902f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.046000;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_be2bea4eac18d0bc6d00d772.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.389000;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_90ab6ccd6e805e8193a65b85.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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_0a174edea97a15996b684623.woff2')format("woff");}.fff{font-family:fff;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-68.442000px;}
.v7{vertical-align:-58.908000px;}
.v6{vertical-align:-49.092000px;}
.v2{vertical-align:-17.106000px;}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:27.024000px;}
.v4{vertical-align:34.464000px;}
.v3{vertical-align:44.280000px;}
.v8{vertical-align:111.924000px;}
.va{vertical-align:128.106000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.001223px;}
.ls1e{letter-spacing:0.003791px;}
.ls1b{letter-spacing:0.004332px;}
.ls30{letter-spacing:0.004890px;}
.ls21{letter-spacing:0.005972px;}
.ls14{letter-spacing:0.006366px;}
.ls2{letter-spacing:0.009661px;}
.ls19{letter-spacing:0.010838px;}
.ls25{letter-spacing:0.014511px;}
.ls31{letter-spacing:0.015031px;}
.ls5{letter-spacing:0.024360px;}
.ls29{letter-spacing:0.026036px;}
.ls2e{letter-spacing:0.033099px;}
.lse{letter-spacing:0.261818px;}
.lsd{letter-spacing:0.458182px;}
.ls7{letter-spacing:0.523637px;}
.lsc{letter-spacing:1.832729px;}
.ls26{letter-spacing:2.986472px;}
.ls4{letter-spacing:2.989223px;}
.ls1a{letter-spacing:2.989289px;}
.ls2a{letter-spacing:2.992472px;}
.ls3{letter-spacing:2.995223px;}
.ls33{letter-spacing:3.730912px;}
.ls11{letter-spacing:3.796367px;}
.ls28{letter-spacing:3.927276px;}
.ls1d{letter-spacing:5.105459px;}
.ls13{letter-spacing:5.978289px;}
.ls20{letter-spacing:6.721050px;}
.ls15{letter-spacing:8.057159px;}
.ls16{letter-spacing:10.865464px;}
.lsa{letter-spacing:10.930918px;}
.ls1f{letter-spacing:11.095289px;}
.ls27{letter-spacing:16.298195px;}
.ls1c{letter-spacing:16.651488px;}
.ls9{letter-spacing:18.130924px;}
.ls8{letter-spacing:18.196379px;}
.ls1{letter-spacing:18.392743px;}
.lsb{letter-spacing:19.963653px;}
.lsf{letter-spacing:21.175289px;}
.ls32{letter-spacing:21.796382px;}
.ls6{letter-spacing:24.481223px;}
.ls2b{letter-spacing:24.808472px;}
.ls17{letter-spacing:25.592749px;}
.ls22{letter-spacing:28.537050px;}
.ls18{letter-spacing:29.422472px;}
.ls24{letter-spacing:32.727300px;}
.ls23{letter-spacing:33.447301px;}
.ls2c{letter-spacing:36.327303px;}
.ls2d{letter-spacing:36.392758px;}
.ls10{letter-spacing:42.103488px;}
.ls2f{letter-spacing:52.648784px;}
.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;}
}
.ws51{word-spacing:-51.820407px;}
.ws49{word-spacing:-47.258221px;}
.ws33{word-spacing:-42.637126px;}
.ws4e{word-spacing:-39.534578px;}
.ws38{word-spacing:-36.379667px;}
.ws5d{word-spacing:-34.298210px;}
.ws36{word-spacing:-31.771663px;}
.ws31{word-spacing:-31.706208px;}
.ws44{word-spacing:-29.061842px;}
.ws45{word-spacing:-24.506202px;}
.ws77{word-spacing:-24.440748px;}
.ws46{word-spacing:-18.183288px;}
.ws73{word-spacing:-14.111859px;}
.ws3b{word-spacing:-6.336005px;}
.ws58{word-spacing:-5.379825px;}
.ws6f{word-spacing:-3.652367px;}
.ws21{word-spacing:-2.866911px;}
.ws9{word-spacing:-2.857274px;}
.ws61{word-spacing:-2.775275px;}
.ws3c{word-spacing:-2.736002px;}
.ws62{word-spacing:-2.408729px;}
.ws64{word-spacing:-2.212365px;}
.ws3{word-spacing:-1.482435px;}
.wsf{word-spacing:-1.422659px;}
.ws13{word-spacing:-1.064006px;}
.ws24{word-spacing:-1.034183px;}
.ws6e{word-spacing:-0.837819px;}
.ws74{word-spacing:-0.379637px;}
.ws6a{word-spacing:-0.314182px;}
.ws6b{word-spacing:-0.065455px;}
.ws3a{word-spacing:-0.052364px;}
.ws1b{word-spacing:0.000000px;}
.ws52{word-spacing:0.011257px;}
.ws30{word-spacing:0.013091px;}
.ws56{word-spacing:0.078546px;}
.ws10{word-spacing:0.669487px;}
.ws72{word-spacing:0.733092px;}
.wsb{word-spacing:1.207467px;}
.ws39{word-spacing:1.322183px;}
.ws4{word-spacing:1.327018px;}
.ws5{word-spacing:1.625896px;}
.ws27{word-spacing:1.780365px;}
.ws5b{word-spacing:1.911274px;}
.ws67{word-spacing:2.107638px;}
.ws3e{word-spacing:2.173093px;}
.ws3d{word-spacing:2.461093px;}
.ws65{word-spacing:2.565820px;}
.ws1e{word-spacing:2.827639px;}
.ws26{word-spacing:2.958548px;}
.ws4c{word-spacing:3.089457px;}
.ws48{word-spacing:3.154912px;}
.ws43{word-spacing:3.246548px;}
.ws32{word-spacing:3.285821px;}
.ws6{word-spacing:3.299613px;}
.ws6d{word-spacing:3.351276px;}
.wsc{word-spacing:3.359389px;}
.ws7f{word-spacing:3.416730px;}
.ws5a{word-spacing:3.482185px;}
.ws47{word-spacing:3.573821px;}
.ws23{word-spacing:3.613094px;}
.ws12{word-spacing:3.658267px;}
.ws16{word-spacing:3.678549px;}
.ws68{word-spacing:3.940367px;}
.ws42{word-spacing:4.071276px;}
.ws2f{word-spacing:4.162913px;}
.ws76{word-spacing:4.333095px;}
.ws29{word-spacing:4.483200px;}
.ws55{word-spacing:4.529458px;}
.ws3f{word-spacing:4.594913px;}
.ws7a{word-spacing:4.987641px;}
.ws20{word-spacing:5.053095px;}
.ws11{word-spacing:5.092881px;}
.ws41{word-spacing:5.184004px;}
.ws28{word-spacing:5.379825px;}
.wsa{word-spacing:5.690637px;}
.ws18{word-spacing:5.773096px;}
.ws35{word-spacing:5.838550px;}
.ws25{word-spacing:5.969460px;}
.ws40{word-spacing:5.995641px;}
.ws53{word-spacing:6.034914px;}
.wsd{word-spacing:6.168842px;}
.ws57{word-spacing:6.296733px;}
.ws79{word-spacing:6.362187px;}
.ws8{word-spacing:6.407944px;}
.ws1d{word-spacing:6.427642px;}
.ws0{word-spacing:6.455775px;}
.wse{word-spacing:6.467720px;}
.ws66{word-spacing:6.689460px;}
.ws34{word-spacing:6.715642px;}
.ws75{word-spacing:6.754915px;}
.ws69{word-spacing:6.820369px;}
.ws71{word-spacing:7.016733px;}
.ws78{word-spacing:7.370188px;}
.ws2d{word-spacing:7.802188px;}
.ws15{word-spacing:7.867643px;}
.ws5f{word-spacing:7.933098px;}
.ws1f{word-spacing:8.064007px;}
.ws4d{word-spacing:8.260371px;}
.ws4b{word-spacing:8.391280px;}
.ws19{word-spacing:8.849462px;}
.ws1a{word-spacing:8.914917px;}
.ws70{word-spacing:8.980371px;}
.ws7{word-spacing:9.635827px;}
.ws4a{word-spacing:9.661099px;}
.ws54{word-spacing:9.831281px;}
.ws59{word-spacing:9.896736px;}
.ws17{word-spacing:10.027645px;}
.ws22{word-spacing:10.747645px;}
.ws5c{word-spacing:11.402191px;}
.ws2c{word-spacing:12.056737px;}
.ws2b{word-spacing:13.562193px;}
.ws1c{word-spacing:14.151285px;}
.ws7b{word-spacing:14.544012px;}
.ws2a{word-spacing:15.552013px;}
.ws63{word-spacing:17.803651px;}
.ws6c{word-spacing:23.040019px;}
.ws80{word-spacing:23.105474px;}
.ws2{word-spacing:23.312640px;}
.ws7e{word-spacing:23.367292px;}
.ws4f{word-spacing:24.754930px;}
.ws7d{word-spacing:26.849477px;}
.ws1{word-spacing:31.091012px;}
.ws60{word-spacing:32.792755px;}
.ws5e{word-spacing:34.311301px;}
.ws7c{word-spacing:44.705492px;}
.ws2e{word-spacing:58.281600px;}
.ws50{word-spacing:63.316836px;}
.ws14{word-spacing:69.937725px;}
.ws37{word-spacing:99.202992px;}
._2{margin-left:-37.085030px;}
._1a{margin-left:-17.440222px;}
._1b{margin-left:-10.948500px;}
._15{margin-left:-8.091257px;}
._12{margin-left:-6.408659px;}
._4{margin-left:-4.961375px;}
._1e{margin-left:-3.834239px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.259614px;}
._22{width:1.000474px;}
._1{width:2.008474px;}
._a{width:3.825665px;}
._1f{width:7.173150px;}
._11{width:17.006985px;}
._21{width:18.144099px;}
._6{width:19.450993px;}
._20{width:21.098964px;}
._13{width:22.160250px;}
._9{width:23.814612px;}
._b{width:24.914443px;}
._5{width:26.679515px;}
._10{width:28.147442px;}
._d{width:29.165856px;}
._c{width:31.051759px;}
._8{width:32.964578px;}
._e{width:35.140165px;}
._7{width:36.188161px;}
._f{width:38.358359px;}
._19{width:41.126108px;}
._1c{width:43.658218px;}
._23{width:45.032765px;}
._1d{width:47.508682px;}
._24{width:50.792770px;}
._18{width:53.701279px;}
._17{width:58.790279px;}
._16{width:80.697600px;}
._14{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.168000px;}
.y22{bottom:108.000000px;}
.ybd{bottom:113.539500px;}
.y44{bottom:121.297500px;}
.yd8{bottom:124.476000px;}
.y62{bottom:124.902000px;}
.y63{bottom:125.950500px;}
.y9e{bottom:128.607000px;}
.y21{bottom:132.652500px;}
.ybc{bottom:138.192000px;}
.y81{bottom:145.212000px;}
.yd7{bottom:149.128500px;}
.y61{bottom:152.013000px;}
.y9d{bottom:153.259500px;}
.y20{bottom:157.305000px;}
.ybb{bottom:162.844500px;}
.y43{bottom:165.889500px;}
.y60{bottom:176.665500px;}
.y9c{bottom:177.912000px;}
.y1f{bottom:181.957500px;}
.y80{bottom:182.422500px;}
.yd6{bottom:187.230000px;}
.y42{bottom:190.542000px;}
.y9b{bottom:202.564500px;}
.yba{bottom:203.701500px;}
.y1e{bottom:206.611500px;}
.y5f{bottom:217.522500px;}
.y7f{bottom:219.634500px;}
.yd5{bottom:225.333000px;}
.y9a{bottom:227.218500px;}
.y1d{bottom:231.264000px;}
.y41{bottom:235.134000px;}
.yb9{bottom:249.765000px;}
.y7e{bottom:255.510000px;}
.y1c{bottom:255.916500px;}
.yb8{bottom:260.989500px;}
.yd4{bottom:263.434500px;}
.y99{bottom:271.810500px;}
.y5e{bottom:274.810500px;}
.y40{bottom:279.727500px;}
.y7d{bottom:280.162500px;}
.yd3{bottom:288.088500px;}
.yb7{bottom:288.100500px;}
.y1b{bottom:296.773500px;}
.y5d{bottom:299.463000px;}
.y3f{bottom:304.380000px;}
.yb6{bottom:312.753000px;}
.y7c{bottom:315.382500px;}
.y98{bottom:316.402500px;}
.y5c{bottom:324.115500px;}
.yd2{bottom:328.945500px;}
.yb5{bottom:337.405500px;}
.y3e{bottom:339.600000px;}
.y97{bottom:341.055000px;}
.y5b{bottom:348.768000px;}
.y1a{bottom:353.787000px;}
.y7b{bottom:363.238500px;}
.y19{bottom:375.538500px;}
.y96{bottom:376.276500px;}
.yd1{bottom:377.778000px;}
.yb4{bottom:381.997500px;}
.y5a{bottom:383.989500px;}
.y3d{bottom:387.876000px;}
.y7a{bottom:387.891000px;}
.y18{bottom:397.291500px;}
.y3c{bottom:412.528500px;}
.y79{bottom:412.543500px;}
.y17{bottom:419.044500px;}
.y95{bottom:424.551000px;}
.yb3{bottom:426.589500px;}
.y59{bottom:432.264000px;}
.yd0{bottom:435.066000px;}
.y3b{bottom:437.181000px;}
.y78{bottom:437.196000px;}
.y16{bottom:440.796000px;}
.y94{bottom:449.205000px;}
.y58{bottom:456.916500px;}
.ycf{bottom:459.718500px;}
.y15{bottom:462.549000px;}
.yb2{bottom:467.446500px;}
.y93{bottom:473.857500px;}
.y77{bottom:478.054500px;}
.y57{bottom:481.569000px;}
.y3a{bottom:481.774500px;}
.y14{bottom:484.300500px;}
.yce{bottom:484.371000px;}
.y92{bottom:498.510000px;}
.y13{bottom:506.053500px;}
.ycd{bottom:509.023500px;}
.y56{bottom:516.790500px;}
.y91{bottom:523.162500px;}
.yb1{bottom:524.734500px;}
.y39{bottom:526.366500px;}
.y12{bottom:527.806500px;}
.y76{bottom:534.921000px;}
.y90{bottom:547.815000px;}
.yb0{bottom:549.387000px;}
.y11{bottom:549.558000px;}
.ycc{bottom:549.880500px;}
.y38{bottom:561.586500px;}
.y75{bottom:563.653500px;}
.y55{bottom:565.066500px;}
.y10{bottom:571.311000px;}
.y8f{bottom:572.467500px;}
.yaf{bottom:574.039500px;}
.y74{bottom:574.878000px;}
.y54{bottom:589.719000px;}
.yf{bottom:593.062500px;}
.y8e{bottom:597.120000px;}
.yae{bottom:598.693500px;}
.ycb{bottom:607.168500px;}
.y37{bottom:609.862500px;}
.y73{bottom:613.770000px;}
.ye{bottom:614.815500px;}
.y8d{bottom:621.772500px;}
.y53{bottom:634.311000px;}
.y36{bottom:634.515000px;}
.yad{bottom:635.128500px;}
.yd{bottom:636.567000px;}
.yca{bottom:645.271500px;}
.y8c{bottom:646.426500px;}
.yc{bottom:658.320000px;}
.y35{bottom:659.167500px;}
.yac{bottom:659.781000px;}
.y72{bottom:661.626000px;}
.y52{bottom:678.903000px;}
.yb{bottom:680.073000px;}
.y8b{bottom:681.646500px;}
.yc9{bottom:683.373000px;}
.y34{bottom:683.820000px;}
.y71{bottom:686.278500px;}
.yab{bottom:700.638000px;}
.ya{bottom:701.824500px;}
.y51{bottom:703.555500px;}
.y33{bottom:708.474000px;}
.y70{bottom:710.931000px;}
.yc8{bottom:721.476000px;}
.y9{bottom:723.577500px;}
.y8a{bottom:729.922500px;}
.y50{bottom:738.777000px;}
.y32{bottom:743.694000px;}
.y8{bottom:745.329000px;}
.y6f{bottom:746.151000px;}
.y89{bottom:754.575000px;}
.yaa{bottom:757.926000px;}
.yc7{bottom:759.577500px;}
.y7{bottom:774.676500px;}
.y88{bottom:779.227500px;}
.ya9{bottom:782.578500px;}
.y31{bottom:785.277000px;}
.y4f{bottom:787.053000px;}
.y6e{bottom:794.007000px;}
.yc6{bottom:797.680500px;}
.y87{bottom:803.880000px;}
.ya8{bottom:807.231000px;}
.y4e{bottom:811.705500px;}
.y6d{bottom:818.659500px;}
.y86{bottom:828.532500px;}
.ya7{bottom:831.883500px;}
.y6{bottom:837.162000px;}
.yc5{bottom:838.537500px;}
.y30{bottom:842.563500px;}
.y6c{bottom:843.312000px;}
.y4d{bottom:848.140500px;}
.y85{bottom:866.635500px;}
.ya6{bottom:867.105000px;}
.y2f{bottom:867.216000px;}
.y6b{bottom:867.964500px;}
.y4c{bottom:872.793000px;}
.y2e{bottom:891.870000px;}
.y5{bottom:894.366000px;}
.yc4{bottom:895.824000px;}
.y4b{bottom:897.445500px;}
.y6a{bottom:903.186000px;}
.y84{bottom:904.737000px;}
.ya5{bottom:915.379500px;}
.y2d{bottom:916.522500px;}
.y4a{bottom:932.667000px;}
.yc3{bottom:933.927000px;}
.y4{bottom:936.108000px;}
.ya4{bottom:940.032000px;}
.y2c{bottom:941.175000px;}
.y83{bottom:942.840000px;}
.y69{bottom:944.769000px;}
.y2b{bottom:965.827500px;}
.yc2{bottom:972.028500px;}
.y49{bottom:980.941500px;}
.ya3{bottom:984.625500px;}
.ydc{bottom:985.987500px;}
.y3{bottom:986.031000px;}
.y2a{bottom:990.480000px;}
.y68{bottom:1001.635500px;}
.y48{bottom:1005.594000px;}
.yc1{bottom:1010.131500px;}
.y29{bottom:1015.132500px;}
.ydb{bottom:1024.089000px;}
.y2{bottom:1025.910000px;}
.y67{bottom:1026.288000px;}
.ya2{bottom:1029.217500px;}
.y47{bottom:1030.248000px;}
.y28{bottom:1039.785000px;}
.yc0{bottom:1048.233000px;}
.ya1{bottom:1053.870000px;}
.y46{bottom:1054.900500px;}
.y65{bottom:1061.632500px;}
.yda{bottom:1062.192000px;}
.y27{bottom:1064.439000px;}
.y82{bottom:1065.468000px;}
.y1{bottom:1065.789000px;}
.ybf{bottom:1072.887000px;}
.y66{bottom:1077.217500px;}
.ya0{bottom:1078.522500px;}
.y64{bottom:1081.263000px;}
.y26{bottom:1089.091500px;}
.y45{bottom:1090.120500px;}
.ybe{bottom:1097.539500px;}
.yd9{bottom:1100.293500px;}
.y9f{bottom:1103.175000px;}
.y25{bottom:1113.744000px;}
.y24{bottom:1138.396500px;}
.ha{height:2.618184px;}
.hd{height:32.661470px;}
.h5{height:44.831700px;}
.hb{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:49.781453px;}
.h8{height:50.211840px;}
.h6{height:60.254040px;}
.h12{height:60.598349px;}
.he{height:60.689702px;}
.h2{height:72.304680px;}
.h3{height:73.027727px;}
.h9{height:91.145494px;}
.h11{height:91.763494px;}
.h10{height:93.370950px;}
.hc{height:114.542184px;}
.hf{height:145.463702px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x1a{left:110.547000px;}
.x1e{left:116.182500px;}
.xc{left:133.404000px;}
.x1f{left:141.636000px;}
.x9{left:148.909500px;}
.x2{left:160.981500px;}
.x8{left:171.325500px;}
.x3{left:203.034000px;}
.xe{left:328.507500px;}
.x11{left:335.616000px;}
.x5{left:354.594000px;}
.xf{left:359.691000px;}
.x14{left:370.836000px;}
.x6{left:373.905000px;}
.x10{left:378.733500px;}
.x1{left:389.730000px;}
.xd{left:398.074500px;}
.x12{left:401.211000px;}
.x1b{left:406.386000px;}
.x4{left:409.026000px;}
.x7{left:413.578500px;}
.xb{left:442.366500px;}
.x1c{left:450.162000px;}
.x15{left:452.832000px;}
.x19{left:459.054000px;}
.x16{left:469.540500px;}
.x17{left:477.774000px;}
.x1d{left:481.981500px;}
.x13{left:487.158000px;}
.x18{left:517.531500px;}
@media print{
.v5{vertical-align:-60.837333pt;}
.v7{vertical-align:-52.362667pt;}
.v6{vertical-align:-43.637333pt;}
.v2{vertical-align:-15.205333pt;}
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:24.021333pt;}
.v4{vertical-align:30.634667pt;}
.v3{vertical-align:39.360000pt;}
.v8{vertical-align:99.488000pt;}
.va{vertical-align:113.872000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.001087pt;}
.ls1e{letter-spacing:0.003370pt;}
.ls1b{letter-spacing:0.003851pt;}
.ls30{letter-spacing:0.004347pt;}
.ls21{letter-spacing:0.005308pt;}
.ls14{letter-spacing:0.005658pt;}
.ls2{letter-spacing:0.008588pt;}
.ls19{letter-spacing:0.009634pt;}
.ls25{letter-spacing:0.012899pt;}
.ls31{letter-spacing:0.013361pt;}
.ls5{letter-spacing:0.021653pt;}
.ls29{letter-spacing:0.023143pt;}
.ls2e{letter-spacing:0.029422pt;}
.lse{letter-spacing:0.232727pt;}
.lsd{letter-spacing:0.407273pt;}
.ls7{letter-spacing:0.465455pt;}
.lsc{letter-spacing:1.629092pt;}
.ls26{letter-spacing:2.654641pt;}
.ls4{letter-spacing:2.657087pt;}
.ls1a{letter-spacing:2.657146pt;}
.ls2a{letter-spacing:2.659975pt;}
.ls3{letter-spacing:2.662420pt;}
.ls33{letter-spacing:3.316366pt;}
.ls11{letter-spacing:3.374548pt;}
.ls28{letter-spacing:3.490912pt;}
.ls1d{letter-spacing:4.538186pt;}
.ls13{letter-spacing:5.314034pt;}
.ls20{letter-spacing:5.974266pt;}
.ls15{letter-spacing:7.161919pt;}
.ls16{letter-spacing:9.658190pt;}
.lsa{letter-spacing:9.716372pt;}
.ls1f{letter-spacing:9.862479pt;}
.ls27{letter-spacing:14.487285pt;}
.ls1c{letter-spacing:14.801323pt;}
.ls9{letter-spacing:16.116377pt;}
.ls8{letter-spacing:16.174559pt;}
.ls1{letter-spacing:16.349105pt;}
.lsb{letter-spacing:17.745469pt;}
.lsf{letter-spacing:18.822479pt;}
.ls32{letter-spacing:19.374562pt;}
.ls6{letter-spacing:21.761087pt;}
.ls2b{letter-spacing:22.051975pt;}
.ls17{letter-spacing:22.749110pt;}
.ls22{letter-spacing:25.366266pt;}
.ls18{letter-spacing:26.153308pt;}
.ls24{letter-spacing:29.090933pt;}
.ls23{letter-spacing:29.730934pt;}
.ls2c{letter-spacing:32.290936pt;}
.ls2d{letter-spacing:32.349118pt;}
.ls10{letter-spacing:37.425323pt;}
.ls2f{letter-spacing:46.798919pt;}
.ws51{word-spacing:-46.062584pt;}
.ws49{word-spacing:-42.007308pt;}
.ws33{word-spacing:-37.899668pt;}
.ws4e{word-spacing:-35.141847pt;}
.ws38{word-spacing:-32.337481pt;}
.ws5d{word-spacing:-30.487298pt;}
.ws36{word-spacing:-28.241478pt;}
.ws31{word-spacing:-28.183296pt;}
.ws44{word-spacing:-25.832749pt;}
.ws45{word-spacing:-21.783291pt;}
.ws77{word-spacing:-21.725109pt;}
.ws46{word-spacing:-16.162923pt;}
.ws73{word-spacing:-12.543875pt;}
.ws3b{word-spacing:-5.632005pt;}
.ws58{word-spacing:-4.782067pt;}
.ws6f{word-spacing:-3.246548pt;}
.ws21{word-spacing:-2.548366pt;}
.ws9{word-spacing:-2.539799pt;}
.ws61{word-spacing:-2.466911pt;}
.ws3c{word-spacing:-2.432002pt;}
.ws62{word-spacing:-2.141093pt;}
.ws64{word-spacing:-1.966547pt;}
.ws3{word-spacing:-1.317720pt;}
.wsf{word-spacing:-1.264586pt;}
.ws13{word-spacing:-0.945783pt;}
.ws24{word-spacing:-0.919273pt;}
.ws6e{word-spacing:-0.744728pt;}
.ws74{word-spacing:-0.337455pt;}
.ws6a{word-spacing:-0.279273pt;}
.ws6b{word-spacing:-0.058182pt;}
.ws3a{word-spacing:-0.046545pt;}
.ws1b{word-spacing:0.000000pt;}
.ws52{word-spacing:0.010006pt;}
.ws30{word-spacing:0.011636pt;}
.ws56{word-spacing:0.069818pt;}
.ws10{word-spacing:0.595099pt;}
.ws72{word-spacing:0.651637pt;}
.wsb{word-spacing:1.073304pt;}
.ws39{word-spacing:1.175274pt;}
.ws4{word-spacing:1.179572pt;}
.ws5{word-spacing:1.445241pt;}
.ws27{word-spacing:1.582547pt;}
.ws5b{word-spacing:1.698911pt;}
.ws67{word-spacing:1.873456pt;}
.ws3e{word-spacing:1.931638pt;}
.ws3d{word-spacing:2.187638pt;}
.ws65{word-spacing:2.280729pt;}
.ws1e{word-spacing:2.513457pt;}
.ws26{word-spacing:2.629820pt;}
.ws4c{word-spacing:2.746184pt;}
.ws48{word-spacing:2.804366pt;}
.ws43{word-spacing:2.885821pt;}
.ws32{word-spacing:2.920730pt;}
.ws6{word-spacing:2.932989pt;}
.ws6d{word-spacing:2.978912pt;}
.wsc{word-spacing:2.986123pt;}
.ws7f{word-spacing:3.037093pt;}
.ws5a{word-spacing:3.095275pt;}
.ws47{word-spacing:3.176730pt;}
.ws23{word-spacing:3.211639pt;}
.ws12{word-spacing:3.251793pt;}
.ws16{word-spacing:3.269821pt;}
.ws68{word-spacing:3.502548pt;}
.ws42{word-spacing:3.618912pt;}
.ws2f{word-spacing:3.700367pt;}
.ws76{word-spacing:3.851640pt;}
.ws29{word-spacing:3.985067pt;}
.ws55{word-spacing:4.026185pt;}
.ws3f{word-spacing:4.084367pt;}
.ws7a{word-spacing:4.433458pt;}
.ws20{word-spacing:4.491640pt;}
.ws11{word-spacing:4.527005pt;}
.ws41{word-spacing:4.608004pt;}
.ws28{word-spacing:4.782067pt;}
.wsa{word-spacing:5.058344pt;}
.ws18{word-spacing:5.131641pt;}
.ws35{word-spacing:5.189823pt;}
.ws25{word-spacing:5.306186pt;}
.ws40{word-spacing:5.329459pt;}
.ws53{word-spacing:5.364368pt;}
.wsd{word-spacing:5.483415pt;}
.ws57{word-spacing:5.597096pt;}
.ws79{word-spacing:5.655277pt;}
.ws8{word-spacing:5.695951pt;}
.ws1d{word-spacing:5.713459pt;}
.ws0{word-spacing:5.738467pt;}
.wse{word-spacing:5.749084pt;}
.ws66{word-spacing:5.946187pt;}
.ws34{word-spacing:5.969460pt;}
.ws75{word-spacing:6.004369pt;}
.ws69{word-spacing:6.062551pt;}
.ws71{word-spacing:6.237096pt;}
.ws78{word-spacing:6.551278pt;}
.ws2d{word-spacing:6.935279pt;}
.ws15{word-spacing:6.993460pt;}
.ws5f{word-spacing:7.051642pt;}
.ws1f{word-spacing:7.168006pt;}
.ws4d{word-spacing:7.342552pt;}
.ws4b{word-spacing:7.458915pt;}
.ws19{word-spacing:7.866188pt;}
.ws1a{word-spacing:7.924370pt;}
.ws70{word-spacing:7.982552pt;}
.ws7{word-spacing:8.565179pt;}
.ws4a{word-spacing:8.587644pt;}
.ws54{word-spacing:8.738916pt;}
.ws59{word-spacing:8.797098pt;}
.ws17{word-spacing:8.913462pt;}
.ws22{word-spacing:9.553463pt;}
.ws5c{word-spacing:10.135281pt;}
.ws2c{word-spacing:10.717100pt;}
.ws2b{word-spacing:12.055283pt;}
.ws1c{word-spacing:12.578920pt;}
.ws7b{word-spacing:12.928011pt;}
.ws2a{word-spacing:13.824012pt;}
.ws63{word-spacing:15.825468pt;}
.ws6c{word-spacing:20.480017pt;}
.ws80{word-spacing:20.538199pt;}
.ws2{word-spacing:20.722347pt;}
.ws7e{word-spacing:20.770926pt;}
.ws4f{word-spacing:22.004382pt;}
.ws7d{word-spacing:23.866202pt;}
.ws1{word-spacing:27.636455pt;}
.ws60{word-spacing:29.149115pt;}
.ws5e{word-spacing:30.498935pt;}
.ws7c{word-spacing:39.738215pt;}
.ws2e{word-spacing:51.805867pt;}
.ws50{word-spacing:56.281632pt;}
.ws14{word-spacing:62.166867pt;}
.ws37{word-spacing:88.180437pt;}
._2{margin-left:-32.964471pt;}
._1a{margin-left:-15.502419pt;}
._1b{margin-left:-9.732000pt;}
._15{margin-left:-7.192228pt;}
._12{margin-left:-5.696586pt;}
._4{margin-left:-4.410111pt;}
._1e{margin-left:-3.408213pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.119657pt;}
._22{width:0.889310pt;}
._1{width:1.785310pt;}
._a{width:3.400591pt;}
._1f{width:6.376133pt;}
._11{width:15.117320pt;}
._21{width:16.128088pt;}
._6{width:17.289772pt;}
._20{width:18.754635pt;}
._13{width:19.698000pt;}
._9{width:21.168544pt;}
._b{width:22.146172pt;}
._5{width:23.715124pt;}
._10{width:25.019948pt;}
._d{width:25.925205pt;}
._c{width:27.601564pt;}
._8{width:29.301847pt;}
._e{width:31.235702pt;}
._7{width:32.167254pt;}
._f{width:34.096319pt;}
._19{width:36.556540pt;}
._1c{width:38.807305pt;}
._23{width:40.029124pt;}
._1d{width:42.229939pt;}
._24{width:45.149129pt;}
._18{width:47.734470pt;}
._17{width:52.258026pt;}
._16{width:71.731200pt;}
._14{width:86.077200pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.149333pt;}
.y22{bottom:96.000000pt;}
.ybd{bottom:100.924000pt;}
.y44{bottom:107.820000pt;}
.yd8{bottom:110.645333pt;}
.y62{bottom:111.024000pt;}
.y63{bottom:111.956000pt;}
.y9e{bottom:114.317333pt;}
.y21{bottom:117.913333pt;}
.ybc{bottom:122.837333pt;}
.y81{bottom:129.077333pt;}
.yd7{bottom:132.558667pt;}
.y61{bottom:135.122667pt;}
.y9d{bottom:136.230667pt;}
.y20{bottom:139.826667pt;}
.ybb{bottom:144.750667pt;}
.y43{bottom:147.457333pt;}
.y60{bottom:157.036000pt;}
.y9c{bottom:158.144000pt;}
.y1f{bottom:161.740000pt;}
.y80{bottom:162.153333pt;}
.yd6{bottom:166.426667pt;}
.y42{bottom:169.370667pt;}
.y9b{bottom:180.057333pt;}
.yba{bottom:181.068000pt;}
.y1e{bottom:183.654667pt;}
.y5f{bottom:193.353333pt;}
.y7f{bottom:195.230667pt;}
.yd5{bottom:200.296000pt;}
.y9a{bottom:201.972000pt;}
.y1d{bottom:205.568000pt;}
.y41{bottom:209.008000pt;}
.yb9{bottom:222.013333pt;}
.y7e{bottom:227.120000pt;}
.y1c{bottom:227.481333pt;}
.yb8{bottom:231.990667pt;}
.yd4{bottom:234.164000pt;}
.y99{bottom:241.609333pt;}
.y5e{bottom:244.276000pt;}
.y40{bottom:248.646667pt;}
.y7d{bottom:249.033333pt;}
.yd3{bottom:256.078667pt;}
.yb7{bottom:256.089333pt;}
.y1b{bottom:263.798667pt;}
.y5d{bottom:266.189333pt;}
.y3f{bottom:270.560000pt;}
.yb6{bottom:278.002667pt;}
.y7c{bottom:280.340000pt;}
.y98{bottom:281.246667pt;}
.y5c{bottom:288.102667pt;}
.yd2{bottom:292.396000pt;}
.yb5{bottom:299.916000pt;}
.y3e{bottom:301.866667pt;}
.y97{bottom:303.160000pt;}
.y5b{bottom:310.016000pt;}
.y1a{bottom:314.477333pt;}
.y7b{bottom:322.878667pt;}
.y19{bottom:333.812000pt;}
.y96{bottom:334.468000pt;}
.yd1{bottom:335.802667pt;}
.yb4{bottom:339.553333pt;}
.y5a{bottom:341.324000pt;}
.y3d{bottom:344.778667pt;}
.y7a{bottom:344.792000pt;}
.y18{bottom:353.148000pt;}
.y3c{bottom:366.692000pt;}
.y79{bottom:366.705333pt;}
.y17{bottom:372.484000pt;}
.y95{bottom:377.378667pt;}
.yb3{bottom:379.190667pt;}
.y59{bottom:384.234667pt;}
.yd0{bottom:386.725333pt;}
.y3b{bottom:388.605333pt;}
.y78{bottom:388.618667pt;}
.y16{bottom:391.818667pt;}
.y94{bottom:399.293333pt;}
.y58{bottom:406.148000pt;}
.ycf{bottom:408.638667pt;}
.y15{bottom:411.154667pt;}
.yb2{bottom:415.508000pt;}
.y93{bottom:421.206667pt;}
.y77{bottom:424.937333pt;}
.y57{bottom:428.061333pt;}
.y3a{bottom:428.244000pt;}
.y14{bottom:430.489333pt;}
.yce{bottom:430.552000pt;}
.y92{bottom:443.120000pt;}
.y13{bottom:449.825333pt;}
.ycd{bottom:452.465333pt;}
.y56{bottom:459.369333pt;}
.y91{bottom:465.033333pt;}
.yb1{bottom:466.430667pt;}
.y39{bottom:467.881333pt;}
.y12{bottom:469.161333pt;}
.y76{bottom:475.485333pt;}
.y90{bottom:486.946667pt;}
.yb0{bottom:488.344000pt;}
.y11{bottom:488.496000pt;}
.ycc{bottom:488.782667pt;}
.y38{bottom:499.188000pt;}
.y75{bottom:501.025333pt;}
.y55{bottom:502.281333pt;}
.y10{bottom:507.832000pt;}
.y8f{bottom:508.860000pt;}
.yaf{bottom:510.257333pt;}
.y74{bottom:511.002667pt;}
.y54{bottom:524.194667pt;}
.yf{bottom:527.166667pt;}
.y8e{bottom:530.773333pt;}
.yae{bottom:532.172000pt;}
.ycb{bottom:539.705333pt;}
.y37{bottom:542.100000pt;}
.y73{bottom:545.573333pt;}
.ye{bottom:546.502667pt;}
.y8d{bottom:552.686667pt;}
.y53{bottom:563.832000pt;}
.y36{bottom:564.013333pt;}
.yad{bottom:564.558667pt;}
.yd{bottom:565.837333pt;}
.yca{bottom:573.574667pt;}
.y8c{bottom:574.601333pt;}
.yc{bottom:585.173333pt;}
.y35{bottom:585.926667pt;}
.yac{bottom:586.472000pt;}
.y72{bottom:588.112000pt;}
.y52{bottom:603.469333pt;}
.yb{bottom:604.509333pt;}
.y8b{bottom:605.908000pt;}
.yc9{bottom:607.442667pt;}
.y34{bottom:607.840000pt;}
.y71{bottom:610.025333pt;}
.yab{bottom:622.789333pt;}
.ya{bottom:623.844000pt;}
.y51{bottom:625.382667pt;}
.y33{bottom:629.754667pt;}
.y70{bottom:631.938667pt;}
.yc8{bottom:641.312000pt;}
.y9{bottom:643.180000pt;}
.y8a{bottom:648.820000pt;}
.y50{bottom:656.690667pt;}
.y32{bottom:661.061333pt;}
.y8{bottom:662.514667pt;}
.y6f{bottom:663.245333pt;}
.y89{bottom:670.733333pt;}
.yaa{bottom:673.712000pt;}
.yc7{bottom:675.180000pt;}
.y7{bottom:688.601333pt;}
.y88{bottom:692.646667pt;}
.ya9{bottom:695.625333pt;}
.y31{bottom:698.024000pt;}
.y4f{bottom:699.602667pt;}
.y6e{bottom:705.784000pt;}
.yc6{bottom:709.049333pt;}
.y87{bottom:714.560000pt;}
.ya8{bottom:717.538667pt;}
.y4e{bottom:721.516000pt;}
.y6d{bottom:727.697333pt;}
.y86{bottom:736.473333pt;}
.ya7{bottom:739.452000pt;}
.y6{bottom:744.144000pt;}
.yc5{bottom:745.366667pt;}
.y30{bottom:748.945333pt;}
.y6c{bottom:749.610667pt;}
.y4d{bottom:753.902667pt;}
.y85{bottom:770.342667pt;}
.ya6{bottom:770.760000pt;}
.y2f{bottom:770.858667pt;}
.y6b{bottom:771.524000pt;}
.y4c{bottom:775.816000pt;}
.y2e{bottom:792.773333pt;}
.y5{bottom:794.992000pt;}
.yc4{bottom:796.288000pt;}
.y4b{bottom:797.729333pt;}
.y6a{bottom:802.832000pt;}
.y84{bottom:804.210667pt;}
.ya5{bottom:813.670667pt;}
.y2d{bottom:814.686667pt;}
.y4a{bottom:829.037333pt;}
.yc3{bottom:830.157333pt;}
.y4{bottom:832.096000pt;}
.ya4{bottom:835.584000pt;}
.y2c{bottom:836.600000pt;}
.y83{bottom:838.080000pt;}
.y69{bottom:839.794667pt;}
.y2b{bottom:858.513333pt;}
.yc2{bottom:864.025333pt;}
.y49{bottom:871.948000pt;}
.ya3{bottom:875.222667pt;}
.ydc{bottom:876.433333pt;}
.y3{bottom:876.472000pt;}
.y2a{bottom:880.426667pt;}
.y68{bottom:890.342667pt;}
.y48{bottom:893.861333pt;}
.yc1{bottom:897.894667pt;}
.y29{bottom:902.340000pt;}
.ydb{bottom:910.301333pt;}
.y2{bottom:911.920000pt;}
.y67{bottom:912.256000pt;}
.ya2{bottom:914.860000pt;}
.y47{bottom:915.776000pt;}
.y28{bottom:924.253333pt;}
.yc0{bottom:931.762667pt;}
.ya1{bottom:936.773333pt;}
.y46{bottom:937.689333pt;}
.y65{bottom:943.673333pt;}
.yda{bottom:944.170667pt;}
.y27{bottom:946.168000pt;}
.y82{bottom:947.082667pt;}
.y1{bottom:947.368000pt;}
.ybf{bottom:953.677333pt;}
.y66{bottom:957.526667pt;}
.ya0{bottom:958.686667pt;}
.y64{bottom:961.122667pt;}
.y26{bottom:968.081333pt;}
.y45{bottom:968.996000pt;}
.ybe{bottom:975.590667pt;}
.yd9{bottom:978.038667pt;}
.y9f{bottom:980.600000pt;}
.y25{bottom:989.994667pt;}
.y24{bottom:1011.908000pt;}
.ha{height:2.327275pt;}
.hd{height:29.032418pt;}
.h5{height:39.850400pt;}
.hb{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:44.250180pt;}
.h8{height:44.632747pt;}
.h6{height:53.559147pt;}
.h12{height:53.865199pt;}
.he{height:53.946402pt;}
.h2{height:64.270827pt;}
.h3{height:64.913535pt;}
.h9{height:81.018217pt;}
.h11{height:81.567550pt;}
.h10{height:82.996400pt;}
.hc{height:101.815275pt;}
.hf{height:129.301069pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x1a{left:98.264000pt;}
.x1e{left:103.273333pt;}
.xc{left:118.581333pt;}
.x1f{left:125.898667pt;}
.x9{left:132.364000pt;}
.x2{left:143.094667pt;}
.x8{left:152.289333pt;}
.x3{left:180.474667pt;}
.xe{left:292.006667pt;}
.x11{left:298.325333pt;}
.x5{left:315.194667pt;}
.xf{left:319.725333pt;}
.x14{left:329.632000pt;}
.x6{left:332.360000pt;}
.x10{left:336.652000pt;}
.x1{left:346.426667pt;}
.xd{left:353.844000pt;}
.x12{left:356.632000pt;}
.x1b{left:361.232000pt;}
.x4{left:363.578667pt;}
.x7{left:367.625333pt;}
.xb{left:393.214667pt;}
.x1c{left:400.144000pt;}
.x15{left:402.517333pt;}
.x19{left:408.048000pt;}
.x16{left:417.369333pt;}
.x17{left:424.688000pt;}
.x1d{left:428.428000pt;}
.x13{left:433.029333pt;}
.x18{left:460.028000pt;}
}




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