
    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_5cfb4a5bda33300d04c0db20.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3168f79d98c2aa4745537842.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f730d85031b005e79ed770d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6d4c2125c4c97f798d5cd939.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_d552dc60a5aac040a5caf661.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_b72e5cb9789ce7de396bbb92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_e3e6f5971b7b09dd1728803c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_2b06f2dfc61b0d36d68dae42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677246;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_8a7ab73f4a0b3c71189b8e17.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6b2f70e8f389e3b2e3ecd603.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a3ac5f9321eb97fa93c342bd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.844727;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_dcda164c8f653ee1426256d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v5{vertical-align:-82.800000px;}
.v6{vertical-align:-81.360000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.595840px;}
.v3{vertical-align:27.360000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.596160px;}
.ls13{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.331200px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.331200px;}
.ls15{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.375840px;}
.ls1b{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.936000px;}
.ls8{letter-spacing:1.224000px;}
.ls19{letter-spacing:1.440000px;}
.ls7{letter-spacing:74.880000px;}
.ls1c{letter-spacing:1008.000000px;}
.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;}
}
.ws24{word-spacing:-72.000000px;}
.ws2c{word-spacing:-19.440000px;}
.ws25{word-spacing:-18.936000px;}
.ws22{word-spacing:-18.720000px;}
.ws2a{word-spacing:-18.576000px;}
.ws2f{word-spacing:-18.432000px;}
.ws16{word-spacing:-18.288000px;}
.ws19{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws2d{word-spacing:-18.072000px;}
.wse{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws17{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.496000px;}
.ws2b{word-spacing:-17.280000px;}
.ws2e{word-spacing:-17.064000px;}
.ws5{word-spacing:-16.692480px;}
.ws4{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.488000px;}
.ws0{word-spacing:-16.427520px;}
.ws30{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.228800px;}
.ws36{word-spacing:-15.984000px;}
.ws2{word-spacing:-10.815840px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:-0.861120px;}
.ws31{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.728640px;}
.ws1b{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.504000px;}
.ws33{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.331200px;}
.ws26{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.132480px;}
.ws1a{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.ws21{word-spacing:0.072000px;}
.ws6{word-spacing:0.132480px;}
.ws28{word-spacing:0.144000px;}
.ws15{word-spacing:0.216000px;}
.ws13{word-spacing:0.288000px;}
.ws9{word-spacing:0.331200px;}
.ws35{word-spacing:0.360000px;}
.ws32{word-spacing:0.504000px;}
.ws29{word-spacing:0.576000px;}
.wsb{word-spacing:0.596160px;}
.ws23{word-spacing:0.648000px;}
.ws14{word-spacing:0.720000px;}
.ws27{word-spacing:0.936000px;}
.ws1d{word-spacing:1.008000px;}
.ws18{word-spacing:1.440000px;}
.ws1c{word-spacing:2.880000px;}
.ws37{word-spacing:207.792000px;}
._2{margin-left:-2.071008px;}
._0{margin-left:-1.053216px;}
._1{width:1.391040px;}
._3{width:2.659680px;}
._5{width:3.870720px;}
._9{width:46.800000px;}
._1a{width:56.808000px;}
._19{width:61.729920px;}
._14{width:69.197760px;}
._c{width:79.848000px;}
._6{width:112.129920px;}
._13{width:136.728000px;}
._1b{width:160.464960px;}
._10{width:186.264000px;}
._e{width:210.240000px;}
._a{width:212.256000px;}
._7{width:225.989280px;}
._b{width:243.989280px;}
._22{width:269.544960px;}
._20{width:316.451808px;}
._8{width:317.520000px;}
._1f{width:384.408000px;}
._f{width:486.388800px;}
._12{width:665.619840px;}
._15{width:715.752000px;}
._1c{width:734.068800px;}
._17{width:769.752000px;}
._16{width:779.760000px;}
._18{width:841.752000px;}
._4{width:846.000000px;}
._26{width:847.728000px;}
._d{width:906.145920px;}
._1e{width:913.299840px;}
._21{width:963.432000px;}
._24{width:1017.432000px;}
._23{width:1027.440000px;}
._25{width:1089.432000px;}
._11{width:1153.200960px;}
._1d{width:1400.880960px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:4.320000px;}
.y1b{bottom:4.860000px;}
.y105{bottom:5.760000px;}
.ya5{bottom:6.660000px;}
.yc0{bottom:8.820000px;}
.ya6{bottom:12.780000px;}
.yac{bottom:14.760000px;}
.ya9{bottom:14.940000px;}
.y81{bottom:17.640000px;}
.y84{bottom:17.820000px;}
.y99{bottom:21.240000px;}
.yf1{bottom:23.940000px;}
.y7e{bottom:25.020000px;}
.yf3{bottom:34.380000px;}
.yf7{bottom:34.560000px;}
.y14{bottom:44.883000px;}
.y95{bottom:45.720000px;}
.y103{bottom:48.060000px;}
.ya2{bottom:53.100000px;}
.y107{bottom:55.620000px;}
.ya0{bottom:58.140000px;}
.y13{bottom:66.483000px;}
.yec{bottom:91.440000px;}
.yfd{bottom:92.160000px;}
.yea{bottom:122.940000px;}
.y61{bottom:124.380000px;}
.y67{bottom:135.720000px;}
.y32{bottom:140.040000px;}
.y4c{bottom:145.080000px;}
.y111{bottom:145.620000px;}
.y135{bottom:151.380000px;}
.yfc{bottom:153.360000px;}
.y101{bottom:161.820000px;}
.y9e{bottom:162.720000px;}
.ycc{bottom:165.420000px;}
.y60{bottom:165.780000px;}
.ye9{bottom:167.040000px;}
.y110{bottom:167.580000px;}
.y66{bottom:179.820000px;}
.y31{bottom:181.440000px;}
.y100{bottom:183.240000px;}
.y7c{bottom:183.960000px;}
.ycb{bottom:186.120000px;}
.y4b{bottom:186.480000px;}
.ye8{bottom:189.000000px;}
.y12{bottom:191.725200px;}
.y123{bottom:192.420000px;}
.y134{bottom:192.780000px;}
.y11f{bottom:203.030850px;}
.yff{bottom:203.940000px;}
.y9d{bottom:204.120000px;}
.yca{bottom:206.820000px;}
.y5f{bottom:207.180000px;}
.ye7{bottom:210.960000px;}
.y122{bottom:213.120000px;}
.y65{bottom:222.480000px;}
.y30{bottom:222.840000px;}
.yc8{bottom:223.920000px;}
.yfe{bottom:224.640000px;}
.y7b{bottom:225.360000px;}
.y4a{bottom:227.880000px;}
.y11{bottom:229.697280px;}
.y11e{bottom:231.766500px;}
.ye6{bottom:232.380000px;}
.yc9{bottom:232.740000px;}
.y121{bottom:233.820000px;}
.y9c{bottom:245.520000px;}
.y5e{bottom:248.580000px;}
.y120{bottom:250.560000px;}
.yc7{bottom:253.620000px;}
.y133{bottom:255.420000px;}
.y11d{bottom:260.502150px;}
.y9b{bottom:262.620000px;}
.y64{bottom:263.880000px;}
.y2f{bottom:264.240000px;}
.y7a{bottom:266.760000px;}
.y10{bottom:267.669300px;}
.y131{bottom:268.948800px;}
.y49{bottom:269.280000px;}
.y132{bottom:272.520000px;}
.y106{bottom:272.700000px;}
.ye5{bottom:273.420000px;}
.yc5{bottom:283.500000px;}
.y109{bottom:284.400000px;}
.y5d{bottom:289.980000px;}
.y143{bottom:290.921400px;}
.yc6{bottom:292.320000px;}
.ye4{bottom:294.120000px;}
.y9a{bottom:296.640000px;}
.y130{bottom:297.684450px;}
.y2e{bottom:305.640000px;}
.y108{bottom:306.360000px;}
.y63{bottom:306.720000px;}
.y79{bottom:308.160000px;}
.y48{bottom:310.680000px;}
.yc4{bottom:313.200000px;}
.ye3{bottom:314.820000px;}
.y102{bottom:319.500000px;}
.y142{bottom:319.657050px;}
.yc3{bottom:322.020000px;}
.y12f{bottom:326.420100px;}
.y98{bottom:330.840000px;}
.y5c{bottom:331.380000px;}
.y11b{bottom:332.445300px;}
.ye2{bottom:335.520000px;}
.yc1{bottom:343.080000px;}
.y104{bottom:346.680000px;}
.y2d{bottom:347.040000px;}
.y141{bottom:348.392700px;}
.y78{bottom:349.560000px;}
.y62{bottom:350.820000px;}
.yc2{bottom:351.900000px;}
.y47{bottom:352.080000px;}
.y112{bottom:353.631300px;}
.ye1{bottom:356.220000px;}
.y97{bottom:368.460000px;}
.y5b{bottom:372.780000px;}
.ybf{bottom:381.600000px;}
.yf{bottom:387.360000px;}
.y2c{bottom:388.440000px;}
.yfb{bottom:390.420000px;}
.y77{bottom:390.960000px;}
.y113{bottom:392.565300px;}
.y46{bottom:393.480000px;}
.ye0{bottom:397.620000px;}
.y12d{bottom:398.363250px;}
.y94{bottom:402.480000px;}
.ybd{bottom:402.660000px;}
.ybe{bottom:411.480000px;}
.yfa{bottom:412.560000px;}
.y5a{bottom:414.180000px;}
.ydf{bottom:418.320000px;}
.ye{bottom:419.407920px;}
.y124{bottom:419.549250px;}
.y13f{bottom:420.336000px;}
.y11c{bottom:424.443750px;}
.y96{bottom:427.500000px;}
.y2b{bottom:429.840000px;}
.y114{bottom:431.499300px;}
.y76{bottom:432.360000px;}
.yf9{bottom:434.520000px;}
.y45{bottom:434.880000px;}
.yf6{bottom:437.760000px;}
.yde{bottom:439.020000px;}
.ybc{bottom:441.180000px;}
.y136{bottom:441.522000px;}
.yf8{bottom:450.720000px;}
.y59{bottom:455.580000px;}
.y125{bottom:458.483250px;}
.ydd{bottom:459.720000px;}
.yba{bottom:462.060000px;}
.yd{bottom:463.320000px;}
.y93{bottom:464.580000px;}
.y115{bottom:470.433300px;}
.ybb{bottom:471.060000px;}
.y2a{bottom:471.240000px;}
.y75{bottom:473.760000px;}
.y44{bottom:476.280000px;}
.y137{bottom:480.456000px;}
.y12e{bottom:490.361700px;}
.yb9{bottom:491.940000px;}
.yc{bottom:495.367920px;}
.y58{bottom:496.980000px;}
.y126{bottom:497.417250px;}
.y92{bottom:498.600000px;}
.yb8{bottom:500.760000px;}
.ydc{bottom:501.120000px;}
.y116{bottom:509.367300px;}
.y140{bottom:512.334300px;}
.y29{bottom:512.640000px;}
.y74{bottom:516.960000px;}
.y43{bottom:517.680000px;}
.y138{bottom:519.390000px;}
.yf5{bottom:520.740000px;}
.yb6{bottom:521.640000px;}
.ydb{bottom:521.820000px;}
.yb7{bottom:530.460000px;}
.y91{bottom:532.800000px;}
.y127{bottom:536.351250px;}
.y68{bottom:538.020000px;}
.y57{bottom:538.380000px;}
.yb{bottom:539.280000px;}
.yda{bottom:542.520000px;}
.yd3{bottom:542.880000px;}
.yf2{bottom:546.660000px;}
.y117{bottom:548.301300px;}
.yb4{bottom:551.520000px;}
.y28{bottom:554.040000px;}
.y139{bottom:558.324000px;}
.y42{bottom:558.720000px;}
.y53{bottom:559.080000px;}
.yf4{bottom:559.620000px;}
.yb5{bottom:560.340000px;}
.yd9{bottom:563.220000px;}
.y90{bottom:566.820000px;}
.y128{bottom:575.285250px;}
.ya{bottom:577.080000px;}
.y56{bottom:579.780000px;}
.yb2{bottom:581.220000px;}
.yd8{bottom:583.920000px;}
.yd2{bottom:584.280000px;}
.y118{bottom:587.235300px;}
.yb3{bottom:590.040000px;}
.y27{bottom:595.440000px;}
.y13a{bottom:597.258000px;}
.y41{bottom:600.120000px;}
.y52{bottom:600.480000px;}
.y8f{bottom:600.840000px;}
.y9{bottom:609.127920px;}
.yb0{bottom:610.920000px;}
.y129{bottom:614.219250px;}
.yb1{bottom:619.920000px;}
.y55{bottom:621.180000px;}
.yf0{bottom:623.880000px;}
.yd7{bottom:625.320000px;}
.yd1{bottom:625.680000px;}
.y119{bottom:626.169300px;}
.y13b{bottom:636.192000px;}
.y26{bottom:636.840000px;}
.yaf{bottom:640.800000px;}
.y40{bottom:641.880000px;}
.y8e{bottom:642.240000px;}
.yd6{bottom:646.020000px;}
.yeb{bottom:650.880000px;}
.y8{bottom:653.040000px;}
.y12a{bottom:653.153250px;}
.y54{bottom:662.220000px;}
.y72{bottom:662.580000px;}
.y11a{bottom:665.103300px;}
.yd5{bottom:666.720000px;}
.yd0{bottom:667.080000px;}
.yad{bottom:670.500000px;}
.y13c{bottom:675.126000px;}
.y8d{bottom:676.260000px;}
.yef{bottom:676.620000px;}
.y25{bottom:678.240000px;}
.yae{bottom:679.320000px;}
.y10f{bottom:680.580000px;}
.y3f{bottom:682.920000px;}
.y51{bottom:683.280000px;}
.y7{bottom:685.087920px;}
.y12b{bottom:692.087250px;}
.yee{bottom:698.400000px;}
.yab{bottom:700.380000px;}
.y10e{bottom:702.540000px;}
.y71{bottom:703.980000px;}
.yd4{bottom:708.120000px;}
.ycf{bottom:708.480000px;}
.yaa{bottom:709.200000px;}
.y8c{bottom:710.280000px;}
.y13d{bottom:714.060000px;}
.y24{bottom:719.460000px;}
.yed{bottom:720.360000px;}
.y73{bottom:724.320000px;}
.y10d{bottom:724.500000px;}
.y3e{bottom:724.680000px;}
.y6{bottom:728.996100px;}
.ya8{bottom:730.080000px;}
.y12c{bottom:731.021250px;}
.ya7{bottom:738.900000px;}
.y8b{bottom:744.300000px;}
.y70{bottom:745.380000px;}
.y10c{bottom:746.460000px;}
.yce{bottom:749.520000px;}
.y13e{bottom:752.994000px;}
.y23{bottom:760.500000px;}
.ya4{bottom:761.400000px;}
.y3d{bottom:766.080000px;}
.y10b{bottom:768.420000px;}
.y8a{bottom:778.500000px;}
.y6f{bottom:786.780000px;}
.y10a{bottom:790.560000px;}
.ycd{bottom:790.920000px;}
.ya3{bottom:791.280000px;}
.y5{bottom:798.847920px;}
.y3c{bottom:807.480000px;}
.y89{bottom:812.520000px;}
.ya1{bottom:817.380000px;}
.y9f{bottom:822.420000px;}
.y6e{bottom:828.180000px;}
.y4{bottom:836.861100px;}
.y22{bottom:843.840000px;}
.y88{bottom:846.540000px;}
.y3b{bottom:848.880000px;}
.y6d{bottom:869.580000px;}
.y87{bottom:880.560000px;}
.y21{bottom:886.500000px;}
.y3a{bottom:890.280000px;}
.y4e{bottom:910.620000px;}
.y6c{bottom:910.980000px;}
.y3{bottom:911.927520px;}
.y86{bottom:914.580000px;}
.y20{bottom:927.900000px;}
.y4d{bottom:931.320000px;}
.y39{bottom:931.680000px;}
.y2{bottom:949.899600px;}
.y6b{bottom:952.380000px;}
.y85{bottom:955.980000px;}
.y1f{bottom:970.560000px;}
.y38{bottom:973.080000px;}
.y83{bottom:990.000000px;}
.y6a{bottom:993.780000px;}
.y1e{bottom:1013.220000px;}
.y37{bottom:1014.480000px;}
.y82{bottom:1024.200000px;}
.y69{bottom:1034.820000px;}
.y1{bottom:1054.459500px;}
.y1d{bottom:1054.620000px;}
.y50{bottom:1055.520000px;}
.y36{bottom:1055.880000px;}
.y80{bottom:1058.220000px;}
.y7d{bottom:1092.240000px;}
.y4f{bottom:1096.920000px;}
.y35{bottom:1097.280000px;}
.y19{bottom:1121.545500px;}
.y1c{bottom:1138.320000px;}
.y34{bottom:1138.680000px;}
.y18{bottom:1143.145500px;}
.y17{bottom:1164.745500px;}
.y16{bottom:1186.345500px;}
.y1a{bottom:1188.000000px;}
.y33{bottom:1192.860000px;}
.y15{bottom:1207.945500px;}
.h15{height:21.958500px;}
.h8{height:21.960000px;}
.h16{height:25.560000px;}
.h19{height:29.700000px;}
.h18{height:29.880000px;}
.h1b{height:29.881500px;}
.hf{height:34.020000px;}
.h10{height:34.201500px;}
.h12{height:37.618500px;}
.h5{height:41.250937px;}
.h4{height:41.266538px;}
.he{height:41.398500px;}
.h1d{height:43.200000px;}
.h22{height:47.988281px;}
.h7{height:51.264000px;}
.h9{height:51.679688px;}
.h1e{height:52.920000px;}
.h1f{height:53.100000px;}
.h17{height:58.651172px;}
.h11{height:62.100000px;}
.h3{height:65.010937px;}
.h20{height:66.600000px;}
.h2{height:66.757500px;}
.h6{height:66.757740px;}
.hc{height:70.628906px;}
.hb{height:70.664062px;}
.h1a{height:71.122500px;}
.ha{height:72.562500px;}
.hd{height:74.704922px;}
.h21{height:74.880000px;}
.h1c{height:110.700000px;}
.h14{height:892.500000px;}
.h13{height:892.620000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:9.180000px;}
.w3{width:18.180000px;}
.wc{width:18.360000px;}
.w11{width:20.701500px;}
.w15{width:20.880000px;}
.w8{width:55.980000px;}
.w17{width:56.700000px;}
.w5{width:60.480000px;}
.w18{width:79.200000px;}
.w13{width:84.960000px;}
.w6{width:84.961500px;}
.w9{width:89.281500px;}
.w7{width:90.360000px;}
.w10{width:97.380000px;}
.we{width:97.558500px;}
.wf{width:97.560000px;}
.w4{width:205.380000px;}
.w1a{width:274.500000px;}
.w19{width:274.501500px;}
.w12{width:327.421500px;}
.w16{width:389.340000px;}
.wd{width:412.380000px;}
.w14{width:610.200000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.wb{width:1263.000000px;}
.wa{width:1263.060000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x34{left:19.800000px;}
.x14{left:22.140000px;}
.x13{left:27.360000px;}
.x17{left:28.800000px;}
.x5{left:44.221500px;}
.x33{left:83.880000px;}
.x35{left:103.680000px;}
.x18{left:106.380000px;}
.x21{left:114.480000px;}
.x4{left:117.463500px;}
.x1{left:135.000000px;}
.x15{left:143.100000px;}
.x2{left:149.589300px;}
.x7{left:162.000000px;}
.x3a{left:171.552300px;}
.x9{left:182.520000px;}
.x2c{left:185.580000px;}
.x8{left:189.000000px;}
.x22{left:191.340000px;}
.x30{left:193.680000px;}
.x24{left:199.440000px;}
.x3c{left:233.661300px;}
.x3b{left:246.594300px;}
.x3{left:255.424320px;}
.x26{left:325.800000px;}
.x10{left:340.380000px;}
.xd{left:345.240000px;}
.xb{left:353.160000px;}
.xc{left:356.220000px;}
.x32{left:362.880000px;}
.x16{left:396.540000px;}
.x11{left:400.860000px;}
.x36{left:414.000000px;}
.x38{left:419.940000px;}
.x37{left:433.800000px;}
.x39{left:439.740000px;}
.xe{left:473.220000px;}
.x12{left:485.820000px;}
.x1a{left:518.760000px;}
.x23{left:526.860000px;}
.x2e{left:574.920000px;}
.x2d{left:583.020000px;}
.x1b{left:616.320000px;}
.x2f{left:659.880000px;}
.x3d{left:703.260000px;}
.x1c{left:713.880000px;}
.x27{left:716.580000px;}
.xa{left:739.260000px;}
.x6{left:748.260000px;}
.x1d{left:811.260000px;}
.x28{left:813.960000px;}
.x1e{left:831.960000px;}
.x29{left:834.840000px;}
.x25{left:840.060000px;}
.x31{left:842.760000px;}
.x1f{left:929.520000px;}
.x2a{left:932.220000px;}
.x20{left:1027.080000px;}
.x2b{left:1029.780000px;}
.x19{left:1138.320000px;}
@media print{
.v5{vertical-align:-73.600000pt;}
.v6{vertical-align:-72.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.974080pt;}
.v3{vertical-align:24.320000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.529920pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.294400pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls15{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.334080pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.832000pt;}
.ls8{letter-spacing:1.088000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls7{letter-spacing:66.560000pt;}
.ls1c{letter-spacing:896.000000pt;}
.ws24{word-spacing:-64.000000pt;}
.ws2c{word-spacing:-17.280000pt;}
.ws25{word-spacing:-16.832000pt;}
.ws22{word-spacing:-16.640000pt;}
.ws2a{word-spacing:-16.512000pt;}
.ws2f{word-spacing:-16.384000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws19{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws2d{word-spacing:-16.064000pt;}
.wse{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws17{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.552000pt;}
.ws2b{word-spacing:-15.360000pt;}
.ws2e{word-spacing:-15.168000pt;}
.ws5{word-spacing:-14.837760pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.602240pt;}
.ws30{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.425600pt;}
.ws36{word-spacing:-14.208000pt;}
.ws2{word-spacing:-9.614080pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:-0.765440pt;}
.ws31{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.647680pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.448000pt;}
.ws33{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.294400pt;}
.ws26{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.117760pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.ws21{word-spacing:0.064000pt;}
.ws6{word-spacing:0.117760pt;}
.ws28{word-spacing:0.128000pt;}
.ws15{word-spacing:0.192000pt;}
.ws13{word-spacing:0.256000pt;}
.ws9{word-spacing:0.294400pt;}
.ws35{word-spacing:0.320000pt;}
.ws32{word-spacing:0.448000pt;}
.ws29{word-spacing:0.512000pt;}
.wsb{word-spacing:0.529920pt;}
.ws23{word-spacing:0.576000pt;}
.ws14{word-spacing:0.640000pt;}
.ws27{word-spacing:0.832000pt;}
.ws1d{word-spacing:0.896000pt;}
.ws18{word-spacing:1.280000pt;}
.ws1c{word-spacing:2.560000pt;}
.ws37{word-spacing:184.704000pt;}
._2{margin-left:-1.840896pt;}
._0{margin-left:-0.936192pt;}
._1{width:1.236480pt;}
._3{width:2.364160pt;}
._5{width:3.440640pt;}
._9{width:41.600000pt;}
._1a{width:50.496000pt;}
._19{width:54.871040pt;}
._14{width:61.509120pt;}
._c{width:70.976000pt;}
._6{width:99.671040pt;}
._13{width:121.536000pt;}
._1b{width:142.635520pt;}
._10{width:165.568000pt;}
._e{width:186.880000pt;}
._a{width:188.672000pt;}
._7{width:200.879360pt;}
._b{width:216.879360pt;}
._22{width:239.595520pt;}
._20{width:281.290496pt;}
._8{width:282.240000pt;}
._1f{width:341.696000pt;}
._f{width:432.345600pt;}
._12{width:591.662080pt;}
._15{width:636.224000pt;}
._1c{width:652.505600pt;}
._17{width:684.224000pt;}
._16{width:693.120000pt;}
._18{width:748.224000pt;}
._4{width:752.000000pt;}
._26{width:753.536000pt;}
._d{width:805.463040pt;}
._1e{width:811.822080pt;}
._21{width:856.384000pt;}
._24{width:904.384000pt;}
._23{width:913.280000pt;}
._25{width:968.384000pt;}
._11{width:1025.067520pt;}
._1d{width:1245.227520pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.840000pt;}
.y1b{bottom:4.320000pt;}
.y105{bottom:5.120000pt;}
.ya5{bottom:5.920000pt;}
.yc0{bottom:7.840000pt;}
.ya6{bottom:11.360000pt;}
.yac{bottom:13.120000pt;}
.ya9{bottom:13.280000pt;}
.y81{bottom:15.680000pt;}
.y84{bottom:15.840000pt;}
.y99{bottom:18.880000pt;}
.yf1{bottom:21.280000pt;}
.y7e{bottom:22.240000pt;}
.yf3{bottom:30.560000pt;}
.yf7{bottom:30.720000pt;}
.y14{bottom:39.896000pt;}
.y95{bottom:40.640000pt;}
.y103{bottom:42.720000pt;}
.ya2{bottom:47.200000pt;}
.y107{bottom:49.440000pt;}
.ya0{bottom:51.680000pt;}
.y13{bottom:59.096000pt;}
.yec{bottom:81.280000pt;}
.yfd{bottom:81.920000pt;}
.yea{bottom:109.280000pt;}
.y61{bottom:110.560000pt;}
.y67{bottom:120.640000pt;}
.y32{bottom:124.480000pt;}
.y4c{bottom:128.960000pt;}
.y111{bottom:129.440000pt;}
.y135{bottom:134.560000pt;}
.yfc{bottom:136.320000pt;}
.y101{bottom:143.840000pt;}
.y9e{bottom:144.640000pt;}
.ycc{bottom:147.040000pt;}
.y60{bottom:147.360000pt;}
.ye9{bottom:148.480000pt;}
.y110{bottom:148.960000pt;}
.y66{bottom:159.840000pt;}
.y31{bottom:161.280000pt;}
.y100{bottom:162.880000pt;}
.y7c{bottom:163.520000pt;}
.ycb{bottom:165.440000pt;}
.y4b{bottom:165.760000pt;}
.ye8{bottom:168.000000pt;}
.y12{bottom:170.422400pt;}
.y123{bottom:171.040000pt;}
.y134{bottom:171.360000pt;}
.y11f{bottom:180.471867pt;}
.yff{bottom:181.280000pt;}
.y9d{bottom:181.440000pt;}
.yca{bottom:183.840000pt;}
.y5f{bottom:184.160000pt;}
.ye7{bottom:187.520000pt;}
.y122{bottom:189.440000pt;}
.y65{bottom:197.760000pt;}
.y30{bottom:198.080000pt;}
.yc8{bottom:199.040000pt;}
.yfe{bottom:199.680000pt;}
.y7b{bottom:200.320000pt;}
.y4a{bottom:202.560000pt;}
.y11{bottom:204.175360pt;}
.y11e{bottom:206.014667pt;}
.ye6{bottom:206.560000pt;}
.yc9{bottom:206.880000pt;}
.y121{bottom:207.840000pt;}
.y9c{bottom:218.240000pt;}
.y5e{bottom:220.960000pt;}
.y120{bottom:222.720000pt;}
.yc7{bottom:225.440000pt;}
.y133{bottom:227.040000pt;}
.y11d{bottom:231.557467pt;}
.y9b{bottom:233.440000pt;}
.y64{bottom:234.560000pt;}
.y2f{bottom:234.880000pt;}
.y7a{bottom:237.120000pt;}
.y10{bottom:237.928267pt;}
.y131{bottom:239.065600pt;}
.y49{bottom:239.360000pt;}
.y132{bottom:242.240000pt;}
.y106{bottom:242.400000pt;}
.ye5{bottom:243.040000pt;}
.yc5{bottom:252.000000pt;}
.y109{bottom:252.800000pt;}
.y5d{bottom:257.760000pt;}
.y143{bottom:258.596800pt;}
.yc6{bottom:259.840000pt;}
.ye4{bottom:261.440000pt;}
.y9a{bottom:263.680000pt;}
.y130{bottom:264.608400pt;}
.y2e{bottom:271.680000pt;}
.y108{bottom:272.320000pt;}
.y63{bottom:272.640000pt;}
.y79{bottom:273.920000pt;}
.y48{bottom:276.160000pt;}
.yc4{bottom:278.400000pt;}
.ye3{bottom:279.840000pt;}
.y102{bottom:284.000000pt;}
.y142{bottom:284.139600pt;}
.yc3{bottom:286.240000pt;}
.y12f{bottom:290.151200pt;}
.y98{bottom:294.080000pt;}
.y5c{bottom:294.560000pt;}
.y11b{bottom:295.506933pt;}
.ye2{bottom:298.240000pt;}
.yc1{bottom:304.960000pt;}
.y104{bottom:308.160000pt;}
.y2d{bottom:308.480000pt;}
.y141{bottom:309.682400pt;}
.y78{bottom:310.720000pt;}
.y62{bottom:311.840000pt;}
.yc2{bottom:312.800000pt;}
.y47{bottom:312.960000pt;}
.y112{bottom:314.338933pt;}
.ye1{bottom:316.640000pt;}
.y97{bottom:327.520000pt;}
.y5b{bottom:331.360000pt;}
.ybf{bottom:339.200000pt;}
.yf{bottom:344.320000pt;}
.y2c{bottom:345.280000pt;}
.yfb{bottom:347.040000pt;}
.y77{bottom:347.520000pt;}
.y113{bottom:348.946933pt;}
.y46{bottom:349.760000pt;}
.ye0{bottom:353.440000pt;}
.y12d{bottom:354.100667pt;}
.y94{bottom:357.760000pt;}
.ybd{bottom:357.920000pt;}
.ybe{bottom:365.760000pt;}
.yfa{bottom:366.720000pt;}
.y5a{bottom:368.160000pt;}
.ydf{bottom:371.840000pt;}
.ye{bottom:372.807040pt;}
.y124{bottom:372.932667pt;}
.y13f{bottom:373.632000pt;}
.y11c{bottom:377.283333pt;}
.y96{bottom:380.000000pt;}
.y2b{bottom:382.080000pt;}
.y114{bottom:383.554933pt;}
.y76{bottom:384.320000pt;}
.yf9{bottom:386.240000pt;}
.y45{bottom:386.560000pt;}
.yf6{bottom:389.120000pt;}
.yde{bottom:390.240000pt;}
.ybc{bottom:392.160000pt;}
.y136{bottom:392.464000pt;}
.yf8{bottom:400.640000pt;}
.y59{bottom:404.960000pt;}
.y125{bottom:407.540667pt;}
.ydd{bottom:408.640000pt;}
.yba{bottom:410.720000pt;}
.yd{bottom:411.840000pt;}
.y93{bottom:412.960000pt;}
.y115{bottom:418.162933pt;}
.ybb{bottom:418.720000pt;}
.y2a{bottom:418.880000pt;}
.y75{bottom:421.120000pt;}
.y44{bottom:423.360000pt;}
.y137{bottom:427.072000pt;}
.y12e{bottom:435.877067pt;}
.yb9{bottom:437.280000pt;}
.yc{bottom:440.327040pt;}
.y58{bottom:441.760000pt;}
.y126{bottom:442.148667pt;}
.y92{bottom:443.200000pt;}
.yb8{bottom:445.120000pt;}
.ydc{bottom:445.440000pt;}
.y116{bottom:452.770933pt;}
.y140{bottom:455.408267pt;}
.y29{bottom:455.680000pt;}
.y74{bottom:459.520000pt;}
.y43{bottom:460.160000pt;}
.y138{bottom:461.680000pt;}
.yf5{bottom:462.880000pt;}
.yb6{bottom:463.680000pt;}
.ydb{bottom:463.840000pt;}
.yb7{bottom:471.520000pt;}
.y91{bottom:473.600000pt;}
.y127{bottom:476.756667pt;}
.y68{bottom:478.240000pt;}
.y57{bottom:478.560000pt;}
.yb{bottom:479.360000pt;}
.yda{bottom:482.240000pt;}
.yd3{bottom:482.560000pt;}
.yf2{bottom:485.920000pt;}
.y117{bottom:487.378933pt;}
.yb4{bottom:490.240000pt;}
.y28{bottom:492.480000pt;}
.y139{bottom:496.288000pt;}
.y42{bottom:496.640000pt;}
.y53{bottom:496.960000pt;}
.yf4{bottom:497.440000pt;}
.yb5{bottom:498.080000pt;}
.yd9{bottom:500.640000pt;}
.y90{bottom:503.840000pt;}
.y128{bottom:511.364667pt;}
.ya{bottom:512.960000pt;}
.y56{bottom:515.360000pt;}
.yb2{bottom:516.640000pt;}
.yd8{bottom:519.040000pt;}
.yd2{bottom:519.360000pt;}
.y118{bottom:521.986933pt;}
.yb3{bottom:524.480000pt;}
.y27{bottom:529.280000pt;}
.y13a{bottom:530.896000pt;}
.y41{bottom:533.440000pt;}
.y52{bottom:533.760000pt;}
.y8f{bottom:534.080000pt;}
.y9{bottom:541.447040pt;}
.yb0{bottom:543.040000pt;}
.y129{bottom:545.972667pt;}
.yb1{bottom:551.040000pt;}
.y55{bottom:552.160000pt;}
.yf0{bottom:554.560000pt;}
.yd7{bottom:555.840000pt;}
.yd1{bottom:556.160000pt;}
.y119{bottom:556.594933pt;}
.y13b{bottom:565.504000pt;}
.y26{bottom:566.080000pt;}
.yaf{bottom:569.600000pt;}
.y40{bottom:570.560000pt;}
.y8e{bottom:570.880000pt;}
.yd6{bottom:574.240000pt;}
.yeb{bottom:578.560000pt;}
.y8{bottom:580.480000pt;}
.y12a{bottom:580.580667pt;}
.y54{bottom:588.640000pt;}
.y72{bottom:588.960000pt;}
.y11a{bottom:591.202933pt;}
.yd5{bottom:592.640000pt;}
.yd0{bottom:592.960000pt;}
.yad{bottom:596.000000pt;}
.y13c{bottom:600.112000pt;}
.y8d{bottom:601.120000pt;}
.yef{bottom:601.440000pt;}
.y25{bottom:602.880000pt;}
.yae{bottom:603.840000pt;}
.y10f{bottom:604.960000pt;}
.y3f{bottom:607.040000pt;}
.y51{bottom:607.360000pt;}
.y7{bottom:608.967040pt;}
.y12b{bottom:615.188667pt;}
.yee{bottom:620.800000pt;}
.yab{bottom:622.560000pt;}
.y10e{bottom:624.480000pt;}
.y71{bottom:625.760000pt;}
.yd4{bottom:629.440000pt;}
.ycf{bottom:629.760000pt;}
.yaa{bottom:630.400000pt;}
.y8c{bottom:631.360000pt;}
.y13d{bottom:634.720000pt;}
.y24{bottom:639.520000pt;}
.yed{bottom:640.320000pt;}
.y73{bottom:643.840000pt;}
.y10d{bottom:644.000000pt;}
.y3e{bottom:644.160000pt;}
.y6{bottom:647.996533pt;}
.ya8{bottom:648.960000pt;}
.y12c{bottom:649.796667pt;}
.ya7{bottom:656.800000pt;}
.y8b{bottom:661.600000pt;}
.y70{bottom:662.560000pt;}
.y10c{bottom:663.520000pt;}
.yce{bottom:666.240000pt;}
.y13e{bottom:669.328000pt;}
.y23{bottom:676.000000pt;}
.ya4{bottom:676.800000pt;}
.y3d{bottom:680.960000pt;}
.y10b{bottom:683.040000pt;}
.y8a{bottom:692.000000pt;}
.y6f{bottom:699.360000pt;}
.y10a{bottom:702.720000pt;}
.ycd{bottom:703.040000pt;}
.ya3{bottom:703.360000pt;}
.y5{bottom:710.087040pt;}
.y3c{bottom:717.760000pt;}
.y89{bottom:722.240000pt;}
.ya1{bottom:726.560000pt;}
.y9f{bottom:731.040000pt;}
.y6e{bottom:736.160000pt;}
.y4{bottom:743.876533pt;}
.y22{bottom:750.080000pt;}
.y88{bottom:752.480000pt;}
.y3b{bottom:754.560000pt;}
.y6d{bottom:772.960000pt;}
.y87{bottom:782.720000pt;}
.y21{bottom:788.000000pt;}
.y3a{bottom:791.360000pt;}
.y4e{bottom:809.440000pt;}
.y6c{bottom:809.760000pt;}
.y3{bottom:810.602240pt;}
.y86{bottom:812.960000pt;}
.y20{bottom:824.800000pt;}
.y4d{bottom:827.840000pt;}
.y39{bottom:828.160000pt;}
.y2{bottom:844.355200pt;}
.y6b{bottom:846.560000pt;}
.y85{bottom:849.760000pt;}
.y1f{bottom:862.720000pt;}
.y38{bottom:864.960000pt;}
.y83{bottom:880.000000pt;}
.y6a{bottom:883.360000pt;}
.y1e{bottom:900.640000pt;}
.y37{bottom:901.760000pt;}
.y82{bottom:910.400000pt;}
.y69{bottom:919.840000pt;}
.y1{bottom:937.297333pt;}
.y1d{bottom:937.440000pt;}
.y50{bottom:938.240000pt;}
.y36{bottom:938.560000pt;}
.y80{bottom:940.640000pt;}
.y7d{bottom:970.880000pt;}
.y4f{bottom:975.040000pt;}
.y35{bottom:975.360000pt;}
.y19{bottom:996.929333pt;}
.y1c{bottom:1011.840000pt;}
.y34{bottom:1012.160000pt;}
.y18{bottom:1016.129333pt;}
.y17{bottom:1035.329333pt;}
.y16{bottom:1054.529333pt;}
.y1a{bottom:1056.000000pt;}
.y33{bottom:1060.320000pt;}
.y15{bottom:1073.729333pt;}
.h15{height:19.518667pt;}
.h8{height:19.520000pt;}
.h16{height:22.720000pt;}
.h19{height:26.400000pt;}
.h18{height:26.560000pt;}
.h1b{height:26.561333pt;}
.hf{height:30.240000pt;}
.h10{height:30.401333pt;}
.h12{height:33.438667pt;}
.h5{height:36.667500pt;}
.h4{height:36.681367pt;}
.he{height:36.798667pt;}
.h1d{height:38.400000pt;}
.h22{height:42.656250pt;}
.h7{height:45.568000pt;}
.h9{height:45.937500pt;}
.h1e{height:47.040000pt;}
.h1f{height:47.200000pt;}
.h17{height:52.134375pt;}
.h11{height:55.200000pt;}
.h3{height:57.787500pt;}
.h20{height:59.200000pt;}
.h2{height:59.340000pt;}
.h6{height:59.340213pt;}
.hc{height:62.781250pt;}
.hb{height:62.812500pt;}
.h1a{height:63.220000pt;}
.ha{height:64.500000pt;}
.hd{height:66.404375pt;}
.h21{height:66.560000pt;}
.h1c{height:98.400000pt;}
.h14{height:793.333333pt;}
.h13{height:793.440000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:8.160000pt;}
.w3{width:16.160000pt;}
.wc{width:16.320000pt;}
.w11{width:18.401333pt;}
.w15{width:18.560000pt;}
.w8{width:49.760000pt;}
.w17{width:50.400000pt;}
.w5{width:53.760000pt;}
.w18{width:70.400000pt;}
.w13{width:75.520000pt;}
.w6{width:75.521333pt;}
.w9{width:79.361333pt;}
.w7{width:80.320000pt;}
.w10{width:86.560000pt;}
.we{width:86.718667pt;}
.wf{width:86.720000pt;}
.w4{width:182.560000pt;}
.w1a{width:244.000000pt;}
.w19{width:244.001333pt;}
.w12{width:291.041333pt;}
.w16{width:346.080000pt;}
.wd{width:366.560000pt;}
.w14{width:542.400000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.wb{width:1122.666667pt;}
.wa{width:1122.720000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x34{left:17.600000pt;}
.x14{left:19.680000pt;}
.x13{left:24.320000pt;}
.x17{left:25.600000pt;}
.x5{left:39.308000pt;}
.x33{left:74.560000pt;}
.x35{left:92.160000pt;}
.x18{left:94.560000pt;}
.x21{left:101.760000pt;}
.x4{left:104.412000pt;}
.x1{left:120.000000pt;}
.x15{left:127.200000pt;}
.x2{left:132.968267pt;}
.x7{left:144.000000pt;}
.x3a{left:152.490933pt;}
.x9{left:162.240000pt;}
.x2c{left:164.960000pt;}
.x8{left:168.000000pt;}
.x22{left:170.080000pt;}
.x30{left:172.160000pt;}
.x24{left:177.280000pt;}
.x3c{left:207.698933pt;}
.x3b{left:219.194933pt;}
.x3{left:227.043840pt;}
.x26{left:289.600000pt;}
.x10{left:302.560000pt;}
.xd{left:306.880000pt;}
.xb{left:313.920000pt;}
.xc{left:316.640000pt;}
.x32{left:322.560000pt;}
.x16{left:352.480000pt;}
.x11{left:356.320000pt;}
.x36{left:368.000000pt;}
.x38{left:373.280000pt;}
.x37{left:385.600000pt;}
.x39{left:390.880000pt;}
.xe{left:420.640000pt;}
.x12{left:431.840000pt;}
.x1a{left:461.120000pt;}
.x23{left:468.320000pt;}
.x2e{left:511.040000pt;}
.x2d{left:518.240000pt;}
.x1b{left:547.840000pt;}
.x2f{left:586.560000pt;}
.x3d{left:625.120000pt;}
.x1c{left:634.560000pt;}
.x27{left:636.960000pt;}
.xa{left:657.120000pt;}
.x6{left:665.120000pt;}
.x1d{left:721.120000pt;}
.x28{left:723.520000pt;}
.x1e{left:739.520000pt;}
.x29{left:742.080000pt;}
.x25{left:746.720000pt;}
.x31{left:749.120000pt;}
.x1f{left:826.240000pt;}
.x2a{left:828.640000pt;}
.x20{left:912.960000pt;}
.x2b{left:915.360000pt;}
.x19{left:1011.840000pt;}
}




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