
    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_77029ebe5796149588a8a96b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4e88379db55573e8b6e2e78f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937988;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_8e9b35500282ba8e39a2935d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_35d9ec24266ccb543067271e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_da6245bfdfd008bee7a76085.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b822947f43f4af0c9bfad64d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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;}
.v1{vertical-align:84.259800px;}
.ls1d{letter-spacing:-28.067040px;}
.ls2{letter-spacing:-9.227520px;}
.ls17{letter-spacing:-8.897760px;}
.ls1{letter-spacing:-8.266320px;}
.ls7{letter-spacing:-7.938000px;}
.ls1e{letter-spacing:-7.492320px;}
.ls14{letter-spacing:-7.432560px;}
.ls29{letter-spacing:-7.343280px;}
.lsa{letter-spacing:-7.305120px;}
.ls26{letter-spacing:-7.213680px;}
.ls2a{letter-spacing:-7.187040px;}
.lsb{letter-spacing:-7.112880px;}
.ls1f{letter-spacing:-6.969600px;}
.ls13{letter-spacing:-6.953040px;}
.lsc{letter-spacing:-6.920640px;}
.ls2e{letter-spacing:-3.642944px;}
.ls2f{letter-spacing:-2.125051px;}
.ls2c{letter-spacing:-1.517893px;}
.ls1c{letter-spacing:-1.419840px;}
.ls6{letter-spacing:-0.544320px;}
.ls4{letter-spacing:-0.466560px;}
.ls11{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.287280px;}
.ls18{letter-spacing:-0.240480px;}
.ls1b{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.192960px;}
.lse{letter-spacing:-0.192240px;}
.lsf{letter-spacing:-0.167040px;}
.ls27{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.156240px;}
.ls2b{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.083520px;}
.ls28{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.048240px;}
.ls3{letter-spacing:0.077760px;}
.ls12{letter-spacing:0.083520px;}
.ls20{letter-spacing:0.120240px;}
.ls2d{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.156240px;}
.ls0{letter-spacing:0.191520px;}
.lsd{letter-spacing:0.192240px;}
.ls1a{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.240480px;}
.ls9{letter-spacing:0.287280px;}
.ls21{letter-spacing:0.360720px;}
.ls10{letter-spacing:0.501120px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(22,47,51),0 0.015em rgb(22,47,51),0.015em 0 rgb(22,47,51),0 -0.015em  rgb(22,47,51);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(22,47,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws35{word-spacing:-43.446240px;}
.ws14{word-spacing:-43.254000px;}
.wse{word-spacing:-36.141120px;}
.ws28{word-spacing:-35.310240px;}
.ws29{word-spacing:-35.154000px;}
.ws0{word-spacing:-34.218720px;}
.ws2e{word-spacing:-33.667200px;}
.ws2d{word-spacing:-33.186240px;}
.ws4f{word-spacing:-32.179337px;}
.ws4d{word-spacing:-29.700000px;}
.ws39{word-spacing:-27.294480px;}
.ws2c{word-spacing:-24.528960px;}
.ws2{word-spacing:-21.929040px;}
.ws3{word-spacing:-21.354480px;}
.ws1{word-spacing:-17.573760px;}
.ws34{word-spacing:-15.379200px;}
.ws3f{word-spacing:-13.458960px;}
.ws40{word-spacing:-13.217760px;}
.ws43{word-spacing:-12.204000px;}
.ws44{word-spacing:-12.150000px;}
.ws49{word-spacing:-12.042000px;}
.ws18{word-spacing:-11.609280px;}
.ws15{word-spacing:-11.442240px;}
.ws32{word-spacing:-10.189440px;}
.ws3a{word-spacing:-2.765520px;}
.wsb{word-spacing:-2.681280px;}
.ws4{word-spacing:-2.114640px;}
.wsa{word-spacing:-2.106000px;}
.ws3b{word-spacing:-2.044080px;}
.ws9{word-spacing:-1.944000px;}
.ws3c{word-spacing:-1.563120px;}
.ws4c{word-spacing:-1.562400px;}
.ws4b{word-spacing:-1.406160px;}
.ws8{word-spacing:-1.244160px;}
.ws26{word-spacing:-1.198800px;}
.ws5{word-spacing:-1.153440px;}
.ws2a{word-spacing:-0.937440px;}
.ws51{word-spacing:-0.910736px;}
.ws38{word-spacing:-0.871200px;}
.ws52{word-spacing:-0.720000px;}
.ws27{word-spacing:-0.719280px;}
.ws37{word-spacing:-0.696960px;}
.ws2f{word-spacing:-0.648000px;}
.ws2b{word-spacing:-0.624960px;}
.ws21{word-spacing:-0.576720px;}
.ws41{word-spacing:-0.482400px;}
.wsd{word-spacing:-0.478800px;}
.ws6{word-spacing:-0.384480px;}
.ws53{word-spacing:-0.288000px;}
.ws11{word-spacing:-0.192240px;}
.ws1f{word-spacing:-0.083520px;}
.ws17{word-spacing:0.000000px;}
.ws1e{word-spacing:0.083520px;}
.ws50{word-spacing:0.144000px;}
.ws1b{word-spacing:0.167040px;}
.ws13{word-spacing:0.192240px;}
.ws47{word-spacing:0.216000px;}
.ws19{word-spacing:0.324000px;}
.ws22{word-spacing:0.384480px;}
.ws30{word-spacing:0.432000px;}
.ws42{word-spacing:0.482400px;}
.ws4e{word-spacing:0.540000px;}
.wsc{word-spacing:0.574560px;}
.wsf{word-spacing:0.576720px;}
.ws1d{word-spacing:0.793440px;}
.ws31{word-spacing:0.972000px;}
.ws46{word-spacing:1.006560px;}
.ws12{word-spacing:1.153440px;}
.ws54{word-spacing:1.214315px;}
.ws3e{word-spacing:1.296000px;}
.ws24{word-spacing:1.345680px;}
.ws1c{word-spacing:1.545120px;}
.ws7{word-spacing:1.788480px;}
.ws1a{word-spacing:2.255040px;}
.ws33{word-spacing:2.499120px;}
.ws3d{word-spacing:2.881440px;}
.ws16{word-spacing:2.964960px;}
.ws48{word-spacing:4.368096px;}
.ws23{word-spacing:6.920640px;}
.ws10{word-spacing:7.112880px;}
.ws25{word-spacing:7.305120px;}
.ws36{word-spacing:7.492320px;}
.ws4a{word-spacing:74.044200px;}
.ws45{word-spacing:98.044200px;}
.ws20{word-spacing:1544.442600px;}
._9{margin-left:-18.324576px;}
._4{margin-left:-13.918176px;}
._d{margin-left:-10.656000px;}
._6{margin-left:-7.997184px;}
._b{margin-left:-6.920640px;}
._2{margin-left:-5.728752px;}
._7{margin-left:-4.709880px;}
._3{margin-left:-2.979720px;}
._1{margin-left:-1.614816px;}
._0{width:1.211112px;}
._5{width:2.460672px;}
._10{width:3.544948px;}
._8{width:4.545072px;}
._f{width:5.600995px;}
._a{width:8.621208px;}
._c{width:21.204072px;}
._e{width:799.716888px;}
.fc5{color:rgb(80,180,200);}
.fc3{color:transparent;}
.fc2{color:rgb(35,112,205);}
.fc1{color:rgb(22,47,51);}
.fc6{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fs1{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fsb{font-size:144.000000px;}
.fsa{font-size:149.760000px;}
.fsf{font-size:151.789328px;}
.fs7{font-size:156.240000px;}
.fs2{font-size:162.000000px;}
.fsd{font-size:167.760000px;}
.fs9{font-size:174.240000px;}
.fs0{font-size:192.240000px;}
.fs6{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y43{bottom:11.747850px;}
.y1e{bottom:12.183750px;}
.y2a{bottom:15.125250px;}
.y59{bottom:16.143600px;}
.y1c{bottom:18.007500px;}
.y20{bottom:19.419150px;}
.y18{bottom:19.533870px;}
.y49{bottom:22.280250px;}
.y4a{bottom:22.868250px;}
.y48{bottom:23.340000px;}
.y23{bottom:23.630100px;}
.y17{bottom:32.134950px;}
.yc{bottom:44.887860px;}
.y8c{bottom:68.670000px;}
.yb{bottom:72.610380px;}
.y8b{bottom:101.070000px;}
.ya{bottom:102.487500px;}
.y9{bottom:131.287500px;}
.y15{bottom:133.204800px;}
.y5d{bottom:149.883150px;}
.y9e{bottom:153.727500px;}
.y8{bottom:160.087500px;}
.y8a{bottom:160.695000px;}
.y64{bottom:185.222850px;}
.y9d{bottom:196.927500px;}
.y38{bottom:200.377500px;}
.y5f{bottom:211.907730px;}
.y42{bottom:216.360750px;}
.y86{bottom:223.395000px;}
.y5e{bottom:226.307370px;}
.y5b{bottom:237.000000px;}
.y9c{bottom:240.127500px;}
.y85{bottom:255.795000px;}
.y89{bottom:257.520000px;}
.y28{bottom:258.488040px;}
.y37{bottom:260.002500px;}
.y73{bottom:261.766800px;}
.y72{bottom:265.717650px;}
.y41{bottom:268.217490px;}
.y68{bottom:276.744780px;}
.y61{bottom:279.950250px;}
.y84{bottom:288.195000px;}
.y88{bottom:289.920000px;}
.y60{bottom:294.349890px;}
.y30{bottom:297.016590px;}
.y9b{bottom:304.927500px;}
.y76{bottom:310.087770px;}
.y27{bottom:310.344780px;}
.y36{bottom:319.440000px;}
.y40{bottom:320.074230px;}
.y82{bottom:322.254750px;}
.y87{bottom:322.320000px;}
.y52{bottom:328.200000px;}
.y67{bottom:328.601520px;}
.y57{bottom:329.472480px;}
.y2f{bottom:332.131530px;}
.y7{bottom:335.748750px;}
.y9a{bottom:348.127500px;}
.y62{bottom:353.890110px;}
.y75{bottom:361.944510px;}
.y26{bottom:362.201520px;}
.y34{bottom:364.869780px;}
.y56{bottom:365.484360px;}
.y51{bottom:370.235040px;}
.y71{bottom:375.021900px;}
.y11{bottom:377.244870px;}
.y47{bottom:377.619780px;}
.y66{bottom:380.458260px;}
.y2e{bottom:386.659290px;}
.y99{bottom:391.327350px;}
.y6b{bottom:392.558400px;}
.y55{bottom:401.496240px;}
.y4c{bottom:408.212010px;}
.y74{bottom:413.801250px;}
.y25{bottom:414.058260px;}
.y33{bottom:416.726520px;}
.y50{bottom:417.236280px;}
.y81{bottom:418.782000px;}
.y92{bottom:420.868260px;}
.y6c{bottom:422.906400px;}
.y10{bottom:429.101610px;}
.y46{bottom:429.476520px;}
.y3f{bottom:429.651030px;}
.y5c{bottom:431.864400px;}
.y65{bottom:432.315000px;}
.y98{bottom:434.527350px;}
.y79{bottom:436.345500px;}
.y1d{bottom:436.663950px;}
.y54{bottom:437.508120px;}
.y1b{bottom:438.757350px;}
.y2d{bottom:441.382350px;}
.y4{bottom:443.422500px;}
.y6d{bottom:453.254400px;}
.y7a{bottom:458.013000px;}
.y4b{bottom:460.068750px;}
.y4f{bottom:464.237520px;}
.y58{bottom:465.883950px;}
.y24{bottom:465.915000px;}
.y32{bottom:468.583260px;}
.y91{bottom:472.725000px;}
.y63{bottom:472.958490px;}
.y53{bottom:473.520000px;}
.y7b{bottom:479.694000px;}
.yf{bottom:480.958350px;}
.y45{bottom:481.333260px;}
.y3e{bottom:481.507770px;}
.y6e{bottom:483.602400px;}
.y3{bottom:489.502500px;}
.y97{bottom:499.327500px;}
.y7c{bottom:501.361500px;}
.y4e{bottom:511.238760px;}
.y6f{bottom:513.950400px;}
.y31{bottom:520.440000px;}
.y7d{bottom:523.042500px;}
.ye{bottom:532.815090px;}
.y44{bottom:533.190000px;}
.y3d{bottom:533.364510px;}
.y2{bottom:535.582500px;}
.y96{bottom:542.527500px;}
.y70{bottom:544.298400px;}
.y7e{bottom:544.710000px;}
.y3b{bottom:547.920000px;}
.y2c{bottom:550.545000px;}
.y4d{bottom:558.240000px;}
.y78{bottom:560.624550px;}
.y7f{bottom:566.377500px;}
.y3a{bottom:580.320000px;}
.y1{bottom:581.662500px;}
.y69{bottom:584.232660px;}
.y3c{bottom:585.221250px;}
.y14{bottom:585.385740px;}
.y95{bottom:585.727500px;}
.y80{bottom:588.058500px;}
.y90{bottom:589.120350px;}
.y29{bottom:599.100000px;}
.y77{bottom:618.200430px;}
.y8f{bottom:621.520350px;}
.y5a{bottom:628.125000px;}
.y94{bottom:628.927500px;}
.y35{bottom:635.255340px;}
.y2b{bottom:636.502500px;}
.y6a{bottom:637.250550px;}
.y13{bottom:642.961620px;}
.y19{bottom:645.476250px;}
.y83{bottom:648.401100px;}
.y8e{bottom:653.920350px;}
.y1a{bottom:653.981100px;}
.y16{bottom:670.990800px;}
.y93{bottom:672.127500px;}
.yd{bottom:677.523750px;}
.y22{bottom:679.495800px;}
.y8d{bottom:686.320350px;}
.y1f{bottom:688.000650px;}
.y12{bottom:700.537500px;}
.y6{bottom:704.400000px;}
.y39{bottom:738.945000px;}
.y5{bottom:742.560000px;}
.y21{bottom:764.632500px;}
.h8{height:43.554375px;}
.h14{height:44.534180px;}
.h12{height:50.312812px;}
.h2{height:64.129219px;}
.h5{height:69.715898px;}
.h4{height:78.973945px;}
.h10{height:99.162773px;}
.h6{height:102.175920px;}
.h9{height:112.640625px;}
.h15{height:118.757812px;}
.hf{height:123.508125px;}
.h16{height:125.181726px;}
.hd{height:125.406562px;}
.ha{height:127.814175px;}
.hc{height:128.852227px;}
.h7{height:133.197539px;}
.h3{height:133.602539px;}
.h13{height:138.352852px;}
.he{height:143.696953px;}
.h11{height:150.187500px;}
.h1{height:158.541680px;}
.hb{height:197.731758px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x28{left:9.320550px;}
.x16{left:12.994650px;}
.x32{left:16.040250px;}
.x33{left:21.665250px;}
.x11{left:23.497350px;}
.x1f{left:25.929150px;}
.x26{left:29.679150px;}
.xf{left:31.063350px;}
.x2b{left:32.548200px;}
.x1d{left:34.307250px;}
.x19{left:38.006250px;}
.x2c{left:39.369900px;}
.x25{left:49.050000px;}
.x4a{left:51.406350px;}
.xb{left:57.475920px;}
.x1c{left:60.112500px;}
.xa{left:65.550000px;}
.x1e{left:69.112500px;}
.x18{left:72.040350px;}
.x55{left:74.718450px;}
.x21{left:84.300000px;}
.x20{left:87.112500px;}
.xc{left:92.988750px;}
.xd{left:105.051810px;}
.x1{left:111.300000px;}
.x54{left:126.731250px;}
.x40{left:129.321600px;}
.x10{left:131.574600px;}
.x12{left:140.079450px;}
.x13{left:148.584300px;}
.x52{left:155.985000px;}
.x5a{left:159.487500px;}
.x53{left:187.494000px;}
.x5b{left:199.447500px;}
.x43{left:203.445750px;}
.x42{left:210.290250px;}
.x4c{left:221.539650px;}
.x3f{left:230.391450px;}
.x41{left:258.174750px;}
.x5d{left:261.907500px;}
.x3e{left:297.674190px;}
.x2e{left:307.759200px;}
.x17{left:372.131550px;}
.x44{left:386.154750px;}
.x38{left:398.672100px;}
.x39{left:407.840850px;}
.x3{left:443.835000px;}
.x45{left:454.427100px;}
.x4e{left:466.512000px;}
.x4{left:469.140000px;}
.xe{left:476.411430px;}
.x3d{left:492.201990px;}
.x3c{left:497.243070px;}
.x14{left:505.818750px;}
.x4d{left:529.353150px;}
.x5c{left:570.967500px;}
.x22{left:611.235000px;}
.x24{left:614.835000px;}
.x23{left:616.818750px;}
.x4b{left:621.378300px;}
.x49{left:625.882050px;}
.x2d{left:639.449550px;}
.x30{left:647.954400px;}
.x2{left:658.395000px;}
.x2f{left:660.651750px;}
.x31{left:678.300000px;}
.x5{left:682.485000px;}
.x8{left:690.231480px;}
.x7{left:697.605000px;}
.x9{left:702.464820px;}
.x3b{left:707.075010px;}
.x46{left:710.608950px;}
.x36{left:712.425000px;}
.x47{left:714.936450px;}
.x57{left:719.067000px;}
.x37{left:720.862500px;}
.x35{left:755.965050px;}
.x56{left:757.218000px;}
.x6{left:759.705000px;}
.x48{left:770.811000px;}
.x34{left:772.974750px;}
.x58{left:804.576000px;}
.x59{left:812.638350px;}
.x4f{left:832.282500px;}
.x29{left:848.470800px;}
.x1b{left:856.975800px;}
.x50{left:858.742500px;}
.x27{left:863.281650px;}
.x2a{left:873.985500px;}
.x51{left:896.353500px;}
.x3a{left:941.690250px;}
.x15{left:990.506250px;}
.x1a{left:1007.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:74.897600pt;}
.ls1d{letter-spacing:-24.948480pt;}
.ls2{letter-spacing:-8.202240pt;}
.ls17{letter-spacing:-7.909120pt;}
.ls1{letter-spacing:-7.347840pt;}
.ls7{letter-spacing:-7.056000pt;}
.ls1e{letter-spacing:-6.659840pt;}
.ls14{letter-spacing:-6.606720pt;}
.ls29{letter-spacing:-6.527360pt;}
.lsa{letter-spacing:-6.493440pt;}
.ls26{letter-spacing:-6.412160pt;}
.ls2a{letter-spacing:-6.388480pt;}
.lsb{letter-spacing:-6.322560pt;}
.ls1f{letter-spacing:-6.195200pt;}
.ls13{letter-spacing:-6.180480pt;}
.lsc{letter-spacing:-6.151680pt;}
.ls2e{letter-spacing:-3.238172pt;}
.ls2f{letter-spacing:-1.888934pt;}
.ls2c{letter-spacing:-1.349238pt;}
.ls1c{letter-spacing:-1.262080pt;}
.ls6{letter-spacing:-0.483840pt;}
.ls4{letter-spacing:-0.414720pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.255360pt;}
.ls18{letter-spacing:-0.213760pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.171520pt;}
.lse{letter-spacing:-0.170880pt;}
.lsf{letter-spacing:-0.148480pt;}
.ls27{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.138880pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.074240pt;}
.ls28{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.042880pt;}
.ls3{letter-spacing:0.069120pt;}
.ls12{letter-spacing:0.074240pt;}
.ls20{letter-spacing:0.106880pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.138880pt;}
.ls0{letter-spacing:0.170240pt;}
.lsd{letter-spacing:0.170880pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.213760pt;}
.ls9{letter-spacing:0.255360pt;}
.ls21{letter-spacing:0.320640pt;}
.ls10{letter-spacing:0.445440pt;}
.ws35{word-spacing:-38.618880pt;}
.ws14{word-spacing:-38.448000pt;}
.wse{word-spacing:-32.125440pt;}
.ws28{word-spacing:-31.386880pt;}
.ws29{word-spacing:-31.248000pt;}
.ws0{word-spacing:-30.416640pt;}
.ws2e{word-spacing:-29.926400pt;}
.ws2d{word-spacing:-29.498880pt;}
.ws4f{word-spacing:-28.603856pt;}
.ws4d{word-spacing:-26.400000pt;}
.ws39{word-spacing:-24.261760pt;}
.ws2c{word-spacing:-21.803520pt;}
.ws2{word-spacing:-19.492480pt;}
.ws3{word-spacing:-18.981760pt;}
.ws1{word-spacing:-15.621120pt;}
.ws34{word-spacing:-13.670400pt;}
.ws3f{word-spacing:-11.963520pt;}
.ws40{word-spacing:-11.749120pt;}
.ws43{word-spacing:-10.848000pt;}
.ws44{word-spacing:-10.800000pt;}
.ws49{word-spacing:-10.704000pt;}
.ws18{word-spacing:-10.319360pt;}
.ws15{word-spacing:-10.170880pt;}
.ws32{word-spacing:-9.057280pt;}
.ws3a{word-spacing:-2.458240pt;}
.wsb{word-spacing:-2.383360pt;}
.ws4{word-spacing:-1.879680pt;}
.wsa{word-spacing:-1.872000pt;}
.ws3b{word-spacing:-1.816960pt;}
.ws9{word-spacing:-1.728000pt;}
.ws3c{word-spacing:-1.389440pt;}
.ws4c{word-spacing:-1.388800pt;}
.ws4b{word-spacing:-1.249920pt;}
.ws8{word-spacing:-1.105920pt;}
.ws26{word-spacing:-1.065600pt;}
.ws5{word-spacing:-1.025280pt;}
.ws2a{word-spacing:-0.833280pt;}
.ws51{word-spacing:-0.809543pt;}
.ws38{word-spacing:-0.774400pt;}
.ws52{word-spacing:-0.640000pt;}
.ws27{word-spacing:-0.639360pt;}
.ws37{word-spacing:-0.619520pt;}
.ws2f{word-spacing:-0.576000pt;}
.ws2b{word-spacing:-0.555520pt;}
.ws21{word-spacing:-0.512640pt;}
.ws41{word-spacing:-0.428800pt;}
.wsd{word-spacing:-0.425600pt;}
.ws6{word-spacing:-0.341760pt;}
.ws53{word-spacing:-0.256000pt;}
.ws11{word-spacing:-0.170880pt;}
.ws1f{word-spacing:-0.074240pt;}
.ws17{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.074240pt;}
.ws50{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.148480pt;}
.ws13{word-spacing:0.170880pt;}
.ws47{word-spacing:0.192000pt;}
.ws19{word-spacing:0.288000pt;}
.ws22{word-spacing:0.341760pt;}
.ws30{word-spacing:0.384000pt;}
.ws42{word-spacing:0.428800pt;}
.ws4e{word-spacing:0.480000pt;}
.wsc{word-spacing:0.510720pt;}
.wsf{word-spacing:0.512640pt;}
.ws1d{word-spacing:0.705280pt;}
.ws31{word-spacing:0.864000pt;}
.ws46{word-spacing:0.894720pt;}
.ws12{word-spacing:1.025280pt;}
.ws54{word-spacing:1.079391pt;}
.ws3e{word-spacing:1.152000pt;}
.ws24{word-spacing:1.196160pt;}
.ws1c{word-spacing:1.373440pt;}
.ws7{word-spacing:1.589760pt;}
.ws1a{word-spacing:2.004480pt;}
.ws33{word-spacing:2.221440pt;}
.ws3d{word-spacing:2.561280pt;}
.ws16{word-spacing:2.635520pt;}
.ws48{word-spacing:3.882752pt;}
.ws23{word-spacing:6.151680pt;}
.ws10{word-spacing:6.322560pt;}
.ws25{word-spacing:6.493440pt;}
.ws36{word-spacing:6.659840pt;}
.ws4a{word-spacing:65.817067pt;}
.ws45{word-spacing:87.150400pt;}
.ws20{word-spacing:1372.837867pt;}
._9{margin-left:-16.288512pt;}
._4{margin-left:-12.371712pt;}
._d{margin-left:-9.472000pt;}
._6{margin-left:-7.108608pt;}
._b{margin-left:-6.151680pt;}
._2{margin-left:-5.092224pt;}
._7{margin-left:-4.186560pt;}
._3{margin-left:-2.648640pt;}
._1{margin-left:-1.435392pt;}
._0{width:1.076544pt;}
._5{width:2.187264pt;}
._10{width:3.151065pt;}
._8{width:4.040064pt;}
._f{width:4.978662pt;}
._a{width:7.663296pt;}
._c{width:18.848064pt;}
._e{width:710.859456pt;}
.fs4{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fs1{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fsb{font-size:128.000000pt;}
.fsa{font-size:133.120000pt;}
.fsf{font-size:134.923847pt;}
.fs7{font-size:138.880000pt;}
.fs2{font-size:144.000000pt;}
.fsd{font-size:149.120000pt;}
.fs9{font-size:154.880000pt;}
.fs0{font-size:170.880000pt;}
.fs6{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:10.442533pt;}
.y1e{bottom:10.830000pt;}
.y2a{bottom:13.444667pt;}
.y59{bottom:14.349867pt;}
.y1c{bottom:16.006667pt;}
.y20{bottom:17.261467pt;}
.y18{bottom:17.363440pt;}
.y49{bottom:19.804667pt;}
.y4a{bottom:20.327333pt;}
.y48{bottom:20.746667pt;}
.y23{bottom:21.004533pt;}
.y17{bottom:28.564400pt;}
.yc{bottom:39.900320pt;}
.y8c{bottom:61.040000pt;}
.yb{bottom:64.542560pt;}
.y8b{bottom:89.840000pt;}
.ya{bottom:91.100000pt;}
.y9{bottom:116.700000pt;}
.y15{bottom:118.404267pt;}
.y5d{bottom:133.229467pt;}
.y9e{bottom:136.646667pt;}
.y8{bottom:142.300000pt;}
.y8a{bottom:142.840000pt;}
.y64{bottom:164.642533pt;}
.y9d{bottom:175.046667pt;}
.y38{bottom:178.113333pt;}
.y5f{bottom:188.362427pt;}
.y42{bottom:192.320667pt;}
.y86{bottom:198.573333pt;}
.y5e{bottom:201.162107pt;}
.y5b{bottom:210.666667pt;}
.y9c{bottom:213.446667pt;}
.y85{bottom:227.373333pt;}
.y89{bottom:228.906667pt;}
.y28{bottom:229.767147pt;}
.y37{bottom:231.113333pt;}
.y73{bottom:232.681600pt;}
.y72{bottom:236.193467pt;}
.y41{bottom:238.415547pt;}
.y68{bottom:245.995360pt;}
.y61{bottom:248.844667pt;}
.y84{bottom:256.173333pt;}
.y88{bottom:257.706667pt;}
.y60{bottom:261.644347pt;}
.y30{bottom:264.014747pt;}
.y9b{bottom:271.046667pt;}
.y76{bottom:275.633573pt;}
.y27{bottom:275.862027pt;}
.y36{bottom:283.946667pt;}
.y40{bottom:284.510427pt;}
.y82{bottom:286.448667pt;}
.y87{bottom:286.506667pt;}
.y52{bottom:291.733333pt;}
.y67{bottom:292.090240pt;}
.y57{bottom:292.864427pt;}
.y2f{bottom:295.228027pt;}
.y7{bottom:298.443333pt;}
.y9a{bottom:309.446667pt;}
.y62{bottom:314.568987pt;}
.y75{bottom:321.728453pt;}
.y26{bottom:321.956907pt;}
.y34{bottom:324.328693pt;}
.y56{bottom:324.874987pt;}
.y51{bottom:329.097813pt;}
.y71{bottom:333.352800pt;}
.y11{bottom:335.328773pt;}
.y47{bottom:335.662027pt;}
.y66{bottom:338.185120pt;}
.y2e{bottom:343.697147pt;}
.y99{bottom:347.846533pt;}
.y6b{bottom:348.940800pt;}
.y55{bottom:356.885547pt;}
.y4c{bottom:362.855120pt;}
.y74{bottom:367.823333pt;}
.y25{bottom:368.051787pt;}
.y33{bottom:370.423573pt;}
.y50{bottom:370.876693pt;}
.y81{bottom:372.250667pt;}
.y92{bottom:374.105120pt;}
.y6c{bottom:375.916800pt;}
.y10{bottom:381.423653pt;}
.y46{bottom:381.756907pt;}
.y3f{bottom:381.912027pt;}
.y5c{bottom:383.879467pt;}
.y65{bottom:384.280000pt;}
.y98{bottom:386.246533pt;}
.y79{bottom:387.862667pt;}
.y1d{bottom:388.145733pt;}
.y54{bottom:388.896107pt;}
.y1b{bottom:390.006533pt;}
.y2d{bottom:392.339867pt;}
.y4{bottom:394.153333pt;}
.y6d{bottom:402.892800pt;}
.y7a{bottom:407.122667pt;}
.y4b{bottom:408.950000pt;}
.y4f{bottom:412.655573pt;}
.y58{bottom:414.119067pt;}
.y24{bottom:414.146667pt;}
.y32{bottom:416.518453pt;}
.y91{bottom:420.200000pt;}
.y63{bottom:420.407547pt;}
.y53{bottom:420.906667pt;}
.y7b{bottom:426.394667pt;}
.yf{bottom:427.518533pt;}
.y45{bottom:427.851787pt;}
.y3e{bottom:428.006907pt;}
.y6e{bottom:429.868800pt;}
.y3{bottom:435.113333pt;}
.y97{bottom:443.846667pt;}
.y7c{bottom:445.654667pt;}
.y4e{bottom:454.434453pt;}
.y6f{bottom:456.844800pt;}
.y31{bottom:462.613333pt;}
.y7d{bottom:464.926667pt;}
.ye{bottom:473.613413pt;}
.y44{bottom:473.946667pt;}
.y3d{bottom:474.101787pt;}
.y2{bottom:476.073333pt;}
.y96{bottom:482.246667pt;}
.y70{bottom:483.820800pt;}
.y7e{bottom:484.186667pt;}
.y3b{bottom:487.040000pt;}
.y2c{bottom:489.373333pt;}
.y4d{bottom:496.213333pt;}
.y78{bottom:498.332933pt;}
.y7f{bottom:503.446667pt;}
.y3a{bottom:515.840000pt;}
.y1{bottom:517.033333pt;}
.y69{bottom:519.317920pt;}
.y3c{bottom:520.196667pt;}
.y14{bottom:520.342880pt;}
.y95{bottom:520.646667pt;}
.y80{bottom:522.718667pt;}
.y90{bottom:523.662533pt;}
.y29{bottom:532.533333pt;}
.y77{bottom:549.511493pt;}
.y8f{bottom:552.462533pt;}
.y5a{bottom:558.333333pt;}
.y94{bottom:559.046667pt;}
.y35{bottom:564.671413pt;}
.y2b{bottom:565.780000pt;}
.y6a{bottom:566.444933pt;}
.y13{bottom:571.521440pt;}
.y19{bottom:573.756667pt;}
.y83{bottom:576.356533pt;}
.y8e{bottom:581.262533pt;}
.y1a{bottom:581.316533pt;}
.y16{bottom:596.436267pt;}
.y93{bottom:597.446667pt;}
.yd{bottom:602.243333pt;}
.y22{bottom:603.996267pt;}
.y8d{bottom:610.062533pt;}
.y1f{bottom:611.556133pt;}
.y12{bottom:622.700000pt;}
.y6{bottom:626.133333pt;}
.y39{bottom:656.840000pt;}
.y5{bottom:660.053333pt;}
.y21{bottom:679.673333pt;}
.h8{height:38.715000pt;}
.h14{height:39.585938pt;}
.h12{height:44.722500pt;}
.h2{height:57.003750pt;}
.h5{height:61.969687pt;}
.h4{height:70.199062pt;}
.h10{height:88.144687pt;}
.h6{height:90.823040pt;}
.h9{height:100.125000pt;}
.h15{height:105.562500pt;}
.hf{height:109.785000pt;}
.h16{height:111.272645pt;}
.hd{height:111.472500pt;}
.ha{height:113.612600pt;}
.hc{height:114.535313pt;}
.h7{height:118.397812pt;}
.h3{height:118.757812pt;}
.h13{height:122.980312pt;}
.he{height:127.730625pt;}
.h11{height:133.500000pt;}
.h1{height:140.925938pt;}
.hb{height:175.761562pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x28{left:8.284933pt;}
.x16{left:11.550800pt;}
.x32{left:14.258000pt;}
.x33{left:19.258000pt;}
.x11{left:20.886533pt;}
.x1f{left:23.048133pt;}
.x26{left:26.381467pt;}
.xf{left:27.611867pt;}
.x2b{left:28.931733pt;}
.x1d{left:30.495333pt;}
.x19{left:33.783333pt;}
.x2c{left:34.995467pt;}
.x25{left:43.600000pt;}
.x4a{left:45.694533pt;}
.xb{left:51.089707pt;}
.x1c{left:53.433333pt;}
.xa{left:58.266667pt;}
.x1e{left:61.433333pt;}
.x18{left:64.035867pt;}
.x55{left:66.416400pt;}
.x21{left:74.933333pt;}
.x20{left:77.433333pt;}
.xc{left:82.656667pt;}
.xd{left:93.379387pt;}
.x1{left:98.933333pt;}
.x54{left:112.650000pt;}
.x40{left:114.952533pt;}
.x10{left:116.955200pt;}
.x12{left:124.515067pt;}
.x13{left:132.074933pt;}
.x52{left:138.653333pt;}
.x5a{left:141.766667pt;}
.x53{left:166.661333pt;}
.x5b{left:177.286667pt;}
.x43{left:180.840667pt;}
.x42{left:186.924667pt;}
.x4c{left:196.924133pt;}
.x3f{left:204.792400pt;}
.x41{left:229.488667pt;}
.x5d{left:232.806667pt;}
.x3e{left:264.599280pt;}
.x2e{left:273.563733pt;}
.x17{left:330.783600pt;}
.x44{left:343.248667pt;}
.x38{left:354.375200pt;}
.x39{left:362.525200pt;}
.x3{left:394.520000pt;}
.x45{left:403.935200pt;}
.x4e{left:414.677333pt;}
.x4{left:417.013333pt;}
.xe{left:423.476827pt;}
.x3d{left:437.512880pt;}
.x3c{left:441.993840pt;}
.x14{left:449.616667pt;}
.x4d{left:470.536133pt;}
.x5c{left:507.526667pt;}
.x22{left:543.320000pt;}
.x24{left:546.520000pt;}
.x23{left:548.283333pt;}
.x4b{left:552.336267pt;}
.x49{left:556.339600pt;}
.x2d{left:568.399600pt;}
.x30{left:575.959467pt;}
.x2{left:585.240000pt;}
.x2f{left:587.246000pt;}
.x31{left:602.933333pt;}
.x5{left:606.653333pt;}
.x8{left:613.539093pt;}
.x7{left:620.093333pt;}
.x9{left:624.413173pt;}
.x3b{left:628.511120pt;}
.x46{left:631.652400pt;}
.x36{left:633.266667pt;}
.x47{left:635.499067pt;}
.x57{left:639.170667pt;}
.x37{left:640.766667pt;}
.x35{left:671.968933pt;}
.x56{left:673.082667pt;}
.x6{left:675.293333pt;}
.x48{left:685.165333pt;}
.x34{left:687.088667pt;}
.x58{left:715.178667pt;}
.x59{left:722.345200pt;}
.x4f{left:739.806667pt;}
.x29{left:754.196267pt;}
.x1b{left:761.756267pt;}
.x50{left:763.326667pt;}
.x27{left:767.361467pt;}
.x2a{left:776.876000pt;}
.x51{left:796.758667pt;}
.x3a{left:837.058000pt;}
.x15{left:880.450000pt;}
.x1a{left:895.600000pt;}
}




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