
    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_e05f42596bfe1b93e1786059.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_045922a675096408d2c49a77.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_ddcbd6d7ab22f2e385c0e4f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d69da05805693c7bf3569d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_1b88ea2c43d8a9d0274c9684.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4eb66c553b8e0edcd54755f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_af4345fd3840cba583833328.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.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_b15cb9b8ec33c25c30ac439e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5e9fcb2ec55ff5caf19bfbc0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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:ffd;src:url('chunks/assets/font_4c3c16324048903e385039e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941895;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.498000px;}
.lsc{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.020160px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.ls19{letter-spacing:0.501000px;}
.lsd{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.732000px;}
.ls2{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.152000px;}
.ls16{letter-spacing:3.600000px;}
.ls18{letter-spacing:16.560000px;}
.ls12{letter-spacing:23.196000px;}
.ls10{letter-spacing:27.516000px;}
.ls13{letter-spacing:31.836000px;}
.ls17{letter-spacing:46.558560px;}
.lse{letter-spacing:63.648000px;}
.lsb{letter-spacing:82.690560px;}
.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.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws1{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws9{word-spacing:-12.381000px;}
.ws8{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-5.894400px;}
._12{margin-left:-3.902400px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._a{width:3.367200px;}
._18{width:4.526400px;}
._b{width:6.048000px;}
._c{width:7.272000px;}
._d{width:8.280000px;}
._1c{width:9.288000px;}
._11{width:10.334400px;}
._10{width:11.337600px;}
._f{width:12.456000px;}
._7{width:13.821600px;}
._8{width:15.480000px;}
._9{width:16.996800px;}
._e{width:19.296000px;}
._1b{width:20.376000px;}
._17{width:21.528000px;}
._16{width:22.608000px;}
._1d{width:24.048000px;}
._14{width:26.136000px;}
._15{width:27.420000px;}
._21{width:28.692000px;}
._19{width:30.312000px;}
._1a{width:32.016000px;}
._25{width:33.192000px;}
._22{width:35.856000px;}
._23{width:37.224000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._20{width:845.784000px;}
._24{width:849.336000px;}
._1f{width:1478.856000px;}
._3{width:1591.176000px;}
._1e{width:2509.656000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:24.480000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y45{bottom:3.240000px;}
.y34{bottom:3.960000px;}
.ycc{bottom:4.320000px;}
.y44{bottom:21.600000px;}
.y33{bottom:24.834000px;}
.ye8{bottom:25.560000px;}
.y43{bottom:42.120000px;}
.ye{bottom:43.560000px;}
.y32{bottom:45.354000px;}
.ydf{bottom:47.160000px;}
.y42{bottom:63.030000px;}
.y31{bottom:66.279000px;}
.yc{bottom:68.400000px;}
.ye3{bottom:68.445000px;}
.y41{bottom:83.550000px;}
.y30{bottom:86.799000px;}
.yd9{bottom:90.000000px;}
.ya{bottom:94.716000px;}
.y40{bottom:104.430000px;}
.y2f{bottom:107.679000px;}
.y3f{bottom:124.950000px;}
.y100{bottom:133.596000px;}
.y135{bottom:133.956000px;}
.y8a{bottom:135.036000px;}
.y69{bottom:135.756000px;}
.y2e{bottom:136.839000px;}
.y1e{bottom:137.556000px;}
.y3e{bottom:145.830000px;}
.ya4{bottom:146.196000px;}
.yc9{bottom:148.716000px;}
.yff{bottom:154.110000px;}
.y68{bottom:156.630000px;}
.y134{bottom:157.710000px;}
.y2d{bottom:158.079000px;}
.y89{bottom:158.790000px;}
.y172{bottom:160.950000px;}
.y15d{bottom:163.830000px;}
.y3d{bottom:166.350000px;}
.ya3{bottom:167.070000px;}
.yc8{bottom:169.230000px;}
.yfe{bottom:170.670000px;}
.y67{bottom:177.150000px;}
.y2c{bottom:178.599000px;}
.y133{bottom:181.470000px;}
.y88{bottom:182.910000px;}
.y10e{bottom:183.270000px;}
.y15c{bottom:184.350000px;}
.y171{bottom:184.710000px;}
.yc7{bottom:186.150000px;}
.y3c{bottom:187.275000px;}
.ya2{bottom:187.590000px;}
.yce{bottom:197.355000px;}
.y66{bottom:198.075000px;}
.y2b{bottom:199.509000px;}
.y10d{bottom:203.835000px;}
.y15b{bottom:205.275000px;}
.y132{bottom:205.635000px;}
.y87{bottom:206.715000px;}
.y3b{bottom:207.795000px;}
.ya1{bottom:208.515000px;}
.yed{bottom:217.155000px;}
.y65{bottom:218.595000px;}
.y2a{bottom:220.029000px;}
.y10c{bottom:224.715000px;}
.y15a{bottom:225.795000px;}
.y86{bottom:227.595000px;}
.y3a{bottom:228.675000px;}
.ya0{bottom:229.035000px;}
.y131{bottom:229.395000px;}
.y170{bottom:232.275000px;}
.y64{bottom:239.475000px;}
.y29{bottom:240.909000px;}
.y10b{bottom:245.235000px;}
.y159{bottom:246.675000px;}
.y85{bottom:248.475000px;}
.y9f{bottom:249.915000px;}
.y130{bottom:253.155000px;}
.y16f{bottom:256.035000px;}
.y63{bottom:259.995000px;}
.y28{bottom:261.429000px;}
.y10a{bottom:266.115000px;}
.y158{bottom:267.195000px;}
.y84{bottom:268.995000px;}
.y9e{bottom:270.435000px;}
.y12f{bottom:276.915000px;}
.y1b1{bottom:277.275000px;}
.yec{bottom:279.435000px;}
.y16e{bottom:280.155000px;}
.y62{bottom:280.875000px;}
.y27{bottom:282.309000px;}
.y157{bottom:288.075000px;}
.y83{bottom:289.875000px;}
.y9d{bottom:290.955000px;}
.y18e{bottom:294.195000px;}
.y1b0{bottom:295.635000px;}
.y109{bottom:300.315000px;}
.y12e{bottom:300.675000px;}
.y61{bottom:301.395000px;}
.y26{bottom:302.829000px;}
.y16d{bottom:303.915000px;}
.y156{bottom:308.595000px;}
.y82{bottom:310.395000px;}
.y9c{bottom:311.835000px;}
.y18d{bottom:315.075000px;}
.y1af{bottom:316.155000px;}
.y60{bottom:322.275000px;}
.y25{bottom:323.754000px;}
.y12d{bottom:324.465000px;}
.y81{bottom:326.985000px;}
.y16c{bottom:327.705000px;}
.yea{bottom:328.065000px;}
.y155{bottom:329.505000px;}
.y9b{bottom:332.385000px;}
.y1ae{bottom:337.065000px;}
.y18c{bottom:338.865000px;}
.y5f{bottom:342.825000px;}
.y24{bottom:344.274000px;}
.y12c{bottom:348.225000px;}
.yeb{bottom:349.665000px;}
.y16b{bottom:351.465000px;}
.y9a{bottom:353.265000px;}
.y1ad{bottom:357.585000px;}
.y18b{bottom:362.625000px;}
.y5e{bottom:363.705000px;}
.y23{bottom:365.154000px;}
.y154{bottom:368.025000px;}
.ye9{bottom:370.905000px;}
.y12b{bottom:371.985000px;}
.y99{bottom:373.785000px;}
.y16a{bottom:375.225000px;}
.y1ac{bottom:378.465000px;}
.y5d{bottom:384.225000px;}
.y22{bottom:385.674000px;}
.y18a{bottom:386.385000px;}
.y153{bottom:391.785000px;}
.ye7{bottom:392.505000px;}
.y98{bottom:394.665000px;}
.y169{bottom:398.985000px;}
.y12a{bottom:403.305000px;}
.y5c{bottom:405.105000px;}
.y21{bottom:406.554000px;}
.y189{bottom:410.505000px;}
.ye6{bottom:413.745000px;}
.y97{bottom:415.185000px;}
.y152{bottom:415.545000px;}
.y1ab{bottom:419.865000px;}
.y168{bottom:422.745000px;}
.yad{bottom:425.265000px;}
.y5b{bottom:425.625000px;}
.y20{bottom:427.074000px;}
.y129{bottom:434.265000px;}
.ye2{bottom:435.345000px;}
.y96{bottom:436.065000px;}
.y151{bottom:439.305000px;}
.y1aa{bottom:440.385000px;}
.y5a{bottom:446.145000px;}
.y167{bottom:446.505000px;}
.y1f{bottom:447.984000px;}
.yac{bottom:456.270000px;}
.y95{bottom:456.630000px;}
.ye5{bottom:456.990000px;}
.y188{bottom:458.070000px;}
.y1a9{bottom:461.310000px;}
.y150{bottom:463.110000px;}
.y128{bottom:465.270000px;}
.y59{bottom:467.070000px;}
.y166{bottom:470.670000px;}
.yfd{bottom:476.430000px;}
.y94{bottom:477.510000px;}
.ye4{bottom:478.230000px;}
.y1a8{bottom:481.830000px;}
.y14f{bottom:486.870000px;}
.y58{bottom:487.590000px;}
.y165{bottom:494.430000px;}
.y127{bottom:496.230000px;}
.yfc{bottom:496.950000px;}
.y93{bottom:498.030000px;}
.ye1{bottom:499.830000px;}
.y1a7{bottom:502.710000px;}
.y57{bottom:508.470000px;}
.y14e{bottom:510.630000px;}
.yfb{bottom:517.830000px;}
.y164{bottom:518.190000px;}
.yab{bottom:518.550000px;}
.y92{bottom:518.910000px;}
.y187{bottom:520.710000px;}
.yde{bottom:521.070000px;}
.y1a6{bottom:523.230000px;}
.y126{bottom:527.550000px;}
.y56{bottom:528.990000px;}
.y14d{bottom:534.750000px;}
.yfa{bottom:538.350000px;}
.y91{bottom:539.430000px;}
.y163{bottom:541.950000px;}
.ye0{bottom:542.670000px;}
.y1a5{bottom:544.110000px;}
.y186{bottom:544.470000px;}
.yaa{bottom:549.510000px;}
.y55{bottom:549.870000px;}
.y125{bottom:558.510000px;}
.yf9{bottom:559.230000px;}
.y90{bottom:560.310000px;}
.ydd{bottom:564.270000px;}
.y1a4{bottom:564.630000px;}
.y162{bottom:565.710000px;}
.y185{bottom:568.230000px;}
.yc6{bottom:569.670000px;}
.y54{bottom:570.390000px;}
.yf8{bottom:579.780000px;}
.ya9{bottom:580.500000px;}
.y8f{bottom:580.860000px;}
.y14c{bottom:582.300000px;}
.yd8{bottom:585.540000px;}
.yc5{bottom:587.700000px;}
.y124{bottom:589.500000px;}
.y53{bottom:591.300000px;}
.y184{bottom:592.020000px;}
.yf7{bottom:600.660000px;}
.y8e{bottom:601.740000px;}
.y14b{bottom:606.060000px;}
.ydc{bottom:607.140000px;}
.yc4{bottom:608.220000px;}
.y108{bottom:610.380000px;}
.y52{bottom:611.820000px;}
.y161{bottom:613.260000px;}
.y183{bottom:615.780000px;}
.y1d{bottom:616.500000px;}
.y123{bottom:620.460000px;}
.y8d{bottom:622.260000px;}
.y1a3{bottom:626.940000px;}
.ydb{bottom:628.380000px;}
.yc3{bottom:629.100000px;}
.y14a{bottom:629.820000px;}
.y51{bottom:632.700000px;}
.y1c{bottom:633.420000px;}
.y107{bottom:634.500000px;}
.yf6{bottom:635.220000px;}
.y160{bottom:637.020000px;}
.y182{bottom:639.540000px;}
.ya8{bottom:642.780000px;}
.y8c{bottom:643.140000px;}
.y122{bottom:644.220000px;}
.y1a2{bottom:647.460000px;}
.yda{bottom:649.980000px;}
.y149{bottom:650.700000px;}
.yc2{bottom:652.500000px;}
.y50{bottom:653.220000px;}
.y106{bottom:653.580000px;}
.y1b{bottom:658.260000px;}
.y15f{bottom:661.140000px;}
.y181{bottom:663.300000px;}
.y8b{bottom:663.660000px;}
.y105{bottom:666.180000px;}
.y121{bottom:668.340000px;}
.yd7{bottom:671.220000px;}
.yc1{bottom:671.580000px;}
.ya7{bottom:673.740000px;}
.y4f{bottom:674.100000px;}
.y1a{bottom:676.620000px;}
.y80{bottom:684.540000px;}
.yc0{bottom:685.620000px;}
.y180{bottom:687.420000px;}
.y1a1{bottom:688.860000px;}
.y104{bottom:689.940000px;}
.y120{bottom:692.100000px;}
.ycd{bottom:692.820000px;}
.y4e{bottom:694.620000px;}
.y19{bottom:697.140000px;}
.y15e{bottom:698.580000px;}
.ya6{bottom:704.730000px;}
.y7f{bottom:705.090000px;}
.ybf{bottom:706.530000px;}
.y1a0{bottom:709.770000px;}
.y17f{bottom:711.210000px;}
.y148{bottom:713.010000px;}
.y103{bottom:713.730000px;}
.yd6{bottom:714.450000px;}
.y4d{bottom:715.530000px;}
.y11f{bottom:715.890000px;}
.y18{bottom:718.050000px;}
.y7e{bottom:725.970000px;}
.ybe{bottom:727.050000px;}
.y19f{bottom:730.290000px;}
.y147{bottom:733.530000px;}
.y102{bottom:734.610000px;}
.y17e{bottom:734.970000px;}
.yd5{bottom:735.690000px;}
.y4c{bottom:736.050000px;}
.y17{bottom:738.570000px;}
.y11e{bottom:739.650000px;}
.y7d{bottom:746.490000px;}
.ybd{bottom:747.930000px;}
.y101{bottom:751.530000px;}
.y19e{bottom:753.690000px;}
.y146{bottom:754.410000px;}
.y4b{bottom:756.930000px;}
.yd4{bottom:757.290000px;}
.y17d{bottom:758.730000px;}
.y16{bottom:759.450000px;}
.y11d{bottom:763.410000px;}
.ya5{bottom:767.010000px;}
.y7c{bottom:767.370000px;}
.ybc{bottom:768.450000px;}
.y145{bottom:774.930000px;}
.y4a{bottom:777.450000px;}
.yd3{bottom:778.530000px;}
.y15{bottom:779.970000px;}
.y17c{bottom:782.490000px;}
.y11c{bottom:787.170000px;}
.y7b{bottom:787.890000px;}
.ybb{bottom:789.330000px;}
.y144{bottom:795.810000px;}
.y49{bottom:798.330000px;}
.yd2{bottom:800.130000px;}
.y19d{bottom:801.570000px;}
.y17b{bottom:806.250000px;}
.y14{bottom:807.690000px;}
.y7a{bottom:808.770000px;}
.yba{bottom:809.850000px;}
.y11b{bottom:810.930000px;}
.y143{bottom:816.330000px;}
.y48{bottom:818.850000px;}
.y13{bottom:820.650000px;}
.yd1{bottom:821.370000px;}
.y19c{bottom:822.450000px;}
.y79{bottom:829.335000px;}
.y17a{bottom:830.055000px;}
.y11a{bottom:834.735000px;}
.y142{bottom:837.255000px;}
.y12{bottom:839.415000px;}
.yb9{bottom:842.295000px;}
.yd0{bottom:843.015000px;}
.y19b{bottom:843.375000px;}
.y78{bottom:850.215000px;}
.y179{bottom:853.815000px;}
.y47{bottom:856.335000px;}
.y141{bottom:857.775000px;}
.y119{bottom:858.855000px;}
.y19a{bottom:863.895000px;}
.ycf{bottom:864.615000px;}
.yb8{bottom:866.055000px;}
.y11{bottom:866.775000px;}
.y77{bottom:870.735000px;}
.y178{bottom:877.575000px;}
.y140{bottom:878.655000px;}
.y118{bottom:882.615000px;}
.y46{bottom:884.415000px;}
.y199{bottom:884.775000px;}
.ycb{bottom:885.855000px;}
.yb7{bottom:889.815000px;}
.y10{bottom:890.895000px;}
.y76{bottom:891.615000px;}
.y13f{bottom:899.175000px;}
.y177{bottom:901.695000px;}
.y117{bottom:906.375000px;}
.yca{bottom:907.455000px;}
.y198{bottom:908.175000px;}
.y39{bottom:909.255000px;}
.y75{bottom:912.135000px;}
.yb6{bottom:913.935000px;}
.yf{bottom:915.375000px;}
.y13e{bottom:920.055000px;}
.y176{bottom:925.455000px;}
.y116{bottom:930.135000px;}
.y197{bottom:931.935000px;}
.y74{bottom:933.015000px;}
.yb5{bottom:934.815000px;}
.yf5{bottom:936.615000px;}
.y13d{bottom:940.575000px;}
.y9{bottom:941.295000px;}
.y175{bottom:949.215000px;}
.y73{bottom:953.565000px;}
.y115{bottom:953.925000px;}
.y196{bottom:955.725000px;}
.y8{bottom:958.605000px;}
.yf4{bottom:960.405000px;}
.y13c{bottom:961.485000px;}
.yb4{bottom:967.245000px;}
.y7{bottom:972.645000px;}
.y174{bottom:973.005000px;}
.y72{bottom:974.445000px;}
.y114{bottom:977.685000px;}
.y195{bottom:979.485000px;}
.y13b{bottom:982.005000px;}
.yf3{bottom:984.525000px;}
.yb3{bottom:991.005000px;}
.y71{bottom:994.965000px;}
.y173{bottom:996.765000px;}
.y194{bottom:1000.725000px;}
.y113{bottom:1002.525000px;}
.yb2{bottom:1014.765000px;}
.yf2{bottom:1015.485000px;}
.y70{bottom:1015.845000px;}
.y13a{bottom:1020.525000px;}
.y193{bottom:1021.245000px;}
.y112{bottom:1026.645000px;}
.y6{bottom:1027.365000px;}
.y6f{bottom:1036.365000px;}
.yb1{bottom:1038.885000px;}
.y192{bottom:1042.125000px;}
.y139{bottom:1044.285000px;}
.yf1{bottom:1046.445000px;}
.y111{bottom:1050.765000px;}
.y5{bottom:1052.205000px;}
.y6e{bottom:1057.245000px;}
.yb0{bottom:1059.765000px;}
.y191{bottom:1062.645000px;}
.y138{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y110{bottom:1074.525000px;}
.yf0{bottom:1077.405000px;}
.y6d{bottom:1077.765000px;}
.yaf{bottom:1080.690000px;}
.y190{bottom:1086.090000px;}
.y137{bottom:1092.210000px;}
.y3{bottom:1094.010000px;}
.y10f{bottom:1098.330000px;}
.y6c{bottom:1098.690000px;}
.yef{bottom:1108.770000px;}
.y18f{bottom:1109.850000px;}
.y2{bottom:1114.530000px;}
.y136{bottom:1115.970000px;}
.yae{bottom:1118.850000px;}
.y6b{bottom:1119.210000px;}
.y1{bottom:1131.450000px;}
.yee{bottom:1139.730000px;}
.y6a{bottom:1140.090000px;}
.y38{bottom:1166.370000px;}
.y37{bottom:1180.410000px;}
.y36{bottom:1201.290000px;}
.y35{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h20{height:17.702578px;}
.h16{height:20.520000px;}
.h1a{height:20.556000px;}
.h17{height:20.880000px;}
.h19{height:20.916000px;}
.h15{height:30.198516px;}
.hb{height:34.410234px;}
.h7{height:39.570469px;}
.h1e{height:42.120000px;}
.h4{height:43.735781px;}
.h2{height:43.794844px;}
.h10{height:44.031094px;}
.h5{height:45.101250px;}
.hd{height:52.066406px;}
.h3{height:52.136719px;}
.h11{height:52.171875px;}
.h13{height:52.417969px;}
.h14{height:53.332031px;}
.h21{height:54.984375px;}
.h12{height:59.343750px;}
.ha{height:60.478594px;}
.hc{height:61.770234px;}
.h1f{height:63.720000px;}
.h1c{height:63.756000px;}
.h22{height:66.526875px;}
.h9{height:69.863203px;}
.h1d{height:84.996000px;}
.h1b{height:106.560000px;}
.h18{height:213.915000px;}
.hf{height:245.235000px;}
.he{height:473.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:52.560000px;}
.w9{width:163.875000px;}
.wa{width:190.875000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.xb{left:108.395987px;}
.x12{left:133.271987px;}
.x16{left:138.311987px;}
.xd{left:146.951987px;}
.x1d{left:148.751987px;}
.x13{left:160.274987px;}
.x11{left:169.994987px;}
.xf{left:180.794987px;}
.x15{left:202.034987px;}
.xc{left:210.674987px;}
.x18{left:213.195000px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xe{left:289.184987px;}
.xa{left:304.350000px;}
.x5{left:355.829987px;}
.x19{left:377.790000px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x10{left:447.660000px;}
.x1b{left:539.129987px;}
.x1c{left:559.289987px;}
.x1a{left:569.370000px;}
.x14{left:750.209987px;}
.x1{left:786.929987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.442667pt;}
.lsc{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.017920pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.ls19{letter-spacing:0.445333pt;}
.lsd{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650667pt;}
.ls2{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.024000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls18{letter-spacing:14.720000pt;}
.ls12{letter-spacing:20.618667pt;}
.ls10{letter-spacing:24.458667pt;}
.ls13{letter-spacing:28.298667pt;}
.ls17{letter-spacing:41.385387pt;}
.lse{letter-spacing:56.576000pt;}
.lsb{letter-spacing:73.502720pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws1{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws9{word-spacing:-11.005333pt;}
.ws8{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-5.239467pt;}
._12{margin-left:-3.468800pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._a{width:2.993067pt;}
._18{width:4.023467pt;}
._b{width:5.376000pt;}
._c{width:6.464000pt;}
._d{width:7.360000pt;}
._1c{width:8.256000pt;}
._11{width:9.186133pt;}
._10{width:10.077867pt;}
._f{width:11.072000pt;}
._7{width:12.285867pt;}
._8{width:13.760000pt;}
._9{width:15.108267pt;}
._e{width:17.152000pt;}
._1b{width:18.112000pt;}
._17{width:19.136000pt;}
._16{width:20.096000pt;}
._1d{width:21.376000pt;}
._14{width:23.232000pt;}
._15{width:24.373333pt;}
._21{width:25.504000pt;}
._19{width:26.944000pt;}
._1a{width:28.458667pt;}
._25{width:29.504000pt;}
._22{width:31.872000pt;}
._23{width:33.088000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._20{width:751.808000pt;}
._24{width:754.965333pt;}
._1f{width:1314.538667pt;}
._3{width:1414.378667pt;}
._1e{width:2230.805333pt;}
.fs7{font-size:21.760000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y45{bottom:2.880000pt;}
.y34{bottom:3.520000pt;}
.ycc{bottom:3.840000pt;}
.y44{bottom:19.200000pt;}
.y33{bottom:22.074667pt;}
.ye8{bottom:22.720000pt;}
.y43{bottom:37.440000pt;}
.ye{bottom:38.720000pt;}
.y32{bottom:40.314667pt;}
.ydf{bottom:41.920000pt;}
.y42{bottom:56.026667pt;}
.y31{bottom:58.914667pt;}
.yc{bottom:60.800000pt;}
.ye3{bottom:60.840000pt;}
.y41{bottom:74.266667pt;}
.y30{bottom:77.154667pt;}
.yd9{bottom:80.000000pt;}
.ya{bottom:84.192000pt;}
.y40{bottom:92.826667pt;}
.y2f{bottom:95.714667pt;}
.y3f{bottom:111.066667pt;}
.y100{bottom:118.752000pt;}
.y135{bottom:119.072000pt;}
.y8a{bottom:120.032000pt;}
.y69{bottom:120.672000pt;}
.y2e{bottom:121.634667pt;}
.y1e{bottom:122.272000pt;}
.y3e{bottom:129.626667pt;}
.ya4{bottom:129.952000pt;}
.yc9{bottom:132.192000pt;}
.yff{bottom:136.986667pt;}
.y68{bottom:139.226667pt;}
.y134{bottom:140.186667pt;}
.y2d{bottom:140.514667pt;}
.y89{bottom:141.146667pt;}
.y172{bottom:143.066667pt;}
.y15d{bottom:145.626667pt;}
.y3d{bottom:147.866667pt;}
.ya3{bottom:148.506667pt;}
.yc8{bottom:150.426667pt;}
.yfe{bottom:151.706667pt;}
.y67{bottom:157.466667pt;}
.y2c{bottom:158.754667pt;}
.y133{bottom:161.306667pt;}
.y88{bottom:162.586667pt;}
.y10e{bottom:162.906667pt;}
.y15c{bottom:163.866667pt;}
.y171{bottom:164.186667pt;}
.yc7{bottom:165.466667pt;}
.y3c{bottom:166.466667pt;}
.ya2{bottom:166.746667pt;}
.yce{bottom:175.426667pt;}
.y66{bottom:176.066667pt;}
.y2b{bottom:177.341333pt;}
.y10d{bottom:181.186667pt;}
.y15b{bottom:182.466667pt;}
.y132{bottom:182.786667pt;}
.y87{bottom:183.746667pt;}
.y3b{bottom:184.706667pt;}
.ya1{bottom:185.346667pt;}
.yed{bottom:193.026667pt;}
.y65{bottom:194.306667pt;}
.y2a{bottom:195.581333pt;}
.y10c{bottom:199.746667pt;}
.y15a{bottom:200.706667pt;}
.y86{bottom:202.306667pt;}
.y3a{bottom:203.266667pt;}
.ya0{bottom:203.586667pt;}
.y131{bottom:203.906667pt;}
.y170{bottom:206.466667pt;}
.y64{bottom:212.866667pt;}
.y29{bottom:214.141333pt;}
.y10b{bottom:217.986667pt;}
.y159{bottom:219.266667pt;}
.y85{bottom:220.866667pt;}
.y9f{bottom:222.146667pt;}
.y130{bottom:225.026667pt;}
.y16f{bottom:227.586667pt;}
.y63{bottom:231.106667pt;}
.y28{bottom:232.381333pt;}
.y10a{bottom:236.546667pt;}
.y158{bottom:237.506667pt;}
.y84{bottom:239.106667pt;}
.y9e{bottom:240.386667pt;}
.y12f{bottom:246.146667pt;}
.y1b1{bottom:246.466667pt;}
.yec{bottom:248.386667pt;}
.y16e{bottom:249.026667pt;}
.y62{bottom:249.666667pt;}
.y27{bottom:250.941333pt;}
.y157{bottom:256.066667pt;}
.y83{bottom:257.666667pt;}
.y9d{bottom:258.626667pt;}
.y18e{bottom:261.506667pt;}
.y1b0{bottom:262.786667pt;}
.y109{bottom:266.946667pt;}
.y12e{bottom:267.266667pt;}
.y61{bottom:267.906667pt;}
.y26{bottom:269.181333pt;}
.y16d{bottom:270.146667pt;}
.y156{bottom:274.306667pt;}
.y82{bottom:275.906667pt;}
.y9c{bottom:277.186667pt;}
.y18d{bottom:280.066667pt;}
.y1af{bottom:281.026667pt;}
.y60{bottom:286.466667pt;}
.y25{bottom:287.781333pt;}
.y12d{bottom:288.413333pt;}
.y81{bottom:290.653333pt;}
.y16c{bottom:291.293333pt;}
.yea{bottom:291.613333pt;}
.y155{bottom:292.893333pt;}
.y9b{bottom:295.453333pt;}
.y1ae{bottom:299.613333pt;}
.y18c{bottom:301.213333pt;}
.y5f{bottom:304.733333pt;}
.y24{bottom:306.021333pt;}
.y12c{bottom:309.533333pt;}
.yeb{bottom:310.813333pt;}
.y16b{bottom:312.413333pt;}
.y9a{bottom:314.013333pt;}
.y1ad{bottom:317.853333pt;}
.y18b{bottom:322.333333pt;}
.y5e{bottom:323.293333pt;}
.y23{bottom:324.581333pt;}
.y154{bottom:327.133333pt;}
.ye9{bottom:329.693333pt;}
.y12b{bottom:330.653333pt;}
.y99{bottom:332.253333pt;}
.y16a{bottom:333.533333pt;}
.y1ac{bottom:336.413333pt;}
.y5d{bottom:341.533333pt;}
.y22{bottom:342.821333pt;}
.y18a{bottom:343.453333pt;}
.y153{bottom:348.253333pt;}
.ye7{bottom:348.893333pt;}
.y98{bottom:350.813333pt;}
.y169{bottom:354.653333pt;}
.y12a{bottom:358.493333pt;}
.y5c{bottom:360.093333pt;}
.y21{bottom:361.381333pt;}
.y189{bottom:364.893333pt;}
.ye6{bottom:367.773333pt;}
.y97{bottom:369.053333pt;}
.y152{bottom:369.373333pt;}
.y1ab{bottom:373.213333pt;}
.y168{bottom:375.773333pt;}
.yad{bottom:378.013333pt;}
.y5b{bottom:378.333333pt;}
.y20{bottom:379.621333pt;}
.y129{bottom:386.013333pt;}
.ye2{bottom:386.973333pt;}
.y96{bottom:387.613333pt;}
.y151{bottom:390.493333pt;}
.y1aa{bottom:391.453333pt;}
.y5a{bottom:396.573333pt;}
.y167{bottom:396.893333pt;}
.y1f{bottom:398.208000pt;}
.yac{bottom:405.573333pt;}
.y95{bottom:405.893333pt;}
.ye5{bottom:406.213333pt;}
.y188{bottom:407.173333pt;}
.y1a9{bottom:410.053333pt;}
.y150{bottom:411.653333pt;}
.y128{bottom:413.573333pt;}
.y59{bottom:415.173333pt;}
.y166{bottom:418.373333pt;}
.yfd{bottom:423.493333pt;}
.y94{bottom:424.453333pt;}
.ye4{bottom:425.093333pt;}
.y1a8{bottom:428.293333pt;}
.y14f{bottom:432.773333pt;}
.y58{bottom:433.413333pt;}
.y165{bottom:439.493333pt;}
.y127{bottom:441.093333pt;}
.yfc{bottom:441.733333pt;}
.y93{bottom:442.693333pt;}
.ye1{bottom:444.293333pt;}
.y1a7{bottom:446.853333pt;}
.y57{bottom:451.973333pt;}
.y14e{bottom:453.893333pt;}
.yfb{bottom:460.293333pt;}
.y164{bottom:460.613333pt;}
.yab{bottom:460.933333pt;}
.y92{bottom:461.253333pt;}
.y187{bottom:462.853333pt;}
.yde{bottom:463.173333pt;}
.y1a6{bottom:465.093333pt;}
.y126{bottom:468.933333pt;}
.y56{bottom:470.213333pt;}
.y14d{bottom:475.333333pt;}
.yfa{bottom:478.533333pt;}
.y91{bottom:479.493333pt;}
.y163{bottom:481.733333pt;}
.ye0{bottom:482.373333pt;}
.y1a5{bottom:483.653333pt;}
.y186{bottom:483.973333pt;}
.yaa{bottom:488.453333pt;}
.y55{bottom:488.773333pt;}
.y125{bottom:496.453333pt;}
.yf9{bottom:497.093333pt;}
.y90{bottom:498.053333pt;}
.ydd{bottom:501.573333pt;}
.y1a4{bottom:501.893333pt;}
.y162{bottom:502.853333pt;}
.y185{bottom:505.093333pt;}
.yc6{bottom:506.373333pt;}
.y54{bottom:507.013333pt;}
.yf8{bottom:515.360000pt;}
.ya9{bottom:516.000000pt;}
.y8f{bottom:516.320000pt;}
.y14c{bottom:517.600000pt;}
.yd8{bottom:520.480000pt;}
.yc5{bottom:522.400000pt;}
.y124{bottom:524.000000pt;}
.y53{bottom:525.600000pt;}
.y184{bottom:526.240000pt;}
.yf7{bottom:533.920000pt;}
.y8e{bottom:534.880000pt;}
.y14b{bottom:538.720000pt;}
.ydc{bottom:539.680000pt;}
.yc4{bottom:540.640000pt;}
.y108{bottom:542.560000pt;}
.y52{bottom:543.840000pt;}
.y161{bottom:545.120000pt;}
.y183{bottom:547.360000pt;}
.y1d{bottom:548.000000pt;}
.y123{bottom:551.520000pt;}
.y8d{bottom:553.120000pt;}
.y1a3{bottom:557.280000pt;}
.ydb{bottom:558.560000pt;}
.yc3{bottom:559.200000pt;}
.y14a{bottom:559.840000pt;}
.y51{bottom:562.400000pt;}
.y1c{bottom:563.040000pt;}
.y107{bottom:564.000000pt;}
.yf6{bottom:564.640000pt;}
.y160{bottom:566.240000pt;}
.y182{bottom:568.480000pt;}
.ya8{bottom:571.360000pt;}
.y8c{bottom:571.680000pt;}
.y122{bottom:572.640000pt;}
.y1a2{bottom:575.520000pt;}
.yda{bottom:577.760000pt;}
.y149{bottom:578.400000pt;}
.yc2{bottom:580.000000pt;}
.y50{bottom:580.640000pt;}
.y106{bottom:580.960000pt;}
.y1b{bottom:585.120000pt;}
.y15f{bottom:587.680000pt;}
.y181{bottom:589.600000pt;}
.y8b{bottom:589.920000pt;}
.y105{bottom:592.160000pt;}
.y121{bottom:594.080000pt;}
.yd7{bottom:596.640000pt;}
.yc1{bottom:596.960000pt;}
.ya7{bottom:598.880000pt;}
.y4f{bottom:599.200000pt;}
.y1a{bottom:601.440000pt;}
.y80{bottom:608.480000pt;}
.yc0{bottom:609.440000pt;}
.y180{bottom:611.040000pt;}
.y1a1{bottom:612.320000pt;}
.y104{bottom:613.280000pt;}
.y120{bottom:615.200000pt;}
.ycd{bottom:615.840000pt;}
.y4e{bottom:617.440000pt;}
.y19{bottom:619.680000pt;}
.y15e{bottom:620.960000pt;}
.ya6{bottom:626.426667pt;}
.y7f{bottom:626.746667pt;}
.ybf{bottom:628.026667pt;}
.y1a0{bottom:630.906667pt;}
.y17f{bottom:632.186667pt;}
.y148{bottom:633.786667pt;}
.y103{bottom:634.426667pt;}
.yd6{bottom:635.066667pt;}
.y4d{bottom:636.026667pt;}
.y11f{bottom:636.346667pt;}
.y18{bottom:638.266667pt;}
.y7e{bottom:645.306667pt;}
.ybe{bottom:646.266667pt;}
.y19f{bottom:649.146667pt;}
.y147{bottom:652.026667pt;}
.y102{bottom:652.986667pt;}
.y17e{bottom:653.306667pt;}
.yd5{bottom:653.946667pt;}
.y4c{bottom:654.266667pt;}
.y17{bottom:656.506667pt;}
.y11e{bottom:657.466667pt;}
.y7d{bottom:663.546667pt;}
.ybd{bottom:664.826667pt;}
.y101{bottom:668.026667pt;}
.y19e{bottom:669.946667pt;}
.y146{bottom:670.586667pt;}
.y4b{bottom:672.826667pt;}
.yd4{bottom:673.146667pt;}
.y17d{bottom:674.426667pt;}
.y16{bottom:675.066667pt;}
.y11d{bottom:678.586667pt;}
.ya5{bottom:681.786667pt;}
.y7c{bottom:682.106667pt;}
.ybc{bottom:683.066667pt;}
.y145{bottom:688.826667pt;}
.y4a{bottom:691.066667pt;}
.yd3{bottom:692.026667pt;}
.y15{bottom:693.306667pt;}
.y17c{bottom:695.546667pt;}
.y11c{bottom:699.706667pt;}
.y7b{bottom:700.346667pt;}
.ybb{bottom:701.626667pt;}
.y144{bottom:707.386667pt;}
.y49{bottom:709.626667pt;}
.yd2{bottom:711.226667pt;}
.y19d{bottom:712.506667pt;}
.y17b{bottom:716.666667pt;}
.y14{bottom:717.946667pt;}
.y7a{bottom:718.906667pt;}
.yba{bottom:719.866667pt;}
.y11b{bottom:720.826667pt;}
.y143{bottom:725.626667pt;}
.y48{bottom:727.866667pt;}
.y13{bottom:729.466667pt;}
.yd1{bottom:730.106667pt;}
.y19c{bottom:731.066667pt;}
.y79{bottom:737.186667pt;}
.y17a{bottom:737.826667pt;}
.y11a{bottom:741.986667pt;}
.y142{bottom:744.226667pt;}
.y12{bottom:746.146667pt;}
.yb9{bottom:748.706667pt;}
.yd0{bottom:749.346667pt;}
.y19b{bottom:749.666667pt;}
.y78{bottom:755.746667pt;}
.y179{bottom:758.946667pt;}
.y47{bottom:761.186667pt;}
.y141{bottom:762.466667pt;}
.y119{bottom:763.426667pt;}
.y19a{bottom:767.906667pt;}
.ycf{bottom:768.546667pt;}
.yb8{bottom:769.826667pt;}
.y11{bottom:770.466667pt;}
.y77{bottom:773.986667pt;}
.y178{bottom:780.066667pt;}
.y140{bottom:781.026667pt;}
.y118{bottom:784.546667pt;}
.y46{bottom:786.146667pt;}
.y199{bottom:786.466667pt;}
.ycb{bottom:787.426667pt;}
.yb7{bottom:790.946667pt;}
.y10{bottom:791.906667pt;}
.y76{bottom:792.546667pt;}
.y13f{bottom:799.266667pt;}
.y177{bottom:801.506667pt;}
.y117{bottom:805.666667pt;}
.yca{bottom:806.626667pt;}
.y198{bottom:807.266667pt;}
.y39{bottom:808.226667pt;}
.y75{bottom:810.786667pt;}
.yb6{bottom:812.386667pt;}
.yf{bottom:813.666667pt;}
.y13e{bottom:817.826667pt;}
.y176{bottom:822.626667pt;}
.y116{bottom:826.786667pt;}
.y197{bottom:828.386667pt;}
.y74{bottom:829.346667pt;}
.yb5{bottom:830.946667pt;}
.yf5{bottom:832.546667pt;}
.y13d{bottom:836.066667pt;}
.y9{bottom:836.706667pt;}
.y175{bottom:843.746667pt;}
.y73{bottom:847.613333pt;}
.y115{bottom:847.933333pt;}
.y196{bottom:849.533333pt;}
.y8{bottom:852.093333pt;}
.yf4{bottom:853.693333pt;}
.y13c{bottom:854.653333pt;}
.yb4{bottom:859.773333pt;}
.y7{bottom:864.573333pt;}
.y174{bottom:864.893333pt;}
.y72{bottom:866.173333pt;}
.y114{bottom:869.053333pt;}
.y195{bottom:870.653333pt;}
.y13b{bottom:872.893333pt;}
.yf3{bottom:875.133333pt;}
.yb3{bottom:880.893333pt;}
.y71{bottom:884.413333pt;}
.y173{bottom:886.013333pt;}
.y194{bottom:889.533333pt;}
.y113{bottom:891.133333pt;}
.yb2{bottom:902.013333pt;}
.yf2{bottom:902.653333pt;}
.y70{bottom:902.973333pt;}
.y13a{bottom:907.133333pt;}
.y193{bottom:907.773333pt;}
.y112{bottom:912.573333pt;}
.y6{bottom:913.213333pt;}
.y6f{bottom:921.213333pt;}
.yb1{bottom:923.453333pt;}
.y192{bottom:926.333333pt;}
.y139{bottom:928.253333pt;}
.yf1{bottom:930.173333pt;}
.y111{bottom:934.013333pt;}
.y5{bottom:935.293333pt;}
.y6e{bottom:939.773333pt;}
.yb0{bottom:942.013333pt;}
.y191{bottom:944.573333pt;}
.y138{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y110{bottom:955.133333pt;}
.yf0{bottom:957.693333pt;}
.y6d{bottom:958.013333pt;}
.yaf{bottom:960.613333pt;}
.y190{bottom:965.413333pt;}
.y137{bottom:970.853333pt;}
.y3{bottom:972.453333pt;}
.y10f{bottom:976.293333pt;}
.y6c{bottom:976.613333pt;}
.yef{bottom:985.573333pt;}
.y18f{bottom:986.533333pt;}
.y2{bottom:990.693333pt;}
.y136{bottom:991.973333pt;}
.yae{bottom:994.533333pt;}
.y6b{bottom:994.853333pt;}
.y1{bottom:1005.733333pt;}
.yee{bottom:1013.093333pt;}
.y6a{bottom:1013.413333pt;}
.y38{bottom:1036.773333pt;}
.y37{bottom:1049.253333pt;}
.y36{bottom:1067.813333pt;}
.y35{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h20{height:15.735625pt;}
.h16{height:18.240000pt;}
.h1a{height:18.272000pt;}
.h17{height:18.560000pt;}
.h19{height:18.592000pt;}
.h15{height:26.843125pt;}
.hb{height:30.586875pt;}
.h7{height:35.173750pt;}
.h1e{height:37.440000pt;}
.h4{height:38.876250pt;}
.h2{height:38.928750pt;}
.h10{height:39.138750pt;}
.h5{height:40.090000pt;}
.hd{height:46.281250pt;}
.h3{height:46.343750pt;}
.h11{height:46.375000pt;}
.h13{height:46.593750pt;}
.h14{height:47.406250pt;}
.h21{height:48.875000pt;}
.h12{height:52.750000pt;}
.ha{height:53.758750pt;}
.hc{height:54.906875pt;}
.h1f{height:56.640000pt;}
.h1c{height:56.672000pt;}
.h22{height:59.135000pt;}
.h9{height:62.100625pt;}
.h1d{height:75.552000pt;}
.h1b{height:94.720000pt;}
.h18{height:190.146667pt;}
.hf{height:217.986667pt;}
.he{height:420.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:46.720000pt;}
.w9{width:145.666667pt;}
.wa{width:169.666667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.xb{left:96.351988pt;}
.x12{left:118.463988pt;}
.x16{left:122.943988pt;}
.xd{left:130.623988pt;}
.x1d{left:132.223988pt;}
.x13{left:142.466655pt;}
.x11{left:151.106655pt;}
.xf{left:160.706655pt;}
.x15{left:179.586655pt;}
.xc{left:187.266655pt;}
.x18{left:189.506667pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xe{left:257.053322pt;}
.xa{left:270.533333pt;}
.x5{left:316.293322pt;}
.x19{left:335.813333pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x10{left:397.920000pt;}
.x1b{left:479.226655pt;}
.x1c{left:497.146655pt;}
.x1a{left:506.106667pt;}
.x14{left:666.853322pt;}
.x1{left:699.493322pt;}
}




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