
    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_7dbaf7919cb85e2b8ff87c35.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_1870e46b643f9a821a7a100f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_260023123dd112e30fe61e97.woff2')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_ed76241f36824a78be15a6f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_49dc5fe0c45d0a464779895d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_d626fd13cc886359017ecc98.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a067e7928fb83b2fecc9e01c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_7221c49b513d6baa57e9f9c7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c68ea9b83229590bfa0feca3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966797;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_cbec4c08cbbeddabc9c8d7d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.928711;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_2a08e275c5d6ea405fe55e51.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941406;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_dd8ab02ad8021a1a9f78982a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_27fb3c20856f0669d0fa40a0.woff2')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;}
@font-face{font-family:fff;src:url('chunks/assets/font_3d49efbb9e48170d46595fc3.woff2')format("woff");}.fff{font-family:fff;line-height:0.946777;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_a9ab3979290b87beceb8a14c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8b83d3b058f79b5f34b11f36.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls27{letter-spacing:-0.702000px;}
.ls10{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.259800px;}
.ls25{letter-spacing:-0.253200px;}
.ls28{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.126000px;}
.ls33{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.004320px;}
.ls35{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.073440px;}
.lsa{letter-spacing:0.074880px;}
.ls30{letter-spacing:0.106560px;}
.ls14{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.138240px;}
.ls9{letter-spacing:0.153360px;}
.ls4{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.238320px;}
.ls21{letter-spacing:0.240480px;}
.ls12{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.300000px;}
.ls26{letter-spacing:0.306600px;}
.ls2a{letter-spacing:0.306720px;}
.ls1f{letter-spacing:0.318240px;}
.ls18{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.379920px;}
.ls2c{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.666720px;}
.ls36{letter-spacing:0.900000px;}
.lsc{letter-spacing:1.224000px;}
.lsd{letter-spacing:1.656000px;}
.ls20{letter-spacing:5.940000px;}
.lsf{letter-spacing:9.540000px;}
.ls1e{letter-spacing:9.720000px;}
.ls1{letter-spacing:10.260000px;}
.ls2b{letter-spacing:10.980000px;}
.ls34{letter-spacing:14.580000px;}
.ls3{letter-spacing:17.460000px;}
.ls32{letter-spacing:18.900000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws1{word-spacing:-28.656000px;}
.ws0{word-spacing:-28.224000px;}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-17.856000px;}
.wsa{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.228000px;}
.ws9{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.046800px;}
.ws11{word-spacing:-15.012000px;}
.wse{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws1b{word-spacing:-14.833200px;}
.ws1d{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.686800px;}
.ws16{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.374000px;}
.ws1f{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.888000px;}
.ws2{word-spacing:-12.060000px;}
.ws12{word-spacing:-10.332000px;}
.ws15{word-spacing:-9.724320px;}
.ws1c{word-spacing:-9.720000px;}
.ws19{word-spacing:-9.000000px;}
.ws14{word-spacing:0.000000px;}
._9{margin-left:-6.495840px;}
._5{margin-left:-4.570560px;}
._3{margin-left:-3.245760px;}
._1{margin-left:-1.258560px;}
._4{width:1.071840px;}
._6{width:2.184480px;}
._7{width:3.512160px;}
._8{width:4.910880px;}
._11{width:6.127200px;}
._13{width:7.621440px;}
._23{width:9.001440px;}
._a{width:10.586160px;}
._2{width:12.188160px;}
._0{width:13.248000px;}
._c{width:14.518560px;}
._b{width:15.552000px;}
._1f{width:16.827120px;}
._f{width:17.874000px;}
._d{width:19.062000px;}
._24{width:20.267760px;}
._28{width:21.538560px;}
._e{width:22.572000px;}
._21{width:23.784000px;}
._19{width:24.837840px;}
._1a{width:25.876080px;}
._18{width:27.134880px;}
._29{width:28.320240px;}
._16{width:29.530800px;}
._1b{width:31.094400px;}
._10{width:32.736000px;}
._26{width:33.883920px;}
._27{width:35.012160px;}
._2a{width:37.544640px;}
._12{width:38.584080px;}
._2b{width:40.461360px;}
._17{width:41.473440px;}
._1c{width:44.401680px;}
._20{width:47.920080px;}
._15{width:49.898640px;}
._14{width:51.190560px;}
._2f{width:53.568000px;}
._2e{width:54.792000px;}
._33{width:60.148560px;}
._32{width:61.236000px;}
._25{width:63.084000px;}
._31{width:67.458000px;}
._30{width:68.850000px;}
._2d{width:70.164000px;}
._2c{width:71.316000px;}
._1e{width:76.612320px;}
._1d{width:78.127920px;}
._22{width:184.993200px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.yad{bottom:-27.360000px;}
.y67{bottom:-5.040000px;}
.y0{bottom:0.000000px;}
.yac{bottom:1.980000px;}
.ya5{bottom:2.925000px;}
.ya8{bottom:3.060000px;}
.y55{bottom:3.600000px;}
.yd5{bottom:3.960000px;}
.ya2{bottom:4.140000px;}
.y12d{bottom:4.500000px;}
.y9b{bottom:5.580000px;}
.y65{bottom:5.940000px;}
.y66{bottom:6.120000px;}
.y5f{bottom:6.840000px;}
.y63{bottom:12.420000px;}
.y58{bottom:12.600000px;}
.y5d{bottom:12.645000px;}
.ya4{bottom:15.525000px;}
.ya7{bottom:15.660000px;}
.yab{bottom:16.920000px;}
.ydb{bottom:18.720000px;}
.ya1{bottom:19.080000px;}
.y12c{bottom:19.440000px;}
.y9a{bottom:20.700000px;}
.y5a{bottom:21.600000px;}
.y5c{bottom:21.645000px;}
.y62{bottom:30.420000px;}
.y57{bottom:30.600000px;}
.yaa{bottom:31.860000px;}
.yda{bottom:33.660000px;}
.yd4{bottom:34.020000px;}
.ya0{bottom:34.200000px;}
.y12b{bottom:34.560000px;}
.y99{bottom:35.640000px;}
.y59{bottom:39.600000px;}
.y61{bottom:48.420000px;}
.yd9{bottom:48.600000px;}
.yd3{bottom:48.960000px;}
.y9f{bottom:49.140000px;}
.y12a{bottom:49.500000px;}
.y98{bottom:50.580000px;}
.y4{bottom:58.356000px;}
.yd8{bottom:63.720000px;}
.y9e{bottom:64.080000px;}
.y129{bottom:64.440000px;}
.y3{bottom:78.516000px;}
.y128{bottom:79.560000px;}
.y97{bottom:80.820000px;}
.yd7{bottom:93.600000px;}
.y9d{bottom:94.140000px;}
.y2{bottom:98.676000px;}
.ya9{bottom:108.036000px;}
.y127{bottom:109.620000px;}
.y1{bottom:118.836000px;}
.y125{bottom:143.856000px;}
.y36{bottom:146.556000px;}
.yd1{bottom:147.456000px;}
.yff{bottom:147.996000px;}
.yb7{bottom:148.356000px;}
.ya6{bottom:151.950000px;}
.y124{bottom:158.790000px;}
.y35{bottom:164.550000px;}
.yd0{bottom:165.450000px;}
.yfe{bottom:165.990000px;}
.yb6{bottom:166.350000px;}
.y95{bottom:166.710000px;}
.y51{bottom:169.050000px;}
.y123{bottom:173.730000px;}
.y60{bottom:180.750000px;}
.y34{bottom:182.550000px;}
.ycf{bottom:183.450000px;}
.yfd{bottom:183.990000px;}
.yb5{bottom:184.350000px;}
.y94{bottom:184.710000px;}
.y122{bottom:188.850000px;}
.y53{bottom:199.485000px;}
.y33{bottom:200.550000px;}
.yce{bottom:201.450000px;}
.yfc{bottom:201.990000px;}
.yb4{bottom:202.350000px;}
.y93{bottom:202.710000px;}
.y121{bottom:203.790000px;}
.y64{bottom:204.510000px;}
.y52{bottom:217.485000px;}
.y32{bottom:218.550000px;}
.y120{bottom:218.730000px;}
.ycd{bottom:219.450000px;}
.yfb{bottom:219.990000px;}
.yb3{bottom:220.350000px;}
.y92{bottom:220.710000px;}
.y5e{bottom:228.090000px;}
.y11f{bottom:233.850000px;}
.y31{bottom:236.550000px;}
.ycc{bottom:237.450000px;}
.yfa{bottom:237.990000px;}
.yb2{bottom:238.350000px;}
.y91{bottom:238.710000px;}
.y11e{bottom:248.790000px;}
.y5b{bottom:253.110000px;}
.y30{bottom:254.550000px;}
.ycb{bottom:255.450000px;}
.yf9{bottom:255.990000px;}
.yb1{bottom:256.350000px;}
.y90{bottom:256.710000px;}
.ya3{bottom:260.310000px;}
.y11d{bottom:263.775000px;}
.y2f{bottom:272.595000px;}
.yca{bottom:273.495000px;}
.yf8{bottom:274.035000px;}
.y8f{bottom:274.755000px;}
.y11c{bottom:278.895000px;}
.yb0{bottom:283.395000px;}
.y56{bottom:290.055000px;}
.y2e{bottom:290.595000px;}
.yc9{bottom:291.495000px;}
.yf7{bottom:292.035000px;}
.y8e{bottom:292.755000px;}
.y11b{bottom:293.835000px;}
.y2d{bottom:308.595000px;}
.y11a{bottom:308.775000px;}
.yc8{bottom:309.495000px;}
.yf6{bottom:310.035000px;}
.yaf{bottom:310.395000px;}
.y8d{bottom:310.755000px;}
.y119{bottom:323.895000px;}
.y2c{bottom:326.595000px;}
.yc7{bottom:327.495000px;}
.yf5{bottom:328.035000px;}
.yae{bottom:328.395000px;}
.y8c{bottom:337.755000px;}
.y118{bottom:338.835000px;}
.y2b{bottom:344.595000px;}
.y54{bottom:344.775000px;}
.yf4{bottom:346.035000px;}
.yd2{bottom:348.195000px;}
.y117{bottom:353.775000px;}
.yc6{bottom:354.495000px;}
.y2a{bottom:362.595000px;}
.yf3{bottom:364.035000px;}
.y9c{bottom:366.915000px;}
.y116{bottom:368.895000px;}
.y29{bottom:380.595000px;}
.yc5{bottom:381.495000px;}
.yf2{bottom:382.035000px;}
.y115{bottom:383.835000px;}
.y28{bottom:398.595000px;}
.y114{bottom:398.775000px;}
.yc4{bottom:399.495000px;}
.yf1{bottom:400.035000px;}
.y113{bottom:413.895000px;}
.y27{bottom:416.595000px;}
.y8b{bottom:417.495000px;}
.yf0{bottom:418.035000px;}
.y112{bottom:428.835000px;}
.y26{bottom:434.595000px;}
.y8a{bottom:435.495000px;}
.yef{bottom:436.035000px;}
.y111{bottom:443.775000px;}
.y50{bottom:446.655000px;}
.y25{bottom:452.595000px;}
.y89{bottom:453.495000px;}
.yee{bottom:454.035000px;}
.y110{bottom:458.895000px;}
.y4f{bottom:464.655000px;}
.y24{bottom:470.595000px;}
.y88{bottom:471.495000px;}
.yed{bottom:472.035000px;}
.y10f{bottom:473.835000px;}
.y4e{bottom:482.655000px;}
.y23{bottom:488.595000px;}
.y10e{bottom:488.775000px;}
.y87{bottom:489.495000px;}
.yec{bottom:490.035000px;}
.y4d{bottom:500.655000px;}
.y10d{bottom:503.895000px;}
.y22{bottom:506.595000px;}
.y86{bottom:507.495000px;}
.yeb{bottom:508.035000px;}
.y4c{bottom:518.655000px;}
.y10c{bottom:518.835000px;}
.y21{bottom:524.595000px;}
.y85{bottom:525.495000px;}
.yea{bottom:526.035000px;}
.y4b{bottom:536.685000px;}
.y20{bottom:542.625000px;}
.y84{bottom:543.525000px;}
.ye9{bottom:544.065000px;}
.y4a{bottom:554.685000px;}
.y1f{bottom:560.625000px;}
.y83{bottom:561.525000px;}
.ye8{bottom:562.065000px;}
.y49{bottom:572.685000px;}
.y1e{bottom:578.625000px;}
.y82{bottom:579.525000px;}
.ye7{bottom:580.065000px;}
.y10b{bottom:588.525000px;}
.y48{bottom:590.685000px;}
.y1d{bottom:596.625000px;}
.y81{bottom:597.525000px;}
.ye6{bottom:598.065000px;}
.y10a{bottom:606.525000px;}
.y47{bottom:608.685000px;}
.y1c{bottom:614.625000px;}
.y80{bottom:615.525000px;}
.ye5{bottom:616.065000px;}
.y109{bottom:624.525000px;}
.y46{bottom:626.685000px;}
.y1b{bottom:632.625000px;}
.y7f{bottom:633.525000px;}
.ye4{bottom:634.065000px;}
.y108{bottom:642.525000px;}
.y45{bottom:644.685000px;}
.y7e{bottom:651.525000px;}
.ye3{bottom:652.065000px;}
.yd6{bottom:652.425000px;}
.y1a{bottom:659.625000px;}
.y107{bottom:660.525000px;}
.y44{bottom:662.685000px;}
.y7d{bottom:669.525000px;}
.ye2{bottom:670.065000px;}
.y106{bottom:678.525000px;}
.y43{bottom:680.685000px;}
.yc3{bottom:687.525000px;}
.ye1{bottom:688.065000px;}
.y7c{bottom:696.525000px;}
.y42{bottom:698.685000px;}
.y19{bottom:703.905000px;}
.yc2{bottom:705.525000px;}
.ye0{bottom:706.065000px;}
.y105{bottom:714.525000px;}
.y41{bottom:716.685000px;}
.y18{bottom:719.025000px;}
.y7b{bottom:723.525000px;}
.ydf{bottom:724.065000px;}
.y104{bottom:732.525000px;}
.y17{bottom:733.965000px;}
.y40{bottom:734.685000px;}
.y7a{bottom:741.525000px;}
.yde{bottom:742.065000px;}
.y16{bottom:748.905000px;}
.y3f{bottom:752.685000px;}
.y79{bottom:759.525000px;}
.ydd{bottom:760.065000px;}
.y15{bottom:764.025000px;}
.y3e{bottom:770.685000px;}
.y78{bottom:777.525000px;}
.ydc{bottom:778.065000px;}
.y14{bottom:778.965000px;}
.y3d{bottom:788.685000px;}
.y13{bottom:793.905000px;}
.y142{bottom:794.805000px;}
.y77{bottom:795.570000px;}
.y126{bottom:798.090000px;}
.y103{bottom:804.570000px;}
.y3c{bottom:806.730000px;}
.y12{bottom:809.070000px;}
.y141{bottom:809.970000px;}
.y76{bottom:813.570000px;}
.yc1{bottom:822.570000px;}
.y11{bottom:824.010000px;}
.y3b{bottom:824.730000px;}
.y140{bottom:824.910000px;}
.y96{bottom:828.150000px;}
.y75{bottom:831.570000px;}
.y10{bottom:838.950000px;}
.y13f{bottom:839.850000px;}
.y102{bottom:840.570000px;}
.y3a{bottom:842.730000px;}
.y74{bottom:849.570000px;}
.yf{bottom:854.070000px;}
.y13e{bottom:854.970000px;}
.y101{bottom:858.570000px;}
.y39{bottom:860.730000px;}
.y73{bottom:867.570000px;}
.ye{bottom:869.010000px;}
.y13d{bottom:869.910000px;}
.y100{bottom:876.570000px;}
.y38{bottom:878.730000px;}
.yd{bottom:883.950000px;}
.y13c{bottom:884.850000px;}
.y72{bottom:885.570000px;}
.yc0{bottom:894.570000px;}
.y37{bottom:896.730000px;}
.yc{bottom:899.070000px;}
.y13b{bottom:899.970000px;}
.y71{bottom:903.570000px;}
.ybf{bottom:912.570000px;}
.yb{bottom:914.010000px;}
.y13a{bottom:914.910000px;}
.y70{bottom:921.570000px;}
.y139{bottom:929.850000px;}
.ybe{bottom:930.570000px;}
.ya{bottom:939.030000px;}
.y6f{bottom:939.570000px;}
.y138{bottom:944.970000px;}
.ybd{bottom:948.570000px;}
.y6e{bottom:957.570000px;}
.y137{bottom:959.910000px;}
.y9{bottom:966.570000px;}
.y136{bottom:974.850000px;}
.y6d{bottom:975.570000px;}
.ybc{bottom:984.570000px;}
.y8{bottom:989.430000px;}
.y135{bottom:989.970000px;}
.y6c{bottom:1002.570000px;}
.y134{bottom:1004.910000px;}
.y7{bottom:1010.130000px;}
.y133{bottom:1019.850000px;}
.ybb{bottom:1020.570000px;}
.y6b{bottom:1029.570000px;}
.y132{bottom:1034.970000px;}
.yba{bottom:1038.570000px;}
.y6{bottom:1041.810000px;}
.y6a{bottom:1047.570000px;}
.y131{bottom:1049.910000px;}
.yb9{bottom:1056.570000px;}
.y130{bottom:1064.880000px;}
.y69{bottom:1065.600000px;}
.y5{bottom:1072.800000px;}
.yb8{bottom:1074.600000px;}
.y12f{bottom:1080.000000px;}
.y68{bottom:1092.600000px;}
.y12e{bottom:1094.940000px;}
.hc{height:18.000000px;}
.h14{height:22.860000px;}
.h12{height:24.300000px;}
.h5{height:33.683203px;}
.h11{height:36.036000px;}
.h17{height:37.705078px;}
.h6{height:38.100586px;}
.hd{height:38.439844px;}
.h7{height:39.128906px;}
.hf{height:39.471680px;}
.h9{height:41.726953px;}
.h8{height:43.506914px;}
.ha{height:43.681992px;}
.h10{height:44.314453px;}
.h15{height:48.027656px;}
.h3{height:50.273438px;}
.he{height:54.000000px;}
.h4{height:61.043203px;}
.h1{height:65.884219px;}
.h13{height:71.640000px;}
.h2{height:75.410156px;}
.h1a{height:104.040000px;}
.h19{height:104.076000px;}
.hb{height:231.870000px;}
.h1b{height:260.670000px;}
.h16{height:278.850000px;}
.h1c{height:294.510000px;}
.h1e{height:308.370000px;}
.h1d{height:454.035000px;}
.h18{height:454.215000px;}
.h0{height:1188.000000px;}
.w3{width:112.716000px;}
.w4{width:115.056000px;}
.w5{width:135.720000px;}
.w9{width:188.505000px;}
.w8{width:188.670000px;}
.w7{width:376.635000px;}
.w6{width:376.995000px;}
.wa{width:377.175000px;}
.w2{width:377.355000px;}
.wb{width:377.535000px;}
.wc{width:377.715000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:2.340000px;}
.xe{left:6.300000px;}
.x19{left:9.000000px;}
.x1b{left:12.090000px;}
.x16{left:14.760000px;}
.x12{left:17.100000px;}
.x1a{left:18.540000px;}
.x10{left:19.620000px;}
.x13{left:23.250000px;}
.x15{left:27.000000px;}
.x18{left:29.370000px;}
.x17{left:33.870000px;}
.x14{left:36.360000px;}
.x1{left:68.039986px;}
.x6{left:69.119986px;}
.xc{left:75.450000px;}
.x2{left:82.439986px;}
.x20{left:86.790000px;}
.x27{left:95.075986px;}
.x3{left:116.675986px;}
.x1f{left:145.290000px;}
.x5{left:160.769986px;}
.x1d{left:175.709986px;}
.x8{left:199.649986px;}
.x21{left:256.710000px;}
.x1e{left:369.615000px;}
.x7{left:405.434986px;}
.x4{left:459.074986px;}
.x9{left:472.574986px;}
.xb{left:478.155000px;}
.xd{left:484.275000px;}
.xa{left:486.614986px;}
.x26{left:499.604986px;}
.x22{left:561.164986px;}
.x24{left:596.624986px;}
.xf{left:597.705000px;}
.x23{left:603.824986px;}
.x25{left:622.544986px;}
.x11{left:713.490000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls27{letter-spacing:-0.624000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls25{letter-spacing:-0.225067pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls33{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.003840pt;}
.ls35{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.065280pt;}
.lsa{letter-spacing:0.066560pt;}
.ls30{letter-spacing:0.094720pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.122880pt;}
.ls9{letter-spacing:0.136320pt;}
.ls4{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.211840pt;}
.ls21{letter-spacing:0.213760pt;}
.ls12{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.266667pt;}
.ls26{letter-spacing:0.272533pt;}
.ls2a{letter-spacing:0.272640pt;}
.ls1f{letter-spacing:0.282880pt;}
.ls18{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.337707pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.592640pt;}
.ls36{letter-spacing:0.800000pt;}
.lsc{letter-spacing:1.088000pt;}
.lsd{letter-spacing:1.472000pt;}
.ls20{letter-spacing:5.280000pt;}
.lsf{letter-spacing:8.480000pt;}
.ls1e{letter-spacing:8.640000pt;}
.ls1{letter-spacing:9.120000pt;}
.ls2b{letter-spacing:9.760000pt;}
.ls34{letter-spacing:12.960000pt;}
.ls3{letter-spacing:15.520000pt;}
.ls32{letter-spacing:16.800000pt;}
.ws18{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws1{word-spacing:-25.472000pt;}
.ws0{word-spacing:-25.088000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-15.872000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.536000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.344000pt;}
.wse{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws1b{word-spacing:-13.185067pt;}
.ws1d{word-spacing:-13.096533pt;}
.ws17{word-spacing:-13.054933pt;}
.ws16{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.888000pt;}
.ws1f{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.456000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws12{word-spacing:-9.184000pt;}
.ws15{word-spacing:-8.643840pt;}
.ws1c{word-spacing:-8.640000pt;}
.ws19{word-spacing:-8.000000pt;}
.ws14{word-spacing:0.000000pt;}
._9{margin-left:-5.774080pt;}
._5{margin-left:-4.062720pt;}
._3{margin-left:-2.885120pt;}
._1{margin-left:-1.118720pt;}
._4{width:0.952747pt;}
._6{width:1.941760pt;}
._7{width:3.121920pt;}
._8{width:4.365227pt;}
._11{width:5.446400pt;}
._13{width:6.774613pt;}
._23{width:8.001280pt;}
._a{width:9.409920pt;}
._2{width:10.833920pt;}
._0{width:11.776000pt;}
._c{width:12.905387pt;}
._b{width:13.824000pt;}
._1f{width:14.957440pt;}
._f{width:15.888000pt;}
._d{width:16.944000pt;}
._24{width:18.015787pt;}
._28{width:19.145387pt;}
._e{width:20.064000pt;}
._21{width:21.141333pt;}
._19{width:22.078080pt;}
._1a{width:23.000960pt;}
._18{width:24.119893pt;}
._29{width:25.173547pt;}
._16{width:26.249600pt;}
._1b{width:27.639467pt;}
._10{width:29.098667pt;}
._26{width:30.119040pt;}
._27{width:31.121920pt;}
._2a{width:33.373013pt;}
._12{width:34.296960pt;}
._2b{width:35.965653pt;}
._17{width:36.865280pt;}
._1c{width:39.468160pt;}
._20{width:42.595627pt;}
._15{width:44.354347pt;}
._14{width:45.502720pt;}
._2f{width:47.616000pt;}
._2e{width:48.704000pt;}
._33{width:53.465387pt;}
._32{width:54.432000pt;}
._25{width:56.074667pt;}
._31{width:59.962667pt;}
._30{width:61.200000pt;}
._2d{width:62.368000pt;}
._2c{width:63.392000pt;}
._1e{width:68.099840pt;}
._1d{width:69.447040pt;}
._22{width:164.438400pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.yad{bottom:-24.320000pt;}
.y67{bottom:-4.480000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:1.760000pt;}
.ya5{bottom:2.600000pt;}
.ya8{bottom:2.720000pt;}
.y55{bottom:3.200000pt;}
.yd5{bottom:3.520000pt;}
.ya2{bottom:3.680000pt;}
.y12d{bottom:4.000000pt;}
.y9b{bottom:4.960000pt;}
.y65{bottom:5.280000pt;}
.y66{bottom:5.440000pt;}
.y5f{bottom:6.080000pt;}
.y63{bottom:11.040000pt;}
.y58{bottom:11.200000pt;}
.y5d{bottom:11.240000pt;}
.ya4{bottom:13.800000pt;}
.ya7{bottom:13.920000pt;}
.yab{bottom:15.040000pt;}
.ydb{bottom:16.640000pt;}
.ya1{bottom:16.960000pt;}
.y12c{bottom:17.280000pt;}
.y9a{bottom:18.400000pt;}
.y5a{bottom:19.200000pt;}
.y5c{bottom:19.240000pt;}
.y62{bottom:27.040000pt;}
.y57{bottom:27.200000pt;}
.yaa{bottom:28.320000pt;}
.yda{bottom:29.920000pt;}
.yd4{bottom:30.240000pt;}
.ya0{bottom:30.400000pt;}
.y12b{bottom:30.720000pt;}
.y99{bottom:31.680000pt;}
.y59{bottom:35.200000pt;}
.y61{bottom:43.040000pt;}
.yd9{bottom:43.200000pt;}
.yd3{bottom:43.520000pt;}
.y9f{bottom:43.680000pt;}
.y12a{bottom:44.000000pt;}
.y98{bottom:44.960000pt;}
.y4{bottom:51.872000pt;}
.yd8{bottom:56.640000pt;}
.y9e{bottom:56.960000pt;}
.y129{bottom:57.280000pt;}
.y3{bottom:69.792000pt;}
.y128{bottom:70.720000pt;}
.y97{bottom:71.840000pt;}
.yd7{bottom:83.200000pt;}
.y9d{bottom:83.680000pt;}
.y2{bottom:87.712000pt;}
.ya9{bottom:96.032000pt;}
.y127{bottom:97.440000pt;}
.y1{bottom:105.632000pt;}
.y125{bottom:127.872000pt;}
.y36{bottom:130.272000pt;}
.yd1{bottom:131.072000pt;}
.yff{bottom:131.552000pt;}
.yb7{bottom:131.872000pt;}
.ya6{bottom:135.066667pt;}
.y124{bottom:141.146667pt;}
.y35{bottom:146.266667pt;}
.yd0{bottom:147.066667pt;}
.yfe{bottom:147.546667pt;}
.yb6{bottom:147.866667pt;}
.y95{bottom:148.186667pt;}
.y51{bottom:150.266667pt;}
.y123{bottom:154.426667pt;}
.y60{bottom:160.666667pt;}
.y34{bottom:162.266667pt;}
.ycf{bottom:163.066667pt;}
.yfd{bottom:163.546667pt;}
.yb5{bottom:163.866667pt;}
.y94{bottom:164.186667pt;}
.y122{bottom:167.866667pt;}
.y53{bottom:177.320000pt;}
.y33{bottom:178.266667pt;}
.yce{bottom:179.066667pt;}
.yfc{bottom:179.546667pt;}
.yb4{bottom:179.866667pt;}
.y93{bottom:180.186667pt;}
.y121{bottom:181.146667pt;}
.y64{bottom:181.786667pt;}
.y52{bottom:193.320000pt;}
.y32{bottom:194.266667pt;}
.y120{bottom:194.426667pt;}
.ycd{bottom:195.066667pt;}
.yfb{bottom:195.546667pt;}
.yb3{bottom:195.866667pt;}
.y92{bottom:196.186667pt;}
.y5e{bottom:202.746667pt;}
.y11f{bottom:207.866667pt;}
.y31{bottom:210.266667pt;}
.ycc{bottom:211.066667pt;}
.yfa{bottom:211.546667pt;}
.yb2{bottom:211.866667pt;}
.y91{bottom:212.186667pt;}
.y11e{bottom:221.146667pt;}
.y5b{bottom:224.986667pt;}
.y30{bottom:226.266667pt;}
.ycb{bottom:227.066667pt;}
.yf9{bottom:227.546667pt;}
.yb1{bottom:227.866667pt;}
.y90{bottom:228.186667pt;}
.ya3{bottom:231.386667pt;}
.y11d{bottom:234.466667pt;}
.y2f{bottom:242.306667pt;}
.yca{bottom:243.106667pt;}
.yf8{bottom:243.586667pt;}
.y8f{bottom:244.226667pt;}
.y11c{bottom:247.906667pt;}
.yb0{bottom:251.906667pt;}
.y56{bottom:257.826667pt;}
.y2e{bottom:258.306667pt;}
.yc9{bottom:259.106667pt;}
.yf7{bottom:259.586667pt;}
.y8e{bottom:260.226667pt;}
.y11b{bottom:261.186667pt;}
.y2d{bottom:274.306667pt;}
.y11a{bottom:274.466667pt;}
.yc8{bottom:275.106667pt;}
.yf6{bottom:275.586667pt;}
.yaf{bottom:275.906667pt;}
.y8d{bottom:276.226667pt;}
.y119{bottom:287.906667pt;}
.y2c{bottom:290.306667pt;}
.yc7{bottom:291.106667pt;}
.yf5{bottom:291.586667pt;}
.yae{bottom:291.906667pt;}
.y8c{bottom:300.226667pt;}
.y118{bottom:301.186667pt;}
.y2b{bottom:306.306667pt;}
.y54{bottom:306.466667pt;}
.yf4{bottom:307.586667pt;}
.yd2{bottom:309.506667pt;}
.y117{bottom:314.466667pt;}
.yc6{bottom:315.106667pt;}
.y2a{bottom:322.306667pt;}
.yf3{bottom:323.586667pt;}
.y9c{bottom:326.146667pt;}
.y116{bottom:327.906667pt;}
.y29{bottom:338.306667pt;}
.yc5{bottom:339.106667pt;}
.yf2{bottom:339.586667pt;}
.y115{bottom:341.186667pt;}
.y28{bottom:354.306667pt;}
.y114{bottom:354.466667pt;}
.yc4{bottom:355.106667pt;}
.yf1{bottom:355.586667pt;}
.y113{bottom:367.906667pt;}
.y27{bottom:370.306667pt;}
.y8b{bottom:371.106667pt;}
.yf0{bottom:371.586667pt;}
.y112{bottom:381.186667pt;}
.y26{bottom:386.306667pt;}
.y8a{bottom:387.106667pt;}
.yef{bottom:387.586667pt;}
.y111{bottom:394.466667pt;}
.y50{bottom:397.026667pt;}
.y25{bottom:402.306667pt;}
.y89{bottom:403.106667pt;}
.yee{bottom:403.586667pt;}
.y110{bottom:407.906667pt;}
.y4f{bottom:413.026667pt;}
.y24{bottom:418.306667pt;}
.y88{bottom:419.106667pt;}
.yed{bottom:419.586667pt;}
.y10f{bottom:421.186667pt;}
.y4e{bottom:429.026667pt;}
.y23{bottom:434.306667pt;}
.y10e{bottom:434.466667pt;}
.y87{bottom:435.106667pt;}
.yec{bottom:435.586667pt;}
.y4d{bottom:445.026667pt;}
.y10d{bottom:447.906667pt;}
.y22{bottom:450.306667pt;}
.y86{bottom:451.106667pt;}
.yeb{bottom:451.586667pt;}
.y4c{bottom:461.026667pt;}
.y10c{bottom:461.186667pt;}
.y21{bottom:466.306667pt;}
.y85{bottom:467.106667pt;}
.yea{bottom:467.586667pt;}
.y4b{bottom:477.053333pt;}
.y20{bottom:482.333333pt;}
.y84{bottom:483.133333pt;}
.ye9{bottom:483.613333pt;}
.y4a{bottom:493.053333pt;}
.y1f{bottom:498.333333pt;}
.y83{bottom:499.133333pt;}
.ye8{bottom:499.613333pt;}
.y49{bottom:509.053333pt;}
.y1e{bottom:514.333333pt;}
.y82{bottom:515.133333pt;}
.ye7{bottom:515.613333pt;}
.y10b{bottom:523.133333pt;}
.y48{bottom:525.053333pt;}
.y1d{bottom:530.333333pt;}
.y81{bottom:531.133333pt;}
.ye6{bottom:531.613333pt;}
.y10a{bottom:539.133333pt;}
.y47{bottom:541.053333pt;}
.y1c{bottom:546.333333pt;}
.y80{bottom:547.133333pt;}
.ye5{bottom:547.613333pt;}
.y109{bottom:555.133333pt;}
.y46{bottom:557.053333pt;}
.y1b{bottom:562.333333pt;}
.y7f{bottom:563.133333pt;}
.ye4{bottom:563.613333pt;}
.y108{bottom:571.133333pt;}
.y45{bottom:573.053333pt;}
.y7e{bottom:579.133333pt;}
.ye3{bottom:579.613333pt;}
.yd6{bottom:579.933333pt;}
.y1a{bottom:586.333333pt;}
.y107{bottom:587.133333pt;}
.y44{bottom:589.053333pt;}
.y7d{bottom:595.133333pt;}
.ye2{bottom:595.613333pt;}
.y106{bottom:603.133333pt;}
.y43{bottom:605.053333pt;}
.yc3{bottom:611.133333pt;}
.ye1{bottom:611.613333pt;}
.y7c{bottom:619.133333pt;}
.y42{bottom:621.053333pt;}
.y19{bottom:625.693333pt;}
.yc2{bottom:627.133333pt;}
.ye0{bottom:627.613333pt;}
.y105{bottom:635.133333pt;}
.y41{bottom:637.053333pt;}
.y18{bottom:639.133333pt;}
.y7b{bottom:643.133333pt;}
.ydf{bottom:643.613333pt;}
.y104{bottom:651.133333pt;}
.y17{bottom:652.413333pt;}
.y40{bottom:653.053333pt;}
.y7a{bottom:659.133333pt;}
.yde{bottom:659.613333pt;}
.y16{bottom:665.693333pt;}
.y3f{bottom:669.053333pt;}
.y79{bottom:675.133333pt;}
.ydd{bottom:675.613333pt;}
.y15{bottom:679.133333pt;}
.y3e{bottom:685.053333pt;}
.y78{bottom:691.133333pt;}
.ydc{bottom:691.613333pt;}
.y14{bottom:692.413333pt;}
.y3d{bottom:701.053333pt;}
.y13{bottom:705.693333pt;}
.y142{bottom:706.493333pt;}
.y77{bottom:707.173333pt;}
.y126{bottom:709.413333pt;}
.y103{bottom:715.173333pt;}
.y3c{bottom:717.093333pt;}
.y12{bottom:719.173333pt;}
.y141{bottom:719.973333pt;}
.y76{bottom:723.173333pt;}
.yc1{bottom:731.173333pt;}
.y11{bottom:732.453333pt;}
.y3b{bottom:733.093333pt;}
.y140{bottom:733.253333pt;}
.y96{bottom:736.133333pt;}
.y75{bottom:739.173333pt;}
.y10{bottom:745.733333pt;}
.y13f{bottom:746.533333pt;}
.y102{bottom:747.173333pt;}
.y3a{bottom:749.093333pt;}
.y74{bottom:755.173333pt;}
.yf{bottom:759.173333pt;}
.y13e{bottom:759.973333pt;}
.y101{bottom:763.173333pt;}
.y39{bottom:765.093333pt;}
.y73{bottom:771.173333pt;}
.ye{bottom:772.453333pt;}
.y13d{bottom:773.253333pt;}
.y100{bottom:779.173333pt;}
.y38{bottom:781.093333pt;}
.yd{bottom:785.733333pt;}
.y13c{bottom:786.533333pt;}
.y72{bottom:787.173333pt;}
.yc0{bottom:795.173333pt;}
.y37{bottom:797.093333pt;}
.yc{bottom:799.173333pt;}
.y13b{bottom:799.973333pt;}
.y71{bottom:803.173333pt;}
.ybf{bottom:811.173333pt;}
.yb{bottom:812.453333pt;}
.y13a{bottom:813.253333pt;}
.y70{bottom:819.173333pt;}
.y139{bottom:826.533333pt;}
.ybe{bottom:827.173333pt;}
.ya{bottom:834.693333pt;}
.y6f{bottom:835.173333pt;}
.y138{bottom:839.973333pt;}
.ybd{bottom:843.173333pt;}
.y6e{bottom:851.173333pt;}
.y137{bottom:853.253333pt;}
.y9{bottom:859.173333pt;}
.y136{bottom:866.533333pt;}
.y6d{bottom:867.173333pt;}
.ybc{bottom:875.173333pt;}
.y8{bottom:879.493333pt;}
.y135{bottom:879.973333pt;}
.y6c{bottom:891.173333pt;}
.y134{bottom:893.253333pt;}
.y7{bottom:897.893333pt;}
.y133{bottom:906.533333pt;}
.ybb{bottom:907.173333pt;}
.y6b{bottom:915.173333pt;}
.y132{bottom:919.973333pt;}
.yba{bottom:923.173333pt;}
.y6{bottom:926.053333pt;}
.y6a{bottom:931.173333pt;}
.y131{bottom:933.253333pt;}
.yb9{bottom:939.173333pt;}
.y130{bottom:946.560000pt;}
.y69{bottom:947.200000pt;}
.y5{bottom:953.600000pt;}
.yb8{bottom:955.200000pt;}
.y12f{bottom:960.000000pt;}
.y68{bottom:971.200000pt;}
.y12e{bottom:973.280000pt;}
.hc{height:16.000000pt;}
.h14{height:20.320000pt;}
.h12{height:21.600000pt;}
.h5{height:29.940625pt;}
.h11{height:32.032000pt;}
.h17{height:33.515625pt;}
.h6{height:33.867188pt;}
.hd{height:34.168750pt;}
.h7{height:34.781250pt;}
.hf{height:35.085938pt;}
.h9{height:37.090625pt;}
.h8{height:38.672812pt;}
.ha{height:38.828437pt;}
.h10{height:39.390625pt;}
.h15{height:42.691250pt;}
.h3{height:44.687500pt;}
.he{height:48.000000pt;}
.h4{height:54.260625pt;}
.h1{height:58.563750pt;}
.h13{height:63.680000pt;}
.h2{height:67.031250pt;}
.h1a{height:92.480000pt;}
.h19{height:92.512000pt;}
.hb{height:206.106667pt;}
.h1b{height:231.706667pt;}
.h16{height:247.866667pt;}
.h1c{height:261.786667pt;}
.h1e{height:274.106667pt;}
.h1d{height:403.586667pt;}
.h18{height:403.746667pt;}
.h0{height:1056.000000pt;}
.w3{width:100.192000pt;}
.w4{width:102.272000pt;}
.w5{width:120.640000pt;}
.w9{width:167.560000pt;}
.w8{width:167.706667pt;}
.w7{width:334.786667pt;}
.w6{width:335.106667pt;}
.wa{width:335.266667pt;}
.w2{width:335.426667pt;}
.wb{width:335.586667pt;}
.wc{width:335.746667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:2.080000pt;}
.xe{left:5.600000pt;}
.x19{left:8.000000pt;}
.x1b{left:10.746667pt;}
.x16{left:13.120000pt;}
.x12{left:15.200000pt;}
.x1a{left:16.480000pt;}
.x10{left:17.440000pt;}
.x13{left:20.666667pt;}
.x15{left:24.000000pt;}
.x18{left:26.106667pt;}
.x17{left:30.106667pt;}
.x14{left:32.320000pt;}
.x1{left:60.479988pt;}
.x6{left:61.439988pt;}
.xc{left:67.066667pt;}
.x2{left:73.279988pt;}
.x20{left:77.146667pt;}
.x27{left:84.511988pt;}
.x3{left:103.711988pt;}
.x1f{left:129.146667pt;}
.x5{left:142.906655pt;}
.x1d{left:156.186655pt;}
.x8{left:177.466655pt;}
.x21{left:228.186667pt;}
.x1e{left:328.546667pt;}
.x7{left:360.386655pt;}
.x4{left:408.066655pt;}
.x9{left:420.066655pt;}
.xb{left:425.026667pt;}
.xd{left:430.466667pt;}
.xa{left:432.546655pt;}
.x26{left:444.093321pt;}
.x22{left:498.813321pt;}
.x24{left:530.333321pt;}
.xf{left:531.293333pt;}
.x23{left:536.733321pt;}
.x25{left:553.373321pt;}
.x11{left:634.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; }
  