
    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_27ed56b1feb28f37e037a197.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_9ed9ffab91875cb8645e3a1d.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_5af211d06bc0b68ea8e321b1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0d7ccaf3921f902ff72724ae.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfe95730ff7a1a226dd58be4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.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_a1923cb5da7038329455e860.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2d5da21928001b82f584736b.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v3{vertical-align:30.960000px;}
.lsf{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.924000px;}
.ls16{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.513600px;}
.ls5{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.439920px;}
.ls9{letter-spacing:0.666000px;}
.ls1b{letter-spacing:0.900000px;}
.ls13{letter-spacing:10.026720px;}
.ls1{letter-spacing:10.236000px;}
.ls19{letter-spacing:16.506720px;}
.ls3{letter-spacing:19.386720px;}
.ls1a{letter-spacing:22.500000px;}
.ls17{letter-spacing:37.386720px;}
.ls18{letter-spacing:46.026720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws4{word-spacing:-15.046800px;}
.wse{word-spacing:-14.976000px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.426400px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1a{margin-left:-3.612720px;}
._15{margin-left:-2.431680px;}
._0{margin-left:-1.080000px;}
._11{width:1.130400px;}
._1{width:2.220000px;}
._13{width:3.270240px;}
._17{width:4.338960px;}
._16{width:5.416800px;}
._14{width:6.678240px;}
._18{width:8.527920px;}
._12{width:9.591840px;}
._6{width:10.800000px;}
._1b{width:12.609360px;}
._2a{width:13.690080px;}
._19{width:16.588560px;}
._2b{width:17.604240px;}
._f{width:18.948000px;}
._30{width:19.951680px;}
._1e{width:21.100320px;}
._1f{width:22.524480px;}
._1d{width:24.028560px;}
._1c{width:25.039440px;}
._36{width:27.250560px;}
._37{width:28.350480px;}
._22{width:33.226560px;}
._27{width:34.247520px;}
._21{width:35.318160px;}
._26{width:36.871920px;}
._20{width:39.984480px;}
._28{width:41.179680px;}
._34{width:50.621760px;}
._35{width:52.560480px;}
._24{width:71.413200px;}
._23{width:72.907200px;}
._2e{width:73.982880px;}
._2d{width:75.227760px;}
._7{width:76.284960px;}
._2c{width:81.811440px;}
._25{width:105.297120px;}
._10{width:132.780000px;}
._2f{width:137.562480px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._32{width:324.295920px;}
._33{width:327.199920px;}
._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;}
._29{width:1503.876000px;}
._31{width:1614.000000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(238,0,0);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.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;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:5.760000px;}
.y76{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.ybb{bottom:6.840000px;}
.y6{bottom:12.600000px;}
.ybd{bottom:16.740000px;}
.y8{bottom:18.180000px;}
.yb7{bottom:24.585000px;}
.y6f{bottom:25.560000px;}
.y75{bottom:25.740000px;}
.y72{bottom:25.785000px;}
.ybe{bottom:26.640000px;}
.yc5{bottom:26.820000px;}
.yba{bottom:26.865000px;}
.y10f{bottom:29.670000px;}
.yc{bottom:36.000000px;}
.yc1{bottom:36.720000px;}
.y10e{bottom:37.410000px;}
.y5{bottom:40.500000px;}
.y6e{bottom:45.360000px;}
.y71{bottom:45.585000px;}
.yc3{bottom:46.620000px;}
.yb{bottom:57.780000px;}
.y78{bottom:65.160000px;}
.yc2{bottom:66.420000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.yb6{bottom:83.730000px;}
.y3{bottom:96.510000px;}
.y10a{bottom:103.860000px;}
.y6a{bottom:105.840000px;}
.yfd{bottom:106.200000px;}
.y3b{bottom:110.700000px;}
.y139{bottom:111.600000px;}
.y13c{bottom:112.500000px;}
.yb3{bottom:113.325000px;}
.y111{bottom:113.505000px;}
.y114{bottom:114.840000px;}
.y95{bottom:115.920000px;}
.y109{bottom:123.660000px;}
.y69{bottom:125.640000px;}
.y2{bottom:125.850000px;}
.yfc{bottom:126.000000px;}
.y110{bottom:129.030000px;}
.y3a{bottom:130.500000px;}
.y138{bottom:131.400000px;}
.yb1{bottom:131.580000px;}
.y13b{bottom:132.480000px;}
.y113{bottom:134.640000px;}
.y94{bottom:135.720000px;}
.ydf{bottom:138.420000px;}
.yb5{bottom:142.920000px;}
.y108{bottom:143.640000px;}
.y68{bottom:145.440000px;}
.yfb{bottom:145.800000px;}
.y39{bottom:150.300000px;}
.y137{bottom:151.200000px;}
.yb0{bottom:151.380000px;}
.y13a{bottom:152.130000px;}
.y112{bottom:154.470000px;}
.y93{bottom:155.550000px;}
.yde{bottom:158.430000px;}
.y107{bottom:163.470000px;}
.yfa{bottom:165.810000px;}
.y38{bottom:170.310000px;}
.y136{bottom:171.210000px;}
.yaf{bottom:171.390000px;}
.y67{bottom:174.450000px;}
.y92{bottom:175.530000px;}
.ydd{bottom:178.230000px;}
.y106{bottom:183.270000px;}
.yf9{bottom:185.610000px;}
.y37{bottom:190.110000px;}
.y135{bottom:191.010000px;}
.yae{bottom:191.190000px;}
.y66{bottom:194.250000px;}
.y91{bottom:195.330000px;}
.y10d{bottom:197.385000px;}
.ydc{bottom:198.030000px;}
.yb4{bottom:202.065000px;}
.y105{bottom:203.070000px;}
.yf8{bottom:205.410000px;}
.y36{bottom:209.910000px;}
.y134{bottom:210.810000px;}
.yad{bottom:210.990000px;}
.y10c{bottom:212.865000px;}
.y65{bottom:214.050000px;}
.y90{bottom:215.130000px;}
.ydb{bottom:217.830000px;}
.y104{bottom:222.870000px;}
.yf7{bottom:225.210000px;}
.y35{bottom:229.710000px;}
.y133{bottom:230.610000px;}
.yac{bottom:230.790000px;}
.y64{bottom:233.850000px;}
.y8f{bottom:234.930000px;}
.yda{bottom:237.630000px;}
.y103{bottom:242.850000px;}
.yf6{bottom:245.010000px;}
.y34{bottom:249.510000px;}
.y132{bottom:250.410000px;}
.yab{bottom:250.590000px;}
.y63{bottom:253.650000px;}
.y8e{bottom:254.730000px;}
.yd9{bottom:257.610000px;}
.y102{bottom:262.650000px;}
.yf5{bottom:266.070000px;}
.y33{bottom:269.490000px;}
.y131{bottom:270.390000px;}
.yaa{bottom:270.570000px;}
.y62{bottom:273.450000px;}
.y8d{bottom:274.710000px;}
.yd8{bottom:277.410000px;}
.y101{bottom:282.450000px;}
.yf4{bottom:285.870000px;}
.y32{bottom:289.290000px;}
.y130{bottom:290.190000px;}
.ya9{bottom:290.370000px;}
.y61{bottom:293.430000px;}
.y8c{bottom:294.510000px;}
.yd7{bottom:297.210000px;}
.y100{bottom:302.250000px;}
.yf3{bottom:305.670000px;}
.y31{bottom:309.090000px;}
.y12f{bottom:309.990000px;}
.ya8{bottom:310.170000px;}
.y60{bottom:313.230000px;}
.y8b{bottom:314.310000px;}
.yd6{bottom:317.010000px;}
.yff{bottom:322.050000px;}
.yf2{bottom:326.550000px;}
.y30{bottom:328.890000px;}
.y12e{bottom:329.790000px;}
.ya7{bottom:329.970000px;}
.y5f{bottom:333.030000px;}
.y8a{bottom:334.110000px;}
.y10b{bottom:336.240000px;}
.yd5{bottom:336.810000px;}
.yfe{bottom:338.610000px;}
.yf1{bottom:346.350000px;}
.y2f{bottom:348.690000px;}
.y12d{bottom:349.590000px;}
.ya6{bottom:349.770000px;}
.y5e{bottom:352.830000px;}
.y89{bottom:353.910000px;}
.yd4{bottom:356.790000px;}
.yf0{bottom:366.330000px;}
.y2e{bottom:368.670000px;}
.y12c{bottom:369.570000px;}
.ya5{bottom:369.750000px;}
.y5d{bottom:372.630000px;}
.y88{bottom:373.890000px;}
.yd3{bottom:376.590000px;}
.yef{bottom:386.130000px;}
.y2d{bottom:388.470000px;}
.y12b{bottom:389.370000px;}
.ya4{bottom:389.550000px;}
.y5c{bottom:392.610000px;}
.y87{bottom:393.690000px;}
.yd2{bottom:396.390000px;}
.yee{bottom:407.055000px;}
.y2c{bottom:408.315000px;}
.y12a{bottom:409.215000px;}
.ya3{bottom:409.395000px;}
.y5b{bottom:412.455000px;}
.y86{bottom:413.535000px;}
.yd1{bottom:416.235000px;}
.yed{bottom:426.855000px;}
.y2b{bottom:428.115000px;}
.y129{bottom:429.015000px;}
.ya2{bottom:429.195000px;}
.y5a{bottom:432.255000px;}
.y85{bottom:433.335000px;}
.yd0{bottom:436.035000px;}
.yec{bottom:446.655000px;}
.y2a{bottom:447.915000px;}
.y128{bottom:448.815000px;}
.ya1{bottom:448.995000px;}
.y59{bottom:452.055000px;}
.y84{bottom:453.135000px;}
.ycf{bottom:456.015000px;}
.yeb{bottom:467.715000px;}
.y29{bottom:467.895000px;}
.y127{bottom:468.795000px;}
.ya0{bottom:468.975000px;}
.y58{bottom:471.855000px;}
.y83{bottom:473.115000px;}
.yce{bottom:475.815000px;}
.yea{bottom:487.515000px;}
.y28{bottom:487.695000px;}
.y126{bottom:488.595000px;}
.y9f{bottom:488.775000px;}
.y57{bottom:491.835000px;}
.ycd{bottom:495.615000px;}
.ye9{bottom:507.315000px;}
.y27{bottom:507.495000px;}
.y125{bottom:508.395000px;}
.y9e{bottom:508.575000px;}
.y82{bottom:510.915000px;}
.y56{bottom:511.635000px;}
.ycc{bottom:515.415000px;}
.y26{bottom:527.295000px;}
.ye8{bottom:528.195000px;}
.y9d{bottom:528.375000px;}
.y81{bottom:530.715000px;}
.y55{bottom:531.435000px;}
.ycb{bottom:535.215000px;}
.y25{bottom:547.095000px;}
.ye7{bottom:547.995000px;}
.y9c{bottom:548.175000px;}
.y80{bottom:550.515000px;}
.y54{bottom:551.235000px;}
.yca{bottom:555.195000px;}
.y24{bottom:567.075000px;}
.y9b{bottom:567.975000px;}
.y7f{bottom:570.315000px;}
.y53{bottom:571.035000px;}
.yc9{bottom:574.995000px;}
.y23{bottom:586.875000px;}
.ye6{bottom:587.775000px;}
.y9a{bottom:587.955000px;}
.y7e{bottom:590.295000px;}
.y52{bottom:591.015000px;}
.yc8{bottom:594.795000px;}
.y22{bottom:606.675000px;}
.y124{bottom:607.575000px;}
.y99{bottom:607.755000px;}
.ye5{bottom:608.655000px;}
.y7d{bottom:610.095000px;}
.y51{bottom:610.815000px;}
.yc7{bottom:614.595000px;}
.y21{bottom:626.475000px;}
.y123{bottom:627.375000px;}
.y98{bottom:627.555000px;}
.ye4{bottom:628.455000px;}
.y7c{bottom:629.895000px;}
.y50{bottom:630.615000px;}
.yc6{bottom:634.395000px;}
.y20{bottom:646.275000px;}
.y122{bottom:647.175000px;}
.y97{bottom:647.355000px;}
.ye3{bottom:648.255000px;}
.yc4{bottom:649.185000px;}
.y7b{bottom:649.725000px;}
.y4f{bottom:650.445000px;}
.yb2{bottom:661.500000px;}
.y96{bottom:664.125000px;}
.y1f{bottom:666.285000px;}
.y121{bottom:667.185000px;}
.ye2{bottom:669.165000px;}
.y7a{bottom:669.525000px;}
.y4e{bottom:670.245000px;}
.y1e{bottom:686.085000px;}
.y120{bottom:686.985000px;}
.ye1{bottom:689.145000px;}
.y79{bottom:689.505000px;}
.y4d{bottom:690.225000px;}
.y77{bottom:703.545000px;}
.y1d{bottom:705.885000px;}
.y11f{bottom:706.785000px;}
.ye0{bottom:708.945000px;}
.y4c{bottom:710.025000px;}
.yc0{bottom:711.645000px;}
.y1c{bottom:725.685000px;}
.y11e{bottom:726.585000px;}
.y4b{bottom:729.825000px;}
.y1b{bottom:745.485000px;}
.y11d{bottom:746.385000px;}
.y4a{bottom:749.625000px;}
.y1a{bottom:765.465000px;}
.y11c{bottom:766.365000px;}
.y49{bottom:769.425000px;}
.y74{bottom:782.745000px;}
.y19{bottom:785.265000px;}
.y11b{bottom:786.165000px;}
.y48{bottom:789.405000px;}
.ybf{bottom:793.905000px;}
.y18{bottom:805.065000px;}
.y11a{bottom:805.965000px;}
.y47{bottom:809.205000px;}
.y73{bottom:822.525000px;}
.y17{bottom:824.865000px;}
.y119{bottom:825.765000px;}
.y46{bottom:829.005000px;}
.ybc{bottom:836.565000px;}
.y16{bottom:844.665000px;}
.y118{bottom:846.645000px;}
.y45{bottom:848.805000px;}
.y117{bottom:866.445000px;}
.y44{bottom:868.605000px;}
.y15{bottom:869.865000px;}
.yb9{bottom:879.045000px;}
.y70{bottom:881.925000px;}
.y14{bottom:884.445000px;}
.y116{bottom:887.505000px;}
.y43{bottom:888.585000px;}
.y115{bottom:907.350000px;}
.y42{bottom:908.430000px;}
.y13{bottom:909.510000px;}
.yb8{bottom:921.750000px;}
.y12{bottom:924.630000px;}
.y41{bottom:928.230000px;}
.y6d{bottom:941.550000px;}
.y11{bottom:945.870000px;}
.y40{bottom:948.030000px;}
.y3f{bottom:967.830000px;}
.y10{bottom:969.450000px;}
.y3e{bottom:987.810000px;}
.yf{bottom:1001.130000px;}
.y6b{bottom:1001.850000px;}
.y3d{bottom:1007.610000px;}
.y3c{bottom:1027.410000px;}
.y9{bottom:1045.410000px;}
.y1{bottom:1062.870000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.h14{height:19.800000px;}
.hb{height:21.780000px;}
.hf{height:27.147656px;}
.h7{height:33.480000px;}
.h17{height:39.780000px;}
.h10{height:41.726953px;}
.h1b{height:41.760000px;}
.h1f{height:41.827500px;}
.h1a{height:41.976000px;}
.he{height:42.164648px;}
.h13{height:43.506914px;}
.h12{height:45.024258px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h11{height:49.255313px;}
.h8{height:50.273438px;}
.h9{height:53.224453px;}
.h15{height:59.400000px;}
.h16{height:59.616000px;}
.h1d{height:61.740000px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h20{height:72.686953px;}
.h18{height:79.200000px;}
.h1c{height:81.540000px;}
.h5{height:112.536000px;}
.h2{height:146.916000px;}
.h19{height:232.200000px;}
.h1e{height:248.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:130.716000px;}
.w9{width:168.480000px;}
.w6{width:168.840000px;}
.w7{width:243.075000px;}
.w8{width:290.010000px;}
.wb{width:312.330000px;}
.wa{width:366.195000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x12{left:14.940000px;}
.x1d{left:29.160000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.xe{left:60.479987px;}
.x28{left:75.239987px;}
.x1e{left:80.999987px;}
.x1f{left:94.535987px;}
.x11{left:95.616000px;}
.x26{left:101.375987px;}
.x1b{left:106.956000px;}
.x4{left:118.290000px;}
.x7{left:128.015987px;}
.x27{left:139.175987px;}
.xf{left:148.535987px;}
.x10{left:168.869987px;}
.x20{left:189.029987px;}
.x8{left:191.909987px;}
.xd{left:257.249987px;}
.x13{left:264.450000px;}
.x17{left:267.914987px;}
.xa{left:275.294987px;}
.x24{left:309.524987px;}
.x21{left:318.674987px;}
.x15{left:338.114987px;}
.x25{left:342.644987px;}
.xc{left:351.614987px;}
.xb{left:371.774987px;}
.x16{left:397.694987px;}
.x19{left:405.104987px;}
.x22{left:415.184987px;}
.x1a{left:428.504987px;}
.x18{left:432.284987px;}
.x9{left:446.504987px;}
.x1c{left:473.865000px;}
.x14{left:507.525000px;}
.x23{left:542.234987px;}
.x3{left:705.930000px;}
.x6{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:27.520000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls16{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.456533pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.391040pt;}
.ls9{letter-spacing:0.592000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls13{letter-spacing:8.912640pt;}
.ls1{letter-spacing:9.098667pt;}
.ls19{letter-spacing:14.672640pt;}
.ls3{letter-spacing:17.232640pt;}
.ls1a{letter-spacing:20.000000pt;}
.ls17{letter-spacing:33.232640pt;}
.ls18{letter-spacing:40.912640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.312000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.823467pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1a{margin-left:-3.211307pt;}
._15{margin-left:-2.161493pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.004800pt;}
._1{width:1.973333pt;}
._13{width:2.906880pt;}
._17{width:3.856853pt;}
._16{width:4.814933pt;}
._14{width:5.936213pt;}
._18{width:7.580373pt;}
._12{width:8.526080pt;}
._6{width:9.600000pt;}
._1b{width:11.208320pt;}
._2a{width:12.168960pt;}
._19{width:14.745387pt;}
._2b{width:15.648213pt;}
._f{width:16.842667pt;}
._30{width:17.734827pt;}
._1e{width:18.755840pt;}
._1f{width:20.021760pt;}
._1d{width:21.358720pt;}
._1c{width:22.257280pt;}
._36{width:24.222720pt;}
._37{width:25.200427pt;}
._22{width:29.534720pt;}
._27{width:30.442240pt;}
._21{width:31.393920pt;}
._26{width:32.775040pt;}
._20{width:35.541760pt;}
._28{width:36.604160pt;}
._34{width:44.997120pt;}
._35{width:46.720427pt;}
._24{width:63.478400pt;}
._23{width:64.806400pt;}
._2e{width:65.762560pt;}
._2d{width:66.869120pt;}
._7{width:67.808853pt;}
._2c{width:72.721280pt;}
._25{width:93.597440pt;}
._10{width:118.026667pt;}
._2f{width:122.277760pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._32{width:288.263040pt;}
._33{width:290.844373pt;}
._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;}
._29{width:1336.778667pt;}
._31{width:1434.666667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:5.120000pt;}
.y76{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.ybb{bottom:6.080000pt;}
.y6{bottom:11.200000pt;}
.ybd{bottom:14.880000pt;}
.y8{bottom:16.160000pt;}
.yb7{bottom:21.853333pt;}
.y6f{bottom:22.720000pt;}
.y75{bottom:22.880000pt;}
.y72{bottom:22.920000pt;}
.ybe{bottom:23.680000pt;}
.yc5{bottom:23.840000pt;}
.yba{bottom:23.880000pt;}
.y10f{bottom:26.373333pt;}
.yc{bottom:32.000000pt;}
.yc1{bottom:32.640000pt;}
.y10e{bottom:33.253333pt;}
.y5{bottom:36.000000pt;}
.y6e{bottom:40.320000pt;}
.y71{bottom:40.520000pt;}
.yc3{bottom:41.440000pt;}
.yb{bottom:51.360000pt;}
.y78{bottom:57.920000pt;}
.yc2{bottom:59.040000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.yb6{bottom:74.426667pt;}
.y3{bottom:85.786667pt;}
.y10a{bottom:92.320000pt;}
.y6a{bottom:94.080000pt;}
.yfd{bottom:94.400000pt;}
.y3b{bottom:98.400000pt;}
.y139{bottom:99.200000pt;}
.y13c{bottom:100.000000pt;}
.yb3{bottom:100.733333pt;}
.y111{bottom:100.893333pt;}
.y114{bottom:102.080000pt;}
.y95{bottom:103.040000pt;}
.y109{bottom:109.920000pt;}
.y69{bottom:111.680000pt;}
.y2{bottom:111.866667pt;}
.yfc{bottom:112.000000pt;}
.y110{bottom:114.693333pt;}
.y3a{bottom:116.000000pt;}
.y138{bottom:116.800000pt;}
.yb1{bottom:116.960000pt;}
.y13b{bottom:117.760000pt;}
.y113{bottom:119.680000pt;}
.y94{bottom:120.640000pt;}
.ydf{bottom:123.040000pt;}
.yb5{bottom:127.040000pt;}
.y108{bottom:127.680000pt;}
.y68{bottom:129.280000pt;}
.yfb{bottom:129.600000pt;}
.y39{bottom:133.600000pt;}
.y137{bottom:134.400000pt;}
.yb0{bottom:134.560000pt;}
.y13a{bottom:135.226667pt;}
.y112{bottom:137.306667pt;}
.y93{bottom:138.266667pt;}
.yde{bottom:140.826667pt;}
.y107{bottom:145.306667pt;}
.yfa{bottom:147.386667pt;}
.y38{bottom:151.386667pt;}
.y136{bottom:152.186667pt;}
.yaf{bottom:152.346667pt;}
.y67{bottom:155.066667pt;}
.y92{bottom:156.026667pt;}
.ydd{bottom:158.426667pt;}
.y106{bottom:162.906667pt;}
.yf9{bottom:164.986667pt;}
.y37{bottom:168.986667pt;}
.y135{bottom:169.786667pt;}
.yae{bottom:169.946667pt;}
.y66{bottom:172.666667pt;}
.y91{bottom:173.626667pt;}
.y10d{bottom:175.453333pt;}
.ydc{bottom:176.026667pt;}
.yb4{bottom:179.613333pt;}
.y105{bottom:180.506667pt;}
.yf8{bottom:182.586667pt;}
.y36{bottom:186.586667pt;}
.y134{bottom:187.386667pt;}
.yad{bottom:187.546667pt;}
.y10c{bottom:189.213333pt;}
.y65{bottom:190.266667pt;}
.y90{bottom:191.226667pt;}
.ydb{bottom:193.626667pt;}
.y104{bottom:198.106667pt;}
.yf7{bottom:200.186667pt;}
.y35{bottom:204.186667pt;}
.y133{bottom:204.986667pt;}
.yac{bottom:205.146667pt;}
.y64{bottom:207.866667pt;}
.y8f{bottom:208.826667pt;}
.yda{bottom:211.226667pt;}
.y103{bottom:215.866667pt;}
.yf6{bottom:217.786667pt;}
.y34{bottom:221.786667pt;}
.y132{bottom:222.586667pt;}
.yab{bottom:222.746667pt;}
.y63{bottom:225.466667pt;}
.y8e{bottom:226.426667pt;}
.yd9{bottom:228.986667pt;}
.y102{bottom:233.466667pt;}
.yf5{bottom:236.506667pt;}
.y33{bottom:239.546667pt;}
.y131{bottom:240.346667pt;}
.yaa{bottom:240.506667pt;}
.y62{bottom:243.066667pt;}
.y8d{bottom:244.186667pt;}
.yd8{bottom:246.586667pt;}
.y101{bottom:251.066667pt;}
.yf4{bottom:254.106667pt;}
.y32{bottom:257.146667pt;}
.y130{bottom:257.946667pt;}
.ya9{bottom:258.106667pt;}
.y61{bottom:260.826667pt;}
.y8c{bottom:261.786667pt;}
.yd7{bottom:264.186667pt;}
.y100{bottom:268.666667pt;}
.yf3{bottom:271.706667pt;}
.y31{bottom:274.746667pt;}
.y12f{bottom:275.546667pt;}
.ya8{bottom:275.706667pt;}
.y60{bottom:278.426667pt;}
.y8b{bottom:279.386667pt;}
.yd6{bottom:281.786667pt;}
.yff{bottom:286.266667pt;}
.yf2{bottom:290.266667pt;}
.y30{bottom:292.346667pt;}
.y12e{bottom:293.146667pt;}
.ya7{bottom:293.306667pt;}
.y5f{bottom:296.026667pt;}
.y8a{bottom:296.986667pt;}
.y10b{bottom:298.880000pt;}
.yd5{bottom:299.386667pt;}
.yfe{bottom:300.986667pt;}
.yf1{bottom:307.866667pt;}
.y2f{bottom:309.946667pt;}
.y12d{bottom:310.746667pt;}
.ya6{bottom:310.906667pt;}
.y5e{bottom:313.626667pt;}
.y89{bottom:314.586667pt;}
.yd4{bottom:317.146667pt;}
.yf0{bottom:325.626667pt;}
.y2e{bottom:327.706667pt;}
.y12c{bottom:328.506667pt;}
.ya5{bottom:328.666667pt;}
.y5d{bottom:331.226667pt;}
.y88{bottom:332.346667pt;}
.yd3{bottom:334.746667pt;}
.yef{bottom:343.226667pt;}
.y2d{bottom:345.306667pt;}
.y12b{bottom:346.106667pt;}
.ya4{bottom:346.266667pt;}
.y5c{bottom:348.986667pt;}
.y87{bottom:349.946667pt;}
.yd2{bottom:352.346667pt;}
.yee{bottom:361.826667pt;}
.y2c{bottom:362.946667pt;}
.y12a{bottom:363.746667pt;}
.ya3{bottom:363.906667pt;}
.y5b{bottom:366.626667pt;}
.y86{bottom:367.586667pt;}
.yd1{bottom:369.986667pt;}
.yed{bottom:379.426667pt;}
.y2b{bottom:380.546667pt;}
.y129{bottom:381.346667pt;}
.ya2{bottom:381.506667pt;}
.y5a{bottom:384.226667pt;}
.y85{bottom:385.186667pt;}
.yd0{bottom:387.586667pt;}
.yec{bottom:397.026667pt;}
.y2a{bottom:398.146667pt;}
.y128{bottom:398.946667pt;}
.ya1{bottom:399.106667pt;}
.y59{bottom:401.826667pt;}
.y84{bottom:402.786667pt;}
.ycf{bottom:405.346667pt;}
.yeb{bottom:415.746667pt;}
.y29{bottom:415.906667pt;}
.y127{bottom:416.706667pt;}
.ya0{bottom:416.866667pt;}
.y58{bottom:419.426667pt;}
.y83{bottom:420.546667pt;}
.yce{bottom:422.946667pt;}
.yea{bottom:433.346667pt;}
.y28{bottom:433.506667pt;}
.y126{bottom:434.306667pt;}
.y9f{bottom:434.466667pt;}
.y57{bottom:437.186667pt;}
.ycd{bottom:440.546667pt;}
.ye9{bottom:450.946667pt;}
.y27{bottom:451.106667pt;}
.y125{bottom:451.906667pt;}
.y9e{bottom:452.066667pt;}
.y82{bottom:454.146667pt;}
.y56{bottom:454.786667pt;}
.ycc{bottom:458.146667pt;}
.y26{bottom:468.706667pt;}
.ye8{bottom:469.506667pt;}
.y9d{bottom:469.666667pt;}
.y81{bottom:471.746667pt;}
.y55{bottom:472.386667pt;}
.ycb{bottom:475.746667pt;}
.y25{bottom:486.306667pt;}
.ye7{bottom:487.106667pt;}
.y9c{bottom:487.266667pt;}
.y80{bottom:489.346667pt;}
.y54{bottom:489.986667pt;}
.yca{bottom:493.506667pt;}
.y24{bottom:504.066667pt;}
.y9b{bottom:504.866667pt;}
.y7f{bottom:506.946667pt;}
.y53{bottom:507.586667pt;}
.yc9{bottom:511.106667pt;}
.y23{bottom:521.666667pt;}
.ye6{bottom:522.466667pt;}
.y9a{bottom:522.626667pt;}
.y7e{bottom:524.706667pt;}
.y52{bottom:525.346667pt;}
.yc8{bottom:528.706667pt;}
.y22{bottom:539.266667pt;}
.y124{bottom:540.066667pt;}
.y99{bottom:540.226667pt;}
.ye5{bottom:541.026667pt;}
.y7d{bottom:542.306667pt;}
.y51{bottom:542.946667pt;}
.yc7{bottom:546.306667pt;}
.y21{bottom:556.866667pt;}
.y123{bottom:557.666667pt;}
.y98{bottom:557.826667pt;}
.ye4{bottom:558.626667pt;}
.y7c{bottom:559.906667pt;}
.y50{bottom:560.546667pt;}
.yc6{bottom:563.906667pt;}
.y20{bottom:574.466667pt;}
.y122{bottom:575.266667pt;}
.y97{bottom:575.426667pt;}
.ye3{bottom:576.226667pt;}
.yc4{bottom:577.053333pt;}
.y7b{bottom:577.533333pt;}
.y4f{bottom:578.173333pt;}
.yb2{bottom:588.000000pt;}
.y96{bottom:590.333333pt;}
.y1f{bottom:592.253333pt;}
.y121{bottom:593.053333pt;}
.ye2{bottom:594.813333pt;}
.y7a{bottom:595.133333pt;}
.y4e{bottom:595.773333pt;}
.y1e{bottom:609.853333pt;}
.y120{bottom:610.653333pt;}
.ye1{bottom:612.573333pt;}
.y79{bottom:612.893333pt;}
.y4d{bottom:613.533333pt;}
.y77{bottom:625.373333pt;}
.y1d{bottom:627.453333pt;}
.y11f{bottom:628.253333pt;}
.ye0{bottom:630.173333pt;}
.y4c{bottom:631.133333pt;}
.yc0{bottom:632.573333pt;}
.y1c{bottom:645.053333pt;}
.y11e{bottom:645.853333pt;}
.y4b{bottom:648.733333pt;}
.y1b{bottom:662.653333pt;}
.y11d{bottom:663.453333pt;}
.y4a{bottom:666.333333pt;}
.y1a{bottom:680.413333pt;}
.y11c{bottom:681.213333pt;}
.y49{bottom:683.933333pt;}
.y74{bottom:695.773333pt;}
.y19{bottom:698.013333pt;}
.y11b{bottom:698.813333pt;}
.y48{bottom:701.693333pt;}
.ybf{bottom:705.693333pt;}
.y18{bottom:715.613333pt;}
.y11a{bottom:716.413333pt;}
.y47{bottom:719.293333pt;}
.y73{bottom:731.133333pt;}
.y17{bottom:733.213333pt;}
.y119{bottom:734.013333pt;}
.y46{bottom:736.893333pt;}
.ybc{bottom:743.613333pt;}
.y16{bottom:750.813333pt;}
.y118{bottom:752.573333pt;}
.y45{bottom:754.493333pt;}
.y117{bottom:770.173333pt;}
.y44{bottom:772.093333pt;}
.y15{bottom:773.213333pt;}
.yb9{bottom:781.373333pt;}
.y70{bottom:783.933333pt;}
.y14{bottom:786.173333pt;}
.y116{bottom:788.893333pt;}
.y43{bottom:789.853333pt;}
.y115{bottom:806.533333pt;}
.y42{bottom:807.493333pt;}
.y13{bottom:808.453333pt;}
.yb8{bottom:819.333333pt;}
.y12{bottom:821.893333pt;}
.y41{bottom:825.093333pt;}
.y6d{bottom:836.933333pt;}
.y11{bottom:840.773333pt;}
.y40{bottom:842.693333pt;}
.y3f{bottom:860.293333pt;}
.y10{bottom:861.733333pt;}
.y3e{bottom:878.053333pt;}
.yf{bottom:889.893333pt;}
.y6b{bottom:890.533333pt;}
.y3d{bottom:895.653333pt;}
.y3c{bottom:913.253333pt;}
.y9{bottom:929.253333pt;}
.y1{bottom:944.773333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.h14{height:17.600000pt;}
.hb{height:19.360000pt;}
.hf{height:24.131250pt;}
.h7{height:29.760000pt;}
.h17{height:35.360000pt;}
.h10{height:37.090625pt;}
.h1b{height:37.120000pt;}
.h1f{height:37.180000pt;}
.h1a{height:37.312000pt;}
.he{height:37.479688pt;}
.h13{height:38.672812pt;}
.h12{height:40.021563pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h11{height:43.782500pt;}
.h8{height:44.687500pt;}
.h9{height:47.310625pt;}
.h15{height:52.800000pt;}
.h16{height:52.992000pt;}
.h1d{height:54.880000pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h20{height:64.610625pt;}
.h18{height:70.400000pt;}
.h1c{height:72.480000pt;}
.h5{height:100.032000pt;}
.h2{height:130.592000pt;}
.h19{height:206.400000pt;}
.h1e{height:221.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:116.192000pt;}
.w9{width:149.760000pt;}
.w6{width:150.080000pt;}
.w7{width:216.066667pt;}
.w8{width:257.786667pt;}
.wb{width:277.626667pt;}
.wa{width:325.506667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x12{left:13.280000pt;}
.x1d{left:25.920000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.xe{left:53.759988pt;}
.x28{left:66.879988pt;}
.x1e{left:71.999988pt;}
.x1f{left:84.031988pt;}
.x11{left:84.992000pt;}
.x26{left:90.111988pt;}
.x1b{left:95.072000pt;}
.x4{left:105.146667pt;}
.x7{left:113.791988pt;}
.x27{left:123.711988pt;}
.xf{left:132.031988pt;}
.x10{left:150.106655pt;}
.x20{left:168.026655pt;}
.x8{left:170.586655pt;}
.xd{left:228.666655pt;}
.x13{left:235.066667pt;}
.x17{left:238.146655pt;}
.xa{left:244.706655pt;}
.x24{left:275.133322pt;}
.x21{left:283.266655pt;}
.x15{left:300.546655pt;}
.x25{left:304.573322pt;}
.xc{left:312.546655pt;}
.xb{left:330.466655pt;}
.x16{left:353.506655pt;}
.x19{left:360.093322pt;}
.x22{left:369.053322pt;}
.x1a{left:380.893322pt;}
.x18{left:384.253322pt;}
.x9{left:396.893322pt;}
.x1c{left:421.213333pt;}
.x14{left:451.133333pt;}
.x23{left:481.986655pt;}
.x3{left:627.493333pt;}
.x6{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; }
  