
    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_48e9c7f3af8b6a7a473515e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.684000;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_d50c383990bdf83ef31656c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739000;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_3bdd532e5bd4c3ccfc284616.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_e3016bd7533e5f8018b418eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_84da9e9e1075e78701b8f0ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089355;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_be973826819891df38b43c9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991000;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_34a432a162d7b8b7c8438524.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.834961;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_b430f827d1ed1628dabeb75f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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);}
.v3{vertical-align:-17.796000px;}
.v4{vertical-align:-14.850000px;}
.v5{vertical-align:-6.944400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.244000px;}
.v2{vertical-align:17.844000px;}
.ls30{letter-spacing:-1.242000px;}
.ls35{letter-spacing:-0.756000px;}
.ls33{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.532440px;}
.ls36{letter-spacing:-0.486000px;}
.ls37{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.324000px;}
.ls2a{letter-spacing:-0.313200px;}
.ls29{letter-spacing:-0.162000px;}
.ls34{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.066000px;}
.ls2c{letter-spacing:0.085200px;}
.ls4{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.123600px;}
.lsd{letter-spacing:0.132000px;}
.ls39{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.179400px;}
.ls1c{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.250560px;}
.ls31{letter-spacing:0.270000px;}
.ls42{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.324000px;}
.ls3b{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.378000px;}
.ls40{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.486000px;}
.ls9{letter-spacing:0.540000px;}
.ls3e{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.594000px;}
.ls3d{letter-spacing:0.624000px;}
.ls0{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.702000px;}
.ls3a{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.756000px;}
.ls3f{letter-spacing:0.768000px;}
.ls27{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.840600px;}
.ls32{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.918000px;}
.ls3{letter-spacing:0.972000px;}
.ls11{letter-spacing:1.026000px;}
.ls26{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.134000px;}
.ls3c{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.188000px;}
.ls2b{letter-spacing:1.242000px;}
.ls41{letter-spacing:1.248000px;}
.ls12{letter-spacing:1.350000px;}
.ls19{letter-spacing:1.404000px;}
.ls13{letter-spacing:1.458000px;}
.ls2d{letter-spacing:1.512000px;}
.ls23{letter-spacing:1.620000px;}
.ls21{letter-spacing:1.674000px;}
.ls15{letter-spacing:1.728000px;}
.ls18{letter-spacing:1.782000px;}
.ls24{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.214000px;}
.ls16{letter-spacing:2.430000px;}
.ls2e{letter-spacing:12.600000px;}
.lsf{letter-spacing:18.900000px;}
.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;}
}
.ws52{word-spacing:-12.582000px;}
.ws1{word-spacing:-12.258000px;}
.ws11{word-spacing:-11.880000px;}
.ws46{word-spacing:-11.772000px;}
.ws61{word-spacing:-10.896000px;}
.ws60{word-spacing:-10.560000px;}
.ws53{word-spacing:-9.900000px;}
.ws12{word-spacing:-7.140960px;}
.ws33{word-spacing:-6.890400px;}
.ws13{word-spacing:-6.577200px;}
.ws32{word-spacing:-6.357960px;}
.ws14{word-spacing:-5.742000px;}
.ws3a{word-spacing:-3.672000px;}
.ws1a{word-spacing:-3.402000px;}
.wse{word-spacing:-2.904000px;}
.ws19{word-spacing:-2.646000px;}
.ws5f{word-spacing:-2.484000px;}
.ws8{word-spacing:-2.376000px;}
.ws25{word-spacing:-2.322000px;}
.ws3d{word-spacing:-2.214000px;}
.wsd{word-spacing:-2.112000px;}
.ws64{word-spacing:-1.944000px;}
.ws37{word-spacing:-1.836000px;}
.ws45{word-spacing:-1.674000px;}
.ws4b{word-spacing:-1.620000px;}
.ws40{word-spacing:-1.566000px;}
.ws3e{word-spacing:-1.512000px;}
.ws73{word-spacing:-1.440000px;}
.ws7{word-spacing:-1.404000px;}
.ws3f{word-spacing:-1.350000px;}
.wsf{word-spacing:-1.188000px;}
.ws65{word-spacing:-0.864000px;}
.ws55{word-spacing:-0.756000px;}
.wsc{word-spacing:-0.648000px;}
.ws6d{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.594000px;}
.wsb{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.378000px;}
.ws6e{word-spacing:-0.336000px;}
.ws63{word-spacing:-0.270000px;}
.ws72{word-spacing:-0.144000px;}
.ws22{word-spacing:-0.108000px;}
.ws2{word-spacing:0.000000px;}
.ws4d{word-spacing:0.162000px;}
.ws39{word-spacing:0.270000px;}
.ws3b{word-spacing:0.432000px;}
.ws68{word-spacing:0.480000px;}
.ws20{word-spacing:0.594000px;}
.ws24{word-spacing:0.648000px;}
.ws4e{word-spacing:0.702000px;}
.ws4a{word-spacing:0.756000px;}
.ws30{word-spacing:0.810000px;}
.ws79{word-spacing:1.056000px;}
.ws50{word-spacing:1.134000px;}
.ws70{word-spacing:1.200000px;}
.ws76{word-spacing:1.248000px;}
.ws5d{word-spacing:1.404000px;}
.ws4c{word-spacing:1.458000px;}
.ws9{word-spacing:1.512000px;}
.ws5{word-spacing:1.566000px;}
.ws49{word-spacing:1.728000px;}
.ws2b{word-spacing:1.782000px;}
.ws2e{word-spacing:1.836000px;}
.ws51{word-spacing:1.944000px;}
.ws54{word-spacing:2.052000px;}
.ws2f{word-spacing:2.160000px;}
.ws47{word-spacing:2.214000px;}
.ws69{word-spacing:2.304000px;}
.ws6b{word-spacing:2.400000px;}
.ws28{word-spacing:2.592000px;}
.ws57{word-spacing:2.916000px;}
.ws77{word-spacing:2.976000px;}
.ws10{word-spacing:3.036000px;}
.ws71{word-spacing:3.120000px;}
.ws5c{word-spacing:3.132000px;}
.ws66{word-spacing:3.348000px;}
.ws67{word-spacing:3.456000px;}
.ws6c{word-spacing:3.504000px;}
.ws56{word-spacing:3.564000px;}
.ws6f{word-spacing:3.744000px;}
.ws74{word-spacing:3.840000px;}
.ws4{word-spacing:3.888000px;}
.ws3{word-spacing:3.942000px;}
.ws48{word-spacing:4.158000px;}
.ws75{word-spacing:4.320000px;}
.ws27{word-spacing:4.428000px;}
.ws35{word-spacing:4.482000px;}
.ws5e{word-spacing:4.536000px;}
.ws41{word-spacing:4.698000px;}
.ws62{word-spacing:5.076000px;}
.ws6{word-spacing:5.130000px;}
.ws43{word-spacing:5.238000px;}
.ws31{word-spacing:5.292000px;}
.ws16{word-spacing:5.400000px;}
.ws5b{word-spacing:5.508000px;}
.ws2c{word-spacing:5.778000px;}
.ws38{word-spacing:5.832000px;}
.ws42{word-spacing:5.940000px;}
.ws3c{word-spacing:6.156000px;}
.ws21{word-spacing:6.372000px;}
.ws5a{word-spacing:6.588000px;}
.wsa{word-spacing:6.642000px;}
.ws23{word-spacing:6.804000px;}
.ws58{word-spacing:6.966000px;}
.ws6a{word-spacing:7.056000px;}
.ws34{word-spacing:7.398000px;}
.ws78{word-spacing:7.632000px;}
.ws17{word-spacing:8.046000px;}
.ws1f{word-spacing:8.640000px;}
.ws2d{word-spacing:8.856000px;}
.ws18{word-spacing:9.018000px;}
.ws59{word-spacing:9.126000px;}
.ws36{word-spacing:9.342000px;}
.ws44{word-spacing:9.450000px;}
.ws29{word-spacing:10.476000px;}
.ws26{word-spacing:10.692000px;}
.ws1b{word-spacing:11.340000px;}
.ws1e{word-spacing:11.934000px;}
.ws2a{word-spacing:14.958000px;}
.ws1d{word-spacing:15.390000px;}
.ws1c{word-spacing:16.956000px;}
.ws0{word-spacing:53.573400px;}
._4{margin-left:-28.326000px;}
._3{margin-left:-24.882000px;}
._2{margin-left:-16.686000px;}
._8{margin-left:-15.108000px;}
._a{margin-left:-10.104000px;}
._5{margin-left:-7.968000px;}
._b{margin-left:-6.288000px;}
._9{margin-left:-5.286000px;}
._1{margin-left:-3.402000px;}
._0{margin-left:-1.848000px;}
._7{width:1.212000px;}
._c{width:3.216000px;}
._6{width:52.963200px;}
.fc6{color:rgb(123,121,121);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(57,53,54);}
.fc5{color:rgb(112,109,110);}
.fc1{color:rgb(79,76,77);}
.fc4{color:rgb(236,0,140);}
.fc0{color:rgb(189,188,188);}
.fs9{font-size:26.100000px;}
.fs7{font-size:31.320000px;}
.fsa{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:138.000000px;}
.fs4{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:36.097500px;}
.y1{bottom:36.522600px;}
.y21{bottom:37.833600px;}
.y5e{bottom:63.019350px;}
.yfc{bottom:64.001700px;}
.y8b{bottom:64.666950px;}
.yd6{bottom:64.985100px;}
.ya1{bottom:64.992600px;}
.yb3{bottom:65.009250px;}
.y90{bottom:65.036400px;}
.y8a{bottom:79.663200px;}
.y8f{bottom:80.032650px;}
.yfb{bottom:80.501700px;}
.y5d{bottom:81.728100px;}
.yd5{bottom:83.736600px;}
.ya0{bottom:83.744100px;}
.yc7{bottom:83.750100px;}
.yb2{bottom:83.760750px;}
.y16{bottom:87.378750px;}
.y18{bottom:88.441800px;}
.y89{bottom:94.659450px;}
.y8e{bottom:95.028900px;}
.yd4{bottom:102.488100px;}
.y9f{bottom:102.495600px;}
.yc6{bottom:102.501600px;}
.yb1{bottom:102.512250px;}
.yfa{bottom:105.509700px;}
.y15{bottom:106.130250px;}
.y17{bottom:107.193300px;}
.y88{bottom:109.655700px;}
.y8d{bottom:110.025150px;}
.yd3{bottom:121.239600px;}
.yc5{bottom:121.253100px;}
.y4f{bottom:121.257750px;}
.yb0{bottom:121.263750px;}
.yf9{bottom:122.009700px;}
.y114{bottom:122.549700px;}
.y8c{bottom:128.733900px;}
.yf8{bottom:138.509700px;}
.y113{bottom:139.049700px;}
.yd2{bottom:139.991100px;}
.y5c{bottom:139.995750px;}
.y9e{bottom:139.998600px;}
.yc4{bottom:140.004600px;}
.y4e{bottom:140.009250px;}
.yaf{bottom:140.015250px;}
.y112{bottom:155.549700px;}
.y83{bottom:158.735100px;}
.yd1{bottom:158.742600px;}
.y5b{bottom:158.747250px;}
.y9d{bottom:158.750100px;}
.yc3{bottom:158.756100px;}
.y4d{bottom:158.760750px;}
.yae{bottom:158.766750px;}
.y1f{bottom:159.751500px;}
.yf7{bottom:163.517700px;}
.y111{bottom:172.049700px;}
.y82{bottom:177.486600px;}
.yd0{bottom:177.494100px;}
.y5a{bottom:177.498750px;}
.y9c{bottom:177.501600px;}
.yc2{bottom:177.507600px;}
.y4c{bottom:177.512250px;}
.yad{bottom:177.518250px;}
.yf6{bottom:180.017700px;}
.y81{bottom:196.238100px;}
.ycf{bottom:196.245600px;}
.y59{bottom:196.250250px;}
.y9b{bottom:196.253100px;}
.yc1{bottom:196.259100px;}
.y4b{bottom:196.263750px;}
.yac{bottom:196.269750px;}
.yf5{bottom:196.517700px;}
.y110{bottom:197.057700px;}
.yf4{bottom:213.017700px;}
.y10f{bottom:213.557700px;}
.y80{bottom:214.989600px;}
.yce{bottom:214.997100px;}
.y58{bottom:215.001750px;}
.y9a{bottom:215.004600px;}
.yc0{bottom:215.010600px;}
.y4a{bottom:215.015250px;}
.yab{bottom:215.019750px;}
.y10e{bottom:230.057700px;}
.y7f{bottom:233.741100px;}
.ycd{bottom:233.748600px;}
.y57{bottom:233.753250px;}
.y99{bottom:233.756100px;}
.ybf{bottom:233.762100px;}
.y49{bottom:233.766750px;}
.yaa{bottom:233.769750px;}
.y10d{bottom:246.557700px;}
.y7e{bottom:252.492600px;}
.ycc{bottom:252.500100px;}
.y56{bottom:252.504750px;}
.y98{bottom:252.507600px;}
.ybe{bottom:252.513600px;}
.y48{bottom:252.518250px;}
.y10c{bottom:263.057700px;}
.ya9{bottom:271.232100px;}
.y7d{bottom:271.244100px;}
.ycb{bottom:271.251600px;}
.y55{bottom:271.256250px;}
.y97{bottom:271.259100px;}
.y47{bottom:271.263750px;}
.ybd{bottom:271.265100px;}
.y10b{bottom:288.065700px;}
.ya8{bottom:289.983600px;}
.y7c{bottom:289.995600px;}
.yf3{bottom:289.998750px;}
.yca{bottom:290.003100px;}
.y54{bottom:290.007750px;}
.y96{bottom:290.010600px;}
.y46{bottom:290.015250px;}
.ybc{bottom:290.016600px;}
.y10a{bottom:304.565700px;}
.ya7{bottom:308.735100px;}
.y7b{bottom:308.747100px;}
.yf2{bottom:308.750250px;}
.yc9{bottom:308.754600px;}
.y53{bottom:308.759250px;}
.y95{bottom:308.762100px;}
.y45{bottom:308.766750px;}
.ybb{bottom:308.768100px;}
.y109{bottom:321.065700px;}
.ya6{bottom:327.486600px;}
.y7a{bottom:327.498600px;}
.yf1{bottom:327.501750px;}
.yc8{bottom:327.506100px;}
.y52{bottom:327.510750px;}
.y94{bottom:327.513600px;}
.y44{bottom:327.518250px;}
.yba{bottom:327.519600px;}
.y108{bottom:337.565700px;}
.ya5{bottom:346.238100px;}
.y79{bottom:346.250100px;}
.yf0{bottom:346.253250px;}
.y51{bottom:346.262250px;}
.y93{bottom:346.265100px;}
.y43{bottom:346.268250px;}
.y107{bottom:362.573700px;}
.ya4{bottom:364.989600px;}
.y78{bottom:365.001600px;}
.yef{bottom:365.004750px;}
.y50{bottom:365.013750px;}
.y42{bottom:365.019750px;}
.ye5{bottom:374.335800px;}
.y106{bottom:379.073700px;}
.ya3{bottom:383.741100px;}
.y77{bottom:383.753100px;}
.yee{bottom:383.756250px;}
.y92{bottom:383.768100px;}
.y3a{bottom:383.768250px;}
.ye4{bottom:389.332050px;}
.y105{bottom:395.573700px;}
.ya2{bottom:402.492600px;}
.y76{bottom:402.504600px;}
.yed{bottom:402.507750px;}
.y39{bottom:402.513750px;}
.y91{bottom:402.519600px;}
.ye3{bottom:404.328300px;}
.y41{bottom:407.469450px;}
.y104{bottom:412.073700px;}
.y75{bottom:421.256100px;}
.yec{bottom:421.259250px;}
.y38{bottom:421.265250px;}
.y40{bottom:422.465700px;}
.y103{bottom:437.081700px;}
.y3f{bottom:437.461950px;}
.yeb{bottom:440.010750px;}
.y37{bottom:440.016750px;}
.yb9{bottom:447.014250px;}
.y3e{bottom:452.458200px;}
.y102{bottom:453.581700px;}
.y74{bottom:458.759100px;}
.yea{bottom:458.762250px;}
.y36{bottom:458.768250px;}
.yb8{bottom:462.010500px;}
.y101{bottom:470.081700px;}
.yb7{bottom:477.006750px;}
.y73{bottom:477.510600px;}
.ye9{bottom:477.513750px;}
.y35{bottom:477.519750px;}
.yb6{bottom:492.003000px;}
.y100{bottom:495.089700px;}
.y14{bottom:496.257750px;}
.yb{bottom:496.259250px;}
.y72{bottom:496.262100px;}
.ye8{bottom:496.265250px;}
.y34{bottom:496.269750px;}
.yb5{bottom:506.999250px;}
.yff{bottom:511.589700px;}
.y13{bottom:515.009250px;}
.ya{bottom:515.010750px;}
.y71{bottom:515.013600px;}
.y33{bottom:515.019750px;}
.yb4{bottom:521.995500px;}
.y12{bottom:533.760750px;}
.y9{bottom:533.762250px;}
.y70{bottom:533.765100px;}
.ye7{bottom:533.768250px;}
.yfe{bottom:536.597700px;}
.y32{bottom:552.501750px;}
.y11{bottom:552.512250px;}
.y8{bottom:552.513750px;}
.y6f{bottom:552.516600px;}
.ye6{bottom:552.519750px;}
.yfd{bottom:553.097700px;}
.y31{bottom:571.253250px;}
.y10{bottom:571.263750px;}
.y7{bottom:571.265250px;}
.y6e{bottom:571.268100px;}
.y6d{bottom:590.003100px;}
.y30{bottom:590.004750px;}
.y6{bottom:590.016750px;}
.y117{bottom:593.446650px;}
.y116{bottom:608.442900px;}
.y6c{bottom:608.754600px;}
.y2f{bottom:608.756250px;}
.yf{bottom:608.766750px;}
.y5{bottom:608.768250px;}
.y115{bottom:623.439150px;}
.y6b{bottom:627.506100px;}
.y2e{bottom:627.507750px;}
.ye{bottom:627.518250px;}
.y4{bottom:627.519750px;}
.y6a{bottom:646.257600px;}
.y2d{bottom:646.259250px;}
.y3{bottom:646.269750px;}
.y87{bottom:662.233200px;}
.y2c{bottom:665.010750px;}
.ye2{bottom:671.250300px;}
.y86{bottom:677.229450px;}
.y1e{bottom:683.739750px;}
.y69{bottom:683.760600px;}
.y2b{bottom:683.762250px;}
.ye1{bottom:686.246550px;}
.y85{bottom:692.225700px;}
.ye0{bottom:701.242800px;}
.y68{bottom:702.512100px;}
.y2a{bottom:702.513750px;}
.y1d{bottom:706.245750px;}
.y84{bottom:707.221950px;}
.ydf{bottom:716.239050px;}
.y67{bottom:721.263600px;}
.y29{bottom:721.265250px;}
.y1c{bottom:728.751750px;}
.yde{bottom:731.235300px;}
.y66{bottom:740.015100px;}
.y28{bottom:740.016750px;}
.ydd{bottom:746.231550px;}
.y1b{bottom:751.257750px;}
.y65{bottom:758.766600px;}
.y27{bottom:758.768250px;}
.ydc{bottom:761.227800px;}
.y1a{bottom:773.763750px;}
.ydb{bottom:776.224050px;}
.y26{bottom:777.513750px;}
.y64{bottom:777.518100px;}
.yda{bottom:791.220300px;}
.y63{bottom:796.265100px;}
.y25{bottom:796.265250px;}
.y19{bottom:796.269750px;}
.yd9{bottom:806.216550px;}
.y62{bottom:815.016600px;}
.y24{bottom:815.016750px;}
.yd8{bottom:821.212800px;}
.y61{bottom:833.768100px;}
.y23{bottom:833.768250px;}
.yd7{bottom:836.209050px;}
.yd{bottom:837.401850px;}
.y60{bottom:852.519600px;}
.y22{bottom:852.519750px;}
.yc{bottom:881.905950px;}
.y3d{bottom:918.042450px;}
.y3c{bottom:932.442450px;}
.y3b{bottom:946.842450px;}
.y2{bottom:948.906450px;}
.y5f{bottom:952.281450px;}
.h10{height:19.575000px;}
.h11{height:27.000000px;}
.hc{height:30.660000px;}
.hb{height:33.750000px;}
.he{height:34.848000px;}
.hf{height:36.000000px;}
.h14{height:36.192000px;}
.h13{height:37.407600px;}
.h3{height:40.500000px;}
.h7{height:40.716000px;}
.hd{height:41.334000px;}
.h12{height:41.376000px;}
.h4{height:43.560000px;}
.h8{height:44.270508px;}
.h2{height:44.352000px;}
.h9{height:44.428711px;}
.ha{height:48.048000px;}
.h6{height:113.135742px;}
.h5{height:137.730469px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:63.779550px;}
.x1{left:68.031450px;}
.x3{left:77.234550px;}
.x10{left:80.795550px;}
.x2{left:114.279000px;}
.x5{left:162.637800px;}
.xc{left:304.935750px;}
.x9{left:352.840950px;}
.xd{left:369.923850px;}
.x4{left:374.173200px;}
.x11{left:386.951550px;}
.xe{left:435.826800px;}
.xb{left:490.384950px;}
.xa{left:541.780950px;}
.xf{left:558.070800px;}
.x7{left:561.636450px;}
.x6{left:636.323250px;}
@media print{
.v3{vertical-align:-15.818667pt;}
.v4{vertical-align:-13.200000pt;}
.v5{vertical-align:-6.172800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.661333pt;}
.v2{vertical-align:15.861333pt;}
.ls30{letter-spacing:-1.104000pt;}
.ls35{letter-spacing:-0.672000pt;}
.ls33{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.473280pt;}
.ls36{letter-spacing:-0.432000pt;}
.ls37{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.288000pt;}
.ls2a{letter-spacing:-0.278400pt;}
.ls29{letter-spacing:-0.144000pt;}
.ls34{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.058667pt;}
.ls2c{letter-spacing:0.075733pt;}
.ls4{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.109867pt;}
.lsd{letter-spacing:0.117333pt;}
.ls39{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.159467pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.222720pt;}
.ls31{letter-spacing:0.240000pt;}
.ls42{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls3b{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.336000pt;}
.ls40{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.432000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls3e{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.528000pt;}
.ls3d{letter-spacing:0.554667pt;}
.ls0{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.624000pt;}
.ls3a{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.672000pt;}
.ls3f{letter-spacing:0.682667pt;}
.ls27{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.747200pt;}
.ls32{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.816000pt;}
.ls3{letter-spacing:0.864000pt;}
.ls11{letter-spacing:0.912000pt;}
.ls26{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.008000pt;}
.ls3c{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.056000pt;}
.ls2b{letter-spacing:1.104000pt;}
.ls41{letter-spacing:1.109333pt;}
.ls12{letter-spacing:1.200000pt;}
.ls19{letter-spacing:1.248000pt;}
.ls13{letter-spacing:1.296000pt;}
.ls2d{letter-spacing:1.344000pt;}
.ls23{letter-spacing:1.440000pt;}
.ls21{letter-spacing:1.488000pt;}
.ls15{letter-spacing:1.536000pt;}
.ls18{letter-spacing:1.584000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls17{letter-spacing:1.968000pt;}
.ls16{letter-spacing:2.160000pt;}
.ls2e{letter-spacing:11.200000pt;}
.lsf{letter-spacing:16.800000pt;}
.ws52{word-spacing:-11.184000pt;}
.ws1{word-spacing:-10.896000pt;}
.ws11{word-spacing:-10.560000pt;}
.ws46{word-spacing:-10.464000pt;}
.ws61{word-spacing:-9.685333pt;}
.ws60{word-spacing:-9.386667pt;}
.ws53{word-spacing:-8.800000pt;}
.ws12{word-spacing:-6.347520pt;}
.ws33{word-spacing:-6.124800pt;}
.ws13{word-spacing:-5.846400pt;}
.ws32{word-spacing:-5.651520pt;}
.ws14{word-spacing:-5.104000pt;}
.ws3a{word-spacing:-3.264000pt;}
.ws1a{word-spacing:-3.024000pt;}
.wse{word-spacing:-2.581333pt;}
.ws19{word-spacing:-2.352000pt;}
.ws5f{word-spacing:-2.208000pt;}
.ws8{word-spacing:-2.112000pt;}
.ws25{word-spacing:-2.064000pt;}
.ws3d{word-spacing:-1.968000pt;}
.wsd{word-spacing:-1.877333pt;}
.ws64{word-spacing:-1.728000pt;}
.ws37{word-spacing:-1.632000pt;}
.ws45{word-spacing:-1.488000pt;}
.ws4b{word-spacing:-1.440000pt;}
.ws40{word-spacing:-1.392000pt;}
.ws3e{word-spacing:-1.344000pt;}
.ws73{word-spacing:-1.280000pt;}
.ws7{word-spacing:-1.248000pt;}
.ws3f{word-spacing:-1.200000pt;}
.wsf{word-spacing:-1.056000pt;}
.ws65{word-spacing:-0.768000pt;}
.ws55{word-spacing:-0.672000pt;}
.wsc{word-spacing:-0.576000pt;}
.ws6d{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.528000pt;}
.wsb{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.336000pt;}
.ws6e{word-spacing:-0.298667pt;}
.ws63{word-spacing:-0.240000pt;}
.ws72{word-spacing:-0.128000pt;}
.ws22{word-spacing:-0.096000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.144000pt;}
.ws39{word-spacing:0.240000pt;}
.ws3b{word-spacing:0.384000pt;}
.ws68{word-spacing:0.426667pt;}
.ws20{word-spacing:0.528000pt;}
.ws24{word-spacing:0.576000pt;}
.ws4e{word-spacing:0.624000pt;}
.ws4a{word-spacing:0.672000pt;}
.ws30{word-spacing:0.720000pt;}
.ws79{word-spacing:0.938667pt;}
.ws50{word-spacing:1.008000pt;}
.ws70{word-spacing:1.066667pt;}
.ws76{word-spacing:1.109333pt;}
.ws5d{word-spacing:1.248000pt;}
.ws4c{word-spacing:1.296000pt;}
.ws9{word-spacing:1.344000pt;}
.ws5{word-spacing:1.392000pt;}
.ws49{word-spacing:1.536000pt;}
.ws2b{word-spacing:1.584000pt;}
.ws2e{word-spacing:1.632000pt;}
.ws51{word-spacing:1.728000pt;}
.ws54{word-spacing:1.824000pt;}
.ws2f{word-spacing:1.920000pt;}
.ws47{word-spacing:1.968000pt;}
.ws69{word-spacing:2.048000pt;}
.ws6b{word-spacing:2.133333pt;}
.ws28{word-spacing:2.304000pt;}
.ws57{word-spacing:2.592000pt;}
.ws77{word-spacing:2.645333pt;}
.ws10{word-spacing:2.698667pt;}
.ws71{word-spacing:2.773333pt;}
.ws5c{word-spacing:2.784000pt;}
.ws66{word-spacing:2.976000pt;}
.ws67{word-spacing:3.072000pt;}
.ws6c{word-spacing:3.114667pt;}
.ws56{word-spacing:3.168000pt;}
.ws6f{word-spacing:3.328000pt;}
.ws74{word-spacing:3.413333pt;}
.ws4{word-spacing:3.456000pt;}
.ws3{word-spacing:3.504000pt;}
.ws48{word-spacing:3.696000pt;}
.ws75{word-spacing:3.840000pt;}
.ws27{word-spacing:3.936000pt;}
.ws35{word-spacing:3.984000pt;}
.ws5e{word-spacing:4.032000pt;}
.ws41{word-spacing:4.176000pt;}
.ws62{word-spacing:4.512000pt;}
.ws6{word-spacing:4.560000pt;}
.ws43{word-spacing:4.656000pt;}
.ws31{word-spacing:4.704000pt;}
.ws16{word-spacing:4.800000pt;}
.ws5b{word-spacing:4.896000pt;}
.ws2c{word-spacing:5.136000pt;}
.ws38{word-spacing:5.184000pt;}
.ws42{word-spacing:5.280000pt;}
.ws3c{word-spacing:5.472000pt;}
.ws21{word-spacing:5.664000pt;}
.ws5a{word-spacing:5.856000pt;}
.wsa{word-spacing:5.904000pt;}
.ws23{word-spacing:6.048000pt;}
.ws58{word-spacing:6.192000pt;}
.ws6a{word-spacing:6.272000pt;}
.ws34{word-spacing:6.576000pt;}
.ws78{word-spacing:6.784000pt;}
.ws17{word-spacing:7.152000pt;}
.ws1f{word-spacing:7.680000pt;}
.ws2d{word-spacing:7.872000pt;}
.ws18{word-spacing:8.016000pt;}
.ws59{word-spacing:8.112000pt;}
.ws36{word-spacing:8.304000pt;}
.ws44{word-spacing:8.400000pt;}
.ws29{word-spacing:9.312000pt;}
.ws26{word-spacing:9.504000pt;}
.ws1b{word-spacing:10.080000pt;}
.ws1e{word-spacing:10.608000pt;}
.ws2a{word-spacing:13.296000pt;}
.ws1d{word-spacing:13.680000pt;}
.ws1c{word-spacing:15.072000pt;}
.ws0{word-spacing:47.620800pt;}
._4{margin-left:-25.178667pt;}
._3{margin-left:-22.117333pt;}
._2{margin-left:-14.832000pt;}
._8{margin-left:-13.429333pt;}
._a{margin-left:-8.981333pt;}
._5{margin-left:-7.082667pt;}
._b{margin-left:-5.589333pt;}
._9{margin-left:-4.698667pt;}
._1{margin-left:-3.024000pt;}
._0{margin-left:-1.642667pt;}
._7{width:1.077333pt;}
._c{width:2.858667pt;}
._6{width:47.078400pt;}
.fs9{font-size:23.200000pt;}
.fs7{font-size:27.840000pt;}
.fsa{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:122.666667pt;}
.fs4{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:32.086667pt;}
.y1{bottom:32.464533pt;}
.y21{bottom:33.629867pt;}
.y5e{bottom:56.017200pt;}
.yfc{bottom:56.890400pt;}
.y8b{bottom:57.481733pt;}
.yd6{bottom:57.764533pt;}
.ya1{bottom:57.771200pt;}
.yb3{bottom:57.786000pt;}
.y90{bottom:57.810133pt;}
.y8a{bottom:70.811733pt;}
.y8f{bottom:71.140133pt;}
.yfb{bottom:71.557067pt;}
.y5d{bottom:72.647200pt;}
.yd5{bottom:74.432533pt;}
.ya0{bottom:74.439200pt;}
.yc7{bottom:74.444533pt;}
.yb2{bottom:74.454000pt;}
.y16{bottom:77.670000pt;}
.y18{bottom:78.614933pt;}
.y89{bottom:84.141733pt;}
.y8e{bottom:84.470133pt;}
.yd4{bottom:91.100533pt;}
.y9f{bottom:91.107200pt;}
.yc6{bottom:91.112533pt;}
.yb1{bottom:91.122000pt;}
.yfa{bottom:93.786400pt;}
.y15{bottom:94.338000pt;}
.y17{bottom:95.282933pt;}
.y88{bottom:97.471733pt;}
.y8d{bottom:97.800133pt;}
.yd3{bottom:107.768533pt;}
.yc5{bottom:107.780533pt;}
.y4f{bottom:107.784667pt;}
.yb0{bottom:107.790000pt;}
.yf9{bottom:108.453067pt;}
.y114{bottom:108.933067pt;}
.y8c{bottom:114.430133pt;}
.yf8{bottom:123.119733pt;}
.y113{bottom:123.599733pt;}
.yd2{bottom:124.436533pt;}
.y5c{bottom:124.440667pt;}
.y9e{bottom:124.443200pt;}
.yc4{bottom:124.448533pt;}
.y4e{bottom:124.452667pt;}
.yaf{bottom:124.458000pt;}
.y112{bottom:138.266400pt;}
.y83{bottom:141.097867pt;}
.yd1{bottom:141.104533pt;}
.y5b{bottom:141.108667pt;}
.y9d{bottom:141.111200pt;}
.yc3{bottom:141.116533pt;}
.y4d{bottom:141.120667pt;}
.yae{bottom:141.126000pt;}
.y1f{bottom:142.001333pt;}
.yf7{bottom:145.349067pt;}
.y111{bottom:152.933067pt;}
.y82{bottom:157.765867pt;}
.yd0{bottom:157.772533pt;}
.y5a{bottom:157.776667pt;}
.y9c{bottom:157.779200pt;}
.yc2{bottom:157.784533pt;}
.y4c{bottom:157.788667pt;}
.yad{bottom:157.794000pt;}
.yf6{bottom:160.015733pt;}
.y81{bottom:174.433867pt;}
.ycf{bottom:174.440533pt;}
.y59{bottom:174.444667pt;}
.y9b{bottom:174.447200pt;}
.yc1{bottom:174.452533pt;}
.y4b{bottom:174.456667pt;}
.yac{bottom:174.462000pt;}
.yf5{bottom:174.682400pt;}
.y110{bottom:175.162400pt;}
.yf4{bottom:189.349067pt;}
.y10f{bottom:189.829067pt;}
.y80{bottom:191.101867pt;}
.yce{bottom:191.108533pt;}
.y58{bottom:191.112667pt;}
.y9a{bottom:191.115200pt;}
.yc0{bottom:191.120533pt;}
.y4a{bottom:191.124667pt;}
.yab{bottom:191.128667pt;}
.y10e{bottom:204.495733pt;}
.y7f{bottom:207.769867pt;}
.ycd{bottom:207.776533pt;}
.y57{bottom:207.780667pt;}
.y99{bottom:207.783200pt;}
.ybf{bottom:207.788533pt;}
.y49{bottom:207.792667pt;}
.yaa{bottom:207.795333pt;}
.y10d{bottom:219.162400pt;}
.y7e{bottom:224.437867pt;}
.ycc{bottom:224.444533pt;}
.y56{bottom:224.448667pt;}
.y98{bottom:224.451200pt;}
.ybe{bottom:224.456533pt;}
.y48{bottom:224.460667pt;}
.y10c{bottom:233.829067pt;}
.ya9{bottom:241.095200pt;}
.y7d{bottom:241.105867pt;}
.ycb{bottom:241.112533pt;}
.y55{bottom:241.116667pt;}
.y97{bottom:241.119200pt;}
.y47{bottom:241.123333pt;}
.ybd{bottom:241.124533pt;}
.y10b{bottom:256.058400pt;}
.ya8{bottom:257.763200pt;}
.y7c{bottom:257.773867pt;}
.yf3{bottom:257.776667pt;}
.yca{bottom:257.780533pt;}
.y54{bottom:257.784667pt;}
.y96{bottom:257.787200pt;}
.y46{bottom:257.791333pt;}
.ybc{bottom:257.792533pt;}
.y10a{bottom:270.725067pt;}
.ya7{bottom:274.431200pt;}
.y7b{bottom:274.441867pt;}
.yf2{bottom:274.444667pt;}
.yc9{bottom:274.448533pt;}
.y53{bottom:274.452667pt;}
.y95{bottom:274.455200pt;}
.y45{bottom:274.459333pt;}
.ybb{bottom:274.460533pt;}
.y109{bottom:285.391733pt;}
.ya6{bottom:291.099200pt;}
.y7a{bottom:291.109867pt;}
.yf1{bottom:291.112667pt;}
.yc8{bottom:291.116533pt;}
.y52{bottom:291.120667pt;}
.y94{bottom:291.123200pt;}
.y44{bottom:291.127333pt;}
.yba{bottom:291.128533pt;}
.y108{bottom:300.058400pt;}
.ya5{bottom:307.767200pt;}
.y79{bottom:307.777867pt;}
.yf0{bottom:307.780667pt;}
.y51{bottom:307.788667pt;}
.y93{bottom:307.791200pt;}
.y43{bottom:307.794000pt;}
.y107{bottom:322.287733pt;}
.ya4{bottom:324.435200pt;}
.y78{bottom:324.445867pt;}
.yef{bottom:324.448667pt;}
.y50{bottom:324.456667pt;}
.y42{bottom:324.462000pt;}
.ye5{bottom:332.742933pt;}
.y106{bottom:336.954400pt;}
.ya3{bottom:341.103200pt;}
.y77{bottom:341.113867pt;}
.yee{bottom:341.116667pt;}
.y92{bottom:341.127200pt;}
.y3a{bottom:341.127333pt;}
.ye4{bottom:346.072933pt;}
.y105{bottom:351.621067pt;}
.ya2{bottom:357.771200pt;}
.y76{bottom:357.781867pt;}
.yed{bottom:357.784667pt;}
.y39{bottom:357.790000pt;}
.y91{bottom:357.795200pt;}
.ye3{bottom:359.402933pt;}
.y41{bottom:362.195067pt;}
.y104{bottom:366.287733pt;}
.y75{bottom:374.449867pt;}
.yec{bottom:374.452667pt;}
.y38{bottom:374.458000pt;}
.y40{bottom:375.525067pt;}
.y103{bottom:388.517067pt;}
.y3f{bottom:388.855067pt;}
.yeb{bottom:391.120667pt;}
.y37{bottom:391.126000pt;}
.yb9{bottom:397.346000pt;}
.y3e{bottom:402.185067pt;}
.y102{bottom:403.183733pt;}
.y74{bottom:407.785867pt;}
.yea{bottom:407.788667pt;}
.y36{bottom:407.794000pt;}
.yb8{bottom:410.676000pt;}
.y101{bottom:417.850400pt;}
.yb7{bottom:424.006000pt;}
.y73{bottom:424.453867pt;}
.ye9{bottom:424.456667pt;}
.y35{bottom:424.462000pt;}
.yb6{bottom:437.336000pt;}
.y100{bottom:440.079733pt;}
.y14{bottom:441.118000pt;}
.yb{bottom:441.119333pt;}
.y72{bottom:441.121867pt;}
.ye8{bottom:441.124667pt;}
.y34{bottom:441.128667pt;}
.yb5{bottom:450.666000pt;}
.yff{bottom:454.746400pt;}
.y13{bottom:457.786000pt;}
.ya{bottom:457.787333pt;}
.y71{bottom:457.789867pt;}
.y33{bottom:457.795333pt;}
.yb4{bottom:463.996000pt;}
.y12{bottom:474.454000pt;}
.y9{bottom:474.455333pt;}
.y70{bottom:474.457867pt;}
.ye7{bottom:474.460667pt;}
.yfe{bottom:476.975733pt;}
.y32{bottom:491.112667pt;}
.y11{bottom:491.122000pt;}
.y8{bottom:491.123333pt;}
.y6f{bottom:491.125867pt;}
.ye6{bottom:491.128667pt;}
.yfd{bottom:491.642400pt;}
.y31{bottom:507.780667pt;}
.y10{bottom:507.790000pt;}
.y7{bottom:507.791333pt;}
.y6e{bottom:507.793867pt;}
.y6d{bottom:524.447200pt;}
.y30{bottom:524.448667pt;}
.y6{bottom:524.459333pt;}
.y117{bottom:527.508133pt;}
.y116{bottom:540.838133pt;}
.y6c{bottom:541.115200pt;}
.y2f{bottom:541.116667pt;}
.yf{bottom:541.126000pt;}
.y5{bottom:541.127333pt;}
.y115{bottom:554.168133pt;}
.y6b{bottom:557.783200pt;}
.y2e{bottom:557.784667pt;}
.ye{bottom:557.794000pt;}
.y4{bottom:557.795333pt;}
.y6a{bottom:574.451200pt;}
.y2d{bottom:574.452667pt;}
.y3{bottom:574.462000pt;}
.y87{bottom:588.651733pt;}
.y2c{bottom:591.120667pt;}
.ye2{bottom:596.666933pt;}
.y86{bottom:601.981733pt;}
.y1e{bottom:607.768667pt;}
.y69{bottom:607.787200pt;}
.y2b{bottom:607.788667pt;}
.ye1{bottom:609.996933pt;}
.y85{bottom:615.311733pt;}
.ye0{bottom:623.326933pt;}
.y68{bottom:624.455200pt;}
.y2a{bottom:624.456667pt;}
.y1d{bottom:627.774000pt;}
.y84{bottom:628.641733pt;}
.ydf{bottom:636.656933pt;}
.y67{bottom:641.123200pt;}
.y29{bottom:641.124667pt;}
.y1c{bottom:647.779333pt;}
.yde{bottom:649.986933pt;}
.y66{bottom:657.791200pt;}
.y28{bottom:657.792667pt;}
.ydd{bottom:663.316933pt;}
.y1b{bottom:667.784667pt;}
.y65{bottom:674.459200pt;}
.y27{bottom:674.460667pt;}
.ydc{bottom:676.646933pt;}
.y1a{bottom:687.790000pt;}
.ydb{bottom:689.976933pt;}
.y26{bottom:691.123333pt;}
.y64{bottom:691.127200pt;}
.yda{bottom:703.306933pt;}
.y63{bottom:707.791200pt;}
.y25{bottom:707.791333pt;}
.y19{bottom:707.795333pt;}
.yd9{bottom:716.636933pt;}
.y62{bottom:724.459200pt;}
.y24{bottom:724.459333pt;}
.yd8{bottom:729.966933pt;}
.y61{bottom:741.127200pt;}
.y23{bottom:741.127333pt;}
.yd7{bottom:743.296933pt;}
.yd{bottom:744.357200pt;}
.y60{bottom:757.795200pt;}
.y22{bottom:757.795333pt;}
.yc{bottom:783.916400pt;}
.y3d{bottom:816.037733pt;}
.y3c{bottom:828.837733pt;}
.y3b{bottom:841.637733pt;}
.y2{bottom:843.472400pt;}
.y5f{bottom:846.472400pt;}
.h10{height:17.400000pt;}
.h11{height:24.000000pt;}
.hc{height:27.253333pt;}
.hb{height:30.000000pt;}
.he{height:30.976000pt;}
.hf{height:32.000000pt;}
.h14{height:32.170667pt;}
.h13{height:33.251200pt;}
.h3{height:36.000000pt;}
.h7{height:36.192000pt;}
.hd{height:36.741333pt;}
.h12{height:36.778667pt;}
.h4{height:38.720000pt;}
.h8{height:39.351562pt;}
.h2{height:39.424000pt;}
.h9{height:39.492188pt;}
.ha{height:42.709333pt;}
.h6{height:100.565104pt;}
.h5{height:122.427083pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:56.692933pt;}
.x1{left:60.472400pt;}
.x3{left:68.652933pt;}
.x10{left:71.818267pt;}
.x2{left:101.581333pt;}
.x5{left:144.566933pt;}
.xc{left:271.054000pt;}
.x9{left:313.636400pt;}
.xd{left:328.821200pt;}
.x4{left:332.598400pt;}
.x11{left:343.956933pt;}
.xe{left:387.401600pt;}
.xb{left:435.897733pt;}
.xa{left:481.583067pt;}
.xf{left:496.062933pt;}
.x7{left:499.232400pt;}
.x6{left:565.620667pt;}
}




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