
    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_8945a5f6d6347a9b9cca8646.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f76dc765acc2f6f0827383f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_b8d347f6e229aab3860ad70c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_4d5f41f14dd3b9293db3ce9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e85e12610f16b447dcc38b60.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_697b1b3c4df452bfd678ff1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7bf1883106aaabc679857fcb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_b0f68883f401beade157b7e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.ls9{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls11{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.ls1b{letter-spacing:6.660000px;}
.ls1c{letter-spacing:7.200000px;}
.ls18{letter-spacing:7.920000px;}
.lsd{letter-spacing:8.640000px;}
.ls16{letter-spacing:9.360000px;}
.lsf{letter-spacing:10.080000px;}
.lse{letter-spacing:10.800000px;}
.ls5{letter-spacing:12.240000px;}
.ls10{letter-spacing:14.400000px;}
.ls19{letter-spacing:15.120000px;}
.ls6{letter-spacing:16.560000px;}
.ls1a{letter-spacing:17.460000px;}
.ls17{letter-spacing:29.520000px;}
.ls13{letter-spacing:30.240000px;}
.ls12{letter-spacing:33.960000px;}
.lsb{letter-spacing:54.840000px;}
.lsa{letter-spacing:54.864000px;}
.lsc{letter-spacing:64.002720px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.505760px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-5.040000px;}
._d{margin-left:-3.744000px;}
._e{margin-left:-2.592000px;}
._2{margin-left:-1.092000px;}
._0{width:1.055520px;}
._6{width:2.196960px;}
._4{width:4.104000px;}
._3{width:5.112000px;}
._9{width:6.144480px;}
._1f{width:7.416000px;}
._14{width:8.424000px;}
._15{width:9.864000px;}
._20{width:11.376000px;}
._1b{width:12.672000px;}
._1c{width:13.692000px;}
._16{width:14.700000px;}
._10{width:15.912000px;}
._22{width:16.992000px;}
._5{width:19.512000px;}
._29{width:20.532000px;}
._13{width:21.600000px;}
._f{width:22.752000px;}
._a{width:24.408000px;}
._27{width:25.416000px;}
._1e{width:26.496000px;}
._1a{width:28.236000px;}
._19{width:29.448000px;}
._1d{width:30.972000px;}
._17{width:32.040000px;}
._18{width:33.264000px;}
._25{width:34.416000px;}
._11{width:36.432000px;}
._12{width:37.464480px;}
._8{width:38.604000px;}
._7{width:39.672000px;}
._21{width:40.764480px;}
._23{width:41.832000px;}
._24{width:43.056000px;}
._28{width:44.148000px;}
._26{width:45.288000px;}
._b{width:63.936000px;}
._1{width:82.776000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yec{bottom:12.060000px;}
.yc5{bottom:12.240000px;}
.yd1{bottom:12.270000px;}
.yf3{bottom:12.285000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.yc3{bottom:20.880000px;}
.ycb{bottom:20.910000px;}
.ye4{bottom:20.925000px;}
.yea{bottom:29.340000px;}
.yf4{bottom:29.385000px;}
.yc4{bottom:29.520000px;}
.yd0{bottom:29.550000px;}
.ye0{bottom:29.565000px;}
.yf9{bottom:34.020000px;}
.yf0{bottom:38.025000px;}
.yd8{bottom:38.160000px;}
.yca{bottom:38.190000px;}
.ye3{bottom:38.205000px;}
.yfd{bottom:38.520000px;}
.y2{bottom:40.140000px;}
.yff{bottom:42.660000px;}
.yeb{bottom:46.620000px;}
.yf2{bottom:46.665000px;}
.yd6{bottom:46.800000px;}
.ycf{bottom:46.830000px;}
.ydf{bottom:46.845000px;}
.y5{bottom:49.140000px;}
.yf7{bottom:51.300000px;}
.y105{bottom:52.200000px;}
.yd3{bottom:55.440000px;}
.yc7{bottom:55.470000px;}
.ydb{bottom:55.485000px;}
.yfc{bottom:55.800000px;}
.yfe{bottom:59.940000px;}
.y104{bottom:63.900000px;}
.yf1{bottom:63.945000px;}
.yd5{bottom:64.080000px;}
.yce{bottom:64.110000px;}
.yde{bottom:64.125000px;}
.yf8{bottom:68.580000px;}
.ye7{bottom:72.540000px;}
.yd7{bottom:72.720000px;}
.yc9{bottom:72.750000px;}
.ye2{bottom:72.765000px;}
.yfb{bottom:73.080000px;}
.ye8{bottom:81.180000px;}
.y103{bottom:81.225000px;}
.yd4{bottom:81.360000px;}
.ycd{bottom:81.390000px;}
.ydd{bottom:81.405000px;}
.yc8{bottom:90.030000px;}
.ye1{bottom:90.045000px;}
.yfa{bottom:90.360000px;}
.ycc{bottom:98.490000px;}
.yd9{bottom:98.640000px;}
.ydc{bottom:98.685000px;}
.y3a{bottom:117.360000px;}
.y134{bottom:122.940000px;}
.y69{bottom:124.560000px;}
.y177{bottom:129.060000px;}
.y9a{bottom:129.960000px;}
.y10e{bottom:134.100000px;}
.y39{bottom:138.060000px;}
.ye9{bottom:143.100000px;}
.y133{bottom:143.640000px;}
.y68{bottom:145.260000px;}
.ybf{bottom:150.660000px;}
.y18f{bottom:152.460000px;}
.y10d{bottom:154.800000px;}
.y155{bottom:158.760000px;}
.y99{bottom:159.660000px;}
.y132{bottom:164.340000px;}
.y67{bottom:165.960000px;}
.y38{bottom:167.760000px;}
.ybe{bottom:171.360000px;}
.y18e{bottom:173.160000px;}
.y10c{bottom:184.500000px;}
.y66{bottom:186.660000px;}
.y154{bottom:188.460000px;}
.y98{bottom:189.360000px;}
.ybd{bottom:192.060000px;}
.y131{bottom:195.300000px;}
.y37{bottom:197.490000px;}
.y18d{bottom:202.890000px;}
.y65{bottom:207.390000px;}
.y176{bottom:209.190000px;}
.y97{bottom:210.090000px;}
.ybc{bottom:212.790000px;}
.y10b{bottom:214.230000px;}
.y130{bottom:216.030000px;}
.ye6{bottom:217.290000px;}
.y153{bottom:218.190000px;}
.y18c{bottom:223.590000px;}
.y36{bottom:227.190000px;}
.y64{bottom:228.090000px;}
.y175{bottom:229.890000px;}
.y96{bottom:230.790000px;}
.y10a{bottom:234.930000px;}
.y152{bottom:238.890000px;}
.ybb{bottom:242.490000px;}
.y12f{bottom:246.990000px;}
.y35{bottom:247.890000px;}
.y63{bottom:248.790000px;}
.y95{bottom:251.490000px;}
.y18b{bottom:253.290000px;}
.y109{bottom:255.630000px;}
.y151{bottom:259.590000px;}
.y174{bottom:260.850000px;}
.yba{bottom:263.190000px;}
.y12e{bottom:267.690000px;}
.y94{bottom:272.190000px;}
.y18a{bottom:273.990000px;}
.y108{bottom:276.330000px;}
.y34{bottom:277.590000px;}
.y62{bottom:278.490000px;}
.y173{bottom:281.550000px;}
.yb9{bottom:283.890000px;}
.y150{bottom:289.290000px;}
.y93{bottom:292.890000px;}
.y33{bottom:298.290000px;}
.y12d{bottom:298.650000px;}
.y61{bottom:299.190000px;}
.y172{bottom:302.250000px;}
.y189{bottom:303.690000px;}
.yb8{bottom:304.590000px;}
.y107{bottom:306.030000px;}
.y14f{bottom:309.990000px;}
.y92{bottom:313.590000px;}
.y32{bottom:318.990000px;}
.y60{bottom:319.890000px;}
.y171{bottom:322.950000px;}
.yb7{bottom:325.290000px;}
.ye5{bottom:326.010000px;}
.y12c{bottom:328.170000px;}
.y14e{bottom:330.690000px;}
.y188{bottom:333.390000px;}
.y91{bottom:334.290000px;}
.y106{bottom:335.730000px;}
.y31{bottom:339.690000px;}
.y5f{bottom:340.590000px;}
.y170{bottom:343.650000px;}
.yb6{bottom:345.990000px;}
.y187{bottom:354.090000px;}
.y12b{bottom:359.310000px;}
.y30{bottom:360.390000px;}
.y5e{bottom:361.290000px;}
.y90{bottom:363.990000px;}
.y102{bottom:364.890000px;}
.y16f{bottom:374.610000px;}
.yb5{bottom:375.690000px;}
.y12a{bottom:380.190000px;}
.y2f{bottom:381.090000px;}
.y5d{bottom:381.990000px;}
.y186{bottom:383.790000px;}
.y8f{bottom:393.690000px;}
.y16e{bottom:395.310000px;}
.y2e{bottom:401.790000px;}
.y5c{bottom:402.690000px;}
.y185{bottom:404.490000px;}
.yb4{bottom:405.390000px;}
.y129{bottom:411.150000px;}
.y8e{bottom:414.390000px;}
.y16d{bottom:416.010000px;}
.yda{bottom:417.450000px;}
.y2d{bottom:422.490000px;}
.y5b{bottom:423.390000px;}
.yb3{bottom:426.090000px;}
.y14d{bottom:431.490000px;}
.y128{bottom:431.850000px;}
.y184{bottom:434.190000px;}
.y8d{bottom:435.090000px;}
.y16c{bottom:436.755000px;}
.y2c{bottom:443.235000px;}
.yb2{bottom:446.835000px;}
.y14c{bottom:452.235000px;}
.y5a{bottom:453.135000px;}
.y183{bottom:454.935000px;}
.y8c{bottom:455.835000px;}
.y16b{bottom:457.455000px;}
.y127{bottom:462.675000px;}
.yb1{bottom:467.535000px;}
.y2b{bottom:472.935000px;}
.y101{bottom:473.655000px;}
.y59{bottom:473.835000px;}
.y8b{bottom:476.535000px;}
.y16a{bottom:478.155000px;}
.y81{bottom:482.835000px;}
.y182{bottom:484.635000px;}
.yb0{bottom:488.235000px;}
.y2a{bottom:493.635000px;}
.y126{bottom:493.815000px;}
.y58{bottom:494.535000px;}
.y8a{bottom:497.235000px;}
.y14b{bottom:502.635000px;}
.y80{bottom:503.535000px;}
.y181{bottom:505.335000px;}
.y19a{bottom:508.035000px;}
.yaf{bottom:508.935000px;}
.y169{bottom:509.115000px;}
.y29{bottom:514.335000px;}
.y57{bottom:515.235000px;}
.y89{bottom:517.935000px;}
.y14a{bottom:523.335000px;}
.y125{bottom:523.515000px;}
.y7f{bottom:524.235000px;}
.yae{bottom:529.635000px;}
.y168{bottom:529.815000px;}
.y28{bottom:535.035000px;}
.y56{bottom:535.935000px;}
.y199{bottom:537.735000px;}
.yd2{bottom:543.495000px;}
.y149{bottom:544.035000px;}
.y124{bottom:544.215000px;}
.y7e{bottom:544.935000px;}
.y88{bottom:547.635000px;}
.y167{bottom:550.515000px;}
.y27{bottom:555.735000px;}
.y55{bottom:556.635000px;}
.yad{bottom:559.335000px;}
.y180{bottom:564.735000px;}
.y198{bottom:567.435000px;}
.y166{bottom:571.215000px;}
.y148{bottom:573.735000px;}
.y7d{bottom:574.635000px;}
.y123{bottom:575.175000px;}
.y26{bottom:576.435000px;}
.y54{bottom:577.335000px;}
.yac{bottom:580.035000px;}
.y100{bottom:582.375000px;}
.y147{bottom:594.435000px;}
.y7c{bottom:595.335000px;}
.y122{bottom:595.875000px;}
.y25{bottom:597.135000px;}
.y53{bottom:598.035000px;}
.yab{bottom:600.735000px;}
.y165{bottom:602.175000px;}
.y87{bottom:607.035000px;}
.y17f{bottom:615.135000px;}
.y7b{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.y24{bottom:617.835000px;}
.yaa{bottom:621.435000px;}
.y146{bottom:624.135000px;}
.y121{bottom:626.835000px;}
.y52{bottom:627.735000px;}
.y164{bottom:631.875000px;}
.y7a{bottom:636.735000px;}
.ya9{bottom:642.135000px;}
.y17e{bottom:644.835000px;}
.y23{bottom:647.535000px;}
.y145{bottom:653.835000px;}
.y51{bottom:657.435000px;}
.y163{bottom:661.575000px;}
.y17d{bottom:665.535000px;}
.y22{bottom:668.235000px;}
.yc6{bottom:669.495000px;}
.ya8{bottom:671.835000px;}
.y144{bottom:674.565000px;}
.y197{bottom:677.265000px;}
.y79{bottom:678.165000px;}
.y120{bottom:678.525000px;}
.y162{bottom:682.305000px;}
.y50{bottom:687.165000px;}
.y21{bottom:688.965000px;}
.yf6{bottom:691.125000px;}
.y17c{bottom:695.265000px;}
.y196{bottom:697.965000px;}
.y78{bottom:698.865000px;}
.y11f{bottom:699.225000px;}
.ya7{bottom:701.565000px;}
.y143{bottom:704.265000px;}
.y20{bottom:709.665000px;}
.y161{bottom:713.265000px;}
.y17b{bottom:715.965000px;}
.y4f{bottom:716.865000px;}
.y86{bottom:719.565000px;}
.ya6{bottom:722.265000px;}
.y142{bottom:724.965000px;}
.y195{bottom:727.665000px;}
.y77{bottom:728.565000px;}
.y11e{bottom:730.185000px;}
.y1f{bottom:730.365000px;}
.y160{bottom:733.965000px;}
.y4e{bottom:737.565000px;}
.y85{bottom:740.265000px;}
.ya5{bottom:742.965000px;}
.y17a{bottom:745.665000px;}
.y76{bottom:749.265000px;}
.y1e{bottom:751.065000px;}
.y141{bottom:754.665000px;}
.y15f{bottom:754.845000px;}
.y194{bottom:757.365000px;}
.y4d{bottom:758.265000px;}
.y11d{bottom:759.885000px;}
.y84{bottom:760.965000px;}
.ya4{bottom:763.665000px;}
.y179{bottom:766.365000px;}
.y75{bottom:769.965000px;}
.y1d{bottom:771.765000px;}
.y140{bottom:775.365000px;}
.y4c{bottom:778.965000px;}
.y83{bottom:781.665000px;}
.ya3{bottom:784.365000px;}
.y15e{bottom:785.805000px;}
.y193{bottom:787.065000px;}
.y11c{bottom:789.585000px;}
.y74{bottom:790.665000px;}
.yc2{bottom:795.525000px;}
.y13f{bottom:796.065000px;}
.y4b{bottom:799.665000px;}
.y1c{bottom:801.465000px;}
.ya2{bottom:805.065000px;}
.y15d{bottom:806.505000px;}
.y192{bottom:807.765000px;}
.yf5{bottom:808.845000px;}
.y73{bottom:811.365000px;}
.y13e{bottom:816.765000px;}
.y4a{bottom:820.365000px;}
.y11b{bottom:820.725000px;}
.y15c{bottom:827.205000px;}
.y1b{bottom:831.165000px;}
.y72{bottom:832.065000px;}
.ya1{bottom:834.765000px;}
.y191{bottom:837.465000px;}
.y49{bottom:841.065000px;}
.y11a{bottom:841.425000px;}
.y13d{bottom:846.465000px;}
.y71{bottom:852.765000px;}
.y15b{bottom:858.165000px;}
.y1a{bottom:860.865000px;}
.y48{bottom:861.765000px;}
.ya0{bottom:864.465000px;}
.y13c{bottom:867.165000px;}
.y119{bottom:872.385000px;}
.y70{bottom:873.465000px;}
.y178{bottom:876.165000px;}
.y15a{bottom:878.865000px;}
.y19{bottom:881.565000px;}
.y47{bottom:882.465000px;}
.y9f{bottom:885.165000px;}
.y190{bottom:887.865000px;}
.y118{bottom:893.085000px;}
.y6f{bottom:894.165000px;}
.y13b{bottom:896.865000px;}
.y159{bottom:899.565000px;}
.yef{bottom:900.465000px;}
.y46{bottom:903.165000px;}
.y9e{bottom:905.865000px;}
.y18{bottom:911.265000px;}
.y6e{bottom:914.910000px;}
.y13a{bottom:917.610000px;}
.y45{bottom:923.910000px;}
.y117{bottom:924.090000px;}
.y9d{bottom:926.610000px;}
.y158{bottom:929.310000px;}
.y82{bottom:935.610000px;}
.y139{bottom:938.310000px;}
.y17{bottom:941.010000px;}
.y44{bottom:944.610000px;}
.y116{bottom:944.790000px;}
.y9c{bottom:947.310000px;}
.yc1{bottom:956.310000px;}
.y157{bottom:959.010000px;}
.y43{bottom:965.310000px;}
.y115{bottom:965.490000px;}
.y138{bottom:968.010000px;}
.y16{bottom:970.710000px;}
.y9b{bottom:977.010000px;}
.y42{bottom:986.010000px;}
.y137{bottom:988.710000px;}
.y15{bottom:991.410000px;}
.yee{bottom:991.950000px;}
.y114{bottom:995.190000px;}
.yc0{bottom:997.710000px;}
.y41{bottom:1006.710000px;}
.y136{bottom:1009.410000px;}
.y156{bottom:1018.410000px;}
.y14{bottom:1021.110000px;}
.y113{bottom:1024.890000px;}
.y40{bottom:1027.410000px;}
.y135{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.y112{bottom:1045.590000px;}
.y6d{bottom:1048.110000px;}
.y3f{bottom:1057.110000px;}
.y6c{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y111{bottom:1076.370000px;}
.y3e{bottom:1077.810000px;}
.y6b{bottom:1089.510000px;}
.y3d{bottom:1098.510000px;}
.yed{bottom:1100.670000px;}
.y11{bottom:1101.210000px;}
.y110{bottom:1107.330000px;}
.y6a{bottom:1110.210000px;}
.y3c{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y10f{bottom:1138.470000px;}
.y3b{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h9{height:49.868086px;}
.hf{height:51.239531px;}
.he{height:52.560000px;}
.h15{height:52.596000px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h1a{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h14{height:69.696000px;}
.h3{height:73.722656px;}
.h12{height:86.940000px;}
.h16{height:86.976000px;}
.h17{height:87.120000px;}
.h13{height:104.220000px;}
.h19{height:104.256000px;}
.h18{height:113.220000px;}
.h11{height:121.500000px;}
.h10{height:121.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:32.400000px;}
.w3{width:75.240000px;}
.wc{width:82.656000px;}
.w8{width:84.990000px;}
.wb{width:108.720000px;}
.we{width:121.320000px;}
.wd{width:156.090000px;}
.wa{width:163.470000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x16{left:108.576000px;}
.x10{left:113.255987px;}
.xe{left:131.075987px;}
.x1d{left:133.235987px;}
.x14{left:139.355987px;}
.x17{left:143.136000px;}
.x1b{left:159.509987px;}
.x2{left:161.145000px;}
.x1c{left:186.509987px;}
.x1{left:212.430000px;}
.xf{left:254.909987px;}
.x11{left:275.789987px;}
.x15{left:286.274987px;}
.x18{left:308.955000px;}
.x13{left:383.654987px;}
.x8{left:420.375000px;}
.x12{left:446.474987px;}
.x19{left:504.825000px;}
.x9{left:656.205000px;}
.x1a{left:663.270000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:5.920000pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.040000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls16{letter-spacing:8.320000pt;}
.lsf{letter-spacing:8.960000pt;}
.lse{letter-spacing:9.600000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls10{letter-spacing:12.800000pt;}
.ls19{letter-spacing:13.440000pt;}
.ls6{letter-spacing:14.720000pt;}
.ls1a{letter-spacing:15.520000pt;}
.ls17{letter-spacing:26.240000pt;}
.ls13{letter-spacing:26.880000pt;}
.ls12{letter-spacing:30.186667pt;}
.lsb{letter-spacing:48.746667pt;}
.lsa{letter-spacing:48.768000pt;}
.lsc{letter-spacing:56.891307pt;}
.ws7{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-4.480000pt;}
._d{margin-left:-3.328000pt;}
._e{margin-left:-2.304000pt;}
._2{margin-left:-0.970667pt;}
._0{width:0.938240pt;}
._6{width:1.952853pt;}
._4{width:3.648000pt;}
._3{width:4.544000pt;}
._9{width:5.461760pt;}
._1f{width:6.592000pt;}
._14{width:7.488000pt;}
._15{width:8.768000pt;}
._20{width:10.112000pt;}
._1b{width:11.264000pt;}
._1c{width:12.170667pt;}
._16{width:13.066667pt;}
._10{width:14.144000pt;}
._22{width:15.104000pt;}
._5{width:17.344000pt;}
._29{width:18.250667pt;}
._13{width:19.200000pt;}
._f{width:20.224000pt;}
._a{width:21.696000pt;}
._27{width:22.592000pt;}
._1e{width:23.552000pt;}
._1a{width:25.098667pt;}
._19{width:26.176000pt;}
._1d{width:27.530667pt;}
._17{width:28.480000pt;}
._18{width:29.568000pt;}
._25{width:30.592000pt;}
._11{width:32.384000pt;}
._12{width:33.301760pt;}
._8{width:34.314667pt;}
._7{width:35.264000pt;}
._21{width:36.235093pt;}
._23{width:37.184000pt;}
._24{width:38.272000pt;}
._28{width:39.242667pt;}
._26{width:40.256000pt;}
._b{width:56.832000pt;}
._1{width:73.578667pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yec{bottom:10.720000pt;}
.yc5{bottom:10.880000pt;}
.yd1{bottom:10.906667pt;}
.yf3{bottom:10.920000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.yc3{bottom:18.560000pt;}
.ycb{bottom:18.586667pt;}
.ye4{bottom:18.600000pt;}
.yea{bottom:26.080000pt;}
.yf4{bottom:26.120000pt;}
.yc4{bottom:26.240000pt;}
.yd0{bottom:26.266667pt;}
.ye0{bottom:26.280000pt;}
.yf9{bottom:30.240000pt;}
.yf0{bottom:33.800000pt;}
.yd8{bottom:33.920000pt;}
.yca{bottom:33.946667pt;}
.ye3{bottom:33.960000pt;}
.yfd{bottom:34.240000pt;}
.y2{bottom:35.680000pt;}
.yff{bottom:37.920000pt;}
.yeb{bottom:41.440000pt;}
.yf2{bottom:41.480000pt;}
.yd6{bottom:41.600000pt;}
.ycf{bottom:41.626667pt;}
.ydf{bottom:41.640000pt;}
.y5{bottom:43.680000pt;}
.yf7{bottom:45.600000pt;}
.y105{bottom:46.400000pt;}
.yd3{bottom:49.280000pt;}
.yc7{bottom:49.306667pt;}
.ydb{bottom:49.320000pt;}
.yfc{bottom:49.600000pt;}
.yfe{bottom:53.280000pt;}
.y104{bottom:56.800000pt;}
.yf1{bottom:56.840000pt;}
.yd5{bottom:56.960000pt;}
.yce{bottom:56.986667pt;}
.yde{bottom:57.000000pt;}
.yf8{bottom:60.960000pt;}
.ye7{bottom:64.480000pt;}
.yd7{bottom:64.640000pt;}
.yc9{bottom:64.666667pt;}
.ye2{bottom:64.680000pt;}
.yfb{bottom:64.960000pt;}
.ye8{bottom:72.160000pt;}
.y103{bottom:72.200000pt;}
.yd4{bottom:72.320000pt;}
.ycd{bottom:72.346667pt;}
.ydd{bottom:72.360000pt;}
.yc8{bottom:80.026667pt;}
.ye1{bottom:80.040000pt;}
.yfa{bottom:80.320000pt;}
.ycc{bottom:87.546667pt;}
.yd9{bottom:87.680000pt;}
.ydc{bottom:87.720000pt;}
.y3a{bottom:104.320000pt;}
.y134{bottom:109.280000pt;}
.y69{bottom:110.720000pt;}
.y177{bottom:114.720000pt;}
.y9a{bottom:115.520000pt;}
.y10e{bottom:119.200000pt;}
.y39{bottom:122.720000pt;}
.ye9{bottom:127.200000pt;}
.y133{bottom:127.680000pt;}
.y68{bottom:129.120000pt;}
.ybf{bottom:133.920000pt;}
.y18f{bottom:135.520000pt;}
.y10d{bottom:137.600000pt;}
.y155{bottom:141.120000pt;}
.y99{bottom:141.920000pt;}
.y132{bottom:146.080000pt;}
.y67{bottom:147.520000pt;}
.y38{bottom:149.120000pt;}
.ybe{bottom:152.320000pt;}
.y18e{bottom:153.920000pt;}
.y10c{bottom:164.000000pt;}
.y66{bottom:165.920000pt;}
.y154{bottom:167.520000pt;}
.y98{bottom:168.320000pt;}
.ybd{bottom:170.720000pt;}
.y131{bottom:173.600000pt;}
.y37{bottom:175.546667pt;}
.y18d{bottom:180.346667pt;}
.y65{bottom:184.346667pt;}
.y176{bottom:185.946667pt;}
.y97{bottom:186.746667pt;}
.ybc{bottom:189.146667pt;}
.y10b{bottom:190.426667pt;}
.y130{bottom:192.026667pt;}
.ye6{bottom:193.146667pt;}
.y153{bottom:193.946667pt;}
.y18c{bottom:198.746667pt;}
.y36{bottom:201.946667pt;}
.y64{bottom:202.746667pt;}
.y175{bottom:204.346667pt;}
.y96{bottom:205.146667pt;}
.y10a{bottom:208.826667pt;}
.y152{bottom:212.346667pt;}
.ybb{bottom:215.546667pt;}
.y12f{bottom:219.546667pt;}
.y35{bottom:220.346667pt;}
.y63{bottom:221.146667pt;}
.y95{bottom:223.546667pt;}
.y18b{bottom:225.146667pt;}
.y109{bottom:227.226667pt;}
.y151{bottom:230.746667pt;}
.y174{bottom:231.866667pt;}
.yba{bottom:233.946667pt;}
.y12e{bottom:237.946667pt;}
.y94{bottom:241.946667pt;}
.y18a{bottom:243.546667pt;}
.y108{bottom:245.626667pt;}
.y34{bottom:246.746667pt;}
.y62{bottom:247.546667pt;}
.y173{bottom:250.266667pt;}
.yb9{bottom:252.346667pt;}
.y150{bottom:257.146667pt;}
.y93{bottom:260.346667pt;}
.y33{bottom:265.146667pt;}
.y12d{bottom:265.466667pt;}
.y61{bottom:265.946667pt;}
.y172{bottom:268.666667pt;}
.y189{bottom:269.946667pt;}
.yb8{bottom:270.746667pt;}
.y107{bottom:272.026667pt;}
.y14f{bottom:275.546667pt;}
.y92{bottom:278.746667pt;}
.y32{bottom:283.546667pt;}
.y60{bottom:284.346667pt;}
.y171{bottom:287.066667pt;}
.yb7{bottom:289.146667pt;}
.ye5{bottom:289.786667pt;}
.y12c{bottom:291.706667pt;}
.y14e{bottom:293.946667pt;}
.y188{bottom:296.346667pt;}
.y91{bottom:297.146667pt;}
.y106{bottom:298.426667pt;}
.y31{bottom:301.946667pt;}
.y5f{bottom:302.746667pt;}
.y170{bottom:305.466667pt;}
.yb6{bottom:307.546667pt;}
.y187{bottom:314.746667pt;}
.y12b{bottom:319.386667pt;}
.y30{bottom:320.346667pt;}
.y5e{bottom:321.146667pt;}
.y90{bottom:323.546667pt;}
.y102{bottom:324.346667pt;}
.y16f{bottom:332.986667pt;}
.yb5{bottom:333.946667pt;}
.y12a{bottom:337.946667pt;}
.y2f{bottom:338.746667pt;}
.y5d{bottom:339.546667pt;}
.y186{bottom:341.146667pt;}
.y8f{bottom:349.946667pt;}
.y16e{bottom:351.386667pt;}
.y2e{bottom:357.146667pt;}
.y5c{bottom:357.946667pt;}
.y185{bottom:359.546667pt;}
.yb4{bottom:360.346667pt;}
.y129{bottom:365.466667pt;}
.y8e{bottom:368.346667pt;}
.y16d{bottom:369.786667pt;}
.yda{bottom:371.066667pt;}
.y2d{bottom:375.546667pt;}
.y5b{bottom:376.346667pt;}
.yb3{bottom:378.746667pt;}
.y14d{bottom:383.546667pt;}
.y128{bottom:383.866667pt;}
.y184{bottom:385.946667pt;}
.y8d{bottom:386.746667pt;}
.y16c{bottom:388.226667pt;}
.y2c{bottom:393.986667pt;}
.yb2{bottom:397.186667pt;}
.y14c{bottom:401.986667pt;}
.y5a{bottom:402.786667pt;}
.y183{bottom:404.386667pt;}
.y8c{bottom:405.186667pt;}
.y16b{bottom:406.626667pt;}
.y127{bottom:411.266667pt;}
.yb1{bottom:415.586667pt;}
.y2b{bottom:420.386667pt;}
.y101{bottom:421.026667pt;}
.y59{bottom:421.186667pt;}
.y8b{bottom:423.586667pt;}
.y16a{bottom:425.026667pt;}
.y81{bottom:429.186667pt;}
.y182{bottom:430.786667pt;}
.yb0{bottom:433.986667pt;}
.y2a{bottom:438.786667pt;}
.y126{bottom:438.946667pt;}
.y58{bottom:439.586667pt;}
.y8a{bottom:441.986667pt;}
.y14b{bottom:446.786667pt;}
.y80{bottom:447.586667pt;}
.y181{bottom:449.186667pt;}
.y19a{bottom:451.586667pt;}
.yaf{bottom:452.386667pt;}
.y169{bottom:452.546667pt;}
.y29{bottom:457.186667pt;}
.y57{bottom:457.986667pt;}
.y89{bottom:460.386667pt;}
.y14a{bottom:465.186667pt;}
.y125{bottom:465.346667pt;}
.y7f{bottom:465.986667pt;}
.yae{bottom:470.786667pt;}
.y168{bottom:470.946667pt;}
.y28{bottom:475.586667pt;}
.y56{bottom:476.386667pt;}
.y199{bottom:477.986667pt;}
.yd2{bottom:483.106667pt;}
.y149{bottom:483.586667pt;}
.y124{bottom:483.746667pt;}
.y7e{bottom:484.386667pt;}
.y88{bottom:486.786667pt;}
.y167{bottom:489.346667pt;}
.y27{bottom:493.986667pt;}
.y55{bottom:494.786667pt;}
.yad{bottom:497.186667pt;}
.y180{bottom:501.986667pt;}
.y198{bottom:504.386667pt;}
.y166{bottom:507.746667pt;}
.y148{bottom:509.986667pt;}
.y7d{bottom:510.786667pt;}
.y123{bottom:511.266667pt;}
.y26{bottom:512.386667pt;}
.y54{bottom:513.186667pt;}
.yac{bottom:515.586667pt;}
.y100{bottom:517.666667pt;}
.y147{bottom:528.386667pt;}
.y7c{bottom:529.186667pt;}
.y122{bottom:529.666667pt;}
.y25{bottom:530.786667pt;}
.y53{bottom:531.586667pt;}
.yab{bottom:533.986667pt;}
.y165{bottom:535.266667pt;}
.y87{bottom:539.586667pt;}
.y17f{bottom:546.786667pt;}
.y7b{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.y24{bottom:549.186667pt;}
.yaa{bottom:552.386667pt;}
.y146{bottom:554.786667pt;}
.y121{bottom:557.186667pt;}
.y52{bottom:557.986667pt;}
.y164{bottom:561.666667pt;}
.y7a{bottom:565.986667pt;}
.ya9{bottom:570.786667pt;}
.y17e{bottom:573.186667pt;}
.y23{bottom:575.586667pt;}
.y145{bottom:581.186667pt;}
.y51{bottom:584.386667pt;}
.y163{bottom:588.066667pt;}
.y17d{bottom:591.586667pt;}
.y22{bottom:593.986667pt;}
.yc6{bottom:595.106667pt;}
.ya8{bottom:597.186667pt;}
.y144{bottom:599.613333pt;}
.y197{bottom:602.013333pt;}
.y79{bottom:602.813333pt;}
.y120{bottom:603.133333pt;}
.y162{bottom:606.493333pt;}
.y50{bottom:610.813333pt;}
.y21{bottom:612.413333pt;}
.yf6{bottom:614.333333pt;}
.y17c{bottom:618.013333pt;}
.y196{bottom:620.413333pt;}
.y78{bottom:621.213333pt;}
.y11f{bottom:621.533333pt;}
.ya7{bottom:623.613333pt;}
.y143{bottom:626.013333pt;}
.y20{bottom:630.813333pt;}
.y161{bottom:634.013333pt;}
.y17b{bottom:636.413333pt;}
.y4f{bottom:637.213333pt;}
.y86{bottom:639.613333pt;}
.ya6{bottom:642.013333pt;}
.y142{bottom:644.413333pt;}
.y195{bottom:646.813333pt;}
.y77{bottom:647.613333pt;}
.y11e{bottom:649.053333pt;}
.y1f{bottom:649.213333pt;}
.y160{bottom:652.413333pt;}
.y4e{bottom:655.613333pt;}
.y85{bottom:658.013333pt;}
.ya5{bottom:660.413333pt;}
.y17a{bottom:662.813333pt;}
.y76{bottom:666.013333pt;}
.y1e{bottom:667.613333pt;}
.y141{bottom:670.813333pt;}
.y15f{bottom:670.973333pt;}
.y194{bottom:673.213333pt;}
.y4d{bottom:674.013333pt;}
.y11d{bottom:675.453333pt;}
.y84{bottom:676.413333pt;}
.ya4{bottom:678.813333pt;}
.y179{bottom:681.213333pt;}
.y75{bottom:684.413333pt;}
.y1d{bottom:686.013333pt;}
.y140{bottom:689.213333pt;}
.y4c{bottom:692.413333pt;}
.y83{bottom:694.813333pt;}
.ya3{bottom:697.213333pt;}
.y15e{bottom:698.493333pt;}
.y193{bottom:699.613333pt;}
.y11c{bottom:701.853333pt;}
.y74{bottom:702.813333pt;}
.yc2{bottom:707.133333pt;}
.y13f{bottom:707.613333pt;}
.y4b{bottom:710.813333pt;}
.y1c{bottom:712.413333pt;}
.ya2{bottom:715.613333pt;}
.y15d{bottom:716.893333pt;}
.y192{bottom:718.013333pt;}
.yf5{bottom:718.973333pt;}
.y73{bottom:721.213333pt;}
.y13e{bottom:726.013333pt;}
.y4a{bottom:729.213333pt;}
.y11b{bottom:729.533333pt;}
.y15c{bottom:735.293333pt;}
.y1b{bottom:738.813333pt;}
.y72{bottom:739.613333pt;}
.ya1{bottom:742.013333pt;}
.y191{bottom:744.413333pt;}
.y49{bottom:747.613333pt;}
.y11a{bottom:747.933333pt;}
.y13d{bottom:752.413333pt;}
.y71{bottom:758.013333pt;}
.y15b{bottom:762.813333pt;}
.y1a{bottom:765.213333pt;}
.y48{bottom:766.013333pt;}
.ya0{bottom:768.413333pt;}
.y13c{bottom:770.813333pt;}
.y119{bottom:775.453333pt;}
.y70{bottom:776.413333pt;}
.y178{bottom:778.813333pt;}
.y15a{bottom:781.213333pt;}
.y19{bottom:783.613333pt;}
.y47{bottom:784.413333pt;}
.y9f{bottom:786.813333pt;}
.y190{bottom:789.213333pt;}
.y118{bottom:793.853333pt;}
.y6f{bottom:794.813333pt;}
.y13b{bottom:797.213333pt;}
.y159{bottom:799.613333pt;}
.yef{bottom:800.413333pt;}
.y46{bottom:802.813333pt;}
.y9e{bottom:805.213333pt;}
.y18{bottom:810.013333pt;}
.y6e{bottom:813.253333pt;}
.y13a{bottom:815.653333pt;}
.y45{bottom:821.253333pt;}
.y117{bottom:821.413333pt;}
.y9d{bottom:823.653333pt;}
.y158{bottom:826.053333pt;}
.y82{bottom:831.653333pt;}
.y139{bottom:834.053333pt;}
.y17{bottom:836.453333pt;}
.y44{bottom:839.653333pt;}
.y116{bottom:839.813333pt;}
.y9c{bottom:842.053333pt;}
.yc1{bottom:850.053333pt;}
.y157{bottom:852.453333pt;}
.y43{bottom:858.053333pt;}
.y115{bottom:858.213333pt;}
.y138{bottom:860.453333pt;}
.y16{bottom:862.853333pt;}
.y9b{bottom:868.453333pt;}
.y42{bottom:876.453333pt;}
.y137{bottom:878.853333pt;}
.y15{bottom:881.253333pt;}
.yee{bottom:881.733333pt;}
.y114{bottom:884.613333pt;}
.yc0{bottom:886.853333pt;}
.y41{bottom:894.853333pt;}
.y136{bottom:897.253333pt;}
.y156{bottom:905.253333pt;}
.y14{bottom:907.653333pt;}
.y113{bottom:911.013333pt;}
.y40{bottom:913.253333pt;}
.y135{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.y112{bottom:929.413333pt;}
.y6d{bottom:931.653333pt;}
.y3f{bottom:939.653333pt;}
.y6c{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y111{bottom:956.773333pt;}
.y3e{bottom:958.053333pt;}
.y6b{bottom:968.453333pt;}
.y3d{bottom:976.453333pt;}
.yed{bottom:978.373333pt;}
.y11{bottom:978.853333pt;}
.y110{bottom:984.293333pt;}
.y6a{bottom:986.853333pt;}
.y3c{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y10f{bottom:1011.973333pt;}
.y3b{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h9{height:44.327188pt;}
.hf{height:45.546250pt;}
.he{height:46.720000pt;}
.h15{height:46.752000pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h1a{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h14{height:61.952000pt;}
.h3{height:65.531250pt;}
.h12{height:77.280000pt;}
.h16{height:77.312000pt;}
.h17{height:77.440000pt;}
.h13{height:92.640000pt;}
.h19{height:92.672000pt;}
.h18{height:100.640000pt;}
.h11{height:108.000000pt;}
.h10{height:108.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:28.800000pt;}
.w3{width:66.880000pt;}
.wc{width:73.472000pt;}
.w8{width:75.546667pt;}
.wb{width:96.640000pt;}
.we{width:107.840000pt;}
.wd{width:138.746667pt;}
.wa{width:145.306667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x16{left:96.512000pt;}
.x10{left:100.671988pt;}
.xe{left:116.511988pt;}
.x1d{left:118.431988pt;}
.x14{left:123.871988pt;}
.x17{left:127.232000pt;}
.x1b{left:141.786655pt;}
.x2{left:143.240000pt;}
.x1c{left:165.786655pt;}
.x1{left:188.826667pt;}
.xf{left:226.586655pt;}
.x11{left:245.146655pt;}
.x15{left:254.466655pt;}
.x18{left:274.626667pt;}
.x13{left:341.026655pt;}
.x8{left:373.666667pt;}
.x12{left:396.866655pt;}
.x19{left:448.733333pt;}
.x9{left:583.293333pt;}
.x1a{left:589.573333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  