
    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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_e46d9f19d0e1de8ddf53370e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_f961473e4f08595c85bf2060.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_fbc54a03bb119815fbb47ef3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_f4a7830827b51c360b207723.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_97c1c9f9b8e5fbe2c8f5b99c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.962891;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_c38b3f46a42fd5da9092ff85.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_5274edda6ebca8b8efe26512.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_f46fa5a3a4a27161b1c8840a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_41bc08c11d96b4efffd8f1b7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_df4a37e7733c6cc2e9b6bcd2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.987305;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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);}
.m2{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.278300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278300,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.494000px;}
.ls8{letter-spacing:-1.386000px;}
.ls22{letter-spacing:-1.134000px;}
.ls15{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.978000px;}
.ls18{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.513600px;}
.ls24{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.413400px;}
.lsb{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.089400px;}
.ls10{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.004104px;}
.ls25{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.153600px;}
.ls28{letter-spacing:0.169200px;}
.ls1a{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.220200px;}
.ls1b{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.306600px;}
.ls1e{letter-spacing:0.350640px;}
.ls0{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.365862px;}
.ls27{letter-spacing:0.870000px;}
.ls26{letter-spacing:0.900000px;}
.ls23{letter-spacing:0.918000px;}
.ls29{letter-spacing:1.620000px;}
.ls20{letter-spacing:2.340000px;}
.ls2a{letter-spacing:4.500000px;}
.ls2{letter-spacing:6.660000px;}
.ls6{letter-spacing:13.860000px;}
.ls13{letter-spacing:16.506720px;}
.ls1f{letter-spacing:18.747360px;}
.ls12{letter-spacing:46.026720px;}
.ls2b{letter-spacing:59.787360px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1e{word-spacing:-15.858000px;}
.ws20{word-spacing:-15.810000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws18{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.160200px;}
.ws17{word-spacing:-15.146400px;}
.ws21{word-spacing:-15.109200px;}
.ws22{word-spacing:-15.093600px;}
.wsc{word-spacing:-15.046800px;}
.ws1b{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.526600px;}
.ws1f{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.426400px;}
.ws1d{word-spacing:-14.328000px;}
.ws15{word-spacing:-14.166000px;}
.ws14{word-spacing:-13.962000px;}
.ws8{word-spacing:-13.860000px;}
.ws1c{word-spacing:-13.806000px;}
.ws9{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.554000px;}
.ws5{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.446000px;}
.ws11{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.888000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws10{word-spacing:-8.928000px;}
.ws12{word-spacing:0.000000px;}
._10{margin-left:-6.402240px;}
._2{margin-left:-4.369920px;}
._1{margin-left:-3.082320px;}
._0{margin-left:-1.093680px;}
._5{width:1.135440px;}
._6{width:2.443680px;}
._8{width:3.994800px;}
._7{width:5.149920px;}
._a{width:6.151920px;}
._9{width:7.173360px;}
._c{width:8.614320px;}
._d{width:9.681120px;}
._12{width:11.372400px;}
._11{width:13.027680px;}
._e{width:16.254720px;}
._b{width:17.325360px;}
._f{width:18.566400px;}
._14{width:22.469760px;}
._13{width:23.664960px;}
._15{width:25.332000px;}
._16{width:42.444000px;}
._3{width:187.213680px;}
._4{width:201.060000px;}
.fc7{color:transparent;}
.fc5{color:rgb(54,95,145);}
.fc3{color:rgb(34,31,31);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(36,63,96);}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(89,89,89);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.160000px;}
.y5{bottom:3.780000px;}
.y57{bottom:5.010000px;}
.y3d{bottom:5.940000px;}
.y2{bottom:9.930000px;}
.y48{bottom:10.260000px;}
.y4{bottom:22.710000px;}
.y3c{bottom:25.740000px;}
.y54{bottom:30.960000px;}
.y47{bottom:39.954000px;}
.y3b{bottom:45.540000px;}
.y3{bottom:47.910000px;}
.y53{bottom:48.234000px;}
.y46{bottom:51.114000px;}
.y7{bottom:57.060000px;}
.y45{bottom:62.274000px;}
.y3a{bottom:65.340000px;}
.y52{bottom:67.494000px;}
.y44{bottom:73.974000px;}
.y51{bottom:83.334000px;}
.y39{bottom:85.140000px;}
.y43{bottom:87.114000px;}
.ybc{bottom:96.516000px;}
.y50{bottom:98.094000px;}
.y8a{bottom:99.036000px;}
.y42{bottom:100.074000px;}
.y55{bottom:103.176000px;}
.y38{bottom:105.120000px;}
.y4f{bottom:105.834000px;}
.ybb{bottom:116.316000px;}
.ye8{bottom:117.756000px;}
.y3e{bottom:118.116000px;}
.y89{bottom:118.836000px;}
.y4e{bottom:121.494000px;}
.y41{bottom:122.034000px;}
.y37{bottom:124.920000px;}
.yba{bottom:136.116000px;}
.y4d{bottom:136.974000px;}
.ye7{bottom:137.556000px;}
.y88{bottom:138.816000px;}
.y36{bottom:144.720000px;}
.y4c{bottom:152.454000px;}
.yb9{bottom:155.910000px;}
.ye6{bottom:157.350000px;}
.y87{bottom:158.610000px;}
.y35{bottom:164.520000px;}
.y4b{bottom:167.934000px;}
.yb8{bottom:175.890000px;}
.ye5{bottom:177.150000px;}
.y86{bottom:178.410000px;}
.y4a{bottom:183.594000px;}
.y40{bottom:183.954000px;}
.y34{bottom:184.320000px;}
.y3f{bottom:194.574000px;}
.yb7{bottom:195.690000px;}
.ye4{bottom:196.950000px;}
.y85{bottom:198.210000px;}
.y33{bottom:204.300000px;}
.yb6{bottom:215.490000px;}
.ye3{bottom:216.930000px;}
.y84{bottom:218.010000px;}
.y32{bottom:224.100000px;}
.yb5{bottom:235.290000px;}
.ye2{bottom:236.730000px;}
.y83{bottom:237.990000px;}
.y31{bottom:243.900000px;}
.yb4{bottom:255.090000px;}
.ye1{bottom:256.530000px;}
.y82{bottom:257.790000px;}
.y30{bottom:263.730000px;}
.yb3{bottom:275.070000px;}
.ye0{bottom:276.330000px;}
.y81{bottom:277.590000px;}
.y2f{bottom:283.530000px;}
.yb2{bottom:294.870000px;}
.ydf{bottom:296.130000px;}
.y80{bottom:297.390000px;}
.y2e{bottom:303.510000px;}
.y1c{bottom:305.310000px;}
.yb1{bottom:314.670000px;}
.yde{bottom:316.110000px;}
.y7f{bottom:317.190000px;}
.y2d{bottom:323.310000px;}
.y1b{bottom:329.430000px;}
.yb0{bottom:334.515000px;}
.ydd{bottom:335.955000px;}
.y7e{bottom:337.215000px;}
.ye{bottom:342.795000px;}
.y2c{bottom:343.110000px;}
.y1a{bottom:353.550000px;}
.yaf{bottom:354.315000px;}
.ydc{bottom:355.755000px;}
.y7d{bottom:357.015000px;}
.y2b{bottom:362.910000px;}
.yae{bottom:374.295000px;}
.ydb{bottom:375.555000px;}
.y7c{bottom:376.815000px;}
.y19{bottom:377.670000px;}
.y2a{bottom:382.710000px;}
.yad{bottom:394.095000px;}
.yda{bottom:395.355000px;}
.y7b{bottom:396.615000px;}
.y18{bottom:401.790000px;}
.y29{bottom:402.150000px;}
.yac{bottom:412.635000px;}
.yd9{bottom:415.335000px;}
.y7a{bottom:416.415000px;}
.y28{bottom:419.970000px;}
.y17{bottom:426.090000px;}
.yab{bottom:431.355000px;}
.yd8{bottom:435.135000px;}
.y79{bottom:436.395000px;}
.y27{bottom:437.790000px;}
.y16{bottom:450.210000px;}
.yaa{bottom:451.155000px;}
.yd7{bottom:454.935000px;}
.y26{bottom:455.610000px;}
.y78{bottom:456.195000px;}
.ya9{bottom:470.955000px;}
.y25{bottom:473.430000px;}
.y15{bottom:474.330000px;}
.yd6{bottom:474.735000px;}
.y77{bottom:475.995000px;}
.ya8{bottom:490.755000px;}
.y24{bottom:491.430000px;}
.yd5{bottom:494.535000px;}
.y76{bottom:495.795000px;}
.y14{bottom:498.450000px;}
.y23{bottom:509.250000px;}
.ya7{bottom:510.555000px;}
.yd4{bottom:514.515000px;}
.y75{bottom:515.595000px;}
.y13{bottom:522.615000px;}
.y22{bottom:527.115000px;}
.yfa{bottom:527.655000px;}
.ya6{bottom:530.535000px;}
.yd3{bottom:534.315000px;}
.y74{bottom:535.575000px;}
.y21{bottom:544.935000px;}
.y12{bottom:546.735000px;}
.yf9{bottom:547.455000px;}
.ya5{bottom:550.335000px;}
.yd2{bottom:554.115000px;}
.y73{bottom:555.375000px;}
.y20{bottom:562.755000px;}
.yf8{bottom:567.255000px;}
.ya4{bottom:570.135000px;}
.y11{bottom:570.855000px;}
.yd1{bottom:573.915000px;}
.y72{bottom:575.175000px;}
.y1f{bottom:580.575000px;}
.yf7{bottom:587.055000px;}
.ya3{bottom:589.935000px;}
.yd0{bottom:593.715000px;}
.y71{bottom:595.005000px;}
.y10{bottom:595.155000px;}
.y1e{bottom:598.575000px;}
.yf6{bottom:606.885000px;}
.ya2{bottom:609.765000px;}
.ycf{bottom:613.725000px;}
.y70{bottom:614.805000px;}
.y1d{bottom:616.395000px;}
.yf{bottom:619.275000px;}
.yf5{bottom:627.765000px;}
.ya1{bottom:629.745000px;}
.yce{bottom:633.525000px;}
.y6f{bottom:634.785000px;}
.yf4{bottom:647.565000px;}
.ya0{bottom:649.545000px;}
.ycd{bottom:653.325000px;}
.y6e{bottom:654.585000px;}
.yf3{bottom:667.365000px;}
.y9f{bottom:669.345000px;}
.ycc{bottom:673.125000px;}
.y6d{bottom:674.385000px;}
.yf2{bottom:687.165000px;}
.y9e{bottom:689.145000px;}
.ycb{bottom:692.925000px;}
.y6c{bottom:694.185000px;}
.yf1{bottom:708.045000px;}
.y9d{bottom:708.945000px;}
.yca{bottom:712.905000px;}
.y6b{bottom:713.985000px;}
.yf0{bottom:727.845000px;}
.y9c{bottom:728.745000px;}
.yc9{bottom:732.705000px;}
.y6a{bottom:733.965000px;}
.yef{bottom:748.725000px;}
.y9b{bottom:749.625000px;}
.yc8{bottom:752.505000px;}
.y69{bottom:753.765000px;}
.yee{bottom:768.345000px;}
.y9a{bottom:769.425000px;}
.yc7{bottom:772.305000px;}
.y68{bottom:773.565000px;}
.y99{bottom:789.225000px;}
.yc6{bottom:792.105000px;}
.y67{bottom:793.365000px;}
.yed{bottom:809.025000px;}
.y98{bottom:809.205000px;}
.yc5{bottom:812.085000px;}
.y66{bottom:813.165000px;}
.y97{bottom:829.005000px;}
.yec{bottom:829.905000px;}
.yc4{bottom:831.885000px;}
.y65{bottom:833.145000px;}
.y96{bottom:848.805000px;}
.yeb{bottom:849.705000px;}
.yc3{bottom:851.685000px;}
.y64{bottom:852.945000px;}
.y95{bottom:868.650000px;}
.yea{bottom:870.630000px;}
.yc2{bottom:871.530000px;}
.y63{bottom:872.790000px;}
.y94{bottom:888.450000px;}
.ye9{bottom:890.250000px;}
.yc1{bottom:891.330000px;}
.y62{bottom:892.590000px;}
.y93{bottom:908.430000px;}
.yc0{bottom:911.310000px;}
.y61{bottom:912.390000px;}
.y92{bottom:928.050000px;}
.ybf{bottom:931.110000px;}
.y60{bottom:932.370000px;}
.y91{bottom:948.930000px;}
.ybe{bottom:950.910000px;}
.y5f{bottom:952.170000px;}
.y90{bottom:969.630000px;}
.ybd{bottom:970.710000px;}
.y5e{bottom:971.970000px;}
.yd{bottom:974.490000px;}
.yc{bottom:981.870000px;}
.y8f{bottom:990.510000px;}
.y5d{bottom:991.770000px;}
.yb{bottom:1001.670000px;}
.y8e{bottom:1010.490000px;}
.y5c{bottom:1011.570000px;}
.ya{bottom:1021.470000px;}
.y8d{bottom:1030.290000px;}
.y5b{bottom:1031.550000px;}
.y9{bottom:1043.610000px;}
.y8c{bottom:1050.090000px;}
.y5a{bottom:1051.350000px;}
.y8b{bottom:1069.890000px;}
.y59{bottom:1071.150000px;}
.y8{bottom:1072.230000px;}
.y56{bottom:1075.500000px;}
.y58{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.h15{height:10.088437px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.h16{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h14{height:38.100586px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h1c{height:41.410195px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h1b{height:43.156758px;}
.h18{height:43.506914px;}
.h10{height:44.507812px;}
.h1a{height:46.127812px;}
.h5{height:46.251562px;}
.ha{height:49.255313px;}
.h19{height:53.398125px;}
.h8{height:59.436914px;}
.h17{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:223.950000px;}
.hc{height:628.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1a{left:-68.400000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x16{left:8.136000px;}
.x4{left:12.780000px;}
.x15{left:16.056000px;}
.x1d{left:18.216000px;}
.x13{left:19.656000px;}
.x14{left:26.136000px;}
.x1f{left:29.196000px;}
.x6{left:33.840000px;}
.x19{left:37.800000px;}
.x1e{left:47.736000px;}
.xe{left:50.796000px;}
.xd{left:54.936000px;}
.x21{left:57.096000px;}
.x18{left:60.300000px;}
.x20{left:66.270000px;}
.x1{left:78.300000px;}
.x12{left:79.590000px;}
.x10{left:82.470000px;}
.x11{left:83.730000px;}
.x7{left:86.399987px;}
.x1b{left:92.025000px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1c{left:106.770000px;}
.x27{left:113.435987px;}
.x24{left:116.135987px;}
.xf{left:124.590000px;}
.x29{left:131.075987px;}
.x2a{left:133.235987px;}
.x5{left:141.345000px;}
.x25{left:152.309987px;}
.x31{left:158.429987px;}
.x30{left:163.829987px;}
.x3{left:182.370000px;}
.x17{left:219.090000px;}
.x2b{left:236.549987px;}
.x28{left:248.609987px;}
.x38{left:258.869987px;}
.x2c{left:264.449987px;}
.x39{left:268.769987px;}
.x2d{left:282.989987px;}
.x2e{left:289.334987px;}
.x26{left:309.134987px;}
.x2f{left:341.894987px;}
.x33{left:387.254987px;}
.x36{left:398.594987px;}
.x3a{left:422.894987px;}
.xb{left:429.914987px;}
.x3b{left:432.614987px;}
.x3c{left:448.454987px;}
.x3d{left:458.354987px;}
.xa{left:529.664987px;}
.x32{left:586.184987px;}
.x35{left:594.824987px;}
.x34{left:597.344987px;}
.x37{left:702.869987px;}
.x9{left:766.049987px;}
.x8{left:791.789987px;}
.xc{left:806.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.328000pt;}
.ls8{letter-spacing:-1.232000pt;}
.ls22{letter-spacing:-1.008000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.869333pt;}
.ls18{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.456533pt;}
.ls24{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.367467pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.079467pt;}
.ls10{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003648pt;}
.ls25{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.136533pt;}
.ls28{letter-spacing:0.150400pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.195733pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.272533pt;}
.ls1e{letter-spacing:0.311680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.325211pt;}
.ls27{letter-spacing:0.773333pt;}
.ls26{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.816000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls20{letter-spacing:2.080000pt;}
.ls2a{letter-spacing:4.000000pt;}
.ls2{letter-spacing:5.920000pt;}
.ls6{letter-spacing:12.320000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls1f{letter-spacing:16.664320pt;}
.ls12{letter-spacing:40.912640pt;}
.ls2b{letter-spacing:53.144320pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.096000pt;}
.ws20{word-spacing:-14.053333pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws18{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.475733pt;}
.ws17{word-spacing:-13.463467pt;}
.ws21{word-spacing:-13.430400pt;}
.ws22{word-spacing:-13.416533pt;}
.wsc{word-spacing:-13.374933pt;}
.ws1b{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.912533pt;}
.ws1f{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.823467pt;}
.ws1d{word-spacing:-12.736000pt;}
.ws15{word-spacing:-12.592000pt;}
.ws14{word-spacing:-12.410667pt;}
.ws8{word-spacing:-12.320000pt;}
.ws1c{word-spacing:-12.272000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.048000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.952000pt;}
.ws11{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.456000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws10{word-spacing:-7.936000pt;}
.ws12{word-spacing:0.000000pt;}
._10{margin-left:-5.690880pt;}
._2{margin-left:-3.884373pt;}
._1{margin-left:-2.739840pt;}
._0{margin-left:-0.972160pt;}
._5{width:1.009280pt;}
._6{width:2.172160pt;}
._8{width:3.550933pt;}
._7{width:4.577707pt;}
._a{width:5.468373pt;}
._9{width:6.376320pt;}
._c{width:7.657173pt;}
._d{width:8.605440pt;}
._12{width:10.108800pt;}
._11{width:11.580160pt;}
._e{width:14.448640pt;}
._b{width:15.400320pt;}
._f{width:16.503467pt;}
._14{width:19.973120pt;}
._13{width:21.035520pt;}
._15{width:22.517333pt;}
._16{width:37.728000pt;}
._3{width:166.412160pt;}
._4{width:178.720000pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:1.920000pt;}
.y5{bottom:3.360000pt;}
.y57{bottom:4.453333pt;}
.y3d{bottom:5.280000pt;}
.y2{bottom:8.826667pt;}
.y48{bottom:9.120000pt;}
.y4{bottom:20.186667pt;}
.y3c{bottom:22.880000pt;}
.y54{bottom:27.520000pt;}
.y47{bottom:35.514667pt;}
.y3b{bottom:40.480000pt;}
.y3{bottom:42.586667pt;}
.y53{bottom:42.874667pt;}
.y46{bottom:45.434667pt;}
.y7{bottom:50.720000pt;}
.y45{bottom:55.354667pt;}
.y3a{bottom:58.080000pt;}
.y52{bottom:59.994667pt;}
.y44{bottom:65.754667pt;}
.y51{bottom:74.074667pt;}
.y39{bottom:75.680000pt;}
.y43{bottom:77.434667pt;}
.ybc{bottom:85.792000pt;}
.y50{bottom:87.194667pt;}
.y8a{bottom:88.032000pt;}
.y42{bottom:88.954667pt;}
.y55{bottom:91.712000pt;}
.y38{bottom:93.440000pt;}
.y4f{bottom:94.074667pt;}
.ybb{bottom:103.392000pt;}
.ye8{bottom:104.672000pt;}
.y3e{bottom:104.992000pt;}
.y89{bottom:105.632000pt;}
.y4e{bottom:107.994667pt;}
.y41{bottom:108.474667pt;}
.y37{bottom:111.040000pt;}
.yba{bottom:120.992000pt;}
.y4d{bottom:121.754667pt;}
.ye7{bottom:122.272000pt;}
.y88{bottom:123.392000pt;}
.y36{bottom:128.640000pt;}
.y4c{bottom:135.514667pt;}
.yb9{bottom:138.586667pt;}
.ye6{bottom:139.866667pt;}
.y87{bottom:140.986667pt;}
.y35{bottom:146.240000pt;}
.y4b{bottom:149.274667pt;}
.yb8{bottom:156.346667pt;}
.ye5{bottom:157.466667pt;}
.y86{bottom:158.586667pt;}
.y4a{bottom:163.194667pt;}
.y40{bottom:163.514667pt;}
.y34{bottom:163.840000pt;}
.y3f{bottom:172.954667pt;}
.yb7{bottom:173.946667pt;}
.ye4{bottom:175.066667pt;}
.y85{bottom:176.186667pt;}
.y33{bottom:181.600000pt;}
.yb6{bottom:191.546667pt;}
.ye3{bottom:192.826667pt;}
.y84{bottom:193.786667pt;}
.y32{bottom:199.200000pt;}
.yb5{bottom:209.146667pt;}
.ye2{bottom:210.426667pt;}
.y83{bottom:211.546667pt;}
.y31{bottom:216.800000pt;}
.yb4{bottom:226.746667pt;}
.ye1{bottom:228.026667pt;}
.y82{bottom:229.146667pt;}
.y30{bottom:234.426667pt;}
.yb3{bottom:244.506667pt;}
.ye0{bottom:245.626667pt;}
.y81{bottom:246.746667pt;}
.y2f{bottom:252.026667pt;}
.yb2{bottom:262.106667pt;}
.ydf{bottom:263.226667pt;}
.y80{bottom:264.346667pt;}
.y2e{bottom:269.786667pt;}
.y1c{bottom:271.386667pt;}
.yb1{bottom:279.706667pt;}
.yde{bottom:280.986667pt;}
.y7f{bottom:281.946667pt;}
.y2d{bottom:287.386667pt;}
.y1b{bottom:292.826667pt;}
.yb0{bottom:297.346667pt;}
.ydd{bottom:298.626667pt;}
.y7e{bottom:299.746667pt;}
.ye{bottom:304.706667pt;}
.y2c{bottom:304.986667pt;}
.y1a{bottom:314.266667pt;}
.yaf{bottom:314.946667pt;}
.ydc{bottom:316.226667pt;}
.y7d{bottom:317.346667pt;}
.y2b{bottom:322.586667pt;}
.yae{bottom:332.706667pt;}
.ydb{bottom:333.826667pt;}
.y7c{bottom:334.946667pt;}
.y19{bottom:335.706667pt;}
.y2a{bottom:340.186667pt;}
.yad{bottom:350.306667pt;}
.yda{bottom:351.426667pt;}
.y7b{bottom:352.546667pt;}
.y18{bottom:357.146667pt;}
.y29{bottom:357.466667pt;}
.yac{bottom:366.786667pt;}
.yd9{bottom:369.186667pt;}
.y7a{bottom:370.146667pt;}
.y28{bottom:373.306667pt;}
.y17{bottom:378.746667pt;}
.yab{bottom:383.426667pt;}
.yd8{bottom:386.786667pt;}
.y79{bottom:387.906667pt;}
.y27{bottom:389.146667pt;}
.y16{bottom:400.186667pt;}
.yaa{bottom:401.026667pt;}
.yd7{bottom:404.386667pt;}
.y26{bottom:404.986667pt;}
.y78{bottom:405.506667pt;}
.ya9{bottom:418.626667pt;}
.y25{bottom:420.826667pt;}
.y15{bottom:421.626667pt;}
.yd6{bottom:421.986667pt;}
.y77{bottom:423.106667pt;}
.ya8{bottom:436.226667pt;}
.y24{bottom:436.826667pt;}
.yd5{bottom:439.586667pt;}
.y76{bottom:440.706667pt;}
.y14{bottom:443.066667pt;}
.y23{bottom:452.666667pt;}
.ya7{bottom:453.826667pt;}
.yd4{bottom:457.346667pt;}
.y75{bottom:458.306667pt;}
.y13{bottom:464.546667pt;}
.y22{bottom:468.546667pt;}
.yfa{bottom:469.026667pt;}
.ya6{bottom:471.586667pt;}
.yd3{bottom:474.946667pt;}
.y74{bottom:476.066667pt;}
.y21{bottom:484.386667pt;}
.y12{bottom:485.986667pt;}
.yf9{bottom:486.626667pt;}
.ya5{bottom:489.186667pt;}
.yd2{bottom:492.546667pt;}
.y73{bottom:493.666667pt;}
.y20{bottom:500.226667pt;}
.yf8{bottom:504.226667pt;}
.ya4{bottom:506.786667pt;}
.y11{bottom:507.426667pt;}
.yd1{bottom:510.146667pt;}
.y72{bottom:511.266667pt;}
.y1f{bottom:516.066667pt;}
.yf7{bottom:521.826667pt;}
.ya3{bottom:524.386667pt;}
.yd0{bottom:527.746667pt;}
.y71{bottom:528.893333pt;}
.y10{bottom:529.026667pt;}
.y1e{bottom:532.066667pt;}
.yf6{bottom:539.453333pt;}
.ya2{bottom:542.013333pt;}
.ycf{bottom:545.533333pt;}
.y70{bottom:546.493333pt;}
.y1d{bottom:547.906667pt;}
.yf{bottom:550.466667pt;}
.yf5{bottom:558.013333pt;}
.ya1{bottom:559.773333pt;}
.yce{bottom:563.133333pt;}
.y6f{bottom:564.253333pt;}
.yf4{bottom:575.613333pt;}
.ya0{bottom:577.373333pt;}
.ycd{bottom:580.733333pt;}
.y6e{bottom:581.853333pt;}
.yf3{bottom:593.213333pt;}
.y9f{bottom:594.973333pt;}
.ycc{bottom:598.333333pt;}
.y6d{bottom:599.453333pt;}
.yf2{bottom:610.813333pt;}
.y9e{bottom:612.573333pt;}
.ycb{bottom:615.933333pt;}
.y6c{bottom:617.053333pt;}
.yf1{bottom:629.373333pt;}
.y9d{bottom:630.173333pt;}
.yca{bottom:633.693333pt;}
.y6b{bottom:634.653333pt;}
.yf0{bottom:646.973333pt;}
.y9c{bottom:647.773333pt;}
.yc9{bottom:651.293333pt;}
.y6a{bottom:652.413333pt;}
.yef{bottom:665.533333pt;}
.y9b{bottom:666.333333pt;}
.yc8{bottom:668.893333pt;}
.y69{bottom:670.013333pt;}
.yee{bottom:682.973333pt;}
.y9a{bottom:683.933333pt;}
.yc7{bottom:686.493333pt;}
.y68{bottom:687.613333pt;}
.y99{bottom:701.533333pt;}
.yc6{bottom:704.093333pt;}
.y67{bottom:705.213333pt;}
.yed{bottom:719.133333pt;}
.y98{bottom:719.293333pt;}
.yc5{bottom:721.853333pt;}
.y66{bottom:722.813333pt;}
.y97{bottom:736.893333pt;}
.yec{bottom:737.693333pt;}
.yc4{bottom:739.453333pt;}
.y65{bottom:740.573333pt;}
.y96{bottom:754.493333pt;}
.yeb{bottom:755.293333pt;}
.yc3{bottom:757.053333pt;}
.y64{bottom:758.173333pt;}
.y95{bottom:772.133333pt;}
.yea{bottom:773.893333pt;}
.yc2{bottom:774.693333pt;}
.y63{bottom:775.813333pt;}
.y94{bottom:789.733333pt;}
.ye9{bottom:791.333333pt;}
.yc1{bottom:792.293333pt;}
.y62{bottom:793.413333pt;}
.y93{bottom:807.493333pt;}
.yc0{bottom:810.053333pt;}
.y61{bottom:811.013333pt;}
.y92{bottom:824.933333pt;}
.ybf{bottom:827.653333pt;}
.y60{bottom:828.773333pt;}
.y91{bottom:843.493333pt;}
.ybe{bottom:845.253333pt;}
.y5f{bottom:846.373333pt;}
.y90{bottom:861.893333pt;}
.ybd{bottom:862.853333pt;}
.y5e{bottom:863.973333pt;}
.yd{bottom:866.213333pt;}
.yc{bottom:872.773333pt;}
.y8f{bottom:880.453333pt;}
.y5d{bottom:881.573333pt;}
.yb{bottom:890.373333pt;}
.y8e{bottom:898.213333pt;}
.y5c{bottom:899.173333pt;}
.ya{bottom:907.973333pt;}
.y8d{bottom:915.813333pt;}
.y5b{bottom:916.933333pt;}
.y9{bottom:927.653333pt;}
.y8c{bottom:933.413333pt;}
.y5a{bottom:934.533333pt;}
.y8b{bottom:951.013333pt;}
.y59{bottom:952.133333pt;}
.y8{bottom:953.093333pt;}
.y56{bottom:956.000000pt;}
.y58{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.h15{height:8.967500pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.h16{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h14{height:33.867188pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h1c{height:36.809062pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h1b{height:38.361562pt;}
.h18{height:38.672812pt;}
.h10{height:39.562500pt;}
.h1a{height:41.002500pt;}
.h5{height:41.112500pt;}
.ha{height:43.782500pt;}
.h19{height:47.465000pt;}
.h8{height:52.832812pt;}
.h17{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:199.066667pt;}
.hc{height:559.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1a{left:-60.800000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x16{left:7.232000pt;}
.x4{left:11.360000pt;}
.x15{left:14.272000pt;}
.x1d{left:16.192000pt;}
.x13{left:17.472000pt;}
.x14{left:23.232000pt;}
.x1f{left:25.952000pt;}
.x6{left:30.080000pt;}
.x19{left:33.600000pt;}
.x1e{left:42.432000pt;}
.xe{left:45.152000pt;}
.xd{left:48.832000pt;}
.x21{left:50.752000pt;}
.x18{left:53.600000pt;}
.x20{left:58.906667pt;}
.x1{left:69.600000pt;}
.x12{left:70.746667pt;}
.x10{left:73.306667pt;}
.x11{left:74.426667pt;}
.x7{left:76.799988pt;}
.x1b{left:81.800000pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1c{left:94.906667pt;}
.x27{left:100.831988pt;}
.x24{left:103.231988pt;}
.xf{left:110.746667pt;}
.x29{left:116.511988pt;}
.x2a{left:118.431988pt;}
.x5{left:125.640000pt;}
.x25{left:135.386655pt;}
.x31{left:140.826655pt;}
.x30{left:145.626655pt;}
.x3{left:162.106667pt;}
.x17{left:194.746667pt;}
.x2b{left:210.266655pt;}
.x28{left:220.986655pt;}
.x38{left:230.106655pt;}
.x2c{left:235.066655pt;}
.x39{left:238.906655pt;}
.x2d{left:251.546655pt;}
.x2e{left:257.186655pt;}
.x26{left:274.786655pt;}
.x2f{left:303.906655pt;}
.x33{left:344.226655pt;}
.x36{left:354.306655pt;}
.x3a{left:375.906655pt;}
.xb{left:382.146655pt;}
.x3b{left:384.546655pt;}
.x3c{left:398.626655pt;}
.x3d{left:407.426655pt;}
.xa{left:470.813322pt;}
.x32{left:521.053322pt;}
.x35{left:528.733322pt;}
.x34{left:530.973322pt;}
.x37{left:624.773322pt;}
.x9{left:680.933322pt;}
.x8{left:703.813322pt;}
.xc{left:717.093322pt;}
}




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