
    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_3959c70be8219704288f76d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a186b58287e800e027d0653a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2d00d8c5b0f133927e5f1762.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dbefe5a5c70c4e6c45be5722.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_aa8227cedb6867d759ab5780.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_d6844553d810cec7eca14a34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919434;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.666000px;}
.ls12{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.513600px;}
.ls2{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.828000px;}
.lse{letter-spacing:1.080000px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.ls7{letter-spacing:54.180000px;}
.ls4{letter-spacing:64.170720px;}
.ls10{letter-spacing:791.616000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.274000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-2.048880px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.825520px;}
._4{width:3.930480px;}
._3{width:5.077680px;}
._5{width:7.051680px;}
._11{width:8.068800px;}
._8{width:9.072240px;}
._7{width:10.277280px;}
._6{width:11.473920px;}
._c{width:12.669120px;}
._b{width:13.685040px;}
._9{width:16.732800px;}
._a{width:17.808480px;}
._14{width:18.884160px;}
._d{width:19.900080px;}
._e{width:21.035520px;}
._13{width:22.529520px;}
._12{width:23.539920px;}
._1b{width:24.626640px;}
._15{width:25.637040px;}
._19{width:26.652960px;}
._10{width:33.405840px;}
._f{width:34.601040px;}
._1c{width:85.567440px;}
._16{width:326.424720px;}
._18{width:344.764560px;}
._1a{width:555.342960px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y144{bottom:-5.040000px;}
.y174{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y13e{bottom:3.240000px;}
.ybc{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.ybe{bottom:3.780000px;}
.y171{bottom:11.880000px;}
.y164{bottom:12.060000px;}
.y169{bottom:12.240000px;}
.y16e{bottom:12.414000px;}
.y172{bottom:20.520000px;}
.y165{bottom:20.700000px;}
.y168{bottom:20.880000px;}
.y16d{bottom:21.054000px;}
.y4{bottom:21.240000px;}
.y190{bottom:57.960000px;}
.ya2{bottom:61.560000px;}
.yb7{bottom:67.320000px;}
.yd4{bottom:71.280000px;}
.y14b{bottom:73.620000px;}
.y111{bottom:74.340000px;}
.y81{bottom:74.520000px;}
.y44{bottom:77.400000px;}
.ya1{bottom:78.840000px;}
.yb6{bottom:84.600000px;}
.yd3{bottom:88.560000px;}
.y14a{bottom:90.900000px;}
.y110{bottom:91.620000px;}
.y80{bottom:91.800000px;}
.y43{bottom:94.680000px;}
.ya0{bottom:96.120000px;}
.yb5{bottom:101.916000px;}
.yd2{bottom:105.876000px;}
.y149{bottom:108.036000px;}
.y10f{bottom:108.936000px;}
.y7f{bottom:109.116000px;}
.y42{bottom:111.816000px;}
.y195{bottom:113.076000px;}
.y9f{bottom:113.436000px;}
.yb4{bottom:119.196000px;}
.yd1{bottom:123.156000px;}
.y148{bottom:125.316000px;}
.y10e{bottom:126.036000px;}
.y7e{bottom:126.396000px;}
.y41{bottom:129.096000px;}
.y9e{bottom:130.716000px;}
.yb3{bottom:136.476000px;}
.yd0{bottom:140.436000px;}
.y147{bottom:142.596000px;}
.y16c{bottom:142.956000px;}
.y10d{bottom:143.316000px;}
.y7d{bottom:143.496000px;}
.y40{bottom:146.376000px;}
.y9d{bottom:147.816000px;}
.yb2{bottom:153.750000px;}
.ycf{bottom:157.170000px;}
.y146{bottom:159.870000px;}
.y10c{bottom:160.590000px;}
.y7c{bottom:160.770000px;}
.y3f{bottom:163.650000px;}
.y9c{bottom:165.090000px;}
.yb1{bottom:170.850000px;}
.yce{bottom:174.810000px;}
.y145{bottom:177.150000px;}
.y10b{bottom:177.510000px;}
.y7b{bottom:177.690000px;}
.y3e{bottom:180.930000px;}
.y16b{bottom:182.010000px;}
.y9b{bottom:182.370000px;}
.yb0{bottom:188.130000px;}
.ycd{bottom:192.090000px;}
.y143{bottom:194.070000px;}
.y10a{bottom:195.150000px;}
.y7a{bottom:195.330000px;}
.y3d{bottom:198.030000px;}
.y9a{bottom:199.650000px;}
.y16a{bottom:203.790000px;}
.yaf{bottom:205.410000px;}
.ycc{bottom:209.370000px;}
.y109{bottom:212.430000px;}
.y79{bottom:212.610000px;}
.y3c{bottom:215.310000px;}
.y142{bottom:215.670000px;}
.y99{bottom:216.930000px;}
.yae{bottom:222.690000px;}
.y167{bottom:225.570000px;}
.ycb{bottom:226.650000px;}
.y108{bottom:229.530000px;}
.y78{bottom:229.890000px;}
.y3b{bottom:232.590000px;}
.y98{bottom:234.030000px;}
.y141{bottom:237.450000px;}
.yad{bottom:239.970000px;}
.yca{bottom:243.930000px;}
.y107{bottom:246.810000px;}
.y77{bottom:246.990000px;}
.y3a{bottom:249.870000px;}
.y97{bottom:251.310000px;}
.yac{bottom:257.250000px;}
.y140{bottom:259.230000px;}
.yc9{bottom:261.030000px;}
.y106{bottom:264.090000px;}
.y76{bottom:264.270000px;}
.y166{bottom:264.450000px;}
.y39{bottom:267.150000px;}
.y96{bottom:268.590000px;}
.yab{bottom:273.990000px;}
.yc8{bottom:278.310000px;}
.y13f{bottom:281.010000px;}
.y105{bottom:281.370000px;}
.y75{bottom:281.550000px;}
.y38{bottom:284.070000px;}
.y95{bottom:285.870000px;}
.y163{bottom:286.230000px;}
.yaa{bottom:288.030000px;}
.yc7{bottom:295.590000px;}
.y74{bottom:298.470000px;}
.y104{bottom:298.650000px;}
.y37{bottom:301.530000px;}
.ya7{bottom:302.790000px;}
.y94{bottom:303.150000px;}
.yc6{bottom:312.870000px;}
.y103{bottom:315.930000px;}
.y73{bottom:316.110000px;}
.y36{bottom:318.810000px;}
.y93{bottom:320.070000px;}
.ya6{bottom:320.430000px;}
.y13d{bottom:327.090000px;}
.yc5{bottom:330.150000px;}
.y102{bottom:333.030000px;}
.y72{bottom:333.210000px;}
.y35{bottom:336.090000px;}
.y92{bottom:337.530000px;}
.y13c{bottom:344.370000px;}
.y162{bottom:345.090000px;}
.yc4{bottom:347.430000px;}
.y101{bottom:350.310000px;}
.y71{bottom:350.490000px;}
.y34{bottom:353.370000px;}
.y91{bottom:354.810000px;}
.y13b{bottom:361.695000px;}
.y161{bottom:362.415000px;}
.yc3{bottom:364.575000px;}
.y100{bottom:367.275000px;}
.y70{bottom:367.815000px;}
.y33{bottom:370.695000px;}
.y194{bottom:371.775000px;}
.y90{bottom:372.135000px;}
.y13a{bottom:378.975000px;}
.y160{bottom:379.695000px;}
.yc2{bottom:381.855000px;}
.y6f{bottom:385.095000px;}
.y32{bottom:387.975000px;}
.yff{bottom:389.055000px;}
.y8f{bottom:389.415000px;}
.y139{bottom:396.075000px;}
.y15f{bottom:396.615000px;}
.yc1{bottom:398.775000px;}
.y6e{bottom:402.375000px;}
.y31{bottom:405.075000px;}
.y8e{bottom:406.695000px;}
.yfe{bottom:410.835000px;}
.y138{bottom:412.995000px;}
.y15e{bottom:414.075000px;}
.y6d{bottom:419.655000px;}
.yc0{bottom:420.555000px;}
.y30{bottom:422.355000px;}
.y8d{bottom:423.615000px;}
.ya5{bottom:423.975000px;}
.y18f{bottom:429.195000px;}
.y137{bottom:430.635000px;}
.y15d{bottom:431.355000px;}
.yfd{bottom:432.435000px;}
.y6c{bottom:436.755000px;}
.y2f{bottom:439.635000px;}
.y8c{bottom:441.075000px;}
.ybf{bottom:442.335000px;}
.y18e{bottom:446.475000px;}
.y136{bottom:447.915000px;}
.y15c{bottom:448.635000px;}
.y6b{bottom:454.035000px;}
.yfc{bottom:454.215000px;}
.y2e{bottom:456.915000px;}
.y193{bottom:457.995000px;}
.y8b{bottom:458.355000px;}
.y18d{bottom:463.575000px;}
.ybd{bottom:463.935000px;}
.y135{bottom:465.195000px;}
.y15b{bottom:465.915000px;}
.y6a{bottom:471.315000px;}
.y2d{bottom:474.195000px;}
.y8a{bottom:475.635000px;}
.yfb{bottom:475.995000px;}
.y18c{bottom:480.855000px;}
.y134{bottom:482.295000px;}
.y15a{bottom:483.195000px;}
.ybb{bottom:485.715000px;}
.y69{bottom:488.595000px;}
.y2c{bottom:491.475000px;}
.y89{bottom:492.915000px;}
.y18b{bottom:498.135000px;}
.y133{bottom:499.575000px;}
.y159{bottom:499.935000px;}
.yfa{bottom:500.295000px;}
.y68{bottom:505.515000px;}
.y2b{bottom:508.215000px;}
.y88{bottom:510.195000px;}
.y18a{bottom:515.415000px;}
.y132{bottom:516.855000px;}
.yf9{bottom:517.575000px;}
.y67{bottom:523.155000px;}
.y2a{bottom:525.855000px;}
.y197{bottom:526.935000px;}
.y87{bottom:527.295000px;}
.y189{bottom:532.695000px;}
.y131{bottom:534.135000px;}
.yf8{bottom:534.855000px;}
.y66{bottom:540.255000px;}
.y29{bottom:543.135000px;}
.y86{bottom:544.575000px;}
.y188{bottom:549.795000px;}
.y130{bottom:551.415000px;}
.yf7{bottom:552.135000px;}
.y65{bottom:558.615000px;}
.y28{bottom:560.415000px;}
.ya4{bottom:561.495000px;}
.y85{bottom:561.855000px;}
.y187{bottom:567.075000px;}
.y12f{bottom:568.335000px;}
.yf6{bottom:569.415000px;}
.y64{bottom:576.975000px;}
.y27{bottom:577.695000px;}
.y84{bottom:579.135000px;}
.y186{bottom:584.355000px;}
.yf5{bottom:586.335000px;}
.y158{bottom:586.695000px;}
.y12e{bottom:589.935000px;}
.y26{bottom:594.435000px;}
.y63{bottom:595.335000px;}
.y83{bottom:596.415000px;}
.y185{bottom:601.635000px;}
.yf4{bottom:603.795000px;}
.y12d{bottom:611.715000px;}
.y25{bottom:612.075000px;}
.y62{bottom:613.695000px;}
.y184{bottom:618.945000px;}
.yf3{bottom:621.105000px;}
.y24{bottom:629.385000px;}
.yba{bottom:630.465000px;}
.y61{bottom:630.825000px;}
.y12c{bottom:633.525000px;}
.y183{bottom:636.225000px;}
.yf2{bottom:638.385000px;}
.y23{bottom:646.665000px;}
.y60{bottom:648.105000px;}
.y182{bottom:653.325000px;}
.y12b{bottom:655.305000px;}
.yf1{bottom:655.665000px;}
.y22{bottom:663.945000px;}
.y5f{bottom:665.385000px;}
.y181{bottom:670.605000px;}
.y157{bottom:672.585000px;}
.yf0{bottom:672.945000px;}
.y12a{bottom:679.605000px;}
.y21{bottom:681.225000px;}
.y5e{bottom:682.665000px;}
.y180{bottom:687.885000px;}
.yef{bottom:690.225000px;}
.y156{bottom:694.185000px;}
.y129{bottom:696.885000px;}
.y20{bottom:698.325000px;}
.ya9{bottom:699.585000px;}
.y5d{bottom:699.945000px;}
.y17f{bottom:705.165000px;}
.yee{bottom:707.325000px;}
.y128{bottom:714.165000px;}
.y1f{bottom:715.605000px;}
.y196{bottom:716.865000px;}
.y5c{bottom:717.225000px;}
.y17e{bottom:722.445000px;}
.yed{bottom:724.605000px;}
.y127{bottom:731.445000px;}
.y1e{bottom:732.885000px;}
.y5b{bottom:734.325000px;}
.y155{bottom:735.945000px;}
.y17d{bottom:739.725000px;}
.yec{bottom:741.885000px;}
.y126{bottom:748.725000px;}
.y1d{bottom:750.165000px;}
.y5a{bottom:751.605000px;}
.y154{bottom:753.225000px;}
.y17c{bottom:756.825000px;}
.yeb{bottom:759.165000px;}
.y125{bottom:765.465000px;}
.y1c{bottom:767.445000px;}
.yb9{bottom:768.525000px;}
.y59{bottom:768.885000px;}
.y153{bottom:770.325000px;}
.y17b{bottom:774.105000px;}
.yea{bottom:776.085000px;}
.y124{bottom:783.105000px;}
.y1b{bottom:784.725000px;}
.y58{bottom:786.165000px;}
.y152{bottom:787.245000px;}
.y17a{bottom:791.385000px;}
.ye9{bottom:797.685000px;}
.y123{bottom:800.385000px;}
.y1a{bottom:801.825000px;}
.y57{bottom:803.445000px;}
.y151{bottom:804.885000px;}
.y179{bottom:808.665000px;}
.y122{bottom:817.665000px;}
.y19{bottom:819.105000px;}
.y56{bottom:820.725000px;}
.ye8{bottom:822.165000px;}
.y178{bottom:825.945000px;}
.y121{bottom:834.945000px;}
.y18{bottom:836.385000px;}
.y55{bottom:837.825000px;}
.ye7{bottom:839.445000px;}
.y177{bottom:842.685000px;}
.y120{bottom:851.685000px;}
.y17{bottom:853.665000px;}
.y54{bottom:854.745000px;}
.y82{bottom:855.105000px;}
.ye6{bottom:856.545000px;}
.y176{bottom:864.465000px;}
.y11f{bottom:869.325000px;}
.y16{bottom:870.585000px;}
.yb8{bottom:872.025000px;}
.y53{bottom:872.385000px;}
.ye5{bottom:873.825000px;}
.y175{bottom:886.290000px;}
.y11e{bottom:886.650000px;}
.y15{bottom:888.630000px;}
.y52{bottom:889.710000px;}
.ye4{bottom:891.150000px;}
.y11d{bottom:903.930000px;}
.y14{bottom:906.090000px;}
.y51{bottom:906.990000px;}
.ye3{bottom:908.070000px;}
.y150{bottom:908.430000px;}
.y11c{bottom:921.210000px;}
.y13{bottom:923.370000px;}
.y192{bottom:923.730000px;}
.y50{bottom:924.090000px;}
.ye2{bottom:925.710000px;}
.y173{bottom:929.850000px;}
.y11b{bottom:938.490000px;}
.y12{bottom:940.650000px;}
.ya8{bottom:941.010000px;}
.y4f{bottom:941.370000px;}
.ye1{bottom:942.990000px;}
.y170{bottom:951.630000px;}
.y11a{bottom:955.590000px;}
.y11{bottom:957.930000px;}
.y4e{bottom:958.650000px;}
.y14f{bottom:959.730000px;}
.ye0{bottom:960.090000px;}
.y119{bottom:972.870000px;}
.y10{bottom:975.210000px;}
.y4d{bottom:975.930000px;}
.ydf{bottom:977.370000px;}
.y14e{bottom:981.510000px;}
.y118{bottom:990.150000px;}
.yf{bottom:992.490000px;}
.ya3{bottom:992.850000px;}
.y4c{bottom:993.210000px;}
.yde{bottom:994.650000px;}
.y14d{bottom:1003.290000px;}
.y117{bottom:1007.430000px;}
.y4b{bottom:1010.130000px;}
.ye{bottom:1010.490000px;}
.ydd{bottom:1011.930000px;}
.y116{bottom:1024.710000px;}
.yd{bottom:1027.590000px;}
.ydc{bottom:1029.210000px;}
.y115{bottom:1041.990000px;}
.yc{bottom:1044.870000px;}
.ydb{bottom:1046.490000px;}
.y114{bottom:1059.090000px;}
.y16f{bottom:1061.790000px;}
.yb{bottom:1062.150000px;}
.yda{bottom:1063.590000px;}
.y113{bottom:1076.370000px;}
.y4a{bottom:1079.430000px;}
.ya{bottom:1079.790000px;}
.yd9{bottom:1080.870000px;}
.y112{bottom:1093.290000px;}
.y49{bottom:1096.710000px;}
.yd8{bottom:1098.150000px;}
.y9{bottom:1100.490000px;}
.y14c{bottom:1113.630000px;}
.y48{bottom:1113.990000px;}
.yd7{bottom:1115.070000px;}
.y8{bottom:1121.190000px;}
.y47{bottom:1131.090000px;}
.yd6{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1148.400000px;}
.yd5{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y191{bottom:1165.320000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.hc{height:34.380000px;}
.hb{height:34.560000px;}
.h6{height:41.726953px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:44.820000px;}
.w11{width:59.940000px;}
.w1d{width:65.016000px;}
.wf{width:68.076000px;}
.w29{width:77.400000px;}
.w2a{width:81.216000px;}
.w14{width:82.980000px;}
.w27{width:84.240000px;}
.w23{width:92.196000px;}
.w18{width:95.796000px;}
.w22{width:99.000000px;}
.w17{width:103.680000px;}
.w15{width:115.596000px;}
.w28{width:121.896000px;}
.we{width:128.016000px;}
.w20{width:132.696000px;}
.w21{width:133.056000px;}
.w24{width:133.596000px;}
.w12{width:135.216000px;}
.w6{width:139.356000px;}
.w1f{width:167.250000px;}
.w10{width:168.480000px;}
.w26{width:170.670000px;}
.w9{width:187.230000px;}
.w1e{width:187.590000px;}
.w1b{width:193.710000px;}
.w3{width:198.930000px;}
.wd{width:200.550000px;}
.wc{width:204.150000px;}
.w25{width:216.975000px;}
.w5{width:217.830000px;}
.w16{width:235.155000px;}
.w1a{width:272.235000px;}
.w8{width:324.255000px;}
.w19{width:345.855000px;}
.w4{width:425.985000px;}
.w7{width:460.905000px;}
.wb{width:581.010000px;}
.w13{width:584.250000px;}
.w2{width:586.050000px;}
.wa{width:597.930000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:1.080000px;}
.x5e{left:2.700000px;}
.x37{left:5.940000px;}
.x33{left:7.560000px;}
.x6a{left:8.820000px;}
.x39{left:12.060000px;}
.x56{left:14.760000px;}
.x35{left:16.200000px;}
.x3f{left:17.460000px;}
.x5a{left:18.540000px;}
.x40{left:23.580000px;}
.x62{left:25.020000px;}
.x41{left:26.280000px;}
.x44{left:28.440000px;}
.x63{left:29.556000px;}
.x4f{left:30.960000px;}
.x53{left:32.040000px;}
.x65{left:33.516000px;}
.x69{left:35.460000px;}
.x3e{left:36.720000px;}
.x22{left:38.160000px;}
.x58{left:40.320000px;}
.x6e{left:42.696000px;}
.x47{left:44.640000px;}
.x64{left:47.025000px;}
.x3c{left:48.285000px;}
.x15{left:49.680000px;}
.x1f{left:50.760000px;}
.x12{left:52.920000px;}
.x5{left:54.000000px;}
.x5c{left:55.656000px;}
.x1d{left:57.060000px;}
.x59{left:58.176000px;}
.x32{left:60.840000px;}
.x5b{left:62.100000px;}
.x66{left:64.800000px;}
.x2a{left:67.356000px;}
.x3d{left:68.400000px;}
.x4e{left:70.956000px;}
.x67{left:77.976000px;}
.x27{left:79.920000px;}
.x10{left:81.000000px;}
.x2f{left:84.600000px;}
.x51{left:88.956000px;}
.x17{left:91.980000px;}
.xe{left:96.336000px;}
.x21{left:101.520000px;}
.x49{left:103.710000px;}
.x24{left:105.120000px;}
.xf{left:108.036000px;}
.x1b{left:113.610000px;}
.x50{left:116.280000px;}
.x28{left:118.470000px;}
.x4d{left:126.900000px;}
.x19{left:144.210000px;}
.x18{left:154.290000px;}
.x16{left:157.530000px;}
.x29{left:169.050000px;}
.x1a{left:172.830000px;}
.x13{left:184.530000px;}
.x30{left:187.590000px;}
.x46{left:192.810000px;}
.x20{left:201.270000px;}
.x23{left:203.790000px;}
.x48{left:209.190000px;}
.x2c{left:212.655000px;}
.xb{left:224.490000px;}
.x2e{left:226.155000px;}
.x5d{left:231.690000px;}
.x6{left:237.990000px;}
.x2b{left:242.490000px;}
.x3{left:254.550000px;}
.xc{left:255.990000px;}
.x42{left:259.995000px;}
.x9{left:263.190000px;}
.x25{left:266.430000px;}
.x7{left:271.875000px;}
.x68{left:284.115000px;}
.x4a{left:290.415000px;}
.x6f{left:292.035000px;}
.x2{left:300.675000px;}
.x1{left:324.255000px;}
.x31{left:332.895000px;}
.x52{left:334.875000px;}
.x5f{left:366.555000px;}
.x34{left:394.095000px;}
.x4b{left:396.435000px;}
.xd{left:452.805000px;}
.x8{left:457.305000px;}
.x36{left:464.325000px;}
.xa{left:474.765000px;}
.x1c{left:481.065000px;}
.x4c{left:494.565000px;}
.x60{left:501.765000px;}
.x26{left:515.985000px;}
.x54{left:530.925000px;}
.x6b{left:543.345000px;}
.x55{left:577.905000px;}
.x61{left:603.105000px;}
.x38{left:635.010000px;}
.x2d{left:636.270000px;}
.x43{left:639.330000px;}
.x14{left:641.310000px;}
.x57{left:645.090000px;}
.x6c{left:667.410000px;}
.x11{left:691.890000px;}
.x3a{left:697.110000px;}
.x1e{left:701.070000px;}
.x70{left:704.130000px;}
.x45{left:724.650000px;}
.x6d{left:747.150000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.456533pt;}
.ls2{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.960000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.ls7{letter-spacing:48.160000pt;}
.ls4{letter-spacing:57.040640pt;}
.ls10{letter-spacing:703.658667pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.240000pt;}
.wsb{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.688000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-1.821227pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.511573pt;}
._4{width:3.493760pt;}
._3{width:4.513493pt;}
._5{width:6.268160pt;}
._11{width:7.172267pt;}
._8{width:8.064213pt;}
._7{width:9.135360pt;}
._6{width:10.199040pt;}
._c{width:11.261440pt;}
._b{width:12.164480pt;}
._9{width:14.873600pt;}
._a{width:15.829760pt;}
._14{width:16.785920pt;}
._d{width:17.688960pt;}
._e{width:18.698240pt;}
._13{width:20.026240pt;}
._12{width:20.924373pt;}
._1b{width:21.890347pt;}
._15{width:22.788480pt;}
._19{width:23.691520pt;}
._10{width:29.694080pt;}
._f{width:30.756480pt;}
._1c{width:76.059947pt;}
._16{width:290.155307pt;}
._18{width:306.457387pt;}
._1a{width:493.638187pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y144{bottom:-4.480000pt;}
.y174{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y13e{bottom:2.880000pt;}
.ybc{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.ybe{bottom:3.360000pt;}
.y171{bottom:10.560000pt;}
.y164{bottom:10.720000pt;}
.y169{bottom:10.880000pt;}
.y16e{bottom:11.034667pt;}
.y172{bottom:18.240000pt;}
.y165{bottom:18.400000pt;}
.y168{bottom:18.560000pt;}
.y16d{bottom:18.714667pt;}
.y4{bottom:18.880000pt;}
.y190{bottom:51.520000pt;}
.ya2{bottom:54.720000pt;}
.yb7{bottom:59.840000pt;}
.yd4{bottom:63.360000pt;}
.y14b{bottom:65.440000pt;}
.y111{bottom:66.080000pt;}
.y81{bottom:66.240000pt;}
.y44{bottom:68.800000pt;}
.ya1{bottom:70.080000pt;}
.yb6{bottom:75.200000pt;}
.yd3{bottom:78.720000pt;}
.y14a{bottom:80.800000pt;}
.y110{bottom:81.440000pt;}
.y80{bottom:81.600000pt;}
.y43{bottom:84.160000pt;}
.ya0{bottom:85.440000pt;}
.yb5{bottom:90.592000pt;}
.yd2{bottom:94.112000pt;}
.y149{bottom:96.032000pt;}
.y10f{bottom:96.832000pt;}
.y7f{bottom:96.992000pt;}
.y42{bottom:99.392000pt;}
.y195{bottom:100.512000pt;}
.y9f{bottom:100.832000pt;}
.yb4{bottom:105.952000pt;}
.yd1{bottom:109.472000pt;}
.y148{bottom:111.392000pt;}
.y10e{bottom:112.032000pt;}
.y7e{bottom:112.352000pt;}
.y41{bottom:114.752000pt;}
.y9e{bottom:116.192000pt;}
.yb3{bottom:121.312000pt;}
.yd0{bottom:124.832000pt;}
.y147{bottom:126.752000pt;}
.y16c{bottom:127.072000pt;}
.y10d{bottom:127.392000pt;}
.y7d{bottom:127.552000pt;}
.y40{bottom:130.112000pt;}
.y9d{bottom:131.392000pt;}
.yb2{bottom:136.666667pt;}
.ycf{bottom:139.706667pt;}
.y146{bottom:142.106667pt;}
.y10c{bottom:142.746667pt;}
.y7c{bottom:142.906667pt;}
.y3f{bottom:145.466667pt;}
.y9c{bottom:146.746667pt;}
.yb1{bottom:151.866667pt;}
.yce{bottom:155.386667pt;}
.y145{bottom:157.466667pt;}
.y10b{bottom:157.786667pt;}
.y7b{bottom:157.946667pt;}
.y3e{bottom:160.826667pt;}
.y16b{bottom:161.786667pt;}
.y9b{bottom:162.106667pt;}
.yb0{bottom:167.226667pt;}
.ycd{bottom:170.746667pt;}
.y143{bottom:172.506667pt;}
.y10a{bottom:173.466667pt;}
.y7a{bottom:173.626667pt;}
.y3d{bottom:176.026667pt;}
.y9a{bottom:177.466667pt;}
.y16a{bottom:181.146667pt;}
.yaf{bottom:182.586667pt;}
.ycc{bottom:186.106667pt;}
.y109{bottom:188.826667pt;}
.y79{bottom:188.986667pt;}
.y3c{bottom:191.386667pt;}
.y142{bottom:191.706667pt;}
.y99{bottom:192.826667pt;}
.yae{bottom:197.946667pt;}
.y167{bottom:200.506667pt;}
.ycb{bottom:201.466667pt;}
.y108{bottom:204.026667pt;}
.y78{bottom:204.346667pt;}
.y3b{bottom:206.746667pt;}
.y98{bottom:208.026667pt;}
.y141{bottom:211.066667pt;}
.yad{bottom:213.306667pt;}
.yca{bottom:216.826667pt;}
.y107{bottom:219.386667pt;}
.y77{bottom:219.546667pt;}
.y3a{bottom:222.106667pt;}
.y97{bottom:223.386667pt;}
.yac{bottom:228.666667pt;}
.y140{bottom:230.426667pt;}
.yc9{bottom:232.026667pt;}
.y106{bottom:234.746667pt;}
.y76{bottom:234.906667pt;}
.y166{bottom:235.066667pt;}
.y39{bottom:237.466667pt;}
.y96{bottom:238.746667pt;}
.yab{bottom:243.546667pt;}
.yc8{bottom:247.386667pt;}
.y13f{bottom:249.786667pt;}
.y105{bottom:250.106667pt;}
.y75{bottom:250.266667pt;}
.y38{bottom:252.506667pt;}
.y95{bottom:254.106667pt;}
.y163{bottom:254.426667pt;}
.yaa{bottom:256.026667pt;}
.yc7{bottom:262.746667pt;}
.y74{bottom:265.306667pt;}
.y104{bottom:265.466667pt;}
.y37{bottom:268.026667pt;}
.ya7{bottom:269.146667pt;}
.y94{bottom:269.466667pt;}
.yc6{bottom:278.106667pt;}
.y103{bottom:280.826667pt;}
.y73{bottom:280.986667pt;}
.y36{bottom:283.386667pt;}
.y93{bottom:284.506667pt;}
.ya6{bottom:284.826667pt;}
.y13d{bottom:290.746667pt;}
.yc5{bottom:293.466667pt;}
.y102{bottom:296.026667pt;}
.y72{bottom:296.186667pt;}
.y35{bottom:298.746667pt;}
.y92{bottom:300.026667pt;}
.y13c{bottom:306.106667pt;}
.y162{bottom:306.746667pt;}
.yc4{bottom:308.826667pt;}
.y101{bottom:311.386667pt;}
.y71{bottom:311.546667pt;}
.y34{bottom:314.106667pt;}
.y91{bottom:315.386667pt;}
.y13b{bottom:321.506667pt;}
.y161{bottom:322.146667pt;}
.yc3{bottom:324.066667pt;}
.y100{bottom:326.466667pt;}
.y70{bottom:326.946667pt;}
.y33{bottom:329.506667pt;}
.y194{bottom:330.466667pt;}
.y90{bottom:330.786667pt;}
.y13a{bottom:336.866667pt;}
.y160{bottom:337.506667pt;}
.yc2{bottom:339.426667pt;}
.y6f{bottom:342.306667pt;}
.y32{bottom:344.866667pt;}
.yff{bottom:345.826667pt;}
.y8f{bottom:346.146667pt;}
.y139{bottom:352.066667pt;}
.y15f{bottom:352.546667pt;}
.yc1{bottom:354.466667pt;}
.y6e{bottom:357.666667pt;}
.y31{bottom:360.066667pt;}
.y8e{bottom:361.506667pt;}
.yfe{bottom:365.186667pt;}
.y138{bottom:367.106667pt;}
.y15e{bottom:368.066667pt;}
.y6d{bottom:373.026667pt;}
.yc0{bottom:373.826667pt;}
.y30{bottom:375.426667pt;}
.y8d{bottom:376.546667pt;}
.ya5{bottom:376.866667pt;}
.y18f{bottom:381.506667pt;}
.y137{bottom:382.786667pt;}
.y15d{bottom:383.426667pt;}
.yfd{bottom:384.386667pt;}
.y6c{bottom:388.226667pt;}
.y2f{bottom:390.786667pt;}
.y8c{bottom:392.066667pt;}
.ybf{bottom:393.186667pt;}
.y18e{bottom:396.866667pt;}
.y136{bottom:398.146667pt;}
.y15c{bottom:398.786667pt;}
.y6b{bottom:403.586667pt;}
.yfc{bottom:403.746667pt;}
.y2e{bottom:406.146667pt;}
.y193{bottom:407.106667pt;}
.y8b{bottom:407.426667pt;}
.y18d{bottom:412.066667pt;}
.ybd{bottom:412.386667pt;}
.y135{bottom:413.506667pt;}
.y15b{bottom:414.146667pt;}
.y6a{bottom:418.946667pt;}
.y2d{bottom:421.506667pt;}
.y8a{bottom:422.786667pt;}
.yfb{bottom:423.106667pt;}
.y18c{bottom:427.426667pt;}
.y134{bottom:428.706667pt;}
.y15a{bottom:429.506667pt;}
.ybb{bottom:431.746667pt;}
.y69{bottom:434.306667pt;}
.y2c{bottom:436.866667pt;}
.y89{bottom:438.146667pt;}
.y18b{bottom:442.786667pt;}
.y133{bottom:444.066667pt;}
.y159{bottom:444.386667pt;}
.yfa{bottom:444.706667pt;}
.y68{bottom:449.346667pt;}
.y2b{bottom:451.746667pt;}
.y88{bottom:453.506667pt;}
.y18a{bottom:458.146667pt;}
.y132{bottom:459.426667pt;}
.yf9{bottom:460.066667pt;}
.y67{bottom:465.026667pt;}
.y2a{bottom:467.426667pt;}
.y197{bottom:468.386667pt;}
.y87{bottom:468.706667pt;}
.y189{bottom:473.506667pt;}
.y131{bottom:474.786667pt;}
.yf8{bottom:475.426667pt;}
.y66{bottom:480.226667pt;}
.y29{bottom:482.786667pt;}
.y86{bottom:484.066667pt;}
.y188{bottom:488.706667pt;}
.y130{bottom:490.146667pt;}
.yf7{bottom:490.786667pt;}
.y65{bottom:496.546667pt;}
.y28{bottom:498.146667pt;}
.ya4{bottom:499.106667pt;}
.y85{bottom:499.426667pt;}
.y187{bottom:504.066667pt;}
.y12f{bottom:505.186667pt;}
.yf6{bottom:506.146667pt;}
.y64{bottom:512.866667pt;}
.y27{bottom:513.506667pt;}
.y84{bottom:514.786667pt;}
.y186{bottom:519.426667pt;}
.yf5{bottom:521.186667pt;}
.y158{bottom:521.506667pt;}
.y12e{bottom:524.386667pt;}
.y26{bottom:528.386667pt;}
.y63{bottom:529.186667pt;}
.y83{bottom:530.146667pt;}
.y185{bottom:534.786667pt;}
.yf4{bottom:536.706667pt;}
.y12d{bottom:543.746667pt;}
.y25{bottom:544.066667pt;}
.y62{bottom:545.506667pt;}
.y184{bottom:550.173333pt;}
.yf3{bottom:552.093333pt;}
.y24{bottom:559.453333pt;}
.yba{bottom:560.413333pt;}
.y61{bottom:560.733333pt;}
.y12c{bottom:563.133333pt;}
.y183{bottom:565.533333pt;}
.yf2{bottom:567.453333pt;}
.y23{bottom:574.813333pt;}
.y60{bottom:576.093333pt;}
.y182{bottom:580.733333pt;}
.y12b{bottom:582.493333pt;}
.yf1{bottom:582.813333pt;}
.y22{bottom:590.173333pt;}
.y5f{bottom:591.453333pt;}
.y181{bottom:596.093333pt;}
.y157{bottom:597.853333pt;}
.yf0{bottom:598.173333pt;}
.y12a{bottom:604.093333pt;}
.y21{bottom:605.533333pt;}
.y5e{bottom:606.813333pt;}
.y180{bottom:611.453333pt;}
.yef{bottom:613.533333pt;}
.y156{bottom:617.053333pt;}
.y129{bottom:619.453333pt;}
.y20{bottom:620.733333pt;}
.ya9{bottom:621.853333pt;}
.y5d{bottom:622.173333pt;}
.y17f{bottom:626.813333pt;}
.yee{bottom:628.733333pt;}
.y128{bottom:634.813333pt;}
.y1f{bottom:636.093333pt;}
.y196{bottom:637.213333pt;}
.y5c{bottom:637.533333pt;}
.y17e{bottom:642.173333pt;}
.yed{bottom:644.093333pt;}
.y127{bottom:650.173333pt;}
.y1e{bottom:651.453333pt;}
.y5b{bottom:652.733333pt;}
.y155{bottom:654.173333pt;}
.y17d{bottom:657.533333pt;}
.yec{bottom:659.453333pt;}
.y126{bottom:665.533333pt;}
.y1d{bottom:666.813333pt;}
.y5a{bottom:668.093333pt;}
.y154{bottom:669.533333pt;}
.y17c{bottom:672.733333pt;}
.yeb{bottom:674.813333pt;}
.y125{bottom:680.413333pt;}
.y1c{bottom:682.173333pt;}
.yb9{bottom:683.133333pt;}
.y59{bottom:683.453333pt;}
.y153{bottom:684.733333pt;}
.y17b{bottom:688.093333pt;}
.yea{bottom:689.853333pt;}
.y124{bottom:696.093333pt;}
.y1b{bottom:697.533333pt;}
.y58{bottom:698.813333pt;}
.y152{bottom:699.773333pt;}
.y17a{bottom:703.453333pt;}
.ye9{bottom:709.053333pt;}
.y123{bottom:711.453333pt;}
.y1a{bottom:712.733333pt;}
.y57{bottom:714.173333pt;}
.y151{bottom:715.453333pt;}
.y179{bottom:718.813333pt;}
.y122{bottom:726.813333pt;}
.y19{bottom:728.093333pt;}
.y56{bottom:729.533333pt;}
.ye8{bottom:730.813333pt;}
.y178{bottom:734.173333pt;}
.y121{bottom:742.173333pt;}
.y18{bottom:743.453333pt;}
.y55{bottom:744.733333pt;}
.ye7{bottom:746.173333pt;}
.y177{bottom:749.053333pt;}
.y120{bottom:757.053333pt;}
.y17{bottom:758.813333pt;}
.y54{bottom:759.773333pt;}
.y82{bottom:760.093333pt;}
.ye6{bottom:761.373333pt;}
.y176{bottom:768.413333pt;}
.y11f{bottom:772.733333pt;}
.y16{bottom:773.853333pt;}
.yb8{bottom:775.133333pt;}
.y53{bottom:775.453333pt;}
.ye5{bottom:776.733333pt;}
.y175{bottom:787.813333pt;}
.y11e{bottom:788.133333pt;}
.y15{bottom:789.893333pt;}
.y52{bottom:790.853333pt;}
.ye4{bottom:792.133333pt;}
.y11d{bottom:803.493333pt;}
.y14{bottom:805.413333pt;}
.y51{bottom:806.213333pt;}
.ye3{bottom:807.173333pt;}
.y150{bottom:807.493333pt;}
.y11c{bottom:818.853333pt;}
.y13{bottom:820.773333pt;}
.y192{bottom:821.093333pt;}
.y50{bottom:821.413333pt;}
.ye2{bottom:822.853333pt;}
.y173{bottom:826.533333pt;}
.y11b{bottom:834.213333pt;}
.y12{bottom:836.133333pt;}
.ya8{bottom:836.453333pt;}
.y4f{bottom:836.773333pt;}
.ye1{bottom:838.213333pt;}
.y170{bottom:845.893333pt;}
.y11a{bottom:849.413333pt;}
.y11{bottom:851.493333pt;}
.y4e{bottom:852.133333pt;}
.y14f{bottom:853.093333pt;}
.ye0{bottom:853.413333pt;}
.y119{bottom:864.773333pt;}
.y10{bottom:866.853333pt;}
.y4d{bottom:867.493333pt;}
.ydf{bottom:868.773333pt;}
.y14e{bottom:872.453333pt;}
.y118{bottom:880.133333pt;}
.yf{bottom:882.213333pt;}
.ya3{bottom:882.533333pt;}
.y4c{bottom:882.853333pt;}
.yde{bottom:884.133333pt;}
.y14d{bottom:891.813333pt;}
.y117{bottom:895.493333pt;}
.y4b{bottom:897.893333pt;}
.ye{bottom:898.213333pt;}
.ydd{bottom:899.493333pt;}
.y116{bottom:910.853333pt;}
.yd{bottom:913.413333pt;}
.ydc{bottom:914.853333pt;}
.y115{bottom:926.213333pt;}
.yc{bottom:928.773333pt;}
.ydb{bottom:930.213333pt;}
.y114{bottom:941.413333pt;}
.y16f{bottom:943.813333pt;}
.yb{bottom:944.133333pt;}
.yda{bottom:945.413333pt;}
.y113{bottom:956.773333pt;}
.y4a{bottom:959.493333pt;}
.ya{bottom:959.813333pt;}
.yd9{bottom:960.773333pt;}
.y112{bottom:971.813333pt;}
.y49{bottom:974.853333pt;}
.yd8{bottom:976.133333pt;}
.y9{bottom:978.213333pt;}
.y14c{bottom:989.893333pt;}
.y48{bottom:990.213333pt;}
.yd7{bottom:991.173333pt;}
.y8{bottom:996.613333pt;}
.y47{bottom:1005.413333pt;}
.yd6{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1020.800000pt;}
.yd5{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y191{bottom:1035.840000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.hc{height:30.560000pt;}
.hb{height:30.720000pt;}
.h6{height:37.090625pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:39.840000pt;}
.w11{width:53.280000pt;}
.w1d{width:57.792000pt;}
.wf{width:60.512000pt;}
.w29{width:68.800000pt;}
.w2a{width:72.192000pt;}
.w14{width:73.760000pt;}
.w27{width:74.880000pt;}
.w23{width:81.952000pt;}
.w18{width:85.152000pt;}
.w22{width:88.000000pt;}
.w17{width:92.160000pt;}
.w15{width:102.752000pt;}
.w28{width:108.352000pt;}
.we{width:113.792000pt;}
.w20{width:117.952000pt;}
.w21{width:118.272000pt;}
.w24{width:118.752000pt;}
.w12{width:120.192000pt;}
.w6{width:123.872000pt;}
.w1f{width:148.666667pt;}
.w10{width:149.760000pt;}
.w26{width:151.706667pt;}
.w9{width:166.426667pt;}
.w1e{width:166.746667pt;}
.w1b{width:172.186667pt;}
.w3{width:176.826667pt;}
.wd{width:178.266667pt;}
.wc{width:181.466667pt;}
.w25{width:192.866667pt;}
.w5{width:193.626667pt;}
.w16{width:209.026667pt;}
.w1a{width:241.986667pt;}
.w8{width:288.226667pt;}
.w19{width:307.426667pt;}
.w4{width:378.653333pt;}
.w7{width:409.693333pt;}
.wb{width:516.453333pt;}
.w13{width:519.333333pt;}
.w2{width:520.933333pt;}
.wa{width:531.493333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:0.960000pt;}
.x5e{left:2.400000pt;}
.x37{left:5.280000pt;}
.x33{left:6.720000pt;}
.x6a{left:7.840000pt;}
.x39{left:10.720000pt;}
.x56{left:13.120000pt;}
.x35{left:14.400000pt;}
.x3f{left:15.520000pt;}
.x5a{left:16.480000pt;}
.x40{left:20.960000pt;}
.x62{left:22.240000pt;}
.x41{left:23.360000pt;}
.x44{left:25.280000pt;}
.x63{left:26.272000pt;}
.x4f{left:27.520000pt;}
.x53{left:28.480000pt;}
.x65{left:29.792000pt;}
.x69{left:31.520000pt;}
.x3e{left:32.640000pt;}
.x22{left:33.920000pt;}
.x58{left:35.840000pt;}
.x6e{left:37.952000pt;}
.x47{left:39.680000pt;}
.x64{left:41.800000pt;}
.x3c{left:42.920000pt;}
.x15{left:44.160000pt;}
.x1f{left:45.120000pt;}
.x12{left:47.040000pt;}
.x5{left:48.000000pt;}
.x5c{left:49.472000pt;}
.x1d{left:50.720000pt;}
.x59{left:51.712000pt;}
.x32{left:54.080000pt;}
.x5b{left:55.200000pt;}
.x66{left:57.600000pt;}
.x2a{left:59.872000pt;}
.x3d{left:60.800000pt;}
.x4e{left:63.072000pt;}
.x67{left:69.312000pt;}
.x27{left:71.040000pt;}
.x10{left:72.000000pt;}
.x2f{left:75.200000pt;}
.x51{left:79.072000pt;}
.x17{left:81.760000pt;}
.xe{left:85.632000pt;}
.x21{left:90.240000pt;}
.x49{left:92.186667pt;}
.x24{left:93.440000pt;}
.xf{left:96.032000pt;}
.x1b{left:100.986667pt;}
.x50{left:103.360000pt;}
.x28{left:105.306667pt;}
.x4d{left:112.800000pt;}
.x19{left:128.186667pt;}
.x18{left:137.146667pt;}
.x16{left:140.026667pt;}
.x29{left:150.266667pt;}
.x1a{left:153.626667pt;}
.x13{left:164.026667pt;}
.x30{left:166.746667pt;}
.x46{left:171.386667pt;}
.x20{left:178.906667pt;}
.x23{left:181.146667pt;}
.x48{left:185.946667pt;}
.x2c{left:189.026667pt;}
.xb{left:199.546667pt;}
.x2e{left:201.026667pt;}
.x5d{left:205.946667pt;}
.x6{left:211.546667pt;}
.x2b{left:215.546667pt;}
.x3{left:226.266667pt;}
.xc{left:227.546667pt;}
.x42{left:231.106667pt;}
.x9{left:233.946667pt;}
.x25{left:236.826667pt;}
.x7{left:241.666667pt;}
.x68{left:252.546667pt;}
.x4a{left:258.146667pt;}
.x6f{left:259.586667pt;}
.x2{left:267.266667pt;}
.x1{left:288.226667pt;}
.x31{left:295.906667pt;}
.x52{left:297.666667pt;}
.x5f{left:325.826667pt;}
.x34{left:350.306667pt;}
.x4b{left:352.386667pt;}
.xd{left:402.493333pt;}
.x8{left:406.493333pt;}
.x36{left:412.733333pt;}
.xa{left:422.013333pt;}
.x1c{left:427.613333pt;}
.x4c{left:439.613333pt;}
.x60{left:446.013333pt;}
.x26{left:458.653333pt;}
.x54{left:471.933333pt;}
.x6b{left:482.973333pt;}
.x55{left:513.693333pt;}
.x61{left:536.093333pt;}
.x38{left:564.453333pt;}
.x2d{left:565.573333pt;}
.x43{left:568.293333pt;}
.x14{left:570.053333pt;}
.x57{left:573.413333pt;}
.x6c{left:593.253333pt;}
.x11{left:615.013333pt;}
.x3a{left:619.653333pt;}
.x1e{left:623.173333pt;}
.x70{left:625.893333pt;}
.x45{left:644.133333pt;}
.x6d{left:664.133333pt;}
.x4{left:721.893333pt;}
}




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