
    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_4b3e7b5b01980c1169aee11f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c405d6c24d26046fc66c7f6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_90a892ffc930d0aa5e8291a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c70b95144c5d2a429c767ea9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.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_ec756b41fab66ffe82530ac6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_057fd6cb809b654886a516af.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b4165f5ac69eddd2be6ffcd0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_74452353f187007464b27537.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986328;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.924000px;}
.ls13{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.386720px;}
.ls15{letter-spacing:16.506720px;}
.ls6{letter-spacing:23.130720px;}
.ls1{letter-spacing:46.026720px;}
.lse{letter-spacing:64.026720px;}
.ls7{letter-spacing:70.506720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-8.426880px;}
._15{margin-left:-6.842880px;}
._14{margin-left:-4.883760px;}
._16{margin-left:-3.409200px;}
._12{margin-left:-2.298240px;}
._0{margin-left:-1.080000px;}
._11{width:1.056000px;}
._1{width:2.220000px;}
._1d{width:3.362160px;}
._1c{width:4.613760px;}
._18{width:5.784480px;}
._17{width:7.260000px;}
._1b{width:8.516160px;}
._1e{width:9.638160px;}
._6{width:10.800000px;}
._1a{width:11.968080px;}
._19{width:13.087440px;}
._21{width:15.955920px;}
._20{width:17.569440px;}
._f{width:18.948000px;}
._1f{width:20.035200px;}
._22{width:21.394080px;}
._27{width:25.139280px;}
._26{width:26.612880px;}
._25{width:59.955600px;}
._23{width:61.895040px;}
._24{width:65.032800px;}
._7{width:76.284960px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc4{color:rgb(70,120,134);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y105{bottom:2.880000px;}
.yc7{bottom:5.760000px;}
.ye{bottom:5.940000px;}
.y6{bottom:12.420000px;}
.ycb{bottom:15.660000px;}
.yfa{bottom:15.840000px;}
.y9e{bottom:16.950000px;}
.y8{bottom:18.180000px;}
.yca{bottom:25.560000px;}
.yf9{bottom:25.740000px;}
.yc{bottom:34.560000px;}
.y5{bottom:40.320000px;}
.y95{bottom:44.460000px;}
.yb{bottom:55.080000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.y9b{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y103{bottom:99.900000px;}
.y9a{bottom:101.880000px;}
.y6a{bottom:103.680000px;}
.y3b{bottom:104.580000px;}
.yc1{bottom:105.480000px;}
.yb8{bottom:107.820000px;}
.y141{bottom:110.160000px;}
.y13e{bottom:112.680000px;}
.yd8{bottom:113.400000px;}
.y93{bottom:114.480000px;}
.y102{bottom:120.600000px;}
.y99{bottom:122.760000px;}
.y9c{bottom:123.300000px;}
.y69{bottom:123.480000px;}
.y3a{bottom:124.560000px;}
.yc0{bottom:125.460000px;}
.y2{bottom:125.670000px;}
.yb7{bottom:127.620000px;}
.y126{bottom:129.060000px;}
.y140{bottom:130.140000px;}
.y13d{bottom:132.480000px;}
.yd7{bottom:133.920000px;}
.y92{bottom:134.460000px;}
.y101{bottom:141.120000px;}
.y68{bottom:143.460000px;}
.y98{bottom:143.820000px;}
.y39{bottom:144.360000px;}
.ybf{bottom:145.260000px;}
.yb6{bottom:147.600000px;}
.y125{bottom:149.040000px;}
.y13f{bottom:150.120000px;}
.y13c{bottom:152.490000px;}
.y91{bottom:154.290000px;}
.yd6{bottom:154.650000px;}
.y100{bottom:161.670000px;}
.y67{bottom:163.290000px;}
.y38{bottom:164.190000px;}
.y97{bottom:164.700000px;}
.ybe{bottom:165.090000px;}
.y124{bottom:168.870000px;}
.y13b{bottom:172.290000px;}
.y90{bottom:174.090000px;}
.yd5{bottom:175.170000px;}
.yb5{bottom:176.430000px;}
.yff{bottom:182.370000px;}
.y66{bottom:183.090000px;}
.y37{bottom:183.990000px;}
.ybd{bottom:184.890000px;}
.y123{bottom:188.670000px;}
.y13a{bottom:192.090000px;}
.y8f{bottom:193.890000px;}
.yd4{bottom:195.870000px;}
.yb4{bottom:196.230000px;}
.y65{bottom:202.890000px;}
.y36{bottom:203.790000px;}
.ybc{bottom:204.690000px;}
.y122{bottom:208.470000px;}
.y139{bottom:211.890000px;}
.y8e{bottom:213.690000px;}
.yb3{bottom:216.030000px;}
.yd3{bottom:216.390000px;}
.y64{bottom:222.690000px;}
.yfe{bottom:223.410000px;}
.y35{bottom:223.770000px;}
.ybb{bottom:224.670000px;}
.y121{bottom:228.270000px;}
.y138{bottom:231.690000px;}
.y8d{bottom:233.670000px;}
.yb2{bottom:235.830000px;}
.yd2{bottom:236.910000px;}
.y63{bottom:242.670000px;}
.y34{bottom:243.570000px;}
.yfd{bottom:244.110000px;}
.y120{bottom:248.250000px;}
.y137{bottom:251.670000px;}
.y8c{bottom:253.470000px;}
.yb1{bottom:255.810000px;}
.yd1{bottom:257.610000px;}
.y62{bottom:262.470000px;}
.y33{bottom:263.370000px;}
.y11f{bottom:268.050000px;}
.y136{bottom:271.470000px;}
.y8b{bottom:273.270000px;}
.yb0{bottom:275.610000px;}
.y104{bottom:277.050000px;}
.yd0{bottom:278.130000px;}
.y61{bottom:282.270000px;}
.y32{bottom:283.170000px;}
.y11e{bottom:287.850000px;}
.y135{bottom:291.270000px;}
.yf7{bottom:292.350000px;}
.y8a{bottom:293.070000px;}
.yaf{bottom:295.410000px;}
.y60{bottom:302.070000px;}
.y31{bottom:302.970000px;}
.y11d{bottom:307.650000px;}
.y134{bottom:311.070000px;}
.yf6{bottom:312.150000px;}
.y89{bottom:312.870000px;}
.yae{bottom:315.210000px;}
.ycf{bottom:318.630000px;}
.y5f{bottom:321.870000px;}
.y30{bottom:322.950000px;}
.y11c{bottom:327.450000px;}
.y133{bottom:330.870000px;}
.yf5{bottom:331.950000px;}
.y88{bottom:332.850000px;}
.yad{bottom:335.010000px;}
.yce{bottom:339.150000px;}
.y5e{bottom:341.850000px;}
.y2f{bottom:342.750000px;}
.y11b{bottom:347.430000px;}
.y132{bottom:350.850000px;}
.yf4{bottom:351.930000px;}
.y87{bottom:352.650000px;}
.ycd{bottom:359.670000px;}
.y5d{bottom:361.650000px;}
.y2e{bottom:362.550000px;}
.yac{bottom:363.990000px;}
.y11a{bottom:367.230000px;}
.y131{bottom:370.650000px;}
.yf3{bottom:371.730000px;}
.y86{bottom:372.450000px;}
.ycc{bottom:380.370000px;}
.y5c{bottom:381.450000px;}
.y2d{bottom:382.350000px;}
.yab{bottom:383.790000px;}
.y119{bottom:387.030000px;}
.y130{bottom:390.450000px;}
.yf2{bottom:391.530000px;}
.y85{bottom:392.250000px;}
.yc9{bottom:400.935000px;}
.y5b{bottom:401.295000px;}
.y2c{bottom:402.195000px;}
.yaa{bottom:403.635000px;}
.y118{bottom:406.875000px;}
.y12f{bottom:410.295000px;}
.yf1{bottom:411.375000px;}
.y84{bottom:412.095000px;}
.y5a{bottom:421.095000px;}
.y2b{bottom:422.175000px;}
.ya9{bottom:423.435000px;}
.y117{bottom:426.675000px;}
.y12e{bottom:430.095000px;}
.yf0{bottom:431.175000px;}
.y83{bottom:432.075000px;}
.y59{bottom:441.075000px;}
.yc8{bottom:441.435000px;}
.y2a{bottom:441.975000px;}
.ya8{bottom:443.235000px;}
.y116{bottom:446.655000px;}
.y12d{bottom:450.075000px;}
.yef{bottom:451.155000px;}
.y82{bottom:451.875000px;}
.y58{bottom:460.875000px;}
.y29{bottom:461.775000px;}
.yc6{bottom:461.955000px;}
.ya7{bottom:463.215000px;}
.y115{bottom:466.455000px;}
.y12c{bottom:469.875000px;}
.yee{bottom:470.955000px;}
.y81{bottom:471.675000px;}
.y57{bottom:480.675000px;}
.y28{bottom:481.575000px;}
.yc5{bottom:482.475000px;}
.y114{bottom:486.255000px;}
.y12b{bottom:489.675000px;}
.yed{bottom:490.755000px;}
.y80{bottom:491.475000px;}
.ya6{bottom:492.015000px;}
.y56{bottom:500.475000px;}
.y27{bottom:501.375000px;}
.y113{bottom:506.055000px;}
.yc4{bottom:509.475000px;}
.yec{bottom:510.555000px;}
.yba{bottom:511.275000px;}
.ya5{bottom:511.815000px;}
.y55{bottom:520.275000px;}
.y26{bottom:521.355000px;}
.y112{bottom:525.855000px;}
.yc3{bottom:529.275000px;}
.yeb{bottom:530.355000px;}
.yb9{bottom:531.255000px;}
.ya4{bottom:531.615000px;}
.y54{bottom:540.255000px;}
.y25{bottom:541.155000px;}
.y111{bottom:545.835000px;}
.yc2{bottom:549.255000px;}
.yea{bottom:550.335000px;}
.ya3{bottom:551.415000px;}
.y7f{bottom:560.055000px;}
.y24{bottom:560.955000px;}
.y110{bottom:565.635000px;}
.y53{bottom:569.055000px;}
.ye9{bottom:570.135000px;}
.ya2{bottom:571.395000px;}
.y7e{bottom:579.855000px;}
.y23{bottom:580.755000px;}
.y10f{bottom:585.435000px;}
.y52{bottom:588.855000px;}
.ye8{bottom:589.935000px;}
.ya1{bottom:591.195000px;}
.y7d{bottom:599.655000px;}
.y22{bottom:600.555000px;}
.y10e{bottom:605.235000px;}
.y51{bottom:608.655000px;}
.ye7{bottom:609.735000px;}
.ya0{bottom:610.995000px;}
.y7c{bottom:619.455000px;}
.y21{bottom:620.535000px;}
.y10d{bottom:625.035000px;}
.y50{bottom:628.455000px;}
.ye6{bottom:629.535000px;}
.y9f{bottom:630.795000px;}
.y7b{bottom:639.435000px;}
.y10c{bottom:639.975000px;}
.y20{bottom:640.335000px;}
.y9d{bottom:644.835000px;}
.y4f{bottom:648.435000px;}
.ye5{bottom:649.545000px;}
.y7a{bottom:659.265000px;}
.y1f{bottom:660.165000px;}
.y10b{bottom:660.525000px;}
.y4e{bottom:668.265000px;}
.ye4{bottom:669.345000px;}
.y79{bottom:679.065000px;}
.y1e{bottom:679.965000px;}
.y10a{bottom:681.045000px;}
.y96{bottom:685.545000px;}
.y4d{bottom:688.065000px;}
.ye3{bottom:689.145000px;}
.y78{bottom:698.865000px;}
.y1d{bottom:699.765000px;}
.y109{bottom:701.745000px;}
.y4c{bottom:707.865000px;}
.ye2{bottom:708.945000px;}
.y77{bottom:718.665000px;}
.y1c{bottom:719.745000px;}
.y108{bottom:722.265000px;}
.y4b{bottom:727.665000px;}
.ye1{bottom:728.745000px;}
.y76{bottom:738.645000px;}
.y1b{bottom:739.545000px;}
.y4a{bottom:747.645000px;}
.ye0{bottom:748.725000px;}
.y75{bottom:758.445000px;}
.y1a{bottom:759.345000px;}
.y49{bottom:767.445000px;}
.ydf{bottom:768.525000px;}
.y74{bottom:778.245000px;}
.y19{bottom:779.145000px;}
.y48{bottom:787.245000px;}
.yde{bottom:788.325000px;}
.y73{bottom:798.045000px;}
.y18{bottom:798.945000px;}
.y47{bottom:807.045000px;}
.ydd{bottom:808.125000px;}
.y72{bottom:817.845000px;}
.y17{bottom:818.925000px;}
.y46{bottom:826.845000px;}
.ydc{bottom:827.925000px;}
.y71{bottom:837.825000px;}
.y16{bottom:838.725000px;}
.y45{bottom:846.825000px;}
.ydb{bottom:847.905000px;}
.y70{bottom:857.625000px;}
.y15{bottom:858.525000px;}
.y44{bottom:866.625000px;}
.yda{bottom:867.705000px;}
.y6f{bottom:877.425000px;}
.y14{bottom:883.545000px;}
.y43{bottom:886.425000px;}
.yd9{bottom:887.505000px;}
.y6e{bottom:897.225000px;}
.y13{bottom:898.710000px;}
.y42{bottom:906.270000px;}
.y107{bottom:907.350000px;}
.y6d{bottom:917.070000px;}
.yfc{bottom:917.430000px;}
.y12{bottom:920.670000px;}
.y41{bottom:926.070000px;}
.y106{bottom:927.150000px;}
.y6c{bottom:937.050000px;}
.yfb{bottom:937.950000px;}
.y94{bottom:941.190000px;}
.y11{bottom:942.450000px;}
.y40{bottom:946.050000px;}
.y6b{bottom:956.850000px;}
.y12a{bottom:957.030000px;}
.yf8{bottom:958.470000px;}
.y3f{bottom:965.850000px;}
.y10{bottom:967.290000px;}
.y129{bottom:977.550000px;}
.y3e{bottom:985.650000px;}
.y128{bottom:998.250000px;}
.yf{bottom:998.970000px;}
.y3d{bottom:1005.450000px;}
.y127{bottom:1018.770000px;}
.y3c{bottom:1025.250000px;}
.y9{bottom:1044.330000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h1c{height:16.920000px;}
.h17{height:19.800000px;}
.h1b{height:19.836000px;}
.h16{height:19.980000px;}
.h19{height:20.016000px;}
.hb{height:21.420000px;}
.he{height:27.147656px;}
.h7{height:33.480000px;}
.h18{height:39.600000px;}
.h1a{height:39.780000px;}
.h15{height:39.996000px;}
.h10{height:41.726953px;}
.hf{height:42.164648px;}
.h11{height:43.506914px;}
.h1d{height:45.024258px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h12{height:49.255313px;}
.h9{height:53.224453px;}
.h13{height:58.500000px;}
.h8{height:60.855469px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h14{height:254.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wf{width:33.120000px;}
.we{width:46.440000px;}
.w13{width:48.960000px;}
.w12{width:57.096000px;}
.w18{width:81.036000px;}
.w3{width:137.556000px;}
.w14{width:139.716000px;}
.w7{width:150.330000px;}
.wa{width:156.270000px;}
.w19{width:171.390000px;}
.w10{width:194.610000px;}
.w17{width:228.090000px;}
.wb{width:245.010000px;}
.w9{width:252.030000px;}
.w8{width:252.570000px;}
.w6{width:252.930000px;}
.w16{width:301.035000px;}
.wd{width:423.615000px;}
.w11{width:527.145000px;}
.w2{width:649.410000px;}
.wc{width:655.845000px;}
.w15{width:774.900000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:2.340000px;}
.x2{left:8.100000px;}
.x11{left:34.734000px;}
.x1{left:53.100000px;}
.x1c{left:55.080000px;}
.x18{left:59.040000px;}
.x6{left:71.819987px;}
.xc{left:80.999987px;}
.x14{left:96.516000px;}
.x9{left:106.415987px;}
.xb{left:108.395987px;}
.x4{left:118.470000px;}
.xe{left:135.035987px;}
.xd{left:162.029987px;}
.x13{left:218.199000px;}
.x7{left:280.154987px;}
.xa{left:350.354987px;}
.x1e{left:356.475000px;}
.xf{left:371.595000px;}
.x8{left:446.504987px;}
.x15{left:520.845000px;}
.x10{left:521.925000px;}
.x12{left:529.125000px;}
.x16{left:568.005000px;}
.x1f{left:585.285000px;}
.x19{left:586.905000px;}
.x17{left:601.845000px;}
.x1a{left:644.730000px;}
.x20{left:667.050000px;}
.x1b{left:694.410000px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.800000pt;}
.lsa{letter-spacing:1.232640pt;}
.ls15{letter-spacing:14.672640pt;}
.ls6{letter-spacing:20.560640pt;}
.ls1{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.ls7{letter-spacing:62.672640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-7.490560pt;}
._15{margin-left:-6.082560pt;}
._14{margin-left:-4.341120pt;}
._16{margin-left:-3.030400pt;}
._12{margin-left:-2.042880pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.938667pt;}
._1{width:1.973333pt;}
._1d{width:2.988587pt;}
._1c{width:4.101120pt;}
._18{width:5.141760pt;}
._17{width:6.453333pt;}
._1b{width:7.569920pt;}
._1e{width:8.567253pt;}
._6{width:9.600000pt;}
._1a{width:10.638293pt;}
._19{width:11.633280pt;}
._21{width:14.183040pt;}
._20{width:15.617280pt;}
._f{width:16.842667pt;}
._1f{width:17.809067pt;}
._22{width:19.016960pt;}
._27{width:22.346027pt;}
._26{width:23.655893pt;}
._25{width:53.293867pt;}
._23{width:55.017813pt;}
._24{width:57.806933pt;}
._7{width:67.808853pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y105{bottom:2.560000pt;}
.yc7{bottom:5.120000pt;}
.ye{bottom:5.280000pt;}
.y6{bottom:11.040000pt;}
.ycb{bottom:13.920000pt;}
.yfa{bottom:14.080000pt;}
.y9e{bottom:15.066667pt;}
.y8{bottom:16.160000pt;}
.yca{bottom:22.720000pt;}
.yf9{bottom:22.880000pt;}
.yc{bottom:30.720000pt;}
.y5{bottom:35.840000pt;}
.y95{bottom:39.520000pt;}
.yb{bottom:48.960000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.y9b{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y103{bottom:88.800000pt;}
.y9a{bottom:90.560000pt;}
.y6a{bottom:92.160000pt;}
.y3b{bottom:92.960000pt;}
.yc1{bottom:93.760000pt;}
.yb8{bottom:95.840000pt;}
.y141{bottom:97.920000pt;}
.y13e{bottom:100.160000pt;}
.yd8{bottom:100.800000pt;}
.y93{bottom:101.760000pt;}
.y102{bottom:107.200000pt;}
.y99{bottom:109.120000pt;}
.y9c{bottom:109.600000pt;}
.y69{bottom:109.760000pt;}
.y3a{bottom:110.720000pt;}
.yc0{bottom:111.520000pt;}
.y2{bottom:111.706667pt;}
.yb7{bottom:113.440000pt;}
.y126{bottom:114.720000pt;}
.y140{bottom:115.680000pt;}
.y13d{bottom:117.760000pt;}
.yd7{bottom:119.040000pt;}
.y92{bottom:119.520000pt;}
.y101{bottom:125.440000pt;}
.y68{bottom:127.520000pt;}
.y98{bottom:127.840000pt;}
.y39{bottom:128.320000pt;}
.ybf{bottom:129.120000pt;}
.yb6{bottom:131.200000pt;}
.y125{bottom:132.480000pt;}
.y13f{bottom:133.440000pt;}
.y13c{bottom:135.546667pt;}
.y91{bottom:137.146667pt;}
.yd6{bottom:137.466667pt;}
.y100{bottom:143.706667pt;}
.y67{bottom:145.146667pt;}
.y38{bottom:145.946667pt;}
.y97{bottom:146.400000pt;}
.ybe{bottom:146.746667pt;}
.y124{bottom:150.106667pt;}
.y13b{bottom:153.146667pt;}
.y90{bottom:154.746667pt;}
.yd5{bottom:155.706667pt;}
.yb5{bottom:156.826667pt;}
.yff{bottom:162.106667pt;}
.y66{bottom:162.746667pt;}
.y37{bottom:163.546667pt;}
.ybd{bottom:164.346667pt;}
.y123{bottom:167.706667pt;}
.y13a{bottom:170.746667pt;}
.y8f{bottom:172.346667pt;}
.yd4{bottom:174.106667pt;}
.yb4{bottom:174.426667pt;}
.y65{bottom:180.346667pt;}
.y36{bottom:181.146667pt;}
.ybc{bottom:181.946667pt;}
.y122{bottom:185.306667pt;}
.y139{bottom:188.346667pt;}
.y8e{bottom:189.946667pt;}
.yb3{bottom:192.026667pt;}
.yd3{bottom:192.346667pt;}
.y64{bottom:197.946667pt;}
.yfe{bottom:198.586667pt;}
.y35{bottom:198.906667pt;}
.ybb{bottom:199.706667pt;}
.y121{bottom:202.906667pt;}
.y138{bottom:205.946667pt;}
.y8d{bottom:207.706667pt;}
.yb2{bottom:209.626667pt;}
.yd2{bottom:210.586667pt;}
.y63{bottom:215.706667pt;}
.y34{bottom:216.506667pt;}
.yfd{bottom:216.986667pt;}
.y120{bottom:220.666667pt;}
.y137{bottom:223.706667pt;}
.y8c{bottom:225.306667pt;}
.yb1{bottom:227.386667pt;}
.yd1{bottom:228.986667pt;}
.y62{bottom:233.306667pt;}
.y33{bottom:234.106667pt;}
.y11f{bottom:238.266667pt;}
.y136{bottom:241.306667pt;}
.y8b{bottom:242.906667pt;}
.yb0{bottom:244.986667pt;}
.y104{bottom:246.266667pt;}
.yd0{bottom:247.226667pt;}
.y61{bottom:250.906667pt;}
.y32{bottom:251.706667pt;}
.y11e{bottom:255.866667pt;}
.y135{bottom:258.906667pt;}
.yf7{bottom:259.866667pt;}
.y8a{bottom:260.506667pt;}
.yaf{bottom:262.586667pt;}
.y60{bottom:268.506667pt;}
.y31{bottom:269.306667pt;}
.y11d{bottom:273.466667pt;}
.y134{bottom:276.506667pt;}
.yf6{bottom:277.466667pt;}
.y89{bottom:278.106667pt;}
.yae{bottom:280.186667pt;}
.ycf{bottom:283.226667pt;}
.y5f{bottom:286.106667pt;}
.y30{bottom:287.066667pt;}
.y11c{bottom:291.066667pt;}
.y133{bottom:294.106667pt;}
.yf5{bottom:295.066667pt;}
.y88{bottom:295.866667pt;}
.yad{bottom:297.786667pt;}
.yce{bottom:301.466667pt;}
.y5e{bottom:303.866667pt;}
.y2f{bottom:304.666667pt;}
.y11b{bottom:308.826667pt;}
.y132{bottom:311.866667pt;}
.yf4{bottom:312.826667pt;}
.y87{bottom:313.466667pt;}
.ycd{bottom:319.706667pt;}
.y5d{bottom:321.466667pt;}
.y2e{bottom:322.266667pt;}
.yac{bottom:323.546667pt;}
.y11a{bottom:326.426667pt;}
.y131{bottom:329.466667pt;}
.yf3{bottom:330.426667pt;}
.y86{bottom:331.066667pt;}
.ycc{bottom:338.106667pt;}
.y5c{bottom:339.066667pt;}
.y2d{bottom:339.866667pt;}
.yab{bottom:341.146667pt;}
.y119{bottom:344.026667pt;}
.y130{bottom:347.066667pt;}
.yf2{bottom:348.026667pt;}
.y85{bottom:348.666667pt;}
.yc9{bottom:356.386667pt;}
.y5b{bottom:356.706667pt;}
.y2c{bottom:357.506667pt;}
.yaa{bottom:358.786667pt;}
.y118{bottom:361.666667pt;}
.y12f{bottom:364.706667pt;}
.yf1{bottom:365.666667pt;}
.y84{bottom:366.306667pt;}
.y5a{bottom:374.306667pt;}
.y2b{bottom:375.266667pt;}
.ya9{bottom:376.386667pt;}
.y117{bottom:379.266667pt;}
.y12e{bottom:382.306667pt;}
.yf0{bottom:383.266667pt;}
.y83{bottom:384.066667pt;}
.y59{bottom:392.066667pt;}
.yc8{bottom:392.386667pt;}
.y2a{bottom:392.866667pt;}
.ya8{bottom:393.986667pt;}
.y116{bottom:397.026667pt;}
.y12d{bottom:400.066667pt;}
.yef{bottom:401.026667pt;}
.y82{bottom:401.666667pt;}
.y58{bottom:409.666667pt;}
.y29{bottom:410.466667pt;}
.yc6{bottom:410.626667pt;}
.ya7{bottom:411.746667pt;}
.y115{bottom:414.626667pt;}
.y12c{bottom:417.666667pt;}
.yee{bottom:418.626667pt;}
.y81{bottom:419.266667pt;}
.y57{bottom:427.266667pt;}
.y28{bottom:428.066667pt;}
.yc5{bottom:428.866667pt;}
.y114{bottom:432.226667pt;}
.y12b{bottom:435.266667pt;}
.yed{bottom:436.226667pt;}
.y80{bottom:436.866667pt;}
.ya6{bottom:437.346667pt;}
.y56{bottom:444.866667pt;}
.y27{bottom:445.666667pt;}
.y113{bottom:449.826667pt;}
.yc4{bottom:452.866667pt;}
.yec{bottom:453.826667pt;}
.yba{bottom:454.466667pt;}
.ya5{bottom:454.946667pt;}
.y55{bottom:462.466667pt;}
.y26{bottom:463.426667pt;}
.y112{bottom:467.426667pt;}
.yc3{bottom:470.466667pt;}
.yeb{bottom:471.426667pt;}
.yb9{bottom:472.226667pt;}
.ya4{bottom:472.546667pt;}
.y54{bottom:480.226667pt;}
.y25{bottom:481.026667pt;}
.y111{bottom:485.186667pt;}
.yc2{bottom:488.226667pt;}
.yea{bottom:489.186667pt;}
.ya3{bottom:490.146667pt;}
.y7f{bottom:497.826667pt;}
.y24{bottom:498.626667pt;}
.y110{bottom:502.786667pt;}
.y53{bottom:505.826667pt;}
.ye9{bottom:506.786667pt;}
.ya2{bottom:507.906667pt;}
.y7e{bottom:515.426667pt;}
.y23{bottom:516.226667pt;}
.y10f{bottom:520.386667pt;}
.y52{bottom:523.426667pt;}
.ye8{bottom:524.386667pt;}
.ya1{bottom:525.506667pt;}
.y7d{bottom:533.026667pt;}
.y22{bottom:533.826667pt;}
.y10e{bottom:537.986667pt;}
.y51{bottom:541.026667pt;}
.ye7{bottom:541.986667pt;}
.ya0{bottom:543.106667pt;}
.y7c{bottom:550.626667pt;}
.y21{bottom:551.586667pt;}
.y10d{bottom:555.586667pt;}
.y50{bottom:558.626667pt;}
.ye6{bottom:559.586667pt;}
.y9f{bottom:560.706667pt;}
.y7b{bottom:568.386667pt;}
.y10c{bottom:568.866667pt;}
.y20{bottom:569.186667pt;}
.y9d{bottom:573.186667pt;}
.y4f{bottom:576.386667pt;}
.ye5{bottom:577.373333pt;}
.y7a{bottom:586.013333pt;}
.y1f{bottom:586.813333pt;}
.y10b{bottom:587.133333pt;}
.y4e{bottom:594.013333pt;}
.ye4{bottom:594.973333pt;}
.y79{bottom:603.613333pt;}
.y1e{bottom:604.413333pt;}
.y10a{bottom:605.373333pt;}
.y96{bottom:609.373333pt;}
.y4d{bottom:611.613333pt;}
.ye3{bottom:612.573333pt;}
.y78{bottom:621.213333pt;}
.y1d{bottom:622.013333pt;}
.y109{bottom:623.773333pt;}
.y4c{bottom:629.213333pt;}
.ye2{bottom:630.173333pt;}
.y77{bottom:638.813333pt;}
.y1c{bottom:639.773333pt;}
.y108{bottom:642.013333pt;}
.y4b{bottom:646.813333pt;}
.ye1{bottom:647.773333pt;}
.y76{bottom:656.573333pt;}
.y1b{bottom:657.373333pt;}
.y4a{bottom:664.573333pt;}
.ye0{bottom:665.533333pt;}
.y75{bottom:674.173333pt;}
.y1a{bottom:674.973333pt;}
.y49{bottom:682.173333pt;}
.ydf{bottom:683.133333pt;}
.y74{bottom:691.773333pt;}
.y19{bottom:692.573333pt;}
.y48{bottom:699.773333pt;}
.yde{bottom:700.733333pt;}
.y73{bottom:709.373333pt;}
.y18{bottom:710.173333pt;}
.y47{bottom:717.373333pt;}
.ydd{bottom:718.333333pt;}
.y72{bottom:726.973333pt;}
.y17{bottom:727.933333pt;}
.y46{bottom:734.973333pt;}
.ydc{bottom:735.933333pt;}
.y71{bottom:744.733333pt;}
.y16{bottom:745.533333pt;}
.y45{bottom:752.733333pt;}
.ydb{bottom:753.693333pt;}
.y70{bottom:762.333333pt;}
.y15{bottom:763.133333pt;}
.y44{bottom:770.333333pt;}
.yda{bottom:771.293333pt;}
.y6f{bottom:779.933333pt;}
.y14{bottom:785.373333pt;}
.y43{bottom:787.933333pt;}
.yd9{bottom:788.893333pt;}
.y6e{bottom:797.533333pt;}
.y13{bottom:798.853333pt;}
.y42{bottom:805.573333pt;}
.y107{bottom:806.533333pt;}
.y6d{bottom:815.173333pt;}
.yfc{bottom:815.493333pt;}
.y12{bottom:818.373333pt;}
.y41{bottom:823.173333pt;}
.y106{bottom:824.133333pt;}
.y6c{bottom:832.933333pt;}
.yfb{bottom:833.733333pt;}
.y94{bottom:836.613333pt;}
.y11{bottom:837.733333pt;}
.y40{bottom:840.933333pt;}
.y6b{bottom:850.533333pt;}
.y12a{bottom:850.693333pt;}
.yf8{bottom:851.973333pt;}
.y3f{bottom:858.533333pt;}
.y10{bottom:859.813333pt;}
.y129{bottom:868.933333pt;}
.y3e{bottom:876.133333pt;}
.y128{bottom:887.333333pt;}
.yf{bottom:887.973333pt;}
.y3d{bottom:893.733333pt;}
.y127{bottom:905.573333pt;}
.y3c{bottom:911.333333pt;}
.y9{bottom:928.293333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h1c{height:15.040000pt;}
.h17{height:17.600000pt;}
.h1b{height:17.632000pt;}
.h16{height:17.760000pt;}
.h19{height:17.792000pt;}
.hb{height:19.040000pt;}
.he{height:24.131250pt;}
.h7{height:29.760000pt;}
.h18{height:35.200000pt;}
.h1a{height:35.360000pt;}
.h15{height:35.552000pt;}
.h10{height:37.090625pt;}
.hf{height:37.479688pt;}
.h11{height:38.672812pt;}
.h1d{height:40.021563pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h12{height:43.782500pt;}
.h9{height:47.310625pt;}
.h13{height:52.000000pt;}
.h8{height:54.093750pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h14{height:226.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wf{width:29.440000pt;}
.we{width:41.280000pt;}
.w13{width:43.520000pt;}
.w12{width:50.752000pt;}
.w18{width:72.032000pt;}
.w3{width:122.272000pt;}
.w14{width:124.192000pt;}
.w7{width:133.626667pt;}
.wa{width:138.906667pt;}
.w19{width:152.346667pt;}
.w10{width:172.986667pt;}
.w17{width:202.746667pt;}
.wb{width:217.786667pt;}
.w9{width:224.026667pt;}
.w8{width:224.506667pt;}
.w6{width:224.826667pt;}
.w16{width:267.586667pt;}
.wd{width:376.546667pt;}
.w11{width:468.573333pt;}
.w2{width:577.253333pt;}
.wc{width:582.973333pt;}
.w15{width:688.800000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:2.080000pt;}
.x2{left:7.200000pt;}
.x11{left:30.874667pt;}
.x1{left:47.200000pt;}
.x1c{left:48.960000pt;}
.x18{left:52.480000pt;}
.x6{left:63.839988pt;}
.xc{left:71.999988pt;}
.x14{left:85.792000pt;}
.x9{left:94.591988pt;}
.xb{left:96.351988pt;}
.x4{left:105.306667pt;}
.xe{left:120.031988pt;}
.xd{left:144.026655pt;}
.x13{left:193.954667pt;}
.x7{left:249.026655pt;}
.xa{left:311.426655pt;}
.x1e{left:316.866667pt;}
.xf{left:330.306667pt;}
.x8{left:396.893322pt;}
.x15{left:462.973333pt;}
.x10{left:463.933333pt;}
.x12{left:470.333333pt;}
.x16{left:504.893333pt;}
.x1f{left:520.253333pt;}
.x19{left:521.693333pt;}
.x17{left:534.973333pt;}
.x1a{left:573.093333pt;}
.x20{left:592.933333pt;}
.x1b{left:617.253333pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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