
    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_ff8d870301991a0038ed0e1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_7f8f1d0bb14f34d2c4b0fd14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_8ae378fbad79ad78d63db571.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_9d9812ce18a5fd937f141d7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_e9f9ebcf01cfbfa9bd722dee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_dae9c5fe2a41fd691dab424b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_5e019da470e12c3e513dcc87.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_8223531f01210369c01baea7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_38d3ca2d91ffe34f88440132.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;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.091200px;}
.ls4{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:7.200000px;}
.lsb{letter-spacing:14.400000px;}
.lsa{letter-spacing:18.720000px;}
.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:-18.000000px;}
.wsc{word-spacing:-16.992000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:-12.236544px;}
.ws7{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:60.918000px;}
.ws5{word-spacing:66.174000px;}
.ws8{word-spacing:67.206000px;}
.ws9{word-spacing:68.940000px;}
.wsa{word-spacing:89.364000px;}
.wsb{word-spacing:95.592000px;}
._1a{margin-left:-4.624320px;}
._e{margin-left:-3.439680px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._17{width:3.556800px;}
._d{width:4.896000px;}
._a{width:6.336000px;}
._8{width:8.280000px;}
._9{width:9.360000px;}
._c{width:10.512000px;}
._16{width:11.592000px;}
._18{width:12.600000px;}
._19{width:14.040000px;}
._1d{width:15.348000px;}
._b{width:16.776000px;}
._11{width:19.440000px;}
._1b{width:20.664000px;}
._14{width:21.888000px;}
._15{width:23.668080px;}
._1c{width:25.056000px;}
._f{width:26.280000px;}
._10{width:27.360000px;}
._1f{width:29.016000px;}
._12{width:31.032000px;}
._13{width:32.248080px;}
._1e{width:33.264000px;}
._24{width:34.344000px;}
._27{width:35.928000px;}
._26{width:37.512000px;}
._20{width:38.808000px;}
._21{width:39.816000px;}
._25{width:51.304320px;}
._22{width:101.538000px;}
._23{width:107.622000px;}
._6{width:128.592000px;}
._3{width:194.376000px;}
._5{width:1370.100000px;}
._7{width:1864.536000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:54.144000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.y14{bottom:12.600000px;}
.y42{bottom:12.780000px;}
.yb2{bottom:17.610000px;}
.y10c{bottom:17.640000px;}
.yc9{bottom:17.670000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y7{bottom:21.420000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.yb1{bottom:47.520000px;}
.yc8{bottom:47.550000px;}
.yd3{bottom:47.595000px;}
.y12{bottom:57.420000px;}
.ya9{bottom:65.055000px;}
.yc0{bottom:65.130000px;}
.ycb{bottom:65.160000px;}
.y11{bottom:73.260000px;}
.yf1{bottom:94.500000px;}
.ycc{bottom:101.850000px;}
.yaa{bottom:103.935000px;}
.yc1{bottom:107.070000px;}
.y40{bottom:110.160000px;}
.y98{bottom:111.960000px;}
.y3f{bottom:115.380000px;}
.y71{bottom:115.560000px;}
.y108{bottom:122.220000px;}
.y142{bottom:122.760000px;}
.y123{bottom:123.660000px;}
.ye1{bottom:123.840000px;}
.y15a{bottom:127.260000px;}
.y3e{bottom:128.160000px;}
.ybe{bottom:129.960000px;}
.y97{bottom:132.660000px;}
.ycd{bottom:138.525000px;}
.yab{bottom:142.815000px;}
.y107{bottom:142.920000px;}
.y70{bottom:145.260000px;}
.y159{bottom:147.960000px;}
.yc2{bottom:149.010000px;}
.y141{bottom:152.460000px;}
.yf2{bottom:153.180000px;}
.y122{bottom:153.360000px;}
.ybd{bottom:159.660000px;}
.y3d{bottom:161.460000px;}
.y96{bottom:162.360000px;}
.y106{bottom:163.620000px;}
.y6f{bottom:165.960000px;}
.y158{bottom:168.660000px;}
.y121{bottom:174.060000px;}
.yce{bottom:175.245000px;}
.ybc{bottom:180.360000px;}
.yac{bottom:181.695000px;}
.y140{bottom:182.160000px;}
.ye2{bottom:182.550000px;}
.yf0{bottom:185.220000px;}
.y6e{bottom:186.660000px;}
.y157{bottom:189.360000px;}
.yc3{bottom:190.950000px;}
.y3c{bottom:191.160000px;}
.y95{bottom:192.060000px;}
.y105{bottom:193.320000px;}
.ybb{bottom:201.090000px;}
.y13f{bottom:202.890000px;}
.y120{bottom:203.790000px;}
.y6d{bottom:207.390000px;}
.yf3{bottom:211.890000px;}
.ycf{bottom:211.935000px;}
.y94{bottom:212.790000px;}
.y104{bottom:214.050000px;}
.y156{bottom:219.090000px;}
.yad{bottom:220.605000px;}
.y3b{bottom:220.890000px;}
.yba{bottom:221.790000px;}
.y6c{bottom:228.090000px;}
.y13e{bottom:232.590000px;}
.yc4{bottom:232.890000px;}
.y93{bottom:233.490000px;}
.y103{bottom:234.750000px;}
.y155{bottom:239.790000px;}
.y10a{bottom:241.230000px;}
.ye3{bottom:241.275000px;}
.yd0{bottom:248.610000px;}
.y6b{bottom:248.790000px;}
.y3a{bottom:250.590000px;}
.yb9{bottom:251.490000px;}
.y13d{bottom:253.290000px;}
.y92{bottom:254.190000px;}
.yae{bottom:259.485000px;}
.y154{bottom:260.490000px;}
.y11f{bottom:263.190000px;}
.y102{bottom:264.450000px;}
.y6a{bottom:269.490000px;}
.yf4{bottom:270.615000px;}
.y39{bottom:271.290000px;}
.y13c{bottom:273.990000px;}
.yc5{bottom:274.830000px;}
.yb8{bottom:277.050000px;}
.yca{bottom:278.460000px;}
.y153{bottom:281.190000px;}
.y91{bottom:283.890000px;}
.yd1{bottom:285.330000px;}
.y38{bottom:291.990000px;}
.y101{bottom:294.150000px;}
.yaf{bottom:298.365000px;}
.y69{bottom:299.190000px;}
.y10b{bottom:299.955000px;}
.ye4{bottom:299.985000px;}
.y152{bottom:301.890000px;}
.y13b{bottom:303.690000px;}
.y90{bottom:304.590000px;}
.y37{bottom:312.690000px;}
.yc6{bottom:316.770000px;}
.ya7{bottom:319.350000px;}
.y68{bottom:319.890000px;}
.yd2{bottom:322.020000px;}
.y151{bottom:322.590000px;}
.y100{bottom:323.850000px;}
.y13a{bottom:324.390000px;}
.y8f{bottom:325.290000px;}
.yf5{bottom:329.325000px;}
.y36{bottom:333.390000px;}
.yb0{bottom:337.245000px;}
.ya6{bottom:340.050000px;}
.y67{bottom:340.590000px;}
.y150{bottom:343.290000px;}
.y8e{bottom:345.990000px;}
.y163{bottom:352.290000px;}
.yff{bottom:353.550000px;}
.y35{bottom:354.090000px;}
.y11e{bottom:354.990000px;}
.ye5{bottom:358.665000px;}
.yc7{bottom:358.710000px;}
.ya5{bottom:360.750000px;}
.y66{bottom:361.290000px;}
.y14f{bottom:372.990000px;}
.yfe{bottom:374.250000px;}
.y34{bottom:374.790000px;}
.y8d{bottom:375.690000px;}
.ya4{bottom:381.450000px;}
.y65{bottom:381.990000px;}
.y14e{bottom:393.690000px;}
.yfd{bottom:394.950000px;}
.y33{bottom:395.490000px;}
.y11d{bottom:396.390000px;}
.ya3{bottom:402.150000px;}
.y64{bottom:402.690000px;}
.y139{bottom:404.490000px;}
.y8c{bottom:405.390000px;}
.y14d{bottom:414.390000px;}
.ydf{bottom:415.650000px;}
.y32{bottom:416.190000px;}
.ya2{bottom:422.850000px;}
.y63{bottom:423.390000px;}
.y138{bottom:425.190000px;}
.y8b{bottom:426.090000px;}
.yde{bottom:436.395000px;}
.y31{bottom:436.935000px;}
.y62{bottom:444.135000px;}
.yee{bottom:445.395000px;}
.y8a{bottom:446.835000px;}
.ya1{bottom:452.595000px;}
.y137{bottom:454.935000px;}
.y30{bottom:457.635000px;}
.y14c{bottom:464.835000px;}
.ydd{bottom:466.095000px;}
.y11c{bottom:467.535000px;}
.y61{bottom:473.835000px;}
.yed{bottom:475.095000px;}
.y89{bottom:476.535000px;}
.y2f{bottom:478.335000px;}
.ya8{bottom:478.620000px;}
.y136{bottom:484.635000px;}
.y14b{bottom:485.535000px;}
.yfc{bottom:486.795000px;}
.y60{bottom:494.535000px;}
.ydc{bottom:495.795000px;}
.y88{bottom:497.235000px;}
.y2e{bottom:499.035000px;}
.yec{bottom:504.795000px;}
.y14a{bottom:506.235000px;}
.yfb{bottom:507.495000px;}
.y135{bottom:514.335000px;}
.y5f{bottom:515.235000px;}
.ydb{bottom:516.495000px;}
.y87{bottom:517.935000px;}
.y2d{bottom:519.735000px;}
.yeb{bottom:525.495000px;}
.y149{bottom:526.935000px;}
.yfa{bottom:528.195000px;}
.y134{bottom:535.035000px;}
.y5e{bottom:535.935000px;}
.yda{bottom:537.195000px;}
.y86{bottom:538.635000px;}
.y2c{bottom:540.435000px;}
.yea{bottom:546.195000px;}
.y148{bottom:547.635000px;}
.yf9{bottom:548.895000px;}
.y5d{bottom:556.635000px;}
.yd9{bottom:557.895000px;}
.y85{bottom:559.335000px;}
.y2b{bottom:561.135000px;}
.y133{bottom:564.735000px;}
.ye9{bottom:566.895000px;}
.y11b{bottom:568.335000px;}
.y5c{bottom:577.335000px;}
.yd8{bottom:578.595000px;}
.y84{bottom:580.035000px;}
.y2a{bottom:581.835000px;}
.y132{bottom:585.435000px;}
.y162{bottom:586.335000px;}
.ye8{bottom:587.595000px;}
.y11a{bottom:589.035000px;}
.y5b{bottom:598.035000px;}
.y83{bottom:600.735000px;}
.y29{bottom:602.535000px;}
.yf8{bottom:604.335000px;}
.y109{bottom:605.700000px;}
.y161{bottom:607.035000px;}
.yd7{bottom:608.295000px;}
.y119{bottom:609.735000px;}
.y131{bottom:615.135000px;}
.y41{bottom:617.475000px;}
.y5a{bottom:618.735000px;}
.y28{bottom:623.235000px;}
.y160{bottom:627.735000px;}
.yd6{bottom:628.995000px;}
.y82{bottom:630.435000px;}
.y130{bottom:635.835000px;}
.y13{bottom:636.195000px;}
.yef{bottom:637.995000px;}
.y118{bottom:639.435000px;}
.y27{bottom:643.935000px;}
.y59{bottom:648.435000px;}
.yd5{bottom:649.695000px;}
.ye7{bottom:658.695000px;}
.y81{bottom:660.135000px;}
.y26{bottom:664.635000px;}
.y12f{bottom:665.535000px;}
.y15f{bottom:669.135000px;}
.yb7{bottom:670.395000px;}
.y58{bottom:678.165000px;}
.ye6{bottom:679.425000px;}
.y80{bottom:680.865000px;}
.y12e{bottom:686.265000px;}
.y25{bottom:694.365000px;}
.y15e{bottom:698.865000px;}
.yb6{bottom:700.125000px;}
.y7f{bottom:701.565000px;}
.y12d{bottom:706.965000px;}
.y57{bottom:707.865000px;}
.y15d{bottom:719.565000px;}
.yb5{bottom:720.825000px;}
.y7e{bottom:722.265000px;}
.y24{bottom:724.065000px;}
.yd4{bottom:725.865000px;}
.ye0{bottom:727.200000px;}
.y117{bottom:731.265000px;}
.y12c{bottom:736.665000px;}
.y56{bottom:737.565000px;}
.y15c{bottom:740.265000px;}
.y7d{bottom:742.965000px;}
.yb4{bottom:750.525000px;}
.y23{bottom:753.765000px;}
.y12b{bottom:757.365000px;}
.y55{bottom:758.265000px;}
.y116{bottom:760.965000px;}
.y7c{bottom:763.665000px;}
.yb3{bottom:776.265000px;}
.ybf{bottom:777.600000px;}
.y54{bottom:778.965000px;}
.y115{bottom:781.665000px;}
.y7b{bottom:784.365000px;}
.y12a{bottom:787.065000px;}
.y22{bottom:790.305000px;}
.y53{bottom:799.665000px;}
.y114{bottom:802.365000px;}
.y7a{bottom:805.065000px;}
.y129{bottom:807.765000px;}
.y21{bottom:813.165000px;}
.y52{bottom:820.365000px;}
.y113{bottom:823.065000px;}
.y79{bottom:834.765000px;}
.y128{bottom:837.465000px;}
.y51{bottom:841.065000px;}
.y15b{bottom:843.765000px;}
.ya0{bottom:849.165000px;}
.y20{bottom:849.705000px;}
.y112{bottom:852.765000px;}
.y147{bottom:855.465000px;}
.y127{bottom:858.165000px;}
.y50{bottom:861.765000px;}
.y78{bottom:864.465000px;}
.y1f{bottom:872.565000px;}
.y111{bottom:873.465000px;}
.y146{bottom:876.165000px;}
.y9f{bottom:878.865000px;}
.y4f{bottom:882.465000px;}
.y126{bottom:887.865000px;}
.y77{bottom:894.165000px;}
.y145{bottom:896.865000px;}
.y1e{bottom:902.265000px;}
.y4e{bottom:903.165000px;}
.y9e{bottom:908.565000px;}
.y110{bottom:914.910000px;}
.y144{bottom:917.610000px;}
.y4d{bottom:923.910000px;}
.y1d{bottom:932.010000px;}
.y10f{bottom:935.610000px;}
.y9d{bottom:938.310000px;}
.y4c{bottom:944.610000px;}
.y10e{bottom:956.310000px;}
.y125{bottom:959.010000px;}
.y1c{bottom:961.710000px;}
.y4b{bottom:965.310000px;}
.y9c{bottom:968.010000px;}
.y10d{bottom:977.010000px;}
.y143{bottom:979.710000px;}
.y4a{bottom:986.010000px;}
.y9b{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y1b{bottom:997.350000px;}
.yf7{bottom:997.710000px;}
.y49{bottom:1006.710000px;}
.y9a{bottom:1009.410000px;}
.yf6{bottom:1018.410000px;}
.y19{bottom:1021.110000px;}
.y48{bottom:1027.410000px;}
.y76{bottom:1036.410000px;}
.y99{bottom:1039.110000px;}
.y47{bottom:1048.110000px;}
.y18{bottom:1050.810000px;}
.y75{bottom:1057.110000px;}
.y124{bottom:1059.810000px;}
.y46{bottom:1068.810000px;}
.y74{bottom:1077.810000px;}
.y17{bottom:1080.510000px;}
.y45{bottom:1089.510000px;}
.y73{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y44{bottom:1110.210000px;}
.y72{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y43{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.080000px;}
.h14{height:28.260000px;}
.h12{height:38.671172px;}
.h11{height:40.254961px;}
.hf{height:41.362031px;}
.ha{height:49.868086px;}
.h5{height:52.020000px;}
.h16{height:53.709961px;}
.h2{height:53.820000px;}
.h17{height:53.853187px;}
.hc{height:55.275469px;}
.h13{height:59.439023px;}
.hd{height:60.082031px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.h10{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h15{height:357.660000px;}
.h18{height:379.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.wa{width:621.000000px;}
.wb{width:649.080000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x19{left:16.704000px;}
.x5{left:21.960000px;}
.x21{left:37.908000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x17{left:111.095987px;}
.x12{left:144.575987px;}
.x2{left:148.005000px;}
.x27{left:160.380000px;}
.xd{left:162.569987px;}
.x1{left:165.270000px;}
.x24{left:169.170000px;}
.x25{left:170.715000px;}
.x26{left:183.705000px;}
.x23{left:192.630000px;}
.x14{left:214.229987px;}
.x1b{left:245.265000px;}
.x1e{left:291.570000px;}
.x22{left:296.175000px;}
.x20{left:299.880000px;}
.x1d{left:302.790000px;}
.x1a{left:311.220000px;}
.x1f{left:312.870000px;}
.x11{left:320.834987px;}
.x16{left:322.274987px;}
.x13{left:337.934987px;}
.x15{left:340.274987px;}
.x7{left:378.075000px;}
.x10{left:446.474987px;}
.x8{left:662.730000px;}
.xe{left:724.289973px;}
.x18{left:727.349987px;}
.xf{left:730.409987px;}
.x1c{left:756.509987px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.081067pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:6.400000pt;}
.lsb{letter-spacing:12.800000pt;}
.lsa{letter-spacing:16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.104000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:-10.876928pt;}
.ws7{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:54.149333pt;}
.ws5{word-spacing:58.821333pt;}
.ws8{word-spacing:59.738667pt;}
.ws9{word-spacing:61.280000pt;}
.wsa{word-spacing:79.434667pt;}
.wsb{word-spacing:84.970667pt;}
._1a{margin-left:-4.110507pt;}
._e{margin-left:-3.057493pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._17{width:3.161600pt;}
._d{width:4.352000pt;}
._a{width:5.632000pt;}
._8{width:7.360000pt;}
._9{width:8.320000pt;}
._c{width:9.344000pt;}
._16{width:10.304000pt;}
._18{width:11.200000pt;}
._19{width:12.480000pt;}
._1d{width:13.642667pt;}
._b{width:14.912000pt;}
._11{width:17.280000pt;}
._1b{width:18.368000pt;}
._14{width:19.456000pt;}
._15{width:21.038293pt;}
._1c{width:22.272000pt;}
._f{width:23.360000pt;}
._10{width:24.320000pt;}
._1f{width:25.792000pt;}
._12{width:27.584000pt;}
._13{width:28.664960pt;}
._1e{width:29.568000pt;}
._24{width:30.528000pt;}
._27{width:31.936000pt;}
._26{width:33.344000pt;}
._20{width:34.496000pt;}
._21{width:35.392000pt;}
._25{width:45.603840pt;}
._22{width:90.256000pt;}
._23{width:95.664000pt;}
._6{width:114.304000pt;}
._3{width:172.778667pt;}
._5{width:1217.866667pt;}
._7{width:1657.365333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:48.128000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.y14{bottom:11.200000pt;}
.y42{bottom:11.360000pt;}
.yb2{bottom:15.653333pt;}
.y10c{bottom:15.680000pt;}
.yc9{bottom:15.706667pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y7{bottom:19.040000pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.yb1{bottom:42.240000pt;}
.yc8{bottom:42.266667pt;}
.yd3{bottom:42.306667pt;}
.y12{bottom:51.040000pt;}
.ya9{bottom:57.826667pt;}
.yc0{bottom:57.893333pt;}
.ycb{bottom:57.920000pt;}
.y11{bottom:65.120000pt;}
.yf1{bottom:84.000000pt;}
.ycc{bottom:90.533333pt;}
.yaa{bottom:92.386667pt;}
.yc1{bottom:95.173333pt;}
.y40{bottom:97.920000pt;}
.y98{bottom:99.520000pt;}
.y3f{bottom:102.560000pt;}
.y71{bottom:102.720000pt;}
.y108{bottom:108.640000pt;}
.y142{bottom:109.120000pt;}
.y123{bottom:109.920000pt;}
.ye1{bottom:110.080000pt;}
.y15a{bottom:113.120000pt;}
.y3e{bottom:113.920000pt;}
.ybe{bottom:115.520000pt;}
.y97{bottom:117.920000pt;}
.ycd{bottom:123.133333pt;}
.yab{bottom:126.946667pt;}
.y107{bottom:127.040000pt;}
.y70{bottom:129.120000pt;}
.y159{bottom:131.520000pt;}
.yc2{bottom:132.453333pt;}
.y141{bottom:135.520000pt;}
.yf2{bottom:136.160000pt;}
.y122{bottom:136.320000pt;}
.ybd{bottom:141.920000pt;}
.y3d{bottom:143.520000pt;}
.y96{bottom:144.320000pt;}
.y106{bottom:145.440000pt;}
.y6f{bottom:147.520000pt;}
.y158{bottom:149.920000pt;}
.y121{bottom:154.720000pt;}
.yce{bottom:155.773333pt;}
.ybc{bottom:160.320000pt;}
.yac{bottom:161.506667pt;}
.y140{bottom:161.920000pt;}
.ye2{bottom:162.266667pt;}
.yf0{bottom:164.640000pt;}
.y6e{bottom:165.920000pt;}
.y157{bottom:168.320000pt;}
.yc3{bottom:169.733333pt;}
.y3c{bottom:169.920000pt;}
.y95{bottom:170.720000pt;}
.y105{bottom:171.840000pt;}
.ybb{bottom:178.746667pt;}
.y13f{bottom:180.346667pt;}
.y120{bottom:181.146667pt;}
.y6d{bottom:184.346667pt;}
.yf3{bottom:188.346667pt;}
.ycf{bottom:188.386667pt;}
.y94{bottom:189.146667pt;}
.y104{bottom:190.266667pt;}
.y156{bottom:194.746667pt;}
.yad{bottom:196.093333pt;}
.y3b{bottom:196.346667pt;}
.yba{bottom:197.146667pt;}
.y6c{bottom:202.746667pt;}
.y13e{bottom:206.746667pt;}
.yc4{bottom:207.013333pt;}
.y93{bottom:207.546667pt;}
.y103{bottom:208.666667pt;}
.y155{bottom:213.146667pt;}
.y10a{bottom:214.426667pt;}
.ye3{bottom:214.466667pt;}
.yd0{bottom:220.986667pt;}
.y6b{bottom:221.146667pt;}
.y3a{bottom:222.746667pt;}
.yb9{bottom:223.546667pt;}
.y13d{bottom:225.146667pt;}
.y92{bottom:225.946667pt;}
.yae{bottom:230.653333pt;}
.y154{bottom:231.546667pt;}
.y11f{bottom:233.946667pt;}
.y102{bottom:235.066667pt;}
.y6a{bottom:239.546667pt;}
.yf4{bottom:240.546667pt;}
.y39{bottom:241.146667pt;}
.y13c{bottom:243.546667pt;}
.yc5{bottom:244.293333pt;}
.yb8{bottom:246.266667pt;}
.yca{bottom:247.520000pt;}
.y153{bottom:249.946667pt;}
.y91{bottom:252.346667pt;}
.yd1{bottom:253.626667pt;}
.y38{bottom:259.546667pt;}
.y101{bottom:261.466667pt;}
.yaf{bottom:265.213333pt;}
.y69{bottom:265.946667pt;}
.y10b{bottom:266.626667pt;}
.ye4{bottom:266.653333pt;}
.y152{bottom:268.346667pt;}
.y13b{bottom:269.946667pt;}
.y90{bottom:270.746667pt;}
.y37{bottom:277.946667pt;}
.yc6{bottom:281.573333pt;}
.ya7{bottom:283.866667pt;}
.y68{bottom:284.346667pt;}
.yd2{bottom:286.240000pt;}
.y151{bottom:286.746667pt;}
.y100{bottom:287.866667pt;}
.y13a{bottom:288.346667pt;}
.y8f{bottom:289.146667pt;}
.yf5{bottom:292.733333pt;}
.y36{bottom:296.346667pt;}
.yb0{bottom:299.773333pt;}
.ya6{bottom:302.266667pt;}
.y67{bottom:302.746667pt;}
.y150{bottom:305.146667pt;}
.y8e{bottom:307.546667pt;}
.y163{bottom:313.146667pt;}
.yff{bottom:314.266667pt;}
.y35{bottom:314.746667pt;}
.y11e{bottom:315.546667pt;}
.ye5{bottom:318.813333pt;}
.yc7{bottom:318.853333pt;}
.ya5{bottom:320.666667pt;}
.y66{bottom:321.146667pt;}
.y14f{bottom:331.546667pt;}
.yfe{bottom:332.666667pt;}
.y34{bottom:333.146667pt;}
.y8d{bottom:333.946667pt;}
.ya4{bottom:339.066667pt;}
.y65{bottom:339.546667pt;}
.y14e{bottom:349.946667pt;}
.yfd{bottom:351.066667pt;}
.y33{bottom:351.546667pt;}
.y11d{bottom:352.346667pt;}
.ya3{bottom:357.466667pt;}
.y64{bottom:357.946667pt;}
.y139{bottom:359.546667pt;}
.y8c{bottom:360.346667pt;}
.y14d{bottom:368.346667pt;}
.ydf{bottom:369.466667pt;}
.y32{bottom:369.946667pt;}
.ya2{bottom:375.866667pt;}
.y63{bottom:376.346667pt;}
.y138{bottom:377.946667pt;}
.y8b{bottom:378.746667pt;}
.yde{bottom:387.906667pt;}
.y31{bottom:388.386667pt;}
.y62{bottom:394.786667pt;}
.yee{bottom:395.906667pt;}
.y8a{bottom:397.186667pt;}
.ya1{bottom:402.306667pt;}
.y137{bottom:404.386667pt;}
.y30{bottom:406.786667pt;}
.y14c{bottom:413.186667pt;}
.ydd{bottom:414.306667pt;}
.y11c{bottom:415.586667pt;}
.y61{bottom:421.186667pt;}
.yed{bottom:422.306667pt;}
.y89{bottom:423.586667pt;}
.y2f{bottom:425.186667pt;}
.ya8{bottom:425.440000pt;}
.y136{bottom:430.786667pt;}
.y14b{bottom:431.586667pt;}
.yfc{bottom:432.706667pt;}
.y60{bottom:439.586667pt;}
.ydc{bottom:440.706667pt;}
.y88{bottom:441.986667pt;}
.y2e{bottom:443.586667pt;}
.yec{bottom:448.706667pt;}
.y14a{bottom:449.986667pt;}
.yfb{bottom:451.106667pt;}
.y135{bottom:457.186667pt;}
.y5f{bottom:457.986667pt;}
.ydb{bottom:459.106667pt;}
.y87{bottom:460.386667pt;}
.y2d{bottom:461.986667pt;}
.yeb{bottom:467.106667pt;}
.y149{bottom:468.386667pt;}
.yfa{bottom:469.506667pt;}
.y134{bottom:475.586667pt;}
.y5e{bottom:476.386667pt;}
.yda{bottom:477.506667pt;}
.y86{bottom:478.786667pt;}
.y2c{bottom:480.386667pt;}
.yea{bottom:485.506667pt;}
.y148{bottom:486.786667pt;}
.yf9{bottom:487.906667pt;}
.y5d{bottom:494.786667pt;}
.yd9{bottom:495.906667pt;}
.y85{bottom:497.186667pt;}
.y2b{bottom:498.786667pt;}
.y133{bottom:501.986667pt;}
.ye9{bottom:503.906667pt;}
.y11b{bottom:505.186667pt;}
.y5c{bottom:513.186667pt;}
.yd8{bottom:514.306667pt;}
.y84{bottom:515.586667pt;}
.y2a{bottom:517.186667pt;}
.y132{bottom:520.386667pt;}
.y162{bottom:521.186667pt;}
.ye8{bottom:522.306667pt;}
.y11a{bottom:523.586667pt;}
.y5b{bottom:531.586667pt;}
.y83{bottom:533.986667pt;}
.y29{bottom:535.586667pt;}
.yf8{bottom:537.186667pt;}
.y109{bottom:538.400000pt;}
.y161{bottom:539.586667pt;}
.yd7{bottom:540.706667pt;}
.y119{bottom:541.986667pt;}
.y131{bottom:546.786667pt;}
.y41{bottom:548.866667pt;}
.y5a{bottom:549.986667pt;}
.y28{bottom:553.986667pt;}
.y160{bottom:557.986667pt;}
.yd6{bottom:559.106667pt;}
.y82{bottom:560.386667pt;}
.y130{bottom:565.186667pt;}
.y13{bottom:565.506667pt;}
.yef{bottom:567.106667pt;}
.y118{bottom:568.386667pt;}
.y27{bottom:572.386667pt;}
.y59{bottom:576.386667pt;}
.yd5{bottom:577.506667pt;}
.ye7{bottom:585.506667pt;}
.y81{bottom:586.786667pt;}
.y26{bottom:590.786667pt;}
.y12f{bottom:591.586667pt;}
.y15f{bottom:594.786667pt;}
.yb7{bottom:595.906667pt;}
.y58{bottom:602.813333pt;}
.ye6{bottom:603.933333pt;}
.y80{bottom:605.213333pt;}
.y12e{bottom:610.013333pt;}
.y25{bottom:617.213333pt;}
.y15e{bottom:621.213333pt;}
.yb6{bottom:622.333333pt;}
.y7f{bottom:623.613333pt;}
.y12d{bottom:628.413333pt;}
.y57{bottom:629.213333pt;}
.y15d{bottom:639.613333pt;}
.yb5{bottom:640.733333pt;}
.y7e{bottom:642.013333pt;}
.y24{bottom:643.613333pt;}
.yd4{bottom:645.213333pt;}
.ye0{bottom:646.400000pt;}
.y117{bottom:650.013333pt;}
.y12c{bottom:654.813333pt;}
.y56{bottom:655.613333pt;}
.y15c{bottom:658.013333pt;}
.y7d{bottom:660.413333pt;}
.yb4{bottom:667.133333pt;}
.y23{bottom:670.013333pt;}
.y12b{bottom:673.213333pt;}
.y55{bottom:674.013333pt;}
.y116{bottom:676.413333pt;}
.y7c{bottom:678.813333pt;}
.yb3{bottom:690.013333pt;}
.ybf{bottom:691.200000pt;}
.y54{bottom:692.413333pt;}
.y115{bottom:694.813333pt;}
.y7b{bottom:697.213333pt;}
.y12a{bottom:699.613333pt;}
.y22{bottom:702.493333pt;}
.y53{bottom:710.813333pt;}
.y114{bottom:713.213333pt;}
.y7a{bottom:715.613333pt;}
.y129{bottom:718.013333pt;}
.y21{bottom:722.813333pt;}
.y52{bottom:729.213333pt;}
.y113{bottom:731.613333pt;}
.y79{bottom:742.013333pt;}
.y128{bottom:744.413333pt;}
.y51{bottom:747.613333pt;}
.y15b{bottom:750.013333pt;}
.ya0{bottom:754.813333pt;}
.y20{bottom:755.293333pt;}
.y112{bottom:758.013333pt;}
.y147{bottom:760.413333pt;}
.y127{bottom:762.813333pt;}
.y50{bottom:766.013333pt;}
.y78{bottom:768.413333pt;}
.y1f{bottom:775.613333pt;}
.y111{bottom:776.413333pt;}
.y146{bottom:778.813333pt;}
.y9f{bottom:781.213333pt;}
.y4f{bottom:784.413333pt;}
.y126{bottom:789.213333pt;}
.y77{bottom:794.813333pt;}
.y145{bottom:797.213333pt;}
.y1e{bottom:802.013333pt;}
.y4e{bottom:802.813333pt;}
.y9e{bottom:807.613333pt;}
.y110{bottom:813.253333pt;}
.y144{bottom:815.653333pt;}
.y4d{bottom:821.253333pt;}
.y1d{bottom:828.453333pt;}
.y10f{bottom:831.653333pt;}
.y9d{bottom:834.053333pt;}
.y4c{bottom:839.653333pt;}
.y10e{bottom:850.053333pt;}
.y125{bottom:852.453333pt;}
.y1c{bottom:854.853333pt;}
.y4b{bottom:858.053333pt;}
.y9c{bottom:860.453333pt;}
.y10d{bottom:868.453333pt;}
.y143{bottom:870.853333pt;}
.y4a{bottom:876.453333pt;}
.y9b{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y1b{bottom:886.533333pt;}
.yf7{bottom:886.853333pt;}
.y49{bottom:894.853333pt;}
.y9a{bottom:897.253333pt;}
.yf6{bottom:905.253333pt;}
.y19{bottom:907.653333pt;}
.y48{bottom:913.253333pt;}
.y76{bottom:921.253333pt;}
.y99{bottom:923.653333pt;}
.y47{bottom:931.653333pt;}
.y18{bottom:934.053333pt;}
.y75{bottom:939.653333pt;}
.y124{bottom:942.053333pt;}
.y46{bottom:950.053333pt;}
.y74{bottom:958.053333pt;}
.y17{bottom:960.453333pt;}
.y45{bottom:968.453333pt;}
.y73{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y44{bottom:986.853333pt;}
.y72{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y43{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:24.960000pt;}
.h14{height:25.120000pt;}
.h12{height:34.374375pt;}
.h11{height:35.782187pt;}
.hf{height:36.766250pt;}
.ha{height:44.327188pt;}
.h5{height:46.240000pt;}
.h16{height:47.742188pt;}
.h2{height:47.840000pt;}
.h17{height:47.869500pt;}
.hc{height:49.133750pt;}
.h13{height:52.834688pt;}
.hd{height:53.406250pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.h10{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h15{height:317.920000pt;}
.h18{height:336.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.wa{width:552.000000pt;}
.wb{width:576.960000pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x19{left:14.848000pt;}
.x5{left:19.520000pt;}
.x21{left:33.696000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x17{left:98.751988pt;}
.x12{left:128.511988pt;}
.x2{left:131.560000pt;}
.x27{left:142.560000pt;}
.xd{left:144.506655pt;}
.x1{left:146.906667pt;}
.x24{left:150.373333pt;}
.x25{left:151.746667pt;}
.x26{left:163.293333pt;}
.x23{left:171.226667pt;}
.x14{left:190.426655pt;}
.x1b{left:218.013333pt;}
.x1e{left:259.173333pt;}
.x22{left:263.266667pt;}
.x20{left:266.560000pt;}
.x1d{left:269.146667pt;}
.x1a{left:276.640000pt;}
.x1f{left:278.106667pt;}
.x11{left:285.186655pt;}
.x16{left:286.466655pt;}
.x13{left:300.386655pt;}
.x15{left:302.466655pt;}
.x7{left:336.066667pt;}
.x10{left:396.866655pt;}
.x8{left:589.093333pt;}
.xe{left:643.813310pt;}
.x18{left:646.533322pt;}
.xf{left:649.253322pt;}
.x1c{left:672.453322pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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