
    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_43efbd6ebff1cbd60f7f693c.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_5b60831dd746225e477be5bb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d971ae24b3a5edb0b6dcb45a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_2f15b51592282829834741c3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_191a4f6f6e09843c374c7be8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940918;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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.960000px;}
.ls1f{letter-spacing:-0.544800px;}
.lsb{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.268800px;}
.ls7{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.214800px;}
.lsf{letter-spacing:-0.208800px;}
.ls8{letter-spacing:-0.115800px;}
.ls19{letter-spacing:-0.112200px;}
.ls23{letter-spacing:-0.064800px;}
.ls1a{letter-spacing:-0.061200px;}
.ls1c{letter-spacing:-0.058320px;}
.lse{letter-spacing:-0.055440px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.023760px;}
.ls24{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.174000px;}
.ls9{letter-spacing:0.175200px;}
.ls18{letter-spacing:0.195000px;}
.ls1e{letter-spacing:0.209400px;}
.ls4{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.306000px;}
.lsc{letter-spacing:0.314400px;}
.ls17{letter-spacing:0.357000px;}
.lsd{letter-spacing:0.393600px;}
.ls1d{letter-spacing:0.433440px;}
.ls20{letter-spacing:0.451200px;}
.ls22{letter-spacing:0.479520px;}
.ls25{letter-spacing:12.186720px;}
.ls10{letter-spacing:17.226720px;}
.ls1{letter-spacing:38.106720px;}
.ls21{letter-spacing:42.570720px;}
.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;}
}
.ws1{word-spacing:-16.488000px;}
.ws0{word-spacing:-15.768000px;}
.ws2{word-spacing:-14.506440px;}
.ws14{word-spacing:-13.956960px;}
.wsd{word-spacing:-13.862760px;}
.ws8{word-spacing:-13.820160px;}
.ws13{word-spacing:-13.715160px;}
.wse{word-spacing:-13.700760px;}
.ws5{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.450320px;}
.ws12{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.444560px;}
.wsf{word-spacing:-13.393560px;}
.ws6{word-spacing:-13.389960px;}
.wsa{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.wsc{word-spacing:-13.236960px;}
.ws3{word-spacing:-9.437760px;}
.ws11{word-spacing:-8.864880px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-4.556880px;}
._3{margin-left:-2.664000px;}
._0{margin-left:-1.149120px;}
._1{width:1.053360px;}
._2{width:2.502960px;}
._f{width:3.607920px;}
._c{width:5.019840px;}
._9{width:6.155280px;}
._a{width:7.168080px;}
._7{width:8.300880px;}
._6{width:10.246320px;}
._8{width:11.952000px;}
._5{width:13.406400px;}
._b{width:15.477840px;}
._12{width:16.498080px;}
._e{width:17.509680px;}
._d{width:18.704880px;}
._10{width:20.131200px;}
._13{width:21.343680px;}
._19{width:22.373280px;}
._11{width:23.388480px;}
._17{width:24.800400px;}
._18{width:26.248320px;}
._1c{width:31.162320px;}
._1b{width:32.270400px;}
._1a{width:50.796000px;}
._16{width:156.332160px;}
._15{width:166.431600px;}
._14{width:229.919760px;}
.fc2{color:rgb(38,74,96);}
.fc1{color:transparent;}
.fc3{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.yb9{bottom:-56.334000px;}
.yb8{bottom:-24.480000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:0.540000px;}
.ya0{bottom:0.720000px;}
.yd6{bottom:6.654000px;}
.yc1{bottom:6.660000px;}
.y12f{bottom:6.690000px;}
.y154{bottom:6.705000px;}
.y109{bottom:7.014000px;}
.y102{bottom:7.020000px;}
.y107{bottom:7.200000px;}
.y10a{bottom:7.374000px;}
.y103{bottom:7.380000px;}
.yb7{bottom:8.640000px;}
.yac{bottom:14.400000px;}
.yb3{bottom:14.940000px;}
.ya2{bottom:17.280000px;}
.y9f{bottom:17.460000px;}
.yb5{bottom:17.505000px;}
.ya9{bottom:19.800000px;}
.yaf{bottom:24.525000px;}
.yd5{bottom:27.714000px;}
.yc2{bottom:27.720000px;}
.ydb{bottom:27.750000px;}
.ycd{bottom:27.765000px;}
.yab{bottom:29.160000px;}
.ya8{bottom:36.360000px;}
.yae{bottom:41.265000px;}
.ydf{bottom:42.120000px;}
.yaa{bottom:43.920000px;}
.yde{bottom:48.780000px;}
.y6{bottom:61.416000px;}
.yd3{bottom:69.834000px;}
.yc4{bottom:69.840000px;}
.yd9{bottom:69.870000px;}
.ycb{bottom:69.885000px;}
.y31{bottom:89.856000px;}
.y157{bottom:94.536000px;}
.y65{bottom:98.136000px;}
.yd2{bottom:101.376000px;}
.y164{bottom:103.716000px;}
.y12d{bottom:106.596000px;}
.y95{bottom:107.136000px;}
.y87{bottom:110.196000px;}
.y10c{bottom:110.736000px;}
.y30{bottom:110.916000px;}
.y110{bottom:115.380000px;}
.y64{bottom:119.196000px;}
.y163{bottom:121.536000px;}
.yd7{bottom:122.436000px;}
.y94{bottom:128.196000px;}
.y12b{bottom:131.076000px;}
.y86{bottom:131.256000px;}
.y10b{bottom:131.796000px;}
.y2f{bottom:131.976000px;}
.y156{bottom:140.076000px;}
.y63{bottom:140.256000px;}
.y162{bottom:142.596000px;}
.yd4{bottom:143.496000px;}
.y93{bottom:149.256000px;}
.y108{bottom:149.616000px;}
.y85{bottom:152.310000px;}
.y2e{bottom:153.030000px;}
.y62{bottom:161.310000px;}
.y161{bottom:163.650000px;}
.y92{bottom:170.310000px;}
.y106{bottom:171.390000px;}
.y84{bottom:173.370000px;}
.y2d{bottom:174.090000px;}
.y12c{bottom:176.610000px;}
.y61{bottom:182.370000px;}
.y160{bottom:184.710000px;}
.y155{bottom:185.610000px;}
.ycf{bottom:189.030000px;}
.y91{bottom:191.370000px;}
.yb6{bottom:192.450000px;}
.y105{bottom:192.990000px;}
.y83{bottom:194.430000px;}
.y2c{bottom:195.150000px;}
.y60{bottom:203.430000px;}
.y15f{bottom:205.770000px;}
.yd1{bottom:210.090000px;}
.y90{bottom:212.430000px;}
.y104{bottom:214.770000px;}
.y82{bottom:215.490000px;}
.y2b{bottom:216.210000px;}
.y5f{bottom:224.490000px;}
.y15e{bottom:226.830000px;}
.y12a{bottom:228.810000px;}
.yd0{bottom:231.150000px;}
.y8f{bottom:233.490000px;}
.y9e{bottom:235.650000px;}
.y101{bottom:235.830000px;}
.y81{bottom:236.550000px;}
.y2a{bottom:237.270000px;}
.y5e{bottom:245.550000px;}
.y15d{bottom:247.890000px;}
.y129{bottom:249.870000px;}
.y8e{bottom:254.550000px;}
.y80{bottom:257.610000px;}
.y29{bottom:258.330000px;}
.y100{bottom:261.030000px;}
.y5d{bottom:266.610000px;}
.y15c{bottom:268.950000px;}
.y128{bottom:270.930000px;}
.y8d{bottom:275.610000px;}
.yb0{bottom:276.150000px;}
.yca{bottom:276.510000px;}
.y7f{bottom:278.670000px;}
.y28{bottom:279.390000px;}
.yfe{bottom:285.510000px;}
.y5c{bottom:287.670000px;}
.ya1{bottom:288.390000px;}
.y15b{bottom:290.010000px;}
.y127{bottom:291.990000px;}
.y8c{bottom:296.670000px;}
.yce{bottom:297.570000px;}
.y7e{bottom:299.730000px;}
.y27{bottom:300.450000px;}
.y5b{bottom:308.730000px;}
.y15a{bottom:311.070000px;}
.y126{bottom:312.870000px;}
.y8b{bottom:317.730000px;}
.ycc{bottom:318.630000px;}
.y7d{bottom:320.790000px;}
.y26{bottom:321.510000px;}
.y153{bottom:322.050000px;}
.yb4{bottom:325.470000px;}
.yad{bottom:326.910000px;}
.yff{bottom:328.575000px;}
.y5a{bottom:329.835000px;}
.y159{bottom:332.175000px;}
.y125{bottom:333.975000px;}
.ya4{bottom:338.475000px;}
.y8a{bottom:338.835000px;}
.y7c{bottom:341.895000px;}
.y25{bottom:342.615000px;}
.y59{bottom:350.895000px;}
.y158{bottom:353.235000px;}
.y124{bottom:355.035000px;}
.y89{bottom:359.895000px;}
.y7b{bottom:362.955000px;}
.y24{bottom:363.675000px;}
.yc7{bottom:364.215000px;}
.y58{bottom:371.955000px;}
.yb1{bottom:373.935000px;}
.y152{bottom:374.295000px;}
.y123{bottom:376.095000px;}
.yfd{bottom:380.595000px;}
.y88{bottom:380.955000px;}
.ybf{bottom:384.015000px;}
.y23{bottom:384.735000px;}
.yc9{bottom:385.275000px;}
.ya5{bottom:388.515000px;}
.y7a{bottom:393.015000px;}
.y151{bottom:395.355000px;}
.y122{bottom:397.155000px;}
.yfc{bottom:401.655000px;}
.y57{bottom:402.015000px;}
.ybe{bottom:405.075000px;}
.y22{bottom:405.795000px;}
.yc8{bottom:406.335000px;}
.y79{bottom:414.075000px;}
.y150{bottom:416.415000px;}
.y121{bottom:418.215000px;}
.yfb{bottom:422.715000px;}
.y56{bottom:423.075000px;}
.ybd{bottom:426.135000px;}
.yb2{bottom:426.495000px;}
.y21{bottom:426.855000px;}
.y78{bottom:435.135000px;}
.y14f{bottom:437.475000px;}
.ya6{bottom:438.735000px;}
.y120{bottom:439.275000px;}
.yfa{bottom:443.775000px;}
.y55{bottom:444.135000px;}
.ybc{bottom:447.195000px;}
.y20{bottom:450.255000px;}
.yc3{bottom:451.875000px;}
.y77{bottom:456.195000px;}
.y14e{bottom:458.535000px;}
.y11f{bottom:460.335000px;}
.yf9{bottom:464.835000px;}
.y54{bottom:465.195000px;}
.ybb{bottom:468.255000px;}
.yc6{bottom:472.935000px;}
.y76{bottom:477.255000px;}
.y14d{bottom:479.595000px;}
.y1f{bottom:480.135000px;}
.y11e{bottom:481.395000px;}
.ya7{bottom:484.095000px;}
.yf8{bottom:485.895000px;}
.y53{bottom:486.255000px;}
.yc5{bottom:493.995000px;}
.y75{bottom:498.315000px;}
.y14c{bottom:500.655000px;}
.y1e{bottom:501.195000px;}
.yf7{bottom:506.955000px;}
.y52{bottom:507.315000px;}
.y11d{bottom:511.455000px;}
.y74{bottom:519.375000px;}
.y14b{bottom:521.715000px;}
.y1d{bottom:522.255000px;}
.yf6{bottom:528.015000px;}
.y51{bottom:528.375000px;}
.y11c{bottom:532.515000px;}
.yc0{bottom:539.355000px;}
.y73{bottom:540.435000px;}
.y14a{bottom:542.775000px;}
.y1c{bottom:543.315000px;}
.yf5{bottom:549.075000px;}
.y50{bottom:549.435000px;}
.y11b{bottom:553.575000px;}
.y72{bottom:561.495000px;}
.y149{bottom:563.835000px;}
.y1b{bottom:564.375000px;}
.yf4{bottom:570.135000px;}
.y4f{bottom:570.495000px;}
.y11a{bottom:574.635000px;}
.y71{bottom:582.555000px;}
.y148{bottom:584.895000px;}
.y1a{bottom:585.435000px;}
.yf3{bottom:591.195000px;}
.y4e{bottom:591.555000px;}
.y119{bottom:595.725000px;}
.y70{bottom:603.645000px;}
.y147{bottom:605.985000px;}
.y19{bottom:606.525000px;}
.yf2{bottom:612.285000px;}
.y4d{bottom:612.645000px;}
.yba{bottom:613.905000px;}
.y118{bottom:616.785000px;}
.y6f{bottom:624.705000px;}
.y146{bottom:627.045000px;}
.y18{bottom:627.585000px;}
.yf1{bottom:633.345000px;}
.y4c{bottom:633.705000px;}
.y117{bottom:637.845000px;}
.y6e{bottom:645.765000px;}
.y145{bottom:648.105000px;}
.y17{bottom:648.645000px;}
.yf0{bottom:654.405000px;}
.y4b{bottom:654.765000px;}
.y116{bottom:655.665000px;}
.y6d{bottom:666.825000px;}
.y144{bottom:668.985000px;}
.y16{bottom:669.705000px;}
.yef{bottom:675.465000px;}
.y4a{bottom:675.825000px;}
.y10f{bottom:676.725000px;}
.y6c{bottom:687.885000px;}
.y143{bottom:690.045000px;}
.y15{bottom:690.765000px;}
.yee{bottom:696.525000px;}
.y49{bottom:696.885000px;}
.y115{bottom:697.785000px;}
.y6b{bottom:708.945000px;}
.y142{bottom:711.105000px;}
.y14{bottom:711.825000px;}
.y48{bottom:717.945000px;}
.y114{bottom:718.845000px;}
.yed{bottom:726.585000px;}
.y6a{bottom:730.005000px;}
.y141{bottom:732.165000px;}
.y13{bottom:732.885000px;}
.y47{bottom:739.005000px;}
.y113{bottom:739.905000px;}
.yec{bottom:747.645000px;}
.y69{bottom:751.065000px;}
.y140{bottom:753.225000px;}
.y12{bottom:753.945000px;}
.y46{bottom:760.065000px;}
.y112{bottom:760.965000px;}
.yeb{bottom:768.705000px;}
.y68{bottom:772.125000px;}
.y13f{bottom:774.285000px;}
.y11{bottom:775.005000px;}
.y45{bottom:781.125000px;}
.y111{bottom:785.445000px;}
.yea{bottom:789.765000px;}
.y67{bottom:793.185000px;}
.y13e{bottom:795.345000px;}
.y10{bottom:796.245000px;}
.y44{bottom:802.185000px;}
.y10d{bottom:809.745000px;}
.ye9{bottom:810.825000px;}
.y66{bottom:814.245000px;}
.y13d{bottom:816.405000px;}
.yf{bottom:819.465000px;}
.y43{bottom:823.245000px;}
.ye8{bottom:831.885000px;}
.y9d{bottom:835.305000px;}
.y13c{bottom:837.465000px;}
.y42{bottom:844.305000px;}
.ye{bottom:845.745000px;}
.ye7{bottom:852.945000px;}
.y10e{bottom:855.285000px;}
.y9c{bottom:856.365000px;}
.y13b{bottom:858.525000px;}
.y41{bottom:865.410000px;}
.yd{bottom:866.850000px;}
.ye6{bottom:874.050000px;}
.y9b{bottom:877.470000px;}
.y13a{bottom:879.630000px;}
.y40{bottom:886.470000px;}
.yc{bottom:887.910000px;}
.ye5{bottom:895.110000px;}
.y9a{bottom:898.530000px;}
.y139{bottom:900.690000px;}
.yb{bottom:904.470000px;}
.y3f{bottom:907.530000px;}
.ye4{bottom:916.170000px;}
.y99{bottom:919.590000px;}
.y138{bottom:921.750000px;}
.ya{bottom:927.690000px;}
.y3e{bottom:928.590000px;}
.ye3{bottom:937.230000px;}
.y98{bottom:940.650000px;}
.y137{bottom:942.810000px;}
.y3d{bottom:949.650000px;}
.ye2{bottom:953.970000px;}
.y9{bottom:954.150000px;}
.y97{bottom:961.710000px;}
.y136{bottom:963.870000px;}
.y3c{bottom:970.710000px;}
.ydd{bottom:978.270000px;}
.y96{bottom:982.770000px;}
.y135{bottom:984.930000px;}
.y8{bottom:987.810000px;}
.y3b{bottom:991.770000px;}
.ye1{bottom:999.330000px;}
.y134{bottom:1005.990000px;}
.y3a{bottom:1012.830000px;}
.ye0{bottom:1020.390000px;}
.y7{bottom:1021.470000px;}
.y133{bottom:1027.050000px;}
.y39{bottom:1033.890000px;}
.y132{bottom:1048.110000px;}
.y38{bottom:1054.950000px;}
.y5{bottom:1060.530000px;}
.yd8{bottom:1065.930000px;}
.y131{bottom:1069.170000px;}
.y37{bottom:1076.010000px;}
.ydc{bottom:1086.990000px;}
.y130{bottom:1090.230000px;}
.y4{bottom:1091.490000px;}
.y36{bottom:1097.070000px;}
.yda{bottom:1108.050000px;}
.y35{bottom:1118.130000px;}
.y3{bottom:1122.450000px;}
.y12e{bottom:1129.110000px;}
.y34{bottom:1139.220000px;}
.y2{bottom:1153.440000px;}
.y33{bottom:1170.000000px;}
.y1{bottom:1186.020000px;}
.y32{bottom:1193.220000px;}
.h18{height:21.060000px;}
.h22{height:21.096000px;}
.h1e{height:21.600000px;}
.h1d{height:21.780000px;}
.h14{height:22.860000px;}
.h12{height:26.280000px;}
.hd{height:28.800000px;}
.hb{height:28.980000px;}
.h13{height:29.016000px;}
.h6{height:38.671172px;}
.h1c{height:39.600000px;}
.h15{height:42.120000px;}
.h1a{height:42.156000px;}
.h10{height:42.759141px;}
.ha{height:45.578672px;}
.he{height:47.880000px;}
.h7{height:48.088125px;}
.hc{height:49.394180px;}
.h11{height:52.776000px;}
.hf{height:53.991000px;}
.h9{height:59.439023px;}
.h17{height:59.551172px;}
.h8{height:61.189805px;}
.h4{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:71.613281px;}
.h16{height:84.240000px;}
.h19{height:84.276000px;}
.h1b{height:85.176000px;}
.h21{height:87.660000px;}
.h1f{height:87.696000px;}
.h2{height:98.051133px;}
.h20{height:129.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3b{width:35.820000px;}
.w2c{width:37.260000px;}
.w3d{width:45.720000px;}
.w10{width:49.680000px;}
.wf{width:49.860000px;}
.we{width:49.896000px;}
.w11{width:50.076000px;}
.w2b{width:53.100000px;}
.w33{width:53.280000px;}
.w23{width:53.820000px;}
.w32{width:60.696000px;}
.w22{width:60.876000px;}
.w1d{width:63.576000px;}
.w46{width:70.020000px;}
.w36{width:71.280000px;}
.w37{width:71.496000px;}
.w45{width:71.820000px;}
.w3f{width:72.036000px;}
.w26{width:72.720000px;}
.w27{width:72.756000px;}
.w41{width:75.276000px;}
.w3c{width:76.536000px;}
.w38{width:78.840000px;}
.w40{width:79.020000px;}
.w39{width:79.236000px;}
.w28{width:80.100000px;}
.w29{width:80.496000px;}
.w13{width:81.216000px;}
.w2a{width:81.360000px;}
.w43{width:82.296000px;}
.w2d{width:87.876000px;}
.w3a{width:88.920000px;}
.w1a{width:91.260000px;}
.w19{width:91.476000px;}
.w7{width:94.860000px;}
.w5{width:95.436000px;}
.w6{width:95.616000px;}
.w44{width:98.100000px;}
.w21{width:104.760000px;}
.w14{width:106.380000px;}
.w3e{width:107.100000px;}
.w2f{width:112.356000px;}
.w9{width:115.560000px;}
.w31{width:115.740000px;}
.wa{width:116.460000px;}
.w8{width:118.260000px;}
.w1c{width:121.176000px;}
.w1b{width:121.356000px;}
.w1f{width:125.136000px;}
.w4{width:133.236000px;}
.w1e{width:133.380000px;}
.w3{width:133.416000px;}
.w25{width:134.460000px;}
.w42{width:141.840000px;}
.w35{width:142.200000px;}
.w30{width:142.776000px;}
.w20{width:145.476000px;}
.wc{width:145.656000px;}
.w34{width:158.070000px;}
.w24{width:160.590000px;}
.w18{width:162.900000px;}
.wd{width:187.770000px;}
.w16{width:196.950000px;}
.w17{width:242.535000px;}
.w12{width:285.870000px;}
.wb{width:526.965000px;}
.w15{width:757.230000px;}
.w2e{width:785.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:4.500000px;}
.x3d{left:8.100000px;}
.x1a{left:10.800000px;}
.x14{left:15.120000px;}
.x10{left:18.585000px;}
.xd{left:19.980000px;}
.x17{left:21.240000px;}
.x13{left:22.680000px;}
.x5{left:24.876000px;}
.xe{left:27.000000px;}
.x11{left:28.305000px;}
.xa{left:29.916000px;}
.x8{left:32.976000px;}
.x9{left:34.416000px;}
.x4{left:35.676000px;}
.x7{left:40.716000px;}
.x3{left:41.976000px;}
.xb{left:43.776000px;}
.x6{left:47.556000px;}
.x1{left:53.999987px;}
.x19{left:63.936000px;}
.x44{left:80.999987px;}
.x18{left:82.440000px;}
.x2{left:84.960000px;}
.x3b{left:89.820000px;}
.x32{left:91.260000px;}
.x3c{left:95.796000px;}
.x45{left:108.035987px;}
.x2a{left:117.576000px;}
.x24{left:135.216000px;}
.x3e{left:141.516000px;}
.x33{left:166.350000px;}
.x2b{left:179.130000px;}
.x39{left:237.630000px;}
.x1c{left:241.770000px;}
.x3f{left:248.610000px;}
.x25{left:250.950000px;}
.xf{left:276.150000px;}
.x46{left:280.469987px;}
.x1e{left:291.675000px;}
.x34{left:309.135000px;}
.x40{left:320.655000px;}
.x2c{left:324.615000px;}
.x1f{left:341.535000px;}
.x29{left:372.315000px;}
.x1b{left:377.895000px;}
.x20{left:391.215000px;}
.xc{left:400.575000px;}
.x35{left:424.875000px;}
.x2d{left:429.375000px;}
.x21{left:441.075000px;}
.x41{left:474.945000px;}
.x36{left:485.565000px;}
.x22{left:491.145000px;}
.x26{left:493.485000px;}
.x12{left:533.625000px;}
.x37{left:538.845000px;}
.x23{left:541.005000px;}
.x2e{left:544.065000px;}
.x43{left:546.765000px;}
.x3a{left:617.685000px;}
.x30{left:624.165000px;}
.x27{left:656.385000px;}
.x16{left:688.830000px;}
.x15{left:690.630000px;}
.x38{left:696.930000px;}
.x42{left:699.090000px;}
.x2f{left:704.670000px;}
.x28{left:747.870000px;}
.x31{left:786.030000px;}
.x47{left:839.309987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.853333pt;}
.ls1f{letter-spacing:-0.484267pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.238933pt;}
.ls7{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.190933pt;}
.lsf{letter-spacing:-0.185600pt;}
.ls8{letter-spacing:-0.102933pt;}
.ls19{letter-spacing:-0.099733pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls1a{letter-spacing:-0.054400pt;}
.ls1c{letter-spacing:-0.051840pt;}
.lse{letter-spacing:-0.049280pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.021120pt;}
.ls24{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.154667pt;}
.ls9{letter-spacing:0.155733pt;}
.ls18{letter-spacing:0.173333pt;}
.ls1e{letter-spacing:0.186133pt;}
.ls4{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.272000pt;}
.lsc{letter-spacing:0.279467pt;}
.ls17{letter-spacing:0.317333pt;}
.lsd{letter-spacing:0.349867pt;}
.ls1d{letter-spacing:0.385280pt;}
.ls20{letter-spacing:0.401067pt;}
.ls22{letter-spacing:0.426240pt;}
.ls25{letter-spacing:10.832640pt;}
.ls10{letter-spacing:15.312640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls21{letter-spacing:37.840640pt;}
.ws1{word-spacing:-14.656000pt;}
.ws0{word-spacing:-14.016000pt;}
.ws2{word-spacing:-12.894613pt;}
.ws14{word-spacing:-12.406187pt;}
.wsd{word-spacing:-12.322453pt;}
.ws8{word-spacing:-12.284587pt;}
.ws13{word-spacing:-12.191253pt;}
.wse{word-spacing:-12.178453pt;}
.ws5{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.955840pt;}
.ws12{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.950720pt;}
.wsf{word-spacing:-11.905387pt;}
.ws6{word-spacing:-11.902187pt;}
.wsa{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.wsc{word-spacing:-11.766187pt;}
.ws3{word-spacing:-8.389120pt;}
.ws11{word-spacing:-7.879893pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-4.050560pt;}
._3{margin-left:-2.368000pt;}
._0{margin-left:-1.021440pt;}
._1{width:0.936320pt;}
._2{width:2.224853pt;}
._f{width:3.207040pt;}
._c{width:4.462080pt;}
._9{width:5.471360pt;}
._a{width:6.371627pt;}
._7{width:7.378560pt;}
._6{width:9.107840pt;}
._8{width:10.624000pt;}
._5{width:11.916800pt;}
._b{width:13.758080pt;}
._12{width:14.664960pt;}
._e{width:15.564160pt;}
._d{width:16.626560pt;}
._10{width:17.894400pt;}
._13{width:18.972160pt;}
._19{width:19.887360pt;}
._11{width:20.789760pt;}
._17{width:22.044800pt;}
._18{width:23.331840pt;}
._1c{width:27.699840pt;}
._1b{width:28.684800pt;}
._1a{width:45.152000pt;}
._16{width:138.961920pt;}
._15{width:147.939200pt;}
._14{width:204.373120pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.yb9{bottom:-50.074667pt;}
.yb8{bottom:-21.760000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:0.480000pt;}
.ya0{bottom:0.640000pt;}
.yd6{bottom:5.914667pt;}
.yc1{bottom:5.920000pt;}
.y12f{bottom:5.946667pt;}
.y154{bottom:5.960000pt;}
.y109{bottom:6.234667pt;}
.y102{bottom:6.240000pt;}
.y107{bottom:6.400000pt;}
.y10a{bottom:6.554667pt;}
.y103{bottom:6.560000pt;}
.yb7{bottom:7.680000pt;}
.yac{bottom:12.800000pt;}
.yb3{bottom:13.280000pt;}
.ya2{bottom:15.360000pt;}
.y9f{bottom:15.520000pt;}
.yb5{bottom:15.560000pt;}
.ya9{bottom:17.600000pt;}
.yaf{bottom:21.800000pt;}
.yd5{bottom:24.634667pt;}
.yc2{bottom:24.640000pt;}
.ydb{bottom:24.666667pt;}
.ycd{bottom:24.680000pt;}
.yab{bottom:25.920000pt;}
.ya8{bottom:32.320000pt;}
.yae{bottom:36.680000pt;}
.ydf{bottom:37.440000pt;}
.yaa{bottom:39.040000pt;}
.yde{bottom:43.360000pt;}
.y6{bottom:54.592000pt;}
.yd3{bottom:62.074667pt;}
.yc4{bottom:62.080000pt;}
.yd9{bottom:62.106667pt;}
.ycb{bottom:62.120000pt;}
.y31{bottom:79.872000pt;}
.y157{bottom:84.032000pt;}
.y65{bottom:87.232000pt;}
.yd2{bottom:90.112000pt;}
.y164{bottom:92.192000pt;}
.y12d{bottom:94.752000pt;}
.y95{bottom:95.232000pt;}
.y87{bottom:97.952000pt;}
.y10c{bottom:98.432000pt;}
.y30{bottom:98.592000pt;}
.y110{bottom:102.560000pt;}
.y64{bottom:105.952000pt;}
.y163{bottom:108.032000pt;}
.yd7{bottom:108.832000pt;}
.y94{bottom:113.952000pt;}
.y12b{bottom:116.512000pt;}
.y86{bottom:116.672000pt;}
.y10b{bottom:117.152000pt;}
.y2f{bottom:117.312000pt;}
.y156{bottom:124.512000pt;}
.y63{bottom:124.672000pt;}
.y162{bottom:126.752000pt;}
.yd4{bottom:127.552000pt;}
.y93{bottom:132.672000pt;}
.y108{bottom:132.992000pt;}
.y85{bottom:135.386667pt;}
.y2e{bottom:136.026667pt;}
.y62{bottom:143.386667pt;}
.y161{bottom:145.466667pt;}
.y92{bottom:151.386667pt;}
.y106{bottom:152.346667pt;}
.y84{bottom:154.106667pt;}
.y2d{bottom:154.746667pt;}
.y12c{bottom:156.986667pt;}
.y61{bottom:162.106667pt;}
.y160{bottom:164.186667pt;}
.y155{bottom:164.986667pt;}
.ycf{bottom:168.026667pt;}
.y91{bottom:170.106667pt;}
.yb6{bottom:171.066667pt;}
.y105{bottom:171.546667pt;}
.y83{bottom:172.826667pt;}
.y2c{bottom:173.466667pt;}
.y60{bottom:180.826667pt;}
.y15f{bottom:182.906667pt;}
.yd1{bottom:186.746667pt;}
.y90{bottom:188.826667pt;}
.y104{bottom:190.906667pt;}
.y82{bottom:191.546667pt;}
.y2b{bottom:192.186667pt;}
.y5f{bottom:199.546667pt;}
.y15e{bottom:201.626667pt;}
.y12a{bottom:203.386667pt;}
.yd0{bottom:205.466667pt;}
.y8f{bottom:207.546667pt;}
.y9e{bottom:209.466667pt;}
.y101{bottom:209.626667pt;}
.y81{bottom:210.266667pt;}
.y2a{bottom:210.906667pt;}
.y5e{bottom:218.266667pt;}
.y15d{bottom:220.346667pt;}
.y129{bottom:222.106667pt;}
.y8e{bottom:226.266667pt;}
.y80{bottom:228.986667pt;}
.y29{bottom:229.626667pt;}
.y100{bottom:232.026667pt;}
.y5d{bottom:236.986667pt;}
.y15c{bottom:239.066667pt;}
.y128{bottom:240.826667pt;}
.y8d{bottom:244.986667pt;}
.yb0{bottom:245.466667pt;}
.yca{bottom:245.786667pt;}
.y7f{bottom:247.706667pt;}
.y28{bottom:248.346667pt;}
.yfe{bottom:253.786667pt;}
.y5c{bottom:255.706667pt;}
.ya1{bottom:256.346667pt;}
.y15b{bottom:257.786667pt;}
.y127{bottom:259.546667pt;}
.y8c{bottom:263.706667pt;}
.yce{bottom:264.506667pt;}
.y7e{bottom:266.426667pt;}
.y27{bottom:267.066667pt;}
.y5b{bottom:274.426667pt;}
.y15a{bottom:276.506667pt;}
.y126{bottom:278.106667pt;}
.y8b{bottom:282.426667pt;}
.ycc{bottom:283.226667pt;}
.y7d{bottom:285.146667pt;}
.y26{bottom:285.786667pt;}
.y153{bottom:286.266667pt;}
.yb4{bottom:289.306667pt;}
.yad{bottom:290.586667pt;}
.yff{bottom:292.066667pt;}
.y5a{bottom:293.186667pt;}
.y159{bottom:295.266667pt;}
.y125{bottom:296.866667pt;}
.ya4{bottom:300.866667pt;}
.y8a{bottom:301.186667pt;}
.y7c{bottom:303.906667pt;}
.y25{bottom:304.546667pt;}
.y59{bottom:311.906667pt;}
.y158{bottom:313.986667pt;}
.y124{bottom:315.586667pt;}
.y89{bottom:319.906667pt;}
.y7b{bottom:322.626667pt;}
.y24{bottom:323.266667pt;}
.yc7{bottom:323.746667pt;}
.y58{bottom:330.626667pt;}
.yb1{bottom:332.386667pt;}
.y152{bottom:332.706667pt;}
.y123{bottom:334.306667pt;}
.yfd{bottom:338.306667pt;}
.y88{bottom:338.626667pt;}
.ybf{bottom:341.346667pt;}
.y23{bottom:341.986667pt;}
.yc9{bottom:342.466667pt;}
.ya5{bottom:345.346667pt;}
.y7a{bottom:349.346667pt;}
.y151{bottom:351.426667pt;}
.y122{bottom:353.026667pt;}
.yfc{bottom:357.026667pt;}
.y57{bottom:357.346667pt;}
.ybe{bottom:360.066667pt;}
.y22{bottom:360.706667pt;}
.yc8{bottom:361.186667pt;}
.y79{bottom:368.066667pt;}
.y150{bottom:370.146667pt;}
.y121{bottom:371.746667pt;}
.yfb{bottom:375.746667pt;}
.y56{bottom:376.066667pt;}
.ybd{bottom:378.786667pt;}
.yb2{bottom:379.106667pt;}
.y21{bottom:379.426667pt;}
.y78{bottom:386.786667pt;}
.y14f{bottom:388.866667pt;}
.ya6{bottom:389.986667pt;}
.y120{bottom:390.466667pt;}
.yfa{bottom:394.466667pt;}
.y55{bottom:394.786667pt;}
.ybc{bottom:397.506667pt;}
.y20{bottom:400.226667pt;}
.yc3{bottom:401.666667pt;}
.y77{bottom:405.506667pt;}
.y14e{bottom:407.586667pt;}
.y11f{bottom:409.186667pt;}
.yf9{bottom:413.186667pt;}
.y54{bottom:413.506667pt;}
.ybb{bottom:416.226667pt;}
.yc6{bottom:420.386667pt;}
.y76{bottom:424.226667pt;}
.y14d{bottom:426.306667pt;}
.y1f{bottom:426.786667pt;}
.y11e{bottom:427.906667pt;}
.ya7{bottom:430.306667pt;}
.yf8{bottom:431.906667pt;}
.y53{bottom:432.226667pt;}
.yc5{bottom:439.106667pt;}
.y75{bottom:442.946667pt;}
.y14c{bottom:445.026667pt;}
.y1e{bottom:445.506667pt;}
.yf7{bottom:450.626667pt;}
.y52{bottom:450.946667pt;}
.y11d{bottom:454.626667pt;}
.y74{bottom:461.666667pt;}
.y14b{bottom:463.746667pt;}
.y1d{bottom:464.226667pt;}
.yf6{bottom:469.346667pt;}
.y51{bottom:469.666667pt;}
.y11c{bottom:473.346667pt;}
.yc0{bottom:479.426667pt;}
.y73{bottom:480.386667pt;}
.y14a{bottom:482.466667pt;}
.y1c{bottom:482.946667pt;}
.yf5{bottom:488.066667pt;}
.y50{bottom:488.386667pt;}
.y11b{bottom:492.066667pt;}
.y72{bottom:499.106667pt;}
.y149{bottom:501.186667pt;}
.y1b{bottom:501.666667pt;}
.yf4{bottom:506.786667pt;}
.y4f{bottom:507.106667pt;}
.y11a{bottom:510.786667pt;}
.y71{bottom:517.826667pt;}
.y148{bottom:519.906667pt;}
.y1a{bottom:520.386667pt;}
.yf3{bottom:525.506667pt;}
.y4e{bottom:525.826667pt;}
.y119{bottom:529.533333pt;}
.y70{bottom:536.573333pt;}
.y147{bottom:538.653333pt;}
.y19{bottom:539.133333pt;}
.yf2{bottom:544.253333pt;}
.y4d{bottom:544.573333pt;}
.yba{bottom:545.693333pt;}
.y118{bottom:548.253333pt;}
.y6f{bottom:555.293333pt;}
.y146{bottom:557.373333pt;}
.y18{bottom:557.853333pt;}
.yf1{bottom:562.973333pt;}
.y4c{bottom:563.293333pt;}
.y117{bottom:566.973333pt;}
.y6e{bottom:574.013333pt;}
.y145{bottom:576.093333pt;}
.y17{bottom:576.573333pt;}
.yf0{bottom:581.693333pt;}
.y4b{bottom:582.013333pt;}
.y116{bottom:582.813333pt;}
.y6d{bottom:592.733333pt;}
.y144{bottom:594.653333pt;}
.y16{bottom:595.293333pt;}
.yef{bottom:600.413333pt;}
.y4a{bottom:600.733333pt;}
.y10f{bottom:601.533333pt;}
.y6c{bottom:611.453333pt;}
.y143{bottom:613.373333pt;}
.y15{bottom:614.013333pt;}
.yee{bottom:619.133333pt;}
.y49{bottom:619.453333pt;}
.y115{bottom:620.253333pt;}
.y6b{bottom:630.173333pt;}
.y142{bottom:632.093333pt;}
.y14{bottom:632.733333pt;}
.y48{bottom:638.173333pt;}
.y114{bottom:638.973333pt;}
.yed{bottom:645.853333pt;}
.y6a{bottom:648.893333pt;}
.y141{bottom:650.813333pt;}
.y13{bottom:651.453333pt;}
.y47{bottom:656.893333pt;}
.y113{bottom:657.693333pt;}
.yec{bottom:664.573333pt;}
.y69{bottom:667.613333pt;}
.y140{bottom:669.533333pt;}
.y12{bottom:670.173333pt;}
.y46{bottom:675.613333pt;}
.y112{bottom:676.413333pt;}
.yeb{bottom:683.293333pt;}
.y68{bottom:686.333333pt;}
.y13f{bottom:688.253333pt;}
.y11{bottom:688.893333pt;}
.y45{bottom:694.333333pt;}
.y111{bottom:698.173333pt;}
.yea{bottom:702.013333pt;}
.y67{bottom:705.053333pt;}
.y13e{bottom:706.973333pt;}
.y10{bottom:707.773333pt;}
.y44{bottom:713.053333pt;}
.y10d{bottom:719.773333pt;}
.ye9{bottom:720.733333pt;}
.y66{bottom:723.773333pt;}
.y13d{bottom:725.693333pt;}
.yf{bottom:728.413333pt;}
.y43{bottom:731.773333pt;}
.ye8{bottom:739.453333pt;}
.y9d{bottom:742.493333pt;}
.y13c{bottom:744.413333pt;}
.y42{bottom:750.493333pt;}
.ye{bottom:751.773333pt;}
.ye7{bottom:758.173333pt;}
.y10e{bottom:760.253333pt;}
.y9c{bottom:761.213333pt;}
.y13b{bottom:763.133333pt;}
.y41{bottom:769.253333pt;}
.yd{bottom:770.533333pt;}
.ye6{bottom:776.933333pt;}
.y9b{bottom:779.973333pt;}
.y13a{bottom:781.893333pt;}
.y40{bottom:787.973333pt;}
.yc{bottom:789.253333pt;}
.ye5{bottom:795.653333pt;}
.y9a{bottom:798.693333pt;}
.y139{bottom:800.613333pt;}
.yb{bottom:803.973333pt;}
.y3f{bottom:806.693333pt;}
.ye4{bottom:814.373333pt;}
.y99{bottom:817.413333pt;}
.y138{bottom:819.333333pt;}
.ya{bottom:824.613333pt;}
.y3e{bottom:825.413333pt;}
.ye3{bottom:833.093333pt;}
.y98{bottom:836.133333pt;}
.y137{bottom:838.053333pt;}
.y3d{bottom:844.133333pt;}
.ye2{bottom:847.973333pt;}
.y9{bottom:848.133333pt;}
.y97{bottom:854.853333pt;}
.y136{bottom:856.773333pt;}
.y3c{bottom:862.853333pt;}
.ydd{bottom:869.573333pt;}
.y96{bottom:873.573333pt;}
.y135{bottom:875.493333pt;}
.y8{bottom:878.053333pt;}
.y3b{bottom:881.573333pt;}
.ye1{bottom:888.293333pt;}
.y134{bottom:894.213333pt;}
.y3a{bottom:900.293333pt;}
.ye0{bottom:907.013333pt;}
.y7{bottom:907.973333pt;}
.y133{bottom:912.933333pt;}
.y39{bottom:919.013333pt;}
.y132{bottom:931.653333pt;}
.y38{bottom:937.733333pt;}
.y5{bottom:942.693333pt;}
.yd8{bottom:947.493333pt;}
.y131{bottom:950.373333pt;}
.y37{bottom:956.453333pt;}
.ydc{bottom:966.213333pt;}
.y130{bottom:969.093333pt;}
.y4{bottom:970.213333pt;}
.y36{bottom:975.173333pt;}
.yda{bottom:984.933333pt;}
.y35{bottom:993.893333pt;}
.y3{bottom:997.733333pt;}
.y12e{bottom:1003.653333pt;}
.y34{bottom:1012.640000pt;}
.y2{bottom:1025.280000pt;}
.y33{bottom:1040.000000pt;}
.y1{bottom:1054.240000pt;}
.y32{bottom:1060.640000pt;}
.h18{height:18.720000pt;}
.h22{height:18.752000pt;}
.h1e{height:19.200000pt;}
.h1d{height:19.360000pt;}
.h14{height:20.320000pt;}
.h12{height:23.360000pt;}
.hd{height:25.600000pt;}
.hb{height:25.760000pt;}
.h13{height:25.792000pt;}
.h6{height:34.374375pt;}
.h1c{height:35.200000pt;}
.h15{height:37.440000pt;}
.h1a{height:37.472000pt;}
.h10{height:38.008125pt;}
.ha{height:40.514375pt;}
.he{height:42.560000pt;}
.h7{height:42.745000pt;}
.hc{height:43.905937pt;}
.h11{height:46.912000pt;}
.hf{height:47.992000pt;}
.h9{height:52.834688pt;}
.h17{height:52.934375pt;}
.h8{height:54.390938pt;}
.h4{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:63.656250pt;}
.h16{height:74.880000pt;}
.h19{height:74.912000pt;}
.h1b{height:75.712000pt;}
.h21{height:77.920000pt;}
.h1f{height:77.952000pt;}
.h2{height:87.156562pt;}
.h20{height:115.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3b{width:31.840000pt;}
.w2c{width:33.120000pt;}
.w3d{width:40.640000pt;}
.w10{width:44.160000pt;}
.wf{width:44.320000pt;}
.we{width:44.352000pt;}
.w11{width:44.512000pt;}
.w2b{width:47.200000pt;}
.w33{width:47.360000pt;}
.w23{width:47.840000pt;}
.w32{width:53.952000pt;}
.w22{width:54.112000pt;}
.w1d{width:56.512000pt;}
.w46{width:62.240000pt;}
.w36{width:63.360000pt;}
.w37{width:63.552000pt;}
.w45{width:63.840000pt;}
.w3f{width:64.032000pt;}
.w26{width:64.640000pt;}
.w27{width:64.672000pt;}
.w41{width:66.912000pt;}
.w3c{width:68.032000pt;}
.w38{width:70.080000pt;}
.w40{width:70.240000pt;}
.w39{width:70.432000pt;}
.w28{width:71.200000pt;}
.w29{width:71.552000pt;}
.w13{width:72.192000pt;}
.w2a{width:72.320000pt;}
.w43{width:73.152000pt;}
.w2d{width:78.112000pt;}
.w3a{width:79.040000pt;}
.w1a{width:81.120000pt;}
.w19{width:81.312000pt;}
.w7{width:84.320000pt;}
.w5{width:84.832000pt;}
.w6{width:84.992000pt;}
.w44{width:87.200000pt;}
.w21{width:93.120000pt;}
.w14{width:94.560000pt;}
.w3e{width:95.200000pt;}
.w2f{width:99.872000pt;}
.w9{width:102.720000pt;}
.w31{width:102.880000pt;}
.wa{width:103.520000pt;}
.w8{width:105.120000pt;}
.w1c{width:107.712000pt;}
.w1b{width:107.872000pt;}
.w1f{width:111.232000pt;}
.w4{width:118.432000pt;}
.w1e{width:118.560000pt;}
.w3{width:118.592000pt;}
.w25{width:119.520000pt;}
.w42{width:126.080000pt;}
.w35{width:126.400000pt;}
.w30{width:126.912000pt;}
.w20{width:129.312000pt;}
.wc{width:129.472000pt;}
.w34{width:140.506667pt;}
.w24{width:142.746667pt;}
.w18{width:144.800000pt;}
.wd{width:166.906667pt;}
.w16{width:175.066667pt;}
.w17{width:215.586667pt;}
.w12{width:254.106667pt;}
.wb{width:468.413333pt;}
.w15{width:673.093333pt;}
.w2e{width:697.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.000000pt;}
.x3d{left:7.200000pt;}
.x1a{left:9.600000pt;}
.x14{left:13.440000pt;}
.x10{left:16.520000pt;}
.xd{left:17.760000pt;}
.x17{left:18.880000pt;}
.x13{left:20.160000pt;}
.x5{left:22.112000pt;}
.xe{left:24.000000pt;}
.x11{left:25.160000pt;}
.xa{left:26.592000pt;}
.x8{left:29.312000pt;}
.x9{left:30.592000pt;}
.x4{left:31.712000pt;}
.x7{left:36.192000pt;}
.x3{left:37.312000pt;}
.xb{left:38.912000pt;}
.x6{left:42.272000pt;}
.x1{left:47.999988pt;}
.x19{left:56.832000pt;}
.x44{left:71.999988pt;}
.x18{left:73.280000pt;}
.x2{left:75.520000pt;}
.x3b{left:79.840000pt;}
.x32{left:81.120000pt;}
.x3c{left:85.152000pt;}
.x45{left:96.031988pt;}
.x2a{left:104.512000pt;}
.x24{left:120.192000pt;}
.x3e{left:125.792000pt;}
.x33{left:147.866667pt;}
.x2b{left:159.226667pt;}
.x39{left:211.226667pt;}
.x1c{left:214.906667pt;}
.x3f{left:220.986667pt;}
.x25{left:223.066667pt;}
.xf{left:245.466667pt;}
.x46{left:249.306655pt;}
.x1e{left:259.266667pt;}
.x34{left:274.786667pt;}
.x40{left:285.026667pt;}
.x2c{left:288.546667pt;}
.x1f{left:303.586667pt;}
.x29{left:330.946667pt;}
.x1b{left:335.906667pt;}
.x20{left:347.746667pt;}
.xc{left:356.066667pt;}
.x35{left:377.666667pt;}
.x2d{left:381.666667pt;}
.x21{left:392.066667pt;}
.x41{left:422.173333pt;}
.x36{left:431.613333pt;}
.x22{left:436.573333pt;}
.x26{left:438.653333pt;}
.x12{left:474.333333pt;}
.x37{left:478.973333pt;}
.x23{left:480.893333pt;}
.x2e{left:483.613333pt;}
.x43{left:486.013333pt;}
.x3a{left:549.053333pt;}
.x30{left:554.813333pt;}
.x27{left:583.453333pt;}
.x16{left:612.293333pt;}
.x15{left:613.893333pt;}
.x38{left:619.493333pt;}
.x42{left:621.413333pt;}
.x2f{left:626.373333pt;}
.x28{left:664.773333pt;}
.x31{left:698.693333pt;}
.x47{left:746.053322pt;}
}




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