
    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_f1d77c3b55dab8c3f61ff073.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_1595231195eb728ece5ab2fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_bd9bb3e60819cc53c9ab6cbf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_131f64e74415b9d625fb3346.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_9e457aec41a9518eae5b42d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_edbeda26f8e80bb9ab33ecb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_1790408f3e02e6e3fa0814e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_23b53f6b1ea40c5382a92f9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.618000px;}
.ls11{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.597600px;}
.lsa{letter-spacing:-0.529200px;}
.lsb{letter-spacing:-0.501000px;}
.ls9{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.247800px;}
.lse{letter-spacing:-0.109200px;}
.ls8{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.023040px;}
.lsf{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.241800px;}
.ls13{letter-spacing:0.316800px;}
.ls12{letter-spacing:0.328200px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.385800px;}
.ls2{letter-spacing:0.478080px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws8{word-spacing:-59.760000px;}
.ws11{word-spacing:-14.901000px;}
.ws12{word-spacing:-14.889600px;}
.ws13{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.ws10{word-spacing:-14.463600px;}
.ws2{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.147200px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.060000px;}
.wsc{word-spacing:-10.854600px;}
.ws9{word-spacing:-10.612800px;}
.wse{word-spacing:-10.111800px;}
.ws5{word-spacing:-9.187200px;}
.wsd{word-spacing:-9.092400px;}
.ws6{word-spacing:-7.920000px;}
.wsa{word-spacing:-7.884000px;}
.wsb{word-spacing:0.000000px;}
._23{margin-left:-10.972800px;}
._26{margin-left:-4.724880px;}
._d{margin-left:-3.351360px;}
._c{margin-left:-2.300160px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.341920px;}
._7{width:3.391200px;}
._9{width:4.498080px;}
._e{width:5.640000px;}
._1d{width:6.879840px;}
._18{width:7.888320px;}
._20{width:9.019200px;}
._a{width:10.039680px;}
._11{width:11.653200px;}
._25{width:12.986160px;}
._17{width:14.641200px;}
._8{width:15.836400px;}
._15{width:17.517120px;}
._10{width:18.533040px;}
._1c{width:19.603440px;}
._16{width:20.624160px;}
._27{width:21.806880px;}
._12{width:22.835760px;}
._13{width:24.113280px;}
._24{width:25.237440px;}
._2b{width:26.382960px;}
._1a{width:27.556800px;}
._19{width:28.684800px;}
._1b{width:30.590880px;}
._21{width:32.325120px;}
._22{width:33.338160px;}
._2a{width:34.340880px;}
._29{width:35.570880px;}
._2c{width:36.763200px;}
._14{width:38.067120px;}
._28{width:39.367440px;}
._1e{width:47.365440px;}
._b{width:53.963280px;}
._f{width:55.413120px;}
._0{width:75.000000px;}
._30{width:90.777600px;}
._2e{width:151.420320px;}
._2f{width:152.570160px;}
._3{width:181.620000px;}
._5{width:197.349840px;}
._6{width:202.852800px;}
._2d{width:204.091200px;}
._1f{width:1056.007200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y54{bottom:-22.890000px;}
.y53{bottom:-2.160000px;}
.y0{bottom:0.000000px;}
.y52{bottom:16.560000px;}
.y51{bottom:27.180000px;}
.y50{bottom:37.620000px;}
.y4f{bottom:48.240000px;}
.y7{bottom:56.520000px;}
.y4e{bottom:65.880000px;}
.y6{bottom:70.596000px;}
.y4d{bottom:110.340000px;}
.yda{bottom:113.076000px;}
.yb0{bottom:113.436000px;}
.y11e{bottom:114.156000px;}
.y84{bottom:115.596000px;}
.y99{bottom:119.556000px;}
.ya4{bottom:120.636000px;}
.y3e{bottom:125.496000px;}
.yef{bottom:127.116000px;}
.y4c{bottom:129.780000px;}
.yd9{bottom:135.396000px;}
.yaf{bottom:135.576000px;}
.y11d{bottom:136.296000px;}
.y83{bottom:137.916000px;}
.y98{bottom:141.876000px;}
.ya3{bottom:142.956000px;}
.y4b{bottom:143.820000px;}
.ybd{bottom:145.296000px;}
.y3d{bottom:147.816000px;}
.yee{bottom:149.436000px;}
.yd8{bottom:157.530000px;}
.y4a{bottom:157.860000px;}
.yae{bottom:157.890000px;}
.y11c{bottom:158.610000px;}
.y82{bottom:160.050000px;}
.y97{bottom:164.010000px;}
.ya2{bottom:165.090000px;}
.ybc{bottom:167.610000px;}
.y3c{bottom:169.950000px;}
.yed{bottom:171.570000px;}
.y49{bottom:171.900000px;}
.yd7{bottom:179.850000px;}
.yad{bottom:180.030000px;}
.y11b{bottom:180.930000px;}
.y81{bottom:182.370000px;}
.y48{bottom:185.940000px;}
.y96{bottom:186.330000px;}
.ya1{bottom:187.410000px;}
.y3b{bottom:189.570000px;}
.ybb{bottom:189.750000px;}
.yec{bottom:193.890000px;}
.y47{bottom:200.160000px;}
.yd6{bottom:201.990000px;}
.yac{bottom:202.350000px;}
.y11a{bottom:203.070000px;}
.y80{bottom:204.510000px;}
.y3a{bottom:208.650000px;}
.ya0{bottom:209.730000px;}
.yba{bottom:212.070000px;}
.y46{bottom:215.460000px;}
.yeb{bottom:216.030000px;}
.yd5{bottom:224.310000px;}
.yab{bottom:224.670000px;}
.y119{bottom:225.390000px;}
.y39{bottom:226.290000px;}
.y7f{bottom:226.830000px;}
.y95{bottom:230.790000px;}
.y9f{bottom:231.870000px;}
.yb9{bottom:234.210000px;}
.y45{bottom:234.900000px;}
.yea{bottom:238.350000px;}
.y38{bottom:243.750000px;}
.yd4{bottom:246.630000px;}
.yaa{bottom:246.810000px;}
.y118{bottom:247.530000px;}
.y44{bottom:248.940000px;}
.y7e{bottom:249.150000px;}
.y94{bottom:253.110000px;}
.y9e{bottom:254.190000px;}
.yb8{bottom:256.530000px;}
.ye9{bottom:260.670000px;}
.y37{bottom:261.390000px;}
.y43{bottom:263.025000px;}
.yd3{bottom:268.770000px;}
.ya9{bottom:269.130000px;}
.y117{bottom:269.850000px;}
.y7d{bottom:271.290000px;}
.y11f{bottom:271.470000px;}
.y93{bottom:271.650000px;}
.yfc{bottom:275.250000px;}
.y9d{bottom:276.330000px;}
.y42{bottom:277.065000px;}
.yb7{bottom:278.850000px;}
.y36{bottom:279.030000px;}
.ye8{bottom:282.810000px;}
.yd2{bottom:291.090000px;}
.y41{bottom:291.105000px;}
.ya8{bottom:291.270000px;}
.y116{bottom:292.170000px;}
.y7c{bottom:293.610000px;}
.y35{bottom:296.490000px;}
.yfb{bottom:297.570000px;}
.y9c{bottom:298.650000px;}
.yb6{bottom:300.990000px;}
.ye7{bottom:305.130000px;}
.y40{bottom:305.505000px;}
.yd1{bottom:313.230000px;}
.ya7{bottom:313.590000px;}
.y34{bottom:314.130000px;}
.y115{bottom:314.310000px;}
.y7b{bottom:315.750000px;}
.yfa{bottom:319.710000px;}
.y9b{bottom:320.970000px;}
.yb5{bottom:323.310000px;}
.ye6{bottom:327.270000px;}
.y33{bottom:331.770000px;}
.yd0{bottom:335.550000px;}
.ya6{bottom:335.730000px;}
.y114{bottom:336.675000px;}
.y7a{bottom:338.115000px;}
.y9a{bottom:339.555000px;}
.yf9{bottom:342.075000px;}
.yb4{bottom:345.495000px;}
.y32{bottom:349.275000px;}
.ye5{bottom:349.635000px;}
.ya5{bottom:354.675000px;}
.ycf{bottom:357.915000px;}
.yc4{bottom:358.095000px;}
.y113{bottom:358.815000px;}
.y79{bottom:360.255000px;}
.yf8{bottom:364.395000px;}
.y31{bottom:366.915000px;}
.yb3{bottom:367.815000px;}
.ye4{bottom:371.775000px;}
.yce{bottom:380.055000px;}
.yc3{bottom:380.415000px;}
.y112{bottom:381.135000px;}
.y78{bottom:382.575000px;}
.y30{bottom:384.555000px;}
.yf7{bottom:386.535000px;}
.yb2{bottom:390.135000px;}
.ye3{bottom:394.095000px;}
.y2f{bottom:402.195000px;}
.ycd{bottom:402.375000px;}
.yc2{bottom:402.555000px;}
.y111{bottom:403.455000px;}
.y77{bottom:404.895000px;}
.yb1{bottom:408.855000px;}
.ye2{bottom:416.415000px;}
.y2e{bottom:419.655000px;}
.ycc{bottom:424.515000px;}
.yc1{bottom:424.875000px;}
.y110{bottom:425.595000px;}
.y76{bottom:427.035000px;}
.yf6{bottom:430.995000px;}
.y2d{bottom:437.295000px;}
.ye1{bottom:438.555000px;}
.ycb{bottom:446.835000px;}
.yc0{bottom:447.015000px;}
.y10f{bottom:447.915000px;}
.y75{bottom:449.355000px;}
.yf5{bottom:453.315000px;}
.y2c{bottom:454.935000px;}
.ye0{bottom:460.875000px;}
.yca{bottom:468.975000px;}
.ybf{bottom:469.335000px;}
.y10e{bottom:470.055000px;}
.y74{bottom:471.495000px;}
.y2b{bottom:472.395000px;}
.yf4{bottom:475.635000px;}
.ydf{bottom:483.015000px;}
.ybe{bottom:488.055000px;}
.y2a{bottom:490.035000px;}
.yc9{bottom:491.295000px;}
.y10d{bottom:492.375000px;}
.y73{bottom:493.815000px;}
.yf3{bottom:497.775000px;}
.yde{bottom:505.335000px;}
.y29{bottom:507.675000px;}
.yc8{bottom:513.615000px;}
.y10c{bottom:514.515000px;}
.y72{bottom:516.135000px;}
.yf2{bottom:520.095000px;}
.y28{bottom:527.475000px;}
.ydd{bottom:527.655000px;}
.yc7{bottom:535.755000px;}
.y10b{bottom:536.835000px;}
.y71{bottom:538.275000px;}
.yf1{bottom:542.235000px;}
.y27{bottom:545.115000px;}
.ydc{bottom:549.795000px;}
.yc6{bottom:558.075000px;}
.y10a{bottom:559.155000px;}
.y70{bottom:560.595000px;}
.yf0{bottom:560.955000px;}
.y26{bottom:562.575000px;}
.ydb{bottom:568.515000px;}
.yc5{bottom:576.615000px;}
.y25{bottom:580.215000px;}
.y109{bottom:581.295000px;}
.y6f{bottom:582.735000px;}
.y24{bottom:597.855000px;}
.y108{bottom:603.645000px;}
.y6e{bottom:605.085000px;}
.y3f{bottom:608.505000px;}
.y23{bottom:615.345000px;}
.y107{bottom:625.785000px;}
.y6d{bottom:627.405000px;}
.y22{bottom:632.985000px;}
.y106{bottom:648.105000px;}
.y6c{bottom:649.545000px;}
.y21{bottom:650.625000px;}
.y20{bottom:668.265000px;}
.y105{bottom:670.425000px;}
.y6b{bottom:671.865000px;}
.y1f{bottom:685.725000px;}
.y104{bottom:692.565000px;}
.y6a{bottom:694.005000px;}
.y1e{bottom:703.365000px;}
.y103{bottom:714.885000px;}
.y69{bottom:716.325000px;}
.y1d{bottom:721.005000px;}
.y102{bottom:737.025000px;}
.y1c{bottom:738.465000px;}
.y1b{bottom:756.105000px;}
.y101{bottom:759.345000px;}
.y68{bottom:760.785000px;}
.y1a{bottom:773.745000px;}
.y100{bottom:781.485000px;}
.y67{bottom:783.105000px;}
.y19{bottom:791.205000px;}
.yff{bottom:803.805000px;}
.y66{bottom:805.245000px;}
.y18{bottom:808.845000px;}
.yfe{bottom:826.125000px;}
.y17{bottom:826.485000px;}
.y65{bottom:827.565000px;}
.y16{bottom:843.945000px;}
.yfd{bottom:848.265000px;}
.y64{bottom:849.705000px;}
.y15{bottom:861.585000px;}
.y92{bottom:870.630000px;}
.y63{bottom:872.070000px;}
.y14{bottom:879.270000px;}
.y91{bottom:892.770000px;}
.y62{bottom:894.390000px;}
.y13{bottom:896.910000px;}
.y12{bottom:914.370000px;}
.y90{bottom:915.090000px;}
.y61{bottom:916.530000px;}
.y11{bottom:932.190000px;}
.y8f{bottom:937.410000px;}
.y60{bottom:938.850000px;}
.y10{bottom:953.970000px;}
.y8e{bottom:959.550000px;}
.y5f{bottom:960.990000px;}
.yf{bottom:970.170000px;}
.y8d{bottom:981.870000px;}
.y5e{bottom:983.310000px;}
.ye{bottom:989.610000px;}
.y8c{bottom:1004.010000px;}
.y5d{bottom:1005.450000px;}
.yd{bottom:1009.050000px;}
.y8b{bottom:1026.330000px;}
.y5c{bottom:1027.770000px;}
.yc{bottom:1028.310000px;}
.yb{bottom:1046.850000px;}
.y8a{bottom:1048.650000px;}
.y5b{bottom:1050.090000px;}
.ya{bottom:1062.510000px;}
.y89{bottom:1070.790000px;}
.y5a{bottom:1072.230000px;}
.y9{bottom:1085.370000px;}
.y88{bottom:1093.110000px;}
.y59{bottom:1094.550000px;}
.y8{bottom:1108.230000px;}
.y87{bottom:1115.250000px;}
.y58{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y86{bottom:1137.570000px;}
.y57{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y85{bottom:1157.400000px;}
.y3{bottom:1162.980000px;}
.y56{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y55{bottom:1197.540000px;}
.hb{height:30.480469px;}
.h7{height:33.480703px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.h5{height:65.837812px;}
.h9{height:318.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:94.494000px;}
.x1{left:108.035987px;}
.xa{left:113.076000px;}
.x5{left:128.375987px;}
.x1b{left:150.509987px;}
.x2{left:157.529987px;}
.x9{left:161.129987px;}
.x18{left:225.389987px;}
.x3{left:249.329987px;}
.x14{left:263.009987px;}
.x16{left:277.994987px;}
.xf{left:282.674987px;}
.xe{left:303.014987px;}
.x11{left:304.274987px;}
.x13{left:309.494987px;}
.x1a{left:313.814987px;}
.x8{left:335.774987px;}
.x7{left:347.654987px;}
.x6{left:370.694987px;}
.x4{left:446.474987px;}
.xc{left:561.524987px;}
.x15{left:642.344987px;}
.x17{left:645.584987px;}
.x19{left:649.004987px;}
.xd{left:655.889987px;}
.x10{left:658.049987px;}
.x12{left:678.749987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.549333pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.531200pt;}
.lsa{letter-spacing:-0.470400pt;}
.lsb{letter-spacing:-0.445333pt;}
.ls9{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.220267pt;}
.lse{letter-spacing:-0.097067pt;}
.ls8{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.020480pt;}
.lsf{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.214933pt;}
.ls13{letter-spacing:0.281600pt;}
.ls12{letter-spacing:0.291733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.342933pt;}
.ls2{letter-spacing:0.424960pt;}
.wsf{word-spacing:-58.880000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws11{word-spacing:-13.245333pt;}
.ws12{word-spacing:-13.235200pt;}
.ws13{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.856533pt;}
.ws2{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.686400pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsc{word-spacing:-9.648533pt;}
.ws9{word-spacing:-9.433600pt;}
.wse{word-spacing:-8.988267pt;}
.ws5{word-spacing:-8.166400pt;}
.wsd{word-spacing:-8.082133pt;}
.ws6{word-spacing:-7.040000pt;}
.wsa{word-spacing:-7.008000pt;}
.wsb{word-spacing:0.000000pt;}
._23{margin-left:-9.753600pt;}
._26{margin-left:-4.199893pt;}
._d{margin-left:-2.978987pt;}
._c{margin-left:-2.044587pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.081707pt;}
._7{width:3.014400pt;}
._9{width:3.998293pt;}
._e{width:5.013333pt;}
._1d{width:6.115413pt;}
._18{width:7.011840pt;}
._20{width:8.017067pt;}
._a{width:8.924160pt;}
._11{width:10.358400pt;}
._25{width:11.543253pt;}
._17{width:13.014400pt;}
._8{width:14.076800pt;}
._15{width:15.570773pt;}
._10{width:16.473813pt;}
._1c{width:17.425280pt;}
._16{width:18.332587pt;}
._27{width:19.383893pt;}
._12{width:20.298453pt;}
._13{width:21.434027pt;}
._24{width:22.433280pt;}
._2b{width:23.451520pt;}
._1a{width:24.494933pt;}
._19{width:25.497600pt;}
._1b{width:27.191893pt;}
._21{width:28.733440pt;}
._22{width:29.633920pt;}
._2a{width:30.525227pt;}
._29{width:31.618560pt;}
._2c{width:32.678400pt;}
._14{width:33.837440pt;}
._28{width:34.993280pt;}
._1e{width:42.102613pt;}
._b{width:47.967360pt;}
._f{width:49.256107pt;}
._0{width:66.666667pt;}
._30{width:80.691200pt;}
._2e{width:134.595840pt;}
._2f{width:135.617920pt;}
._3{width:161.440000pt;}
._5{width:175.422080pt;}
._6{width:180.313600pt;}
._2d{width:181.414400pt;}
._1f{width:938.673067pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y54{bottom:-20.346667pt;}
.y53{bottom:-1.920000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:14.720000pt;}
.y51{bottom:24.160000pt;}
.y50{bottom:33.440000pt;}
.y4f{bottom:42.880000pt;}
.y7{bottom:50.240000pt;}
.y4e{bottom:58.560000pt;}
.y6{bottom:62.752000pt;}
.y4d{bottom:98.080000pt;}
.yda{bottom:100.512000pt;}
.yb0{bottom:100.832000pt;}
.y11e{bottom:101.472000pt;}
.y84{bottom:102.752000pt;}
.y99{bottom:106.272000pt;}
.ya4{bottom:107.232000pt;}
.y3e{bottom:111.552000pt;}
.yef{bottom:112.992000pt;}
.y4c{bottom:115.360000pt;}
.yd9{bottom:120.352000pt;}
.yaf{bottom:120.512000pt;}
.y11d{bottom:121.152000pt;}
.y83{bottom:122.592000pt;}
.y98{bottom:126.112000pt;}
.ya3{bottom:127.072000pt;}
.y4b{bottom:127.840000pt;}
.ybd{bottom:129.152000pt;}
.y3d{bottom:131.392000pt;}
.yee{bottom:132.832000pt;}
.yd8{bottom:140.026667pt;}
.y4a{bottom:140.320000pt;}
.yae{bottom:140.346667pt;}
.y11c{bottom:140.986667pt;}
.y82{bottom:142.266667pt;}
.y97{bottom:145.786667pt;}
.ya2{bottom:146.746667pt;}
.ybc{bottom:148.986667pt;}
.y3c{bottom:151.066667pt;}
.yed{bottom:152.506667pt;}
.y49{bottom:152.800000pt;}
.yd7{bottom:159.866667pt;}
.yad{bottom:160.026667pt;}
.y11b{bottom:160.826667pt;}
.y81{bottom:162.106667pt;}
.y48{bottom:165.280000pt;}
.y96{bottom:165.626667pt;}
.ya1{bottom:166.586667pt;}
.y3b{bottom:168.506667pt;}
.ybb{bottom:168.666667pt;}
.yec{bottom:172.346667pt;}
.y47{bottom:177.920000pt;}
.yd6{bottom:179.546667pt;}
.yac{bottom:179.866667pt;}
.y11a{bottom:180.506667pt;}
.y80{bottom:181.786667pt;}
.y3a{bottom:185.466667pt;}
.ya0{bottom:186.426667pt;}
.yba{bottom:188.506667pt;}
.y46{bottom:191.520000pt;}
.yeb{bottom:192.026667pt;}
.yd5{bottom:199.386667pt;}
.yab{bottom:199.706667pt;}
.y119{bottom:200.346667pt;}
.y39{bottom:201.146667pt;}
.y7f{bottom:201.626667pt;}
.y95{bottom:205.146667pt;}
.y9f{bottom:206.106667pt;}
.yb9{bottom:208.186667pt;}
.y45{bottom:208.800000pt;}
.yea{bottom:211.866667pt;}
.y38{bottom:216.666667pt;}
.yd4{bottom:219.226667pt;}
.yaa{bottom:219.386667pt;}
.y118{bottom:220.026667pt;}
.y44{bottom:221.280000pt;}
.y7e{bottom:221.466667pt;}
.y94{bottom:224.986667pt;}
.y9e{bottom:225.946667pt;}
.yb8{bottom:228.026667pt;}
.ye9{bottom:231.706667pt;}
.y37{bottom:232.346667pt;}
.y43{bottom:233.800000pt;}
.yd3{bottom:238.906667pt;}
.ya9{bottom:239.226667pt;}
.y117{bottom:239.866667pt;}
.y7d{bottom:241.146667pt;}
.y11f{bottom:241.306667pt;}
.y93{bottom:241.466667pt;}
.yfc{bottom:244.666667pt;}
.y9d{bottom:245.626667pt;}
.y42{bottom:246.280000pt;}
.yb7{bottom:247.866667pt;}
.y36{bottom:248.026667pt;}
.ye8{bottom:251.386667pt;}
.yd2{bottom:258.746667pt;}
.y41{bottom:258.760000pt;}
.ya8{bottom:258.906667pt;}
.y116{bottom:259.706667pt;}
.y7c{bottom:260.986667pt;}
.y35{bottom:263.546667pt;}
.yfb{bottom:264.506667pt;}
.y9c{bottom:265.466667pt;}
.yb6{bottom:267.546667pt;}
.ye7{bottom:271.226667pt;}
.y40{bottom:271.560000pt;}
.yd1{bottom:278.426667pt;}
.ya7{bottom:278.746667pt;}
.y34{bottom:279.226667pt;}
.y115{bottom:279.386667pt;}
.y7b{bottom:280.666667pt;}
.yfa{bottom:284.186667pt;}
.y9b{bottom:285.306667pt;}
.yb5{bottom:287.386667pt;}
.ye6{bottom:290.906667pt;}
.y33{bottom:294.906667pt;}
.yd0{bottom:298.266667pt;}
.ya6{bottom:298.426667pt;}
.y114{bottom:299.266667pt;}
.y7a{bottom:300.546667pt;}
.y9a{bottom:301.826667pt;}
.yf9{bottom:304.066667pt;}
.yb4{bottom:307.106667pt;}
.y32{bottom:310.466667pt;}
.ye5{bottom:310.786667pt;}
.ya5{bottom:315.266667pt;}
.ycf{bottom:318.146667pt;}
.yc4{bottom:318.306667pt;}
.y113{bottom:318.946667pt;}
.y79{bottom:320.226667pt;}
.yf8{bottom:323.906667pt;}
.y31{bottom:326.146667pt;}
.yb3{bottom:326.946667pt;}
.ye4{bottom:330.466667pt;}
.yce{bottom:337.826667pt;}
.yc3{bottom:338.146667pt;}
.y112{bottom:338.786667pt;}
.y78{bottom:340.066667pt;}
.y30{bottom:341.826667pt;}
.yf7{bottom:343.586667pt;}
.yb2{bottom:346.786667pt;}
.ye3{bottom:350.306667pt;}
.y2f{bottom:357.506667pt;}
.ycd{bottom:357.666667pt;}
.yc2{bottom:357.826667pt;}
.y111{bottom:358.626667pt;}
.y77{bottom:359.906667pt;}
.yb1{bottom:363.426667pt;}
.ye2{bottom:370.146667pt;}
.y2e{bottom:373.026667pt;}
.ycc{bottom:377.346667pt;}
.yc1{bottom:377.666667pt;}
.y110{bottom:378.306667pt;}
.y76{bottom:379.586667pt;}
.yf6{bottom:383.106667pt;}
.y2d{bottom:388.706667pt;}
.ye1{bottom:389.826667pt;}
.ycb{bottom:397.186667pt;}
.yc0{bottom:397.346667pt;}
.y10f{bottom:398.146667pt;}
.y75{bottom:399.426667pt;}
.yf5{bottom:402.946667pt;}
.y2c{bottom:404.386667pt;}
.ye0{bottom:409.666667pt;}
.yca{bottom:416.866667pt;}
.ybf{bottom:417.186667pt;}
.y10e{bottom:417.826667pt;}
.y74{bottom:419.106667pt;}
.y2b{bottom:419.906667pt;}
.yf4{bottom:422.786667pt;}
.ydf{bottom:429.346667pt;}
.ybe{bottom:433.826667pt;}
.y2a{bottom:435.586667pt;}
.yc9{bottom:436.706667pt;}
.y10d{bottom:437.666667pt;}
.y73{bottom:438.946667pt;}
.yf3{bottom:442.466667pt;}
.yde{bottom:449.186667pt;}
.y29{bottom:451.266667pt;}
.yc8{bottom:456.546667pt;}
.y10c{bottom:457.346667pt;}
.y72{bottom:458.786667pt;}
.yf2{bottom:462.306667pt;}
.y28{bottom:468.866667pt;}
.ydd{bottom:469.026667pt;}
.yc7{bottom:476.226667pt;}
.y10b{bottom:477.186667pt;}
.y71{bottom:478.466667pt;}
.yf1{bottom:481.986667pt;}
.y27{bottom:484.546667pt;}
.ydc{bottom:488.706667pt;}
.yc6{bottom:496.066667pt;}
.y10a{bottom:497.026667pt;}
.y70{bottom:498.306667pt;}
.yf0{bottom:498.626667pt;}
.y26{bottom:500.066667pt;}
.ydb{bottom:505.346667pt;}
.yc5{bottom:512.546667pt;}
.y25{bottom:515.746667pt;}
.y109{bottom:516.706667pt;}
.y6f{bottom:517.986667pt;}
.y24{bottom:531.426667pt;}
.y108{bottom:536.573333pt;}
.y6e{bottom:537.853333pt;}
.y3f{bottom:540.893333pt;}
.y23{bottom:546.973333pt;}
.y107{bottom:556.253333pt;}
.y6d{bottom:557.693333pt;}
.y22{bottom:562.653333pt;}
.y106{bottom:576.093333pt;}
.y6c{bottom:577.373333pt;}
.y21{bottom:578.333333pt;}
.y20{bottom:594.013333pt;}
.y105{bottom:595.933333pt;}
.y6b{bottom:597.213333pt;}
.y1f{bottom:609.533333pt;}
.y104{bottom:615.613333pt;}
.y6a{bottom:616.893333pt;}
.y1e{bottom:625.213333pt;}
.y103{bottom:635.453333pt;}
.y69{bottom:636.733333pt;}
.y1d{bottom:640.893333pt;}
.y102{bottom:655.133333pt;}
.y1c{bottom:656.413333pt;}
.y1b{bottom:672.093333pt;}
.y101{bottom:674.973333pt;}
.y68{bottom:676.253333pt;}
.y1a{bottom:687.773333pt;}
.y100{bottom:694.653333pt;}
.y67{bottom:696.093333pt;}
.y19{bottom:703.293333pt;}
.yff{bottom:714.493333pt;}
.y66{bottom:715.773333pt;}
.y18{bottom:718.973333pt;}
.yfe{bottom:734.333333pt;}
.y17{bottom:734.653333pt;}
.y65{bottom:735.613333pt;}
.y16{bottom:750.173333pt;}
.yfd{bottom:754.013333pt;}
.y64{bottom:755.293333pt;}
.y15{bottom:765.853333pt;}
.y92{bottom:773.893333pt;}
.y63{bottom:775.173333pt;}
.y14{bottom:781.573333pt;}
.y91{bottom:793.573333pt;}
.y62{bottom:795.013333pt;}
.y13{bottom:797.253333pt;}
.y12{bottom:812.773333pt;}
.y90{bottom:813.413333pt;}
.y61{bottom:814.693333pt;}
.y11{bottom:828.613333pt;}
.y8f{bottom:833.253333pt;}
.y60{bottom:834.533333pt;}
.y10{bottom:847.973333pt;}
.y8e{bottom:852.933333pt;}
.y5f{bottom:854.213333pt;}
.yf{bottom:862.373333pt;}
.y8d{bottom:872.773333pt;}
.y5e{bottom:874.053333pt;}
.ye{bottom:879.653333pt;}
.y8c{bottom:892.453333pt;}
.y5d{bottom:893.733333pt;}
.yd{bottom:896.933333pt;}
.y8b{bottom:912.293333pt;}
.y5c{bottom:913.573333pt;}
.yc{bottom:914.053333pt;}
.yb{bottom:930.533333pt;}
.y8a{bottom:932.133333pt;}
.y5b{bottom:933.413333pt;}
.ya{bottom:944.453333pt;}
.y89{bottom:951.813333pt;}
.y5a{bottom:953.093333pt;}
.y9{bottom:964.773333pt;}
.y88{bottom:971.653333pt;}
.y59{bottom:972.933333pt;}
.y8{bottom:985.093333pt;}
.y87{bottom:991.333333pt;}
.y58{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y86{bottom:1011.173333pt;}
.y57{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y85{bottom:1028.800000pt;}
.y3{bottom:1033.760000pt;}
.y56{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y55{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.h7{height:29.760625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.h5{height:58.522500pt;}
.h9{height:282.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:83.994667pt;}
.x1{left:96.031988pt;}
.xa{left:100.512000pt;}
.x5{left:114.111988pt;}
.x1b{left:133.786655pt;}
.x2{left:140.026655pt;}
.x9{left:143.226655pt;}
.x18{left:200.346655pt;}
.x3{left:221.626655pt;}
.x14{left:233.786655pt;}
.x16{left:247.106655pt;}
.xf{left:251.266655pt;}
.xe{left:269.346655pt;}
.x11{left:270.466655pt;}
.x13{left:275.106655pt;}
.x1a{left:278.946655pt;}
.x8{left:298.466655pt;}
.x7{left:309.026655pt;}
.x6{left:329.506655pt;}
.x4{left:396.866655pt;}
.xc{left:499.133322pt;}
.x15{left:570.973322pt;}
.x17{left:573.853322pt;}
.x19{left:576.893322pt;}
.xd{left:583.013322pt;}
.x10{left:584.933322pt;}
.x12{left:603.333322pt;}
}




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