
    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_becfa775aeac4bd2e68d994e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_84f76aee8d6c1b932d314b37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b5c5509bcc71e9a941524d4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_b86970f9b629ef4af7f9765f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eb6528dbf470bbbe2311db73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_200fc9e69732a84c5418de0a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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;}
.lsa{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.211968px;}
.ls8{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.ls1a{letter-spacing:5.040000px;}
.ls14{letter-spacing:20.232000px;}
.ls1d{letter-spacing:29.664000px;}
.ls10{letter-spacing:54.840000px;}
.ls11{letter-spacing:54.864000px;}
.lsc{letter-spacing:62.784000px;}
.ls7{letter-spacing:64.421280px;}
.ls1c{letter-spacing:65.664000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws16{word-spacing:-36.072000px;}
.wsa{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.792000px;}
.ws18{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.568000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws2{word-spacing:-16.297800px;}
.ws13{word-spacing:-15.984000px;}
.ws14{word-spacing:-15.696000px;}
.wse{word-spacing:-15.552000px;}
.ws7{word-spacing:0.000000px;}
.ws9{word-spacing:1.258560px;}
.ws12{word-spacing:3.672000px;}
.wsd{word-spacing:3.816000px;}
.ws15{word-spacing:3.960000px;}
.ws11{word-spacing:3.996000px;}
.ws17{word-spacing:4.680000px;}
._15{margin-left:-4.968000px;}
._9{margin-left:-3.744000px;}
._6{margin-left:-2.160000px;}
._0{margin-left:-1.032000px;}
._3{width:1.152000px;}
._7{width:2.520000px;}
._8{width:3.576000px;}
._a{width:4.668000px;}
._14{width:5.952000px;}
._12{width:7.128000px;}
._11{width:8.784000px;}
._10{width:10.530240px;}
._5{width:11.933760px;}
._4{width:12.983040px;}
._19{width:14.005920px;}
._16{width:15.024960px;}
._13{width:16.344000px;}
._b{width:19.008000px;}
._c{width:20.604000px;}
._1c{width:21.648000px;}
._1b{width:22.692000px;}
._20{width:23.832000px;}
._d{width:25.632000px;}
._1a{width:27.132000px;}
._1e{width:29.448000px;}
._1f{width:30.528000px;}
._17{width:33.336000px;}
._18{width:34.392000px;}
._1{width:131.988000px;}
._2{width:151.920000px;}
._e{width:846.156000px;}
._1d{width:1722.649920px;}
._f{width:1755.769920px;}
.fc4{color:rgb(0,139,91);}
.fc3{color:rgb(0,126,79);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,102,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd{bottom:7.920000px;}
.yb{bottom:8.100000px;}
.ycd{bottom:10.185000px;}
.ye5{bottom:10.296000px;}
.y76{bottom:10.335000px;}
.y91{bottom:10.410000px;}
.y3{bottom:11.880000px;}
.y7{bottom:13.860000px;}
.y2f{bottom:14.040000px;}
.y2{bottom:14.250000px;}
.y28{bottom:16.020000px;}
.y25{bottom:16.200000px;}
.yb2{bottom:16.380000px;}
.ya5{bottom:16.560000px;}
.y9{bottom:17.100000px;}
.y99{bottom:22.680000px;}
.yaf{bottom:22.860000px;}
.y10{bottom:27.000000px;}
.y11{bottom:27.180000px;}
.yb0{bottom:29.520000px;}
.ycc{bottom:29.985000px;}
.yfa{bottom:30.096000px;}
.y9f{bottom:39.780000px;}
.y24{bottom:39.960000px;}
.ya4{bottom:40.320000px;}
.y2d{bottom:47.916000px;}
.y5{bottom:48.636000px;}
.y23{bottom:63.720000px;}
.ya3{bottom:64.080000px;}
.yf9{bottom:81.540000px;}
.ye4{bottom:82.620000px;}
.y22{bottom:87.480000px;}
.ya2{bottom:87.840000px;}
.yca{bottom:104.076000px;}
.y9e{bottom:111.240000px;}
.y8f{bottom:111.276000px;}
.y21{bottom:111.420000px;}
.ya1{bottom:111.780000px;}
.yb7{bottom:116.856000px;}
.y74{bottom:119.556000px;}
.yc9{bottom:127.836000px;}
.y20{bottom:135.180000px;}
.y8e{bottom:136.296000px;}
.y57{bottom:141.156000px;}
.y73{bottom:143.316000px;}
.y9d{bottom:144.180000px;}
.ya0{bottom:144.540000px;}
.yc8{bottom:151.590000px;}
.y1f{bottom:158.940000px;}
.yb6{bottom:159.870000px;}
.y56{bottom:164.910000px;}
.y72{bottom:167.070000px;}
.y9c{bottom:168.345000px;}
.y8d{bottom:170.490000px;}
.y1e{bottom:182.700000px;}
.yc7{bottom:184.350000px;}
.y55{bottom:188.670000px;}
.y71{bottom:190.830000px;}
.y9b{bottom:192.105000px;}
.y8c{bottom:194.250000px;}
.yb5{bottom:202.890000px;}
.y1d{bottom:206.640000px;}
.y54{bottom:212.610000px;}
.y70{bottom:214.770000px;}
.y8b{bottom:218.190000px;}
.yc6{bottom:226.110000px;}
.y29{bottom:228.810000px;}
.y1c{bottom:230.430000px;}
.y53{bottom:236.370000px;}
.y6f{bottom:238.530000px;}
.y8a{bottom:241.950000px;}
.y27{bottom:245.550000px;}
.yb4{bottom:245.910000px;}
.yc5{bottom:250.050000px;}
.y1b{bottom:254.190000px;}
.y52{bottom:260.130000px;}
.y6e{bottom:262.290000px;}
.yc4{bottom:273.810000px;}
.y89{bottom:274.710000px;}
.y1a{bottom:277.950000px;}
.y51{bottom:283.935000px;}
.y26{bottom:287.355000px;}
.yb3{bottom:288.975000px;}
.y6d{bottom:295.095000px;}
.yc3{bottom:297.615000px;}
.y88{bottom:298.515000px;}
.y19{bottom:301.890000px;}
.y50{bottom:316.875000px;}
.y75{bottom:320.940000px;}
.yc2{bottom:321.375000px;}
.y87{bottom:322.455000px;}
.yb1{bottom:331.995000px;}
.y4f{bottom:340.635000px;}
.yc1{bottom:345.315000px;}
.y12f{bottom:345.495000px;}
.y86{bottom:346.395000px;}
.ye1{bottom:350.535000px;}
.y18{bottom:351.075000px;}
.y115{bottom:353.955000px;}
.y4e{bottom:364.395000px;}
.yc0{bottom:369.075000px;}
.y85{bottom:370.515000px;}
.ye0{bottom:374.475000px;}
.yae{bottom:375.015000px;}
.y114{bottom:377.895000px;}
.y12e{bottom:384.195000px;}
.y4d{bottom:388.155000px;}
.ybf{bottom:392.835000px;}
.ydf{bottom:398.235000px;}
.yf7{bottom:400.935000px;}
.y113{bottom:401.655000px;}
.y84{bottom:403.275000px;}
.y12d{bottom:404.895000px;}
.y4c{bottom:412.095000px;}
.ybe{bottom:416.595000px;}
.yde{bottom:421.995000px;}
.yf6{bottom:424.695000px;}
.y112{bottom:425.415000px;}
.y83{bottom:427.035000px;}
.y4b{bottom:435.855000px;}
.yad{bottom:441.255000px;}
.y12c{bottom:443.595000px;}
.yf5{bottom:448.455000px;}
.y111{bottom:449.175000px;}
.ybd{bottom:449.535000px;}
.y82{bottom:450.795000px;}
.ydd{bottom:454.755000px;}
.y12b{bottom:464.295000px;}
.y4a{bottom:468.615000px;}
.yf4{bottom:472.395000px;}
.ybc{bottom:473.295000px;}
.ydc{bottom:478.695000px;}
.yac{bottom:480.495000px;}
.y110{bottom:483.195000px;}
.y81{bottom:484.815000px;}
.y49{bottom:492.375000px;}
.ybb{bottom:497.055000px;}
.ydb{bottom:502.455000px;}
.y12a{bottom:502.995000px;}
.yab{bottom:504.255000px;}
.yf3{bottom:505.155000px;}
.y48{bottom:516.135000px;}
.yba{bottom:520.815000px;}
.y129{bottom:523.695000px;}
.yda{bottom:526.215000px;}
.yaa{bottom:528.015000px;}
.yf2{bottom:528.915000px;}
.y80{bottom:532.155000px;}
.y10f{bottom:536.835000px;}
.y47{bottom:540.075000px;}
.yb9{bottom:544.755000px;}
.yd9{bottom:549.975000px;}
.ya9{bottom:551.955000px;}
.yf1{bottom:552.675000px;}
.y6c{bottom:560.235000px;}
.y10e{bottom:560.595000px;}
.y128{bottom:562.395000px;}
.y46{bottom:563.835000px;}
.yb8{bottom:568.545000px;}
.yd8{bottom:573.945000px;}
.y7f{bottom:574.665000px;}
.ya8{bottom:576.105000px;}
.yf0{bottom:576.645000px;}
.y127{bottom:583.125000px;}
.y6b{bottom:584.025000px;}
.y10d{bottom:584.385000px;}
.ycb{bottom:594.720000px;}
.y45{bottom:596.625000px;}
.yd7{bottom:597.705000px;}
.yef{bottom:600.405000px;}
.y10c{bottom:608.325000px;}
.ya7{bottom:609.045000px;}
.y6a{bottom:616.785000px;}
.y7e{bottom:617.325000px;}
.y44{bottom:620.385000px;}
.yd6{bottom:621.465000px;}
.y126{bottom:621.825000px;}
.y10b{bottom:632.085000px;}
.yee{bottom:633.165000px;}
.y69{bottom:640.545000px;}
.y125{bottom:642.525000px;}
.y43{bottom:644.325000px;}
.yd5{bottom:645.225000px;}
.ya6{bottom:651.885000px;}
.y10a{bottom:655.845000px;}
.yed{bottom:656.925000px;}
.y68{bottom:664.485000px;}
.y42{bottom:668.085000px;}
.yd4{bottom:668.985000px;}
.y7d{bottom:670.065000px;}
.y17{bottom:678.705000px;}
.y109{bottom:679.605000px;}
.yec{bottom:680.685000px;}
.y124{bottom:681.225000px;}
.y41{bottom:691.845000px;}
.yd3{bottom:692.925000px;}
.y67{bottom:697.245000px;}
.y9a{bottom:699.225000px;}
.y123{bottom:701.925000px;}
.yeb{bottom:704.625000px;}
.y7c{bottom:709.305000px;}
.y108{bottom:712.545000px;}
.y40{bottom:715.605000px;}
.yd2{bottom:716.685000px;}
.y66{bottom:721.005000px;}
.y122{bottom:722.625000px;}
.yea{bottom:728.385000px;}
.y7b{bottom:733.065000px;}
.y107{bottom:736.305000px;}
.y3f{bottom:739.545000px;}
.y65{bottom:744.765000px;}
.yd1{bottom:749.445000px;}
.y16{bottom:750.345000px;}
.ye9{bottom:752.145000px;}
.y7a{bottom:756.825000px;}
.y106{bottom:760.065000px;}
.y121{bottom:761.325000px;}
.y3e{bottom:763.305000px;}
.y64{bottom:768.705000px;}
.y15{bottom:770.325000px;}
.yd0{bottom:773.205000px;}
.ye8{bottom:775.905000px;}
.y79{bottom:780.585000px;}
.y120{bottom:782.025000px;}
.y105{bottom:783.825000px;}
.y3d{bottom:787.065000px;}
.y63{bottom:792.465000px;}
.ycf{bottom:797.145000px;}
.y14{bottom:798.405000px;}
.y11f{bottom:802.725000px;}
.y78{bottom:804.525000px;}
.y104{bottom:807.765000px;}
.ye7{bottom:808.845000px;}
.y3c{bottom:810.825000px;}
.yce{bottom:820.905000px;}
.y62{bottom:825.225000px;}
.y13{bottom:826.305000px;}
.y77{bottom:828.285000px;}
.y103{bottom:831.525000px;}
.ye6{bottom:832.605000px;}
.y3b{bottom:834.765000px;}
.ye3{bottom:837.720000px;}
.y11e{bottom:841.425000px;}
.y90{bottom:846.000000px;}
.y61{bottom:849.030000px;}
.yf8{bottom:849.240000px;}
.y12{bottom:854.250000px;}
.y102{bottom:855.330000px;}
.y11d{bottom:862.170000px;}
.y3a{bottom:867.570000px;}
.ye2{bottom:867.930000px;}
.y60{bottom:872.790000px;}
.y101{bottom:879.090000px;}
.yf{bottom:882.330000px;}
.y11c{bottom:882.870000px;}
.y39{bottom:891.330000px;}
.y5f{bottom:896.730000px;}
.y100{bottom:903.030000px;}
.y38{bottom:915.090000px;}
.y98{bottom:917.970000px;}
.y5e{bottom:920.490000px;}
.y11b{bottom:921.570000px;}
.yff{bottom:926.790000px;}
.ye{bottom:929.310000px;}
.y37{bottom:939.030000px;}
.y11a{bottom:942.270000px;}
.y5d{bottom:944.430000px;}
.yc{bottom:957.210000px;}
.yfe{bottom:959.550000px;}
.y36{bottom:962.790000px;}
.y5c{bottom:968.550000px;}
.y119{bottom:980.970000px;}
.yfd{bottom:983.310000px;}
.y97{bottom:984.210000px;}
.ya{bottom:985.110000px;}
.y35{bottom:986.550000px;}
.y5b{bottom:992.310000px;}
.yfc{bottom:1007.070000px;}
.y34{bottom:1010.310000px;}
.y8{bottom:1013.190000px;}
.y5a{bottom:1016.070000px;}
.y118{bottom:1019.670000px;}
.y96{bottom:1023.270000px;}
.y33{bottom:1034.070000px;}
.y59{bottom:1040.010000px;}
.y117{bottom:1040.370000px;}
.yfb{bottom:1041.090000px;}
.y95{bottom:1047.210000px;}
.y32{bottom:1058.010000px;}
.y116{bottom:1061.070000px;}
.y94{bottom:1070.970000px;}
.y58{bottom:1072.770000px;}
.y31{bottom:1081.770000px;}
.y6{bottom:1084.830000px;}
.y4{bottom:1092.210000px;}
.y93{bottom:1094.730000px;}
.y30{bottom:1115.610000px;}
.y1{bottom:1116.690000px;}
.y92{bottom:1118.490000px;}
.y2e{bottom:1177.020000px;}
.y2c{bottom:1183.500000px;}
.y2b{bottom:1208.340000px;}
.y2a{bottom:1230.480000px;}
.ha{height:27.900000px;}
.hc{height:27.936000px;}
.h9{height:28.080000px;}
.h5{height:39.600000px;}
.h10{height:39.780000px;}
.h16{height:41.760000px;}
.he{height:41.796000px;}
.h17{height:41.940000px;}
.h1b{height:42.300000px;}
.h1c{height:42.336000px;}
.h1e{height:42.480000px;}
.h14{height:42.660000px;}
.h15{height:43.302656px;}
.h18{height:43.407000px;}
.h3{height:46.251562px;}
.hf{height:46.736719px;}
.hb{height:46.980000px;}
.h6{height:50.273438px;}
.h4{height:50.800781px;}
.h12{height:52.417969px;}
.h19{height:55.260000px;}
.h8{height:59.436914px;}
.h13{height:60.679688px;}
.h11{height:61.329023px;}
.h1d{height:62.280000px;}
.h7{height:63.720000px;}
.h2{height:129.096000px;}
.h1a{height:217.830000px;}
.hd{height:327.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:66.600000px;}
.w14{width:99.540000px;}
.wd{width:127.440000px;}
.we{width:130.896000px;}
.wb{width:131.040000px;}
.wc{width:143.316000px;}
.w5{width:172.110000px;}
.w9{width:172.290000px;}
.w7{width:201.990000px;}
.w13{width:216.930000px;}
.w3{width:283.710000px;}
.w15{width:293.655000px;}
.w10{width:338.970000px;}
.w11{width:339.195000px;}
.wa{width:340.200000px;}
.w2{width:471.165000px;}
.w8{width:552.885000px;}
.w17{width:679.860000px;}
.wf{width:680.040000px;}
.w16{width:680.220000px;}
.w18{width:683.100000px;}
.w6{width:754.890000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:4.176000px;}
.x9{left:8.100000px;}
.x7{left:10.800000px;}
.x1a{left:18.576000px;}
.x29{left:20.160000px;}
.x28{left:25.560000px;}
.x13{left:27.900000px;}
.x26{left:30.960000px;}
.x11{left:34.740000px;}
.x25{left:36.180000px;}
.x2f{left:37.836000px;}
.x16{left:38.880000px;}
.x2a{left:40.680000px;}
.x24{left:42.660000px;}
.x21{left:54.720000px;}
.x1{left:63.900000px;}
.xf{left:65.514000px;}
.x8{left:69.120000px;}
.x6{left:74.160000px;}
.x27{left:96.690000px;}
.x2b{left:99.750000px;}
.x1c{left:103.314000px;}
.x1e{left:104.430000px;}
.x5{left:106.415987px;}
.x19{left:116.100000px;}
.x2d{left:125.495987px;}
.x17{left:133.415987px;}
.xb{left:149.615987px;}
.x20{left:174.450000px;}
.xe{left:191.549987px;}
.x31{left:211.035000px;}
.x4{left:233.145000px;}
.x2c{left:237.675000px;}
.x10{left:238.890000px;}
.x2e{left:259.095000px;}
.x1f{left:267.329987px;}
.xa{left:271.110000px;}
.xd{left:276.300000px;}
.x1b{left:317.054987px;}
.x12{left:382.935000px;}
.x22{left:392.115000px;}
.x2{left:413.535000px;}
.x1d{left:446.835000px;}
.x23{left:492.375000px;}
.x18{left:500.144987px;}
.x14{left:526.965000px;}
.x3{left:535.065000px;}
.xc{left:613.905000px;}
.x15{left:655.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.188416pt;}
.ls8{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls14{letter-spacing:17.984000pt;}
.ls1d{letter-spacing:26.368000pt;}
.ls10{letter-spacing:48.746667pt;}
.ls11{letter-spacing:48.768000pt;}
.lsc{letter-spacing:55.808000pt;}
.ls7{letter-spacing:57.263360pt;}
.ls1c{letter-spacing:58.368000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws16{word-spacing:-32.064000pt;}
.wsa{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.704000pt;}
.ws18{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.616000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws2{word-spacing:-14.486933pt;}
.ws13{word-spacing:-14.208000pt;}
.ws14{word-spacing:-13.952000pt;}
.wse{word-spacing:-13.824000pt;}
.ws7{word-spacing:0.000000pt;}
.ws9{word-spacing:1.118720pt;}
.ws12{word-spacing:3.264000pt;}
.wsd{word-spacing:3.392000pt;}
.ws15{word-spacing:3.520000pt;}
.ws11{word-spacing:3.552000pt;}
.ws17{word-spacing:4.160000pt;}
._15{margin-left:-4.416000pt;}
._9{margin-left:-3.328000pt;}
._6{margin-left:-1.920000pt;}
._0{margin-left:-0.917333pt;}
._3{width:1.024000pt;}
._7{width:2.240000pt;}
._8{width:3.178667pt;}
._a{width:4.149333pt;}
._14{width:5.290667pt;}
._12{width:6.336000pt;}
._11{width:7.808000pt;}
._10{width:9.360213pt;}
._5{width:10.607787pt;}
._4{width:11.540480pt;}
._19{width:12.449707pt;}
._16{width:13.355520pt;}
._13{width:14.528000pt;}
._b{width:16.896000pt;}
._c{width:18.314667pt;}
._1c{width:19.242667pt;}
._1b{width:20.170667pt;}
._20{width:21.184000pt;}
._d{width:22.784000pt;}
._1a{width:24.117333pt;}
._1e{width:26.176000pt;}
._1f{width:27.136000pt;}
._17{width:29.632000pt;}
._18{width:30.570667pt;}
._1{width:117.322667pt;}
._2{width:135.040000pt;}
._e{width:752.138667pt;}
._1d{width:1531.244373pt;}
._f{width:1560.684373pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:7.040000pt;}
.yb{bottom:7.200000pt;}
.ycd{bottom:9.053333pt;}
.ye5{bottom:9.152000pt;}
.y76{bottom:9.186667pt;}
.y91{bottom:9.253333pt;}
.y3{bottom:10.560000pt;}
.y7{bottom:12.320000pt;}
.y2f{bottom:12.480000pt;}
.y2{bottom:12.666667pt;}
.y28{bottom:14.240000pt;}
.y25{bottom:14.400000pt;}
.yb2{bottom:14.560000pt;}
.ya5{bottom:14.720000pt;}
.y9{bottom:15.200000pt;}
.y99{bottom:20.160000pt;}
.yaf{bottom:20.320000pt;}
.y10{bottom:24.000000pt;}
.y11{bottom:24.160000pt;}
.yb0{bottom:26.240000pt;}
.ycc{bottom:26.653333pt;}
.yfa{bottom:26.752000pt;}
.y9f{bottom:35.360000pt;}
.y24{bottom:35.520000pt;}
.ya4{bottom:35.840000pt;}
.y2d{bottom:42.592000pt;}
.y5{bottom:43.232000pt;}
.y23{bottom:56.640000pt;}
.ya3{bottom:56.960000pt;}
.yf9{bottom:72.480000pt;}
.ye4{bottom:73.440000pt;}
.y22{bottom:77.760000pt;}
.ya2{bottom:78.080000pt;}
.yca{bottom:92.512000pt;}
.y9e{bottom:98.880000pt;}
.y8f{bottom:98.912000pt;}
.y21{bottom:99.040000pt;}
.ya1{bottom:99.360000pt;}
.yb7{bottom:103.872000pt;}
.y74{bottom:106.272000pt;}
.yc9{bottom:113.632000pt;}
.y20{bottom:120.160000pt;}
.y8e{bottom:121.152000pt;}
.y57{bottom:125.472000pt;}
.y73{bottom:127.392000pt;}
.y9d{bottom:128.160000pt;}
.ya0{bottom:128.480000pt;}
.yc8{bottom:134.746667pt;}
.y1f{bottom:141.280000pt;}
.yb6{bottom:142.106667pt;}
.y56{bottom:146.586667pt;}
.y72{bottom:148.506667pt;}
.y9c{bottom:149.640000pt;}
.y8d{bottom:151.546667pt;}
.y1e{bottom:162.400000pt;}
.yc7{bottom:163.866667pt;}
.y55{bottom:167.706667pt;}
.y71{bottom:169.626667pt;}
.y9b{bottom:170.760000pt;}
.y8c{bottom:172.666667pt;}
.yb5{bottom:180.346667pt;}
.y1d{bottom:183.680000pt;}
.y54{bottom:188.986667pt;}
.y70{bottom:190.906667pt;}
.y8b{bottom:193.946667pt;}
.yc6{bottom:200.986667pt;}
.y29{bottom:203.386667pt;}
.y1c{bottom:204.826667pt;}
.y53{bottom:210.106667pt;}
.y6f{bottom:212.026667pt;}
.y8a{bottom:215.066667pt;}
.y27{bottom:218.266667pt;}
.yb4{bottom:218.586667pt;}
.yc5{bottom:222.266667pt;}
.y1b{bottom:225.946667pt;}
.y52{bottom:231.226667pt;}
.y6e{bottom:233.146667pt;}
.yc4{bottom:243.386667pt;}
.y89{bottom:244.186667pt;}
.y1a{bottom:247.066667pt;}
.y51{bottom:252.386667pt;}
.y26{bottom:255.426667pt;}
.yb3{bottom:256.866667pt;}
.y6d{bottom:262.306667pt;}
.yc3{bottom:264.546667pt;}
.y88{bottom:265.346667pt;}
.y19{bottom:268.346667pt;}
.y50{bottom:281.666667pt;}
.y75{bottom:285.280000pt;}
.yc2{bottom:285.666667pt;}
.y87{bottom:286.626667pt;}
.yb1{bottom:295.106667pt;}
.y4f{bottom:302.786667pt;}
.yc1{bottom:306.946667pt;}
.y12f{bottom:307.106667pt;}
.y86{bottom:307.906667pt;}
.ye1{bottom:311.586667pt;}
.y18{bottom:312.066667pt;}
.y115{bottom:314.626667pt;}
.y4e{bottom:323.906667pt;}
.yc0{bottom:328.066667pt;}
.y85{bottom:329.346667pt;}
.ye0{bottom:332.866667pt;}
.yae{bottom:333.346667pt;}
.y114{bottom:335.906667pt;}
.y12e{bottom:341.506667pt;}
.y4d{bottom:345.026667pt;}
.ybf{bottom:349.186667pt;}
.ydf{bottom:353.986667pt;}
.yf7{bottom:356.386667pt;}
.y113{bottom:357.026667pt;}
.y84{bottom:358.466667pt;}
.y12d{bottom:359.906667pt;}
.y4c{bottom:366.306667pt;}
.ybe{bottom:370.306667pt;}
.yde{bottom:375.106667pt;}
.yf6{bottom:377.506667pt;}
.y112{bottom:378.146667pt;}
.y83{bottom:379.586667pt;}
.y4b{bottom:387.426667pt;}
.yad{bottom:392.226667pt;}
.y12c{bottom:394.306667pt;}
.yf5{bottom:398.626667pt;}
.y111{bottom:399.266667pt;}
.ybd{bottom:399.586667pt;}
.y82{bottom:400.706667pt;}
.ydd{bottom:404.226667pt;}
.y12b{bottom:412.706667pt;}
.y4a{bottom:416.546667pt;}
.yf4{bottom:419.906667pt;}
.ybc{bottom:420.706667pt;}
.ydc{bottom:425.506667pt;}
.yac{bottom:427.106667pt;}
.y110{bottom:429.506667pt;}
.y81{bottom:430.946667pt;}
.y49{bottom:437.666667pt;}
.ybb{bottom:441.826667pt;}
.ydb{bottom:446.626667pt;}
.y12a{bottom:447.106667pt;}
.yab{bottom:448.226667pt;}
.yf3{bottom:449.026667pt;}
.y48{bottom:458.786667pt;}
.yba{bottom:462.946667pt;}
.y129{bottom:465.506667pt;}
.yda{bottom:467.746667pt;}
.yaa{bottom:469.346667pt;}
.yf2{bottom:470.146667pt;}
.y80{bottom:473.026667pt;}
.y10f{bottom:477.186667pt;}
.y47{bottom:480.066667pt;}
.yb9{bottom:484.226667pt;}
.yd9{bottom:488.866667pt;}
.ya9{bottom:490.626667pt;}
.yf1{bottom:491.266667pt;}
.y6c{bottom:497.986667pt;}
.y10e{bottom:498.306667pt;}
.y128{bottom:499.906667pt;}
.y46{bottom:501.186667pt;}
.yb8{bottom:505.373333pt;}
.yd8{bottom:510.173333pt;}
.y7f{bottom:510.813333pt;}
.ya8{bottom:512.093333pt;}
.yf0{bottom:512.573333pt;}
.y127{bottom:518.333333pt;}
.y6b{bottom:519.133333pt;}
.y10d{bottom:519.453333pt;}
.ycb{bottom:528.640000pt;}
.y45{bottom:530.333333pt;}
.yd7{bottom:531.293333pt;}
.yef{bottom:533.693333pt;}
.y10c{bottom:540.733333pt;}
.ya7{bottom:541.373333pt;}
.y6a{bottom:548.253333pt;}
.y7e{bottom:548.733333pt;}
.y44{bottom:551.453333pt;}
.yd6{bottom:552.413333pt;}
.y126{bottom:552.733333pt;}
.y10b{bottom:561.853333pt;}
.yee{bottom:562.813333pt;}
.y69{bottom:569.373333pt;}
.y125{bottom:571.133333pt;}
.y43{bottom:572.733333pt;}
.yd5{bottom:573.533333pt;}
.ya6{bottom:579.453333pt;}
.y10a{bottom:582.973333pt;}
.yed{bottom:583.933333pt;}
.y68{bottom:590.653333pt;}
.y42{bottom:593.853333pt;}
.yd4{bottom:594.653333pt;}
.y7d{bottom:595.613333pt;}
.y17{bottom:603.293333pt;}
.y109{bottom:604.093333pt;}
.yec{bottom:605.053333pt;}
.y124{bottom:605.533333pt;}
.y41{bottom:614.973333pt;}
.yd3{bottom:615.933333pt;}
.y67{bottom:619.773333pt;}
.y9a{bottom:621.533333pt;}
.y123{bottom:623.933333pt;}
.yeb{bottom:626.333333pt;}
.y7c{bottom:630.493333pt;}
.y108{bottom:633.373333pt;}
.y40{bottom:636.093333pt;}
.yd2{bottom:637.053333pt;}
.y66{bottom:640.893333pt;}
.y122{bottom:642.333333pt;}
.yea{bottom:647.453333pt;}
.y7b{bottom:651.613333pt;}
.y107{bottom:654.493333pt;}
.y3f{bottom:657.373333pt;}
.y65{bottom:662.013333pt;}
.yd1{bottom:666.173333pt;}
.y16{bottom:666.973333pt;}
.ye9{bottom:668.573333pt;}
.y7a{bottom:672.733333pt;}
.y106{bottom:675.613333pt;}
.y121{bottom:676.733333pt;}
.y3e{bottom:678.493333pt;}
.y64{bottom:683.293333pt;}
.y15{bottom:684.733333pt;}
.yd0{bottom:687.293333pt;}
.ye8{bottom:689.693333pt;}
.y79{bottom:693.853333pt;}
.y120{bottom:695.133333pt;}
.y105{bottom:696.733333pt;}
.y3d{bottom:699.613333pt;}
.y63{bottom:704.413333pt;}
.ycf{bottom:708.573333pt;}
.y14{bottom:709.693333pt;}
.y11f{bottom:713.533333pt;}
.y78{bottom:715.133333pt;}
.y104{bottom:718.013333pt;}
.ye7{bottom:718.973333pt;}
.y3c{bottom:720.733333pt;}
.yce{bottom:729.693333pt;}
.y62{bottom:733.533333pt;}
.y13{bottom:734.493333pt;}
.y77{bottom:736.253333pt;}
.y103{bottom:739.133333pt;}
.ye6{bottom:740.093333pt;}
.y3b{bottom:742.013333pt;}
.ye3{bottom:744.640000pt;}
.y11e{bottom:747.933333pt;}
.y90{bottom:752.000000pt;}
.y61{bottom:754.693333pt;}
.yf8{bottom:754.880000pt;}
.y12{bottom:759.333333pt;}
.y102{bottom:760.293333pt;}
.y11d{bottom:766.373333pt;}
.y3a{bottom:771.173333pt;}
.ye2{bottom:771.493333pt;}
.y60{bottom:775.813333pt;}
.y101{bottom:781.413333pt;}
.yf{bottom:784.293333pt;}
.y11c{bottom:784.773333pt;}
.y39{bottom:792.293333pt;}
.y5f{bottom:797.093333pt;}
.y100{bottom:802.693333pt;}
.y38{bottom:813.413333pt;}
.y98{bottom:815.973333pt;}
.y5e{bottom:818.213333pt;}
.y11b{bottom:819.173333pt;}
.yff{bottom:823.813333pt;}
.ye{bottom:826.053333pt;}
.y37{bottom:834.693333pt;}
.y11a{bottom:837.573333pt;}
.y5d{bottom:839.493333pt;}
.yc{bottom:850.853333pt;}
.yfe{bottom:852.933333pt;}
.y36{bottom:855.813333pt;}
.y5c{bottom:860.933333pt;}
.y119{bottom:871.973333pt;}
.yfd{bottom:874.053333pt;}
.y97{bottom:874.853333pt;}
.ya{bottom:875.653333pt;}
.y35{bottom:876.933333pt;}
.y5b{bottom:882.053333pt;}
.yfc{bottom:895.173333pt;}
.y34{bottom:898.053333pt;}
.y8{bottom:900.613333pt;}
.y5a{bottom:903.173333pt;}
.y118{bottom:906.373333pt;}
.y96{bottom:909.573333pt;}
.y33{bottom:919.173333pt;}
.y59{bottom:924.453333pt;}
.y117{bottom:924.773333pt;}
.yfb{bottom:925.413333pt;}
.y95{bottom:930.853333pt;}
.y32{bottom:940.453333pt;}
.y116{bottom:943.173333pt;}
.y94{bottom:951.973333pt;}
.y58{bottom:953.573333pt;}
.y31{bottom:961.573333pt;}
.y6{bottom:964.293333pt;}
.y4{bottom:970.853333pt;}
.y93{bottom:973.093333pt;}
.y30{bottom:991.653333pt;}
.y1{bottom:992.613333pt;}
.y92{bottom:994.213333pt;}
.y2e{bottom:1046.240000pt;}
.y2c{bottom:1052.000000pt;}
.y2b{bottom:1074.080000pt;}
.y2a{bottom:1093.760000pt;}
.ha{height:24.800000pt;}
.hc{height:24.832000pt;}
.h9{height:24.960000pt;}
.h5{height:35.200000pt;}
.h10{height:35.360000pt;}
.h16{height:37.120000pt;}
.he{height:37.152000pt;}
.h17{height:37.280000pt;}
.h1b{height:37.600000pt;}
.h1c{height:37.632000pt;}
.h1e{height:37.760000pt;}
.h14{height:37.920000pt;}
.h15{height:38.491250pt;}
.h18{height:38.584000pt;}
.h3{height:41.112500pt;}
.hf{height:41.543750pt;}
.hb{height:41.760000pt;}
.h6{height:44.687500pt;}
.h4{height:45.156250pt;}
.h12{height:46.593750pt;}
.h19{height:49.120000pt;}
.h8{height:52.832812pt;}
.h13{height:53.937500pt;}
.h11{height:54.514687pt;}
.h1d{height:55.360000pt;}
.h7{height:56.640000pt;}
.h2{height:114.752000pt;}
.h1a{height:193.626667pt;}
.hd{height:291.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:59.200000pt;}
.w14{width:88.480000pt;}
.wd{width:113.280000pt;}
.we{width:116.352000pt;}
.wb{width:116.480000pt;}
.wc{width:127.392000pt;}
.w5{width:152.986667pt;}
.w9{width:153.146667pt;}
.w7{width:179.546667pt;}
.w13{width:192.826667pt;}
.w3{width:252.186667pt;}
.w15{width:261.026667pt;}
.w10{width:301.306667pt;}
.w11{width:301.506667pt;}
.wa{width:302.400000pt;}
.w2{width:418.813333pt;}
.w8{width:491.453333pt;}
.w17{width:604.320000pt;}
.wf{width:604.480000pt;}
.w16{width:604.640000pt;}
.w18{width:607.200000pt;}
.w6{width:671.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:3.712000pt;}
.x9{left:7.200000pt;}
.x7{left:9.600000pt;}
.x1a{left:16.512000pt;}
.x29{left:17.920000pt;}
.x28{left:22.720000pt;}
.x13{left:24.800000pt;}
.x26{left:27.520000pt;}
.x11{left:30.880000pt;}
.x25{left:32.160000pt;}
.x2f{left:33.632000pt;}
.x16{left:34.560000pt;}
.x2a{left:36.160000pt;}
.x24{left:37.920000pt;}
.x21{left:48.640000pt;}
.x1{left:56.800000pt;}
.xf{left:58.234667pt;}
.x8{left:61.440000pt;}
.x6{left:65.920000pt;}
.x27{left:85.946667pt;}
.x2b{left:88.666667pt;}
.x1c{left:91.834667pt;}
.x1e{left:92.826667pt;}
.x5{left:94.591988pt;}
.x19{left:103.200000pt;}
.x2d{left:111.551988pt;}
.x17{left:118.591988pt;}
.xb{left:132.991988pt;}
.x20{left:155.066667pt;}
.xe{left:170.266655pt;}
.x31{left:187.586667pt;}
.x4{left:207.240000pt;}
.x2c{left:211.266667pt;}
.x10{left:212.346667pt;}
.x2e{left:230.306667pt;}
.x1f{left:237.626655pt;}
.xa{left:240.986667pt;}
.xd{left:245.600000pt;}
.x1b{left:281.826655pt;}
.x12{left:340.386667pt;}
.x22{left:348.546667pt;}
.x2{left:367.586667pt;}
.x1d{left:397.186667pt;}
.x23{left:437.666667pt;}
.x18{left:444.573322pt;}
.x14{left:468.413333pt;}
.x3{left:475.613333pt;}
.xc{left:545.693333pt;}
.x15{left:582.333333pt;}
}




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