
    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_050b3c3ea53bac2d01ceeb86.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_2705b666929b536861123f8a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_0aeb8c6970eaa5f84cda6b53.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_d1015f76c7253e5f03f0128c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_4a018d9c57863511666fef7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_38e1689b7a665400b35c51e9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_ac057ac48ee558d6671226a6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_5cad7223abf637e8bf6b2442.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-1.182000px;}
.ls16{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:5.940000px;}
.ls14{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.026720px;}
.ls10{letter-spacing:201.060000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws3{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.839800px;}
.ws4{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.166000px;}
.wsd{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._44{margin-left:-173.470320px;}
._37{margin-left:-142.766640px;}
._2f{margin-left:-13.857120px;}
._45{margin-left:-8.772480px;}
._11{margin-left:-7.182000px;}
._12{margin-left:-5.048640px;}
._13{margin-left:-3.888240px;}
._b{margin-left:-2.453280px;}
._0{margin-left:-1.080000px;}
._c{width:1.003680px;}
._1{width:2.220000px;}
._14{width:4.195440px;}
._17{width:5.280480px;}
._18{width:6.726240px;}
._1a{width:8.577360px;}
._15{width:9.704160px;}
._6{width:10.800000px;}
._1c{width:11.812800px;}
._16{width:12.930000px;}
._19{width:16.732800px;}
._1b{width:18.053280px;}
._1e{width:20.689200px;}
._20{width:22.721040px;}
._24{width:24.262560px;}
._3e{width:25.804080px;}
._33{width:26.964000px;}
._48{width:28.336080px;}
._1f{width:32.150880px;}
._2a{width:33.644880px;}
._41{width:36.573120px;}
._1d{width:37.887840px;}
._25{width:39.083040px;}
._38{width:40.278960px;}
._4e{width:41.380800px;}
._4f{width:42.764160px;}
._35{width:43.923600px;}
._34{width:50.138640px;}
._36{width:56.545200px;}
._46{width:58.305840px;}
._49{width:60.617520px;}
._32{width:61.971120px;}
._39{width:63.716400px;}
._4a{width:65.866080px;}
._47{width:67.481280px;}
._4b{width:69.019200px;}
._22{width:70.147440px;}
._2e{width:72.735840px;}
._21{width:74.700000px;}
._7{width:76.284960px;}
._40{width:78.046560px;}
._3b{width:80.680320px;}
._3f{width:87.667920px;}
._26{width:94.659840px;}
._23{width:97.596000px;}
._27{width:101.365200px;}
._2b{width:104.652000px;}
._2c{width:105.655680px;}
._3d{width:106.863120px;}
._30{width:110.269440px;}
._3c{width:112.348800px;}
._4c{width:117.509520px;}
._29{width:118.989360px;}
._28{width:120.081600px;}
._4d{width:122.428800px;}
._8{width:154.080000px;}
._2d{width:155.196720px;}
._31{width:178.929360px;}
._e{width:195.120000px;}
._42{width:207.200160px;}
._3a{width:234.079920px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._f{width:653.880000px;}
._10{width:703.560000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
._43{width:1333.740000px;}
.fc3{color:rgb(19,5,17);}
.fc5{color:rgb(70,120,134);}
.fc2{color:rgb(5,99,193);}
.fc6{color:rgb(85,85,85);}
.fc4{color:rgb(160,43,147);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.240000px;}
.y86{bottom:5.760000px;}
.y88{bottom:5.940000px;}
.yc4{bottom:5.970000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y9f{bottom:12.780000px;}
.y8{bottom:18.180000px;}
.ya3{bottom:20.520000px;}
.y90{bottom:25.560000px;}
.ybb{bottom:25.590000px;}
.y92{bottom:25.740000px;}
.yc3{bottom:25.770000px;}
.y9e{bottom:32.580000px;}
.yc{bottom:36.000000px;}
.ya2{bottom:37.800000px;}
.y5{bottom:40.320000px;}
.y9a{bottom:45.360000px;}
.yba{bottom:45.390000px;}
.y8f{bottom:45.540000px;}
.yc2{bottom:45.570000px;}
.ya6{bottom:45.585000px;}
.y9d{bottom:52.380000px;}
.ya1{bottom:55.080000px;}
.yb{bottom:57.780000px;}
.y99{bottom:65.160000px;}
.y95{bottom:65.340000px;}
.yac{bottom:65.370000px;}
.y8e{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.y9c{bottom:72.180000px;}
.ya0{bottom:72.360000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y94{bottom:85.140000px;}
.yab{bottom:85.170000px;}
.y8d{bottom:85.185000px;}
.y3{bottom:96.330000px;}
.ya9{bottom:99.000000px;}
.y8a{bottom:100.260000px;}
.y6a{bottom:101.160000px;}
.ya8{bottom:104.940000px;}
.y98{bottom:104.970000px;}
.yb7{bottom:104.985000px;}
.yc1{bottom:105.150000px;}
.yb2{bottom:110.160000px;}
.yf0{bottom:118.440000px;}
.yf3{bottom:118.620000px;}
.y89{bottom:120.780000px;}
.y69{bottom:121.140000px;}
.ye3{bottom:124.380000px;}
.y97{bottom:124.770000px;}
.ybd{bottom:124.920000px;}
.yaa{bottom:124.950000px;}
.yb6{bottom:124.965000px;}
.y2{bottom:125.670000px;}
.yb1{bottom:129.960000px;}
.y3a{bottom:132.300000px;}
.yc5{bottom:133.020000px;}
.yf2{bottom:137.340000px;}
.yef{bottom:138.240000px;}
.y68{bottom:140.940000px;}
.y87{bottom:141.300000px;}
.ye2{bottom:144.360000px;}
.yc0{bottom:144.750000px;}
.yb5{bottom:144.765000px;}
.ybf{bottom:147.780000px;}
.yb0{bottom:149.760000px;}
.y39{bottom:152.130000px;}
.yf1{bottom:155.910000px;}
.yee{bottom:158.250000px;}
.y67{bottom:160.770000px;}
.y85{bottom:162.030000px;}
.ye1{bottom:164.190000px;}
.yb4{bottom:164.565000px;}
.yaf{bottom:166.530000px;}
.y38{bottom:171.930000px;}
.yed{bottom:178.050000px;}
.y66{bottom:180.570000px;}
.ye0{bottom:183.990000px;}
.y84{bottom:188.310000px;}
.y37{bottom:191.730000px;}
.yec{bottom:197.850000px;}
.y65{bottom:200.370000px;}
.ydf{bottom:203.790000px;}
.y83{bottom:205.590000px;}
.y36{bottom:211.530000px;}
.yc8{bottom:213.330000px;}
.yeb{bottom:217.650000px;}
.y64{bottom:220.350000px;}
.yde{bottom:223.590000px;}
.y82{bottom:225.390000px;}
.y35{bottom:231.510000px;}
.yc7{bottom:233.310000px;}
.yea{bottom:237.450000px;}
.ya7{bottom:238.710000px;}
.y63{bottom:240.150000px;}
.ydd{bottom:243.570000px;}
.y81{bottom:245.370000px;}
.yc6{bottom:249.690000px;}
.y34{bottom:251.310000px;}
.ye9{bottom:257.430000px;}
.y62{bottom:259.950000px;}
.ydc{bottom:263.370000px;}
.y80{bottom:265.170000px;}
.y33{bottom:271.110000px;}
.ye8{bottom:277.230000px;}
.y61{bottom:279.750000px;}
.ydb{bottom:283.170000px;}
.y7f{bottom:284.970000px;}
.y32{bottom:290.910000px;}
.ye7{bottom:297.030000px;}
.y60{bottom:299.550000px;}
.y7e{bottom:302.250000px;}
.yda{bottom:302.970000px;}
.ybe{bottom:307.290000px;}
.y31{bottom:310.710000px;}
.ye6{bottom:316.830000px;}
.y5f{bottom:319.530000px;}
.y7d{bottom:322.050000px;}
.yd9{bottom:322.770000px;}
.y30{bottom:330.690000px;}
.ye5{bottom:336.630000px;}
.y5e{bottom:339.330000px;}
.y7c{bottom:341.850000px;}
.yd8{bottom:342.750000px;}
.y2f{bottom:350.490000px;}
.ye4{bottom:356.610000px;}
.ya5{bottom:358.410000px;}
.y5d{bottom:359.130000px;}
.y7b{bottom:361.650000px;}
.yd7{bottom:362.550000px;}
.y2e{bottom:370.290000px;}
.y5c{bottom:376.410000px;}
.y7a{bottom:381.630000px;}
.yd6{bottom:382.350000px;}
.yae{bottom:383.790000px;}
.y2d{bottom:390.090000px;}
.y5b{bottom:396.210000px;}
.yad{bottom:400.350000px;}
.y79{bottom:401.475000px;}
.yd5{bottom:402.195000px;}
.y2c{bottom:409.935000px;}
.y5a{bottom:416.055000px;}
.y78{bottom:421.275000px;}
.yd4{bottom:421.995000px;}
.y2b{bottom:429.915000px;}
.y59{bottom:435.855000px;}
.y77{bottom:441.075000px;}
.yd3{bottom:441.975000px;}
.y2a{bottom:449.715000px;}
.y58{bottom:455.835000px;}
.y9b{bottom:458.355000px;}
.y76{bottom:460.875000px;}
.yd2{bottom:461.775000px;}
.y29{bottom:469.515000px;}
.y57{bottom:475.635000px;}
.y75{bottom:480.855000px;}
.yd1{bottom:481.575000px;}
.ybc{bottom:486.615000px;}
.y28{bottom:489.315000px;}
.y56{bottom:495.435000px;}
.y74{bottom:500.655000px;}
.yd0{bottom:501.375000px;}
.y27{bottom:509.115000px;}
.y55{bottom:515.235000px;}
.y73{bottom:520.455000px;}
.ycf{bottom:521.175000px;}
.y26{bottom:529.095000px;}
.y54{bottom:535.035000px;}
.y72{bottom:537.735000px;}
.yce{bottom:541.155000px;}
.y96{bottom:545.475000px;}
.y25{bottom:548.895000px;}
.y53{bottom:555.015000px;}
.y71{bottom:557.535000px;}
.ycd{bottom:560.955000px;}
.y24{bottom:568.695000px;}
.y52{bottom:574.815000px;}
.y70{bottom:577.335000px;}
.ycc{bottom:580.755000px;}
.y23{bottom:588.495000px;}
.y51{bottom:594.615000px;}
.y6f{bottom:597.135000px;}
.ycb{bottom:597.315000px;}
.y22{bottom:608.295000px;}
.y50{bottom:614.415000px;}
.y6e{bottom:617.115000px;}
.yb9{bottom:626.295000px;}
.y21{bottom:628.275000px;}
.y4f{bottom:634.215000px;}
.y6d{bottom:636.915000px;}
.y20{bottom:648.075000px;}
.y4e{bottom:654.225000px;}
.y6c{bottom:656.745000px;}
.y1f{bottom:667.905000px;}
.y4d{bottom:674.025000px;}
.y6b{bottom:676.545000px;}
.y93{bottom:685.005000px;}
.y1e{bottom:687.705000px;}
.y4c{bottom:693.825000px;}
.y1d{bottom:707.505000px;}
.y4b{bottom:713.625000px;}
.yb8{bottom:726.225000px;}
.y1c{bottom:727.485000px;}
.y4a{bottom:733.425000px;}
.y1b{bottom:747.285000px;}
.y49{bottom:753.405000px;}
.y1a{bottom:767.085000px;}
.y48{bottom:773.205000px;}
.y91{bottom:784.905000px;}
.y19{bottom:786.885000px;}
.y47{bottom:793.005000px;}
.y18{bottom:806.685000px;}
.y46{bottom:812.805000px;}
.y17{bottom:826.665000px;}
.y45{bottom:832.605000px;}
.y8c{bottom:845.205000px;}
.yb3{bottom:845.925000px;}
.y16{bottom:846.465000px;}
.yca{bottom:850.785000px;}
.y44{bottom:852.585000px;}
.y15{bottom:866.265000px;}
.yc9{bottom:867.165000px;}
.y43{bottom:872.385000px;}
.y14{bottom:886.065000px;}
.y42{bottom:892.185000px;}
.y13{bottom:911.130000px;}
.y41{bottom:912.030000px;}
.y12{bottom:926.430000px;}
.y40{bottom:931.830000px;}
.y8b{bottom:945.150000px;}
.y11{bottom:948.210000px;}
.y3f{bottom:951.810000px;}
.y3e{bottom:971.610000px;}
.y10{bottom:973.050000px;}
.y3d{bottom:991.410000px;}
.yf{bottom:1004.730000px;}
.y3c{bottom:1011.210000px;}
.y3b{bottom:1031.010000px;}
.y9{bottom:1048.470000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.067188px;}
.h10{height:19.800000px;}
.h11{height:20.016000px;}
.hb{height:21.780000px;}
.hd{height:27.907031px;}
.h7{height:33.480000px;}
.he{height:42.164648px;}
.h8{height:42.894141px;}
.hf{height:43.506914px;}
.h1d{height:45.024258px;}
.h1c{height:45.461953px;}
.h4{height:46.736719px;}
.ha{height:47.545312px;}
.h9{height:53.224453px;}
.h13{height:59.580000px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h16{height:86.220000px;}
.h14{height:99.180000px;}
.h12{height:99.216000px;}
.h5{height:112.536000px;}
.h17{height:118.980000px;}
.h15{height:138.816000px;}
.h1a{height:138.960000px;}
.h18{height:138.996000px;}
.h2{height:146.736000px;}
.h1b{height:158.790000px;}
.h19{height:178.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:131.796000px;}
.wf{width:137.520000px;}
.wc{width:169.380000px;}
.w9{width:169.410000px;}
.wa{width:179.670000px;}
.w7{width:180.030000px;}
.w6{width:191.010000px;}
.we{width:200.955000px;}
.wd{width:211.935000px;}
.wb{width:212.295000px;}
.w8{width:222.375000px;}
.w10{width:233.175000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x11{left:34.776000px;}
.x1{left:53.280000px;}
.x10{left:58.680000px;}
.xc{left:64.080000px;}
.x1a{left:69.660000px;}
.xb{left:80.999987px;}
.x6{left:104.975987px;}
.x22{left:108.035987px;}
.x4{left:118.290000px;}
.x19{left:233.489987px;}
.x12{left:239.250000px;}
.x1f{left:252.389987px;}
.xd{left:255.810000px;}
.x18{left:266.654987px;}
.x1b{left:271.335000px;}
.x7{left:280.514987px;}
.x9{left:307.694987px;}
.xa{left:327.674987px;}
.x16{left:426.674987px;}
.x21{left:428.654987px;}
.xe{left:436.575000px;}
.x1e{left:442.874987px;}
.x8{left:446.504987px;}
.x13{left:452.265000px;}
.x1c{left:590.325000px;}
.x14{left:622.365000px;}
.xf{left:659.670000px;}
.x3{left:707.910000px;}
.x1d{left:731.129987px;}
.x20{left:737.069987px;}
.x15{left:758.489987px;}
.x17{left:796.469987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-1.050667pt;}
.ls16{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:5.280000pt;}
.ls14{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls10{letter-spacing:178.720000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws3{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.190933pt;}
.ws4{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.592000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._44{margin-left:-154.195840pt;}
._37{margin-left:-126.903680pt;}
._2f{margin-left:-12.317440pt;}
._45{margin-left:-7.797760pt;}
._11{margin-left:-6.384000pt;}
._12{margin-left:-4.487680pt;}
._13{margin-left:-3.456213pt;}
._b{margin-left:-2.180693pt;}
._0{margin-left:-0.960000pt;}
._c{width:0.892160pt;}
._1{width:1.973333pt;}
._14{width:3.729280pt;}
._17{width:4.693760pt;}
._18{width:5.978880pt;}
._1a{width:7.624320pt;}
._15{width:8.625920pt;}
._6{width:9.600000pt;}
._1c{width:10.500267pt;}
._16{width:11.493333pt;}
._19{width:14.873600pt;}
._1b{width:16.047360pt;}
._1e{width:18.390400pt;}
._20{width:20.196480pt;}
._24{width:21.566720pt;}
._3e{width:22.936960pt;}
._33{width:23.968000pt;}
._48{width:25.187627pt;}
._1f{width:28.578560pt;}
._2a{width:29.906560pt;}
._41{width:32.509440pt;}
._1d{width:33.678080pt;}
._25{width:34.740480pt;}
._38{width:35.803520pt;}
._4e{width:36.782933pt;}
._4f{width:38.012587pt;}
._35{width:39.043200pt;}
._34{width:44.567680pt;}
._36{width:50.262400pt;}
._46{width:51.827413pt;}
._49{width:53.882240pt;}
._32{width:55.085440pt;}
._39{width:56.636800pt;}
._4a{width:58.547627pt;}
._47{width:59.983360pt;}
._4b{width:61.350400pt;}
._22{width:62.353280pt;}
._2e{width:64.654080pt;}
._21{width:66.400000pt;}
._7{width:67.808853pt;}
._40{width:69.374720pt;}
._3b{width:71.715840pt;}
._3f{width:77.927040pt;}
._26{width:84.142080pt;}
._23{width:86.752000pt;}
._27{width:90.102400pt;}
._2b{width:93.024000pt;}
._2c{width:93.916160pt;}
._3d{width:94.989440pt;}
._30{width:98.017280pt;}
._3c{width:99.865600pt;}
._4c{width:104.452907pt;}
._29{width:105.768320pt;}
._28{width:106.739200pt;}
._4d{width:108.825600pt;}
._8{width:136.960000pt;}
._2d{width:137.952640pt;}
._31{width:159.048320pt;}
._e{width:173.440000pt;}
._42{width:184.177920pt;}
._3a{width:208.071040pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._f{width:581.226667pt;}
._10{width:625.386667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
._43{width:1185.546667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.880000pt;}
.y86{bottom:5.120000pt;}
.y88{bottom:5.280000pt;}
.yc4{bottom:5.306667pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y9f{bottom:11.360000pt;}
.y8{bottom:16.160000pt;}
.ya3{bottom:18.240000pt;}
.y90{bottom:22.720000pt;}
.ybb{bottom:22.746667pt;}
.y92{bottom:22.880000pt;}
.yc3{bottom:22.906667pt;}
.y9e{bottom:28.960000pt;}
.yc{bottom:32.000000pt;}
.ya2{bottom:33.600000pt;}
.y5{bottom:35.840000pt;}
.y9a{bottom:40.320000pt;}
.yba{bottom:40.346667pt;}
.y8f{bottom:40.480000pt;}
.yc2{bottom:40.506667pt;}
.ya6{bottom:40.520000pt;}
.y9d{bottom:46.560000pt;}
.ya1{bottom:48.960000pt;}
.yb{bottom:51.360000pt;}
.y99{bottom:57.920000pt;}
.y95{bottom:58.080000pt;}
.yac{bottom:58.106667pt;}
.y8e{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.y9c{bottom:64.160000pt;}
.ya0{bottom:64.320000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y94{bottom:75.680000pt;}
.yab{bottom:75.706667pt;}
.y8d{bottom:75.720000pt;}
.y3{bottom:85.626667pt;}
.ya9{bottom:88.000000pt;}
.y8a{bottom:89.120000pt;}
.y6a{bottom:89.920000pt;}
.ya8{bottom:93.280000pt;}
.y98{bottom:93.306667pt;}
.yb7{bottom:93.320000pt;}
.yc1{bottom:93.466667pt;}
.yb2{bottom:97.920000pt;}
.yf0{bottom:105.280000pt;}
.yf3{bottom:105.440000pt;}
.y89{bottom:107.360000pt;}
.y69{bottom:107.680000pt;}
.ye3{bottom:110.560000pt;}
.y97{bottom:110.906667pt;}
.ybd{bottom:111.040000pt;}
.yaa{bottom:111.066667pt;}
.yb6{bottom:111.080000pt;}
.y2{bottom:111.706667pt;}
.yb1{bottom:115.520000pt;}
.y3a{bottom:117.600000pt;}
.yc5{bottom:118.240000pt;}
.yf2{bottom:122.080000pt;}
.yef{bottom:122.880000pt;}
.y68{bottom:125.280000pt;}
.y87{bottom:125.600000pt;}
.ye2{bottom:128.320000pt;}
.yc0{bottom:128.666667pt;}
.yb5{bottom:128.680000pt;}
.ybf{bottom:131.360000pt;}
.yb0{bottom:133.120000pt;}
.y39{bottom:135.226667pt;}
.yf1{bottom:138.586667pt;}
.yee{bottom:140.666667pt;}
.y67{bottom:142.906667pt;}
.y85{bottom:144.026667pt;}
.ye1{bottom:145.946667pt;}
.yb4{bottom:146.280000pt;}
.yaf{bottom:148.026667pt;}
.y38{bottom:152.826667pt;}
.yed{bottom:158.266667pt;}
.y66{bottom:160.506667pt;}
.ye0{bottom:163.546667pt;}
.y84{bottom:167.386667pt;}
.y37{bottom:170.426667pt;}
.yec{bottom:175.866667pt;}
.y65{bottom:178.106667pt;}
.ydf{bottom:181.146667pt;}
.y83{bottom:182.746667pt;}
.y36{bottom:188.026667pt;}
.yc8{bottom:189.626667pt;}
.yeb{bottom:193.466667pt;}
.y64{bottom:195.866667pt;}
.yde{bottom:198.746667pt;}
.y82{bottom:200.346667pt;}
.y35{bottom:205.786667pt;}
.yc7{bottom:207.386667pt;}
.yea{bottom:211.066667pt;}
.ya7{bottom:212.186667pt;}
.y63{bottom:213.466667pt;}
.ydd{bottom:216.506667pt;}
.y81{bottom:218.106667pt;}
.yc6{bottom:221.946667pt;}
.y34{bottom:223.386667pt;}
.ye9{bottom:228.826667pt;}
.y62{bottom:231.066667pt;}
.ydc{bottom:234.106667pt;}
.y80{bottom:235.706667pt;}
.y33{bottom:240.986667pt;}
.ye8{bottom:246.426667pt;}
.y61{bottom:248.666667pt;}
.ydb{bottom:251.706667pt;}
.y7f{bottom:253.306667pt;}
.y32{bottom:258.586667pt;}
.ye7{bottom:264.026667pt;}
.y60{bottom:266.266667pt;}
.y7e{bottom:268.666667pt;}
.yda{bottom:269.306667pt;}
.ybe{bottom:273.146667pt;}
.y31{bottom:276.186667pt;}
.ye6{bottom:281.626667pt;}
.y5f{bottom:284.026667pt;}
.y7d{bottom:286.266667pt;}
.yd9{bottom:286.906667pt;}
.y30{bottom:293.946667pt;}
.ye5{bottom:299.226667pt;}
.y5e{bottom:301.626667pt;}
.y7c{bottom:303.866667pt;}
.yd8{bottom:304.666667pt;}
.y2f{bottom:311.546667pt;}
.ye4{bottom:316.986667pt;}
.ya5{bottom:318.586667pt;}
.y5d{bottom:319.226667pt;}
.y7b{bottom:321.466667pt;}
.yd7{bottom:322.266667pt;}
.y2e{bottom:329.146667pt;}
.y5c{bottom:334.586667pt;}
.y7a{bottom:339.226667pt;}
.yd6{bottom:339.866667pt;}
.yae{bottom:341.146667pt;}
.y2d{bottom:346.746667pt;}
.y5b{bottom:352.186667pt;}
.yad{bottom:355.866667pt;}
.y79{bottom:356.866667pt;}
.yd5{bottom:357.506667pt;}
.y2c{bottom:364.386667pt;}
.y5a{bottom:369.826667pt;}
.y78{bottom:374.466667pt;}
.yd4{bottom:375.106667pt;}
.y2b{bottom:382.146667pt;}
.y59{bottom:387.426667pt;}
.y77{bottom:392.066667pt;}
.yd3{bottom:392.866667pt;}
.y2a{bottom:399.746667pt;}
.y58{bottom:405.186667pt;}
.y9b{bottom:407.426667pt;}
.y76{bottom:409.666667pt;}
.yd2{bottom:410.466667pt;}
.y29{bottom:417.346667pt;}
.y57{bottom:422.786667pt;}
.y75{bottom:427.426667pt;}
.yd1{bottom:428.066667pt;}
.ybc{bottom:432.546667pt;}
.y28{bottom:434.946667pt;}
.y56{bottom:440.386667pt;}
.y74{bottom:445.026667pt;}
.yd0{bottom:445.666667pt;}
.y27{bottom:452.546667pt;}
.y55{bottom:457.986667pt;}
.y73{bottom:462.626667pt;}
.ycf{bottom:463.266667pt;}
.y26{bottom:470.306667pt;}
.y54{bottom:475.586667pt;}
.y72{bottom:477.986667pt;}
.yce{bottom:481.026667pt;}
.y96{bottom:484.866667pt;}
.y25{bottom:487.906667pt;}
.y53{bottom:493.346667pt;}
.y71{bottom:495.586667pt;}
.ycd{bottom:498.626667pt;}
.y24{bottom:505.506667pt;}
.y52{bottom:510.946667pt;}
.y70{bottom:513.186667pt;}
.ycc{bottom:516.226667pt;}
.y23{bottom:523.106667pt;}
.y51{bottom:528.546667pt;}
.y6f{bottom:530.786667pt;}
.ycb{bottom:530.946667pt;}
.y22{bottom:540.706667pt;}
.y50{bottom:546.146667pt;}
.y6e{bottom:548.546667pt;}
.yb9{bottom:556.706667pt;}
.y21{bottom:558.466667pt;}
.y4f{bottom:563.746667pt;}
.y6d{bottom:566.146667pt;}
.y20{bottom:576.066667pt;}
.y4e{bottom:581.533333pt;}
.y6c{bottom:583.773333pt;}
.y1f{bottom:593.693333pt;}
.y4d{bottom:599.133333pt;}
.y6b{bottom:601.373333pt;}
.y93{bottom:608.893333pt;}
.y1e{bottom:611.293333pt;}
.y4c{bottom:616.733333pt;}
.y1d{bottom:628.893333pt;}
.y4b{bottom:634.333333pt;}
.yb8{bottom:645.533333pt;}
.y1c{bottom:646.653333pt;}
.y4a{bottom:651.933333pt;}
.y1b{bottom:664.253333pt;}
.y49{bottom:669.693333pt;}
.y1a{bottom:681.853333pt;}
.y48{bottom:687.293333pt;}
.y91{bottom:697.693333pt;}
.y19{bottom:699.453333pt;}
.y47{bottom:704.893333pt;}
.y18{bottom:717.053333pt;}
.y46{bottom:722.493333pt;}
.y17{bottom:734.813333pt;}
.y45{bottom:740.093333pt;}
.y8c{bottom:751.293333pt;}
.yb3{bottom:751.933333pt;}
.y16{bottom:752.413333pt;}
.yca{bottom:756.253333pt;}
.y44{bottom:757.853333pt;}
.y15{bottom:770.013333pt;}
.yc9{bottom:770.813333pt;}
.y43{bottom:775.453333pt;}
.y14{bottom:787.613333pt;}
.y42{bottom:793.053333pt;}
.y13{bottom:809.893333pt;}
.y41{bottom:810.693333pt;}
.y12{bottom:823.493333pt;}
.y40{bottom:828.293333pt;}
.y8b{bottom:840.133333pt;}
.y11{bottom:842.853333pt;}
.y3f{bottom:846.053333pt;}
.y3e{bottom:863.653333pt;}
.y10{bottom:864.933333pt;}
.y3d{bottom:881.253333pt;}
.yf{bottom:893.093333pt;}
.y3c{bottom:898.853333pt;}
.y3b{bottom:916.453333pt;}
.y9{bottom:931.973333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.837500pt;}
.h10{height:17.600000pt;}
.h11{height:17.792000pt;}
.hb{height:19.360000pt;}
.hd{height:24.806250pt;}
.h7{height:29.760000pt;}
.he{height:37.479688pt;}
.h8{height:38.128125pt;}
.hf{height:38.672812pt;}
.h1d{height:40.021563pt;}
.h1c{height:40.410625pt;}
.h4{height:41.543750pt;}
.ha{height:42.262500pt;}
.h9{height:47.310625pt;}
.h13{height:52.960000pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h16{height:76.640000pt;}
.h14{height:88.160000pt;}
.h12{height:88.192000pt;}
.h5{height:100.032000pt;}
.h17{height:105.760000pt;}
.h15{height:123.392000pt;}
.h1a{height:123.520000pt;}
.h18{height:123.552000pt;}
.h2{height:130.432000pt;}
.h1b{height:141.146667pt;}
.h19{height:158.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:117.152000pt;}
.wf{width:122.240000pt;}
.wc{width:150.560000pt;}
.w9{width:150.586667pt;}
.wa{width:159.706667pt;}
.w7{width:160.026667pt;}
.w6{width:169.786667pt;}
.we{width:178.626667pt;}
.wd{width:188.386667pt;}
.wb{width:188.706667pt;}
.w8{width:197.666667pt;}
.w10{width:207.266667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x11{left:30.912000pt;}
.x1{left:47.360000pt;}
.x10{left:52.160000pt;}
.xc{left:56.960000pt;}
.x1a{left:61.920000pt;}
.xb{left:71.999988pt;}
.x6{left:93.311988pt;}
.x22{left:96.031988pt;}
.x4{left:105.146667pt;}
.x19{left:207.546655pt;}
.x12{left:212.666667pt;}
.x1f{left:224.346655pt;}
.xd{left:227.386667pt;}
.x18{left:237.026655pt;}
.x1b{left:241.186667pt;}
.x7{left:249.346655pt;}
.x9{left:273.506655pt;}
.xa{left:291.266655pt;}
.x16{left:379.266655pt;}
.x21{left:381.026655pt;}
.xe{left:388.066667pt;}
.x1e{left:393.666655pt;}
.x8{left:396.893322pt;}
.x13{left:402.013333pt;}
.x1c{left:524.733333pt;}
.x14{left:553.213333pt;}
.xf{left:586.373333pt;}
.x3{left:629.253333pt;}
.x1d{left:649.893322pt;}
.x20{left:655.173322pt;}
.x15{left:674.213322pt;}
.x17{left:707.973322pt;}
.x5{left:737.120000pt;}
}




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