
    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_2dc033aa7d0eedfeed3b0953.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3461f675d541c02b2523e44e.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_311aebeee515139deea15781.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_029c6349ec301f6a2087ebbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ca4feedb4b9b37d39c46ba95.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_36b75e5d49d57a07b9f094f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b0647b378134bfae1f65fb96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_ffd0ce7cc13442268df08927.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cfd0a98990bb9c3d838b2a6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_9683822ce52baa928a665b41.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2e097dd07aebc621fe98a74f.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.860840;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_2568e20e2e9bfd7f729f3619.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.m3{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v4{vertical-align:-37.022502px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.980535px;}
.v3{vertical-align:20.880000px;}
.v6{vertical-align:80.709398px;}
.ls2b{letter-spacing:-0.924000px;}
.ls1f{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.513600px;}
.ls9{letter-spacing:-0.460200px;}
.ls29{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.058320px;}
.ls2d{letter-spacing:-0.053280px;}
.ls2a{letter-spacing:-0.012960px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.004320px;}
.ls25{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.061200px;}
.ls1b{letter-spacing:0.079800px;}
.ls5{letter-spacing:0.100800px;}
.ls27{letter-spacing:0.106560px;}
.ls16{letter-spacing:0.147000px;}
.ls2c{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.214560px;}
.ls2e{letter-spacing:0.226080px;}
.lse{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls22{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.321120px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.439920px;}
.lsa{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.041120px;}
.ls1c{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.620000px;}
.ls11{letter-spacing:4.500000px;}
.ls14{letter-spacing:5.940000px;}
.ls21{letter-spacing:31.602720px;}
.ls1d{letter-spacing:45.540000px;}
.ls23{letter-spacing:78.660000px;}
.ls26{letter-spacing:170.100000px;}
.lsf{letter-spacing:197.460000px;}
.ls2{letter-spacing:420.636000px;}
.lsd{letter-spacing:457.063039px;}
.ls20{letter-spacing:1732.794240px;}
.ls4{letter-spacing:1762.314240px;}
.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;}
}
.ws11{word-spacing:-16.294237px;}
.ws8{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.228877px;}
.ws13{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wse{word-spacing:-15.087000px;}
.wsf{word-spacing:-15.019800px;}
.ws0{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.680200px;}
.ws14{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.426400px;}
.ws3{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.113568px;}
.wsc{word-spacing:-11.792777px;}
.ws9{word-spacing:-11.208864px;}
.ws5{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.707040px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:171.925312px;}
.wsa{word-spacing:402.467526px;}
._21{margin-left:-183.307169px;}
._1b{margin-left:-72.057720px;}
._1c{margin-left:-51.686160px;}
._28{margin-left:-10.640160px;}
._1d{margin-left:-5.700240px;}
._d{margin-left:-3.694080px;}
._b{margin-left:-2.640480px;}
._a{margin-left:-1.004880px;}
._1{width:1.075680px;}
._3{width:2.118720px;}
._6{width:3.300240px;}
._f{width:4.353360px;}
._5{width:5.415840px;}
._4{width:6.481440px;}
._10{width:7.828560px;}
._12{width:8.872560px;}
._8{width:10.278720px;}
._7{width:11.473920px;}
._9{width:12.994080px;}
._11{width:16.792560px;}
._2d{width:18.297120px;}
._27{width:19.356960px;}
._37{width:20.525760px;}
._32{width:21.692880px;}
._39{width:22.749120px;}
._13{width:23.871600px;}
._29{width:25.577280px;}
._38{width:27.489600px;}
._c{width:29.043360px;}
._16{width:30.379680px;}
._35{width:32.031360px;}
._14{width:34.179840px;}
._26{width:36.168960px;}
._25{width:37.455360px;}
._4c{width:38.863200px;}
._47{width:39.920880px;}
._43{width:41.401440px;}
._49{width:42.521040px;}
._48{width:44.401680px;}
._4d{width:47.226720px;}
._2c{width:48.943440px;}
._41{width:50.258160px;}
._31{width:51.890880px;}
._30{width:53.246160px;}
._45{width:55.337280px;}
._44{width:56.453040px;}
._57{width:57.454800px;}
._18{width:58.735920px;}
._55{width:74.742003px;}
._20{width:76.109099px;}
._56{width:77.281022px;}
._33{width:78.823440px;}
._23{width:85.454400px;}
._3a{width:87.667920px;}
._1e{width:91.253280px;}
._53{width:99.907680px;}
._52{width:101.412720px;}
._3b{width:103.347360px;}
._22{width:105.380880px;}
._51{width:108.672960px;}
._50{width:109.838880px;}
._17{width:121.825440px;}
._42{width:123.780000px;}
._1a{width:127.180440px;}
._3c{width:134.915520px;}
._24{width:140.646960px;}
._e{width:145.480080px;}
._4f{width:158.722560px;}
._15{width:166.677600px;}
._34{width:170.133120px;}
._54{width:171.810000px;}
._36{width:179.539920px;}
._3e{width:188.244000px;}
._3d{width:189.917280px;}
._19{width:197.460000px;}
._2a{width:198.830880px;}
._2f{width:228.299280px;}
._2e{width:229.462320px;}
._4b{width:240.503040px;}
._4a{width:241.594560px;}
._46{width:253.926720px;}
._3f{width:265.046880px;}
._40{width:266.220000px;}
._2{width:293.422080px;}
._4e{width:471.446640px;}
._2b{width:849.240000px;}
._1f{width:1732.050240px;}
._0{width:1762.290240px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.828301px;}
.fs6{font-size:37.892584px;}
.fs2{font-size:38.880000px;}
.fs3{font-size:40.319654px;}
.fs4{font-size:47.171106px;}
.fs9{font-size:48.318932px;}
.fs7{font-size:54.780134px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:65.176947px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:19.787911px;}
.y7a{bottom:31.274580px;}
.y7f{bottom:31.360809px;}
.y74{bottom:32.983042px;}
.y77{bottom:35.687483px;}
.yf9{bottom:39.166384px;}
.y7e{bottom:39.213563px;}
.y80{bottom:40.727425px;}
.yf8{bottom:58.333725px;}
.y7d{bottom:65.756356px;}
.yf1{bottom:79.990484px;}
.yf3{bottom:82.408468px;}
.y7b{bottom:86.176840px;}
.y79{bottom:90.310628px;}
.y7c{bottom:90.997530px;}
.y3f{bottom:91.440000px;}
.yed{bottom:92.340000px;}
.y76{bottom:92.820503px;}
.yd7{bottom:102.600000px;}
.y14e{bottom:104.760000px;}
.y3c{bottom:108.720000px;}
.yec{bottom:109.620000px;}
.y12c{bottom:114.660000px;}
.y15b{bottom:115.920000px;}
.yd6{bottom:119.700000px;}
.y14d{bottom:122.040000px;}
.y78{bottom:122.392688px;}
.yf6{bottom:122.601983px;}
.y19c{bottom:125.460000px;}
.y3b{bottom:126.000000px;}
.y71{bottom:126.360000px;}
.yeb{bottom:126.720000px;}
.y75{bottom:130.433057px;}
.y73{bottom:131.128780px;}
.y12b{bottom:131.940000px;}
.y15a{bottom:132.300000px;}
.yf7{bottom:133.990265px;}
.yd5{bottom:137.016000px;}
.yf0{bottom:137.739233px;}
.y14c{bottom:139.356000px;}
.yf5{bottom:141.138796px;}
.y19b{bottom:142.596000px;}
.y3a{bottom:143.136000px;}
.y70{bottom:143.676000px;}
.yea{bottom:144.036000px;}
.y159{bottom:148.716000px;}
.y12a{bottom:149.256000px;}
.yd4{bottom:154.290000px;}
.y14b{bottom:156.630000px;}
.y19a{bottom:158.970000px;}
.y39{bottom:160.410000px;}
.y6f{bottom:160.950000px;}
.ye9{bottom:161.310000px;}
.yf4{bottom:162.614264px;}
.y158{bottom:165.090000px;}
.y129{bottom:166.530000px;}
.yf2{bottom:166.865494px;}
.yd3{bottom:171.570000px;}
.y14a{bottom:173.910000px;}
.y199{bottom:175.350000px;}
.y38{bottom:177.690000px;}
.y6e{bottom:178.230000px;}
.ye8{bottom:178.590000px;}
.y157{bottom:181.470000px;}
.yef{bottom:183.755998px;}
.y128{bottom:183.810000px;}
.y149{bottom:191.010000px;}
.y198{bottom:191.730000px;}
.y37{bottom:194.970000px;}
.y6d{bottom:195.330000px;}
.ye7{bottom:195.870000px;}
.y156{bottom:197.850000px;}
.y127{bottom:200.910000px;}
.yb2{bottom:204.690000px;}
.y197{bottom:208.110000px;}
.y148{bottom:208.290000px;}
.y36{bottom:212.250000px;}
.y6c{bottom:212.610000px;}
.ye6{bottom:213.150000px;}
.y155{bottom:214.230000px;}
.y126{bottom:218.190000px;}
.yb1{bottom:221.970000px;}
.y196{bottom:224.490000px;}
.y147{bottom:225.570000px;}
.y35{bottom:229.530000px;}
.y6b{bottom:229.890000px;}
.ye5{bottom:230.250000px;}
.y154{bottom:230.610000px;}
.y125{bottom:235.470000px;}
.yb0{bottom:239.250000px;}
.ybf{bottom:239.610000px;}
.y195{bottom:240.870000px;}
.y146{bottom:242.850000px;}
.y34{bottom:246.630000px;}
.y153{bottom:246.990000px;}
.y6a{bottom:247.170000px;}
.ye4{bottom:247.530000px;}
.y124{bottom:252.750000px;}
.yaf{bottom:256.530000px;}
.ybe{bottom:256.890000px;}
.y194{bottom:257.250000px;}
.y145{bottom:260.130000px;}
.y152{bottom:263.370000px;}
.y33{bottom:263.910000px;}
.y69{bottom:264.450000px;}
.ye3{bottom:264.810000px;}
.y123{bottom:270.030000px;}
.y193{bottom:273.630000px;}
.yae{bottom:273.810000px;}
.ybd{bottom:273.990000px;}
.y144{bottom:277.410000px;}
.y151{bottom:279.750000px;}
.y32{bottom:281.190000px;}
.y68{bottom:281.730000px;}
.ye2{bottom:282.090000px;}
.y192{bottom:290.010000px;}
.yad{bottom:290.910000px;}
.ybc{bottom:291.270000px;}
.y143{bottom:294.510000px;}
.y150{bottom:296.130000px;}
.y31{bottom:298.470000px;}
.y67{bottom:298.830000px;}
.ye1{bottom:299.370000px;}
.y122{bottom:304.410000px;}
.y191{bottom:306.390000px;}
.yac{bottom:308.190000px;}
.ybb{bottom:308.550000px;}
.y142{bottom:311.790000px;}
.y14f{bottom:312.510000px;}
.y30{bottom:315.750000px;}
.y66{bottom:316.110000px;}
.ye0{bottom:316.470000px;}
.y121{bottom:321.690000px;}
.y190{bottom:322.770000px;}
.yab{bottom:325.470000px;}
.yba{bottom:325.830000px;}
.y141{bottom:329.070000px;}
.y2f{bottom:332.850000px;}
.y65{bottom:333.390000px;}
.ydf{bottom:333.750000px;}
.y120{bottom:338.970000px;}
.y18f{bottom:339.330000px;}
.yaa{bottom:342.750000px;}
.yb9{bottom:343.110000px;}
.y140{bottom:346.350000px;}
.y3e{bottom:350.130000px;}
.y64{bottom:350.670000px;}
.yde{bottom:351.030000px;}
.y18e{bottom:355.710000px;}
.y11f{bottom:356.250000px;}
.ya9{bottom:360.030000px;}
.yb8{bottom:360.390000px;}
.y13f{bottom:363.630000px;}
.y2e{bottom:367.410000px;}
.y63{bottom:367.950000px;}
.ydd{bottom:368.310000px;}
.y18d{bottom:372.090000px;}
.y11e{bottom:373.530000px;}
.ya8{bottom:377.130000px;}
.yb7{bottom:377.490000px;}
.y13e{bottom:380.730000px;}
.y2d{bottom:384.690000px;}
.y62{bottom:385.230000px;}
.ydc{bottom:385.590000px;}
.y18c{bottom:388.515000px;}
.y11d{bottom:390.675000px;}
.ya7{bottom:394.455000px;}
.yb6{bottom:394.815000px;}
.y13d{bottom:398.055000px;}
.y2c{bottom:402.015000px;}
.y61{bottom:402.375000px;}
.ydb{bottom:402.915000px;}
.y18b{bottom:404.895000px;}
.y12d{bottom:407.955000px;}
.ya6{bottom:411.735000px;}
.yb5{bottom:412.095000px;}
.y13c{bottom:415.335000px;}
.y2b{bottom:419.295000px;}
.y60{bottom:419.655000px;}
.yda{bottom:420.015000px;}
.y18a{bottom:421.275000px;}
.y11c{bottom:425.235000px;}
.ya5{bottom:429.015000px;}
.yb4{bottom:429.375000px;}
.y13b{bottom:432.615000px;}
.y2a{bottom:436.395000px;}
.y5f{bottom:436.935000px;}
.y189{bottom:437.655000px;}
.yd2{bottom:439.455000px;}
.y11b{bottom:442.515000px;}
.ya4{bottom:446.295000px;}
.yb3{bottom:446.655000px;}
.yd9{bottom:447.015000px;}
.y13a{bottom:449.895000px;}
.y29{bottom:453.675000px;}
.y188{bottom:454.035000px;}
.yd1{bottom:456.735000px;}
.y11a{bottom:459.795000px;}
.yd8{bottom:461.055000px;}
.ya3{bottom:463.755000px;}
.y139{bottom:467.175000px;}
.y5e{bottom:467.715000px;}
.y187{bottom:470.415000px;}
.y28{bottom:470.955000px;}
.yd0{bottom:474.015000px;}
.y119{bottom:477.075000px;}
.ya2{bottom:481.035000px;}
.y138{bottom:484.275000px;}
.y186{bottom:486.795000px;}
.y27{bottom:488.235000px;}
.ycf{bottom:491.295000px;}
.y118{bottom:494.175000px;}
.ya1{bottom:498.315000px;}
.y137{bottom:501.555000px;}
.y185{bottom:503.175000px;}
.y26{bottom:505.515000px;}
.yce{bottom:508.575000px;}
.y117{bottom:511.455000px;}
.ya0{bottom:515.595000px;}
.y136{bottom:518.835000px;}
.y184{bottom:519.555000px;}
.y25{bottom:522.795000px;}
.ycd{bottom:525.855000px;}
.y116{bottom:528.735000px;}
.y9f{bottom:532.875000px;}
.y183{bottom:535.935000px;}
.y135{bottom:536.115000px;}
.y24{bottom:539.895000px;}
.ycc{bottom:542.955000px;}
.y115{bottom:546.015000px;}
.y9e{bottom:550.155000px;}
.y182{bottom:552.315000px;}
.y134{bottom:553.395000px;}
.y23{bottom:557.175000px;}
.ycb{bottom:560.235000px;}
.y114{bottom:563.295000px;}
.y9d{bottom:567.255000px;}
.y181{bottom:568.695000px;}
.y133{bottom:570.675000px;}
.y22{bottom:574.455000px;}
.yca{bottom:577.515000px;}
.y113{bottom:580.575000px;}
.y9c{bottom:584.535000px;}
.y180{bottom:585.075000px;}
.y132{bottom:587.775000px;}
.y21{bottom:591.735000px;}
.yc9{bottom:594.795000px;}
.y112{bottom:597.675000px;}
.y17f{bottom:601.455000px;}
.y9b{bottom:601.815000px;}
.y131{bottom:605.055000px;}
.y20{bottom:609.015000px;}
.yc8{bottom:612.075000px;}
.y111{bottom:614.955000px;}
.y17e{bottom:617.835000px;}
.y9a{bottom:619.095000px;}
.y130{bottom:622.335000px;}
.y1f{bottom:626.295000px;}
.yc7{bottom:629.175000px;}
.y110{bottom:632.235000px;}
.y17d{bottom:634.215000px;}
.y99{bottom:636.375000px;}
.y12f{bottom:639.615000px;}
.y3d{bottom:643.425000px;}
.yc6{bottom:646.485000px;}
.y10f{bottom:649.545000px;}
.y17c{bottom:650.625000px;}
.y98{bottom:653.685000px;}
.y12e{bottom:656.925000px;}
.y1e{bottom:660.705000px;}
.yc5{bottom:663.765000px;}
.y10e{bottom:666.825000px;}
.y17b{bottom:667.005000px;}
.y97{bottom:670.785000px;}
.y5d{bottom:674.025000px;}
.y1d{bottom:677.985000px;}
.yc4{bottom:681.045000px;}
.y17a{bottom:683.385000px;}
.y10d{bottom:684.105000px;}
.y96{bottom:688.065000px;}
.y5c{bottom:691.305000px;}
.y1c{bottom:695.265000px;}
.yc3{bottom:698.325000px;}
.y179{bottom:699.765000px;}
.y10c{bottom:701.205000px;}
.y95{bottom:705.345000px;}
.y5b{bottom:708.585000px;}
.y1b{bottom:712.545000px;}
.yc2{bottom:715.605000px;}
.y178{bottom:716.145000px;}
.y10b{bottom:718.485000px;}
.y94{bottom:722.625000px;}
.y5a{bottom:725.865000px;}
.y1a{bottom:729.645000px;}
.y177{bottom:732.525000px;}
.y10a{bottom:735.765000px;}
.y93{bottom:739.905000px;}
.yc1{bottom:742.425000px;}
.y59{bottom:743.145000px;}
.y19{bottom:746.925000px;}
.y176{bottom:748.905000px;}
.y109{bottom:753.045000px;}
.yc0{bottom:756.465000px;}
.y92{bottom:757.185000px;}
.y58{bottom:760.425000px;}
.y18{bottom:764.205000px;}
.y175{bottom:765.285000px;}
.y108{bottom:770.325000px;}
.y91{bottom:774.285000px;}
.y57{bottom:777.525000px;}
.y17{bottom:781.485000px;}
.y174{bottom:781.665000px;}
.y107{bottom:787.425000px;}
.y90{bottom:791.565000px;}
.y56{bottom:794.805000px;}
.y173{bottom:798.045000px;}
.y16{bottom:798.765000px;}
.y106{bottom:804.705000px;}
.y8f{bottom:808.845000px;}
.y55{bottom:812.085000px;}
.y172{bottom:814.605000px;}
.y15{bottom:816.045000px;}
.y105{bottom:821.985000px;}
.y8e{bottom:826.125000px;}
.y54{bottom:829.365000px;}
.y171{bottom:830.985000px;}
.y14{bottom:833.145000px;}
.y104{bottom:839.265000px;}
.y8d{bottom:843.405000px;}
.y53{bottom:846.645000px;}
.y170{bottom:847.365000px;}
.y13{bottom:850.425000px;}
.y103{bottom:856.545000px;}
.y8c{bottom:860.505000px;}
.y16f{bottom:863.745000px;}
.y52{bottom:863.925000px;}
.y12{bottom:867.705000px;}
.y102{bottom:873.825000px;}
.y8b{bottom:877.785000px;}
.y16e{bottom:880.125000px;}
.y51{bottom:881.025000px;}
.y11{bottom:884.985000px;}
.y101{bottom:890.925000px;}
.y8a{bottom:895.110000px;}
.y16d{bottom:896.550000px;}
.y50{bottom:898.350000px;}
.y10{bottom:902.310000px;}
.y100{bottom:908.250000px;}
.y89{bottom:912.390000px;}
.y16c{bottom:912.930000px;}
.y4f{bottom:915.630000px;}
.yf{bottom:919.590000px;}
.yff{bottom:925.530000px;}
.y16b{bottom:929.310000px;}
.y88{bottom:929.670000px;}
.y4e{bottom:932.910000px;}
.ye{bottom:936.690000px;}
.yfe{bottom:942.810000px;}
.y16a{bottom:945.690000px;}
.y87{bottom:946.950000px;}
.y4d{bottom:950.190000px;}
.yd{bottom:953.970000px;}
.yfd{bottom:960.090000px;}
.y169{bottom:962.070000px;}
.y86{bottom:964.050000px;}
.y4c{bottom:967.470000px;}
.yc{bottom:971.250000px;}
.yfc{bottom:977.370000px;}
.y168{bottom:978.450000px;}
.y85{bottom:981.330000px;}
.y4b{bottom:984.570000px;}
.yb{bottom:988.530000px;}
.yee{bottom:991.139919px;}
.yfb{bottom:991.230000px;}
.y167{bottom:994.830000px;}
.y84{bottom:998.610000px;}
.y4a{bottom:1001.850000px;}
.ya{bottom:1005.810000px;}
.y166{bottom:1011.210000px;}
.y83{bottom:1015.890000px;}
.y49{bottom:1019.130000px;}
.y9{bottom:1023.090000px;}
.y165{bottom:1027.590000px;}
.y82{bottom:1033.170000px;}
.y48{bottom:1036.410000px;}
.y8{bottom:1040.190000px;}
.y164{bottom:1043.970000px;}
.y72{bottom:1047.164919px;}
.y81{bottom:1047.210000px;}
.y47{bottom:1053.690000px;}
.y7{bottom:1057.470000px;}
.y163{bottom:1060.350000px;}
.y46{bottom:1070.790000px;}
.y6{bottom:1074.750000px;}
.y162{bottom:1076.730000px;}
.y45{bottom:1088.070000px;}
.y161{bottom:1093.110000px;}
.y44{bottom:1105.350000px;}
.y5{bottom:1109.310000px;}
.y160{bottom:1109.490000px;}
.y43{bottom:1122.630000px;}
.y15f{bottom:1125.870000px;}
.y4{bottom:1126.410000px;}
.y42{bottom:1139.910000px;}
.y15e{bottom:1142.250000px;}
.y3{bottom:1143.690000px;}
.y41{bottom:1157.220000px;}
.y15d{bottom:1158.660000px;}
.y2{bottom:1163.880000px;}
.y40{bottom:1174.320000px;}
.y15c{bottom:1175.040000px;}
.y1{bottom:1195.560000px;}
.he{height:29.274846px;}
.hf{height:37.189499px;}
.ha{height:42.052139px;}
.hb{height:46.295861px;}
.h15{height:47.422389px;}
.hc{height:49.197990px;}
.hd{height:53.178525px;}
.h7{height:53.573906px;}
.h12{height:57.133968px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h8{height:59.038594px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h16{height:61.423863px;}
.h13{height:63.967610px;}
.h3{height:81.949219px;}
.h10{height:136.765195px;}
.h14{height:137.843366px;}
.h9{height:141.291477px;}
.h11{height:197.094440px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:664.430794px;}
.w3{width:674.118422px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:22.031878px;}
.x20{left:37.680388px;}
.x3a{left:51.920430px;}
.x1b{left:101.382991px;}
.x1{left:106.415987px;}
.x31{left:108.395987px;}
.x17{left:110.195987px;}
.x36{left:111.995987px;}
.x18{left:113.615987px;}
.x2e{left:116.135987px;}
.x4{left:117.575987px;}
.x2d{left:118.655987px;}
.x16{left:126.935987px;}
.xe{left:136.115987px;}
.x2c{left:143.855987px;}
.x28{left:145.295987px;}
.x3c{left:153.789503px;}
.x43{left:159.509987px;}
.x35{left:169.409987px;}
.x14{left:173.189987px;}
.x5{left:183.269987px;}
.xf{left:212.429987px;}
.x37{left:222.329987px;}
.x3e{left:224.355115px;}
.x1c{left:244.984063px;}
.x44{left:248.429987px;}
.x15{left:269.534987px;}
.x3d{left:270.706755px;}
.x9{left:277.094987px;}
.x1d{left:298.923871px;}
.x2{left:308.594987px;}
.x2b{left:338.114987px;}
.x8{left:340.814987px;}
.x32{left:345.674987px;}
.x13{left:349.994987px;}
.x30{left:400.034987px;}
.x38{left:404.993338px;}
.x2a{left:413.534987px;}
.x34{left:417.314987px;}
.x25{left:420.849682px;}
.x19{left:425.234987px;}
.x1e{left:433.217090px;}
.x1f{left:442.316330px;}
.x27{left:446.504987px;}
.x10{left:457.304987px;}
.x3{left:461.444987px;}
.x22{left:474.888819px;}
.x11{left:487.004987px;}
.xc{left:537.944987px;}
.x3f{left:545.523155px;}
.x40{left:547.642415px;}
.x41{left:549.618482px;}
.x7{left:551.264987px;}
.x2f{left:591.224987px;}
.x21{left:600.013271px;}
.x39{left:614.470678px;}
.x3b{left:616.274911px;}
.x23{left:636.658566px;}
.x24{left:656.317291px;}
.xa{left:693.329987px;}
.xb{left:711.689987px;}
.x6{left:716.729987px;}
.x33{left:769.289987px;}
.x42{left:770.909987px;}
.x29{left:772.169987px;}
.x12{left:780.809987px;}
.x26{left:783.689987px;}
.xd{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v4{vertical-align:-32.908891pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.538254pt;}
.v3{vertical-align:18.560000pt;}
.v6{vertical-align:71.741687pt;}
.ls2b{letter-spacing:-0.821333pt;}
.ls1f{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.456533pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls29{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls2d{letter-spacing:-0.047360pt;}
.ls2a{letter-spacing:-0.011520pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.003840pt;}
.ls25{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.054400pt;}
.ls1b{letter-spacing:0.070933pt;}
.ls5{letter-spacing:0.089600pt;}
.ls27{letter-spacing:0.094720pt;}
.ls16{letter-spacing:0.130667pt;}
.ls2c{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.190720pt;}
.ls2e{letter-spacing:0.200960pt;}
.lse{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls22{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.285440pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.391040pt;}
.lsa{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.925440pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls11{letter-spacing:4.000000pt;}
.ls14{letter-spacing:5.280000pt;}
.ls21{letter-spacing:28.091307pt;}
.ls1d{letter-spacing:40.480000pt;}
.ls23{letter-spacing:69.920000pt;}
.ls26{letter-spacing:151.200000pt;}
.lsf{letter-spacing:175.520000pt;}
.ls2{letter-spacing:373.898667pt;}
.lsd{letter-spacing:406.278257pt;}
.ls20{letter-spacing:1540.261547pt;}
.ls4{letter-spacing:1566.501547pt;}
.ws11{word-spacing:-14.483766pt;}
.ws8{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.536780pt;}
.ws13{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.410667pt;}
.wsf{word-spacing:-13.350933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.049067pt;}
.ws14{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.823467pt;}
.ws3{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.656505pt;}
.wsc{word-spacing:-10.482468pt;}
.ws9{word-spacing:-9.963434pt;}
.ws5{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.628480pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:152.822500pt;}
.wsa{word-spacing:357.748912pt;}
._21{margin-left:-162.939706pt;}
._1b{margin-left:-64.051307pt;}
._1c{margin-left:-45.943253pt;}
._28{margin-left:-9.457920pt;}
._1d{margin-left:-5.066880pt;}
._d{margin-left:-3.283627pt;}
._b{margin-left:-2.347093pt;}
._a{margin-left:-0.893227pt;}
._1{width:0.956160pt;}
._3{width:1.883307pt;}
._6{width:2.933547pt;}
._f{width:3.869653pt;}
._5{width:4.814080pt;}
._4{width:5.761280pt;}
._10{width:6.958720pt;}
._12{width:7.886720pt;}
._8{width:9.136640pt;}
._7{width:10.199040pt;}
._9{width:11.550293pt;}
._11{width:14.926720pt;}
._2d{width:16.264107pt;}
._27{width:17.206187pt;}
._37{width:18.245120pt;}
._32{width:19.282560pt;}
._39{width:20.221440pt;}
._13{width:21.219200pt;}
._29{width:22.735360pt;}
._38{width:24.435200pt;}
._c{width:25.816320pt;}
._16{width:27.004160pt;}
._35{width:28.472320pt;}
._14{width:30.382080pt;}
._26{width:32.150187pt;}
._25{width:33.293653pt;}
._4c{width:34.545067pt;}
._47{width:35.485227pt;}
._43{width:36.801280pt;}
._49{width:37.796480pt;}
._48{width:39.468160pt;}
._4d{width:41.979307pt;}
._2c{width:43.505280pt;}
._41{width:44.673920pt;}
._31{width:46.125227pt;}
._30{width:47.329920pt;}
._45{width:49.188693pt;}
._44{width:50.180480pt;}
._57{width:51.070933pt;}
._18{width:52.209707pt;}
._55{width:66.437336pt;}
._20{width:67.652533pt;}
._56{width:68.694242pt;}
._33{width:70.065280pt;}
._23{width:75.959467pt;}
._3a{width:77.927040pt;}
._1e{width:81.114027pt;}
._53{width:88.806827pt;}
._52{width:90.144640pt;}
._3b{width:91.864320pt;}
._22{width:93.671893pt;}
._51{width:96.598187pt;}
._50{width:97.634560pt;}
._17{width:108.289280pt;}
._42{width:110.026667pt;}
._1a{width:113.049280pt;}
._3c{width:119.924907pt;}
._24{width:125.019520pt;}
._e{width:129.315627pt;}
._4f{width:141.086720pt;}
._15{width:148.157867pt;}
._34{width:151.229440pt;}
._54{width:152.720000pt;}
._36{width:159.591040pt;}
._3e{width:167.328000pt;}
._3d{width:168.815360pt;}
._19{width:175.520000pt;}
._2a{width:176.738560pt;}
._2f{width:202.932693pt;}
._2e{width:203.966507pt;}
._4b{width:213.780480pt;}
._4a{width:214.750720pt;}
._46{width:225.712640pt;}
._3f{width:235.597227pt;}
._40{width:236.640000pt;}
._2{width:260.819627pt;}
._4e{width:419.063680pt;}
._2b{width:754.880000pt;}
._1f{width:1539.600213pt;}
._0{width:1566.480213pt;}
.fs5{font-size:26.514045pt;}
.fs6{font-size:33.682297pt;}
.fs2{font-size:34.560000pt;}
.fs3{font-size:35.839692pt;}
.fs4{font-size:41.929872pt;}
.fs9{font-size:42.950161pt;}
.fs7{font-size:48.693453pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:57.935064pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:17.589254pt;}
.y7a{bottom:27.799627pt;}
.y7f{bottom:27.876275pt;}
.y74{bottom:29.318260pt;}
.y77{bottom:31.722207pt;}
.yf9{bottom:34.814563pt;}
.y7e{bottom:34.856500pt;}
.y80{bottom:36.202156pt;}
.yf8{bottom:51.852200pt;}
.y7d{bottom:58.450094pt;}
.yf1{bottom:71.102652pt;}
.yf3{bottom:73.251971pt;}
.y7b{bottom:76.601636pt;}
.y79{bottom:80.276114pt;}
.y7c{bottom:80.886694pt;}
.y3f{bottom:81.280000pt;}
.yed{bottom:82.080000pt;}
.y76{bottom:82.507113pt;}
.yd7{bottom:91.200000pt;}
.y14e{bottom:93.120000pt;}
.y3c{bottom:96.640000pt;}
.yec{bottom:97.440000pt;}
.y12c{bottom:101.920000pt;}
.y15b{bottom:103.040000pt;}
.yd6{bottom:106.400000pt;}
.y14d{bottom:108.480000pt;}
.y78{bottom:108.793500pt;}
.yf6{bottom:108.979541pt;}
.y19c{bottom:111.520000pt;}
.y3b{bottom:112.000000pt;}
.y71{bottom:112.320000pt;}
.yeb{bottom:112.640000pt;}
.y75{bottom:115.940495pt;}
.y73{bottom:116.558916pt;}
.y12b{bottom:117.280000pt;}
.y15a{bottom:117.600000pt;}
.yf7{bottom:119.102458pt;}
.yd5{bottom:121.792000pt;}
.yf0{bottom:122.434874pt;}
.y14c{bottom:123.872000pt;}
.yf5{bottom:125.456708pt;}
.y19b{bottom:126.752000pt;}
.y3a{bottom:127.232000pt;}
.y70{bottom:127.712000pt;}
.yea{bottom:128.032000pt;}
.y159{bottom:132.192000pt;}
.y12a{bottom:132.672000pt;}
.yd4{bottom:137.146667pt;}
.y14b{bottom:139.226667pt;}
.y19a{bottom:141.306667pt;}
.y39{bottom:142.586667pt;}
.y6f{bottom:143.066667pt;}
.ye9{bottom:143.386667pt;}
.yf4{bottom:144.546013pt;}
.y158{bottom:146.746667pt;}
.y129{bottom:148.026667pt;}
.yf2{bottom:148.324884pt;}
.yd3{bottom:152.506667pt;}
.y14a{bottom:154.586667pt;}
.y199{bottom:155.866667pt;}
.y38{bottom:157.946667pt;}
.y6e{bottom:158.426667pt;}
.ye8{bottom:158.746667pt;}
.y157{bottom:161.306667pt;}
.yef{bottom:163.338665pt;}
.y128{bottom:163.386667pt;}
.y149{bottom:169.786667pt;}
.y198{bottom:170.426667pt;}
.y37{bottom:173.306667pt;}
.y6d{bottom:173.626667pt;}
.ye7{bottom:174.106667pt;}
.y156{bottom:175.866667pt;}
.y127{bottom:178.586667pt;}
.yb2{bottom:181.946667pt;}
.y197{bottom:184.986667pt;}
.y148{bottom:185.146667pt;}
.y36{bottom:188.666667pt;}
.y6c{bottom:188.986667pt;}
.ye6{bottom:189.466667pt;}
.y155{bottom:190.426667pt;}
.y126{bottom:193.946667pt;}
.yb1{bottom:197.306667pt;}
.y196{bottom:199.546667pt;}
.y147{bottom:200.506667pt;}
.y35{bottom:204.026667pt;}
.y6b{bottom:204.346667pt;}
.ye5{bottom:204.666667pt;}
.y154{bottom:204.986667pt;}
.y125{bottom:209.306667pt;}
.yb0{bottom:212.666667pt;}
.ybf{bottom:212.986667pt;}
.y195{bottom:214.106667pt;}
.y146{bottom:215.866667pt;}
.y34{bottom:219.226667pt;}
.y153{bottom:219.546667pt;}
.y6a{bottom:219.706667pt;}
.ye4{bottom:220.026667pt;}
.y124{bottom:224.666667pt;}
.yaf{bottom:228.026667pt;}
.ybe{bottom:228.346667pt;}
.y194{bottom:228.666667pt;}
.y145{bottom:231.226667pt;}
.y152{bottom:234.106667pt;}
.y33{bottom:234.586667pt;}
.y69{bottom:235.066667pt;}
.ye3{bottom:235.386667pt;}
.y123{bottom:240.026667pt;}
.y193{bottom:243.226667pt;}
.yae{bottom:243.386667pt;}
.ybd{bottom:243.546667pt;}
.y144{bottom:246.586667pt;}
.y151{bottom:248.666667pt;}
.y32{bottom:249.946667pt;}
.y68{bottom:250.426667pt;}
.ye2{bottom:250.746667pt;}
.y192{bottom:257.786667pt;}
.yad{bottom:258.586667pt;}
.ybc{bottom:258.906667pt;}
.y143{bottom:261.786667pt;}
.y150{bottom:263.226667pt;}
.y31{bottom:265.306667pt;}
.y67{bottom:265.626667pt;}
.ye1{bottom:266.106667pt;}
.y122{bottom:270.586667pt;}
.y191{bottom:272.346667pt;}
.yac{bottom:273.946667pt;}
.ybb{bottom:274.266667pt;}
.y142{bottom:277.146667pt;}
.y14f{bottom:277.786667pt;}
.y30{bottom:280.666667pt;}
.y66{bottom:280.986667pt;}
.ye0{bottom:281.306667pt;}
.y121{bottom:285.946667pt;}
.y190{bottom:286.906667pt;}
.yab{bottom:289.306667pt;}
.yba{bottom:289.626667pt;}
.y141{bottom:292.506667pt;}
.y2f{bottom:295.866667pt;}
.y65{bottom:296.346667pt;}
.ydf{bottom:296.666667pt;}
.y120{bottom:301.306667pt;}
.y18f{bottom:301.626667pt;}
.yaa{bottom:304.666667pt;}
.yb9{bottom:304.986667pt;}
.y140{bottom:307.866667pt;}
.y3e{bottom:311.226667pt;}
.y64{bottom:311.706667pt;}
.yde{bottom:312.026667pt;}
.y18e{bottom:316.186667pt;}
.y11f{bottom:316.666667pt;}
.ya9{bottom:320.026667pt;}
.yb8{bottom:320.346667pt;}
.y13f{bottom:323.226667pt;}
.y2e{bottom:326.586667pt;}
.y63{bottom:327.066667pt;}
.ydd{bottom:327.386667pt;}
.y18d{bottom:330.746667pt;}
.y11e{bottom:332.026667pt;}
.ya8{bottom:335.226667pt;}
.yb7{bottom:335.546667pt;}
.y13e{bottom:338.426667pt;}
.y2d{bottom:341.946667pt;}
.y62{bottom:342.426667pt;}
.ydc{bottom:342.746667pt;}
.y18c{bottom:345.346667pt;}
.y11d{bottom:347.266667pt;}
.ya7{bottom:350.626667pt;}
.yb6{bottom:350.946667pt;}
.y13d{bottom:353.826667pt;}
.y2c{bottom:357.346667pt;}
.y61{bottom:357.666667pt;}
.ydb{bottom:358.146667pt;}
.y18b{bottom:359.906667pt;}
.y12d{bottom:362.626667pt;}
.ya6{bottom:365.986667pt;}
.yb5{bottom:366.306667pt;}
.y13c{bottom:369.186667pt;}
.y2b{bottom:372.706667pt;}
.y60{bottom:373.026667pt;}
.yda{bottom:373.346667pt;}
.y18a{bottom:374.466667pt;}
.y11c{bottom:377.986667pt;}
.ya5{bottom:381.346667pt;}
.yb4{bottom:381.666667pt;}
.y13b{bottom:384.546667pt;}
.y2a{bottom:387.906667pt;}
.y5f{bottom:388.386667pt;}
.y189{bottom:389.026667pt;}
.yd2{bottom:390.626667pt;}
.y11b{bottom:393.346667pt;}
.ya4{bottom:396.706667pt;}
.yb3{bottom:397.026667pt;}
.yd9{bottom:397.346667pt;}
.y13a{bottom:399.906667pt;}
.y29{bottom:403.266667pt;}
.y188{bottom:403.586667pt;}
.yd1{bottom:405.986667pt;}
.y11a{bottom:408.706667pt;}
.yd8{bottom:409.826667pt;}
.ya3{bottom:412.226667pt;}
.y139{bottom:415.266667pt;}
.y5e{bottom:415.746667pt;}
.y187{bottom:418.146667pt;}
.y28{bottom:418.626667pt;}
.yd0{bottom:421.346667pt;}
.y119{bottom:424.066667pt;}
.ya2{bottom:427.586667pt;}
.y138{bottom:430.466667pt;}
.y186{bottom:432.706667pt;}
.y27{bottom:433.986667pt;}
.ycf{bottom:436.706667pt;}
.y118{bottom:439.266667pt;}
.ya1{bottom:442.946667pt;}
.y137{bottom:445.826667pt;}
.y185{bottom:447.266667pt;}
.y26{bottom:449.346667pt;}
.yce{bottom:452.066667pt;}
.y117{bottom:454.626667pt;}
.ya0{bottom:458.306667pt;}
.y136{bottom:461.186667pt;}
.y184{bottom:461.826667pt;}
.y25{bottom:464.706667pt;}
.ycd{bottom:467.426667pt;}
.y116{bottom:469.986667pt;}
.y9f{bottom:473.666667pt;}
.y183{bottom:476.386667pt;}
.y135{bottom:476.546667pt;}
.y24{bottom:479.906667pt;}
.ycc{bottom:482.626667pt;}
.y115{bottom:485.346667pt;}
.y9e{bottom:489.026667pt;}
.y182{bottom:490.946667pt;}
.y134{bottom:491.906667pt;}
.y23{bottom:495.266667pt;}
.ycb{bottom:497.986667pt;}
.y114{bottom:500.706667pt;}
.y9d{bottom:504.226667pt;}
.y181{bottom:505.506667pt;}
.y133{bottom:507.266667pt;}
.y22{bottom:510.626667pt;}
.yca{bottom:513.346667pt;}
.y113{bottom:516.066667pt;}
.y9c{bottom:519.586667pt;}
.y180{bottom:520.066667pt;}
.y132{bottom:522.466667pt;}
.y21{bottom:525.986667pt;}
.yc9{bottom:528.706667pt;}
.y112{bottom:531.266667pt;}
.y17f{bottom:534.626667pt;}
.y9b{bottom:534.946667pt;}
.y131{bottom:537.826667pt;}
.y20{bottom:541.346667pt;}
.yc8{bottom:544.066667pt;}
.y111{bottom:546.626667pt;}
.y17e{bottom:549.186667pt;}
.y9a{bottom:550.306667pt;}
.y130{bottom:553.186667pt;}
.y1f{bottom:556.706667pt;}
.yc7{bottom:559.266667pt;}
.y110{bottom:561.986667pt;}
.y17d{bottom:563.746667pt;}
.y99{bottom:565.666667pt;}
.y12f{bottom:568.546667pt;}
.y3d{bottom:571.933333pt;}
.yc6{bottom:574.653333pt;}
.y10f{bottom:577.373333pt;}
.y17c{bottom:578.333333pt;}
.y98{bottom:581.053333pt;}
.y12e{bottom:583.933333pt;}
.y1e{bottom:587.293333pt;}
.yc5{bottom:590.013333pt;}
.y10e{bottom:592.733333pt;}
.y17b{bottom:592.893333pt;}
.y97{bottom:596.253333pt;}
.y5d{bottom:599.133333pt;}
.y1d{bottom:602.653333pt;}
.yc4{bottom:605.373333pt;}
.y17a{bottom:607.453333pt;}
.y10d{bottom:608.093333pt;}
.y96{bottom:611.613333pt;}
.y5c{bottom:614.493333pt;}
.y1c{bottom:618.013333pt;}
.yc3{bottom:620.733333pt;}
.y179{bottom:622.013333pt;}
.y10c{bottom:623.293333pt;}
.y95{bottom:626.973333pt;}
.y5b{bottom:629.853333pt;}
.y1b{bottom:633.373333pt;}
.yc2{bottom:636.093333pt;}
.y178{bottom:636.573333pt;}
.y10b{bottom:638.653333pt;}
.y94{bottom:642.333333pt;}
.y5a{bottom:645.213333pt;}
.y1a{bottom:648.573333pt;}
.y177{bottom:651.133333pt;}
.y10a{bottom:654.013333pt;}
.y93{bottom:657.693333pt;}
.yc1{bottom:659.933333pt;}
.y59{bottom:660.573333pt;}
.y19{bottom:663.933333pt;}
.y176{bottom:665.693333pt;}
.y109{bottom:669.373333pt;}
.yc0{bottom:672.413333pt;}
.y92{bottom:673.053333pt;}
.y58{bottom:675.933333pt;}
.y18{bottom:679.293333pt;}
.y175{bottom:680.253333pt;}
.y108{bottom:684.733333pt;}
.y91{bottom:688.253333pt;}
.y57{bottom:691.133333pt;}
.y17{bottom:694.653333pt;}
.y174{bottom:694.813333pt;}
.y107{bottom:699.933333pt;}
.y90{bottom:703.613333pt;}
.y56{bottom:706.493333pt;}
.y173{bottom:709.373333pt;}
.y16{bottom:710.013333pt;}
.y106{bottom:715.293333pt;}
.y8f{bottom:718.973333pt;}
.y55{bottom:721.853333pt;}
.y172{bottom:724.093333pt;}
.y15{bottom:725.373333pt;}
.y105{bottom:730.653333pt;}
.y8e{bottom:734.333333pt;}
.y54{bottom:737.213333pt;}
.y171{bottom:738.653333pt;}
.y14{bottom:740.573333pt;}
.y104{bottom:746.013333pt;}
.y8d{bottom:749.693333pt;}
.y53{bottom:752.573333pt;}
.y170{bottom:753.213333pt;}
.y13{bottom:755.933333pt;}
.y103{bottom:761.373333pt;}
.y8c{bottom:764.893333pt;}
.y16f{bottom:767.773333pt;}
.y52{bottom:767.933333pt;}
.y12{bottom:771.293333pt;}
.y102{bottom:776.733333pt;}
.y8b{bottom:780.253333pt;}
.y16e{bottom:782.333333pt;}
.y51{bottom:783.133333pt;}
.y11{bottom:786.653333pt;}
.y101{bottom:791.933333pt;}
.y8a{bottom:795.653333pt;}
.y16d{bottom:796.933333pt;}
.y50{bottom:798.533333pt;}
.y10{bottom:802.053333pt;}
.y100{bottom:807.333333pt;}
.y89{bottom:811.013333pt;}
.y16c{bottom:811.493333pt;}
.y4f{bottom:813.893333pt;}
.yf{bottom:817.413333pt;}
.yff{bottom:822.693333pt;}
.y16b{bottom:826.053333pt;}
.y88{bottom:826.373333pt;}
.y4e{bottom:829.253333pt;}
.ye{bottom:832.613333pt;}
.yfe{bottom:838.053333pt;}
.y16a{bottom:840.613333pt;}
.y87{bottom:841.733333pt;}
.y4d{bottom:844.613333pt;}
.yd{bottom:847.973333pt;}
.yfd{bottom:853.413333pt;}
.y169{bottom:855.173333pt;}
.y86{bottom:856.933333pt;}
.y4c{bottom:859.973333pt;}
.yc{bottom:863.333333pt;}
.yfc{bottom:868.773333pt;}
.y168{bottom:869.733333pt;}
.y85{bottom:872.293333pt;}
.y4b{bottom:875.173333pt;}
.yb{bottom:878.693333pt;}
.yee{bottom:881.013261pt;}
.yfb{bottom:881.093333pt;}
.y167{bottom:884.293333pt;}
.y84{bottom:887.653333pt;}
.y4a{bottom:890.533333pt;}
.ya{bottom:894.053333pt;}
.y166{bottom:898.853333pt;}
.y83{bottom:903.013333pt;}
.y49{bottom:905.893333pt;}
.y9{bottom:909.413333pt;}
.y165{bottom:913.413333pt;}
.y82{bottom:918.373333pt;}
.y48{bottom:921.253333pt;}
.y8{bottom:924.613333pt;}
.y164{bottom:927.973333pt;}
.y72{bottom:930.813261pt;}
.y81{bottom:930.853333pt;}
.y47{bottom:936.613333pt;}
.y7{bottom:939.973333pt;}
.y163{bottom:942.533333pt;}
.y46{bottom:951.813333pt;}
.y6{bottom:955.333333pt;}
.y162{bottom:957.093333pt;}
.y45{bottom:967.173333pt;}
.y161{bottom:971.653333pt;}
.y44{bottom:982.533333pt;}
.y5{bottom:986.053333pt;}
.y160{bottom:986.213333pt;}
.y43{bottom:997.893333pt;}
.y15f{bottom:1000.773333pt;}
.y4{bottom:1001.253333pt;}
.y42{bottom:1013.253333pt;}
.y15e{bottom:1015.333333pt;}
.y3{bottom:1016.613333pt;}
.y41{bottom:1028.640000pt;}
.y15d{bottom:1029.920000pt;}
.y2{bottom:1034.560000pt;}
.y40{bottom:1043.840000pt;}
.y15c{bottom:1044.480000pt;}
.y1{bottom:1062.720000pt;}
.he{height:26.022085pt;}
.hf{height:33.057332pt;}
.ha{height:37.379679pt;}
.hb{height:41.151877pt;}
.h15{height:42.153235pt;}
.hc{height:43.731547pt;}
.hd{height:47.269800pt;}
.h7{height:47.621250pt;}
.h12{height:50.785750pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h8{height:52.478750pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h16{height:54.598989pt;}
.h13{height:56.860097pt;}
.h3{height:72.843750pt;}
.h10{height:121.569062pt;}
.h14{height:122.527437pt;}
.h9{height:125.592424pt;}
.h11{height:175.195058pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:590.605150pt;}
.w3{width:599.216375pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:19.583891pt;}
.x20{left:33.493678pt;}
.x3a{left:46.151493pt;}
.x1b{left:90.118215pt;}
.x1{left:94.591988pt;}
.x31{left:96.351988pt;}
.x17{left:97.951988pt;}
.x36{left:99.551988pt;}
.x18{left:100.991988pt;}
.x2e{left:103.231988pt;}
.x4{left:104.511988pt;}
.x2d{left:105.471988pt;}
.x16{left:112.831988pt;}
.xe{left:120.991988pt;}
.x2c{left:127.871988pt;}
.x28{left:129.151988pt;}
.x3c{left:136.701781pt;}
.x43{left:141.786655pt;}
.x35{left:150.586655pt;}
.x14{left:153.946655pt;}
.x5{left:162.906655pt;}
.xf{left:188.826655pt;}
.x37{left:197.626655pt;}
.x3e{left:199.426769pt;}
.x1c{left:217.763612pt;}
.x44{left:220.826655pt;}
.x15{left:239.586655pt;}
.x3d{left:240.628227pt;}
.x9{left:246.306655pt;}
.x1d{left:265.710108pt;}
.x2{left:274.306655pt;}
.x2b{left:300.546655pt;}
.x8{left:302.946655pt;}
.x32{left:307.266655pt;}
.x13{left:311.106655pt;}
.x30{left:355.586655pt;}
.x38{left:359.994078pt;}
.x2a{left:367.586655pt;}
.x34{left:370.946655pt;}
.x25{left:374.088606pt;}
.x19{left:377.986655pt;}
.x1e{left:385.081857pt;}
.x1f{left:393.170071pt;}
.x27{left:396.893322pt;}
.x10{left:406.493322pt;}
.x3{left:410.173322pt;}
.x22{left:422.123395pt;}
.x11{left:432.893322pt;}
.xc{left:478.173322pt;}
.x3f{left:484.909471pt;}
.x40{left:486.793258pt;}
.x41{left:488.549762pt;}
.x7{left:490.013322pt;}
.x2f{left:525.533322pt;}
.x21{left:533.345129pt;}
.x39{left:546.196158pt;}
.x3b{left:547.799921pt;}
.x23{left:565.918725pt;}
.x24{left:583.393147pt;}
.xa{left:616.293322pt;}
.xb{left:632.613322pt;}
.x6{left:637.093322pt;}
.x33{left:683.813322pt;}
.x42{left:685.253322pt;}
.x29{left:686.373322pt;}
.x12{left:694.053322pt;}
.x26{left:696.613322pt;}
.xd{left:699.333322pt;}
}




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