
    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_c6e68ab7a98b7ea3fdb66fe2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_76f986ec8646ae957a4ae975.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_70345f418cceca85e67611fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_041e876f6585da1e9188c1bc.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_98610fe9c388a296b30b4ad5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7bcd5d6e16c46b65848b020c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_af843278e1da1ea4231cbaeb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b9eb2149d8eb2b6b99911caa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_b2500bc3ab9a64b6f00a91af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_eb3bec4494c86f68711b20d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_07a0d659f2970eb98d1e69b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_4db4bdcd304ea9e21ed05cbc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005859;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-75.600000px;}
.v1{vertical-align:-74.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v9{vertical-align:30.240000px;}
.v7{vertical-align:33.120000px;}
.v4{vertical-align:36.000000px;}
.v6{vertical-align:38.880000px;}
.v3{vertical-align:42.480000px;}
.va{vertical-align:65.520000px;}
.v8{vertical-align:72.000000px;}
.ls22{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.176000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.226200px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls1e{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.152400px;}
.ls21{letter-spacing:0.152640px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.300960px;}
.ls1d{letter-spacing:0.301200px;}
.ls9{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.440000px;}
.ls17{letter-spacing:3.402720px;}
.ls20{letter-spacing:3.780000px;}
.ls18{letter-spacing:9.660960px;}
.ls19{letter-spacing:10.069200px;}
.ls1a{letter-spacing:10.380960px;}
.lsf{letter-spacing:10.440000px;}
.ls11{letter-spacing:10.512000px;}
.ls10{letter-spacing:11.160000px;}
.lse{letter-spacing:11.232000px;}
.lsd{letter-spacing:11.340000px;}
.ls16{letter-spacing:17.478720px;}
.ls15{letter-spacing:18.869040px;}
.ls1b{letter-spacing:22.309200px;}
.ls13{letter-spacing:23.472000px;}
.ls12{letter-spacing:24.192000px;}
.ls1{letter-spacing:408.216000px;}
.lsb{letter-spacing:1106.940000px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws4{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.384000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.wsc{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.780000px;}
.wse{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.246400px;}
.wsf{word-spacing:-10.440000px;}
.ws7{word-spacing:-10.213800px;}
.ws11{word-spacing:-9.488400px;}
.wsb{word-spacing:-3.060000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-9.216000px;}
._f{margin-left:-5.011920px;}
._8{margin-left:-3.884400px;}
._2{margin-left:-2.308320px;}
._1{margin-left:-1.126080px;}
._0{width:1.186560px;}
._6{width:2.280960px;}
._4{width:3.406320px;}
._5{width:4.947600px;}
._3{width:6.179760px;}
._7{width:7.927920px;}
._e{width:8.936160px;}
._11{width:10.256640px;}
._10{width:11.724480px;}
._c{width:25.200000px;}
._12{width:32.060160px;}
._13{width:33.145440px;}
._b{width:41.760000px;}
._9{width:268.311360px;}
._d{width:847.596000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:0.180000px;}
.yd6{bottom:0.360000px;}
.yc3{bottom:0.540000px;}
.ybc{bottom:3.960000px;}
.yce{bottom:4.140000px;}
.y114{bottom:4.500000px;}
.y111{bottom:7.020000px;}
.yf1{bottom:7.740000px;}
.yd5{bottom:8.640000px;}
.yc2{bottom:9.540000px;}
.yf0{bottom:10.800000px;}
.yc1{bottom:16.245000px;}
.yed{bottom:19.080000px;}
.y110{bottom:20.730000px;}
.y113{bottom:21.090000px;}
.ybf{bottom:22.860000px;}
.ybb{bottom:23.040000px;}
.yff{bottom:23.070000px;}
.yec{bottom:26.640000px;}
.y10f{bottom:28.290000px;}
.y112{bottom:28.650000px;}
.yeb{bottom:29.700000px;}
.yf9{bottom:29.880000px;}
.yd4{bottom:33.300000px;}
.yfe{bottom:38.190000px;}
.ybe{bottom:41.940000px;}
.yfd{bottom:45.750000px;}
.y5{bottom:47.160000px;}
.yfc{bottom:48.810000px;}
.y10e{bottom:49.890000px;}
.y4{bottom:66.240000px;}
.y172{bottom:90.360000px;}
.y37{bottom:91.440000px;}
.yb4{bottom:105.480000px;}
.y6a{bottom:106.920000px;}
.y146{bottom:109.080000px;}
.y171{bottom:109.260000px;}
.y36{bottom:110.340000px;}
.yb3{bottom:124.380000px;}
.y69{bottom:126.000000px;}
.y145{bottom:127.980000px;}
.y170{bottom:128.340000px;}
.y35{bottom:129.240000px;}
.ye6{bottom:137.160000px;}
.yb2{bottom:143.460000px;}
.y115{bottom:143.640000px;}
.y68{bottom:144.900000px;}
.ye5{bottom:145.440000px;}
.y144{bottom:146.880000px;}
.y16f{bottom:147.240000px;}
.y34{bottom:148.320000px;}
.y10d{bottom:159.840000px;}
.yb1{bottom:162.360000px;}
.y67{bottom:163.800000px;}
.y143{bottom:165.960000px;}
.y16e{bottom:166.320000px;}
.ye4{bottom:169.200000px;}
.yb0{bottom:181.470000px;}
.y33{bottom:181.830000px;}
.y66{bottom:182.910000px;}
.y142{bottom:184.890000px;}
.y16d{bottom:185.250000px;}
.ye3{bottom:188.130000px;}
.y32{bottom:199.830000px;}
.yaf{bottom:200.370000px;}
.y65{bottom:201.810000px;}
.y141{bottom:203.970000px;}
.y16c{bottom:204.330000px;}
.ye2{bottom:207.210000px;}
.y31{bottom:217.830000px;}
.yae{bottom:219.270000px;}
.y64{bottom:220.890000px;}
.y140{bottom:222.870000px;}
.y10c{bottom:223.230000px;}
.ye1{bottom:226.110000px;}
.y30{bottom:235.830000px;}
.yad{bottom:238.350000px;}
.y63{bottom:239.790000px;}
.y13f{bottom:241.770000px;}
.y16b{bottom:242.130000px;}
.ye0{bottom:245.190000px;}
.y2f{bottom:253.830000px;}
.yac{bottom:257.250000px;}
.y62{bottom:258.690000px;}
.y8f{bottom:258.870000px;}
.y13e{bottom:260.850000px;}
.y16a{bottom:261.210000px;}
.ydf{bottom:264.090000px;}
.y2e{bottom:271.830000px;}
.yab{bottom:276.330000px;}
.y61{bottom:277.770000px;}
.y13d{bottom:279.750000px;}
.y169{bottom:280.110000px;}
.yde{bottom:282.990000px;}
.y2d{bottom:289.830000px;}
.yaa{bottom:295.230000px;}
.y60{bottom:296.670000px;}
.y8e{bottom:296.850000px;}
.y13c{bottom:298.830000px;}
.y168{bottom:299.190000px;}
.ydd{bottom:301.530000px;}
.y2c{bottom:307.830000px;}
.y5f{bottom:315.750000px;}
.y13b{bottom:317.730000px;}
.y167{bottom:318.090000px;}
.ya9{bottom:318.810000px;}
.ydc{bottom:319.530000px;}
.y2b{bottom:325.830000px;}
.ydb{bottom:333.930000px;}
.y5e{bottom:334.650000px;}
.y8d{bottom:334.830000px;}
.y13a{bottom:336.630000px;}
.y166{bottom:336.990000px;}
.y2a{bottom:343.830000px;}
.y8c{bottom:353.730000px;}
.y139{bottom:355.710000px;}
.y165{bottom:356.070000px;}
.ya8{bottom:357.330000px;}
.y5d{bottom:358.050000px;}
.y29{bottom:361.830000px;}
.y8b{bottom:372.630000px;}
.y138{bottom:374.610000px;}
.y164{bottom:374.970000px;}
.ya7{bottom:376.410000px;}
.y28{bottom:379.830000px;}
.y8a{bottom:391.710000px;}
.y137{bottom:393.690000px;}
.y163{bottom:394.050000px;}
.y5c{bottom:395.130000px;}
.ya6{bottom:395.310000px;}
.y27{bottom:397.830000px;}
.y89{bottom:410.610000px;}
.y136{bottom:412.590000px;}
.y162{bottom:412.950000px;}
.y5b{bottom:414.030000px;}
.ya5{bottom:414.390000px;}
.y26{bottom:415.830000px;}
.y10b{bottom:423.615000px;}
.y135{bottom:431.535000px;}
.y161{bottom:431.895000px;}
.y5a{bottom:433.155000px;}
.ya4{bottom:433.335000px;}
.y25{bottom:433.875000px;}
.y88{bottom:434.235000px;}
.y10a{bottom:443.775000px;}
.y134{bottom:450.615000px;}
.y160{bottom:450.975000px;}
.y24{bottom:451.875000px;}
.y59{bottom:452.055000px;}
.ya3{bottom:452.235000px;}
.y109{bottom:462.855000px;}
.y133{bottom:469.515000px;}
.y23{bottom:469.875000px;}
.y58{bottom:470.955000px;}
.y87{bottom:471.135000px;}
.ya2{bottom:471.315000px;}
.y108{bottom:481.755000px;}
.y22{bottom:487.875000px;}
.y132{bottom:488.595000px;}
.y15f{bottom:488.955000px;}
.y57{bottom:490.035000px;}
.ya1{bottom:490.215000px;}
.yda{bottom:500.115000px;}
.y107{bottom:500.655000px;}
.y21{bottom:505.875000px;}
.y131{bottom:507.495000px;}
.y15e{bottom:507.855000px;}
.y56{bottom:508.935000px;}
.y86{bottom:509.115000px;}
.ya0{bottom:509.295000px;}
.yd9{bottom:515.055000px;}
.y106{bottom:519.735000px;}
.y20{bottom:523.875000px;}
.y130{bottom:526.575000px;}
.y15d{bottom:526.755000px;}
.y55{bottom:528.015000px;}
.y9f{bottom:528.195000px;}
.yd8{bottom:533.955000px;}
.y105{bottom:538.635000px;}
.y12f{bottom:545.475000px;}
.y15c{bottom:545.835000px;}
.y54{bottom:546.915000px;}
.y85{bottom:551.595000px;}
.y1f{bottom:556.815000px;}
.y104{bottom:557.715000px;}
.y12e{bottom:564.375000px;}
.y15b{bottom:564.735000px;}
.y53{bottom:565.995000px;}
.yd7{bottom:571.935000px;}
.y1e{bottom:574.815000px;}
.y103{bottom:576.615000px;}
.y12d{bottom:583.455000px;}
.y15a{bottom:583.815000px;}
.y52{bottom:584.895000px;}
.y9e{bottom:588.675000px;}
.yd3{bottom:590.835000px;}
.y84{bottom:591.375000px;}
.y1d{bottom:592.815000px;}
.y102{bottom:595.695000px;}
.y12c{bottom:602.355000px;}
.y159{bottom:602.715000px;}
.y51{bottom:603.795000px;}
.y9d{bottom:607.575000px;}
.y1c{bottom:610.815000px;}
.y83{bottom:613.155000px;}
.y101{bottom:614.595000px;}
.y12b{bottom:621.435000px;}
.y158{bottom:621.615000px;}
.y50{bottom:622.875000px;}
.y9c{bottom:626.655000px;}
.y1b{bottom:628.815000px;}
.y100{bottom:633.495000px;}
.y82{bottom:634.935000px;}
.yd2{bottom:639.075000px;}
.y12a{bottom:640.335000px;}
.y157{bottom:640.695000px;}
.y4f{bottom:641.775000px;}
.y9b{bottom:645.555000px;}
.y1a{bottom:646.815000px;}
.yfb{bottom:648.435000px;}
.y81{bottom:656.715000px;}
.yd1{bottom:657.975000px;}
.y129{bottom:659.235000px;}
.y156{bottom:659.595000px;}
.y9a{bottom:664.485000px;}
.y19{bottom:664.845000px;}
.y4e{bottom:665.385000px;}
.yd0{bottom:677.085000px;}
.y128{bottom:678.345000px;}
.y80{bottom:678.705000px;}
.y18{bottom:682.845000px;}
.y99{bottom:683.565000px;}
.ycf{bottom:695.985000px;}
.y127{bottom:697.245000px;}
.y155{bottom:697.605000px;}
.y17{bottom:700.845000px;}
.y4d{bottom:702.285000px;}
.y98{bottom:702.465000px;}
.yfa{bottom:712.185000px;}
.ycd{bottom:714.885000px;}
.y126{bottom:716.325000px;}
.y154{bottom:716.685000px;}
.y16{bottom:718.845000px;}
.y4c{bottom:721.185000px;}
.y97{bottom:721.545000px;}
.y125{bottom:735.225000px;}
.y153{bottom:735.585000px;}
.y15{bottom:736.845000px;}
.ycc{bottom:737.565000px;}
.yf8{bottom:737.925000px;}
.y4b{bottom:740.265000px;}
.y96{bottom:740.445000px;}
.y7f{bottom:740.805000px;}
.y124{bottom:754.125000px;}
.y152{bottom:754.485000px;}
.y14{bottom:754.845000px;}
.ycb{bottom:757.005000px;}
.y4a{bottom:759.165000px;}
.y95{bottom:759.525000px;}
.y7e{bottom:759.885000px;}
.yca{bottom:772.305000px;}
.y13{bottom:772.845000px;}
.y151{bottom:773.565000px;}
.y123{bottom:777.705000px;}
.y49{bottom:778.245000px;}
.y94{bottom:778.425000px;}
.y7d{bottom:778.785000px;}
.yc9{bottom:781.305000px;}
.yf7{bottom:782.745000px;}
.y12{bottom:790.845000px;}
.y150{bottom:792.465000px;}
.y48{bottom:797.145000px;}
.y93{bottom:797.325000px;}
.y7c{bottom:797.685000px;}
.yf6{bottom:801.645000px;}
.yc8{bottom:803.085000px;}
.y11{bottom:808.845000px;}
.y14f{bottom:811.545000px;}
.yc7{bottom:812.085000px;}
.y47{bottom:816.045000px;}
.y122{bottom:816.405000px;}
.y7b{bottom:816.765000px;}
.yf5{bottom:820.725000px;}
.y92{bottom:825.765000px;}
.y10{bottom:826.845000px;}
.y14e{bottom:830.445000px;}
.y46{bottom:835.125000px;}
.y121{bottom:835.305000px;}
.y7a{bottom:835.665000px;}
.yc6{bottom:837.825000px;}
.yf4{bottom:839.625000px;}
.yf{bottom:844.845000px;}
.y14d{bottom:849.345000px;}
.yc5{bottom:852.765000px;}
.y45{bottom:854.025000px;}
.y91{bottom:854.385000px;}
.y79{bottom:854.745000px;}
.yf3{bottom:865.365000px;}
.y14c{bottom:868.425000px;}
.yc4{bottom:871.665000px;}
.y44{bottom:873.105000px;}
.y120{bottom:873.285000px;}
.y78{bottom:873.645000px;}
.y90{bottom:878.865000px;}
.ye{bottom:881.385000px;}
.yef{bottom:884.265000px;}
.y14b{bottom:887.325000px;}
.yc0{bottom:890.565000px;}
.y43{bottom:892.005000px;}
.y11f{bottom:892.185000px;}
.y77{bottom:892.545000px;}
.yd{bottom:899.925000px;}
.y14a{bottom:906.450000px;}
.yee{bottom:910.050000px;}
.y42{bottom:910.950000px;}
.y11e{bottom:911.310000px;}
.y76{bottom:911.670000px;}
.yc{bottom:919.410000px;}
.ybd{bottom:921.750000px;}
.y149{bottom:925.350000px;}
.yea{bottom:929.130000px;}
.y41{bottom:930.030000px;}
.y11d{bottom:930.210000px;}
.y75{bottom:930.570000px;}
.yb{bottom:938.310000px;}
.y148{bottom:944.250000px;}
.y40{bottom:948.930000px;}
.y11c{bottom:949.290000px;}
.y74{bottom:949.650000px;}
.ya{bottom:957.210000px;}
.y147{bottom:967.830000px;}
.y3f{bottom:968.010000px;}
.y11b{bottom:968.190000px;}
.y73{bottom:968.550000px;}
.y9{bottom:975.930000px;}
.ye9{bottom:977.910000px;}
.yba{bottom:978.630000px;}
.y3e{bottom:986.910000px;}
.y11a{bottom:987.090000px;}
.y72{bottom:987.450000px;}
.ye8{bottom:993.030000px;}
.y8{bottom:995.190000px;}
.ye7{bottom:1001.310000px;}
.y119{bottom:1002.390000px;}
.y3d{bottom:1005.810000px;}
.y71{bottom:1006.530000px;}
.y118{bottom:1010.670000px;}
.y3c{bottom:1024.890000px;}
.y70{bottom:1025.430000px;}
.y117{bottom:1031.010000px;}
.y7{bottom:1034.250000px;}
.y116{bottom:1039.290000px;}
.yb9{bottom:1039.470000px;}
.y3b{bottom:1043.790000px;}
.y6f{bottom:1044.510000px;}
.yb8{bottom:1054.770000px;}
.y3a{bottom:1062.870000px;}
.y6e{bottom:1063.410000px;}
.yb7{bottom:1063.770000px;}
.y6{bottom:1065.210000px;}
.y6d{bottom:1082.310000px;}
.yb6{bottom:1085.730000px;}
.yb5{bottom:1094.730000px;}
.y39{bottom:1095.090000px;}
.y6c{bottom:1101.390000px;}
.y38{bottom:1118.670000px;}
.y6b{bottom:1120.290000px;}
.y3{bottom:1146.210000px;}
.y2{bottom:1165.140000px;}
.y1{bottom:1184.040000px;}
.h15{height:18.900000px;}
.h19{height:19.080000px;}
.h1a{height:19.116000px;}
.h2a{height:25.740000px;}
.h29{height:25.776000px;}
.h13{height:31.176000px;}
.h11{height:37.980000px;}
.h8{height:41.493516px;}
.h25{height:44.640000px;}
.h2b{height:44.820000px;}
.h6{height:45.992812px;}
.h5{height:46.736719px;}
.h1b{height:48.240000px;}
.ha{height:52.435898px;}
.h12{height:56.880000px;}
.hd{height:58.121719px;}
.h1f{height:58.621992px;}
.h7{height:58.651172px;}
.h9{height:60.226875px;}
.h2f{height:63.396000px;}
.h2c{height:63.756000px;}
.h3{height:64.978594px;}
.h2{height:65.010937px;}
.hc{height:66.757500px;}
.h31{height:70.474219px;}
.h2d{height:70.664062px;}
.h26{height:71.921953px;}
.h36{height:72.562500px;}
.hb{height:74.953125px;}
.h33{height:75.578203px;}
.h4{height:76.201172px;}
.h20{height:79.535391px;}
.h22{height:81.207773px;}
.h1c{height:83.734805px;}
.h10{height:85.562578px;}
.he{height:87.334805px;}
.h14{height:87.514805px;}
.h30{height:88.861992px;}
.h16{height:94.121719px;}
.h28{height:95.250938px;}
.h34{height:98.098594px;}
.h1e{height:98.130938px;}
.h24{height:99.877500px;}
.h32{height:100.714219px;}
.hf{height:101.010937px;}
.h27{height:102.161953px;}
.h35{height:103.784063px;}
.h21{height:112.655391px;}
.h23{height:114.327773px;}
.h1d{height:116.854805px;}
.h18{height:121.562578px;}
.h17{height:123.334805px;}
.h2e{height:195.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:105.840000px;}
.w3{width:106.200000px;}
.w6{width:353.190000px;}
.w7{width:369.825000px;}
.w4{width:510.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:8.130000px;}
.x10{left:28.260000px;}
.x34{left:30.810000px;}
.x2e{left:34.380000px;}
.x26{left:42.165000px;}
.x16{left:45.720000px;}
.xe{left:64.074000px;}
.x11{left:67.365000px;}
.x5{left:84.995987px;}
.x17{left:89.865000px;}
.x3{left:102.815987px;}
.xd{left:106.416000px;}
.x18{left:111.825000px;}
.x19{left:133.965000px;}
.x22{left:138.456000px;}
.x35{left:145.830000px;}
.x20{left:149.075987px;}
.x2f{left:153.174000px;}
.x28{left:154.485000px;}
.x36{left:159.870000px;}
.x1a{left:162.405000px;}
.x33{left:165.234000px;}
.x30{left:170.994000px;}
.x37{left:174.090000px;}
.x31{left:183.819000px;}
.x2d{left:185.439000px;}
.x21{left:187.229987px;}
.x6{left:191.189987px;}
.x32{left:196.599000px;}
.xf{left:212.610000px;}
.x38{left:216.435000px;}
.x1d{left:219.629987px;}
.x2{left:228.629987px;}
.x7{left:236.549987px;}
.x23{left:244.290000px;}
.xa{left:246.089987px;}
.x29{left:270.435000px;}
.x27{left:274.755000px;}
.x1{left:291.134987px;}
.x2a{left:313.455000px;}
.x24{left:349.635000px;}
.x2c{left:361.695000px;}
.x25{left:382.620000px;}
.x2b{left:438.195000px;}
.x4{left:442.874987px;}
.x9{left:446.504987px;}
.x1c{left:455.324987px;}
.x12{left:469.724987px;}
.x1e{left:479.984987px;}
.x1f{left:509.504987px;}
.x3b{left:524.444987px;}
.xc{left:535.244987px;}
.x1b{left:557.744987px;}
.x13{left:571.604987px;}
.x8{left:652.289987px;}
.x14{left:740.489987px;}
.xb{left:783.149987px;}
.x15{left:793.229987px;}
.x3a{left:802.049987px;}
@media print{
.v5{vertical-align:-67.200000pt;}
.v1{vertical-align:-65.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v9{vertical-align:26.880000pt;}
.v7{vertical-align:29.440000pt;}
.v4{vertical-align:32.000000pt;}
.v6{vertical-align:34.560000pt;}
.v3{vertical-align:37.760000pt;}
.va{vertical-align:58.240000pt;}
.v8{vertical-align:64.000000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.045333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.135467pt;}
.ls21{letter-spacing:0.135680pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.267520pt;}
.ls1d{letter-spacing:0.267733pt;}
.ls9{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls17{letter-spacing:3.024640pt;}
.ls20{letter-spacing:3.360000pt;}
.ls18{letter-spacing:8.587520pt;}
.ls19{letter-spacing:8.950400pt;}
.ls1a{letter-spacing:9.227520pt;}
.lsf{letter-spacing:9.280000pt;}
.ls11{letter-spacing:9.344000pt;}
.ls10{letter-spacing:9.920000pt;}
.lse{letter-spacing:9.984000pt;}
.lsd{letter-spacing:10.080000pt;}
.ls16{letter-spacing:15.536640pt;}
.ls15{letter-spacing:16.772480pt;}
.ls1b{letter-spacing:19.830400pt;}
.ls13{letter-spacing:20.864000pt;}
.ls12{letter-spacing:21.504000pt;}
.ls1{letter-spacing:362.858667pt;}
.lsb{letter-spacing:983.946667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.wsc{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.360000pt;}
.wse{word-spacing:-10.720000pt;}
.wsa{word-spacing:-9.996800pt;}
.wsf{word-spacing:-9.280000pt;}
.ws7{word-spacing:-9.078933pt;}
.ws11{word-spacing:-8.434133pt;}
.wsb{word-spacing:-2.720000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-8.192000pt;}
._f{margin-left:-4.455040pt;}
._8{margin-left:-3.452800pt;}
._2{margin-left:-2.051840pt;}
._1{margin-left:-1.000960pt;}
._0{width:1.054720pt;}
._6{width:2.027520pt;}
._4{width:3.027840pt;}
._5{width:4.397867pt;}
._3{width:5.493120pt;}
._7{width:7.047040pt;}
._e{width:7.943253pt;}
._11{width:9.117013pt;}
._10{width:10.421760pt;}
._c{width:22.400000pt;}
._12{width:28.497920pt;}
._13{width:29.462613pt;}
._b{width:37.120000pt;}
._9{width:238.498987pt;}
._d{width:753.418667pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:0.160000pt;}
.yd6{bottom:0.320000pt;}
.yc3{bottom:0.480000pt;}
.ybc{bottom:3.520000pt;}
.yce{bottom:3.680000pt;}
.y114{bottom:4.000000pt;}
.y111{bottom:6.240000pt;}
.yf1{bottom:6.880000pt;}
.yd5{bottom:7.680000pt;}
.yc2{bottom:8.480000pt;}
.yf0{bottom:9.600000pt;}
.yc1{bottom:14.440000pt;}
.yed{bottom:16.960000pt;}
.y110{bottom:18.426667pt;}
.y113{bottom:18.746667pt;}
.ybf{bottom:20.320000pt;}
.ybb{bottom:20.480000pt;}
.yff{bottom:20.506667pt;}
.yec{bottom:23.680000pt;}
.y10f{bottom:25.146667pt;}
.y112{bottom:25.466667pt;}
.yeb{bottom:26.400000pt;}
.yf9{bottom:26.560000pt;}
.yd4{bottom:29.600000pt;}
.yfe{bottom:33.946667pt;}
.ybe{bottom:37.280000pt;}
.yfd{bottom:40.666667pt;}
.y5{bottom:41.920000pt;}
.yfc{bottom:43.386667pt;}
.y10e{bottom:44.346667pt;}
.y4{bottom:58.880000pt;}
.y172{bottom:80.320000pt;}
.y37{bottom:81.280000pt;}
.yb4{bottom:93.760000pt;}
.y6a{bottom:95.040000pt;}
.y146{bottom:96.960000pt;}
.y171{bottom:97.120000pt;}
.y36{bottom:98.080000pt;}
.yb3{bottom:110.560000pt;}
.y69{bottom:112.000000pt;}
.y145{bottom:113.760000pt;}
.y170{bottom:114.080000pt;}
.y35{bottom:114.880000pt;}
.ye6{bottom:121.920000pt;}
.yb2{bottom:127.520000pt;}
.y115{bottom:127.680000pt;}
.y68{bottom:128.800000pt;}
.ye5{bottom:129.280000pt;}
.y144{bottom:130.560000pt;}
.y16f{bottom:130.880000pt;}
.y34{bottom:131.840000pt;}
.y10d{bottom:142.080000pt;}
.yb1{bottom:144.320000pt;}
.y67{bottom:145.600000pt;}
.y143{bottom:147.520000pt;}
.y16e{bottom:147.840000pt;}
.ye4{bottom:150.400000pt;}
.yb0{bottom:161.306667pt;}
.y33{bottom:161.626667pt;}
.y66{bottom:162.586667pt;}
.y142{bottom:164.346667pt;}
.y16d{bottom:164.666667pt;}
.ye3{bottom:167.226667pt;}
.y32{bottom:177.626667pt;}
.yaf{bottom:178.106667pt;}
.y65{bottom:179.386667pt;}
.y141{bottom:181.306667pt;}
.y16c{bottom:181.626667pt;}
.ye2{bottom:184.186667pt;}
.y31{bottom:193.626667pt;}
.yae{bottom:194.906667pt;}
.y64{bottom:196.346667pt;}
.y140{bottom:198.106667pt;}
.y10c{bottom:198.426667pt;}
.ye1{bottom:200.986667pt;}
.y30{bottom:209.626667pt;}
.yad{bottom:211.866667pt;}
.y63{bottom:213.146667pt;}
.y13f{bottom:214.906667pt;}
.y16b{bottom:215.226667pt;}
.ye0{bottom:217.946667pt;}
.y2f{bottom:225.626667pt;}
.yac{bottom:228.666667pt;}
.y62{bottom:229.946667pt;}
.y8f{bottom:230.106667pt;}
.y13e{bottom:231.866667pt;}
.y16a{bottom:232.186667pt;}
.ydf{bottom:234.746667pt;}
.y2e{bottom:241.626667pt;}
.yab{bottom:245.626667pt;}
.y61{bottom:246.906667pt;}
.y13d{bottom:248.666667pt;}
.y169{bottom:248.986667pt;}
.yde{bottom:251.546667pt;}
.y2d{bottom:257.626667pt;}
.yaa{bottom:262.426667pt;}
.y60{bottom:263.706667pt;}
.y8e{bottom:263.866667pt;}
.y13c{bottom:265.626667pt;}
.y168{bottom:265.946667pt;}
.ydd{bottom:268.026667pt;}
.y2c{bottom:273.626667pt;}
.y5f{bottom:280.666667pt;}
.y13b{bottom:282.426667pt;}
.y167{bottom:282.746667pt;}
.ya9{bottom:283.386667pt;}
.ydc{bottom:284.026667pt;}
.y2b{bottom:289.626667pt;}
.ydb{bottom:296.826667pt;}
.y5e{bottom:297.466667pt;}
.y8d{bottom:297.626667pt;}
.y13a{bottom:299.226667pt;}
.y166{bottom:299.546667pt;}
.y2a{bottom:305.626667pt;}
.y8c{bottom:314.426667pt;}
.y139{bottom:316.186667pt;}
.y165{bottom:316.506667pt;}
.ya8{bottom:317.626667pt;}
.y5d{bottom:318.266667pt;}
.y29{bottom:321.626667pt;}
.y8b{bottom:331.226667pt;}
.y138{bottom:332.986667pt;}
.y164{bottom:333.306667pt;}
.ya7{bottom:334.586667pt;}
.y28{bottom:337.626667pt;}
.y8a{bottom:348.186667pt;}
.y137{bottom:349.946667pt;}
.y163{bottom:350.266667pt;}
.y5c{bottom:351.226667pt;}
.ya6{bottom:351.386667pt;}
.y27{bottom:353.626667pt;}
.y89{bottom:364.986667pt;}
.y136{bottom:366.746667pt;}
.y162{bottom:367.066667pt;}
.y5b{bottom:368.026667pt;}
.ya5{bottom:368.346667pt;}
.y26{bottom:369.626667pt;}
.y10b{bottom:376.546667pt;}
.y135{bottom:383.586667pt;}
.y161{bottom:383.906667pt;}
.y5a{bottom:385.026667pt;}
.ya4{bottom:385.186667pt;}
.y25{bottom:385.666667pt;}
.y88{bottom:385.986667pt;}
.y10a{bottom:394.466667pt;}
.y134{bottom:400.546667pt;}
.y160{bottom:400.866667pt;}
.y24{bottom:401.666667pt;}
.y59{bottom:401.826667pt;}
.ya3{bottom:401.986667pt;}
.y109{bottom:411.426667pt;}
.y133{bottom:417.346667pt;}
.y23{bottom:417.666667pt;}
.y58{bottom:418.626667pt;}
.y87{bottom:418.786667pt;}
.ya2{bottom:418.946667pt;}
.y108{bottom:428.226667pt;}
.y22{bottom:433.666667pt;}
.y132{bottom:434.306667pt;}
.y15f{bottom:434.626667pt;}
.y57{bottom:435.586667pt;}
.ya1{bottom:435.746667pt;}
.yda{bottom:444.546667pt;}
.y107{bottom:445.026667pt;}
.y21{bottom:449.666667pt;}
.y131{bottom:451.106667pt;}
.y15e{bottom:451.426667pt;}
.y56{bottom:452.386667pt;}
.y86{bottom:452.546667pt;}
.ya0{bottom:452.706667pt;}
.yd9{bottom:457.826667pt;}
.y106{bottom:461.986667pt;}
.y20{bottom:465.666667pt;}
.y130{bottom:468.066667pt;}
.y15d{bottom:468.226667pt;}
.y55{bottom:469.346667pt;}
.y9f{bottom:469.506667pt;}
.yd8{bottom:474.626667pt;}
.y105{bottom:478.786667pt;}
.y12f{bottom:484.866667pt;}
.y15c{bottom:485.186667pt;}
.y54{bottom:486.146667pt;}
.y85{bottom:490.306667pt;}
.y1f{bottom:494.946667pt;}
.y104{bottom:495.746667pt;}
.y12e{bottom:501.666667pt;}
.y15b{bottom:501.986667pt;}
.y53{bottom:503.106667pt;}
.yd7{bottom:508.386667pt;}
.y1e{bottom:510.946667pt;}
.y103{bottom:512.546667pt;}
.y12d{bottom:518.626667pt;}
.y15a{bottom:518.946667pt;}
.y52{bottom:519.906667pt;}
.y9e{bottom:523.266667pt;}
.yd3{bottom:525.186667pt;}
.y84{bottom:525.666667pt;}
.y1d{bottom:526.946667pt;}
.y102{bottom:529.506667pt;}
.y12c{bottom:535.426667pt;}
.y159{bottom:535.746667pt;}
.y51{bottom:536.706667pt;}
.y9d{bottom:540.066667pt;}
.y1c{bottom:542.946667pt;}
.y83{bottom:545.026667pt;}
.y101{bottom:546.306667pt;}
.y12b{bottom:552.386667pt;}
.y158{bottom:552.546667pt;}
.y50{bottom:553.666667pt;}
.y9c{bottom:557.026667pt;}
.y1b{bottom:558.946667pt;}
.y100{bottom:563.106667pt;}
.y82{bottom:564.386667pt;}
.yd2{bottom:568.066667pt;}
.y12a{bottom:569.186667pt;}
.y157{bottom:569.506667pt;}
.y4f{bottom:570.466667pt;}
.y9b{bottom:573.826667pt;}
.y1a{bottom:574.946667pt;}
.yfb{bottom:576.386667pt;}
.y81{bottom:583.746667pt;}
.yd1{bottom:584.866667pt;}
.y129{bottom:585.986667pt;}
.y156{bottom:586.306667pt;}
.y9a{bottom:590.653333pt;}
.y19{bottom:590.973333pt;}
.y4e{bottom:591.453333pt;}
.yd0{bottom:601.853333pt;}
.y128{bottom:602.973333pt;}
.y80{bottom:603.293333pt;}
.y18{bottom:606.973333pt;}
.y99{bottom:607.613333pt;}
.ycf{bottom:618.653333pt;}
.y127{bottom:619.773333pt;}
.y155{bottom:620.093333pt;}
.y17{bottom:622.973333pt;}
.y4d{bottom:624.253333pt;}
.y98{bottom:624.413333pt;}
.yfa{bottom:633.053333pt;}
.ycd{bottom:635.453333pt;}
.y126{bottom:636.733333pt;}
.y154{bottom:637.053333pt;}
.y16{bottom:638.973333pt;}
.y4c{bottom:641.053333pt;}
.y97{bottom:641.373333pt;}
.y125{bottom:653.533333pt;}
.y153{bottom:653.853333pt;}
.y15{bottom:654.973333pt;}
.ycc{bottom:655.613333pt;}
.yf8{bottom:655.933333pt;}
.y4b{bottom:658.013333pt;}
.y96{bottom:658.173333pt;}
.y7f{bottom:658.493333pt;}
.y124{bottom:670.333333pt;}
.y152{bottom:670.653333pt;}
.y14{bottom:670.973333pt;}
.ycb{bottom:672.893333pt;}
.y4a{bottom:674.813333pt;}
.y95{bottom:675.133333pt;}
.y7e{bottom:675.453333pt;}
.yca{bottom:686.493333pt;}
.y13{bottom:686.973333pt;}
.y151{bottom:687.613333pt;}
.y123{bottom:691.293333pt;}
.y49{bottom:691.773333pt;}
.y94{bottom:691.933333pt;}
.y7d{bottom:692.253333pt;}
.yc9{bottom:694.493333pt;}
.yf7{bottom:695.773333pt;}
.y12{bottom:702.973333pt;}
.y150{bottom:704.413333pt;}
.y48{bottom:708.573333pt;}
.y93{bottom:708.733333pt;}
.y7c{bottom:709.053333pt;}
.yf6{bottom:712.573333pt;}
.yc8{bottom:713.853333pt;}
.y11{bottom:718.973333pt;}
.y14f{bottom:721.373333pt;}
.yc7{bottom:721.853333pt;}
.y47{bottom:725.373333pt;}
.y122{bottom:725.693333pt;}
.y7b{bottom:726.013333pt;}
.yf5{bottom:729.533333pt;}
.y92{bottom:734.013333pt;}
.y10{bottom:734.973333pt;}
.y14e{bottom:738.173333pt;}
.y46{bottom:742.333333pt;}
.y121{bottom:742.493333pt;}
.y7a{bottom:742.813333pt;}
.yc6{bottom:744.733333pt;}
.yf4{bottom:746.333333pt;}
.yf{bottom:750.973333pt;}
.y14d{bottom:754.973333pt;}
.yc5{bottom:758.013333pt;}
.y45{bottom:759.133333pt;}
.y91{bottom:759.453333pt;}
.y79{bottom:759.773333pt;}
.yf3{bottom:769.213333pt;}
.y14c{bottom:771.933333pt;}
.yc4{bottom:774.813333pt;}
.y44{bottom:776.093333pt;}
.y120{bottom:776.253333pt;}
.y78{bottom:776.573333pt;}
.y90{bottom:781.213333pt;}
.ye{bottom:783.453333pt;}
.yef{bottom:786.013333pt;}
.y14b{bottom:788.733333pt;}
.yc0{bottom:791.613333pt;}
.y43{bottom:792.893333pt;}
.y11f{bottom:793.053333pt;}
.y77{bottom:793.373333pt;}
.yd{bottom:799.933333pt;}
.y14a{bottom:805.733333pt;}
.yee{bottom:808.933333pt;}
.y42{bottom:809.733333pt;}
.y11e{bottom:810.053333pt;}
.y76{bottom:810.373333pt;}
.yc{bottom:817.253333pt;}
.ybd{bottom:819.333333pt;}
.y149{bottom:822.533333pt;}
.yea{bottom:825.893333pt;}
.y41{bottom:826.693333pt;}
.y11d{bottom:826.853333pt;}
.y75{bottom:827.173333pt;}
.yb{bottom:834.053333pt;}
.y148{bottom:839.333333pt;}
.y40{bottom:843.493333pt;}
.y11c{bottom:843.813333pt;}
.y74{bottom:844.133333pt;}
.ya{bottom:850.853333pt;}
.y147{bottom:860.293333pt;}
.y3f{bottom:860.453333pt;}
.y11b{bottom:860.613333pt;}
.y73{bottom:860.933333pt;}
.y9{bottom:867.493333pt;}
.ye9{bottom:869.253333pt;}
.yba{bottom:869.893333pt;}
.y3e{bottom:877.253333pt;}
.y11a{bottom:877.413333pt;}
.y72{bottom:877.733333pt;}
.ye8{bottom:882.693333pt;}
.y8{bottom:884.613333pt;}
.ye7{bottom:890.053333pt;}
.y119{bottom:891.013333pt;}
.y3d{bottom:894.053333pt;}
.y71{bottom:894.693333pt;}
.y118{bottom:898.373333pt;}
.y3c{bottom:911.013333pt;}
.y70{bottom:911.493333pt;}
.y117{bottom:916.453333pt;}
.y7{bottom:919.333333pt;}
.y116{bottom:923.813333pt;}
.yb9{bottom:923.973333pt;}
.y3b{bottom:927.813333pt;}
.y6f{bottom:928.453333pt;}
.yb8{bottom:937.573333pt;}
.y3a{bottom:944.773333pt;}
.y6e{bottom:945.253333pt;}
.yb7{bottom:945.573333pt;}
.y6{bottom:946.853333pt;}
.y6d{bottom:962.053333pt;}
.yb6{bottom:965.093333pt;}
.yb5{bottom:973.093333pt;}
.y39{bottom:973.413333pt;}
.y6c{bottom:979.013333pt;}
.y38{bottom:994.373333pt;}
.y6b{bottom:995.813333pt;}
.y3{bottom:1018.853333pt;}
.y2{bottom:1035.680000pt;}
.y1{bottom:1052.480000pt;}
.h15{height:16.800000pt;}
.h19{height:16.960000pt;}
.h1a{height:16.992000pt;}
.h2a{height:22.880000pt;}
.h29{height:22.912000pt;}
.h13{height:27.712000pt;}
.h11{height:33.760000pt;}
.h8{height:36.883125pt;}
.h25{height:39.680000pt;}
.h2b{height:39.840000pt;}
.h6{height:40.882500pt;}
.h5{height:41.543750pt;}
.h1b{height:42.880000pt;}
.ha{height:46.609688pt;}
.h12{height:50.560000pt;}
.hd{height:51.663750pt;}
.h1f{height:52.108438pt;}
.h7{height:52.134375pt;}
.h9{height:53.535000pt;}
.h2f{height:56.352000pt;}
.h2c{height:56.672000pt;}
.h3{height:57.758750pt;}
.h2{height:57.787500pt;}
.hc{height:59.340000pt;}
.h31{height:62.643750pt;}
.h2d{height:62.812500pt;}
.h26{height:63.930625pt;}
.h36{height:64.500000pt;}
.hb{height:66.625000pt;}
.h33{height:67.180625pt;}
.h4{height:67.734375pt;}
.h20{height:70.698125pt;}
.h22{height:72.184688pt;}
.h1c{height:74.430937pt;}
.h10{height:76.055625pt;}
.he{height:77.630937pt;}
.h14{height:77.790938pt;}
.h30{height:78.988438pt;}
.h16{height:83.663750pt;}
.h28{height:84.667500pt;}
.h34{height:87.198750pt;}
.h1e{height:87.227500pt;}
.h24{height:88.780000pt;}
.h32{height:89.523750pt;}
.hf{height:89.787500pt;}
.h27{height:90.810625pt;}
.h35{height:92.252500pt;}
.h21{height:100.138125pt;}
.h23{height:101.624687pt;}
.h1d{height:103.870937pt;}
.h18{height:108.055625pt;}
.h17{height:109.630937pt;}
.h2e{height:174.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:94.080000pt;}
.w3{width:94.400000pt;}
.w6{width:313.946667pt;}
.w7{width:328.733333pt;}
.w4{width:453.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:7.226667pt;}
.x10{left:25.120000pt;}
.x34{left:27.386667pt;}
.x2e{left:30.560000pt;}
.x26{left:37.480000pt;}
.x16{left:40.640000pt;}
.xe{left:56.954667pt;}
.x11{left:59.880000pt;}
.x5{left:75.551988pt;}
.x17{left:79.880000pt;}
.x3{left:91.391988pt;}
.xd{left:94.592000pt;}
.x18{left:99.400000pt;}
.x19{left:119.080000pt;}
.x22{left:123.072000pt;}
.x35{left:129.626667pt;}
.x20{left:132.511988pt;}
.x2f{left:136.154667pt;}
.x28{left:137.320000pt;}
.x36{left:142.106667pt;}
.x1a{left:144.360000pt;}
.x33{left:146.874667pt;}
.x30{left:151.994667pt;}
.x37{left:154.746667pt;}
.x31{left:163.394667pt;}
.x2d{left:164.834667pt;}
.x21{left:166.426655pt;}
.x6{left:169.946655pt;}
.x32{left:174.754667pt;}
.xf{left:188.986667pt;}
.x38{left:192.386667pt;}
.x1d{left:195.226655pt;}
.x2{left:203.226655pt;}
.x7{left:210.266655pt;}
.x23{left:217.146667pt;}
.xa{left:218.746655pt;}
.x29{left:240.386667pt;}
.x27{left:244.226667pt;}
.x1{left:258.786655pt;}
.x2a{left:278.626667pt;}
.x24{left:310.786667pt;}
.x2c{left:321.506667pt;}
.x25{left:340.106667pt;}
.x2b{left:389.506667pt;}
.x4{left:393.666655pt;}
.x9{left:396.893322pt;}
.x1c{left:404.733322pt;}
.x12{left:417.533322pt;}
.x1e{left:426.653322pt;}
.x1f{left:452.893322pt;}
.x3b{left:466.173322pt;}
.xc{left:475.773322pt;}
.x1b{left:495.773322pt;}
.x13{left:508.093322pt;}
.x8{left:579.813322pt;}
.x14{left:658.213322pt;}
.xb{left:696.133322pt;}
.x15{left:705.093322pt;}
.x3a{left:712.933322pt;}
}




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