
    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_045bb64830feb3b1f51333d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_f0fa85df92d477e55ac4dc06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_e1d9d5dccd85489bd4a28fa7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_456d59714f92fc8b3f64ea39.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5a6c8d4da6e423bd4147c3ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_e18414e521dee4518d74abe4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecd2fabee89bb1d3ae7859ed.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:33.120000px;}
.v2{vertical-align:38.880000px;}
.v6{vertical-align:72.120000px;}
.ls2c{letter-spacing:-1.026000px;}
.ls2d{letter-spacing:-0.984000px;}
.ls1c{letter-spacing:-0.870000px;}
.ls19{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.262200px;}
.ls1f{letter-spacing:-0.244800px;}
.ls1a{letter-spacing:-0.152400px;}
.ls8{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls18{letter-spacing:0.023040px;}
.ls26{letter-spacing:0.076800px;}
.ls1d{letter-spacing:0.090000px;}
.ls25{letter-spacing:0.100800px;}
.ls20{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.144720px;}
.ls16{letter-spacing:0.148800px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.198720px;}
.ls3{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.262200px;}
.ls22{letter-spacing:0.280800px;}
.ls2{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.372000px;}
.ls2b{letter-spacing:0.374400px;}
.ls12{letter-spacing:6.065280px;}
.ls11{letter-spacing:8.640000px;}
.ls21{letter-spacing:14.624640px;}
.lse{letter-spacing:16.865280px;}
.ls15{letter-spacing:18.198720px;}
.ls9{letter-spacing:25.505280px;}
.lsb{letter-spacing:29.105280px;}
.ls14{letter-spacing:32.778720px;}
.ls13{letter-spacing:39.161280px;}
.lsa{letter-spacing:39.905280px;}
.ls2e{letter-spacing:41.321280px;}
.ls2a{letter-spacing:41.345280px;}
.lsf{letter-spacing:45.665280px;}
.ls28{letter-spacing:47.105280px;}
.ls10{letter-spacing:49.265280px;}
.ls29{letter-spacing:50.705280px;}
.ls27{letter-spacing:175.823040px;}
.ls23{letter-spacing:196.560000px;}
.ls24{letter-spacing:245.178720px;}
.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;}
}
.ws6{word-spacing:-19.448640px;}
.ws4{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.405440px;}
.wsf{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.560000px;}
.wse{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.690000px;}
.ws1d{word-spacing:-15.576000px;}
.ws1c{word-spacing:-15.534000px;}
.ws8{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.710800px;}
.ws19{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.572800px;}
.ws15{word-spacing:-14.328000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws18{word-spacing:-10.987200px;}
.ws11{word-spacing:-10.984800px;}
.ws12{word-spacing:-10.761600px;}
.ws13{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.440000px;}
.ws14{word-spacing:-2.483280px;}
.ws9{word-spacing:0.000000px;}
.ws1b{word-spacing:22.731840px;}
.ws1a{word-spacing:57.639120px;}
._1d{margin-left:-5.701920px;}
._12{margin-left:-4.453680px;}
._11{margin-left:-3.340320px;}
._d{margin-left:-2.228160px;}
._0{margin-left:-1.126080px;}
._1{width:1.212240px;}
._2{width:2.258880px;}
._8{width:3.509280px;}
._c{width:4.541280px;}
._3{width:5.796720px;}
._9{width:7.649280px;}
._5{width:9.322560px;}
._4{width:10.517760px;}
._6{width:11.720400px;}
._7{width:12.908160px;}
._f{width:13.910400px;}
._10{width:15.120000px;}
._a{width:17.671920px;}
._b{width:18.908880px;}
._1e{width:20.035200px;}
._15{width:21.726720px;}
._14{width:22.919040px;}
._1f{width:24.629760px;}
._13{width:25.833600px;}
._16{width:40.558080px;}
._e{width:101.193600px;}
._18{width:174.240000px;}
._1c{width:196.560000px;}
._1b{width:201.576000px;}
._17{width:224.616000px;}
._19{width:908.264160px;}
._1a{width:1602.524160px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:6.300000px;}
.y75{bottom:6.480000px;}
.yab{bottom:7.740000px;}
.yb7{bottom:8.460000px;}
.y2{bottom:9.000000px;}
.ya4{bottom:9.180000px;}
.yb4{bottom:9.390000px;}
.y71{bottom:12.420000px;}
.yc3{bottom:13.320000px;}
.ybd{bottom:13.680000px;}
.yc5{bottom:14.760000px;}
.yba{bottom:14.940000px;}
.ybf{bottom:15.300000px;}
.yb9{bottom:15.660000px;}
.y72{bottom:18.405000px;}
.ya6{bottom:28.260000px;}
.ya9{bottom:29.520000px;}
.y4{bottom:68.580000px;}
.y6b{bottom:113.796000px;}
.ya1{bottom:114.156000px;}
.y8d{bottom:116.856000px;}
.yff{bottom:126.216000px;}
.ycd{bottom:128.916000px;}
.ya0{bottom:132.516000px;}
.y8c{bottom:135.216000px;}
.y6a{bottom:135.576000px;}
.yfe{bottom:147.996000px;}
.y3b{bottom:148.896000px;}
.ycc{bottom:150.690000px;}
.y69{bottom:157.350000px;}
.yfd{bottom:169.770000px;}
.y3a{bottom:170.670000px;}
.ycb{bottom:171.390000px;}
.y68{bottom:179.130000px;}
.yca{bottom:179.670000px;}
.yfc{bottom:191.730000px;}
.y39{bottom:192.630000px;}
.y67{bottom:201.090000px;}
.yc9{bottom:206.310000px;}
.yfb{bottom:213.510000px;}
.y38{bottom:214.410000px;}
.y66{bottom:222.870000px;}
.yc8{bottom:228.090000px;}
.yfa{bottom:235.290000px;}
.y37{bottom:236.190000px;}
.y65{bottom:244.650000px;}
.yc7{bottom:250.050000px;}
.yf9{bottom:257.070000px;}
.y36{bottom:257.970000px;}
.y64{bottom:266.430000px;}
.yc6{bottom:271.830000px;}
.yf8{bottom:279.030000px;}
.y35{bottom:279.930000px;}
.yc4{bottom:288.030000px;}
.y63{bottom:288.210000px;}
.yf7{bottom:300.810000px;}
.y34{bottom:301.710000px;}
.y62{bottom:310.170000px;}
.yc2{bottom:318.990000px;}
.yf6{bottom:322.590000px;}
.y33{bottom:323.490000px;}
.y61{bottom:331.950000px;}
.y8b{bottom:332.850000px;}
.yf5{bottom:344.415000px;}
.y32{bottom:345.315000px;}
.yc1{bottom:348.555000px;}
.y60{bottom:353.775000px;}
.y8a{bottom:354.675000px;}
.y9f{bottom:362.415000px;}
.yf4{bottom:366.195000px;}
.y31{bottom:367.095000px;}
.yc0{bottom:371.055000px;}
.y5f{bottom:375.555000px;}
.y89{bottom:376.455000px;}
.y9e{bottom:384.195000px;}
.y30{bottom:385.095000px;}
.yf3{bottom:388.155000px;}
.y5e{bottom:397.515000px;}
.y88{bottom:398.235000px;}
.y2f{bottom:398.955000px;}
.ybe{bottom:402.915000px;}
.y9d{bottom:406.155000px;}
.yf2{bottom:409.935000px;}
.y2e{bottom:416.595000px;}
.y5d{bottom:419.295000px;}
.y87{bottom:420.195000px;}
.y9c{bottom:427.935000px;}
.yf1{bottom:431.715000px;}
.ybc{bottom:434.415000px;}
.y2d{bottom:435.315000px;}
.y5c{bottom:441.075000px;}
.y86{bottom:441.975000px;}
.y9b{bottom:449.715000px;}
.y2c{bottom:452.595000px;}
.yf0{bottom:453.495000px;}
.y5b{bottom:462.855000px;}
.y85{bottom:463.755000px;}
.ybb{bottom:464.295000px;}
.y2b{bottom:469.875000px;}
.y9a{bottom:471.495000px;}
.yef{bottom:475.455000px;}
.y5a{bottom:484.635000px;}
.y84{bottom:485.535000px;}
.y2a{bottom:486.975000px;}
.y99{bottom:493.275000px;}
.yee{bottom:497.235000px;}
.y29{bottom:504.255000px;}
.y59{bottom:506.595000px;}
.y83{bottom:507.495000px;}
.y98{bottom:515.235000px;}
.yb8{bottom:518.115000px;}
.yed{bottom:519.015000px;}
.y28{bottom:521.535000px;}
.y58{bottom:528.375000px;}
.y82{bottom:529.275000px;}
.y97{bottom:537.015000px;}
.y27{bottom:538.815000px;}
.yec{bottom:540.795000px;}
.yb6{bottom:549.975000px;}
.y57{bottom:550.155000px;}
.y81{bottom:551.055000px;}
.y26{bottom:556.095000px;}
.y96{bottom:558.795000px;}
.yeb{bottom:562.575000px;}
.y56{bottom:571.935000px;}
.y80{bottom:572.835000px;}
.y25{bottom:573.375000px;}
.yb5{bottom:574.635000px;}
.y95{bottom:580.575000px;}
.yea{bottom:584.535000px;}
.y24{bottom:590.475000px;}
.y55{bottom:593.895000px;}
.y7f{bottom:594.615000px;}
.yb3{bottom:600.015000px;}
.y94{bottom:602.535000px;}
.ye9{bottom:606.345000px;}
.y23{bottom:607.785000px;}
.y54{bottom:615.705000px;}
.y7e{bottom:616.605000px;}
.y93{bottom:624.345000px;}
.y22{bottom:625.065000px;}
.yb2{bottom:625.605000px;}
.ye8{bottom:628.125000px;}
.y53{bottom:637.485000px;}
.y7d{bottom:638.385000px;}
.y21{bottom:642.345000px;}
.y92{bottom:646.125000px;}
.ye7{bottom:649.905000px;}
.yb1{bottom:650.985000px;}
.y52{bottom:659.265000px;}
.y20{bottom:659.625000px;}
.y7c{bottom:660.165000px;}
.y91{bottom:667.905000px;}
.ye6{bottom:671.865000px;}
.y1f{bottom:676.725000px;}
.y51{bottom:681.045000px;}
.y7b{bottom:681.945000px;}
.yb0{bottom:682.665000px;}
.y90{bottom:689.685000px;}
.ye5{bottom:693.645000px;}
.y1e{bottom:694.005000px;}
.y7a{bottom:698.145000px;}
.y50{bottom:703.005000px;}
.yaf{bottom:704.445000px;}
.y1d{bottom:711.285000px;}
.y8f{bottom:711.645000px;}
.ye4{bottom:715.425000px;}
.y79{bottom:720.825000px;}
.y4f{bottom:724.785000px;}
.yae{bottom:726.225000px;}
.y1c{bottom:728.565000px;}
.y8e{bottom:730.005000px;}
.ye3{bottom:737.205000px;}
.y78{bottom:743.325000px;}
.y1b{bottom:745.845000px;}
.y4e{bottom:746.565000px;}
.yad{bottom:748.185000px;}
.ye2{bottom:758.985000px;}
.y1a{bottom:763.125000px;}
.yac{bottom:764.385000px;}
.y77{bottom:766.005000px;}
.y4d{bottom:768.345000px;}
.y19{bottom:780.225000px;}
.ye1{bottom:780.945000px;}
.y76{bottom:788.505000px;}
.yaa{bottom:789.765000px;}
.y4c{bottom:790.125000px;}
.y18{bottom:797.505000px;}
.ye0{bottom:802.725000px;}
.y74{bottom:811.005000px;}
.y4b{bottom:812.085000px;}
.y17{bottom:814.785000px;}
.ydf{bottom:824.505000px;}
.y16{bottom:832.065000px;}
.y73{bottom:833.685000px;}
.y4a{bottom:833.865000px;}
.ya8{bottom:835.665000px;}
.yde{bottom:846.285000px;}
.y15{bottom:849.705000px;}
.y49{bottom:855.645000px;}
.y70{bottom:856.185000px;}
.ydd{bottom:868.065000px;}
.y14{bottom:868.245000px;}
.y48{bottom:877.470000px;}
.ya7{bottom:881.610000px;}
.y13{bottom:885.570000px;}
.ydc{bottom:890.070000px;}
.y6f{bottom:890.790000px;}
.y47{bottom:899.430000px;}
.y12{bottom:902.850000px;}
.ya5{bottom:906.810000px;}
.ydb{bottom:911.850000px;}
.y6e{bottom:913.290000px;}
.y11{bottom:920.130000px;}
.y46{bottom:921.210000px;}
.yda{bottom:933.630000px;}
.y6c{bottom:935.970000px;}
.y10{bottom:937.770000px;}
.y45{bottom:942.990000px;}
.ya3{bottom:951.270000px;}
.yd9{bottom:955.410000px;}
.yf{bottom:956.670000px;}
.y44{bottom:964.770000px;}
.yd7{bottom:974.130000px;}
.ye{bottom:975.750000px;}
.ya2{bottom:976.830000px;}
.yd6{bottom:982.410000px;}
.yd8{bottom:983.130000px;}
.y43{bottom:986.550000px;}
.yd{bottom:994.650000px;}
.yd5{bottom:1008.330000px;}
.y42{bottom:1008.510000px;}
.yc{bottom:1014.090000px;}
.yd4{bottom:1030.110000px;}
.y41{bottom:1030.290000px;}
.yb{bottom:1036.590000px;}
.yd3{bottom:1050.810000px;}
.y40{bottom:1052.070000px;}
.ya{bottom:1057.290000px;}
.yd2{bottom:1059.090000px;}
.y9{bottom:1071.870000px;}
.y3f{bottom:1073.850000px;}
.yd1{bottom:1085.910000px;}
.y8{bottom:1089.150000px;}
.y3e{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.yd0{bottom:1107.690000px;}
.y3d{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.ycf{bottom:1126.230000px;}
.yce{bottom:1134.510000px;}
.y3c{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1166.400000px;}
.y1{bottom:1182.060000px;}
.h15{height:2.010938px;}
.h13{height:21.780000px;}
.h16{height:21.960000px;}
.h1d{height:23.940000px;}
.h17{height:24.480000px;}
.h18{height:24.660000px;}
.h1c{height:24.876000px;}
.h2{height:27.720000px;}
.h22{height:28.836000px;}
.h20{height:29.160000px;}
.h23{height:30.240000px;}
.h1f{height:30.420000px;}
.h21{height:30.780000px;}
.h1e{height:31.140000px;}
.h11{height:33.683203px;}
.h14{height:33.876000px;}
.h8{height:34.036523px;}
.h5{height:36.768867px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.he{height:43.156758px;}
.h19{height:43.740000px;}
.h1b{height:45.000000px;}
.h1a{height:45.036000px;}
.hf{height:45.549492px;}
.h7{height:46.251562px;}
.h10{height:46.736719px;}
.hd{height:47.836406px;}
.h12{height:48.224531px;}
.ha{height:50.488594px;}
.h3{height:50.520937px;}
.hb{height:53.224453px;}
.h9{height:54.864844px;}
.h2b{height:55.825312px;}
.h4{height:65.884219px;}
.h2a{height:79.371562px;}
.h24{height:79.535391px;}
.h27{height:79.655391px;}
.h29{height:88.945312px;}
.h26{height:91.105312px;}
.h25{height:112.655391px;}
.h28{height:112.775391px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.we{width:147.636000px;}
.w9{width:148.500000px;}
.w6{width:164.700000px;}
.w8{width:165.810000px;}
.w7{width:168.150000px;}
.w5{width:173.010000px;}
.wc{width:261.930000px;}
.wd{width:264.990000px;}
.wb{width:338.475000px;}
.wa{width:340.590000px;}
.w3{width:627.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x1d{left:14.400000px;}
.x20{left:17.280000px;}
.x19{left:21.060000px;}
.x22{left:25.920000px;}
.x36{left:33.345000px;}
.x18{left:36.180000px;}
.x37{left:37.485000px;}
.x24{left:42.294000px;}
.x1b{left:46.830000px;}
.x16{left:51.510000px;}
.x21{left:56.010000px;}
.x23{left:59.394000px;}
.x32{left:63.354000px;}
.x25{left:64.434000px;}
.x13{left:66.774000px;}
.x1c{left:72.405000px;}
.x1a{left:74.160000px;}
.x1f{left:86.394000px;}
.x35{left:96.330000px;}
.x30{left:98.274000px;}
.x2e{left:100.794000px;}
.x1{left:108.036000px;}
.x12{left:110.556000px;}
.x31{left:111.636000px;}
.x1e{left:118.296000px;}
.xb{left:120.815987px;}
.x8{left:122.255987px;}
.x29{left:129.275987px;}
.x2f{left:133.050000px;}
.x10{left:135.035987px;}
.x2a{left:140.075987px;}
.xd{left:142.235987px;}
.x3f{left:144.935987px;}
.x6{left:146.015987px;}
.x3{left:161.130000px;}
.x38{left:162.569987px;}
.x26{left:168.329987px;}
.x11{left:172.649987px;}
.xa{left:204.689987px;}
.x2c{left:216.029987px;}
.x3b{left:266.069987px;}
.x39{left:277.229987px;}
.x3d{left:281.954987px;}
.x14{left:284.295000px;}
.x7{left:289.334987px;}
.x27{left:296.894987px;}
.xe{left:365.834987px;}
.x33{left:374.295000px;}
.x9{left:393.554987px;}
.xc{left:417.314987px;}
.xf{left:420.734987px;}
.x3a{left:428.474987px;}
.x3e{left:437.654987px;}
.x5{left:446.474987px;}
.x15{left:449.715000px;}
.x2b{left:461.954987px;}
.x2d{left:472.604987px;}
.x3c{left:479.804987px;}
.x17{left:618.585000px;}
.x34{left:640.005000px;}
.x28{left:651.884987px;}
@media print{
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:29.440000pt;}
.v2{vertical-align:34.560000pt;}
.v6{vertical-align:64.106667pt;}
.ls2c{letter-spacing:-0.912000pt;}
.ls2d{letter-spacing:-0.874667pt;}
.ls1c{letter-spacing:-0.773333pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls1f{letter-spacing:-0.217600pt;}
.ls1a{letter-spacing:-0.135467pt;}
.ls8{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls18{letter-spacing:0.020480pt;}
.ls26{letter-spacing:0.068267pt;}
.ls1d{letter-spacing:0.080000pt;}
.ls25{letter-spacing:0.089600pt;}
.ls20{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.128640pt;}
.ls16{letter-spacing:0.132267pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.176640pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.233067pt;}
.ls22{letter-spacing:0.249600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.330667pt;}
.ls2b{letter-spacing:0.332800pt;}
.ls12{letter-spacing:5.391360pt;}
.ls11{letter-spacing:7.680000pt;}
.ls21{letter-spacing:12.999680pt;}
.lse{letter-spacing:14.991360pt;}
.ls15{letter-spacing:16.176640pt;}
.ls9{letter-spacing:22.671360pt;}
.lsb{letter-spacing:25.871360pt;}
.ls14{letter-spacing:29.136640pt;}
.ls13{letter-spacing:34.810027pt;}
.lsa{letter-spacing:35.471360pt;}
.ls2e{letter-spacing:36.730027pt;}
.ls2a{letter-spacing:36.751360pt;}
.lsf{letter-spacing:40.591360pt;}
.ls28{letter-spacing:41.871360pt;}
.ls10{letter-spacing:43.791360pt;}
.ls29{letter-spacing:45.071360pt;}
.ls27{letter-spacing:156.287147pt;}
.ls23{letter-spacing:174.720000pt;}
.ls24{letter-spacing:217.936640pt;}
.ws6{word-spacing:-17.287680pt;}
.ws4{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.249280pt;}
.wsf{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.946667pt;}
.ws1d{word-spacing:-13.845333pt;}
.ws1c{word-spacing:-13.808000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.076267pt;}
.ws19{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.953600pt;}
.ws15{word-spacing:-12.736000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws18{word-spacing:-9.766400pt;}
.ws11{word-spacing:-9.764267pt;}
.ws12{word-spacing:-9.565867pt;}
.ws13{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.280000pt;}
.ws14{word-spacing:-2.207360pt;}
.ws9{word-spacing:0.000000pt;}
.ws1b{word-spacing:20.206080pt;}
.ws1a{word-spacing:51.234773pt;}
._1d{margin-left:-5.068373pt;}
._12{margin-left:-3.958827pt;}
._11{margin-left:-2.969173pt;}
._d{margin-left:-1.980587pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.077547pt;}
._2{width:2.007893pt;}
._8{width:3.119360pt;}
._c{width:4.036693pt;}
._3{width:5.152640pt;}
._9{width:6.799360pt;}
._5{width:8.286720pt;}
._4{width:9.349120pt;}
._6{width:10.418133pt;}
._7{width:11.473920pt;}
._f{width:12.364800pt;}
._10{width:13.440000pt;}
._a{width:15.708373pt;}
._b{width:16.807893pt;}
._1e{width:17.809067pt;}
._15{width:19.312640pt;}
._14{width:20.372480pt;}
._1f{width:21.893120pt;}
._13{width:22.963200pt;}
._16{width:36.051627pt;}
._e{width:89.949867pt;}
._18{width:154.880000pt;}
._1c{width:174.720000pt;}
._1b{width:179.178667pt;}
._17{width:199.658667pt;}
._19{width:807.345920pt;}
._1a{width:1424.465920pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:5.600000pt;}
.y75{bottom:5.760000pt;}
.yab{bottom:6.880000pt;}
.yb7{bottom:7.520000pt;}
.y2{bottom:8.000000pt;}
.ya4{bottom:8.160000pt;}
.yb4{bottom:8.346667pt;}
.y71{bottom:11.040000pt;}
.yc3{bottom:11.840000pt;}
.ybd{bottom:12.160000pt;}
.yc5{bottom:13.120000pt;}
.yba{bottom:13.280000pt;}
.ybf{bottom:13.600000pt;}
.yb9{bottom:13.920000pt;}
.y72{bottom:16.360000pt;}
.ya6{bottom:25.120000pt;}
.ya9{bottom:26.240000pt;}
.y4{bottom:60.960000pt;}
.y6b{bottom:101.152000pt;}
.ya1{bottom:101.472000pt;}
.y8d{bottom:103.872000pt;}
.yff{bottom:112.192000pt;}
.ycd{bottom:114.592000pt;}
.ya0{bottom:117.792000pt;}
.y8c{bottom:120.192000pt;}
.y6a{bottom:120.512000pt;}
.yfe{bottom:131.552000pt;}
.y3b{bottom:132.352000pt;}
.ycc{bottom:133.946667pt;}
.y69{bottom:139.866667pt;}
.yfd{bottom:150.906667pt;}
.y3a{bottom:151.706667pt;}
.ycb{bottom:152.346667pt;}
.y68{bottom:159.226667pt;}
.yca{bottom:159.706667pt;}
.yfc{bottom:170.426667pt;}
.y39{bottom:171.226667pt;}
.y67{bottom:178.746667pt;}
.yc9{bottom:183.386667pt;}
.yfb{bottom:189.786667pt;}
.y38{bottom:190.586667pt;}
.y66{bottom:198.106667pt;}
.yc8{bottom:202.746667pt;}
.yfa{bottom:209.146667pt;}
.y37{bottom:209.946667pt;}
.y65{bottom:217.466667pt;}
.yc7{bottom:222.266667pt;}
.yf9{bottom:228.506667pt;}
.y36{bottom:229.306667pt;}
.y64{bottom:236.826667pt;}
.yc6{bottom:241.626667pt;}
.yf8{bottom:248.026667pt;}
.y35{bottom:248.826667pt;}
.yc4{bottom:256.026667pt;}
.y63{bottom:256.186667pt;}
.yf7{bottom:267.386667pt;}
.y34{bottom:268.186667pt;}
.y62{bottom:275.706667pt;}
.yc2{bottom:283.546667pt;}
.yf6{bottom:286.746667pt;}
.y33{bottom:287.546667pt;}
.y61{bottom:295.066667pt;}
.y8b{bottom:295.866667pt;}
.yf5{bottom:306.146667pt;}
.y32{bottom:306.946667pt;}
.yc1{bottom:309.826667pt;}
.y60{bottom:314.466667pt;}
.y8a{bottom:315.266667pt;}
.y9f{bottom:322.146667pt;}
.yf4{bottom:325.506667pt;}
.y31{bottom:326.306667pt;}
.yc0{bottom:329.826667pt;}
.y5f{bottom:333.826667pt;}
.y89{bottom:334.626667pt;}
.y9e{bottom:341.506667pt;}
.y30{bottom:342.306667pt;}
.yf3{bottom:345.026667pt;}
.y5e{bottom:353.346667pt;}
.y88{bottom:353.986667pt;}
.y2f{bottom:354.626667pt;}
.ybe{bottom:358.146667pt;}
.y9d{bottom:361.026667pt;}
.yf2{bottom:364.386667pt;}
.y2e{bottom:370.306667pt;}
.y5d{bottom:372.706667pt;}
.y87{bottom:373.506667pt;}
.y9c{bottom:380.386667pt;}
.yf1{bottom:383.746667pt;}
.ybc{bottom:386.146667pt;}
.y2d{bottom:386.946667pt;}
.y5c{bottom:392.066667pt;}
.y86{bottom:392.866667pt;}
.y9b{bottom:399.746667pt;}
.y2c{bottom:402.306667pt;}
.yf0{bottom:403.106667pt;}
.y5b{bottom:411.426667pt;}
.y85{bottom:412.226667pt;}
.ybb{bottom:412.706667pt;}
.y2b{bottom:417.666667pt;}
.y9a{bottom:419.106667pt;}
.yef{bottom:422.626667pt;}
.y5a{bottom:430.786667pt;}
.y84{bottom:431.586667pt;}
.y2a{bottom:432.866667pt;}
.y99{bottom:438.466667pt;}
.yee{bottom:441.986667pt;}
.y29{bottom:448.226667pt;}
.y59{bottom:450.306667pt;}
.y83{bottom:451.106667pt;}
.y98{bottom:457.986667pt;}
.yb8{bottom:460.546667pt;}
.yed{bottom:461.346667pt;}
.y28{bottom:463.586667pt;}
.y58{bottom:469.666667pt;}
.y82{bottom:470.466667pt;}
.y97{bottom:477.346667pt;}
.y27{bottom:478.946667pt;}
.yec{bottom:480.706667pt;}
.yb6{bottom:488.866667pt;}
.y57{bottom:489.026667pt;}
.y81{bottom:489.826667pt;}
.y26{bottom:494.306667pt;}
.y96{bottom:496.706667pt;}
.yeb{bottom:500.066667pt;}
.y56{bottom:508.386667pt;}
.y80{bottom:509.186667pt;}
.y25{bottom:509.666667pt;}
.yb5{bottom:510.786667pt;}
.y95{bottom:516.066667pt;}
.yea{bottom:519.586667pt;}
.y24{bottom:524.866667pt;}
.y55{bottom:527.906667pt;}
.y7f{bottom:528.546667pt;}
.yb3{bottom:533.346667pt;}
.y94{bottom:535.586667pt;}
.ye9{bottom:538.973333pt;}
.y23{bottom:540.253333pt;}
.y54{bottom:547.293333pt;}
.y7e{bottom:548.093333pt;}
.y93{bottom:554.973333pt;}
.y22{bottom:555.613333pt;}
.yb2{bottom:556.093333pt;}
.ye8{bottom:558.333333pt;}
.y53{bottom:566.653333pt;}
.y7d{bottom:567.453333pt;}
.y21{bottom:570.973333pt;}
.y92{bottom:574.333333pt;}
.ye7{bottom:577.693333pt;}
.yb1{bottom:578.653333pt;}
.y52{bottom:586.013333pt;}
.y20{bottom:586.333333pt;}
.y7c{bottom:586.813333pt;}
.y91{bottom:593.693333pt;}
.ye6{bottom:597.213333pt;}
.y1f{bottom:601.533333pt;}
.y51{bottom:605.373333pt;}
.y7b{bottom:606.173333pt;}
.yb0{bottom:606.813333pt;}
.y90{bottom:613.053333pt;}
.ye5{bottom:616.573333pt;}
.y1e{bottom:616.893333pt;}
.y7a{bottom:620.573333pt;}
.y50{bottom:624.893333pt;}
.yaf{bottom:626.173333pt;}
.y1d{bottom:632.253333pt;}
.y8f{bottom:632.573333pt;}
.ye4{bottom:635.933333pt;}
.y79{bottom:640.733333pt;}
.y4f{bottom:644.253333pt;}
.yae{bottom:645.533333pt;}
.y1c{bottom:647.613333pt;}
.y8e{bottom:648.893333pt;}
.ye3{bottom:655.293333pt;}
.y78{bottom:660.733333pt;}
.y1b{bottom:662.973333pt;}
.y4e{bottom:663.613333pt;}
.yad{bottom:665.053333pt;}
.ye2{bottom:674.653333pt;}
.y1a{bottom:678.333333pt;}
.yac{bottom:679.453333pt;}
.y77{bottom:680.893333pt;}
.y4d{bottom:682.973333pt;}
.y19{bottom:693.533333pt;}
.ye1{bottom:694.173333pt;}
.y76{bottom:700.893333pt;}
.yaa{bottom:702.013333pt;}
.y4c{bottom:702.333333pt;}
.y18{bottom:708.893333pt;}
.ye0{bottom:713.533333pt;}
.y74{bottom:720.893333pt;}
.y4b{bottom:721.853333pt;}
.y17{bottom:724.253333pt;}
.ydf{bottom:732.893333pt;}
.y16{bottom:739.613333pt;}
.y73{bottom:741.053333pt;}
.y4a{bottom:741.213333pt;}
.ya8{bottom:742.813333pt;}
.yde{bottom:752.253333pt;}
.y15{bottom:755.293333pt;}
.y49{bottom:760.573333pt;}
.y70{bottom:761.053333pt;}
.ydd{bottom:771.613333pt;}
.y14{bottom:771.773333pt;}
.y48{bottom:779.973333pt;}
.ya7{bottom:783.653333pt;}
.y13{bottom:787.173333pt;}
.ydc{bottom:791.173333pt;}
.y6f{bottom:791.813333pt;}
.y47{bottom:799.493333pt;}
.y12{bottom:802.533333pt;}
.ya5{bottom:806.053333pt;}
.ydb{bottom:810.533333pt;}
.y6e{bottom:811.813333pt;}
.y11{bottom:817.893333pt;}
.y46{bottom:818.853333pt;}
.yda{bottom:829.893333pt;}
.y6c{bottom:831.973333pt;}
.y10{bottom:833.573333pt;}
.y45{bottom:838.213333pt;}
.ya3{bottom:845.573333pt;}
.yd9{bottom:849.253333pt;}
.yf{bottom:850.373333pt;}
.y44{bottom:857.573333pt;}
.yd7{bottom:865.893333pt;}
.ye{bottom:867.333333pt;}
.ya2{bottom:868.293333pt;}
.yd6{bottom:873.253333pt;}
.yd8{bottom:873.893333pt;}
.y43{bottom:876.933333pt;}
.yd{bottom:884.133333pt;}
.yd5{bottom:896.293333pt;}
.y42{bottom:896.453333pt;}
.yc{bottom:901.413333pt;}
.yd4{bottom:915.653333pt;}
.y41{bottom:915.813333pt;}
.yb{bottom:921.413333pt;}
.yd3{bottom:934.053333pt;}
.y40{bottom:935.173333pt;}
.ya{bottom:939.813333pt;}
.yd2{bottom:941.413333pt;}
.y9{bottom:952.773333pt;}
.y3f{bottom:954.533333pt;}
.yd1{bottom:965.253333pt;}
.y8{bottom:968.133333pt;}
.y3e{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.yd0{bottom:984.613333pt;}
.y3d{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.ycf{bottom:1001.093333pt;}
.yce{bottom:1008.453333pt;}
.y3c{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1036.800000pt;}
.y1{bottom:1050.720000pt;}
.h15{height:1.787500pt;}
.h13{height:19.360000pt;}
.h16{height:19.520000pt;}
.h1d{height:21.280000pt;}
.h17{height:21.760000pt;}
.h18{height:21.920000pt;}
.h1c{height:22.112000pt;}
.h2{height:24.640000pt;}
.h22{height:25.632000pt;}
.h20{height:25.920000pt;}
.h23{height:26.880000pt;}
.h1f{height:27.040000pt;}
.h21{height:27.360000pt;}
.h1e{height:27.680000pt;}
.h11{height:29.940625pt;}
.h14{height:30.112000pt;}
.h8{height:30.254687pt;}
.h5{height:32.683437pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.he{height:38.361562pt;}
.h19{height:38.880000pt;}
.h1b{height:40.000000pt;}
.h1a{height:40.032000pt;}
.hf{height:40.488438pt;}
.h7{height:41.112500pt;}
.h10{height:41.543750pt;}
.hd{height:42.521250pt;}
.h12{height:42.866250pt;}
.ha{height:44.878750pt;}
.h3{height:44.907500pt;}
.hb{height:47.310625pt;}
.h9{height:48.768750pt;}
.h2b{height:49.622500pt;}
.h4{height:58.563750pt;}
.h2a{height:70.552500pt;}
.h24{height:70.698125pt;}
.h27{height:70.804792pt;}
.h29{height:79.062500pt;}
.h26{height:80.982500pt;}
.h25{height:100.138125pt;}
.h28{height:100.244792pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.we{width:131.232000pt;}
.w9{width:132.000000pt;}
.w6{width:146.400000pt;}
.w8{width:147.386667pt;}
.w7{width:149.466667pt;}
.w5{width:153.786667pt;}
.wc{width:232.826667pt;}
.wd{width:235.546667pt;}
.wb{width:300.866667pt;}
.wa{width:302.746667pt;}
.w3{width:557.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x1d{left:12.800000pt;}
.x20{left:15.360000pt;}
.x19{left:18.720000pt;}
.x22{left:23.040000pt;}
.x36{left:29.640000pt;}
.x18{left:32.160000pt;}
.x37{left:33.320000pt;}
.x24{left:37.594667pt;}
.x1b{left:41.626667pt;}
.x16{left:45.786667pt;}
.x21{left:49.786667pt;}
.x23{left:52.794667pt;}
.x32{left:56.314667pt;}
.x25{left:57.274667pt;}
.x13{left:59.354667pt;}
.x1c{left:64.360000pt;}
.x1a{left:65.920000pt;}
.x1f{left:76.794667pt;}
.x35{left:85.626667pt;}
.x30{left:87.354667pt;}
.x2e{left:89.594667pt;}
.x1{left:96.032000pt;}
.x12{left:98.272000pt;}
.x31{left:99.232000pt;}
.x1e{left:105.152000pt;}
.xb{left:107.391988pt;}
.x8{left:108.671988pt;}
.x29{left:114.911988pt;}
.x2f{left:118.266667pt;}
.x10{left:120.031988pt;}
.x2a{left:124.511988pt;}
.xd{left:126.431988pt;}
.x3f{left:128.831988pt;}
.x6{left:129.791988pt;}
.x3{left:143.226667pt;}
.x38{left:144.506655pt;}
.x26{left:149.626655pt;}
.x11{left:153.466655pt;}
.xa{left:181.946655pt;}
.x2c{left:192.026655pt;}
.x3b{left:236.506655pt;}
.x39{left:246.426655pt;}
.x3d{left:250.626655pt;}
.x14{left:252.706667pt;}
.x7{left:257.186655pt;}
.x27{left:263.906655pt;}
.xe{left:325.186655pt;}
.x33{left:332.706667pt;}
.x9{left:349.826655pt;}
.xc{left:370.946655pt;}
.xf{left:373.986655pt;}
.x3a{left:380.866655pt;}
.x3e{left:389.026655pt;}
.x5{left:396.866655pt;}
.x15{left:399.746667pt;}
.x2b{left:410.626655pt;}
.x2d{left:420.093322pt;}
.x3c{left:426.493322pt;}
.x17{left:549.853333pt;}
.x34{left:568.893333pt;}
.x28{left:579.453322pt;}
}




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