
    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_658a02a23d80c4a0e3e21ce6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_de29fc91637aed1f51e53145.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_a2a37f83adbd0fc2954aa1bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_7c1dfd62a25fb96cd16a2317.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_a8eead9ae593fd0bfc02e129.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_e4d605fb4e438800d30fa613.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_b1e66ee678d270109df1ad7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_d6f51ecb74c3128eb813eda7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.777344;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_47c5431910fc4de9cfec0703.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;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_b412e27db990ae4edad88478.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.494603px;}
.v1{vertical-align:132.480004px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010688px;}
.lsf{letter-spacing:4.540500px;}
.ls9{letter-spacing:5.625000px;}
.ls6{letter-spacing:25.531403px;}
.ls3{letter-spacing:91.788750px;}
.lsd{letter-spacing:96.004718px;}
.ls1{letter-spacing:107.988751px;}
.ls8{letter-spacing:108.000705px;}
.lsa{letter-spacing:108.000768px;}
.lse{letter-spacing:108.004720px;}
.ls2{letter-spacing:108.010551px;}
.ls7{letter-spacing:108.014066px;}
.lsb{letter-spacing:108.017643px;}
.ls5{letter-spacing:108.021099px;}
.lsc{letter-spacing:172.788753px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(228,0,58),0 0.015em rgb(228,0,58),0.015em 0 rgb(228,0,58),0 -0.015em  rgb(228,0,58);}
.sc1{text-shadow:-0.015em 0 rgb(46,46,46),0 0.015em rgb(46,46,46),0.015em 0 rgb(46,46,46),0 -0.015em  rgb(46,46,46);}
.sc2{text-shadow:-0.015em 0 rgb(0,66,97),0 0.015em rgb(0,66,97),0.015em 0 rgb(0,66,97),0 -0.015em  rgb(0,66,97);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(228,0,58);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(46,46,46);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,66,97);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-81.360003px;}
.ws4{word-spacing:-65.088002px;}
.wsd{word-spacing:-48.816002px;}
.ws6{word-spacing:-43.392003px;}
.ws8{word-spacing:-40.680001px;}
.ws7{word-spacing:-37.968000px;}
.ws0{word-spacing:-32.544001px;}
.ws12{word-spacing:-31.188000px;}
.wse{word-spacing:-29.832002px;}
.wsb{word-spacing:-27.120000px;}
.wsf{word-spacing:-25.764002px;}
.ws2{word-spacing:-24.408001px;}
.ws10{word-spacing:-21.696001px;}
.wsc{word-spacing:-18.984000px;}
.ws3{word-spacing:-16.272001px;}
.ws5{word-spacing:-14.916001px;}
.ws13{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:439.666274px;}
.ws16{word-spacing:1452.763756px;}
._a{margin-left:-24.768001px;}
._10{margin-left:-23.232001px;}
._13{margin-left:-20.590500px;}
._11{margin-left:-17.232751px;}
._f{margin-left:-15.505229px;}
._12{margin-left:-14.349375px;}
._8{margin-left:-12.960000px;}
._9{margin-left:-11.857500px;}
._7{margin-left:-10.752001px;}
._d{margin-left:-9.504001px;}
._2{margin-left:-8.448001px;}
._4{margin-left:-6.978750px;}
._3{margin-left:-5.040000px;}
._6{margin-left:-3.960750px;}
._0{margin-left:-2.855250px;}
._1{margin-left:-1.008000px;}
._5{width:1.973250px;}
._c{width:3.706052px;}
._e{width:5.040000px;}
._b{width:108.183941px;}
.fc5{color:rgb(21,23,26);}
.fc6{color:rgb(0,66,97);}
.fc4{color:transparent;}
.fc1{color:rgb(228,0,58);}
.fc3{color:rgb(46,46,46);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:63.000002px;}
.fs3{font-size:66.000004px;}
.fs6{font-size:72.000002px;}
.fsd{font-size:84.000000px;}
.fs8{font-size:86.399998px;}
.fs7{font-size:96.000006px;}
.fs5{font-size:108.000003px;}
.fs11{font-size:114.000007px;}
.fs2{font-size:120.000001px;}
.fsf{font-size:132.000007px;}
.fs13{font-size:138.000001px;}
.fs0{font-size:144.000005px;}
.fs4{font-size:167.999999px;}
.fsb{font-size:180.000006px;}
.fsa{font-size:192.000012px;}
.fse{font-size:216.000007px;}
.fsc{font-size:264.000014px;}
.fs10{font-size:270.000009px;}
.fs9{font-size:288.000009px;}
.fs1{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.yd2{bottom:20.415400px;}
.y6{bottom:20.434677px;}
.y11{bottom:20.437750px;}
.y8b{bottom:20.811232px;}
.y26{bottom:20.811400px;}
.ye7{bottom:20.811402px;}
.y1c{bottom:20.813001px;}
.yf6{bottom:22.593609px;}
.yf7{bottom:26.791715px;}
.y1{bottom:39.625823px;}
.y92{bottom:40.611230px;}
.y25{bottom:40.611399px;}
.ye6{bottom:40.611401px;}
.y1b{bottom:40.613000px;}
.yb2{bottom:51.195129px;}
.yf5{bottom:51.393621px;}
.yee{bottom:58.055275px;}
.ye5{bottom:60.411399px;}
.y1a{bottom:60.412999px;}
.y69{bottom:72.276200px;}
.y42{bottom:78.864648px;}
.yf4{bottom:80.193610px;}
.ye{bottom:82.316913px;}
.ya{bottom:87.941913px;}
.y68{bottom:91.176199px;}
.yef{bottom:92.057118px;}
.yed{bottom:96.935276px;}
.y4d{bottom:98.780602px;}
.yf3{bottom:108.993623px;}
.ycd{bottom:110.613319px;}
.yc3{bottom:113.036603px;}
.yd{bottom:114.716914px;}
.y41{bottom:114.864643px;}
.y5d{bottom:119.318614px;}
.y9{bottom:120.341914px;}
.y4{bottom:131.090969px;}
.yec{bottom:135.815267px;}
.yf2{bottom:137.793623px;}
.y32{bottom:138.176697px;}
.y64{bottom:140.032891px;}
.y39{bottom:140.454676px;}
.y75{bottom:143.396529px;}
.yc2{bottom:145.436604px;}
.yc{bottom:147.116904px;}
.y44{bottom:148.257738px;}
.ycc{bottom:149.373320px;}
.y8{bottom:152.741904px;}
.yd9{bottom:154.052597px;}
.y7b{bottom:157.092873px;}
.y4c{bottom:157.100604px;}
.yab{bottom:157.232401px;}
.y79{bottom:157.303779px;}
.y5c{bottom:158.918604px;}
.y22{bottom:160.332425px;}
.y91{bottom:160.616510px;}
.y83{bottom:162.321594px;}
.yc9{bottom:162.380612px;}
.yf1{bottom:166.593613px;}
.y31{bottom:175.436687px;}
.yc1{bottom:178.484605px;}
.y7d{bottom:179.535580px;}
.y98{bottom:179.876612px;}
.ye0{bottom:179.876714px;}
.yb{bottom:183.116909px;}
.y21{bottom:186.252426px;}
.y7{bottom:188.741910px;}
.yd8{bottom:192.932598px;}
.yf0{bottom:195.393614px;}
.y8a{bottom:195.692527px;}
.y5b{bottom:198.518605px;}
.y7a{bottom:200.292877px;}
.y78{bottom:200.503780px;}
.y3{bottom:200.642707px;}
.y7c{bottom:201.135581px;}
.y43{bottom:204.331256px;}
.y82{bottom:205.521596px;}
.ycb{bottom:209.601937px;}
.y9d{bottom:209.876572px;}
.y30{bottom:212.696688px;}
.yea{bottom:213.476606px;}
.y38{bottom:214.854675px;}
.y4b{bottom:215.420606px;}
.yc8{bottom:220.700602px;}
.y77{bottom:222.103781px;}
.y81{bottom:227.121596px;}
.y20{bottom:227.172424px;}
.yc0{bottom:228.476591px;}
.y97{bottom:228.476625px;}
.ydf{bottom:228.476693px;}
.yd7{bottom:231.812588px;}
.y74{bottom:233.012535px;}
.y67{bottom:236.581751px;}
.y5a{bottom:238.118607px;}
.y58{bottom:244.598607px;}
.y2f{bottom:249.956678px;}
.y1f{bottom:253.092425px;}
.y9c{bottom:258.476585px;}
.y40{bottom:259.940615px;}
.ybf{bottom:260.876570px;}
.y90{bottom:261.896562px;}
.y66{bottom:267.361749px;}
.yd6{bottom:270.692589px;}
.y73{bottom:271.892537px;}
.yb6{bottom:272.636623px;}
.y4a{bottom:273.740608px;}
.ye3{bottom:274.580612px;}
.y3b{bottom:276.666114px;}
.y2{bottom:276.674705px;}
.y96{bottom:277.076604px;}
.y59{bottom:277.718608px;}
.yc7{bottom:282.908593px;}
.y37{bottom:286.374696px;}
.y2e{bottom:287.216680px;}
.yb0{bottom:289.951768px;}
.yde{bottom:292.076725px;}
.ybe{bottom:293.924593px;}
.y1e{bottom:294.012415px;}
.y65{bottom:298.141747px;}
.y89{bottom:303.452590px;}
.y9b{bottom:307.076609px;}
.y8f{bottom:310.496575px;}
.y72{bottom:310.772572px;}
.y1d{bottom:319.932412px;}
.y2d{bottom:324.476703px;}
.y36{bottom:325.254697px;}
.y95{bottom:325.676606px;}
.ya5{bottom:326.228610px;}
.yaf{bottom:329.551770px;}
.y3a{bottom:330.666116px;}
.y49{bottom:332.060587px;}
.y61{bottom:335.298540px;}
.ye2{bottom:336.788602px;}
.ye9{bottom:340.676602px;}
.ydd{bottom:340.676704px;}
.y3f{bottom:341.780621px;}
.ybd{bottom:343.916603px;}
.y71{bottom:349.652584px;}
.y56{bottom:355.291635px;}
.y9a{bottom:355.676599px;}
.y88{bottom:357.332599px;}
.y8e{bottom:359.096588px;}
.y2c{bottom:361.736704px;}
.y3e{bottom:367.700600px;}
.yae{bottom:369.151760px;}
.y60{bottom:374.898541px;}
.ybc{bottom:376.964592px;}
.yd5{bottom:378.452596px;}
.y10{bottom:383.504004px;}
.yca{bottom:386.228596px;}
.ya4{bottom:386.588608px;}
.y70{bottom:388.532585px;}
.ye8{bottom:389.276604px;}
.ydc{bottom:389.276705px;}
.y55{bottom:394.891637px;}
.ya8{bottom:396.206796px;}
.y2b{bottom:398.996694px;}
.y35{bottom:399.654696px;}
.yc6{bottom:401.780586px;}
.yaa{bottom:403.179309px;}
.y99{bottom:404.276590px;}
.yb5{bottom:404.372608px;}
.yf{bottom:405.103998px;}
.y48{bottom:405.380575px;}
.y3d{bottom:411.212586px;}
.y18{bottom:411.956582px;}
.y5f{bottom:414.498542px;}
.y8d{bottom:415.196594px;}
.yd4{bottom:417.332586px;}
.yb1{bottom:419.379313px;}
.y5e{bottom:420.978543px;}
.ybb{bottom:426.956601px;}
.ya0{bottom:428.348677px;}
.y80{bottom:430.541457px;}
.y54{bottom:434.491638px;}
.ya9{bottom:435.579316px;}
.ya7{bottom:435.806797px;}
.y57{bottom:440.971638px;}
.y6f{bottom:442.412572px;}
.y17{bottom:444.356595px;}
.ya3{bottom:446.948595px;}
.yad{bottom:448.351762px;}
.y3c{bottom:450.092587px;}
.y2a{bottom:451.256692px;}
.y7f{bottom:452.141460px;}
.y94{bottom:452.876591px;}
.ydb{bottom:452.876692px;}
.y62{bottom:454.098544px;}
.yd3{bottom:456.212587px;}
.yba{bottom:460.004591px;}
.yc5{bottom:463.988588px;}
.y87{bottom:465.092584px;}
.y9f{bottom:467.876689px;}
.y7e{bottom:473.741460px;}
.y34{bottom:474.054683px;}
.y53{bottom:474.091639px;}
.yb4{bottom:475.652588px;}
.y6a{bottom:478.052573px;}
.y63{bottom:478.628979px;}
.y85{bottom:479.248583px;}
.y6e{bottom:481.292573px;}
.yac{bottom:487.951763px;}
.y16{bottom:490.460592px;}
.yeb{bottom:490.674798px;}
.ycf{bottom:495.092589px;}
.ye1{bottom:498.980578px;}
.y84{bottom:500.848584px;}
.y93{bottom:501.476593px;}
.yda{bottom:501.476694px;}
.y29{bottom:503.516690px;}
.yb9{bottom:509.996589px;}
.ya6{bottom:515.006799px;}
.y15{bottom:516.380593px;}
.y8c{bottom:516.476584px;}
.y47{bottom:525.452582px;}
.yce{bottom:533.972590px;}
.y28{bottom:540.776685px;}
.yc4{bottom:541.748581px;}
.y14{bottom:542.300583px;}
.yb8{bottom:542.396586px;}
.yb3{bottom:546.932579px;}
.y33{bottom:548.454679px;}
.y51{bottom:551.664678px;}
.y6c{bottom:557.300584px;}
.y46{bottom:563.132586px;}
.y6d{bottom:565.076582px;}
.y9e{bottom:565.076683px;}
.ya2{bottom:567.668583px;}
.y86{bottom:572.852581px;}
.yb7{bottom:575.444580px;}
.y27{bottom:578.036682px;}
.y13{bottom:583.220580px;}
.y45{bottom:585.812583px;}
.y50{bottom:591.264679px;}
.y76{bottom:625.993982px;}
.y24{bottom:627.740965px;}
.y19{bottom:627.742389px;}
.y4f{bottom:630.864681px;}
.ya1{bottom:631.628966px;}
.y5{bottom:631.630390px;}
.y52{bottom:637.344681px;}
.yd1{bottom:659.792828px;}
.y4e{bottom:670.464682px;}
.y6b{bottom:695.782388px;}
.yd0{bottom:699.392829px;}
.y23{bottom:700.316959px;}
.ye4{bottom:715.222385px;}
.y12{bottom:755.102266px;}
.h1b{height:49.957033px;}
.h1e{height:51.679689px;}
.h4{height:52.335940px;}
.h8{height:53.367190px;}
.h25{height:53.830543px;}
.h7{height:57.093752px;}
.h13{height:66.609375px;}
.h9{height:76.125005px;}
.h10{height:77.625005px;}
.h6{height:85.640628px;}
.ha{height:86.132813px;}
.h1c{height:87.328128px;}
.h1a{height:90.398443px;}
.h3{height:95.156251px;}
.h22{height:97.031251px;}
.h1d{height:103.359378px;}
.h17{height:104.671881px;}
.h16{height:106.734381px;}
.h20{height:109.429689px;}
.h1{height:114.187504px;}
.h11{height:116.437504px;}
.he{height:120.585937px;}
.hd{height:133.218750px;}
.h5{height:135.843749px;}
.hf{height:142.734380px;}
.h1f{height:145.546880px;}
.h24{height:155.039067px;}
.hc{height:155.250010px;}
.h14{height:171.281255px;}
.h15{height:174.656256px;}
.h18{height:179.956060px;}
.h23{height:206.718757px;}
.h21{height:209.343761px;}
.h12{height:213.468762px;}
.hb{height:232.875007px;}
.h19{height:239.214385px;}
.h26{height:260.859383px;}
.h2{height:291.093759px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x5e{left:33.764764px;}
.x50{left:48.311851px;}
.x44{left:51.943468px;}
.xf{left:53.229216px;}
.x2{left:56.084649px;}
.x3{left:58.328743px;}
.x5{left:59.867718px;}
.x24{left:63.574058px;}
.x2d{left:65.630030px;}
.x40{left:68.721300px;}
.x3c{left:69.875817px;}
.x10{left:71.679455px;}
.x11{left:74.922266px;}
.x4{left:80.229217px;}
.x1c{left:89.229333px;}
.x2b{left:96.844387px;}
.x2c{left:102.772609px;}
.x12{left:109.479454px;}
.x42{left:129.888792px;}
.x41{left:139.488136px;}
.x43{left:150.913917px;}
.x54{left:177.637388px;}
.x26{left:182.985250px;}
.x4e{left:192.525002px;}
.x1{left:197.837601px;}
.x58{left:200.991974px;}
.x52{left:223.545686px;}
.x4f{left:227.572095px;}
.x34{left:241.196417px;}
.x49{left:248.669741px;}
.x7{left:286.818395px;}
.x2f{left:289.970942px;}
.x9{left:291.959998px;}
.x2e{left:296.338617px;}
.x8{left:298.887973px;}
.x51{left:302.194303px;}
.x33{left:303.695443px;}
.x20{left:317.377799px;}
.x6{left:338.067736px;}
.x1f{left:368.431268px;}
.x4c{left:372.076185px;}
.x28{left:393.829730px;}
.x4d{left:417.625502px;}
.x48{left:447.862076px;}
.x47{left:451.012953px;}
.x23{left:461.280294px;}
.x22{left:495.302303px;}
.x31{left:497.535883px;}
.x30{left:538.216060px;}
.x3f{left:671.420808px;}
.x45{left:673.875292px;}
.x13{left:690.916871px;}
.x57{left:693.240969px;}
.x3e{left:694.936356px;}
.x4a{left:700.273825px;}
.x32{left:723.339132px;}
.x29{left:732.175786px;}
.x4b{left:735.825005px;}
.x16{left:741.587469px;}
.x1b{left:743.837604px;}
.x14{left:749.332419px;}
.x19{left:761.384967px;}
.x46{left:775.039266px;}
.x1e{left:779.000129px;}
.xb{left:780.820273px;}
.xc{left:794.939902px;}
.x1a{left:797.837606px;}
.x3a{left:820.962525px;}
.xa{left:827.900570px;}
.x27{left:829.370085px;}
.x21{left:836.655923px;}
.x1d{left:841.776012px;}
.x3d{left:874.447914px;}
.x18{left:894.875417px;}
.x25{left:918.546251px;}
.x55{left:931.225282px;}
.x5b{left:954.556837px;}
.x5c{left:959.863885px;}
.x3b{left:965.740362px;}
.x5a{left:986.166459px;}
.x59{left:990.267451px;}
.x36{left:1001.155386px;}
.x35{left:1033.894642px;}
.x2a{left:1070.523259px;}
.x53{left:1101.326098px;}
.x56{left:1117.689178px;}
.x17{left:1145.515964px;}
.x15{left:1168.068187px;}
.xd{left:1178.704959px;}
.xe{left:1187.661014px;}
.x39{left:1198.555250px;}
.x38{left:1202.229083px;}
.x37{left:1209.682209px;}
.x5d{left:1277.528047px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.328536pt;}
.v1{vertical-align:117.760004pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009500pt;}
.lsf{letter-spacing:4.036000pt;}
.ls9{letter-spacing:5.000000pt;}
.ls6{letter-spacing:22.694581pt;}
.ls3{letter-spacing:81.590000pt;}
.lsd{letter-spacing:85.337527pt;}
.ls1{letter-spacing:95.990000pt;}
.ls8{letter-spacing:96.000627pt;}
.lsa{letter-spacing:96.000683pt;}
.lse{letter-spacing:96.004195pt;}
.ls2{letter-spacing:96.009379pt;}
.ls7{letter-spacing:96.012503pt;}
.lsb{letter-spacing:96.015683pt;}
.ls5{letter-spacing:96.018755pt;}
.lsc{letter-spacing:153.590002pt;}
.ws14{word-spacing:-72.320002pt;}
.ws4{word-spacing:-57.856002pt;}
.wsd{word-spacing:-43.392001pt;}
.ws6{word-spacing:-38.570669pt;}
.ws8{word-spacing:-36.160001pt;}
.ws7{word-spacing:-33.749333pt;}
.ws0{word-spacing:-28.928001pt;}
.ws12{word-spacing:-27.722667pt;}
.wse{word-spacing:-26.517335pt;}
.wsb{word-spacing:-24.106667pt;}
.wsf{word-spacing:-22.901335pt;}
.ws2{word-spacing:-21.696001pt;}
.ws10{word-spacing:-19.285335pt;}
.wsc{word-spacing:-16.874667pt;}
.ws3{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.258667pt;}
.ws13{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:390.814466pt;}
.ws16{word-spacing:1291.345561pt;}
._a{margin-left:-22.016001pt;}
._10{margin-left:-20.650668pt;}
._13{margin-left:-18.302666pt;}
._11{margin-left:-15.318000pt;}
._f{margin-left:-13.782425pt;}
._12{margin-left:-12.755000pt;}
._8{margin-left:-11.520000pt;}
._9{margin-left:-10.540000pt;}
._7{margin-left:-9.557334pt;}
._d{margin-left:-8.448000pt;}
._2{margin-left:-7.509334pt;}
._4{margin-left:-6.203334pt;}
._3{margin-left:-4.480000pt;}
._6{margin-left:-3.520667pt;}
._0{margin-left:-2.538000pt;}
._1{margin-left:-0.896000pt;}
._5{width:1.754000pt;}
._c{width:3.294268pt;}
._e{width:4.480000pt;}
._b{width:96.163503pt;}
.fs12{font-size:56.000002pt;}
.fs3{font-size:58.666670pt;}
.fs6{font-size:64.000002pt;}
.fsd{font-size:74.666666pt;}
.fs8{font-size:76.799998pt;}
.fs7{font-size:85.333339pt;}
.fs5{font-size:96.000003pt;}
.fs11{font-size:101.333339pt;}
.fs2{font-size:106.666667pt;}
.fsf{font-size:117.333340pt;}
.fs13{font-size:122.666668pt;}
.fs0{font-size:128.000004pt;}
.fs4{font-size:149.333333pt;}
.fsb{font-size:160.000005pt;}
.fsa{font-size:170.666677pt;}
.fse{font-size:192.000006pt;}
.fsc{font-size:234.666680pt;}
.fs10{font-size:240.000008pt;}
.fs9{font-size:256.000008pt;}
.fs1{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:18.147022pt;}
.y6{bottom:18.164158pt;}
.y11{bottom:18.166889pt;}
.y8b{bottom:18.498873pt;}
.y26{bottom:18.499022pt;}
.ye7{bottom:18.499024pt;}
.y1c{bottom:18.500446pt;}
.yf6{bottom:20.083208pt;}
.yf7{bottom:23.814858pt;}
.y1{bottom:35.222954pt;}
.y92{bottom:36.098871pt;}
.y25{bottom:36.099021pt;}
.ye6{bottom:36.099023pt;}
.y1b{bottom:36.100444pt;}
.yb2{bottom:45.506781pt;}
.yf5{bottom:45.683218pt;}
.yee{bottom:51.604689pt;}
.ye5{bottom:53.699022pt;}
.y1a{bottom:53.700444pt;}
.y69{bottom:64.245511pt;}
.y42{bottom:70.101909pt;}
.yf4{bottom:71.283209pt;}
.ye{bottom:73.170589pt;}
.ya{bottom:78.170589pt;}
.y68{bottom:81.045511pt;}
.yef{bottom:81.828550pt;}
.yed{bottom:86.164690pt;}
.y4d{bottom:87.804980pt;}
.yf3{bottom:96.883220pt;}
.ycd{bottom:98.322950pt;}
.yc3{bottom:100.476980pt;}
.yd{bottom:101.970590pt;}
.y41{bottom:102.101905pt;}
.y5d{bottom:106.060990pt;}
.y9{bottom:106.970590pt;}
.y4{bottom:116.525306pt;}
.yec{bottom:120.724682pt;}
.yf2{bottom:122.483221pt;}
.y32{bottom:122.823731pt;}
.y64{bottom:124.473681pt;}
.y39{bottom:124.848601pt;}
.y75{bottom:127.463581pt;}
.yc2{bottom:129.276981pt;}
.yc{bottom:130.770581pt;}
.y44{bottom:131.784656pt;}
.ycc{bottom:132.776284pt;}
.y8{bottom:135.770581pt;}
.yd9{bottom:136.935641pt;}
.y7b{bottom:139.638109pt;}
.y4c{bottom:139.644981pt;}
.yab{bottom:139.762134pt;}
.y79{bottom:139.825581pt;}
.y5c{bottom:141.260981pt;}
.y22{bottom:142.517712pt;}
.y91{bottom:142.770232pt;}
.y83{bottom:144.285862pt;}
.yc9{bottom:144.338322pt;}
.yf1{bottom:148.083212pt;}
.y31{bottom:155.943722pt;}
.yc1{bottom:158.652982pt;}
.y7d{bottom:159.587182pt;}
.y98{bottom:159.890322pt;}
.ye0{bottom:159.890412pt;}
.yb{bottom:162.770586pt;}
.y21{bottom:165.557712pt;}
.y7{bottom:167.770586pt;}
.yd8{bottom:171.495642pt;}
.yf0{bottom:173.683213pt;}
.y8a{bottom:173.948913pt;}
.y5b{bottom:176.460983pt;}
.y7a{bottom:178.038113pt;}
.y78{bottom:178.225583pt;}
.y3{bottom:178.349073pt;}
.y7c{bottom:178.787183pt;}
.y43{bottom:181.627783pt;}
.y82{bottom:182.685863pt;}
.ycb{bottom:186.312833pt;}
.y9d{bottom:186.556953pt;}
.y30{bottom:189.063723pt;}
.yea{bottom:189.756983pt;}
.y38{bottom:190.981933pt;}
.y4b{bottom:191.484983pt;}
.yc8{bottom:196.178313pt;}
.y77{bottom:197.425583pt;}
.y81{bottom:201.885863pt;}
.y20{bottom:201.931043pt;}
.yc0{bottom:203.090303pt;}
.y97{bottom:203.090333pt;}
.ydf{bottom:203.090393pt;}
.yd7{bottom:206.055634pt;}
.y74{bottom:207.122254pt;}
.y67{bottom:210.294890pt;}
.y5a{bottom:211.660984pt;}
.y58{bottom:217.420984pt;}
.y2f{bottom:222.183714pt;}
.y1f{bottom:224.971044pt;}
.y9c{bottom:229.756964pt;}
.y40{bottom:231.058324pt;}
.ybf{bottom:231.890284pt;}
.y90{bottom:232.796944pt;}
.y66{bottom:237.654888pt;}
.yd6{bottom:240.615635pt;}
.y73{bottom:241.682255pt;}
.yb6{bottom:242.343665pt;}
.y4a{bottom:243.324985pt;}
.ye3{bottom:244.071655pt;}
.y3b{bottom:245.925435pt;}
.y2{bottom:245.933071pt;}
.y96{bottom:246.290315pt;}
.y59{bottom:246.860985pt;}
.yc7{bottom:251.474305pt;}
.y37{bottom:254.555285pt;}
.y2e{bottom:255.303715pt;}
.yb0{bottom:257.734905pt;}
.yde{bottom:259.623755pt;}
.ybe{bottom:261.266305pt;}
.y1e{bottom:261.344369pt;}
.y65{bottom:265.014886pt;}
.y89{bottom:269.735636pt;}
.y9b{bottom:272.956986pt;}
.y8f{bottom:275.996956pt;}
.y72{bottom:276.242286pt;}
.y1d{bottom:284.384366pt;}
.y2d{bottom:288.423736pt;}
.y36{bottom:289.115286pt;}
.y95{bottom:289.490316pt;}
.ya5{bottom:289.980986pt;}
.yaf{bottom:292.934906pt;}
.y3a{bottom:293.925436pt;}
.y49{bottom:295.164966pt;}
.y61{bottom:298.043146pt;}
.ye2{bottom:299.367647pt;}
.ye9{bottom:302.823647pt;}
.ydd{bottom:302.823737pt;}
.y3f{bottom:303.804997pt;}
.ybd{bottom:305.703647pt;}
.y71{bottom:310.802297pt;}
.y56{bottom:315.814787pt;}
.y9a{bottom:316.156977pt;}
.y88{bottom:317.628977pt;}
.y8e{bottom:319.196967pt;}
.y2c{bottom:321.543737pt;}
.y3e{bottom:326.844977pt;}
.yae{bottom:328.134897pt;}
.y60{bottom:333.243148pt;}
.ybc{bottom:335.079638pt;}
.yd5{bottom:336.402308pt;}
.y10{bottom:340.892448pt;}
.yca{bottom:343.314308pt;}
.ya4{bottom:343.634318pt;}
.y70{bottom:345.362298pt;}
.ye8{bottom:346.023648pt;}
.ydc{bottom:346.023738pt;}
.y55{bottom:351.014788pt;}
.ya8{bottom:352.183818pt;}
.y2b{bottom:354.663728pt;}
.y35{bottom:355.248618pt;}
.yc6{bottom:357.138298pt;}
.yaa{bottom:358.381608pt;}
.y99{bottom:359.356968pt;}
.yb5{bottom:359.442318pt;}
.yf{bottom:360.092442pt;}
.y48{bottom:360.338288pt;}
.y3d{bottom:365.522299pt;}
.y18{bottom:366.183629pt;}
.y5f{bottom:368.443149pt;}
.y8d{bottom:369.063639pt;}
.yd4{bottom:370.962299pt;}
.yb1{bottom:372.781612pt;}
.y5e{bottom:374.203149pt;}
.ybb{bottom:379.516979pt;}
.ya0{bottom:380.754379pt;}
.y80{bottom:382.703517pt;}
.y54{bottom:386.214789pt;}
.ya9{bottom:387.181614pt;}
.ya7{bottom:387.383819pt;}
.y57{bottom:391.974790pt;}
.y6f{bottom:393.255620pt;}
.y17{bottom:394.983640pt;}
.ya3{bottom:397.287640pt;}
.yad{bottom:398.534900pt;}
.y3c{bottom:400.082300pt;}
.y2a{bottom:401.117060pt;}
.y7f{bottom:401.903520pt;}
.y94{bottom:402.556970pt;}
.ydb{bottom:402.557060pt;}
.y62{bottom:403.643150pt;}
.yd3{bottom:405.522300pt;}
.yba{bottom:408.892970pt;}
.yc5{bottom:412.434300pt;}
.y87{bottom:413.415630pt;}
.y9f{bottom:415.890390pt;}
.y7e{bottom:421.103520pt;}
.y34{bottom:421.381940pt;}
.y53{bottom:421.414790pt;}
.yb4{bottom:422.802300pt;}
.y6a{bottom:424.935621pt;}
.y63{bottom:425.447982pt;}
.y85{bottom:425.998741pt;}
.y6e{bottom:427.815621pt;}
.yac{bottom:433.734901pt;}
.y16{bottom:435.964971pt;}
.yeb{bottom:436.155376pt;}
.ycf{bottom:440.082301pt;}
.ye1{bottom:443.538291pt;}
.y84{bottom:445.198741pt;}
.y93{bottom:445.756971pt;}
.yda{bottom:445.757061pt;}
.y29{bottom:447.570391pt;}
.yb9{bottom:453.330301pt;}
.ya6{bottom:457.783822pt;}
.y15{bottom:459.004972pt;}
.y8c{bottom:459.090297pt;}
.y47{bottom:467.068962pt;}
.yce{bottom:474.642302pt;}
.y28{bottom:480.690386pt;}
.yc4{bottom:481.554294pt;}
.y14{bottom:482.044962pt;}
.yb8{bottom:482.130298pt;}
.yb3{bottom:486.162293pt;}
.y33{bottom:487.515271pt;}
.y51{bottom:490.368603pt;}
.y6c{bottom:495.378297pt;}
.y46{bottom:500.562299pt;}
.y6d{bottom:502.290295pt;}
.y9e{bottom:502.290385pt;}
.ya2{bottom:504.594296pt;}
.y86{bottom:509.202294pt;}
.yb7{bottom:511.506293pt;}
.y27{bottom:513.810384pt;}
.y13{bottom:518.418294pt;}
.y45{bottom:520.722296pt;}
.y50{bottom:525.568604pt;}
.y76{bottom:556.439095pt;}
.y24{bottom:557.991969pt;}
.y19{bottom:557.993235pt;}
.y4f{bottom:560.768605pt;}
.ya1{bottom:561.447970pt;}
.y5{bottom:561.449236pt;}
.y52{bottom:566.528605pt;}
.yd1{bottom:586.482514pt;}
.y4e{bottom:595.968606pt;}
.y6b{bottom:618.473234pt;}
.yd0{bottom:621.682515pt;}
.y23{bottom:622.503964pt;}
.ye4{bottom:635.753231pt;}
.y12{bottom:671.202014pt;}
.h1b{height:44.406251pt;}
.h1e{height:45.937501pt;}
.h4{height:46.520836pt;}
.h8{height:47.437503pt;}
.h25{height:47.849372pt;}
.h7{height:50.750002pt;}
.h13{height:59.208333pt;}
.h9{height:67.666671pt;}
.h10{height:69.000004pt;}
.h6{height:76.125002pt;}
.ha{height:76.562501pt;}
.h1c{height:77.625002pt;}
.h1a{height:80.354171pt;}
.h3{height:84.583334pt;}
.h22{height:86.250001pt;}
.h1d{height:91.875003pt;}
.h17{height:93.041672pt;}
.h16{height:94.875005pt;}
.h20{height:97.270834pt;}
.h1{height:101.500003pt;}
.h11{height:103.500003pt;}
.he{height:107.187500pt;}
.hd{height:118.416666pt;}
.h5{height:120.750000pt;}
.hf{height:126.875004pt;}
.h1f{height:129.375004pt;}
.h24{height:137.812504pt;}
.hc{height:138.000009pt;}
.h14{height:152.250005pt;}
.h15{height:155.250005pt;}
.h18{height:159.960943pt;}
.h23{height:183.750006pt;}
.h21{height:186.083344pt;}
.h12{height:189.750010pt;}
.hb{height:207.000007pt;}
.h19{height:212.635009pt;}
.h26{height:231.875007pt;}
.h2{height:258.750008pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:30.013124pt;}
.x50{left:42.943868pt;}
.x44{left:46.171971pt;}
.xf{left:47.314859pt;}
.x2{left:49.853022pt;}
.x3{left:51.847772pt;}
.x5{left:53.215750pt;}
.x24{left:56.510274pt;}
.x2d{left:58.337805pt;}
.x40{left:61.085600pt;}
.x3c{left:62.111837pt;}
.x10{left:63.715071pt;}
.x11{left:66.597570pt;}
.x4{left:71.314859pt;}
.x1c{left:79.314963pt;}
.x2b{left:86.083900pt;}
.x2c{left:91.353430pt;}
.x12{left:97.315070pt;}
.x42{left:115.456704pt;}
.x41{left:123.989454pt;}
.x43{left:134.145704pt;}
.x54{left:157.899900pt;}
.x26{left:162.653555pt;}
.x4e{left:171.133335pt;}
.x1{left:175.855646pt;}
.x58{left:178.659533pt;}
.x52{left:198.707276pt;}
.x4f{left:202.286306pt;}
.x34{left:214.396815pt;}
.x49{left:221.039770pt;}
.x7{left:254.949684pt;}
.x2f{left:257.751948pt;}
.x9{left:259.519998pt;}
.x2e{left:263.412104pt;}
.x8{left:265.678199pt;}
.x51{left:268.617159pt;}
.x33{left:269.951505pt;}
.x20{left:282.113599pt;}
.x6{left:300.504655pt;}
.x1f{left:327.494460pt;}
.x4c{left:330.734387pt;}
.x28{left:350.070871pt;}
.x4d{left:371.222669pt;}
.x48{left:398.099623pt;}
.x47{left:400.900403pt;}
.x23{left:410.026928pt;}
.x22{left:440.268714pt;}
.x31{left:442.254118pt;}
.x30{left:478.414275pt;}
.x3f{left:596.818496pt;}
.x45{left:599.000259pt;}
.x13{left:614.148330pt;}
.x57{left:616.214195pt;}
.x3e{left:617.721206pt;}
.x4a{left:622.465622pt;}
.x32{left:642.968118pt;}
.x29{left:650.822921pt;}
.x4b{left:654.066671pt;}
.x16{left:659.188861pt;}
.x1b{left:661.188981pt;}
.x14{left:666.073261pt;}
.x19{left:676.786638pt;}
.x46{left:688.923792pt;}
.x1e{left:692.444559pt;}
.xb{left:694.062465pt;}
.xc{left:706.613247pt;}
.x1a{left:709.188983pt;}
.x3a{left:729.744466pt;}
.xa{left:735.911618pt;}
.x27{left:737.217854pt;}
.x21{left:743.694154pt;}
.x1d{left:748.245344pt;}
.x3d{left:777.287035pt;}
.x18{left:795.444815pt;}
.x25{left:816.485556pt;}
.x55{left:827.755806pt;}
.x5b{left:848.494966pt;}
.x5c{left:853.212342pt;}
.x3b{left:858.435877pt;}
.x5a{left:876.592408pt;}
.x59{left:880.237734pt;}
.x36{left:889.915898pt;}
.x35{left:919.017459pt;}
.x2a{left:951.576230pt;}
.x53{left:978.956531pt;}
.x56{left:993.501492pt;}
.x17{left:1018.236413pt;}
.x15{left:1038.282833pt;}
.xd{left:1047.737742pt;}
.xe{left:1055.698679pt;}
.x39{left:1065.382444pt;}
.x38{left:1068.648074pt;}
.x37{left:1075.273074pt;}
.x5d{left:1135.580486pt;}
}




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