
    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_2715904c0f052e7a4a33147f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_884051af01a8c7c5f49cfd23.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_022698b49b40f7bec05d56cb.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_f564c0ecc761f4450af8713f.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_80938f1adc63a159a4401888.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_b957f57f643d6698d66fac2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_b2ac6baec80b88804d22412f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_82a121fe7a2e07a0940325c7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.432000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.024000px;}
.lsc{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.lsb{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.600000px;}
.lse{letter-spacing:4.200000px;}
.ls11{letter-spacing:7.800000px;}
.ls14{letter-spacing:15.720000px;}
.ls13{letter-spacing:45.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.024000px;}
.ws7{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.568000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-2.094000px;}
._1{margin-left:-1.056000px;}
._0{width:1.014000px;}
._6{width:2.940000px;}
._8{width:4.248000px;}
._7{width:5.280000px;}
._a{width:6.696000px;}
._12{width:8.454000px;}
._9{width:9.522000px;}
._b{width:10.800000px;}
._c{width:12.246000px;}
._10{width:13.314000px;}
._13{width:16.968000px;}
._11{width:18.120000px;}
._e{width:19.260000px;}
._f{width:20.394000px;}
._15{width:22.140000px;}
._1a{width:23.376000px;}
._14{width:24.660000px;}
._1c{width:26.160000px;}
._1b{width:27.180000px;}
._1d{width:29.280000px;}
._1f{width:30.300000px;}
._1e{width:31.440000px;}
._17{width:35.124000px;}
._16{width:36.420000px;}
._19{width:69.390000px;}
._18{width:71.520000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc4{color:transparent;}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:3.885000px;}
.yc2{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.yde{bottom:3.945000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y3d{bottom:9.000000px;}
.y5{bottom:12.337500px;}
.y3c{bottom:27.000000px;}
.y3b{bottom:46.545000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3a{bottom:61.245000px;}
.y3f{bottom:74.137500px;}
.y39{bottom:78.345000px;}
.y3{bottom:81.337500px;}
.y38{bottom:95.745000px;}
.y74{bottom:111.937500px;}
.y37{bottom:112.845000px;}
.yf5{bottom:117.037500px;}
.ycd{bottom:124.237500px;}
.y13b{bottom:127.237500px;}
.y168{bottom:128.437500px;}
.y73{bottom:129.637500px;}
.y36{bottom:130.245000px;}
.y26{bottom:139.537500px;}
.yf4{bottom:140.737500px;}
.ycc{bottom:141.637500px;}
.y167{bottom:145.837500px;}
.y72{bottom:146.737500px;}
.y13a{bottom:147.337500px;}
.y35{bottom:147.345000px;}
.y118{bottom:150.930000px;}
.y25{bottom:156.930000px;}
.yf3{bottom:157.545000px;}
.ycb{bottom:158.730000px;}
.y166{bottom:162.930000px;}
.y71{bottom:164.130000px;}
.y34{bottom:164.745000px;}
.y139{bottom:167.130000px;}
.y117{bottom:168.330000px;}
.y24{bottom:174.045000px;}
.ya4{bottom:174.630000px;}
.yca{bottom:175.830000px;}
.y165{bottom:180.375000px;}
.y70{bottom:181.275000px;}
.y33{bottom:181.845000px;}
.y116{bottom:185.775000px;}
.y138{bottom:186.975000px;}
.y23{bottom:191.475000px;}
.ya3{bottom:191.775000px;}
.yc9{bottom:193.275000px;}
.y164{bottom:197.475000px;}
.y6f{bottom:198.675000px;}
.y32{bottom:199.245000px;}
.y115{bottom:202.875000px;}
.y137{bottom:206.775000px;}
.y22{bottom:208.575000px;}
.ya2{bottom:209.175000px;}
.yc8{bottom:210.375000px;}
.y163{bottom:214.875000px;}
.y6e{bottom:215.775000px;}
.y31{bottom:216.375000px;}
.y114{bottom:220.275000px;}
.y21{bottom:225.975000px;}
.ya1{bottom:226.275000px;}
.y136{bottom:226.575000px;}
.yc7{bottom:227.775000px;}
.y162{bottom:231.975000px;}
.y6d{bottom:233.175000px;}
.y30{bottom:233.790000px;}
.y20{bottom:243.075000px;}
.ya0{bottom:243.675000px;}
.yc6{bottom:244.875000px;}
.y113{bottom:249.075000px;}
.y161{bottom:249.375000px;}
.y2f{bottom:250.890000px;}
.y135{bottom:258.375000px;}
.y1f{bottom:260.475000px;}
.y9f{bottom:260.775000px;}
.y6c{bottom:261.975000px;}
.yc5{bottom:263.475000px;}
.y160{bottom:266.475000px;}
.y112{bottom:266.775000px;}
.y2e{bottom:268.275000px;}
.yc4{bottom:275.475000px;}
.y1e{bottom:277.575000px;}
.y134{bottom:278.175000px;}
.y9e{bottom:278.475000px;}
.y6b{bottom:279.675000px;}
.y111{bottom:283.875000px;}
.y2d{bottom:285.375000px;}
.y1d{bottom:294.975000px;}
.y6a{bottom:296.775000px;}
.y133{bottom:297.975000px;}
.y15f{bottom:300.975000px;}
.y110{bottom:301.275000px;}
.y2c{bottom:302.790000px;}
.y1c{bottom:312.075000px;}
.y9d{bottom:313.575000px;}
.y69{bottom:314.175000px;}
.y132{bottom:317.775000px;}
.yc3{bottom:318.375000px;}
.y2b{bottom:319.890000px;}
.y1b{bottom:329.475000px;}
.y9c{bottom:330.975000px;}
.y68{bottom:331.275000px;}
.y15e{bottom:335.475000px;}
.y10f{bottom:336.075000px;}
.y2a{bottom:337.290000px;}
.y131{bottom:337.875000px;}
.yc1{bottom:339.675000px;}
.y1a{bottom:346.620000px;}
.y9b{bottom:348.420000px;}
.y15d{bottom:352.920000px;}
.y29{bottom:354.375000px;}
.y10e{bottom:356.505000px;}
.y130{bottom:357.705000px;}
.y67{bottom:360.420000px;}
.yc0{bottom:361.320000px;}
.y19{bottom:364.320000px;}
.y9a{bottom:365.520000px;}
.y15c{bottom:370.005000px;}
.y28{bottom:372.075000px;}
.y10d{bottom:373.620000px;}
.y12f{bottom:377.505000px;}
.y66{bottom:377.820000px;}
.ybe{bottom:382.620000px;}
.y99{bottom:382.920000px;}
.y18{bottom:384.705000px;}
.y15b{bottom:387.420000px;}
.y10c{bottom:391.005000px;}
.y65{bottom:395.205000px;}
.y12e{bottom:398.505000px;}
.y98{bottom:400.005000px;}
.y15a{bottom:404.505000px;}
.y10b{bottom:405.405000px;}
.ybd{bottom:411.120000px;}
.y64{bottom:412.320000px;}
.y97{bottom:417.405000px;}
.y159{bottom:421.920000px;}
.y10a{bottom:427.005000px;}
.y63{bottom:429.720000px;}
.ybc{bottom:431.820000px;}
.y12d{bottom:433.620000px;}
.y96{bottom:434.505000px;}
.y158{bottom:439.005000px;}
.y109{bottom:448.320000px;}
.y95{bottom:451.920000px;}
.ybb{bottom:452.205000px;}
.y157{bottom:456.420000px;}
.y12c{bottom:458.220000px;}
.y62{bottom:458.505000px;}
.yba{bottom:469.320000px;}
.y108{bottom:469.905000px;}
.y156{bottom:473.505000px;}
.y27{bottom:475.005000px;}
.yf2{bottom:475.620000px;}
.y12b{bottom:475.920000px;}
.y61{bottom:476.205000px;}
.y94{bottom:480.705000px;}
.yb9{bottom:486.705000px;}
.y107{bottom:491.205000px;}
.yf1{bottom:493.005000px;}
.y60{bottom:493.320000px;}
.y93{bottom:498.405000px;}
.yb8{bottom:504.420000px;}
.yf0{bottom:508.320000px;}
.y12a{bottom:510.405000px;}
.y5f{bottom:510.720000px;}
.y92{bottom:515.550000px;}
.yef{bottom:516.150000px;}
.y106{bottom:516.750000px;}
.y155{bottom:526.350000px;}
.y5e{bottom:527.850000px;}
.y91{bottom:532.950000px;}
.yee{bottom:537.750000px;}
.yb7{bottom:539.250000px;}
.y105{bottom:540.450000px;}
.y154{bottom:543.750000px;}
.y5d{bottom:545.250000px;}
.y90{bottom:550.050000px;}
.yb6{bottom:556.950000px;}
.y104{bottom:557.550000px;}
.yed{bottom:559.050000px;}
.y153{bottom:561.150000px;}
.y8f{bottom:567.450000px;}
.y5c{bottom:574.050000px;}
.y152{bottom:578.250000px;}
.yec{bottom:580.650000px;}
.y8e{bottom:584.550000px;}
.yb5{bottom:585.750000px;}
.y129{bottom:591.450000px;}
.y5b{bottom:591.750000px;}
.y151{bottom:595.650000px;}
.yeb{bottom:601.950000px;}
.yb4{bottom:603.450000px;}
.y128{bottom:608.550000px;}
.y5a{bottom:608.850000px;}
.y150{bottom:612.750000px;}
.y8d{bottom:613.650000px;}
.yb3{bottom:620.550000px;}
.yea{bottom:623.550000px;}
.y127{bottom:625.950000px;}
.y59{bottom:626.250000px;}
.y8c{bottom:631.050000px;}
.yb2{bottom:637.950000px;}
.y126{bottom:643.050000px;}
.y58{bottom:643.350000px;}
.y14f{bottom:644.250000px;}
.y8b{bottom:648.450000px;}
.ye9{bottom:648.750000px;}
.yb1{bottom:655.050000px;}
.y125{bottom:660.450000px;}
.y57{bottom:661.050000px;}
.y14e{bottom:664.050000px;}
.ye8{bottom:669.450000px;}
.y8a{bottom:677.250000px;}
.yb0{bottom:684.195000px;}
.ye7{bottom:688.995000px;}
.y124{bottom:689.280000px;}
.y89{bottom:694.980000px;}
.y56{bottom:696.195000px;}
.yaf{bottom:701.580000px;}
.ye6{bottom:703.695000px;}
.y14d{bottom:703.995000px;}
.y123{bottom:706.995000px;}
.y88{bottom:712.080000px;}
.y55{bottom:713.580000px;}
.yae{bottom:718.995000px;}
.ye5{bottom:720.795000px;}
.y87{bottom:729.495000px;}
.y54{bottom:730.995000px;}
.y122{bottom:735.795000px;}
.yad{bottom:736.095000px;}
.ye4{bottom:738.195000px;}
.y53{bottom:748.095000px;}
.ye3{bottom:753.495000px;}
.y14c{bottom:755.580000px;}
.y86{bottom:758.280000px;}
.ye2{bottom:761.280000px;}
.yac{bottom:765.195000px;}
.y52{bottom:765.480000px;}
.y121{bottom:770.580000px;}
.y175{bottom:771.795000px;}
.y14b{bottom:775.380000px;}
.y85{bottom:775.980000px;}
.y51{bottom:782.580000px;}
.ye1{bottom:782.595000px;}
.y120{bottom:787.995000px;}
.y174{bottom:789.795000px;}
.y14a{bottom:795.195000px;}
.y50{bottom:799.995000px;}
.ye0{bottom:804.195000px;}
.y84{bottom:804.795000px;}
.y11f{bottom:805.080000px;}
.y103{bottom:809.295000px;}
.y173{bottom:810.495000px;}
.y4f{bottom:817.080000px;}
.y83{bottom:822.495000px;}
.ydf{bottom:825.480000px;}
.y102{bottom:826.695000px;}
.y149{bottom:826.995000px;}
.y172{bottom:830.580000px;}
.y11e{bottom:834.195000px;}
.y101{bottom:843.795000px;}
.y4e{bottom:846.195000px;}
.y148{bottom:846.795000px;}
.ydd{bottom:847.080000px;}
.y171{bottom:847.995000px;}
.y82{bottom:851.325000px;}
.y11d{bottom:851.625000px;}
.y100{bottom:861.225000px;}
.y4d{bottom:863.625000px;}
.y170{bottom:865.125000px;}
.y147{bottom:866.925000px;}
.ydc{bottom:868.425000px;}
.y81{bottom:869.025000px;}
.yff{bottom:875.625000px;}
.y11c{bottom:880.725000px;}
.y4c{bottom:881.025000px;}
.y16f{bottom:882.525000px;}
.y80{bottom:886.125000px;}
.y146{bottom:886.725000px;}
.ydb{bottom:893.925000px;}
.y17{bottom:895.425000px;}
.yfe{bottom:897.225000px;}
.yab{bottom:898.125000px;}
.y16e{bottom:899.625000px;}
.y4b{bottom:909.825000px;}
.yda{bottom:914.625000px;}
.y7f{bottom:915.225000px;}
.y11b{bottom:915.525000px;}
.y16d{bottom:917.025000px;}
.yfd{bottom:918.525000px;}
.y16{bottom:922.725000px;}
.yaa{bottom:927.225000px;}
.y4a{bottom:927.525000px;}
.y7e{bottom:932.625000px;}
.yd9{bottom:934.125000px;}
.y145{bottom:938.325000px;}
.yfc{bottom:940.125000px;}
.y15{bottom:944.325000px;}
.ya9{bottom:944.625000px;}
.yd8{bottom:948.525000px;}
.y7d{bottom:950.025000px;}
.y16c{bottom:951.525000px;}
.y49{bottom:956.325000px;}
.y144{bottom:958.125000px;}
.yfb{bottom:961.425000px;}
.y11a{bottom:961.725000px;}
.y14{bottom:962.025000px;}
.yd7{bottom:965.925000px;}
.y7c{bottom:967.125000px;}
.y16b{bottom:968.625000px;}
.y48{bottom:974.025000px;}
.y143{bottom:977.925000px;}
.y13{bottom:979.125000px;}
.yd6{bottom:983.025000px;}
.y16a{bottom:986.025000px;}
.y47{bottom:991.125000px;}
.y7b{bottom:996.225000px;}
.y119{bottom:996.525000px;}
.yd5{bottom:998.325000px;}
.y12{bottom:999.825000px;}
.y169{bottom:1003.125000px;}
.yd4{bottom:1006.425000px;}
.ya8{bottom:1008.225000px;}
.y142{bottom:1009.725000px;}
.y7a{bottom:1013.625000px;}
.y46{bottom:1020.255000px;}
.y11{bottom:1020.570000px;}
.ya7{bottom:1025.670000px;}
.yd3{bottom:1027.755000px;}
.y141{bottom:1029.570000px;}
.yfa{bottom:1031.955000px;}
.y45{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y79{bottom:1042.755000px;}
.ya6{bottom:1043.070000px;}
.yd2{bottom:1049.370000px;}
.y140{bottom:1049.670000px;}
.yf9{bottom:1052.370000px;}
.y44{bottom:1055.070000px;}
.y78{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.yf8{bottom:1069.455000px;}
.yd1{bottom:1070.670000px;}
.y43{bottom:1072.170000px;}
.y77{bottom:1077.570000px;}
.y13f{bottom:1081.455000px;}
.ya{bottom:1083.570000px;}
.yf7{bottom:1086.870000px;}
.ya5{bottom:1089.255000px;}
.y42{bottom:1089.570000px;}
.yd0{bottom:1092.255000px;}
.y76{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.y13e{bottom:1101.255000px;}
.yf6{bottom:1106.370000px;}
.y41{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.ycf{bottom:1117.455000px;}
.y13d{bottom:1121.070000px;}
.y75{bottom:1123.755000px;}
.y40{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yce{bottom:1138.170000px;}
.y13c{bottom:1140.870000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h18{height:20.685000px;}
.h14{height:20.700000px;}
.h15{height:20.737500px;}
.h17{height:20.947266px;}
.ha{height:21.000000px;}
.h16{height:33.515625px;}
.h7{height:33.867188px;}
.h11{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.h12{height:41.159180px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h19{height:43.681641px;}
.h10{height:45.732422px;}
.hd{height:50.273438px;}
.h6{height:50.800781px;}
.hf{height:51.996094px;}
.h13{height:54.878906px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.he{height:388.905000px;}
.h0{height:1263.000000px;}
.wa{width:38.437500px;}
.w15{width:47.100000px;}
.wb{width:47.400000px;}
.wc{width:50.437500px;}
.w4{width:72.300000px;}
.w12{width:72.637500px;}
.w17{width:94.837500px;}
.w11{width:95.400000px;}
.w3{width:108.000000px;}
.w8{width:109.537500px;}
.we{width:122.137500px;}
.w10{width:125.437500px;}
.w19{width:135.037500px;}
.w9{width:173.430000px;}
.w14{width:216.975000px;}
.wf{width:250.605000px;}
.w6{width:253.275000px;}
.w13{width:257.475000px;}
.wd{width:304.620000px;}
.w16{width:336.405000px;}
.w18{width:359.205000px;}
.w5{width:483.450000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.800000px;}
.x2{left:10.799998px;}
.x34{left:12.000000px;}
.x2b{left:14.400000px;}
.x15{left:16.200000px;}
.x2e{left:18.900000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x28{left:26.130000px;}
.x2a{left:27.600000px;}
.x2d{left:29.430000px;}
.x2c{left:32.085000px;}
.x29{left:37.200000px;}
.x2f{left:42.300000px;}
.x35{left:54.000000px;}
.x36{left:61.500000px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x14{left:84.037500px;}
.x13{left:90.337487px;}
.x25{left:91.830000px;}
.xf{left:94.537487px;}
.x30{left:106.537487px;}
.x31{left:107.700000px;}
.xe{left:116.745000px;}
.x22{left:119.437487px;}
.x9{left:153.629987px;}
.x24{left:173.445000px;}
.x1e{left:184.874987px;}
.x3a{left:190.274987px;}
.x40{left:199.275000px;}
.x17{left:207.374987px;}
.x3f{left:217.874987px;}
.x38{left:227.774987px;}
.x3c{left:230.475000px;}
.x20{left:232.875000px;}
.x18{left:235.275000px;}
.xc{left:241.567500px;}
.x23{left:259.874987px;}
.x39{left:289.274987px;}
.x10{left:315.119987px;}
.x11{left:328.619987px;}
.x1a{left:345.720000px;}
.x3b{left:364.904987px;}
.x1f{left:387.719987px;}
.x6{left:405.119987px;}
.x26{left:424.950000px;}
.x32{left:443.550000px;}
.x12{left:446.549987px;}
.x1b{left:520.050000px;}
.x21{left:538.095000px;}
.x27{left:550.995000px;}
.x1c{left:559.095000px;}
.xd{left:561.780000px;}
.x3d{left:567.780000px;}
.x16{left:574.994987px;}
.x1d{left:607.395000px;}
.x8{left:616.379987px;}
.x7{left:648.194987px;}
.x33{left:661.125000px;}
.x3e{left:666.224987px;}
.x37{left:696.524987px;}
.x5{left:698.624987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.021333pt;}
.lsc{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.533333pt;}
.lse{letter-spacing:3.733333pt;}
.ls11{letter-spacing:6.933333pt;}
.ls14{letter-spacing:13.973333pt;}
.ls13{letter-spacing:40.640000pt;}
.ws5{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.021333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.616000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-1.861333pt;}
._1{margin-left:-0.938667pt;}
._0{width:0.901333pt;}
._6{width:2.613333pt;}
._8{width:3.776000pt;}
._7{width:4.693333pt;}
._a{width:5.952000pt;}
._12{width:7.514667pt;}
._9{width:8.464000pt;}
._b{width:9.600000pt;}
._c{width:10.885333pt;}
._10{width:11.834667pt;}
._13{width:15.082667pt;}
._11{width:16.106667pt;}
._e{width:17.120000pt;}
._f{width:18.128000pt;}
._15{width:19.680000pt;}
._1a{width:20.778667pt;}
._14{width:21.920000pt;}
._1c{width:23.253333pt;}
._1b{width:24.160000pt;}
._1d{width:26.026667pt;}
._1f{width:26.933333pt;}
._1e{width:27.946667pt;}
._17{width:31.221333pt;}
._16{width:32.373333pt;}
._19{width:61.680000pt;}
._18{width:63.573333pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:3.453333pt;}
.yc2{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.yde{bottom:3.506667pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y3d{bottom:8.000000pt;}
.y5{bottom:10.966667pt;}
.y3c{bottom:24.000000pt;}
.y3b{bottom:41.373333pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3a{bottom:54.440000pt;}
.y3f{bottom:65.900000pt;}
.y39{bottom:69.640000pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:85.106667pt;}
.y74{bottom:99.500000pt;}
.y37{bottom:100.306667pt;}
.yf5{bottom:104.033333pt;}
.ycd{bottom:110.433333pt;}
.y13b{bottom:113.100000pt;}
.y168{bottom:114.166667pt;}
.y73{bottom:115.233333pt;}
.y36{bottom:115.773333pt;}
.y26{bottom:124.033333pt;}
.yf4{bottom:125.100000pt;}
.ycc{bottom:125.900000pt;}
.y167{bottom:129.633333pt;}
.y72{bottom:130.433333pt;}
.y13a{bottom:130.966667pt;}
.y35{bottom:130.973333pt;}
.y118{bottom:134.160000pt;}
.y25{bottom:139.493333pt;}
.yf3{bottom:140.040000pt;}
.ycb{bottom:141.093333pt;}
.y166{bottom:144.826667pt;}
.y71{bottom:145.893333pt;}
.y34{bottom:146.440000pt;}
.y139{bottom:148.560000pt;}
.y117{bottom:149.626667pt;}
.y24{bottom:154.706667pt;}
.ya4{bottom:155.226667pt;}
.yca{bottom:156.293333pt;}
.y165{bottom:160.333333pt;}
.y70{bottom:161.133333pt;}
.y33{bottom:161.640000pt;}
.y116{bottom:165.133333pt;}
.y138{bottom:166.200000pt;}
.y23{bottom:170.200000pt;}
.ya3{bottom:170.466667pt;}
.yc9{bottom:171.800000pt;}
.y164{bottom:175.533333pt;}
.y6f{bottom:176.600000pt;}
.y32{bottom:177.106667pt;}
.y115{bottom:180.333333pt;}
.y137{bottom:183.800000pt;}
.y22{bottom:185.400000pt;}
.ya2{bottom:185.933333pt;}
.yc8{bottom:187.000000pt;}
.y163{bottom:191.000000pt;}
.y6e{bottom:191.800000pt;}
.y31{bottom:192.333333pt;}
.y114{bottom:195.800000pt;}
.y21{bottom:200.866667pt;}
.ya1{bottom:201.133333pt;}
.y136{bottom:201.400000pt;}
.yc7{bottom:202.466667pt;}
.y162{bottom:206.200000pt;}
.y6d{bottom:207.266667pt;}
.y30{bottom:207.813333pt;}
.y20{bottom:216.066667pt;}
.ya0{bottom:216.600000pt;}
.yc6{bottom:217.666667pt;}
.y113{bottom:221.400000pt;}
.y161{bottom:221.666667pt;}
.y2f{bottom:223.013333pt;}
.y135{bottom:229.666667pt;}
.y1f{bottom:231.533333pt;}
.y9f{bottom:231.800000pt;}
.y6c{bottom:232.866667pt;}
.yc5{bottom:234.200000pt;}
.y160{bottom:236.866667pt;}
.y112{bottom:237.133333pt;}
.y2e{bottom:238.466667pt;}
.yc4{bottom:244.866667pt;}
.y1e{bottom:246.733333pt;}
.y134{bottom:247.266667pt;}
.y9e{bottom:247.533333pt;}
.y6b{bottom:248.600000pt;}
.y111{bottom:252.333333pt;}
.y2d{bottom:253.666667pt;}
.y1d{bottom:262.200000pt;}
.y6a{bottom:263.800000pt;}
.y133{bottom:264.866667pt;}
.y15f{bottom:267.533333pt;}
.y110{bottom:267.800000pt;}
.y2c{bottom:269.146667pt;}
.y1c{bottom:277.400000pt;}
.y9d{bottom:278.733333pt;}
.y69{bottom:279.266667pt;}
.y132{bottom:282.466667pt;}
.yc3{bottom:283.000000pt;}
.y2b{bottom:284.346667pt;}
.y1b{bottom:292.866667pt;}
.y9c{bottom:294.200000pt;}
.y68{bottom:294.466667pt;}
.y15e{bottom:298.200000pt;}
.y10f{bottom:298.733333pt;}
.y2a{bottom:299.813333pt;}
.y131{bottom:300.333333pt;}
.yc1{bottom:301.933333pt;}
.y1a{bottom:308.106667pt;}
.y9b{bottom:309.706667pt;}
.y15d{bottom:313.706667pt;}
.y29{bottom:315.000000pt;}
.y10e{bottom:316.893333pt;}
.y130{bottom:317.960000pt;}
.y67{bottom:320.373333pt;}
.yc0{bottom:321.173333pt;}
.y19{bottom:323.840000pt;}
.y9a{bottom:324.906667pt;}
.y15c{bottom:328.893333pt;}
.y28{bottom:330.733333pt;}
.y10d{bottom:332.106667pt;}
.y12f{bottom:335.560000pt;}
.y66{bottom:335.840000pt;}
.ybe{bottom:340.106667pt;}
.y99{bottom:340.373333pt;}
.y18{bottom:341.960000pt;}
.y15b{bottom:344.373333pt;}
.y10c{bottom:347.560000pt;}
.y65{bottom:351.293333pt;}
.y12e{bottom:354.226667pt;}
.y98{bottom:355.560000pt;}
.y15a{bottom:359.560000pt;}
.y10b{bottom:360.360000pt;}
.ybd{bottom:365.440000pt;}
.y64{bottom:366.506667pt;}
.y97{bottom:371.026667pt;}
.y159{bottom:375.040000pt;}
.y10a{bottom:379.560000pt;}
.y63{bottom:381.973333pt;}
.ybc{bottom:383.840000pt;}
.y12d{bottom:385.440000pt;}
.y96{bottom:386.226667pt;}
.y158{bottom:390.226667pt;}
.y109{bottom:398.506667pt;}
.y95{bottom:401.706667pt;}
.ybb{bottom:401.960000pt;}
.y157{bottom:405.706667pt;}
.y12c{bottom:407.306667pt;}
.y62{bottom:407.560000pt;}
.yba{bottom:417.173333pt;}
.y108{bottom:417.693333pt;}
.y156{bottom:420.893333pt;}
.y27{bottom:422.226667pt;}
.yf2{bottom:422.773333pt;}
.y12b{bottom:423.040000pt;}
.y61{bottom:423.293333pt;}
.y94{bottom:427.293333pt;}
.yb9{bottom:432.626667pt;}
.y107{bottom:436.626667pt;}
.yf1{bottom:438.226667pt;}
.y60{bottom:438.506667pt;}
.y93{bottom:443.026667pt;}
.yb8{bottom:448.373333pt;}
.yf0{bottom:451.840000pt;}
.y12a{bottom:453.693333pt;}
.y5f{bottom:453.973333pt;}
.y92{bottom:458.266667pt;}
.yef{bottom:458.800000pt;}
.y106{bottom:459.333333pt;}
.y155{bottom:467.866667pt;}
.y5e{bottom:469.200000pt;}
.y91{bottom:473.733333pt;}
.yee{bottom:478.000000pt;}
.yb7{bottom:479.333333pt;}
.y105{bottom:480.400000pt;}
.y154{bottom:483.333333pt;}
.y5d{bottom:484.666667pt;}
.y90{bottom:488.933333pt;}
.yb6{bottom:495.066667pt;}
.y104{bottom:495.600000pt;}
.yed{bottom:496.933333pt;}
.y153{bottom:498.800000pt;}
.y8f{bottom:504.400000pt;}
.y5c{bottom:510.266667pt;}
.y152{bottom:514.000000pt;}
.yec{bottom:516.133333pt;}
.y8e{bottom:519.600000pt;}
.yb5{bottom:520.666667pt;}
.y129{bottom:525.733333pt;}
.y5b{bottom:526.000000pt;}
.y151{bottom:529.466667pt;}
.yeb{bottom:535.066667pt;}
.yb4{bottom:536.400000pt;}
.y128{bottom:540.933333pt;}
.y5a{bottom:541.200000pt;}
.y150{bottom:544.666667pt;}
.y8d{bottom:545.466667pt;}
.yb3{bottom:551.600000pt;}
.yea{bottom:554.266667pt;}
.y127{bottom:556.400000pt;}
.y59{bottom:556.666667pt;}
.y8c{bottom:560.933333pt;}
.yb2{bottom:567.066667pt;}
.y126{bottom:571.600000pt;}
.y58{bottom:571.866667pt;}
.y14f{bottom:572.666667pt;}
.y8b{bottom:576.400000pt;}
.ye9{bottom:576.666667pt;}
.yb1{bottom:582.266667pt;}
.y125{bottom:587.066667pt;}
.y57{bottom:587.600000pt;}
.y14e{bottom:590.266667pt;}
.ye8{bottom:595.066667pt;}
.y8a{bottom:602.000000pt;}
.yb0{bottom:608.173333pt;}
.ye7{bottom:612.440000pt;}
.y124{bottom:612.693333pt;}
.y89{bottom:617.760000pt;}
.y56{bottom:618.840000pt;}
.yaf{bottom:623.626667pt;}
.ye6{bottom:625.506667pt;}
.y14d{bottom:625.773333pt;}
.y123{bottom:628.440000pt;}
.y88{bottom:632.960000pt;}
.y55{bottom:634.293333pt;}
.yae{bottom:639.106667pt;}
.ye5{bottom:640.706667pt;}
.y87{bottom:648.440000pt;}
.y54{bottom:649.773333pt;}
.y122{bottom:654.040000pt;}
.yad{bottom:654.306667pt;}
.ye4{bottom:656.173333pt;}
.y53{bottom:664.973333pt;}
.ye3{bottom:669.773333pt;}
.y14c{bottom:671.626667pt;}
.y86{bottom:674.026667pt;}
.ye2{bottom:676.693333pt;}
.yac{bottom:680.173333pt;}
.y52{bottom:680.426667pt;}
.y121{bottom:684.960000pt;}
.y175{bottom:686.040000pt;}
.y14b{bottom:689.226667pt;}
.y85{bottom:689.760000pt;}
.y51{bottom:695.626667pt;}
.ye1{bottom:695.640000pt;}
.y120{bottom:700.440000pt;}
.y174{bottom:702.040000pt;}
.y14a{bottom:706.840000pt;}
.y50{bottom:711.106667pt;}
.ye0{bottom:714.840000pt;}
.y84{bottom:715.373333pt;}
.y11f{bottom:715.626667pt;}
.y103{bottom:719.373333pt;}
.y173{bottom:720.440000pt;}
.y4f{bottom:726.293333pt;}
.y83{bottom:731.106667pt;}
.ydf{bottom:733.760000pt;}
.y102{bottom:734.840000pt;}
.y149{bottom:735.106667pt;}
.y172{bottom:738.293333pt;}
.y11e{bottom:741.506667pt;}
.y101{bottom:750.040000pt;}
.y4e{bottom:752.173333pt;}
.y148{bottom:752.706667pt;}
.ydd{bottom:752.960000pt;}
.y171{bottom:753.773333pt;}
.y82{bottom:756.733333pt;}
.y11d{bottom:757.000000pt;}
.y100{bottom:765.533333pt;}
.y4d{bottom:767.666667pt;}
.y170{bottom:769.000000pt;}
.y147{bottom:770.600000pt;}
.ydc{bottom:771.933333pt;}
.y81{bottom:772.466667pt;}
.yff{bottom:778.333333pt;}
.y11c{bottom:782.866667pt;}
.y4c{bottom:783.133333pt;}
.y16f{bottom:784.466667pt;}
.y80{bottom:787.666667pt;}
.y146{bottom:788.200000pt;}
.ydb{bottom:794.600000pt;}
.y17{bottom:795.933333pt;}
.yfe{bottom:797.533333pt;}
.yab{bottom:798.333333pt;}
.y16e{bottom:799.666667pt;}
.y4b{bottom:808.733333pt;}
.yda{bottom:813.000000pt;}
.y7f{bottom:813.533333pt;}
.y11b{bottom:813.800000pt;}
.y16d{bottom:815.133333pt;}
.yfd{bottom:816.466667pt;}
.y16{bottom:820.200000pt;}
.yaa{bottom:824.200000pt;}
.y4a{bottom:824.466667pt;}
.y7e{bottom:829.000000pt;}
.yd9{bottom:830.333333pt;}
.y145{bottom:834.066667pt;}
.yfc{bottom:835.666667pt;}
.y15{bottom:839.400000pt;}
.ya9{bottom:839.666667pt;}
.yd8{bottom:843.133333pt;}
.y7d{bottom:844.466667pt;}
.y16c{bottom:845.800000pt;}
.y49{bottom:850.066667pt;}
.y144{bottom:851.666667pt;}
.yfb{bottom:854.600000pt;}
.y11a{bottom:854.866667pt;}
.y14{bottom:855.133333pt;}
.yd7{bottom:858.600000pt;}
.y7c{bottom:859.666667pt;}
.y16b{bottom:861.000000pt;}
.y48{bottom:865.800000pt;}
.y143{bottom:869.266667pt;}
.y13{bottom:870.333333pt;}
.yd6{bottom:873.800000pt;}
.y16a{bottom:876.466667pt;}
.y47{bottom:881.000000pt;}
.y7b{bottom:885.533333pt;}
.y119{bottom:885.800000pt;}
.yd5{bottom:887.400000pt;}
.y12{bottom:888.733333pt;}
.y169{bottom:891.666667pt;}
.yd4{bottom:894.600000pt;}
.ya8{bottom:896.200000pt;}
.y142{bottom:897.533333pt;}
.y7a{bottom:901.000000pt;}
.y46{bottom:906.893333pt;}
.y11{bottom:907.173333pt;}
.ya7{bottom:911.706667pt;}
.yd3{bottom:913.560000pt;}
.y141{bottom:915.173333pt;}
.yfa{bottom:917.293333pt;}
.y45{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y79{bottom:926.893333pt;}
.ya6{bottom:927.173333pt;}
.yd2{bottom:932.773333pt;}
.y140{bottom:933.040000pt;}
.yf9{bottom:935.440000pt;}
.y44{bottom:937.840000pt;}
.y78{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.yf8{bottom:950.626667pt;}
.yd1{bottom:951.706667pt;}
.y43{bottom:953.040000pt;}
.y77{bottom:957.840000pt;}
.y13f{bottom:961.293333pt;}
.ya{bottom:963.173333pt;}
.yf7{bottom:966.106667pt;}
.ya5{bottom:968.226667pt;}
.y42{bottom:968.506667pt;}
.yd0{bottom:970.893333pt;}
.y76{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.y13e{bottom:978.893333pt;}
.yf6{bottom:983.440000pt;}
.y41{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.ycf{bottom:993.293333pt;}
.y13d{bottom:996.506667pt;}
.y75{bottom:998.893333pt;}
.y40{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yce{bottom:1011.706667pt;}
.y13c{bottom:1014.106667pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h18{height:18.386667pt;}
.h14{height:18.400000pt;}
.h15{height:18.433333pt;}
.h17{height:18.619792pt;}
.ha{height:18.666667pt;}
.h16{height:29.791667pt;}
.h7{height:30.104167pt;}
.h11{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.h12{height:36.585938pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h19{height:38.828125pt;}
.h10{height:40.651042pt;}
.hd{height:44.687500pt;}
.h6{height:45.156250pt;}
.hf{height:46.218750pt;}
.h13{height:48.781250pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.he{height:345.693333pt;}
.h0{height:1122.666667pt;}
.wa{width:34.166667pt;}
.w15{width:41.866667pt;}
.wb{width:42.133333pt;}
.wc{width:44.833333pt;}
.w4{width:64.266667pt;}
.w12{width:64.566667pt;}
.w17{width:84.300000pt;}
.w11{width:84.800000pt;}
.w3{width:96.000000pt;}
.w8{width:97.366667pt;}
.we{width:108.566667pt;}
.w10{width:111.500000pt;}
.w19{width:120.033333pt;}
.w9{width:154.160000pt;}
.w14{width:192.866667pt;}
.wf{width:222.760000pt;}
.w6{width:225.133333pt;}
.w13{width:228.866667pt;}
.wd{width:270.773333pt;}
.w16{width:299.026667pt;}
.w18{width:319.293333pt;}
.w5{width:429.733333pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.933333pt;}
.x2{left:9.599999pt;}
.x34{left:10.666667pt;}
.x2b{left:12.800000pt;}
.x15{left:14.400000pt;}
.x2e{left:16.800000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x28{left:23.226667pt;}
.x2a{left:24.533333pt;}
.x2d{left:26.160000pt;}
.x2c{left:28.520000pt;}
.x29{left:33.066667pt;}
.x2f{left:37.600000pt;}
.x35{left:48.000000pt;}
.x36{left:54.666667pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x14{left:74.700000pt;}
.x13{left:80.299988pt;}
.x25{left:81.626667pt;}
.xf{left:84.033322pt;}
.x30{left:94.699988pt;}
.x31{left:95.733333pt;}
.xe{left:103.773333pt;}
.x22{left:106.166655pt;}
.x9{left:136.559988pt;}
.x24{left:154.173333pt;}
.x1e{left:164.333322pt;}
.x3a{left:169.133322pt;}
.x40{left:177.133333pt;}
.x17{left:184.333322pt;}
.x3f{left:193.666655pt;}
.x38{left:202.466655pt;}
.x3c{left:204.866667pt;}
.x20{left:207.000000pt;}
.x18{left:209.133333pt;}
.xc{left:214.726667pt;}
.x23{left:230.999988pt;}
.x39{left:257.133322pt;}
.x10{left:280.106655pt;}
.x11{left:292.106655pt;}
.x1a{left:307.306667pt;}
.x3b{left:324.359988pt;}
.x1f{left:344.639988pt;}
.x6{left:360.106655pt;}
.x26{left:377.733333pt;}
.x32{left:394.266667pt;}
.x12{left:396.933322pt;}
.x1b{left:462.266667pt;}
.x21{left:478.306667pt;}
.x27{left:489.773333pt;}
.x1c{left:496.973333pt;}
.xd{left:499.360000pt;}
.x3d{left:504.693333pt;}
.x16{left:511.106655pt;}
.x1d{left:539.906667pt;}
.x8{left:547.893322pt;}
.x7{left:576.173322pt;}
.x33{left:587.666667pt;}
.x3e{left:592.199988pt;}
.x37{left:619.133322pt;}
.x5{left:620.999988pt;}
.xa{left:722.106655pt;}
}




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