
    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_5dc7316032a024cfb551ccd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_3ff58ad4e54c9df675e5b772.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.136230;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_587c43985a68b71058c701ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_73820b7dc28b4de4a118f9b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_466745a2359308ff3bbc0dce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_a36366b8c04de18175ee9113.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ab8b61b1781b42f3c07842e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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:ffa;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;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;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.ls2{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.lsf{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.lsb{letter-spacing:15.120000px;}
.ls7{letter-spacing:54.876000px;}
.lsa{letter-spacing:63.516000px;}
.lsd{letter-spacing:92.880000px;}
.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:-18.504000px;}
.ws8{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.633400px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:-13.182000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-2.584800px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._6{width:2.985600px;}
._1c{width:3.998400px;}
._7{width:5.040000px;}
._c{width:6.264000px;}
._8{width:7.848000px;}
._1d{width:8.920800px;}
._10{width:10.080000px;}
._f{width:11.160000px;}
._13{width:12.168000px;}
._21{width:13.320000px;}
._11{width:14.544000px;}
._d{width:16.200000px;}
._1e{width:19.440000px;}
._1f{width:20.508000px;}
._e{width:21.612000px;}
._14{width:22.752000px;}
._15{width:23.940000px;}
._16{width:25.056000px;}
._17{width:26.064000px;}
._18{width:27.072000px;}
._25{width:28.152000px;}
._a{width:29.232000px;}
._9{width:30.744000px;}
._b{width:31.752000px;}
._22{width:33.336000px;}
._1b{width:34.560000px;}
._19{width:36.000000px;}
._1a{width:37.288800px;}
._24{width:44.712000px;}
._23{width:46.008000px;}
._12{width:48.096000px;}
._2f{width:49.339200px;}
._2a{width:61.245600px;}
._20{width:112.116000px;}
._28{width:120.772800px;}
._29{width:121.860000px;}
._2e{width:157.262400px;}
._2d{width:162.276000px;}
._2b{width:171.012000px;}
._26{width:175.524000px;}
._27{width:181.368000px;}
._30{width:193.778400px;}
._2c{width:195.120000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.ya{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.880000px;}
.y35{bottom:3.234000px;}
.y34{bottom:20.514000px;}
.y33{bottom:38.514000px;}
.yd{bottom:43.560000px;}
.y32{bottom:59.079000px;}
.yb{bottom:68.400000px;}
.y31{bottom:79.959000px;}
.y9{bottom:94.716000px;}
.y30{bottom:100.479000px;}
.y2f{bottom:121.359000px;}
.y2e{bottom:141.879000px;}
.y6a{bottom:149.076000px;}
.y16{bottom:149.796000px;}
.y2d{bottom:162.759000px;}
.y69{bottom:166.710000px;}
.y123{bottom:176.430000px;}
.y2c{bottom:183.309000px;}
.y97{bottom:185.070000px;}
.y68{bottom:189.390000px;}
.y122{bottom:196.950000px;}
.y96{bottom:202.755000px;}
.y2b{bottom:204.189000px;}
.y67{bottom:210.315000px;}
.y121{bottom:217.875000px;}
.ye4{bottom:221.115000px;}
.y2a{bottom:224.709000px;}
.yf9{bottom:227.235000px;}
.y95{bottom:227.955000px;}
.y66{bottom:230.835000px;}
.ybb{bottom:235.515000px;}
.y120{bottom:238.395000px;}
.ye3{bottom:241.995000px;}
.y29{bottom:245.589000px;}
.y94{bottom:248.475000px;}
.y65{bottom:251.715000px;}
.y11f{bottom:259.275000px;}
.yba{bottom:261.795000px;}
.ye2{bottom:262.515000px;}
.yf8{bottom:265.755000px;}
.y28{bottom:266.109000px;}
.y93{bottom:269.355000px;}
.y64{bottom:272.235000px;}
.y11e{bottom:279.795000px;}
.ye1{bottom:283.395000px;}
.yb9{bottom:284.115000px;}
.y27{bottom:286.989000px;}
.y92{bottom:289.875000px;}
.y63{bottom:293.115000px;}
.y11d{bottom:300.675000px;}
.ye0{bottom:303.915000px;}
.y26{bottom:307.554000px;}
.y91{bottom:310.755000px;}
.y62{bottom:313.635000px;}
.yf7{bottom:314.715000px;}
.y11c{bottom:321.195000px;}
.yb8{bottom:322.635000px;}
.ydf{bottom:324.825000px;}
.y25{bottom:328.434000px;}
.y90{bottom:331.305000px;}
.y61{bottom:334.545000px;}
.yf6{bottom:338.865000px;}
.y11b{bottom:342.105000px;}
.yb6{bottom:346.425000px;}
.y24{bottom:348.954000px;}
.y8f{bottom:352.185000px;}
.yb7{bottom:353.265000px;}
.y60{bottom:355.065000px;}
.y11a{bottom:362.625000px;}
.yde{bottom:362.985000px;}
.yf5{bottom:363.705000px;}
.y23{bottom:369.834000px;}
.yb5{bottom:371.265000px;}
.y8e{bottom:372.705000px;}
.y5f{bottom:375.945000px;}
.y119{bottom:383.505000px;}
.ydd{bottom:387.105000px;}
.yf4{bottom:387.825000px;}
.y22{bottom:390.354000px;}
.yb4{bottom:395.385000px;}
.y5e{bottom:396.465000px;}
.y21{bottom:411.234000px;}
.y8d{bottom:411.585000px;}
.ydc{bottom:411.945000px;}
.yf3{bottom:412.665000px;}
.y5d{bottom:417.345000px;}
.y118{bottom:418.785000px;}
.yb3{bottom:420.225000px;}
.y20{bottom:431.784000px;}
.y8c{bottom:433.545000px;}
.ydb{bottom:436.065000px;}
.yf2{bottom:436.425000px;}
.y5c{bottom:437.865000px;}
.y117{bottom:439.665000px;}
.yb2{bottom:443.985000px;}
.y1f{bottom:452.664000px;}
.y8b{bottom:454.470000px;}
.y5b{bottom:458.790000px;}
.y116{bottom:460.590000px;}
.yda{bottom:461.310000px;}
.yf1{bottom:461.670000px;}
.yb1{bottom:468.150000px;}
.y1e{bottom:473.184000px;}
.y89{bottom:474.990000px;}
.y5a{bottom:479.310000px;}
.y115{bottom:481.110000px;}
.y8a{bottom:481.830000px;}
.yf0{bottom:485.430000px;}
.yd9{bottom:486.150000px;}
.yb0{bottom:491.910000px;}
.y1d{bottom:494.064000px;}
.y87{bottom:495.510000px;}
.y59{bottom:500.190000px;}
.y114{bottom:501.990000px;}
.y88{bottom:502.350000px;}
.yd8{bottom:508.470000px;}
.yef{bottom:510.270000px;}
.y1c{bottom:514.584000px;}
.yaf{bottom:516.750000px;}
.y113{bottom:522.510000px;}
.y58{bottom:525.030000px;}
.yd7{bottom:528.990000px;}
.y86{bottom:534.390000px;}
.y1b{bottom:535.464000px;}
.yae{bottom:540.510000px;}
.y112{bottom:543.390000px;}
.y57{bottom:545.910000px;}
.yd6{bottom:549.870000px;}
.y1a{bottom:556.014000px;}
.y85{bottom:556.350000px;}
.yee{bottom:556.710000px;}
.y111{bottom:563.910000px;}
.yad{bottom:564.630000px;}
.y56{bottom:566.790000px;}
.yd5{bottom:570.390000px;}
.y19{bottom:576.894000px;}
.y84{bottom:577.260000px;}
.y110{bottom:584.820000px;}
.y55{bottom:587.340000px;}
.yac{bottom:588.420000px;}
.yd4{bottom:591.300000px;}
.y18{bottom:597.414000px;}
.y83{bottom:597.780000px;}
.yed{bottom:598.140000px;}
.y10f{bottom:605.340000px;}
.y54{bottom:608.220000px;}
.yd3{bottom:611.820000px;}
.yab{bottom:612.180000px;}
.y17{bottom:618.294000px;}
.y82{bottom:618.660000px;}
.y10e{bottom:626.220000px;}
.y53{bottom:628.740000px;}
.yd2{bottom:632.700000px;}
.yaa{bottom:635.940000px;}
.y81{bottom:639.180000px;}
.y10d{bottom:646.740000px;}
.y52{bottom:649.620000px;}
.yd1{bottom:653.220000px;}
.yec{bottom:657.180000px;}
.ya9{bottom:659.700000px;}
.y80{bottom:660.060000px;}
.y10c{bottom:667.620000px;}
.y51{bottom:670.140000px;}
.yd0{bottom:674.100000px;}
.yeb{bottom:681.300000px;}
.ya8{bottom:683.820000px;}
.y10b{bottom:688.140000px;}
.y50{bottom:691.020000px;}
.ycf{bottom:694.620000px;}
.y7f{bottom:698.580000px;}
.yea{bottom:706.170000px;}
.ya7{bottom:708.690000px;}
.y10a{bottom:709.050000px;}
.y4f{bottom:711.570000px;}
.yce{bottom:715.530000px;}
.y7e{bottom:720.930000px;}
.y109{bottom:729.570000px;}
.ye9{bottom:729.930000px;}
.y4e{bottom:732.450000px;}
.ycd{bottom:736.050000px;}
.y7d{bottom:741.450000px;}
.y108{bottom:750.450000px;}
.y4d{bottom:752.970000px;}
.ye8{bottom:755.130000px;}
.ya6{bottom:756.210000px;}
.ycc{bottom:756.930000px;}
.y7c{bottom:762.330000px;}
.y107{bottom:770.970000px;}
.y4c{bottom:773.850000px;}
.ycb{bottom:777.450000px;}
.ye7{bottom:778.890000px;}
.ya5{bottom:779.970000px;}
.y7b{bottom:782.850000px;}
.y15{bottom:791.130000px;}
.y106{bottom:791.850000px;}
.y4b{bottom:794.370000px;}
.yca{bottom:798.330000px;}
.y7a{bottom:803.730000px;}
.y14{bottom:811.650000px;}
.y105{bottom:812.370000px;}
.y49{bottom:815.250000px;}
.yc9{bottom:818.850000px;}
.y4a{bottom:822.090000px;}
.y79{bottom:824.250000px;}
.ya4{bottom:827.895000px;}
.y13{bottom:832.575000px;}
.y104{bottom:833.295000px;}
.y48{bottom:835.815000px;}
.yc8{bottom:839.775000px;}
.y78{bottom:845.175000px;}
.ya3{bottom:850.215000px;}
.y12{bottom:853.095000px;}
.y103{bottom:853.815000px;}
.y47{bottom:856.695000px;}
.yc7{bottom:860.295000px;}
.y77{bottom:865.695000px;}
.ya2{bottom:870.735000px;}
.y11{bottom:873.975000px;}
.y102{bottom:874.695000px;}
.y46{bottom:877.215000px;}
.y76{bottom:890.535000px;}
.ya1{bottom:891.615000px;}
.y10{bottom:894.495000px;}
.y101{bottom:895.215000px;}
.y45{bottom:898.095000px;}
.yc6{bottom:898.815000px;}
.y75{bottom:911.775000px;}
.ya0{bottom:912.135000px;}
.yf{bottom:915.375000px;}
.y100{bottom:916.095000px;}
.y44{bottom:918.615000px;}
.yc5{bottom:922.575000px;}
.y74{bottom:932.295000px;}
.y9f{bottom:933.015000px;}
.ye{bottom:935.895000px;}
.yff{bottom:936.615000px;}
.y43{bottom:939.495000px;}
.ye6{bottom:939.855000px;}
.yc4{bottom:946.335000px;}
.y73{bottom:953.205000px;}
.y9e{bottom:953.565000px;}
.y8{bottom:955.725000px;}
.y42{bottom:960.045000px;}
.y7{bottom:969.765000px;}
.yc3{bottom:970.485000px;}
.y72{bottom:973.725000px;}
.y9d{bottom:974.445000px;}
.yfe{bottom:975.165000px;}
.y41{bottom:980.925000px;}
.ye5{bottom:981.285000px;}
.yc2{bottom:994.245000px;}
.y71{bottom:994.605000px;}
.y9c{bottom:994.965000px;}
.yfd{bottom:999.285000px;}
.y40{bottom:1001.445000px;}
.y70{bottom:1015.125000px;}
.y9b{bottom:1015.845000px;}
.yc1{bottom:1019.085000px;}
.y3f{bottom:1022.325000px;}
.yfc{bottom:1024.125000px;}
.y6{bottom:1024.485000px;}
.y9a{bottom:1036.365000px;}
.y3e{bottom:1042.845000px;}
.yfb{bottom:1048.245000px;}
.y5{bottom:1050.405000px;}
.y6f{bottom:1053.645000px;}
.y99{bottom:1057.245000px;}
.y3d{bottom:1063.725000px;}
.yc0{bottom:1066.965000px;}
.y4{bottom:1073.085000px;}
.y6e{bottom:1077.405000px;}
.y98{bottom:1077.765000px;}
.y3c{bottom:1084.290000px;}
.ybf{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.yfa{bottom:1097.250000px;}
.y6d{bottom:1098.690000px;}
.y3b{bottom:1105.170000px;}
.y2{bottom:1114.890000px;}
.ybd{bottom:1115.610000px;}
.y6c{bottom:1119.210000px;}
.ybe{bottom:1122.450000px;}
.y1{bottom:1131.450000px;}
.ybc{bottom:1139.730000px;}
.y6b{bottom:1140.090000px;}
.y3a{bottom:1142.610000px;}
.y39{bottom:1166.370000px;}
.y38{bottom:1180.410000px;}
.y37{bottom:1201.290000px;}
.y36{bottom:1227.600000px;}
.h7{height:8.640000px;}
.h9{height:15.516000px;}
.h5{height:39.997969px;}
.he{height:41.696016px;}
.h2{height:44.828437px;}
.h8{height:48.013594px;}
.hd{height:52.628906px;}
.h6{height:53.067656px;}
.h3{height:53.367188px;}
.hf{height:60.155156px;}
.hb{height:63.175781px;}
.h4{height:65.884219px;}
.ha{height:69.056016px;}
.h10{height:73.283906px;}
.hc{height:634.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:347.910000px;}
.w4{width:348.630000px;}
.w3{width:349.350000px;}
.w6{width:350.070000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w8{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:8.640000px;}
.x9{left:97.596000px;}
.x7{left:106.235987px;}
.xc{left:111.635987px;}
.xf{left:114.159000px;}
.x15{left:133.271987px;}
.x16{left:160.274987px;}
.x11{left:180.794987px;}
.x20{left:212.474987px;}
.xd{left:238.784987px;}
.x2{left:254.264987px;}
.x21{left:264.344973px;}
.x22{left:270.464987px;}
.x6{left:274.064987px;}
.xe{left:306.824987px;}
.xb{left:312.990000px;}
.x17{left:322.349987px;}
.x10{left:339.624000px;}
.x5{left:350.069987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x1a{left:545.969973px;}
.x1b{left:552.089987px;}
.x1e{left:624.854973px;}
.x1f{left:630.974987px;}
.x18{left:639.614973px;}
.x19{left:645.734987px;}
.x1c{left:773.609973px;}
.x13{left:774.689973px;}
.x1d{left:779.729987px;}
.x14{left:780.809987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls2{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.lsf{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.lsb{letter-spacing:13.440000pt;}
.ls7{letter-spacing:48.778667pt;}
.lsa{letter-spacing:56.458667pt;}
.lsd{letter-spacing:82.560000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.007467pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:-11.717333pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-2.297600pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._6{width:2.653867pt;}
._1c{width:3.554133pt;}
._7{width:4.480000pt;}
._c{width:5.568000pt;}
._8{width:6.976000pt;}
._1d{width:7.929600pt;}
._10{width:8.960000pt;}
._f{width:9.920000pt;}
._13{width:10.816000pt;}
._21{width:11.840000pt;}
._11{width:12.928000pt;}
._d{width:14.400000pt;}
._1e{width:17.280000pt;}
._1f{width:18.229333pt;}
._e{width:19.210667pt;}
._14{width:20.224000pt;}
._15{width:21.280000pt;}
._16{width:22.272000pt;}
._17{width:23.168000pt;}
._18{width:24.064000pt;}
._25{width:25.024000pt;}
._a{width:25.984000pt;}
._9{width:27.328000pt;}
._b{width:28.224000pt;}
._22{width:29.632000pt;}
._1b{width:30.720000pt;}
._19{width:32.000000pt;}
._1a{width:33.145600pt;}
._24{width:39.744000pt;}
._23{width:40.896000pt;}
._12{width:42.752000pt;}
._2f{width:43.857067pt;}
._2a{width:54.440533pt;}
._20{width:99.658667pt;}
._28{width:107.353600pt;}
._29{width:108.320000pt;}
._2e{width:139.788800pt;}
._2d{width:144.245333pt;}
._2b{width:152.010667pt;}
._26{width:156.021333pt;}
._27{width:161.216000pt;}
._30{width:172.247467pt;}
._2c{width:173.440000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.ya{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.560000pt;}
.y35{bottom:2.874667pt;}
.y34{bottom:18.234667pt;}
.y33{bottom:34.234667pt;}
.yd{bottom:38.720000pt;}
.y32{bottom:52.514667pt;}
.yb{bottom:60.800000pt;}
.y31{bottom:71.074667pt;}
.y9{bottom:84.192000pt;}
.y30{bottom:89.314667pt;}
.y2f{bottom:107.874667pt;}
.y2e{bottom:126.114667pt;}
.y6a{bottom:132.512000pt;}
.y16{bottom:133.152000pt;}
.y2d{bottom:144.674667pt;}
.y69{bottom:148.186667pt;}
.y123{bottom:156.826667pt;}
.y2c{bottom:162.941333pt;}
.y97{bottom:164.506667pt;}
.y68{bottom:168.346667pt;}
.y122{bottom:175.066667pt;}
.y96{bottom:180.226667pt;}
.y2b{bottom:181.501333pt;}
.y67{bottom:186.946667pt;}
.y121{bottom:193.666667pt;}
.ye4{bottom:196.546667pt;}
.y2a{bottom:199.741333pt;}
.yf9{bottom:201.986667pt;}
.y95{bottom:202.626667pt;}
.y66{bottom:205.186667pt;}
.ybb{bottom:209.346667pt;}
.y120{bottom:211.906667pt;}
.ye3{bottom:215.106667pt;}
.y29{bottom:218.301333pt;}
.y94{bottom:220.866667pt;}
.y65{bottom:223.746667pt;}
.y11f{bottom:230.466667pt;}
.yba{bottom:232.706667pt;}
.ye2{bottom:233.346667pt;}
.yf8{bottom:236.226667pt;}
.y28{bottom:236.541333pt;}
.y93{bottom:239.426667pt;}
.y64{bottom:241.986667pt;}
.y11e{bottom:248.706667pt;}
.ye1{bottom:251.906667pt;}
.yb9{bottom:252.546667pt;}
.y27{bottom:255.101333pt;}
.y92{bottom:257.666667pt;}
.y63{bottom:260.546667pt;}
.y11d{bottom:267.266667pt;}
.ye0{bottom:270.146667pt;}
.y26{bottom:273.381333pt;}
.y91{bottom:276.226667pt;}
.y62{bottom:278.786667pt;}
.yf7{bottom:279.746667pt;}
.y11c{bottom:285.506667pt;}
.yb8{bottom:286.786667pt;}
.ydf{bottom:288.733333pt;}
.y25{bottom:291.941333pt;}
.y90{bottom:294.493333pt;}
.y61{bottom:297.373333pt;}
.yf6{bottom:301.213333pt;}
.y11b{bottom:304.093333pt;}
.yb6{bottom:307.933333pt;}
.y24{bottom:310.181333pt;}
.y8f{bottom:313.053333pt;}
.yb7{bottom:314.013333pt;}
.y60{bottom:315.613333pt;}
.y11a{bottom:322.333333pt;}
.yde{bottom:322.653333pt;}
.yf5{bottom:323.293333pt;}
.y23{bottom:328.741333pt;}
.yb5{bottom:330.013333pt;}
.y8e{bottom:331.293333pt;}
.y5f{bottom:334.173333pt;}
.y119{bottom:340.893333pt;}
.ydd{bottom:344.093333pt;}
.yf4{bottom:344.733333pt;}
.y22{bottom:346.981333pt;}
.yb4{bottom:351.453333pt;}
.y5e{bottom:352.413333pt;}
.y21{bottom:365.541333pt;}
.y8d{bottom:365.853333pt;}
.ydc{bottom:366.173333pt;}
.yf3{bottom:366.813333pt;}
.y5d{bottom:370.973333pt;}
.y118{bottom:372.253333pt;}
.yb3{bottom:373.533333pt;}
.y20{bottom:383.808000pt;}
.y8c{bottom:385.373333pt;}
.ydb{bottom:387.613333pt;}
.yf2{bottom:387.933333pt;}
.y5c{bottom:389.213333pt;}
.y117{bottom:390.813333pt;}
.yb2{bottom:394.653333pt;}
.y1f{bottom:402.368000pt;}
.y8b{bottom:403.973333pt;}
.y5b{bottom:407.813333pt;}
.y116{bottom:409.413333pt;}
.yda{bottom:410.053333pt;}
.yf1{bottom:410.373333pt;}
.yb1{bottom:416.133333pt;}
.y1e{bottom:420.608000pt;}
.y89{bottom:422.213333pt;}
.y5a{bottom:426.053333pt;}
.y115{bottom:427.653333pt;}
.y8a{bottom:428.293333pt;}
.yf0{bottom:431.493333pt;}
.yd9{bottom:432.133333pt;}
.yb0{bottom:437.253333pt;}
.y1d{bottom:439.168000pt;}
.y87{bottom:440.453333pt;}
.y59{bottom:444.613333pt;}
.y114{bottom:446.213333pt;}
.y88{bottom:446.533333pt;}
.yd8{bottom:451.973333pt;}
.yef{bottom:453.573333pt;}
.y1c{bottom:457.408000pt;}
.yaf{bottom:459.333333pt;}
.y113{bottom:464.453333pt;}
.y58{bottom:466.693333pt;}
.yd7{bottom:470.213333pt;}
.y86{bottom:475.013333pt;}
.y1b{bottom:475.968000pt;}
.yae{bottom:480.453333pt;}
.y112{bottom:483.013333pt;}
.y57{bottom:485.253333pt;}
.yd6{bottom:488.773333pt;}
.y1a{bottom:494.234667pt;}
.y85{bottom:494.533333pt;}
.yee{bottom:494.853333pt;}
.y111{bottom:501.253333pt;}
.yad{bottom:501.893333pt;}
.y56{bottom:503.813333pt;}
.yd5{bottom:507.013333pt;}
.y19{bottom:512.794667pt;}
.y84{bottom:513.120000pt;}
.y110{bottom:519.840000pt;}
.y55{bottom:522.080000pt;}
.yac{bottom:523.040000pt;}
.yd4{bottom:525.600000pt;}
.y18{bottom:531.034667pt;}
.y83{bottom:531.360000pt;}
.yed{bottom:531.680000pt;}
.y10f{bottom:538.080000pt;}
.y54{bottom:540.640000pt;}
.yd3{bottom:543.840000pt;}
.yab{bottom:544.160000pt;}
.y17{bottom:549.594667pt;}
.y82{bottom:549.920000pt;}
.y10e{bottom:556.640000pt;}
.y53{bottom:558.880000pt;}
.yd2{bottom:562.400000pt;}
.yaa{bottom:565.280000pt;}
.y81{bottom:568.160000pt;}
.y10d{bottom:574.880000pt;}
.y52{bottom:577.440000pt;}
.yd1{bottom:580.640000pt;}
.yec{bottom:584.160000pt;}
.ya9{bottom:586.400000pt;}
.y80{bottom:586.720000pt;}
.y10c{bottom:593.440000pt;}
.y51{bottom:595.680000pt;}
.yd0{bottom:599.200000pt;}
.yeb{bottom:605.600000pt;}
.ya8{bottom:607.840000pt;}
.y10b{bottom:611.680000pt;}
.y50{bottom:614.240000pt;}
.ycf{bottom:617.440000pt;}
.y7f{bottom:620.960000pt;}
.yea{bottom:627.706667pt;}
.ya7{bottom:629.946667pt;}
.y10a{bottom:630.266667pt;}
.y4f{bottom:632.506667pt;}
.yce{bottom:636.026667pt;}
.y7e{bottom:640.826667pt;}
.y109{bottom:648.506667pt;}
.ye9{bottom:648.826667pt;}
.y4e{bottom:651.066667pt;}
.ycd{bottom:654.266667pt;}
.y7d{bottom:659.066667pt;}
.y108{bottom:667.066667pt;}
.y4d{bottom:669.306667pt;}
.ye8{bottom:671.226667pt;}
.ya6{bottom:672.186667pt;}
.ycc{bottom:672.826667pt;}
.y7c{bottom:677.626667pt;}
.y107{bottom:685.306667pt;}
.y4c{bottom:687.866667pt;}
.ycb{bottom:691.066667pt;}
.ye7{bottom:692.346667pt;}
.ya5{bottom:693.306667pt;}
.y7b{bottom:695.866667pt;}
.y15{bottom:703.226667pt;}
.y106{bottom:703.866667pt;}
.y4b{bottom:706.106667pt;}
.yca{bottom:709.626667pt;}
.y7a{bottom:714.426667pt;}
.y14{bottom:721.466667pt;}
.y105{bottom:722.106667pt;}
.y49{bottom:724.666667pt;}
.yc9{bottom:727.866667pt;}
.y4a{bottom:730.746667pt;}
.y79{bottom:732.666667pt;}
.ya4{bottom:735.906667pt;}
.y13{bottom:740.066667pt;}
.y104{bottom:740.706667pt;}
.y48{bottom:742.946667pt;}
.yc8{bottom:746.466667pt;}
.y78{bottom:751.266667pt;}
.ya3{bottom:755.746667pt;}
.y12{bottom:758.306667pt;}
.y103{bottom:758.946667pt;}
.y47{bottom:761.506667pt;}
.yc7{bottom:764.706667pt;}
.y77{bottom:769.506667pt;}
.ya2{bottom:773.986667pt;}
.y11{bottom:776.866667pt;}
.y102{bottom:777.506667pt;}
.y46{bottom:779.746667pt;}
.y76{bottom:791.586667pt;}
.ya1{bottom:792.546667pt;}
.y10{bottom:795.106667pt;}
.y101{bottom:795.746667pt;}
.y45{bottom:798.306667pt;}
.yc6{bottom:798.946667pt;}
.y75{bottom:810.466667pt;}
.ya0{bottom:810.786667pt;}
.yf{bottom:813.666667pt;}
.y100{bottom:814.306667pt;}
.y44{bottom:816.546667pt;}
.yc5{bottom:820.066667pt;}
.y74{bottom:828.706667pt;}
.y9f{bottom:829.346667pt;}
.ye{bottom:831.906667pt;}
.yff{bottom:832.546667pt;}
.y43{bottom:835.106667pt;}
.ye6{bottom:835.426667pt;}
.yc4{bottom:841.186667pt;}
.y73{bottom:847.293333pt;}
.y9e{bottom:847.613333pt;}
.y8{bottom:849.533333pt;}
.y42{bottom:853.373333pt;}
.y7{bottom:862.013333pt;}
.yc3{bottom:862.653333pt;}
.y72{bottom:865.533333pt;}
.y9d{bottom:866.173333pt;}
.yfe{bottom:866.813333pt;}
.y41{bottom:871.933333pt;}
.ye5{bottom:872.253333pt;}
.yc2{bottom:883.773333pt;}
.y71{bottom:884.093333pt;}
.y9c{bottom:884.413333pt;}
.yfd{bottom:888.253333pt;}
.y40{bottom:890.173333pt;}
.y70{bottom:902.333333pt;}
.y9b{bottom:902.973333pt;}
.yc1{bottom:905.853333pt;}
.y3f{bottom:908.733333pt;}
.yfc{bottom:910.333333pt;}
.y6{bottom:910.653333pt;}
.y9a{bottom:921.213333pt;}
.y3e{bottom:926.973333pt;}
.yfb{bottom:931.773333pt;}
.y5{bottom:933.693333pt;}
.y6f{bottom:936.573333pt;}
.y99{bottom:939.773333pt;}
.y3d{bottom:945.533333pt;}
.yc0{bottom:948.413333pt;}
.y4{bottom:953.853333pt;}
.y6e{bottom:957.693333pt;}
.y98{bottom:958.013333pt;}
.y3c{bottom:963.813333pt;}
.ybf{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.yfa{bottom:975.333333pt;}
.y6d{bottom:976.613333pt;}
.y3b{bottom:982.373333pt;}
.y2{bottom:991.013333pt;}
.ybd{bottom:991.653333pt;}
.y6c{bottom:994.853333pt;}
.ybe{bottom:997.733333pt;}
.y1{bottom:1005.733333pt;}
.ybc{bottom:1013.093333pt;}
.y6b{bottom:1013.413333pt;}
.y3a{bottom:1015.653333pt;}
.y39{bottom:1036.773333pt;}
.y38{bottom:1049.253333pt;}
.y37{bottom:1067.813333pt;}
.y36{bottom:1091.200000pt;}
.h7{height:7.680000pt;}
.h9{height:13.792000pt;}
.h5{height:35.553750pt;}
.he{height:37.063125pt;}
.h2{height:39.847500pt;}
.h8{height:42.678750pt;}
.hd{height:46.781250pt;}
.h6{height:47.171250pt;}
.h3{height:47.437500pt;}
.hf{height:53.471250pt;}
.hb{height:56.156250pt;}
.h4{height:58.563750pt;}
.ha{height:61.383125pt;}
.h10{height:65.141250pt;}
.hc{height:564.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:309.253333pt;}
.w4{width:309.893333pt;}
.w3{width:310.533333pt;}
.w6{width:311.173333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w8{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:7.680000pt;}
.x9{left:86.752000pt;}
.x7{left:94.431988pt;}
.xc{left:99.231988pt;}
.xf{left:101.474667pt;}
.x15{left:118.463988pt;}
.x16{left:142.466655pt;}
.x11{left:160.706655pt;}
.x20{left:188.866655pt;}
.xd{left:212.253322pt;}
.x2{left:226.013322pt;}
.x21{left:234.973310pt;}
.x22{left:240.413322pt;}
.x6{left:243.613322pt;}
.xe{left:272.733322pt;}
.xb{left:278.213333pt;}
.x17{left:286.533322pt;}
.x10{left:301.888000pt;}
.x5{left:311.173322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x1a{left:485.306643pt;}
.x1b{left:490.746655pt;}
.x1e{left:555.426643pt;}
.x1f{left:560.866655pt;}
.x18{left:568.546643pt;}
.x19{left:573.986655pt;}
.x1c{left:687.653310pt;}
.x13{left:688.613310pt;}
.x1d{left:693.093322pt;}
.x14{left:694.053322pt;}
.x1{left:699.493322pt;}
}




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