
    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_45bc0e6fd5a99d7a62c190f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_e224482dffebcf46fc345bc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_32103b7fd0d173026aea7c92.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_0ede9f4e3734f957fa5cea07.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_169bdb8822ae0d86aaef19b8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_1ed64b54ee4b836894f8b2f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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_1c6c4a2556226a121c947e0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936000;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_9d5e059f5eba6efe109ee9da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_4539c4ef2b6ce07300521006.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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;}
.v7{vertical-align:13.969800px;}
.v4{vertical-align:16.145400px;}
.v3{vertical-align:18.121200px;}
.v5{vertical-align:20.670000px;}
.v6{vertical-align:22.467600px;}
.v1{vertical-align:25.260000px;}
.v2{vertical-align:26.963400px;}
.v8{vertical-align:28.166400px;}
.ls19{letter-spacing:-66.810000px;}
.ls7{letter-spacing:-38.250000px;}
.ls0{letter-spacing:-12.110400px;}
.ls4{letter-spacing:-10.200000px;}
.ls16{letter-spacing:-8.874000px;}
.ls2{letter-spacing:-7.680000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:21.816000px;}
.lsf{letter-spacing:33.566400px;}
.ls18{letter-spacing:104.500800px;}
.lsb{letter-spacing:119.731680px;}
.lsc{letter-spacing:123.012000px;}
.ls6{letter-spacing:129.572640px;}
.ls8{letter-spacing:134.493120px;}
.lsd{letter-spacing:141.480000px;}
.ls1b{letter-spacing:142.693920px;}
.lsa{letter-spacing:147.614400px;}
.ls1c{letter-spacing:150.894720px;}
.ls5{letter-spacing:154.175040px;}
.ls1d{letter-spacing:157.455360px;}
.ls9{letter-spacing:159.095520px;}
.ls1a{letter-spacing:160.735680px;}
.ls3{letter-spacing:164.016000px;}
.ls11{letter-spacing:260.668800px;}
.ls17{letter-spacing:360.460800px;}
.lse{letter-spacing:420.508800px;}
.ls10{letter-spacing:489.888000px;}
.ls13{letter-spacing:803.390400px;}
.ls12{letter-spacing:1048.118400px;}
.ls15{letter-spacing:1155.470400px;}
.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;}
}
.wse{word-spacing:-420.508800px;}
.wsf{word-spacing:-164.548800px;}
.ws0{word-spacing:-156.224160px;}
.ws3{word-spacing:-131.580000px;}
.wsb{word-spacing:-114.474600px;}
.ws6{word-spacing:-103.530000px;}
.ws1{word-spacing:-99.072000px;}
.ws9{word-spacing:-80.064000px;}
.ws12{word-spacing:-78.462720px;}
.ws11{word-spacing:-77.662080px;}
.ws14{word-spacing:-76.861440px;}
.ws5{word-spacing:-75.260160px;}
.ws10{word-spacing:-74.970000px;}
.ws13{word-spacing:-69.655680px;}
.ws4{word-spacing:-66.720000px;}
.ws8{word-spacing:-53.376000px;}
.ws7{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.192000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:1293.364800px;}
._15{margin-left:-360.465600px;}
._16{margin-left:-104.505600px;}
._2{margin-left:-44.808480px;}
._13{margin-left:-32.833800px;}
._18{margin-left:-31.824000px;}
._a{margin-left:-28.416000px;}
._12{margin-left:-26.496000px;}
._f{margin-left:-24.906240px;}
._7{margin-left:-21.342120px;}
._5{margin-left:-19.872000px;}
._14{margin-left:-18.144000px;}
._6{margin-left:-17.001600px;}
._4{margin-left:-15.984000px;}
._9{margin-left:-13.675200px;}
._0{margin-left:-12.110520px;}
._1{margin-left:-10.899360px;}
._c{margin-left:-9.500640px;}
._b{margin-left:-7.680000px;}
._e{margin-left:-5.184000px;}
._3{margin-left:-3.888000px;}
._8{margin-left:-2.764800px;}
._11{width:4.665600px;}
._d{width:5.940000px;}
._10{width:28.050000px;}
._17{width:56.610000px;}
.fc7{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc3{color:rgb(199,67,207);}
.fc2{color:rgb(244,173,59);}
.fc1{color:rgb(176,208,64);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:144.000000px;}
.fs2{font-size:184.800000px;}
.fs13{font-size:192.000000px;}
.fs17{font-size:210.240000px;}
.fs1{font-size:216.000000px;}
.fsd{font-size:227.520000px;}
.fsf{font-size:236.160000px;}
.fs8{font-size:240.000000px;}
.fs1d{font-size:250.560000px;}
.fs16{font-size:258.595200px;}
.fs15{font-size:259.200000px;}
.fs20{font-size:264.960000px;}
.fs19{font-size:265.680000px;}
.fsb{font-size:270.720000px;}
.fs9{font-size:276.000000px;}
.fs22{font-size:276.480000px;}
.fs12{font-size:279.360000px;}
.fsc{font-size:279.849600px;}
.fs1b{font-size:282.240000px;}
.fs7{font-size:288.000000px;}
.fse{font-size:290.476800px;}
.fs1c{font-size:308.188800px;}
.fs14{font-size:318.816000px;}
.fs1f{font-size:325.900800px;}
.fs5{font-size:330.000000px;}
.fsa{font-size:332.985600px;}
.fs21{font-size:340.070400px;}
.fs11{font-size:343.612800px;}
.fs1a{font-size:347.155200px;}
.fs1e{font-size:348.000000px;}
.fs6{font-size:354.240000px;}
.fs3{font-size:384.000000px;}
.fs18{font-size:443.700000px;}
.fs4{font-size:510.000000px;}
.fs0{font-size:605.520000px;}
.y0{bottom:0.000000px;}
.y59{bottom:23.663370px;}
.y7d{bottom:31.891485px;}
.y16{bottom:32.640150px;}
.y61{bottom:35.632050px;}
.y18{bottom:37.536150px;}
.ye3{bottom:40.692360px;}
.y64{bottom:65.503050px;}
.y22{bottom:82.102800px;}
.y58{bottom:82.940685px;}
.yaf{bottom:83.358810px;}
.y3e{bottom:85.032075px;}
.y5d{bottom:87.889650px;}
.y60{bottom:94.132050px;}
.ye2{bottom:99.192360px;}
.y5b{bottom:102.721800px;}
.y53{bottom:103.067550px;}
.y63{bottom:124.003050px;}
.y9d{bottom:134.229300px;}
.ycd{bottom:144.715155px;}
.y21{bottom:148.975830px;}
.y5f{bottom:152.632050px;}
.yae{bottom:159.156300px;}
.y14{bottom:165.141450px;}
.y49{bottom:168.419850px;}
.yd7{bottom:169.546350px;}
.y2e{bottom:172.402650px;}
.y8d{bottom:176.231850px;}
.ya5{bottom:178.747350px;}
.ye1{bottom:179.260200px;}
.y7c{bottom:179.982450px;}
.y3b{bottom:190.085100px;}
.y9{bottom:197.471100px;}
.yc3{bottom:202.329450px;}
.yb9{bottom:210.623850px;}
.yad{bottom:229.530450px;}
.y8c{bottom:231.729000px;}
.y2d{bottom:233.311950px;}
.y70{bottom:239.510400px;}
.y13{bottom:242.293050px;}
.y48{bottom:242.865300px;}
.y7b{bottom:246.194850px;}
.y9c{bottom:246.986250px;}
.y3a{bottom:252.351750px;}
.y8{bottom:252.971100px;}
.ya4{bottom:253.192950px;}
.ye0{bottom:253.703700px;}
.ycc{bottom:276.813600px;}
.yc2{bottom:279.481050px;}
.y20{bottom:285.515400px;}
.y8b{bottom:287.226150px;}
.yb8{bottom:287.775450px;}
.y2c{bottom:294.221250px;}
.y9b{bottom:305.187450px;}
.y6f{bottom:308.541750px;}
.yd6{bottom:309.073500px;}
.y47{bottom:311.099400px;}
.y39{bottom:312.154050px;}
.y12{bottom:312.703800px;}
.ya3{bottom:320.784750px;}
.ydf{bottom:322.005900px;}
.ycb{bottom:340.147200px;}
.y8a{bottom:342.723300px;}
.y7a{bottom:345.195600px;}
.y2b{bottom:351.234600px;}
.yc1{bottom:356.632650px;}
.y9a{bottom:363.388650px;}
.yb7{bottom:364.927050px;}
.yd5{bottom:372.417300px;}
.y6e{bottom:377.573250px;}
.y89{bottom:398.220450px;}
.y7{bottom:419.471100px;}
.y99{bottom:421.589850px;}
.y1f{bottom:422.054850px;}
.y79{bottom:422.347200px;}
.y3d{bottom:427.675950px;}
.yb0{bottom:428.407050px;}
.yc0{bottom:433.784250px;}
.y38{bottom:434.786850px;}
.y51{bottom:436.498800px;}
.yb6{bottom:442.078650px;}
.y6d{bottom:446.604750px;}
.y88{bottom:450.193500px;}
.y11{bottom:457.355400px;}
.y46{bottom:458.588550px;}
.y57{bottom:458.712600px;}
.ya2{bottom:460.705350px;}
.y2a{bottom:466.190100px;}
.yde{bottom:467.390700px;}
.yca{bottom:467.904000px;}
.y6{bottom:474.971100px;}
.y98{bottom:476.492850px;}
.y37{bottom:498.552300px;}
.y78{bottom:499.498800px;}
.ybf{bottom:510.935850px;}
.yd4{bottom:511.944450px;}
.y50{bottom:513.650400px;}
.y6c{bottom:515.636100px;}
.yb5{bottom:519.230250px;}
.yac{bottom:520.206150px;}
.y45{bottom:533.034000px;}
.ydd{bottom:541.834200px;}
.y1e{bottom:558.594300px;}
.y36{bottom:560.817600px;}
.y87{bottom:561.195150px;}
.yd3{bottom:575.288250px;}
.y77{bottom:576.650400px;}
.y6b{bottom:579.050700px;}
.ybe{bottom:581.989950px;}
.y29{bottom:584.954700px;}
.y97{bottom:590.098350px;}
.yb4{bottom:590.284350px;}
.y4f{bottom:590.802000px;}
.yab{bottom:596.003700px;}
.yc9{bottom:600.002400px;}
.ya1{bottom:600.625950px;}
.y10{bottom:602.007000px;}
.y56{bottom:603.364200px;}
.y44{bottom:607.479600px;}
.ydc{bottom:610.778250px;}
.y86{bottom:616.692300px;}
.y35{bottom:623.084250px;}
.y28{bottom:641.333700px;}
.y5{bottom:642.151350px;}
.y96{bottom:646.231200px;}
.y17{bottom:650.534400px;}
.y76{bottom:653.802000px;}
.yc4{bottom:656.944650px;}
.y4e{bottom:661.212600px;}
.yc8{bottom:663.336000px;}
.yaa{bottom:671.801250px;}
.y85{bottom:672.189450px;}
.y43{bottom:681.925200px;}
.y34{bottom:682.886550px;}
.y1d{bottom:695.133900px;}
.yd2{bottom:707.773650px;}
.y4{bottom:708.151350px;}
.y6a{bottom:714.448950px;}
.y84{bottom:727.686600px;}
.y75{bottom:730.953600px;}
.ybd{bottom:734.096250px;}
.yb3{bottom:742.390650px;}
.yf{bottom:746.658600px;}
.ya0{bottom:747.400200px;}
.ya9{bottom:747.598800px;}
.y55{bottom:748.015800px;}
.ydb{bottom:750.736950px;}
.y42{bottom:756.370650px;}
.y95{bottom:759.710850px;}
.y27{bottom:760.098300px;}
.y69{bottom:777.863550px;}
.y83{bottom:783.183750px;}
.yc7{bottom:791.092800px;}
.y74{bottom:801.364200px;}
.y3{bottom:805.650600px;}
.y33{bottom:805.669350px;}
.ybc{bottom:811.247850px;}
.y4d{bottom:812.605200px;}
.y94{bottom:817.912050px;}
.ya8{bottom:817.972950px;}
.yb2{bottom:819.542250px;}
.y26{bottom:821.007600px;}
.y9f{bottom:821.845650px;}
.y41{bottom:823.962600px;}
.y1c{bottom:837.889800px;}
.y82{bottom:838.681050px;}
.yd1{bottom:847.300800px;}
.y32{bottom:867.934650px;}
.y93{bottom:876.113250px;}
.y25{bottom:878.020800px;}
.y65{bottom:881.196300px;}
.ybb{bottom:888.399450px;}
.y4c{bottom:889.756800px;}
.yb1{bottom:890.596350px;}
.ye{bottom:891.310200px;}
.y54{bottom:892.667400px;}
.y81{bottom:894.178200px;}
.yda{bottom:896.121750px;}
.y9e{bottom:896.291250px;}
.y1b{bottom:904.762800px;}
.yd0{bottom:910.644600px;}
.y68{bottom:913.261800px;}
.yc6{bottom:918.849450px;}
.y31{bottom:930.200100px;}
.y92{bottom:934.314450px;}
.y80{bottom:949.675350px;}
.y73{bottom:952.756800px;}
.y3c{bottom:953.187000px;}
.y2{bottom:954.128850px;}
.y62{bottom:963.892050px;}
.yba{bottom:965.551050px;}
.y4b{bottom:966.908250px;}
.ya7{bottom:966.911400px;}
.yd9{bottom:970.565400px;}
.y40{bottom:970.736850px;}
.y67{bottom:982.293300px;}
.y30{bottom:992.466750px;}
.y91{bottom:992.515650px;}
.y24{bottom:997.506750px;}
.y7f{bottom:1005.172500px;}
.y5e{bottom:1027.824750px;}
.y72{bottom:1029.908250px;}
.yd{bottom:1036.605300px;}
.y4a{bottom:1037.319000px;}
.ya6{bottom:1038.432300px;}
.y3f{bottom:1038.970800px;}
.yd8{bottom:1039.509300px;}
.y1a{bottom:1041.302400px;}
.ycf{bottom:1043.130150px;}
.y66{bottom:1045.707900px;}
.yc5{bottom:1046.606100px;}
.y90{bottom:1050.716850px;}
.y2f{bottom:1052.269050px;}
.yce{bottom:1053.819750px;}
.y23{bottom:1053.885750px;}
.y7e{bottom:1057.145550px;}
.y71{bottom:1100.319000px;}
.y1{bottom:1102.606950px;}
.y8f{bottom:1105.620000px;}
.y5a{bottom:1139.055000px;}
.y19{bottom:1160.697300px;}
.y5c{bottom:1202.017350px;}
.yc{bottom:1252.624050px;}
.y52{bottom:1325.685450px;}
.yb{bottom:1363.365300px;}
.y8e{bottom:1378.787850px;}
.ya{bottom:1413.050250px;}
.y15{bottom:1433.361450px;}
.h19{height:74.987460px;}
.h14{height:105.264000px;}
.ha{height:109.260045px;}
.hc{height:125.124045px;}
.h3{height:135.088800px;}
.h18{height:140.352000px;}
.h20{height:153.685440px;}
.h23{height:155.952000px;}
.h2{height:157.896000px;}
.h11{height:166.317120px;}
.h13{height:172.632960px;}
.hb{height:175.440000px;}
.h27{height:183.159360px;}
.h1f{height:186.705734px;}
.h1e{height:187.142400px;}
.h1d{height:189.475200px;}
.h22{height:191.820960px;}
.h2a{height:193.685760px;}
.hf{height:197.896320px;}
.hd{height:201.756000px;}
.h10{height:202.051411px;}
.h2c{height:202.106880px;}
.h16{height:204.212160px;}
.h25{height:206.317440px;}
.h8{height:207.936000px;}
.h12{height:209.724250px;}
.h1a{height:210.132450px;}
.h9{height:210.528000px;}
.h26{height:222.512314px;}
.h1b{height:223.558350px;}
.h1c{height:230.185152px;}
.h29{height:235.300378px;}
.h17{height:239.794650px;}
.he{height:240.415603px;}
.h6{height:241.230000px;}
.h2b{height:245.530829px;}
.h15{height:248.088442px;}
.h24{height:250.646054px;}
.h7{height:255.761280px;}
.h4{height:280.704000px;}
.h21{height:324.344700px;}
.h28{height:348.000000px;}
.h5{height:372.810000px;}
.h1{height:442.635120px;}
.h0{height:1620.000000px;}
.w3{width:261.147000px;}
.w8{width:275.022150px;}
.w2{width:293.163000px;}
.w1{width:310.560000px;}
.w7{width:331.822200px;}
.w9{width:360.914850px;}
.w4{width:380.555850px;}
.w6{width:590.436750px;}
.w5{width:776.199900px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x4{left:18.630000px;}
.x6{left:21.312000px;}
.x21{left:38.311290px;}
.x17{left:47.638500px;}
.x1d{left:56.148000px;}
.x1a{left:64.143000px;}
.x19{left:81.939000px;}
.x1b{left:85.471500px;}
.x13{left:116.083650px;}
.x11{left:137.838000px;}
.x20{left:144.760215px;}
.x1{left:148.499640px;}
.x22{left:201.060000px;}
.x23{left:202.500000px;}
.xa{left:205.380000px;}
.xb{left:207.540000px;}
.x27{left:208.564500px;}
.x25{left:211.140000px;}
.x1f{left:213.300000px;}
.x24{left:215.245950px;}
.xf{left:218.340000px;}
.x2{left:220.500000px;}
.x15{left:249.859500px;}
.x8{left:724.500000px;}
.x9{left:792.180000px;}
.x12{left:1457.329350px;}
.x10{left:1655.146500px;}
.x14{left:1700.007000px;}
.x3{left:1811.055000px;}
.x1c{left:1814.769000px;}
.x1e{left:1884.543000px;}
.x18{left:2115.954000px;}
.x5{left:2127.292500px;}
.x16{left:2208.096000px;}
.xe{left:2333.689500px;}
.xd{left:2399.695500px;}
.xc{left:2411.521500px;}
.x7{left:2599.632000px;}
.x26{left:2751.874500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.417600pt;}
.v4{vertical-align:14.351467pt;}
.v3{vertical-align:16.107733pt;}
.v5{vertical-align:18.373333pt;}
.v6{vertical-align:19.971200pt;}
.v1{vertical-align:22.453333pt;}
.v2{vertical-align:23.967467pt;}
.v8{vertical-align:25.036800pt;}
.ls19{letter-spacing:-59.386667pt;}
.ls7{letter-spacing:-34.000000pt;}
.ls0{letter-spacing:-10.764800pt;}
.ls4{letter-spacing:-9.066667pt;}
.ls16{letter-spacing:-7.888000pt;}
.ls2{letter-spacing:-6.826667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:19.392000pt;}
.lsf{letter-spacing:29.836800pt;}
.ls18{letter-spacing:92.889600pt;}
.lsb{letter-spacing:106.428160pt;}
.lsc{letter-spacing:109.344000pt;}
.ls6{letter-spacing:115.175680pt;}
.ls8{letter-spacing:119.549440pt;}
.lsd{letter-spacing:125.760000pt;}
.ls1b{letter-spacing:126.839040pt;}
.lsa{letter-spacing:131.212800pt;}
.ls1c{letter-spacing:134.128640pt;}
.ls5{letter-spacing:137.044480pt;}
.ls1d{letter-spacing:139.960320pt;}
.ls9{letter-spacing:141.418240pt;}
.ls1a{letter-spacing:142.876160pt;}
.ls3{letter-spacing:145.792000pt;}
.ls11{letter-spacing:231.705600pt;}
.ls17{letter-spacing:320.409600pt;}
.lse{letter-spacing:373.785600pt;}
.ls10{letter-spacing:435.456000pt;}
.ls13{letter-spacing:714.124800pt;}
.ls12{letter-spacing:931.660800pt;}
.ls15{letter-spacing:1027.084800pt;}
.wse{word-spacing:-373.785600pt;}
.wsf{word-spacing:-146.265600pt;}
.ws0{word-spacing:-138.865920pt;}
.ws3{word-spacing:-116.960000pt;}
.wsb{word-spacing:-101.755200pt;}
.ws6{word-spacing:-92.026667pt;}
.ws1{word-spacing:-88.064000pt;}
.ws9{word-spacing:-71.168000pt;}
.ws12{word-spacing:-69.744640pt;}
.ws11{word-spacing:-69.032960pt;}
.ws14{word-spacing:-68.321280pt;}
.ws5{word-spacing:-66.897920pt;}
.ws10{word-spacing:-66.640000pt;}
.ws13{word-spacing:-61.916160pt;}
.ws4{word-spacing:-59.306667pt;}
.ws8{word-spacing:-47.445333pt;}
.ws7{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.170667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:1149.657600pt;}
._15{margin-left:-320.413867pt;}
._16{margin-left:-92.893867pt;}
._2{margin-left:-39.829760pt;}
._13{margin-left:-29.185600pt;}
._18{margin-left:-28.288000pt;}
._a{margin-left:-25.258667pt;}
._12{margin-left:-23.552000pt;}
._f{margin-left:-22.138880pt;}
._7{margin-left:-18.970773pt;}
._5{margin-left:-17.664000pt;}
._14{margin-left:-16.128000pt;}
._6{margin-left:-15.112533pt;}
._4{margin-left:-14.208000pt;}
._9{margin-left:-12.155733pt;}
._0{margin-left:-10.764907pt;}
._1{margin-left:-9.688320pt;}
._c{margin-left:-8.445013pt;}
._b{margin-left:-6.826667pt;}
._e{margin-left:-4.608000pt;}
._3{margin-left:-3.456000pt;}
._8{margin-left:-2.457600pt;}
._11{width:4.147200pt;}
._d{width:5.280000pt;}
._10{width:24.933333pt;}
._17{width:50.320000pt;}
.fs10{font-size:128.000000pt;}
.fs2{font-size:164.266667pt;}
.fs13{font-size:170.666667pt;}
.fs17{font-size:186.880000pt;}
.fs1{font-size:192.000000pt;}
.fsd{font-size:202.240000pt;}
.fsf{font-size:209.920000pt;}
.fs8{font-size:213.333333pt;}
.fs1d{font-size:222.720000pt;}
.fs16{font-size:229.862400pt;}
.fs15{font-size:230.400000pt;}
.fs20{font-size:235.520000pt;}
.fs19{font-size:236.160000pt;}
.fsb{font-size:240.640000pt;}
.fs9{font-size:245.333333pt;}
.fs22{font-size:245.760000pt;}
.fs12{font-size:248.320000pt;}
.fsc{font-size:248.755200pt;}
.fs1b{font-size:250.880000pt;}
.fs7{font-size:256.000000pt;}
.fse{font-size:258.201600pt;}
.fs1c{font-size:273.945600pt;}
.fs14{font-size:283.392000pt;}
.fs1f{font-size:289.689600pt;}
.fs5{font-size:293.333333pt;}
.fsa{font-size:295.987200pt;}
.fs21{font-size:302.284800pt;}
.fs11{font-size:305.433600pt;}
.fs1a{font-size:308.582400pt;}
.fs1e{font-size:309.333333pt;}
.fs6{font-size:314.880000pt;}
.fs3{font-size:341.333333pt;}
.fs18{font-size:394.400000pt;}
.fs4{font-size:453.333333pt;}
.fs0{font-size:538.240000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:21.034107pt;}
.y7d{bottom:28.347987pt;}
.y16{bottom:29.013467pt;}
.y61{bottom:31.672933pt;}
.y18{bottom:33.365467pt;}
.ye3{bottom:36.170987pt;}
.y64{bottom:58.224933pt;}
.y22{bottom:72.980267pt;}
.y58{bottom:73.725053pt;}
.yaf{bottom:74.096720pt;}
.y3e{bottom:75.584067pt;}
.y5d{bottom:78.124133pt;}
.y60{bottom:83.672933pt;}
.ye2{bottom:88.170987pt;}
.y5b{bottom:91.308267pt;}
.y53{bottom:91.615600pt;}
.y63{bottom:110.224933pt;}
.y9d{bottom:119.314933pt;}
.ycd{bottom:128.635693pt;}
.y21{bottom:132.422960pt;}
.y5f{bottom:135.672933pt;}
.yae{bottom:141.472267pt;}
.y14{bottom:146.792400pt;}
.y49{bottom:149.706533pt;}
.yd7{bottom:150.707867pt;}
.y2e{bottom:153.246800pt;}
.y8d{bottom:156.650533pt;}
.ya5{bottom:158.886533pt;}
.ye1{bottom:159.342400pt;}
.y7c{bottom:159.984400pt;}
.y3b{bottom:168.964533pt;}
.y9{bottom:175.529867pt;}
.yc3{bottom:179.848400pt;}
.yb9{bottom:187.221200pt;}
.yad{bottom:204.027067pt;}
.y8c{bottom:205.981333pt;}
.y2d{bottom:207.388400pt;}
.y70{bottom:212.898133pt;}
.y13{bottom:215.371600pt;}
.y48{bottom:215.880267pt;}
.y7b{bottom:218.839867pt;}
.y9c{bottom:219.543333pt;}
.y3a{bottom:224.312667pt;}
.y8{bottom:224.863200pt;}
.ya4{bottom:225.060400pt;}
.ye0{bottom:225.514400pt;}
.ycc{bottom:246.056533pt;}
.yc2{bottom:248.427600pt;}
.y20{bottom:253.791467pt;}
.y8b{bottom:255.312133pt;}
.yb8{bottom:255.800400pt;}
.y2c{bottom:261.530000pt;}
.y9b{bottom:271.277733pt;}
.y6f{bottom:274.259333pt;}
.yd6{bottom:274.732000pt;}
.y47{bottom:276.532800pt;}
.y39{bottom:277.470267pt;}
.y12{bottom:277.958933pt;}
.ya3{bottom:285.142000pt;}
.ydf{bottom:286.227467pt;}
.ycb{bottom:302.353067pt;}
.y8a{bottom:304.642933pt;}
.y7a{bottom:306.840533pt;}
.y2b{bottom:312.208533pt;}
.yc1{bottom:317.006800pt;}
.y9a{bottom:323.012133pt;}
.yb7{bottom:324.379600pt;}
.yd5{bottom:331.037600pt;}
.y6e{bottom:335.620667pt;}
.y89{bottom:353.973733pt;}
.y7{bottom:372.863200pt;}
.y99{bottom:374.746533pt;}
.y1f{bottom:375.159867pt;}
.y79{bottom:375.419733pt;}
.y3d{bottom:380.156400pt;}
.yb0{bottom:380.806267pt;}
.yc0{bottom:385.586000pt;}
.y38{bottom:386.477200pt;}
.y51{bottom:387.998933pt;}
.yb6{bottom:392.958800pt;}
.y6d{bottom:396.982000pt;}
.y88{bottom:400.172000pt;}
.y11{bottom:406.538133pt;}
.y46{bottom:407.634267pt;}
.y57{bottom:407.744533pt;}
.ya2{bottom:409.515867pt;}
.y2a{bottom:414.391200pt;}
.yde{bottom:415.458400pt;}
.yca{bottom:415.914667pt;}
.y6{bottom:422.196533pt;}
.y98{bottom:423.549200pt;}
.y37{bottom:443.157600pt;}
.y78{bottom:443.998933pt;}
.ybf{bottom:454.165200pt;}
.yd4{bottom:455.061733pt;}
.y50{bottom:456.578133pt;}
.y6c{bottom:458.343200pt;}
.yb5{bottom:461.538000pt;}
.yac{bottom:462.405467pt;}
.y45{bottom:473.808000pt;}
.ydd{bottom:481.630400pt;}
.y1e{bottom:496.528267pt;}
.y36{bottom:498.504533pt;}
.y87{bottom:498.840133pt;}
.yd3{bottom:511.367333pt;}
.y77{bottom:512.578133pt;}
.y6b{bottom:514.711733pt;}
.ybe{bottom:517.324400pt;}
.y29{bottom:519.959733pt;}
.y97{bottom:524.531867pt;}
.yb4{bottom:524.697200pt;}
.y4f{bottom:525.157333pt;}
.yab{bottom:529.781067pt;}
.yc9{bottom:533.335467pt;}
.ya1{bottom:533.889733pt;}
.y10{bottom:535.117333pt;}
.y56{bottom:536.323733pt;}
.y44{bottom:539.981867pt;}
.ydc{bottom:542.914000pt;}
.y86{bottom:548.170933pt;}
.y35{bottom:553.852667pt;}
.y28{bottom:570.074400pt;}
.y5{bottom:570.801200pt;}
.y96{bottom:574.427733pt;}
.y17{bottom:578.252800pt;}
.y76{bottom:581.157333pt;}
.yc4{bottom:583.950800pt;}
.y4e{bottom:587.744533pt;}
.yc8{bottom:589.632000pt;}
.yaa{bottom:597.156667pt;}
.y85{bottom:597.501733pt;}
.y43{bottom:606.155733pt;}
.y34{bottom:607.010267pt;}
.y1d{bottom:617.896800pt;}
.yd2{bottom:629.132133pt;}
.y4{bottom:629.467867pt;}
.y6a{bottom:635.065733pt;}
.y84{bottom:646.832533pt;}
.y75{bottom:649.736533pt;}
.ybd{bottom:652.530000pt;}
.yb3{bottom:659.902800pt;}
.yf{bottom:663.696533pt;}
.ya0{bottom:664.355733pt;}
.ya9{bottom:664.532267pt;}
.y55{bottom:664.902933pt;}
.ydb{bottom:667.321733pt;}
.y42{bottom:672.329467pt;}
.y95{bottom:675.298533pt;}
.y27{bottom:675.642933pt;}
.y69{bottom:691.434267pt;}
.y83{bottom:696.163333pt;}
.yc7{bottom:703.193600pt;}
.y74{bottom:712.323733pt;}
.y3{bottom:716.133867pt;}
.y33{bottom:716.150533pt;}
.ybc{bottom:721.109200pt;}
.y4d{bottom:722.315733pt;}
.y94{bottom:727.032933pt;}
.ya8{bottom:727.087067pt;}
.yb2{bottom:728.482000pt;}
.y26{bottom:729.784533pt;}
.y9f{bottom:730.529467pt;}
.y41{bottom:732.411200pt;}
.y1c{bottom:744.790933pt;}
.y82{bottom:745.494267pt;}
.yd1{bottom:753.156267pt;}
.y32{bottom:771.497467pt;}
.y93{bottom:778.767333pt;}
.y25{bottom:780.462933pt;}
.y65{bottom:783.285600pt;}
.ybb{bottom:789.688400pt;}
.y4c{bottom:790.894933pt;}
.yb1{bottom:791.641200pt;}
.ye{bottom:792.275733pt;}
.y54{bottom:793.482133pt;}
.y81{bottom:794.825067pt;}
.yda{bottom:796.552667pt;}
.y9e{bottom:796.703333pt;}
.y1b{bottom:804.233600pt;}
.yd0{bottom:809.461867pt;}
.y68{bottom:811.788267pt;}
.yc6{bottom:816.755067pt;}
.y31{bottom:826.844533pt;}
.y92{bottom:830.501733pt;}
.y80{bottom:844.155867pt;}
.y73{bottom:846.894933pt;}
.y3c{bottom:847.277333pt;}
.y2{bottom:848.114533pt;}
.y62{bottom:856.792933pt;}
.yba{bottom:858.267600pt;}
.y4b{bottom:859.474000pt;}
.ya7{bottom:859.476800pt;}
.yd9{bottom:862.724800pt;}
.y40{bottom:862.877200pt;}
.y67{bottom:873.149600pt;}
.y30{bottom:882.192667pt;}
.y91{bottom:882.236133pt;}
.y24{bottom:886.672667pt;}
.y7f{bottom:893.486667pt;}
.y5e{bottom:913.622000pt;}
.y72{bottom:915.474000pt;}
.yd{bottom:921.426933pt;}
.y4a{bottom:922.061333pt;}
.ya6{bottom:923.050933pt;}
.y3f{bottom:923.529600pt;}
.yd8{bottom:924.008267pt;}
.y1a{bottom:925.602133pt;}
.ycf{bottom:927.226800pt;}
.y66{bottom:929.518133pt;}
.yc5{bottom:930.316533pt;}
.y90{bottom:933.970533pt;}
.y2f{bottom:935.350267pt;}
.yce{bottom:936.728667pt;}
.y23{bottom:936.787333pt;}
.y7e{bottom:939.684933pt;}
.y71{bottom:978.061333pt;}
.y1{bottom:980.095067pt;}
.y8f{bottom:982.773333pt;}
.y5a{bottom:1012.493333pt;}
.y19{bottom:1031.730933pt;}
.y5c{bottom:1068.459867pt;}
.yc{bottom:1113.443600pt;}
.y52{bottom:1178.387067pt;}
.yb{bottom:1211.880267pt;}
.y8e{bottom:1225.589200pt;}
.ya{bottom:1256.044667pt;}
.y15{bottom:1274.099067pt;}
.h19{height:66.655520pt;}
.h14{height:93.568000pt;}
.ha{height:97.120040pt;}
.hc{height:111.221373pt;}
.h3{height:120.078933pt;}
.h18{height:124.757333pt;}
.h20{height:136.609280pt;}
.h23{height:138.624000pt;}
.h2{height:140.352000pt;}
.h11{height:147.837440pt;}
.h13{height:153.451520pt;}
.hb{height:155.946667pt;}
.h27{height:162.808320pt;}
.h1f{height:165.960653pt;}
.h1e{height:166.348800pt;}
.h1d{height:168.422400pt;}
.h22{height:170.507520pt;}
.h2a{height:172.165120pt;}
.hf{height:175.907840pt;}
.hd{height:179.338667pt;}
.h10{height:179.601254pt;}
.h2c{height:179.650560pt;}
.h16{height:181.521920pt;}
.h25{height:183.393280pt;}
.h8{height:184.832000pt;}
.h12{height:186.421555pt;}
.h1a{height:186.784400pt;}
.h9{height:187.136000pt;}
.h26{height:197.788723pt;}
.h1b{height:198.718533pt;}
.h1c{height:204.609024pt;}
.h29{height:209.155891pt;}
.h17{height:213.150800pt;}
.he{height:213.702758pt;}
.h6{height:214.426667pt;}
.h2b{height:218.249626pt;}
.h15{height:220.523059pt;}
.h24{height:222.796493pt;}
.h7{height:227.343360pt;}
.h4{height:249.514667pt;}
.h21{height:288.306400pt;}
.h28{height:309.333333pt;}
.h5{height:331.386667pt;}
.h1{height:393.453440pt;}
.h0{height:1440.000000pt;}
.w3{width:232.130667pt;}
.w8{width:244.464133pt;}
.w2{width:260.589333pt;}
.w1{width:276.053333pt;}
.w7{width:294.953067pt;}
.w9{width:320.813200pt;}
.w4{width:338.271867pt;}
.w6{width:524.832667pt;}
.w5{width:689.955467pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x4{left:16.560000pt;}
.x6{left:18.944000pt;}
.x21{left:34.054480pt;}
.x17{left:42.345333pt;}
.x1d{left:49.909333pt;}
.x1a{left:57.016000pt;}
.x19{left:72.834667pt;}
.x1b{left:75.974667pt;}
.x13{left:103.185467pt;}
.x11{left:122.522667pt;}
.x20{left:128.675747pt;}
.x1{left:131.999680pt;}
.x22{left:178.720000pt;}
.x23{left:180.000000pt;}
.xa{left:182.560000pt;}
.xb{left:184.480000pt;}
.x27{left:185.390667pt;}
.x25{left:187.680000pt;}
.x1f{left:189.600000pt;}
.x24{left:191.329733pt;}
.xf{left:194.080000pt;}
.x2{left:196.000000pt;}
.x15{left:222.097333pt;}
.x8{left:644.000000pt;}
.x9{left:704.160000pt;}
.x12{left:1295.403867pt;}
.x10{left:1471.241333pt;}
.x14{left:1511.117333pt;}
.x3{left:1609.826667pt;}
.x1c{left:1613.128000pt;}
.x1e{left:1675.149333pt;}
.x18{left:1880.848000pt;}
.x5{left:1890.926667pt;}
.x16{left:1962.752000pt;}
.xe{left:2074.390667pt;}
.xd{left:2133.062667pt;}
.xc{left:2143.574667pt;}
.x7{left:2310.784000pt;}
.x26{left:2446.110667pt;}
}




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