
    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_397394db1849fa34fc521a13.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_4f46ad69231c61d69ee2b58c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_0d9695b58dfb60a017af5e64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_7e3cd2f2f2ed1632570311b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_161e0844f14d4d3398e33962.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_629885ce40bf326f72a4068e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_c9279b5a94e30da7d5cb5604.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_1c9d145031a9619df56644ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_90f3f43ef04a583fd2cf2767.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873535;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_c7ef927d59ce7172f93abf02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913574;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_ddc26b8b3ff70ea63654dea4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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_e3fd54f5dfb161f6cac738cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_b72f49c38f328fb32a2a93e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_82b660ce94518386f17e1901.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.231552px;}
.ls2{letter-spacing:-0.173664px;}
.ls6{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.028800px;}
.ls1f{letter-spacing:-0.021600px;}
.ls7{letter-spacing:-0.014400px;}
.lsc{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.004320px;}
.ls25{letter-spacing:0.005040px;}
.ls15{letter-spacing:0.005328px;}
.ls2e{letter-spacing:0.005472px;}
.ls2d{letter-spacing:0.005760px;}
.ls3{letter-spacing:0.007200px;}
.ls22{letter-spacing:0.010080px;}
.ls24{letter-spacing:0.010944px;}
.ls19{letter-spacing:0.011088px;}
.ls23{letter-spacing:0.011520px;}
.lsd{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.021600px;}
.ls29{letter-spacing:0.024768px;}
.ls2a{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.028224px;}
.ls5{letter-spacing:0.028800px;}
.ls16{letter-spacing:0.030096px;}
.ls1b{letter-spacing:0.030240px;}
.ls3e{letter-spacing:0.031680px;}
.ls12{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.043200px;}
.ls2f{letter-spacing:0.050400px;}
.ls39{letter-spacing:0.057600px;}
.ls40{letter-spacing:0.064800px;}
.ls33{letter-spacing:0.084960px;}
.ls28{letter-spacing:0.086400px;}
.ls31{letter-spacing:0.195840px;}
.ls34{letter-spacing:0.333648px;}
.ls3c{letter-spacing:0.387360px;}
.ls37{letter-spacing:0.432576px;}
.ls30{letter-spacing:0.460800px;}
.ls2b{letter-spacing:0.463680px;}
.ls38{letter-spacing:0.483840px;}
.ls36{letter-spacing:0.624960px;}
.ls32{letter-spacing:0.672480px;}
.ls3f{letter-spacing:0.702720px;}
.ls42{letter-spacing:1.573920px;}
.ls3b{letter-spacing:1.998720px;}
.ls26{letter-spacing:3.038400px;}
.ls3a{letter-spacing:3.040560px;}
.ls41{letter-spacing:6.333120px;}
.ls18{letter-spacing:6.577920px;}
.lsa{letter-spacing:8.269920px;}
.ls3d{letter-spacing:8.445600px;}
.ls43{letter-spacing:10.458720px;}
.ls17{letter-spacing:11.296800px;}
.ls35{letter-spacing:12.680640px;}
.ls27{letter-spacing:14.679360px;}
.lsb{letter-spacing:19.342800px;}
.ls2c{letter-spacing:20.057760px;}
.ls14{letter-spacing:28.660752px;}
.ls1e{letter-spacing:28.815984px;}
.ls20{letter-spacing:28.990080px;}
.lse{letter-spacing:29.715408px;}
.ls10{letter-spacing:31.980096px;}
.ls1c{letter-spacing:47.665584px;}
.ls1a{letter-spacing:62.340336px;}
.lsf{letter-spacing:79.446816px;}
.ls21{letter-spacing:174.691008px;}
.ls11{letter-spacing:178.909776px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-16.329600px;}
.wsb{word-spacing:-16.315200px;}
.ws7{word-spacing:-16.308000px;}
.ws1{word-spacing:-16.300800px;}
.ws3{word-spacing:-16.293600px;}
.ws6{word-spacing:-16.286400px;}
.ws9{word-spacing:-16.279200px;}
.ws2{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.264800px;}
.ws5{word-spacing:-16.257600px;}
.wsc{word-spacing:-16.250400px;}
.ws4{word-spacing:-16.243200px;}
.wsd{word-spacing:-16.236000px;}
.wsa{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-17.414352px;}
._0{margin-left:-1.061280px;}
._6{width:1.000800px;}
._13{width:2.188800px;}
._4{width:3.248208px;}
._c{width:4.249008px;}
._b{width:5.256000px;}
._17{width:6.304320px;}
._1{width:7.606080px;}
._a{width:9.152640px;}
._18{width:10.489392px;}
._3{width:12.133152px;}
._2{width:13.198752px;}
._7{width:14.853600px;}
._5{width:17.474400px;}
._e{width:18.475200px;}
._d{width:19.627200px;}
._14{width:21.412800px;}
._f{width:23.301792px;}
._10{width:24.343632px;}
._15{width:25.524000px;}
._12{width:27.057600px;}
._22{width:28.090656px;}
._11{width:29.177856px;}
._21{width:30.294144px;}
._1e{width:31.320000px;}
._1c{width:33.076800px;}
._25{width:34.221600px;}
._8{width:35.604000px;}
._27{width:36.835200px;}
._29{width:37.850544px;}
._1f{width:38.899152px;}
._1d{width:40.132800px;}
._23{width:41.527440px;}
._1a{width:42.573600px;}
._1b{width:44.179200px;}
._30{width:45.292320px;}
._9{width:46.418400px;}
._19{width:48.117600px;}
._20{width:49.564800px;}
._24{width:51.114384px;}
._26{width:52.934400px;}
._28{width:54.892800px;}
._2d{width:59.198400px;}
._2a{width:77.895936px;}
._2f{width:119.001600px;}
._31{width:120.938400px;}
._32{width:122.551200px;}
._2c{width:168.522048px;}
._2b{width:169.596720px;}
._33{width:196.711200px;}
._2e{width:253.404000px;}
._34{width:964.296000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:70.588238px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y138{bottom:5.160000px;}
.y4{bottom:5.220000px;}
.y16d{bottom:16.020000px;}
.y14a{bottom:16.140000px;}
.y15d{bottom:16.260000px;}
.y165{bottom:16.440000px;}
.y16f{bottom:16.920000px;}
.y161{bottom:17.040000px;}
.y169{bottom:24.600000px;}
.y155{bottom:25.740000px;}
.y16b{bottom:32.340000px;}
.y14e{bottom:34.920000px;}
.y13c{bottom:46.740000px;}
.y149{bottom:48.900000px;}
.y15c{bottom:49.380000px;}
.y164{bottom:49.560000px;}
.y16e{bottom:50.040000px;}
.y160{bottom:50.160000px;}
.y3{bottom:52.500000px;}
.y144{bottom:52.860000px;}
.y2{bottom:57.720000px;}
.y137{bottom:58.020000px;}
.y151{bottom:61.740000px;}
.y14d{bottom:68.040000px;}
.y148{bottom:82.020000px;}
.y15b{bottom:82.140000px;}
.y15f{bottom:82.920000px;}
.y143{bottom:85.980000px;}
.y142{bottom:86.244708px;}
.y146{bottom:87.780000px;}
.y150{bottom:94.860000px;}
.y14c{bottom:100.800000px;}
.y156{bottom:109.500000px;}
.ye5{bottom:111.720000px;}
.y15a{bottom:115.260000px;}
.y141{bottom:119.460000px;}
.y145{bottom:120.540000px;}
.y32{bottom:123.240000px;}
.yc6{bottom:123.600000px;}
.y196{bottom:126.480000px;}
.y12e{bottom:127.560000px;}
.y80{bottom:129.360000px;}
.ydc{bottom:129.720000px;}
.y14f{bottom:132.000000px;}
.yf3{bottom:132.600000px;}
.y111{bottom:133.320000px;}
.y167{bottom:133.560000px;}
.ye4{bottom:135.480000px;}
.y9e{bottom:138.720000px;}
.y41{bottom:143.400000px;}
.y5c{bottom:144.480000px;}
.ybd{bottom:147.360000px;}
.yaf{bottom:149.520000px;}
.y140{bottom:152.940000px;}
.y13f{bottom:153.204708px;}
.y13e{bottom:153.660000px;}
.y83{bottom:154.560000px;}
.y8a{bottom:155.280000px;}
.y1c{bottom:156.360000px;}
.y17f{bottom:159.600000px;}
.y12d{bottom:160.680000px;}
.y74{bottom:162.480000px;}
.yf2{bottom:165.720000px;}
.y31{bottom:167.160000px;}
.y110{bottom:167.880000px;}
.yc2{bottom:168.600000px;}
.y192{bottom:171.480000px;}
.y9d{bottom:171.840000px;}
.y16c{bottom:177.000000px;}
.y5b{bottom:177.600000px;}
.y182{bottom:180.480000px;}
.yae{bottom:182.280000px;}
.yec{bottom:186.600000px;}
.y166{bottom:187.560000px;}
.y82{bottom:187.680000px;}
.y89{bottom:188.040000px;}
.yc5{bottom:189.480000px;}
.y17e{bottom:192.360000px;}
.y7f{bottom:195.240000px;}
.y73{bottom:195.600000px;}
.y40{bottom:197.400000px;}
.y130{bottom:198.480000px;}
.y1b{bottom:200.280000px;}
.ybc{bottom:201.360000px;}
.y191{bottom:204.240000px;}
.y9c{bottom:204.600000px;}
.y16a{bottom:210.000000px;}
.ye1{bottom:210.360000px;}
.y30{bottom:211.080000px;}
.y181{bottom:213.240000px;}
.y12c{bottom:214.680000px;}
.yad{bottom:215.400000px;}
.yeb{bottom:219.360000px;}
.y88{bottom:221.160000px;}
.y132{bottom:222.600000px;}
.y72{bottom:228.720000px;}
.y10a{bottom:230.520000px;}
.y5a{bottom:231.600000px;}
.y10f{bottom:234.480000px;}
.y190{bottom:237.360000px;}
.y9b{bottom:237.720000px;}
.y162{bottom:241.560000px;}
.yc4{bottom:243.480000px;}
.y1a{bottom:244.200000px;}
.y14b{bottom:244.500000px;}
.y17d{bottom:246.360000px;}
.yac{bottom:248.160000px;}
.y7e{bottom:249.240000px;}
.y3f{bottom:251.040000px;}
.yea{bottom:252.480000px;}
.y2f{bottom:255.000000px;}
.ybb{bottom:255.360000px;}
.y168{bottom:259.500000px;}
.y71{bottom:261.480000px;}
.y109{bottom:263.280000px;}
.y59{bottom:264.360000px;}
.y10e{bottom:267.240000px;}
.y12b{bottom:268.320000px;}
.y9a{bottom:270.480000px;}
.y170{bottom:273.360000px;}
.ye0{bottom:276.240000px;}
.y17c{bottom:279.480000px;}
.y7d{bottom:282.360000px;}
.ye9{bottom:285.600000px;}
.y19{bottom:288.120000px;}
.yba{bottom:288.480000px;}
.y18f{bottom:291.360000px;}
.y70{bottom:294.600000px;}
.y108{bottom:296.400000px;}
.y58{bottom:297.480000px;}
.y2e{bottom:298.920000px;}
.y180{bottom:300.360000px;}
.y12a{bottom:301.440000px;}
.y163{bottom:301.500000px;}
.yab{bottom:302.160000px;}
.y3e{bottom:305.040000px;}
.ydf{bottom:309.360000px;}
.y195{bottom:312.240000px;}
.ye8{bottom:318.360000px;}
.yb9{bottom:321.240000px;}
.y18e{bottom:324.120000px;}
.y99{bottom:324.480000px;}
.y6f{bottom:327.360000px;}
.y107{bottom:329.520000px;}
.y57{bottom:330.240000px;}
.y18{bottom:332.040000px;}
.y17b{bottom:333.120000px;}
.y129{bottom:334.560000px;}
.yaa{bottom:335.280000px;}
.y7c{bottom:336.360000px;}
.yde{bottom:342.480000px;}
.y2d{bottom:343.200000px;}
.ydb{bottom:348.600000px;}
.ye7{bottom:351.480000px;}
.ye3{bottom:354.360000px;}
.y98{bottom:357.600000px;}
.y3d{bottom:359.040000px;}
.y6e{bottom:360.480000px;}
.y147{bottom:363.000000px;}
.y56{bottom:363.360000px;}
.y17a{bottom:366.240000px;}
.y128{bottom:367.320000px;}
.y15e{bottom:367.500000px;}
.ya9{bottom:368.040000px;}
.yb8{bottom:375.240000px;}
.y17{bottom:375.960000px;}
.y18d{bottom:378.120000px;}
.yda{bottom:381.360000px;}
.y106{bottom:383.160000px;}
.yf1{bottom:384.240000px;}
.y2c{bottom:387.120000px;}
.y7b{bottom:390.000000px;}
.y6d{bottom:393.240000px;}
.ydd{bottom:396.120000px;}
.y194{bottom:399.360000px;}
.y127{bottom:400.440000px;}
.ye6{bottom:405.480000px;}
.yb7{bottom:408.360000px;}
.y18c{bottom:411.240000px;}
.y97{bottom:411.600000px;}
.y3c{bottom:413.040000px;}
.yd9{bottom:414.480000px;}
.y105{bottom:416.280000px;}
.y55{bottom:417.360000px;}
.y16{bottom:419.880000px;}
.ye2{bottom:420.240000px;}
.ya8{bottom:422.040000px;}
.y6c{bottom:426.360000px;}
.y10d{bottom:429.240000px;}
.y2b{bottom:431.040000px;}
.y193{bottom:432.120000px;}
.y126{bottom:433.200000px;}
.y12f{bottom:438.240000px;}
.y158{bottom:440.640000px;}
.yb6{bottom:441.120000px;}
.y7a{bottom:444.000000px;}
.y96{bottom:444.720000px;}
.yd8{bottom:447.240000px;}
.y104{bottom:449.400000px;}
.y54{bottom:450.120000px;}
.y179{bottom:453.000000px;}
.ya7{bottom:455.160000px;}
.y6b{bottom:459.120000px;}
.y13d{bottom:462.000000px;}
.y10c{bottom:462.360000px;}
.y15{bottom:463.800000px;}
.y18b{bottom:465.240000px;}
.y125{bottom:466.320000px;}
.y3b{bottom:467.040000px;}
.y159{bottom:468.000000px;}
.yf0{bottom:471.360000px;}
.y157{bottom:473.760000px;}
.yc1{bottom:474.240000px;}
.y2a{bottom:474.960000px;}
.y95{bottom:478.560000px;}
.yd7{bottom:480.360000px;}
.y103{bottom:482.160000px;}
.y53{bottom:483.240000px;}
.y178{bottom:486.120000px;}
.ya6{bottom:487.920000px;}
.y6a{bottom:492.240000px;}
.yb5{bottom:495.120000px;}
.y79{bottom:498.000000px;}
.y124{bottom:499.080000px;}
.yef{bottom:504.120000px;}
.yc0{bottom:507.000000px;}
.y14{bottom:507.720000px;}
.y94{bottom:511.680000px;}
.yd6{bottom:513.120000px;}
.y102{bottom:515.280000px;}
.y52{bottom:516.000000px;}
.y29{bottom:518.880000px;}
.y177{bottom:519.240000px;}
.y3a{bottom:521.040000px;}
.y69{bottom:525.360000px;}
.yb4{bottom:528.240000px;}
.y18a{bottom:531.120000px;}
.y123{bottom:532.200000px;}
.yee{bottom:537.240000px;}
.ybf{bottom:540.120000px;}
.y93{bottom:545.160000px;}
.yd5{bottom:546.240000px;}
.y101{bottom:548.040000px;}
.y51{bottom:549.120000px;}
.y13{bottom:551.640000px;}
.y78{bottom:552.000000px;}
.ya5{bottom:553.800000px;}
.y68{bottom:558.120000px;}
.yb3{bottom:561.000000px;}
.y28{bottom:562.800000px;}
.y189{bottom:563.880000px;}
.y122{bottom:564.960000px;}
.yed{bottom:570.000000px;}
.ybe{bottom:572.880000px;}
.y39{bottom:575.040000px;}
.y92{bottom:578.640000px;}
.yd4{bottom:579.000000px;}
.y100{bottom:581.160000px;}
.y81{bottom:582.240000px;}
.y67{bottom:591.240000px;}
.yb2{bottom:594.120000px;}
.y12{bottom:595.560000px;}
.y121{bottom:598.080000px;}
.y154{bottom:600.000000px;}
.y50{bottom:603.120000px;}
.y77{bottom:606.000000px;}
.y27{bottom:606.720000px;}
.ya4{bottom:607.800000px;}
.yd3{bottom:612.120000px;}
.y91{bottom:612.480000px;}
.yff{bottom:613.920000px;}
.yc3{bottom:615.000000px;}
.y188{bottom:617.880000px;}
.y66{bottom:624.000000px;}
.yb1{bottom:626.880000px;}
.y38{bottom:629.040000px;}
.y120{bottom:631.200000px;}
.y13b{bottom:633.000000px;}
.y4f{bottom:635.880000px;}
.y176{bottom:638.760000px;}
.y11{bottom:639.840000px;}
.ya3{bottom:640.920000px;}
.yd2{bottom:645.240000px;}
.y90{bottom:645.960000px;}
.yfe{bottom:647.040000px;}
.y87{bottom:648.120000px;}
.y26{bottom:650.640000px;}
.y187{bottom:651.000000px;}
.y65{bottom:657.120000px;}
.y76{bottom:660.000000px;}
.y11f{bottom:663.960000px;}
.y4e{bottom:669.000000px;}
.y175{bottom:671.880000px;}
.yd1{bottom:678.000000px;}
.y8f{bottom:679.080000px;}
.yfd{bottom:679.800000px;}
.y86{bottom:680.880000px;}
.y153{bottom:681.900000px;}
.y37{bottom:683.040000px;}
.y10{bottom:683.760000px;}
.y64{bottom:689.880000px;}
.yb0{bottom:692.760000px;}
.y25{bottom:694.560000px;}
.y11e{bottom:697.080000px;}
.y4d{bottom:701.760000px;}
.y186{bottom:705.000000px;}
.yd0{bottom:711.120000px;}
.y8e{bottom:713.280000px;}
.y75{bottom:714.000000px;}
.y152{bottom:715.020000px;}
.y63{bottom:723.000000px;}
.y174{bottom:725.880000px;}
.yf{bottom:727.680000px;}
.y11d{bottom:729.840000px;}
.yfc{bottom:733.800000px;}
.y4c{bottom:734.880000px;}
.y13a{bottom:735.900000px;}
.y36{bottom:736.680000px;}
.y24{bottom:738.480000px;}
.ycf{bottom:743.880000px;}
.y85{bottom:746.760000px;}
.y62{bottom:755.760000px;}
.y173{bottom:758.640000px;}
.y11c{bottom:762.960000px;}
.yfb{bottom:766.920000px;}
.y4b{bottom:768.000000px;}
.y139{bottom:769.020000px;}
.ye{bottom:771.600000px;}
.yce{bottom:777.000000px;}
.y84{bottom:779.880000px;}
.y23{bottom:782.400000px;}
.ya2{bottom:782.760000px;}
.y61{bottom:788.880000px;}
.y35{bottom:790.680000px;}
.y185{bottom:791.760000px;}
.yfa{bottom:799.680000px;}
.y4a{bottom:800.760000px;}
.ycd{bottom:809.760000px;}
.y10b{bottom:812.640000px;}
.yd{bottom:815.520000px;}
.y11b{bottom:816.960000px;}
.y60{bottom:821.640000px;}
.y136{bottom:821.940000px;}
.y184{bottom:824.880000px;}
.y22{bottom:826.320000px;}
.yf9{bottom:832.800000px;}
.y49{bottom:833.880000px;}
.ya1{bottom:836.760000px;}
.y197{bottom:840.360000px;}
.ycc{bottom:842.880000px;}
.y34{bottom:844.680000px;}
.y172{bottom:845.760000px;}
.y11a{bottom:849.720000px;}
.y5f{bottom:854.760000px;}
.yc{bottom:861.960000px;}
.y48{bottom:866.640000px;}
.y21{bottom:870.240000px;}
.ycb{bottom:875.640000px;}
.y171{bottom:878.520000px;}
.y119{bottom:882.840000px;}
.yf8{bottom:886.800000px;}
.y5e{bottom:887.880000px;}
.ya0{bottom:890.760000px;}
.y33{bottom:898.680000px;}
.y47{bottom:899.760000px;}
.yca{bottom:908.760000px;}
.yb{bottom:911.280000px;}
.y183{bottom:911.640000px;}
.y20{bottom:914.160000px;}
.y118{bottom:915.600000px;}
.y5d{bottom:920.640000px;}
.y8d{bottom:932.520000px;}
.yf7{bottom:940.800000px;}
.yc9{bottom:941.520000px;}
.y9f{bottom:944.760000px;}
.y46{bottom:953.760000px;}
.ya{bottom:958.440000px;}
.y8c{bottom:965.640000px;}
.y117{bottom:969.600000px;}
.yf6{bottom:973.560000px;}
.yc8{bottom:974.640000px;}
.y45{bottom:986.520000px;}
.y8b{bottom:998.400000px;}
.y9{bottom:1002.360000px;}
.y116{bottom:1003.800000px;}
.yf5{bottom:1006.680000px;}
.yc7{bottom:1007.760000px;}
.y44{bottom:1019.640000px;}
.y131{bottom:1031.520000px;}
.y115{bottom:1038.000000px;}
.y135{bottom:1039.440000px;}
.yf4{bottom:1039.800000px;}
.y8{bottom:1040.520000px;}
.y1f{bottom:1046.280000px;}
.y43{bottom:1052.400000px;}
.y114{bottom:1071.480000px;}
.y134{bottom:1072.560000px;}
.y7{bottom:1073.640000px;}
.y42{bottom:1085.520000px;}
.y1e{bottom:1090.200000px;}
.y113{bottom:1104.600000px;}
.y133{bottom:1105.320000px;}
.y6{bottom:1106.400000px;}
.y1d{bottom:1134.120000px;}
.y112{bottom:1138.800000px;}
.y5{bottom:1139.520000px;}
.y1{bottom:1192.800000px;}
.h2{height:22.500000px;}
.h15{height:34.500000px;}
.h13{height:42.000000px;}
.he{height:43.500000px;}
.h14{height:49.500000px;}
.h5{height:49.886719px;}
.h7{height:50.062500px;}
.h16{height:51.679688px;}
.h1{height:59.378906px;}
.ha{height:63.522521px;}
.h8{height:64.500000px;}
.h12{height:67.500000px;}
.h17{height:69.250781px;}
.h3{height:79.567734px;}
.h4{height:89.068359px;}
.hb{height:100.500000px;}
.hd{height:112.500000px;}
.hc{height:118.500000px;}
.h10{height:133.500000px;}
.h9{height:171.000000px;}
.h11{height:259.500000px;}
.hf{height:492.000000px;}
.h6{height:892.500000px;}
.h0{height:1263.000000px;}
.w1{width:10.500000px;}
.w2{width:19.500000px;}
.w9{width:117.000000px;}
.wb{width:130.500000px;}
.wc{width:180.000000px;}
.w6{width:216.000000px;}
.wa{width:309.000000px;}
.w8{width:352.500000px;}
.w4{width:382.500000px;}
.w5{width:394.500000px;}
.w7{width:424.500000px;}
.w0{width:892.500000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:7.920036px;}
.x10{left:8.939928px;}
.x13{left:19.323000px;}
.xf{left:118.500000px;}
.x1{left:127.439928px;}
.x8{left:154.439928px;}
.x4{left:156.201048px;}
.x5{left:171.390024px;}
.x9{left:181.439928px;}
.x7{left:192.620736px;}
.xa{left:208.439928px;}
.x15{left:234.000000px;}
.xb{left:235.439928px;}
.x6{left:318.597264px;}
.x17{left:363.000000px;}
.xc{left:436.500000px;}
.x2{left:441.000000px;}
.x3{left:446.114880px;}
.x11{left:499.500000px;}
.x14{left:541.500000px;}
.xe{left:622.500000px;}
.xd{left:736.200000px;}
.x12{left:892.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.205824pt;}
.ls2{letter-spacing:-0.154368pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.025600pt;}
.ls1f{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.003840pt;}
.ls25{letter-spacing:0.004480pt;}
.ls15{letter-spacing:0.004736pt;}
.ls2e{letter-spacing:0.004864pt;}
.ls2d{letter-spacing:0.005120pt;}
.ls3{letter-spacing:0.006400pt;}
.ls22{letter-spacing:0.008960pt;}
.ls24{letter-spacing:0.009728pt;}
.ls19{letter-spacing:0.009856pt;}
.ls23{letter-spacing:0.010240pt;}
.lsd{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.019200pt;}
.ls29{letter-spacing:0.022016pt;}
.ls2a{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.025088pt;}
.ls5{letter-spacing:0.025600pt;}
.ls16{letter-spacing:0.026752pt;}
.ls1b{letter-spacing:0.026880pt;}
.ls3e{letter-spacing:0.028160pt;}
.ls12{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.038400pt;}
.ls2f{letter-spacing:0.044800pt;}
.ls39{letter-spacing:0.051200pt;}
.ls40{letter-spacing:0.057600pt;}
.ls33{letter-spacing:0.075520pt;}
.ls28{letter-spacing:0.076800pt;}
.ls31{letter-spacing:0.174080pt;}
.ls34{letter-spacing:0.296576pt;}
.ls3c{letter-spacing:0.344320pt;}
.ls37{letter-spacing:0.384512pt;}
.ls30{letter-spacing:0.409600pt;}
.ls2b{letter-spacing:0.412160pt;}
.ls38{letter-spacing:0.430080pt;}
.ls36{letter-spacing:0.555520pt;}
.ls32{letter-spacing:0.597760pt;}
.ls3f{letter-spacing:0.624640pt;}
.ls42{letter-spacing:1.399040pt;}
.ls3b{letter-spacing:1.776640pt;}
.ls26{letter-spacing:2.700800pt;}
.ls3a{letter-spacing:2.702720pt;}
.ls41{letter-spacing:5.629440pt;}
.ls18{letter-spacing:5.847040pt;}
.lsa{letter-spacing:7.351040pt;}
.ls3d{letter-spacing:7.507200pt;}
.ls43{letter-spacing:9.296640pt;}
.ls17{letter-spacing:10.041600pt;}
.ls35{letter-spacing:11.271680pt;}
.ls27{letter-spacing:13.048320pt;}
.lsb{letter-spacing:17.193600pt;}
.ls2c{letter-spacing:17.829120pt;}
.ls14{letter-spacing:25.476224pt;}
.ls1e{letter-spacing:25.614208pt;}
.ls20{letter-spacing:25.768960pt;}
.lse{letter-spacing:26.413696pt;}
.ls10{letter-spacing:28.426752pt;}
.ls1c{letter-spacing:42.369408pt;}
.ls1a{letter-spacing:55.413632pt;}
.lsf{letter-spacing:70.619392pt;}
.ls21{letter-spacing:155.280896pt;}
.ls11{letter-spacing:159.030912pt;}
.wse{word-spacing:-14.515200pt;}
.wsb{word-spacing:-14.502400pt;}
.ws7{word-spacing:-14.496000pt;}
.ws1{word-spacing:-14.489600pt;}
.ws3{word-spacing:-14.483200pt;}
.ws6{word-spacing:-14.476800pt;}
.ws9{word-spacing:-14.470400pt;}
.ws2{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.457600pt;}
.ws5{word-spacing:-14.451200pt;}
.wsc{word-spacing:-14.444800pt;}
.ws4{word-spacing:-14.438400pt;}
.wsd{word-spacing:-14.432000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-15.479424pt;}
._0{margin-left:-0.943360pt;}
._6{width:0.889600pt;}
._13{width:1.945600pt;}
._4{width:2.887296pt;}
._c{width:3.776896pt;}
._b{width:4.672000pt;}
._17{width:5.603840pt;}
._1{width:6.760960pt;}
._a{width:8.135680pt;}
._18{width:9.323904pt;}
._3{width:10.785024pt;}
._2{width:11.732224pt;}
._7{width:13.203200pt;}
._5{width:15.532800pt;}
._e{width:16.422400pt;}
._d{width:17.446400pt;}
._14{width:19.033600pt;}
._f{width:20.712704pt;}
._10{width:21.638784pt;}
._15{width:22.688000pt;}
._12{width:24.051200pt;}
._22{width:24.969472pt;}
._11{width:25.935872pt;}
._21{width:26.928128pt;}
._1e{width:27.840000pt;}
._1c{width:29.401600pt;}
._25{width:30.419200pt;}
._8{width:31.648000pt;}
._27{width:32.742400pt;}
._29{width:33.644928pt;}
._1f{width:34.577024pt;}
._1d{width:35.673600pt;}
._23{width:36.913280pt;}
._1a{width:37.843200pt;}
._1b{width:39.270400pt;}
._30{width:40.259840pt;}
._9{width:41.260800pt;}
._19{width:42.771200pt;}
._20{width:44.057600pt;}
._24{width:45.435008pt;}
._26{width:47.052800pt;}
._28{width:48.793600pt;}
._2d{width:52.620800pt;}
._2a{width:69.240832pt;}
._2f{width:105.779200pt;}
._31{width:107.500800pt;}
._32{width:108.934400pt;}
._2c{width:149.797376pt;}
._2b{width:150.752640pt;}
._33{width:174.854400pt;}
._2e{width:225.248000pt;}
._34{width:857.152000pt;}
.fs3{font-size:62.745101pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:4.586667pt;}
.y4{bottom:4.640000pt;}
.y16d{bottom:14.240000pt;}
.y14a{bottom:14.346667pt;}
.y15d{bottom:14.453333pt;}
.y165{bottom:14.613333pt;}
.y16f{bottom:15.040000pt;}
.y161{bottom:15.146667pt;}
.y169{bottom:21.866667pt;}
.y155{bottom:22.880000pt;}
.y16b{bottom:28.746667pt;}
.y14e{bottom:31.040000pt;}
.y13c{bottom:41.546667pt;}
.y149{bottom:43.466667pt;}
.y15c{bottom:43.893333pt;}
.y164{bottom:44.053333pt;}
.y16e{bottom:44.480000pt;}
.y160{bottom:44.586667pt;}
.y3{bottom:46.666667pt;}
.y144{bottom:46.986667pt;}
.y2{bottom:51.306667pt;}
.y137{bottom:51.573333pt;}
.y151{bottom:54.880000pt;}
.y14d{bottom:60.480000pt;}
.y148{bottom:72.906667pt;}
.y15b{bottom:73.013333pt;}
.y15f{bottom:73.706667pt;}
.y143{bottom:76.426667pt;}
.y142{bottom:76.661963pt;}
.y146{bottom:78.026667pt;}
.y150{bottom:84.320000pt;}
.y14c{bottom:89.600000pt;}
.y156{bottom:97.333333pt;}
.ye5{bottom:99.306667pt;}
.y15a{bottom:102.453333pt;}
.y141{bottom:106.186667pt;}
.y145{bottom:107.146667pt;}
.y32{bottom:109.546667pt;}
.yc6{bottom:109.866667pt;}
.y196{bottom:112.426667pt;}
.y12e{bottom:113.386667pt;}
.y80{bottom:114.986667pt;}
.ydc{bottom:115.306667pt;}
.y14f{bottom:117.333333pt;}
.yf3{bottom:117.866667pt;}
.y111{bottom:118.506667pt;}
.y167{bottom:118.720000pt;}
.ye4{bottom:120.426667pt;}
.y9e{bottom:123.306667pt;}
.y41{bottom:127.466667pt;}
.y5c{bottom:128.426667pt;}
.ybd{bottom:130.986667pt;}
.yaf{bottom:132.906667pt;}
.y140{bottom:135.946667pt;}
.y13f{bottom:136.181963pt;}
.y13e{bottom:136.586667pt;}
.y83{bottom:137.386667pt;}
.y8a{bottom:138.026667pt;}
.y1c{bottom:138.986667pt;}
.y17f{bottom:141.866667pt;}
.y12d{bottom:142.826667pt;}
.y74{bottom:144.426667pt;}
.yf2{bottom:147.306667pt;}
.y31{bottom:148.586667pt;}
.y110{bottom:149.226667pt;}
.yc2{bottom:149.866667pt;}
.y192{bottom:152.426667pt;}
.y9d{bottom:152.746667pt;}
.y16c{bottom:157.333333pt;}
.y5b{bottom:157.866667pt;}
.y182{bottom:160.426667pt;}
.yae{bottom:162.026667pt;}
.yec{bottom:165.866667pt;}
.y166{bottom:166.720000pt;}
.y82{bottom:166.826667pt;}
.y89{bottom:167.146667pt;}
.yc5{bottom:168.426667pt;}
.y17e{bottom:170.986667pt;}
.y7f{bottom:173.546667pt;}
.y73{bottom:173.866667pt;}
.y40{bottom:175.466667pt;}
.y130{bottom:176.426667pt;}
.y1b{bottom:178.026667pt;}
.ybc{bottom:178.986667pt;}
.y191{bottom:181.546667pt;}
.y9c{bottom:181.866667pt;}
.y16a{bottom:186.666667pt;}
.ye1{bottom:186.986667pt;}
.y30{bottom:187.626667pt;}
.y181{bottom:189.546667pt;}
.y12c{bottom:190.826667pt;}
.yad{bottom:191.466667pt;}
.yeb{bottom:194.986667pt;}
.y88{bottom:196.586667pt;}
.y132{bottom:197.866667pt;}
.y72{bottom:203.306667pt;}
.y10a{bottom:204.906667pt;}
.y5a{bottom:205.866667pt;}
.y10f{bottom:208.426667pt;}
.y190{bottom:210.986667pt;}
.y9b{bottom:211.306667pt;}
.y162{bottom:214.720000pt;}
.yc4{bottom:216.426667pt;}
.y1a{bottom:217.066667pt;}
.y14b{bottom:217.333333pt;}
.y17d{bottom:218.986667pt;}
.yac{bottom:220.586667pt;}
.y7e{bottom:221.546667pt;}
.y3f{bottom:223.146667pt;}
.yea{bottom:224.426667pt;}
.y2f{bottom:226.666667pt;}
.ybb{bottom:226.986667pt;}
.y168{bottom:230.666667pt;}
.y71{bottom:232.426667pt;}
.y109{bottom:234.026667pt;}
.y59{bottom:234.986667pt;}
.y10e{bottom:237.546667pt;}
.y12b{bottom:238.506667pt;}
.y9a{bottom:240.426667pt;}
.y170{bottom:242.986667pt;}
.ye0{bottom:245.546667pt;}
.y17c{bottom:248.426667pt;}
.y7d{bottom:250.986667pt;}
.ye9{bottom:253.866667pt;}
.y19{bottom:256.106667pt;}
.yba{bottom:256.426667pt;}
.y18f{bottom:258.986667pt;}
.y70{bottom:261.866667pt;}
.y108{bottom:263.466667pt;}
.y58{bottom:264.426667pt;}
.y2e{bottom:265.706667pt;}
.y180{bottom:266.986667pt;}
.y12a{bottom:267.946667pt;}
.y163{bottom:268.000000pt;}
.yab{bottom:268.586667pt;}
.y3e{bottom:271.146667pt;}
.ydf{bottom:274.986667pt;}
.y195{bottom:277.546667pt;}
.ye8{bottom:282.986667pt;}
.yb9{bottom:285.546667pt;}
.y18e{bottom:288.106667pt;}
.y99{bottom:288.426667pt;}
.y6f{bottom:290.986667pt;}
.y107{bottom:292.906667pt;}
.y57{bottom:293.546667pt;}
.y18{bottom:295.146667pt;}
.y17b{bottom:296.106667pt;}
.y129{bottom:297.386667pt;}
.yaa{bottom:298.026667pt;}
.y7c{bottom:298.986667pt;}
.yde{bottom:304.426667pt;}
.y2d{bottom:305.066667pt;}
.ydb{bottom:309.866667pt;}
.ye7{bottom:312.426667pt;}
.ye3{bottom:314.986667pt;}
.y98{bottom:317.866667pt;}
.y3d{bottom:319.146667pt;}
.y6e{bottom:320.426667pt;}
.y147{bottom:322.666667pt;}
.y56{bottom:322.986667pt;}
.y17a{bottom:325.546667pt;}
.y128{bottom:326.506667pt;}
.y15e{bottom:326.666667pt;}
.ya9{bottom:327.146667pt;}
.yb8{bottom:333.546667pt;}
.y17{bottom:334.186667pt;}
.y18d{bottom:336.106667pt;}
.yda{bottom:338.986667pt;}
.y106{bottom:340.586667pt;}
.yf1{bottom:341.546667pt;}
.y2c{bottom:344.106667pt;}
.y7b{bottom:346.666667pt;}
.y6d{bottom:349.546667pt;}
.ydd{bottom:352.106667pt;}
.y194{bottom:354.986667pt;}
.y127{bottom:355.946667pt;}
.ye6{bottom:360.426667pt;}
.yb7{bottom:362.986667pt;}
.y18c{bottom:365.546667pt;}
.y97{bottom:365.866667pt;}
.y3c{bottom:367.146667pt;}
.yd9{bottom:368.426667pt;}
.y105{bottom:370.026667pt;}
.y55{bottom:370.986667pt;}
.y16{bottom:373.226667pt;}
.ye2{bottom:373.546667pt;}
.ya8{bottom:375.146667pt;}
.y6c{bottom:378.986667pt;}
.y10d{bottom:381.546667pt;}
.y2b{bottom:383.146667pt;}
.y193{bottom:384.106667pt;}
.y126{bottom:385.066667pt;}
.y12f{bottom:389.546667pt;}
.y158{bottom:391.680000pt;}
.yb6{bottom:392.106667pt;}
.y7a{bottom:394.666667pt;}
.y96{bottom:395.306667pt;}
.yd8{bottom:397.546667pt;}
.y104{bottom:399.466667pt;}
.y54{bottom:400.106667pt;}
.y179{bottom:402.666667pt;}
.ya7{bottom:404.586667pt;}
.y6b{bottom:408.106667pt;}
.y13d{bottom:410.666667pt;}
.y10c{bottom:410.986667pt;}
.y15{bottom:412.266667pt;}
.y18b{bottom:413.546667pt;}
.y125{bottom:414.506667pt;}
.y3b{bottom:415.146667pt;}
.y159{bottom:416.000000pt;}
.yf0{bottom:418.986667pt;}
.y157{bottom:421.120000pt;}
.yc1{bottom:421.546667pt;}
.y2a{bottom:422.186667pt;}
.y95{bottom:425.386667pt;}
.yd7{bottom:426.986667pt;}
.y103{bottom:428.586667pt;}
.y53{bottom:429.546667pt;}
.y178{bottom:432.106667pt;}
.ya6{bottom:433.706667pt;}
.y6a{bottom:437.546667pt;}
.yb5{bottom:440.106667pt;}
.y79{bottom:442.666667pt;}
.y124{bottom:443.626667pt;}
.yef{bottom:448.106667pt;}
.yc0{bottom:450.666667pt;}
.y14{bottom:451.306667pt;}
.y94{bottom:454.826667pt;}
.yd6{bottom:456.106667pt;}
.y102{bottom:458.026667pt;}
.y52{bottom:458.666667pt;}
.y29{bottom:461.226667pt;}
.y177{bottom:461.546667pt;}
.y3a{bottom:463.146667pt;}
.y69{bottom:466.986667pt;}
.yb4{bottom:469.546667pt;}
.y18a{bottom:472.106667pt;}
.y123{bottom:473.066667pt;}
.yee{bottom:477.546667pt;}
.ybf{bottom:480.106667pt;}
.y93{bottom:484.586667pt;}
.yd5{bottom:485.546667pt;}
.y101{bottom:487.146667pt;}
.y51{bottom:488.106667pt;}
.y13{bottom:490.346667pt;}
.y78{bottom:490.666667pt;}
.ya5{bottom:492.266667pt;}
.y68{bottom:496.106667pt;}
.yb3{bottom:498.666667pt;}
.y28{bottom:500.266667pt;}
.y189{bottom:501.226667pt;}
.y122{bottom:502.186667pt;}
.yed{bottom:506.666667pt;}
.ybe{bottom:509.226667pt;}
.y39{bottom:511.146667pt;}
.y92{bottom:514.346667pt;}
.yd4{bottom:514.666667pt;}
.y100{bottom:516.586667pt;}
.y81{bottom:517.546667pt;}
.y67{bottom:525.546667pt;}
.yb2{bottom:528.106667pt;}
.y12{bottom:529.386667pt;}
.y121{bottom:531.626667pt;}
.y154{bottom:533.333333pt;}
.y50{bottom:536.106667pt;}
.y77{bottom:538.666667pt;}
.y27{bottom:539.306667pt;}
.ya4{bottom:540.266667pt;}
.yd3{bottom:544.106667pt;}
.y91{bottom:544.426667pt;}
.yff{bottom:545.706667pt;}
.yc3{bottom:546.666667pt;}
.y188{bottom:549.226667pt;}
.y66{bottom:554.666667pt;}
.yb1{bottom:557.226667pt;}
.y38{bottom:559.146667pt;}
.y120{bottom:561.066667pt;}
.y13b{bottom:562.666667pt;}
.y4f{bottom:565.226667pt;}
.y176{bottom:567.786667pt;}
.y11{bottom:568.746667pt;}
.ya3{bottom:569.706667pt;}
.yd2{bottom:573.546667pt;}
.y90{bottom:574.186667pt;}
.yfe{bottom:575.146667pt;}
.y87{bottom:576.106667pt;}
.y26{bottom:578.346667pt;}
.y187{bottom:578.666667pt;}
.y65{bottom:584.106667pt;}
.y76{bottom:586.666667pt;}
.y11f{bottom:590.186667pt;}
.y4e{bottom:594.666667pt;}
.y175{bottom:597.226667pt;}
.yd1{bottom:602.666667pt;}
.y8f{bottom:603.626667pt;}
.yfd{bottom:604.266667pt;}
.y86{bottom:605.226667pt;}
.y153{bottom:606.133333pt;}
.y37{bottom:607.146667pt;}
.y10{bottom:607.786667pt;}
.y64{bottom:613.226667pt;}
.yb0{bottom:615.786667pt;}
.y25{bottom:617.386667pt;}
.y11e{bottom:619.626667pt;}
.y4d{bottom:623.786667pt;}
.y186{bottom:626.666667pt;}
.yd0{bottom:632.106667pt;}
.y8e{bottom:634.026667pt;}
.y75{bottom:634.666667pt;}
.y152{bottom:635.573333pt;}
.y63{bottom:642.666667pt;}
.y174{bottom:645.226667pt;}
.yf{bottom:646.826667pt;}
.y11d{bottom:648.746667pt;}
.yfc{bottom:652.266667pt;}
.y4c{bottom:653.226667pt;}
.y13a{bottom:654.133333pt;}
.y36{bottom:654.826667pt;}
.y24{bottom:656.426667pt;}
.ycf{bottom:661.226667pt;}
.y85{bottom:663.786667pt;}
.y62{bottom:671.786667pt;}
.y173{bottom:674.346667pt;}
.y11c{bottom:678.186667pt;}
.yfb{bottom:681.706667pt;}
.y4b{bottom:682.666667pt;}
.y139{bottom:683.573333pt;}
.ye{bottom:685.866667pt;}
.yce{bottom:690.666667pt;}
.y84{bottom:693.226667pt;}
.y23{bottom:695.466667pt;}
.ya2{bottom:695.786667pt;}
.y61{bottom:701.226667pt;}
.y35{bottom:702.826667pt;}
.y185{bottom:703.786667pt;}
.yfa{bottom:710.826667pt;}
.y4a{bottom:711.786667pt;}
.ycd{bottom:719.786667pt;}
.y10b{bottom:722.346667pt;}
.yd{bottom:724.906667pt;}
.y11b{bottom:726.186667pt;}
.y60{bottom:730.346667pt;}
.y136{bottom:730.613333pt;}
.y184{bottom:733.226667pt;}
.y22{bottom:734.506667pt;}
.yf9{bottom:740.266667pt;}
.y49{bottom:741.226667pt;}
.ya1{bottom:743.786667pt;}
.y197{bottom:746.986667pt;}
.ycc{bottom:749.226667pt;}
.y34{bottom:750.826667pt;}
.y172{bottom:751.786667pt;}
.y11a{bottom:755.306667pt;}
.y5f{bottom:759.786667pt;}
.yc{bottom:766.186667pt;}
.y48{bottom:770.346667pt;}
.y21{bottom:773.546667pt;}
.ycb{bottom:778.346667pt;}
.y171{bottom:780.906667pt;}
.y119{bottom:784.746667pt;}
.yf8{bottom:788.266667pt;}
.y5e{bottom:789.226667pt;}
.ya0{bottom:791.786667pt;}
.y33{bottom:798.826667pt;}
.y47{bottom:799.786667pt;}
.yca{bottom:807.786667pt;}
.yb{bottom:810.026667pt;}
.y183{bottom:810.346667pt;}
.y20{bottom:812.586667pt;}
.y118{bottom:813.866667pt;}
.y5d{bottom:818.346667pt;}
.y8d{bottom:828.906667pt;}
.yf7{bottom:836.266667pt;}
.yc9{bottom:836.906667pt;}
.y9f{bottom:839.786667pt;}
.y46{bottom:847.786667pt;}
.ya{bottom:851.946667pt;}
.y8c{bottom:858.346667pt;}
.y117{bottom:861.866667pt;}
.yf6{bottom:865.386667pt;}
.yc8{bottom:866.346667pt;}
.y45{bottom:876.906667pt;}
.y8b{bottom:887.466667pt;}
.y9{bottom:890.986667pt;}
.y116{bottom:892.266667pt;}
.yf5{bottom:894.826667pt;}
.yc7{bottom:895.786667pt;}
.y44{bottom:906.346667pt;}
.y131{bottom:916.906667pt;}
.y115{bottom:922.666667pt;}
.y135{bottom:923.946667pt;}
.yf4{bottom:924.266667pt;}
.y8{bottom:924.906667pt;}
.y1f{bottom:930.026667pt;}
.y43{bottom:935.466667pt;}
.y114{bottom:952.426667pt;}
.y134{bottom:953.386667pt;}
.y7{bottom:954.346667pt;}
.y42{bottom:964.906667pt;}
.y1e{bottom:969.066667pt;}
.y113{bottom:981.866667pt;}
.y133{bottom:982.506667pt;}
.y6{bottom:983.466667pt;}
.y1d{bottom:1008.106667pt;}
.y112{bottom:1012.266667pt;}
.y5{bottom:1012.906667pt;}
.y1{bottom:1060.266667pt;}
.h2{height:20.000000pt;}
.h15{height:30.666667pt;}
.h13{height:37.333333pt;}
.he{height:38.666667pt;}
.h14{height:44.000000pt;}
.h5{height:44.343750pt;}
.h7{height:44.500000pt;}
.h16{height:45.937500pt;}
.h1{height:52.781250pt;}
.ha{height:56.464463pt;}
.h8{height:57.333333pt;}
.h12{height:60.000000pt;}
.h17{height:61.556250pt;}
.h3{height:70.726875pt;}
.h4{height:79.171875pt;}
.hb{height:89.333333pt;}
.hd{height:100.000000pt;}
.hc{height:105.333333pt;}
.h10{height:118.666667pt;}
.h9{height:152.000000pt;}
.h11{height:230.666667pt;}
.hf{height:437.333333pt;}
.h6{height:793.333333pt;}
.h0{height:1122.666667pt;}
.w1{width:9.333333pt;}
.w2{width:17.333333pt;}
.w9{width:104.000000pt;}
.wb{width:116.000000pt;}
.wc{width:160.000000pt;}
.w6{width:192.000000pt;}
.wa{width:274.666667pt;}
.w8{width:313.333333pt;}
.w4{width:340.000000pt;}
.w5{width:350.666667pt;}
.w7{width:377.333333pt;}
.w0{width:793.333333pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:7.040032pt;}
.x10{left:7.946603pt;}
.x13{left:17.176000pt;}
.xf{left:105.333333pt;}
.x1{left:113.279936pt;}
.x8{left:137.279936pt;}
.x4{left:138.845376pt;}
.x5{left:152.346688pt;}
.x9{left:161.279936pt;}
.x7{left:171.218432pt;}
.xa{left:185.279936pt;}
.x15{left:208.000000pt;}
.xb{left:209.279936pt;}
.x6{left:283.197568pt;}
.x17{left:322.666667pt;}
.xc{left:388.000000pt;}
.x2{left:392.000000pt;}
.x3{left:396.546560pt;}
.x11{left:444.000000pt;}
.x14{left:481.333333pt;}
.xe{left:553.333333pt;}
.xd{left:654.400000pt;}
.x12{left:793.333333pt;}
}




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