
    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_05f18d46bae2c77018c32fc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_80429d1321f20ace406d9e53.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_c592032f3684a3742a410553.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_f3c4d3af57c06e694e9bbdb1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_235abe930c5b1742bf7ae261.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_bbb6743fe22c07ed008be712.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;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_a202d5b44e2b496e6cfc71b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_94e108e15c147b740f186713.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_b06fd627319d8d4bb4b766bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_57ceb6ae3212f78e4198de38.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_92dfff22a544f0c79d121ccf.woff2')format("woff");}.fff{font-family:fff;line-height:0.927734;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:ff10;src:url('chunks/assets/font_6a9e265cac233eb6c3bc13d9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.952148;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:ff11;src:url('chunks/assets/font_101b623a977ee28a96e02d90.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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:ff12;src:url('chunks/assets/font_fc71d02ba1b594f299b7add2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.747070;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:ff13;src:url('chunks/assets/font_0b2f4cbf644f0cd2b3af2162.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.128906;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(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);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls26{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.558000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.331200px;}
.ls28{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.306000px;}
.ls15{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.234000px;}
.ls6{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.091200px;}
.ls19{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.054000px;}
.ls9{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.ls11{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.342000px;}
.ls7{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.486000px;}
.ls22{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.738000px;}
.lse{letter-spacing:4.266000px;}
.ls1e{letter-spacing:4.986000px;}
.ls10{letter-spacing:7.884000px;}
.ls1f{letter-spacing:10.026000px;}
.ls1a{letter-spacing:14.364000px;}
.ls0{letter-spacing:22.767840px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);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;}
}
.ws1{word-spacing:-22.316640px;}
.ws8{word-spacing:-18.954000px;}
.ws7{word-spacing:-18.468000px;}
.ws3{word-spacing:-18.360000px;}
.ws6{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-16.824960px;}
.ws26{word-spacing:-14.058000px;}
.ws22{word-spacing:-14.004000px;}
.ws25{word-spacing:-13.932000px;}
.ws24{word-spacing:-13.914000px;}
.ws1e{word-spacing:-13.878000px;}
.ws27{word-spacing:-13.788000px;}
.ws1f{word-spacing:-13.770000px;}
.wsd{word-spacing:-13.752000px;}
.ws1a{word-spacing:-13.716000px;}
.ws18{word-spacing:-13.554000px;}
.ws1c{word-spacing:-13.482000px;}
.ws20{word-spacing:-13.446000px;}
.ws1d{word-spacing:-13.374000px;}
.ws23{word-spacing:-13.302000px;}
.ws17{word-spacing:-13.230000px;}
.wse{word-spacing:-13.194000px;}
.ws15{word-spacing:-13.158000px;}
.wsb{word-spacing:-13.104000px;}
.ws1b{word-spacing:-13.068000px;}
.ws10{word-spacing:-13.032000px;}
.ws11{word-spacing:-13.014000px;}
.ws19{word-spacing:-12.978000px;}
.ws13{word-spacing:-12.960000px;}
.ws12{word-spacing:-12.924000px;}
.wsa{word-spacing:-12.834000px;}
.ws16{word-spacing:-12.744000px;}
.wsc{word-spacing:-12.726000px;}
.wsf{word-spacing:-12.708000px;}
.ws21{word-spacing:-12.690000px;}
.ws2{word-spacing:-10.342080px;}
.ws14{word-spacing:-8.676000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._3{width:1.236480px;}
._5{width:2.912400px;}
._6{width:4.024320px;}
._7{width:5.695680px;}
._4{width:7.488000px;}
._a{width:9.383520px;}
._10{width:10.572960px;}
._f{width:11.880000px;}
._11{width:14.094000px;}
._e{width:15.876000px;}
._d{width:16.973520px;}
._8{width:18.198000px;}
._9{width:19.278000px;}
._1e{width:20.304000px;}
._16{width:21.438000px;}
._2{width:23.269680px;}
._b{width:24.786000px;}
._c{width:25.979520px;}
._14{width:27.366960px;}
._12{width:28.836000px;}
._13{width:30.671520px;}
._1f{width:32.778480px;}
._15{width:34.776000px;}
._19{width:36.342000px;}
._1a{width:37.584000px;}
._2e{width:38.687520px;}
._2d{width:39.708000px;}
._1d{width:41.580000px;}
._1b{width:43.902000px;}
._1c{width:45.036000px;}
._26{width:46.139520px;}
._29{width:47.550000px;}
._28{width:48.600000px;}
._2a{width:49.680000px;}
._23{width:50.832000px;}
._17{width:53.190000px;}
._18{width:54.576000px;}
._25{width:59.292000px;}
._24{width:60.768000px;}
._32{width:75.330000px;}
._21{width:77.900400px;}
._20{width:79.347600px;}
._22{width:81.054000px;}
._30{width:88.344000px;}
._27{width:91.260000px;}
._31{width:95.418000px;}
._2c{width:97.752000px;}
._2f{width:106.002000px;}
._2b{width:144.207120px;}
._33{width:151.254000px;}
._34{width:152.496000px;}
._35{width:153.660000px;}
.fc6{color:rgb(0,32,96);}
.fc4{color:rgb(0,0,255);}
.fc5{color:rgb(0,0,128);}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y39{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1e{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y24{bottom:3.600000px;}
.y1a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y22{bottom:4.860000px;}
.y80{bottom:7.725000px;}
.ya0{bottom:7.740000px;}
.y7b{bottom:7.905000px;}
.ya2{bottom:7.920000px;}
.y38{bottom:9.000000px;}
.yb3{bottom:9.165000px;}
.yb7{bottom:9.166500px;}
.y69{bottom:9.180000px;}
.yb1{bottom:9.345000px;}
.y8a{bottom:9.360000px;}
.y1c{bottom:10.980000px;}
.y20{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y18{bottom:15.300000px;}
.y33{bottom:16.365000px;}
.yf{bottom:19.980000px;}
.y37{bottom:30.240000px;}
.y31{bottom:34.020000px;}
.y13{bottom:45.765000px;}
.y36{bottom:51.660000px;}
.y30{bottom:57.060000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y35{bottom:75.810000px;}
.y2f{bottom:79.920000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y2e{bottom:102.960000px;}
.y88{bottom:112.320000px;}
.yb8{bottom:124.560000px;}
.y2d{bottom:126.000000px;}
.y67{bottom:130.320000px;}
.y87{bottom:135.360000px;}
.yb6{bottom:147.283500px;}
.y2c{bottom:149.040000px;}
.y66{bottom:153.210000px;}
.y86{bottom:158.430000px;}
.yb5{bottom:169.785000px;}
.y2b{bottom:172.080000px;}
.y65{bottom:176.250000px;}
.y85{bottom:181.470000px;}
.yb4{bottom:192.465000px;}
.y2a{bottom:195.120000px;}
.y64{bottom:199.290000px;}
.y84{bottom:204.510000px;}
.yb2{bottom:215.145000px;}
.y29{bottom:217.980000px;}
.y63{bottom:222.330000px;}
.y83{bottom:227.370000px;}
.yb0{bottom:238.725000px;}
.y28{bottom:241.020000px;}
.y62{bottom:245.370000px;}
.y82{bottom:250.410000px;}
.y27{bottom:264.090000px;}
.y81{bottom:264.825000px;}
.y61{bottom:268.410000px;}
.yaf{bottom:273.450000px;}
.y7f{bottom:285.885000px;}
.y60{bottom:291.270000px;}
.yae{bottom:296.490000px;}
.y7e{bottom:306.945000px;}
.y5f{bottom:314.310000px;}
.yad{bottom:319.530000px;}
.y7d{bottom:328.005000px;}
.y5e{bottom:337.350000px;}
.yac{bottom:342.390000px;}
.y7c{bottom:349.065000px;}
.y5d{bottom:360.390000px;}
.yab{bottom:365.430000px;}
.y32{bottom:369.585000px;}
.y7a{bottom:371.205000px;}
.y5c{bottom:383.430000px;}
.yaa{bottom:388.470000px;}
.y26{bottom:395.535000px;}
.y79{bottom:404.355000px;}
.y5b{bottom:406.515000px;}
.ya9{bottom:411.555000px;}
.y78{bottom:427.395000px;}
.y5a{bottom:429.375000px;}
.ya8{bottom:434.595000px;}
.y77{bottom:450.435000px;}
.y59{bottom:452.415000px;}
.ya7{bottom:457.635000px;}
.ya6{bottom:471.855000px;}
.y76{bottom:473.475000px;}
.y58{bottom:475.455000px;}
.ya5{bottom:492.915000px;}
.y75{bottom:496.515000px;}
.y57{bottom:498.495000px;}
.ya4{bottom:513.975000px;}
.y74{bottom:519.375000px;}
.y56{bottom:521.535000px;}
.ya3{bottom:535.035000px;}
.y73{bottom:542.415000px;}
.y55{bottom:544.575000px;}
.ya1{bottom:556.095000px;}
.y72{bottom:565.455000px;}
.y54{bottom:567.435000px;}
.y9f{bottom:578.415000px;}
.y71{bottom:588.495000px;}
.y53{bottom:590.475000px;}
.y70{bottom:611.535000px;}
.y52{bottom:613.515000px;}
.y6f{bottom:634.395000px;}
.y51{bottom:636.555000px;}
.y6e{bottom:648.825000px;}
.y9e{bottom:657.465000px;}
.y50{bottom:659.625000px;}
.y6d{bottom:671.505000px;}
.y25{bottom:671.685000px;}
.y9d{bottom:680.505000px;}
.y4f{bottom:682.485000px;}
.y23{bottom:686.985000px;}
.y6c{bottom:694.005000px;}
.y9c{bottom:703.545000px;}
.y4e{bottom:705.525000px;}
.y21{bottom:705.705000px;}
.y6b{bottom:716.685000px;}
.y1f{bottom:725.685000px;}
.y9b{bottom:726.585000px;}
.y4d{bottom:728.565000px;}
.y6a{bottom:739.185000px;}
.y9a{bottom:749.625000px;}
.y4c{bottom:751.605000px;}
.y1d{bottom:755.745000px;}
.y68{bottom:762.945000px;}
.y1b{bottom:769.065000px;}
.y99{bottom:772.485000px;}
.y4b{bottom:774.645000px;}
.y19{bottom:792.105000px;}
.y98{bottom:795.525000px;}
.y4a{bottom:797.685000px;}
.y17{bottom:809.025000px;}
.y97{bottom:818.565000px;}
.y49{bottom:820.545000px;}
.y15{bottom:839.805000px;}
.y96{bottom:841.605000px;}
.y48{bottom:843.585000px;}
.y12{bottom:854.385000px;}
.y95{bottom:864.645000px;}
.y47{bottom:866.625000px;}
.y94{bottom:887.685000px;}
.y46{bottom:889.710000px;}
.y93{bottom:910.590000px;}
.y45{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.yd{bottom:929.130000px;}
.y92{bottom:933.630000px;}
.y44{bottom:935.790000px;}
.y91{bottom:956.670000px;}
.y43{bottom:958.650000px;}
.y90{bottom:979.710000px;}
.y42{bottom:981.690000px;}
.y8f{bottom:993.930000px;}
.y41{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y8e{bottom:1016.610000px;}
.y40{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8d{bottom:1039.110000px;}
.y8{bottom:1046.850000px;}
.y3f{bottom:1050.810000px;}
.y8c{bottom:1061.790000px;}
.y34{bottom:1065.210000px;}
.y3e{bottom:1073.850000px;}
.y8b{bottom:1084.470000px;}
.y3d{bottom:1096.710000px;}
.y89{bottom:1108.050000px;}
.y3c{bottom:1119.750000px;}
.y3b{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3a{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1a{height:13.320000px;}
.hf{height:13.665000px;}
.h13{height:14.580000px;}
.h21{height:15.300000px;}
.h16{height:16.920000px;}
.h1f{height:18.720000px;}
.h2d{height:19.785000px;}
.h2c{height:19.965000px;}
.h1e{height:19.980000px;}
.h2b{height:20.001000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h2f{height:21.405000px;}
.h30{height:21.412500px;}
.h2a{height:21.420000px;}
.h2e{height:21.585000px;}
.h31{height:21.636000px;}
.h18{height:23.040000px;}
.h23{height:25.941000px;}
.h24{height:29.145586px;}
.h1c{height:30.060000px;}
.h15{height:30.780000px;}
.h10{height:32.670352px;}
.h1b{height:33.588984px;}
.h14{height:36.886641px;}
.h17{height:40.472227px;}
.h29{height:40.842773px;}
.h27{height:41.291016px;}
.h12{height:48.761719px;}
.h19{height:49.253906px;}
.h1d{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h26{height:55.054688px;}
.h28{height:55.209375px;}
.h6{height:57.051211px;}
.h20{height:60.418125px;}
.h11{height:61.042500px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h25{height:93.810000px;}
.h8{height:108.030000px;}
.h22{height:276.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w6{width:76.669500px;}
.w15{width:93.600000px;}
.we{width:94.536000px;}
.w13{width:99.889500px;}
.w1e{width:101.145000px;}
.wf{width:101.325000px;}
.w25{width:105.289500px;}
.w1f{width:106.549500px;}
.w1c{width:107.985000px;}
.w1a{width:107.989500px;}
.w17{width:108.021000px;}
.w16{width:108.036000px;}
.w22{width:109.965000px;}
.w23{width:110.001000px;}
.w21{width:110.016000px;}
.w27{width:112.356000px;}
.w28{width:112.485000px;}
.w29{width:112.521000px;}
.w10{width:114.681000px;}
.w1d{width:114.861000px;}
.wc{width:119.689500px;}
.w26{width:120.081000px;}
.w11{width:121.485000px;}
.w14{width:122.601000px;}
.wd{width:123.321000px;}
.w5{width:124.005000px;}
.w20{width:131.421000px;}
.w1b{width:135.021000px;}
.w18{width:142.905000px;}
.w19{width:222.499500px;}
.w2a{width:225.379500px;}
.w24{width:237.979500px;}
.w12{width:243.019500px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x10{left:16.740000px;}
.x2{left:21.049500px;}
.x1a{left:24.105000px;}
.x17{left:27.885000px;}
.x37{left:29.160000px;}
.x1c{left:30.405000px;}
.x1e{left:32.749500px;}
.x23{left:33.840000px;}
.x1d{left:35.100000px;}
.x2c{left:36.169500px;}
.x1f{left:37.650000px;}
.x7{left:39.780000px;}
.x2d{left:41.430000px;}
.x22{left:43.185000px;}
.x20{left:44.280000px;}
.x2f{left:45.705000px;}
.x21{left:46.800000px;}
.x41{left:47.865000px;}
.x24{left:49.140000px;}
.x26{left:51.120000px;}
.x40{left:53.280000px;}
.x2e{left:54.900000px;}
.x3b{left:57.043500px;}
.x25{left:59.563500px;}
.x30{left:61.740000px;}
.xd{left:73.785000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x3{left:157.005000px;}
.xa{left:176.805000px;}
.x27{left:207.945000px;}
.x3c{left:213.345000px;}
.x35{left:214.605000px;}
.x31{left:216.045000px;}
.x16{left:227.745000px;}
.x13{left:230.430000px;}
.x12{left:263.910000px;}
.xf{left:325.875000px;}
.x28{left:330.555000px;}
.x3d{left:333.435000px;}
.x36{left:346.035000px;}
.x18{left:351.075000px;}
.x29{left:424.155000px;}
.x19{left:445.620000px;}
.x14{left:453.855000px;}
.x38{left:456.060000px;}
.xc{left:457.860000px;}
.x32{left:459.120000px;}
.x15{left:462.705000px;}
.x2a{left:532.200000px;}
.x1b{left:546.960000px;}
.x3e{left:558.300000px;}
.x39{left:566.040000px;}
.x33{left:567.120000px;}
.x2b{left:640.230000px;}
.x6{left:661.650000px;}
.x3f{left:670.830000px;}
.x3a{left:676.050000px;}
.xe{left:680.323500px;}
.x34{left:681.990000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls26{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.496000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.294400pt;}
.ls28{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.272000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.208000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.081067pt;}
.ls19{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls11{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.304000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.432000pt;}
.ls22{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.656000pt;}
.lse{letter-spacing:3.792000pt;}
.ls1e{letter-spacing:4.432000pt;}
.ls10{letter-spacing:7.008000pt;}
.ls1f{letter-spacing:8.912000pt;}
.ls1a{letter-spacing:12.768000pt;}
.ls0{letter-spacing:20.238080pt;}
.ws1{word-spacing:-19.837013pt;}
.ws8{word-spacing:-16.848000pt;}
.ws7{word-spacing:-16.416000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws6{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-14.955520pt;}
.ws26{word-spacing:-12.496000pt;}
.ws22{word-spacing:-12.448000pt;}
.ws25{word-spacing:-12.384000pt;}
.ws24{word-spacing:-12.368000pt;}
.ws1e{word-spacing:-12.336000pt;}
.ws27{word-spacing:-12.256000pt;}
.ws1f{word-spacing:-12.240000pt;}
.wsd{word-spacing:-12.224000pt;}
.ws1a{word-spacing:-12.192000pt;}
.ws18{word-spacing:-12.048000pt;}
.ws1c{word-spacing:-11.984000pt;}
.ws20{word-spacing:-11.952000pt;}
.ws1d{word-spacing:-11.888000pt;}
.ws23{word-spacing:-11.824000pt;}
.ws17{word-spacing:-11.760000pt;}
.wse{word-spacing:-11.728000pt;}
.ws15{word-spacing:-11.696000pt;}
.wsb{word-spacing:-11.648000pt;}
.ws1b{word-spacing:-11.616000pt;}
.ws10{word-spacing:-11.584000pt;}
.ws11{word-spacing:-11.568000pt;}
.ws19{word-spacing:-11.536000pt;}
.ws13{word-spacing:-11.520000pt;}
.ws12{word-spacing:-11.488000pt;}
.wsa{word-spacing:-11.408000pt;}
.ws16{word-spacing:-11.328000pt;}
.wsc{word-spacing:-11.312000pt;}
.wsf{word-spacing:-11.296000pt;}
.ws21{word-spacing:-11.280000pt;}
.ws2{word-spacing:-9.192960pt;}
.ws14{word-spacing:-7.712000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.099093pt;}
._5{width:2.588800pt;}
._6{width:3.577173pt;}
._7{width:5.062827pt;}
._4{width:6.656000pt;}
._a{width:8.340907pt;}
._10{width:9.398187pt;}
._f{width:10.560000pt;}
._11{width:12.528000pt;}
._e{width:14.112000pt;}
._d{width:15.087573pt;}
._8{width:16.176000pt;}
._9{width:17.136000pt;}
._1e{width:18.048000pt;}
._16{width:19.056000pt;}
._2{width:20.684160pt;}
._b{width:22.032000pt;}
._c{width:23.092907pt;}
._14{width:24.326187pt;}
._12{width:25.632000pt;}
._13{width:27.263573pt;}
._1f{width:29.136427pt;}
._15{width:30.912000pt;}
._19{width:32.304000pt;}
._1a{width:33.408000pt;}
._2e{width:34.388907pt;}
._2d{width:35.296000pt;}
._1d{width:36.960000pt;}
._1b{width:39.024000pt;}
._1c{width:40.032000pt;}
._26{width:41.012907pt;}
._29{width:42.266667pt;}
._28{width:43.200000pt;}
._2a{width:44.160000pt;}
._23{width:45.184000pt;}
._17{width:47.280000pt;}
._18{width:48.512000pt;}
._25{width:52.704000pt;}
._24{width:54.016000pt;}
._32{width:66.960000pt;}
._21{width:69.244800pt;}
._20{width:70.531200pt;}
._22{width:72.048000pt;}
._30{width:78.528000pt;}
._27{width:81.120000pt;}
._31{width:84.816000pt;}
._2c{width:86.890667pt;}
._2f{width:94.224000pt;}
._2b{width:128.184107pt;}
._33{width:134.448000pt;}
._34{width:135.552000pt;}
._35{width:136.586667pt;}
.fs3{font-size:10.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y39{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1e{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y24{bottom:3.200000pt;}
.y1a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y22{bottom:4.320000pt;}
.y80{bottom:6.866667pt;}
.ya0{bottom:6.880000pt;}
.y7b{bottom:7.026667pt;}
.ya2{bottom:7.040000pt;}
.y38{bottom:8.000000pt;}
.yb3{bottom:8.146667pt;}
.yb7{bottom:8.148000pt;}
.y69{bottom:8.160000pt;}
.yb1{bottom:8.306667pt;}
.y8a{bottom:8.320000pt;}
.y1c{bottom:9.760000pt;}
.y20{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y18{bottom:13.600000pt;}
.y33{bottom:14.546667pt;}
.yf{bottom:17.760000pt;}
.y37{bottom:26.880000pt;}
.y31{bottom:30.240000pt;}
.y13{bottom:40.680000pt;}
.y36{bottom:45.920000pt;}
.y30{bottom:50.720000pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y35{bottom:67.386667pt;}
.y2f{bottom:71.040000pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y2e{bottom:91.520000pt;}
.y88{bottom:99.840000pt;}
.yb8{bottom:110.720000pt;}
.y2d{bottom:112.000000pt;}
.y67{bottom:115.840000pt;}
.y87{bottom:120.320000pt;}
.yb6{bottom:130.918667pt;}
.y2c{bottom:132.480000pt;}
.y66{bottom:136.186667pt;}
.y86{bottom:140.826667pt;}
.yb5{bottom:150.920000pt;}
.y2b{bottom:152.960000pt;}
.y65{bottom:156.666667pt;}
.y85{bottom:161.306667pt;}
.yb4{bottom:171.080000pt;}
.y2a{bottom:173.440000pt;}
.y64{bottom:177.146667pt;}
.y84{bottom:181.786667pt;}
.yb2{bottom:191.240000pt;}
.y29{bottom:193.760000pt;}
.y63{bottom:197.626667pt;}
.y83{bottom:202.106667pt;}
.yb0{bottom:212.200000pt;}
.y28{bottom:214.240000pt;}
.y62{bottom:218.106667pt;}
.y82{bottom:222.586667pt;}
.y27{bottom:234.746667pt;}
.y81{bottom:235.400000pt;}
.y61{bottom:238.586667pt;}
.yaf{bottom:243.066667pt;}
.y7f{bottom:254.120000pt;}
.y60{bottom:258.906667pt;}
.yae{bottom:263.546667pt;}
.y7e{bottom:272.840000pt;}
.y5f{bottom:279.386667pt;}
.yad{bottom:284.026667pt;}
.y7d{bottom:291.560000pt;}
.y5e{bottom:299.866667pt;}
.yac{bottom:304.346667pt;}
.y7c{bottom:310.280000pt;}
.y5d{bottom:320.346667pt;}
.yab{bottom:324.826667pt;}
.y32{bottom:328.520000pt;}
.y7a{bottom:329.960000pt;}
.y5c{bottom:340.826667pt;}
.yaa{bottom:345.306667pt;}
.y26{bottom:351.586667pt;}
.y79{bottom:359.426667pt;}
.y5b{bottom:361.346667pt;}
.ya9{bottom:365.826667pt;}
.y78{bottom:379.906667pt;}
.y5a{bottom:381.666667pt;}
.ya8{bottom:386.306667pt;}
.y77{bottom:400.386667pt;}
.y59{bottom:402.146667pt;}
.ya7{bottom:406.786667pt;}
.ya6{bottom:419.426667pt;}
.y76{bottom:420.866667pt;}
.y58{bottom:422.626667pt;}
.ya5{bottom:438.146667pt;}
.y75{bottom:441.346667pt;}
.y57{bottom:443.106667pt;}
.ya4{bottom:456.866667pt;}
.y74{bottom:461.666667pt;}
.y56{bottom:463.586667pt;}
.ya3{bottom:475.586667pt;}
.y73{bottom:482.146667pt;}
.y55{bottom:484.066667pt;}
.ya1{bottom:494.306667pt;}
.y72{bottom:502.626667pt;}
.y54{bottom:504.386667pt;}
.y9f{bottom:514.146667pt;}
.y71{bottom:523.106667pt;}
.y53{bottom:524.866667pt;}
.y70{bottom:543.586667pt;}
.y52{bottom:545.346667pt;}
.y6f{bottom:563.906667pt;}
.y51{bottom:565.826667pt;}
.y6e{bottom:576.733333pt;}
.y9e{bottom:584.413333pt;}
.y50{bottom:586.333333pt;}
.y6d{bottom:596.893333pt;}
.y25{bottom:597.053333pt;}
.y9d{bottom:604.893333pt;}
.y4f{bottom:606.653333pt;}
.y23{bottom:610.653333pt;}
.y6c{bottom:616.893333pt;}
.y9c{bottom:625.373333pt;}
.y4e{bottom:627.133333pt;}
.y21{bottom:627.293333pt;}
.y6b{bottom:637.053333pt;}
.y1f{bottom:645.053333pt;}
.y9b{bottom:645.853333pt;}
.y4d{bottom:647.613333pt;}
.y6a{bottom:657.053333pt;}
.y9a{bottom:666.333333pt;}
.y4c{bottom:668.093333pt;}
.y1d{bottom:671.773333pt;}
.y68{bottom:678.173333pt;}
.y1b{bottom:683.613333pt;}
.y99{bottom:686.653333pt;}
.y4b{bottom:688.573333pt;}
.y19{bottom:704.093333pt;}
.y98{bottom:707.133333pt;}
.y4a{bottom:709.053333pt;}
.y17{bottom:719.133333pt;}
.y97{bottom:727.613333pt;}
.y49{bottom:729.373333pt;}
.y15{bottom:746.493333pt;}
.y96{bottom:748.093333pt;}
.y48{bottom:749.853333pt;}
.y12{bottom:759.453333pt;}
.y95{bottom:768.573333pt;}
.y47{bottom:770.333333pt;}
.y94{bottom:789.053333pt;}
.y46{bottom:790.853333pt;}
.y93{bottom:809.413333pt;}
.y45{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.yd{bottom:825.893333pt;}
.y92{bottom:829.893333pt;}
.y44{bottom:831.813333pt;}
.y91{bottom:850.373333pt;}
.y43{bottom:852.133333pt;}
.y90{bottom:870.853333pt;}
.y42{bottom:872.613333pt;}
.y8f{bottom:883.493333pt;}
.y41{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y8e{bottom:903.653333pt;}
.y40{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8d{bottom:923.653333pt;}
.y8{bottom:930.533333pt;}
.y3f{bottom:934.053333pt;}
.y8c{bottom:943.813333pt;}
.y34{bottom:946.853333pt;}
.y3e{bottom:954.533333pt;}
.y8b{bottom:963.973333pt;}
.y3d{bottom:974.853333pt;}
.y89{bottom:984.933333pt;}
.y3c{bottom:995.333333pt;}
.y3b{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3a{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1a{height:11.840000pt;}
.hf{height:12.146667pt;}
.h13{height:12.960000pt;}
.h21{height:13.600000pt;}
.h16{height:15.040000pt;}
.h1f{height:16.640000pt;}
.h2d{height:17.586667pt;}
.h2c{height:17.746667pt;}
.h1e{height:17.760000pt;}
.h2b{height:17.778667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h2f{height:19.026667pt;}
.h30{height:19.033333pt;}
.h2a{height:19.040000pt;}
.h2e{height:19.186667pt;}
.h31{height:19.232000pt;}
.h18{height:20.480000pt;}
.h23{height:23.058667pt;}
.h24{height:25.907187pt;}
.h1c{height:26.720000pt;}
.h15{height:27.360000pt;}
.h10{height:29.040312pt;}
.h1b{height:29.856875pt;}
.h14{height:32.788125pt;}
.h17{height:35.975313pt;}
.h29{height:36.304688pt;}
.h27{height:36.703125pt;}
.h12{height:43.343750pt;}
.h19{height:43.781250pt;}
.h1d{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h26{height:48.937500pt;}
.h28{height:49.075000pt;}
.h6{height:50.712187pt;}
.h20{height:53.705000pt;}
.h11{height:54.260000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h25{height:83.386667pt;}
.h8{height:96.026667pt;}
.h22{height:245.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w6{width:68.150667pt;}
.w15{width:83.200000pt;}
.we{width:84.032000pt;}
.w13{width:88.790667pt;}
.w1e{width:89.906667pt;}
.wf{width:90.066667pt;}
.w25{width:93.590667pt;}
.w1f{width:94.710667pt;}
.w1c{width:95.986667pt;}
.w1a{width:95.990667pt;}
.w17{width:96.018667pt;}
.w16{width:96.032000pt;}
.w22{width:97.746667pt;}
.w23{width:97.778667pt;}
.w21{width:97.792000pt;}
.w27{width:99.872000pt;}
.w28{width:99.986667pt;}
.w29{width:100.018667pt;}
.w10{width:101.938667pt;}
.w1d{width:102.098667pt;}
.wc{width:106.390667pt;}
.w26{width:106.738667pt;}
.w11{width:107.986667pt;}
.w14{width:108.978667pt;}
.wd{width:109.618667pt;}
.w5{width:110.226667pt;}
.w20{width:116.818667pt;}
.w1b{width:120.018667pt;}
.w18{width:127.026667pt;}
.w19{width:197.777333pt;}
.w2a{width:200.337333pt;}
.w24{width:211.537333pt;}
.w12{width:216.017333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x10{left:14.880000pt;}
.x2{left:18.710667pt;}
.x1a{left:21.426667pt;}
.x17{left:24.786667pt;}
.x37{left:25.920000pt;}
.x1c{left:27.026667pt;}
.x1e{left:29.110667pt;}
.x23{left:30.080000pt;}
.x1d{left:31.200000pt;}
.x2c{left:32.150667pt;}
.x1f{left:33.466667pt;}
.x7{left:35.360000pt;}
.x2d{left:36.826667pt;}
.x22{left:38.386667pt;}
.x20{left:39.360000pt;}
.x2f{left:40.626667pt;}
.x21{left:41.600000pt;}
.x41{left:42.546667pt;}
.x24{left:43.680000pt;}
.x26{left:45.440000pt;}
.x40{left:47.360000pt;}
.x2e{left:48.800000pt;}
.x3b{left:50.705333pt;}
.x25{left:52.945333pt;}
.x30{left:54.880000pt;}
.xd{left:65.586667pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x3{left:139.560000pt;}
.xa{left:157.160000pt;}
.x27{left:184.840000pt;}
.x3c{left:189.640000pt;}
.x35{left:190.760000pt;}
.x31{left:192.040000pt;}
.x16{left:202.440000pt;}
.x13{left:204.826667pt;}
.x12{left:234.586667pt;}
.xf{left:289.666667pt;}
.x28{left:293.826667pt;}
.x3d{left:296.386667pt;}
.x36{left:307.586667pt;}
.x18{left:312.066667pt;}
.x29{left:377.026667pt;}
.x19{left:396.106667pt;}
.x14{left:403.426667pt;}
.x38{left:405.386667pt;}
.xc{left:406.986667pt;}
.x32{left:408.106667pt;}
.x15{left:411.293333pt;}
.x2a{left:473.066667pt;}
.x1b{left:486.186667pt;}
.x3e{left:496.266667pt;}
.x39{left:503.146667pt;}
.x33{left:504.106667pt;}
.x2b{left:569.093333pt;}
.x6{left:588.133333pt;}
.x3f{left:596.293333pt;}
.x3a{left:600.933333pt;}
.xe{left:604.732000pt;}
.x34{left:606.213333pt;}
}




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