
    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_2108612091ee41bbcc07eeba.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6b2db547b0a7cdb5bf126680.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_bce97ea2780599f534538317.woff2')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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_09736096081707b86d69841f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d764b29c8f7f8e9d0066b27c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eb74cc6b1ddebfa864c79cb8.woff2')format("woff");}.ff9{font-family:ff9;line-height:4.296875;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_00233208ba5b4f590c1e5031.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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);}
.v12{vertical-align:-11.520000px;}
.vd{vertical-align:-10.080000px;}
.v15{vertical-align:-8.640000px;}
.v1{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v11{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440000px;}
.v5{vertical-align:2.880000px;}
.v6{vertical-align:10.080000px;}
.vf{vertical-align:11.520000px;}
.ve{vertical-align:12.960000px;}
.v14{vertical-align:20.160000px;}
.v4{vertical-align:28.800000px;}
.v3{vertical-align:30.240000px;}
.v16{vertical-align:31.680000px;}
.v9{vertical-align:33.120000px;}
.va{vertical-align:63.360000px;}
.v17{vertical-align:76.320000px;}
.v13{vertical-align:82.080000px;}
.v8{vertical-align:90.720000px;}
.v10{vertical-align:100.800000px;}
.vc{vertical-align:106.740000px;}
.vb{vertical-align:116.820000px;}
.ls15{letter-spacing:-0.942000px;}
.lsd{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.456600px;}
.ls1{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.250800px;}
.lsb{letter-spacing:-0.233400px;}
.lse{letter-spacing:-0.184200px;}
.ls26{letter-spacing:-0.075000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.010080px;}
.ls7{letter-spacing:0.015840px;}
.ls22{letter-spacing:0.151200px;}
.ls27{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.234600px;}
.ls11{letter-spacing:0.329760px;}
.ls19{letter-spacing:0.362880px;}
.ls1a{letter-spacing:0.439200px;}
.ls14{letter-spacing:0.469200px;}
.lsf{letter-spacing:0.501000px;}
.ls21{letter-spacing:0.559200px;}
.ls1c{letter-spacing:0.606240px;}
.lsa{letter-spacing:0.630000px;}
.ls24{letter-spacing:0.656640px;}
.ls2b{letter-spacing:0.665280px;}
.ls6{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.732000px;}
.ls29{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.982080px;}
.ls1b{letter-spacing:1.761120px;}
.ls23{letter-spacing:1.909440px;}
.ls20{letter-spacing:3.201120px;}
.ls1f{letter-spacing:5.385600px;}
.ls17{letter-spacing:7.538400px;}
.ls1d{letter-spacing:10.582560px;}
.ls18{letter-spacing:12.022560px;}
.ls1e{letter-spacing:13.281120px;}
.ls25{letter-spacing:16.761600px;}
.ls9{letter-spacing:49.587840px;}
.ls28{letter-spacing:58.789440px;}
.ls8{letter-spacing:63.987840px;}
.ls10{letter-spacing:73.189440px;}
.ls12{letter-spacing:84.508320px;}
.ls5{letter-spacing:113.328000px;}
.ls4{letter-spacing:126.288000px;}
.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;}
}
.wse{word-spacing:-47.520000px;}
.ws16{word-spacing:-37.483200px;}
.ws18{word-spacing:-37.408200px;}
.ws12{word-spacing:-32.551200px;}
.wsf{word-spacing:-32.300400px;}
.ws17{word-spacing:-26.632800px;}
.ws13{word-spacing:-22.687200px;}
.ws19{word-spacing:-20.714400px;}
.ws7{word-spacing:-14.310000px;}
.wsc{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.495800px;}
.ws5{word-spacing:-12.600000px;}
.ws1c{word-spacing:-12.545280px;}
.ws1a{word-spacing:-12.381000px;}
.ws1b{word-spacing:-12.349200px;}
.ws0{word-spacing:-12.114600px;}
.ws6{word-spacing:-11.895840px;}
.ws2{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.629200px;}
.ws3{word-spacing:-11.520000px;}
.ws11{word-spacing:-9.000000px;}
.ws9{word-spacing:-7.570080px;}
.wsa{word-spacing:-7.560000px;}
.ws8{word-spacing:-7.326600px;}
.wsb{word-spacing:-6.840000px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:126.632640px;}
.ws10{word-spacing:509.896320px;}
.ws14{word-spacing:796.532640px;}
._18{margin-left:-11.817600px;}
._9{margin-left:-9.722400px;}
._8{margin-left:-8.030400px;}
._a{margin-left:-6.716640px;}
._6{margin-left:-5.346240px;}
._7{margin-left:-4.249920px;}
._5{margin-left:-2.933760px;}
._0{margin-left:-1.584000px;}
._1{width:1.224000px;}
._2{width:2.376000px;}
._3{width:3.413280px;}
._4{width:4.511040px;}
._10{width:6.072960px;}
._c{width:7.702560px;}
._13{width:9.510720px;}
._15{width:11.048160px;}
._d{width:12.452640px;}
._b{width:13.903680px;}
._17{width:15.043200px;}
._14{width:16.074240px;}
._f{width:70.360800px;}
._e{width:106.925280px;}
._11{width:285.801600px;}
._12{width:352.041600px;}
._16{width:665.240160px;}
.fc4{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs6{font-size:33.120000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fsa{font-size:47.664000px;}
.fs4{font-size:54.720000px;}
.fs9{font-size:54.864000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y116{bottom:-15.480000px;}
.yd6{bottom:-2.520000px;}
.yd4{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y77{bottom:1.800000px;}
.yc3{bottom:2.880000px;}
.y75{bottom:4.320000px;}
.yc7{bottom:9.720000px;}
.y115{bottom:13.320000px;}
.yc0{bottom:17.385000px;}
.yea{bottom:17.676000px;}
.y97{bottom:17.745000px;}
.y105{bottom:18.075000px;}
.y103{bottom:18.180000px;}
.ybd{bottom:27.825000px;}
.y12e{bottom:33.270000px;}
.y2{bottom:55.440000px;}
.y1{bottom:69.156000px;}
.y117{bottom:108.360000px;}
.y101{bottom:112.716000px;}
.y2f{bottom:113.076000px;}
.y95{bottom:114.156000px;}
.y12c{bottom:117.036000px;}
.ye9{bottom:118.080000px;}
.y15a{bottom:121.356000px;}
.y100{bottom:127.836000px;}
.y2e{bottom:128.196000px;}
.y94{bottom:129.276000px;}
.y12b{bottom:131.796000px;}
.y159{bottom:136.476000px;}
.yff{bottom:142.596000px;}
.y93{bottom:144.036000px;}
.y2d{bottom:154.830000px;}
.y58{bottom:157.350000px;}
.y12a{bottom:158.430000px;}
.y92{bottom:158.790000px;}
.y158{bottom:163.110000px;}
.y104{bottom:168.840000px;}
.y157{bottom:178.230000px;}
.y2c{bottom:181.830000px;}
.y57{bottom:183.990000px;}
.y91{bottom:185.430000px;}
.y90{bottom:200.595000px;}
.y156{bottom:204.915000px;}
.y2b{bottom:208.515000px;}
.ybb{bottom:208.875000px;}
.y56{bottom:211.035000px;}
.y129{bottom:215.355000px;}
.y8f{bottom:215.715000px;}
.y155{bottom:220.035000px;}
.y8e{bottom:230.475000px;}
.y2a{bottom:235.515000px;}
.yba{bottom:235.875000px;}
.y55{bottom:238.035000px;}
.y8d{bottom:245.235000px;}
.y154{bottom:246.675000px;}
.yb9{bottom:251.715000px;}
.y128{bottom:252.795000px;}
.y8c{bottom:260.355000px;}
.y153{bottom:262.155000px;}
.y29{bottom:262.515000px;}
.y54{bottom:264.675000px;}
.yb8{bottom:266.475000px;}
.y8b{bottom:275.115000px;}
.yb7{bottom:282.315000px;}
.y152{bottom:288.435000px;}
.y28{bottom:289.155000px;}
.y8a{bottom:290.235000px;}
.y53{bottom:291.675000px;}
.yb6{bottom:298.155000px;}
.y127{bottom:300.315000px;}
.y151{bottom:303.915000px;}
.y89{bottom:311.835000px;}
.yb5{bottom:312.915000px;}
.y126{bottom:315.465000px;}
.y27{bottom:316.185000px;}
.y52{bottom:318.705000px;}
.yb4{bottom:328.785000px;}
.y150{bottom:330.225000px;}
.y88{bottom:341.385000px;}
.y125{bottom:342.105000px;}
.y26{bottom:343.185000px;}
.yb3{bottom:343.545000px;}
.y51{bottom:345.345000px;}
.y14f{bottom:345.705000px;}
.y87{bottom:356.505000px;}
.y124{bottom:357.225000px;}
.yb2{bottom:358.665000px;}
.y25{bottom:370.185000px;}
.y86{bottom:371.265000px;}
.y14e{bottom:371.985000px;}
.y50{bottom:372.345000px;}
.yb1{bottom:373.425000px;}
.ybf{bottom:385.920000px;}
.ybc{bottom:386.640000px;}
.y123{bottom:387.105000px;}
.y14d{bottom:387.465000px;}
.y85{bottom:392.865000px;}
.y24{bottom:396.825000px;}
.ybe{bottom:398.985000px;}
.y4f{bottom:399.345000px;}
.y122{bottom:401.865000px;}
.y14c{bottom:402.225000px;}
.y96{bottom:410.040000px;}
.y84{bottom:420.585000px;}
.y23{bottom:423.825000px;}
.y4e{bottom:426.345000px;}
.y121{bottom:428.505000px;}
.y14b{bottom:428.865000px;}
.y83{bottom:432.825000px;}
.y120{bottom:444.030000px;}
.y82{bottom:444.390000px;}
.y4d{bottom:450.510000px;}
.y22{bottom:450.870000px;}
.y81{bottom:456.270000px;}
.ye8{bottom:462.030000px;}
.y11f{bottom:466.350000px;}
.y80{bottom:467.790000px;}
.y14a{bottom:470.670000px;}
.y4c{bottom:474.270000px;}
.ye7{bottom:477.150000px;}
.y21{bottom:477.510000px;}
.y7f{bottom:479.310000px;}
.y4b{bottom:489.390000px;}
.y7e{bottom:490.830000px;}
.ye6{bottom:492.270000px;}
.y149{bottom:497.670000px;}
.y12d{bottom:498.600000px;}
.y7d{bottom:502.350000px;}
.y20{bottom:504.510000px;}
.ye5{bottom:507.030000px;}
.y148{bottom:512.790000px;}
.y4a{bottom:513.150000px;}
.y7c{bottom:513.870000px;}
.y12f{bottom:516.390000px;}
.y7b{bottom:525.390000px;}
.y147{bottom:527.550000px;}
.ye4{bottom:528.630000px;}
.y1f{bottom:531.510000px;}
.y49{bottom:536.910000px;}
.y7a{bottom:548.430000px;}
.yfe{bottom:549.510000px;}
.y146{bottom:550.230000px;}
.y1e{bottom:558.150000px;}
.y79{bottom:559.950000px;}
.y48{bottom:561.030000px;}
.yfd{bottom:564.630000px;}
.y78{bottom:571.500000px;}
.yfc{bottom:579.420000px;}
.y76{bottom:583.020000px;}
.y47{bottom:584.820000px;}
.y1d{bottom:585.180000px;}
.y74{bottom:594.540000px;}
.y145{bottom:597.420000px;}
.y46{bottom:608.940000px;}
.yfb{bottom:609.300000px;}
.ye3{bottom:610.020000px;}
.y1c{bottom:612.180000px;}
.y144{bottom:612.900000px;}
.y73{bottom:621.540000px;}
.yfa{bottom:624.060000px;}
.y143{bottom:627.660000px;}
.ye1{bottom:629.100000px;}
.ye2{bottom:629.820000px;}
.y45{bottom:632.700000px;}
.y1b{bottom:639.180000px;}
.y142{bottom:642.420000px;}
.yf9{bottom:646.020000px;}
.y72{bottom:648.540000px;}
.y44{bottom:656.460000px;}
.y102{bottom:659.880000px;}
.y71{bottom:663.660000px;}
.y1a{bottom:665.820000px;}
.y141{bottom:669.060000px;}
.yb0{bottom:677.700000px;}
.y70{bottom:678.780000px;}
.ye0{bottom:679.500000px;}
.y43{bottom:680.220000px;}
.y140{bottom:684.540000px;}
.y19{bottom:692.820000px;}
.ydf{bottom:694.650000px;}
.y6f{bottom:700.050000px;}
.y42{bottom:705.810000px;}
.yaf{bottom:707.970000px;}
.y13f{bottom:710.850000px;}
.y18{bottom:719.850000px;}
.yde{bottom:722.010000px;}
.yae{bottom:722.730000px;}
.y13e{bottom:726.330000px;}
.y6e{bottom:729.210000px;}
.yad{bottom:737.850000px;}
.y13d{bottom:741.090000px;}
.y17{bottom:746.490000px;}
.ydd{bottom:749.010000px;}
.yac{bottom:752.610000px;}
.y41{bottom:753.330000px;}
.y13c{bottom:755.850000px;}
.y6d{bottom:760.530000px;}
.y16{bottom:761.970000px;}
.yab{bottom:767.370000px;}
.y114{bottom:767.730000px;}
.yd2{bottom:774.930000px;}
.y40{bottom:776.010000px;}
.ydc{bottom:776.370000px;}
.y15{bottom:776.730000px;}
.yaa{bottom:782.490000px;}
.yd3{bottom:789.690000px;}
.ydb{bottom:790.050000px;}
.y14{bottom:791.490000px;}
.y165{bottom:794.010000px;}
.y113{bottom:794.370000px;}
.yda{bottom:796.170000px;}
.y13b{bottom:797.610000px;}
.y3f{bottom:798.330000px;}
.yd5{bottom:801.930000px;}
.y13{bottom:806.610000px;}
.y6c{bottom:808.050000px;}
.ya9{bottom:808.770000px;}
.yd1{bottom:809.850000px;}
.y13a{bottom:812.730000px;}
.yd9{bottom:818.850000px;}
.y3e{bottom:821.010000px;}
.y12{bottom:821.370000px;}
.y6b{bottom:823.215000px;}
.ya8{bottom:824.295000px;}
.y112{bottom:824.655000px;}
.yd7{bottom:826.815000px;}
.y139{bottom:827.535000px;}
.yd8{bottom:832.935000px;}
.y11{bottom:836.175000px;}
.y6a{bottom:837.975000px;}
.ya7{bottom:839.055000px;}
.y138{bottom:842.295000px;}
.y3d{bottom:843.375000px;}
.y10{bottom:851.295000px;}
.y69{bottom:853.095000px;}
.ya6{bottom:853.815000px;}
.y164{bottom:862.815000px;}
.y3c{bottom:865.695000px;}
.y111{bottom:866.415000px;}
.y68{bottom:867.855000px;}
.ya5{bottom:868.935000px;}
.yd0{bottom:871.455000px;}
.yf8{bottom:871.815000px;}
.yf{bottom:877.935000px;}
.y110{bottom:881.535000px;}
.y67{bottom:882.975000px;}
.ya4{bottom:883.695000px;}
.y137{bottom:884.415000px;}
.y11e{bottom:885.495000px;}
.y3b{bottom:888.015000px;}
.ye{bottom:893.055000px;}
.ycf{bottom:895.935000px;}
.y10f{bottom:896.295000px;}
.y66{bottom:897.735000px;}
.ya3{bottom:898.815000px;}
.y136{bottom:899.175000px;}
.y163{bottom:904.575000px;}
.yd{bottom:907.815000px;}
.y3a{bottom:910.335000px;}
.y11d{bottom:912.135000px;}
.y65{bottom:912.495000px;}
.yce{bottom:913.575000px;}
.yf7{bottom:913.935000px;}
.y162{bottom:919.695000px;}
.ycc{bottom:920.055000px;}
.ya2{bottom:920.415000px;}
.yc{bottom:922.935000px;}
.ycd{bottom:925.095000px;}
.y11c{bottom:927.615000px;}
.yf6{bottom:929.055000px;}
.y39{bottom:933.015000px;}
.yb{bottom:937.695000px;}
.y10e{bottom:938.055000px;}
.y64{bottom:939.135000px;}
.y11b{bottom:942.375000px;}
.yf5{bottom:943.815000px;}
.y161{bottom:946.335000px;}
.ya1{bottom:949.965000px;}
.ya{bottom:952.485000px;}
.y10d{bottom:952.845000px;}
.y63{bottom:954.285000px;}
.y38{bottom:955.365000px;}
.y160{bottom:961.485000px;}
.y9{bottom:967.605000px;}
.y10c{bottom:967.965000px;}
.ycb{bottom:968.325000px;}
.y11a{bottom:969.045000px;}
.y62{bottom:969.405000px;}
.yf4{bottom:970.485000px;}
.y135{bottom:970.845000px;}
.y15f{bottom:976.605000px;}
.y37{bottom:977.685000px;}
.y10b{bottom:982.725000px;}
.y61{bottom:984.165000px;}
.yf3{bottom:985.605000px;}
.y8{bottom:989.925000px;}
.yca{bottom:994.965000px;}
.y10a{bottom:997.485000px;}
.y60{bottom:998.925000px;}
.y36{bottom:1000.005000px;}
.y134{bottom:1000.365000px;}
.ya0{bottom:1002.885000px;}
.y9e{bottom:1005.405000px;}
.yc9{bottom:1007.205000px;}
.y9f{bottom:1009.725000px;}
.yf2{bottom:1012.245000px;}
.y109{bottom:1012.605000px;}
.y119{bottom:1014.045000px;}
.y15e{bottom:1018.365000px;}
.y35{bottom:1022.325000px;}
.yc8{bottom:1023.765000px;}
.y5f{bottom:1025.565000px;}
.y133{bottom:1027.005000px;}
.yf1{bottom:1027.365000px;}
.y9d{bottom:1032.765000px;}
.y7{bottom:1037.445000px;}
.y9c{bottom:1039.965000px;}
.y118{bottom:1040.325000px;}
.y5e{bottom:1040.685000px;}
.yf0{bottom:1042.125000px;}
.y34{bottom:1045.005000px;}
.y108{bottom:1054.005000px;}
.y5d{bottom:1055.805000px;}
.yc6{bottom:1056.165000px;}
.yef{bottom:1057.245000px;}
.y15d{bottom:1060.125000px;}
.y6{bottom:1064.445000px;}
.y33{bottom:1067.325000px;}
.y107{bottom:1069.125000px;}
.y5c{bottom:1070.565000px;}
.y132{bottom:1072.005000px;}
.y9b{bottom:1073.085000px;}
.yc5{bottom:1079.250000px;}
.yee{bottom:1083.930000px;}
.y106{bottom:1084.290000px;}
.y5b{bottom:1085.730000px;}
.y15c{bottom:1086.810000px;}
.y131{bottom:1087.170000px;}
.y32{bottom:1089.690000px;}
.y5{bottom:1093.290000px;}
.yc4{bottom:1095.450000px;}
.yed{bottom:1099.050000px;}
.y5a{bottom:1100.490000px;}
.y9a{bottom:1100.850000px;}
.y15b{bottom:1101.930000px;}
.yc2{bottom:1111.650000px;}
.y31{bottom:1112.010000px;}
.y130{bottom:1113.450000px;}
.yec{bottom:1113.810000px;}
.y59{bottom:1115.250000px;}
.y4{bottom:1115.610000px;}
.y99{bottom:1128.570000px;}
.yeb{bottom:1128.930000px;}
.y30{bottom:1132.170000px;}
.y3{bottom:1137.930000px;}
.yc1{bottom:1143.330000px;}
.y98{bottom:1143.690000px;}
.h8{height:10.800000px;}
.ha{height:10.836000px;}
.h1a{height:12.240000px;}
.h14{height:15.480000px;}
.h9{height:21.867891px;}
.h16{height:22.356000px;}
.h1b{height:24.876000px;}
.h25{height:25.920000px;}
.h13{height:30.240000px;}
.hb{height:30.600000px;}
.h23{height:30.960000px;}
.h27{height:33.621328px;}
.h2{height:34.363828px;}
.hd{height:34.595859px;}
.h26{height:38.715469px;}
.h15{height:39.570469px;}
.h7{height:39.837656px;}
.h12{height:41.040000px;}
.h6{height:43.735781px;}
.hc{height:45.101250px;}
.h24{height:45.219937px;}
.h28{height:46.080000px;}
.h3{height:52.066406px;}
.h5{height:71.613281px;}
.h11{height:80.616797px;}
.h4{height:91.863281px;}
.hf{height:115.667578px;}
.h10{height:118.547578px;}
.h22{height:133.192969px;}
.h1f{height:144.467578px;}
.he{height:145.907578px;}
.h18{height:148.787578px;}
.h1e{height:148.967578px;}
.h20{height:168.283828px;}
.h17{height:206.387578px;}
.h21{height:215.272969px;}
.h1d{height:261.287578px;}
.h1c{height:423.825000px;}
.h19{height:789.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:46.836000px;}
.w3{width:51.840000px;}
.wa{width:83.916000px;}
.wb{width:141.912000px;}
.wc{width:159.555000px;}
.w4{width:251.025000px;}
.w9{width:260.025000px;}
.w7{width:297.360000px;}
.w6{width:348.840000px;}
.w8{width:382.680000px;}
.w11{width:457.770000px;}
.w10{width:571.320000px;}
.wf{width:622.440000px;}
.w13{width:622.800000px;}
.w12{width:669.960000px;}
.we{width:777.960000px;}
.w1{width:892.500000px;}
.wd{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x18{left:1.476000px;}
.x41{left:5.070000px;}
.xf{left:8.280000px;}
.x10{left:9.360000px;}
.xe{left:10.440000px;}
.x11{left:11.880000px;}
.x26{left:14.796000px;}
.xa{left:17.283000px;}
.x2e{left:19.470000px;}
.x1f{left:20.910000px;}
.x25{left:23.070000px;}
.x44{left:24.915000px;}
.x2b{left:27.000000px;}
.x27{left:28.830000px;}
.x1b{left:31.140000px;}
.x2a{left:36.030000px;}
.x2d{left:37.110000px;}
.x23{left:38.880000px;}
.x28{left:39.990000px;}
.x21{left:45.030000px;}
.x29{left:47.199000px;}
.x43{left:55.875000px;}
.x2c{left:69.879000px;}
.x3b{left:75.240000px;}
.x17{left:90.360000px;}
.x24{left:96.189000px;}
.x1d{left:100.149000px;}
.x3f{left:102.345000px;}
.x42{left:111.240000px;}
.xc{left:113.790000px;}
.x13{left:116.175000px;}
.x1c{left:122.796000px;}
.x3d{left:130.065000px;}
.x2{left:135.071987px;}
.x7{left:150.194987px;}
.x2f{left:156.674987px;}
.x3{left:157.754987px;}
.x3e{left:160.200000px;}
.x9{left:162.074987px;}
.x8{left:164.954987px;}
.xb{left:187.995000px;}
.x16{left:189.074987px;}
.x19{left:199.154987px;}
.x3c{left:202.065000px;}
.x33{left:204.194973px;}
.x34{left:212.474987px;}
.x38{left:214.274987px;}
.x4{left:267.944987px;}
.x6{left:284.504987px;}
.x31{left:330.629987px;}
.x5{left:352.949987px;}
.x45{left:359.069987px;}
.x3a{left:373.109987px;}
.x39{left:376.349987px;}
.x15{left:381.749987px;}
.x1e{left:383.550000px;}
.x40{left:392.550000px;}
.x1a{left:399.960000px;}
.x14{left:403.019987px;}
.x30{left:417.059987px;}
.x36{left:419.939987px;}
.x37{left:424.979987px;}
.xd{left:439.380000px;}
.x32{left:446.579987px;}
.x20{left:468.180000px;}
.x12{left:502.920000px;}
.x22{left:610.815000px;}
.x35{left:634.214987px;}
.x46{left:746.204987px;}
.x1{left:752.009987px;}
@media print{
.v12{vertical-align:-10.240000pt;}
.vd{vertical-align:-8.960000pt;}
.v15{vertical-align:-7.680000pt;}
.v1{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v11{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280000pt;}
.v5{vertical-align:2.560000pt;}
.v6{vertical-align:8.960000pt;}
.vf{vertical-align:10.240000pt;}
.ve{vertical-align:11.520000pt;}
.v14{vertical-align:17.920000pt;}
.v4{vertical-align:25.600000pt;}
.v3{vertical-align:26.880000pt;}
.v16{vertical-align:28.160000pt;}
.v9{vertical-align:29.440000pt;}
.va{vertical-align:56.320000pt;}
.v17{vertical-align:67.840000pt;}
.v13{vertical-align:72.960000pt;}
.v8{vertical-align:80.640000pt;}
.v10{vertical-align:89.600000pt;}
.vc{vertical-align:94.880000pt;}
.vb{vertical-align:103.840000pt;}
.ls15{letter-spacing:-0.837333pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.405867pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.222933pt;}
.lsb{letter-spacing:-0.207467pt;}
.lse{letter-spacing:-0.163733pt;}
.ls26{letter-spacing:-0.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.008960pt;}
.ls7{letter-spacing:0.014080pt;}
.ls22{letter-spacing:0.134400pt;}
.ls27{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.208533pt;}
.ls11{letter-spacing:0.293120pt;}
.ls19{letter-spacing:0.322560pt;}
.ls1a{letter-spacing:0.390400pt;}
.ls14{letter-spacing:0.417067pt;}
.lsf{letter-spacing:0.445333pt;}
.ls21{letter-spacing:0.497067pt;}
.ls1c{letter-spacing:0.538880pt;}
.lsa{letter-spacing:0.560000pt;}
.ls24{letter-spacing:0.583680pt;}
.ls2b{letter-spacing:0.591360pt;}
.ls6{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.650667pt;}
.ls29{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.872960pt;}
.ls1b{letter-spacing:1.565440pt;}
.ls23{letter-spacing:1.697280pt;}
.ls20{letter-spacing:2.845440pt;}
.ls1f{letter-spacing:4.787200pt;}
.ls17{letter-spacing:6.700800pt;}
.ls1d{letter-spacing:9.406720pt;}
.ls18{letter-spacing:10.686720pt;}
.ls1e{letter-spacing:11.805440pt;}
.ls25{letter-spacing:14.899200pt;}
.ls9{letter-spacing:44.078080pt;}
.ls28{letter-spacing:52.257280pt;}
.ls8{letter-spacing:56.878080pt;}
.ls10{letter-spacing:65.057280pt;}
.ls12{letter-spacing:75.118507pt;}
.ls5{letter-spacing:100.736000pt;}
.ls4{letter-spacing:112.256000pt;}
.wse{word-spacing:-42.240000pt;}
.ws16{word-spacing:-33.318400pt;}
.ws18{word-spacing:-33.251733pt;}
.ws12{word-spacing:-28.934400pt;}
.wsf{word-spacing:-28.711467pt;}
.ws17{word-spacing:-23.673600pt;}
.ws13{word-spacing:-20.166400pt;}
.ws19{word-spacing:-18.412800pt;}
.ws7{word-spacing:-12.720000pt;}
.wsc{word-spacing:-12.160000pt;}
.wsd{word-spacing:-11.996267pt;}
.ws5{word-spacing:-11.200000pt;}
.ws1c{word-spacing:-11.151360pt;}
.ws1a{word-spacing:-11.005333pt;}
.ws1b{word-spacing:-10.977067pt;}
.ws0{word-spacing:-10.768533pt;}
.ws6{word-spacing:-10.574080pt;}
.ws2{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.337067pt;}
.ws3{word-spacing:-10.240000pt;}
.ws11{word-spacing:-8.000000pt;}
.ws9{word-spacing:-6.728960pt;}
.wsa{word-spacing:-6.720000pt;}
.ws8{word-spacing:-6.512533pt;}
.wsb{word-spacing:-6.080000pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:112.562347pt;}
.ws10{word-spacing:453.241173pt;}
.ws14{word-spacing:708.029013pt;}
._18{margin-left:-10.504533pt;}
._9{margin-left:-8.642133pt;}
._8{margin-left:-7.138133pt;}
._a{margin-left:-5.970347pt;}
._6{margin-left:-4.752213pt;}
._7{margin-left:-3.777707pt;}
._5{margin-left:-2.607787pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.088000pt;}
._2{width:2.112000pt;}
._3{width:3.034027pt;}
._4{width:4.009813pt;}
._10{width:5.398187pt;}
._c{width:6.846720pt;}
._13{width:8.453973pt;}
._15{width:9.820587pt;}
._d{width:11.069013pt;}
._b{width:12.358827pt;}
._17{width:13.371733pt;}
._14{width:14.288213pt;}
._f{width:62.542933pt;}
._e{width:95.044693pt;}
._11{width:254.045867pt;}
._12{width:312.925867pt;}
._16{width:591.324587pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:29.440000pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fsa{font-size:42.368000pt;}
.fs4{font-size:48.640000pt;}
.fs9{font-size:48.768000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y116{bottom:-13.760000pt;}
.yd6{bottom:-2.240000pt;}
.yd4{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:1.600000pt;}
.yc3{bottom:2.560000pt;}
.y75{bottom:3.840000pt;}
.yc7{bottom:8.640000pt;}
.y115{bottom:11.840000pt;}
.yc0{bottom:15.453333pt;}
.yea{bottom:15.712000pt;}
.y97{bottom:15.773333pt;}
.y105{bottom:16.066667pt;}
.y103{bottom:16.160000pt;}
.ybd{bottom:24.733333pt;}
.y12e{bottom:29.573333pt;}
.y2{bottom:49.280000pt;}
.y1{bottom:61.472000pt;}
.y117{bottom:96.320000pt;}
.y101{bottom:100.192000pt;}
.y2f{bottom:100.512000pt;}
.y95{bottom:101.472000pt;}
.y12c{bottom:104.032000pt;}
.ye9{bottom:104.960000pt;}
.y15a{bottom:107.872000pt;}
.y100{bottom:113.632000pt;}
.y2e{bottom:113.952000pt;}
.y94{bottom:114.912000pt;}
.y12b{bottom:117.152000pt;}
.y159{bottom:121.312000pt;}
.yff{bottom:126.752000pt;}
.y93{bottom:128.032000pt;}
.y2d{bottom:137.626667pt;}
.y58{bottom:139.866667pt;}
.y12a{bottom:140.826667pt;}
.y92{bottom:141.146667pt;}
.y158{bottom:144.986667pt;}
.y104{bottom:150.080000pt;}
.y157{bottom:158.426667pt;}
.y2c{bottom:161.626667pt;}
.y57{bottom:163.546667pt;}
.y91{bottom:164.826667pt;}
.y90{bottom:178.306667pt;}
.y156{bottom:182.146667pt;}
.y2b{bottom:185.346667pt;}
.ybb{bottom:185.666667pt;}
.y56{bottom:187.586667pt;}
.y129{bottom:191.426667pt;}
.y8f{bottom:191.746667pt;}
.y155{bottom:195.586667pt;}
.y8e{bottom:204.866667pt;}
.y2a{bottom:209.346667pt;}
.yba{bottom:209.666667pt;}
.y55{bottom:211.586667pt;}
.y8d{bottom:217.986667pt;}
.y154{bottom:219.266667pt;}
.yb9{bottom:223.746667pt;}
.y128{bottom:224.706667pt;}
.y8c{bottom:231.426667pt;}
.y153{bottom:233.026667pt;}
.y29{bottom:233.346667pt;}
.y54{bottom:235.266667pt;}
.yb8{bottom:236.866667pt;}
.y8b{bottom:244.546667pt;}
.yb7{bottom:250.946667pt;}
.y152{bottom:256.386667pt;}
.y28{bottom:257.026667pt;}
.y8a{bottom:257.986667pt;}
.y53{bottom:259.266667pt;}
.yb6{bottom:265.026667pt;}
.y127{bottom:266.946667pt;}
.y151{bottom:270.146667pt;}
.y89{bottom:277.186667pt;}
.yb5{bottom:278.146667pt;}
.y126{bottom:280.413333pt;}
.y27{bottom:281.053333pt;}
.y52{bottom:283.293333pt;}
.yb4{bottom:292.253333pt;}
.y150{bottom:293.533333pt;}
.y88{bottom:303.453333pt;}
.y125{bottom:304.093333pt;}
.y26{bottom:305.053333pt;}
.yb3{bottom:305.373333pt;}
.y51{bottom:306.973333pt;}
.y14f{bottom:307.293333pt;}
.y87{bottom:316.893333pt;}
.y124{bottom:317.533333pt;}
.yb2{bottom:318.813333pt;}
.y25{bottom:329.053333pt;}
.y86{bottom:330.013333pt;}
.y14e{bottom:330.653333pt;}
.y50{bottom:330.973333pt;}
.yb1{bottom:331.933333pt;}
.ybf{bottom:343.040000pt;}
.ybc{bottom:343.680000pt;}
.y123{bottom:344.093333pt;}
.y14d{bottom:344.413333pt;}
.y85{bottom:349.213333pt;}
.y24{bottom:352.733333pt;}
.ybe{bottom:354.653333pt;}
.y4f{bottom:354.973333pt;}
.y122{bottom:357.213333pt;}
.y14c{bottom:357.533333pt;}
.y96{bottom:364.480000pt;}
.y84{bottom:373.853333pt;}
.y23{bottom:376.733333pt;}
.y4e{bottom:378.973333pt;}
.y121{bottom:380.893333pt;}
.y14b{bottom:381.213333pt;}
.y83{bottom:384.733333pt;}
.y120{bottom:394.693333pt;}
.y82{bottom:395.013333pt;}
.y4d{bottom:400.453333pt;}
.y22{bottom:400.773333pt;}
.y81{bottom:405.573333pt;}
.ye8{bottom:410.693333pt;}
.y11f{bottom:414.533333pt;}
.y80{bottom:415.813333pt;}
.y14a{bottom:418.373333pt;}
.y4c{bottom:421.573333pt;}
.ye7{bottom:424.133333pt;}
.y21{bottom:424.453333pt;}
.y7f{bottom:426.053333pt;}
.y4b{bottom:435.013333pt;}
.y7e{bottom:436.293333pt;}
.ye6{bottom:437.573333pt;}
.y149{bottom:442.373333pt;}
.y12d{bottom:443.200000pt;}
.y7d{bottom:446.533333pt;}
.y20{bottom:448.453333pt;}
.ye5{bottom:450.693333pt;}
.y148{bottom:455.813333pt;}
.y4a{bottom:456.133333pt;}
.y7c{bottom:456.773333pt;}
.y12f{bottom:459.013333pt;}
.y7b{bottom:467.013333pt;}
.y147{bottom:468.933333pt;}
.ye4{bottom:469.893333pt;}
.y1f{bottom:472.453333pt;}
.y49{bottom:477.253333pt;}
.y7a{bottom:487.493333pt;}
.yfe{bottom:488.453333pt;}
.y146{bottom:489.093333pt;}
.y1e{bottom:496.133333pt;}
.y79{bottom:497.733333pt;}
.y48{bottom:498.693333pt;}
.yfd{bottom:501.893333pt;}
.y78{bottom:508.000000pt;}
.yfc{bottom:515.040000pt;}
.y76{bottom:518.240000pt;}
.y47{bottom:519.840000pt;}
.y1d{bottom:520.160000pt;}
.y74{bottom:528.480000pt;}
.y145{bottom:531.040000pt;}
.y46{bottom:541.280000pt;}
.yfb{bottom:541.600000pt;}
.ye3{bottom:542.240000pt;}
.y1c{bottom:544.160000pt;}
.y144{bottom:544.800000pt;}
.y73{bottom:552.480000pt;}
.yfa{bottom:554.720000pt;}
.y143{bottom:557.920000pt;}
.ye1{bottom:559.200000pt;}
.ye2{bottom:559.840000pt;}
.y45{bottom:562.400000pt;}
.y1b{bottom:568.160000pt;}
.y142{bottom:571.040000pt;}
.yf9{bottom:574.240000pt;}
.y72{bottom:576.480000pt;}
.y44{bottom:583.520000pt;}
.y102{bottom:586.560000pt;}
.y71{bottom:589.920000pt;}
.y1a{bottom:591.840000pt;}
.y141{bottom:594.720000pt;}
.yb0{bottom:602.400000pt;}
.y70{bottom:603.360000pt;}
.ye0{bottom:604.000000pt;}
.y43{bottom:604.640000pt;}
.y140{bottom:608.480000pt;}
.y19{bottom:615.840000pt;}
.ydf{bottom:617.466667pt;}
.y6f{bottom:622.266667pt;}
.y42{bottom:627.386667pt;}
.yaf{bottom:629.306667pt;}
.y13f{bottom:631.866667pt;}
.y18{bottom:639.866667pt;}
.yde{bottom:641.786667pt;}
.yae{bottom:642.426667pt;}
.y13e{bottom:645.626667pt;}
.y6e{bottom:648.186667pt;}
.yad{bottom:655.866667pt;}
.y13d{bottom:658.746667pt;}
.y17{bottom:663.546667pt;}
.ydd{bottom:665.786667pt;}
.yac{bottom:668.986667pt;}
.y41{bottom:669.626667pt;}
.y13c{bottom:671.866667pt;}
.y6d{bottom:676.026667pt;}
.y16{bottom:677.306667pt;}
.yab{bottom:682.106667pt;}
.y114{bottom:682.426667pt;}
.yd2{bottom:688.826667pt;}
.y40{bottom:689.786667pt;}
.ydc{bottom:690.106667pt;}
.y15{bottom:690.426667pt;}
.yaa{bottom:695.546667pt;}
.yd3{bottom:701.946667pt;}
.ydb{bottom:702.266667pt;}
.y14{bottom:703.546667pt;}
.y165{bottom:705.786667pt;}
.y113{bottom:706.106667pt;}
.yda{bottom:707.706667pt;}
.y13b{bottom:708.986667pt;}
.y3f{bottom:709.626667pt;}
.yd5{bottom:712.826667pt;}
.y13{bottom:716.986667pt;}
.y6c{bottom:718.266667pt;}
.ya9{bottom:718.906667pt;}
.yd1{bottom:719.866667pt;}
.y13a{bottom:722.426667pt;}
.yd9{bottom:727.866667pt;}
.y3e{bottom:729.786667pt;}
.y12{bottom:730.106667pt;}
.y6b{bottom:731.746667pt;}
.ya8{bottom:732.706667pt;}
.y112{bottom:733.026667pt;}
.yd7{bottom:734.946667pt;}
.y139{bottom:735.586667pt;}
.yd8{bottom:740.386667pt;}
.y11{bottom:743.266667pt;}
.y6a{bottom:744.866667pt;}
.ya7{bottom:745.826667pt;}
.y138{bottom:748.706667pt;}
.y3d{bottom:749.666667pt;}
.y10{bottom:756.706667pt;}
.y69{bottom:758.306667pt;}
.ya6{bottom:758.946667pt;}
.y164{bottom:766.946667pt;}
.y3c{bottom:769.506667pt;}
.y111{bottom:770.146667pt;}
.y68{bottom:771.426667pt;}
.ya5{bottom:772.386667pt;}
.yd0{bottom:774.626667pt;}
.yf8{bottom:774.946667pt;}
.yf{bottom:780.386667pt;}
.y110{bottom:783.586667pt;}
.y67{bottom:784.866667pt;}
.ya4{bottom:785.506667pt;}
.y137{bottom:786.146667pt;}
.y11e{bottom:787.106667pt;}
.y3b{bottom:789.346667pt;}
.ye{bottom:793.826667pt;}
.ycf{bottom:796.386667pt;}
.y10f{bottom:796.706667pt;}
.y66{bottom:797.986667pt;}
.ya3{bottom:798.946667pt;}
.y136{bottom:799.266667pt;}
.y163{bottom:804.066667pt;}
.yd{bottom:806.946667pt;}
.y3a{bottom:809.186667pt;}
.y11d{bottom:810.786667pt;}
.y65{bottom:811.106667pt;}
.yce{bottom:812.066667pt;}
.yf7{bottom:812.386667pt;}
.y162{bottom:817.506667pt;}
.ycc{bottom:817.826667pt;}
.ya2{bottom:818.146667pt;}
.yc{bottom:820.386667pt;}
.ycd{bottom:822.306667pt;}
.y11c{bottom:824.546667pt;}
.yf6{bottom:825.826667pt;}
.y39{bottom:829.346667pt;}
.yb{bottom:833.506667pt;}
.y10e{bottom:833.826667pt;}
.y64{bottom:834.786667pt;}
.y11b{bottom:837.666667pt;}
.yf5{bottom:838.946667pt;}
.y161{bottom:841.186667pt;}
.ya1{bottom:844.413333pt;}
.ya{bottom:846.653333pt;}
.y10d{bottom:846.973333pt;}
.y63{bottom:848.253333pt;}
.y38{bottom:849.213333pt;}
.y160{bottom:854.653333pt;}
.y9{bottom:860.093333pt;}
.y10c{bottom:860.413333pt;}
.ycb{bottom:860.733333pt;}
.y11a{bottom:861.373333pt;}
.y62{bottom:861.693333pt;}
.yf4{bottom:862.653333pt;}
.y135{bottom:862.973333pt;}
.y15f{bottom:868.093333pt;}
.y37{bottom:869.053333pt;}
.y10b{bottom:873.533333pt;}
.y61{bottom:874.813333pt;}
.yf3{bottom:876.093333pt;}
.y8{bottom:879.933333pt;}
.yca{bottom:884.413333pt;}
.y10a{bottom:886.653333pt;}
.y60{bottom:887.933333pt;}
.y36{bottom:888.893333pt;}
.y134{bottom:889.213333pt;}
.ya0{bottom:891.453333pt;}
.y9e{bottom:893.693333pt;}
.yc9{bottom:895.293333pt;}
.y9f{bottom:897.533333pt;}
.yf2{bottom:899.773333pt;}
.y109{bottom:900.093333pt;}
.y119{bottom:901.373333pt;}
.y15e{bottom:905.213333pt;}
.y35{bottom:908.733333pt;}
.yc8{bottom:910.013333pt;}
.y5f{bottom:911.613333pt;}
.y133{bottom:912.893333pt;}
.yf1{bottom:913.213333pt;}
.y9d{bottom:918.013333pt;}
.y7{bottom:922.173333pt;}
.y9c{bottom:924.413333pt;}
.y118{bottom:924.733333pt;}
.y5e{bottom:925.053333pt;}
.yf0{bottom:926.333333pt;}
.y34{bottom:928.893333pt;}
.y108{bottom:936.893333pt;}
.y5d{bottom:938.493333pt;}
.yc6{bottom:938.813333pt;}
.yef{bottom:939.773333pt;}
.y15d{bottom:942.333333pt;}
.y6{bottom:946.173333pt;}
.y33{bottom:948.733333pt;}
.y107{bottom:950.333333pt;}
.y5c{bottom:951.613333pt;}
.y132{bottom:952.893333pt;}
.y9b{bottom:953.853333pt;}
.yc5{bottom:959.333333pt;}
.yee{bottom:963.493333pt;}
.y106{bottom:963.813333pt;}
.y5b{bottom:965.093333pt;}
.y15c{bottom:966.053333pt;}
.y131{bottom:966.373333pt;}
.y32{bottom:968.613333pt;}
.y5{bottom:971.813333pt;}
.yc4{bottom:973.733333pt;}
.yed{bottom:976.933333pt;}
.y5a{bottom:978.213333pt;}
.y9a{bottom:978.533333pt;}
.y15b{bottom:979.493333pt;}
.yc2{bottom:988.133333pt;}
.y31{bottom:988.453333pt;}
.y130{bottom:989.733333pt;}
.yec{bottom:990.053333pt;}
.y59{bottom:991.333333pt;}
.y4{bottom:991.653333pt;}
.y99{bottom:1003.173333pt;}
.yeb{bottom:1003.493333pt;}
.y30{bottom:1006.373333pt;}
.y3{bottom:1011.493333pt;}
.yc1{bottom:1016.293333pt;}
.y98{bottom:1016.613333pt;}
.h8{height:9.600000pt;}
.ha{height:9.632000pt;}
.h1a{height:10.880000pt;}
.h14{height:13.760000pt;}
.h9{height:19.438125pt;}
.h16{height:19.872000pt;}
.h1b{height:22.112000pt;}
.h25{height:23.040000pt;}
.h13{height:26.880000pt;}
.hb{height:27.200000pt;}
.h23{height:27.520000pt;}
.h27{height:29.885625pt;}
.h2{height:30.545625pt;}
.hd{height:30.751875pt;}
.h26{height:34.413750pt;}
.h15{height:35.173750pt;}
.h7{height:35.411250pt;}
.h12{height:36.480000pt;}
.h6{height:38.876250pt;}
.hc{height:40.090000pt;}
.h24{height:40.195500pt;}
.h28{height:40.960000pt;}
.h3{height:46.281250pt;}
.h5{height:63.656250pt;}
.h11{height:71.659375pt;}
.h4{height:81.656250pt;}
.hf{height:102.815625pt;}
.h10{height:105.375625pt;}
.h22{height:118.393750pt;}
.h1f{height:128.415625pt;}
.he{height:129.695625pt;}
.h18{height:132.255625pt;}
.h1e{height:132.415625pt;}
.h20{height:149.585625pt;}
.h17{height:183.455625pt;}
.h21{height:191.353750pt;}
.h1d{height:232.255625pt;}
.h1c{height:376.733333pt;}
.h19{height:701.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:41.632000pt;}
.w3{width:46.080000pt;}
.wa{width:74.592000pt;}
.wb{width:126.144000pt;}
.wc{width:141.826667pt;}
.w4{width:223.133333pt;}
.w9{width:231.133333pt;}
.w7{width:264.320000pt;}
.w6{width:310.080000pt;}
.w8{width:340.160000pt;}
.w11{width:406.906667pt;}
.w10{width:507.840000pt;}
.wf{width:553.280000pt;}
.w13{width:553.600000pt;}
.w12{width:595.520000pt;}
.we{width:691.520000pt;}
.w1{width:793.333333pt;}
.wd{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x18{left:1.312000pt;}
.x41{left:4.506667pt;}
.xf{left:7.360000pt;}
.x10{left:8.320000pt;}
.xe{left:9.280000pt;}
.x11{left:10.560000pt;}
.x26{left:13.152000pt;}
.xa{left:15.362667pt;}
.x2e{left:17.306667pt;}
.x1f{left:18.586667pt;}
.x25{left:20.506667pt;}
.x44{left:22.146667pt;}
.x2b{left:24.000000pt;}
.x27{left:25.626667pt;}
.x1b{left:27.680000pt;}
.x2a{left:32.026667pt;}
.x2d{left:32.986667pt;}
.x23{left:34.560000pt;}
.x28{left:35.546667pt;}
.x21{left:40.026667pt;}
.x29{left:41.954667pt;}
.x43{left:49.666667pt;}
.x2c{left:62.114667pt;}
.x3b{left:66.880000pt;}
.x17{left:80.320000pt;}
.x24{left:85.501333pt;}
.x1d{left:89.021333pt;}
.x3f{left:90.973333pt;}
.x42{left:98.880000pt;}
.xc{left:101.146667pt;}
.x13{left:103.266667pt;}
.x1c{left:109.152000pt;}
.x3d{left:115.613333pt;}
.x2{left:120.063988pt;}
.x7{left:133.506655pt;}
.x2f{left:139.266655pt;}
.x3{left:140.226655pt;}
.x3e{left:142.400000pt;}
.x9{left:144.066655pt;}
.x8{left:146.626655pt;}
.xb{left:167.106667pt;}
.x16{left:168.066655pt;}
.x19{left:177.026655pt;}
.x3c{left:179.613333pt;}
.x33{left:181.506643pt;}
.x34{left:188.866655pt;}
.x38{left:190.466655pt;}
.x4{left:238.173322pt;}
.x6{left:252.893322pt;}
.x31{left:293.893322pt;}
.x5{left:313.733322pt;}
.x45{left:319.173322pt;}
.x3a{left:331.653322pt;}
.x39{left:334.533322pt;}
.x15{left:339.333322pt;}
.x1e{left:340.933333pt;}
.x40{left:348.933333pt;}
.x1a{left:355.520000pt;}
.x14{left:358.239988pt;}
.x30{left:370.719988pt;}
.x36{left:373.279988pt;}
.x37{left:377.759988pt;}
.xd{left:390.560000pt;}
.x32{left:396.959988pt;}
.x20{left:416.160000pt;}
.x12{left:447.040000pt;}
.x22{left:542.946667pt;}
.x35{left:563.746655pt;}
.x46{left:663.293322pt;}
.x1{left:668.453322pt;}
}




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