
    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_a07acaa9a9c1d3a7651cc50d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_bca1d4792432cb4c12704a5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_6def342bf4eb4a78b92f5db4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_fc68895d2b0081c93dcc89a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_b1817ab6793e15eafcc0cbc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.780762;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_fbc3d4799d9b4037c882b6f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.197266;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_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_9ef3c03493ec91b3dfb7f4e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_ebcfdf3aa09fb622fd430948.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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;}
.ls5{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.305280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(31,73,125),0 0.015em rgb(31,73,125),0.015em 0 rgb(31,73,125),0 -0.015em  rgb(31,73,125);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(31,73,125);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-167.760000px;}
.wsd{word-spacing:-72.000000px;}
.ws4{word-spacing:-46.637280px;}
.ws5{word-spacing:-20.304000px;}
.wsc{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.wsb{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.296000px;}
.ws9{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws8{word-spacing:-15.228000px;}
.ws0{word-spacing:0.000000px;}
._48{margin-left:-16.416000px;}
._4f{margin-left:-14.550720px;}
._a{margin-left:-8.352000px;}
._43{margin-left:-5.832000px;}
._1{margin-left:-4.752000px;}
._3{margin-left:-3.672000px;}
._9{margin-left:-2.376000px;}
._0{margin-left:-1.224000px;}
._2{width:1.164000px;}
._14{width:2.376000px;}
._13{width:3.384000px;}
._2b{width:4.608000px;}
._8{width:5.688000px;}
._7{width:6.768000px;}
._16{width:8.496000px;}
._19{width:9.648000px;}
._24{width:10.944000px;}
._6{width:12.744000px;}
._5{width:13.752000px;}
._15{width:15.192000px;}
._27{width:17.064000px;}
._1a{width:18.948000px;}
._4{width:21.084000px;}
._22{width:22.116000px;}
._23{width:23.616000px;}
._32{width:24.732000px;}
._b{width:26.496000px;}
._e{width:28.224000px;}
._2f{width:29.448000px;}
._2a{width:30.528000px;}
._33{width:32.112000px;}
._18{width:33.408000px;}
._17{width:34.488000px;}
._2d{width:35.556000px;}
._21{width:37.296000px;}
._10{width:39.096000px;}
._34{width:40.368000px;}
._45{width:41.472000px;}
._20{width:42.552000px;}
._1f{width:44.064000px;}
._1e{width:45.360000px;}
._f{width:46.440000px;}
._4a{width:47.532000px;}
._41{width:48.744000px;}
._31{width:50.400000px;}
._30{width:51.696000px;}
._38{width:52.776000px;}
._28{width:54.144000px;}
._40{width:55.152000px;}
._26{width:56.448000px;}
._4b{width:57.888000px;}
._3f{width:59.616000px;}
._3e{width:61.128000px;}
._3b{width:62.136000px;}
._1d{width:63.288000px;}
._4c{width:64.296000px;}
._2c{width:65.304000px;}
._25{width:66.312000px;}
._59{width:67.464000px;}
._35{width:68.472000px;}
._37{width:71.064000px;}
._1c{width:72.072000px;}
._1b{width:73.296000px;}
._3d{width:74.736000px;}
._3c{width:75.888000px;}
._44{width:77.040000px;}
._2e{width:79.056000px;}
._29{width:80.136000px;}
._39{width:81.216000px;}
._4e{width:82.296000px;}
._42{width:84.096000px;}
._53{width:85.956000px;}
._4d{width:87.840000px;}
._54{width:89.712000px;}
._55{width:91.368000px;}
._47{width:92.736000px;}
._46{width:93.888000px;}
._52{width:95.184000px;}
._49{width:101.736000px;}
._58{width:103.896000px;}
._56{width:105.120000px;}
._12{width:110.304000px;}
._57{width:115.704000px;}
._5b{width:117.576000px;}
._36{width:153.504000px;}
._11{width:158.688000px;}
._3a{width:195.984000px;}
._51{width:198.360000px;}
._50{width:199.584000px;}
._d{width:255.888000px;}
._c{width:256.896000px;}
._5a{width:578.460000px;}
.fc8{color:rgb(15,17,21);}
.fc7{color:rgb(79,129,189);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(31,73,125);}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:167.760000px;}
.y3{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.060000px;}
.y8{bottom:3.780000px;}
.y45{bottom:3.810000px;}
.y3f{bottom:3.825000px;}
.y3d{bottom:24.480000px;}
.y6{bottom:42.660000px;}
.y4{bottom:54.180000px;}
.y2{bottom:80.640000px;}
.y86{bottom:93.420000px;}
.y54{bottom:96.840000px;}
.yd6{bottom:97.740000px;}
.ya9{bottom:101.160000px;}
.yb7{bottom:102.060000px;}
.y36{bottom:102.960000px;}
.y79{bottom:108.180000px;}
.y62{bottom:108.360000px;}
.y97{bottom:110.340000px;}
.y9d{bottom:110.700000px;}
.yc2{bottom:113.040000px;}
.y53{bottom:114.120000px;}
.y8f{bottom:115.740000px;}
.yd5{bottom:118.440000px;}
.y35{bottom:120.240000px;}
.y85{bottom:124.380000px;}
.y52{bottom:131.220000px;}
.ya8{bottom:132.120000px;}
.yb6{bottom:133.020000px;}
.y21{bottom:137.376000px;}
.y34{bottom:137.556000px;}
.y78{bottom:139.176000px;}
.y61{bottom:139.536000px;}
.y96{bottom:140.256000px;}
.y9c{bottom:141.876000px;}
.yc1{bottom:144.216000px;}
.y51{bottom:148.536000px;}
.y33{bottom:155.190000px;}
.y84{bottom:155.550000px;}
.y8e{bottom:157.350000px;}
.y20{bottom:158.070000px;}
.yd4{bottom:159.870000px;}
.ya7{bottom:163.290000px;}
.yb5{bottom:164.190000px;}
.y50{bottom:165.810000px;}
.y95{bottom:168.690000px;}
.y77{bottom:170.310000px;}
.y60{bottom:170.490000px;}
.y9b{bottom:172.830000px;}
.yc0{bottom:175.170000px;}
.y1f{bottom:178.770000px;}
.yd3{bottom:180.570000px;}
.y4f{bottom:183.090000px;}
.y32{bottom:186.330000px;}
.y83{bottom:186.510000px;}
.ya6{bottom:194.250000px;}
.yb4{bottom:195.150000px;}
.y4e{bottom:197.850000px;}
.y8d{bottom:199.110000px;}
.y1e{bottom:199.470000px;}
.y94{bottom:200.910000px;}
.y76{bottom:201.270000px;}
.y5f{bottom:201.630000px;}
.y9a{bottom:203.970000px;}
.ybf{bottom:206.310000px;}
.y31{bottom:217.290000px;}
.y82{bottom:217.650000px;}
.y4d{bottom:219.270000px;}
.y1d{bottom:220.170000px;}
.yd2{bottom:221.970000px;}
.ya5{bottom:225.390000px;}
.yb3{bottom:226.290000px;}
.y93{bottom:228.630000px;}
.y75{bottom:232.410000px;}
.y5e{bottom:232.590000px;}
.y99{bottom:234.930000px;}
.ybe{bottom:237.270000px;}
.y1c{bottom:240.870000px;}
.yd1{bottom:242.670000px;}
.ya4{bottom:246.090000px;}
.y30{bottom:248.430000px;}
.y81{bottom:248.610000px;}
.y92{bottom:255.450000px;}
.yb2{bottom:257.250000px;}
.y4c{bottom:261.390000px;}
.y1b{bottom:261.570000px;}
.y74{bottom:263.370000px;}
.y5d{bottom:263.550000px;}
.y98{bottom:264.810000px;}
.ybd{bottom:268.410000px;}
.ya3{bottom:271.110000px;}
.y2f{bottom:279.390000px;}
.y80{bottom:279.750000px;}
.y1a{bottom:282.270000px;}
.y8c{bottom:282.450000px;}
.y4b{bottom:282.810000px;}
.yd0{bottom:284.070000px;}
.yb1{bottom:288.390000px;}
.y73{bottom:294.510000px;}
.y5c{bottom:294.690000px;}
.ya2{bottom:297.930000px;}
.ybc{bottom:299.370000px;}
.y19{bottom:302.970000px;}
.y4a{bottom:304.410000px;}
.ycf{bottom:304.770000px;}
.y91{bottom:305.130000px;}
.y2e{bottom:310.575000px;}
.y7f{bottom:310.755000px;}
.ye4{bottom:315.255000px;}
.yb0{bottom:319.395000px;}
.y18{bottom:323.715000px;}
.y8b{bottom:324.255000px;}
.ya1{bottom:324.975000px;}
.y72{bottom:325.515000px;}
.y5b{bottom:325.695000px;}
.y49{bottom:325.875000px;}
.ybb{bottom:330.555000px;}
.y90{bottom:331.635000px;}
.y7e{bottom:335.775000px;}
.ye3{bottom:335.955000px;}
.y2d{bottom:341.535000px;}
.ya0{bottom:343.875000px;}
.y17{bottom:344.415000px;}
.y5a{bottom:345.855000px;}
.yce{bottom:346.215000px;}
.yaf{bottom:350.535000px;}
.y71{bottom:356.655000px;}
.yba{bottom:361.515000px;}
.y7d{bottom:362.775000px;}
.y16{bottom:365.115000px;}
.y8a{bottom:365.835000px;}
.ycd{bottom:366.915000px;}
.y48{bottom:367.995000px;}
.y2c{bottom:372.675000px;}
.ye2{bottom:377.355000px;}
.yae{bottom:381.495000px;}
.y7c{bottom:381.675000px;}
.y15{bottom:385.815000px;}
.y70{bottom:387.615000px;}
.yb9{bottom:392.655000px;}
.y59{bottom:394.995000px;}
.ye1{bottom:398.055000px;}
.y14{bottom:402.735000px;}
.y2b{bottom:403.635000px;}
.y89{bottom:407.595000px;}
.ycc{bottom:408.315000px;}
.y47{bottom:410.115000px;}
.yad{bottom:412.635000px;}
.y6f{bottom:418.755000px;}
.yb8{bottom:419.835000px;}
.y58{bottom:421.995000px;}
.ycb{bottom:429.015000px;}
.y2a{bottom:434.775000px;}
.ye0{bottom:439.455000px;}
.yac{bottom:443.595000px;}
.y57{bottom:448.815000px;}
.y88{bottom:449.355000px;}
.y6e{bottom:449.715000px;}
.y46{bottom:452.235000px;}
.ydf{bottom:460.155000px;}
.y29{bottom:465.735000px;}
.y56{bottom:467.715000px;}
.yca{bottom:470.415000px;}
.y44{bottom:473.655000px;}
.yab{bottom:474.735000px;}
.y13{bottom:480.705000px;}
.y6d{bottom:480.885000px;}
.y87{bottom:490.965000px;}
.yc9{bottom:491.145000px;}
.y43{bottom:495.105000px;}
.y28{bottom:496.905000px;}
.y12{bottom:501.405000px;}
.yde{bottom:501.585000px;}
.yaa{bottom:501.945000px;}
.y6c{bottom:511.845000px;}
.y11{bottom:522.105000px;}
.ydd{bottom:522.285000px;}
.y27{bottom:527.865000px;}
.yc8{bottom:532.545000px;}
.y42{bottom:537.405000px;}
.y10{bottom:539.025000px;}
.y6b{bottom:542.985000px;}
.yc7{bottom:553.245000px;}
.y26{bottom:559.005000px;}
.ydc{bottom:563.685000px;}
.y6a{bottom:573.945000px;}
.y41{bottom:579.525000px;}
.ydb{bottom:584.385000px;}
.y25{bottom:589.965000px;}
.yc6{bottom:594.645000px;}
.y69{bottom:605.085000px;}
.yc5{bottom:615.345000px;}
.y40{bottom:621.645000px;}
.yda{bottom:625.785000px;}
.y68{bottom:636.045000px;}
.y3e{bottom:643.065000px;}
.y24{bottom:645.450000px;}
.yd9{bottom:646.530000px;}
.yc4{bottom:656.790000px;}
.yf{bottom:657.690000px;}
.y3c{bottom:664.530000px;}
.y67{bottom:667.230000px;}
.yc3{bottom:677.490000px;}
.ye{bottom:678.390000px;}
.yd8{bottom:687.930000px;}
.y23{bottom:693.510000px;}
.y66{bottom:698.190000px;}
.yd{bottom:699.090000px;}
.y3b{bottom:706.650000px;}
.yd7{bottom:708.630000px;}
.y9f{bottom:718.890000px;}
.yc{bottom:719.790000px;}
.y3a{bottom:728.250000px;}
.y65{bottom:729.330000px;}
.y55{bottom:732.750000px;}
.y9e{bottom:739.590000px;}
.yb{bottom:740.490000px;}
.y7b{bottom:750.030000px;}
.y39{bottom:753.450000px;}
.y64{bottom:760.290000px;}
.ya{bottom:761.190000px;}
.y7a{bottom:770.730000px;}
.y38{bottom:774.150000px;}
.y9{bottom:781.890000px;}
.y63{bottom:791.430000px;}
.y37{bottom:794.310000px;}
.y1{bottom:802.230000px;}
.y22{bottom:817.560000px;}
.y7{bottom:825.480000px;}
.ha{height:5.166563px;}
.h3{height:8.640000px;}
.h5{height:15.660000px;}
.h7{height:20.700000px;}
.he{height:20.736000px;}
.hd{height:41.400000px;}
.h4{height:48.436523px;}
.h10{height:49.992188px;}
.h6{height:53.603086px;}
.hb{height:54.069961px;}
.h2{height:59.415469px;}
.h11{height:59.932969px;}
.h13{height:64.371094px;}
.h9{height:64.582031px;}
.h8{height:65.144531px;}
.hf{height:70.666172px;}
.h12{height:76.219102px;}
.hc{height:151.786758px;}
.h1{height:893.250000px;}
.h0{height:893.340000px;}
.w5{width:40.500000px;}
.w7{width:44.100000px;}
.w3{width:218.055000px;}
.w2{width:241.950000px;}
.w6{width:360.825000px;}
.w4{width:456.945000px;}
.w1{width:629.999991px;}
.w0{width:630.000000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x21{left:12.060000px;}
.x22{left:15.120000px;}
.x20{left:16.920000px;}
.x1c{left:20.160000px;}
.x7{left:46.800000px;}
.x31{left:74.375991px;}
.x1{left:84.995991px;}
.x6{left:86.616000px;}
.x36{left:88.955991px;}
.x3a{left:91.835991px;}
.x30{left:95.615991px;}
.x27{left:97.055991px;}
.x35{left:102.995991px;}
.x26{left:104.795991px;}
.x2a{left:106.415991px;}
.x39{left:109.295991px;}
.x28{left:120.995991px;}
.x1d{left:127.116000px;}
.x19{left:129.635991px;}
.xf{left:138.995991px;}
.x32{left:142.775991px;}
.x23{left:151.949991px;}
.xb{left:155.909991px;}
.x2f{left:161.309991px;}
.x3c{left:168.509991px;}
.x3f{left:170.849991px;}
.xa{left:171.929991px;}
.x1a{left:176.249991px;}
.xc{left:178.769991px;}
.x1e{left:180.399000px;}
.x2d{left:181.649991px;}
.x12{left:183.269991px;}
.x3e{left:184.529991px;}
.x2c{left:190.109991px;}
.x2b{left:194.655000px;}
.x5{left:202.035000px;}
.x29{left:204.554991px;}
.x18{left:207.434991px;}
.x4{left:209.595000px;}
.x1b{left:213.014991px;}
.x14{left:225.794991px;}
.x17{left:229.034991px;}
.x37{left:232.814991px;}
.x11{left:240.554991px;}
.x24{left:243.434991px;}
.x8{left:244.694991px;}
.x13{left:247.214991px;}
.x10{left:249.014991px;}
.x33{left:251.354991px;}
.x15{left:254.954991px;}
.x16{left:271.334991px;}
.x9{left:280.694991px;}
.xd{left:314.894991px;}
.x3{left:326.955000px;}
.x3b{left:382.784991px;}
.xe{left:425.444991px;}
.x1f{left:488.670000px;}
.x3d{left:507.749991px;}
.x25{left:525.749991px;}
.x38{left:528.449991px;}
.x40{left:531.689991px;}
.x2e{left:541.769991px;}
.x34{left:543.389991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.271360pt;}
.ws3{word-spacing:-149.120000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws4{word-spacing:-41.455360pt;}
.ws5{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.wsb{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.152000pt;}
.ws9{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws8{word-spacing:-13.536000pt;}
.ws0{word-spacing:0.000000pt;}
._48{margin-left:-14.592000pt;}
._4f{margin-left:-12.933973pt;}
._a{margin-left:-7.424000pt;}
._43{margin-left:-5.184000pt;}
._1{margin-left:-4.224000pt;}
._3{margin-left:-3.264000pt;}
._9{margin-left:-2.112000pt;}
._0{margin-left:-1.088000pt;}
._2{width:1.034667pt;}
._14{width:2.112000pt;}
._13{width:3.008000pt;}
._2b{width:4.096000pt;}
._8{width:5.056000pt;}
._7{width:6.016000pt;}
._16{width:7.552000pt;}
._19{width:8.576000pt;}
._24{width:9.728000pt;}
._6{width:11.328000pt;}
._5{width:12.224000pt;}
._15{width:13.504000pt;}
._27{width:15.168000pt;}
._1a{width:16.842667pt;}
._4{width:18.741333pt;}
._22{width:19.658667pt;}
._23{width:20.992000pt;}
._32{width:21.984000pt;}
._b{width:23.552000pt;}
._e{width:25.088000pt;}
._2f{width:26.176000pt;}
._2a{width:27.136000pt;}
._33{width:28.544000pt;}
._18{width:29.696000pt;}
._17{width:30.656000pt;}
._2d{width:31.605333pt;}
._21{width:33.152000pt;}
._10{width:34.752000pt;}
._34{width:35.882667pt;}
._45{width:36.864000pt;}
._20{width:37.824000pt;}
._1f{width:39.168000pt;}
._1e{width:40.320000pt;}
._f{width:41.280000pt;}
._4a{width:42.250667pt;}
._41{width:43.328000pt;}
._31{width:44.800000pt;}
._30{width:45.952000pt;}
._38{width:46.912000pt;}
._28{width:48.128000pt;}
._40{width:49.024000pt;}
._26{width:50.176000pt;}
._4b{width:51.456000pt;}
._3f{width:52.992000pt;}
._3e{width:54.336000pt;}
._3b{width:55.232000pt;}
._1d{width:56.256000pt;}
._4c{width:57.152000pt;}
._2c{width:58.048000pt;}
._25{width:58.944000pt;}
._59{width:59.968000pt;}
._35{width:60.864000pt;}
._37{width:63.168000pt;}
._1c{width:64.064000pt;}
._1b{width:65.152000pt;}
._3d{width:66.432000pt;}
._3c{width:67.456000pt;}
._44{width:68.480000pt;}
._2e{width:70.272000pt;}
._29{width:71.232000pt;}
._39{width:72.192000pt;}
._4e{width:73.152000pt;}
._42{width:74.752000pt;}
._53{width:76.405333pt;}
._4d{width:78.080000pt;}
._54{width:79.744000pt;}
._55{width:81.216000pt;}
._47{width:82.432000pt;}
._46{width:83.456000pt;}
._52{width:84.608000pt;}
._49{width:90.432000pt;}
._58{width:92.352000pt;}
._56{width:93.440000pt;}
._12{width:98.048000pt;}
._57{width:102.848000pt;}
._5b{width:104.512000pt;}
._36{width:136.448000pt;}
._11{width:141.056000pt;}
._3a{width:174.208000pt;}
._51{width:176.320000pt;}
._50{width:177.408000pt;}
._d{width:227.456000pt;}
._c{width:228.352000pt;}
._5a{width:514.186667pt;}
.fs4{font-size:5.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:149.120000pt;}
.y3{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.720000pt;}
.y8{bottom:3.360000pt;}
.y45{bottom:3.386667pt;}
.y3f{bottom:3.400000pt;}
.y3d{bottom:21.760000pt;}
.y6{bottom:37.920000pt;}
.y4{bottom:48.160000pt;}
.y2{bottom:71.680000pt;}
.y86{bottom:83.040000pt;}
.y54{bottom:86.080000pt;}
.yd6{bottom:86.880000pt;}
.ya9{bottom:89.920000pt;}
.yb7{bottom:90.720000pt;}
.y36{bottom:91.520000pt;}
.y79{bottom:96.160000pt;}
.y62{bottom:96.320000pt;}
.y97{bottom:98.080000pt;}
.y9d{bottom:98.400000pt;}
.yc2{bottom:100.480000pt;}
.y53{bottom:101.440000pt;}
.y8f{bottom:102.880000pt;}
.yd5{bottom:105.280000pt;}
.y35{bottom:106.880000pt;}
.y85{bottom:110.560000pt;}
.y52{bottom:116.640000pt;}
.ya8{bottom:117.440000pt;}
.yb6{bottom:118.240000pt;}
.y21{bottom:122.112000pt;}
.y34{bottom:122.272000pt;}
.y78{bottom:123.712000pt;}
.y61{bottom:124.032000pt;}
.y96{bottom:124.672000pt;}
.y9c{bottom:126.112000pt;}
.yc1{bottom:128.192000pt;}
.y51{bottom:132.032000pt;}
.y33{bottom:137.946667pt;}
.y84{bottom:138.266667pt;}
.y8e{bottom:139.866667pt;}
.y20{bottom:140.506667pt;}
.yd4{bottom:142.106667pt;}
.ya7{bottom:145.146667pt;}
.yb5{bottom:145.946667pt;}
.y50{bottom:147.386667pt;}
.y95{bottom:149.946667pt;}
.y77{bottom:151.386667pt;}
.y60{bottom:151.546667pt;}
.y9b{bottom:153.626667pt;}
.yc0{bottom:155.706667pt;}
.y1f{bottom:158.906667pt;}
.yd3{bottom:160.506667pt;}
.y4f{bottom:162.746667pt;}
.y32{bottom:165.626667pt;}
.y83{bottom:165.786667pt;}
.ya6{bottom:172.666667pt;}
.yb4{bottom:173.466667pt;}
.y4e{bottom:175.866667pt;}
.y8d{bottom:176.986667pt;}
.y1e{bottom:177.306667pt;}
.y94{bottom:178.586667pt;}
.y76{bottom:178.906667pt;}
.y5f{bottom:179.226667pt;}
.y9a{bottom:181.306667pt;}
.ybf{bottom:183.386667pt;}
.y31{bottom:193.146667pt;}
.y82{bottom:193.466667pt;}
.y4d{bottom:194.906667pt;}
.y1d{bottom:195.706667pt;}
.yd2{bottom:197.306667pt;}
.ya5{bottom:200.346667pt;}
.yb3{bottom:201.146667pt;}
.y93{bottom:203.226667pt;}
.y75{bottom:206.586667pt;}
.y5e{bottom:206.746667pt;}
.y99{bottom:208.826667pt;}
.ybe{bottom:210.906667pt;}
.y1c{bottom:214.106667pt;}
.yd1{bottom:215.706667pt;}
.ya4{bottom:218.746667pt;}
.y30{bottom:220.826667pt;}
.y81{bottom:220.986667pt;}
.y92{bottom:227.066667pt;}
.yb2{bottom:228.666667pt;}
.y4c{bottom:232.346667pt;}
.y1b{bottom:232.506667pt;}
.y74{bottom:234.106667pt;}
.y5d{bottom:234.266667pt;}
.y98{bottom:235.386667pt;}
.ybd{bottom:238.586667pt;}
.ya3{bottom:240.986667pt;}
.y2f{bottom:248.346667pt;}
.y80{bottom:248.666667pt;}
.y1a{bottom:250.906667pt;}
.y8c{bottom:251.066667pt;}
.y4b{bottom:251.386667pt;}
.yd0{bottom:252.506667pt;}
.yb1{bottom:256.346667pt;}
.y73{bottom:261.786667pt;}
.y5c{bottom:261.946667pt;}
.ya2{bottom:264.826667pt;}
.ybc{bottom:266.106667pt;}
.y19{bottom:269.306667pt;}
.y4a{bottom:270.586667pt;}
.ycf{bottom:270.906667pt;}
.y91{bottom:271.226667pt;}
.y2e{bottom:276.066667pt;}
.y7f{bottom:276.226667pt;}
.ye4{bottom:280.226667pt;}
.yb0{bottom:283.906667pt;}
.y18{bottom:287.746667pt;}
.y8b{bottom:288.226667pt;}
.ya1{bottom:288.866667pt;}
.y72{bottom:289.346667pt;}
.y5b{bottom:289.506667pt;}
.y49{bottom:289.666667pt;}
.ybb{bottom:293.826667pt;}
.y90{bottom:294.786667pt;}
.y7e{bottom:298.466667pt;}
.ye3{bottom:298.626667pt;}
.y2d{bottom:303.586667pt;}
.ya0{bottom:305.666667pt;}
.y17{bottom:306.146667pt;}
.y5a{bottom:307.426667pt;}
.yce{bottom:307.746667pt;}
.yaf{bottom:311.586667pt;}
.y71{bottom:317.026667pt;}
.yba{bottom:321.346667pt;}
.y7d{bottom:322.466667pt;}
.y16{bottom:324.546667pt;}
.y8a{bottom:325.186667pt;}
.ycd{bottom:326.146667pt;}
.y48{bottom:327.106667pt;}
.y2c{bottom:331.266667pt;}
.ye2{bottom:335.426667pt;}
.yae{bottom:339.106667pt;}
.y7c{bottom:339.266667pt;}
.y15{bottom:342.946667pt;}
.y70{bottom:344.546667pt;}
.yb9{bottom:349.026667pt;}
.y59{bottom:351.106667pt;}
.ye1{bottom:353.826667pt;}
.y14{bottom:357.986667pt;}
.y2b{bottom:358.786667pt;}
.y89{bottom:362.306667pt;}
.ycc{bottom:362.946667pt;}
.y47{bottom:364.546667pt;}
.yad{bottom:366.786667pt;}
.y6f{bottom:372.226667pt;}
.yb8{bottom:373.186667pt;}
.y58{bottom:375.106667pt;}
.ycb{bottom:381.346667pt;}
.y2a{bottom:386.466667pt;}
.ye0{bottom:390.626667pt;}
.yac{bottom:394.306667pt;}
.y57{bottom:398.946667pt;}
.y88{bottom:399.426667pt;}
.y6e{bottom:399.746667pt;}
.y46{bottom:401.986667pt;}
.ydf{bottom:409.026667pt;}
.y29{bottom:413.986667pt;}
.y56{bottom:415.746667pt;}
.yca{bottom:418.146667pt;}
.y44{bottom:421.026667pt;}
.yab{bottom:421.986667pt;}
.y13{bottom:427.293333pt;}
.y6d{bottom:427.453333pt;}
.y87{bottom:436.413333pt;}
.yc9{bottom:436.573333pt;}
.y43{bottom:440.093333pt;}
.y28{bottom:441.693333pt;}
.y12{bottom:445.693333pt;}
.yde{bottom:445.853333pt;}
.yaa{bottom:446.173333pt;}
.y6c{bottom:454.973333pt;}
.y11{bottom:464.093333pt;}
.ydd{bottom:464.253333pt;}
.y27{bottom:469.213333pt;}
.yc8{bottom:473.373333pt;}
.y42{bottom:477.693333pt;}
.y10{bottom:479.133333pt;}
.y6b{bottom:482.653333pt;}
.yc7{bottom:491.773333pt;}
.y26{bottom:496.893333pt;}
.ydc{bottom:501.053333pt;}
.y6a{bottom:510.173333pt;}
.y41{bottom:515.133333pt;}
.ydb{bottom:519.453333pt;}
.y25{bottom:524.413333pt;}
.yc6{bottom:528.573333pt;}
.y69{bottom:537.853333pt;}
.yc5{bottom:546.973333pt;}
.y40{bottom:552.573333pt;}
.yda{bottom:556.253333pt;}
.y68{bottom:565.373333pt;}
.y3e{bottom:571.613333pt;}
.y24{bottom:573.733333pt;}
.yd9{bottom:574.693333pt;}
.yc4{bottom:583.813333pt;}
.yf{bottom:584.613333pt;}
.y3c{bottom:590.693333pt;}
.y67{bottom:593.093333pt;}
.yc3{bottom:602.213333pt;}
.ye{bottom:603.013333pt;}
.yd8{bottom:611.493333pt;}
.y23{bottom:616.453333pt;}
.y66{bottom:620.613333pt;}
.yd{bottom:621.413333pt;}
.y3b{bottom:628.133333pt;}
.yd7{bottom:629.893333pt;}
.y9f{bottom:639.013333pt;}
.yc{bottom:639.813333pt;}
.y3a{bottom:647.333333pt;}
.y65{bottom:648.293333pt;}
.y55{bottom:651.333333pt;}
.y9e{bottom:657.413333pt;}
.yb{bottom:658.213333pt;}
.y7b{bottom:666.693333pt;}
.y39{bottom:669.733333pt;}
.y64{bottom:675.813333pt;}
.ya{bottom:676.613333pt;}
.y7a{bottom:685.093333pt;}
.y38{bottom:688.133333pt;}
.y9{bottom:695.013333pt;}
.y63{bottom:703.493333pt;}
.y37{bottom:706.053333pt;}
.y1{bottom:713.093333pt;}
.y22{bottom:726.720000pt;}
.y7{bottom:733.760000pt;}
.ha{height:4.592500pt;}
.h3{height:7.680000pt;}
.h5{height:13.920000pt;}
.h7{height:18.400000pt;}
.he{height:18.432000pt;}
.hd{height:36.800000pt;}
.h4{height:43.054688pt;}
.h10{height:44.437500pt;}
.h6{height:47.647188pt;}
.hb{height:48.062188pt;}
.h2{height:52.813750pt;}
.h11{height:53.273750pt;}
.h13{height:57.218750pt;}
.h9{height:57.406250pt;}
.h8{height:57.906250pt;}
.hf{height:62.814375pt;}
.h12{height:67.750312pt;}
.hc{height:134.921562pt;}
.h1{height:794.000000pt;}
.h0{height:794.080000pt;}
.w5{width:36.000000pt;}
.w7{width:39.200000pt;}
.w3{width:193.826667pt;}
.w2{width:215.066667pt;}
.w6{width:320.733333pt;}
.w4{width:406.173333pt;}
.w1{width:559.999992pt;}
.w0{width:560.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x21{left:10.720000pt;}
.x22{left:13.440000pt;}
.x20{left:15.040000pt;}
.x1c{left:17.920000pt;}
.x7{left:41.600000pt;}
.x31{left:66.111992pt;}
.x1{left:75.551992pt;}
.x6{left:76.992000pt;}
.x36{left:79.071992pt;}
.x3a{left:81.631992pt;}
.x30{left:84.991992pt;}
.x27{left:86.271992pt;}
.x35{left:91.551992pt;}
.x26{left:93.151992pt;}
.x2a{left:94.591992pt;}
.x39{left:97.151992pt;}
.x28{left:107.551992pt;}
.x1d{left:112.992000pt;}
.x19{left:115.231992pt;}
.xf{left:123.551992pt;}
.x32{left:126.911992pt;}
.x23{left:135.066658pt;}
.xb{left:138.586658pt;}
.x2f{left:143.386658pt;}
.x3c{left:149.786658pt;}
.x3f{left:151.866658pt;}
.xa{left:152.826658pt;}
.x1a{left:156.666658pt;}
.xc{left:158.906658pt;}
.x1e{left:160.354667pt;}
.x2d{left:161.466658pt;}
.x12{left:162.906658pt;}
.x3e{left:164.026658pt;}
.x2c{left:168.986658pt;}
.x2b{left:173.026667pt;}
.x5{left:179.586667pt;}
.x29{left:181.826658pt;}
.x18{left:184.386658pt;}
.x4{left:186.306667pt;}
.x1b{left:189.346658pt;}
.x14{left:200.706658pt;}
.x17{left:203.586658pt;}
.x37{left:206.946658pt;}
.x11{left:213.826658pt;}
.x24{left:216.386658pt;}
.x8{left:217.506658pt;}
.x13{left:219.746658pt;}
.x10{left:221.346658pt;}
.x33{left:223.426658pt;}
.x15{left:226.626658pt;}
.x16{left:241.186658pt;}
.x9{left:249.506658pt;}
.xd{left:279.906658pt;}
.x3{left:290.626667pt;}
.x3b{left:340.253325pt;}
.xe{left:378.173325pt;}
.x1f{left:434.373333pt;}
.x3d{left:451.333325pt;}
.x25{left:467.333325pt;}
.x38{left:469.733325pt;}
.x40{left:472.613325pt;}
.x2e{left:481.573325pt;}
.x34{left:483.013325pt;}
}




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