
    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_4fe0e7d90d3e4d89a020e6ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_1bafa8ede02393e08c3c8bd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0dc6ba21ff85a66aa6901b83.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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;}
.lse{letter-spacing:-0.197640px;}
.ls6{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.131760px;}
.ls7{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.065880px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.065880px;}
.ls1{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.119880px;}
.lsa{letter-spacing:0.131760px;}
.ls2{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.192240px;}
.lsd{letter-spacing:0.197640px;}
.lsc{letter-spacing:0.263520px;}
.ls8{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.461160px;}
.ls11{letter-spacing:0.724680px;}
.lsf{letter-spacing:0.922320px;}
.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;}
}
.ws1{word-spacing:-21.915360px;}
.wse{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.344000px;}
.ws4{word-spacing:-16.272000px;}
.wsd{word-spacing:-16.200000px;}
.ws3{word-spacing:-16.128000px;}
.ws13{word-spacing:-15.020640px;}
.ws0{word-spacing:-14.954760px;}
.ws12{word-spacing:-14.888880px;}
.ws11{word-spacing:-14.823000px;}
.ws14{word-spacing:-14.757120px;}
.ws1c{word-spacing:-14.691240px;}
.wsc{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.263520px;}
.ws6{word-spacing:-0.239760px;}
.ws9{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.131760px;}
.wsb{word-spacing:-0.072000px;}
.ws7{word-spacing:-0.065880px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:0.065880px;}
.ws8{word-spacing:0.072000px;}
.ws19{word-spacing:0.131760px;}
.ws1a{word-spacing:0.144000px;}
.ws3a{word-spacing:0.197640px;}
.ws3b{word-spacing:0.216000px;}
.ws17{word-spacing:0.263520px;}
.wsf{word-spacing:0.432000px;}
.ws26{word-spacing:0.790560px;}
.ws27{word-spacing:0.922320px;}
.ws1e{word-spacing:1.515240px;}
.ws1f{word-spacing:2.371680px;}
.ws2b{word-spacing:2.635200px;}
.ws22{word-spacing:4.282200px;}
.ws2e{word-spacing:5.468040px;}
.ws23{word-spacing:5.863320px;}
.ws2a{word-spacing:7.115040px;}
.ws32{word-spacing:9.618480px;}
.ws20{word-spacing:9.816120px;}
.ws21{word-spacing:10.013760px;}
.ws39{word-spacing:10.145520px;}
.ws38{word-spacing:10.343160px;}
.ws30{word-spacing:11.265480px;}
.ws2f{word-spacing:11.463120px;}
.ws24{word-spacing:12.187800px;}
.ws2d{word-spacing:12.714840px;}
.ws37{word-spacing:13.044240px;}
.ws31{word-spacing:16.404120px;}
.ws33{word-spacing:16.997040px;}
.ws25{word-spacing:17.392320px;}
.ws29{word-spacing:17.589960px;}
.ws1d{word-spacing:18.578160px;}
.ws36{word-spacing:34.784640px;}
.ws35{word-spacing:34.850520px;}
.ws34{word-spacing:35.377560px;}
.ws2c{word-spacing:42.229080px;}
.ws28{word-spacing:50.661720px;}
._4{margin-left:-2.887560px;}
._0{margin-left:-1.078920px;}
._1{width:1.008000px;}
._3{width:67.680000px;}
._2{width:313.173720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y14f{bottom:63.493740px;}
.y1c4{bottom:71.370000px;}
.y79{bottom:75.420000px;}
.ybc{bottom:76.140000px;}
.y170{bottom:77.940000px;}
.y134{bottom:78.483420px;}
.y18d{bottom:86.400000px;}
.y14e{bottom:86.617620px;}
.y29{bottom:87.930000px;}
.y1bb{bottom:91.440000px;}
.y1c3{bottom:96.660000px;}
.y78{bottom:100.620000px;}
.ybb{bottom:101.430000px;}
.y133{bottom:101.706120px;}
.y16f{bottom:103.230000px;}
.ya0{bottom:106.110000px;}
.y10a{bottom:108.621090px;}
.y28{bottom:109.890000px;}
.y18c{bottom:111.690000px;}
.ye0{bottom:114.355890px;}
.y1ba{bottom:116.730000px;}
.y14d{bottom:124.778610px;}
.y132{bottom:124.830000px;}
.y77{bottom:125.910000px;}
.yba{bottom:126.630000px;}
.y16e{bottom:128.520000px;}
.y9f{bottom:131.400000px;}
.y109{bottom:131.744970px;}
.y27{bottom:131.850000px;}
.y18b{bottom:136.890000px;}
.y51{bottom:137.610000px;}
.y1b9{bottom:142.020000px;}
.y14c{bottom:148.001310px;}
.yb9{bottom:151.920000px;}
.ydf{bottom:152.516880px;}
.y26{bottom:153.810000px;}
.y108{bottom:154.967670px;}
.y9e{bottom:156.690000px;}
.y18a{bottom:162.180000px;}
.y50{bottom:162.900000px;}
.y131{bottom:163.800000px;}
.y16d{bottom:168.750000px;}
.y14b{bottom:171.125190px;}
.yde{bottom:175.739580px;}
.y25{bottom:175.860000px;}
.yb8{bottom:177.210000px;}
.y9d{bottom:181.890000px;}
.y1b8{bottom:182.250000px;}
.y76{bottom:184.770000px;}
.y189{bottom:187.470000px;}
.y4f{bottom:188.190000px;}
.y130{bottom:188.372700px;}
.y107{bottom:193.128660px;}
.y16c{bottom:194.040000px;}
.y14a{bottom:194.249070px;}
.y24{bottom:197.820000px;}
.ydd{bottom:198.863460px;}
.yb7{bottom:202.500000px;}
.y75{bottom:206.730000px;}
.y9c{bottom:207.180000px;}
.y1b7{bottom:207.540000px;}
.y12f{bottom:211.496580px;}
.y188{bottom:212.760000px;}
.y4e{bottom:213.480000px;}
.y106{bottom:216.252540px;}
.y16b{bottom:219.330000px;}
.y23{bottom:219.780000px;}
.ydc{bottom:222.086160px;}
.y74{bottom:228.690000px;}
.y149{bottom:232.410060px;}
.y9b{bottom:232.470000px;}
.y1b6{bottom:232.830000px;}
.y12e{bottom:234.719280px;}
.y1c2{bottom:238.050000px;}
.y105{bottom:239.475240px;}
.y22{bottom:241.740000px;}
.yb6{bottom:242.730000px;}
.y16a{bottom:244.620000px;}
.ydb{bottom:245.210040px;}
.y187{bottom:252.990000px;}
.y4d{bottom:253.710000px;}
.y148{bottom:255.632760px;}
.y9a{bottom:257.760000px;}
.y12d{bottom:257.843160px;}
.y1b5{bottom:258.120000px;}
.y104{bottom:262.599120px;}
.y1c1{bottom:263.250000px;}
.y21{bottom:263.700000px;}
.yb5{bottom:268.020000px;}
.yda{bottom:268.333920px;}
.y73{bottom:269.100000px;}
.y169{bottom:269.820000px;}
.y186{bottom:278.280000px;}
.y147{bottom:278.756640px;}
.y4c{bottom:279.000000px;}
.y12c{bottom:280.967040px;}
.y99{bottom:283.050000px;}
.y20{bottom:285.660000px;}
.y103{bottom:285.723000px;}
.yd9{bottom:291.556620px;}
.yb4{bottom:293.310000px;}
.y1b4{bottom:298.350000px;}
.y146{bottom:301.880520px;}
.y185{bottom:303.570000px;}
.y12b{bottom:304.189740px;}
.y4b{bottom:304.290000px;}
.y1f{bottom:307.620000px;}
.y98{bottom:308.250000px;}
.y102{bottom:308.945700px;}
.y72{bottom:309.330000px;}
.y168{bottom:310.140000px;}
.yb3{bottom:318.510000px;}
.y1b3{bottom:320.220000px;}
.y145{bottom:325.103220px;}
.y12a{bottom:327.313620px;}
.y184{bottom:328.770000px;}
.y1e{bottom:329.670000px;}
.yd8{bottom:329.717610px;}
.y101{bottom:332.069580px;}
.y97{bottom:333.540000px;}
.y167{bottom:335.430000px;}
.y1b2{bottom:342.180000px;}
.yb2{bottom:343.800000px;}
.y4a{bottom:344.520000px;}
.y71{bottom:348.892020px;}
.y129{bottom:350.437500px;}
.y1d{bottom:351.630000px;}
.yd7{bottom:352.841490px;}
.y183{bottom:354.060000px;}
.y96{bottom:358.830000px;}
.y166{bottom:360.630000px;}
.y144{bottom:363.264210px;}
.y1b1{bottom:364.140000px;}
.yb1{bottom:369.090000px;}
.y49{bottom:369.810000px;}
.y100{bottom:370.230570px;}
.y70{bottom:372.114720px;}
.y1c{bottom:373.590000px;}
.y128{bottom:373.660200px;}
.yd6{bottom:375.965370px;}
.y182{bottom:379.350000px;}
.y95{bottom:384.120000px;}
.y165{bottom:385.920000px;}
.y1b0{bottom:386.190000px;}
.y143{bottom:386.388090px;}
.yff{bottom:393.354450px;}
.yb0{bottom:394.380000px;}
.y48{bottom:395.100000px;}
.y6f{bottom:395.238600px;}
.y1b{bottom:395.550000px;}
.y127{bottom:396.784080px;}
.yd5{bottom:399.188070px;}
.y1c0{bottom:404.640000px;}
.y1af{bottom:408.150000px;}
.y94{bottom:409.320000px;}
.y142{bottom:409.511970px;}
.y164{bottom:411.210000px;}
.yfe{bottom:416.577150px;}
.y1a{bottom:417.510000px;}
.yaf{bottom:419.580000px;}
.y126{bottom:420.006780px;}
.y47{bottom:420.300000px;}
.yd4{bottom:422.311950px;}
.y1ae{bottom:430.110000px;}
.y141{bottom:432.734670px;}
.y6e{bottom:433.399590px;}
.y163{bottom:436.500000px;}
.y19{bottom:439.470000px;}
.yfd{bottom:439.701030px;}
.y125{bottom:443.130660px;}
.y181{bottom:444.870000px;}
.y93{bottom:449.640000px;}
.y1ad{bottom:452.070000px;}
.y140{bottom:455.858550px;}
.y6d{bottom:456.523470px;}
.yae{bottom:459.900000px;}
.yd3{bottom:460.472940px;}
.y46{bottom:460.620000px;}
.y18{bottom:461.430000px;}
.y162{bottom:461.700000px;}
.y124{bottom:466.254540px;}
.y180{bottom:470.160000px;}
.y1ac{bottom:474.030000px;}
.y92{bottom:474.930000px;}
.yfc{bottom:477.862020px;}
.y13f{bottom:479.081250px;}
.y6c{bottom:479.746170px;}
.y17{bottom:483.480000px;}
.yd2{bottom:483.695640px;}
.yad{bottom:485.190000px;}
.y45{bottom:485.910000px;}
.y161{bottom:486.990000px;}
.y123{bottom:489.477240px;}
.y17f{bottom:495.450000px;}
.y1ab{bottom:495.990000px;}
.y91{bottom:500.130000px;}
.yfb{bottom:501.084720px;}
.y6b{bottom:502.870050px;}
.y16{bottom:505.440000px;}
.yd1{bottom:506.819520px;}
.yac{bottom:510.390000px;}
.y44{bottom:511.110000px;}
.y122{bottom:512.601120px;}
.y13e{bottom:517.242240px;}
.y1aa{bottom:517.950000px;}
.yfa{bottom:524.208600px;}
.y90{bottom:525.420000px;}
.y6a{bottom:525.993930px;}
.y160{bottom:527.310000px;}
.y15{bottom:527.400000px;}
.yd0{bottom:529.943400px;}
.yab{bottom:535.680000px;}
.y121{bottom:535.725000px;}
.y43{bottom:536.400000px;}
.y1a9{bottom:539.910000px;}
.y13d{bottom:540.366120px;}
.yf9{bottom:547.332480px;}
.y14{bottom:549.360000px;}
.y8f{bottom:550.710000px;}
.y15f{bottom:552.510000px;}
.y120{bottom:558.947700px;}
.yaa{bottom:560.970000px;}
.y42{bottom:561.690000px;}
.y1a8{bottom:561.960000px;}
.y13c{bottom:563.490000px;}
.y69{bottom:564.154920px;}
.ycf{bottom:568.104390px;}
.yf8{bottom:570.555180px;}
.y13{bottom:571.320000px;}
.y15e{bottom:577.800000px;}
.y11f{bottom:582.071580px;}
.y1a7{bottom:583.920000px;}
.y17e{bottom:586.260000px;}
.y68{bottom:587.377620px;}
.y8e{bottom:590.940000px;}
.yce{bottom:591.327090px;}
.y12{bottom:593.280000px;}
.yf7{bottom:593.679060px;}
.ya9{bottom:601.200000px;}
.y13b{bottom:601.653420px;}
.y41{bottom:601.920000px;}
.y11e{bottom:605.294280px;}
.y1a6{bottom:605.880000px;}
.y67{bottom:610.501500px;}
.y17d{bottom:611.460000px;}
.ycd{bottom:614.450970px;}
.y11{bottom:615.240000px;}
.y8d{bottom:616.230000px;}
.y15d{bottom:618.120000px;}
.y13a{bottom:624.876120px;}
.ya8{bottom:626.490000px;}
.y40{bottom:627.210000px;}
.y1a5{bottom:627.840000px;}
.y11d{bottom:628.418160px;}
.yf6{bottom:631.840050px;}
.y66{bottom:633.724200px;}
.y17c{bottom:636.750000px;}
.y10{bottom:637.290000px;}
.ycc{bottom:637.574850px;}
.y8c{bottom:641.520000px;}
.y15c{bottom:643.320000px;}
.y139{bottom:648.000000px;}
.y1a4{bottom:649.800000px;}
.y11c{bottom:651.542040px;}
.ya7{bottom:651.780000px;}
.y3f{bottom:652.500000px;}
.yf5{bottom:654.963930px;}
.y65{bottom:656.848080px;}
.yf{bottom:659.250000px;}
.ycb{bottom:660.797550px;}
.y8b{bottom:666.810000px;}
.y138{bottom:671.120460px;}
.y1a3{bottom:671.760000px;}
.y11b{bottom:674.764740px;}
.ya6{bottom:677.070000px;}
.y3e{bottom:677.790000px;}
.yf4{bottom:678.186630px;}
.y64{bottom:679.971960px;}
.ye{bottom:681.210000px;}
.y15b{bottom:683.640000px;}
.yca{bottom:683.921430px;}
.y8a{bottom:692.010000px;}
.y1a2{bottom:693.720000px;}
.y137{bottom:694.343160px;}
.y11a{bottom:697.888620px;}
.yf3{bottom:701.310510px;}
.ya5{bottom:702.270000px;}
.yd{bottom:703.170000px;}
.yc9{bottom:707.144130px;}
.y1a1{bottom:715.770000px;}
.y1bf{bottom:717.300000px;}
.y3d{bottom:718.020000px;}
.y63{bottom:718.132950px;}
.y119{bottom:721.012500px;}
.y15a{bottom:723.150000px;}
.yf2{bottom:724.434390px;}
.yc{bottom:725.130000px;}
.y17b{bottom:727.560000px;}
.y89{bottom:732.330000px;}
.y136{bottom:732.504150px;}
.y1a0{bottom:737.730000px;}
.y62{bottom:741.355650px;}
.ya4{bottom:742.590000px;}
.y3c{bottom:743.310000px;}
.y118{bottom:744.235200px;}
.yc8{bottom:745.305120px;}
.y159{bottom:746.280000px;}
.yb{bottom:747.090000px;}
.yf1{bottom:747.657090px;}
.y17a{bottom:752.850000px;}
.y19f{bottom:759.690000px;}
.y61{bottom:764.479530px;}
.y135{bottom:766.350000px;}
.y117{bottom:767.359080px;}
.y1be{bottom:767.880000px;}
.y3b{bottom:768.600000px;}
.ya{bottom:769.050000px;}
.y158{bottom:769.410000px;}
.y88{bottom:772.560000px;}
.y19e{bottom:781.650000px;}
.ya3{bottom:782.820000px;}
.yc7{bottom:783.466110px;}
.yf0{bottom:785.818080px;}
.y60{bottom:787.603410px;}
.y116{bottom:790.482960px;}
.y9{bottom:791.100000px;}
.y157{bottom:792.669600px;}
.y179{bottom:793.080000px;}
.y3a{bottom:793.800000px;}
.y87{bottom:797.850000px;}
.y19d{bottom:803.610000px;}
.yc6{bottom:806.589990px;}
.ya2{bottom:808.110000px;}
.yef{bottom:808.941960px;}
.y8{bottom:813.060000px;}
.y115{bottom:813.705660px;}
.y156{bottom:815.793480px;}
.y1bd{bottom:818.370000px;}
.y39{bottom:819.090000px;}
.y86{bottom:823.140000px;}
.y19c{bottom:825.570000px;}
.y5f{bottom:825.764400px;}
.yc5{bottom:829.713870px;}
.yee{bottom:832.164660px;}
.y178{bottom:833.400000px;}
.y7{bottom:835.020000px;}
.y114{bottom:836.829540px;}
.y155{bottom:839.016180px;}
.y38{bottom:844.380000px;}
.y19b{bottom:847.530000px;}
.y85{bottom:848.340000px;}
.y5e{bottom:848.987100px;}
.y6{bottom:856.980000px;}
.y177{bottom:858.690000px;}
.y113{bottom:860.052240px;}
.y154{bottom:862.140060px;}
.yc4{bottom:867.874860px;}
.y19a{bottom:869.580000px;}
.y37{bottom:869.670000px;}
.yed{bottom:870.325650px;}
.y5d{bottom:872.110980px;}
.y84{bottom:873.630000px;}
.y112{bottom:883.176120px;}
.y176{bottom:883.890000px;}
.y1c7{bottom:884.788020px;}
.y153{bottom:885.263940px;}
.yc3{bottom:891.097560px;}
.y199{bottom:891.540000px;}
.y5c{bottom:895.234860px;}
.y83{bottom:898.920000px;}
.y5{bottom:900.005220px;}
.y111{bottom:906.300000px;}
.yec{bottom:908.486640px;}
.y175{bottom:909.180000px;}
.y36{bottom:909.900000px;}
.y198{bottom:913.500000px;}
.yc2{bottom:914.221440px;}
.y5b{bottom:918.457560px;}
.y1c6{bottom:922.949010px;}
.y82{bottom:924.210000px;}
.y110{bottom:929.529540px;}
.y152{bottom:931.610520px;}
.y174{bottom:934.470000px;}
.y197{bottom:935.460000px;}
.y5a{bottom:941.581440px;}
.yeb{bottom:946.647630px;}
.y4{bottom:948.690000px;}
.y81{bottom:949.410000px;}
.y35{bottom:950.130000px;}
.yc1{bottom:952.382430px;}
.y10f{bottom:952.653420px;}
.y196{bottom:957.420000px;}
.y173{bottom:959.760000px;}
.y1c5{bottom:961.110000px;}
.yea{bottom:969.771510px;}
.y34{bottom:972.090000px;}
.y80{bottom:974.700000px;}
.yc0{bottom:975.506310px;}
.y10e{bottom:975.777300px;}
.y195{bottom:979.380000px;}
.y59{bottom:979.742430px;}
.ye9{bottom:992.895390px;}
.y3{bottom:993.960000px;}
.y33{bottom:994.050000px;}
.ybf{bottom:998.729010px;}
.y10d{bottom:999.000000px;}
.y7f{bottom:999.990000px;}
.y194{bottom:1001.340000px;}
.y58{bottom:1002.965130px;}
.y32{bottom:1016.010000px;}
.ye8{bottom:1016.118090px;}
.y10c{bottom:1022.850000px;}
.y2{bottom:1023.210000px;}
.y193{bottom:1023.390000px;}
.y7e{bottom:1025.280000px;}
.y57{bottom:1026.089010px;}
.ybe{bottom:1036.890000px;}
.y31{bottom:1037.970000px;}
.y151{bottom:1039.241970px;}
.ya1{bottom:1040.220000px;}
.y192{bottom:1045.350000px;}
.y172{bottom:1050.570000px;}
.ye7{bottom:1054.279080px;}
.y1{bottom:1054.800000px;}
.y30{bottom:1059.930000px;}
.y10b{bottom:1062.464670px;}
.y56{bottom:1064.250000px;}
.y7d{bottom:1065.510000px;}
.y191{bottom:1067.310000px;}
.ybd{bottom:1075.770000px;}
.ye6{bottom:1077.402960px;}
.y2f{bottom:1081.890000px;}
.y150{bottom:1085.588550px;}
.y190{bottom:1089.270000px;}
.y7c{bottom:1090.800000px;}
.ye5{bottom:1100.625660px;}
.y171{bottom:1101.060000px;}
.y55{bottom:1103.130000px;}
.y2e{bottom:1103.850000px;}
.y18f{bottom:1111.230000px;}
.y7b{bottom:1116.090000px;}
.ye4{bottom:1123.749540px;}
.y2d{bottom:1125.900000px;}
.y1bc{bottom:1126.350000px;}
.y7a{bottom:1141.290000px;}
.y54{bottom:1142.632620px;}
.ye3{bottom:1146.873420px;}
.y2c{bottom:1147.860000px;}
.y18e{bottom:1151.640000px;}
.y53{bottom:1166.580000px;}
.y2b{bottom:1169.820000px;}
.ye2{bottom:1170.096120px;}
.y2a{bottom:1191.780000px;}
.y52{bottom:1191.870000px;}
.ye1{bottom:1193.220000px;}
.h9{height:45.035156px;}
.h8{height:47.286914px;}
.ha{height:47.325074px;}
.h6{height:51.679688px;}
.h7{height:51.709208px;}
.h2{height:53.270156px;}
.h5{height:58.218750px;}
.h4{height:77.722031px;}
.h3{height:96.934219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.936500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:54.000000px;}
.x1{left:242.550000px;}
.x3{left:734.400000px;}
.x4{left:834.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.175680pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.117120pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.058560pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.058560pt;}
.ls1{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.106560pt;}
.lsa{letter-spacing:0.117120pt;}
.ls2{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.170880pt;}
.lsd{letter-spacing:0.175680pt;}
.lsc{letter-spacing:0.234240pt;}
.ls8{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.409920pt;}
.ls11{letter-spacing:0.644160pt;}
.lsf{letter-spacing:0.819840pt;}
.ws1{word-spacing:-19.480320pt;}
.wse{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.528000pt;}
.ws4{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.400000pt;}
.ws3{word-spacing:-14.336000pt;}
.ws13{word-spacing:-13.351680pt;}
.ws0{word-spacing:-13.293120pt;}
.ws12{word-spacing:-13.234560pt;}
.ws11{word-spacing:-13.176000pt;}
.ws14{word-spacing:-13.117440pt;}
.ws1c{word-spacing:-13.058880pt;}
.wsc{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.234240pt;}
.ws6{word-spacing:-0.213120pt;}
.ws9{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.117120pt;}
.wsb{word-spacing:-0.064000pt;}
.ws7{word-spacing:-0.058560pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:0.058560pt;}
.ws8{word-spacing:0.064000pt;}
.ws19{word-spacing:0.117120pt;}
.ws1a{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.175680pt;}
.ws3b{word-spacing:0.192000pt;}
.ws17{word-spacing:0.234240pt;}
.wsf{word-spacing:0.384000pt;}
.ws26{word-spacing:0.702720pt;}
.ws27{word-spacing:0.819840pt;}
.ws1e{word-spacing:1.346880pt;}
.ws1f{word-spacing:2.108160pt;}
.ws2b{word-spacing:2.342400pt;}
.ws22{word-spacing:3.806400pt;}
.ws2e{word-spacing:4.860480pt;}
.ws23{word-spacing:5.211840pt;}
.ws2a{word-spacing:6.324480pt;}
.ws32{word-spacing:8.549760pt;}
.ws20{word-spacing:8.725440pt;}
.ws21{word-spacing:8.901120pt;}
.ws39{word-spacing:9.018240pt;}
.ws38{word-spacing:9.193920pt;}
.ws30{word-spacing:10.013760pt;}
.ws2f{word-spacing:10.189440pt;}
.ws24{word-spacing:10.833600pt;}
.ws2d{word-spacing:11.302080pt;}
.ws37{word-spacing:11.594880pt;}
.ws31{word-spacing:14.581440pt;}
.ws33{word-spacing:15.108480pt;}
.ws25{word-spacing:15.459840pt;}
.ws29{word-spacing:15.635520pt;}
.ws1d{word-spacing:16.513920pt;}
.ws36{word-spacing:30.919680pt;}
.ws35{word-spacing:30.978240pt;}
.ws34{word-spacing:31.446720pt;}
.ws2c{word-spacing:37.536960pt;}
.ws28{word-spacing:45.032640pt;}
._4{margin-left:-2.566720pt;}
._0{margin-left:-0.959040pt;}
._1{width:0.896000pt;}
._3{width:60.160000pt;}
._2{width:278.376640pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:56.438880pt;}
.y1c4{bottom:63.440000pt;}
.y79{bottom:67.040000pt;}
.ybc{bottom:67.680000pt;}
.y170{bottom:69.280000pt;}
.y134{bottom:69.763040pt;}
.y18d{bottom:76.800000pt;}
.y14e{bottom:76.993440pt;}
.y29{bottom:78.160000pt;}
.y1bb{bottom:81.280000pt;}
.y1c3{bottom:85.920000pt;}
.y78{bottom:89.440000pt;}
.ybb{bottom:90.160000pt;}
.y133{bottom:90.405440pt;}
.y16f{bottom:91.760000pt;}
.ya0{bottom:94.320000pt;}
.y10a{bottom:96.552080pt;}
.y28{bottom:97.680000pt;}
.y18c{bottom:99.280000pt;}
.ye0{bottom:101.649680pt;}
.y1ba{bottom:103.760000pt;}
.y14d{bottom:110.914320pt;}
.y132{bottom:110.960000pt;}
.y77{bottom:111.920000pt;}
.yba{bottom:112.560000pt;}
.y16e{bottom:114.240000pt;}
.y9f{bottom:116.800000pt;}
.y109{bottom:117.106640pt;}
.y27{bottom:117.200000pt;}
.y18b{bottom:121.680000pt;}
.y51{bottom:122.320000pt;}
.y1b9{bottom:126.240000pt;}
.y14c{bottom:131.556720pt;}
.yb9{bottom:135.040000pt;}
.ydf{bottom:135.570560pt;}
.y26{bottom:136.720000pt;}
.y108{bottom:137.749040pt;}
.y9e{bottom:139.280000pt;}
.y18a{bottom:144.160000pt;}
.y50{bottom:144.800000pt;}
.y131{bottom:145.600000pt;}
.y16d{bottom:150.000000pt;}
.y14b{bottom:152.111280pt;}
.yde{bottom:156.212960pt;}
.y25{bottom:156.320000pt;}
.yb8{bottom:157.520000pt;}
.y9d{bottom:161.680000pt;}
.y1b8{bottom:162.000000pt;}
.y76{bottom:164.240000pt;}
.y189{bottom:166.640000pt;}
.y4f{bottom:167.280000pt;}
.y130{bottom:167.442400pt;}
.y107{bottom:171.669920pt;}
.y16c{bottom:172.480000pt;}
.y14a{bottom:172.665840pt;}
.y24{bottom:175.840000pt;}
.ydd{bottom:176.767520pt;}
.yb7{bottom:180.000000pt;}
.y75{bottom:183.760000pt;}
.y9c{bottom:184.160000pt;}
.y1b7{bottom:184.480000pt;}
.y12f{bottom:187.996960pt;}
.y188{bottom:189.120000pt;}
.y4e{bottom:189.760000pt;}
.y106{bottom:192.224480pt;}
.y16b{bottom:194.960000pt;}
.y23{bottom:195.360000pt;}
.ydc{bottom:197.409920pt;}
.y74{bottom:203.280000pt;}
.y149{bottom:206.586720pt;}
.y9b{bottom:206.640000pt;}
.y1b6{bottom:206.960000pt;}
.y12e{bottom:208.639360pt;}
.y1c2{bottom:211.600000pt;}
.y105{bottom:212.866880pt;}
.y22{bottom:214.880000pt;}
.yb6{bottom:215.760000pt;}
.y16a{bottom:217.440000pt;}
.ydb{bottom:217.964480pt;}
.y187{bottom:224.880000pt;}
.y4d{bottom:225.520000pt;}
.y148{bottom:227.229120pt;}
.y9a{bottom:229.120000pt;}
.y12d{bottom:229.193920pt;}
.y1b5{bottom:229.440000pt;}
.y104{bottom:233.421440pt;}
.y1c1{bottom:234.000000pt;}
.y21{bottom:234.400000pt;}
.yb5{bottom:238.240000pt;}
.yda{bottom:238.519040pt;}
.y73{bottom:239.200000pt;}
.y169{bottom:239.840000pt;}
.y186{bottom:247.360000pt;}
.y147{bottom:247.783680pt;}
.y4c{bottom:248.000000pt;}
.y12c{bottom:249.748480pt;}
.y99{bottom:251.600000pt;}
.y20{bottom:253.920000pt;}
.y103{bottom:253.976000pt;}
.yd9{bottom:259.161440pt;}
.yb4{bottom:260.720000pt;}
.y1b4{bottom:265.200000pt;}
.y146{bottom:268.338240pt;}
.y185{bottom:269.840000pt;}
.y12b{bottom:270.390880pt;}
.y4b{bottom:270.480000pt;}
.y1f{bottom:273.440000pt;}
.y98{bottom:274.000000pt;}
.y102{bottom:274.618400pt;}
.y72{bottom:274.960000pt;}
.y168{bottom:275.680000pt;}
.yb3{bottom:283.120000pt;}
.y1b3{bottom:284.640000pt;}
.y145{bottom:288.980640pt;}
.y12a{bottom:290.945440pt;}
.y184{bottom:292.240000pt;}
.y1e{bottom:293.040000pt;}
.yd8{bottom:293.082320pt;}
.y101{bottom:295.172960pt;}
.y97{bottom:296.480000pt;}
.y167{bottom:298.160000pt;}
.y1b2{bottom:304.160000pt;}
.yb2{bottom:305.600000pt;}
.y4a{bottom:306.240000pt;}
.y71{bottom:310.126240pt;}
.y129{bottom:311.500000pt;}
.y1d{bottom:312.560000pt;}
.yd7{bottom:313.636880pt;}
.y183{bottom:314.720000pt;}
.y96{bottom:318.960000pt;}
.y166{bottom:320.560000pt;}
.y144{bottom:322.901520pt;}
.y1b1{bottom:323.680000pt;}
.yb1{bottom:328.080000pt;}
.y49{bottom:328.720000pt;}
.y100{bottom:329.093840pt;}
.y70{bottom:330.768640pt;}
.y1c{bottom:332.080000pt;}
.y128{bottom:332.142400pt;}
.yd6{bottom:334.191440pt;}
.y182{bottom:337.200000pt;}
.y95{bottom:341.440000pt;}
.y165{bottom:343.040000pt;}
.y1b0{bottom:343.280000pt;}
.y143{bottom:343.456080pt;}
.yff{bottom:349.648400pt;}
.yb0{bottom:350.560000pt;}
.y48{bottom:351.200000pt;}
.y6f{bottom:351.323200pt;}
.y1b{bottom:351.600000pt;}
.y127{bottom:352.696960pt;}
.yd5{bottom:354.833840pt;}
.y1c0{bottom:359.680000pt;}
.y1af{bottom:362.800000pt;}
.y94{bottom:363.840000pt;}
.y142{bottom:364.010640pt;}
.y164{bottom:365.520000pt;}
.yfe{bottom:370.290800pt;}
.y1a{bottom:371.120000pt;}
.yaf{bottom:372.960000pt;}
.y126{bottom:373.339360pt;}
.y47{bottom:373.600000pt;}
.yd4{bottom:375.388400pt;}
.y1ae{bottom:382.320000pt;}
.y141{bottom:384.653040pt;}
.y6e{bottom:385.244080pt;}
.y163{bottom:388.000000pt;}
.y19{bottom:390.640000pt;}
.yfd{bottom:390.845360pt;}
.y125{bottom:393.893920pt;}
.y181{bottom:395.440000pt;}
.y93{bottom:399.680000pt;}
.y1ad{bottom:401.840000pt;}
.y140{bottom:405.207600pt;}
.y6d{bottom:405.798640pt;}
.yae{bottom:408.800000pt;}
.yd3{bottom:409.309280pt;}
.y46{bottom:409.440000pt;}
.y18{bottom:410.160000pt;}
.y162{bottom:410.400000pt;}
.y124{bottom:414.448480pt;}
.y180{bottom:417.920000pt;}
.y1ac{bottom:421.360000pt;}
.y92{bottom:422.160000pt;}
.yfc{bottom:424.766240pt;}
.y13f{bottom:425.850000pt;}
.y6c{bottom:426.441040pt;}
.y17{bottom:429.760000pt;}
.yd2{bottom:429.951680pt;}
.yad{bottom:431.280000pt;}
.y45{bottom:431.920000pt;}
.y161{bottom:432.880000pt;}
.y123{bottom:435.090880pt;}
.y17f{bottom:440.400000pt;}
.y1ab{bottom:440.880000pt;}
.y91{bottom:444.560000pt;}
.yfb{bottom:445.408640pt;}
.y6b{bottom:446.995600pt;}
.y16{bottom:449.280000pt;}
.yd1{bottom:450.506240pt;}
.yac{bottom:453.680000pt;}
.y44{bottom:454.320000pt;}
.y122{bottom:455.645440pt;}
.y13e{bottom:459.770880pt;}
.y1aa{bottom:460.400000pt;}
.yfa{bottom:465.963200pt;}
.y90{bottom:467.040000pt;}
.y6a{bottom:467.550160pt;}
.y160{bottom:468.720000pt;}
.y15{bottom:468.800000pt;}
.yd0{bottom:471.060800pt;}
.yab{bottom:476.160000pt;}
.y121{bottom:476.200000pt;}
.y43{bottom:476.800000pt;}
.y1a9{bottom:479.920000pt;}
.y13d{bottom:480.325440pt;}
.yf9{bottom:486.517760pt;}
.y14{bottom:488.320000pt;}
.y8f{bottom:489.520000pt;}
.y15f{bottom:491.120000pt;}
.y120{bottom:496.842400pt;}
.yaa{bottom:498.640000pt;}
.y42{bottom:499.280000pt;}
.y1a8{bottom:499.520000pt;}
.y13c{bottom:500.880000pt;}
.y69{bottom:501.471040pt;}
.ycf{bottom:504.981680pt;}
.yf8{bottom:507.160160pt;}
.y13{bottom:507.840000pt;}
.y15e{bottom:513.600000pt;}
.y11f{bottom:517.396960pt;}
.y1a7{bottom:519.040000pt;}
.y17e{bottom:521.120000pt;}
.y68{bottom:522.113440pt;}
.y8e{bottom:525.280000pt;}
.yce{bottom:525.624080pt;}
.y12{bottom:527.360000pt;}
.yf7{bottom:527.714720pt;}
.ya9{bottom:534.400000pt;}
.y13b{bottom:534.803040pt;}
.y41{bottom:535.040000pt;}
.y11e{bottom:538.039360pt;}
.y1a6{bottom:538.560000pt;}
.y67{bottom:542.668000pt;}
.y17d{bottom:543.520000pt;}
.ycd{bottom:546.178640pt;}
.y11{bottom:546.880000pt;}
.y8d{bottom:547.760000pt;}
.y15d{bottom:549.440000pt;}
.y13a{bottom:555.445440pt;}
.ya8{bottom:556.880000pt;}
.y40{bottom:557.520000pt;}
.y1a5{bottom:558.080000pt;}
.y11d{bottom:558.593920pt;}
.yf6{bottom:561.635600pt;}
.y66{bottom:563.310400pt;}
.y17c{bottom:566.000000pt;}
.y10{bottom:566.480000pt;}
.ycc{bottom:566.733200pt;}
.y8c{bottom:570.240000pt;}
.y15c{bottom:571.840000pt;}
.y139{bottom:576.000000pt;}
.y1a4{bottom:577.600000pt;}
.y11c{bottom:579.148480pt;}
.ya7{bottom:579.360000pt;}
.y3f{bottom:580.000000pt;}
.yf5{bottom:582.190160pt;}
.y65{bottom:583.864960pt;}
.yf{bottom:586.000000pt;}
.ycb{bottom:587.375600pt;}
.y8b{bottom:592.720000pt;}
.y138{bottom:596.551520pt;}
.y1a3{bottom:597.120000pt;}
.y11b{bottom:599.790880pt;}
.ya6{bottom:601.840000pt;}
.y3e{bottom:602.480000pt;}
.yf4{bottom:602.832560pt;}
.y64{bottom:604.419520pt;}
.ye{bottom:605.520000pt;}
.y15b{bottom:607.680000pt;}
.yca{bottom:607.930160pt;}
.y8a{bottom:615.120000pt;}
.y1a2{bottom:616.640000pt;}
.y137{bottom:617.193920pt;}
.y11a{bottom:620.345440pt;}
.yf3{bottom:623.387120pt;}
.ya5{bottom:624.240000pt;}
.yd{bottom:625.040000pt;}
.yc9{bottom:628.572560pt;}
.y1a1{bottom:636.240000pt;}
.y1bf{bottom:637.600000pt;}
.y3d{bottom:638.240000pt;}
.y63{bottom:638.340400pt;}
.y119{bottom:640.900000pt;}
.y15a{bottom:642.800000pt;}
.yf2{bottom:643.941680pt;}
.yc{bottom:644.560000pt;}
.y17b{bottom:646.720000pt;}
.y89{bottom:650.960000pt;}
.y136{bottom:651.114800pt;}
.y1a0{bottom:655.760000pt;}
.y62{bottom:658.982800pt;}
.ya4{bottom:660.080000pt;}
.y3c{bottom:660.720000pt;}
.y118{bottom:661.542400pt;}
.yc8{bottom:662.493440pt;}
.y159{bottom:663.360000pt;}
.yb{bottom:664.080000pt;}
.yf1{bottom:664.584080pt;}
.y17a{bottom:669.200000pt;}
.y19f{bottom:675.280000pt;}
.y61{bottom:679.537360pt;}
.y135{bottom:681.200000pt;}
.y117{bottom:682.096960pt;}
.y1be{bottom:682.560000pt;}
.y3b{bottom:683.200000pt;}
.ya{bottom:683.600000pt;}
.y158{bottom:683.920000pt;}
.y88{bottom:686.720000pt;}
.y19e{bottom:694.800000pt;}
.ya3{bottom:695.840000pt;}
.yc7{bottom:696.414320pt;}
.yf0{bottom:698.504960pt;}
.y60{bottom:700.091920pt;}
.y116{bottom:702.651520pt;}
.y9{bottom:703.200000pt;}
.y157{bottom:704.595200pt;}
.y179{bottom:704.960000pt;}
.y3a{bottom:705.600000pt;}
.y87{bottom:709.200000pt;}
.y19d{bottom:714.320000pt;}
.yc6{bottom:716.968880pt;}
.ya2{bottom:718.320000pt;}
.yef{bottom:719.059520pt;}
.y8{bottom:722.720000pt;}
.y115{bottom:723.293920pt;}
.y156{bottom:725.149760pt;}
.y1bd{bottom:727.440000pt;}
.y39{bottom:728.080000pt;}
.y86{bottom:731.680000pt;}
.y19c{bottom:733.840000pt;}
.y5f{bottom:734.012800pt;}
.yc5{bottom:737.523440pt;}
.yee{bottom:739.701920pt;}
.y178{bottom:740.800000pt;}
.y7{bottom:742.240000pt;}
.y114{bottom:743.848480pt;}
.y155{bottom:745.792160pt;}
.y38{bottom:750.560000pt;}
.y19b{bottom:753.360000pt;}
.y85{bottom:754.080000pt;}
.y5e{bottom:754.655200pt;}
.y6{bottom:761.760000pt;}
.y177{bottom:763.280000pt;}
.y113{bottom:764.490880pt;}
.y154{bottom:766.346720pt;}
.yc4{bottom:771.444320pt;}
.y19a{bottom:772.960000pt;}
.y37{bottom:773.040000pt;}
.yed{bottom:773.622800pt;}
.y5d{bottom:775.209760pt;}
.y84{bottom:776.560000pt;}
.y112{bottom:785.045440pt;}
.y176{bottom:785.680000pt;}
.y1c7{bottom:786.478240pt;}
.y153{bottom:786.901280pt;}
.yc3{bottom:792.086720pt;}
.y199{bottom:792.480000pt;}
.y5c{bottom:795.764320pt;}
.y83{bottom:799.040000pt;}
.y5{bottom:800.004640pt;}
.y111{bottom:805.600000pt;}
.yec{bottom:807.543680pt;}
.y175{bottom:808.160000pt;}
.y36{bottom:808.800000pt;}
.y198{bottom:812.000000pt;}
.yc2{bottom:812.641280pt;}
.y5b{bottom:816.406720pt;}
.y1c6{bottom:820.399120pt;}
.y82{bottom:821.520000pt;}
.y110{bottom:826.248480pt;}
.y152{bottom:828.098240pt;}
.y174{bottom:830.640000pt;}
.y197{bottom:831.520000pt;}
.y5a{bottom:836.961280pt;}
.yeb{bottom:841.464560pt;}
.y4{bottom:843.280000pt;}
.y81{bottom:843.920000pt;}
.y35{bottom:844.560000pt;}
.yc1{bottom:846.562160pt;}
.y10f{bottom:846.803040pt;}
.y196{bottom:851.040000pt;}
.y173{bottom:853.120000pt;}
.y1c5{bottom:854.320000pt;}
.yea{bottom:862.019120pt;}
.y34{bottom:864.080000pt;}
.y80{bottom:866.400000pt;}
.yc0{bottom:867.116720pt;}
.y10e{bottom:867.357600pt;}
.y195{bottom:870.560000pt;}
.y59{bottom:870.882160pt;}
.ye9{bottom:882.573680pt;}
.y3{bottom:883.520000pt;}
.y33{bottom:883.600000pt;}
.ybf{bottom:887.759120pt;}
.y10d{bottom:888.000000pt;}
.y7f{bottom:888.880000pt;}
.y194{bottom:890.080000pt;}
.y58{bottom:891.524560pt;}
.y32{bottom:903.120000pt;}
.ye8{bottom:903.216080pt;}
.y10c{bottom:909.200000pt;}
.y2{bottom:909.520000pt;}
.y193{bottom:909.680000pt;}
.y7e{bottom:911.360000pt;}
.y57{bottom:912.079120pt;}
.ybe{bottom:921.680000pt;}
.y31{bottom:922.640000pt;}
.y151{bottom:923.770640pt;}
.ya1{bottom:924.640000pt;}
.y192{bottom:929.200000pt;}
.y172{bottom:933.840000pt;}
.ye7{bottom:937.136960pt;}
.y1{bottom:937.600000pt;}
.y30{bottom:942.160000pt;}
.y10b{bottom:944.413040pt;}
.y56{bottom:946.000000pt;}
.y7d{bottom:947.120000pt;}
.y191{bottom:948.720000pt;}
.ybd{bottom:956.240000pt;}
.ye6{bottom:957.691520pt;}
.y2f{bottom:961.680000pt;}
.y150{bottom:964.967600pt;}
.y190{bottom:968.240000pt;}
.y7c{bottom:969.600000pt;}
.ye5{bottom:978.333920pt;}
.y171{bottom:978.720000pt;}
.y55{bottom:980.560000pt;}
.y2e{bottom:981.200000pt;}
.y18f{bottom:987.760000pt;}
.y7b{bottom:992.080000pt;}
.ye4{bottom:998.888480pt;}
.y2d{bottom:1000.800000pt;}
.y1bc{bottom:1001.200000pt;}
.y7a{bottom:1014.480000pt;}
.y54{bottom:1015.673440pt;}
.ye3{bottom:1019.443040pt;}
.y2c{bottom:1020.320000pt;}
.y18e{bottom:1023.680000pt;}
.y53{bottom:1036.960000pt;}
.y2b{bottom:1039.840000pt;}
.ye2{bottom:1040.085440pt;}
.y2a{bottom:1059.360000pt;}
.y52{bottom:1059.440000pt;}
.ye1{bottom:1060.640000pt;}
.h9{height:40.031250pt;}
.h8{height:42.032812pt;}
.ha{height:42.066733pt;}
.h6{height:45.937500pt;}
.h7{height:45.963740pt;}
.h2{height:47.351250pt;}
.h5{height:51.750000pt;}
.h4{height:69.086250pt;}
.h3{height:86.163750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.721333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:48.000000pt;}
.x1{left:215.600000pt;}
.x3{left:652.800000pt;}
.x4{left:742.000000pt;}
}




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