
    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_633c206cc5bfc4230d05f7ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_8817e870f0b0c0762b4d0e6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_fa157f5d9da8577e906d9812.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_bf537e4fa9e601862a386902.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_3236ce0123621ac0069f6f5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_cf4c0d426f08744a5cf2b3fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_30be4a4205162aad328869b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.688965;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_ecf39664769592f69d0ef959.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf49b1e263630859d26de580.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877441;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_40317fd9be3722a82482e0eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_264ed71bcb7645cc4da75a61.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.711914;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_d0b673278ed199b66f793780.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995117;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_acab565a25e747fe47d207e5.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.576000px;}
.ls4{letter-spacing:23.040000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.wsb{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.984000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:420.975840px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._13{width:2.442240px;}
._e{width:3.533760px;}
._c{width:5.400000px;}
._d{width:6.457200px;}
._6{width:7.488000px;}
._7{width:8.784000px;}
._14{width:10.440000px;}
._1d{width:11.775600px;}
._f{width:12.816000px;}
._10{width:13.939440px;}
._15{width:15.004560px;}
._16{width:16.099440px;}
._8{width:19.224000px;}
._a{width:20.592000px;}
._9{width:21.816000px;}
._b{width:23.195520px;}
._1e{width:24.284160px;}
._11{width:25.560000px;}
._12{width:27.000000px;}
._1f{width:28.103520px;}
._20{width:29.304000px;}
._1b{width:31.536000px;}
._1c{width:33.353760px;}
._18{width:34.524000px;}
._1a{width:35.796000px;}
._21{width:37.466400px;}
._19{width:38.568000px;}
._27{width:39.648000px;}
._23{width:41.256000px;}
._24{width:42.264000px;}
._26{width:43.344000px;}
._25{width:44.640000px;}
._17{width:53.983440px;}
._2b{width:67.104000px;}
._2c{width:68.400000px;}
._29{width:69.696000px;}
._2a{width:71.136000px;}
._2d{width:93.007440px;}
._28{width:145.872000px;}
._2e{width:159.480000px;}
._22{width:282.936000px;}
._5{width:431.756880px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(12,12,12);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y10{bottom:-2.010000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.520000px;}
.yf3{bottom:8.265000px;}
.yf7{bottom:8.625000px;}
.yf5{bottom:8.805000px;}
.ya3{bottom:10.440000px;}
.yab{bottom:10.785000px;}
.ya5{bottom:10.800000px;}
.ya9{bottom:10.830000px;}
.ybb{bottom:12.060000px;}
.ybd{bottom:12.420000px;}
.ybf{bottom:12.450000px;}
.yc9{bottom:12.585000px;}
.yc1{bottom:12.600000px;}
.ydb{bottom:12.780000px;}
.ycd{bottom:12.945000px;}
.ycb{bottom:13.125000px;}
.ydd{bottom:13.140000px;}
.ydf{bottom:13.320000px;}
.y101{bottom:13.680000px;}
.y103{bottom:14.040000px;}
.y105{bottom:14.220000px;}
.y12{bottom:15.810000px;}
.yaf{bottom:18.525000px;}
.yb1{bottom:18.885000px;}
.ye{bottom:46.770000px;}
.y13{bottom:53.640000px;}
.yc{bottom:56.700000px;}
.y96{bottom:112.680000px;}
.y70{bottom:114.480000px;}
.y126{bottom:117.540000px;}
.yb7{bottom:120.420000px;}
.yd6{bottom:122.400000px;}
.y9a{bottom:124.380000px;}
.y41{bottom:131.940000px;}
.y7c{bottom:132.300000px;}
.yff{bottom:132.660000px;}
.y95{bottom:133.380000px;}
.y6f{bottom:135.180000px;}
.y125{bottom:138.240000px;}
.y99{bottom:140.940000px;}
.yb6{bottom:141.120000px;}
.yd5{bottom:143.100000px;}
.y40{bottom:152.640000px;}
.y7b{bottom:153.000000px;}
.yfe{bottom:153.360000px;}
.y94{bottom:153.720000px;}
.y6e{bottom:155.880000px;}
.y124{bottom:158.940000px;}
.yb5{bottom:161.820000px;}
.yd4{bottom:163.800000px;}
.y3f{bottom:172.980000px;}
.y7a{bottom:173.700000px;}
.yfd{bottom:174.060000px;}
.y93{bottom:174.420000px;}
.y6d{bottom:176.580000px;}
.y123{bottom:179.640000px;}
.yb4{bottom:182.520000px;}
.yd3{bottom:184.500000px;}
.y3e{bottom:193.680000px;}
.y79{bottom:194.040000px;}
.yfc{bottom:195.120000px;}
.y92{bottom:195.300000px;}
.y6c{bottom:197.280000px;}
.y122{bottom:200.340000px;}
.yb3{bottom:203.220000px;}
.yd2{bottom:205.200000px;}
.y3d{bottom:214.770000px;}
.y91{bottom:216.030000px;}
.yfb{bottom:216.225000px;}
.y6b{bottom:218.010000px;}
.y121{bottom:221.070000px;}
.yb2{bottom:223.950000px;}
.yd1{bottom:225.930000px;}
.y78{bottom:231.330000px;}
.y3c{bottom:235.470000px;}
.y90{bottom:236.730000px;}
.y6a{bottom:238.710000px;}
.y120{bottom:241.770000px;}
.yb0{bottom:245.025000px;}
.yd0{bottom:246.630000px;}
.yfa{bottom:249.885000px;}
.y3b{bottom:255.810000px;}
.y8f{bottom:257.430000px;}
.y69{bottom:259.410000px;}
.y11f{bottom:262.470000px;}
.ycf{bottom:267.690000px;}
.y3a{bottom:276.870000px;}
.y8e{bottom:278.130000px;}
.y68{bottom:280.110000px;}
.y11e{bottom:283.170000px;}
.yf9{bottom:283.365000px;}
.yce{bottom:288.765000px;}
.y39{bottom:297.570000px;}
.y8d{bottom:298.830000px;}
.yae{bottom:299.925000px;}
.y67{bottom:300.810000px;}
.y11d{bottom:303.870000px;}
.yf8{bottom:317.025000px;}
.y38{bottom:318.270000px;}
.y8c{bottom:319.530000px;}
.y66{bottom:321.510000px;}
.y11c{bottom:324.570000px;}
.ycc{bottom:331.245000px;}
.y37{bottom:338.970000px;}
.y8b{bottom:340.230000px;}
.y65{bottom:342.210000px;}
.y11b{bottom:345.270000px;}
.yf6{bottom:350.685000px;}
.yad{bottom:357.690000px;}
.y36{bottom:359.670000px;}
.y8a{bottom:360.570000px;}
.y64{bottom:362.910000px;}
.y11a{bottom:365.610000px;}
.yca{bottom:373.545000px;}
.yac{bottom:378.750000px;}
.y35{bottom:380.370000px;}
.y89{bottom:381.630000px;}
.y63{bottom:383.610000px;}
.yf4{bottom:384.165000px;}
.y119{bottom:386.310000px;}
.yaa{bottom:399.825000px;}
.y34{bottom:401.070000px;}
.y88{bottom:402.330000px;}
.y62{bottom:404.310000px;}
.y118{bottom:407.370000px;}
.yc8{bottom:416.745000px;}
.yf2{bottom:418.545000px;}
.y33{bottom:421.770000px;}
.y87{bottom:423.030000px;}
.y61{bottom:425.010000px;}
.y117{bottom:428.070000px;}
.ya8{bottom:437.625000px;}
.y32{bottom:442.515000px;}
.y86{bottom:443.775000px;}
.y60{bottom:445.755000px;}
.y116{bottom:448.815000px;}
.yf1{bottom:456.015000px;}
.yc7{bottom:462.855000px;}
.y31{bottom:463.215000px;}
.y85{bottom:464.475000px;}
.y5f{bottom:466.455000px;}
.y115{bottom:469.515000px;}
.ya7{bottom:475.455000px;}
.yf0{bottom:476.715000px;}
.yc6{bottom:483.555000px;}
.y30{bottom:483.915000px;}
.y84{bottom:485.175000px;}
.y5e{bottom:487.155000px;}
.y114{bottom:490.215000px;}
.yef{bottom:497.415000px;}
.yc5{bottom:503.715000px;}
.y2f{bottom:504.615000px;}
.y83{bottom:505.875000px;}
.y5d{bottom:507.855000px;}
.y113{bottom:510.915000px;}
.ya6{bottom:513.255000px;}
.yee{bottom:518.475000px;}
.yc4{bottom:524.595000px;}
.y2e{bottom:525.315000px;}
.y82{bottom:526.575000px;}
.y5c{bottom:528.015000px;}
.y76{bottom:528.375000px;}
.y112{bottom:531.615000px;}
.yed{bottom:539.175000px;}
.yc3{bottom:545.655000px;}
.y2d{bottom:546.015000px;}
.y81{bottom:547.275000px;}
.y5b{bottom:548.715000px;}
.y75{bottom:549.075000px;}
.ya4{bottom:551.055000px;}
.y111{bottom:552.315000px;}
.yec{bottom:559.515000px;}
.y2c{bottom:566.715000px;}
.y80{bottom:567.975000px;}
.y5a{bottom:569.775000px;}
.y110{bottom:572.655000px;}
.yeb{bottom:580.575000px;}
.yc2{bottom:586.875000px;}
.y2b{bottom:587.415000px;}
.y7f{bottom:588.315000px;}
.ya2{bottom:589.575000px;}
.y59{bottom:590.475000px;}
.y10f{bottom:593.355000px;}
.yea{bottom:601.275000px;}
.y2a{bottom:608.115000px;}
.y7e{bottom:609.015000px;}
.y58{bottom:611.175000px;}
.y10e{bottom:614.775000px;}
.ye9{bottom:621.975000px;}
.y7d{bottom:625.575000px;}
.yc0{bottom:627.915000px;}
.y29{bottom:628.815000px;}
.ya1{bottom:631.155000px;}
.y127{bottom:631.515000px;}
.y57{bottom:631.875000px;}
.ye8{bottom:642.675000px;}
.y28{bottom:649.515000px;}
.ya0{bottom:652.215000px;}
.y56{bottom:652.575000px;}
.y10d{bottom:655.815000px;}
.ye7{bottom:663.375000px;}
.ybe{bottom:669.135000px;}
.y27{bottom:670.215000px;}
.y9f{bottom:672.915000px;}
.y55{bottom:673.275000px;}
.ye6{bottom:684.105000px;}
.y26{bottom:690.945000px;}
.y42{bottom:692.025000px;}
.y54{bottom:693.645000px;}
.y74{bottom:694.005000px;}
.y10c{bottom:696.705000px;}
.ye5{bottom:704.805000px;}
.ybc{bottom:710.385000px;}
.y25{bottom:711.645000px;}
.y9e{bottom:714.165000px;}
.y53{bottom:714.345000px;}
.y73{bottom:714.705000px;}
.ye4{bottom:725.325000px;}
.y24{bottom:732.345000px;}
.y9d{bottom:735.045000px;}
.y52{bottom:735.405000px;}
.y10b{bottom:738.465000px;}
.ye3{bottom:746.025000px;}
.yba{bottom:752.325000px;}
.y23{bottom:753.045000px;}
.y9c{bottom:755.745000px;}
.y51{bottom:756.105000px;}
.ye2{bottom:766.365000px;}
.y22{bottom:773.745000px;}
.y50{bottom:776.805000px;}
.y10a{bottom:783.105000px;}
.ye1{bottom:787.425000px;}
.y21{bottom:794.085000px;}
.yb9{bottom:797.145000px;}
.y4f{bottom:797.505000px;}
.y109{bottom:803.805000px;}
.ye0{bottom:808.665000px;}
.y20{bottom:814.785000px;}
.yb8{bottom:817.845000px;}
.y4e{bottom:818.205000px;}
.y108{bottom:824.505000px;}
.y1f{bottom:835.845000px;}
.y77{bottom:838.545000px;}
.y4d{bottom:838.905000px;}
.y107{bottom:845.205000px;}
.yde{bottom:851.145000px;}
.y1e{bottom:856.545000px;}
.y4c{bottom:859.245000px;}
.y72{bottom:859.605000px;}
.y106{bottom:866.265000px;}
.y1d{bottom:876.885000px;}
.y4b{bottom:879.945000px;}
.y71{bottom:880.305000px;}
.y104{bottom:887.325000px;}
.ydc{bottom:893.805000px;}
.y1c{bottom:897.585000px;}
.y98{bottom:900.645000px;}
.y4a{bottom:901.005000px;}
.y1b{bottom:918.690000px;}
.y97{bottom:921.390000px;}
.y49{bottom:921.750000px;}
.y102{bottom:931.830000px;}
.yda{bottom:937.230000px;}
.y1a{bottom:939.390000px;}
.y48{bottom:942.450000px;}
.y19{bottom:959.730000px;}
.y47{bottom:963.150000px;}
.y100{bottom:976.830000px;}
.y18{bottom:980.430000px;}
.yd9{bottom:983.490000px;}
.y46{bottom:983.850000px;}
.y17{bottom:1000.950000px;}
.yd8{bottom:1004.190000px;}
.y45{bottom:1004.550000px;}
.y16{bottom:1018.590000px;}
.yd7{bottom:1024.890000px;}
.y44{bottom:1025.250000px;}
.y15{bottom:1042.710000px;}
.y9b{bottom:1045.590000px;}
.y43{bottom:1045.950000px;}
.yd{bottom:1056.780000px;}
.yb{bottom:1065.030000px;}
.yf{bottom:1073.850000px;}
.ya{bottom:1081.230000px;}
.y11{bottom:1088.820000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.ha{height:16.200000px;}
.h21{height:28.965000px;}
.h20{height:29.145000px;}
.h1f{height:29.181000px;}
.h9{height:29.700000px;}
.h7{height:31.952109px;}
.h10{height:33.285000px;}
.h11{height:33.321000px;}
.h24{height:36.360000px;}
.h25{height:36.390000px;}
.h18{height:36.525000px;}
.h14{height:36.540000px;}
.h17{height:36.705000px;}
.h15{height:36.720000px;}
.h16{height:36.750000px;}
.h1b{height:37.785000px;}
.h19{height:37.821000px;}
.h1a{height:37.965000px;}
.h1c{height:37.980000px;}
.h1e{height:38.160000px;}
.h1d{height:38.196000px;}
.h6{height:39.247031px;}
.h22{height:39.780000px;}
.h23{height:39.996000px;}
.hc{height:40.472227px;}
.h4{height:41.027344px;}
.h2{height:42.602344px;}
.h12{height:49.485000px;}
.h13{height:49.665000px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.h5{height:58.860000px;}
.hf{height:66.902625px;}
.he{height:70.664062px;}
.hd{height:72.562500px;}
.hb{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:37.605000px;}
.w15{width:40.845000px;}
.w23{width:62.625000px;}
.w22{width:62.841000px;}
.w4{width:63.000000px;}
.w1c{width:77.565000px;}
.w8{width:81.921000px;}
.w16{width:86.241000px;}
.w24{width:86.970000px;}
.w11{width:95.925000px;}
.w17{width:104.385000px;}
.w14{width:104.616000px;}
.w12{width:110.010000px;}
.w10{width:112.701000px;}
.we{width:112.716000px;}
.w1d{width:119.001000px;}
.w18{width:119.730000px;}
.w1e{width:136.290000px;}
.w1f{width:142.236000px;}
.w9{width:144.210000px;}
.w20{width:154.980000px;}
.w21{width:155.190000px;}
.wa{width:196.230000px;}
.wd{width:227.550000px;}
.wc{width:245.940000px;}
.w13{width:247.710000px;}
.wb{width:254.190000px;}
.w5{width:316.515000px;}
.w19{width:320.655000px;}
.w2{width:330.660000px;}
.w1b{width:366.015000px;}
.w6{width:369.420000px;}
.w1a{width:374.280000px;}
.w3{width:403.920000px;}
.w7{width:446.115000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.080000px;}
.x5{left:10.800000px;}
.x8{left:15.225000px;}
.x4{left:59.220000px;}
.x6{left:70.020000px;}
.xf{left:133.956000px;}
.x3{left:135.036000px;}
.xa{left:176.070000px;}
.x28{left:189.030000px;}
.x1{left:204.150000px;}
.x23{left:278.535000px;}
.x14{left:332.355000px;}
.x16{left:363.855000px;}
.x1b{left:383.835000px;}
.xb{left:406.875000px;}
.x9{left:414.900000px;}
.x24{left:435.675000px;}
.x11{left:452.640000px;}
.x20{left:456.780000px;}
.x17{left:478.740000px;}
.x2{left:483.045000px;}
.x7{left:487.260000px;}
.x1c{left:490.620000px;}
.x21{left:502.140000px;}
.x18{left:518.520000px;}
.x1d{left:533.820000px;}
.x12{left:582.420000px;}
.x15{left:588.900000px;}
.x25{left:593.040000px;}
.x1e{left:622.230000px;}
.x19{left:633.570000px;}
.x26{left:658.050000px;}
.x13{left:666.690000px;}
.x22{left:703.230000px;}
.x27{left:723.030000px;}
.x1f{left:728.970000px;}
.x1a{left:731.850000px;}
.xe{left:733.650000px;}
.xd{left:776.310000px;}
.xc{left:784.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls4{letter-spacing:20.480000pt;}
.ws2{word-spacing:-64.000000pt;}
.wsb{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.208000pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:374.200747pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._13{width:2.170880pt;}
._e{width:3.141120pt;}
._c{width:4.800000pt;}
._d{width:5.739733pt;}
._6{width:6.656000pt;}
._7{width:7.808000pt;}
._14{width:9.280000pt;}
._1d{width:10.467200pt;}
._f{width:11.392000pt;}
._10{width:12.390613pt;}
._15{width:13.337387pt;}
._16{width:14.310613pt;}
._8{width:17.088000pt;}
._a{width:18.304000pt;}
._9{width:19.392000pt;}
._b{width:20.618240pt;}
._1e{width:21.585920pt;}
._11{width:22.720000pt;}
._12{width:24.000000pt;}
._1f{width:24.980907pt;}
._20{width:26.048000pt;}
._1b{width:28.032000pt;}
._1c{width:29.647787pt;}
._18{width:30.688000pt;}
._1a{width:31.818667pt;}
._21{width:33.303467pt;}
._19{width:34.282667pt;}
._27{width:35.242667pt;}
._23{width:36.672000pt;}
._24{width:37.568000pt;}
._26{width:38.528000pt;}
._25{width:39.680000pt;}
._17{width:47.985280pt;}
._2b{width:59.648000pt;}
._2c{width:60.800000pt;}
._29{width:61.952000pt;}
._2a{width:63.232000pt;}
._2d{width:82.673280pt;}
._28{width:129.664000pt;}
._2e{width:141.760000pt;}
._22{width:251.498667pt;}
._5{width:383.783893pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y10{bottom:-1.786667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.240000pt;}
.yf3{bottom:7.346667pt;}
.yf7{bottom:7.666667pt;}
.yf5{bottom:7.826667pt;}
.ya3{bottom:9.280000pt;}
.yab{bottom:9.586667pt;}
.ya5{bottom:9.600000pt;}
.ya9{bottom:9.626667pt;}
.ybb{bottom:10.720000pt;}
.ybd{bottom:11.040000pt;}
.ybf{bottom:11.066667pt;}
.yc9{bottom:11.186667pt;}
.yc1{bottom:11.200000pt;}
.ydb{bottom:11.360000pt;}
.ycd{bottom:11.506667pt;}
.ycb{bottom:11.666667pt;}
.ydd{bottom:11.680000pt;}
.ydf{bottom:11.840000pt;}
.y101{bottom:12.160000pt;}
.y103{bottom:12.480000pt;}
.y105{bottom:12.640000pt;}
.y12{bottom:14.053333pt;}
.yaf{bottom:16.466667pt;}
.yb1{bottom:16.786667pt;}
.ye{bottom:41.573333pt;}
.y13{bottom:47.680000pt;}
.yc{bottom:50.400000pt;}
.y96{bottom:100.160000pt;}
.y70{bottom:101.760000pt;}
.y126{bottom:104.480000pt;}
.yb7{bottom:107.040000pt;}
.yd6{bottom:108.800000pt;}
.y9a{bottom:110.560000pt;}
.y41{bottom:117.280000pt;}
.y7c{bottom:117.600000pt;}
.yff{bottom:117.920000pt;}
.y95{bottom:118.560000pt;}
.y6f{bottom:120.160000pt;}
.y125{bottom:122.880000pt;}
.y99{bottom:125.280000pt;}
.yb6{bottom:125.440000pt;}
.yd5{bottom:127.200000pt;}
.y40{bottom:135.680000pt;}
.y7b{bottom:136.000000pt;}
.yfe{bottom:136.320000pt;}
.y94{bottom:136.640000pt;}
.y6e{bottom:138.560000pt;}
.y124{bottom:141.280000pt;}
.yb5{bottom:143.840000pt;}
.yd4{bottom:145.600000pt;}
.y3f{bottom:153.760000pt;}
.y7a{bottom:154.400000pt;}
.yfd{bottom:154.720000pt;}
.y93{bottom:155.040000pt;}
.y6d{bottom:156.960000pt;}
.y123{bottom:159.680000pt;}
.yb4{bottom:162.240000pt;}
.yd3{bottom:164.000000pt;}
.y3e{bottom:172.160000pt;}
.y79{bottom:172.480000pt;}
.yfc{bottom:173.440000pt;}
.y92{bottom:173.600000pt;}
.y6c{bottom:175.360000pt;}
.y122{bottom:178.080000pt;}
.yb3{bottom:180.640000pt;}
.yd2{bottom:182.400000pt;}
.y3d{bottom:190.906667pt;}
.y91{bottom:192.026667pt;}
.yfb{bottom:192.200000pt;}
.y6b{bottom:193.786667pt;}
.y121{bottom:196.506667pt;}
.yb2{bottom:199.066667pt;}
.yd1{bottom:200.826667pt;}
.y78{bottom:205.626667pt;}
.y3c{bottom:209.306667pt;}
.y90{bottom:210.426667pt;}
.y6a{bottom:212.186667pt;}
.y120{bottom:214.906667pt;}
.yb0{bottom:217.800000pt;}
.yd0{bottom:219.226667pt;}
.yfa{bottom:222.120000pt;}
.y3b{bottom:227.386667pt;}
.y8f{bottom:228.826667pt;}
.y69{bottom:230.586667pt;}
.y11f{bottom:233.306667pt;}
.ycf{bottom:237.946667pt;}
.y3a{bottom:246.106667pt;}
.y8e{bottom:247.226667pt;}
.y68{bottom:248.986667pt;}
.y11e{bottom:251.706667pt;}
.yf9{bottom:251.880000pt;}
.yce{bottom:256.680000pt;}
.y39{bottom:264.506667pt;}
.y8d{bottom:265.626667pt;}
.yae{bottom:266.600000pt;}
.y67{bottom:267.386667pt;}
.y11d{bottom:270.106667pt;}
.yf8{bottom:281.800000pt;}
.y38{bottom:282.906667pt;}
.y8c{bottom:284.026667pt;}
.y66{bottom:285.786667pt;}
.y11c{bottom:288.506667pt;}
.ycc{bottom:294.440000pt;}
.y37{bottom:301.306667pt;}
.y8b{bottom:302.426667pt;}
.y65{bottom:304.186667pt;}
.y11b{bottom:306.906667pt;}
.yf6{bottom:311.720000pt;}
.yad{bottom:317.946667pt;}
.y36{bottom:319.706667pt;}
.y8a{bottom:320.506667pt;}
.y64{bottom:322.586667pt;}
.y11a{bottom:324.986667pt;}
.yca{bottom:332.040000pt;}
.yac{bottom:336.666667pt;}
.y35{bottom:338.106667pt;}
.y89{bottom:339.226667pt;}
.y63{bottom:340.986667pt;}
.yf4{bottom:341.480000pt;}
.y119{bottom:343.386667pt;}
.yaa{bottom:355.400000pt;}
.y34{bottom:356.506667pt;}
.y88{bottom:357.626667pt;}
.y62{bottom:359.386667pt;}
.y118{bottom:362.106667pt;}
.yc8{bottom:370.440000pt;}
.yf2{bottom:372.040000pt;}
.y33{bottom:374.906667pt;}
.y87{bottom:376.026667pt;}
.y61{bottom:377.786667pt;}
.y117{bottom:380.506667pt;}
.ya8{bottom:389.000000pt;}
.y32{bottom:393.346667pt;}
.y86{bottom:394.466667pt;}
.y60{bottom:396.226667pt;}
.y116{bottom:398.946667pt;}
.yf1{bottom:405.346667pt;}
.yc7{bottom:411.426667pt;}
.y31{bottom:411.746667pt;}
.y85{bottom:412.866667pt;}
.y5f{bottom:414.626667pt;}
.y115{bottom:417.346667pt;}
.ya7{bottom:422.626667pt;}
.yf0{bottom:423.746667pt;}
.yc6{bottom:429.826667pt;}
.y30{bottom:430.146667pt;}
.y84{bottom:431.266667pt;}
.y5e{bottom:433.026667pt;}
.y114{bottom:435.746667pt;}
.yef{bottom:442.146667pt;}
.yc5{bottom:447.746667pt;}
.y2f{bottom:448.546667pt;}
.y83{bottom:449.666667pt;}
.y5d{bottom:451.426667pt;}
.y113{bottom:454.146667pt;}
.ya6{bottom:456.226667pt;}
.yee{bottom:460.866667pt;}
.yc4{bottom:466.306667pt;}
.y2e{bottom:466.946667pt;}
.y82{bottom:468.066667pt;}
.y5c{bottom:469.346667pt;}
.y76{bottom:469.666667pt;}
.y112{bottom:472.546667pt;}
.yed{bottom:479.266667pt;}
.yc3{bottom:485.026667pt;}
.y2d{bottom:485.346667pt;}
.y81{bottom:486.466667pt;}
.y5b{bottom:487.746667pt;}
.y75{bottom:488.066667pt;}
.ya4{bottom:489.826667pt;}
.y111{bottom:490.946667pt;}
.yec{bottom:497.346667pt;}
.y2c{bottom:503.746667pt;}
.y80{bottom:504.866667pt;}
.y5a{bottom:506.466667pt;}
.y110{bottom:509.026667pt;}
.yeb{bottom:516.066667pt;}
.yc2{bottom:521.666667pt;}
.y2b{bottom:522.146667pt;}
.y7f{bottom:522.946667pt;}
.ya2{bottom:524.066667pt;}
.y59{bottom:524.866667pt;}
.y10f{bottom:527.426667pt;}
.yea{bottom:534.466667pt;}
.y2a{bottom:540.546667pt;}
.y7e{bottom:541.346667pt;}
.y58{bottom:543.266667pt;}
.y10e{bottom:546.466667pt;}
.ye9{bottom:552.866667pt;}
.y7d{bottom:556.066667pt;}
.yc0{bottom:558.146667pt;}
.y29{bottom:558.946667pt;}
.ya1{bottom:561.026667pt;}
.y127{bottom:561.346667pt;}
.y57{bottom:561.666667pt;}
.ye8{bottom:571.266667pt;}
.y28{bottom:577.346667pt;}
.ya0{bottom:579.746667pt;}
.y56{bottom:580.066667pt;}
.y10d{bottom:582.946667pt;}
.ye7{bottom:589.666667pt;}
.ybe{bottom:594.786667pt;}
.y27{bottom:595.746667pt;}
.y9f{bottom:598.146667pt;}
.y55{bottom:598.466667pt;}
.ye6{bottom:608.093333pt;}
.y26{bottom:614.173333pt;}
.y42{bottom:615.133333pt;}
.y54{bottom:616.573333pt;}
.y74{bottom:616.893333pt;}
.y10c{bottom:619.293333pt;}
.ye5{bottom:626.493333pt;}
.ybc{bottom:631.453333pt;}
.y25{bottom:632.573333pt;}
.y9e{bottom:634.813333pt;}
.y53{bottom:634.973333pt;}
.y73{bottom:635.293333pt;}
.ye4{bottom:644.733333pt;}
.y24{bottom:650.973333pt;}
.y9d{bottom:653.373333pt;}
.y52{bottom:653.693333pt;}
.y10b{bottom:656.413333pt;}
.ye3{bottom:663.133333pt;}
.yba{bottom:668.733333pt;}
.y23{bottom:669.373333pt;}
.y9c{bottom:671.773333pt;}
.y51{bottom:672.093333pt;}
.ye2{bottom:681.213333pt;}
.y22{bottom:687.773333pt;}
.y50{bottom:690.493333pt;}
.y10a{bottom:696.093333pt;}
.ye1{bottom:699.933333pt;}
.y21{bottom:705.853333pt;}
.yb9{bottom:708.573333pt;}
.y4f{bottom:708.893333pt;}
.y109{bottom:714.493333pt;}
.ye0{bottom:718.813333pt;}
.y20{bottom:724.253333pt;}
.yb8{bottom:726.973333pt;}
.y4e{bottom:727.293333pt;}
.y108{bottom:732.893333pt;}
.y1f{bottom:742.973333pt;}
.y77{bottom:745.373333pt;}
.y4d{bottom:745.693333pt;}
.y107{bottom:751.293333pt;}
.yde{bottom:756.573333pt;}
.y1e{bottom:761.373333pt;}
.y4c{bottom:763.773333pt;}
.y72{bottom:764.093333pt;}
.y106{bottom:770.013333pt;}
.y1d{bottom:779.453333pt;}
.y4b{bottom:782.173333pt;}
.y71{bottom:782.493333pt;}
.y104{bottom:788.733333pt;}
.ydc{bottom:794.493333pt;}
.y1c{bottom:797.853333pt;}
.y98{bottom:800.573333pt;}
.y4a{bottom:800.893333pt;}
.y1b{bottom:816.613333pt;}
.y97{bottom:819.013333pt;}
.y49{bottom:819.333333pt;}
.y102{bottom:828.293333pt;}
.yda{bottom:833.093333pt;}
.y1a{bottom:835.013333pt;}
.y48{bottom:837.733333pt;}
.y19{bottom:853.093333pt;}
.y47{bottom:856.133333pt;}
.y100{bottom:868.293333pt;}
.y18{bottom:871.493333pt;}
.yd9{bottom:874.213333pt;}
.y46{bottom:874.533333pt;}
.y17{bottom:889.733333pt;}
.yd8{bottom:892.613333pt;}
.y45{bottom:892.933333pt;}
.y16{bottom:905.413333pt;}
.yd7{bottom:911.013333pt;}
.y44{bottom:911.333333pt;}
.y15{bottom:926.853333pt;}
.y9b{bottom:929.413333pt;}
.y43{bottom:929.733333pt;}
.yd{bottom:939.360000pt;}
.yb{bottom:946.693333pt;}
.yf{bottom:954.533333pt;}
.ya{bottom:961.093333pt;}
.y11{bottom:967.840000pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.ha{height:14.400000pt;}
.h21{height:25.746667pt;}
.h20{height:25.906667pt;}
.h1f{height:25.938667pt;}
.h9{height:26.400000pt;}
.h7{height:28.401875pt;}
.h10{height:29.586667pt;}
.h11{height:29.618667pt;}
.h24{height:32.320000pt;}
.h25{height:32.346667pt;}
.h18{height:32.466667pt;}
.h14{height:32.480000pt;}
.h17{height:32.626667pt;}
.h15{height:32.640000pt;}
.h16{height:32.666667pt;}
.h1b{height:33.586667pt;}
.h19{height:33.618667pt;}
.h1a{height:33.746667pt;}
.h1c{height:33.760000pt;}
.h1e{height:33.920000pt;}
.h1d{height:33.952000pt;}
.h6{height:34.886250pt;}
.h22{height:35.360000pt;}
.h23{height:35.552000pt;}
.hc{height:35.975313pt;}
.h4{height:36.468750pt;}
.h2{height:37.868750pt;}
.h12{height:43.986667pt;}
.h13{height:44.146667pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.h5{height:52.320000pt;}
.hf{height:59.469000pt;}
.he{height:62.812500pt;}
.hd{height:64.500000pt;}
.hb{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:33.426667pt;}
.w15{width:36.306667pt;}
.w23{width:55.666667pt;}
.w22{width:55.858667pt;}
.w4{width:56.000000pt;}
.w1c{width:68.946667pt;}
.w8{width:72.818667pt;}
.w16{width:76.658667pt;}
.w24{width:77.306667pt;}
.w11{width:85.266667pt;}
.w17{width:92.786667pt;}
.w14{width:92.992000pt;}
.w12{width:97.786667pt;}
.w10{width:100.178667pt;}
.we{width:100.192000pt;}
.w1d{width:105.778667pt;}
.w18{width:106.426667pt;}
.w1e{width:121.146667pt;}
.w1f{width:126.432000pt;}
.w9{width:128.186667pt;}
.w20{width:137.760000pt;}
.w21{width:137.946667pt;}
.wa{width:174.426667pt;}
.wd{width:202.266667pt;}
.wc{width:218.613333pt;}
.w13{width:220.186667pt;}
.wb{width:225.946667pt;}
.w5{width:281.346667pt;}
.w19{width:285.026667pt;}
.w2{width:293.920000pt;}
.w1b{width:325.346667pt;}
.w6{width:328.373333pt;}
.w1a{width:332.693333pt;}
.w3{width:359.040000pt;}
.w7{width:396.546667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:0.960000pt;}
.x5{left:9.600000pt;}
.x8{left:13.533333pt;}
.x4{left:52.640000pt;}
.x6{left:62.240000pt;}
.xf{left:119.072000pt;}
.x3{left:120.032000pt;}
.xa{left:156.506667pt;}
.x28{left:168.026667pt;}
.x1{left:181.466667pt;}
.x23{left:247.586667pt;}
.x14{left:295.426667pt;}
.x16{left:323.426667pt;}
.x1b{left:341.186667pt;}
.xb{left:361.666667pt;}
.x9{left:368.800000pt;}
.x24{left:387.266667pt;}
.x11{left:402.346667pt;}
.x20{left:406.026667pt;}
.x17{left:425.546667pt;}
.x2{left:429.373333pt;}
.x7{left:433.120000pt;}
.x1c{left:436.106667pt;}
.x21{left:446.346667pt;}
.x18{left:460.906667pt;}
.x1d{left:474.506667pt;}
.x12{left:517.706667pt;}
.x15{left:523.466667pt;}
.x25{left:527.146667pt;}
.x1e{left:553.093333pt;}
.x19{left:563.173333pt;}
.x26{left:584.933333pt;}
.x13{left:592.613333pt;}
.x22{left:625.093333pt;}
.x27{left:642.693333pt;}
.x1f{left:647.973333pt;}
.x1a{left:650.533333pt;}
.xe{left:652.133333pt;}
.xd{left:690.053333pt;}
.xc{left:696.933333pt;}
}




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