
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_ef65b66c39c59238a6dafcaa.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0f1dabfe64d90636060d2ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9bc9f254b16a67478c6b4244.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_9dc1468d282a6e81f5ca0038.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_36bc4f0c8d0a360e22261246.woff2')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_1f4ddc51b882beb2ed9b2cfe.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3c44f413bbb2d94ef01a1eec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_831ed9896f2a5b0e10879636.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_d7e4dfcb610445ba475777dd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e89b349e294e3ecc0d62b794.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ede526b89714006ddc2eed1c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_df575a1bb148125f53600ced.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d210928778325b929e0876ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b700a748babaaa7df171dc4c.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;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);}
.v6{vertical-align:-76.320000px;}
.v4{vertical-align:-70.560000px;}
.v5{vertical-align:-66.960000px;}
.v3{vertical-align:-59.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.984000px;}
.lsf{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.305400px;}
.ls24{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.109200px;}
.lsd{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.144720px;}
.ls9{letter-spacing:0.149760px;}
.ls1d{letter-spacing:0.152640px;}
.ls8{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.262080px;}
.ls22{letter-spacing:0.262200px;}
.ls19{letter-spacing:0.305280px;}
.ls21{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.365760px;}
.ls6{letter-spacing:0.648000px;}
.lsb{letter-spacing:3.749760px;}
.ls15{letter-spacing:10.080000px;}
.ls1e{letter-spacing:12.960000px;}
.ls4{letter-spacing:20.340000px;}
.ls26{letter-spacing:39.905280px;}
.ls25{letter-spacing:102.060000px;}
.ls1c{letter-spacing:117.720000px;}
.ls0{letter-spacing:197.429760px;}
.ls5{letter-spacing:198.900000px;}
.ls27{letter-spacing:199.440000px;}
.ls14{letter-spacing:200.340000px;}
.ls1b{letter-spacing:493.716000px;}
.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;}
}
.wsf{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.ws12{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.450800px;}
.ws13{word-spacing:-16.297800px;}
.wse{word-spacing:-16.254600px;}
.ws7{word-spacing:-16.145400px;}
.ws4{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.576000px;}
.ws0{word-spacing:-15.228000px;}
.wsd{word-spacing:-15.046800px;}
.ws1{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.168000px;}
.ws9{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._14{margin-left:-4.371840px;}
._5{margin-left:-2.914080px;}
._2{margin-left:-1.457280px;}
._1{width:1.022400px;}
._9{width:2.106000px;}
._8{width:3.671280px;}
._7{width:5.076000px;}
._c{width:6.804000px;}
._18{width:8.482560px;}
._6{width:10.064640px;}
._15{width:11.189760px;}
._11{width:12.476160px;}
._12{width:14.175360px;}
._13{width:15.433920px;}
._b{width:18.317280px;}
._a{width:20.088000px;}
._10{width:21.713280px;}
._f{width:22.746000px;}
._19{width:23.760000px;}
._3{width:24.912000px;}
._4{width:26.268000px;}
._16{width:27.820800px;}
._d{width:29.700000px;}
._e{width:30.888000px;}
._1c{width:35.968320px;}
._0{width:152.778240px;}
._1b{width:195.840000px;}
._1a{width:847.596000px;}
._17{width:948.545760px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.900000px;}
.y1b{bottom:1.260000px;}
.y1f{bottom:1.440000px;}
.y2a{bottom:2.880000px;}
.y2e{bottom:3.060000px;}
.y9e{bottom:3.240000px;}
.y6e{bottom:3.960000px;}
.y3b{bottom:4.140000px;}
.y6d{bottom:4.500000px;}
.y3f{bottom:4.680000px;}
.y30{bottom:4.860000px;}
.y87{bottom:5.760000px;}
.y8d{bottom:6.840000px;}
.y8b{bottom:7.020000px;}
.y1d{bottom:7.200000px;}
.y89{bottom:7.920000px;}
.y7{bottom:8.100000px;}
.y21{bottom:9.180000px;}
.y19{bottom:9.720000px;}
.y4c{bottom:9.900000px;}
.y43{bottom:10.440000px;}
.y85{bottom:12.600000px;}
.y17{bottom:16.020000px;}
.y33{bottom:17.100000px;}
.y29{bottom:18.360000px;}
.y2d{bottom:18.540000px;}
.y86{bottom:19.470000px;}
.y3a{bottom:19.800000px;}
.y6{bottom:23.610000px;}
.y4b{bottom:25.380000px;}
.y28{bottom:34.020000px;}
.y39{bottom:35.280000px;}
.y42{bottom:36.180000px;}
.y5{bottom:37.110000px;}
.y4a{bottom:40.860000px;}
.y16{bottom:41.940000px;}
.y32{bottom:43.020000px;}
.y4{bottom:45.210000px;}
.y27{bottom:49.500000px;}
.y38{bottom:50.760000px;}
.y53{bottom:55.080000px;}
.yb{bottom:55.440000px;}
.y83{bottom:55.620000px;}
.y49{bottom:56.520000px;}
.y2{bottom:59.970000px;}
.y41{bottom:62.100000px;}
.y26{bottom:64.980000px;}
.y3{bottom:65.910000px;}
.y37{bottom:66.240000px;}
.ya{bottom:68.940000px;}
.y48{bottom:72.000000px;}
.y25{bottom:80.460000px;}
.y36{bottom:81.930000px;}
.y47{bottom:87.480000px;}
.y24{bottom:96.165000px;}
.y35{bottom:97.410000px;}
.y10c{bottom:99.900000px;}
.y46{bottom:102.960000px;}
.y82{bottom:106.200000px;}
.y10b{bottom:110.160000px;}
.y14{bottom:114.120000px;}
.y45{bottom:118.665000px;}
.y81{bottom:125.100000px;}
.yc0{bottom:125.640000px;}
.y10a{bottom:127.440000px;}
.y13{bottom:133.020000px;}
.y80{bottom:144.180000px;}
.ybf{bottom:144.540000px;}
.y109{bottom:144.720000px;}
.y12{bottom:152.130000px;}
.y108{bottom:161.850000px;}
.y7f{bottom:163.110000px;}
.ybe{bottom:163.650000px;}
.y11{bottom:171.030000px;}
.y107{bottom:179.130000px;}
.y7e{bottom:182.190000px;}
.ybd{bottom:182.550000px;}
.y10{bottom:190.110000px;}
.y106{bottom:196.410000px;}
.y7d{bottom:201.090000px;}
.ybc{bottom:201.630000px;}
.yf{bottom:209.010000px;}
.y105{bottom:213.690000px;}
.y7c{bottom:220.170000px;}
.ybb{bottom:220.530000px;}
.ye{bottom:227.910000px;}
.y104{bottom:230.970000px;}
.y7b{bottom:239.070000px;}
.yba{bottom:239.430000px;}
.y4e{bottom:243.210000px;}
.y103{bottom:248.250000px;}
.y7a{bottom:257.970000px;}
.yb9{bottom:258.510000px;}
.y102{bottom:265.350000px;}
.y79{bottom:277.050000px;}
.yb8{bottom:277.410000px;}
.y101{bottom:283.170000px;}
.y4d{bottom:289.830000px;}
.y44{bottom:293.790000px;}
.y78{bottom:295.950000px;}
.yb7{bottom:296.490000px;}
.y100{bottom:302.070000px;}
.y77{bottom:315.030000px;}
.yb6{bottom:315.390000px;}
.yff{bottom:320.970000px;}
.y76{bottom:333.930000px;}
.yb5{bottom:334.290000px;}
.yfe{bottom:340.050000px;}
.y75{bottom:352.830000px;}
.yb4{bottom:353.370000px;}
.yfd{bottom:358.950000px;}
.y74{bottom:371.910000px;}
.yb3{bottom:372.270000px;}
.yfc{bottom:378.030000px;}
.y73{bottom:390.810000px;}
.yb2{bottom:391.350000px;}
.yfb{bottom:396.930000px;}
.y72{bottom:409.935000px;}
.yb1{bottom:410.295000px;}
.yfa{bottom:415.875000px;}
.y71{bottom:428.835000px;}
.yb0{bottom:429.375000px;}
.y40{bottom:432.075000px;}
.yf9{bottom:434.955000px;}
.y70{bottom:445.395000px;}
.yaf{bottom:448.275000px;}
.yf8{bottom:453.855000px;}
.y6f{bottom:462.855000px;}
.yae{bottom:467.175000px;}
.yf7{bottom:472.935000px;}
.y6c{bottom:476.895000px;}
.yad{bottom:486.255000px;}
.yf6{bottom:491.835000px;}
.yac{bottom:505.155000px;}
.yf5{bottom:510.735000px;}
.yc9{bottom:517.035000px;}
.y3e{bottom:520.815000px;}
.yab{bottom:524.235000px;}
.yf4{bottom:529.815000px;}
.y3d{bottom:540.075000px;}
.yaa{bottom:543.135000px;}
.yf3{bottom:548.715000px;}
.yc8{bottom:557.355000px;}
.ya9{bottom:562.035000px;}
.yf2{bottom:567.795000px;}
.y3c{bottom:571.035000px;}
.y34{bottom:574.635000px;}
.ya8{bottom:581.115000px;}
.yf1{bottom:586.695000px;}
.yc7{bottom:598.755000px;}
.ya7{bottom:600.015000px;}
.yf0{bottom:605.775000px;}
.yc6{bottom:617.835000px;}
.ya6{bottom:619.095000px;}
.yef{bottom:624.675000px;}
.ya5{bottom:635.655000px;}
.yc5{bottom:636.735000px;}
.yee{bottom:643.575000px;}
.ya4{bottom:644.835000px;}
.yc4{bottom:655.665000px;}
.yed{bottom:662.685000px;}
.ya3{bottom:663.945000px;}
.yc3{bottom:674.745000px;}
.yec{bottom:681.585000px;}
.y31{bottom:685.905000px;}
.yc2{bottom:693.645000px;}
.ya2{bottom:700.485000px;}
.yeb{bottom:700.665000px;}
.yc1{bottom:712.725000px;}
.yea{bottom:719.565000px;}
.y6b{bottom:722.445000px;}
.ya1{bottom:728.385000px;}
.y6a{bottom:731.625000px;}
.ya0{bottom:733.425000px;}
.ye9{bottom:738.465000px;}
.y69{bottom:750.525000px;}
.y9f{bottom:751.425000px;}
.ye8{bottom:757.545000px;}
.y2f{bottom:762.045000px;}
.y9d{bottom:769.425000px;}
.y68{bottom:769.605000px;}
.ye7{bottom:776.445000px;}
.y2c{bottom:781.305000px;}
.y67{bottom:788.505000px;}
.y9c{bottom:791.025000px;}
.ye6{bottom:795.525000px;}
.y66{bottom:807.585000px;}
.y9b{bottom:810.105000px;}
.y2b{bottom:812.445000px;}
.ye5{bottom:814.425000px;}
.y23{bottom:816.405000px;}
.y65{bottom:826.485000px;}
.y9a{bottom:829.005000px;}
.ye4{bottom:833.325000px;}
.y64{bottom:845.385000px;}
.y99{bottom:848.085000px;}
.ye3{bottom:852.405000px;}
.y63{bottom:864.465000px;}
.y98{bottom:866.985000px;}
.ye2{bottom:871.305000px;}
.y62{bottom:883.365000px;}
.y97{bottom:885.885000px;}
.ye1{bottom:890.385000px;}
.y61{bottom:902.490000px;}
.y96{bottom:905.010000px;}
.ye0{bottom:909.330000px;}
.y60{bottom:921.390000px;}
.y95{bottom:921.570000px;}
.y22{bottom:925.170000px;}
.ydf{bottom:928.230000px;}
.y20{bottom:928.950000px;}
.y94{bottom:930.930000px;}
.y5f{bottom:940.470000px;}
.yde{bottom:947.310000px;}
.y93{bottom:949.830000px;}
.y1e{bottom:951.990000px;}
.yd2{bottom:952.530000px;}
.y1c{bottom:955.770000px;}
.y5e{bottom:959.370000px;}
.ydd{bottom:966.210000px;}
.y92{bottom:968.730000px;}
.yd1{bottom:971.430000px;}
.y5d{bottom:978.270000px;}
.y1a{bottom:978.990000px;}
.y18{bottom:982.590000px;}
.ydc{bottom:985.290000px;}
.y91{bottom:987.810000px;}
.yd0{bottom:990.330000px;}
.y5c{bottom:997.350000px;}
.ydb{bottom:1004.190000px;}
.y90{bottom:1006.710000px;}
.ycf{bottom:1009.410000px;}
.y15{bottom:1013.010000px;}
.y5b{bottom:1016.250000px;}
.yda{bottom:1023.090000px;}
.y8f{bottom:1025.790000px;}
.yce{bottom:1028.310000px;}
.y5a{bottom:1035.330000px;}
.y8e{bottom:1041.810000px;}
.yd9{bottom:1042.170000px;}
.ycd{bottom:1047.390000px;}
.y59{bottom:1054.230000px;}
.yd8{bottom:1061.070000px;}
.y8c{bottom:1063.590000px;}
.ycc{bottom:1066.290000px;}
.y58{bottom:1073.130000px;}
.yd7{bottom:1080.150000px;}
.y8a{bottom:1085.190000px;}
.y57{bottom:1092.210000px;}
.yd{bottom:1094.550000px;}
.yd6{bottom:1099.050000px;}
.ycb{bottom:1104.270000px;}
.y88{bottom:1106.970000px;}
.y56{bottom:1111.110000px;}
.yc{bottom:1112.730000px;}
.yd5{bottom:1118.130000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y84{bottom:1129.650000px;}
.y55{bottom:1130.190000px;}
.yd4{bottom:1134.690000px;}
.yca{bottom:1139.910000px;}
.yd3{bottom:1144.770000px;}
.y54{bottom:1149.120000px;}
.y52{bottom:1168.920000px;}
.y51{bottom:1189.800000px;}
.y50{bottom:1191.960000px;}
.y4f{bottom:1194.840000px;}
.h12{height:3.600000px;}
.h15{height:3.780000px;}
.h1d{height:3.960000px;}
.h16{height:5.650313px;}
.h8{height:5.729063px;}
.h13{height:5.805000px;}
.h29{height:12.174258px;}
.h28{height:15.120000px;}
.h38{height:17.280000px;}
.h7{height:17.666016px;}
.h5{height:17.956055px;}
.h3a{height:18.140625px;}
.h20{height:19.260000px;}
.h36{height:20.880000px;}
.h35{height:21.060000px;}
.h33{height:21.960000px;}
.h17{height:23.040000px;}
.h14{height:23.220000px;}
.h2b{height:23.319141px;}
.h3c{height:23.945625px;}
.h40{height:29.664141px;}
.h11{height:30.420000px;}
.h23{height:30.960000px;}
.h1e{height:31.140000px;}
.h30{height:34.056000px;}
.h1b{height:37.863281px;}
.hb{height:38.812500px;}
.h9{height:40.985156px;}
.h32{height:41.715352px;}
.h3b{height:42.086250px;}
.h27{height:44.507812px;}
.h2a{height:46.445625px;}
.h26{height:46.620000px;}
.h2f{height:47.344922px;}
.h18{height:47.678906px;}
.h31{height:48.616875px;}
.h3f{height:49.255313px;}
.h1f{height:52.971680px;}
.h1c{height:52.998047px;}
.h1a{height:54.421875px;}
.h37{height:54.596250px;}
.h6{height:56.320312px;}
.h2e{height:58.621992px;}
.h34{height:58.651172px;}
.h39{height:60.226875px;}
.hd{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h3d{height:69.086250px;}
.h2d{height:70.664062px;}
.he{height:74.145000px;}
.h4{height:75.093750px;}
.h21{height:76.140000px;}
.hf{height:77.827148px;}
.h2{height:82.836000px;}
.h3e{height:84.898125px;}
.h24{height:88.740000px;}
.h10{height:90.703125px;}
.h19{height:108.756000px;}
.h22{height:111.276000px;}
.h25{height:138.276000px;}
.h2c{height:244.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:141.300000px;}
.we{width:144.936000px;}
.wf{width:151.770000px;}
.wc{width:152.310000px;}
.w10{width:182.550000px;}
.w12{width:195.690000px;}
.w11{width:210.810000px;}
.wb{width:212.250000px;}
.w7{width:222.690000px;}
.w2{width:287.175000px;}
.w9{width:351.795000px;}
.w8{width:351.930000px;}
.w3{width:435.135000px;}
.w6{width:499.575000px;}
.wa{width:510.015000px;}
.w5{width:722.265000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x19{left:13.860000px;}
.x9{left:15.480000px;}
.x1c{left:20.190000px;}
.x5{left:24.660000px;}
.xb{left:29.880000px;}
.x7{left:31.680000px;}
.xa{left:34.020000px;}
.x1d{left:43.230000px;}
.x1f{left:46.665000px;}
.x1a{left:52.020000px;}
.x17{left:57.780000px;}
.x6{left:68.754000px;}
.x1{left:84.600000px;}
.x28{left:90.215987px;}
.xc{left:94.314000px;}
.x26{left:111.995987px;}
.x2{left:117.030000px;}
.x25{left:138.995987px;}
.x16{left:150.330000px;}
.x29{left:173.189987px;}
.x14{left:204.165000px;}
.xd{left:208.839000px;}
.xf{left:214.605000px;}
.x21{left:252.569987px;}
.x12{left:295.094987px;}
.x18{left:303.375000px;}
.x23{left:334.695000px;}
.x8{left:361.119000px;}
.x27{left:369.614987px;}
.x3{left:371.775000px;}
.x11{left:436.935000px;}
.x1b{left:445.395000px;}
.x22{left:446.504987px;}
.x20{left:462.524987px;}
.x24{left:546.225000px;}
.xe{left:584.565000px;}
.x1e{left:591.045000px;}
.x13{left:595.005000px;}
.x10{left:636.449987px;}
.x15{left:795.749987px;}
@media print{
.v6{vertical-align:-67.840000pt;}
.v4{vertical-align:-62.720000pt;}
.v5{vertical-align:-59.520000pt;}
.v3{vertical-align:-53.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.874667pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.271467pt;}
.ls24{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.128640pt;}
.ls9{letter-spacing:0.133120pt;}
.ls1d{letter-spacing:0.135680pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.232960pt;}
.ls22{letter-spacing:0.233067pt;}
.ls19{letter-spacing:0.271360pt;}
.ls21{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.325120pt;}
.ls6{letter-spacing:0.576000pt;}
.lsb{letter-spacing:3.333120pt;}
.ls15{letter-spacing:8.960000pt;}
.ls1e{letter-spacing:11.520000pt;}
.ls4{letter-spacing:18.080000pt;}
.ls26{letter-spacing:35.471360pt;}
.ls25{letter-spacing:90.720000pt;}
.ls1c{letter-spacing:104.640000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls5{letter-spacing:176.800000pt;}
.ls27{letter-spacing:177.280000pt;}
.ls14{letter-spacing:178.080000pt;}
.ls1b{letter-spacing:438.858667pt;}
.wsf{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.ws12{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.622933pt;}
.ws13{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.448533pt;}
.ws7{word-spacing:-14.351467pt;}
.ws4{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.845333pt;}
.ws0{word-spacing:-13.536000pt;}
.wsd{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.344000pt;}
.wsc{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._14{margin-left:-3.886080pt;}
._5{margin-left:-2.590293pt;}
._2{margin-left:-1.295360pt;}
._1{width:0.908800pt;}
._9{width:1.872000pt;}
._8{width:3.263360pt;}
._7{width:4.512000pt;}
._c{width:6.048000pt;}
._18{width:7.540053pt;}
._6{width:8.946347pt;}
._15{width:9.946453pt;}
._11{width:11.089920pt;}
._12{width:12.600320pt;}
._13{width:13.719040pt;}
._b{width:16.282027pt;}
._a{width:17.856000pt;}
._10{width:19.300693pt;}
._f{width:20.218667pt;}
._19{width:21.120000pt;}
._3{width:22.144000pt;}
._4{width:23.349333pt;}
._16{width:24.729600pt;}
._d{width:26.400000pt;}
._e{width:27.456000pt;}
._1c{width:31.971840pt;}
._0{width:135.802880pt;}
._1b{width:174.080000pt;}
._1a{width:753.418667pt;}
._17{width:843.151787pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.800000pt;}
.y1b{bottom:1.120000pt;}
.y1f{bottom:1.280000pt;}
.y2a{bottom:2.560000pt;}
.y2e{bottom:2.720000pt;}
.y9e{bottom:2.880000pt;}
.y6e{bottom:3.520000pt;}
.y3b{bottom:3.680000pt;}
.y6d{bottom:4.000000pt;}
.y3f{bottom:4.160000pt;}
.y30{bottom:4.320000pt;}
.y87{bottom:5.120000pt;}
.y8d{bottom:6.080000pt;}
.y8b{bottom:6.240000pt;}
.y1d{bottom:6.400000pt;}
.y89{bottom:7.040000pt;}
.y7{bottom:7.200000pt;}
.y21{bottom:8.160000pt;}
.y19{bottom:8.640000pt;}
.y4c{bottom:8.800000pt;}
.y43{bottom:9.280000pt;}
.y85{bottom:11.200000pt;}
.y17{bottom:14.240000pt;}
.y33{bottom:15.200000pt;}
.y29{bottom:16.320000pt;}
.y2d{bottom:16.480000pt;}
.y86{bottom:17.306667pt;}
.y3a{bottom:17.600000pt;}
.y6{bottom:20.986667pt;}
.y4b{bottom:22.560000pt;}
.y28{bottom:30.240000pt;}
.y39{bottom:31.360000pt;}
.y42{bottom:32.160000pt;}
.y5{bottom:32.986667pt;}
.y4a{bottom:36.320000pt;}
.y16{bottom:37.280000pt;}
.y32{bottom:38.240000pt;}
.y4{bottom:40.186667pt;}
.y27{bottom:44.000000pt;}
.y38{bottom:45.120000pt;}
.y53{bottom:48.960000pt;}
.yb{bottom:49.280000pt;}
.y83{bottom:49.440000pt;}
.y49{bottom:50.240000pt;}
.y2{bottom:53.306667pt;}
.y41{bottom:55.200000pt;}
.y26{bottom:57.760000pt;}
.y3{bottom:58.586667pt;}
.y37{bottom:58.880000pt;}
.ya{bottom:61.280000pt;}
.y48{bottom:64.000000pt;}
.y25{bottom:71.520000pt;}
.y36{bottom:72.826667pt;}
.y47{bottom:77.760000pt;}
.y24{bottom:85.480000pt;}
.y35{bottom:86.586667pt;}
.y10c{bottom:88.800000pt;}
.y46{bottom:91.520000pt;}
.y82{bottom:94.400000pt;}
.y10b{bottom:97.920000pt;}
.y14{bottom:101.440000pt;}
.y45{bottom:105.480000pt;}
.y81{bottom:111.200000pt;}
.yc0{bottom:111.680000pt;}
.y10a{bottom:113.280000pt;}
.y13{bottom:118.240000pt;}
.y80{bottom:128.160000pt;}
.ybf{bottom:128.480000pt;}
.y109{bottom:128.640000pt;}
.y12{bottom:135.226667pt;}
.y108{bottom:143.866667pt;}
.y7f{bottom:144.986667pt;}
.ybe{bottom:145.466667pt;}
.y11{bottom:152.026667pt;}
.y107{bottom:159.226667pt;}
.y7e{bottom:161.946667pt;}
.ybd{bottom:162.266667pt;}
.y10{bottom:168.986667pt;}
.y106{bottom:174.586667pt;}
.y7d{bottom:178.746667pt;}
.ybc{bottom:179.226667pt;}
.yf{bottom:185.786667pt;}
.y105{bottom:189.946667pt;}
.y7c{bottom:195.706667pt;}
.ybb{bottom:196.026667pt;}
.ye{bottom:202.586667pt;}
.y104{bottom:205.306667pt;}
.y7b{bottom:212.506667pt;}
.yba{bottom:212.826667pt;}
.y4e{bottom:216.186667pt;}
.y103{bottom:220.666667pt;}
.y7a{bottom:229.306667pt;}
.yb9{bottom:229.786667pt;}
.y102{bottom:235.866667pt;}
.y79{bottom:246.266667pt;}
.yb8{bottom:246.586667pt;}
.y101{bottom:251.706667pt;}
.y4d{bottom:257.626667pt;}
.y44{bottom:261.146667pt;}
.y78{bottom:263.066667pt;}
.yb7{bottom:263.546667pt;}
.y100{bottom:268.506667pt;}
.y77{bottom:280.026667pt;}
.yb6{bottom:280.346667pt;}
.yff{bottom:285.306667pt;}
.y76{bottom:296.826667pt;}
.yb5{bottom:297.146667pt;}
.yfe{bottom:302.266667pt;}
.y75{bottom:313.626667pt;}
.yb4{bottom:314.106667pt;}
.yfd{bottom:319.066667pt;}
.y74{bottom:330.586667pt;}
.yb3{bottom:330.906667pt;}
.yfc{bottom:336.026667pt;}
.y73{bottom:347.386667pt;}
.yb2{bottom:347.866667pt;}
.yfb{bottom:352.826667pt;}
.y72{bottom:364.386667pt;}
.yb1{bottom:364.706667pt;}
.yfa{bottom:369.666667pt;}
.y71{bottom:381.186667pt;}
.yb0{bottom:381.666667pt;}
.y40{bottom:384.066667pt;}
.yf9{bottom:386.626667pt;}
.y70{bottom:395.906667pt;}
.yaf{bottom:398.466667pt;}
.yf8{bottom:403.426667pt;}
.y6f{bottom:411.426667pt;}
.yae{bottom:415.266667pt;}
.yf7{bottom:420.386667pt;}
.y6c{bottom:423.906667pt;}
.yad{bottom:432.226667pt;}
.yf6{bottom:437.186667pt;}
.yac{bottom:449.026667pt;}
.yf5{bottom:453.986667pt;}
.yc9{bottom:459.586667pt;}
.y3e{bottom:462.946667pt;}
.yab{bottom:465.986667pt;}
.yf4{bottom:470.946667pt;}
.y3d{bottom:480.066667pt;}
.yaa{bottom:482.786667pt;}
.yf3{bottom:487.746667pt;}
.yc8{bottom:495.426667pt;}
.ya9{bottom:499.586667pt;}
.yf2{bottom:504.706667pt;}
.y3c{bottom:507.586667pt;}
.y34{bottom:510.786667pt;}
.ya8{bottom:516.546667pt;}
.yf1{bottom:521.506667pt;}
.yc7{bottom:532.226667pt;}
.ya7{bottom:533.346667pt;}
.yf0{bottom:538.466667pt;}
.yc6{bottom:549.186667pt;}
.ya6{bottom:550.306667pt;}
.yef{bottom:555.266667pt;}
.ya5{bottom:565.026667pt;}
.yc5{bottom:565.986667pt;}
.yee{bottom:572.066667pt;}
.ya4{bottom:573.186667pt;}
.yc4{bottom:582.813333pt;}
.yed{bottom:589.053333pt;}
.ya3{bottom:590.173333pt;}
.yc3{bottom:599.773333pt;}
.yec{bottom:605.853333pt;}
.y31{bottom:609.693333pt;}
.yc2{bottom:616.573333pt;}
.ya2{bottom:622.653333pt;}
.yeb{bottom:622.813333pt;}
.yc1{bottom:633.533333pt;}
.yea{bottom:639.613333pt;}
.y6b{bottom:642.173333pt;}
.ya1{bottom:647.453333pt;}
.y6a{bottom:650.333333pt;}
.ya0{bottom:651.933333pt;}
.ye9{bottom:656.413333pt;}
.y69{bottom:667.133333pt;}
.y9f{bottom:667.933333pt;}
.ye8{bottom:673.373333pt;}
.y2f{bottom:677.373333pt;}
.y9d{bottom:683.933333pt;}
.y68{bottom:684.093333pt;}
.ye7{bottom:690.173333pt;}
.y2c{bottom:694.493333pt;}
.y67{bottom:700.893333pt;}
.y9c{bottom:703.133333pt;}
.ye6{bottom:707.133333pt;}
.y66{bottom:717.853333pt;}
.y9b{bottom:720.093333pt;}
.y2b{bottom:722.173333pt;}
.ye5{bottom:723.933333pt;}
.y23{bottom:725.693333pt;}
.y65{bottom:734.653333pt;}
.y9a{bottom:736.893333pt;}
.ye4{bottom:740.733333pt;}
.y64{bottom:751.453333pt;}
.y99{bottom:753.853333pt;}
.ye3{bottom:757.693333pt;}
.y63{bottom:768.413333pt;}
.y98{bottom:770.653333pt;}
.ye2{bottom:774.493333pt;}
.y62{bottom:785.213333pt;}
.y97{bottom:787.453333pt;}
.ye1{bottom:791.453333pt;}
.y61{bottom:802.213333pt;}
.y96{bottom:804.453333pt;}
.ye0{bottom:808.293333pt;}
.y60{bottom:819.013333pt;}
.y95{bottom:819.173333pt;}
.y22{bottom:822.373333pt;}
.ydf{bottom:825.093333pt;}
.y20{bottom:825.733333pt;}
.y94{bottom:827.493333pt;}
.y5f{bottom:835.973333pt;}
.yde{bottom:842.053333pt;}
.y93{bottom:844.293333pt;}
.y1e{bottom:846.213333pt;}
.yd2{bottom:846.693333pt;}
.y1c{bottom:849.573333pt;}
.y5e{bottom:852.773333pt;}
.ydd{bottom:858.853333pt;}
.y92{bottom:861.093333pt;}
.yd1{bottom:863.493333pt;}
.y5d{bottom:869.573333pt;}
.y1a{bottom:870.213333pt;}
.y18{bottom:873.413333pt;}
.ydc{bottom:875.813333pt;}
.y91{bottom:878.053333pt;}
.yd0{bottom:880.293333pt;}
.y5c{bottom:886.533333pt;}
.ydb{bottom:892.613333pt;}
.y90{bottom:894.853333pt;}
.ycf{bottom:897.253333pt;}
.y15{bottom:900.453333pt;}
.y5b{bottom:903.333333pt;}
.yda{bottom:909.413333pt;}
.y8f{bottom:911.813333pt;}
.yce{bottom:914.053333pt;}
.y5a{bottom:920.293333pt;}
.y8e{bottom:926.053333pt;}
.yd9{bottom:926.373333pt;}
.ycd{bottom:931.013333pt;}
.y59{bottom:937.093333pt;}
.yd8{bottom:943.173333pt;}
.y8c{bottom:945.413333pt;}
.ycc{bottom:947.813333pt;}
.y58{bottom:953.893333pt;}
.yd7{bottom:960.133333pt;}
.y8a{bottom:964.613333pt;}
.y57{bottom:970.853333pt;}
.yd{bottom:972.933333pt;}
.yd6{bottom:976.933333pt;}
.ycb{bottom:981.573333pt;}
.y88{bottom:983.973333pt;}
.y56{bottom:987.653333pt;}
.yc{bottom:989.093333pt;}
.yd5{bottom:993.893333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y84{bottom:1004.133333pt;}
.y55{bottom:1004.613333pt;}
.yd4{bottom:1008.613333pt;}
.yca{bottom:1013.253333pt;}
.yd3{bottom:1017.573333pt;}
.y54{bottom:1021.440000pt;}
.y52{bottom:1039.040000pt;}
.y51{bottom:1057.600000pt;}
.y50{bottom:1059.520000pt;}
.y4f{bottom:1062.080000pt;}
.h12{height:3.200000pt;}
.h15{height:3.360000pt;}
.h1d{height:3.520000pt;}
.h16{height:5.022500pt;}
.h8{height:5.092500pt;}
.h13{height:5.160000pt;}
.h29{height:10.821563pt;}
.h28{height:13.440000pt;}
.h38{height:15.360000pt;}
.h7{height:15.703125pt;}
.h5{height:15.960938pt;}
.h3a{height:16.125000pt;}
.h20{height:17.120000pt;}
.h36{height:18.560000pt;}
.h35{height:18.720000pt;}
.h33{height:19.520000pt;}
.h17{height:20.480000pt;}
.h14{height:20.640000pt;}
.h2b{height:20.728125pt;}
.h3c{height:21.285000pt;}
.h40{height:26.368125pt;}
.h11{height:27.040000pt;}
.h23{height:27.520000pt;}
.h1e{height:27.680000pt;}
.h30{height:30.272000pt;}
.h1b{height:33.656250pt;}
.hb{height:34.500000pt;}
.h9{height:36.431250pt;}
.h32{height:37.080312pt;}
.h3b{height:37.410000pt;}
.h27{height:39.562500pt;}
.h2a{height:41.285000pt;}
.h26{height:41.440000pt;}
.h2f{height:42.084375pt;}
.h18{height:42.381250pt;}
.h31{height:43.215000pt;}
.h3f{height:43.782500pt;}
.h1f{height:47.085938pt;}
.h1c{height:47.109375pt;}
.h1a{height:48.375000pt;}
.h37{height:48.530000pt;}
.h6{height:50.062500pt;}
.h2e{height:52.108438pt;}
.h34{height:52.134375pt;}
.h39{height:53.535000pt;}
.hd{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h3d{height:61.410000pt;}
.h2d{height:62.812500pt;}
.he{height:65.906667pt;}
.h4{height:66.750000pt;}
.h21{height:67.680000pt;}
.hf{height:69.179688pt;}
.h2{height:73.632000pt;}
.h3e{height:75.465000pt;}
.h24{height:78.880000pt;}
.h10{height:80.625000pt;}
.h19{height:96.672000pt;}
.h22{height:98.912000pt;}
.h25{height:122.912000pt;}
.h2c{height:216.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:125.600000pt;}
.we{width:128.832000pt;}
.wf{width:134.906667pt;}
.wc{width:135.386667pt;}
.w10{width:162.266667pt;}
.w12{width:173.946667pt;}
.w11{width:187.386667pt;}
.wb{width:188.666667pt;}
.w7{width:197.946667pt;}
.w2{width:255.266667pt;}
.w9{width:312.706667pt;}
.w8{width:312.826667pt;}
.w3{width:386.786667pt;}
.w6{width:444.066667pt;}
.wa{width:453.346667pt;}
.w5{width:642.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x19{left:12.320000pt;}
.x9{left:13.760000pt;}
.x1c{left:17.946667pt;}
.x5{left:21.920000pt;}
.xb{left:26.560000pt;}
.x7{left:28.160000pt;}
.xa{left:30.240000pt;}
.x1d{left:38.426667pt;}
.x1f{left:41.480000pt;}
.x1a{left:46.240000pt;}
.x17{left:51.360000pt;}
.x6{left:61.114667pt;}
.x1{left:75.200000pt;}
.x28{left:80.191988pt;}
.xc{left:83.834667pt;}
.x26{left:99.551988pt;}
.x2{left:104.026667pt;}
.x25{left:123.551988pt;}
.x16{left:133.626667pt;}
.x29{left:153.946655pt;}
.x14{left:181.480000pt;}
.xd{left:185.634667pt;}
.xf{left:190.760000pt;}
.x21{left:224.506655pt;}
.x12{left:262.306655pt;}
.x18{left:269.666667pt;}
.x23{left:297.506667pt;}
.x8{left:320.994667pt;}
.x27{left:328.546655pt;}
.x3{left:330.466667pt;}
.x11{left:388.386667pt;}
.x1b{left:395.906667pt;}
.x22{left:396.893322pt;}
.x20{left:411.133322pt;}
.x24{left:485.533333pt;}
.xe{left:519.613333pt;}
.x1e{left:525.373333pt;}
.x13{left:528.893333pt;}
.x10{left:565.733322pt;}
.x15{left:707.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  