
    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_23395042de4eeea1b2f824cc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_84964dfa999ad760e258e366.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_685b5d35183deb8266443ad2.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c29862c3ecb72a6ad57820e8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_45ea4570a2fe098470f210fa.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfdc1df11a752720e3949d31.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_b66c0830825cf4001a0ec2a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968262;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_8243752f547dc2293b3cff55.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8d41243fb0e5cc78c65ab900.woff')format("woff");}.ff9{font-family:ff9;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-28.800000px;}
.v9{vertical-align:-17.460000px;}
.v5{vertical-align:-14.400000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.400000px;}
.v1{vertical-align:26.640000px;}
.v3{vertical-align:36.000000px;}
.va{vertical-align:41.040000px;}
.v2{vertical-align:42.480000px;}
.v4{vertical-align:78.480000px;}
.ls20{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.056880px;}
.ls18{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.152400px;}
.ls23{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.840000px;}
.ls10{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.296000px;}
.lse{letter-spacing:1.800000px;}
.ls6{letter-spacing:1.944000px;}
.ls17{letter-spacing:2.081520px;}
.lsf{letter-spacing:2.232000px;}
.ls7{letter-spacing:2.304000px;}
.lsb{letter-spacing:2.376000px;}
.ls1d{letter-spacing:2.801280px;}
.ls14{letter-spacing:2.801520px;}
.ls1a{letter-spacing:2.981520px;}
.lsa{letter-spacing:4.114080px;}
.lsd{letter-spacing:4.245840px;}
.ls12{letter-spacing:4.376880px;}
.lsc{letter-spacing:4.531680px;}
.ls11{letter-spacing:20.216880px;}
.ls16{letter-spacing:20.936880px;}
.ls15{letter-spacing:27.281520px;}
.ls1b{letter-spacing:28.001520px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws16{word-spacing:-71.928000px;}
.ws1b{word-spacing:-71.856000px;}
.wsc{word-spacing:-60.120000px;}
.ws14{word-spacing:-56.664000px;}
.ws18{word-spacing:-56.520000px;}
.ws1e{word-spacing:-56.448000px;}
.ws12{word-spacing:-55.944000px;}
.ws19{word-spacing:-55.824000px;}
.ws1f{word-spacing:-55.800000px;}
.wsb{word-spacing:-52.488000px;}
.ws17{word-spacing:-52.344000px;}
.ws7{word-spacing:-52.200000px;}
.ws9{word-spacing:-51.768000px;}
.wsa{word-spacing:-51.624000px;}
.ws10{word-spacing:-51.176880px;}
.ws8{word-spacing:-51.120000px;}
.ws11{word-spacing:-32.298480px;}
.ws1c{word-spacing:-31.966560px;}
.ws15{word-spacing:-31.846560px;}
.ws13{word-spacing:-31.246560px;}
.ws1d{word-spacing:-31.066560px;}
.ws1a{word-spacing:-30.526560px;}
.wsd{word-spacing:-29.985840px;}
.wse{word-spacing:-28.758960px;}
.wsf{word-spacing:-27.646560px;}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.712000px;}
.ws20{word-spacing:-16.712400px;}
.ws21{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.226440px;}
.ws3{word-spacing:0.000000px;}
._27{margin-left:-7.381200px;}
._1c{margin-left:-4.860000px;}
._9{margin-left:-3.564000px;}
._4{margin-left:-2.556000px;}
._1{margin-left:-1.116000px;}
._0{width:1.272000px;}
._c{width:2.352000px;}
._e{width:3.888000px;}
._f{width:5.112000px;}
._5{width:6.408000px;}
._6{width:7.800000px;}
._8{width:8.916000px;}
._10{width:10.656000px;}
._17{width:11.736000px;}
._a{width:12.744000px;}
._b{width:13.752000px;}
._18{width:15.336000px;}
._15{width:16.992000px;}
._7{width:19.680000px;}
._16{width:20.916000px;}
._3{width:22.032000px;}
._2{width:23.112000px;}
._13{width:24.984000px;}
._14{width:26.064000px;}
._1e{width:27.576000px;}
._1f{width:28.824000px;}
._20{width:30.312000px;}
._11{width:31.680000px;}
._12{width:33.048000px;}
._1d{width:34.152000px;}
._19{width:36.432000px;}
._2c{width:37.800000px;}
._29{width:41.830320px;}
._1a{width:45.720000px;}
._1b{width:46.872000px;}
._21{width:49.428240px;}
._28{width:57.826320px;}
._2d{width:73.161120px;}
._24{width:78.864000px;}
._2b{width:83.594880px;}
._25{width:90.259920px;}
._26{width:147.850320px;}
._23{width:156.792000px;}
._2a{width:165.804720px;}
._22{width:198.000000px;}
._d{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.120000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:6.300000px;}
.yb9{bottom:6.480000px;}
.ybc{bottom:28.080000px;}
.ye7{bottom:28.125000px;}
.yc1{bottom:28.260000px;}
.y2{bottom:46.800000px;}
.y1{bottom:66.960000px;}
.y7d{bottom:112.176000px;}
.y10d{bottom:115.596000px;}
.y2b{bottom:117.576000px;}
.y13b{bottom:121.716000px;}
.y5e{bottom:125.136000px;}
.yd8{bottom:128.916000px;}
.y4f{bottom:130.716000px;}
.y15d{bottom:135.936000px;}
.y10c{bottom:137.376000px;}
.y7c{bottom:143.496000px;}
.y184{bottom:148.356000px;}
.y2a{bottom:148.536000px;}
.yeb{bottom:151.230000px;}
.y13a{bottom:152.850000px;}
.y5d{bottom:156.090000px;}
.y10b{bottom:159.150000px;}
.y9e{bottom:159.330000px;}
.y15c{bottom:159.690000px;}
.yd7{bottom:159.870000px;}
.y4e{bottom:161.850000px;}
.yc3{bottom:169.950000px;}
.y183{bottom:172.110000px;}
.y7b{bottom:174.630000px;}
.y29{bottom:179.670000px;}
.y10a{bottom:180.930000px;}
.y15b{bottom:183.450000px;}
.y139{bottom:183.810000px;}
.y5c{bottom:187.410000px;}
.y9d{bottom:190.470000px;}
.yd6{bottom:191.010000px;}
.y4d{bottom:192.810000px;}
.yea{bottom:194.790000px;}
.y182{bottom:195.870000px;}
.yc2{bottom:200.910000px;}
.y109{bottom:202.890000px;}
.y7a{bottom:205.590000px;}
.y15a{bottom:207.390000px;}
.y28{bottom:210.630000px;}
.y138{bottom:214.950000px;}
.yc0{bottom:218.370000px;}
.y5b{bottom:219.090000px;}
.y181{bottom:219.810000px;}
.y9c{bottom:221.430000px;}
.yd5{bottom:221.970000px;}
.y4c{bottom:223.950000px;}
.y108{bottom:224.670000px;}
.y159{bottom:231.150000px;}
.y79{bottom:236.730000px;}
.ye9{bottom:238.530000px;}
.y27{bottom:241.770000px;}
.y180{bottom:243.570000px;}
.y137{bottom:245.910000px;}
.y107{bottom:247.170000px;}
.y5a{bottom:251.670000px;}
.y9b{bottom:252.570000px;}
.yd4{bottom:253.110000px;}
.y4b{bottom:254.910000px;}
.ybf{bottom:262.110000px;}
.y26{bottom:265.530000px;}
.y17f{bottom:267.330000px;}
.y78{bottom:268.050000px;}
.y136{bottom:277.050000px;}
.y158{bottom:278.670000px;}
.ye8{bottom:282.090000px;}
.y59{bottom:282.990000px;}
.y9a{bottom:283.530000px;}
.ybe{bottom:283.890000px;}
.yd3{bottom:284.070000px;}
.y4a{bottom:286.050000px;}
.y25{bottom:289.290000px;}
.y17e{bottom:291.090000px;}
.y77{bottom:299.370000px;}
.y157{bottom:302.610000px;}
.y135{bottom:308.010000px;}
.y24{bottom:313.050000px;}
.y58{bottom:314.490000px;}
.y99{bottom:314.670000px;}
.y17d{bottom:315.030000px;}
.yd2{bottom:315.210000px;}
.y49{bottom:317.010000px;}
.ye6{bottom:325.830000px;}
.y156{bottom:326.370000px;}
.ybd{bottom:327.450000px;}
.y76{bottom:330.690000px;}
.y23{bottom:337.035000px;}
.y17c{bottom:338.835000px;}
.y134{bottom:339.195000px;}
.y57{bottom:345.495000px;}
.y98{bottom:345.675000px;}
.yd1{bottom:346.215000px;}
.y48{bottom:348.015000px;}
.ybb{bottom:349.455000px;}
.y155{bottom:350.175000px;}
.y22{bottom:360.795000px;}
.y75{bottom:362.415000px;}
.y17b{bottom:362.595000px;}
.ye5{bottom:370.155000px;}
.y154{bottom:373.935000px;}
.y56{bottom:376.635000px;}
.y97{bottom:376.815000px;}
.yd0{bottom:377.355000px;}
.y47{bottom:379.155000px;}
.y21{bottom:384.555000px;}
.y17a{bottom:386.355000px;}
.y126{bottom:390.675000px;}
.yba{bottom:393.015000px;}
.y74{bottom:394.095000px;}
.y106{bottom:394.815000px;}
.y153{bottom:397.695000px;}
.y133{bottom:401.295000px;}
.y55{bottom:407.595000px;}
.y96{bottom:407.775000px;}
.y20{bottom:408.315000px;}
.y46{bottom:410.115000px;}
.yb8{bottom:414.795000px;}
.y105{bottom:416.595000px;}
.y152{bottom:421.635000px;}
.y125{bottom:421.815000px;}
.y73{bottom:425.595000px;}
.ye4{bottom:428.835000px;}
.y1f{bottom:432.255000px;}
.y179{bottom:434.055000px;}
.yb7{bottom:436.755000px;}
.y104{bottom:438.375000px;}
.y54{bottom:438.735000px;}
.y95{bottom:438.915000px;}
.ycf{bottom:439.455000px;}
.y45{bottom:441.255000px;}
.y151{bottom:445.395000px;}
.y124{bottom:452.775000px;}
.y1e{bottom:456.015000px;}
.y72{bottom:457.095000px;}
.y178{bottom:457.815000px;}
.yb5{bottom:459.255000px;}
.ye3{bottom:459.975000px;}
.y103{bottom:460.155000px;}
.y132{bottom:463.395000px;}
.y150{bottom:469.155000px;}
.y94{bottom:469.875000px;}
.y53{bottom:470.055000px;}
.yce{bottom:470.415000px;}
.y44{bottom:472.215000px;}
.y1d{bottom:479.775000px;}
.y177{bottom:481.575000px;}
.y102{bottom:482.115000px;}
.y123{bottom:483.915000px;}
.y71{bottom:488.055000px;}
.ye2{bottom:490.935000px;}
.y14f{bottom:492.915000px;}
.y131{bottom:494.355000px;}
.yb4{bottom:496.155000px;}
.y93{bottom:501.015000px;}
.y52{bottom:501.555000px;}
.y43{bottom:503.355000px;}
.y1c{bottom:503.535000px;}
.y101{bottom:503.895000px;}
.y176{bottom:505.335000px;}
.ye1{bottom:508.575000px;}
.y122{bottom:514.875000px;}
.y14e{bottom:516.855000px;}
.y70{bottom:519.195000px;}
.y130{bottom:525.495000px;}
.y100{bottom:525.675000px;}
.yb3{bottom:527.115000px;}
.y1b{bottom:527.475000px;}
.y175{bottom:529.275000px;}
.ye0{bottom:530.355000px;}
.y92{bottom:531.975000px;}
.ycd{bottom:532.515000px;}
.y51{bottom:533.415000px;}
.y42{bottom:534.315000px;}
.y14d{bottom:540.615000px;}
.y121{bottom:546.015000px;}
.yff{bottom:548.175000px;}
.y6f{bottom:550.155000px;}
.y1a{bottom:551.235000px;}
.ydf{bottom:552.135000px;}
.y174{bottom:553.035000px;}
.y12f{bottom:556.455000px;}
.yb2{bottom:558.255000px;}
.y91{bottom:563.115000px;}
.ycc{bottom:563.655000px;}
.y14c{bottom:564.375000px;}
.y50{bottom:565.095000px;}
.y41{bottom:565.455000px;}
.yde{bottom:573.915000px;}
.y19{bottom:574.995000px;}
.y173{bottom:576.795000px;}
.y120{bottom:576.975000px;}
.y6e{bottom:581.295000px;}
.yfe{bottom:585.075000px;}
.y12e{bottom:587.595000px;}
.y14b{bottom:588.135000px;}
.yb1{bottom:589.215000px;}
.y90{bottom:594.075000px;}
.ycb{bottom:594.975000px;}
.ydd{bottom:595.695000px;}
.y40{bottom:596.415000px;}
.y18{bottom:598.755000px;}
.y172{bottom:600.555000px;}
.y11f{bottom:608.145000px;}
.y14a{bottom:612.105000px;}
.y6d{bottom:612.285000px;}
.yfd{bottom:616.245000px;}
.ydc{bottom:617.685000px;}
.y12d{bottom:618.585000px;}
.yb0{bottom:620.385000px;}
.y17{bottom:622.725000px;}
.y171{bottom:624.525000px;}
.y8f{bottom:625.245000px;}
.yca{bottom:626.505000px;}
.y3f{bottom:627.585000px;}
.y149{bottom:635.865000px;}
.y11e{bottom:639.105000px;}
.ydb{bottom:639.465000px;}
.y6c{bottom:643.605000px;}
.y16{bottom:646.485000px;}
.yfc{bottom:647.205000px;}
.y170{bottom:648.285000px;}
.y12c{bottom:649.725000px;}
.yaf{bottom:651.705000px;}
.y8e{bottom:656.205000px;}
.yc9{bottom:658.005000px;}
.y3e{bottom:658.545000px;}
.y148{bottom:659.625000px;}
.yda{bottom:661.245000px;}
.y15{bottom:670.245000px;}
.y6b{bottom:671.505000px;}
.y16f{bottom:672.045000px;}
.yfb{bottom:678.345000px;}
.y6a{bottom:680.505000px;}
.y12b{bottom:680.685000px;}
.yae{bottom:683.205000px;}
.y147{bottom:683.385000px;}
.yd9{bottom:683.745000px;}
.y8d{bottom:687.345000px;}
.y11d{bottom:687.705000px;}
.yc8{bottom:688.965000px;}
.y3d{bottom:689.685000px;}
.yfa{bottom:695.805000px;}
.y14{bottom:701.385000px;}
.y146{bottom:707.325000px;}
.y11c{bottom:709.485000px;}
.y12a{bottom:711.825000px;}
.yad{bottom:714.705000px;}
.y69{bottom:717.225000px;}
.yf9{bottom:717.585000px;}
.y8c{bottom:718.305000px;}
.y16e{bottom:719.745000px;}
.yc7{bottom:720.105000px;}
.y3c{bottom:720.645000px;}
.y145{bottom:731.085000px;}
.y11b{bottom:731.265000px;}
.y13{bottom:732.345000px;}
.yf8{bottom:739.365000px;}
.y129{bottom:742.785000px;}
.y16d{bottom:743.505000px;}
.yac{bottom:745.665000px;}
.y68{bottom:748.905000px;}
.y8b{bottom:749.445000px;}
.yc6{bottom:751.065000px;}
.y3b{bottom:751.785000px;}
.y11a{bottom:753.225000px;}
.y144{bottom:754.845000px;}
.yf7{bottom:761.325000px;}
.y12{bottom:763.485000px;}
.y16c{bottom:767.265000px;}
.y128{bottom:773.925000px;}
.y119{bottom:775.005000px;}
.yab{bottom:776.805000px;}
.y143{bottom:778.605000px;}
.y8a{bottom:780.405000px;}
.y67{bottom:780.585000px;}
.yc5{bottom:782.205000px;}
.y3a{bottom:782.745000px;}
.yf6{bottom:783.105000px;}
.y16b{bottom:791.025000px;}
.y11{bottom:794.445000px;}
.y118{bottom:797.505000px;}
.y127{bottom:800.925000px;}
.y142{bottom:802.545000px;}
.yf5{bottom:804.885000px;}
.yaa{bottom:808.125000px;}
.y89{bottom:811.545000px;}
.y66{bottom:812.085000px;}
.yc4{bottom:813.525000px;}
.y39{bottom:813.885000px;}
.y16a{bottom:814.965000px;}
.y10{bottom:825.585000px;}
.y141{bottom:826.305000px;}
.yf4{bottom:826.665000px;}
.y117{bottom:834.405000px;}
.y169{bottom:838.725000px;}
.ya9{bottom:839.805000px;}
.y88{bottom:842.505000px;}
.y65{bottom:843.045000px;}
.y38{bottom:844.845000px;}
.yf3{bottom:848.625000px;}
.y140{bottom:850.065000px;}
.yf{bottom:856.545000px;}
.y168{bottom:862.485000px;}
.y116{bottom:865.545000px;}
.yf2{bottom:871.170000px;}
.ya7{bottom:871.890000px;}
.y87{bottom:873.690000px;}
.y13f{bottom:873.870000px;}
.y64{bottom:874.230000px;}
.y37{bottom:876.030000px;}
.ya8{bottom:879.090000px;}
.y167{bottom:886.290000px;}
.ye{bottom:887.550000px;}
.y115{bottom:896.550000px;}
.y13e{bottom:897.630000px;}
.ya6{bottom:903.930000px;}
.y86{bottom:904.650000px;}
.y63{bottom:905.190000px;}
.y36{bottom:906.990000px;}
.yf1{bottom:908.070000px;}
.y166{bottom:910.050000px;}
.y114{bottom:914.010000px;}
.yd{bottom:918.690000px;}
.y13d{bottom:921.570000px;}
.y165{bottom:933.990000px;}
.ya5{bottom:935.070000px;}
.y85{bottom:935.790000px;}
.y62{bottom:936.330000px;}
.y35{bottom:938.130000px;}
.yf0{bottom:939.030000px;}
.y13c{bottom:945.330000px;}
.yc{bottom:949.650000px;}
.y164{bottom:957.750000px;}
.y113{bottom:958.470000px;}
.ya4{bottom:966.030000px;}
.y84{bottom:966.750000px;}
.y61{bottom:967.470000px;}
.y34{bottom:969.090000px;}
.yef{bottom:970.170000px;}
.yb{bottom:980.790000px;}
.y163{bottom:981.510000px;}
.yee{bottom:987.630000px;}
.y112{bottom:995.370000px;}
.ya3{bottom:997.350000px;}
.y83{bottom:997.890000px;}
.y60{bottom:999.150000px;}
.y33{bottom:1000.230000px;}
.y162{bottom:1005.270000px;}
.ya{bottom:1011.750000px;}
.y111{bottom:1026.330000px;}
.y82{bottom:1028.850000px;}
.ya2{bottom:1029.030000px;}
.y161{bottom:1029.210000px;}
.y5f{bottom:1030.830000px;}
.y32{bottom:1031.190000px;}
.y9{bottom:1042.890000px;}
.y160{bottom:1052.970000px;}
.yed{bottom:1053.150000px;}
.y110{bottom:1057.470000px;}
.y81{bottom:1059.990000px;}
.ya1{bottom:1060.710000px;}
.y31{bottom:1062.330000px;}
.y8{bottom:1073.850000px;}
.y10f{bottom:1074.930000px;}
.y15f{bottom:1076.730000px;}
.y80{bottom:1091.130000px;}
.ya0{bottom:1092.390000px;}
.y30{bottom:1093.290000px;}
.yec{bottom:1096.710000px;}
.y7{bottom:1097.790000px;}
.y15e{bottom:1100.490000px;}
.y10e{bottom:1118.490000px;}
.y6{bottom:1121.550000px;}
.y7e{bottom:1123.350000px;}
.y9f{bottom:1124.070000px;}
.y2f{bottom:1124.430000px;}
.y7f{bottom:1130.550000px;}
.y5{bottom:1145.340000px;}
.y2e{bottom:1145.700000px;}
.y2d{bottom:1168.380000px;}
.y4{bottom:1169.100000px;}
.y2c{bottom:1192.140000px;}
.y3{bottom:1193.040000px;}
.hd{height:21.780000px;}
.h14{height:21.816000px;}
.hf{height:21.960000px;}
.h11{height:21.996000px;}
.hc{height:43.082578px;}
.h10{height:43.560000px;}
.h13{height:43.596000px;}
.h12{height:43.740000px;}
.he{height:47.901094px;}
.h3{height:50.800781px;}
.h6{height:51.996094px;}
.h4{height:52.066406px;}
.h5{height:59.343750px;}
.h7{height:60.679688px;}
.h2{height:65.884219px;}
.h8{height:69.722578px;}
.h9{height:85.562578px;}
.hb{height:96.679688px;}
.ha{height:121.562578px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:58.500000px;}
.w12{width:58.680000px;}
.w10{width:58.716000px;}
.we{width:59.436000px;}
.w5{width:62.100000px;}
.w1a{width:64.800000px;}
.w1b{width:65.736000px;}
.w7{width:67.860000px;}
.w9{width:68.076000px;}
.wf{width:70.380000px;}
.w11{width:71.100000px;}
.wa{width:77.040000px;}
.w19{width:81.216000px;}
.w8{width:86.220000px;}
.w18{width:90.540000px;}
.w1c{width:98.820000px;}
.w15{width:108.216000px;}
.w14{width:114.300000px;}
.wc{width:120.816000px;}
.wb{width:120.960000px;}
.w1e{width:130.176000px;}
.w1f{width:142.560000px;}
.w23{width:148.356000px;}
.w22{width:156.780000px;}
.w20{width:157.170000px;}
.w13{width:206.130000px;}
.w25{width:207.750000px;}
.w26{width:211.710000px;}
.w3{width:231.510000px;}
.w17{width:242.130000px;}
.w1d{width:247.170000px;}
.w16{width:248.430000px;}
.w24{width:257.610000px;}
.w21{width:371.955000px;}
.w6{width:377.895000px;}
.w4{width:383.475000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x2{left:108.035987px;}
.x2d{left:124.956000px;}
.x11{left:162.029987px;}
.xf{left:179.129987px;}
.x37{left:199.109987px;}
.xb{left:200.909987px;}
.x9{left:208.649987px;}
.x32{left:217.469987px;}
.x20{left:228.990000px;}
.x2b{left:249.869987px;}
.x27{left:254.909987px;}
.xa{left:273.809987px;}
.x12{left:275.969987px;}
.x2c{left:279.434987px;}
.x28{left:314.175000px;}
.xd{left:321.374987px;}
.xe{left:329.474987px;}
.xc{left:332.534987px;}
.x16{left:334.874987px;}
.x1b{left:337.754987px;}
.x18{left:339.555000px;}
.x10{left:346.934987px;}
.x13{left:350.714987px;}
.x33{left:355.215000px;}
.x1a{left:362.954987px;}
.x3{left:364.394987px;}
.x38{left:365.655000px;}
.x2e{left:367.095000px;}
.x14{left:388.514987px;}
.x21{left:408.315000px;}
.x29{left:428.475000px;}
.x1{left:438.194987px;}
.x8{left:446.474987px;}
.x2f{left:457.635000px;}
.x22{left:467.745000px;}
.x35{left:479.985000px;}
.x1c{left:485.925000px;}
.x15{left:514.904987px;}
.x2a{left:536.685000px;}
.x23{left:538.125000px;}
.x1d{left:553.785000px;}
.x7{left:573.044987px;}
.x24{left:596.625000px;}
.x30{left:603.645000px;}
.x6{left:608.504987px;}
.x5{left:624.524987px;}
.x34{left:627.945000px;}
.x36{left:636.765000px;}
.x1e{left:640.005000px;}
.x4{left:650.984987px;}
.x25{left:655.350000px;}
.x31{left:669.390000px;}
.x1f{left:708.090000px;}
.x19{left:723.030000px;}
.x26{left:726.450000px;}
@media print{
.v8{vertical-align:-25.600000pt;}
.v9{vertical-align:-15.520000pt;}
.v5{vertical-align:-12.800000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.800000pt;}
.v1{vertical-align:23.680000pt;}
.v3{vertical-align:32.000000pt;}
.va{vertical-align:36.480000pt;}
.v2{vertical-align:37.760000pt;}
.v4{vertical-align:69.760000pt;}
.ls20{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.050560pt;}
.ls18{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.135467pt;}
.ls23{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls10{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.152000pt;}
.lse{letter-spacing:1.600000pt;}
.ls6{letter-spacing:1.728000pt;}
.ls17{letter-spacing:1.850240pt;}
.lsf{letter-spacing:1.984000pt;}
.ls7{letter-spacing:2.048000pt;}
.lsb{letter-spacing:2.112000pt;}
.ls1d{letter-spacing:2.490027pt;}
.ls14{letter-spacing:2.490240pt;}
.ls1a{letter-spacing:2.650240pt;}
.lsa{letter-spacing:3.656960pt;}
.lsd{letter-spacing:3.774080pt;}
.ls12{letter-spacing:3.890560pt;}
.lsc{letter-spacing:4.028160pt;}
.ls11{letter-spacing:17.970560pt;}
.ls16{letter-spacing:18.610560pt;}
.ls15{letter-spacing:24.250240pt;}
.ls1b{letter-spacing:24.890240pt;}
.ws1{word-spacing:-64.000000pt;}
.ws16{word-spacing:-63.936000pt;}
.ws1b{word-spacing:-63.872000pt;}
.wsc{word-spacing:-53.440000pt;}
.ws14{word-spacing:-50.368000pt;}
.ws18{word-spacing:-50.240000pt;}
.ws1e{word-spacing:-50.176000pt;}
.ws12{word-spacing:-49.728000pt;}
.ws19{word-spacing:-49.621333pt;}
.ws1f{word-spacing:-49.600000pt;}
.wsb{word-spacing:-46.656000pt;}
.ws17{word-spacing:-46.528000pt;}
.ws7{word-spacing:-46.400000pt;}
.ws9{word-spacing:-46.016000pt;}
.wsa{word-spacing:-45.888000pt;}
.ws10{word-spacing:-45.490560pt;}
.ws8{word-spacing:-45.440000pt;}
.ws11{word-spacing:-28.709760pt;}
.ws1c{word-spacing:-28.414720pt;}
.ws15{word-spacing:-28.308053pt;}
.ws13{word-spacing:-27.774720pt;}
.ws1d{word-spacing:-27.614720pt;}
.ws1a{word-spacing:-27.134720pt;}
.wsd{word-spacing:-26.654080pt;}
.wse{word-spacing:-25.563520pt;}
.wsf{word-spacing:-24.574720pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws20{word-spacing:-14.855467pt;}
.ws21{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3{word-spacing:0.000000pt;}
._27{margin-left:-6.561067pt;}
._1c{margin-left:-4.320000pt;}
._9{margin-left:-3.168000pt;}
._4{margin-left:-2.272000pt;}
._1{margin-left:-0.992000pt;}
._0{width:1.130667pt;}
._c{width:2.090667pt;}
._e{width:3.456000pt;}
._f{width:4.544000pt;}
._5{width:5.696000pt;}
._6{width:6.933333pt;}
._8{width:7.925333pt;}
._10{width:9.472000pt;}
._17{width:10.432000pt;}
._a{width:11.328000pt;}
._b{width:12.224000pt;}
._18{width:13.632000pt;}
._15{width:15.104000pt;}
._7{width:17.493333pt;}
._16{width:18.592000pt;}
._3{width:19.584000pt;}
._2{width:20.544000pt;}
._13{width:22.208000pt;}
._14{width:23.168000pt;}
._1e{width:24.512000pt;}
._1f{width:25.621333pt;}
._20{width:26.944000pt;}
._11{width:28.160000pt;}
._12{width:29.376000pt;}
._1d{width:30.357333pt;}
._19{width:32.384000pt;}
._2c{width:33.600000pt;}
._29{width:37.182507pt;}
._1a{width:40.640000pt;}
._1b{width:41.664000pt;}
._21{width:43.936213pt;}
._28{width:51.401173pt;}
._2d{width:65.032107pt;}
._24{width:70.101333pt;}
._2b{width:74.306560pt;}
._25{width:80.231040pt;}
._26{width:131.422507pt;}
._23{width:139.370667pt;}
._2a{width:147.381973pt;}
._22{width:176.000000pt;}
._d{width:752.138667pt;}
.fs2{font-size:45.440000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:5.600000pt;}
.yb9{bottom:5.760000pt;}
.ybc{bottom:24.960000pt;}
.ye7{bottom:25.000000pt;}
.yc1{bottom:25.120000pt;}
.y2{bottom:41.600000pt;}
.y1{bottom:59.520000pt;}
.y7d{bottom:99.712000pt;}
.y10d{bottom:102.752000pt;}
.y2b{bottom:104.512000pt;}
.y13b{bottom:108.192000pt;}
.y5e{bottom:111.232000pt;}
.yd8{bottom:114.592000pt;}
.y4f{bottom:116.192000pt;}
.y15d{bottom:120.832000pt;}
.y10c{bottom:122.112000pt;}
.y7c{bottom:127.552000pt;}
.y184{bottom:131.872000pt;}
.y2a{bottom:132.032000pt;}
.yeb{bottom:134.426667pt;}
.y13a{bottom:135.866667pt;}
.y5d{bottom:138.746667pt;}
.y10b{bottom:141.466667pt;}
.y9e{bottom:141.626667pt;}
.y15c{bottom:141.946667pt;}
.yd7{bottom:142.106667pt;}
.y4e{bottom:143.866667pt;}
.yc3{bottom:151.066667pt;}
.y183{bottom:152.986667pt;}
.y7b{bottom:155.226667pt;}
.y29{bottom:159.706667pt;}
.y10a{bottom:160.826667pt;}
.y15b{bottom:163.066667pt;}
.y139{bottom:163.386667pt;}
.y5c{bottom:166.586667pt;}
.y9d{bottom:169.306667pt;}
.yd6{bottom:169.786667pt;}
.y4d{bottom:171.386667pt;}
.yea{bottom:173.146667pt;}
.y182{bottom:174.106667pt;}
.yc2{bottom:178.586667pt;}
.y109{bottom:180.346667pt;}
.y7a{bottom:182.746667pt;}
.y15a{bottom:184.346667pt;}
.y28{bottom:187.226667pt;}
.y138{bottom:191.066667pt;}
.yc0{bottom:194.106667pt;}
.y5b{bottom:194.746667pt;}
.y181{bottom:195.386667pt;}
.y9c{bottom:196.826667pt;}
.yd5{bottom:197.306667pt;}
.y4c{bottom:199.066667pt;}
.y108{bottom:199.706667pt;}
.y159{bottom:205.466667pt;}
.y79{bottom:210.426667pt;}
.ye9{bottom:212.026667pt;}
.y27{bottom:214.906667pt;}
.y180{bottom:216.506667pt;}
.y137{bottom:218.586667pt;}
.y107{bottom:219.706667pt;}
.y5a{bottom:223.706667pt;}
.y9b{bottom:224.506667pt;}
.yd4{bottom:224.986667pt;}
.y4b{bottom:226.586667pt;}
.ybf{bottom:232.986667pt;}
.y26{bottom:236.026667pt;}
.y17f{bottom:237.626667pt;}
.y78{bottom:238.266667pt;}
.y136{bottom:246.266667pt;}
.y158{bottom:247.706667pt;}
.ye8{bottom:250.746667pt;}
.y59{bottom:251.546667pt;}
.y9a{bottom:252.026667pt;}
.ybe{bottom:252.346667pt;}
.yd3{bottom:252.506667pt;}
.y4a{bottom:254.266667pt;}
.y25{bottom:257.146667pt;}
.y17e{bottom:258.746667pt;}
.y77{bottom:266.106667pt;}
.y157{bottom:268.986667pt;}
.y135{bottom:273.786667pt;}
.y24{bottom:278.266667pt;}
.y58{bottom:279.546667pt;}
.y99{bottom:279.706667pt;}
.y17d{bottom:280.026667pt;}
.yd2{bottom:280.186667pt;}
.y49{bottom:281.786667pt;}
.ye6{bottom:289.626667pt;}
.y156{bottom:290.106667pt;}
.ybd{bottom:291.066667pt;}
.y76{bottom:293.946667pt;}
.y23{bottom:299.586667pt;}
.y17c{bottom:301.186667pt;}
.y134{bottom:301.506667pt;}
.y57{bottom:307.106667pt;}
.y98{bottom:307.266667pt;}
.yd1{bottom:307.746667pt;}
.y48{bottom:309.346667pt;}
.ybb{bottom:310.626667pt;}
.y155{bottom:311.266667pt;}
.y22{bottom:320.706667pt;}
.y75{bottom:322.146667pt;}
.y17b{bottom:322.306667pt;}
.ye5{bottom:329.026667pt;}
.y154{bottom:332.386667pt;}
.y56{bottom:334.786667pt;}
.y97{bottom:334.946667pt;}
.yd0{bottom:335.426667pt;}
.y47{bottom:337.026667pt;}
.y21{bottom:341.826667pt;}
.y17a{bottom:343.426667pt;}
.y126{bottom:347.266667pt;}
.yba{bottom:349.346667pt;}
.y74{bottom:350.306667pt;}
.y106{bottom:350.946667pt;}
.y153{bottom:353.506667pt;}
.y133{bottom:356.706667pt;}
.y55{bottom:362.306667pt;}
.y96{bottom:362.466667pt;}
.y20{bottom:362.946667pt;}
.y46{bottom:364.546667pt;}
.yb8{bottom:368.706667pt;}
.y105{bottom:370.306667pt;}
.y152{bottom:374.786667pt;}
.y125{bottom:374.946667pt;}
.y73{bottom:378.306667pt;}
.ye4{bottom:381.186667pt;}
.y1f{bottom:384.226667pt;}
.y179{bottom:385.826667pt;}
.yb7{bottom:388.226667pt;}
.y104{bottom:389.666667pt;}
.y54{bottom:389.986667pt;}
.y95{bottom:390.146667pt;}
.ycf{bottom:390.626667pt;}
.y45{bottom:392.226667pt;}
.y151{bottom:395.906667pt;}
.y124{bottom:402.466667pt;}
.y1e{bottom:405.346667pt;}
.y72{bottom:406.306667pt;}
.y178{bottom:406.946667pt;}
.yb5{bottom:408.226667pt;}
.ye3{bottom:408.866667pt;}
.y103{bottom:409.026667pt;}
.y132{bottom:411.906667pt;}
.y150{bottom:417.026667pt;}
.y94{bottom:417.666667pt;}
.y53{bottom:417.826667pt;}
.yce{bottom:418.146667pt;}
.y44{bottom:419.746667pt;}
.y1d{bottom:426.466667pt;}
.y177{bottom:428.066667pt;}
.y102{bottom:428.546667pt;}
.y123{bottom:430.146667pt;}
.y71{bottom:433.826667pt;}
.ye2{bottom:436.386667pt;}
.y14f{bottom:438.146667pt;}
.y131{bottom:439.426667pt;}
.yb4{bottom:441.026667pt;}
.y93{bottom:445.346667pt;}
.y52{bottom:445.826667pt;}
.y43{bottom:447.426667pt;}
.y1c{bottom:447.586667pt;}
.y101{bottom:447.906667pt;}
.y176{bottom:449.186667pt;}
.ye1{bottom:452.066667pt;}
.y122{bottom:457.666667pt;}
.y14e{bottom:459.426667pt;}
.y70{bottom:461.506667pt;}
.y130{bottom:467.106667pt;}
.y100{bottom:467.266667pt;}
.yb3{bottom:468.546667pt;}
.y1b{bottom:468.866667pt;}
.y175{bottom:470.466667pt;}
.ye0{bottom:471.426667pt;}
.y92{bottom:472.866667pt;}
.ycd{bottom:473.346667pt;}
.y51{bottom:474.146667pt;}
.y42{bottom:474.946667pt;}
.y14d{bottom:480.546667pt;}
.y121{bottom:485.346667pt;}
.yff{bottom:487.266667pt;}
.y6f{bottom:489.026667pt;}
.y1a{bottom:489.986667pt;}
.ydf{bottom:490.786667pt;}
.y174{bottom:491.586667pt;}
.y12f{bottom:494.626667pt;}
.yb2{bottom:496.226667pt;}
.y91{bottom:500.546667pt;}
.ycc{bottom:501.026667pt;}
.y14c{bottom:501.666667pt;}
.y50{bottom:502.306667pt;}
.y41{bottom:502.626667pt;}
.yde{bottom:510.146667pt;}
.y19{bottom:511.106667pt;}
.y173{bottom:512.706667pt;}
.y120{bottom:512.866667pt;}
.y6e{bottom:516.706667pt;}
.yfe{bottom:520.066667pt;}
.y12e{bottom:522.306667pt;}
.y14b{bottom:522.786667pt;}
.yb1{bottom:523.746667pt;}
.y90{bottom:528.066667pt;}
.ycb{bottom:528.866667pt;}
.ydd{bottom:529.506667pt;}
.y40{bottom:530.146667pt;}
.y18{bottom:532.226667pt;}
.y172{bottom:533.826667pt;}
.y11f{bottom:540.573333pt;}
.y14a{bottom:544.093333pt;}
.y6d{bottom:544.253333pt;}
.yfd{bottom:547.773333pt;}
.ydc{bottom:549.053333pt;}
.y12d{bottom:549.853333pt;}
.yb0{bottom:551.453333pt;}
.y17{bottom:553.533333pt;}
.y171{bottom:555.133333pt;}
.y8f{bottom:555.773333pt;}
.yca{bottom:556.893333pt;}
.y3f{bottom:557.853333pt;}
.y149{bottom:565.213333pt;}
.y11e{bottom:568.093333pt;}
.ydb{bottom:568.413333pt;}
.y6c{bottom:572.093333pt;}
.y16{bottom:574.653333pt;}
.yfc{bottom:575.293333pt;}
.y170{bottom:576.253333pt;}
.y12c{bottom:577.533333pt;}
.yaf{bottom:579.293333pt;}
.y8e{bottom:583.293333pt;}
.yc9{bottom:584.893333pt;}
.y3e{bottom:585.373333pt;}
.y148{bottom:586.333333pt;}
.yda{bottom:587.773333pt;}
.y15{bottom:595.773333pt;}
.y6b{bottom:596.893333pt;}
.y16f{bottom:597.373333pt;}
.yfb{bottom:602.973333pt;}
.y6a{bottom:604.893333pt;}
.y12b{bottom:605.053333pt;}
.yae{bottom:607.293333pt;}
.y147{bottom:607.453333pt;}
.yd9{bottom:607.773333pt;}
.y8d{bottom:610.973333pt;}
.y11d{bottom:611.293333pt;}
.yc8{bottom:612.413333pt;}
.y3d{bottom:613.053333pt;}
.yfa{bottom:618.493333pt;}
.y14{bottom:623.453333pt;}
.y146{bottom:628.733333pt;}
.y11c{bottom:630.653333pt;}
.y12a{bottom:632.733333pt;}
.yad{bottom:635.293333pt;}
.y69{bottom:637.533333pt;}
.yf9{bottom:637.853333pt;}
.y8c{bottom:638.493333pt;}
.y16e{bottom:639.773333pt;}
.yc7{bottom:640.093333pt;}
.y3c{bottom:640.573333pt;}
.y145{bottom:649.853333pt;}
.y11b{bottom:650.013333pt;}
.y13{bottom:650.973333pt;}
.yf8{bottom:657.213333pt;}
.y129{bottom:660.253333pt;}
.y16d{bottom:660.893333pt;}
.yac{bottom:662.813333pt;}
.y68{bottom:665.693333pt;}
.y8b{bottom:666.173333pt;}
.yc6{bottom:667.613333pt;}
.y3b{bottom:668.253333pt;}
.y11a{bottom:669.533333pt;}
.y144{bottom:670.973333pt;}
.yf7{bottom:676.733333pt;}
.y12{bottom:678.653333pt;}
.y16c{bottom:682.013333pt;}
.y128{bottom:687.933333pt;}
.y119{bottom:688.893333pt;}
.yab{bottom:690.493333pt;}
.y143{bottom:692.093333pt;}
.y8a{bottom:693.693333pt;}
.y67{bottom:693.853333pt;}
.yc5{bottom:695.293333pt;}
.y3a{bottom:695.773333pt;}
.yf6{bottom:696.093333pt;}
.y16b{bottom:703.133333pt;}
.y11{bottom:706.173333pt;}
.y118{bottom:708.893333pt;}
.y127{bottom:711.933333pt;}
.y142{bottom:713.373333pt;}
.yf5{bottom:715.453333pt;}
.yaa{bottom:718.333333pt;}
.y89{bottom:721.373333pt;}
.y66{bottom:721.853333pt;}
.yc4{bottom:723.133333pt;}
.y39{bottom:723.453333pt;}
.y16a{bottom:724.413333pt;}
.y10{bottom:733.853333pt;}
.y141{bottom:734.493333pt;}
.yf4{bottom:734.813333pt;}
.y117{bottom:741.693333pt;}
.y169{bottom:745.533333pt;}
.ya9{bottom:746.493333pt;}
.y88{bottom:748.893333pt;}
.y65{bottom:749.373333pt;}
.y38{bottom:750.973333pt;}
.yf3{bottom:754.333333pt;}
.y140{bottom:755.613333pt;}
.yf{bottom:761.373333pt;}
.y168{bottom:766.653333pt;}
.y116{bottom:769.373333pt;}
.yf2{bottom:774.373333pt;}
.ya7{bottom:775.013333pt;}
.y87{bottom:776.613333pt;}
.y13f{bottom:776.773333pt;}
.y64{bottom:777.093333pt;}
.y37{bottom:778.693333pt;}
.ya8{bottom:781.413333pt;}
.y167{bottom:787.813333pt;}
.ye{bottom:788.933333pt;}
.y115{bottom:796.933333pt;}
.y13e{bottom:797.893333pt;}
.ya6{bottom:803.493333pt;}
.y86{bottom:804.133333pt;}
.y63{bottom:804.613333pt;}
.y36{bottom:806.213333pt;}
.yf1{bottom:807.173333pt;}
.y166{bottom:808.933333pt;}
.y114{bottom:812.453333pt;}
.yd{bottom:816.613333pt;}
.y13d{bottom:819.173333pt;}
.y165{bottom:830.213333pt;}
.ya5{bottom:831.173333pt;}
.y85{bottom:831.813333pt;}
.y62{bottom:832.293333pt;}
.y35{bottom:833.893333pt;}
.yf0{bottom:834.693333pt;}
.y13c{bottom:840.293333pt;}
.yc{bottom:844.133333pt;}
.y164{bottom:851.333333pt;}
.y113{bottom:851.973333pt;}
.ya4{bottom:858.693333pt;}
.y84{bottom:859.333333pt;}
.y61{bottom:859.973333pt;}
.y34{bottom:861.413333pt;}
.yef{bottom:862.373333pt;}
.yb{bottom:871.813333pt;}
.y163{bottom:872.453333pt;}
.yee{bottom:877.893333pt;}
.y112{bottom:884.773333pt;}
.ya3{bottom:886.533333pt;}
.y83{bottom:887.013333pt;}
.y60{bottom:888.133333pt;}
.y33{bottom:889.093333pt;}
.y162{bottom:893.573333pt;}
.ya{bottom:899.333333pt;}
.y111{bottom:912.293333pt;}
.y82{bottom:914.533333pt;}
.ya2{bottom:914.693333pt;}
.y161{bottom:914.853333pt;}
.y5f{bottom:916.293333pt;}
.y32{bottom:916.613333pt;}
.y9{bottom:927.013333pt;}
.y160{bottom:935.973333pt;}
.yed{bottom:936.133333pt;}
.y110{bottom:939.973333pt;}
.y81{bottom:942.213333pt;}
.ya1{bottom:942.853333pt;}
.y31{bottom:944.293333pt;}
.y8{bottom:954.533333pt;}
.y10f{bottom:955.493333pt;}
.y15f{bottom:957.093333pt;}
.y80{bottom:969.893333pt;}
.ya0{bottom:971.013333pt;}
.y30{bottom:971.813333pt;}
.yec{bottom:974.853333pt;}
.y7{bottom:975.813333pt;}
.y15e{bottom:978.213333pt;}
.y10e{bottom:994.213333pt;}
.y6{bottom:996.933333pt;}
.y7e{bottom:998.533333pt;}
.y9f{bottom:999.173333pt;}
.y2f{bottom:999.493333pt;}
.y7f{bottom:1004.933333pt;}
.y5{bottom:1018.080000pt;}
.y2e{bottom:1018.400000pt;}
.y2d{bottom:1038.560000pt;}
.y4{bottom:1039.200000pt;}
.y2c{bottom:1059.680000pt;}
.y3{bottom:1060.480000pt;}
.hd{height:19.360000pt;}
.h14{height:19.392000pt;}
.hf{height:19.520000pt;}
.h11{height:19.552000pt;}
.hc{height:38.295625pt;}
.h10{height:38.720000pt;}
.h13{height:38.752000pt;}
.h12{height:38.880000pt;}
.he{height:42.578750pt;}
.h3{height:45.156250pt;}
.h6{height:46.218750pt;}
.h4{height:46.281250pt;}
.h5{height:52.750000pt;}
.h7{height:53.937500pt;}
.h2{height:58.563750pt;}
.h8{height:61.975625pt;}
.h9{height:76.055625pt;}
.hb{height:85.937500pt;}
.ha{height:108.055625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:52.000000pt;}
.w12{width:52.160000pt;}
.w10{width:52.192000pt;}
.we{width:52.832000pt;}
.w5{width:55.200000pt;}
.w1a{width:57.600000pt;}
.w1b{width:58.432000pt;}
.w7{width:60.320000pt;}
.w9{width:60.512000pt;}
.wf{width:62.560000pt;}
.w11{width:63.200000pt;}
.wa{width:68.480000pt;}
.w19{width:72.192000pt;}
.w8{width:76.640000pt;}
.w18{width:80.480000pt;}
.w1c{width:87.840000pt;}
.w15{width:96.192000pt;}
.w14{width:101.600000pt;}
.wc{width:107.392000pt;}
.wb{width:107.520000pt;}
.w1e{width:115.712000pt;}
.w1f{width:126.720000pt;}
.w23{width:131.872000pt;}
.w22{width:139.360000pt;}
.w20{width:139.706667pt;}
.w13{width:183.226667pt;}
.w25{width:184.666667pt;}
.w26{width:188.186667pt;}
.w3{width:205.786667pt;}
.w17{width:215.226667pt;}
.w1d{width:219.706667pt;}
.w16{width:220.826667pt;}
.w24{width:228.986667pt;}
.w21{width:330.626667pt;}
.w6{width:335.906667pt;}
.w4{width:340.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x2{left:96.031988pt;}
.x2d{left:111.072000pt;}
.x11{left:144.026655pt;}
.xf{left:159.226655pt;}
.x37{left:176.986655pt;}
.xb{left:178.586655pt;}
.x9{left:185.466655pt;}
.x32{left:193.306655pt;}
.x20{left:203.546667pt;}
.x2b{left:222.106655pt;}
.x27{left:226.586655pt;}
.xa{left:243.386655pt;}
.x12{left:245.306655pt;}
.x2c{left:248.386655pt;}
.x28{left:279.266667pt;}
.xd{left:285.666655pt;}
.xe{left:292.866655pt;}
.xc{left:295.586655pt;}
.x16{left:297.666655pt;}
.x1b{left:300.226655pt;}
.x18{left:301.826667pt;}
.x10{left:308.386655pt;}
.x13{left:311.746655pt;}
.x33{left:315.746667pt;}
.x1a{left:322.626655pt;}
.x3{left:323.906655pt;}
.x38{left:325.026667pt;}
.x2e{left:326.306667pt;}
.x14{left:345.346655pt;}
.x21{left:362.946667pt;}
.x29{left:380.866667pt;}
.x1{left:389.506655pt;}
.x8{left:396.866655pt;}
.x2f{left:406.786667pt;}
.x22{left:415.773333pt;}
.x35{left:426.653333pt;}
.x1c{left:431.933333pt;}
.x15{left:457.693322pt;}
.x2a{left:477.053333pt;}
.x23{left:478.333333pt;}
.x1d{left:492.253333pt;}
.x7{left:509.373322pt;}
.x24{left:530.333333pt;}
.x30{left:536.573333pt;}
.x6{left:540.893322pt;}
.x5{left:555.133322pt;}
.x34{left:558.173333pt;}
.x36{left:566.013333pt;}
.x1e{left:568.893333pt;}
.x4{left:578.653322pt;}
.x25{left:582.533333pt;}
.x31{left:595.013333pt;}
.x1f{left:629.413333pt;}
.x19{left:642.693333pt;}
.x26{left:645.733333pt;}
}




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