
    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_2196b6b3d87b820c940f00cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_779bc1b2e572b356dd624448.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.071777;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_73a6cff3110bdc9a4e862e41.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_be20ee91a49af1e5ca5ebf08.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061523;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_b27c8079f6c6776399799077.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001953;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_9e2ffa67a61080c5420c806a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_6966e54fb0485f5ccffcb561.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;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_ead4d3ddf77a52ab3b35c474.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_e515260ca61dc3d96068a5cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;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_7c5fee4ec4b7ed275f047e69.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766602;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.272400px;}
.lsf{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.187200px;}
.ls1e{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.097800px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls18{letter-spacing:0.022320px;}
.ls1b{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.319680px;}
.lsa{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.532800px;}
.ls1c{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.622080px;}
.lse{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.ls11{letter-spacing:0.936000px;}
.lsb{letter-spacing:1.728000px;}
.ls1d{letter-spacing:3.888000px;}
.ls17{letter-spacing:9.534240px;}
.ls1a{letter-spacing:11.808000px;}
.ls10{letter-spacing:13.248000px;}
.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;}
}
.wsa{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.ws8{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.506440px;}
.ws2{word-spacing:-13.879200px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.049400px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-1.059840px;}
._0{width:1.075680px;}
._1{width:2.348400px;}
._6{width:4.320000px;}
._c{width:5.472000px;}
._b{width:6.768000px;}
._a{width:7.992000px;}
._11{width:9.079680px;}
._4{width:10.200000px;}
._3{width:11.664000px;}
._5{width:12.776640px;}
._1d{width:13.901280px;}
._12{width:14.904000px;}
._1e{width:16.151520px;}
._16{width:17.332320px;}
._13{width:18.432000px;}
._1a{width:19.947360px;}
._1b{width:21.024000px;}
._1c{width:22.040640px;}
._e{width:23.143680px;}
._d{width:24.480000px;}
._f{width:25.920000px;}
._18{width:26.928000px;}
._19{width:28.152000px;}
._10{width:29.160000px;}
._17{width:30.192000px;}
._8{width:31.800000px;}
._7{width:33.048000px;}
._14{width:34.056000px;}
._15{width:35.652000px;}
._20{width:37.728000px;}
._1f{width:41.256000px;}
._9{width:47.088000px;}
._22{width:59.256000px;}
._23{width:63.603840px;}
._21{width:2287.231440px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y102{bottom:4.845000px;}
.yeb{bottom:4.860000px;}
.yf8{bottom:5.040000px;}
.y121{bottom:5.580000px;}
.y119{bottom:5.760000px;}
.y103{bottom:5.790000px;}
.y114{bottom:5.940000px;}
.yf0{bottom:6.480000px;}
.y100{bottom:6.660000px;}
.y10a{bottom:7.020000px;}
.y2{bottom:7.380000px;}
.y11f{bottom:8.280000px;}
.yf3{bottom:8.640000px;}
.yfd{bottom:8.820000px;}
.y107{bottom:11.340000px;}
.y10e{bottom:15.660000px;}
.y112{bottom:16.920000px;}
.yf1{bottom:17.460000px;}
.y11d{bottom:17.640000px;}
.y10b{bottom:18.000000px;}
.y120{bottom:19.260000px;}
.yfe{bottom:19.800000px;}
.y113{bottom:27.945000px;}
.yef{bottom:28.440000px;}
.y11c{bottom:28.620000px;}
.y109{bottom:28.980000px;}
.y117{bottom:29.340000px;}
.y11e{bottom:30.240000px;}
.yfc{bottom:30.780000px;}
.y106{bottom:33.300000px;}
.y116{bottom:51.300000px;}
.y105{bottom:55.290000px;}
.y5{bottom:56.196000px;}
.y4{bottom:73.836000px;}
.y12e{bottom:91.476000px;}
.y35{bottom:110.196000px;}
.y12d{bottom:111.456000px;}
.y34{bottom:117.756000px;}
.y152{bottom:119.016000px;}
.y56{bottom:126.216000px;}
.y97{bottom:128.556000px;}
.y33{bottom:128.916000px;}
.y168{bottom:133.956000px;}
.y7a{bottom:134.136000px;}
.ya9{bottom:136.116000px;}
.y132{bottom:140.256000px;}
.y151{bottom:140.976000px;}
.y6e{bottom:141.156000px;}
.y12c{bottom:144.396000px;}
.y96{bottom:146.916000px;}
.yda{bottom:147.276000px;}
.y84{bottom:148.176000px;}
.ybc{bottom:154.470000px;}
.y167{bottom:155.910000px;}
.ye6{bottom:158.250000px;}
.y55{bottom:159.150000px;}
.y131{bottom:162.210000px;}
.y150{bottom:162.930000px;}
.y95{bottom:165.090000px;}
.ybb{bottom:165.630000px;}
.y79{bottom:167.070000px;}
.y83{bottom:170.130000px;}
.y32{bottom:170.310000px;}
.y94{bottom:172.650000px;}
.y6d{bottom:174.090000px;}
.y93{bottom:183.810000px;}
.y17c{bottom:189.930000px;}
.y54{bottom:192.090000px;}
.y31{bottom:192.270000px;}
.y166{bottom:192.990000px;}
.y12b{bottom:195.330000px;}
.y130{bottom:199.110000px;}
.y14f{bottom:199.830000px;}
.ye5{bottom:204.510000px;}
.yba{bottom:206.850000px;}
.y6c{bottom:207.210000px;}
.y17b{bottom:209.010000px;}
.y85{bottom:210.090000px;}
.y30{bottom:214.230000px;}
.ya8{bottom:216.570000px;}
.y12f{bottom:221.070000px;}
.y14e{bottom:221.790000px;}
.y92{bottom:222.150000px;}
.y53{bottom:225.210000px;}
.y12a{bottom:228.270000px;}
.y78{bottom:229.170000px;}
.y165{bottom:229.890000px;}
.y17a{bottom:230.970000px;}
.y2f{bottom:236.190000px;}
.yb9{bottom:239.790000px;}
.y6b{bottom:240.150000px;}
.y82{bottom:243.210000px;}
.y77{bottom:251.130000px;}
.y164{bottom:251.850000px;}
.y179{bottom:252.930000px;}
.y91{bottom:255.090000px;}
.y2e{bottom:258.150000px;}
.y14d{bottom:258.870000px;}
.ycb{bottom:260.130000px;}
.y129{bottom:261.390000px;}
.y101{bottom:266.985000px;}
.ya7{bottom:267.510000px;}
.ycc{bottom:268.410000px;}
.yb8{bottom:272.775000px;}
.y6a{bottom:273.135000px;}
.y178{bottom:274.935000px;}
.y81{bottom:276.195000px;}
.yd8{bottom:278.175000px;}
.y2d{bottom:280.155000px;}
.y14c{bottom:280.875000px;}
.y88{bottom:284.475000px;}
.yd9{bottom:286.455000px;}
.y163{bottom:288.975000px;}
.y52{bottom:291.135000px;}
.yff{bottom:291.495000px;}
.yca{bottom:293.115000px;}
.y128{bottom:294.375000px;}
.y177{bottom:296.895000px;}
.ya6{bottom:300.495000px;}
.y2c{bottom:302.115000px;}
.yb7{bottom:305.895000px;}
.y69{bottom:306.075000px;}
.y80{bottom:309.135000px;}
.y162{bottom:310.935000px;}
.yd7{bottom:311.115000px;}
.y76{bottom:313.095000px;}
.y14b{bottom:317.775000px;}
.yfb{bottom:317.955000px;}
.y176{bottom:318.855000px;}
.y2b{bottom:324.075000px;}
.yc9{bottom:326.055000px;}
.y127{bottom:327.315000px;}
.ya5{bottom:333.435000px;}
.y75{bottom:335.055000px;}
.yb6{bottom:338.835000px;}
.y68{bottom:339.015000px;}
.y7f{bottom:342.075000px;}
.yd6{bottom:344.055000px;}
.y2a{bottom:346.035000px;}
.y161{bottom:347.835000px;}
.y14a{bottom:354.855000px;}
.y74{bottom:357.015000px;}
.yc8{bottom:358.995000px;}
.y126{bottom:360.255000px;}
.ya4{bottom:366.375000px;}
.y29{bottom:367.995000px;}
.y160{bottom:369.795000px;}
.yfa{bottom:370.515000px;}
.yb5{bottom:371.775000px;}
.y67{bottom:371.955000px;}
.y51{bottom:375.015000px;}
.y149{bottom:376.815000px;}
.yd5{bottom:376.995000px;}
.y28{bottom:389.955000px;}
.yc7{bottom:391.935000px;}
.y125{bottom:393.195000px;}
.ya2{bottom:399.315000px;}
.yb4{bottom:404.715000px;}
.y90{bottom:404.895000px;}
.y15f{bottom:406.875000px;}
.ya3{bottom:407.595000px;}
.y50{bottom:407.955000px;}
.yd4{bottom:409.935000px;}
.y27{bottom:411.915000px;}
.y148{bottom:413.715000px;}
.yf9{bottom:418.575000px;}
.y66{bottom:422.895000px;}
.yc6{bottom:424.875000px;}
.y124{bottom:426.135000px;}
.ye4{bottom:429.555000px;}
.ya1{bottom:432.435000px;}
.y26{bottom:433.875000px;}
.y147{bottom:435.675000px;}
.yb2{bottom:437.655000px;}
.y8f{bottom:437.835000px;}
.y4f{bottom:440.895000px;}
.yd3{bottom:442.875000px;}
.y15e{bottom:443.775000px;}
.yb3{bottom:445.935000px;}
.y65{bottom:455.835000px;}
.y25{bottom:456.015000px;}
.yc5{bottom:457.815000px;}
.y15d{bottom:465.735000px;}
.yb1{bottom:470.595000px;}
.y8e{bottom:470.775000px;}
.yf7{bottom:472.755000px;}
.y4e{bottom:473.835000px;}
.yd2{bottom:475.815000px;}
.y123{bottom:477.075000px;}
.y24{bottom:477.975000px;}
.ye3{bottom:480.495000px;}
.ya0{bottom:483.375000px;}
.y64{bottom:488.775000px;}
.yc4{bottom:490.935000px;}
.y9d{bottom:491.835000px;}
.y146{bottom:494.715000px;}
.yf6{bottom:497.235000px;}
.y23{bottom:499.935000px;}
.y15c{bottom:502.635000px;}
.yb0{bottom:503.535000px;}
.y8d{bottom:503.715000px;}
.y4d{bottom:506.775000px;}
.yd1{bottom:508.935000px;}
.ye2{bottom:513.435000px;}
.yf5{bottom:521.535000px;}
.y63{bottom:521.715000px;}
.y22{bottom:521.895000px;}
.yc3{bottom:523.875000px;}
.y15b{bottom:524.595000px;}
.y7e{bottom:524.775000px;}
.y122{bottom:528.015000px;}
.y9f{bottom:529.455000px;}
.y145{bottom:531.615000px;}
.yae{bottom:536.475000px;}
.y8c{bottom:536.835000px;}
.y4c{bottom:539.715000px;}
.yd0{bottom:541.875000px;}
.y21{bottom:543.855000px;}
.yaf{bottom:544.755000px;}
.yf4{bottom:546.015000px;}
.ye1{bottom:546.375000px;}
.y15a{bottom:546.735000px;}
.y62{bottom:554.835000px;}
.yc1{bottom:556.845000px;}
.y7d{bottom:557.745000px;}
.yc2{bottom:565.125000px;}
.y20{bottom:565.845000px;}
.y144{bottom:568.725000px;}
.yad{bottom:569.445000px;}
.yf2{bottom:570.345000px;}
.y4b{bottom:572.865000px;}
.ycf{bottom:574.845000px;}
.y175{bottom:576.645000px;}
.ye0{bottom:579.345000px;}
.y159{bottom:583.665000px;}
.y1f{bottom:587.805000px;}
.yc0{bottom:589.785000px;}
.y7c{bottom:590.865000px;}
.y174{bottom:598.605000px;}
.yee{bottom:600.585000px;}
.yac{bottom:602.565000px;}
.y143{bottom:605.625000px;}
.y4a{bottom:605.805000px;}
.y1e{bottom:609.765000px;}
.ydf{bottom:612.465000px;}
.y61{bottom:620.745000px;}
.y11b{bottom:621.645000px;}
.ybf{bottom:622.725000px;}
.y73{bottom:623.805000px;}
.yce{bottom:625.785000px;}
.y142{bottom:627.585000px;}
.y1d{bottom:631.725000px;}
.y173{bottom:635.685000px;}
.y49{bottom:638.745000px;}
.y158{bottom:642.525000px;}
.yde{bottom:645.405000px;}
.yed{bottom:648.645000px;}
.yab{bottom:653.505000px;}
.y1c{bottom:653.685000px;}
.y72{bottom:656.745000px;}
.y141{bottom:664.485000px;}
.y11a{bottom:669.705000px;}
.y48{bottom:671.685000px;}
.ycd{bottom:671.865000px;}
.y172{bottom:672.585000px;}
.yec{bottom:672.945000px;}
.ybe{bottom:673.665000px;}
.y1b{bottom:675.645000px;}
.ydd{bottom:678.345000px;}
.y157{bottom:679.605000px;}
.y140{bottom:686.625000px;}
.y71{bottom:689.685000px;}
.yea{bottom:697.425000px;}
.y1a{bottom:697.605000px;}
.yaa{bottom:699.585000px;}
.y156{bottom:701.565000px;}
.y47{bottom:704.625000px;}
.y9c{bottom:707.685000px;}
.y171{bottom:709.485000px;}
.y118{bottom:716.505000px;}
.y19{bottom:719.565000px;}
.ybd{bottom:719.745000px;}
.y60{bottom:722.625000px;}
.y13f{bottom:723.525000px;}
.ydc{bottom:729.285000px;}
.y170{bottom:731.625000px;}
.y87{bottom:737.565000px;}
.y9b{bottom:740.625000px;}
.y115{bottom:740.985000px;}
.y18{bottom:741.525000px;}
.y13e{bottom:745.485000px;}
.y46{bottom:755.565000px;}
.y155{bottom:760.425000px;}
.y17{bottom:763.665000px;}
.y16f{bottom:768.525000px;}
.y8b{bottom:770.505000px;}
.y9a{bottom:773.565000px;}
.ydb{bottom:775.365000px;}
.y13d{bottom:782.385000px;}
.y16{bottom:785.625000px;}
.y5f{bottom:788.505000px;}
.y16e{bottom:790.485000px;}
.y8a{bottom:803.445000px;}
.y45{bottom:806.505000px;}
.y15{bottom:807.585000px;}
.y16d{bottom:812.445000px;}
.y111{bottom:812.625000px;}
.ye9{bottom:814.785000px;}
.y13c{bottom:819.465000px;}
.y5e{bottom:821.445000px;}
.y44{bottom:828.465000px;}
.y14{bottom:829.545000px;}
.y16c{bottom:834.405000px;}
.y99{bottom:839.490000px;}
.y13b{bottom:841.470000px;}
.y43{bottom:850.470000px;}
.y13{bottom:851.550000px;}
.y5d{bottom:854.430000px;}
.y16b{bottom:856.410000px;}
.y110{bottom:859.470000px;}
.y42{bottom:872.430000px;}
.y12{bottom:873.510000px;}
.y13a{bottom:878.370000px;}
.ye8{bottom:880.710000px;}
.y5c{bottom:887.550000px;}
.y16a{bottom:893.490000px;}
.y41{bottom:894.390000px;}
.y11{bottom:895.290000px;}
.y139{bottom:900.330000px;}
.y98{bottom:905.550000px;}
.y10f{bottom:907.530000px;}
.y10{bottom:915.450000px;}
.y40{bottom:916.530000px;}
.y5b{bottom:920.490000px;}
.y154{bottom:922.290000px;}
.yf{bottom:935.790000px;}
.y138{bottom:937.410000px;}
.y3f{bottom:938.490000px;}
.y5a{bottom:953.430000px;}
.y10d{bottom:955.590000px;}
.ye{bottom:957.750000px;}
.y137{bottom:959.370000px;}
.y3e{bottom:960.450000px;}
.y7b{bottom:971.430000px;}
.y169{bottom:974.310000px;}
.yd{bottom:979.710000px;}
.y136{bottom:981.330000px;}
.y3d{bottom:982.410000px;}
.y59{bottom:986.370000px;}
.y153{bottom:996.270000px;}
.y10c{bottom:1000.050000px;}
.yb{bottom:1001.670000px;}
.y3c{bottom:1004.370000px;}
.yc{bottom:1009.950000px;}
.y135{bottom:1018.230000px;}
.y70{bottom:1019.310000px;}
.ya{bottom:1023.630000px;}
.y108{bottom:1024.530000px;}
.y3b{bottom:1026.330000px;}
.y58{bottom:1037.310000px;}
.y9{bottom:1046.130000px;}
.y3a{bottom:1048.290000px;}
.y6f{bottom:1052.250000px;}
.y134{bottom:1055.310000px;}
.y39{bottom:1070.250000px;}
.y104{bottom:1073.670000px;}
.y8{bottom:1074.390000px;}
.y133{bottom:1077.270000px;}
.ye7{bottom:1078.530000px;}
.y86{bottom:1085.190000px;}
.y38{bottom:1092.210000px;}
.y7{bottom:1102.470000px;}
.y57{bottom:1103.190000px;}
.y89{bottom:1111.470000px;}
.y37{bottom:1114.170000px;}
.y6{bottom:1130.580000px;}
.y36{bottom:1136.160000px;}
.y9e{bottom:1144.440000px;}
.y3{bottom:1157.760000px;}
.y1{bottom:1182.780000px;}
.h2{height:21.600000px;}
.h14{height:23.565000px;}
.hf{height:23.580000px;}
.h19{height:23.601000px;}
.h12{height:23.610000px;}
.h13{height:23.745000px;}
.h20{height:23.760000px;}
.h18{height:25.725000px;}
.h15{height:29.145000px;}
.h11{height:29.520000px;}
.hd{height:34.001016px;}
.hb{height:42.186445px;}
.h1c{height:43.725000px;}
.h21{height:46.080000px;}
.h1e{height:46.102500px;}
.h1d{height:47.145000px;}
.h16{height:47.325000px;}
.h10{height:47.340000px;}
.h1b{height:48.405000px;}
.h22{height:50.580000px;}
.h4{height:50.976914px;}
.h17{height:51.825000px;}
.h3{height:51.998203px;}
.he{height:52.260820px;}
.hc{height:57.927656px;}
.h8{height:59.378906px;}
.h9{height:62.964844px;}
.h1f{height:70.920000px;}
.h5{height:74.004654px;}
.h1a{height:78.870000px;}
.h6{height:81.685898px;}
.h7{height:83.322422px;}
.ha{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:85.125000px;}
.w7{width:105.696000px;}
.w9{width:106.056000px;}
.w6{width:275.419500px;}
.wa{width:275.955000px;}
.w8{width:276.315000px;}
.w2{width:609.030000px;}
.w5{width:658.170000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:5.029500px;}
.x4{left:6.840000px;}
.x43{left:21.240000px;}
.x2{left:50.569500px;}
.x41{left:86.383500px;}
.x1{left:97.786500px;}
.x5{left:106.416000px;}
.x45{left:109.245000px;}
.x14{left:111.276000px;}
.x2a{left:114.876000px;}
.x30{left:116.136000px;}
.x3f{left:117.406500px;}
.x9{left:124.416000px;}
.x11{left:127.116000px;}
.x3e{left:136.836000px;}
.x7{left:137.916000px;}
.x35{left:142.954125px;}
.x15{left:148.896000px;}
.x21{left:154.470000px;}
.x36{left:189.928125px;}
.x37{left:202.170000px;}
.x8{left:219.270000px;}
.x40{left:256.528500px;}
.x12{left:274.170000px;}
.x33{left:304.455000px;}
.x1e{left:314.535000px;}
.x13{left:322.455000px;}
.x24{left:330.915000px;}
.xf{left:332.535000px;}
.x20{left:347.835000px;}
.x47{left:351.075000px;}
.xc{left:372.315000px;}
.x18{left:373.573125px;}
.x19{left:379.695000px;}
.x42{left:393.195000px;}
.x10{left:394.275000px;}
.xa{left:407.055000px;}
.x16{left:409.033125px;}
.x17{left:415.155000px;}
.x22{left:419.293125px;}
.x23{left:425.415000px;}
.x3c{left:431.533125px;}
.x28{left:435.133125px;}
.x29{left:441.255000px;}
.x3d{left:443.775000px;}
.xb{left:446.655000px;}
.x44{left:499.260000px;}
.xd{left:514.723125px;}
.xe{left:520.845000px;}
.x38{left:536.685000px;}
.x39{left:570.885000px;}
.x1c{left:571.963125px;}
.x1d{left:578.085000px;}
.x3a{left:580.603125px;}
.x25{left:587.265000px;}
.x3b{left:592.845000px;}
.x31{left:602.383125px;}
.x2b{left:606.525000px;}
.x32{left:614.625000px;}
.x1f{left:619.845000px;}
.x2e{left:645.763125px;}
.x2f{left:658.005000px;}
.x34{left:660.525000px;}
.x2c{left:701.968125px;}
.x26{left:706.648125px;}
.x3{left:710.250000px;}
.x27{left:712.770000px;}
.x2d{left:714.210000px;}
.x1a{left:776.488125px;}
.x1b{left:782.610000px;}
.x6{left:786.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.242133pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.166400pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.086933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls18{letter-spacing:0.019840pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.284160pt;}
.lsa{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.473600pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.552960pt;}
.lse{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.ls11{letter-spacing:0.832000pt;}
.lsb{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:3.456000pt;}
.ls17{letter-spacing:8.474880pt;}
.ls1a{letter-spacing:10.496000pt;}
.ls10{letter-spacing:11.776000pt;}
.wsa{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.306880pt;}
.ws4{word-spacing:-12.894613pt;}
.ws2{word-spacing:-12.337067pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.599467pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-0.942080pt;}
._0{width:0.956160pt;}
._1{width:2.087467pt;}
._6{width:3.840000pt;}
._c{width:4.864000pt;}
._b{width:6.016000pt;}
._a{width:7.104000pt;}
._11{width:8.070827pt;}
._4{width:9.066667pt;}
._3{width:10.368000pt;}
._5{width:11.357013pt;}
._1d{width:12.356693pt;}
._12{width:13.248000pt;}
._1e{width:14.356907pt;}
._16{width:15.406507pt;}
._13{width:16.384000pt;}
._1a{width:17.730987pt;}
._1b{width:18.688000pt;}
._1c{width:19.591680pt;}
._e{width:20.572160pt;}
._d{width:21.760000pt;}
._f{width:23.040000pt;}
._18{width:23.936000pt;}
._19{width:25.024000pt;}
._10{width:25.920000pt;}
._17{width:26.837333pt;}
._8{width:28.266667pt;}
._7{width:29.376000pt;}
._14{width:30.272000pt;}
._15{width:31.690667pt;}
._20{width:33.536000pt;}
._1f{width:36.672000pt;}
._9{width:41.856000pt;}
._22{width:52.672000pt;}
._23{width:56.536747pt;}
._21{width:2033.094613pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:4.306667pt;}
.yeb{bottom:4.320000pt;}
.yf8{bottom:4.480000pt;}
.y121{bottom:4.960000pt;}
.y119{bottom:5.120000pt;}
.y103{bottom:5.146667pt;}
.y114{bottom:5.280000pt;}
.yf0{bottom:5.760000pt;}
.y100{bottom:5.920000pt;}
.y10a{bottom:6.240000pt;}
.y2{bottom:6.560000pt;}
.y11f{bottom:7.360000pt;}
.yf3{bottom:7.680000pt;}
.yfd{bottom:7.840000pt;}
.y107{bottom:10.080000pt;}
.y10e{bottom:13.920000pt;}
.y112{bottom:15.040000pt;}
.yf1{bottom:15.520000pt;}
.y11d{bottom:15.680000pt;}
.y10b{bottom:16.000000pt;}
.y120{bottom:17.120000pt;}
.yfe{bottom:17.600000pt;}
.y113{bottom:24.840000pt;}
.yef{bottom:25.280000pt;}
.y11c{bottom:25.440000pt;}
.y109{bottom:25.760000pt;}
.y117{bottom:26.080000pt;}
.y11e{bottom:26.880000pt;}
.yfc{bottom:27.360000pt;}
.y106{bottom:29.600000pt;}
.y116{bottom:45.600000pt;}
.y105{bottom:49.146667pt;}
.y5{bottom:49.952000pt;}
.y4{bottom:65.632000pt;}
.y12e{bottom:81.312000pt;}
.y35{bottom:97.952000pt;}
.y12d{bottom:99.072000pt;}
.y34{bottom:104.672000pt;}
.y152{bottom:105.792000pt;}
.y56{bottom:112.192000pt;}
.y97{bottom:114.272000pt;}
.y33{bottom:114.592000pt;}
.y168{bottom:119.072000pt;}
.y7a{bottom:119.232000pt;}
.ya9{bottom:120.992000pt;}
.y132{bottom:124.672000pt;}
.y151{bottom:125.312000pt;}
.y6e{bottom:125.472000pt;}
.y12c{bottom:128.352000pt;}
.y96{bottom:130.592000pt;}
.yda{bottom:130.912000pt;}
.y84{bottom:131.712000pt;}
.ybc{bottom:137.306667pt;}
.y167{bottom:138.586667pt;}
.ye6{bottom:140.666667pt;}
.y55{bottom:141.466667pt;}
.y131{bottom:144.186667pt;}
.y150{bottom:144.826667pt;}
.y95{bottom:146.746667pt;}
.ybb{bottom:147.226667pt;}
.y79{bottom:148.506667pt;}
.y83{bottom:151.226667pt;}
.y32{bottom:151.386667pt;}
.y94{bottom:153.466667pt;}
.y6d{bottom:154.746667pt;}
.y93{bottom:163.386667pt;}
.y17c{bottom:168.826667pt;}
.y54{bottom:170.746667pt;}
.y31{bottom:170.906667pt;}
.y166{bottom:171.546667pt;}
.y12b{bottom:173.626667pt;}
.y130{bottom:176.986667pt;}
.y14f{bottom:177.626667pt;}
.ye5{bottom:181.786667pt;}
.yba{bottom:183.866667pt;}
.y6c{bottom:184.186667pt;}
.y17b{bottom:185.786667pt;}
.y85{bottom:186.746667pt;}
.y30{bottom:190.426667pt;}
.ya8{bottom:192.506667pt;}
.y12f{bottom:196.506667pt;}
.y14e{bottom:197.146667pt;}
.y92{bottom:197.466667pt;}
.y53{bottom:200.186667pt;}
.y12a{bottom:202.906667pt;}
.y78{bottom:203.706667pt;}
.y165{bottom:204.346667pt;}
.y17a{bottom:205.306667pt;}
.y2f{bottom:209.946667pt;}
.yb9{bottom:213.146667pt;}
.y6b{bottom:213.466667pt;}
.y82{bottom:216.186667pt;}
.y77{bottom:223.226667pt;}
.y164{bottom:223.866667pt;}
.y179{bottom:224.826667pt;}
.y91{bottom:226.746667pt;}
.y2e{bottom:229.466667pt;}
.y14d{bottom:230.106667pt;}
.ycb{bottom:231.226667pt;}
.y129{bottom:232.346667pt;}
.y101{bottom:237.320000pt;}
.ya7{bottom:237.786667pt;}
.ycc{bottom:238.586667pt;}
.yb8{bottom:242.466667pt;}
.y6a{bottom:242.786667pt;}
.y178{bottom:244.386667pt;}
.y81{bottom:245.506667pt;}
.yd8{bottom:247.266667pt;}
.y2d{bottom:249.026667pt;}
.y14c{bottom:249.666667pt;}
.y88{bottom:252.866667pt;}
.yd9{bottom:254.626667pt;}
.y163{bottom:256.866667pt;}
.y52{bottom:258.786667pt;}
.yff{bottom:259.106667pt;}
.yca{bottom:260.546667pt;}
.y128{bottom:261.666667pt;}
.y177{bottom:263.906667pt;}
.ya6{bottom:267.106667pt;}
.y2c{bottom:268.546667pt;}
.yb7{bottom:271.906667pt;}
.y69{bottom:272.066667pt;}
.y80{bottom:274.786667pt;}
.y162{bottom:276.386667pt;}
.yd7{bottom:276.546667pt;}
.y76{bottom:278.306667pt;}
.y14b{bottom:282.466667pt;}
.yfb{bottom:282.626667pt;}
.y176{bottom:283.426667pt;}
.y2b{bottom:288.066667pt;}
.yc9{bottom:289.826667pt;}
.y127{bottom:290.946667pt;}
.ya5{bottom:296.386667pt;}
.y75{bottom:297.826667pt;}
.yb6{bottom:301.186667pt;}
.y68{bottom:301.346667pt;}
.y7f{bottom:304.066667pt;}
.yd6{bottom:305.826667pt;}
.y2a{bottom:307.586667pt;}
.y161{bottom:309.186667pt;}
.y14a{bottom:315.426667pt;}
.y74{bottom:317.346667pt;}
.yc8{bottom:319.106667pt;}
.y126{bottom:320.226667pt;}
.ya4{bottom:325.666667pt;}
.y29{bottom:327.106667pt;}
.y160{bottom:328.706667pt;}
.yfa{bottom:329.346667pt;}
.yb5{bottom:330.466667pt;}
.y67{bottom:330.626667pt;}
.y51{bottom:333.346667pt;}
.y149{bottom:334.946667pt;}
.yd5{bottom:335.106667pt;}
.y28{bottom:346.626667pt;}
.yc7{bottom:348.386667pt;}
.y125{bottom:349.506667pt;}
.ya2{bottom:354.946667pt;}
.yb4{bottom:359.746667pt;}
.y90{bottom:359.906667pt;}
.y15f{bottom:361.666667pt;}
.ya3{bottom:362.306667pt;}
.y50{bottom:362.626667pt;}
.yd4{bottom:364.386667pt;}
.y27{bottom:366.146667pt;}
.y148{bottom:367.746667pt;}
.yf9{bottom:372.066667pt;}
.y66{bottom:375.906667pt;}
.yc6{bottom:377.666667pt;}
.y124{bottom:378.786667pt;}
.ye4{bottom:381.826667pt;}
.ya1{bottom:384.386667pt;}
.y26{bottom:385.666667pt;}
.y147{bottom:387.266667pt;}
.yb2{bottom:389.026667pt;}
.y8f{bottom:389.186667pt;}
.y4f{bottom:391.906667pt;}
.yd3{bottom:393.666667pt;}
.y15e{bottom:394.466667pt;}
.yb3{bottom:396.386667pt;}
.y65{bottom:405.186667pt;}
.y25{bottom:405.346667pt;}
.yc5{bottom:406.946667pt;}
.y15d{bottom:413.986667pt;}
.yb1{bottom:418.306667pt;}
.y8e{bottom:418.466667pt;}
.yf7{bottom:420.226667pt;}
.y4e{bottom:421.186667pt;}
.yd2{bottom:422.946667pt;}
.y123{bottom:424.066667pt;}
.y24{bottom:424.866667pt;}
.ye3{bottom:427.106667pt;}
.ya0{bottom:429.666667pt;}
.y64{bottom:434.466667pt;}
.yc4{bottom:436.386667pt;}
.y9d{bottom:437.186667pt;}
.y146{bottom:439.746667pt;}
.yf6{bottom:441.986667pt;}
.y23{bottom:444.386667pt;}
.y15c{bottom:446.786667pt;}
.yb0{bottom:447.586667pt;}
.y8d{bottom:447.746667pt;}
.y4d{bottom:450.466667pt;}
.yd1{bottom:452.386667pt;}
.ye2{bottom:456.386667pt;}
.yf5{bottom:463.586667pt;}
.y63{bottom:463.746667pt;}
.y22{bottom:463.906667pt;}
.yc3{bottom:465.666667pt;}
.y15b{bottom:466.306667pt;}
.y7e{bottom:466.466667pt;}
.y122{bottom:469.346667pt;}
.y9f{bottom:470.626667pt;}
.y145{bottom:472.546667pt;}
.yae{bottom:476.866667pt;}
.y8c{bottom:477.186667pt;}
.y4c{bottom:479.746667pt;}
.yd0{bottom:481.666667pt;}
.y21{bottom:483.426667pt;}
.yaf{bottom:484.226667pt;}
.yf4{bottom:485.346667pt;}
.ye1{bottom:485.666667pt;}
.y15a{bottom:485.986667pt;}
.y62{bottom:493.186667pt;}
.yc1{bottom:494.973333pt;}
.y7d{bottom:495.773333pt;}
.yc2{bottom:502.333333pt;}
.y20{bottom:502.973333pt;}
.y144{bottom:505.533333pt;}
.yad{bottom:506.173333pt;}
.yf2{bottom:506.973333pt;}
.y4b{bottom:509.213333pt;}
.ycf{bottom:510.973333pt;}
.y175{bottom:512.573333pt;}
.ye0{bottom:514.973333pt;}
.y159{bottom:518.813333pt;}
.y1f{bottom:522.493333pt;}
.yc0{bottom:524.253333pt;}
.y7c{bottom:525.213333pt;}
.y174{bottom:532.093333pt;}
.yee{bottom:533.853333pt;}
.yac{bottom:535.613333pt;}
.y143{bottom:538.333333pt;}
.y4a{bottom:538.493333pt;}
.y1e{bottom:542.013333pt;}
.ydf{bottom:544.413333pt;}
.y61{bottom:551.773333pt;}
.y11b{bottom:552.573333pt;}
.ybf{bottom:553.533333pt;}
.y73{bottom:554.493333pt;}
.yce{bottom:556.253333pt;}
.y142{bottom:557.853333pt;}
.y1d{bottom:561.533333pt;}
.y173{bottom:565.053333pt;}
.y49{bottom:567.773333pt;}
.y158{bottom:571.133333pt;}
.yde{bottom:573.693333pt;}
.yed{bottom:576.573333pt;}
.yab{bottom:580.893333pt;}
.y1c{bottom:581.053333pt;}
.y72{bottom:583.773333pt;}
.y141{bottom:590.653333pt;}
.y11a{bottom:595.293333pt;}
.y48{bottom:597.053333pt;}
.ycd{bottom:597.213333pt;}
.y172{bottom:597.853333pt;}
.yec{bottom:598.173333pt;}
.ybe{bottom:598.813333pt;}
.y1b{bottom:600.573333pt;}
.ydd{bottom:602.973333pt;}
.y157{bottom:604.093333pt;}
.y140{bottom:610.333333pt;}
.y71{bottom:613.053333pt;}
.yea{bottom:619.933333pt;}
.y1a{bottom:620.093333pt;}
.yaa{bottom:621.853333pt;}
.y156{bottom:623.613333pt;}
.y47{bottom:626.333333pt;}
.y9c{bottom:629.053333pt;}
.y171{bottom:630.653333pt;}
.y118{bottom:636.893333pt;}
.y19{bottom:639.613333pt;}
.ybd{bottom:639.773333pt;}
.y60{bottom:642.333333pt;}
.y13f{bottom:643.133333pt;}
.ydc{bottom:648.253333pt;}
.y170{bottom:650.333333pt;}
.y87{bottom:655.613333pt;}
.y9b{bottom:658.333333pt;}
.y115{bottom:658.653333pt;}
.y18{bottom:659.133333pt;}
.y13e{bottom:662.653333pt;}
.y46{bottom:671.613333pt;}
.y155{bottom:675.933333pt;}
.y17{bottom:678.813333pt;}
.y16f{bottom:683.133333pt;}
.y8b{bottom:684.893333pt;}
.y9a{bottom:687.613333pt;}
.ydb{bottom:689.213333pt;}
.y13d{bottom:695.453333pt;}
.y16{bottom:698.333333pt;}
.y5f{bottom:700.893333pt;}
.y16e{bottom:702.653333pt;}
.y8a{bottom:714.173333pt;}
.y45{bottom:716.893333pt;}
.y15{bottom:717.853333pt;}
.y16d{bottom:722.173333pt;}
.y111{bottom:722.333333pt;}
.ye9{bottom:724.253333pt;}
.y13c{bottom:728.413333pt;}
.y5e{bottom:730.173333pt;}
.y44{bottom:736.413333pt;}
.y14{bottom:737.373333pt;}
.y16c{bottom:741.693333pt;}
.y99{bottom:746.213333pt;}
.y13b{bottom:747.973333pt;}
.y43{bottom:755.973333pt;}
.y13{bottom:756.933333pt;}
.y5d{bottom:759.493333pt;}
.y16b{bottom:761.253333pt;}
.y110{bottom:763.973333pt;}
.y42{bottom:775.493333pt;}
.y12{bottom:776.453333pt;}
.y13a{bottom:780.773333pt;}
.ye8{bottom:782.853333pt;}
.y5c{bottom:788.933333pt;}
.y16a{bottom:794.213333pt;}
.y41{bottom:795.013333pt;}
.y11{bottom:795.813333pt;}
.y139{bottom:800.293333pt;}
.y98{bottom:804.933333pt;}
.y10f{bottom:806.693333pt;}
.y10{bottom:813.733333pt;}
.y40{bottom:814.693333pt;}
.y5b{bottom:818.213333pt;}
.y154{bottom:819.813333pt;}
.yf{bottom:831.813333pt;}
.y138{bottom:833.253333pt;}
.y3f{bottom:834.213333pt;}
.y5a{bottom:847.493333pt;}
.y10d{bottom:849.413333pt;}
.ye{bottom:851.333333pt;}
.y137{bottom:852.773333pt;}
.y3e{bottom:853.733333pt;}
.y7b{bottom:863.493333pt;}
.y169{bottom:866.053333pt;}
.yd{bottom:870.853333pt;}
.y136{bottom:872.293333pt;}
.y3d{bottom:873.253333pt;}
.y59{bottom:876.773333pt;}
.y153{bottom:885.573333pt;}
.y10c{bottom:888.933333pt;}
.yb{bottom:890.373333pt;}
.y3c{bottom:892.773333pt;}
.yc{bottom:897.733333pt;}
.y135{bottom:905.093333pt;}
.y70{bottom:906.053333pt;}
.ya{bottom:909.893333pt;}
.y108{bottom:910.693333pt;}
.y3b{bottom:912.293333pt;}
.y58{bottom:922.053333pt;}
.y9{bottom:929.893333pt;}
.y3a{bottom:931.813333pt;}
.y6f{bottom:935.333333pt;}
.y134{bottom:938.053333pt;}
.y39{bottom:951.333333pt;}
.y104{bottom:954.373333pt;}
.y8{bottom:955.013333pt;}
.y133{bottom:957.573333pt;}
.ye7{bottom:958.693333pt;}
.y86{bottom:964.613333pt;}
.y38{bottom:970.853333pt;}
.y7{bottom:979.973333pt;}
.y57{bottom:980.613333pt;}
.y89{bottom:987.973333pt;}
.y37{bottom:990.373333pt;}
.y6{bottom:1004.960000pt;}
.y36{bottom:1009.920000pt;}
.y9e{bottom:1017.280000pt;}
.y3{bottom:1029.120000pt;}
.y1{bottom:1051.360000pt;}
.h2{height:19.200000pt;}
.h14{height:20.946667pt;}
.hf{height:20.960000pt;}
.h19{height:20.978667pt;}
.h12{height:20.986667pt;}
.h13{height:21.106667pt;}
.h20{height:21.120000pt;}
.h18{height:22.866667pt;}
.h15{height:25.906667pt;}
.h11{height:26.240000pt;}
.hd{height:30.223125pt;}
.hb{height:37.499062pt;}
.h1c{height:38.866667pt;}
.h21{height:40.960000pt;}
.h1e{height:40.980000pt;}
.h1d{height:41.906667pt;}
.h16{height:42.066667pt;}
.h10{height:42.080000pt;}
.h1b{height:43.026667pt;}
.h22{height:44.960000pt;}
.h4{height:45.312813pt;}
.h17{height:46.066667pt;}
.h3{height:46.220625pt;}
.he{height:46.454062pt;}
.hc{height:51.491250pt;}
.h8{height:52.781250pt;}
.h9{height:55.968750pt;}
.h1f{height:63.040000pt;}
.h5{height:65.781915pt;}
.h1a{height:70.106667pt;}
.h6{height:72.609687pt;}
.h7{height:74.064375pt;}
.ha{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:75.666667pt;}
.w7{width:93.952000pt;}
.w9{width:94.272000pt;}
.w6{width:244.817333pt;}
.wa{width:245.293333pt;}
.w8{width:245.613333pt;}
.w2{width:541.360000pt;}
.w5{width:585.040000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:4.470667pt;}
.x4{left:6.080000pt;}
.x43{left:18.880000pt;}
.x2{left:44.950667pt;}
.x41{left:76.785333pt;}
.x1{left:86.921333pt;}
.x5{left:94.592000pt;}
.x45{left:97.106667pt;}
.x14{left:98.912000pt;}
.x2a{left:102.112000pt;}
.x30{left:103.232000pt;}
.x3f{left:104.361333pt;}
.x9{left:110.592000pt;}
.x11{left:112.992000pt;}
.x3e{left:121.632000pt;}
.x7{left:122.592000pt;}
.x35{left:127.070333pt;}
.x15{left:132.352000pt;}
.x21{left:137.306667pt;}
.x36{left:168.825000pt;}
.x37{left:179.706667pt;}
.x8{left:194.906667pt;}
.x40{left:228.025333pt;}
.x12{left:243.706667pt;}
.x33{left:270.626667pt;}
.x1e{left:279.586667pt;}
.x13{left:286.626667pt;}
.x24{left:294.146667pt;}
.xf{left:295.586667pt;}
.x20{left:309.186667pt;}
.x47{left:312.066667pt;}
.xc{left:330.946667pt;}
.x18{left:332.065000pt;}
.x19{left:337.506667pt;}
.x42{left:349.506667pt;}
.x10{left:350.466667pt;}
.xa{left:361.826667pt;}
.x16{left:363.585000pt;}
.x17{left:369.026667pt;}
.x22{left:372.705000pt;}
.x23{left:378.146667pt;}
.x3c{left:383.585000pt;}
.x28{left:386.785000pt;}
.x29{left:392.226667pt;}
.x3d{left:394.466667pt;}
.xb{left:397.026667pt;}
.x44{left:443.786667pt;}
.xd{left:457.531667pt;}
.xe{left:462.973333pt;}
.x38{left:477.053333pt;}
.x39{left:507.453333pt;}
.x1c{left:508.411667pt;}
.x1d{left:513.853333pt;}
.x3a{left:516.091667pt;}
.x25{left:522.013333pt;}
.x3b{left:526.973333pt;}
.x31{left:535.451667pt;}
.x2b{left:539.133333pt;}
.x32{left:546.333333pt;}
.x1f{left:550.973333pt;}
.x2e{left:574.011667pt;}
.x2f{left:584.893333pt;}
.x34{left:587.133333pt;}
.x2c{left:623.971667pt;}
.x26{left:628.131667pt;}
.x3{left:631.333333pt;}
.x27{left:633.573333pt;}
.x2d{left:634.853333pt;}
.x1a{left:690.211667pt;}
.x1b{left:695.653333pt;}
.x6{left:699.493333pt;}
}




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