
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_b11ede4c704161511f812ed9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989258;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_8190c0702e5a758075c41716.woff')format("woff");}.ff3{font-family:ff3;line-height:0.970215;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_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_8217d38cc785a94078f42edb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_5c1c85d1795a4c2edaeed07f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_73edc8725271b4b955b672c9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5c74b47ce5888d617c24db68.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256400,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258925,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282050,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.378000px;}
.ls24{letter-spacing:-0.354000px;}
.ls10{letter-spacing:-0.282000px;}
.lsc{letter-spacing:-0.241200px;}
.ls1d{letter-spacing:-0.229200px;}
.ls19{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.205800px;}
.ls22{letter-spacing:-0.166200px;}
.lsf{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000003px;}
.ls9{letter-spacing:0.008640px;}
.ls23{letter-spacing:0.012240px;}
.ls4{letter-spacing:0.022320px;}
.ls13{letter-spacing:0.036000px;}
.ls1e{letter-spacing:0.094800px;}
.ls3{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.221760px;}
.ls1f{letter-spacing:0.237600px;}
.ls21{letter-spacing:0.248400px;}
.ls2{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.309000px;}
.ls5{letter-spacing:0.334080px;}
.lsb{letter-spacing:0.342000px;}
.ls17{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.366000px;}
.ls1c{letter-spacing:0.388080px;}
.ls7{letter-spacing:0.390000px;}
.ls11{letter-spacing:0.438000px;}
.lsd{letter-spacing:0.447600px;}
.ls6{letter-spacing:3.990240px;}
.ls16{letter-spacing:4.541760px;}
.ls8{letter-spacing:4.710240px;}
.ls0{letter-spacing:9.504000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(5,99,193),0 0.015em rgb(5,99,193),0.015em 0 rgb(5,99,193),0 -0.015em  rgb(5,99,193);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(5,99,193);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-22.032000px;}
.wsa{word-spacing:-21.672003px;}
.ws7{word-spacing:-21.672000px;}
.wsc{word-spacing:-21.168000px;}
.ws8{word-spacing:-19.938240px;}
.ws0{word-spacing:-18.353760px;}
.ws12{word-spacing:-18.296760px;}
.ws13{word-spacing:-18.236160px;}
.ws11{word-spacing:-18.225360px;}
.ws10{word-spacing:-18.082560px;}
.wse{word-spacing:-17.987760px;}
.ws14{word-spacing:-17.821560px;}
.wsf{word-spacing:-17.758560px;}
.ws15{word-spacing:-17.633760px;}
.ws3{word-spacing:-16.254000px;}
.wsd{word-spacing:-16.038000px;}
.ws6{word-spacing:-13.007760px;}
.ws5{word-spacing:-12.569760px;}
.ws4{word-spacing:-12.287760px;}
.ws2{word-spacing:-10.924560px;}
.ws1{word-spacing:-10.902240px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-9.504000px;}
._26{margin-left:-6.048000px;}
._e{margin-left:-5.040000px;}
._d{margin-left:-3.456000px;}
._14{margin-left:-2.412000px;}
._0{margin-left:-1.404000px;}
._3{width:1.015920px;}
._4{width:2.526240px;}
._8{width:3.615679px;}
._1{width:4.645161px;}
._c{width:6.060319px;}
._a{width:7.938000px;}
._23{width:9.360000px;}
._25{width:10.728000px;}
._1f{width:12.024000px;}
._1c{width:13.104000px;}
._24{width:14.112000px;}
._f{width:15.192000px;}
._17{width:16.776000px;}
._21{width:17.776080px;}
._20{width:18.792000px;}
._22{width:20.592000px;}
._10{width:22.816080px;}
._13{width:24.048000px;}
._12{width:25.128000px;}
._1b{width:26.640000px;}
._15{width:27.720000px;}
._6{width:29.820240px;}
._7{width:31.103040px;}
._18{width:32.184000px;}
._9{width:33.426000px;}
._11{width:40.536000px;}
._5{width:42.310080px;}
._28{width:44.064000px;}
._1d{width:45.432000px;}
._1e{width:46.440000px;}
._1a{width:47.664000px;}
._19{width:55.080000px;}
._29{width:56.891520px;}
._2c{width:68.425200px;}
._16{width:69.624000px;}
._2d{width:72.309600px;}
._b{width:73.332000px;}
._2a{width:77.329440px;}
._2b{width:79.527120px;}
._2e{width:88.086240px;}
._27{width:1642.524000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fsa{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y61{bottom:-23.940150px;}
.y4{bottom:-23.940000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.860000px;}
.y38{bottom:14.040000px;}
.y5d{bottom:18.534000px;}
.y60{bottom:35.460000px;}
.y5c{bottom:37.614000px;}
.y2{bottom:38.340000px;}
.y5b{bottom:57.054000px;}
.y1{bottom:57.600000px;}
.y5a{bottom:78.114000px;}
.yd0{bottom:79.956000px;}
.y36{bottom:85.176000px;}
.y94{bottom:86.796000px;}
.yb1{bottom:86.976000px;}
.ye7{bottom:87.876000px;}
.yd5{bottom:92.196000px;}
.ycf{bottom:99.936000px;}
.y123{bottom:105.336000px;}
.y35{bottom:106.056000px;}
.y93{bottom:107.676000px;}
.yb0{bottom:107.856000px;}
.yd4{bottom:113.076000px;}
.yce{bottom:115.956000px;}
.y59{bottom:119.874000px;}
.y122{bottom:122.796000px;}
.y34{bottom:126.936000px;}
.ye6{bottom:128.196000px;}
.y92{bottom:128.556000px;}
.yaf{bottom:128.736000px;}
.ycd{bottom:133.956000px;}
.y3a{bottom:135.036000px;}
.y121{bottom:140.256000px;}
.y58{bottom:140.754000px;}
.y33{bottom:147.816000px;}
.y91{bottom:149.436000px;}
.yae{bottom:149.616000px;}
.ycc{bottom:154.830000px;}
.y120{bottom:157.710000px;}
.y57{bottom:161.814000px;}
.ye5{bottom:168.330000px;}
.y32{bottom:168.690000px;}
.y90{bottom:170.490000px;}
.y11f{bottom:174.990000px;}
.ycb{bottom:175.710000px;}
.y56{bottom:182.694000px;}
.y31{bottom:189.750000px;}
.y8f{bottom:191.370000px;}
.y11e{bottom:192.450000px;}
.yca{bottom:196.590000px;}
.ye4{bottom:208.290000px;}
.y11d{bottom:209.910000px;}
.y30{bottom:210.630000px;}
.y8e{bottom:212.250000px;}
.yc9{bottom:217.470000px;}
.y55{bottom:224.499000px;}
.y11c{bottom:227.370000px;}
.y2f{bottom:231.510000px;}
.y8d{bottom:233.130000px;}
.yc8{bottom:238.350000px;}
.y11b{bottom:244.830000px;}
.y54{bottom:245.559000px;}
.ye3{bottom:248.970000px;}
.y2e{bottom:252.390000px;}
.y8c{bottom:254.010000px;}
.yad{bottom:254.190000px;}
.yc7{bottom:259.410000px;}
.y11a{bottom:262.110000px;}
.y53{bottom:266.439000px;}
.ye2{bottom:269.850000px;}
.y2d{bottom:273.270000px;}
.y8b{bottom:274.890000px;}
.yac{bottom:275.070000px;}
.y119{bottom:279.570000px;}
.yc6{bottom:280.290000px;}
.ye1{bottom:290.730000px;}
.y2c{bottom:294.150000px;}
.y8a{bottom:295.770000px;}
.yab{bottom:295.950000px;}
.y118{bottom:297.030000px;}
.yc5{bottom:301.170000px;}
.y52{bottom:308.199000px;}
.ye0{bottom:311.610000px;}
.y117{bottom:314.490000px;}
.y2b{bottom:315.030000px;}
.y89{bottom:316.650000px;}
.yaa{bottom:316.830000px;}
.yc4{bottom:322.050000px;}
.y51{bottom:329.259000px;}
.y116{bottom:331.770000px;}
.ydf{bottom:332.490000px;}
.y88{bottom:337.575000px;}
.ya9{bottom:337.755000px;}
.yc3{bottom:342.975000px;}
.y2a{bottom:346.215000px;}
.y115{bottom:349.275000px;}
.y50{bottom:350.139000px;}
.yde{bottom:353.415000px;}
.y87{bottom:358.635000px;}
.yc2{bottom:363.855000px;}
.y114{bottom:366.735000px;}
.y4f{bottom:371.019000px;}
.y29{bottom:371.955000px;}
.ydd{bottom:374.295000px;}
.y86{bottom:379.515000px;}
.y113{bottom:384.195000px;}
.yc1{bottom:384.735000px;}
.y4e{bottom:391.899000px;}
.ydc{bottom:395.175000px;}
.y85{bottom:400.395000px;}
.y112{bottom:401.475000px;}
.y28{bottom:403.815000px;}
.yc0{bottom:405.615000px;}
.y4d{bottom:412.779000px;}
.ydb{bottom:416.055000px;}
.y111{bottom:418.935000px;}
.y84{bottom:421.275000px;}
.y27{bottom:422.355000px;}
.ybf{bottom:426.495000px;}
.y4c{bottom:433.659000px;}
.y110{bottom:436.395000px;}
.yda{bottom:437.115000px;}
.y26{bottom:440.895000px;}
.y83{bottom:442.155000px;}
.ya8{bottom:442.335000px;}
.ybe{bottom:447.555000px;}
.y10f{bottom:453.855000px;}
.y4b{bottom:454.539000px;}
.yd9{bottom:457.995000px;}
.y25{bottom:459.255000px;}
.y82{bottom:463.035000px;}
.ya7{bottom:463.215000px;}
.ybd{bottom:468.435000px;}
.y10e{bottom:471.135000px;}
.y4a{bottom:475.449000px;}
.y24{bottom:477.795000px;}
.yd8{bottom:478.875000px;}
.y81{bottom:483.915000px;}
.ya6{bottom:484.095000px;}
.y10d{bottom:488.595000px;}
.ybc{bottom:489.315000px;}
.y49{bottom:496.329000px;}
.y23{bottom:496.335000px;}
.yd7{bottom:500.295000px;}
.y80{bottom:504.795000px;}
.ya5{bottom:504.975000px;}
.y10c{bottom:506.055000px;}
.ybb{bottom:510.195000px;}
.y48{bottom:517.389000px;}
.y10b{bottom:523.515000px;}
.yd6{bottom:523.695000px;}
.y7f{bottom:525.675000px;}
.ya4{bottom:525.855000px;}
.y22{bottom:527.295000px;}
.yba{bottom:531.075000px;}
.y47{bottom:538.269000px;}
.y10a{bottom:540.795000px;}
.y7e{bottom:546.735000px;}
.yb9{bottom:551.955000px;}
.y109{bottom:558.255000px;}
.y46{bottom:559.149000px;}
.y21{bottom:559.875000px;}
.y7d{bottom:567.615000px;}
.yb8{bottom:572.835000px;}
.y108{bottom:575.715000px;}
.y45{bottom:580.029000px;}
.y7c{bottom:588.495000px;}
.y20{bottom:588.675000px;}
.y107{bottom:593.175000px;}
.yb7{bottom:593.715000px;}
.y7b{bottom:609.405000px;}
.y106{bottom:610.485000px;}
.y1f{bottom:614.265000px;}
.yb6{bottom:614.805000px;}
.y44{bottom:621.969000px;}
.y105{bottom:627.945000px;}
.y7a{bottom:630.285000px;}
.ya3{bottom:630.465000px;}
.yb5{bottom:635.685000px;}
.y1e{bottom:640.005000px;}
.y43{bottom:642.849000px;}
.y104{bottom:645.405000px;}
.y79{bottom:651.165000px;}
.ya2{bottom:651.345000px;}
.yb4{bottom:656.565000px;}
.y103{bottom:662.865000px;}
.y42{bottom:663.729000px;}
.y1d{bottom:665.565000px;}
.y78{bottom:672.045000px;}
.ya1{bottom:672.225000px;}
.yb3{bottom:677.445000px;}
.y102{bottom:680.325000px;}
.y41{bottom:684.609000px;}
.y1c{bottom:691.305000px;}
.y77{bottom:692.925000px;}
.ya0{bottom:693.105000px;}
.yb2{bottom:697.425000px;}
.y101{bottom:697.605000px;}
.yd3{bottom:698.325000px;}
.y40{bottom:705.489000px;}
.y76{bottom:713.805000px;}
.y9f{bottom:713.985000px;}
.y100{bottom:715.065000px;}
.y1b{bottom:716.865000px;}
.yd2{bottom:719.205000px;}
.yff{bottom:732.525000px;}
.y75{bottom:734.865000px;}
.yd1{bottom:739.185000px;}
.y1a{bottom:742.605000px;}
.y3f{bottom:747.474000px;}
.yfe{bottom:749.985000px;}
.y74{bottom:755.745000px;}
.yfd{bottom:767.265000px;}
.y3e{bottom:768.354000px;}
.y19{bottom:771.585000px;}
.y73{bottom:776.625000px;}
.yfc{bottom:784.725000px;}
.y3d{bottom:789.234000px;}
.y72{bottom:797.505000px;}
.y18{bottom:802.005000px;}
.yfb{bottom:802.185000px;}
.y3c{bottom:810.114000px;}
.y17{bottom:817.845000px;}
.y71{bottom:818.385000px;}
.y9e{bottom:818.565000px;}
.yfa{bottom:819.645000px;}
.y16{bottom:833.145000px;}
.yf9{bottom:836.925000px;}
.y70{bottom:839.265000px;}
.y9d{bottom:839.445000px;}
.y3b{bottom:841.794000px;}
.y15{bottom:851.505000px;}
.yf8{bottom:854.385000px;}
.y6f{bottom:860.145000px;}
.y9c{bottom:860.325000px;}
.yf7{bottom:871.890000px;}
.y14{bottom:875.130000px;}
.y6e{bottom:881.070000px;}
.y9b{bottom:881.250000px;}
.yf6{bottom:889.350000px;}
.y13{bottom:893.490000px;}
.y6d{bottom:902.130000px;}
.y12{bottom:905.910000px;}
.yf5{bottom:906.630000px;}
.y11{bottom:921.210000px;}
.y6c{bottom:923.010000px;}
.yf4{bottom:924.090000px;}
.y10{bottom:939.390000px;}
.yf3{bottom:941.550000px;}
.y6b{bottom:943.890000px;}
.yf{bottom:957.750000px;}
.yf2{bottom:959.010000px;}
.y12f{bottom:962.790000px;}
.ye{bottom:962.970000px;}
.y6a{bottom:964.770000px;}
.yf1{bottom:976.290000px;}
.y12e{bottom:981.690000px;}
.y69{bottom:985.650000px;}
.y9a{bottom:985.830000px;}
.yd{bottom:992.310000px;}
.yf0{bottom:993.750000px;}
.y12d{bottom:999.150000px;}
.yc{bottom:1002.750000px;}
.y68{bottom:1006.530000px;}
.y99{bottom:1006.710000px;}
.yef{bottom:1011.210000px;}
.y12c{bottom:1016.610000px;}
.yb{bottom:1021.650000px;}
.y67{bottom:1027.410000px;}
.y98{bottom:1027.590000px;}
.yee{bottom:1028.670000px;}
.y12b{bottom:1033.890000px;}
.ya{bottom:1043.610000px;}
.yed{bottom:1046.130000px;}
.y66{bottom:1048.290000px;}
.y97{bottom:1048.470000px;}
.y12a{bottom:1051.350000px;}
.yec{bottom:1063.410000px;}
.y129{bottom:1068.810000px;}
.y65{bottom:1069.170000px;}
.y96{bottom:1069.350000px;}
.y9{bottom:1070.070000px;}
.yeb{bottom:1080.870000px;}
.y128{bottom:1086.270000px;}
.y64{bottom:1090.230000px;}
.yea{bottom:1098.330000px;}
.y8{bottom:1098.870000px;}
.y127{bottom:1103.550000px;}
.y63{bottom:1111.110000px;}
.ye9{bottom:1115.790000px;}
.y126{bottom:1121.010000px;}
.y7{bottom:1122.990000px;}
.y95{bottom:1131.990000px;}
.y6{bottom:1138.140000px;}
.y125{bottom:1138.500000px;}
.y5{bottom:1148.400000px;}
.y37{bottom:1151.460000px;}
.y62{bottom:1152.900000px;}
.ye8{bottom:1154.340000px;}
.y124{bottom:1155.960000px;}
.y39{bottom:1165.500000px;}
.y5f{bottom:1174.320000px;}
.y5e{bottom:1195.740000px;}
.h3{height:17.460000px;}
.hc{height:23.019609px;}
.h12{height:26.100000px;}
.h13{height:27.404297px;}
.h7{height:28.995469px;}
.h9{height:30.077578px;}
.h14{height:32.033672px;}
.h5{height:36.721758px;}
.hd{height:37.019531px;}
.h10{height:41.106445px;}
.h4{height:41.422852px;}
.h6{height:41.493516px;}
.ha{height:45.491133px;}
.hf{height:45.931641px;}
.h16{height:50.423906px;}
.h8{height:53.709961px;}
.h11{height:54.808594px;}
.he{height:56.900391px;}
.h17{height:61.933711px;}
.hb{height:64.126055px;}
.h2{height:65.884219px;}
.h15{height:858.705000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:491.865000px;}
.w5{width:544.755000px;}
.w4{width:813.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:10.620000px;}
.x2{left:42.516000px;}
.x1{left:50.939987px;}
.x1d{left:52.379987px;}
.xb{left:55.979987px;}
.x4{left:59.219987px;}
.x10{left:61.379987px;}
.x1e{left:70.739987px;}
.xa{left:76.679987px;}
.x1f{left:80.639987px;}
.x17{left:84.600000px;}
.x1b{left:101.915987px;}
.xe{left:109.115987px;}
.x9{left:116.315987px;}
.x18{left:119.340000px;}
.x19{left:124.560000px;}
.xd{left:144.755987px;}
.x1c{left:191.729987px;}
.xc{left:242.489987px;}
.x1a{left:254.729987px;}
.xf{left:266.789987px;}
.x15{left:292.395000px;}
.x6{left:375.914987px;}
.x12{left:446.474987px;}
.x14{left:458.925000px;}
.x11{left:470.984987px;}
.x13{left:507.164987px;}
.x7{left:517.064987px;}
.x5{left:653.864987px;}
.x3{left:865.619987px;}
.x8{left:1103.609987px;}
@media print{
.v1{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.336000pt;}
.ls24{letter-spacing:-0.314667pt;}
.ls10{letter-spacing:-0.250667pt;}
.lsc{letter-spacing:-0.214400pt;}
.ls1d{letter-spacing:-0.203733pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.182933pt;}
.ls22{letter-spacing:-0.147733pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000003pt;}
.ls9{letter-spacing:0.007680pt;}
.ls23{letter-spacing:0.010880pt;}
.ls4{letter-spacing:0.019840pt;}
.ls13{letter-spacing:0.032000pt;}
.ls1e{letter-spacing:0.084267pt;}
.ls3{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.197120pt;}
.ls1f{letter-spacing:0.211200pt;}
.ls21{letter-spacing:0.220800pt;}
.ls2{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.274667pt;}
.ls5{letter-spacing:0.296960pt;}
.lsb{letter-spacing:0.304000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.325333pt;}
.ls1c{letter-spacing:0.344960pt;}
.ls7{letter-spacing:0.346667pt;}
.ls11{letter-spacing:0.389333pt;}
.lsd{letter-spacing:0.397867pt;}
.ls6{letter-spacing:3.546880pt;}
.ls16{letter-spacing:4.037120pt;}
.ls8{letter-spacing:4.186880pt;}
.ls0{letter-spacing:8.448000pt;}
.wsb{word-spacing:-19.584000pt;}
.wsa{word-spacing:-19.264003pt;}
.ws7{word-spacing:-19.264000pt;}
.wsc{word-spacing:-18.816000pt;}
.ws8{word-spacing:-17.722880pt;}
.ws0{word-spacing:-16.314453pt;}
.ws12{word-spacing:-16.263787pt;}
.ws13{word-spacing:-16.209920pt;}
.ws11{word-spacing:-16.200320pt;}
.ws10{word-spacing:-16.073387pt;}
.wse{word-spacing:-15.989120pt;}
.ws14{word-spacing:-15.841387pt;}
.wsf{word-spacing:-15.785387pt;}
.ws15{word-spacing:-15.674453pt;}
.ws3{word-spacing:-14.448000pt;}
.wsd{word-spacing:-14.256000pt;}
.ws6{word-spacing:-11.562453pt;}
.ws5{word-spacing:-11.173120pt;}
.ws4{word-spacing:-10.922453pt;}
.ws2{word-spacing:-9.710720pt;}
.ws1{word-spacing:-9.690880pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-8.448000pt;}
._26{margin-left:-5.376000pt;}
._e{margin-left:-4.480000pt;}
._d{margin-left:-3.072000pt;}
._14{margin-left:-2.144000pt;}
._0{margin-left:-1.248000pt;}
._3{width:0.903040pt;}
._4{width:2.245547pt;}
._8{width:3.213937pt;}
._1{width:4.129032pt;}
._c{width:5.386950pt;}
._a{width:7.056000pt;}
._23{width:8.320000pt;}
._25{width:9.536000pt;}
._1f{width:10.688000pt;}
._1c{width:11.648000pt;}
._24{width:12.544000pt;}
._f{width:13.504000pt;}
._17{width:14.912000pt;}
._21{width:15.800960pt;}
._20{width:16.704000pt;}
._22{width:18.304000pt;}
._10{width:20.280960pt;}
._13{width:21.376000pt;}
._12{width:22.336000pt;}
._1b{width:23.680000pt;}
._15{width:24.640000pt;}
._6{width:26.506880pt;}
._7{width:27.647147pt;}
._18{width:28.608000pt;}
._9{width:29.712000pt;}
._11{width:36.032000pt;}
._5{width:37.608960pt;}
._28{width:39.168000pt;}
._1d{width:40.384000pt;}
._1e{width:41.280000pt;}
._1a{width:42.368000pt;}
._19{width:48.960000pt;}
._29{width:50.570240pt;}
._2c{width:60.822400pt;}
._16{width:61.888000pt;}
._2d{width:64.275200pt;}
._b{width:65.184000pt;}
._2a{width:68.737280pt;}
._2b{width:70.690773pt;}
._2e{width:78.298880pt;}
._27{width:1460.021333pt;}
.fs5{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fsa{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y61{bottom:-21.280133pt;}
.y4{bottom:-21.280000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.320000pt;}
.y38{bottom:12.480000pt;}
.y5d{bottom:16.474667pt;}
.y60{bottom:31.520000pt;}
.y5c{bottom:33.434667pt;}
.y2{bottom:34.080000pt;}
.y5b{bottom:50.714667pt;}
.y1{bottom:51.200000pt;}
.y5a{bottom:69.434667pt;}
.yd0{bottom:71.072000pt;}
.y36{bottom:75.712000pt;}
.y94{bottom:77.152000pt;}
.yb1{bottom:77.312000pt;}
.ye7{bottom:78.112000pt;}
.yd5{bottom:81.952000pt;}
.ycf{bottom:88.832000pt;}
.y123{bottom:93.632000pt;}
.y35{bottom:94.272000pt;}
.y93{bottom:95.712000pt;}
.yb0{bottom:95.872000pt;}
.yd4{bottom:100.512000pt;}
.yce{bottom:103.072000pt;}
.y59{bottom:106.554667pt;}
.y122{bottom:109.152000pt;}
.y34{bottom:112.832000pt;}
.ye6{bottom:113.952000pt;}
.y92{bottom:114.272000pt;}
.yaf{bottom:114.432000pt;}
.ycd{bottom:119.072000pt;}
.y3a{bottom:120.032000pt;}
.y121{bottom:124.672000pt;}
.y58{bottom:125.114667pt;}
.y33{bottom:131.392000pt;}
.y91{bottom:132.832000pt;}
.yae{bottom:132.992000pt;}
.ycc{bottom:137.626667pt;}
.y120{bottom:140.186667pt;}
.y57{bottom:143.834667pt;}
.ye5{bottom:149.626667pt;}
.y32{bottom:149.946667pt;}
.y90{bottom:151.546667pt;}
.y11f{bottom:155.546667pt;}
.ycb{bottom:156.186667pt;}
.y56{bottom:162.394667pt;}
.y31{bottom:168.666667pt;}
.y8f{bottom:170.106667pt;}
.y11e{bottom:171.066667pt;}
.yca{bottom:174.746667pt;}
.ye4{bottom:185.146667pt;}
.y11d{bottom:186.586667pt;}
.y30{bottom:187.226667pt;}
.y8e{bottom:188.666667pt;}
.yc9{bottom:193.306667pt;}
.y55{bottom:199.554667pt;}
.y11c{bottom:202.106667pt;}
.y2f{bottom:205.786667pt;}
.y8d{bottom:207.226667pt;}
.yc8{bottom:211.866667pt;}
.y11b{bottom:217.626667pt;}
.y54{bottom:218.274667pt;}
.ye3{bottom:221.306667pt;}
.y2e{bottom:224.346667pt;}
.y8c{bottom:225.786667pt;}
.yad{bottom:225.946667pt;}
.yc7{bottom:230.586667pt;}
.y11a{bottom:232.986667pt;}
.y53{bottom:236.834667pt;}
.ye2{bottom:239.866667pt;}
.y2d{bottom:242.906667pt;}
.y8b{bottom:244.346667pt;}
.yac{bottom:244.506667pt;}
.y119{bottom:248.506667pt;}
.yc6{bottom:249.146667pt;}
.ye1{bottom:258.426667pt;}
.y2c{bottom:261.466667pt;}
.y8a{bottom:262.906667pt;}
.yab{bottom:263.066667pt;}
.y118{bottom:264.026667pt;}
.yc5{bottom:267.706667pt;}
.y52{bottom:273.954667pt;}
.ye0{bottom:276.986667pt;}
.y117{bottom:279.546667pt;}
.y2b{bottom:280.026667pt;}
.y89{bottom:281.466667pt;}
.yaa{bottom:281.626667pt;}
.yc4{bottom:286.266667pt;}
.y51{bottom:292.674667pt;}
.y116{bottom:294.906667pt;}
.ydf{bottom:295.546667pt;}
.y88{bottom:300.066667pt;}
.ya9{bottom:300.226667pt;}
.yc3{bottom:304.866667pt;}
.y2a{bottom:307.746667pt;}
.y115{bottom:310.466667pt;}
.y50{bottom:311.234667pt;}
.yde{bottom:314.146667pt;}
.y87{bottom:318.786667pt;}
.yc2{bottom:323.426667pt;}
.y114{bottom:325.986667pt;}
.y4f{bottom:329.794667pt;}
.y29{bottom:330.626667pt;}
.ydd{bottom:332.706667pt;}
.y86{bottom:337.346667pt;}
.y113{bottom:341.506667pt;}
.yc1{bottom:341.986667pt;}
.y4e{bottom:348.354667pt;}
.ydc{bottom:351.266667pt;}
.y85{bottom:355.906667pt;}
.y112{bottom:356.866667pt;}
.y28{bottom:358.946667pt;}
.yc0{bottom:360.546667pt;}
.y4d{bottom:366.914667pt;}
.ydb{bottom:369.826667pt;}
.y111{bottom:372.386667pt;}
.y84{bottom:374.466667pt;}
.y27{bottom:375.426667pt;}
.ybf{bottom:379.106667pt;}
.y4c{bottom:385.474667pt;}
.y110{bottom:387.906667pt;}
.yda{bottom:388.546667pt;}
.y26{bottom:391.906667pt;}
.y83{bottom:393.026667pt;}
.ya8{bottom:393.186667pt;}
.ybe{bottom:397.826667pt;}
.y10f{bottom:403.426667pt;}
.y4b{bottom:404.034667pt;}
.yd9{bottom:407.106667pt;}
.y25{bottom:408.226667pt;}
.y82{bottom:411.586667pt;}
.ya7{bottom:411.746667pt;}
.ybd{bottom:416.386667pt;}
.y10e{bottom:418.786667pt;}
.y4a{bottom:422.621333pt;}
.y24{bottom:424.706667pt;}
.yd8{bottom:425.666667pt;}
.y81{bottom:430.146667pt;}
.ya6{bottom:430.306667pt;}
.y10d{bottom:434.306667pt;}
.ybc{bottom:434.946667pt;}
.y49{bottom:441.181333pt;}
.y23{bottom:441.186667pt;}
.yd7{bottom:444.706667pt;}
.y80{bottom:448.706667pt;}
.ya5{bottom:448.866667pt;}
.y10c{bottom:449.826667pt;}
.ybb{bottom:453.506667pt;}
.y48{bottom:459.901333pt;}
.y10b{bottom:465.346667pt;}
.yd6{bottom:465.506667pt;}
.y7f{bottom:467.266667pt;}
.ya4{bottom:467.426667pt;}
.y22{bottom:468.706667pt;}
.yba{bottom:472.066667pt;}
.y47{bottom:478.461333pt;}
.y10a{bottom:480.706667pt;}
.y7e{bottom:485.986667pt;}
.yb9{bottom:490.626667pt;}
.y109{bottom:496.226667pt;}
.y46{bottom:497.021333pt;}
.y21{bottom:497.666667pt;}
.y7d{bottom:504.546667pt;}
.yb8{bottom:509.186667pt;}
.y108{bottom:511.746667pt;}
.y45{bottom:515.581333pt;}
.y7c{bottom:523.106667pt;}
.y20{bottom:523.266667pt;}
.y107{bottom:527.266667pt;}
.yb7{bottom:527.746667pt;}
.y7b{bottom:541.693333pt;}
.y106{bottom:542.653333pt;}
.y1f{bottom:546.013333pt;}
.yb6{bottom:546.493333pt;}
.y44{bottom:552.861333pt;}
.y105{bottom:558.173333pt;}
.y7a{bottom:560.253333pt;}
.ya3{bottom:560.413333pt;}
.yb5{bottom:565.053333pt;}
.y1e{bottom:568.893333pt;}
.y43{bottom:571.421333pt;}
.y104{bottom:573.693333pt;}
.y79{bottom:578.813333pt;}
.ya2{bottom:578.973333pt;}
.yb4{bottom:583.613333pt;}
.y103{bottom:589.213333pt;}
.y42{bottom:589.981333pt;}
.y1d{bottom:591.613333pt;}
.y78{bottom:597.373333pt;}
.ya1{bottom:597.533333pt;}
.yb3{bottom:602.173333pt;}
.y102{bottom:604.733333pt;}
.y41{bottom:608.541333pt;}
.y1c{bottom:614.493333pt;}
.y77{bottom:615.933333pt;}
.ya0{bottom:616.093333pt;}
.yb2{bottom:619.933333pt;}
.y101{bottom:620.093333pt;}
.yd3{bottom:620.733333pt;}
.y40{bottom:627.101333pt;}
.y76{bottom:634.493333pt;}
.y9f{bottom:634.653333pt;}
.y100{bottom:635.613333pt;}
.y1b{bottom:637.213333pt;}
.yd2{bottom:639.293333pt;}
.yff{bottom:651.133333pt;}
.y75{bottom:653.213333pt;}
.yd1{bottom:657.053333pt;}
.y1a{bottom:660.093333pt;}
.y3f{bottom:664.421333pt;}
.yfe{bottom:666.653333pt;}
.y74{bottom:671.773333pt;}
.yfd{bottom:682.013333pt;}
.y3e{bottom:682.981333pt;}
.y19{bottom:685.853333pt;}
.y73{bottom:690.333333pt;}
.yfc{bottom:697.533333pt;}
.y3d{bottom:701.541333pt;}
.y72{bottom:708.893333pt;}
.y18{bottom:712.893333pt;}
.yfb{bottom:713.053333pt;}
.y3c{bottom:720.101333pt;}
.y17{bottom:726.973333pt;}
.y71{bottom:727.453333pt;}
.y9e{bottom:727.613333pt;}
.yfa{bottom:728.573333pt;}
.y16{bottom:740.573333pt;}
.yf9{bottom:743.933333pt;}
.y70{bottom:746.013333pt;}
.y9d{bottom:746.173333pt;}
.y3b{bottom:748.261333pt;}
.y15{bottom:756.893333pt;}
.yf8{bottom:759.453333pt;}
.y6f{bottom:764.573333pt;}
.y9c{bottom:764.733333pt;}
.yf7{bottom:775.013333pt;}
.y14{bottom:777.893333pt;}
.y6e{bottom:783.173333pt;}
.y9b{bottom:783.333333pt;}
.yf6{bottom:790.533333pt;}
.y13{bottom:794.213333pt;}
.y6d{bottom:801.893333pt;}
.y12{bottom:805.253333pt;}
.yf5{bottom:805.893333pt;}
.y11{bottom:818.853333pt;}
.y6c{bottom:820.453333pt;}
.yf4{bottom:821.413333pt;}
.y10{bottom:835.013333pt;}
.yf3{bottom:836.933333pt;}
.y6b{bottom:839.013333pt;}
.yf{bottom:851.333333pt;}
.yf2{bottom:852.453333pt;}
.y12f{bottom:855.813333pt;}
.ye{bottom:855.973333pt;}
.y6a{bottom:857.573333pt;}
.yf1{bottom:867.813333pt;}
.y12e{bottom:872.613333pt;}
.y69{bottom:876.133333pt;}
.y9a{bottom:876.293333pt;}
.yd{bottom:882.053333pt;}
.yf0{bottom:883.333333pt;}
.y12d{bottom:888.133333pt;}
.yc{bottom:891.333333pt;}
.y68{bottom:894.693333pt;}
.y99{bottom:894.853333pt;}
.yef{bottom:898.853333pt;}
.y12c{bottom:903.653333pt;}
.yb{bottom:908.133333pt;}
.y67{bottom:913.253333pt;}
.y98{bottom:913.413333pt;}
.yee{bottom:914.373333pt;}
.y12b{bottom:919.013333pt;}
.ya{bottom:927.653333pt;}
.yed{bottom:929.893333pt;}
.y66{bottom:931.813333pt;}
.y97{bottom:931.973333pt;}
.y12a{bottom:934.533333pt;}
.yec{bottom:945.253333pt;}
.y129{bottom:950.053333pt;}
.y65{bottom:950.373333pt;}
.y96{bottom:950.533333pt;}
.y9{bottom:951.173333pt;}
.yeb{bottom:960.773333pt;}
.y128{bottom:965.573333pt;}
.y64{bottom:969.093333pt;}
.yea{bottom:976.293333pt;}
.y8{bottom:976.773333pt;}
.y127{bottom:980.933333pt;}
.y63{bottom:987.653333pt;}
.ye9{bottom:991.813333pt;}
.y126{bottom:996.453333pt;}
.y7{bottom:998.213333pt;}
.y95{bottom:1006.213333pt;}
.y6{bottom:1011.680000pt;}
.y125{bottom:1012.000000pt;}
.y5{bottom:1020.800000pt;}
.y37{bottom:1023.520000pt;}
.y62{bottom:1024.800000pt;}
.ye8{bottom:1026.080000pt;}
.y124{bottom:1027.520000pt;}
.y39{bottom:1036.000000pt;}
.y5f{bottom:1043.840000pt;}
.y5e{bottom:1062.880000pt;}
.h3{height:15.520000pt;}
.hc{height:20.461875pt;}
.h12{height:23.200000pt;}
.h13{height:24.359375pt;}
.h7{height:25.773750pt;}
.h9{height:26.735625pt;}
.h14{height:28.474375pt;}
.h5{height:32.641562pt;}
.hd{height:32.906250pt;}
.h10{height:36.539062pt;}
.h4{height:36.820312pt;}
.h6{height:36.883125pt;}
.ha{height:40.436563pt;}
.hf{height:40.828125pt;}
.h16{height:44.821250pt;}
.h8{height:47.742188pt;}
.h11{height:48.718750pt;}
.he{height:50.578125pt;}
.h17{height:55.052188pt;}
.hb{height:57.000937pt;}
.h2{height:58.563750pt;}
.h15{height:763.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:437.213333pt;}
.w5{width:484.226667pt;}
.w4{width:722.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.440000pt;}
.x2{left:37.792000pt;}
.x1{left:45.279988pt;}
.x1d{left:46.559988pt;}
.xb{left:49.759988pt;}
.x4{left:52.639988pt;}
.x10{left:54.559988pt;}
.x1e{left:62.879988pt;}
.xa{left:68.159988pt;}
.x1f{left:71.679988pt;}
.x17{left:75.200000pt;}
.x1b{left:90.591988pt;}
.xe{left:96.991988pt;}
.x9{left:103.391988pt;}
.x18{left:106.080000pt;}
.x19{left:110.720000pt;}
.xd{left:128.671988pt;}
.x1c{left:170.426655pt;}
.xc{left:215.546655pt;}
.x1a{left:226.426655pt;}
.xf{left:237.146655pt;}
.x15{left:259.906667pt;}
.x6{left:334.146655pt;}
.x12{left:396.866655pt;}
.x14{left:407.933333pt;}
.x11{left:418.653322pt;}
.x13{left:450.813322pt;}
.x7{left:459.613322pt;}
.x5{left:581.213322pt;}
.x3{left:769.439988pt;}
.x8{left:980.986655pt;}
}




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