
    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_c04901a9d731f7c9d5ba9518.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_3884eb2800c1ce1e782c52b6.woff')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_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_af25d98706505e08a3e682b7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_699e832e3f5737ac8467f56d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_963a2ae801f760cbfe6a88f5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6d6b88c65e62223e668b3c01.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_a19e4a5ebe998db59405a2f8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e754fb4ddcbc03cf7d76ad18.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_478343ec429b16159d213fa7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_82d7e52dbd58e46fdd6909b3.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-82.980000px;}
.v1{vertical-align:-80.640000px;}
.v3{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls3f{letter-spacing:-3.096000px;}
.ls8{letter-spacing:-2.160000px;}
.ls7{letter-spacing:-2.052000px;}
.lsa{letter-spacing:-1.854000px;}
.ls46{letter-spacing:-1.800000px;}
.ls2e{letter-spacing:-1.728000px;}
.ls1a{letter-spacing:-1.584000px;}
.ls6{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.386000px;}
.ls17{letter-spacing:-1.368000px;}
.ls40{letter-spacing:-1.224000px;}
.ls1b{letter-spacing:-1.152000px;}
.ls18{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.864000px;}
.ls31{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.288000px;}
.ls49{letter-spacing:-0.244800px;}
.ls32{letter-spacing:-0.216000px;}
.ls48{letter-spacing:-0.158400px;}
.ls15{letter-spacing:-0.152400px;}
.ls3e{letter-spacing:-0.144000px;}
.ls4b{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.034560px;}
.ls41{letter-spacing:0.072000px;}
.ls47{letter-spacing:0.109200px;}
.ls3d{letter-spacing:0.120000px;}
.ls34{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls1e{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.840000px;}
.ls10{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls39{letter-spacing:3.000000px;}
.ls23{letter-spacing:3.060000px;}
.ls37{letter-spacing:3.576000px;}
.lse{letter-spacing:3.600000px;}
.ls38{letter-spacing:4.320000px;}
.ls21{letter-spacing:5.016000px;}
.ls22{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.760000px;}
.ls28{letter-spacing:6.456000px;}
.lsc{letter-spacing:6.480000px;}
.ls29{letter-spacing:7.200000px;}
.ls20{letter-spacing:7.920000px;}
.ls12{letter-spacing:8.616000px;}
.ls13{letter-spacing:8.640000px;}
.ls4{letter-spacing:9.360000px;}
.ls27{letter-spacing:10.080000px;}
.ls36{letter-spacing:10.800000px;}
.ls3b{letter-spacing:10.980000px;}
.ls25{letter-spacing:11.520000px;}
.ls2a{letter-spacing:12.240000px;}
.ls3a{letter-spacing:12.360000px;}
.ls24{letter-spacing:13.680000px;}
.ls2b{letter-spacing:14.400000px;}
.ls2{letter-spacing:15.120000px;}
.ls43{letter-spacing:20.136000px;}
.ls4a{letter-spacing:34.841280px;}
.ls26{letter-spacing:64.920000px;}
.ls45{letter-spacing:67.961280px;}
.ls42{letter-spacing:76.440000px;}
.ls3c{letter-spacing:490.296000px;}
.ls2f{letter-spacing:514.776000px;}
.ls2c{letter-spacing:540.696000px;}
.ls44{letter-spacing:831.900000px;}
.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;}
}
.ws9{word-spacing:-84.060000px;}
.ws0{word-spacing:-19.440000px;}
.wsf{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.640000px;}
.ws6{word-spacing:-16.920000px;}
.ws5{word-spacing:-16.632000px;}
.ws1{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.450800px;}
.ws8{word-spacing:-16.416000px;}
.ws3{word-spacing:-16.407600px;}
.ws13{word-spacing:-16.254600px;}
.ws11{word-spacing:-16.200000px;}
.wse{word-spacing:-14.904000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-4.575360px;}
._b{margin-left:-3.511680px;}
._7{margin-left:-2.251680px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.692320px;}
._8{width:3.741600px;}
._e{width:4.899840px;}
._10{width:5.921760px;}
._c{width:7.234080px;}
._d{width:8.725920px;}
._f{width:10.001280px;}
._11{width:11.658240px;}
._9{width:13.377600px;}
._a{width:14.477760px;}
._12{width:15.604800px;}
._13{width:16.730400px;}
._1e{width:19.155840px;}
._1b{width:20.808000px;}
._21{width:21.902400px;}
._17{width:24.264000px;}
._19{width:25.416000px;}
._1a{width:29.304000px;}
._1c{width:30.652800px;}
._1d{width:31.805280px;}
._18{width:35.424000px;}
._1f{width:37.584000px;}
._16{width:60.264000px;}
._15{width:61.416000px;}
._20{width:65.091840px;}
._2{width:465.960000px;}
._1{width:519.215520px;}
._4{width:775.740000px;}
._22{width:847.740000px;}
._3{width:851.328480px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs6{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.y67{bottom:4.320000px;}
.y91{bottom:4.485000px;}
.y99{bottom:4.492500px;}
.y9f{bottom:4.500000px;}
.yf2{bottom:4.530000px;}
.yed{bottom:4.845000px;}
.yec{bottom:5.385000px;}
.yea{bottom:14.745000px;}
.y97{bottom:14.746500px;}
.yb9{bottom:14.760000px;}
.y93{bottom:14.925000px;}
.y9c{bottom:14.940000px;}
.yc{bottom:21.240000px;}
.yc8{bottom:25.020000px;}
.y94{bottom:25.185000px;}
.y98{bottom:25.186500px;}
.y9e{bottom:25.200000px;}
.yd{bottom:31.140000px;}
.yc1{bottom:35.445000px;}
.yb8{bottom:35.460000px;}
.y9b{bottom:35.640000px;}
.yb{bottom:41.940000px;}
.yc7{bottom:45.720000px;}
.ybd{bottom:45.885000px;}
.yad{bottom:45.900000px;}
.y9d{bottom:45.930000px;}
.yc0{bottom:56.145000px;}
.yb2{bottom:56.160000px;}
.ycb{bottom:56.340000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.yc6{bottom:66.420000px;}
.ybc{bottom:66.585000px;}
.yac{bottom:66.600000px;}
.ybf{bottom:76.845000px;}
.yb1{bottom:76.860000px;}
.yca{bottom:77.040000px;}
.y4{bottom:86.940000px;}
.yc5{bottom:87.120000px;}
.ybb{bottom:87.285000px;}
.yab{bottom:87.300000px;}
.yb5{bottom:87.330000px;}
.yb7{bottom:97.560000px;}
.yc4{bottom:107.850000px;}
.yc2{bottom:107.985000px;}
.yaf{bottom:108.000000px;}
.yb4{bottom:108.030000px;}
.y3{bottom:119.880000px;}
.yae{bottom:128.700000px;}
.yb3{bottom:128.730000px;}
.yf0{bottom:136.303500px;}
.y96{bottom:140.263500px;}
.y109{bottom:141.336000px;}
.y35{bottom:149.076000px;}
.ybe{bottom:155.565000px;}
.yef{bottom:157.725000px;}
.y65{bottom:158.070000px;}
.y108{bottom:162.030000px;}
.y132{bottom:165.810000px;}
.y34{bottom:168.150000px;}
.y107{bottom:178.410000px;}
.y64{bottom:178.770000px;}
.yee{bottom:179.325000px;}
.y95{bottom:182.385000px;}
.y131{bottom:184.890000px;}
.y33{bottom:187.050000px;}
.y63{bottom:199.470000px;}
.yeb{bottom:200.745000px;}
.y130{bottom:203.790000px;}
.y32{bottom:205.950000px;}
.y62{bottom:220.170000px;}
.y12f{bottom:222.690000px;}
.ye9{bottom:223.065000px;}
.y92{bottom:224.505000px;}
.y31{bottom:225.030000px;}
.y61{bottom:240.870000px;}
.y12e{bottom:241.770000px;}
.y30{bottom:243.930000px;}
.y12d{bottom:260.670000px;}
.y60{bottom:261.570000px;}
.y2f{bottom:263.010000px;}
.y90{bottom:266.625000px;}
.y12c{bottom:279.750000px;}
.yba{bottom:280.485000px;}
.y2e{bottom:281.910000px;}
.y5f{bottom:282.270000px;}
.ye8{bottom:290.010000px;}
.y12b{bottom:298.650000px;}
.y2d{bottom:300.990000px;}
.y5e{bottom:302.610000px;}
.ye7{bottom:309.450000px;}
.y8f{bottom:312.870000px;}
.y12a{bottom:317.550000px;}
.y2c{bottom:319.890000px;}
.y5d{bottom:323.670000px;}
.ye6{bottom:329.970000px;}
.y8e{bottom:332.310000px;}
.y2b{bottom:338.790000px;}
.y5c{bottom:344.370000px;}
.ye5{bottom:350.670000px;}
.y8d{bottom:353.010000px;}
.y129{bottom:355.530000px;}
.y2a{bottom:357.870000px;}
.y5b{bottom:365.070000px;}
.ye4{bottom:371.370000px;}
.y8c{bottom:373.710000px;}
.y128{bottom:374.610000px;}
.y29{bottom:376.770000px;}
.y5a{bottom:385.815000px;}
.ye3{bottom:392.115000px;}
.y127{bottom:393.555000px;}
.y8b{bottom:394.455000px;}
.y28{bottom:395.895000px;}
.y59{bottom:406.515000px;}
.y126{bottom:412.455000px;}
.ye2{bottom:412.815000px;}
.y27{bottom:414.795000px;}
.yb6{bottom:426.135000px;}
.y58{bottom:427.215000px;}
.y125{bottom:431.895000px;}
.ye1{bottom:433.515000px;}
.y26{bottom:433.695000px;}
.y8a{bottom:435.855000px;}
.y57{bottom:447.915000px;}
.y124{bottom:452.595000px;}
.y25{bottom:452.775000px;}
.ye0{bottom:454.215000px;}
.y89{bottom:456.555000px;}
.y106{bottom:457.995000px;}
.y56{bottom:468.615000px;}
.y24{bottom:471.675000px;}
.ydf{bottom:474.915000px;}
.y88{bottom:477.255000px;}
.y105{bottom:478.695000px;}
.y55{bottom:489.315000px;}
.y23{bottom:491.115000px;}
.y123{bottom:493.995000px;}
.yde{bottom:495.615000px;}
.y87{bottom:497.955000px;}
.y104{bottom:499.395000px;}
.y54{bottom:510.015000px;}
.y22{bottom:512.175000px;}
.y122{bottom:514.695000px;}
.ydd{bottom:516.315000px;}
.y86{bottom:518.655000px;}
.y103{bottom:520.095000px;}
.y53{bottom:530.715000px;}
.y21{bottom:534.495000px;}
.y121{bottom:535.395000px;}
.ydc{bottom:537.015000px;}
.y85{bottom:539.355000px;}
.y102{bottom:540.795000px;}
.yb0{bottom:551.055000px;}
.y52{bottom:551.415000px;}
.y120{bottom:556.095000px;}
.y20{bottom:556.995000px;}
.ydb{bottom:557.715000px;}
.y84{bottom:560.055000px;}
.y101{bottom:561.495000px;}
.y51{bottom:572.115000px;}
.y11f{bottom:576.795000px;}
.y100{bottom:577.695000px;}
.yda{bottom:578.415000px;}
.y1f{bottom:579.315000px;}
.y83{bottom:580.755000px;}
.y50{bottom:592.815000px;}
.y11e{bottom:597.495000px;}
.yd9{bottom:599.115000px;}
.y82{bottom:601.455000px;}
.y1e{bottom:601.815000px;}
.y4f{bottom:613.515000px;}
.y11d{bottom:618.195000px;}
.yd8{bottom:619.815000px;}
.y81{bottom:622.155000px;}
.y1d{bottom:624.315000px;}
.y4e{bottom:634.245000px;}
.y11c{bottom:638.925000px;}
.yd7{bottom:640.545000px;}
.y80{bottom:642.885000px;}
.y1c{bottom:646.665000px;}
.y4d{bottom:654.945000px;}
.y11b{bottom:659.625000px;}
.yd6{bottom:661.245000px;}
.y7f{bottom:663.585000px;}
.y1b{bottom:669.165000px;}
.y4c{bottom:675.645000px;}
.y11a{bottom:680.325000px;}
.yd5{bottom:681.945000px;}
.y7e{bottom:684.285000px;}
.y1a{bottom:691.485000px;}
.y4b{bottom:696.345000px;}
.yaa{bottom:696.705000px;}
.y119{bottom:701.025000px;}
.yd4{bottom:702.645000px;}
.y7d{bottom:704.985000px;}
.y19{bottom:713.445000px;}
.y4a{bottom:717.045000px;}
.y118{bottom:721.725000px;}
.yd3{bottom:723.345000px;}
.y7c{bottom:725.685000px;}
.y18{bottom:736.305000px;}
.y49{bottom:737.745000px;}
.y117{bottom:742.065000px;}
.yd2{bottom:744.045000px;}
.y7b{bottom:746.385000px;}
.y48{bottom:758.445000px;}
.y17{bottom:758.805000px;}
.y116{bottom:763.125000px;}
.yd1{bottom:764.385000px;}
.y7a{bottom:767.085000px;}
.y47{bottom:779.145000px;}
.y16{bottom:780.765000px;}
.y115{bottom:783.825000px;}
.yd0{bottom:785.445000px;}
.y79{bottom:787.785000px;}
.y46{bottom:799.845000px;}
.y15{bottom:803.085000px;}
.y114{bottom:804.525000px;}
.ycf{bottom:806.145000px;}
.y78{bottom:808.485000px;}
.y45{bottom:820.545000px;}
.y14{bottom:824.325000px;}
.y113{bottom:825.225000px;}
.yce{bottom:826.845000px;}
.y77{bottom:829.185000px;}
.y13e{bottom:833.865000px;}
.yff{bottom:840.885000px;}
.y44{bottom:841.245000px;}
.ya9{bottom:842.325000px;}
.y112{bottom:845.925000px;}
.ycd{bottom:847.545000px;}
.y13{bottom:848.445000px;}
.y13d{bottom:848.805000px;}
.y76{bottom:849.885000px;}
.yfe{bottom:861.585000px;}
.y43{bottom:861.945000px;}
.y111{bottom:866.625000px;}
.ycc{bottom:868.245000px;}
.y13c{bottom:869.505000px;}
.y75{bottom:870.585000px;}
.y12{bottom:872.565000px;}
.yfd{bottom:882.285000px;}
.y42{bottom:882.645000px;}
.yc9{bottom:885.210000px;}
.y110{bottom:887.370000px;}
.ya8{bottom:888.990000px;}
.y74{bottom:891.330000px;}
.y13b{bottom:894.210000px;}
.y11{bottom:896.730000px;}
.yfc{bottom:903.030000px;}
.y41{bottom:903.390000px;}
.y10f{bottom:908.070000px;}
.ya7{bottom:909.690000px;}
.y73{bottom:912.030000px;}
.y13a{bottom:913.290000px;}
.yfb{bottom:919.950000px;}
.y10{bottom:920.850000px;}
.y40{bottom:924.090000px;}
.y10e{bottom:928.770000px;}
.ya6{bottom:930.390000px;}
.y139{bottom:932.190000px;}
.y72{bottom:932.370000px;}
.yfa{bottom:941.370000px;}
.yf{bottom:944.790000px;}
.y10d{bottom:949.470000px;}
.ya5{bottom:951.090000px;}
.y138{bottom:951.270000px;}
.y71{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.yf9{bottom:962.790000px;}
.y3f{bottom:965.490000px;}
.y10c{bottom:969.990000px;}
.y137{bottom:970.170000px;}
.ya4{bottom:971.790000px;}
.y70{bottom:974.130000px;}
.y66{bottom:981.690000px;}
.yf8{bottom:984.210000px;}
.y3e{bottom:986.190000px;}
.y136{bottom:989.070000px;}
.y10b{bottom:992.130000px;}
.ya3{bottom:992.490000px;}
.y6f{bottom:994.830000px;}
.yf7{bottom:1005.810000px;}
.y3d{bottom:1006.890000px;}
.y135{bottom:1008.150000px;}
.ya2{bottom:1013.190000px;}
.y10a{bottom:1014.090000px;}
.y6e{bottom:1015.530000px;}
.y134{bottom:1027.050000px;}
.y3c{bottom:1027.230000px;}
.yc3{bottom:1031.010000px;}
.ya1{bottom:1033.890000px;}
.y6d{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y133{bottom:1046.130000px;}
.y3b{bottom:1047.570000px;}
.yf6{bottom:1048.650000px;}
.ya0{bottom:1050.810000px;}
.y6c{bottom:1056.930000px;}
.y3a{bottom:1065.030000px;}
.yf5{bottom:1070.070000px;}
.y6b{bottom:1077.630000px;}
.y39{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.yf4{bottom:1091.490000px;}
.y9a{bottom:1092.930000px;}
.y6a{bottom:1098.330000px;}
.y38{bottom:1103.010000px;}
.yf3{bottom:1112.910000px;}
.y69{bottom:1119.030000px;}
.y37{bottom:1121.910000px;}
.yf1{bottom:1134.330000px;}
.y6{bottom:1139.580000px;}
.y68{bottom:1139.760000px;}
.y36{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h14{height:20.685000px;}
.h20{height:20.692500px;}
.h18{height:20.700000px;}
.h24{height:20.722500px;}
.h21{height:20.730000px;}
.h1f{height:21.585000px;}
.h15{height:41.385000px;}
.h16{height:41.392500px;}
.h25{height:41.422500px;}
.h3{height:45.184219px;}
.hc{height:56.278125px;}
.h23{height:58.380469px;}
.he{height:58.621992px;}
.h11{height:62.085000px;}
.h17{height:62.130000px;}
.h10{height:63.457031px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h22{height:68.084282px;}
.ha{height:70.628906px;}
.h6{height:70.664062px;}
.hf{height:72.562500px;}
.h13{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h8{height:78.825000px;}
.h9{height:84.898125px;}
.h1d{height:124.050000px;}
.h1b{height:124.185000px;}
.h7{height:132.789375px;}
.h1e{height:144.885000px;}
.h19{height:144.900000px;}
.h1c{height:144.921000px;}
.h1a{height:144.930000px;}
.h12{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.w4{width:82.470000px;}
.w8{width:177.328500px;}
.w3{width:180.735000px;}
.wc{width:186.675000px;}
.wa{width:193.339500px;}
.w6{width:265.033500px;}
.wb{width:324.750000px;}
.wd{width:337.753500px;}
.we{width:401.325000px;}
.w7{width:456.225000px;}
.w2{width:475.843500px;}
.w9{width:560.115000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x1c{left:9.898500px;}
.x20{left:15.829500px;}
.x22{left:29.370000px;}
.x19{left:44.314500px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.x24{left:88.770000px;}
.xd{left:90.756000px;}
.x26{left:92.160000px;}
.x1f{left:93.466500px;}
.x25{left:108.180000px;}
.x23{left:109.260000px;}
.xa{left:118.836000px;}
.xf{left:127.476000px;}
.x2{left:139.716000px;}
.x18{left:141.156000px;}
.xb{left:153.570000px;}
.x2a{left:156.810000px;}
.x6{left:172.650000px;}
.x1b{left:191.910000px;}
.x28{left:214.950000px;}
.x2e{left:222.375000px;}
.x1e{left:242.160000px;}
.x1d{left:255.645000px;}
.xe{left:281.955000px;}
.x21{left:287.535000px;}
.x14{left:337.395000px;}
.x2b{left:346.935000px;}
.x1a{left:351.255000px;}
.x17{left:387.255000px;}
.x16{left:394.635000px;}
.x11{left:405.075000px;}
.x2d{left:414.795000px;}
.xc{left:446.505000px;}
.x2c{left:467.745000px;}
.x12{left:472.605000px;}
.x10{left:478.545000px;}
.x15{left:497.805000px;}
.x5{left:552.900000px;}
.x13{left:612.465000px;}
.x27{left:716.550000px;}
.x29{left:721.590000px;}
.x7{left:733.650000px;}
.x9{left:808.020000px;}
@media print{
.v2{vertical-align:-73.760000pt;}
.v1{vertical-align:-71.680000pt;}
.v3{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-2.752000pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls7{letter-spacing:-1.824000pt;}
.lsa{letter-spacing:-1.648000pt;}
.ls46{letter-spacing:-1.600000pt;}
.ls2e{letter-spacing:-1.536000pt;}
.ls1a{letter-spacing:-1.408000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-1.232000pt;}
.ls17{letter-spacing:-1.216000pt;}
.ls40{letter-spacing:-1.088000pt;}
.ls1b{letter-spacing:-1.024000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls49{letter-spacing:-0.217600pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls48{letter-spacing:-0.140800pt;}
.ls15{letter-spacing:-0.135467pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls4b{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.030720pt;}
.ls41{letter-spacing:0.064000pt;}
.ls47{letter-spacing:0.097067pt;}
.ls3d{letter-spacing:0.106667pt;}
.ls34{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.746667pt;}
.ls10{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls39{letter-spacing:2.666667pt;}
.ls23{letter-spacing:2.720000pt;}
.ls37{letter-spacing:3.178667pt;}
.lse{letter-spacing:3.200000pt;}
.ls38{letter-spacing:3.840000pt;}
.ls21{letter-spacing:4.458667pt;}
.ls22{letter-spacing:4.480000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls28{letter-spacing:5.738667pt;}
.lsc{letter-spacing:5.760000pt;}
.ls29{letter-spacing:6.400000pt;}
.ls20{letter-spacing:7.040000pt;}
.ls12{letter-spacing:7.658667pt;}
.ls13{letter-spacing:7.680000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls27{letter-spacing:8.960000pt;}
.ls36{letter-spacing:9.600000pt;}
.ls3b{letter-spacing:9.760000pt;}
.ls25{letter-spacing:10.240000pt;}
.ls2a{letter-spacing:10.880000pt;}
.ls3a{letter-spacing:10.986667pt;}
.ls24{letter-spacing:12.160000pt;}
.ls2b{letter-spacing:12.800000pt;}
.ls2{letter-spacing:13.440000pt;}
.ls43{letter-spacing:17.898667pt;}
.ls4a{letter-spacing:30.970027pt;}
.ls26{letter-spacing:57.706667pt;}
.ls45{letter-spacing:60.410027pt;}
.ls42{letter-spacing:67.946667pt;}
.ls3c{letter-spacing:435.818667pt;}
.ls2f{letter-spacing:457.578667pt;}
.ls2c{letter-spacing:480.618667pt;}
.ls44{letter-spacing:739.466667pt;}
.ws9{word-spacing:-74.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.wsf{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.680000pt;}
.ws6{word-spacing:-15.040000pt;}
.ws5{word-spacing:-14.784000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.622933pt;}
.ws8{word-spacing:-14.592000pt;}
.ws3{word-spacing:-14.584533pt;}
.ws13{word-spacing:-14.448533pt;}
.ws11{word-spacing:-14.400000pt;}
.wse{word-spacing:-13.248000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-4.066987pt;}
._b{margin-left:-3.121493pt;}
._7{margin-left:-2.001493pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.393173pt;}
._8{width:3.325867pt;}
._e{width:4.355413pt;}
._10{width:5.263787pt;}
._c{width:6.430293pt;}
._d{width:7.756373pt;}
._f{width:8.890027pt;}
._11{width:10.362880pt;}
._9{width:11.891200pt;}
._a{width:12.869120pt;}
._12{width:13.870933pt;}
._13{width:14.871467pt;}
._1e{width:17.027413pt;}
._1b{width:18.496000pt;}
._21{width:19.468800pt;}
._17{width:21.568000pt;}
._19{width:22.592000pt;}
._1a{width:26.048000pt;}
._1c{width:27.246933pt;}
._1d{width:28.271360pt;}
._18{width:31.488000pt;}
._1f{width:33.408000pt;}
._16{width:53.568000pt;}
._15{width:54.592000pt;}
._20{width:57.859413pt;}
._2{width:414.186667pt;}
._1{width:461.524907pt;}
._4{width:689.546667pt;}
._22{width:753.546667pt;}
._3{width:756.736427pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs6{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.y67{bottom:3.840000pt;}
.y91{bottom:3.986667pt;}
.y99{bottom:3.993333pt;}
.y9f{bottom:4.000000pt;}
.yf2{bottom:4.026667pt;}
.yed{bottom:4.306667pt;}
.yec{bottom:4.786667pt;}
.yea{bottom:13.106667pt;}
.y97{bottom:13.108000pt;}
.yb9{bottom:13.120000pt;}
.y93{bottom:13.266667pt;}
.y9c{bottom:13.280000pt;}
.yc{bottom:18.880000pt;}
.yc8{bottom:22.240000pt;}
.y94{bottom:22.386667pt;}
.y98{bottom:22.388000pt;}
.y9e{bottom:22.400000pt;}
.yd{bottom:27.680000pt;}
.yc1{bottom:31.506667pt;}
.yb8{bottom:31.520000pt;}
.y9b{bottom:31.680000pt;}
.yb{bottom:37.280000pt;}
.yc7{bottom:40.640000pt;}
.ybd{bottom:40.786667pt;}
.yad{bottom:40.800000pt;}
.y9d{bottom:40.826667pt;}
.yc0{bottom:49.906667pt;}
.yb2{bottom:49.920000pt;}
.ycb{bottom:50.080000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.yc6{bottom:59.040000pt;}
.ybc{bottom:59.186667pt;}
.yac{bottom:59.200000pt;}
.ybf{bottom:68.306667pt;}
.yb1{bottom:68.320000pt;}
.yca{bottom:68.480000pt;}
.y4{bottom:77.280000pt;}
.yc5{bottom:77.440000pt;}
.ybb{bottom:77.586667pt;}
.yab{bottom:77.600000pt;}
.yb5{bottom:77.626667pt;}
.yb7{bottom:86.720000pt;}
.yc4{bottom:95.866667pt;}
.yc2{bottom:95.986667pt;}
.yaf{bottom:96.000000pt;}
.yb4{bottom:96.026667pt;}
.y3{bottom:106.560000pt;}
.yae{bottom:114.400000pt;}
.yb3{bottom:114.426667pt;}
.yf0{bottom:121.158667pt;}
.y96{bottom:124.678667pt;}
.y109{bottom:125.632000pt;}
.y35{bottom:132.512000pt;}
.ybe{bottom:138.280000pt;}
.yef{bottom:140.200000pt;}
.y65{bottom:140.506667pt;}
.y108{bottom:144.026667pt;}
.y132{bottom:147.386667pt;}
.y34{bottom:149.466667pt;}
.y107{bottom:158.586667pt;}
.y64{bottom:158.906667pt;}
.yee{bottom:159.400000pt;}
.y95{bottom:162.120000pt;}
.y131{bottom:164.346667pt;}
.y33{bottom:166.266667pt;}
.y63{bottom:177.306667pt;}
.yeb{bottom:178.440000pt;}
.y130{bottom:181.146667pt;}
.y32{bottom:183.066667pt;}
.y62{bottom:195.706667pt;}
.y12f{bottom:197.946667pt;}
.ye9{bottom:198.280000pt;}
.y92{bottom:199.560000pt;}
.y31{bottom:200.026667pt;}
.y61{bottom:214.106667pt;}
.y12e{bottom:214.906667pt;}
.y30{bottom:216.826667pt;}
.y12d{bottom:231.706667pt;}
.y60{bottom:232.506667pt;}
.y2f{bottom:233.786667pt;}
.y90{bottom:237.000000pt;}
.y12c{bottom:248.666667pt;}
.yba{bottom:249.320000pt;}
.y2e{bottom:250.586667pt;}
.y5f{bottom:250.906667pt;}
.ye8{bottom:257.786667pt;}
.y12b{bottom:265.466667pt;}
.y2d{bottom:267.546667pt;}
.y5e{bottom:268.986667pt;}
.ye7{bottom:275.066667pt;}
.y8f{bottom:278.106667pt;}
.y12a{bottom:282.266667pt;}
.y2c{bottom:284.346667pt;}
.y5d{bottom:287.706667pt;}
.ye6{bottom:293.306667pt;}
.y8e{bottom:295.386667pt;}
.y2b{bottom:301.146667pt;}
.y5c{bottom:306.106667pt;}
.ye5{bottom:311.706667pt;}
.y8d{bottom:313.786667pt;}
.y129{bottom:316.026667pt;}
.y2a{bottom:318.106667pt;}
.y5b{bottom:324.506667pt;}
.ye4{bottom:330.106667pt;}
.y8c{bottom:332.186667pt;}
.y128{bottom:332.986667pt;}
.y29{bottom:334.906667pt;}
.y5a{bottom:342.946667pt;}
.ye3{bottom:348.546667pt;}
.y127{bottom:349.826667pt;}
.y8b{bottom:350.626667pt;}
.y28{bottom:351.906667pt;}
.y59{bottom:361.346667pt;}
.y126{bottom:366.626667pt;}
.ye2{bottom:366.946667pt;}
.y27{bottom:368.706667pt;}
.yb6{bottom:378.786667pt;}
.y58{bottom:379.746667pt;}
.y125{bottom:383.906667pt;}
.ye1{bottom:385.346667pt;}
.y26{bottom:385.506667pt;}
.y8a{bottom:387.426667pt;}
.y57{bottom:398.146667pt;}
.y124{bottom:402.306667pt;}
.y25{bottom:402.466667pt;}
.ye0{bottom:403.746667pt;}
.y89{bottom:405.826667pt;}
.y106{bottom:407.106667pt;}
.y56{bottom:416.546667pt;}
.y24{bottom:419.266667pt;}
.ydf{bottom:422.146667pt;}
.y88{bottom:424.226667pt;}
.y105{bottom:425.506667pt;}
.y55{bottom:434.946667pt;}
.y23{bottom:436.546667pt;}
.y123{bottom:439.106667pt;}
.yde{bottom:440.546667pt;}
.y87{bottom:442.626667pt;}
.y104{bottom:443.906667pt;}
.y54{bottom:453.346667pt;}
.y22{bottom:455.266667pt;}
.y122{bottom:457.506667pt;}
.ydd{bottom:458.946667pt;}
.y86{bottom:461.026667pt;}
.y103{bottom:462.306667pt;}
.y53{bottom:471.746667pt;}
.y21{bottom:475.106667pt;}
.y121{bottom:475.906667pt;}
.ydc{bottom:477.346667pt;}
.y85{bottom:479.426667pt;}
.y102{bottom:480.706667pt;}
.yb0{bottom:489.826667pt;}
.y52{bottom:490.146667pt;}
.y120{bottom:494.306667pt;}
.y20{bottom:495.106667pt;}
.ydb{bottom:495.746667pt;}
.y84{bottom:497.826667pt;}
.y101{bottom:499.106667pt;}
.y51{bottom:508.546667pt;}
.y11f{bottom:512.706667pt;}
.y100{bottom:513.506667pt;}
.yda{bottom:514.146667pt;}
.y1f{bottom:514.946667pt;}
.y83{bottom:516.226667pt;}
.y50{bottom:526.946667pt;}
.y11e{bottom:531.106667pt;}
.yd9{bottom:532.546667pt;}
.y82{bottom:534.626667pt;}
.y1e{bottom:534.946667pt;}
.y4f{bottom:545.346667pt;}
.y11d{bottom:549.506667pt;}
.yd8{bottom:550.946667pt;}
.y81{bottom:553.026667pt;}
.y1d{bottom:554.946667pt;}
.y4e{bottom:563.773333pt;}
.y11c{bottom:567.933333pt;}
.yd7{bottom:569.373333pt;}
.y80{bottom:571.453333pt;}
.y1c{bottom:574.813333pt;}
.y4d{bottom:582.173333pt;}
.y11b{bottom:586.333333pt;}
.yd6{bottom:587.773333pt;}
.y7f{bottom:589.853333pt;}
.y1b{bottom:594.813333pt;}
.y4c{bottom:600.573333pt;}
.y11a{bottom:604.733333pt;}
.yd5{bottom:606.173333pt;}
.y7e{bottom:608.253333pt;}
.y1a{bottom:614.653333pt;}
.y4b{bottom:618.973333pt;}
.yaa{bottom:619.293333pt;}
.y119{bottom:623.133333pt;}
.yd4{bottom:624.573333pt;}
.y7d{bottom:626.653333pt;}
.y19{bottom:634.173333pt;}
.y4a{bottom:637.373333pt;}
.y118{bottom:641.533333pt;}
.yd3{bottom:642.973333pt;}
.y7c{bottom:645.053333pt;}
.y18{bottom:654.493333pt;}
.y49{bottom:655.773333pt;}
.y117{bottom:659.613333pt;}
.yd2{bottom:661.373333pt;}
.y7b{bottom:663.453333pt;}
.y48{bottom:674.173333pt;}
.y17{bottom:674.493333pt;}
.y116{bottom:678.333333pt;}
.yd1{bottom:679.453333pt;}
.y7a{bottom:681.853333pt;}
.y47{bottom:692.573333pt;}
.y16{bottom:694.013333pt;}
.y115{bottom:696.733333pt;}
.yd0{bottom:698.173333pt;}
.y79{bottom:700.253333pt;}
.y46{bottom:710.973333pt;}
.y15{bottom:713.853333pt;}
.y114{bottom:715.133333pt;}
.ycf{bottom:716.573333pt;}
.y78{bottom:718.653333pt;}
.y45{bottom:729.373333pt;}
.y14{bottom:732.733333pt;}
.y113{bottom:733.533333pt;}
.yce{bottom:734.973333pt;}
.y77{bottom:737.053333pt;}
.y13e{bottom:741.213333pt;}
.yff{bottom:747.453333pt;}
.y44{bottom:747.773333pt;}
.ya9{bottom:748.733333pt;}
.y112{bottom:751.933333pt;}
.ycd{bottom:753.373333pt;}
.y13{bottom:754.173333pt;}
.y13d{bottom:754.493333pt;}
.y76{bottom:755.453333pt;}
.yfe{bottom:765.853333pt;}
.y43{bottom:766.173333pt;}
.y111{bottom:770.333333pt;}
.ycc{bottom:771.773333pt;}
.y13c{bottom:772.893333pt;}
.y75{bottom:773.853333pt;}
.y12{bottom:775.613333pt;}
.yfd{bottom:784.253333pt;}
.y42{bottom:784.573333pt;}
.yc9{bottom:786.853333pt;}
.y110{bottom:788.773333pt;}
.ya8{bottom:790.213333pt;}
.y74{bottom:792.293333pt;}
.y13b{bottom:794.853333pt;}
.y11{bottom:797.093333pt;}
.yfc{bottom:802.693333pt;}
.y41{bottom:803.013333pt;}
.y10f{bottom:807.173333pt;}
.ya7{bottom:808.613333pt;}
.y73{bottom:810.693333pt;}
.y13a{bottom:811.813333pt;}
.yfb{bottom:817.733333pt;}
.y10{bottom:818.533333pt;}
.y40{bottom:821.413333pt;}
.y10e{bottom:825.573333pt;}
.ya6{bottom:827.013333pt;}
.y139{bottom:828.613333pt;}
.y72{bottom:828.773333pt;}
.yfa{bottom:836.773333pt;}
.yf{bottom:839.813333pt;}
.y10d{bottom:843.973333pt;}
.ya5{bottom:845.413333pt;}
.y138{bottom:845.573333pt;}
.y71{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.yf9{bottom:855.813333pt;}
.y3f{bottom:858.213333pt;}
.y10c{bottom:862.213333pt;}
.y137{bottom:862.373333pt;}
.ya4{bottom:863.813333pt;}
.y70{bottom:865.893333pt;}
.y66{bottom:872.613333pt;}
.yf8{bottom:874.853333pt;}
.y3e{bottom:876.613333pt;}
.y136{bottom:879.173333pt;}
.y10b{bottom:881.893333pt;}
.ya3{bottom:882.213333pt;}
.y6f{bottom:884.293333pt;}
.yf7{bottom:894.053333pt;}
.y3d{bottom:895.013333pt;}
.y135{bottom:896.133333pt;}
.ya2{bottom:900.613333pt;}
.y10a{bottom:901.413333pt;}
.y6e{bottom:902.693333pt;}
.y134{bottom:912.933333pt;}
.y3c{bottom:913.093333pt;}
.yc3{bottom:916.453333pt;}
.ya1{bottom:919.013333pt;}
.y6d{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y133{bottom:929.893333pt;}
.y3b{bottom:931.173333pt;}
.yf6{bottom:932.133333pt;}
.ya0{bottom:934.053333pt;}
.y6c{bottom:939.493333pt;}
.y3a{bottom:946.693333pt;}
.yf5{bottom:951.173333pt;}
.y6b{bottom:957.893333pt;}
.y39{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.yf4{bottom:970.213333pt;}
.y9a{bottom:971.493333pt;}
.y6a{bottom:976.293333pt;}
.y38{bottom:980.453333pt;}
.yf3{bottom:989.253333pt;}
.y69{bottom:994.693333pt;}
.y37{bottom:997.253333pt;}
.yf1{bottom:1008.293333pt;}
.y6{bottom:1012.960000pt;}
.y68{bottom:1013.120000pt;}
.y36{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h14{height:18.386667pt;}
.h20{height:18.393333pt;}
.h18{height:18.400000pt;}
.h24{height:18.420000pt;}
.h21{height:18.426667pt;}
.h1f{height:19.186667pt;}
.h15{height:36.786667pt;}
.h16{height:36.793333pt;}
.h25{height:36.820000pt;}
.h3{height:40.163750pt;}
.hc{height:50.025000pt;}
.h23{height:51.893750pt;}
.he{height:52.108438pt;}
.h11{height:55.186667pt;}
.h17{height:55.226667pt;}
.h10{height:56.406250pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h22{height:60.519362pt;}
.ha{height:62.781250pt;}
.h6{height:62.812500pt;}
.hf{height:64.500000pt;}
.h13{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h8{height:70.066667pt;}
.h9{height:75.465000pt;}
.h1d{height:110.266667pt;}
.h1b{height:110.386667pt;}
.h7{height:118.035000pt;}
.h1e{height:128.786667pt;}
.h19{height:128.800000pt;}
.h1c{height:128.818667pt;}
.h1a{height:128.826667pt;}
.h12{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.w4{width:73.306667pt;}
.w8{width:157.625333pt;}
.w3{width:160.653333pt;}
.wc{width:165.933333pt;}
.wa{width:171.857333pt;}
.w6{width:235.585333pt;}
.wb{width:288.666667pt;}
.wd{width:300.225333pt;}
.we{width:356.733333pt;}
.w7{width:405.533333pt;}
.w2{width:422.972000pt;}
.w9{width:497.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x1c{left:8.798667pt;}
.x20{left:14.070667pt;}
.x22{left:26.106667pt;}
.x19{left:39.390667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.x24{left:78.906667pt;}
.xd{left:80.672000pt;}
.x26{left:81.920000pt;}
.x1f{left:83.081333pt;}
.x25{left:96.160000pt;}
.x23{left:97.120000pt;}
.xa{left:105.632000pt;}
.xf{left:113.312000pt;}
.x2{left:124.192000pt;}
.x18{left:125.472000pt;}
.xb{left:136.506667pt;}
.x2a{left:139.386667pt;}
.x6{left:153.466667pt;}
.x1b{left:170.586667pt;}
.x28{left:191.066667pt;}
.x2e{left:197.666667pt;}
.x1e{left:215.253333pt;}
.x1d{left:227.240000pt;}
.xe{left:250.626667pt;}
.x21{left:255.586667pt;}
.x14{left:299.906667pt;}
.x2b{left:308.386667pt;}
.x1a{left:312.226667pt;}
.x17{left:344.226667pt;}
.x16{left:350.786667pt;}
.x11{left:360.066667pt;}
.x2d{left:368.706667pt;}
.xc{left:396.893333pt;}
.x2c{left:415.773333pt;}
.x12{left:420.093333pt;}
.x10{left:425.373333pt;}
.x15{left:442.493333pt;}
.x5{left:491.466667pt;}
.x13{left:544.413333pt;}
.x27{left:636.933333pt;}
.x29{left:641.413333pt;}
.x7{left:652.133333pt;}
.x9{left:718.240000pt;}
}




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