
    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_a193fb0f4461c47f012c7b32.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d22ac66169c15fafa20e2b80.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_8614b7880055012c3ac4d2b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.372070;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_986fd46c32a57f5cf9ddd152.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_3bebc4c65c5e2a05c2264e19.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_8191c12f2f6f2e860982809a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_70b1c23e3dd7ff71ac6074bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_919048b2a18a7c4ff4c8ef2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_ccfc766e69e1c76c9faa8b0e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_e5adb35c72af6f5ffc8587ef.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.045360px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.129600px;}
.lsb{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.181200px;}
.ls7{letter-spacing:0.223800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.620000px;}
.ls1{letter-spacing:64.026720px;}
.lsa{letter-spacing:72.269280px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws9{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.241200px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:-12.014640px;}
.wsa{word-spacing:-11.836200px;}
.ws0{word-spacing:-11.700000px;}
.ws3{word-spacing:-7.560000px;}
.ws1{word-spacing:-0.084240px;}
.ws5{word-spacing:0.000000px;}
._a{margin-left:-4.090320px;}
._3{margin-left:-2.425680px;}
._0{margin-left:-1.206000px;}
._1{width:1.421760px;}
._2{width:3.095520px;}
._7{width:4.234320px;}
._5{width:6.203520px;}
._4{width:7.302960px;}
._6{width:8.567040px;}
._c{width:9.937440px;}
._b{width:10.975440px;}
._9{width:13.192320px;}
._8{width:14.713200px;}
._f{width:15.726240px;}
._14{width:16.884000px;}
._13{width:19.633680px;}
._17{width:21.225600px;}
._15{width:25.470720px;}
._16{width:26.474640px;}
._d{width:36.128400px;}
._10{width:41.920560px;}
._11{width:43.078320px;}
._e{width:93.764880px;}
._12{width:117.705600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs5{font-size:30.240000px;}
.fs7{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs9{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:11.520000px;}
.ye1{bottom:21.594000px;}
.ybf{bottom:21.600000px;}
.y7{bottom:28.080000px;}
.ye2{bottom:39.594000px;}
.yc1{bottom:39.600000px;}
.yde{bottom:39.645000px;}
.y6{bottom:51.120000px;}
.y9{bottom:56.340000px;}
.yc5{bottom:57.600000px;}
.yc2{bottom:57.630000px;}
.yc8{bottom:57.645000px;}
.y5{bottom:70.230000px;}
.yc4{bottom:93.600000px;}
.yc7{bottom:93.645000px;}
.y4{bottom:106.050000px;}
.yb3{bottom:113.976000px;}
.ycf{bottom:117.216000px;}
.y7d{bottom:117.396000px;}
.yff{bottom:122.976000px;}
.yb2{bottom:131.976000px;}
.yce{bottom:135.216000px;}
.y5d{bottom:138.816000px;}
.y11d{bottom:138.996000px;}
.ye0{bottom:142.596000px;}
.ycd{bottom:153.210000px;}
.y7c{bottom:153.390000px;}
.y5c{bottom:156.810000px;}
.y11c{bottom:156.990000px;}
.yfe{bottom:158.970000px;}
.yb1{bottom:167.970000px;}
.ycc{bottom:171.210000px;}
.y5b{bottom:174.810000px;}
.y95{bottom:185.970000px;}
.y7b{bottom:189.390000px;}
.y2b{bottom:189.570000px;}
.y11b{bottom:192.990000px;}
.yfd{bottom:194.970000px;}
.ycb{bottom:206.310000px;}
.y5a{bottom:209.910000px;}
.ydf{bottom:220.890000px;}
.y94{bottom:221.970000px;}
.y7a{bottom:225.390000px;}
.y2a{bottom:225.570000px;}
.y11a{bottom:228.990000px;}
.yfc{bottom:230.970000px;}
.yb0{bottom:239.970000px;}
.y59{bottom:244.290000px;}
.yca{bottom:246.630000px;}
.y119{bottom:246.990000px;}
.y93{bottom:257.970000px;}
.y79{bottom:261.390000px;}
.y29{bottom:261.570000px;}
.yc9{bottom:264.630000px;}
.yfb{bottom:266.070000px;}
.y92{bottom:275.970000px;}
.y58{bottom:284.610000px;}
.y118{bottom:285.330000px;}
.yc6{bottom:292.890000px;}
.y78{bottom:297.390000px;}
.y28{bottom:297.570000px;}
.ydd{bottom:299.190000px;}
.yfa{bottom:301.530000px;}
.y57{bottom:302.610000px;}
.y3e{bottom:308.370000px;}
.yaf{bottom:311.070000px;}
.y91{bottom:311.970000px;}
.y77{bottom:315.390000px;}
.y27{bottom:315.570000px;}
.yf9{bottom:319.530000px;}
.y56{bottom:320.610000px;}
.y117{bottom:321.330000px;}
.y76{bottom:333.390000px;}
.y55{bottom:338.655000px;}
.y116{bottom:339.375000px;}
.y3d{bottom:340.995000px;}
.y90{bottom:348.015000px;}
.y12e{bottom:348.915000px;}
.yae{bottom:351.435000px;}
.y26{bottom:351.615000px;}
.yf8{bottom:355.575000px;}
.y115{bottom:357.375000px;}
.y8f{bottom:366.015000px;}
.y75{bottom:368.355000px;}
.yad{bottom:369.435000px;}
.y25{bottom:369.615000px;}
.y54{bottom:374.655000px;}
.y114{bottom:375.375000px;}
.ydc{bottom:376.275000px;}
.y12d{bottom:384.375000px;}
.y24{bottom:387.615000px;}
.yf7{bottom:391.575000px;}
.y53{bottom:392.655000px;}
.y113{bottom:393.375000px;}
.y8e{bottom:401.115000px;}
.y74{bottom:403.815000px;}
.yac{bottom:405.435000px;}
.y23{bottom:405.615000px;}
.y52{bottom:410.655000px;}
.y112{bottom:411.375000px;}
.y12c{bottom:420.375000px;}
.y22{bottom:423.615000px;}
.yc3{bottom:425.235000px;}
.yf6{bottom:427.575000px;}
.y51{bottom:428.655000px;}
.y8d{bottom:436.575000px;}
.y73{bottom:439.815000px;}
.yab{bottom:441.435000px;}
.ydb{bottom:446.475000px;}
.y8c{bottom:454.575000px;}
.y12b{bottom:456.375000px;}
.y21{bottom:459.615000px;}
.yf5{bottom:463.575000px;}
.y50{bottom:463.755000px;}
.y12a{bottom:474.375000px;}
.y72{bottom:475.815000px;}
.yaa{bottom:477.435000px;}
.y20{bottom:477.615000px;}
.yda{bottom:482.475000px;}
.y111{bottom:486.795000px;}
.y8b{bottom:489.495000px;}
.y1f{bottom:495.615000px;}
.yf4{bottom:499.575000px;}
.yd9{bottom:500.475000px;}
.y4f{bottom:504.075000px;}
.y110{bottom:504.795000px;}
.y129{bottom:510.375000px;}
.y71{bottom:511.815000px;}
.ya9{bottom:513.435000px;}
.y1e{bottom:513.615000px;}
.y4e{bottom:522.075000px;}
.y10f{bottom:522.795000px;}
.y128{bottom:528.375000px;}
.y8a{bottom:529.815000px;}
.ya8{bottom:531.435000px;}
.y1d{bottom:531.615000px;}
.yf3{bottom:535.575000px;}
.yd8{bottom:536.475000px;}
.y4d{bottom:540.075000px;}
.y70{bottom:547.815000px;}
.yc0{bottom:557.535000px;}
.y10e{bottom:557.715000px;}
.y4c{bottom:558.075000px;}
.y127{bottom:564.375000px;}
.y89{bottom:565.815000px;}
.ya7{bottom:567.435000px;}
.y1c{bottom:567.615000px;}
.yf2{bottom:570.675000px;}
.yd7{bottom:571.575000px;}
.y4b{bottom:576.075000px;}
.y6f{bottom:583.815000px;}
.y1b{bottom:585.615000px;}
.y10d{bottom:598.035000px;}
.y126{bottom:600.375000px;}
.y88{bottom:601.815000px;}
.ya6{bottom:603.435000px;}
.y1a{bottom:603.645000px;}
.yf1{bottom:606.165000px;}
.yd6{bottom:607.065000px;}
.y4a{bottom:611.205000px;}
.y10c{bottom:616.065000px;}
.y125{bottom:618.405000px;}
.y6e{bottom:619.845000px;}
.ya5{bottom:621.465000px;}
.yd5{bottom:625.065000px;}
.y10b{bottom:634.065000px;}
.y87{bottom:637.845000px;}
.y19{bottom:638.565000px;}
.yf0{bottom:642.165000px;}
.yd4{bottom:643.065000px;}
.y49{bottom:651.525000px;}
.ybe{bottom:652.605000px;}
.y124{bottom:654.405000px;}
.y6d{bottom:655.845000px;}
.ya4{bottom:657.465000px;}
.y10a{bottom:669.165000px;}
.y48{bottom:669.525000px;}
.y123{bottom:672.405000px;}
.y86{bottom:673.845000px;}
.yef{bottom:678.165000px;}
.y18{bottom:678.885000px;}
.yd3{bottom:679.065000px;}
.y47{bottom:687.525000px;}
.y6c{bottom:691.845000px;}
.ya3{bottom:693.465000px;}
.y17{bottom:696.885000px;}
.y122{bottom:708.405000px;}
.y109{bottom:709.485000px;}
.y85{bottom:709.845000px;}
.y3c{bottom:711.105000px;}
.yd2{bottom:711.465000px;}
.yee{bottom:714.165000px;}
.ybd{bottom:722.985000px;}
.y46{bottom:723.525000px;}
.y121{bottom:726.405000px;}
.y108{bottom:727.485000px;}
.y6b{bottom:727.845000px;}
.ya2{bottom:729.465000px;}
.y16{bottom:735.225000px;}
.y45{bottom:741.525000px;}
.y107{bottom:745.485000px;}
.y6a{bottom:745.845000px;}
.y3b{bottom:746.025000px;}
.yed{bottom:750.165000px;}
.y15{bottom:753.225000px;}
.ybc{bottom:758.985000px;}
.y44{bottom:759.525000px;}
.y120{bottom:762.405000px;}
.y69{bottom:763.845000px;}
.ya1{bottom:765.465000px;}
.y14{bottom:771.225000px;}
.ybb{bottom:776.985000px;}
.y43{bottom:777.525000px;}
.y106{bottom:780.585000px;}
.y3a{bottom:781.485000px;}
.y84{bottom:781.845000px;}
.yec{bottom:786.165000px;}
.y13{bottom:789.225000px;}
.y11f{bottom:798.405000px;}
.y68{bottom:798.945000px;}
.ya0{bottom:801.465000px;}
.y12{bottom:807.225000px;}
.yba{bottom:812.085000px;}
.y42{bottom:813.525000px;}
.y105{bottom:816.045000px;}
.y11e{bottom:816.405000px;}
.y39{bottom:816.585000px;}
.y83{bottom:817.845000px;}
.yeb{bottom:821.085000px;}
.y11{bottom:825.225000px;}
.y41{bottom:831.525000px;}
.y104{bottom:834.045000px;}
.y67{bottom:834.405000px;}
.y9f{bottom:837.465000px;}
.y38{bottom:852.045000px;}
.y66{bottom:852.405000px;}
.y82{bottom:853.845000px;}
.y9e{bottom:855.465000px;}
.yea{bottom:856.545000px;}
.y10{bottom:860.325000px;}
.y40{bottom:867.525000px;}
.yb9{bottom:870.405000px;}
.ye9{bottom:874.590000px;}
.y37{bottom:887.190000px;}
.y65{bottom:888.450000px;}
.y81{bottom:889.890000px;}
.y9d{bottom:890.430000px;}
.yf{bottom:894.750000px;}
.y3f{bottom:899.970000px;}
.yb8{bottom:906.450000px;}
.y80{bottom:907.890000px;}
.ye8{bottom:910.590000px;}
.ye{bottom:916.530000px;}
.y36{bottom:922.650000px;}
.y64{bottom:924.450000px;}
.y7f{bottom:925.890000px;}
.yd{bottom:933.810000px;}
.y103{bottom:940.650000px;}
.yb7{bottom:942.450000px;}
.ye7{bottom:946.590000px;}
.yc{bottom:951.090000px;}
.y35{bottom:957.570000px;}
.y102{bottom:958.650000px;}
.y63{bottom:960.450000px;}
.y7e{bottom:960.990000px;}
.y9c{bottom:961.890000px;}
.ye6{bottom:964.590000px;}
.yb{bottom:978.450000px;}
.y9b{bottom:979.890000px;}
.y34{bottom:993.030000px;}
.y101{bottom:993.570000px;}
.y62{bottom:996.450000px;}
.ye5{bottom:1000.590000px;}
.y33{bottom:1011.030000px;}
.yb6{bottom:1014.450000px;}
.y9a{bottom:1015.890000px;}
.ya{bottom:1028.490000px;}
.ye4{bottom:1029.030000px;}
.y61{bottom:1032.450000px;}
.y32{bottom:1047.030000px;}
.yb5{bottom:1050.450000px;}
.y99{bottom:1051.890000px;}
.y8{bottom:1056.570000px;}
.yd1{bottom:1064.130000px;}
.y31{bottom:1065.030000px;}
.y60{bottom:1068.450000px;}
.y3{bottom:1070.250000px;}
.y30{bottom:1083.030000px;}
.yb4{bottom:1086.450000px;}
.y98{bottom:1087.890000px;}
.y100{bottom:1100.130000px;}
.y2f{bottom:1101.030000px;}
.y5f{bottom:1104.450000px;}
.y97{bottom:1105.890000px;}
.ye3{bottom:1106.070000px;}
.yd0{bottom:1122.450000px;}
.y2e{bottom:1136.130000px;}
.y5e{bottom:1140.480000px;}
.y96{bottom:1141.020000px;}
.y2d{bottom:1181.340000px;}
.y1{bottom:1186.020000px;}
.y2c{bottom:1197.540000px;}
.h5{height:2.826563px;}
.h2{height:22.860000px;}
.h9{height:29.678906px;}
.h1b{height:33.683203px;}
.h13{height:36.000000px;}
.h1a{height:36.036000px;}
.he{height:44.518359px;}
.hd{height:45.714375px;}
.h12{height:47.321367px;}
.h3{height:47.344922px;}
.hc{height:48.616875px;}
.h17{height:49.583118px;}
.h11{height:50.146523px;}
.h7{height:53.868164px;}
.h19{height:54.000000px;}
.h18{height:54.036000px;}
.hf{height:57.324375px;}
.h10{height:61.423863px;}
.hb{height:71.081367px;}
.h14{height:72.036000px;}
.h8{height:82.676953px;}
.ha{height:96.508125px;}
.h6{height:98.051133px;}
.h15{height:108.000000px;}
.h16{height:108.036000px;}
.h4{height:115.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:92.196000px;}
.w3{width:106.236000px;}
.w9{width:130.536000px;}
.w7{width:148.500000px;}
.wb{width:173.010000px;}
.wa{width:217.830000px;}
.w8{width:332.715000px;}
.w4{width:644.325000px;}
.w2{width:750.570000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.136000px;}
.x5{left:32.220000px;}
.x1{left:81.000000px;}
.x7{left:102.285000px;}
.x8{left:108.035987px;}
.x2{left:117.210000px;}
.xf{left:135.035987px;}
.x10{left:162.029987px;}
.x16{left:171.030000px;}
.x9{left:173.009987px;}
.x4{left:187.230000px;}
.x11{left:192.990000px;}
.x12{left:288.975000px;}
.xc{left:296.354987px;}
.x17{left:305.355000px;}
.x6{left:322.095000px;}
.x15{left:361.874987px;}
.xe{left:369.434987px;}
.x13{left:441.075000px;}
.x18{left:526.965000px;}
.xb{left:627.224987px;}
.x14{left:672.269987px;}
.xd{left:718.709987px;}
.xa{left:812.129987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.040320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.115200pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.161067pt;}
.ls7{letter-spacing:0.198933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls1{letter-spacing:56.912640pt;}
.lsa{letter-spacing:64.239360pt;}
.ws4{word-spacing:-53.120000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.881067pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.679680pt;}
.wsa{word-spacing:-10.521067pt;}
.ws0{word-spacing:-10.400000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws1{word-spacing:-0.074880pt;}
.ws5{word-spacing:0.000000pt;}
._a{margin-left:-3.635840pt;}
._3{margin-left:-2.156160pt;}
._0{margin-left:-1.072000pt;}
._1{width:1.263787pt;}
._2{width:2.751573pt;}
._7{width:3.763840pt;}
._5{width:5.514240pt;}
._4{width:6.491520pt;}
._6{width:7.615147pt;}
._c{width:8.833280pt;}
._b{width:9.755947pt;}
._9{width:11.726507pt;}
._8{width:13.078400pt;}
._f{width:13.978880pt;}
._14{width:15.008000pt;}
._13{width:17.452160pt;}
._17{width:18.867200pt;}
._15{width:22.640640pt;}
._16{width:23.533013pt;}
._d{width:32.114133pt;}
._10{width:37.262720pt;}
._11{width:38.291840pt;}
._e{width:83.346560pt;}
._12{width:104.627200pt;}
.fs1{font-size:2.560000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs9{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:10.240000pt;}
.ye1{bottom:19.194667pt;}
.ybf{bottom:19.200000pt;}
.y7{bottom:24.960000pt;}
.ye2{bottom:35.194667pt;}
.yc1{bottom:35.200000pt;}
.yde{bottom:35.240000pt;}
.y6{bottom:45.440000pt;}
.y9{bottom:50.080000pt;}
.yc5{bottom:51.200000pt;}
.yc2{bottom:51.226667pt;}
.yc8{bottom:51.240000pt;}
.y5{bottom:62.426667pt;}
.yc4{bottom:83.200000pt;}
.yc7{bottom:83.240000pt;}
.y4{bottom:94.266667pt;}
.yb3{bottom:101.312000pt;}
.ycf{bottom:104.192000pt;}
.y7d{bottom:104.352000pt;}
.yff{bottom:109.312000pt;}
.yb2{bottom:117.312000pt;}
.yce{bottom:120.192000pt;}
.y5d{bottom:123.392000pt;}
.y11d{bottom:123.552000pt;}
.ye0{bottom:126.752000pt;}
.ycd{bottom:136.186667pt;}
.y7c{bottom:136.346667pt;}
.y5c{bottom:139.386667pt;}
.y11c{bottom:139.546667pt;}
.yfe{bottom:141.306667pt;}
.yb1{bottom:149.306667pt;}
.ycc{bottom:152.186667pt;}
.y5b{bottom:155.386667pt;}
.y95{bottom:165.306667pt;}
.y7b{bottom:168.346667pt;}
.y2b{bottom:168.506667pt;}
.y11b{bottom:171.546667pt;}
.yfd{bottom:173.306667pt;}
.ycb{bottom:183.386667pt;}
.y5a{bottom:186.586667pt;}
.ydf{bottom:196.346667pt;}
.y94{bottom:197.306667pt;}
.y7a{bottom:200.346667pt;}
.y2a{bottom:200.506667pt;}
.y11a{bottom:203.546667pt;}
.yfc{bottom:205.306667pt;}
.yb0{bottom:213.306667pt;}
.y59{bottom:217.146667pt;}
.yca{bottom:219.226667pt;}
.y119{bottom:219.546667pt;}
.y93{bottom:229.306667pt;}
.y79{bottom:232.346667pt;}
.y29{bottom:232.506667pt;}
.yc9{bottom:235.226667pt;}
.yfb{bottom:236.506667pt;}
.y92{bottom:245.306667pt;}
.y58{bottom:252.986667pt;}
.y118{bottom:253.626667pt;}
.yc6{bottom:260.346667pt;}
.y78{bottom:264.346667pt;}
.y28{bottom:264.506667pt;}
.ydd{bottom:265.946667pt;}
.yfa{bottom:268.026667pt;}
.y57{bottom:268.986667pt;}
.y3e{bottom:274.106667pt;}
.yaf{bottom:276.506667pt;}
.y91{bottom:277.306667pt;}
.y77{bottom:280.346667pt;}
.y27{bottom:280.506667pt;}
.yf9{bottom:284.026667pt;}
.y56{bottom:284.986667pt;}
.y117{bottom:285.626667pt;}
.y76{bottom:296.346667pt;}
.y55{bottom:301.026667pt;}
.y116{bottom:301.666667pt;}
.y3d{bottom:303.106667pt;}
.y90{bottom:309.346667pt;}
.y12e{bottom:310.146667pt;}
.yae{bottom:312.386667pt;}
.y26{bottom:312.546667pt;}
.yf8{bottom:316.066667pt;}
.y115{bottom:317.666667pt;}
.y8f{bottom:325.346667pt;}
.y75{bottom:327.426667pt;}
.yad{bottom:328.386667pt;}
.y25{bottom:328.546667pt;}
.y54{bottom:333.026667pt;}
.y114{bottom:333.666667pt;}
.ydc{bottom:334.466667pt;}
.y12d{bottom:341.666667pt;}
.y24{bottom:344.546667pt;}
.yf7{bottom:348.066667pt;}
.y53{bottom:349.026667pt;}
.y113{bottom:349.666667pt;}
.y8e{bottom:356.546667pt;}
.y74{bottom:358.946667pt;}
.yac{bottom:360.386667pt;}
.y23{bottom:360.546667pt;}
.y52{bottom:365.026667pt;}
.y112{bottom:365.666667pt;}
.y12c{bottom:373.666667pt;}
.y22{bottom:376.546667pt;}
.yc3{bottom:377.986667pt;}
.yf6{bottom:380.066667pt;}
.y51{bottom:381.026667pt;}
.y8d{bottom:388.066667pt;}
.y73{bottom:390.946667pt;}
.yab{bottom:392.386667pt;}
.ydb{bottom:396.866667pt;}
.y8c{bottom:404.066667pt;}
.y12b{bottom:405.666667pt;}
.y21{bottom:408.546667pt;}
.yf5{bottom:412.066667pt;}
.y50{bottom:412.226667pt;}
.y12a{bottom:421.666667pt;}
.y72{bottom:422.946667pt;}
.yaa{bottom:424.386667pt;}
.y20{bottom:424.546667pt;}
.yda{bottom:428.866667pt;}
.y111{bottom:432.706667pt;}
.y8b{bottom:435.106667pt;}
.y1f{bottom:440.546667pt;}
.yf4{bottom:444.066667pt;}
.yd9{bottom:444.866667pt;}
.y4f{bottom:448.066667pt;}
.y110{bottom:448.706667pt;}
.y129{bottom:453.666667pt;}
.y71{bottom:454.946667pt;}
.ya9{bottom:456.386667pt;}
.y1e{bottom:456.546667pt;}
.y4e{bottom:464.066667pt;}
.y10f{bottom:464.706667pt;}
.y128{bottom:469.666667pt;}
.y8a{bottom:470.946667pt;}
.ya8{bottom:472.386667pt;}
.y1d{bottom:472.546667pt;}
.yf3{bottom:476.066667pt;}
.yd8{bottom:476.866667pt;}
.y4d{bottom:480.066667pt;}
.y70{bottom:486.946667pt;}
.yc0{bottom:495.586667pt;}
.y10e{bottom:495.746667pt;}
.y4c{bottom:496.066667pt;}
.y127{bottom:501.666667pt;}
.y89{bottom:502.946667pt;}
.ya7{bottom:504.386667pt;}
.y1c{bottom:504.546667pt;}
.yf2{bottom:507.266667pt;}
.yd7{bottom:508.066667pt;}
.y4b{bottom:512.066667pt;}
.y6f{bottom:518.946667pt;}
.y1b{bottom:520.546667pt;}
.y10d{bottom:531.586667pt;}
.y126{bottom:533.666667pt;}
.y88{bottom:534.946667pt;}
.ya6{bottom:536.386667pt;}
.y1a{bottom:536.573333pt;}
.yf1{bottom:538.813333pt;}
.yd6{bottom:539.613333pt;}
.y4a{bottom:543.293333pt;}
.y10c{bottom:547.613333pt;}
.y125{bottom:549.693333pt;}
.y6e{bottom:550.973333pt;}
.ya5{bottom:552.413333pt;}
.yd5{bottom:555.613333pt;}
.y10b{bottom:563.613333pt;}
.y87{bottom:566.973333pt;}
.y19{bottom:567.613333pt;}
.yf0{bottom:570.813333pt;}
.yd4{bottom:571.613333pt;}
.y49{bottom:579.133333pt;}
.ybe{bottom:580.093333pt;}
.y124{bottom:581.693333pt;}
.y6d{bottom:582.973333pt;}
.ya4{bottom:584.413333pt;}
.y10a{bottom:594.813333pt;}
.y48{bottom:595.133333pt;}
.y123{bottom:597.693333pt;}
.y86{bottom:598.973333pt;}
.yef{bottom:602.813333pt;}
.y18{bottom:603.453333pt;}
.yd3{bottom:603.613333pt;}
.y47{bottom:611.133333pt;}
.y6c{bottom:614.973333pt;}
.ya3{bottom:616.413333pt;}
.y17{bottom:619.453333pt;}
.y122{bottom:629.693333pt;}
.y109{bottom:630.653333pt;}
.y85{bottom:630.973333pt;}
.y3c{bottom:632.093333pt;}
.yd2{bottom:632.413333pt;}
.yee{bottom:634.813333pt;}
.ybd{bottom:642.653333pt;}
.y46{bottom:643.133333pt;}
.y121{bottom:645.693333pt;}
.y108{bottom:646.653333pt;}
.y6b{bottom:646.973333pt;}
.ya2{bottom:648.413333pt;}
.y16{bottom:653.533333pt;}
.y45{bottom:659.133333pt;}
.y107{bottom:662.653333pt;}
.y6a{bottom:662.973333pt;}
.y3b{bottom:663.133333pt;}
.yed{bottom:666.813333pt;}
.y15{bottom:669.533333pt;}
.ybc{bottom:674.653333pt;}
.y44{bottom:675.133333pt;}
.y120{bottom:677.693333pt;}
.y69{bottom:678.973333pt;}
.ya1{bottom:680.413333pt;}
.y14{bottom:685.533333pt;}
.ybb{bottom:690.653333pt;}
.y43{bottom:691.133333pt;}
.y106{bottom:693.853333pt;}
.y3a{bottom:694.653333pt;}
.y84{bottom:694.973333pt;}
.yec{bottom:698.813333pt;}
.y13{bottom:701.533333pt;}
.y11f{bottom:709.693333pt;}
.y68{bottom:710.173333pt;}
.ya0{bottom:712.413333pt;}
.y12{bottom:717.533333pt;}
.yba{bottom:721.853333pt;}
.y42{bottom:723.133333pt;}
.y105{bottom:725.373333pt;}
.y11e{bottom:725.693333pt;}
.y39{bottom:725.853333pt;}
.y83{bottom:726.973333pt;}
.yeb{bottom:729.853333pt;}
.y11{bottom:733.533333pt;}
.y41{bottom:739.133333pt;}
.y104{bottom:741.373333pt;}
.y67{bottom:741.693333pt;}
.y9f{bottom:744.413333pt;}
.y38{bottom:757.373333pt;}
.y66{bottom:757.693333pt;}
.y82{bottom:758.973333pt;}
.y9e{bottom:760.413333pt;}
.yea{bottom:761.373333pt;}
.y10{bottom:764.733333pt;}
.y40{bottom:771.133333pt;}
.yb9{bottom:773.693333pt;}
.ye9{bottom:777.413333pt;}
.y37{bottom:788.613333pt;}
.y65{bottom:789.733333pt;}
.y81{bottom:791.013333pt;}
.y9d{bottom:791.493333pt;}
.yf{bottom:795.333333pt;}
.y3f{bottom:799.973333pt;}
.yb8{bottom:805.733333pt;}
.y80{bottom:807.013333pt;}
.ye8{bottom:809.413333pt;}
.ye{bottom:814.693333pt;}
.y36{bottom:820.133333pt;}
.y64{bottom:821.733333pt;}
.y7f{bottom:823.013333pt;}
.yd{bottom:830.053333pt;}
.y103{bottom:836.133333pt;}
.yb7{bottom:837.733333pt;}
.ye7{bottom:841.413333pt;}
.yc{bottom:845.413333pt;}
.y35{bottom:851.173333pt;}
.y102{bottom:852.133333pt;}
.y63{bottom:853.733333pt;}
.y7e{bottom:854.213333pt;}
.y9c{bottom:855.013333pt;}
.ye6{bottom:857.413333pt;}
.yb{bottom:869.733333pt;}
.y9b{bottom:871.013333pt;}
.y34{bottom:882.693333pt;}
.y101{bottom:883.173333pt;}
.y62{bottom:885.733333pt;}
.ye5{bottom:889.413333pt;}
.y33{bottom:898.693333pt;}
.yb6{bottom:901.733333pt;}
.y9a{bottom:903.013333pt;}
.ya{bottom:914.213333pt;}
.ye4{bottom:914.693333pt;}
.y61{bottom:917.733333pt;}
.y32{bottom:930.693333pt;}
.yb5{bottom:933.733333pt;}
.y99{bottom:935.013333pt;}
.y8{bottom:939.173333pt;}
.yd1{bottom:945.893333pt;}
.y31{bottom:946.693333pt;}
.y60{bottom:949.733333pt;}
.y3{bottom:951.333333pt;}
.y30{bottom:962.693333pt;}
.yb4{bottom:965.733333pt;}
.y98{bottom:967.013333pt;}
.y100{bottom:977.893333pt;}
.y2f{bottom:978.693333pt;}
.y5f{bottom:981.733333pt;}
.y97{bottom:983.013333pt;}
.ye3{bottom:983.173333pt;}
.yd0{bottom:997.733333pt;}
.y2e{bottom:1009.893333pt;}
.y5e{bottom:1013.760000pt;}
.y96{bottom:1014.240000pt;}
.y2d{bottom:1050.080000pt;}
.y1{bottom:1054.240000pt;}
.y2c{bottom:1064.480000pt;}
.h5{height:2.512500pt;}
.h2{height:20.320000pt;}
.h9{height:26.381250pt;}
.h1b{height:29.940625pt;}
.h13{height:32.000000pt;}
.h1a{height:32.032000pt;}
.he{height:39.571875pt;}
.hd{height:40.635000pt;}
.h12{height:42.063437pt;}
.h3{height:42.084375pt;}
.hc{height:43.215000pt;}
.h17{height:44.073883pt;}
.h11{height:44.574687pt;}
.h7{height:47.882812pt;}
.h19{height:48.000000pt;}
.h18{height:48.032000pt;}
.hf{height:50.955000pt;}
.h10{height:54.598989pt;}
.hb{height:63.183438pt;}
.h14{height:64.032000pt;}
.h8{height:73.490625pt;}
.ha{height:85.785000pt;}
.h6{height:87.156562pt;}
.h15{height:96.000000pt;}
.h16{height:96.032000pt;}
.h4{height:102.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:81.952000pt;}
.w3{width:94.432000pt;}
.w9{width:116.032000pt;}
.w7{width:132.000000pt;}
.wb{width:153.786667pt;}
.wa{width:193.626667pt;}
.w8{width:295.746667pt;}
.w4{width:572.733333pt;}
.w2{width:667.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.232000pt;}
.x5{left:28.640000pt;}
.x1{left:72.000000pt;}
.x7{left:90.920000pt;}
.x8{left:96.031988pt;}
.x2{left:104.186667pt;}
.xf{left:120.031988pt;}
.x10{left:144.026655pt;}
.x16{left:152.026667pt;}
.x9{left:153.786655pt;}
.x4{left:166.426667pt;}
.x11{left:171.546667pt;}
.x12{left:256.866667pt;}
.xc{left:263.426655pt;}
.x17{left:271.426667pt;}
.x6{left:286.306667pt;}
.x15{left:321.666655pt;}
.xe{left:328.386655pt;}
.x13{left:392.066667pt;}
.x18{left:468.413333pt;}
.xb{left:557.533322pt;}
.x14{left:597.573322pt;}
.xd{left:638.853322pt;}
.xa{left:721.893322pt;}
}




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