
    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_ea7719060efd023479979e77.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_57e9d3c88d250434a15fd2a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_04e5fd152b0549ff1da5ffb5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_efe95d430263f72bdc5e5b0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d9ff6385dcbb6cb9ab259840.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba3bbb101694e69d83eabeed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_552d4a92cff38251305e6cff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d1a4a234128d3ddc23c83117.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_d5ee958ec69eb7d8ed733b97.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2ee901461d8ecafce286323e.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls29{letter-spacing:-0.222000px;}
.ls17{letter-spacing:-0.168000px;}
.ls16{letter-spacing:-0.120000px;}
.ls19{letter-spacing:-0.048000px;}
.ls32{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls1c{letter-spacing:0.048000px;}
.ls1f{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.084000px;}
.ls2a{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.168000px;}
.ls12{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.222000px;}
.ls1d{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.270000px;}
.ls27{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls33{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.660000px;}
.ls15{letter-spacing:1.200000px;}
.ls2b{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.800000px;}
.ls26{letter-spacing:4.140000px;}
.ls4{letter-spacing:8.400000px;}
.lsc{letter-spacing:9.000000px;}
.ls11{letter-spacing:10.800000px;}
.ls31{letter-spacing:16.200000px;}
.ls2c{letter-spacing:17.400000px;}
.ls2d{letter-spacing:20.400000px;}
.ls10{letter-spacing:22.200000px;}
.lse{letter-spacing:22.260000px;}
.ls22{letter-spacing:23.400000px;}
.ls2e{letter-spacing:30.984000px;}
.lsd{letter-spacing:33.540000px;}
.ls20{letter-spacing:35.400000px;}
.ls13{letter-spacing:42.000000px;}
.ls30{letter-spacing:83.340000px;}
.ls1b{letter-spacing:90.660000px;}
.ls1a{letter-spacing:100.770000px;}
.ls21{letter-spacing:124.170000px;}
.ls25{letter-spacing:203.460000px;}
.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;}
}
.ws13{word-spacing:-18.288000px;}
.wse{word-spacing:-18.168000px;}
.ws10{word-spacing:-18.048000px;}
.wsa{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.952000px;}
.wsc{word-spacing:-17.880000px;}
.wsd{word-spacing:-17.832000px;}
.ws15{word-spacing:-16.626000px;}
.ws17{word-spacing:-16.596000px;}
.ws14{word-spacing:-16.500000px;}
.ws16{word-spacing:-16.278000px;}
.ws11{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.880000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:0.000000px;}
._3a{margin-left:-4.968000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._4{width:2.478000px;}
._7{width:4.002000px;}
._d{width:5.976000px;}
._14{width:7.344000px;}
._25{width:8.382000px;}
._2c{width:10.152000px;}
._8{width:11.736000px;}
._9{width:12.744000px;}
._52{width:13.854000px;}
._35{width:15.120000px;}
._1f{width:16.128000px;}
._5{width:19.368000px;}
._6{width:20.424000px;}
._31{width:21.912000px;}
._15{width:23.172000px;}
._a{width:24.552000px;}
._24{width:25.560000px;}
._4a{width:27.102000px;}
._2f{width:28.428000px;}
._1e{width:29.520000px;}
._10{width:31.320000px;}
._11{width:32.430000px;}
._1d{width:34.344000px;}
._20{width:35.352000px;}
._30{width:36.360000px;}
._42{width:37.380000px;}
._16{width:39.456000px;}
._17{width:40.536000px;}
._39{width:41.574000px;}
._13{width:42.984000px;}
._2b{width:44.526000px;}
._5d{width:45.546000px;}
._18{width:46.800000px;}
._19{width:47.808000px;}
._4b{width:48.918000px;}
._32{width:50.256000px;}
._5c{width:51.408000px;}
._1c{width:52.488000px;}
._33{width:53.496000px;}
._34{width:54.720000px;}
._49{width:56.160000px;}
._48{width:57.744000px;}
._2d{width:59.688000px;}
._69{width:60.912000px;}
._4c{width:62.208000px;}
._38{width:63.288000px;}
._28{width:65.040000px;}
._23{width:66.168000px;}
._b{width:67.434000px;}
._c{width:68.574000px;}
._21{width:71.064000px;}
._22{width:72.144000px;}
._1a{width:73.224000px;}
._1b{width:74.490000px;}
._e{width:75.600000px;}
._67{width:76.752000px;}
._4d{width:77.904000px;}
._4e{width:78.984000px;}
._2e{width:80.856000px;}
._6b{width:82.368000px;}
._53{width:83.952000px;}
._54{width:84.960000px;}
._3d{width:87.768000px;}
._27{width:89.568000px;}
._26{width:90.864000px;}
._59{width:93.096000px;}
._40{width:94.620000px;}
._57{width:97.056000px;}
._64{width:98.856000px;}
._36{width:100.878000px;}
._45{width:102.540000px;}
._66{width:103.896000px;}
._29{width:105.120000px;}
._2a{width:106.128000px;}
._5f{width:108.576000px;}
._63{width:109.716000px;}
._50{width:110.748000px;}
._4f{width:114.192000px;}
._3c{width:116.568000px;}
._5e{width:120.600000px;}
._46{width:123.480000px;}
._65{width:125.064000px;}
._3f{width:126.540000px;}
._5b{width:129.240000px;}
._55{width:140.184000px;}
._41{width:142.020000px;}
._37{width:151.200000px;}
._68{width:155.700000px;}
._f{width:156.996000px;}
._61{width:163.008000px;}
._5a{width:168.192000px;}
._44{width:184.680000px;}
._51{width:203.928000px;}
._62{width:233.712000px;}
._60{width:236.376000px;}
._58{width:256.680000px;}
._43{width:268.980000px;}
._3b{width:326.088000px;}
._47{width:341.520000px;}
._3e{width:347.184000px;}
._56{width:348.984000px;}
._12{width:545.112000px;}
._6a{width:1319.520000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y87{bottom:3.300000px;}
.yc3{bottom:3.600000px;}
.yd0{bottom:3.750000px;}
.y2a{bottom:3.900000px;}
.y76{bottom:3.915000px;}
.y7a{bottom:3.945000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y89{bottom:11.835000px;}
.y8c{bottom:11.850000px;}
.y90{bottom:12.000000px;}
.yd2{bottom:13.200000px;}
.y7c{bottom:14.250000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y9f{bottom:20.580000px;}
.yc1{bottom:22.650000px;}
.y29{bottom:24.600000px;}
.y100{bottom:24.607500px;}
.ye7{bottom:24.615000px;}
.y78{bottom:24.645000px;}
.y8f{bottom:29.085000px;}
.y8b{bottom:29.100000px;}
.ya6{bottom:29.250000px;}
.y94{bottom:29.257500px;}
.y9b{bottom:29.280000px;}
.ycb{bottom:32.100000px;}
.y9{bottom:33.900000px;}
.y82{bottom:34.950000px;}
.y103{bottom:34.980000px;}
.y5{bottom:36.000000px;}
.y8d{bottom:37.800000px;}
.y97{bottom:37.807500px;}
.y9e{bottom:37.830000px;}
.yc0{bottom:41.550000px;}
.ycf{bottom:41.700000px;}
.y28{bottom:45.300000px;}
.ye6{bottom:45.315000px;}
.y105{bottom:45.330000px;}
.y79{bottom:45.345000px;}
.ya1{bottom:46.500000px;}
.y93{bottom:46.507500px;}
.y9a{bottom:46.530000px;}
.yc5{bottom:51.150000px;}
.ya4{bottom:55.050000px;}
.y96{bottom:55.057500px;}
.y9d{bottom:55.080000px;}
.y108{bottom:55.650000px;}
.y102{bottom:55.680000px;}
.y3{bottom:57.637500px;}
.yc2{bottom:60.600000px;}
.ya5{bottom:63.750000px;}
.y27{bottom:66.000000px;}
.yed{bottom:66.030000px;}
.yca{bottom:70.050000px;}
.ya3{bottom:72.300000px;}
.y95{bottom:72.307500px;}
.y9c{bottom:72.330000px;}
.y106{bottom:76.380000px;}
.yc7{bottom:79.500000px;}
.yce{bottom:79.650000px;}
.y2{bottom:81.637500px;}
.y26{bottom:86.700000px;}
.y104{bottom:86.730000px;}
.yec{bottom:86.745000px;}
.yd1{bottom:89.100000px;}
.ya2{bottom:89.550000px;}
.yc6{bottom:98.535000px;}
.ycd{bottom:98.550000px;}
.yc9{bottom:98.595000px;}
.y73{bottom:106.987500px;}
.y25{bottom:107.400000px;}
.y3d{bottom:108.637500px;}
.ye4{bottom:110.137500px;}
.y98{bottom:110.737500px;}
.y143{bottom:114.337500px;}
.ybe{bottom:119.587500px;}
.y24{bottom:128.100000px;}
.y12c{bottom:128.587500px;}
.y92{bottom:128.737500px;}
.y72{bottom:130.837500px;}
.y3c{bottom:132.337500px;}
.yff{bottom:133.237500px;}
.ye3{bottom:133.987500px;}
.y142{bottom:135.037500px;}
.ybd{bottom:143.437500px;}
.y23{bottom:148.800000px;}
.y65{bottom:150.795000px;}
.y12b{bottom:152.430000px;}
.y60{bottom:152.580000px;}
.y71{bottom:154.545000px;}
.y141{bottom:155.745000px;}
.y3b{bottom:156.195000px;}
.ye2{bottom:157.845000px;}
.ybc{bottom:167.295000px;}
.y22{bottom:169.545000px;}
.y64{bottom:174.645000px;}
.yfe{bottom:175.380000px;}
.y12a{bottom:176.145000px;}
.y5f{bottom:176.445000px;}
.y70{bottom:178.380000px;}
.y3a{bottom:180.045000px;}
.ye1{bottom:181.545000px;}
.y21{bottom:190.245000px;}
.ybb{bottom:191.145000px;}
.y63{bottom:195.345000px;}
.y140{bottom:197.145000px;}
.y129{bottom:199.995000px;}
.y5e{bottom:200.145000px;}
.y6f{bottom:202.245000px;}
.y39{bottom:203.745000px;}
.ye0{bottom:205.380000px;}
.yba{bottom:214.845000px;}
.y91{bottom:215.745000px;}
.y13f{bottom:217.845000px;}
.y128{bottom:223.845000px;}
.y5d{bottom:223.995000px;}
.y6e{bottom:225.945000px;}
.y38{bottom:227.595000px;}
.ydf{bottom:229.245000px;}
.yfd{bottom:238.245000px;}
.y13e{bottom:238.545000px;}
.yb9{bottom:238.695000px;}
.y6d{bottom:245.880000px;}
.y127{bottom:247.695000px;}
.y5c{bottom:247.845000px;}
.y8e{bottom:250.995000px;}
.y37{bottom:251.445000px;}
.yde{bottom:253.080000px;}
.y13d{bottom:259.245000px;}
.yb8{bottom:262.545000px;}
.yfc{bottom:266.580000px;}
.y126{bottom:271.395000px;}
.y5b{bottom:271.545000px;}
.y36{bottom:275.145000px;}
.ydd{bottom:276.795000px;}
.y13c{bottom:279.945000px;}
.yb7{bottom:286.245000px;}
.yfb{bottom:290.445000px;}
.y125{bottom:295.245000px;}
.y5a{bottom:295.395000px;}
.y35{bottom:298.995000px;}
.ydc{bottom:300.630000px;}
.y8a{bottom:303.495000px;}
.yb6{bottom:306.195000px;}
.yfa{bottom:314.295000px;}
.y124{bottom:319.095000px;}
.y59{bottom:319.245000px;}
.y13b{bottom:321.330000px;}
.y34{bottom:322.845000px;}
.ydb{bottom:324.495000px;}
.yf9{bottom:337.995000px;}
.y13a{bottom:342.045000px;}
.y123{bottom:342.795000px;}
.y58{bottom:342.945000px;}
.y33{bottom:346.545000px;}
.yda{bottom:348.195000px;}
.y88{bottom:355.995000px;}
.yf8{bottom:361.830000px;}
.y139{bottom:362.745000px;}
.y122{bottom:366.645000px;}
.y57{bottom:366.795000px;}
.y32{bottom:370.395000px;}
.yd9{bottom:372.045000px;}
.y138{bottom:383.475000px;}
.yf7{bottom:385.725000px;}
.y121{bottom:390.525000px;}
.y56{bottom:390.675000px;}
.y86{bottom:391.275000px;}
.y165{bottom:392.775000px;}
.y31{bottom:394.275000px;}
.yd8{bottom:395.925000px;}
.y137{bottom:404.175000px;}
.yf6{bottom:409.425000px;}
.y120{bottom:414.225000px;}
.y55{bottom:414.525000px;}
.y85{bottom:416.325000px;}
.y164{bottom:416.475000px;}
.y62{bottom:417.825000px;}
.y30{bottom:418.125000px;}
.yd7{bottom:419.625000px;}
.y136{bottom:424.875000px;}
.yf5{bottom:433.275000px;}
.y11f{bottom:438.075000px;}
.y54{bottom:438.225000px;}
.y84{bottom:440.025000px;}
.y163{bottom:440.325000px;}
.y2f{bottom:441.825000px;}
.yd6{bottom:443.475000px;}
.y135{bottom:445.575000px;}
.yf4{bottom:457.125000px;}
.y11e{bottom:461.925000px;}
.y53{bottom:462.075000px;}
.y83{bottom:463.875000px;}
.y162{bottom:464.175000px;}
.y2e{bottom:465.675000px;}
.y134{bottom:466.125000px;}
.yd5{bottom:467.325000px;}
.yf3{bottom:480.825000px;}
.y81{bottom:481.425000px;}
.y52{bottom:482.025000px;}
.y11d{bottom:485.625000px;}
.y133{bottom:486.825000px;}
.y6c{bottom:487.275000px;}
.y161{bottom:487.875000px;}
.yd4{bottom:491.025000px;}
.y2d{bottom:498.375000px;}
.yb5{bottom:504.525000px;}
.yf2{bottom:504.675000px;}
.y132{bottom:507.525000px;}
.y160{bottom:508.575000px;}
.y11c{bottom:509.475000px;}
.y6b{bottom:511.125000px;}
.yd3{bottom:514.875000px;}
.y2c{bottom:515.175000px;}
.yb4{bottom:528.225000px;}
.yf1{bottom:528.525000px;}
.y15f{bottom:529.275000px;}
.y131{bottom:531.375000px;}
.ycc{bottom:532.425000px;}
.y11b{bottom:533.325000px;}
.y6a{bottom:534.975000px;}
.y80{bottom:544.275000px;}
.y15e{bottom:549.975000px;}
.yb3{bottom:552.075000px;}
.yf0{bottom:552.375000px;}
.y130{bottom:555.225000px;}
.y2b{bottom:556.575000px;}
.y11a{bottom:557.025000px;}
.y69{bottom:558.675000px;}
.yef{bottom:569.925000px;}
.y15d{bottom:570.675000px;}
.yb2{bottom:575.925000px;}
.y20{bottom:577.275000px;}
.y12f{bottom:579.075000px;}
.y119{bottom:580.875000px;}
.y68{bottom:582.525000px;}
.y7f{bottom:586.425000px;}
.y15c{bottom:591.375000px;}
.yb1{bottom:599.625000px;}
.y12e{bottom:602.775000px;}
.y118{bottom:604.725000px;}
.y67{bottom:606.375000px;}
.y7e{bottom:607.875000px;}
.y15b{bottom:612.075000px;}
.yb0{bottom:623.475000px;}
.y66{bottom:626.175000px;}
.y12d{bottom:626.625000px;}
.y117{bottom:628.425000px;}
.yee{bottom:632.625000px;}
.y15a{bottom:632.775000px;}
.yc8{bottom:647.025000px;}
.yaf{bottom:647.325000px;}
.y7d{bottom:650.025000px;}
.y61{bottom:650.475000px;}
.y116{bottom:652.275000px;}
.y159{bottom:653.475000px;}
.yae{bottom:671.025000px;}
.y51{bottom:674.175000px;}
.y115{bottom:676.125000px;}
.y7b{bottom:692.175000px;}
.yad{bottom:694.875000px;}
.y50{bottom:698.025000px;}
.y114{bottom:699.975000px;}
.y158{bottom:715.575000px;}
.yeb{bottom:716.175000px;}
.yac{bottom:718.725000px;}
.y4f{bottom:721.875000px;}
.y113{bottom:723.675000px;}
.y77{bottom:734.325000px;}
.y157{bottom:736.275000px;}
.yab{bottom:742.620000px;}
.y4e{bottom:745.620000px;}
.y112{bottom:747.570000px;}
.y156{bottom:757.020000px;}
.yc4{bottom:761.670000px;}
.yaa{bottom:766.320000px;}
.y4d{bottom:769.470000px;}
.y111{bottom:771.420000px;}
.y155{bottom:777.720000px;}
.ya9{bottom:783.870000px;}
.y1f{bottom:787.920000px;}
.y4c{bottom:793.320000px;}
.y110{bottom:795.120000px;}
.y75{bottom:797.205000px;}
.y154{bottom:798.420000px;}
.y1e{bottom:807.120000px;}
.y4b{bottom:817.020000px;}
.y74{bottom:818.670000px;}
.y10f{bottom:818.970000px;}
.y153{bottom:819.120000px;}
.yea{bottom:820.455000px;}
.y1d{bottom:827.820000px;}
.ya8{bottom:836.370000px;}
.y152{bottom:839.820000px;}
.y4a{bottom:840.870000px;}
.y10e{bottom:842.820000px;}
.y1c{bottom:848.520000px;}
.y151{bottom:860.520000px;}
.y49{bottom:864.720000px;}
.y10d{bottom:866.520000px;}
.y1b{bottom:869.220000px;}
.ya7{bottom:871.620000px;}
.ybf{bottom:876.270000px;}
.y150{bottom:881.220000px;}
.ye9{bottom:883.320000px;}
.y48{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y10c{bottom:890.370000px;}
.y14f{bottom:901.920000px;}
.y19{bottom:910.620000px;}
.y47{bottom:912.270000px;}
.y10b{bottom:914.220000px;}
.y14e{bottom:922.620000px;}
.ye8{bottom:925.470000px;}
.y18{bottom:931.320000px;}
.y46{bottom:936.120000px;}
.y10a{bottom:937.920000px;}
.y14d{bottom:943.320000px;}
.y17{bottom:952.020000px;}
.y45{bottom:959.970000px;}
.y109{bottom:961.770000px;}
.y14c{bottom:964.020000px;}
.y16{bottom:972.720000px;}
.ya0{bottom:975.870000px;}
.y107{bottom:979.320000px;}
.y44{bottom:983.670000px;}
.y14b{bottom:984.720000px;}
.y15{bottom:993.420000px;}
.y14a{bottom:1005.420000px;}
.y43{bottom:1007.520000px;}
.ye5{bottom:1009.005000px;}
.y14{bottom:1014.120000px;}
.y149{bottom:1026.120000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y148{bottom:1046.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y101{bottom:1062.870000px;}
.y147{bottom:1067.520000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y99{bottom:1080.120000px;}
.y146{bottom:1088.220000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y145{bottom:1108.950000px;}
.yf{bottom:1117.650000px;}
.y3e{bottom:1126.500000px;}
.y144{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h16{height:17.250000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h20{height:34.485000px;}
.h1c{height:34.500000px;}
.h18{height:34.537500px;}
.h10{height:41.400000px;}
.h19{height:43.066406px;}
.h1b{height:45.205078px;}
.h6{height:45.300000px;}
.h26{height:47.373047px;}
.h3{height:48.600000px;}
.h23{height:49.725586px;}
.h21{height:50.800781px;}
.hc{height:51.679688px;}
.h1a{height:51.750000px;}
.h7{height:52.998047px;}
.h14{height:54.246094px;}
.h11{height:54.878906px;}
.h5{height:55.942383px;}
.h17{height:58.857422px;}
.h4{height:58.886719px;}
.h2b{height:61.950000px;}
.h13{height:62.100000px;}
.h15{height:62.137500px;}
.h24{height:64.743164px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h2c{height:74.004654px;}
.h22{height:75.885000px;}
.h2{height:82.441406px;}
.h28{height:82.785000px;}
.h2a{height:82.800000px;}
.h1d{height:86.250000px;}
.h1e{height:86.287500px;}
.h1f{height:103.500000px;}
.h29{height:103.537500px;}
.h25{height:113.850000px;}
.h27{height:113.887500px;}
.he{height:207.045000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:88.200000px;}
.w12{width:90.150000px;}
.w10{width:94.950000px;}
.wd{width:94.987500px;}
.w13{width:96.487500px;}
.w15{width:99.900000px;}
.w14{width:103.050000px;}
.w17{width:117.000000px;}
.w1a{width:119.850000px;}
.w1d{width:119.887500px;}
.w16{width:122.887500px;}
.wa{width:123.037500px;}
.w1e{width:126.450000px;}
.w1b{width:126.487500px;}
.wc{width:137.550000px;}
.wf{width:137.587500px;}
.w1c{width:155.100000px;}
.w19{width:155.145000px;}
.we{width:168.900000px;}
.w11{width:168.930000px;}
.w18{width:172.230000px;}
.w6{width:178.350000px;}
.wb{width:190.200000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x22{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x3d{left:69.449987px;}
.x10{left:74.699987px;}
.x23{left:95.699987px;}
.x21{left:100.200000px;}
.x20{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x35{left:145.237500px;}
.x3c{left:149.287487px;}
.x2f{left:181.245000px;}
.x37{left:188.145000px;}
.x36{left:262.995000px;}
.x30{left:276.945000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x38{left:308.745000px;}
.x31{left:428.174987px;}
.x26{left:432.374987px;}
.x29{left:434.174987px;}
.x2a{left:436.424987px;}
.x39{left:446.925000px;}
.x24{left:457.274987px;}
.x1c{left:459.674987px;}
.x12{left:468.674987px;}
.x1a{left:470.324987px;}
.x1d{left:484.874987px;}
.x1e{left:488.924987px;}
.x18{left:489.974987px;}
.x19{left:506.624987px;}
.x25{left:510.374987px;}
.x2b{left:546.525000px;}
.x32{left:548.925000px;}
.x2d{left:595.875000px;}
.x3a{left:602.775000px;}
.x13{left:608.324987px;}
.xc{left:625.425000px;}
.x14{left:633.074987px;}
.x33{left:646.155000px;}
.x15{left:657.719987px;}
.x2c{left:670.320000px;}
.x2e{left:691.620000px;}
.x1f{left:696.569987px;}
.xf{left:713.655000px;}
.x11{left:716.669987px;}
.x3b{left:723.405000px;}
.x17{left:728.204987px;}
.x1b{left:747.569987px;}
.x34{left:749.970000px;}
.x28{left:784.004987px;}
.x27{left:789.119987px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls29{letter-spacing:-0.197333pt;}
.ls17{letter-spacing:-0.149333pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls19{letter-spacing:-0.042667pt;}
.ls32{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1c{letter-spacing:0.042667pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.074667pt;}
.ls2a{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.149333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.197333pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.240000pt;}
.ls27{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls33{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls15{letter-spacing:1.066667pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls26{letter-spacing:3.680000pt;}
.ls4{letter-spacing:7.466667pt;}
.lsc{letter-spacing:8.000000pt;}
.ls11{letter-spacing:9.600000pt;}
.ls31{letter-spacing:14.400000pt;}
.ls2c{letter-spacing:15.466667pt;}
.ls2d{letter-spacing:18.133333pt;}
.ls10{letter-spacing:19.733333pt;}
.lse{letter-spacing:19.786667pt;}
.ls22{letter-spacing:20.800000pt;}
.ls2e{letter-spacing:27.541333pt;}
.lsd{letter-spacing:29.813333pt;}
.ls20{letter-spacing:31.466667pt;}
.ls13{letter-spacing:37.333333pt;}
.ls30{letter-spacing:74.080000pt;}
.ls1b{letter-spacing:80.586667pt;}
.ls1a{letter-spacing:89.573333pt;}
.ls21{letter-spacing:110.373333pt;}
.ls25{letter-spacing:180.853333pt;}
.ws13{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.149333pt;}
.ws10{word-spacing:-16.042667pt;}
.wsa{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.957333pt;}
.wsc{word-spacing:-15.893333pt;}
.wsd{word-spacing:-15.850667pt;}
.ws15{word-spacing:-14.778667pt;}
.ws17{word-spacing:-14.752000pt;}
.ws14{word-spacing:-14.666667pt;}
.ws16{word-spacing:-14.469333pt;}
.ws11{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws12{word-spacing:-13.226667pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:0.000000pt;}
._3a{margin-left:-4.416000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._4{width:2.202667pt;}
._7{width:3.557333pt;}
._d{width:5.312000pt;}
._14{width:6.528000pt;}
._25{width:7.450667pt;}
._2c{width:9.024000pt;}
._8{width:10.432000pt;}
._9{width:11.328000pt;}
._52{width:12.314667pt;}
._35{width:13.440000pt;}
._1f{width:14.336000pt;}
._5{width:17.216000pt;}
._6{width:18.154667pt;}
._31{width:19.477333pt;}
._15{width:20.597333pt;}
._a{width:21.824000pt;}
._24{width:22.720000pt;}
._4a{width:24.090667pt;}
._2f{width:25.269333pt;}
._1e{width:26.240000pt;}
._10{width:27.840000pt;}
._11{width:28.826667pt;}
._1d{width:30.528000pt;}
._20{width:31.424000pt;}
._30{width:32.320000pt;}
._42{width:33.226667pt;}
._16{width:35.072000pt;}
._17{width:36.032000pt;}
._39{width:36.954667pt;}
._13{width:38.208000pt;}
._2b{width:39.578667pt;}
._5d{width:40.485333pt;}
._18{width:41.600000pt;}
._19{width:42.496000pt;}
._4b{width:43.482667pt;}
._32{width:44.672000pt;}
._5c{width:45.696000pt;}
._1c{width:46.656000pt;}
._33{width:47.552000pt;}
._34{width:48.640000pt;}
._49{width:49.920000pt;}
._48{width:51.328000pt;}
._2d{width:53.056000pt;}
._69{width:54.144000pt;}
._4c{width:55.296000pt;}
._38{width:56.256000pt;}
._28{width:57.813333pt;}
._23{width:58.816000pt;}
._b{width:59.941333pt;}
._c{width:60.954667pt;}
._21{width:63.168000pt;}
._22{width:64.128000pt;}
._1a{width:65.088000pt;}
._1b{width:66.213333pt;}
._e{width:67.200000pt;}
._67{width:68.224000pt;}
._4d{width:69.248000pt;}
._4e{width:70.208000pt;}
._2e{width:71.872000pt;}
._6b{width:73.216000pt;}
._53{width:74.624000pt;}
._54{width:75.520000pt;}
._3d{width:78.016000pt;}
._27{width:79.616000pt;}
._26{width:80.768000pt;}
._59{width:82.752000pt;}
._40{width:84.106667pt;}
._57{width:86.272000pt;}
._64{width:87.872000pt;}
._36{width:89.669333pt;}
._45{width:91.146667pt;}
._66{width:92.352000pt;}
._29{width:93.440000pt;}
._2a{width:94.336000pt;}
._5f{width:96.512000pt;}
._63{width:97.525333pt;}
._50{width:98.442667pt;}
._4f{width:101.504000pt;}
._3c{width:103.616000pt;}
._5e{width:107.200000pt;}
._46{width:109.760000pt;}
._65{width:111.168000pt;}
._3f{width:112.480000pt;}
._5b{width:114.880000pt;}
._55{width:124.608000pt;}
._41{width:126.240000pt;}
._37{width:134.400000pt;}
._68{width:138.400000pt;}
._f{width:139.552000pt;}
._61{width:144.896000pt;}
._5a{width:149.504000pt;}
._44{width:164.160000pt;}
._51{width:181.269333pt;}
._62{width:207.744000pt;}
._60{width:210.112000pt;}
._58{width:228.160000pt;}
._43{width:239.093333pt;}
._3b{width:289.856000pt;}
._47{width:303.573333pt;}
._3e{width:308.608000pt;}
._56{width:310.208000pt;}
._12{width:484.544000pt;}
._6a{width:1172.906667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y87{bottom:2.933333pt;}
.yc3{bottom:3.200000pt;}
.yd0{bottom:3.333333pt;}
.y2a{bottom:3.466667pt;}
.y76{bottom:3.480000pt;}
.y7a{bottom:3.506667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y89{bottom:10.520000pt;}
.y8c{bottom:10.533333pt;}
.y90{bottom:10.666667pt;}
.yd2{bottom:11.733333pt;}
.y7c{bottom:12.666667pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y9f{bottom:18.293333pt;}
.yc1{bottom:20.133333pt;}
.y29{bottom:21.866667pt;}
.y100{bottom:21.873333pt;}
.ye7{bottom:21.880000pt;}
.y78{bottom:21.906667pt;}
.y8f{bottom:25.853333pt;}
.y8b{bottom:25.866667pt;}
.ya6{bottom:26.000000pt;}
.y94{bottom:26.006667pt;}
.y9b{bottom:26.026667pt;}
.ycb{bottom:28.533333pt;}
.y9{bottom:30.133333pt;}
.y82{bottom:31.066667pt;}
.y103{bottom:31.093333pt;}
.y5{bottom:32.000000pt;}
.y8d{bottom:33.600000pt;}
.y97{bottom:33.606667pt;}
.y9e{bottom:33.626667pt;}
.yc0{bottom:36.933333pt;}
.ycf{bottom:37.066667pt;}
.y28{bottom:40.266667pt;}
.ye6{bottom:40.280000pt;}
.y105{bottom:40.293333pt;}
.y79{bottom:40.306667pt;}
.ya1{bottom:41.333333pt;}
.y93{bottom:41.340000pt;}
.y9a{bottom:41.360000pt;}
.yc5{bottom:45.466667pt;}
.ya4{bottom:48.933333pt;}
.y96{bottom:48.940000pt;}
.y9d{bottom:48.960000pt;}
.y108{bottom:49.466667pt;}
.y102{bottom:49.493333pt;}
.y3{bottom:51.233333pt;}
.yc2{bottom:53.866667pt;}
.ya5{bottom:56.666667pt;}
.y27{bottom:58.666667pt;}
.yed{bottom:58.693333pt;}
.yca{bottom:62.266667pt;}
.ya3{bottom:64.266667pt;}
.y95{bottom:64.273333pt;}
.y9c{bottom:64.293333pt;}
.y106{bottom:67.893333pt;}
.yc7{bottom:70.666667pt;}
.yce{bottom:70.800000pt;}
.y2{bottom:72.566667pt;}
.y26{bottom:77.066667pt;}
.y104{bottom:77.093333pt;}
.yec{bottom:77.106667pt;}
.yd1{bottom:79.200000pt;}
.ya2{bottom:79.600000pt;}
.yc6{bottom:87.586667pt;}
.ycd{bottom:87.600000pt;}
.yc9{bottom:87.640000pt;}
.y73{bottom:95.100000pt;}
.y25{bottom:95.466667pt;}
.y3d{bottom:96.566667pt;}
.ye4{bottom:97.900000pt;}
.y98{bottom:98.433333pt;}
.y143{bottom:101.633333pt;}
.ybe{bottom:106.300000pt;}
.y24{bottom:113.866667pt;}
.y12c{bottom:114.300000pt;}
.y92{bottom:114.433333pt;}
.y72{bottom:116.300000pt;}
.y3c{bottom:117.633333pt;}
.yff{bottom:118.433333pt;}
.ye3{bottom:119.100000pt;}
.y142{bottom:120.033333pt;}
.ybd{bottom:127.500000pt;}
.y23{bottom:132.266667pt;}
.y65{bottom:134.040000pt;}
.y12b{bottom:135.493333pt;}
.y60{bottom:135.626667pt;}
.y71{bottom:137.373333pt;}
.y141{bottom:138.440000pt;}
.y3b{bottom:138.840000pt;}
.ye2{bottom:140.306667pt;}
.ybc{bottom:148.706667pt;}
.y22{bottom:150.706667pt;}
.y64{bottom:155.240000pt;}
.yfe{bottom:155.893333pt;}
.y12a{bottom:156.573333pt;}
.y5f{bottom:156.840000pt;}
.y70{bottom:158.560000pt;}
.y3a{bottom:160.040000pt;}
.ye1{bottom:161.373333pt;}
.y21{bottom:169.106667pt;}
.ybb{bottom:169.906667pt;}
.y63{bottom:173.640000pt;}
.y140{bottom:175.240000pt;}
.y129{bottom:177.773333pt;}
.y5e{bottom:177.906667pt;}
.y6f{bottom:179.773333pt;}
.y39{bottom:181.106667pt;}
.ye0{bottom:182.560000pt;}
.yba{bottom:190.973333pt;}
.y91{bottom:191.773333pt;}
.y13f{bottom:193.640000pt;}
.y128{bottom:198.973333pt;}
.y5d{bottom:199.106667pt;}
.y6e{bottom:200.840000pt;}
.y38{bottom:202.306667pt;}
.ydf{bottom:203.773333pt;}
.yfd{bottom:211.773333pt;}
.y13e{bottom:212.040000pt;}
.yb9{bottom:212.173333pt;}
.y6d{bottom:218.560000pt;}
.y127{bottom:220.173333pt;}
.y5c{bottom:220.306667pt;}
.y8e{bottom:223.106667pt;}
.y37{bottom:223.506667pt;}
.yde{bottom:224.960000pt;}
.y13d{bottom:230.440000pt;}
.yb8{bottom:233.373333pt;}
.yfc{bottom:236.960000pt;}
.y126{bottom:241.240000pt;}
.y5b{bottom:241.373333pt;}
.y36{bottom:244.573333pt;}
.ydd{bottom:246.040000pt;}
.y13c{bottom:248.840000pt;}
.yb7{bottom:254.440000pt;}
.yfb{bottom:258.173333pt;}
.y125{bottom:262.440000pt;}
.y5a{bottom:262.573333pt;}
.y35{bottom:265.773333pt;}
.ydc{bottom:267.226667pt;}
.y8a{bottom:269.773333pt;}
.yb6{bottom:272.173333pt;}
.yfa{bottom:279.373333pt;}
.y124{bottom:283.640000pt;}
.y59{bottom:283.773333pt;}
.y13b{bottom:285.626667pt;}
.y34{bottom:286.973333pt;}
.ydb{bottom:288.440000pt;}
.yf9{bottom:300.440000pt;}
.y13a{bottom:304.040000pt;}
.y123{bottom:304.706667pt;}
.y58{bottom:304.840000pt;}
.y33{bottom:308.040000pt;}
.yda{bottom:309.506667pt;}
.y88{bottom:316.440000pt;}
.yf8{bottom:321.626667pt;}
.y139{bottom:322.440000pt;}
.y122{bottom:325.906667pt;}
.y57{bottom:326.040000pt;}
.y32{bottom:329.240000pt;}
.yd9{bottom:330.706667pt;}
.y138{bottom:340.866667pt;}
.yf7{bottom:342.866667pt;}
.y121{bottom:347.133333pt;}
.y56{bottom:347.266667pt;}
.y86{bottom:347.800000pt;}
.y165{bottom:349.133333pt;}
.y31{bottom:350.466667pt;}
.yd8{bottom:351.933333pt;}
.y137{bottom:359.266667pt;}
.yf6{bottom:363.933333pt;}
.y120{bottom:368.200000pt;}
.y55{bottom:368.466667pt;}
.y85{bottom:370.066667pt;}
.y164{bottom:370.200000pt;}
.y62{bottom:371.400000pt;}
.y30{bottom:371.666667pt;}
.yd7{bottom:373.000000pt;}
.y136{bottom:377.666667pt;}
.yf5{bottom:385.133333pt;}
.y11f{bottom:389.400000pt;}
.y54{bottom:389.533333pt;}
.y84{bottom:391.133333pt;}
.y163{bottom:391.400000pt;}
.y2f{bottom:392.733333pt;}
.yd6{bottom:394.200000pt;}
.y135{bottom:396.066667pt;}
.yf4{bottom:406.333333pt;}
.y11e{bottom:410.600000pt;}
.y53{bottom:410.733333pt;}
.y83{bottom:412.333333pt;}
.y162{bottom:412.600000pt;}
.y2e{bottom:413.933333pt;}
.y134{bottom:414.333333pt;}
.yd5{bottom:415.400000pt;}
.yf3{bottom:427.400000pt;}
.y81{bottom:427.933333pt;}
.y52{bottom:428.466667pt;}
.y11d{bottom:431.666667pt;}
.y133{bottom:432.733333pt;}
.y6c{bottom:433.133333pt;}
.y161{bottom:433.666667pt;}
.yd4{bottom:436.466667pt;}
.y2d{bottom:443.000000pt;}
.yb5{bottom:448.466667pt;}
.yf2{bottom:448.600000pt;}
.y132{bottom:451.133333pt;}
.y160{bottom:452.066667pt;}
.y11c{bottom:452.866667pt;}
.y6b{bottom:454.333333pt;}
.yd3{bottom:457.666667pt;}
.y2c{bottom:457.933333pt;}
.yb4{bottom:469.533333pt;}
.yf1{bottom:469.800000pt;}
.y15f{bottom:470.466667pt;}
.y131{bottom:472.333333pt;}
.ycc{bottom:473.266667pt;}
.y11b{bottom:474.066667pt;}
.y6a{bottom:475.533333pt;}
.y80{bottom:483.800000pt;}
.y15e{bottom:488.866667pt;}
.yb3{bottom:490.733333pt;}
.yf0{bottom:491.000000pt;}
.y130{bottom:493.533333pt;}
.y2b{bottom:494.733333pt;}
.y11a{bottom:495.133333pt;}
.y69{bottom:496.600000pt;}
.yef{bottom:506.600000pt;}
.y15d{bottom:507.266667pt;}
.yb2{bottom:511.933333pt;}
.y20{bottom:513.133333pt;}
.y12f{bottom:514.733333pt;}
.y119{bottom:516.333333pt;}
.y68{bottom:517.800000pt;}
.y7f{bottom:521.266667pt;}
.y15c{bottom:525.666667pt;}
.yb1{bottom:533.000000pt;}
.y12e{bottom:535.800000pt;}
.y118{bottom:537.533333pt;}
.y67{bottom:539.000000pt;}
.y7e{bottom:540.333333pt;}
.y15b{bottom:544.066667pt;}
.yb0{bottom:554.200000pt;}
.y66{bottom:556.600000pt;}
.y12d{bottom:557.000000pt;}
.y117{bottom:558.600000pt;}
.yee{bottom:562.333333pt;}
.y15a{bottom:562.466667pt;}
.yc8{bottom:575.133333pt;}
.yaf{bottom:575.400000pt;}
.y7d{bottom:577.800000pt;}
.y61{bottom:578.200000pt;}
.y116{bottom:579.800000pt;}
.y159{bottom:580.866667pt;}
.yae{bottom:596.466667pt;}
.y51{bottom:599.266667pt;}
.y115{bottom:601.000000pt;}
.y7b{bottom:615.266667pt;}
.yad{bottom:617.666667pt;}
.y50{bottom:620.466667pt;}
.y114{bottom:622.200000pt;}
.y158{bottom:636.066667pt;}
.yeb{bottom:636.600000pt;}
.yac{bottom:638.866667pt;}
.y4f{bottom:641.666667pt;}
.y113{bottom:643.266667pt;}
.y77{bottom:652.733333pt;}
.y157{bottom:654.466667pt;}
.yab{bottom:660.106667pt;}
.y4e{bottom:662.773333pt;}
.y112{bottom:664.506667pt;}
.y156{bottom:672.906667pt;}
.yc4{bottom:677.040000pt;}
.yaa{bottom:681.173333pt;}
.y4d{bottom:683.973333pt;}
.y111{bottom:685.706667pt;}
.y155{bottom:691.306667pt;}
.ya9{bottom:696.773333pt;}
.y1f{bottom:700.373333pt;}
.y4c{bottom:705.173333pt;}
.y110{bottom:706.773333pt;}
.y75{bottom:708.626667pt;}
.y154{bottom:709.706667pt;}
.y1e{bottom:717.440000pt;}
.y4b{bottom:726.240000pt;}
.y74{bottom:727.706667pt;}
.y10f{bottom:727.973333pt;}
.y153{bottom:728.106667pt;}
.yea{bottom:729.293333pt;}
.y1d{bottom:735.840000pt;}
.ya8{bottom:743.440000pt;}
.y152{bottom:746.506667pt;}
.y4a{bottom:747.440000pt;}
.y10e{bottom:749.173333pt;}
.y1c{bottom:754.240000pt;}
.y151{bottom:764.906667pt;}
.y49{bottom:768.640000pt;}
.y10d{bottom:770.240000pt;}
.y1b{bottom:772.640000pt;}
.ya7{bottom:774.773333pt;}
.ybf{bottom:778.906667pt;}
.y150{bottom:783.306667pt;}
.ye9{bottom:785.173333pt;}
.y48{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y10c{bottom:791.440000pt;}
.y14f{bottom:801.706667pt;}
.y19{bottom:809.440000pt;}
.y47{bottom:810.906667pt;}
.y10b{bottom:812.640000pt;}
.y14e{bottom:820.106667pt;}
.ye8{bottom:822.640000pt;}
.y18{bottom:827.840000pt;}
.y46{bottom:832.106667pt;}
.y10a{bottom:833.706667pt;}
.y14d{bottom:838.506667pt;}
.y17{bottom:846.240000pt;}
.y45{bottom:853.306667pt;}
.y109{bottom:854.906667pt;}
.y14c{bottom:856.906667pt;}
.y16{bottom:864.640000pt;}
.ya0{bottom:867.440000pt;}
.y107{bottom:870.506667pt;}
.y44{bottom:874.373333pt;}
.y14b{bottom:875.306667pt;}
.y15{bottom:883.040000pt;}
.y14a{bottom:893.706667pt;}
.y43{bottom:895.573333pt;}
.ye5{bottom:896.893333pt;}
.y14{bottom:901.440000pt;}
.y149{bottom:912.106667pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y148{bottom:930.506667pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y101{bottom:944.773333pt;}
.y147{bottom:948.906667pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y99{bottom:960.106667pt;}
.y146{bottom:967.306667pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y145{bottom:985.733333pt;}
.yf{bottom:993.466667pt;}
.y3e{bottom:1001.333333pt;}
.y144{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h16{height:15.333333pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h20{height:30.653333pt;}
.h1c{height:30.666667pt;}
.h18{height:30.700000pt;}
.h10{height:36.800000pt;}
.h19{height:38.281250pt;}
.h1b{height:40.182292pt;}
.h6{height:40.266667pt;}
.h26{height:42.109375pt;}
.h3{height:43.200000pt;}
.h23{height:44.200521pt;}
.h21{height:45.156250pt;}
.hc{height:45.937500pt;}
.h1a{height:46.000000pt;}
.h7{height:47.109375pt;}
.h14{height:48.218750pt;}
.h11{height:48.781250pt;}
.h5{height:49.726562pt;}
.h17{height:52.317708pt;}
.h4{height:52.343750pt;}
.h2b{height:55.066667pt;}
.h13{height:55.200000pt;}
.h15{height:55.233333pt;}
.h24{height:57.549479pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h2c{height:65.781915pt;}
.h22{height:67.453333pt;}
.h2{height:73.281250pt;}
.h28{height:73.586667pt;}
.h2a{height:73.600000pt;}
.h1d{height:76.666667pt;}
.h1e{height:76.700000pt;}
.h1f{height:92.000000pt;}
.h29{height:92.033333pt;}
.h25{height:101.200000pt;}
.h27{height:101.233333pt;}
.he{height:184.040000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:78.400000pt;}
.w12{width:80.133333pt;}
.w10{width:84.400000pt;}
.wd{width:84.433333pt;}
.w13{width:85.766667pt;}
.w15{width:88.800000pt;}
.w14{width:91.600000pt;}
.w17{width:104.000000pt;}
.w1a{width:106.533333pt;}
.w1d{width:106.566667pt;}
.w16{width:109.233333pt;}
.wa{width:109.366667pt;}
.w1e{width:112.400000pt;}
.w1b{width:112.433333pt;}
.wc{width:122.266667pt;}
.wf{width:122.300000pt;}
.w1c{width:137.866667pt;}
.w19{width:137.906667pt;}
.we{width:150.133333pt;}
.w11{width:150.160000pt;}
.w18{width:153.093333pt;}
.w6{width:158.533333pt;}
.wb{width:169.066667pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x22{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x3d{left:61.733322pt;}
.x10{left:66.399988pt;}
.x23{left:85.066655pt;}
.x21{left:89.066667pt;}
.x20{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x35{left:129.100000pt;}
.x3c{left:132.699988pt;}
.x2f{left:161.106667pt;}
.x37{left:167.240000pt;}
.x36{left:233.773333pt;}
.x30{left:246.173333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x38{left:274.440000pt;}
.x31{left:380.599988pt;}
.x26{left:384.333322pt;}
.x29{left:385.933322pt;}
.x2a{left:387.933322pt;}
.x39{left:397.266667pt;}
.x24{left:406.466655pt;}
.x1c{left:408.599988pt;}
.x12{left:416.599988pt;}
.x1a{left:418.066655pt;}
.x1d{left:430.999988pt;}
.x1e{left:434.599988pt;}
.x18{left:435.533322pt;}
.x19{left:450.333322pt;}
.x25{left:453.666655pt;}
.x2b{left:485.800000pt;}
.x32{left:487.933333pt;}
.x2d{left:529.666667pt;}
.x3a{left:535.800000pt;}
.x13{left:540.733322pt;}
.xc{left:555.933333pt;}
.x14{left:562.733322pt;}
.x33{left:574.360000pt;}
.x15{left:584.639988pt;}
.x2c{left:595.840000pt;}
.x2e{left:614.773333pt;}
.x1f{left:619.173322pt;}
.xf{left:634.360000pt;}
.x11{left:637.039988pt;}
.x3b{left:643.026667pt;}
.x17{left:647.293322pt;}
.x1b{left:664.506655pt;}
.x34{left:666.640000pt;}
.x28{left:696.893322pt;}
.x27{left:701.439988pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
}




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