
    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_e539a472fdcc0bfbcba50692.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d505feec88ca43889b6d55bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_84e6c55ee842870d0a3378be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.835938;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_6c3b800a3cc9eb12f43690fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_c013a394a89ea91ddf0899eb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5da9428b529b0718d874e02d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_82a23bdbeb80515588034134.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_100b5004b1c1ed3d84730ca5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_afd70ce5ee6e556483171d2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.816406;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);}
.v4{vertical-align:-6.750600px;}
.v1{vertical-align:-5.362200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.500000px;}
.v2{vertical-align:52.500000px;}
.ls6{letter-spacing:-48.816000px;}
.ls28{letter-spacing:-0.108000px;}
.ls25{letter-spacing:-0.096000px;}
.lsf{letter-spacing:-0.084000px;}
.ls2f{letter-spacing:-0.076800px;}
.ls17{letter-spacing:-0.050400px;}
.ls5{letter-spacing:-0.038400px;}
.ls1f{letter-spacing:-0.028800px;}
.ls24{letter-spacing:-0.026400px;}
.ls4{letter-spacing:-0.024000px;}
.ls1d{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.006720px;}
.ls2e{letter-spacing:0.013800px;}
.ls11{letter-spacing:0.014064px;}
.ls2d{letter-spacing:0.014220px;}
.ls2{letter-spacing:0.014400px;}
.ls26{letter-spacing:0.016404px;}
.ls7{letter-spacing:0.018720px;}
.ls2c{letter-spacing:0.019200px;}
.ls21{letter-spacing:0.021120px;}
.ls20{letter-spacing:0.021600px;}
.ls1a{letter-spacing:0.021960px;}
.ls1e{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.025620px;}
.ls23{letter-spacing:0.026400px;}
.ls31{letter-spacing:0.027600px;}
.ls1c{letter-spacing:0.028800px;}
.lsd{letter-spacing:0.038400px;}
.ls13{letter-spacing:0.043200px;}
.ls30{letter-spacing:0.048000px;}
.ls16{letter-spacing:0.050400px;}
.ls0{letter-spacing:0.057600px;}
.ls32{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.067200px;}
.lsc{letter-spacing:0.076800px;}
.ls19{letter-spacing:0.079200px;}
.lse{letter-spacing:0.096000px;}
.ls2b{letter-spacing:0.134400px;}
.ls2a{letter-spacing:0.158400px;}
.lsb{letter-spacing:18.214500px;}
.ls1b{letter-spacing:34.898160px;}
.ls18{letter-spacing:37.570056px;}
.ls22{letter-spacing:56.355000px;}
.ls8{letter-spacing:68.093400px;}
.ls3{letter-spacing:70.530840px;}
.ls27{letter-spacing:79.831716px;}
.ls12{letter-spacing:91.570056px;}
.lsa{letter-spacing:99.214500px;}
.ls15{letter-spacing:449.079360px;}
.ls14{letter-spacing:469.946400px;}
.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;}
}
.ws22{word-spacing:-192.000000px;}
.ws17{word-spacing:-27.000000px;}
.ws1d{word-spacing:-0.422400px;}
.ws15{word-spacing:-0.343200px;}
.wsc{word-spacing:-0.336000px;}
.ws1e{word-spacing:-0.326400px;}
.ws19{word-spacing:-0.290400px;}
.ws20{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.268800px;}
.ws9{word-spacing:-0.264000px;}
.ws8{word-spacing:-0.249600px;}
.ws1{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.237600px;}
.ws1c{word-spacing:-0.235200px;}
.wse{word-spacing:-0.230400px;}
.ws13{word-spacing:-0.218400px;}
.ws6{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.211200px;}
.ws4{word-spacing:-0.201600px;}
.ws2{word-spacing:-0.192000px;}
.ws10{word-spacing:-0.187200px;}
.ws25{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.168000px;}
.wsf{word-spacing:-0.158400px;}
.ws7{word-spacing:-0.153600px;}
.ws3{word-spacing:-0.144000px;}
.ws16{word-spacing:-0.129600px;}
.ws0{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.117600px;}
.ws21{word-spacing:-0.115200px;}
.ws1b{word-spacing:-0.108000px;}
.ws1a{word-spacing:-0.096000px;}
.wsd{word-spacing:-0.084000px;}
.ws5{word-spacing:0.000000px;}
.ws12{word-spacing:558.316800px;}
.ws11{word-spacing:577.353600px;}
.ws23{word-spacing:765.540000px;}
.ws24{word-spacing:770.790000px;}
._0{margin-left:-32.905800px;}
._2{margin-left:-20.016000px;}
._8{margin-left:-9.156420px;}
._4{margin-left:-5.342400px;}
._5{margin-left:-2.635200px;}
._3{margin-left:-1.008000px;}
._1{width:1.062600px;}
._7{width:385.888800px;}
._6{width:558.121200px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(192,80,77);}
.fc2{color:rgb(165,0,33);}
.fc1{color:rgb(204,0,0);}
.fc7{color:rgb(51,51,51);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(137,137,137);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.fs6{font-size:168.000000px;}
.fs3{font-size:192.000000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:240.000000px;}
.fs5{font-size:264.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000035px;}
.y3{bottom:12.599980px;}
.yc3{bottom:78.599980px;}
.y46{bottom:82.079980px;}
.y89{bottom:88.019980px;}
.y20{bottom:95.579980px;}
.y51{bottom:96.599950px;}
.yb7{bottom:106.019965px;}
.y2f{bottom:114.599965px;}
.y73{bottom:119.579980px;}
.y93{bottom:129.599965px;}
.y1b{bottom:134.519965px;}
.y6d{bottom:134.579980px;}
.y7f{bottom:134.879965px;}
.yce{bottom:136.537465px;}
.yc2{bottom:137.099965px;}
.y50{bottom:138.599965px;}
.y45{bottom:147.599965px;}
.y88{bottom:147.959980px;}
.y5e{bottom:149.112715px;}
.y66{bottom:152.219965px;}
.y8b{bottom:156.599965px;}
.ya6{bottom:159.862465px;}
.y1f{bottom:164.579980px;}
.y2e{bottom:165.599965px;}
.yb6{bottom:167.099965px;}
.y2b{bottom:168.599965px;}
.y23{bottom:169.019965px;}
.y4f{bottom:182.099965px;}
.y72{bottom:188.579980px;}
.y44{bottom:191.099965px;}
.yc1{bottom:194.099965px;}
.ya5{bottom:194.362315px;}
.y1a{bottom:196.019965px;}
.y7e{bottom:197.879965px;}
.y87{bottom:198.959980px;}
.y39{bottom:200.099965px;}
.y6c{bottom:203.579980px;}
.y65{bottom:208.379965px;}
.y5d{bottom:210.612715px;}
.ycf{bottom:213.037465px;}
.y2d{bottom:215.519965px;}
.yb5{bottom:216.599965px;}
.y2a{bottom:218.519965px;}
.y21{bottom:223.079980px;}
.y96{bottom:223.724965px;}
.yd5{bottom:224.204980px;}
.y4e{bottom:225.599965px;}
.ya4{bottom:229.222480px;}
.y22{bottom:230.519965px;}
.y10{bottom:233.579980px;}
.y91{bottom:234.299965px;}
.y1e{bottom:234.599965px;}
.y38{bottom:243.599965px;}
.y9{bottom:246.959980px;}
.yc0{bottom:251.099965px;}
.y86{bottom:251.459980px;}
.y19{bottom:256.019965px;}
.yba{bottom:257.099965px;}
.yc6{bottom:257.579980px;}
.y76{bottom:258.599965px;}
.y71{bottom:259.079980px;}
.y7d{bottom:259.559965px;}
.y53{bottom:264.351865px;}
.y90{bottom:267.299965px;}
.yb4{bottom:267.599965px;}
.yab{bottom:268.079980px;}
.y4d{bottom:269.099965px;}
.y5c{bottom:270.612715px;}
.y64{bottom:271.799965px;}
.y6b{bottom:272.579980px;}
.ya3{bottom:272.722330px;}
.y2c{bottom:275.519965px;}
.y43{bottom:278.099965px;}
.y29{bottom:279.599965px;}
.y37{bottom:287.099965px;}
.y1c{bottom:292.079980px;}
.y8{bottom:300.599965px;}
.y85{bottom:302.459980px;}
.yf{bottom:303.599965px;}
.y7c{bottom:306.059965px;}
.ybf{bottom:308.579980px;}
.yaa{bottom:309.208165px;}
.yb9{bottom:314.579980px;}
.yc9{bottom:315.037315px;}
.y63{bottom:315.719965px;}
.ya2{bottom:315.862315px;}
.y75{bottom:316.079980px;}
.yb3{bottom:317.099965px;}
.y18{bottom:317.579980px;}
.y42{bottom:321.599965px;}
.yc5{bottom:326.099965px;}
.y7{bottom:327.787315px;}
.y70{bottom:328.079980px;}
.y36{bottom:330.599965px;}
.y5b{bottom:330.612715px;}
.y56{bottom:335.519965px;}
.y28{bottom:338.099965px;}
.y6a{bottom:340.019965px;}
.ya1{bottom:350.722330px;}
.y4c{bottom:354.599965px;}
.y84{bottom:354.959980px;}
.y7b{bottom:355.379965px;}
.ye{bottom:361.079980px;}
.yd4{bottom:363.224965px;}
.y41{bottom:363.599965px;}
.y92{bottom:367.724965px;}
.yb2{bottom:368.519965px;}
.y13{bottom:369.974965px;}
.y62{bottom:371.219965px;}
.y35{bottom:372.599965px;}
.ybe{bottom:378.599965px;}
.yca{bottom:378.974965px;}
.yc4{bottom:383.579980px;}
.yb8{bottom:384.599965px;}
.y17{bottom:385.019965px;}
.y74{bottom:385.079980px;}
.ya9{bottom:387.208165px;}
.y5a{bottom:392.112715px;}
.ya0{bottom:393.862315px;}
.y27{bottom:395.099965px;}
.y6f{bottom:396.599965px;}
.y4b{bottom:398.099965px;}
.y6{bottom:399.787315px;}
.y69{bottom:401.519965px;}
.y40{bottom:407.099965px;}
.y83{bottom:407.459980px;}
.y8a{bottom:408.599965px;}
.y55{bottom:408.974965px;}
.y34{bottom:416.099965px;}
.y7a{bottom:419.879965px;}
.yd3{bottom:420.704980px;}
.yb1{bottom:428.099965px;}
.y9f{bottom:428.722330px;}
.y61{bottom:428.879965px;}
.yd{bottom:430.079980px;}
.y12{bottom:434.474965px;}
.ybd{bottom:435.599965px;}
.y8f{bottom:440.699965px;}
.y4a{bottom:441.599965px;}
.y16{bottom:446.519965px;}
.ycb{bottom:449.849965px;}
.y3f{bottom:450.599965px;}
.y59{bottom:452.112715px;}
.y26{bottom:453.599965px;}
.y6e{bottom:454.079980px;}
.y82{bottom:458.459980px;}
.y33{bottom:459.599965px;}
.y68{bottom:461.519965px;}
.ya8{bottom:464.668165px;}
.y5{bottom:471.787315px;}
.y9e{bottom:471.862315px;}
.y8e{bottom:472.199965px;}
.yb0{bottom:479.099965px;}
.y79{bottom:482.879965px;}
.y49{bottom:485.099965px;}
.y54{bottom:486.974965px;}
.yd2{bottom:489.704980px;}
.y60{bottom:491.879965px;}
.y95{bottom:493.724965px;}
.y3e{bottom:494.099965px;}
.y11{bottom:498.974965px;}
.yc{bottom:499.079980px;}
.y32{bottom:503.099965px;}
.y8d{bottom:505.199965px;}
.y9d{bottom:506.362315px;}
.y15{bottom:506.519965px;}
.y25{bottom:510.599965px;}
.y81{bottom:510.959980px;}
.y58{bottom:513.192715px;}
.y67{bottom:522.599965px;}
.y48{bottom:528.599965px;}
.yaf{bottom:529.019965px;}
.ycc{bottom:529.537315px;}
.y3d{bottom:537.599965px;}
.y8c{bottom:538.199965px;}
.y9c{bottom:539.722330px;}
.y4{bottom:543.787315px;}
.y78{bottom:545.399980px;}
.y31{bottom:546.599965px;}
.y52{bottom:548.728165px;}
.ybc{bottom:551.099965px;}
.y5f{bottom:554.399980px;}
.yd1{bottom:558.224965px;}
.y80{bottom:561.599965px;}
.yb{bottom:567.599965px;}
.y47{bottom:570.599965px;}
.y3c{bottom:579.599965px;}
.y9b{bottom:582.862315px;}
.y30{bottom:588.599965px;}
.yae{bottom:590.099965px;}
.ycd{bottom:599.287315px;}
.ybb{bottom:608.099965px;}
.y94{bottom:610.724965px;}
.yd0{bottom:615.224965px;}
.y9a{bottom:617.362315px;}
.ya7{bottom:628.162315px;}
.yad{bottom:639.599965px;}
.y98{bottom:641.099965px;}
.yc8{bottom:652.162315px;}
.ya{bottom:662.849965px;}
.y57{bottom:665.290315px;}
.y3a{bottom:666.599815px;}
.y3b{bottom:672.599815px;}
.y24{bottom:682.300015px;}
.yc7{bottom:688.162315px;}
.y99{bottom:696.787315px;}
.y77{bottom:699.599815px;}
.y97{bottom:705.599815px;}
.y14{bottom:706.162315px;}
.y1d{bottom:712.162315px;}
.yac{bottom:718.162315px;}
.y2{bottom:774.562315px;}
.hd{height:74.988281px;}
.h15{height:86.132812px;}
.h12{height:98.578125px;}
.hc{height:99.984375px;}
.h11{height:103.289062px;}
.h2{height:103.359375px;}
.hf{height:116.484375px;}
.h3{height:118.757812px;}
.h9{height:120.585938px;}
.ha{height:131.437500px;}
.h13{height:137.718750px;}
.h6{height:137.812500px;}
.h7{height:147.867188px;}
.he{height:152.484375px;}
.h14{height:153.750000px;}
.h10{height:155.039062px;}
.h4{height:164.296875px;}
.h5{height:172.265625px;}
.hb{height:180.726562px;}
.h8{height:189.492188px;}
.h1{height:809.999965px;}
.h0{height:810.000000px;}
.w1{width:1079.999850px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:64.799985px;}
.x34{left:73.799985px;}
.x57{left:82.987560px;}
.x1f{left:91.799985px;}
.x23{left:100.799985px;}
.x14{left:105.299985px;}
.x15{left:107.892765px;}
.x10{left:111.299985px;}
.x49{left:115.049985px;}
.x4b{left:118.198095px;}
.x3{left:119.204280px;}
.x46{left:120.956250px;}
.x31{left:122.459160px;}
.x58{left:123.487545px;}
.x2f{left:127.799985px;}
.x51{left:129.701355px;}
.x22{left:132.299985px;}
.x41{left:134.924985px;}
.x27{left:138.048030px;}
.x9{left:142.612530px;}
.x29{left:144.299985px;}
.x17{left:146.330265px;}
.x2a{left:151.800000px;}
.x24{left:154.800000px;}
.x48{left:156.329355px;}
.x26{left:158.935350px;}
.x18{left:163.710630px;}
.x30{left:168.300000px;}
.x50{left:171.112485px;}
.x25{left:178.814640px;}
.x55{left:185.175000px;}
.x1d{left:188.198415px;}
.x2c{left:192.301455px;}
.x13{left:197.673030px;}
.x3d{left:199.800000px;}
.xa{left:202.612500px;}
.x19{left:206.236560px;}
.x3a{left:213.300000px;}
.x39{left:214.606620px;}
.x12{left:216.696885px;}
.xe{left:219.806835px;}
.x32{left:235.800000px;}
.xb{left:242.087085px;}
.x4{left:245.532405px;}
.x33{left:251.952885px;}
.x3c{left:253.800000px;}
.x3e{left:255.300000px;}
.x40{left:262.800000px;}
.x3f{left:269.925000px;}
.x20{left:271.804335px;}
.x3b{left:274.800000px;}
.x1c{left:281.816535px;}
.x2d{left:284.936685px;}
.x21{left:289.914285px;}
.x4c{left:292.219935px;}
.x37{left:298.800000px;}
.x2e{left:305.674485px;}
.x2b{left:318.597285px;}
.x52{left:325.202385px;}
.x11{left:345.119835px;}
.x54{left:346.425000px;}
.x4e{left:349.696035px;}
.x38{left:351.300000px;}
.x7{left:358.679850px;}
.x35{left:363.300000px;}
.x36{left:372.300000px;}
.x4f{left:387.932835px;}
.x6{left:391.624200px;}
.x16{left:401.306835px;}
.x28{left:404.755035px;}
.x53{left:422.362500px;}
.x1a{left:433.665285px;}
.x56{left:447.839085px;}
.x8{left:467.145735px;}
.x44{left:512.925000px;}
.x45{left:519.520650px;}
.x4a{left:525.379035px;}
.x43{left:526.430550px;}
.x47{left:528.091950px;}
.x5{left:534.985485px;}
.x42{left:539.924850px;}
.x1{left:541.842750px;}
.xd{left:557.716950px;}
.xc{left:563.821050px;}
.x1e{left:633.915285px;}
.x4d{left:653.854635px;}
.x2{left:995.924850px;}
.x1b{left:1030.679835px;}
@media print{
.v4{vertical-align:-6.000533pt;}
.v1{vertical-align:-4.766400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.666667pt;}
.v2{vertical-align:46.666667pt;}
.ls6{letter-spacing:-43.392000pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls25{letter-spacing:-0.085333pt;}
.lsf{letter-spacing:-0.074667pt;}
.ls2f{letter-spacing:-0.068267pt;}
.ls17{letter-spacing:-0.044800pt;}
.ls5{letter-spacing:-0.034133pt;}
.ls1f{letter-spacing:-0.025600pt;}
.ls24{letter-spacing:-0.023467pt;}
.ls4{letter-spacing:-0.021333pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.005973pt;}
.ls2e{letter-spacing:0.012267pt;}
.ls11{letter-spacing:0.012501pt;}
.ls2d{letter-spacing:0.012640pt;}
.ls2{letter-spacing:0.012800pt;}
.ls26{letter-spacing:0.014581pt;}
.ls7{letter-spacing:0.016640pt;}
.ls2c{letter-spacing:0.017067pt;}
.ls21{letter-spacing:0.018773pt;}
.ls20{letter-spacing:0.019200pt;}
.ls1a{letter-spacing:0.019520pt;}
.ls1e{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.022773pt;}
.ls23{letter-spacing:0.023467pt;}
.ls31{letter-spacing:0.024533pt;}
.ls1c{letter-spacing:0.025600pt;}
.lsd{letter-spacing:0.034133pt;}
.ls13{letter-spacing:0.038400pt;}
.ls30{letter-spacing:0.042667pt;}
.ls16{letter-spacing:0.044800pt;}
.ls0{letter-spacing:0.051200pt;}
.ls32{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.059733pt;}
.lsc{letter-spacing:0.068267pt;}
.ls19{letter-spacing:0.070400pt;}
.lse{letter-spacing:0.085333pt;}
.ls2b{letter-spacing:0.119467pt;}
.ls2a{letter-spacing:0.140800pt;}
.lsb{letter-spacing:16.190667pt;}
.ls1b{letter-spacing:31.020587pt;}
.ls18{letter-spacing:33.395605pt;}
.ls22{letter-spacing:50.093333pt;}
.ls8{letter-spacing:60.527467pt;}
.ls3{letter-spacing:62.694080pt;}
.ls27{letter-spacing:70.961525pt;}
.ls12{letter-spacing:81.395605pt;}
.lsa{letter-spacing:88.190667pt;}
.ls15{letter-spacing:399.181653pt;}
.ls14{letter-spacing:417.730133pt;}
.ws22{word-spacing:-170.666667pt;}
.ws17{word-spacing:-24.000000pt;}
.ws1d{word-spacing:-0.375467pt;}
.ws15{word-spacing:-0.305067pt;}
.wsc{word-spacing:-0.298667pt;}
.ws1e{word-spacing:-0.290133pt;}
.ws19{word-spacing:-0.258133pt;}
.ws20{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.238933pt;}
.ws9{word-spacing:-0.234667pt;}
.ws8{word-spacing:-0.221867pt;}
.ws1{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.211200pt;}
.ws1c{word-spacing:-0.209067pt;}
.wse{word-spacing:-0.204800pt;}
.ws13{word-spacing:-0.194133pt;}
.ws6{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.187733pt;}
.ws4{word-spacing:-0.179200pt;}
.ws2{word-spacing:-0.170667pt;}
.ws10{word-spacing:-0.166400pt;}
.ws25{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.149333pt;}
.wsf{word-spacing:-0.140800pt;}
.ws7{word-spacing:-0.136533pt;}
.ws3{word-spacing:-0.128000pt;}
.ws16{word-spacing:-0.115200pt;}
.ws0{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.104533pt;}
.ws21{word-spacing:-0.102400pt;}
.ws1b{word-spacing:-0.096000pt;}
.ws1a{word-spacing:-0.085333pt;}
.wsd{word-spacing:-0.074667pt;}
.ws5{word-spacing:0.000000pt;}
.ws12{word-spacing:496.281600pt;}
.ws11{word-spacing:513.203200pt;}
.ws23{word-spacing:680.480000pt;}
.ws24{word-spacing:685.146667pt;}
._0{margin-left:-29.249600pt;}
._2{margin-left:-17.792000pt;}
._8{margin-left:-8.139040pt;}
._4{margin-left:-4.748800pt;}
._5{margin-left:-2.342400pt;}
._3{margin-left:-0.896000pt;}
._1{width:0.944533pt;}
._7{width:343.012267pt;}
._6{width:496.107733pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.fs6{font-size:149.333333pt;}
.fs3{font-size:170.666667pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:213.333333pt;}
.fs5{font-size:234.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000031pt;}
.y3{bottom:11.199982pt;}
.yc3{bottom:69.866649pt;}
.y46{bottom:72.959982pt;}
.y89{bottom:78.239982pt;}
.y20{bottom:84.959982pt;}
.y51{bottom:85.866622pt;}
.yb7{bottom:94.239969pt;}
.y2f{bottom:101.866636pt;}
.y73{bottom:106.293316pt;}
.y93{bottom:115.199969pt;}
.y1b{bottom:119.573302pt;}
.y6d{bottom:119.626649pt;}
.y7f{bottom:119.893302pt;}
.yce{bottom:121.366636pt;}
.yc2{bottom:121.866636pt;}
.y50{bottom:123.199969pt;}
.y45{bottom:131.199969pt;}
.y88{bottom:131.519982pt;}
.y5e{bottom:132.544636pt;}
.y66{bottom:135.306636pt;}
.y8b{bottom:139.199969pt;}
.ya6{bottom:142.099969pt;}
.y1f{bottom:146.293316pt;}
.y2e{bottom:147.199969pt;}
.yb6{bottom:148.533302pt;}
.y2b{bottom:149.866636pt;}
.y23{bottom:150.239969pt;}
.y4f{bottom:161.866636pt;}
.y72{bottom:167.626649pt;}
.y44{bottom:169.866636pt;}
.yc1{bottom:172.533302pt;}
.ya5{bottom:172.766502pt;}
.y1a{bottom:174.239969pt;}
.y7e{bottom:175.893302pt;}
.y87{bottom:176.853316pt;}
.y39{bottom:177.866636pt;}
.y6c{bottom:180.959982pt;}
.y65{bottom:185.226636pt;}
.y5d{bottom:187.211302pt;}
.ycf{bottom:189.366636pt;}
.y2d{bottom:191.573302pt;}
.yb5{bottom:192.533302pt;}
.y2a{bottom:194.239969pt;}
.y21{bottom:198.293316pt;}
.y96{bottom:198.866636pt;}
.yd5{bottom:199.293316pt;}
.y4e{bottom:200.533302pt;}
.ya4{bottom:203.753316pt;}
.y22{bottom:204.906636pt;}
.y10{bottom:207.626649pt;}
.y91{bottom:208.266636pt;}
.y1e{bottom:208.533302pt;}
.y38{bottom:216.533302pt;}
.y9{bottom:219.519982pt;}
.yc0{bottom:223.199969pt;}
.y86{bottom:223.519982pt;}
.y19{bottom:227.573302pt;}
.yba{bottom:228.533302pt;}
.yc6{bottom:228.959982pt;}
.y76{bottom:229.866636pt;}
.y71{bottom:230.293316pt;}
.y7d{bottom:230.719969pt;}
.y53{bottom:234.979436pt;}
.y90{bottom:237.599969pt;}
.yb4{bottom:237.866636pt;}
.yab{bottom:238.293316pt;}
.y4d{bottom:239.199969pt;}
.y5c{bottom:240.544636pt;}
.y64{bottom:241.599969pt;}
.y6b{bottom:242.293316pt;}
.ya3{bottom:242.419849pt;}
.y2c{bottom:244.906636pt;}
.y43{bottom:247.199969pt;}
.y29{bottom:248.533302pt;}
.y37{bottom:255.199969pt;}
.y1c{bottom:259.626649pt;}
.y8{bottom:267.199969pt;}
.y85{bottom:268.853316pt;}
.yf{bottom:269.866636pt;}
.y7c{bottom:272.053302pt;}
.ybf{bottom:274.293316pt;}
.yaa{bottom:274.851702pt;}
.yb9{bottom:279.626649pt;}
.yc9{bottom:280.033169pt;}
.y63{bottom:280.639969pt;}
.ya2{bottom:280.766502pt;}
.y75{bottom:280.959982pt;}
.yb3{bottom:281.866636pt;}
.y18{bottom:282.293316pt;}
.y42{bottom:285.866636pt;}
.yc5{bottom:289.866636pt;}
.y7{bottom:291.366502pt;}
.y70{bottom:291.626649pt;}
.y36{bottom:293.866636pt;}
.y5b{bottom:293.877969pt;}
.y56{bottom:298.239969pt;}
.y28{bottom:300.533302pt;}
.y6a{bottom:302.239969pt;}
.ya1{bottom:311.753182pt;}
.y4c{bottom:315.199969pt;}
.y84{bottom:315.519982pt;}
.y7b{bottom:315.893302pt;}
.ye{bottom:320.959982pt;}
.yd4{bottom:322.866636pt;}
.y41{bottom:323.199969pt;}
.y92{bottom:326.866636pt;}
.yb2{bottom:327.573302pt;}
.y13{bottom:328.866636pt;}
.y62{bottom:329.973302pt;}
.y35{bottom:331.199969pt;}
.ybe{bottom:336.533302pt;}
.yca{bottom:336.866636pt;}
.yc4{bottom:340.959982pt;}
.yb8{bottom:341.866636pt;}
.y17{bottom:342.239969pt;}
.y74{bottom:342.293316pt;}
.ya9{bottom:344.185036pt;}
.y5a{bottom:348.544636pt;}
.ya0{bottom:350.099836pt;}
.y27{bottom:351.199969pt;}
.y6f{bottom:352.533302pt;}
.y4b{bottom:353.866636pt;}
.y6{bottom:355.366502pt;}
.y69{bottom:356.906636pt;}
.y40{bottom:361.866636pt;}
.y83{bottom:362.186649pt;}
.y8a{bottom:363.199969pt;}
.y55{bottom:363.533302pt;}
.y34{bottom:369.866636pt;}
.y7a{bottom:373.226636pt;}
.yd3{bottom:373.959982pt;}
.yb1{bottom:380.533302pt;}
.y9f{bottom:381.086516pt;}
.y61{bottom:381.226636pt;}
.yd{bottom:382.293316pt;}
.y12{bottom:386.199969pt;}
.ybd{bottom:387.199969pt;}
.y8f{bottom:391.733302pt;}
.y4a{bottom:392.533302pt;}
.y16{bottom:396.906636pt;}
.ycb{bottom:399.866636pt;}
.y3f{bottom:400.533302pt;}
.y59{bottom:401.877969pt;}
.y26{bottom:403.199969pt;}
.y6e{bottom:403.626649pt;}
.y82{bottom:407.519982pt;}
.y33{bottom:408.533302pt;}
.y68{bottom:410.239969pt;}
.ya8{bottom:413.038369pt;}
.y5{bottom:419.366502pt;}
.y9e{bottom:419.433169pt;}
.y8e{bottom:419.733302pt;}
.yb0{bottom:425.866636pt;}
.y79{bottom:429.226636pt;}
.y49{bottom:431.199969pt;}
.y54{bottom:432.866636pt;}
.yd2{bottom:435.293316pt;}
.y60{bottom:437.226636pt;}
.y95{bottom:438.866636pt;}
.y3e{bottom:439.199969pt;}
.y11{bottom:443.533302pt;}
.yc{bottom:443.626649pt;}
.y32{bottom:447.199969pt;}
.y8d{bottom:449.066636pt;}
.y9d{bottom:450.099836pt;}
.y15{bottom:450.239969pt;}
.y25{bottom:453.866636pt;}
.y81{bottom:454.186649pt;}
.y58{bottom:456.171302pt;}
.y67{bottom:464.533302pt;}
.y48{bottom:469.866636pt;}
.yaf{bottom:470.239969pt;}
.ycc{bottom:470.699836pt;}
.y3d{bottom:477.866636pt;}
.y8c{bottom:478.399969pt;}
.y9c{bottom:479.753182pt;}
.y4{bottom:483.366502pt;}
.y78{bottom:484.799982pt;}
.y31{bottom:485.866636pt;}
.y52{bottom:487.758369pt;}
.ybc{bottom:489.866636pt;}
.y5f{bottom:492.799982pt;}
.yd1{bottom:496.199969pt;}
.y80{bottom:499.199969pt;}
.yb{bottom:504.533302pt;}
.y47{bottom:507.199969pt;}
.y3c{bottom:515.199969pt;}
.y9b{bottom:518.099836pt;}
.y30{bottom:523.199969pt;}
.yae{bottom:524.533302pt;}
.ycd{bottom:532.699836pt;}
.ybb{bottom:540.533302pt;}
.y94{bottom:542.866636pt;}
.yd0{bottom:546.866636pt;}
.y9a{bottom:548.766502pt;}
.ya7{bottom:558.366502pt;}
.yad{bottom:568.533302pt;}
.y98{bottom:569.866636pt;}
.yc8{bottom:579.699836pt;}
.ya{bottom:589.199969pt;}
.y57{bottom:591.369169pt;}
.y3a{bottom:592.533169pt;}
.y3b{bottom:597.866502pt;}
.y24{bottom:606.488902pt;}
.yc7{bottom:611.699836pt;}
.y99{bottom:619.366502pt;}
.y77{bottom:621.866502pt;}
.y97{bottom:627.199836pt;}
.y14{bottom:627.699836pt;}
.y1d{bottom:633.033169pt;}
.yac{bottom:638.366502pt;}
.y2{bottom:688.499836pt;}
.hd{height:66.656250pt;}
.h15{height:76.562500pt;}
.h12{height:87.625000pt;}
.hc{height:88.875000pt;}
.h11{height:91.812500pt;}
.h2{height:91.875000pt;}
.hf{height:103.541667pt;}
.h3{height:105.562500pt;}
.h9{height:107.187500pt;}
.ha{height:116.833333pt;}
.h13{height:122.416667pt;}
.h6{height:122.500000pt;}
.h7{height:131.437500pt;}
.he{height:135.541667pt;}
.h14{height:136.666667pt;}
.h10{height:137.812500pt;}
.h4{height:146.041667pt;}
.h5{height:153.125000pt;}
.hb{height:160.645833pt;}
.h8{height:168.437500pt;}
.h1{height:719.999969pt;}
.h0{height:720.000000pt;}
.w1{width:959.999867pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:57.599987pt;}
.x34{left:65.599987pt;}
.x57{left:73.766720pt;}
.x1f{left:81.599987pt;}
.x23{left:89.599987pt;}
.x14{left:93.599987pt;}
.x15{left:95.904680pt;}
.x10{left:98.933320pt;}
.x49{left:102.266653pt;}
.x4b{left:105.064973pt;}
.x3{left:105.959360pt;}
.x46{left:107.516667pt;}
.x31{left:108.852587pt;}
.x58{left:109.766707pt;}
.x2f{left:113.599987pt;}
.x51{left:115.290093pt;}
.x22{left:117.599987pt;}
.x41{left:119.933320pt;}
.x27{left:122.709360pt;}
.x9{left:126.766693pt;}
.x29{left:128.266653pt;}
.x17{left:130.071347pt;}
.x2a{left:134.933333pt;}
.x24{left:137.600000pt;}
.x48{left:138.959427pt;}
.x26{left:141.275867pt;}
.x18{left:145.520560pt;}
.x30{left:149.600000pt;}
.x50{left:152.099987pt;}
.x25{left:158.946347pt;}
.x55{left:164.600000pt;}
.x1d{left:167.287480pt;}
.x2c{left:170.934627pt;}
.x13{left:175.709360pt;}
.x3d{left:177.600000pt;}
.xa{left:180.100000pt;}
.x19{left:183.321387pt;}
.x3a{left:189.600000pt;}
.x39{left:190.761440pt;}
.x12{left:192.619453pt;}
.xe{left:195.383853pt;}
.x32{left:209.600000pt;}
.xb{left:215.188520pt;}
.x4{left:218.251027pt;}
.x33{left:223.958120pt;}
.x3c{left:225.600000pt;}
.x3e{left:226.933333pt;}
.x40{left:233.600000pt;}
.x3f{left:239.933333pt;}
.x20{left:241.603853pt;}
.x3b{left:244.266667pt;}
.x1c{left:250.503587pt;}
.x2d{left:253.277053pt;}
.x21{left:257.701587pt;}
.x4c{left:259.751053pt;}
.x37{left:265.600000pt;}
.x2e{left:271.710653pt;}
.x2b{left:283.197587pt;}
.x52{left:289.068787pt;}
.x11{left:306.773187pt;}
.x54{left:307.933333pt;}
.x4e{left:310.840920pt;}
.x38{left:312.266667pt;}
.x7{left:318.826533pt;}
.x35{left:322.933333pt;}
.x36{left:330.933333pt;}
.x4f{left:344.829187pt;}
.x6{left:348.110400pt;}
.x16{left:356.717187pt;}
.x28{left:359.782253pt;}
.x53{left:375.433333pt;}
.x1a{left:385.480253pt;}
.x56{left:398.079187pt;}
.x8{left:415.240653pt;}
.x44{left:455.933333pt;}
.x45{left:461.796133pt;}
.x4a{left:467.003587pt;}
.x43{left:467.938267pt;}
.x47{left:469.415067pt;}
.x5{left:475.542653pt;}
.x42{left:479.933200pt;}
.x1{left:481.638000pt;}
.xd{left:495.748400pt;}
.xc{left:501.174267pt;}
.x1e{left:563.480253pt;}
.x4d{left:581.204120pt;}
.x2{left:885.266533pt;}
.x1b{left:916.159853pt;}
}




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