
    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_406696ebb44295374670f598.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_138b5e831b7d98f5d812d4bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d44912cc6f25cd42f0a934a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_4b4884e5377e5089131af8f0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0633c5a2d1dfaa0a75103331.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_7d8e5899e9d416ad0dd8f507.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_203f0f75b9da47d24ecea362.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_685daf72af8baae2d3fd4e9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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;}
.v4{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.680000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:50.400000px;}
.ls16{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.051840px;}
.ls9{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.144720px;}
.ls15{letter-spacing:0.148800px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.309040px;}
.ls13{letter-spacing:3.872160px;}
.lsd{letter-spacing:3.974400px;}
.ls10{letter-spacing:16.709040px;}
.lsb{letter-spacing:18.198720px;}
.ls11{letter-spacing:18.272160px;}
.lsa{letter-spacing:22.094400px;}
.lsc{letter-spacing:30.830400px;}
.ls0{letter-spacing:46.002720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.wsf{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.520960px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.wsc{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
.wse{word-spacing:0.051840px;}
.ws12{word-spacing:3.404160px;}
.ws11{word-spacing:3.625920px;}
.wsd{word-spacing:3.745920px;}
.ws10{word-spacing:9.398880px;}
._15{margin-left:-7.162080px;}
._8{margin-left:-4.242480px;}
._4{margin-left:-2.952000px;}
._0{margin-left:-1.589760px;}
._1{width:1.278240px;}
._9{width:2.297280px;}
._a{width:3.585600px;}
._7{width:4.642320px;}
._6{width:6.357840px;}
._5{width:7.685760px;}
._3{width:9.083520px;}
._2{width:10.099440px;}
._d{width:11.533680px;}
._14{width:12.541680px;}
._10{width:13.976640px;}
._13{width:15.500160px;}
._b{width:17.390160px;}
._16{width:18.745920px;}
._c{width:19.757280px;}
._f{width:21.510240px;}
._12{width:22.941600px;}
._11{width:24.707520px;}
._1c{width:26.098560px;}
._17{width:28.019520px;}
._18{width:29.741760px;}
._1a{width:32.788800px;}
._1b{width:34.312320px;}
._21{width:44.049600px;}
._1d{width:52.594560px;}
._1e{width:53.720640px;}
._1f{width:59.019840px;}
._20{width:60.384480px;}
._e{width:124.544640px;}
._23{width:149.503680px;}
._22{width:151.443360px;}
._19{width:199.416000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y5{bottom:-15.660000px;}
.y2{bottom:-9.180000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.040000px;}
.yad{bottom:6.300000px;}
.yb3{bottom:6.474000px;}
.yaf{bottom:6.480000px;}
.y8{bottom:61.020000px;}
.y7{bottom:64.260000px;}
.y6f{bottom:113.940000px;}
.yd7{bottom:123.660000px;}
.yff{bottom:125.460000px;}
.yb4{bottom:130.320000px;}
.y3f{bottom:132.480000px;}
.y88{bottom:135.576000px;}
.y6e{bottom:135.756000px;}
.yd6{bottom:145.476000px;}
.yb2{bottom:146.556000px;}
.yfe{bottom:147.456000px;}
.y3e{bottom:154.290000px;}
.y6d{bottom:157.530000px;}
.yd5{bottom:167.430000px;}
.yb1{bottom:169.230000px;}
.y3d{bottom:176.250000px;}
.y6c{bottom:179.310000px;}
.yd4{bottom:189.210000px;}
.yfd{bottom:191.010000px;}
.yb0{bottom:191.730000px;}
.y3c{bottom:198.030000px;}
.y87{bottom:201.090000px;}
.y6b{bottom:201.270000px;}
.yd3{bottom:210.990000px;}
.yfc{bottom:212.790000px;}
.yae{bottom:214.230000px;}
.y3b{bottom:219.810000px;}
.y86{bottom:222.870000px;}
.y6a{bottom:223.050000px;}
.yd2{bottom:232.770000px;}
.yfb{bottom:234.570000px;}
.yac{bottom:236.910000px;}
.y3a{bottom:241.590000px;}
.y85{bottom:244.650000px;}
.y69{bottom:244.830000px;}
.yd1{bottom:254.730000px;}
.yfa{bottom:256.530000px;}
.y39{bottom:263.550000px;}
.yab{bottom:265.710000px;}
.y68{bottom:266.610000px;}
.yd0{bottom:276.510000px;}
.yf9{bottom:278.310000px;}
.y38{bottom:285.330000px;}
.yaa{bottom:287.670000px;}
.y67{bottom:288.390000px;}
.ycf{bottom:298.290000px;}
.yf8{bottom:300.090000px;}
.y37{bottom:307.110000px;}
.ya9{bottom:309.450000px;}
.y84{bottom:310.170000px;}
.y66{bottom:310.350000px;}
.yce{bottom:320.070000px;}
.yf7{bottom:321.870000px;}
.y36{bottom:328.890000px;}
.ya8{bottom:331.230000px;}
.y83{bottom:331.950000px;}
.y65{bottom:332.130000px;}
.ycd{bottom:341.850000px;}
.yf6{bottom:343.830000px;}
.y35{bottom:350.670000px;}
.ya7{bottom:353.010000px;}
.y64{bottom:353.910000px;}
.ycc{bottom:358.230000px;}
.yf5{bottom:365.610000px;}
.y34{bottom:372.630000px;}
.ya6{bottom:374.970000px;}
.y63{bottom:375.690000px;}
.ycb{bottom:380.730000px;}
.yf4{bottom:387.435000px;}
.y33{bottom:392.655000px;}
.ya5{bottom:396.795000px;}
.y82{bottom:397.515000px;}
.y62{bottom:397.695000px;}
.yca{bottom:403.275000px;}
.y32{bottom:408.495000px;}
.yf3{bottom:409.215000px;}
.ya4{bottom:418.575000px;}
.y81{bottom:419.295000px;}
.y61{bottom:419.475000px;}
.yc9{bottom:425.955000px;}
.y31{bottom:426.135000px;}
.yf2{bottom:430.995000px;}
.ya3{bottom:440.355000px;}
.y80{bottom:441.075000px;}
.y60{bottom:441.255000px;}
.y30{bottom:444.855000px;}
.yc8{bottom:448.455000px;}
.yf1{bottom:452.955000px;}
.y2f{bottom:462.135000px;}
.y5f{bottom:463.035000px;}
.yc7{bottom:471.135000px;}
.yf0{bottom:474.735000px;}
.y2e{bottom:479.415000px;}
.ya2{bottom:484.095000px;}
.y5e{bottom:484.815000px;}
.yef{bottom:496.515000px;}
.y2d{bottom:496.695000px;}
.yc6{bottom:499.935000px;}
.ya1{bottom:505.875000px;}
.y7f{bottom:506.595000px;}
.y5d{bottom:506.775000px;}
.y2c{bottom:513.795000px;}
.yee{bottom:518.295000px;}
.yc5{bottom:521.715000px;}
.ya0{bottom:527.655000px;}
.y7e{bottom:528.375000px;}
.y5c{bottom:528.555000px;}
.y2b{bottom:531.075000px;}
.yed{bottom:540.255000px;}
.yc4{bottom:543.675000px;}
.y2a{bottom:548.355000px;}
.y9f{bottom:549.435000px;}
.y5b{bottom:550.335000px;}
.yec{bottom:556.455000px;}
.yc3{bottom:565.455000px;}
.y29{bottom:565.635000px;}
.y9e{bottom:571.395000px;}
.y5a{bottom:572.115000px;}
.yeb{bottom:578.955000px;}
.y28{bottom:582.915000px;}
.yc2{bottom:587.235000px;}
.y9d{bottom:593.175000px;}
.y7d{bottom:593.895000px;}
.y59{bottom:594.075000px;}
.y27{bottom:600.195000px;}
.yea{bottom:601.455000px;}
.yc1{bottom:609.015000px;}
.y9c{bottom:614.955000px;}
.y7c{bottom:615.675000px;}
.y58{bottom:615.855000px;}
.y26{bottom:617.295000px;}
.ye9{bottom:624.135000px;}
.yc0{bottom:630.795000px;}
.y25{bottom:634.575000px;}
.y9b{bottom:636.735000px;}
.y7b{bottom:637.455000px;}
.y57{bottom:637.635000px;}
.ye8{bottom:646.665000px;}
.y24{bottom:651.885000px;}
.ybf{bottom:652.785000px;}
.y9a{bottom:658.545000px;}
.y56{bottom:659.445000px;}
.y23{bottom:669.165000px;}
.ye7{bottom:669.345000px;}
.ybe{bottom:674.565000px;}
.y99{bottom:680.505000px;}
.y55{bottom:681.225000px;}
.y22{bottom:686.445000px;}
.ybd{bottom:696.345000px;}
.ye6{bottom:698.145000px;}
.y98{bottom:702.285000px;}
.y7a{bottom:703.005000px;}
.y54{bottom:703.185000px;}
.y21{bottom:703.725000px;}
.ybc{bottom:712.545000px;}
.ye5{bottom:719.925000px;}
.y20{bottom:720.825000px;}
.y97{bottom:724.065000px;}
.y79{bottom:724.785000px;}
.y53{bottom:724.965000px;}
.ybb{bottom:735.225000px;}
.y1f{bottom:738.105000px;}
.ye4{bottom:741.885000px;}
.y96{bottom:745.845000px;}
.y78{bottom:746.565000px;}
.y52{bottom:746.745000px;}
.y1e{bottom:755.385000px;}
.yba{bottom:757.725000px;}
.ye3{bottom:763.665000px;}
.y95{bottom:767.805000px;}
.y51{bottom:768.525000px;}
.y1d{bottom:772.665000px;}
.yb9{bottom:780.225000px;}
.ye2{bottom:785.445000px;}
.y94{bottom:789.585000px;}
.y1c{bottom:789.945000px;}
.y50{bottom:790.305000px;}
.yb8{bottom:802.905000px;}
.y1b{bottom:807.045000px;}
.ye1{bottom:807.225000px;}
.y93{bottom:811.365000px;}
.y77{bottom:812.085000px;}
.y4f{bottom:812.265000px;}
.y1a{bottom:824.325000px;}
.yb7{bottom:825.405000px;}
.ye0{bottom:829.185000px;}
.y92{bottom:833.145000px;}
.y76{bottom:833.865000px;}
.y4e{bottom:834.045000px;}
.y19{bottom:841.605000px;}
.yb6{bottom:848.085000px;}
.ydf{bottom:850.965000px;}
.y91{bottom:854.925000px;}
.y4d{bottom:855.825000px;}
.y18{bottom:858.885000px;}
.yb5{bottom:870.585000px;}
.yde{bottom:873.105000px;}
.y17{bottom:876.165000px;}
.y90{bottom:876.885000px;}
.y4c{bottom:877.605000px;}
.y16{bottom:893.490000px;}
.ydd{bottom:895.110000px;}
.y8f{bottom:898.710000px;}
.y75{bottom:899.430000px;}
.y4b{bottom:899.610000px;}
.y15{bottom:910.590000px;}
.ydc{bottom:911.310000px;}
.y8e{bottom:920.490000px;}
.y74{bottom:921.210000px;}
.y4a{bottom:921.390000px;}
.y14{bottom:927.870000px;}
.ydb{bottom:933.810000px;}
.y8d{bottom:942.270000px;}
.y73{bottom:942.990000px;}
.y49{bottom:943.170000px;}
.y13{bottom:950.370000px;}
.yda{bottom:956.490000px;}
.y8c{bottom:960.810000px;}
.y12{bottom:962.790000px;}
.y8b{bottom:964.230000px;}
.y48{bottom:964.950000px;}
.yd9{bottom:978.990000px;}
.y11{bottom:981.330000px;}
.y8a{bottom:982.950000px;}
.y89{bottom:986.370000px;}
.y47{bottom:986.730000px;}
.yd8{bottom:1001.490000px;}
.y10{bottom:1002.930000px;}
.y72{bottom:1008.510000px;}
.y46{bottom:1008.690000px;}
.yf{bottom:1028.850000px;}
.y45{bottom:1030.470000px;}
.y71{bottom:1030.650000px;}
.y70{bottom:1041.810000px;}
.y44{bottom:1052.250000px;}
.ye{bottom:1053.330000px;}
.yd{bottom:1072.050000px;}
.y43{bottom:1074.030000px;}
.yc{bottom:1089.330000px;}
.y42{bottom:1095.990000px;}
.yb{bottom:1106.610000px;}
.y41{bottom:1117.770000px;}
.ya{bottom:1123.710000px;}
.y40{bottom:1139.550000px;}
.y9{bottom:1140.990000px;}
.y3{bottom:1185.120000px;}
.y1{bottom:1193.040000px;}
.y6{bottom:1209.060000px;}
.h2{height:6.120000px;}
.h4{height:20.700000px;}
.h17{height:21.780000px;}
.h19{height:21.816000px;}
.h18{height:21.960000px;}
.hd{height:27.147656px;}
.h12{height:33.683203px;}
.h7{height:39.760312px;}
.h8{height:41.726953px;}
.h9{height:42.164648px;}
.h6{height:43.506914px;}
.h3{height:46.251562px;}
.h13{height:46.736719px;}
.he{height:48.027656px;}
.h10{height:48.496641px;}
.hf{height:49.255313px;}
.h5{height:50.585625px;}
.hc{height:53.224453px;}
.h11{height:54.596250px;}
.ha{height:54.864844px;}
.h15{height:55.825312px;}
.hb{height:63.104063px;}
.h16{height:69.505313px;}
.h14{height:106.225312px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:37.620000px;}
.wa{width:82.836000px;}
.wd{width:83.556000px;}
.w7{width:91.980000px;}
.w8{width:97.560000px;}
.w9{width:103.896000px;}
.we{width:111.960000px;}
.w10{width:126.576000px;}
.w6{width:145.656000px;}
.wf{width:169.410000px;}
.wc{width:177.510000px;}
.wb{width:221.475000px;}
.w4{width:285.195000px;}
.w2{width:688.860000px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x4{left:3.060000px;}
.x18{left:7.740000px;}
.x2{left:10.836000px;}
.x1e{left:19.440000px;}
.x2c{left:24.480000px;}
.x2d{left:26.640000px;}
.x2a{left:30.780000px;}
.x1f{left:33.510000px;}
.x2b{left:34.560000px;}
.x23{left:37.080000px;}
.x20{left:38.520000px;}
.x21{left:40.500000px;}
.x22{left:43.770000px;}
.x1{left:108.000000px;}
.x8{left:109.835987px;}
.xe{left:111.455987px;}
.x3{left:122.436000px;}
.x32{left:129.275987px;}
.x9{left:132.335987px;}
.x7{left:135.035987px;}
.x33{left:150.509987px;}
.xf{left:162.749987px;}
.x5{left:180.030000px;}
.xc{left:204.149987px;}
.x16{left:206.309987px;}
.x24{left:241.229987px;}
.xa{left:243.029987px;}
.x25{left:246.810000px;}
.x2f{left:282.314987px;}
.x27{left:285.194987px;}
.x1a{left:293.654987px;}
.x30{left:298.335000px;}
.x1b{left:303.735000px;}
.xb{left:323.714987px;}
.x17{left:327.495000px;}
.x2e{left:332.714987px;}
.x28{left:348.555000px;}
.x31{left:357.734987px;}
.x13{left:382.214987px;}
.x15{left:385.274987px;}
.x10{left:398.234987px;}
.x1c{left:402.015000px;}
.xd{left:420.404987px;}
.x29{left:432.825000px;}
.x11{left:458.024987px;}
.x26{left:469.005000px;}
.x19{left:473.865000px;}
.x14{left:476.204987px;}
.x12{left:488.624987px;}
.x1d{left:506.805000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.160000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:44.800000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.046080pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.128640pt;}
.ls15{letter-spacing:0.132267pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:1.280000pt;}
.ls12{letter-spacing:2.052480pt;}
.ls13{letter-spacing:3.441920pt;}
.lsd{letter-spacing:3.532800pt;}
.ls10{letter-spacing:14.852480pt;}
.lsb{letter-spacing:16.176640pt;}
.ls11{letter-spacing:16.241920pt;}
.lsa{letter-spacing:19.639467pt;}
.lsc{letter-spacing:27.404800pt;}
.ls0{letter-spacing:40.891307pt;}
.ws8{word-spacing:-53.120000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.907520pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.wsc{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
.wse{word-spacing:0.046080pt;}
.ws12{word-spacing:3.025920pt;}
.ws11{word-spacing:3.223040pt;}
.wsd{word-spacing:3.329707pt;}
.ws10{word-spacing:8.354560pt;}
._15{margin-left:-6.366293pt;}
._8{margin-left:-3.771093pt;}
._4{margin-left:-2.624000pt;}
._0{margin-left:-1.413120pt;}
._1{width:1.136213pt;}
._9{width:2.042027pt;}
._a{width:3.187200pt;}
._7{width:4.126507pt;}
._6{width:5.651413pt;}
._5{width:6.831787pt;}
._3{width:8.074240pt;}
._2{width:8.977280pt;}
._d{width:10.252160pt;}
._14{width:11.148160pt;}
._10{width:12.423680pt;}
._13{width:13.777920pt;}
._b{width:15.457920pt;}
._16{width:16.663040pt;}
._c{width:17.562027pt;}
._f{width:19.120213pt;}
._12{width:20.392533pt;}
._11{width:21.962240pt;}
._1c{width:23.198720pt;}
._17{width:24.906240pt;}
._18{width:26.437120pt;}
._1a{width:29.145600pt;}
._1b{width:30.499840pt;}
._21{width:39.155200pt;}
._1d{width:46.750720pt;}
._1e{width:47.751680pt;}
._1f{width:52.462080pt;}
._20{width:53.675093pt;}
._e{width:110.706347pt;}
._23{width:132.892160pt;}
._22{width:134.616320pt;}
._19{width:177.258667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y5{bottom:-13.920000pt;}
.y2{bottom:-8.160000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.480000pt;}
.yad{bottom:5.600000pt;}
.yb3{bottom:5.754667pt;}
.yaf{bottom:5.760000pt;}
.y8{bottom:54.240000pt;}
.y7{bottom:57.120000pt;}
.y6f{bottom:101.280000pt;}
.yd7{bottom:109.920000pt;}
.yff{bottom:111.520000pt;}
.yb4{bottom:115.840000pt;}
.y3f{bottom:117.760000pt;}
.y88{bottom:120.512000pt;}
.y6e{bottom:120.672000pt;}
.yd6{bottom:129.312000pt;}
.yb2{bottom:130.272000pt;}
.yfe{bottom:131.072000pt;}
.y3e{bottom:137.146667pt;}
.y6d{bottom:140.026667pt;}
.yd5{bottom:148.826667pt;}
.yb1{bottom:150.426667pt;}
.y3d{bottom:156.666667pt;}
.y6c{bottom:159.386667pt;}
.yd4{bottom:168.186667pt;}
.yfd{bottom:169.786667pt;}
.yb0{bottom:170.426667pt;}
.y3c{bottom:176.026667pt;}
.y87{bottom:178.746667pt;}
.y6b{bottom:178.906667pt;}
.yd3{bottom:187.546667pt;}
.yfc{bottom:189.146667pt;}
.yae{bottom:190.426667pt;}
.y3b{bottom:195.386667pt;}
.y86{bottom:198.106667pt;}
.y6a{bottom:198.266667pt;}
.yd2{bottom:206.906667pt;}
.yfb{bottom:208.506667pt;}
.yac{bottom:210.586667pt;}
.y3a{bottom:214.746667pt;}
.y85{bottom:217.466667pt;}
.y69{bottom:217.626667pt;}
.yd1{bottom:226.426667pt;}
.yfa{bottom:228.026667pt;}
.y39{bottom:234.266667pt;}
.yab{bottom:236.186667pt;}
.y68{bottom:236.986667pt;}
.yd0{bottom:245.786667pt;}
.yf9{bottom:247.386667pt;}
.y38{bottom:253.626667pt;}
.yaa{bottom:255.706667pt;}
.y67{bottom:256.346667pt;}
.ycf{bottom:265.146667pt;}
.yf8{bottom:266.746667pt;}
.y37{bottom:272.986667pt;}
.ya9{bottom:275.066667pt;}
.y84{bottom:275.706667pt;}
.y66{bottom:275.866667pt;}
.yce{bottom:284.506667pt;}
.yf7{bottom:286.106667pt;}
.y36{bottom:292.346667pt;}
.ya8{bottom:294.426667pt;}
.y83{bottom:295.066667pt;}
.y65{bottom:295.226667pt;}
.ycd{bottom:303.866667pt;}
.yf6{bottom:305.626667pt;}
.y35{bottom:311.706667pt;}
.ya7{bottom:313.786667pt;}
.y64{bottom:314.586667pt;}
.ycc{bottom:318.426667pt;}
.yf5{bottom:324.986667pt;}
.y34{bottom:331.226667pt;}
.ya6{bottom:333.306667pt;}
.y63{bottom:333.946667pt;}
.ycb{bottom:338.426667pt;}
.yf4{bottom:344.386667pt;}
.y33{bottom:349.026667pt;}
.ya5{bottom:352.706667pt;}
.y82{bottom:353.346667pt;}
.y62{bottom:353.506667pt;}
.yca{bottom:358.466667pt;}
.y32{bottom:363.106667pt;}
.yf3{bottom:363.746667pt;}
.ya4{bottom:372.066667pt;}
.y81{bottom:372.706667pt;}
.y61{bottom:372.866667pt;}
.yc9{bottom:378.626667pt;}
.y31{bottom:378.786667pt;}
.yf2{bottom:383.106667pt;}
.ya3{bottom:391.426667pt;}
.y80{bottom:392.066667pt;}
.y60{bottom:392.226667pt;}
.y30{bottom:395.426667pt;}
.yc8{bottom:398.626667pt;}
.yf1{bottom:402.626667pt;}
.y2f{bottom:410.786667pt;}
.y5f{bottom:411.586667pt;}
.yc7{bottom:418.786667pt;}
.yf0{bottom:421.986667pt;}
.y2e{bottom:426.146667pt;}
.ya2{bottom:430.306667pt;}
.y5e{bottom:430.946667pt;}
.yef{bottom:441.346667pt;}
.y2d{bottom:441.506667pt;}
.yc6{bottom:444.386667pt;}
.ya1{bottom:449.666667pt;}
.y7f{bottom:450.306667pt;}
.y5d{bottom:450.466667pt;}
.y2c{bottom:456.706667pt;}
.yee{bottom:460.706667pt;}
.yc5{bottom:463.746667pt;}
.ya0{bottom:469.026667pt;}
.y7e{bottom:469.666667pt;}
.y5c{bottom:469.826667pt;}
.y2b{bottom:472.066667pt;}
.yed{bottom:480.226667pt;}
.yc4{bottom:483.266667pt;}
.y2a{bottom:487.426667pt;}
.y9f{bottom:488.386667pt;}
.y5b{bottom:489.186667pt;}
.yec{bottom:494.626667pt;}
.yc3{bottom:502.626667pt;}
.y29{bottom:502.786667pt;}
.y9e{bottom:507.906667pt;}
.y5a{bottom:508.546667pt;}
.yeb{bottom:514.626667pt;}
.y28{bottom:518.146667pt;}
.yc2{bottom:521.986667pt;}
.y9d{bottom:527.266667pt;}
.y7d{bottom:527.906667pt;}
.y59{bottom:528.066667pt;}
.y27{bottom:533.506667pt;}
.yea{bottom:534.626667pt;}
.yc1{bottom:541.346667pt;}
.y9c{bottom:546.626667pt;}
.y7c{bottom:547.266667pt;}
.y58{bottom:547.426667pt;}
.y26{bottom:548.706667pt;}
.ye9{bottom:554.786667pt;}
.yc0{bottom:560.706667pt;}
.y25{bottom:564.066667pt;}
.y9b{bottom:565.986667pt;}
.y7b{bottom:566.626667pt;}
.y57{bottom:566.786667pt;}
.ye8{bottom:574.813333pt;}
.y24{bottom:579.453333pt;}
.ybf{bottom:580.253333pt;}
.y9a{bottom:585.373333pt;}
.y56{bottom:586.173333pt;}
.y23{bottom:594.813333pt;}
.ye7{bottom:594.973333pt;}
.ybe{bottom:599.613333pt;}
.y99{bottom:604.893333pt;}
.y55{bottom:605.533333pt;}
.y22{bottom:610.173333pt;}
.ybd{bottom:618.973333pt;}
.ye6{bottom:620.573333pt;}
.y98{bottom:624.253333pt;}
.y7a{bottom:624.893333pt;}
.y54{bottom:625.053333pt;}
.y21{bottom:625.533333pt;}
.ybc{bottom:633.373333pt;}
.ye5{bottom:639.933333pt;}
.y20{bottom:640.733333pt;}
.y97{bottom:643.613333pt;}
.y79{bottom:644.253333pt;}
.y53{bottom:644.413333pt;}
.ybb{bottom:653.533333pt;}
.y1f{bottom:656.093333pt;}
.ye4{bottom:659.453333pt;}
.y96{bottom:662.973333pt;}
.y78{bottom:663.613333pt;}
.y52{bottom:663.773333pt;}
.y1e{bottom:671.453333pt;}
.yba{bottom:673.533333pt;}
.ye3{bottom:678.813333pt;}
.y95{bottom:682.493333pt;}
.y51{bottom:683.133333pt;}
.y1d{bottom:686.813333pt;}
.yb9{bottom:693.533333pt;}
.ye2{bottom:698.173333pt;}
.y94{bottom:701.853333pt;}
.y1c{bottom:702.173333pt;}
.y50{bottom:702.493333pt;}
.yb8{bottom:713.693333pt;}
.y1b{bottom:717.373333pt;}
.ye1{bottom:717.533333pt;}
.y93{bottom:721.213333pt;}
.y77{bottom:721.853333pt;}
.y4f{bottom:722.013333pt;}
.y1a{bottom:732.733333pt;}
.yb7{bottom:733.693333pt;}
.ye0{bottom:737.053333pt;}
.y92{bottom:740.573333pt;}
.y76{bottom:741.213333pt;}
.y4e{bottom:741.373333pt;}
.y19{bottom:748.093333pt;}
.yb6{bottom:753.853333pt;}
.ydf{bottom:756.413333pt;}
.y91{bottom:759.933333pt;}
.y4d{bottom:760.733333pt;}
.y18{bottom:763.453333pt;}
.yb5{bottom:773.853333pt;}
.yde{bottom:776.093333pt;}
.y17{bottom:778.813333pt;}
.y90{bottom:779.453333pt;}
.y4c{bottom:780.093333pt;}
.y16{bottom:794.213333pt;}
.ydd{bottom:795.653333pt;}
.y8f{bottom:798.853333pt;}
.y75{bottom:799.493333pt;}
.y4b{bottom:799.653333pt;}
.y15{bottom:809.413333pt;}
.ydc{bottom:810.053333pt;}
.y8e{bottom:818.213333pt;}
.y74{bottom:818.853333pt;}
.y4a{bottom:819.013333pt;}
.y14{bottom:824.773333pt;}
.ydb{bottom:830.053333pt;}
.y8d{bottom:837.573333pt;}
.y73{bottom:838.213333pt;}
.y49{bottom:838.373333pt;}
.y13{bottom:844.773333pt;}
.yda{bottom:850.213333pt;}
.y8c{bottom:854.053333pt;}
.y12{bottom:855.813333pt;}
.y8b{bottom:857.093333pt;}
.y48{bottom:857.733333pt;}
.yd9{bottom:870.213333pt;}
.y11{bottom:872.293333pt;}
.y8a{bottom:873.733333pt;}
.y89{bottom:876.773333pt;}
.y47{bottom:877.093333pt;}
.yd8{bottom:890.213333pt;}
.y10{bottom:891.493333pt;}
.y72{bottom:896.453333pt;}
.y46{bottom:896.613333pt;}
.yf{bottom:914.533333pt;}
.y45{bottom:915.973333pt;}
.y71{bottom:916.133333pt;}
.y70{bottom:926.053333pt;}
.y44{bottom:935.333333pt;}
.ye{bottom:936.293333pt;}
.yd{bottom:952.933333pt;}
.y43{bottom:954.693333pt;}
.yc{bottom:968.293333pt;}
.y42{bottom:974.213333pt;}
.yb{bottom:983.653333pt;}
.y41{bottom:993.573333pt;}
.ya{bottom:998.853333pt;}
.y40{bottom:1012.933333pt;}
.y9{bottom:1014.213333pt;}
.y3{bottom:1053.440000pt;}
.y1{bottom:1060.480000pt;}
.y6{bottom:1074.720000pt;}
.h2{height:5.440000pt;}
.h4{height:18.400000pt;}
.h17{height:19.360000pt;}
.h19{height:19.392000pt;}
.h18{height:19.520000pt;}
.hd{height:24.131250pt;}
.h12{height:29.940625pt;}
.h7{height:35.342500pt;}
.h8{height:37.090625pt;}
.h9{height:37.479688pt;}
.h6{height:38.672812pt;}
.h3{height:41.112500pt;}
.h13{height:41.543750pt;}
.he{height:42.691250pt;}
.h10{height:43.108125pt;}
.hf{height:43.782500pt;}
.h5{height:44.965000pt;}
.hc{height:47.310625pt;}
.h11{height:48.530000pt;}
.ha{height:48.768750pt;}
.h15{height:49.622500pt;}
.hb{height:56.092500pt;}
.h16{height:61.782500pt;}
.h14{height:94.422500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:33.440000pt;}
.wa{width:73.632000pt;}
.wd{width:74.272000pt;}
.w7{width:81.760000pt;}
.w8{width:86.720000pt;}
.w9{width:92.352000pt;}
.we{width:99.520000pt;}
.w10{width:112.512000pt;}
.w6{width:129.472000pt;}
.wf{width:150.586667pt;}
.wc{width:157.786667pt;}
.wb{width:196.866667pt;}
.w4{width:253.506667pt;}
.w2{width:612.320000pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x4{left:2.720000pt;}
.x18{left:6.880000pt;}
.x2{left:9.632000pt;}
.x1e{left:17.280000pt;}
.x2c{left:21.760000pt;}
.x2d{left:23.680000pt;}
.x2a{left:27.360000pt;}
.x1f{left:29.786667pt;}
.x2b{left:30.720000pt;}
.x23{left:32.960000pt;}
.x20{left:34.240000pt;}
.x21{left:36.000000pt;}
.x22{left:38.906667pt;}
.x1{left:96.000000pt;}
.x8{left:97.631988pt;}
.xe{left:99.071988pt;}
.x3{left:108.832000pt;}
.x32{left:114.911988pt;}
.x9{left:117.631988pt;}
.x7{left:120.031988pt;}
.x33{left:133.786655pt;}
.xf{left:144.666655pt;}
.x5{left:160.026667pt;}
.xc{left:181.466655pt;}
.x16{left:183.386655pt;}
.x24{left:214.426655pt;}
.xa{left:216.026655pt;}
.x25{left:219.386667pt;}
.x2f{left:250.946655pt;}
.x27{left:253.506655pt;}
.x1a{left:261.026655pt;}
.x30{left:265.186667pt;}
.x1b{left:269.986667pt;}
.xb{left:287.746655pt;}
.x17{left:291.106667pt;}
.x2e{left:295.746655pt;}
.x28{left:309.826667pt;}
.x31{left:317.986655pt;}
.x13{left:339.746655pt;}
.x15{left:342.466655pt;}
.x10{left:353.986655pt;}
.x1c{left:357.346667pt;}
.xd{left:373.693321pt;}
.x29{left:384.733333pt;}
.x11{left:407.133321pt;}
.x26{left:416.893333pt;}
.x19{left:421.213333pt;}
.x14{left:423.293321pt;}
.x12{left:434.333321pt;}
.x1d{left:450.493333pt;}
}




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