
    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_518175e8c6254cdf83349b7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a1480597da75c480f1f4fa69.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_c17ab8f0d81432a79fe0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_e680bdb41eec17cf51e742d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.883301;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_ea5573b43b2acb4f945d18ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.987305;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_097502098326acc184ea61e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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_124f52dddd6a5a0defc19c69.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_74233be29ede5856c681cea7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_c7b9cb19b913aae4a848e19b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecb47a726998af36ca283637.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_d76fdea27257b8eee0ee1aac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cffe9286232ff96a3c01c681.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6547b2127f98a0ef58d6c07b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9672a21ed4900c5defffb3e7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_84d984b83f6161ed9eaca3a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-1.224000px;}
.ls16{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.262200px;}
.ls1c{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.027360px;}
.lsc{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.027360px;}
.ls2{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.256200px;}
.ls18{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.305400px;}
.ls1e{letter-spacing:0.375840px;}
.ls3{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.624000px;}
.ls1a{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.747360px;}
.ls17{letter-spacing:2.160000px;}
.ls14{letter-spacing:7.920000px;}
.ls1d{letter-spacing:18.720000px;}
.lsa{letter-spacing:89.640000px;}
.ls9{letter-spacing:89.820000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-71.496000px;}
.ws6{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.872000px;}
.wsf{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.964000px;}
.ws14{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.496000px;}
.ws12{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.297800px;}
.ws8{word-spacing:-15.812640px;}
.wsa{word-spacing:-15.785280px;}
.ws1{word-spacing:-15.228000px;}
.ws0{word-spacing:-15.226440px;}
.ws3{word-spacing:-15.138000px;}
.ws4{word-spacing:-15.012000px;}
.ws15{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.508000px;}
.ws10{word-spacing:-14.220000px;}
.ws2{word-spacing:-13.788000px;}
.wsb{word-spacing:-10.440000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-3.132000px;}
._0{margin-left:-1.458000px;}
._2{width:1.530000px;}
._8{width:3.506160px;}
._9{width:5.375280px;}
._25{width:6.415200px;}
._b{width:7.419600px;}
._1a{width:8.540400px;}
._13{width:9.576000px;}
._14{width:10.782000px;}
._7{width:11.922480px;}
._6{width:13.778640px;}
._18{width:14.805360px;}
._19{width:15.839520px;}
._22{width:16.992000px;}
._4{width:18.074640px;}
._e{width:19.086000px;}
._d{width:20.139120px;}
._c{width:21.528000px;}
._20{width:22.676880px;}
._23{width:23.922000px;}
._11{width:25.632000px;}
._12{width:26.784000px;}
._21{width:27.864720px;}
._5{width:28.880640px;}
._a{width:30.139200px;}
._24{width:31.464000px;}
._f{width:32.472000px;}
._10{width:33.912000px;}
._17{width:35.220000px;}
._16{width:36.720000px;}
._2a{width:37.812240px;}
._1f{width:38.952000px;}
._15{width:40.032000px;}
._26{width:41.532000px;}
._27{width:42.600000px;}
._1d{width:44.640000px;}
._1e{width:45.666000px;}
._1c{width:78.615120px;}
._1b{width:79.885440px;}
._3{width:90.696000px;}
._28{width:214.416000px;}
._29{width:216.000000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(83,129,53);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:17.070000px;}
.y5{bottom:17.640000px;}
.y9{bottom:27.360000px;}
.y4{bottom:42.300000px;}
.y8{bottom:48.960000px;}
.yd7{bottom:51.450000px;}
.y1{bottom:57.636000px;}
.y7{bottom:70.560000px;}
.ycf{bottom:72.975000px;}
.y6{bottom:92.010000px;}
.y3{bottom:95.250000px;}
.ya8{bottom:113.256000px;}
.yb2{bottom:115.236000px;}
.yd0{bottom:115.275000px;}
.y14b{bottom:115.416000px;}
.y33{bottom:115.596000px;}
.yf4{bottom:118.836000px;}
.y60{bottom:123.336000px;}
.y16a{bottom:127.656000px;}
.ya7{bottom:132.876000px;}
.y7b{bottom:135.036000px;}
.yb1{bottom:135.936000px;}
.y32{bottom:136.476000px;}
.y14a{bottom:137.916000px;}
.yf3{bottom:139.536000px;}
.y5f{bottom:145.836000px;}
.y169{bottom:148.716000px;}
.ya6{bottom:152.310000px;}
.y7a{bottom:154.470000px;}
.ycd{bottom:155.550000px;}
.y31{bottom:157.350000px;}
.yd1{bottom:157.575000px;}
.y149{bottom:160.410000px;}
.yf2{bottom:162.030000px;}
.yb0{bottom:165.450000px;}
.y13b{bottom:166.530000px;}
.y168{bottom:169.770000px;}
.ya5{bottom:171.750000px;}
.y79{bottom:174.090000px;}
.y115{bottom:175.710000px;}
.y5e{bottom:177.330000px;}
.ycc{bottom:178.050000px;}
.y30{bottom:178.410000px;}
.yf1{bottom:184.530000px;}
.yaf{bottom:186.510000px;}
.y13a{bottom:189.030000px;}
.y167{bottom:190.650000px;}
.ya4{bottom:191.370000px;}
.y78{bottom:193.530000px;}
.y114{bottom:198.210000px;}
.y2f{bottom:199.470000px;}
.y5d{bottom:199.830000px;}
.yd2{bottom:199.875000px;}
.ycb{bottom:205.050000px;}
.yf0{bottom:207.030000px;}
.yae{bottom:207.750000px;}
.ya3{bottom:210.810000px;}
.y139{bottom:211.530000px;}
.y166{bottom:211.710000px;}
.y77{bottom:212.970000px;}
.y2e{bottom:220.350000px;}
.y5c{bottom:220.530000px;}
.y113{bottom:220.710000px;}
.yca{bottom:227.550000px;}
.yef{bottom:229.530000px;}
.ya2{bottom:230.250000px;}
.y165{bottom:232.770000px;}
.y148{bottom:234.030000px;}
.y76{bottom:237.090000px;}
.y138{bottom:239.970000px;}
.y2d{bottom:241.410000px;}
.yd3{bottom:242.175000px;}
.y5b{bottom:243.030000px;}
.y112{bottom:249.330000px;}
.ya1{bottom:249.870000px;}
.yc9{bottom:250.050000px;}
.yee{bottom:252.030000px;}
.y164{bottom:253.650000px;}
.y75{bottom:261.030000px;}
.y2c{bottom:262.470000px;}
.y5a{bottom:265.530000px;}
.ya0{bottom:269.310000px;}
.y111{bottom:271.830000px;}
.yc8{bottom:272.550000px;}
.yed{bottom:274.575000px;}
.y163{bottom:274.755000px;}
.y2b{bottom:283.395000px;}
.yd4{bottom:284.475000px;}
.y137{bottom:285.015000px;}
.y59{bottom:288.075000px;}
.y9f{bottom:288.795000px;}
.y74{bottom:289.515000px;}
.y147{bottom:290.955000px;}
.y110{bottom:294.375000px;}
.yc7{bottom:295.095000px;}
.y162{bottom:295.815000px;}
.yec{bottom:297.075000px;}
.y2a{bottom:304.455000px;}
.y136{bottom:307.515000px;}
.y73{bottom:309.135000px;}
.y58{bottom:310.575000px;}
.y9e{bottom:312.915000px;}
.y146{bottom:313.455000px;}
.yeb{bottom:319.575000px;}
.yc6{bottom:322.095000px;}
.y10f{bottom:322.815000px;}
.y29{bottom:325.515000px;}
.yd5{bottom:326.805000px;}
.y72{bottom:329.295000px;}
.y57{bottom:333.075000px;}
.y135{bottom:335.955000px;}
.y9d{bottom:336.855000px;}
.yea{bottom:342.075000px;}
.yc5{bottom:344.595000px;}
.y10e{bottom:345.315000px;}
.y28{bottom:346.395000px;}
.y71{bottom:351.795000px;}
.y56{bottom:355.575000px;}
.y134{bottom:358.455000px;}
.y9c{bottom:365.295000px;}
.yc4{bottom:367.095000px;}
.y27{bottom:367.455000px;}
.y10d{bottom:367.815000px;}
.ye9{bottom:369.075000px;}
.yd6{bottom:369.105000px;}
.y70{bottom:374.295000px;}
.y55{bottom:378.075000px;}
.y133{bottom:380.955000px;}
.y145{bottom:387.075000px;}
.y26{bottom:388.515000px;}
.yc3{bottom:389.595000px;}
.y10c{bottom:390.315000px;}
.ye8{bottom:391.575000px;}
.y9b{bottom:393.915000px;}
.y6f{bottom:396.795000px;}
.y54{bottom:400.575000px;}
.y25{bottom:409.395000px;}
.y132{bottom:409.575000px;}
.yc2{bottom:412.095000px;}
.y9a{bottom:413.355000px;}
.ye7{bottom:414.075000px;}
.y10b{bottom:418.755000px;}
.y6e{bottom:419.295000px;}
.y53{bottom:423.075000px;}
.y24{bottom:430.455000px;}
.y131{bottom:432.075000px;}
.yc1{bottom:434.595000px;}
.ye6{bottom:436.575000px;}
.y144{bottom:438.015000px;}
.y10a{bottom:441.255000px;}
.y6d{bottom:441.795000px;}
.y52{bottom:445.575000px;}
.y23{bottom:451.515000px;}
.y130{bottom:454.575000px;}
.ye5{bottom:459.075000px;}
.y143{bottom:460.515000px;}
.yc0{bottom:461.595000px;}
.y109{bottom:463.755000px;}
.y99{bottom:465.915000px;}
.y51{bottom:468.075000px;}
.y22{bottom:472.395000px;}
.y6c{bottom:473.295000px;}
.ye4{bottom:481.575000px;}
.y12f{bottom:483.015000px;}
.ybf{bottom:484.095000px;}
.y108{bottom:486.255000px;}
.y98{bottom:489.855000px;}
.y50{bottom:490.575000px;}
.y21{bottom:492.915000px;}
.y6b{bottom:495.795000px;}
.y12e{bottom:505.515000px;}
.ybe{bottom:506.595000px;}
.y4f{bottom:513.075000px;}
.y97{bottom:513.795000px;}
.y107{bottom:514.875000px;}
.y6a{bottom:518.295000px;}
.y20{bottom:521.535000px;}
.y12d{bottom:528.015000px;}
.ybd{bottom:529.095000px;}
.y96{bottom:533.415000px;}
.y142{bottom:533.955000px;}
.y4e{bottom:535.575000px;}
.y106{bottom:537.375000px;}
.y69{bottom:540.435000px;}
.y1f{bottom:548.535000px;}
.ybc{bottom:551.595000px;}
.y12c{bottom:556.485000px;}
.y95{bottom:557.385000px;}
.y4d{bottom:558.105000px;}
.y105{bottom:559.905000px;}
.y68{bottom:561.525000px;}
.y1e{bottom:566.565000px;}
.ybb{bottom:574.125000px;}
.y94{bottom:576.825000px;}
.y12b{bottom:578.985000px;}
.y4c{bottom:580.605000px;}
.y67{bottom:582.585000px;}
.y141{bottom:585.105000px;}
.y104{bottom:588.345000px;}
.y1d{bottom:593.565000px;}
.yba{bottom:596.625000px;}
.y93{bottom:600.945000px;}
.y12a{bottom:601.485000px;}
.y4b{bottom:603.105000px;}
.y66{bottom:603.465000px;}
.y140{bottom:607.605000px;}
.y103{bottom:610.845000px;}
.y1c{bottom:611.565000px;}
.yb9{bottom:619.125000px;}
.y92{bottom:620.385000px;}
.y161{bottom:622.365000px;}
.y65{bottom:624.705000px;}
.y4a{bottom:625.605000px;}
.y129{bottom:630.105000px;}
.y102{bottom:633.345000px;}
.y1b{bottom:638.565000px;}
.yb8{bottom:641.625000px;}
.yad{bottom:641.805000px;}
.y160{bottom:643.245000px;}
.y91{bottom:644.325000px;}
.y64{bottom:647.205000px;}
.y49{bottom:648.105000px;}
.y128{bottom:652.605000px;}
.y101{bottom:655.845000px;}
.y1a{bottom:656.565000px;}
.yac{bottom:662.865000px;}
.y90{bottom:663.945000px;}
.y15f{bottom:664.305000px;}
.y63{bottom:669.165000px;}
.y48{bottom:670.605000px;}
.yb7{bottom:673.125000px;}
.y127{bottom:675.105000px;}
.y13f{bottom:681.045000px;}
.y19{bottom:683.565000px;}
.yab{bottom:684.105000px;}
.y100{bottom:684.285000px;}
.y15e{bottom:685.365000px;}
.y8f{bottom:687.885000px;}
.y62{bottom:688.605000px;}
.y47{bottom:693.105000px;}
.yb6{bottom:695.625000px;}
.y18{bottom:701.565000px;}
.y126{bottom:703.545000px;}
.y15d{bottom:706.245000px;}
.yff{bottom:706.785000px;}
.y8e{bottom:707.325000px;}
.y61{bottom:708.945000px;}
.y46{bottom:715.605000px;}
.yb5{bottom:715.965000px;}
.ye3{bottom:720.105000px;}
.y125{bottom:726.045000px;}
.y15c{bottom:727.305000px;}
.y17{bottom:728.565000px;}
.yfe{bottom:729.285000px;}
.y8d{bottom:731.445000px;}
.y16{bottom:740.805000px;}
.yb4{bottom:741.525000px;}
.y45{bottom:742.605000px;}
.y15b{bottom:748.365000px;}
.y8c{bottom:750.885000px;}
.yfd{bottom:751.785000px;}
.y124{bottom:754.485000px;}
.y15{bottom:760.245000px;}
.yb3{bottom:762.945000px;}
.yce{bottom:763.740000px;}
.y44{bottom:765.105000px;}
.y15a{bottom:769.245000px;}
.y8b{bottom:774.825000px;}
.y123{bottom:776.985000px;}
.y14{bottom:780.405000px;}
.y43{bottom:787.605000px;}
.y159{bottom:790.305000px;}
.y8a{bottom:798.945000px;}
.y122{bottom:799.485000px;}
.yfc{bottom:802.905000px;}
.y13{bottom:805.065000px;}
.y42{bottom:810.105000px;}
.y158{bottom:811.365000px;}
.ye2{bottom:814.605000px;}
.y89{bottom:822.885000px;}
.yfb{bottom:825.405000px;}
.y121{bottom:828.105000px;}
.y157{bottom:832.245000px;}
.y41{bottom:832.605000px;}
.y12{bottom:835.125000px;}
.ye1{bottom:837.105000px;}
.y88{bottom:842.370000px;}
.y120{bottom:850.650000px;}
.y156{bottom:853.350000px;}
.y40{bottom:855.150000px;}
.yfa{bottom:856.950000px;}
.ye0{bottom:859.650000px;}
.y11{bottom:862.350000px;}
.y87{bottom:866.490000px;}
.y11f{bottom:873.150000px;}
.y155{bottom:874.410000px;}
.yf9{bottom:879.450000px;}
.y3f{bottom:882.150000px;}
.y86{bottom:885.930000px;}
.y10{bottom:889.170000px;}
.y154{bottom:895.290000px;}
.y11e{bottom:895.650000px;}
.yf8{bottom:900.150000px;}
.y13e{bottom:901.590000px;}
.y3e{bottom:904.650000px;}
.y85{bottom:909.870000px;}
.y153{bottom:916.350000px;}
.yf{bottom:916.530000px;}
.yf7{bottom:922.650000px;}
.y11d{bottom:924.090000px;}
.y3d{bottom:927.150000px;}
.y84{bottom:933.990000px;}
.y152{bottom:937.410000px;}
.ye{bottom:939.030000px;}
.yf6{bottom:945.150000px;}
.y11c{bottom:946.590000px;}
.y3c{bottom:949.650000px;}
.y83{bottom:957.930000px;}
.y151{bottom:958.290000px;}
.yd{bottom:961.530000px;}
.yf5{bottom:967.650000px;}
.y11b{bottom:969.090000px;}
.y3b{bottom:972.150000px;}
.ydf{bottom:976.650000px;}
.y150{bottom:979.350000px;}
.y82{bottom:981.870000px;}
.yc{bottom:984.030000px;}
.y13d{bottom:991.590000px;}
.y3a{bottom:994.650000px;}
.y11a{bottom:997.530000px;}
.yde{bottom:999.150000px;}
.y14f{bottom:1000.410000px;}
.y81{bottom:1005.990000px;}
.yb{bottom:1006.530000px;}
.y39{bottom:1017.150000px;}
.y119{bottom:1020.030000px;}
.y14e{bottom:1021.290000px;}
.ydd{bottom:1021.650000px;}
.y80{bottom:1025.430000px;}
.ya{bottom:1029.030000px;}
.y38{bottom:1039.650000px;}
.y14d{bottom:1042.350000px;}
.y118{bottom:1042.530000px;}
.ydc{bottom:1044.150000px;}
.y2{bottom:1049.370000px;}
.y37{bottom:1062.150000px;}
.y13c{bottom:1065.030000px;}
.ydb{bottom:1066.650000px;}
.y7f{bottom:1068.990000px;}
.y117{bottom:1071.150000px;}
.y14c{bottom:1072.410000px;}
.y36{bottom:1084.650000px;}
.yda{bottom:1089.150000px;}
.y7e{bottom:1092.930000px;}
.y116{bottom:1093.650000px;}
.yaa{bottom:1101.930000px;}
.y35{bottom:1107.150000px;}
.y7d{bottom:1112.370000px;}
.yd9{bottom:1116.150000px;}
.ya9{bottom:1121.370000px;}
.y34{bottom:1138.680000px;}
.y7c{bottom:1141.020000px;}
.he{height:29.158594px;}
.h19{height:33.840000px;}
.h4{height:40.605469px;}
.ha{height:42.164648px;}
.hb{height:46.251562px;}
.h14{height:46.736719px;}
.h6{height:48.752930px;}
.hd{height:50.273438px;}
.h1b{height:50.294531px;}
.h17{height:50.373984px;}
.h11{height:50.800781px;}
.h1a{height:51.996094px;}
.h7{height:52.417969px;}
.h15{height:53.755312px;}
.h9{height:54.140625px;}
.h10{height:54.596250px;}
.h13{height:59.343750px;}
.hf{height:59.383125px;}
.h8{height:60.679688px;}
.h12{height:64.546875px;}
.h2{height:65.884219px;}
.hc{height:67.156523px;}
.h18{height:68.220000px;}
.h3{height:107.316000px;}
.h5{height:162.421875px;}
.h16{height:392.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:43.740000px;}
.w6{width:48.780000px;}
.w7{width:67.680000px;}
.w9{width:74.700000px;}
.w8{width:94.680000px;}
.wb{width:161.100000px;}
.wa{width:178.200000px;}
.w3{width:189.930000px;}
.w2{width:512.535000px;}
.w4{width:673.560000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:9.720000px;}
.x3b{left:18.720000px;}
.x9{left:41.445000px;}
.xa{left:61.785000px;}
.x8{left:63.405000px;}
.x7{left:81.945000px;}
.x1a{left:106.236000px;}
.x3a{left:108.540000px;}
.x2{left:116.676000px;}
.x16{left:118.296000px;}
.x13{left:127.836000px;}
.xe{left:143.856000px;}
.x18{left:149.796000px;}
.x15{left:155.190000px;}
.x11{left:164.370000px;}
.xc{left:188.490000px;}
.x17{left:190.290000px;}
.x4{left:194.439000px;}
.x14{left:201.810000px;}
.xd{left:212.970000px;}
.x3{left:217.119000px;}
.x32{left:229.890000px;}
.xf{left:236.190000px;}
.x5{left:242.319000px;}
.x19{left:245.010000px;}
.x2e{left:250.410000px;}
.x45{left:252.390000px;}
.x2c{left:257.610000px;}
.x44{left:264.450000px;}
.x29{left:265.530000px;}
.x30{left:269.670000px;}
.x40{left:275.580000px;}
.x2f{left:280.110000px;}
.x28{left:285.555000px;}
.x27{left:292.935000px;}
.x21{left:295.815000px;}
.x12{left:297.795000px;}
.x2a{left:305.895000px;}
.x31{left:310.755000px;}
.x23{left:312.015000px;}
.x26{left:313.095000px;}
.x2d{left:314.355000px;}
.x2b{left:321.375000px;}
.x36{left:324.075000px;}
.x1c{left:326.955000px;}
.x34{left:333.435000px;}
.x22{left:334.695000px;}
.x33{left:339.735000px;}
.x37{left:343.335000px;}
.x10{left:351.075000px;}
.x25{left:353.055000px;}
.x35{left:360.975000px;}
.x1b{left:374.475000px;}
.x43{left:383.115000px;}
.x42{left:385.455000px;}
.x1e{left:390.315000px;}
.x39{left:391.395000px;}
.x20{left:405.435000px;}
.x1d{left:407.055000px;}
.x3d{left:424.800000px;}
.x24{left:433.875000px;}
.x1{left:438.015000px;}
.xb{left:446.475000px;}
.x41{left:473.220000px;}
.x3e{left:534.060000px;}
.x6{left:629.205000px;}
.x3f{left:666.900000px;}
.x38{left:783.510000px;}
.x1f{left:790.350000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-1.088000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.024320pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024320pt;}
.ls2{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.227733pt;}
.ls18{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.271467pt;}
.ls1e{letter-spacing:0.334080pt;}
.ls3{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.554667pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.664320pt;}
.ls17{letter-spacing:1.920000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:16.640000pt;}
.lsa{letter-spacing:79.680000pt;}
.ls9{letter-spacing:79.840000pt;}
.ws9{word-spacing:-63.552000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.664000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.968000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws12{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.486933pt;}
.ws8{word-spacing:-14.055680pt;}
.wsa{word-spacing:-14.031360pt;}
.ws1{word-spacing:-13.536000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.456000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws15{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.896000pt;}
.ws10{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.256000pt;}
.wsb{word-spacing:-9.280000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-2.784000pt;}
._0{margin-left:-1.296000pt;}
._2{width:1.360000pt;}
._8{width:3.116587pt;}
._9{width:4.778027pt;}
._25{width:5.702400pt;}
._b{width:6.595200pt;}
._1a{width:7.591467pt;}
._13{width:8.512000pt;}
._14{width:9.584000pt;}
._7{width:10.597760pt;}
._6{width:12.247680pt;}
._18{width:13.160320pt;}
._19{width:14.079573pt;}
._22{width:15.104000pt;}
._4{width:16.066347pt;}
._e{width:16.965333pt;}
._d{width:17.901440pt;}
._c{width:19.136000pt;}
._20{width:20.157227pt;}
._23{width:21.264000pt;}
._11{width:22.784000pt;}
._12{width:23.808000pt;}
._21{width:24.768640pt;}
._5{width:25.671680pt;}
._a{width:26.790400pt;}
._24{width:27.968000pt;}
._f{width:28.864000pt;}
._10{width:30.144000pt;}
._17{width:31.306667pt;}
._16{width:32.640000pt;}
._2a{width:33.610880pt;}
._1f{width:34.624000pt;}
._15{width:35.584000pt;}
._26{width:36.917333pt;}
._27{width:37.866667pt;}
._1d{width:39.680000pt;}
._1e{width:40.592000pt;}
._1c{width:69.880107pt;}
._1b{width:71.009280pt;}
._3{width:80.618667pt;}
._28{width:190.592000pt;}
._29{width:192.000000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:15.173333pt;}
.y5{bottom:15.680000pt;}
.y9{bottom:24.320000pt;}
.y4{bottom:37.600000pt;}
.y8{bottom:43.520000pt;}
.yd7{bottom:45.733333pt;}
.y1{bottom:51.232000pt;}
.y7{bottom:62.720000pt;}
.ycf{bottom:64.866667pt;}
.y6{bottom:81.786667pt;}
.y3{bottom:84.666667pt;}
.ya8{bottom:100.672000pt;}
.yb2{bottom:102.432000pt;}
.yd0{bottom:102.466667pt;}
.y14b{bottom:102.592000pt;}
.y33{bottom:102.752000pt;}
.yf4{bottom:105.632000pt;}
.y60{bottom:109.632000pt;}
.y16a{bottom:113.472000pt;}
.ya7{bottom:118.112000pt;}
.y7b{bottom:120.032000pt;}
.yb1{bottom:120.832000pt;}
.y32{bottom:121.312000pt;}
.y14a{bottom:122.592000pt;}
.yf3{bottom:124.032000pt;}
.y5f{bottom:129.632000pt;}
.y169{bottom:132.192000pt;}
.ya6{bottom:135.386667pt;}
.y7a{bottom:137.306667pt;}
.ycd{bottom:138.266667pt;}
.y31{bottom:139.866667pt;}
.yd1{bottom:140.066667pt;}
.y149{bottom:142.586667pt;}
.yf2{bottom:144.026667pt;}
.yb0{bottom:147.066667pt;}
.y13b{bottom:148.026667pt;}
.y168{bottom:150.906667pt;}
.ya5{bottom:152.666667pt;}
.y79{bottom:154.746667pt;}
.y115{bottom:156.186667pt;}
.y5e{bottom:157.626667pt;}
.ycc{bottom:158.266667pt;}
.y30{bottom:158.586667pt;}
.yf1{bottom:164.026667pt;}
.yaf{bottom:165.786667pt;}
.y13a{bottom:168.026667pt;}
.y167{bottom:169.466667pt;}
.ya4{bottom:170.106667pt;}
.y78{bottom:172.026667pt;}
.y114{bottom:176.186667pt;}
.y2f{bottom:177.306667pt;}
.y5d{bottom:177.626667pt;}
.yd2{bottom:177.666667pt;}
.ycb{bottom:182.266667pt;}
.yf0{bottom:184.026667pt;}
.yae{bottom:184.666667pt;}
.ya3{bottom:187.386667pt;}
.y139{bottom:188.026667pt;}
.y166{bottom:188.186667pt;}
.y77{bottom:189.306667pt;}
.y2e{bottom:195.866667pt;}
.y5c{bottom:196.026667pt;}
.y113{bottom:196.186667pt;}
.yca{bottom:202.266667pt;}
.yef{bottom:204.026667pt;}
.ya2{bottom:204.666667pt;}
.y165{bottom:206.906667pt;}
.y148{bottom:208.026667pt;}
.y76{bottom:210.746667pt;}
.y138{bottom:213.306667pt;}
.y2d{bottom:214.586667pt;}
.yd3{bottom:215.266667pt;}
.y5b{bottom:216.026667pt;}
.y112{bottom:221.626667pt;}
.ya1{bottom:222.106667pt;}
.yc9{bottom:222.266667pt;}
.yee{bottom:224.026667pt;}
.y164{bottom:225.466667pt;}
.y75{bottom:232.026667pt;}
.y2c{bottom:233.306667pt;}
.y5a{bottom:236.026667pt;}
.ya0{bottom:239.386667pt;}
.y111{bottom:241.626667pt;}
.yc8{bottom:242.266667pt;}
.yed{bottom:244.066667pt;}
.y163{bottom:244.226667pt;}
.y2b{bottom:251.906667pt;}
.yd4{bottom:252.866667pt;}
.y137{bottom:253.346667pt;}
.y59{bottom:256.066667pt;}
.y9f{bottom:256.706667pt;}
.y74{bottom:257.346667pt;}
.y147{bottom:258.626667pt;}
.y110{bottom:261.666667pt;}
.yc7{bottom:262.306667pt;}
.y162{bottom:262.946667pt;}
.yec{bottom:264.066667pt;}
.y2a{bottom:270.626667pt;}
.y136{bottom:273.346667pt;}
.y73{bottom:274.786667pt;}
.y58{bottom:276.066667pt;}
.y9e{bottom:278.146667pt;}
.y146{bottom:278.626667pt;}
.yeb{bottom:284.066667pt;}
.yc6{bottom:286.306667pt;}
.y10f{bottom:286.946667pt;}
.y29{bottom:289.346667pt;}
.yd5{bottom:290.493333pt;}
.y72{bottom:292.706667pt;}
.y57{bottom:296.066667pt;}
.y135{bottom:298.626667pt;}
.y9d{bottom:299.426667pt;}
.yea{bottom:304.066667pt;}
.yc5{bottom:306.306667pt;}
.y10e{bottom:306.946667pt;}
.y28{bottom:307.906667pt;}
.y71{bottom:312.706667pt;}
.y56{bottom:316.066667pt;}
.y134{bottom:318.626667pt;}
.y9c{bottom:324.706667pt;}
.yc4{bottom:326.306667pt;}
.y27{bottom:326.626667pt;}
.y10d{bottom:326.946667pt;}
.ye9{bottom:328.066667pt;}
.yd6{bottom:328.093333pt;}
.y70{bottom:332.706667pt;}
.y55{bottom:336.066667pt;}
.y133{bottom:338.626667pt;}
.y145{bottom:344.066667pt;}
.y26{bottom:345.346667pt;}
.yc3{bottom:346.306667pt;}
.y10c{bottom:346.946667pt;}
.ye8{bottom:348.066667pt;}
.y9b{bottom:350.146667pt;}
.y6f{bottom:352.706667pt;}
.y54{bottom:356.066667pt;}
.y25{bottom:363.906667pt;}
.y132{bottom:364.066667pt;}
.yc2{bottom:366.306667pt;}
.y9a{bottom:367.426667pt;}
.ye7{bottom:368.066667pt;}
.y10b{bottom:372.226667pt;}
.y6e{bottom:372.706667pt;}
.y53{bottom:376.066667pt;}
.y24{bottom:382.626667pt;}
.y131{bottom:384.066667pt;}
.yc1{bottom:386.306667pt;}
.ye6{bottom:388.066667pt;}
.y144{bottom:389.346667pt;}
.y10a{bottom:392.226667pt;}
.y6d{bottom:392.706667pt;}
.y52{bottom:396.066667pt;}
.y23{bottom:401.346667pt;}
.y130{bottom:404.066667pt;}
.ye5{bottom:408.066667pt;}
.y143{bottom:409.346667pt;}
.yc0{bottom:410.306667pt;}
.y109{bottom:412.226667pt;}
.y99{bottom:414.146667pt;}
.y51{bottom:416.066667pt;}
.y22{bottom:419.906667pt;}
.y6c{bottom:420.706667pt;}
.ye4{bottom:428.066667pt;}
.y12f{bottom:429.346667pt;}
.ybf{bottom:430.306667pt;}
.y108{bottom:432.226667pt;}
.y98{bottom:435.426667pt;}
.y50{bottom:436.066667pt;}
.y21{bottom:438.146667pt;}
.y6b{bottom:440.706667pt;}
.y12e{bottom:449.346667pt;}
.ybe{bottom:450.306667pt;}
.y4f{bottom:456.066667pt;}
.y97{bottom:456.706667pt;}
.y107{bottom:457.666667pt;}
.y6a{bottom:460.706667pt;}
.y20{bottom:463.586667pt;}
.y12d{bottom:469.346667pt;}
.ybd{bottom:470.306667pt;}
.y96{bottom:474.146667pt;}
.y142{bottom:474.626667pt;}
.y4e{bottom:476.066667pt;}
.y106{bottom:477.666667pt;}
.y69{bottom:480.386667pt;}
.y1f{bottom:487.586667pt;}
.ybc{bottom:490.306667pt;}
.y12c{bottom:494.653333pt;}
.y95{bottom:495.453333pt;}
.y4d{bottom:496.093333pt;}
.y105{bottom:497.693333pt;}
.y68{bottom:499.133333pt;}
.y1e{bottom:503.613333pt;}
.ybb{bottom:510.333333pt;}
.y94{bottom:512.733333pt;}
.y12b{bottom:514.653333pt;}
.y4c{bottom:516.093333pt;}
.y67{bottom:517.853333pt;}
.y141{bottom:520.093333pt;}
.y104{bottom:522.973333pt;}
.y1d{bottom:527.613333pt;}
.yba{bottom:530.333333pt;}
.y93{bottom:534.173333pt;}
.y12a{bottom:534.653333pt;}
.y4b{bottom:536.093333pt;}
.y66{bottom:536.413333pt;}
.y140{bottom:540.093333pt;}
.y103{bottom:542.973333pt;}
.y1c{bottom:543.613333pt;}
.yb9{bottom:550.333333pt;}
.y92{bottom:551.453333pt;}
.y161{bottom:553.213333pt;}
.y65{bottom:555.293333pt;}
.y4a{bottom:556.093333pt;}
.y129{bottom:560.093333pt;}
.y102{bottom:562.973333pt;}
.y1b{bottom:567.613333pt;}
.yb8{bottom:570.333333pt;}
.yad{bottom:570.493333pt;}
.y160{bottom:571.773333pt;}
.y91{bottom:572.733333pt;}
.y64{bottom:575.293333pt;}
.y49{bottom:576.093333pt;}
.y128{bottom:580.093333pt;}
.y101{bottom:582.973333pt;}
.y1a{bottom:583.613333pt;}
.yac{bottom:589.213333pt;}
.y90{bottom:590.173333pt;}
.y15f{bottom:590.493333pt;}
.y63{bottom:594.813333pt;}
.y48{bottom:596.093333pt;}
.yb7{bottom:598.333333pt;}
.y127{bottom:600.093333pt;}
.y13f{bottom:605.373333pt;}
.y19{bottom:607.613333pt;}
.yab{bottom:608.093333pt;}
.y100{bottom:608.253333pt;}
.y15e{bottom:609.213333pt;}
.y8f{bottom:611.453333pt;}
.y62{bottom:612.093333pt;}
.y47{bottom:616.093333pt;}
.yb6{bottom:618.333333pt;}
.y18{bottom:623.613333pt;}
.y126{bottom:625.373333pt;}
.y15d{bottom:627.773333pt;}
.yff{bottom:628.253333pt;}
.y8e{bottom:628.733333pt;}
.y61{bottom:630.173333pt;}
.y46{bottom:636.093333pt;}
.yb5{bottom:636.413333pt;}
.ye3{bottom:640.093333pt;}
.y125{bottom:645.373333pt;}
.y15c{bottom:646.493333pt;}
.y17{bottom:647.613333pt;}
.yfe{bottom:648.253333pt;}
.y8d{bottom:650.173333pt;}
.y16{bottom:658.493333pt;}
.yb4{bottom:659.133333pt;}
.y45{bottom:660.093333pt;}
.y15b{bottom:665.213333pt;}
.y8c{bottom:667.453333pt;}
.yfd{bottom:668.253333pt;}
.y124{bottom:670.653333pt;}
.y15{bottom:675.773333pt;}
.yb3{bottom:678.173333pt;}
.yce{bottom:678.880000pt;}
.y44{bottom:680.093333pt;}
.y15a{bottom:683.773333pt;}
.y8b{bottom:688.733333pt;}
.y123{bottom:690.653333pt;}
.y14{bottom:693.693333pt;}
.y43{bottom:700.093333pt;}
.y159{bottom:702.493333pt;}
.y8a{bottom:710.173333pt;}
.y122{bottom:710.653333pt;}
.yfc{bottom:713.693333pt;}
.y13{bottom:715.613333pt;}
.y42{bottom:720.093333pt;}
.y158{bottom:721.213333pt;}
.ye2{bottom:724.093333pt;}
.y89{bottom:731.453333pt;}
.yfb{bottom:733.693333pt;}
.y121{bottom:736.093333pt;}
.y157{bottom:739.773333pt;}
.y41{bottom:740.093333pt;}
.y12{bottom:742.333333pt;}
.ye1{bottom:744.093333pt;}
.y88{bottom:748.773333pt;}
.y120{bottom:756.133333pt;}
.y156{bottom:758.533333pt;}
.y40{bottom:760.133333pt;}
.yfa{bottom:761.733333pt;}
.ye0{bottom:764.133333pt;}
.y11{bottom:766.533333pt;}
.y87{bottom:770.213333pt;}
.y11f{bottom:776.133333pt;}
.y155{bottom:777.253333pt;}
.yf9{bottom:781.733333pt;}
.y3f{bottom:784.133333pt;}
.y86{bottom:787.493333pt;}
.y10{bottom:790.373333pt;}
.y154{bottom:795.813333pt;}
.y11e{bottom:796.133333pt;}
.yf8{bottom:800.133333pt;}
.y13e{bottom:801.413333pt;}
.y3e{bottom:804.133333pt;}
.y85{bottom:808.773333pt;}
.y153{bottom:814.533333pt;}
.yf{bottom:814.693333pt;}
.yf7{bottom:820.133333pt;}
.y11d{bottom:821.413333pt;}
.y3d{bottom:824.133333pt;}
.y84{bottom:830.213333pt;}
.y152{bottom:833.253333pt;}
.ye{bottom:834.693333pt;}
.yf6{bottom:840.133333pt;}
.y11c{bottom:841.413333pt;}
.y3c{bottom:844.133333pt;}
.y83{bottom:851.493333pt;}
.y151{bottom:851.813333pt;}
.yd{bottom:854.693333pt;}
.yf5{bottom:860.133333pt;}
.y11b{bottom:861.413333pt;}
.y3b{bottom:864.133333pt;}
.ydf{bottom:868.133333pt;}
.y150{bottom:870.533333pt;}
.y82{bottom:872.773333pt;}
.yc{bottom:874.693333pt;}
.y13d{bottom:881.413333pt;}
.y3a{bottom:884.133333pt;}
.y11a{bottom:886.693333pt;}
.yde{bottom:888.133333pt;}
.y14f{bottom:889.253333pt;}
.y81{bottom:894.213333pt;}
.yb{bottom:894.693333pt;}
.y39{bottom:904.133333pt;}
.y119{bottom:906.693333pt;}
.y14e{bottom:907.813333pt;}
.ydd{bottom:908.133333pt;}
.y80{bottom:911.493333pt;}
.ya{bottom:914.693333pt;}
.y38{bottom:924.133333pt;}
.y14d{bottom:926.533333pt;}
.y118{bottom:926.693333pt;}
.ydc{bottom:928.133333pt;}
.y2{bottom:932.773333pt;}
.y37{bottom:944.133333pt;}
.y13c{bottom:946.693333pt;}
.ydb{bottom:948.133333pt;}
.y7f{bottom:950.213333pt;}
.y117{bottom:952.133333pt;}
.y14c{bottom:953.253333pt;}
.y36{bottom:964.133333pt;}
.yda{bottom:968.133333pt;}
.y7e{bottom:971.493333pt;}
.y116{bottom:972.133333pt;}
.yaa{bottom:979.493333pt;}
.y35{bottom:984.133333pt;}
.y7d{bottom:988.773333pt;}
.yd9{bottom:992.133333pt;}
.ya9{bottom:996.773333pt;}
.y34{bottom:1012.160000pt;}
.y7c{bottom:1014.240000pt;}
.he{height:25.918750pt;}
.h19{height:30.080000pt;}
.h4{height:36.093750pt;}
.ha{height:37.479688pt;}
.hb{height:41.112500pt;}
.h14{height:41.543750pt;}
.h6{height:43.335938pt;}
.hd{height:44.687500pt;}
.h1b{height:44.706250pt;}
.h17{height:44.776875pt;}
.h11{height:45.156250pt;}
.h1a{height:46.218750pt;}
.h7{height:46.593750pt;}
.h15{height:47.782500pt;}
.h9{height:48.125000pt;}
.h10{height:48.530000pt;}
.h13{height:52.750000pt;}
.hf{height:52.785000pt;}
.h8{height:53.937500pt;}
.h12{height:57.375000pt;}
.h2{height:58.563750pt;}
.hc{height:59.694687pt;}
.h18{height:60.640000pt;}
.h3{height:95.392000pt;}
.h5{height:144.375000pt;}
.h16{height:349.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:38.880000pt;}
.w6{width:43.360000pt;}
.w7{width:60.160000pt;}
.w9{width:66.400000pt;}
.w8{width:84.160000pt;}
.wb{width:143.200000pt;}
.wa{width:158.400000pt;}
.w3{width:168.826667pt;}
.w2{width:455.586667pt;}
.w4{width:598.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:8.640000pt;}
.x3b{left:16.640000pt;}
.x9{left:36.840000pt;}
.xa{left:54.920000pt;}
.x8{left:56.360000pt;}
.x7{left:72.840000pt;}
.x1a{left:94.432000pt;}
.x3a{left:96.480000pt;}
.x2{left:103.712000pt;}
.x16{left:105.152000pt;}
.x13{left:113.632000pt;}
.xe{left:127.872000pt;}
.x18{left:133.152000pt;}
.x15{left:137.946667pt;}
.x11{left:146.106667pt;}
.xc{left:167.546667pt;}
.x17{left:169.146667pt;}
.x4{left:172.834667pt;}
.x14{left:179.386667pt;}
.xd{left:189.306667pt;}
.x3{left:192.994667pt;}
.x32{left:204.346667pt;}
.xf{left:209.946667pt;}
.x5{left:215.394667pt;}
.x19{left:217.786667pt;}
.x2e{left:222.586667pt;}
.x45{left:224.346667pt;}
.x2c{left:228.986667pt;}
.x44{left:235.066667pt;}
.x29{left:236.026667pt;}
.x30{left:239.706667pt;}
.x40{left:244.960000pt;}
.x2f{left:248.986667pt;}
.x28{left:253.826667pt;}
.x27{left:260.386667pt;}
.x21{left:262.946667pt;}
.x12{left:264.706667pt;}
.x2a{left:271.906667pt;}
.x31{left:276.226667pt;}
.x23{left:277.346667pt;}
.x26{left:278.306667pt;}
.x2d{left:279.426667pt;}
.x2b{left:285.666667pt;}
.x36{left:288.066667pt;}
.x1c{left:290.626667pt;}
.x34{left:296.386667pt;}
.x22{left:297.506667pt;}
.x33{left:301.986667pt;}
.x37{left:305.186667pt;}
.x10{left:312.066667pt;}
.x25{left:313.826667pt;}
.x35{left:320.866667pt;}
.x1b{left:332.866667pt;}
.x43{left:340.546667pt;}
.x42{left:342.626667pt;}
.x1e{left:346.946667pt;}
.x39{left:347.906667pt;}
.x20{left:360.386667pt;}
.x1d{left:361.826667pt;}
.x3d{left:377.600000pt;}
.x24{left:385.666667pt;}
.x1{left:389.346667pt;}
.xb{left:396.866667pt;}
.x41{left:420.640000pt;}
.x3e{left:474.720000pt;}
.x6{left:559.293333pt;}
.x3f{left:592.800000pt;}
.x38{left:696.453333pt;}
.x1f{left:702.533333pt;}
}




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