
    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_672cd1d058d2b373ef836a10.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.835449;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_46c25b5ca7011ef815fbc36e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915527;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_5e78c13cd0e171d3ae20c350.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_5d1f6aafb415db1e4bf6b329.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913574;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_f60b2eaad1d907e3785cb8f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783000;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_b00ea66dd001032d01383ce9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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_41698f2392ddd3e61be4d291.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.863770;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_0f0482f8be6bd326d5455bbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_535744d42fb0ba0a2c851b35.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.717285;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_de158ae1f046c798cb18f2cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_84db6e6668406ba759a0a88d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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_8b25d911433f48fd3940fe03.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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);}
.v2{vertical-align:-142.350000px;}
.v4{vertical-align:-138.600000px;}
.v3{vertical-align:-71.250120px;}
.v1{vertical-align:-19.500000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-8.650800px;}
.ls12{letter-spacing:-0.057600px;}
.lsa{letter-spacing:-0.048000px;}
.ls9{letter-spacing:-0.043200px;}
.lsb{letter-spacing:-0.038400px;}
.lse{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.028800px;}
.ls2{letter-spacing:-0.025200px;}
.ls10{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.019200px;}
.ls11{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.009600px;}
.ls3{letter-spacing:0.014400px;}
.ls6{letter-spacing:0.023640px;}
.ls0{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.038400px;}
.ls14{letter-spacing:0.043200px;}
.ls13{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.057600px;}
.lsf{letter-spacing:8.405700px;}
.ls16{letter-spacing:12.357240px;}
.ls19{letter-spacing:36.267960px;}
.ls17{letter-spacing:44.238216px;}
.ls4{letter-spacing:75.765480px;}
.ls15{letter-spacing:107.177700px;}
.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;}
}
.ws12{word-spacing:-73.872000px;}
.ws15{word-spacing:-50.745600px;}
.ws16{word-spacing:-50.702400px;}
.ws10{word-spacing:-50.688000px;}
.ws11{word-spacing:-50.644800px;}
.ws14{word-spacing:-42.204000px;}
.ws13{word-spacing:-41.040000px;}
.wsf{word-spacing:-38.016000px;}
.ws1{word-spacing:-36.000000px;}
.ws2{word-spacing:-30.000000px;}
.wse{word-spacing:-25.344000px;}
.ws19{word-spacing:-24.000000px;}
.wsd{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.201600px;}
.ws7{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.134400px;}
.ws17{word-spacing:-0.108000px;}
.ws9{word-spacing:-0.100800px;}
.ws6{word-spacing:-0.096000px;}
.ws3{word-spacing:-0.086400px;}
.ws18{word-spacing:-0.081000px;}
.ws5{word-spacing:-0.076800px;}
.ws4{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.057600px;}
.wsa{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-50.788800px;}
._10{margin-left:-42.637200px;}
._12{margin-left:-41.371440px;}
._17{margin-left:-38.016000px;}
._a{margin-left:-36.315420px;}
._13{margin-left:-34.752000px;}
._11{margin-left:-33.646446px;}
._c{margin-left:-30.000000px;}
._b{margin-left:-23.380380px;}
._6{margin-left:-18.621600px;}
._18{margin-left:-17.344800px;}
._d{margin-left:-15.536400px;}
._14{margin-left:-14.322300px;}
._15{margin-left:-12.033600px;}
._7{margin-left:-10.525200px;}
._8{margin-left:-9.071400px;}
._2{margin-left:-7.689600px;}
._9{margin-left:-5.952000px;}
._1{margin-left:-4.780800px;}
._5{margin-left:-2.918400px;}
._3{margin-left:-1.392000px;}
._0{width:1.468200px;}
._4{width:2.860800px;}
._16{width:3.926940px;}
._e{width:1190.657760px;}
.fc6{color:rgb(99,159,214);}
.fc5{color:transparent;}
.fc7{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(29,134,205);}
.fc0{color:rgb(111,183,215);}
.fsf{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fs11{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fsb{font-size:108.000000px;}
.fs6{font-size:114.000000px;}
.fs3{font-size:120.000000px;}
.fs5{font-size:132.000000px;}
.fse{font-size:138.000000px;}
.fs1{font-size:144.000000px;}
.fsc{font-size:156.000000px;}
.fsd{font-size:168.000000px;}
.fs7{font-size:192.000000px;}
.fsa{font-size:216.000000px;}
.fs10{font-size:240.000000px;}
.fs8{font-size:276.000000px;}
.fs0{font-size:324.000000px;}
.ye3{bottom:-1.837595px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y33{bottom:15.974980px;}
.y7{bottom:20.474995px;}
.ye2{bottom:20.662390px;}
.yb3{bottom:24.599950px;}
.y60{bottom:26.849965px;}
.y37{bottom:27.037390px;}
.y4f{bottom:29.849950px;}
.yb2{bottom:45.599965px;}
.ya8{bottom:47.474980px;}
.y96{bottom:49.537420px;}
.ye1{bottom:52.162375px;}
.y35{bottom:52.537390px;}
.y6{bottom:53.474950px;}
.y72{bottom:55.724965px;}
.y32{bottom:59.474950px;}
.yd3{bottom:60.224980px;}
.y80{bottom:60.461545px;}
.y4e{bottom:62.849980px;}
.yb1{bottom:68.099980px;}
.ya7{bottom:71.474995px;}
.y36{bottom:73.537390px;}
.y95{bottom:75.037405px;}
.y71{bottom:78.224950px;}
.y5{bottom:86.474950px;}
.y4d{bottom:86.849935px;}
.yd2{bottom:88.724965px;}
.yb0{bottom:89.099950px;}
.y14{bottom:93.149965px;}
.y7f{bottom:94.961560px;}
.ye0{bottom:95.662420px;}
.y5f{bottom:97.349965px;}
.y34{bottom:99.037465px;}
.y31{bottom:102.974935px;}
.y26{bottom:105.599995px;}
.y70{bottom:106.724950px;}
.ya6{bottom:107.474950px;}
.yaf{bottom:110.099965px;}
.y94{bottom:117.037465px;}
.yd1{bottom:118.724950px;}
.y4c{bottom:122.849965px;}
.y13{bottom:123.299965px;}
.y25{bottom:126.599950px;}
.y5e{bottom:127.349965px;}
.yae{bottom:132.599965px;}
.y6f{bottom:136.724965px;}
.ydf{bottom:139.162465px;}
.ya5{bottom:141.974965px;}
.y22{bottom:146.099965px;}
.y30{bottom:146.474965px;}
.yd0{bottom:147.224965px;}
.y7e{bottom:153.478165px;}
.yad{bottom:153.599965px;}
.y12{bottom:154.799965px;}
.y4b{bottom:158.849965px;}
.ya4{bottom:162.974965px;}
.y5d{bottom:163.349965px;}
.y6e{bottom:165.224965px;}
.ybe{bottom:175.724965px;}
.yac{bottom:176.099965px;}
.y4{bottom:180.412465px;}
.yde{bottom:181.162315px;}
.ya3{bottom:183.974965px;}
.y11{bottom:186.299965px;}
.y7d{bottom:186.478165px;}
.y2f{bottom:189.974965px;}
.yea{bottom:192.599965px;}
.y21{bottom:194.099965px;}
.y4a{bottom:194.849965px;}
.y6d{bottom:196.724965px;}
.yab{bottom:197.099965px;}
.yfc{bottom:198.599965px;}
.y5c{bottom:199.349965px;}
.ycf{bottom:207.224965px;}
.ya2{bottom:207.974965px;}
.ybd{bottom:210.224965px;}
.y17{bottom:211.087315px;}
.y10{bottom:213.299965px;}
.yef{bottom:213.599965px;}
.yaa{bottom:218.099965px;}
.y7c{bottom:220.978165px;}
.y3{bottom:222.412465px;}
.ydd{bottom:223.162315px;}
.y90{bottom:225.630565px;}
.y89{bottom:228.318865px;}
.yfb{bottom:230.099965px;}
.y49{bottom:230.849965px;}
.y5b{bottom:233.849965px;}
.y20{bottom:236.099965px;}
.y6c{bottom:238.724965px;}
.ya9{bottom:242.099965px;}
.yf{bottom:245.699980px;}
.y16{bottom:247.087315px;}
.yce{bottom:247.724965px;}
.ydc{bottom:251.662315px;}
.ybc{bottom:253.724965px;}
.y88{bottom:261.318865px;}
.y2e{bottom:261.974965px;}
.y5a{bottom:263.849965px;}
.y48{bottom:266.849965px;}
.y8f{bottom:267.630565px;}
.yfa{bottom:273.599965px;}
.ycd{bottom:276.224965px;}
.y1d{bottom:277.724965px;}
.y7b{bottom:280.090615px;}
.ydb{bottom:280.162315px;}
.y6b{bottom:282.224965px;}
.y15{bottom:283.087315px;}
.yee{bottom:287.099965px;}
.y87{bottom:294.318865px;}
.ybb{bottom:295.724965px;}
.y59{bottom:299.849965px;}
.y47{bottom:302.849965px;}
.y2d{bottom:303.974965px;}
.ycc{bottom:304.724965px;}
.ya1{bottom:307.162315px;}
.yda{bottom:311.662315px;}
.y7a{bottom:314.590615px;}
.y8e{bottom:321.626515px;}
.y6a{bottom:325.724965px;}
.yed{bottom:327.599965px;}
.yba{bottom:331.724965px;}
.y2b{bottom:333.902680px;}
.y24{bottom:334.031215px;}
.ycb{bottom:336.224965px;}
.y46{bottom:337.349965px;}
.yf5{bottom:337.724965px;}
.y1c{bottom:339.224965px;}
.ya0{bottom:343.162315px;}
.y2c{bottom:345.599965px;}
.yf9{bottom:347.099965px;}
.y86{bottom:347.102065px;}
.yd9{bottom:355.162315px;}
.y45{bottom:358.349965px;}
.y2a{bottom:359.402680px;}
.yf2{bottom:362.662315px;}
.y69{bottom:366.224965px;}
.y27{bottom:369.422665px;}
.y23{bottom:370.031215px;}
.yf4{bottom:372.224965px;}
.y79{bottom:373.702915px;}
.yb9{bottom:375.224965px;}
.y8d{bottom:375.622465px;}
.y9f{bottom:379.162315px;}
.yca{bottom:379.724965px;}
.y1b{bottom:381.224965px;}
.yc1{bottom:381.599965px;}
.y50{bottom:382.199965px;}
.y44{bottom:382.349965px;}
.y29{bottom:384.902680px;}
.yec{bottom:386.099965px;}
.yf8{bottom:390.599965px;}
.y68{bottom:394.724965px;}
.ye9{bottom:395.099965px;}
.yd8{bottom:395.662315px;}
.yf1{bottom:406.162315px;}
.y78{bottom:408.202915px;}
.y58{bottom:409.724965px;}
.y28{bottom:410.402680px;}
.y43{bottom:412.349965px;}
.y9e{bottom:415.162315px;}
.yb8{bottom:417.224965px;}
.y67{bottom:423.224965px;}
.yc0{bottom:423.599965px;}
.y1a{bottom:424.724965px;}
.ye8{bottom:426.599965px;}
.yd7{bottom:427.162315px;}
.y8c{bottom:430.818415px;}
.y42{bottom:436.349965px;}
.y57{bottom:441.224965px;}
.yf0{bottom:448.162315px;}
.yb7{bottom:448.724965px;}
.y9d{bottom:451.162315px;}
.y66{bottom:454.724965px;}
.y1f{bottom:457.724965px;}
.yf7{bottom:461.099965px;}
.yc9{bottom:463.724965px;}
.ybf{bottom:464.099965px;}
.y77{bottom:467.614315px;}
.y41{bottom:467.849965px;}
.y19{bottom:468.224965px;}
.yd6{bottom:469.162315px;}
.y8b{bottom:472.818415px;}
.y56{bottom:481.724965px;}
.y9c{bottom:484.162315px;}
.y93{bottom:486.224965px;}
.yc8{bottom:492.224965px;}
.yf6{bottom:492.599965px;}
.y65{bottom:495.224965px;}
.ye7{bottom:498.599965px;}
.y1e{bottom:499.724965px;}
.y76{bottom:500.614315px;}
.y85{bottom:500.633365px;}
.y40{bottom:500.849965px;}
.yeb{bottom:504.599965px;}
.y9b{bottom:508.162315px;}
.yf3{bottom:508.724965px;}
.y55{bottom:510.224965px;}
.yd5{bottom:511.162315px;}
.y18{bottom:513.224965px;}
.ye{bottom:514.724965px;}
.yc7{bottom:523.724965px;}
.y64{bottom:525.224965px;}
.y8a{bottom:525.601915px;}
.y92{bottom:526.724965px;}
.y3f{bottom:533.849965px;}
.ye6{bottom:534.599965px;}
.yd{bottom:538.724965px;}
.yd4{bottom:541.162315px;}
.y54{bottom:541.724965px;}
.y9a{bottom:544.162315px;}
.yb6{bottom:546.224965px;}
.y91{bottom:550.724965px;}
.y75{bottom:553.724215px;}
.y84{bottom:553.727815px;}
.y63{bottom:555.224965px;}
.y3e{bottom:565.349815px;}
.yc{bottom:565.724965px;}
.yc6{bottom:567.224965px;}
.y99{bottom:580.162315px;}
.yb5{bottom:580.724965px;}
.y74{bottom:585.224215px;}
.y53{bottom:585.224965px;}
.y83{bottom:585.227815px;}
.y62{bottom:597.224965px;}
.y3d{bottom:598.349965px;}
.yb{bottom:601.724965px;}
.yc5{bottom:610.724965px;}
.y98{bottom:616.162315px;}
.yb4{bottom:619.724965px;}
.y52{bottom:627.224965px;}
.ye5{bottom:628.912315px;}
.y3c{bottom:629.849965px;}
.ya{bottom:637.724965px;}
.y97{bottom:645.224965px;}
.yc4{bottom:652.724965px;}
.y81{bottom:662.287315px;}
.y3b{bottom:662.849965px;}
.y9{bottom:673.724815px;}
.ye4{bottom:693.412315px;}
.y3a{bottom:695.849965px;}
.y73{bottom:702.787315px;}
.y51{bottom:705.412315px;}
.y2{bottom:708.374815px;}
.y8{bottom:709.724815px;}
.y82{bottom:711.224815px;}
.yc3{bottom:720.787465px;}
.y39{bottom:728.849815px;}
.y61{bottom:728.999815px;}
.yc2{bottom:752.287465px;}
.y38{bottom:770.849965px;}
.h1e{height:49.101562px;}
.h10{height:58.201172px;}
.h15{height:58.921875px;}
.hf{height:59.378906px;}
.hc{height:66.328125px;}
.h4{height:66.515625px;}
.h6{height:68.742188px;}
.h1c{height:74.619141px;}
.h1b{height:74.830078px;}
.h18{height:78.562500px;}
.h8{height:78.987305px;}
.h9{height:83.144531px;}
.h14{height:88.382812px;}
.he{height:90.960000px;}
.h7{height:91.458984px;}
.h1d{height:95.616211px;}
.h5{height:98.203125px;}
.hb{height:99.492188px;}
.h3{height:99.773438px;}
.h16{height:108.087891px;}
.h17{height:116.402344px;}
.h13{height:117.843750px;}
.h11{height:118.757812px;}
.ha{height:133.031250px;}
.h1a{height:149.660156px;}
.h1f{height:166.289062px;}
.h19{height:176.765625px;}
.h12{height:178.136719px;}
.hd{height:191.232422px;}
.h2{height:265.148438px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x32{left:10.799999px;}
.x2e{left:13.424999px;}
.x1d{left:23.550000px;}
.x27{left:26.437560px;}
.x1e{left:31.987560px;}
.x6{left:40.425000px;}
.x1a{left:49.049985px;}
.x1{left:50.250000px;}
.x4{left:51.393748px;}
.x1c{left:55.799985px;}
.x8{left:57.487560px;}
.x28{left:66.112560px;}
.x33{left:67.237545px;}
.x35{left:69.674985px;}
.x31{left:74.549985px;}
.x2d{left:82.987560px;}
.x10{left:86.543940px;}
.x2c{left:91.612545px;}
.x36{left:96.674985px;}
.x11{left:101.484210px;}
.x2a{left:108.487545px;}
.x34{left:110.552325px;}
.x29{left:125.549985px;}
.x37{left:147.165225px;}
.x17{left:159.299985px;}
.x2b{left:176.550000px;}
.xf{left:319.790700px;}
.xe{left:350.517150px;}
.x12{left:357.487500px;}
.x1b{left:474.300000px;}
.x18{left:478.425000px;}
.x9{left:511.559760px;}
.x19{left:518.925000px;}
.x13{left:529.933695px;}
.x21{left:532.603711px;}
.x7{left:533.737500px;}
.x23{left:544.647660px;}
.x30{left:548.550000px;}
.xd{left:549.786330px;}
.x2{left:550.800000px;}
.xa{left:595.070505px;}
.x24{left:613.284375px;}
.x26{left:616.615425px;}
.xb{left:624.401100px;}
.xc{left:636.723300px;}
.x2f{left:652.800000px;}
.x3{left:668.878198px;}
.x20{left:690.592950px;}
.x25{left:724.635900px;}
.x15{left:746.221981px;}
.x14{left:759.903621px;}
.x1f{left:777.985500px;}
.x16{left:788.532525px;}
.x5{left:814.741348px;}
.x22{left:851.796150px;}
@media print{
.v2{vertical-align:-126.533333pt;}
.v4{vertical-align:-123.200000pt;}
.v3{vertical-align:-63.333440pt;}
.v1{vertical-align:-17.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-7.689600pt;}
.ls12{letter-spacing:-0.051200pt;}
.lsa{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:-0.038400pt;}
.lsb{letter-spacing:-0.034133pt;}
.lse{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.025600pt;}
.ls2{letter-spacing:-0.022400pt;}
.ls10{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.017067pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.008533pt;}
.ls3{letter-spacing:0.012800pt;}
.ls6{letter-spacing:0.021013pt;}
.ls0{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.034133pt;}
.ls14{letter-spacing:0.038400pt;}
.ls13{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.051200pt;}
.lsf{letter-spacing:7.471733pt;}
.ls16{letter-spacing:10.984213pt;}
.ls19{letter-spacing:32.238187pt;}
.ls17{letter-spacing:39.322859pt;}
.ls4{letter-spacing:67.347093pt;}
.ls15{letter-spacing:95.269067pt;}
.ws12{word-spacing:-65.664000pt;}
.ws15{word-spacing:-45.107200pt;}
.ws16{word-spacing:-45.068800pt;}
.ws10{word-spacing:-45.056000pt;}
.ws11{word-spacing:-45.017600pt;}
.ws14{word-spacing:-37.514667pt;}
.ws13{word-spacing:-36.480000pt;}
.wsf{word-spacing:-33.792000pt;}
.ws1{word-spacing:-32.000000pt;}
.ws2{word-spacing:-26.666667pt;}
.wse{word-spacing:-22.528000pt;}
.ws19{word-spacing:-21.333333pt;}
.wsd{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.179200pt;}
.ws7{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.119467pt;}
.ws17{word-spacing:-0.096000pt;}
.ws9{word-spacing:-0.089600pt;}
.ws6{word-spacing:-0.085333pt;}
.ws3{word-spacing:-0.076800pt;}
.ws18{word-spacing:-0.072000pt;}
.ws5{word-spacing:-0.068267pt;}
.ws4{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.051200pt;}
.wsa{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-45.145600pt;}
._10{margin-left:-37.899733pt;}
._12{margin-left:-36.774613pt;}
._17{margin-left:-33.792000pt;}
._a{margin-left:-32.280373pt;}
._13{margin-left:-30.890667pt;}
._11{margin-left:-29.907952pt;}
._c{margin-left:-26.666667pt;}
._b{margin-left:-20.782560pt;}
._6{margin-left:-16.552533pt;}
._18{margin-left:-15.417600pt;}
._d{margin-left:-13.810133pt;}
._14{margin-left:-12.730933pt;}
._15{margin-left:-10.696533pt;}
._7{margin-left:-9.355733pt;}
._8{margin-left:-8.063467pt;}
._2{margin-left:-6.835200pt;}
._9{margin-left:-5.290667pt;}
._1{margin-left:-4.249600pt;}
._5{margin-left:-2.594133pt;}
._3{margin-left:-1.237333pt;}
._0{width:1.305067pt;}
._4{width:2.542933pt;}
._16{width:3.490613pt;}
._e{width:1058.362453pt;}
.fsf{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fs11{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fsb{font-size:96.000000pt;}
.fs6{font-size:101.333333pt;}
.fs3{font-size:106.666667pt;}
.fs5{font-size:117.333333pt;}
.fse{font-size:122.666667pt;}
.fs1{font-size:128.000000pt;}
.fsc{font-size:138.666667pt;}
.fsd{font-size:149.333333pt;}
.fs7{font-size:170.666667pt;}
.fsa{font-size:192.000000pt;}
.fs10{font-size:213.333333pt;}
.fs8{font-size:245.333333pt;}
.fs0{font-size:288.000000pt;}
.ye3{bottom:-1.633418pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y33{bottom:14.199982pt;}
.y7{bottom:18.199996pt;}
.ye2{bottom:18.366569pt;}
.yb3{bottom:21.866622pt;}
.y60{bottom:23.866636pt;}
.y37{bottom:24.033236pt;}
.y4f{bottom:26.533289pt;}
.yb2{bottom:40.533302pt;}
.ya8{bottom:42.199982pt;}
.y96{bottom:44.033262pt;}
.ye1{bottom:46.366556pt;}
.y35{bottom:46.699902pt;}
.y6{bottom:47.533289pt;}
.y72{bottom:49.533302pt;}
.y32{bottom:52.866622pt;}
.yd3{bottom:53.533316pt;}
.y80{bottom:53.743596pt;}
.y4e{bottom:55.866649pt;}
.yb1{bottom:60.533316pt;}
.ya7{bottom:63.533329pt;}
.y36{bottom:65.366569pt;}
.y95{bottom:66.699916pt;}
.y71{bottom:69.533289pt;}
.y5{bottom:76.866622pt;}
.y4d{bottom:77.199942pt;}
.yd2{bottom:78.866636pt;}
.yb0{bottom:79.199956pt;}
.y14{bottom:82.799969pt;}
.y7f{bottom:84.410276pt;}
.ye0{bottom:85.033262pt;}
.y5f{bottom:86.533302pt;}
.y34{bottom:88.033302pt;}
.y31{bottom:91.533276pt;}
.y26{bottom:93.866662pt;}
.y70{bottom:94.866622pt;}
.ya6{bottom:95.533289pt;}
.yaf{bottom:97.866636pt;}
.y94{bottom:104.033302pt;}
.yd1{bottom:105.533289pt;}
.y4c{bottom:109.199969pt;}
.y13{bottom:109.599969pt;}
.y25{bottom:112.533289pt;}
.y5e{bottom:113.199969pt;}
.yae{bottom:117.866636pt;}
.y6f{bottom:121.533302pt;}
.ydf{bottom:123.699969pt;}
.ya5{bottom:126.199969pt;}
.y22{bottom:129.866636pt;}
.y30{bottom:130.199969pt;}
.yd0{bottom:130.866636pt;}
.y7e{bottom:136.425036pt;}
.yad{bottom:136.533302pt;}
.y12{bottom:137.599969pt;}
.y4b{bottom:141.199969pt;}
.ya4{bottom:144.866636pt;}
.y5d{bottom:145.199969pt;}
.y6e{bottom:146.866636pt;}
.ybe{bottom:156.199969pt;}
.yac{bottom:156.533302pt;}
.y4{bottom:160.366636pt;}
.yde{bottom:161.033169pt;}
.ya3{bottom:163.533302pt;}
.y11{bottom:165.599969pt;}
.y7d{bottom:165.758369pt;}
.y2f{bottom:168.866636pt;}
.yea{bottom:171.199969pt;}
.y21{bottom:172.533302pt;}
.y4a{bottom:173.199969pt;}
.y6d{bottom:174.866636pt;}
.yab{bottom:175.199969pt;}
.yfc{bottom:176.533302pt;}
.y5c{bottom:177.199969pt;}
.ycf{bottom:184.199969pt;}
.ya2{bottom:184.866636pt;}
.ybd{bottom:186.866636pt;}
.y17{bottom:187.633169pt;}
.y10{bottom:189.599969pt;}
.yef{bottom:189.866636pt;}
.yaa{bottom:193.866636pt;}
.y7c{bottom:196.425036pt;}
.y3{bottom:197.699969pt;}
.ydd{bottom:198.366502pt;}
.y90{bottom:200.560502pt;}
.y89{bottom:202.950102pt;}
.yfb{bottom:204.533302pt;}
.y49{bottom:205.199969pt;}
.y5b{bottom:207.866636pt;}
.y20{bottom:209.866636pt;}
.y6c{bottom:212.199969pt;}
.ya9{bottom:215.199969pt;}
.yf{bottom:218.399982pt;}
.y16{bottom:219.633169pt;}
.yce{bottom:220.199969pt;}
.ydc{bottom:223.699836pt;}
.ybc{bottom:225.533302pt;}
.y88{bottom:232.283436pt;}
.y2e{bottom:232.866636pt;}
.y5a{bottom:234.533302pt;}
.y48{bottom:237.199969pt;}
.y8f{bottom:237.893836pt;}
.yfa{bottom:243.199969pt;}
.ycd{bottom:245.533302pt;}
.y1d{bottom:246.866636pt;}
.y7b{bottom:248.969436pt;}
.ydb{bottom:249.033169pt;}
.y6b{bottom:250.866636pt;}
.y15{bottom:251.633169pt;}
.yee{bottom:255.199969pt;}
.y87{bottom:261.616769pt;}
.ybb{bottom:262.866636pt;}
.y59{bottom:266.533302pt;}
.y47{bottom:269.199969pt;}
.y2d{bottom:270.199969pt;}
.ycc{bottom:270.866636pt;}
.ya1{bottom:273.033169pt;}
.yda{bottom:277.033169pt;}
.y7a{bottom:279.636102pt;}
.y8e{bottom:285.890236pt;}
.y6a{bottom:289.533302pt;}
.yed{bottom:291.199969pt;}
.yba{bottom:294.866636pt;}
.y2b{bottom:296.802382pt;}
.y24{bottom:296.916636pt;}
.ycb{bottom:298.866636pt;}
.y46{bottom:299.866636pt;}
.yf5{bottom:300.199969pt;}
.y1c{bottom:301.533302pt;}
.ya0{bottom:305.033169pt;}
.y2c{bottom:307.199969pt;}
.yf9{bottom:308.533302pt;}
.y86{bottom:308.535169pt;}
.yd9{bottom:315.699836pt;}
.y45{bottom:318.533302pt;}
.y2a{bottom:319.469049pt;}
.yf2{bottom:322.366502pt;}
.y69{bottom:325.533302pt;}
.y27{bottom:328.375702pt;}
.y23{bottom:328.916636pt;}
.yf4{bottom:330.866636pt;}
.y79{bottom:332.180369pt;}
.yb9{bottom:333.533302pt;}
.y8d{bottom:333.886636pt;}
.y9f{bottom:337.033169pt;}
.yca{bottom:337.533302pt;}
.y1b{bottom:338.866636pt;}
.yc1{bottom:339.199969pt;}
.y50{bottom:339.733302pt;}
.y44{bottom:339.866636pt;}
.y29{bottom:342.135716pt;}
.yec{bottom:343.199969pt;}
.yf8{bottom:347.199969pt;}
.y68{bottom:350.866636pt;}
.ye9{bottom:351.199969pt;}
.yd8{bottom:351.699836pt;}
.yf1{bottom:361.033169pt;}
.y78{bottom:362.847036pt;}
.y58{bottom:364.199969pt;}
.y28{bottom:364.802382pt;}
.y43{bottom:366.533302pt;}
.y9e{bottom:369.033169pt;}
.yb8{bottom:370.866636pt;}
.y67{bottom:376.199969pt;}
.yc0{bottom:376.533302pt;}
.y1a{bottom:377.533302pt;}
.ye8{bottom:379.199969pt;}
.yd7{bottom:379.699836pt;}
.y8c{bottom:382.949702pt;}
.y42{bottom:387.866636pt;}
.y57{bottom:392.199969pt;}
.yf0{bottom:398.366502pt;}
.yb7{bottom:398.866636pt;}
.y9d{bottom:401.033169pt;}
.y66{bottom:404.199969pt;}
.y1f{bottom:406.866636pt;}
.yf7{bottom:409.866636pt;}
.yc9{bottom:412.199969pt;}
.ybf{bottom:412.533302pt;}
.y77{bottom:415.657169pt;}
.y41{bottom:415.866636pt;}
.y19{bottom:416.199969pt;}
.yd6{bottom:417.033169pt;}
.y8b{bottom:420.283036pt;}
.y56{bottom:428.199969pt;}
.y9c{bottom:430.366502pt;}
.y93{bottom:432.199969pt;}
.yc8{bottom:437.533302pt;}
.yf6{bottom:437.866636pt;}
.y65{bottom:440.199969pt;}
.ye7{bottom:443.199969pt;}
.y1e{bottom:444.199969pt;}
.y76{bottom:444.990502pt;}
.y85{bottom:445.007436pt;}
.y40{bottom:445.199969pt;}
.yeb{bottom:448.533302pt;}
.y9b{bottom:451.699836pt;}
.yf3{bottom:452.199969pt;}
.y55{bottom:453.533302pt;}
.yd5{bottom:454.366502pt;}
.y18{bottom:456.199969pt;}
.ye{bottom:457.533302pt;}
.yc7{bottom:465.533302pt;}
.y64{bottom:466.866636pt;}
.y8a{bottom:467.201702pt;}
.y92{bottom:468.199969pt;}
.y3f{bottom:474.533302pt;}
.ye6{bottom:475.199969pt;}
.yd{bottom:478.866636pt;}
.yd4{bottom:481.033169pt;}
.y54{bottom:481.533302pt;}
.y9a{bottom:483.699836pt;}
.yb6{bottom:485.533302pt;}
.y91{bottom:489.533302pt;}
.y75{bottom:492.199302pt;}
.y84{bottom:492.202502pt;}
.y63{bottom:493.533302pt;}
.y3e{bottom:502.533169pt;}
.yc{bottom:502.866636pt;}
.yc6{bottom:504.199969pt;}
.y99{bottom:515.699836pt;}
.yb5{bottom:516.199969pt;}
.y74{bottom:520.199302pt;}
.y53{bottom:520.199969pt;}
.y83{bottom:520.202502pt;}
.y62{bottom:530.866636pt;}
.y3d{bottom:531.866636pt;}
.yb{bottom:534.866636pt;}
.yc5{bottom:542.866636pt;}
.y98{bottom:547.699836pt;}
.yb4{bottom:550.866636pt;}
.y52{bottom:557.533302pt;}
.ye5{bottom:559.033169pt;}
.y3c{bottom:559.866636pt;}
.ya{bottom:566.866636pt;}
.y97{bottom:573.533302pt;}
.yc4{bottom:580.199969pt;}
.y81{bottom:588.699836pt;}
.y3b{bottom:589.199969pt;}
.y9{bottom:598.866502pt;}
.ye4{bottom:616.366502pt;}
.y3a{bottom:618.533302pt;}
.y73{bottom:624.699836pt;}
.y51{bottom:627.033169pt;}
.y2{bottom:629.666502pt;}
.y8{bottom:630.866502pt;}
.y82{bottom:632.199836pt;}
.yc3{bottom:640.699969pt;}
.y39{bottom:647.866502pt;}
.y61{bottom:647.999836pt;}
.yc2{bottom:668.699969pt;}
.y38{bottom:685.199969pt;}
.h1e{height:43.645833pt;}
.h10{height:51.734375pt;}
.h15{height:52.375000pt;}
.hf{height:52.781250pt;}
.hc{height:58.958333pt;}
.h4{height:59.125000pt;}
.h6{height:61.104167pt;}
.h1c{height:66.328125pt;}
.h1b{height:66.515625pt;}
.h18{height:69.833333pt;}
.h8{height:70.210938pt;}
.h9{height:73.906250pt;}
.h14{height:78.562500pt;}
.he{height:80.853333pt;}
.h7{height:81.296875pt;}
.h1d{height:84.992188pt;}
.h5{height:87.291667pt;}
.hb{height:88.437500pt;}
.h3{height:88.687500pt;}
.h16{height:96.078125pt;}
.h17{height:103.468750pt;}
.h13{height:104.750000pt;}
.h11{height:105.562500pt;}
.ha{height:118.250000pt;}
.h1a{height:133.031250pt;}
.h1f{height:147.812500pt;}
.h19{height:157.125000pt;}
.h12{height:158.343750pt;}
.hd{height:169.984375pt;}
.h2{height:235.687500pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x32{left:9.599999pt;}
.x2e{left:11.933332pt;}
.x1d{left:20.933333pt;}
.x27{left:23.500053pt;}
.x1e{left:28.433387pt;}
.x6{left:35.933333pt;}
.x1a{left:43.599987pt;}
.x1{left:44.666667pt;}
.x4{left:45.683332pt;}
.x1c{left:49.599987pt;}
.x8{left:51.100053pt;}
.x28{left:58.766720pt;}
.x33{left:59.766707pt;}
.x35{left:61.933320pt;}
.x31{left:66.266653pt;}
.x2d{left:73.766720pt;}
.x10{left:76.927947pt;}
.x2c{left:81.433373pt;}
.x36{left:85.933320pt;}
.x11{left:90.208187pt;}
.x2a{left:96.433373pt;}
.x34{left:98.268733pt;}
.x29{left:111.599987pt;}
.x37{left:130.813533pt;}
.x17{left:141.599987pt;}
.x2b{left:156.933333pt;}
.xf{left:284.258400pt;}
.xe{left:311.570800pt;}
.x12{left:317.766667pt;}
.x1b{left:421.600000pt;}
.x18{left:425.266667pt;}
.x9{left:454.719787pt;}
.x19{left:461.266667pt;}
.x13{left:471.052173pt;}
.x21{left:473.425521pt;}
.x7{left:474.433333pt;}
.x23{left:484.131253pt;}
.x30{left:487.600000pt;}
.xd{left:488.698960pt;}
.x2{left:489.600000pt;}
.xa{left:528.951560pt;}
.x24{left:545.141667pt;}
.x26{left:548.102600pt;}
.xb{left:555.023200pt;}
.xc{left:565.976267pt;}
.x2f{left:580.266667pt;}
.x3{left:594.558399pt;}
.x20{left:613.860400pt;}
.x25{left:644.120800pt;}
.x15{left:663.308427pt;}
.x14{left:675.469885pt;}
.x1f{left:691.542667pt;}
.x16{left:700.917800pt;}
.x5{left:724.214532pt;}
.x22{left:757.152133pt;}
}




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