
    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_1bce197ed737fc668f435202.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f4554f5c9d99e797f25c98e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_9b1c92548d46d93313163135.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_845655950be84cb1e1c35741.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.796000;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_45ed5959bb05ae88e364640c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934000;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_7ff76fe53c607e338dca6757.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986328;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_2784b5776fb096aae4582c38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984863;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.780000px;}
.ls0{letter-spacing:2.400000px;}
.ls4{letter-spacing:9.210000px;}
.ls3{letter-spacing:9.600000px;}
.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;}
}
.ws7{word-spacing:-46.368000px;}
.ws3d{word-spacing:-33.120000px;}
.ws57{word-spacing:-24.840000px;}
.ws6e{word-spacing:-23.184000px;}
.ws6f{word-spacing:-19.872000px;}
.ws8{word-spacing:-19.728000px;}
.ws58{word-spacing:-18.084000px;}
.ws29{word-spacing:-12.456000px;}
.ws6b{word-spacing:-8.496000px;}
.ws27{word-spacing:-7.488000px;}
.ws4e{word-spacing:-6.984000px;}
.ws14{word-spacing:-6.624000px;}
.ws41{word-spacing:-6.264000px;}
.ws37{word-spacing:-5.832000px;}
.ws2{word-spacing:-5.688000px;}
.ws16{word-spacing:-5.616000px;}
.ws45{word-spacing:-5.256000px;}
.wsd{word-spacing:-5.112000px;}
.ws47{word-spacing:-3.816000px;}
.ws62{word-spacing:-3.744000px;}
.ws1d{word-spacing:-3.600000px;}
.ws54{word-spacing:-3.456000px;}
.ws3c{word-spacing:-3.168000px;}
.ws1e{word-spacing:-2.952000px;}
.ws60{word-spacing:-2.880000px;}
.ws3e{word-spacing:-2.808000px;}
.ws5b{word-spacing:-2.736000px;}
.ws2b{word-spacing:-2.520000px;}
.ws44{word-spacing:-2.304000px;}
.ws63{word-spacing:-2.232000px;}
.ws5e{word-spacing:-2.160000px;}
.ws40{word-spacing:-2.016000px;}
.ws3{word-spacing:-1.944000px;}
.ws55{word-spacing:-1.800000px;}
.ws46{word-spacing:-1.368000px;}
.ws4c{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.224000px;}
.ws0{word-spacing:-0.972000px;}
.ws51{word-spacing:-0.792000px;}
.ws36{word-spacing:-0.648000px;}
.ws2a{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.216000px;}
.ws5c{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.ws6d{word-spacing:0.144000px;}
.ws67{word-spacing:0.288000px;}
.ws17{word-spacing:0.360000px;}
.ws68{word-spacing:0.504000px;}
.ws5f{word-spacing:0.576000px;}
.ws4f{word-spacing:0.648000px;}
.ws69{word-spacing:0.792000px;}
.ws66{word-spacing:0.936000px;}
.ws4b{word-spacing:1.512000px;}
.ws6a{word-spacing:1.728000px;}
.ws39{word-spacing:1.800000px;}
.ws5{word-spacing:1.944000px;}
.wsa{word-spacing:2.088000px;}
.ws20{word-spacing:2.232000px;}
.ws64{word-spacing:2.520000px;}
.ws61{word-spacing:2.808000px;}
.ws50{word-spacing:3.024000px;}
.ws38{word-spacing:3.168000px;}
.ws70{word-spacing:4.248000px;}
.ws53{word-spacing:4.320000px;}
.ws42{word-spacing:4.392000px;}
.ws59{word-spacing:4.608000px;}
.ws28{word-spacing:5.040000px;}
.ws6{word-spacing:5.112000px;}
.ws3f{word-spacing:6.120000px;}
.ws5a{word-spacing:6.696000px;}
.ws5d{word-spacing:6.768000px;}
.wsf{word-spacing:7.200000px;}
.ws48{word-spacing:7.488000px;}
.ws43{word-spacing:7.632000px;}
.ws13{word-spacing:8.280000px;}
.wsb{word-spacing:8.352000px;}
.ws15{word-spacing:8.784000px;}
.ws2c{word-spacing:9.072000px;}
.ws4a{word-spacing:9.216000px;}
.ws49{word-spacing:9.288000px;}
.ws1f{word-spacing:9.720000px;}
.ws6c{word-spacing:9.792000px;}
.ws65{word-spacing:9.864000px;}
.ws56{word-spacing:10.008000px;}
.ws52{word-spacing:10.872000px;}
.ws26{word-spacing:11.232000px;}
.ws33{word-spacing:11.592000px;}
.ws2f{word-spacing:11.952000px;}
.ws4d{word-spacing:12.240000px;}
.ws4{word-spacing:14.184000px;}
.ws23{word-spacing:14.256000px;}
.ws11{word-spacing:14.328000px;}
.ws30{word-spacing:15.480000px;}
.ws1a{word-spacing:17.064000px;}
.ws12{word-spacing:17.208000px;}
.ws35{word-spacing:21.672000px;}
.ws21{word-spacing:21.888000px;}
.wse{word-spacing:22.392000px;}
.ws24{word-spacing:23.040000px;}
.ws2d{word-spacing:23.400000px;}
.ws10{word-spacing:24.768000px;}
.ws1c{word-spacing:26.352000px;}
.ws18{word-spacing:29.592000px;}
.ws19{word-spacing:30.240000px;}
.ws3b{word-spacing:33.840000px;}
.ws34{word-spacing:34.056000px;}
.ws3a{word-spacing:34.272000px;}
.ws22{word-spacing:35.064000px;}
.ws32{word-spacing:39.816000px;}
.ws31{word-spacing:41.616000px;}
.ws25{word-spacing:42.480000px;}
.wsc{word-spacing:43.344000px;}
.ws9{word-spacing:47.952000px;}
._10{margin-left:-2101.421400px;}
._d{margin-left:-12.062400px;}
._1{margin-left:-9.217800px;}
._5{margin-left:-7.104000px;}
._8{margin-left:-6.014400px;}
._2{margin-left:-4.629600px;}
._e{margin-left:-3.582000px;}
._4{margin-left:-2.440800px;}
._0{margin-left:-1.263600px;}
._3{width:1.094400px;}
._7{width:2.872800px;}
._c{width:5.011200px;}
._9{width:6.733200px;}
._6{width:9.217800px;}
._11{width:11.109600px;}
._b{width:57.744000px;}
._f{width:59.398200px;}
._a{width:67.500000px;}
.fc6{color:rgb(50,27,0);}
.fc5{color:rgb(50,185,212);}
.fc3{color:rgb(2,80,126);}
.fc2{color:rgb(48,187,211);}
.fc1{color:rgb(111,198,41);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fsb{font-size:90.000000px;}
.fs2{font-size:96.000000px;}
.fsd{font-size:102.000000px;}
.fsc{font-size:108.000000px;}
.fsa{font-size:112.200000px;}
.fs9{font-size:114.000000px;}
.fs6{font-size:120.000000px;}
.fs0{font-size:162.000000px;}
.fs5{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:35.393850px;}
.yd7{bottom:70.497600px;}
.yc5{bottom:90.212700px;}
.yd6{bottom:92.097600px;}
.y35{bottom:104.361900px;}
.y4b{bottom:104.745900px;}
.yc4{bottom:111.812700px;}
.yd5{bottom:113.697600px;}
.y5f{bottom:115.558350px;}
.y34{bottom:125.961900px;}
.y96{bottom:131.304450px;}
.y4a{bottom:131.745900px;}
.yc3{bottom:133.412700px;}
.y5e{bottom:133.558350px;}
.y33{bottom:147.561900px;}
.y95{bottom:149.304450px;}
.y5d{bottom:151.558500px;}
.yd4{bottom:152.305500px;}
.yb4{bottom:152.892000px;}
.y49{bottom:153.346500px;}
.yc2{bottom:155.013000px;}
.y94{bottom:167.304000px;}
.y32{bottom:169.162500px;}
.y5c{bottom:169.558500px;}
.yb3{bottom:174.492000px;}
.y48{bottom:174.946500px;}
.yc1{bottom:176.613000px;}
.y93{bottom:185.304000px;}
.y5b{bottom:191.811000px;}
.yb2{bottom:196.092000px;}
.y47{bottom:196.546500px;}
.yc0{bottom:198.213000px;}
.ya{bottom:199.311000px;}
.y92{bottom:203.304000px;}
.y31{bottom:203.517000px;}
.y5a{bottom:212.811000px;}
.yb1{bottom:217.692000px;}
.y46{bottom:218.146500px;}
.y91{bottom:221.304000px;}
.y30{bottom:225.117000px;}
.ybf{bottom:232.569000px;}
.y90{bottom:239.304000px;}
.y2f{bottom:246.717000px;}
.y45{bottom:252.502500px;}
.y61{bottom:255.889500px;}
.ydc{bottom:262.933500px;}
.y2e{bottom:268.318500px;}
.y44{bottom:274.102500px;}
.y8f{bottom:275.304000px;}
.y60{bottom:276.889500px;}
.y9{bottom:279.972000px;}
.ydb{bottom:284.533500px;}
.y2d{bottom:289.917000px;}
.yb0{bottom:290.316000px;}
.y43{bottom:295.702500px;}
.y2c{bottom:311.517000px;}
.yaf{bottom:311.916000px;}
.y42{bottom:317.302500px;}
.y2b{bottom:333.117000px;}
.yae{bottom:333.516000px;}
.y41{bottom:338.902500px;}
.y8{bottom:339.171000px;}
.y59{bottom:347.079000px;}
.y2a{bottom:354.717000px;}
.yd3{bottom:355.288500px;}
.y40{bottom:360.502500px;}
.y7{bottom:360.771000px;}
.yd0{bottom:368.044500px;}
.y58{bottom:368.679000px;}
.y29{bottom:376.317000px;}
.yd2{bottom:376.888500px;}
.y3f{bottom:382.102500px;}
.y6{bottom:382.371000px;}
.y8e{bottom:388.027500px;}
.ycf{bottom:389.644500px;}
.y84{bottom:393.681000px;}
.y28{bottom:397.917000px;}
.y57{bottom:402.435000px;}
.y3e{bottom:403.702500px;}
.y5{bottom:403.971000px;}
.yad{bottom:406.140000px;}
.yd1{bottom:411.244500px;}
.y83{bottom:415.281000px;}
.y27{bottom:419.517000px;}
.yce{bottom:424.000500px;}
.y3d{bottom:425.301000px;}
.y4{bottom:425.571000px;}
.yac{bottom:427.740000px;}
.yda{bottom:429.820500px;}
.y56{bottom:438.435000px;}
.y26{bottom:441.117000px;}
.ycd{bottom:445.600500px;}
.y3{bottom:447.171000px;}
.yab{bottom:449.340000px;}
.y82{bottom:451.548000px;}
.yd9{bottom:455.671500px;}
.y3c{bottom:459.657000px;}
.y25{bottom:462.717000px;}
.yc8{bottom:480.007500px;}
.y3b{bottom:481.257000px;}
.yb{bottom:483.699000px;}
.y24{bottom:484.317000px;}
.yd8{bottom:494.280000px;}
.y81{bottom:498.010500px;}
.y3a{bottom:502.857000px;}
.y23{bottom:505.917000px;}
.y2{bottom:519.214500px;}
.y80{bottom:519.610500px;}
.yaa{bottom:521.962500px;}
.y39{bottom:524.457000px;}
.y22{bottom:527.517000px;}
.y7f{bottom:541.210500px;}
.ya9{bottom:543.562500px;}
.y38{bottom:546.057000px;}
.y21{bottom:561.873000px;}
.ya8{bottom:565.162500px;}
.y37{bottom:567.657000px;}
.y1{bottom:567.814500px;}
.ycc{bottom:569.812500px;}
.y7e{bottom:575.566500px;}
.y20{bottom:587.073000px;}
.y36{bottom:589.257000px;}
.ycb{bottom:591.412500px;}
.y7d{bottom:597.166500px;}
.y7c{bottom:623.017500px;}
.yca{bottom:625.768500px;}
.y7b{bottom:644.619000px;}
.yc9{bottom:647.368500px;}
.ya7{bottom:647.509500px;}
.y1f{bottom:660.705000px;}
.y7a{bottom:670.470000px;}
.ya6{bottom:681.865500px;}
.y1e{bottom:682.305000px;}
.yc7{bottom:685.165500px;}
.y79{bottom:692.070000px;}
.y71{bottom:695.319000px;}
.ya5{bottom:703.465500px;}
.y1d{bottom:703.905000px;}
.y70{bottom:716.919000px;}
.ya4{bottom:725.065500px;}
.y1c{bottom:725.505000px;}
.y78{bottom:726.426000px;}
.y6f{bottom:738.519000px;}
.yc6{bottom:743.512500px;}
.ya3{bottom:746.665500px;}
.y1b{bottom:747.105000px;}
.y6e{bottom:760.119000px;}
.y1a{bottom:768.705000px;}
.y77{bottom:769.626000px;}
.ya2{bottom:781.021500px;}
.y6d{bottom:781.719000px;}
.y19{bottom:790.305000px;}
.y55{bottom:792.426000px;}
.ya1{bottom:802.621500px;}
.y18{bottom:811.905000px;}
.y54{bottom:814.026000px;}
.y6c{bottom:816.075000px;}
.ybe{bottom:817.843500px;}
.y76{bottom:820.026000px;}
.ya0{bottom:824.221500px;}
.y17{bottom:833.505000px;}
.y53{bottom:835.026000px;}
.y6b{bottom:837.675000px;}
.ybd{bottom:839.443500px;}
.y75{bottom:841.626000px;}
.y52{bottom:856.026000px;}
.y9f{bottom:858.577500px;}
.y6a{bottom:859.275000px;}
.ybc{bottom:861.043500px;}
.y74{bottom:863.226000px;}
.y16{bottom:867.861000px;}
.y69{bottom:880.875000px;}
.y73{bottom:884.826000px;}
.y8d{bottom:885.577500px;}
.y15{bottom:889.461000px;}
.y51{bottom:889.782000px;}
.y9e{bottom:894.577500px;}
.ybb{bottom:895.399500px;}
.y8c{bottom:907.177500px;}
.y14{bottom:911.061000px;}
.y68{bottom:915.231000px;}
.y72{bottom:919.182000px;}
.y8b{bottom:928.777500px;}
.y13{bottom:932.661000px;}
.y67{bottom:936.831000px;}
.y50{bottom:940.782000px;}
.y8a{bottom:950.377500px;}
.y12{bottom:954.261000px;}
.y66{bottom:958.431000px;}
.y4f{bottom:962.382000px;}
.y9d{bottom:964.933500px;}
.yba{bottom:967.399500px;}
.y11{bottom:975.861000px;}
.y65{bottom:980.031000px;}
.y4e{bottom:983.982000px;}
.y89{bottom:984.733500px;}
.y9c{bottom:986.533500px;}
.yb9{bottom:988.999500px;}
.y10{bottom:997.461000px;}
.y88{bottom:1006.333500px;}
.y9b{bottom:1008.133500px;}
.y64{bottom:1014.387000px;}
.yf{bottom:1019.061000px;}
.yb8{bottom:1023.355500px;}
.y4d{bottom:1027.723500px;}
.y87{bottom:1027.933500px;}
.y9a{bottom:1029.733500px;}
.y63{bottom:1035.987000px;}
.yb7{bottom:1044.955500px;}
.y86{bottom:1049.533500px;}
.y99{bottom:1051.333500px;}
.yb6{bottom:1066.555500px;}
.y98{bottom:1072.933500px;}
.y4c{bottom:1078.123500px;}
.y62{bottom:1079.187000px;}
.ye{bottom:1080.249000px;}
.yb5{bottom:1088.155500px;}
.y85{bottom:1091.112000px;}
.y97{bottom:1094.533500px;}
.yd{bottom:1191.709500px;}
.hb{height:44.970703px;}
.h12{height:49.467773px;}
.ha{height:49.628906px;}
.h3{height:53.964844px;}
.hf{height:54.070312px;}
.he{height:54.140625px;}
.h5{height:57.018000px;}
.h6{height:61.236000px;}
.hd{height:62.958984px;}
.h8{height:63.164062px;}
.h11{height:67.675781px;}
.h4{height:69.984000px;}
.h14{height:72.187500px;}
.h15{height:76.699219px;}
.h13{height:81.210938px;}
.h10{height:84.369141px;}
.hc{height:85.722656px;}
.h9{height:90.234375px;}
.h2{height:121.816406px;}
.h7{height:126.328125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:61.726200px;}
.x3{left:63.779550px;}
.xa{left:65.905500px;}
.xc{left:68.031450px;}
.x1b{left:71.754900px;}
.x19{left:73.136550px;}
.x1c{left:74.417550px;}
.x18{left:80.939400px;}
.x15{left:87.803100px;}
.x1a{left:90.832950px;}
.xd{left:92.055150px;}
.x9{left:97.795350px;}
.x2f{left:106.299150px;}
.x16{left:114.803100px;}
.xe{left:119.055150px;}
.x2a{left:140.314950px;}
.x2{left:146.457450px;}
.x6{left:160.977000px;}
.x2b{left:167.314500px;}
.x30{left:186.378000px;}
.x17{left:208.363500px;}
.x28{left:231.558000px;}
.x27{left:255.118500px;}
.x4{left:297.574500px;}
.x14{left:328.987500px;}
.x1d{left:334.690500px;}
.xf{left:338.668500px;}
.x20{left:348.511500px;}
.x1e{left:358.086000px;}
.x1f{left:359.536500px;}
.x10{left:365.668500px;}
.x21{left:368.991000px;}
.x29{left:374.983500px;}
.x13{left:398.056500px;}
.xb{left:466.425000px;}
.x2c{left:476.800500px;}
.x2d{left:503.800500px;}
.x2e{left:518.740500px;}
.x8{left:565.608000px;}
.x11{left:585.283500px;}
.x25{left:597.939000px;}
.x22{left:599.665500px;}
.x12{left:612.283500px;}
.x23{left:623.805000px;}
.x24{left:624.997500px;}
.x26{left:666.106500px;}
.x5{left:704.718000px;}
.x7{left:788.851500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.693333pt;}
.ls0{letter-spacing:2.133333pt;}
.ls4{letter-spacing:8.186667pt;}
.ls3{letter-spacing:8.533333pt;}
.ws7{word-spacing:-41.216000pt;}
.ws3d{word-spacing:-29.440000pt;}
.ws57{word-spacing:-22.080000pt;}
.ws6e{word-spacing:-20.608000pt;}
.ws6f{word-spacing:-17.664000pt;}
.ws8{word-spacing:-17.536000pt;}
.ws58{word-spacing:-16.074667pt;}
.ws29{word-spacing:-11.072000pt;}
.ws6b{word-spacing:-7.552000pt;}
.ws27{word-spacing:-6.656000pt;}
.ws4e{word-spacing:-6.208000pt;}
.ws14{word-spacing:-5.888000pt;}
.ws41{word-spacing:-5.568000pt;}
.ws37{word-spacing:-5.184000pt;}
.ws2{word-spacing:-5.056000pt;}
.ws16{word-spacing:-4.992000pt;}
.ws45{word-spacing:-4.672000pt;}
.wsd{word-spacing:-4.544000pt;}
.ws47{word-spacing:-3.392000pt;}
.ws62{word-spacing:-3.328000pt;}
.ws1d{word-spacing:-3.200000pt;}
.ws54{word-spacing:-3.072000pt;}
.ws3c{word-spacing:-2.816000pt;}
.ws1e{word-spacing:-2.624000pt;}
.ws60{word-spacing:-2.560000pt;}
.ws3e{word-spacing:-2.496000pt;}
.ws5b{word-spacing:-2.432000pt;}
.ws2b{word-spacing:-2.240000pt;}
.ws44{word-spacing:-2.048000pt;}
.ws63{word-spacing:-1.984000pt;}
.ws5e{word-spacing:-1.920000pt;}
.ws40{word-spacing:-1.792000pt;}
.ws3{word-spacing:-1.728000pt;}
.ws55{word-spacing:-1.600000pt;}
.ws46{word-spacing:-1.216000pt;}
.ws4c{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.088000pt;}
.ws0{word-spacing:-0.864000pt;}
.ws51{word-spacing:-0.704000pt;}
.ws36{word-spacing:-0.576000pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws5c{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.128000pt;}
.ws67{word-spacing:0.256000pt;}
.ws17{word-spacing:0.320000pt;}
.ws68{word-spacing:0.448000pt;}
.ws5f{word-spacing:0.512000pt;}
.ws4f{word-spacing:0.576000pt;}
.ws69{word-spacing:0.704000pt;}
.ws66{word-spacing:0.832000pt;}
.ws4b{word-spacing:1.344000pt;}
.ws6a{word-spacing:1.536000pt;}
.ws39{word-spacing:1.600000pt;}
.ws5{word-spacing:1.728000pt;}
.wsa{word-spacing:1.856000pt;}
.ws20{word-spacing:1.984000pt;}
.ws64{word-spacing:2.240000pt;}
.ws61{word-spacing:2.496000pt;}
.ws50{word-spacing:2.688000pt;}
.ws38{word-spacing:2.816000pt;}
.ws70{word-spacing:3.776000pt;}
.ws53{word-spacing:3.840000pt;}
.ws42{word-spacing:3.904000pt;}
.ws59{word-spacing:4.096000pt;}
.ws28{word-spacing:4.480000pt;}
.ws6{word-spacing:4.544000pt;}
.ws3f{word-spacing:5.440000pt;}
.ws5a{word-spacing:5.952000pt;}
.ws5d{word-spacing:6.016000pt;}
.wsf{word-spacing:6.400000pt;}
.ws48{word-spacing:6.656000pt;}
.ws43{word-spacing:6.784000pt;}
.ws13{word-spacing:7.360000pt;}
.wsb{word-spacing:7.424000pt;}
.ws15{word-spacing:7.808000pt;}
.ws2c{word-spacing:8.064000pt;}
.ws4a{word-spacing:8.192000pt;}
.ws49{word-spacing:8.256000pt;}
.ws1f{word-spacing:8.640000pt;}
.ws6c{word-spacing:8.704000pt;}
.ws65{word-spacing:8.768000pt;}
.ws56{word-spacing:8.896000pt;}
.ws52{word-spacing:9.664000pt;}
.ws26{word-spacing:9.984000pt;}
.ws33{word-spacing:10.304000pt;}
.ws2f{word-spacing:10.624000pt;}
.ws4d{word-spacing:10.880000pt;}
.ws4{word-spacing:12.608000pt;}
.ws23{word-spacing:12.672000pt;}
.ws11{word-spacing:12.736000pt;}
.ws30{word-spacing:13.760000pt;}
.ws1a{word-spacing:15.168000pt;}
.ws12{word-spacing:15.296000pt;}
.ws35{word-spacing:19.264000pt;}
.ws21{word-spacing:19.456000pt;}
.wse{word-spacing:19.904000pt;}
.ws24{word-spacing:20.480000pt;}
.ws2d{word-spacing:20.800000pt;}
.ws10{word-spacing:22.016000pt;}
.ws1c{word-spacing:23.424000pt;}
.ws18{word-spacing:26.304000pt;}
.ws19{word-spacing:26.880000pt;}
.ws3b{word-spacing:30.080000pt;}
.ws34{word-spacing:30.272000pt;}
.ws3a{word-spacing:30.464000pt;}
.ws22{word-spacing:31.168000pt;}
.ws32{word-spacing:35.392000pt;}
.ws31{word-spacing:36.992000pt;}
.ws25{word-spacing:37.760000pt;}
.wsc{word-spacing:38.528000pt;}
.ws9{word-spacing:42.624000pt;}
._10{margin-left:-1867.930133pt;}
._d{margin-left:-10.722133pt;}
._1{margin-left:-8.193600pt;}
._5{margin-left:-6.314667pt;}
._8{margin-left:-5.346133pt;}
._2{margin-left:-4.115200pt;}
._e{margin-left:-3.184000pt;}
._4{margin-left:-2.169600pt;}
._0{margin-left:-1.123200pt;}
._3{width:0.972800pt;}
._7{width:2.553600pt;}
._c{width:4.454400pt;}
._9{width:5.985067pt;}
._6{width:8.193600pt;}
._11{width:9.875200pt;}
._b{width:51.328000pt;}
._f{width:52.798400pt;}
._a{width:60.000000pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fsb{font-size:80.000000pt;}
.fs2{font-size:85.333333pt;}
.fsd{font-size:90.666667pt;}
.fsc{font-size:96.000000pt;}
.fsa{font-size:99.733333pt;}
.fs9{font-size:101.333333pt;}
.fs6{font-size:106.666667pt;}
.fs0{font-size:144.000000pt;}
.fs5{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:31.461200pt;}
.yd7{bottom:62.664533pt;}
.yc5{bottom:80.189067pt;}
.yd6{bottom:81.864533pt;}
.y35{bottom:92.766133pt;}
.y4b{bottom:93.107467pt;}
.yc4{bottom:99.389067pt;}
.yd5{bottom:101.064533pt;}
.y5f{bottom:102.718533pt;}
.y34{bottom:111.966133pt;}
.y96{bottom:116.715067pt;}
.y4a{bottom:117.107467pt;}
.yc3{bottom:118.589067pt;}
.y5e{bottom:118.718533pt;}
.y33{bottom:131.166133pt;}
.y95{bottom:132.715067pt;}
.y5d{bottom:134.718667pt;}
.yd4{bottom:135.382667pt;}
.yb4{bottom:135.904000pt;}
.y49{bottom:136.308000pt;}
.yc2{bottom:137.789333pt;}
.y94{bottom:148.714667pt;}
.y32{bottom:150.366667pt;}
.y5c{bottom:150.718667pt;}
.yb3{bottom:155.104000pt;}
.y48{bottom:155.508000pt;}
.yc1{bottom:156.989333pt;}
.y93{bottom:164.714667pt;}
.y5b{bottom:170.498667pt;}
.yb2{bottom:174.304000pt;}
.y47{bottom:174.708000pt;}
.yc0{bottom:176.189333pt;}
.ya{bottom:177.165333pt;}
.y92{bottom:180.714667pt;}
.y31{bottom:180.904000pt;}
.y5a{bottom:189.165333pt;}
.yb1{bottom:193.504000pt;}
.y46{bottom:193.908000pt;}
.y91{bottom:196.714667pt;}
.y30{bottom:200.104000pt;}
.ybf{bottom:206.728000pt;}
.y90{bottom:212.714667pt;}
.y2f{bottom:219.304000pt;}
.y45{bottom:224.446667pt;}
.y61{bottom:227.457333pt;}
.ydc{bottom:233.718667pt;}
.y2e{bottom:238.505333pt;}
.y44{bottom:243.646667pt;}
.y8f{bottom:244.714667pt;}
.y60{bottom:246.124000pt;}
.y9{bottom:248.864000pt;}
.ydb{bottom:252.918667pt;}
.y2d{bottom:257.704000pt;}
.yb0{bottom:258.058667pt;}
.y43{bottom:262.846667pt;}
.y2c{bottom:276.904000pt;}
.yaf{bottom:277.258667pt;}
.y42{bottom:282.046667pt;}
.y2b{bottom:296.104000pt;}
.yae{bottom:296.458667pt;}
.y41{bottom:301.246667pt;}
.y8{bottom:301.485333pt;}
.y59{bottom:308.514667pt;}
.y2a{bottom:315.304000pt;}
.yd3{bottom:315.812000pt;}
.y40{bottom:320.446667pt;}
.y7{bottom:320.685333pt;}
.yd0{bottom:327.150667pt;}
.y58{bottom:327.714667pt;}
.y29{bottom:334.504000pt;}
.yd2{bottom:335.012000pt;}
.y3f{bottom:339.646667pt;}
.y6{bottom:339.885333pt;}
.y8e{bottom:344.913333pt;}
.ycf{bottom:346.350667pt;}
.y84{bottom:349.938667pt;}
.y28{bottom:353.704000pt;}
.y57{bottom:357.720000pt;}
.y3e{bottom:358.846667pt;}
.y5{bottom:359.085333pt;}
.yad{bottom:361.013333pt;}
.yd1{bottom:365.550667pt;}
.y83{bottom:369.138667pt;}
.y27{bottom:372.904000pt;}
.yce{bottom:376.889333pt;}
.y3d{bottom:378.045333pt;}
.y4{bottom:378.285333pt;}
.yac{bottom:380.213333pt;}
.yda{bottom:382.062667pt;}
.y56{bottom:389.720000pt;}
.y26{bottom:392.104000pt;}
.ycd{bottom:396.089333pt;}
.y3{bottom:397.485333pt;}
.yab{bottom:399.413333pt;}
.y82{bottom:401.376000pt;}
.yd9{bottom:405.041333pt;}
.y3c{bottom:408.584000pt;}
.y25{bottom:411.304000pt;}
.yc8{bottom:426.673333pt;}
.y3b{bottom:427.784000pt;}
.yb{bottom:429.954667pt;}
.y24{bottom:430.504000pt;}
.yd8{bottom:439.360000pt;}
.y81{bottom:442.676000pt;}
.y3a{bottom:446.984000pt;}
.y23{bottom:449.704000pt;}
.y2{bottom:461.524000pt;}
.y80{bottom:461.876000pt;}
.yaa{bottom:463.966667pt;}
.y39{bottom:466.184000pt;}
.y22{bottom:468.904000pt;}
.y7f{bottom:481.076000pt;}
.ya9{bottom:483.166667pt;}
.y38{bottom:485.384000pt;}
.y21{bottom:499.442667pt;}
.ya8{bottom:502.366667pt;}
.y37{bottom:504.584000pt;}
.y1{bottom:504.724000pt;}
.ycc{bottom:506.500000pt;}
.y7e{bottom:511.614667pt;}
.y20{bottom:521.842667pt;}
.y36{bottom:523.784000pt;}
.ycb{bottom:525.700000pt;}
.y7d{bottom:530.814667pt;}
.y7c{bottom:553.793333pt;}
.yca{bottom:556.238667pt;}
.y7b{bottom:572.994667pt;}
.yc9{bottom:575.438667pt;}
.ya7{bottom:575.564000pt;}
.y1f{bottom:587.293333pt;}
.y7a{bottom:595.973333pt;}
.ya6{bottom:606.102667pt;}
.y1e{bottom:606.493333pt;}
.yc7{bottom:609.036000pt;}
.y79{bottom:615.173333pt;}
.y71{bottom:618.061333pt;}
.ya5{bottom:625.302667pt;}
.y1d{bottom:625.693333pt;}
.y70{bottom:637.261333pt;}
.ya4{bottom:644.502667pt;}
.y1c{bottom:644.893333pt;}
.y78{bottom:645.712000pt;}
.y6f{bottom:656.461333pt;}
.yc6{bottom:660.900000pt;}
.ya3{bottom:663.702667pt;}
.y1b{bottom:664.093333pt;}
.y6e{bottom:675.661333pt;}
.y1a{bottom:683.293333pt;}
.y77{bottom:684.112000pt;}
.ya2{bottom:694.241333pt;}
.y6d{bottom:694.861333pt;}
.y19{bottom:702.493333pt;}
.y55{bottom:704.378667pt;}
.ya1{bottom:713.441333pt;}
.y18{bottom:721.693333pt;}
.y54{bottom:723.578667pt;}
.y6c{bottom:725.400000pt;}
.ybe{bottom:726.972000pt;}
.y76{bottom:728.912000pt;}
.ya0{bottom:732.641333pt;}
.y17{bottom:740.893333pt;}
.y53{bottom:742.245333pt;}
.y6b{bottom:744.600000pt;}
.ybd{bottom:746.172000pt;}
.y75{bottom:748.112000pt;}
.y52{bottom:760.912000pt;}
.y9f{bottom:763.180000pt;}
.y6a{bottom:763.800000pt;}
.ybc{bottom:765.372000pt;}
.y74{bottom:767.312000pt;}
.y16{bottom:771.432000pt;}
.y69{bottom:783.000000pt;}
.y73{bottom:786.512000pt;}
.y8d{bottom:787.180000pt;}
.y15{bottom:790.632000pt;}
.y51{bottom:790.917333pt;}
.y9e{bottom:795.180000pt;}
.ybb{bottom:795.910667pt;}
.y8c{bottom:806.380000pt;}
.y14{bottom:809.832000pt;}
.y68{bottom:813.538667pt;}
.y72{bottom:817.050667pt;}
.y8b{bottom:825.580000pt;}
.y13{bottom:829.032000pt;}
.y67{bottom:832.738667pt;}
.y50{bottom:836.250667pt;}
.y8a{bottom:844.780000pt;}
.y12{bottom:848.232000pt;}
.y66{bottom:851.938667pt;}
.y4f{bottom:855.450667pt;}
.y9d{bottom:857.718667pt;}
.yba{bottom:859.910667pt;}
.y11{bottom:867.432000pt;}
.y65{bottom:871.138667pt;}
.y4e{bottom:874.650667pt;}
.y89{bottom:875.318667pt;}
.y9c{bottom:876.918667pt;}
.yb9{bottom:879.110667pt;}
.y10{bottom:886.632000pt;}
.y88{bottom:894.518667pt;}
.y9b{bottom:896.118667pt;}
.y64{bottom:901.677333pt;}
.yf{bottom:905.832000pt;}
.yb8{bottom:909.649333pt;}
.y4d{bottom:913.532000pt;}
.y87{bottom:913.718667pt;}
.y9a{bottom:915.318667pt;}
.y63{bottom:920.877333pt;}
.yb7{bottom:928.849333pt;}
.y86{bottom:932.918667pt;}
.y99{bottom:934.518667pt;}
.yb6{bottom:948.049333pt;}
.y98{bottom:953.718667pt;}
.y4c{bottom:958.332000pt;}
.y62{bottom:959.277333pt;}
.ye{bottom:960.221333pt;}
.yb5{bottom:967.249333pt;}
.y85{bottom:969.877333pt;}
.y97{bottom:972.918667pt;}
.yd{bottom:1059.297333pt;}
.hb{height:39.973958pt;}
.h12{height:43.971354pt;}
.ha{height:44.114583pt;}
.h3{height:47.968750pt;}
.hf{height:48.062500pt;}
.he{height:48.125000pt;}
.h5{height:50.682667pt;}
.h6{height:54.432000pt;}
.hd{height:55.963542pt;}
.h8{height:56.145833pt;}
.h11{height:60.156250pt;}
.h4{height:62.208000pt;}
.h14{height:64.166667pt;}
.h15{height:68.177083pt;}
.h13{height:72.187500pt;}
.h10{height:74.994792pt;}
.hc{height:76.197917pt;}
.h9{height:80.208333pt;}
.h2{height:108.281250pt;}
.h7{height:112.291667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:54.867733pt;}
.x3{left:56.692933pt;}
.xa{left:58.582667pt;}
.xc{left:60.472400pt;}
.x1b{left:63.782133pt;}
.x19{left:65.010267pt;}
.x1c{left:66.148933pt;}
.x18{left:71.946133pt;}
.x15{left:78.047200pt;}
.x1a{left:80.740400pt;}
.xd{left:81.826800pt;}
.x9{left:86.929200pt;}
.x2f{left:94.488133pt;}
.x16{left:102.047200pt;}
.xe{left:105.826800pt;}
.x2a{left:124.724400pt;}
.x2{left:130.184400pt;}
.x6{left:143.090667pt;}
.x2b{left:148.724000pt;}
.x30{left:165.669333pt;}
.x17{left:185.212000pt;}
.x28{left:205.829333pt;}
.x27{left:226.772000pt;}
.x4{left:264.510667pt;}
.x14{left:292.433333pt;}
.x1d{left:297.502667pt;}
.xf{left:301.038667pt;}
.x20{left:309.788000pt;}
.x1e{left:318.298667pt;}
.x1f{left:319.588000pt;}
.x10{left:325.038667pt;}
.x21{left:327.992000pt;}
.x29{left:333.318667pt;}
.x13{left:353.828000pt;}
.xb{left:414.600000pt;}
.x2c{left:423.822667pt;}
.x2d{left:447.822667pt;}
.x2e{left:461.102667pt;}
.x8{left:502.762667pt;}
.x11{left:520.252000pt;}
.x25{left:531.501333pt;}
.x22{left:533.036000pt;}
.x12{left:544.252000pt;}
.x23{left:554.493333pt;}
.x24{left:555.553333pt;}
.x26{left:592.094667pt;}
.x5{left:626.416000pt;}
.x7{left:701.201333pt;}
}




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