
    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_127c3b39d0d392d4c4b2eedc.woff')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_0bb1a315880f3cee1a06d137.woff')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_c729bf28892af100d4ad8353.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_5f36a1cf7a13062935f368ca.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4c6bfa0ff538e0ac8b26332c.woff')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_638de5e3a654950351557639.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_5c992eb1e2484950554930c7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_94ca95dc82e672b8ac2f9b1c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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);}
.v3{vertical-align:-84.420000px;}
.v1{vertical-align:-82.800000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls5{letter-spacing:33.984000px;}
.lsf{letter-spacing:126.000000px;}
.lsc{letter-spacing:183.036000px;}
.ls7{letter-spacing:197.976000px;}
.ls2{letter-spacing:1742.676000px;}
.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;}
}
.ws9{word-spacing:-18.576000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-12.060000px;}
.ws7{word-spacing:-10.440000px;}
.ws0{word-spacing:-0.063360px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.047040px;}
._7{margin-left:-5.256000px;}
._8{margin-left:-4.248000px;}
._9{margin-left:-3.026160px;}
._0{margin-left:-1.314720px;}
._2{width:1.100880px;}
._e{width:2.280000px;}
._1{width:3.298080px;}
._11{width:4.464000px;}
._1e{width:5.544000px;}
._5{width:6.552000px;}
._6{width:7.683120px;}
._f{width:8.712000px;}
._c{width:9.720000px;}
._d{width:10.725840px;}
._10{width:12.602160px;}
._4{width:14.520000px;}
._3{width:15.624000px;}
._1b{width:16.992000px;}
._14{width:19.656000px;}
._1a{width:20.736000px;}
._1c{width:21.744000px;}
._12{width:23.184000px;}
._13{width:24.459120px;}
._1d{width:25.776000px;}
._17{width:27.144000px;}
._a{width:28.656000px;}
._b{width:30.096000px;}
._15{width:31.176000px;}
._16{width:32.239680px;}
._20{width:33.480000px;}
._23{width:35.712000px;}
._24{width:37.398240px;}
._1f{width:38.949120px;}
._21{width:40.968000px;}
._22{width:42.333840px;}
._27{width:44.424000px;}
._28{width:45.432000px;}
._25{width:46.584000px;}
._26{width:48.293280px;}
._2b{width:89.098560px;}
._2a{width:90.162720px;}
._29{width:194.625840px;}
._19{width:197.976000px;}
._18{width:1659.156000px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(24,29,31);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.600000px;}
.ye8{bottom:3.780000px;}
.y9e{bottom:3.960000px;}
.yab{bottom:4.140000px;}
.y9a{bottom:22.680000px;}
.y9d{bottom:22.860000px;}
.yaa{bottom:23.040000px;}
.ya9{bottom:42.120000px;}
.y6{bottom:57.960000px;}
.ya8{bottom:61.020000px;}
.y5{bottom:79.236000px;}
.ya7{bottom:79.920000px;}
.ya6{bottom:99.000000px;}
.yc6{bottom:114.336000px;}
.ya5{bottom:117.900000px;}
.y61{bottom:118.656000px;}
.y125{bottom:119.556000px;}
.ybc{bottom:122.616000px;}
.ye6{bottom:123.336000px;}
.y108{bottom:124.056000px;}
.y104{bottom:125.136000px;}
.yb6{bottom:127.116000px;}
.y31{bottom:128.916000px;}
.yc5{bottom:135.036000px;}
.ya4{bottom:136.980000px;}
.y60{bottom:139.356000px;}
.y124{bottom:140.256000px;}
.y86{bottom:142.056000px;}
.ybb{bottom:143.316000px;}
.ye5{bottom:144.036000px;}
.y98{bottom:144.396000px;}
.y107{bottom:144.756000px;}
.y103{bottom:145.836000px;}
.yb5{bottom:147.816000px;}
.y30{bottom:149.616000px;}
.yc4{bottom:155.730000px;}
.ya3{bottom:155.880000px;}
.yba{bottom:159.690000px;}
.y5f{bottom:160.050000px;}
.y123{bottom:160.950000px;}
.y85{bottom:162.750000px;}
.yd6{bottom:164.010000px;}
.ye4{bottom:164.730000px;}
.y97{bottom:165.090000px;}
.y106{bottom:165.450000px;}
.y102{bottom:166.530000px;}
.yb4{bottom:168.510000px;}
.y2f{bottom:170.310000px;}
.ya2{bottom:174.780000px;}
.yc3{bottom:176.430000px;}
.y5e{bottom:180.750000px;}
.y122{bottom:181.650000px;}
.y84{bottom:183.450000px;}
.yd5{bottom:184.710000px;}
.ye3{bottom:185.070000px;}
.y96{bottom:186.150000px;}
.y101{bottom:187.230000px;}
.yb3{bottom:189.210000px;}
.y2e{bottom:190.650000px;}
.ya1{bottom:193.905000px;}
.yc2{bottom:196.770000px;}
.ye2{bottom:200.010000px;}
.y5d{bottom:201.450000px;}
.y121{bottom:202.350000px;}
.y83{bottom:204.150000px;}
.yd4{bottom:205.410000px;}
.y95{bottom:206.850000px;}
.y100{bottom:207.930000px;}
.yb2{bottom:209.910000px;}
.y2d{bottom:211.710000px;}
.ya0{bottom:212.805000px;}
.y5c{bottom:222.150000px;}
.y82{bottom:224.850000px;}
.yd3{bottom:226.110000px;}
.y94{bottom:227.550000px;}
.yff{bottom:228.630000px;}
.yb1{bottom:230.610000px;}
.y2c{bottom:232.410000px;}
.y5b{bottom:242.850000px;}
.y120{bottom:243.750000px;}
.y81{bottom:245.550000px;}
.yd2{bottom:246.810000px;}
.y93{bottom:248.250000px;}
.yfe{bottom:249.330000px;}
.yb0{bottom:251.310000px;}
.y2b{bottom:253.110000px;}
.y5a{bottom:263.550000px;}
.y11f{bottom:264.450000px;}
.y105{bottom:265.890000px;}
.y80{bottom:266.250000px;}
.yd1{bottom:267.510000px;}
.y92{bottom:268.950000px;}
.yaf{bottom:272.010000px;}
.y2a{bottom:273.810000px;}
.y59{bottom:284.250000px;}
.y11e{bottom:285.150000px;}
.y7f{bottom:286.950000px;}
.yfd{bottom:287.670000px;}
.yd0{bottom:288.210000px;}
.y91{bottom:289.650000px;}
.yae{bottom:292.350000px;}
.y29{bottom:294.510000px;}
.y58{bottom:304.590000px;}
.yb8{bottom:304.950000px;}
.y11d{bottom:305.850000px;}
.yad{bottom:307.290000px;}
.y7e{bottom:307.650000px;}
.ycf{bottom:308.910000px;}
.y90{bottom:310.350000px;}
.y28{bottom:314.850000px;}
.y57{bottom:325.290000px;}
.yb7{bottom:325.650000px;}
.y11c{bottom:326.550000px;}
.yfc{bottom:326.730000px;}
.y7d{bottom:328.350000px;}
.yce{bottom:329.610000px;}
.y8f{bottom:331.050000px;}
.y27{bottom:335.910000px;}
.y56{bottom:346.395000px;}
.y11b{bottom:347.295000px;}
.yfb{bottom:347.475000px;}
.y7c{bottom:349.095000px;}
.ycd{bottom:350.355000px;}
.y8e{bottom:351.795000px;}
.y26{bottom:356.655000px;}
.y55{bottom:367.095000px;}
.y11a{bottom:367.995000px;}
.yfa{bottom:368.175000px;}
.y7b{bottom:369.795000px;}
.ycc{bottom:371.055000px;}
.y8d{bottom:372.495000px;}
.y25{bottom:377.355000px;}
.y54{bottom:387.795000px;}
.y119{bottom:388.695000px;}
.yf9{bottom:388.875000px;}
.y7a{bottom:390.495000px;}
.ycb{bottom:391.755000px;}
.y8c{bottom:393.195000px;}
.y24{bottom:398.055000px;}
.y53{bottom:408.495000px;}
.y118{bottom:409.395000px;}
.yf8{bottom:409.575000px;}
.y79{bottom:411.195000px;}
.yca{bottom:412.455000px;}
.y8b{bottom:413.895000px;}
.y23{bottom:418.755000px;}
.y52{bottom:429.195000px;}
.y117{bottom:430.095000px;}
.yf7{bottom:430.275000px;}
.y78{bottom:431.895000px;}
.yc9{bottom:433.155000px;}
.y22{bottom:439.095000px;}
.yc8{bottom:449.535000px;}
.y51{bottom:449.895000px;}
.y116{bottom:450.795000px;}
.yf6{bottom:450.975000px;}
.y8a{bottom:452.235000px;}
.y77{bottom:452.595000px;}
.y21{bottom:460.155000px;}
.ye1{bottom:463.215000px;}
.yb9{bottom:470.235000px;}
.y50{bottom:470.595000px;}
.y115{bottom:471.495000px;}
.yf5{bottom:471.675000px;}
.y76{bottom:473.295000px;}
.y20{bottom:480.855000px;}
.ye0{bottom:483.915000px;}
.y89{bottom:490.935000px;}
.y4f{bottom:491.295000px;}
.y114{bottom:492.195000px;}
.yf4{bottom:492.375000px;}
.y75{bottom:493.995000px;}
.yc1{bottom:499.755000px;}
.y1f{bottom:501.555000px;}
.ydf{bottom:504.615000px;}
.y4e{bottom:511.995000px;}
.y113{bottom:512.895000px;}
.yf3{bottom:513.075000px;}
.y74{bottom:514.695000px;}
.yc0{bottom:520.455000px;}
.y1e{bottom:522.255000px;}
.yde{bottom:525.315000px;}
.y4d{bottom:532.695000px;}
.y112{bottom:533.595000px;}
.yf2{bottom:533.775000px;}
.y73{bottom:535.395000px;}
.ybf{bottom:541.155000px;}
.y1d{bottom:542.955000px;}
.ydd{bottom:546.015000px;}
.y4c{bottom:553.395000px;}
.y111{bottom:554.295000px;}
.yf1{bottom:554.475000px;}
.y72{bottom:556.095000px;}
.ybe{bottom:561.315000px;}
.y1c{bottom:563.295000px;}
.ydc{bottom:566.715000px;}
.y4b{bottom:574.095000px;}
.y110{bottom:574.995000px;}
.yf0{bottom:575.175000px;}
.ybd{bottom:576.435000px;}
.y71{bottom:576.795000px;}
.y1b{bottom:584.355000px;}
.ydb{bottom:587.415000px;}
.y4a{bottom:594.795000px;}
.yef{bottom:595.875000px;}
.y70{bottom:597.495000px;}
.y1a{bottom:605.085000px;}
.yda{bottom:608.145000px;}
.y49{bottom:615.525000px;}
.y10f{bottom:616.425000px;}
.yee{bottom:616.605000px;}
.y6f{bottom:618.225000px;}
.y19{bottom:625.785000px;}
.yd9{bottom:628.845000px;}
.y48{bottom:636.225000px;}
.yed{bottom:637.125000px;}
.y6e{bottom:638.925000px;}
.y18{bottom:646.485000px;}
.yd8{bottom:649.185000px;}
.y47{bottom:656.925000px;}
.yec{bottom:657.825000px;}
.yac{bottom:659.085000px;}
.y6d{bottom:659.625000px;}
.yd7{bottom:664.125000px;}
.y17{bottom:667.185000px;}
.y46{bottom:677.625000px;}
.yeb{bottom:678.165000px;}
.y6c{bottom:680.325000px;}
.y9f{bottom:682.305000px;}
.y16{bottom:687.525000px;}
.y45{bottom:698.325000px;}
.y10e{bottom:699.225000px;}
.y6b{bottom:701.025000px;}
.yea{bottom:701.385000px;}
.y15{bottom:708.585000px;}
.y44{bottom:719.025000px;}
.y10d{bottom:719.925000px;}
.y6a{bottom:721.725000px;}
.y14{bottom:729.285000px;}
.ye9{bottom:735.225000px;}
.y43{bottom:739.365000px;}
.y88{bottom:739.725000px;}
.y10c{bottom:740.625000px;}
.y69{bottom:742.425000px;}
.y13{bottom:749.985000px;}
.y42{bottom:760.065000px;}
.y87{bottom:760.425000px;}
.y10b{bottom:761.325000px;}
.y68{bottom:763.125000px;}
.ye7{bottom:769.965000px;}
.y12{bottom:770.685000px;}
.yc7{bottom:780.765000px;}
.y41{bottom:781.125000px;}
.y10a{bottom:786.165000px;}
.y11{bottom:791.385000px;}
.y67{bottom:801.465000px;}
.y40{bottom:801.825000px;}
.y3f{bottom:822.525000px;}
.y109{bottom:824.865000px;}
.y10{bottom:832.425000px;}
.y66{bottom:842.865000px;}
.y3e{bottom:843.225000px;}
.yf{bottom:855.105000px;}
.y3d{bottom:863.565000px;}
.y65{bottom:863.925000px;}
.y64{bottom:884.310000px;}
.y3c{bottom:884.670000px;}
.ye{bottom:884.850000px;}
.y3b{bottom:905.370000px;}
.yd{bottom:908.970000px;}
.y9c{bottom:925.170000px;}
.y3a{bottom:926.070000px;}
.yc{bottom:933.090000px;}
.y39{bottom:946.770000px;}
.yb{bottom:958.650000px;}
.y38{bottom:967.110000px;}
.y63{bottom:967.470000px;}
.y99{bottom:978.810000px;}
.y37{bottom:988.170000px;}
.ya{bottom:989.610000px;}
.y36{bottom:1008.870000px;}
.y9{bottom:1020.570000px;}
.y35{bottom:1029.390000px;}
.y34{bottom:1050.090000px;}
.y8{bottom:1051.710000px;}
.y33{bottom:1070.790000px;}
.y7{bottom:1082.670000px;}
.y32{bottom:1091.130000px;}
.y62{bottom:1091.490000px;}
.y4{bottom:1112.190000px;}
.y3{bottom:1133.790000px;}
.y2{bottom:1152.540000px;}
.y1{bottom:1171.080000px;}
.h11{height:18.900000px;}
.h10{height:19.080000px;}
.hc{height:37.785000px;}
.ha{height:37.965000px;}
.h3{height:43.215117px;}
.h2{height:58.651172px;}
.he{height:59.383125px;}
.h4{height:62.327813px;}
.h13{height:64.546875px;}
.hd{height:65.010937px;}
.hb{height:66.757500px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.h12{height:74.704922px;}
.h9{height:74.953125px;}
.h6{height:84.898125px;}
.h5{height:108.843750px;}
.hf{height:227.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:103.536000px;}
.w6{width:120.801000px;}
.w5{width:128.865000px;}
.w3{width:138.441000px;}
.w2{width:142.911000px;}
.w9{width:184.335000px;}
.w7{width:226.641000px;}
.w8{width:226.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:7.380000px;}
.x27{left:20.871000px;}
.x29{left:25.950000px;}
.x34{left:91.656000px;}
.x2{left:127.656000px;}
.x1f{left:148.176000px;}
.xa{left:150.510000px;}
.x6{left:154.650000px;}
.x9{left:157.710000px;}
.x23{left:162.390000px;}
.x5{left:175.710000px;}
.x19{left:181.470000px;}
.x4{left:203.430000px;}
.xc{left:259.230000px;}
.x28{left:270.585000px;}
.x1{left:277.230000px;}
.x7{left:342.615000px;}
.x32{left:354.315000px;}
.xb{left:355.755000px;}
.x20{left:375.015000px;}
.x15{left:388.335000px;}
.x2a{left:409.035000px;}
.x1c{left:427.395000px;}
.x26{left:435.855000px;}
.xd{left:439.635000px;}
.x8{left:446.475000px;}
.x24{left:478.905000px;}
.xe{left:483.045000px;}
.x22{left:484.485000px;}
.x14{left:489.705000px;}
.x1e{left:503.925000px;}
.x13{left:508.965000px;}
.x11{left:510.405000px;}
.x17{left:513.285000px;}
.xf{left:531.465000px;}
.x16{left:535.425000px;}
.x18{left:560.445000px;}
.x21{left:568.365000px;}
.x33{left:581.160000px;}
.x1d{left:595.905000px;}
.x12{left:599.865000px;}
.x25{left:602.925000px;}
.x1a{left:622.365000px;}
.x2c{left:641.460000px;}
.x1b{left:662.910000px;}
.x30{left:750.570000px;}
.x3{left:757.950000px;}
.x31{left:759.930000px;}
.x10{left:765.510000px;}
.x2e{left:766.770000px;}
.x2f{left:768.930000px;}
.x2d{left:773.430000px;}
@media print{
.v3{vertical-align:-75.040000pt;}
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls5{letter-spacing:30.208000pt;}
.lsf{letter-spacing:112.000000pt;}
.lsc{letter-spacing:162.698667pt;}
.ls7{letter-spacing:175.978667pt;}
.ls2{letter-spacing:1549.045333pt;}
.ws9{word-spacing:-16.512000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws0{word-spacing:-0.056320pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.041813pt;}
._7{margin-left:-4.672000pt;}
._8{margin-left:-3.776000pt;}
._9{margin-left:-2.689920pt;}
._0{margin-left:-1.168640pt;}
._2{width:0.978560pt;}
._e{width:2.026667pt;}
._1{width:2.931627pt;}
._11{width:3.968000pt;}
._1e{width:4.928000pt;}
._5{width:5.824000pt;}
._6{width:6.829440pt;}
._f{width:7.744000pt;}
._c{width:8.640000pt;}
._d{width:9.534080pt;}
._10{width:11.201920pt;}
._4{width:12.906667pt;}
._3{width:13.888000pt;}
._1b{width:15.104000pt;}
._14{width:17.472000pt;}
._1a{width:18.432000pt;}
._1c{width:19.328000pt;}
._12{width:20.608000pt;}
._13{width:21.741440pt;}
._1d{width:22.912000pt;}
._17{width:24.128000pt;}
._a{width:25.472000pt;}
._b{width:26.752000pt;}
._15{width:27.712000pt;}
._16{width:28.657493pt;}
._20{width:29.760000pt;}
._23{width:31.744000pt;}
._24{width:33.242880pt;}
._1f{width:34.621440pt;}
._21{width:36.416000pt;}
._22{width:37.630080pt;}
._27{width:39.488000pt;}
._28{width:40.384000pt;}
._25{width:41.408000pt;}
._26{width:42.927360pt;}
._2b{width:79.198720pt;}
._2a{width:80.144640pt;}
._29{width:173.000747pt;}
._19{width:175.978667pt;}
._18{width:1474.805333pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:3.200000pt;}
.ye8{bottom:3.360000pt;}
.y9e{bottom:3.520000pt;}
.yab{bottom:3.680000pt;}
.y9a{bottom:20.160000pt;}
.y9d{bottom:20.320000pt;}
.yaa{bottom:20.480000pt;}
.ya9{bottom:37.440000pt;}
.y6{bottom:51.520000pt;}
.ya8{bottom:54.240000pt;}
.y5{bottom:70.432000pt;}
.ya7{bottom:71.040000pt;}
.ya6{bottom:88.000000pt;}
.yc6{bottom:101.632000pt;}
.ya5{bottom:104.800000pt;}
.y61{bottom:105.472000pt;}
.y125{bottom:106.272000pt;}
.ybc{bottom:108.992000pt;}
.ye6{bottom:109.632000pt;}
.y108{bottom:110.272000pt;}
.y104{bottom:111.232000pt;}
.yb6{bottom:112.992000pt;}
.y31{bottom:114.592000pt;}
.yc5{bottom:120.032000pt;}
.ya4{bottom:121.760000pt;}
.y60{bottom:123.872000pt;}
.y124{bottom:124.672000pt;}
.y86{bottom:126.272000pt;}
.ybb{bottom:127.392000pt;}
.ye5{bottom:128.032000pt;}
.y98{bottom:128.352000pt;}
.y107{bottom:128.672000pt;}
.y103{bottom:129.632000pt;}
.yb5{bottom:131.392000pt;}
.y30{bottom:132.992000pt;}
.yc4{bottom:138.426667pt;}
.ya3{bottom:138.560000pt;}
.yba{bottom:141.946667pt;}
.y5f{bottom:142.266667pt;}
.y123{bottom:143.066667pt;}
.y85{bottom:144.666667pt;}
.yd6{bottom:145.786667pt;}
.ye4{bottom:146.426667pt;}
.y97{bottom:146.746667pt;}
.y106{bottom:147.066667pt;}
.y102{bottom:148.026667pt;}
.yb4{bottom:149.786667pt;}
.y2f{bottom:151.386667pt;}
.ya2{bottom:155.360000pt;}
.yc3{bottom:156.826667pt;}
.y5e{bottom:160.666667pt;}
.y122{bottom:161.466667pt;}
.y84{bottom:163.066667pt;}
.yd5{bottom:164.186667pt;}
.ye3{bottom:164.506667pt;}
.y96{bottom:165.466667pt;}
.y101{bottom:166.426667pt;}
.yb3{bottom:168.186667pt;}
.y2e{bottom:169.466667pt;}
.ya1{bottom:172.360000pt;}
.yc2{bottom:174.906667pt;}
.ye2{bottom:177.786667pt;}
.y5d{bottom:179.066667pt;}
.y121{bottom:179.866667pt;}
.y83{bottom:181.466667pt;}
.yd4{bottom:182.586667pt;}
.y95{bottom:183.866667pt;}
.y100{bottom:184.826667pt;}
.yb2{bottom:186.586667pt;}
.y2d{bottom:188.186667pt;}
.ya0{bottom:189.160000pt;}
.y5c{bottom:197.466667pt;}
.y82{bottom:199.866667pt;}
.yd3{bottom:200.986667pt;}
.y94{bottom:202.266667pt;}
.yff{bottom:203.226667pt;}
.yb1{bottom:204.986667pt;}
.y2c{bottom:206.586667pt;}
.y5b{bottom:215.866667pt;}
.y120{bottom:216.666667pt;}
.y81{bottom:218.266667pt;}
.yd2{bottom:219.386667pt;}
.y93{bottom:220.666667pt;}
.yfe{bottom:221.626667pt;}
.yb0{bottom:223.386667pt;}
.y2b{bottom:224.986667pt;}
.y5a{bottom:234.266667pt;}
.y11f{bottom:235.066667pt;}
.y105{bottom:236.346667pt;}
.y80{bottom:236.666667pt;}
.yd1{bottom:237.786667pt;}
.y92{bottom:239.066667pt;}
.yaf{bottom:241.786667pt;}
.y2a{bottom:243.386667pt;}
.y59{bottom:252.666667pt;}
.y11e{bottom:253.466667pt;}
.y7f{bottom:255.066667pt;}
.yfd{bottom:255.706667pt;}
.yd0{bottom:256.186667pt;}
.y91{bottom:257.466667pt;}
.yae{bottom:259.866667pt;}
.y29{bottom:261.786667pt;}
.y58{bottom:270.746667pt;}
.yb8{bottom:271.066667pt;}
.y11d{bottom:271.866667pt;}
.yad{bottom:273.146667pt;}
.y7e{bottom:273.466667pt;}
.ycf{bottom:274.586667pt;}
.y90{bottom:275.866667pt;}
.y28{bottom:279.866667pt;}
.y57{bottom:289.146667pt;}
.yb7{bottom:289.466667pt;}
.y11c{bottom:290.266667pt;}
.yfc{bottom:290.426667pt;}
.y7d{bottom:291.866667pt;}
.yce{bottom:292.986667pt;}
.y8f{bottom:294.266667pt;}
.y27{bottom:298.586667pt;}
.y56{bottom:307.906667pt;}
.y11b{bottom:308.706667pt;}
.yfb{bottom:308.866667pt;}
.y7c{bottom:310.306667pt;}
.ycd{bottom:311.426667pt;}
.y8e{bottom:312.706667pt;}
.y26{bottom:317.026667pt;}
.y55{bottom:326.306667pt;}
.y11a{bottom:327.106667pt;}
.yfa{bottom:327.266667pt;}
.y7b{bottom:328.706667pt;}
.ycc{bottom:329.826667pt;}
.y8d{bottom:331.106667pt;}
.y25{bottom:335.426667pt;}
.y54{bottom:344.706667pt;}
.y119{bottom:345.506667pt;}
.yf9{bottom:345.666667pt;}
.y7a{bottom:347.106667pt;}
.ycb{bottom:348.226667pt;}
.y8c{bottom:349.506667pt;}
.y24{bottom:353.826667pt;}
.y53{bottom:363.106667pt;}
.y118{bottom:363.906667pt;}
.yf8{bottom:364.066667pt;}
.y79{bottom:365.506667pt;}
.yca{bottom:366.626667pt;}
.y8b{bottom:367.906667pt;}
.y23{bottom:372.226667pt;}
.y52{bottom:381.506667pt;}
.y117{bottom:382.306667pt;}
.yf7{bottom:382.466667pt;}
.y78{bottom:383.906667pt;}
.yc9{bottom:385.026667pt;}
.y22{bottom:390.306667pt;}
.yc8{bottom:399.586667pt;}
.y51{bottom:399.906667pt;}
.y116{bottom:400.706667pt;}
.yf6{bottom:400.866667pt;}
.y8a{bottom:401.986667pt;}
.y77{bottom:402.306667pt;}
.y21{bottom:409.026667pt;}
.ye1{bottom:411.746667pt;}
.yb9{bottom:417.986667pt;}
.y50{bottom:418.306667pt;}
.y115{bottom:419.106667pt;}
.yf5{bottom:419.266667pt;}
.y76{bottom:420.706667pt;}
.y20{bottom:427.426667pt;}
.ye0{bottom:430.146667pt;}
.y89{bottom:436.386667pt;}
.y4f{bottom:436.706667pt;}
.y114{bottom:437.506667pt;}
.yf4{bottom:437.666667pt;}
.y75{bottom:439.106667pt;}
.yc1{bottom:444.226667pt;}
.y1f{bottom:445.826667pt;}
.ydf{bottom:448.546667pt;}
.y4e{bottom:455.106667pt;}
.y113{bottom:455.906667pt;}
.yf3{bottom:456.066667pt;}
.y74{bottom:457.506667pt;}
.yc0{bottom:462.626667pt;}
.y1e{bottom:464.226667pt;}
.yde{bottom:466.946667pt;}
.y4d{bottom:473.506667pt;}
.y112{bottom:474.306667pt;}
.yf2{bottom:474.466667pt;}
.y73{bottom:475.906667pt;}
.ybf{bottom:481.026667pt;}
.y1d{bottom:482.626667pt;}
.ydd{bottom:485.346667pt;}
.y4c{bottom:491.906667pt;}
.y111{bottom:492.706667pt;}
.yf1{bottom:492.866667pt;}
.y72{bottom:494.306667pt;}
.ybe{bottom:498.946667pt;}
.y1c{bottom:500.706667pt;}
.ydc{bottom:503.746667pt;}
.y4b{bottom:510.306667pt;}
.y110{bottom:511.106667pt;}
.yf0{bottom:511.266667pt;}
.ybd{bottom:512.386667pt;}
.y71{bottom:512.706667pt;}
.y1b{bottom:519.426667pt;}
.ydb{bottom:522.146667pt;}
.y4a{bottom:528.706667pt;}
.yef{bottom:529.666667pt;}
.y70{bottom:531.106667pt;}
.y1a{bottom:537.853333pt;}
.yda{bottom:540.573333pt;}
.y49{bottom:547.133333pt;}
.y10f{bottom:547.933333pt;}
.yee{bottom:548.093333pt;}
.y6f{bottom:549.533333pt;}
.y19{bottom:556.253333pt;}
.yd9{bottom:558.973333pt;}
.y48{bottom:565.533333pt;}
.yed{bottom:566.333333pt;}
.y6e{bottom:567.933333pt;}
.y18{bottom:574.653333pt;}
.yd8{bottom:577.053333pt;}
.y47{bottom:583.933333pt;}
.yec{bottom:584.733333pt;}
.yac{bottom:585.853333pt;}
.y6d{bottom:586.333333pt;}
.yd7{bottom:590.333333pt;}
.y17{bottom:593.053333pt;}
.y46{bottom:602.333333pt;}
.yeb{bottom:602.813333pt;}
.y6c{bottom:604.733333pt;}
.y9f{bottom:606.493333pt;}
.y16{bottom:611.133333pt;}
.y45{bottom:620.733333pt;}
.y10e{bottom:621.533333pt;}
.y6b{bottom:623.133333pt;}
.yea{bottom:623.453333pt;}
.y15{bottom:629.853333pt;}
.y44{bottom:639.133333pt;}
.y10d{bottom:639.933333pt;}
.y6a{bottom:641.533333pt;}
.y14{bottom:648.253333pt;}
.ye9{bottom:653.533333pt;}
.y43{bottom:657.213333pt;}
.y88{bottom:657.533333pt;}
.y10c{bottom:658.333333pt;}
.y69{bottom:659.933333pt;}
.y13{bottom:666.653333pt;}
.y42{bottom:675.613333pt;}
.y87{bottom:675.933333pt;}
.y10b{bottom:676.733333pt;}
.y68{bottom:678.333333pt;}
.ye7{bottom:684.413333pt;}
.y12{bottom:685.053333pt;}
.yc7{bottom:694.013333pt;}
.y41{bottom:694.333333pt;}
.y10a{bottom:698.813333pt;}
.y11{bottom:703.453333pt;}
.y67{bottom:712.413333pt;}
.y40{bottom:712.733333pt;}
.y3f{bottom:731.133333pt;}
.y109{bottom:733.213333pt;}
.y10{bottom:739.933333pt;}
.y66{bottom:749.213333pt;}
.y3e{bottom:749.533333pt;}
.yf{bottom:760.093333pt;}
.y3d{bottom:767.613333pt;}
.y65{bottom:767.933333pt;}
.y64{bottom:786.053333pt;}
.y3c{bottom:786.373333pt;}
.ye{bottom:786.533333pt;}
.y3b{bottom:804.773333pt;}
.yd{bottom:807.973333pt;}
.y9c{bottom:822.373333pt;}
.y3a{bottom:823.173333pt;}
.yc{bottom:829.413333pt;}
.y39{bottom:841.573333pt;}
.yb{bottom:852.133333pt;}
.y38{bottom:859.653333pt;}
.y63{bottom:859.973333pt;}
.y99{bottom:870.053333pt;}
.y37{bottom:878.373333pt;}
.ya{bottom:879.653333pt;}
.y36{bottom:896.773333pt;}
.y9{bottom:907.173333pt;}
.y35{bottom:915.013333pt;}
.y34{bottom:933.413333pt;}
.y8{bottom:934.853333pt;}
.y33{bottom:951.813333pt;}
.y7{bottom:962.373333pt;}
.y32{bottom:969.893333pt;}
.y62{bottom:970.213333pt;}
.y4{bottom:988.613333pt;}
.y3{bottom:1007.813333pt;}
.y2{bottom:1024.480000pt;}
.y1{bottom:1040.960000pt;}
.h11{height:16.800000pt;}
.h10{height:16.960000pt;}
.hc{height:33.586667pt;}
.ha{height:33.746667pt;}
.h3{height:38.413438pt;}
.h2{height:52.134375pt;}
.he{height:52.785000pt;}
.h4{height:55.402500pt;}
.h13{height:57.375000pt;}
.hd{height:57.787500pt;}
.hb{height:59.340000pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.h12{height:66.404375pt;}
.h9{height:66.625000pt;}
.h6{height:75.465000pt;}
.h5{height:96.750000pt;}
.hf{height:202.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:92.032000pt;}
.w6{width:107.378667pt;}
.w5{width:114.546667pt;}
.w3{width:123.058667pt;}
.w2{width:127.032000pt;}
.w9{width:163.853333pt;}
.w7{width:201.458667pt;}
.w8{width:201.626667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:6.560000pt;}
.x27{left:18.552000pt;}
.x29{left:23.066667pt;}
.x34{left:81.472000pt;}
.x2{left:113.472000pt;}
.x1f{left:131.712000pt;}
.xa{left:133.786667pt;}
.x6{left:137.466667pt;}
.x9{left:140.186667pt;}
.x23{left:144.346667pt;}
.x5{left:156.186667pt;}
.x19{left:161.306667pt;}
.x4{left:180.826667pt;}
.xc{left:230.426667pt;}
.x28{left:240.520000pt;}
.x1{left:246.426667pt;}
.x7{left:304.546667pt;}
.x32{left:314.946667pt;}
.xb{left:316.226667pt;}
.x20{left:333.346667pt;}
.x15{left:345.186667pt;}
.x2a{left:363.586667pt;}
.x1c{left:379.906667pt;}
.x26{left:387.426667pt;}
.xd{left:390.786667pt;}
.x8{left:396.866667pt;}
.x24{left:425.693333pt;}
.xe{left:429.373333pt;}
.x22{left:430.653333pt;}
.x14{left:435.293333pt;}
.x1e{left:447.933333pt;}
.x13{left:452.413333pt;}
.x11{left:453.693333pt;}
.x17{left:456.253333pt;}
.xf{left:472.413333pt;}
.x16{left:475.933333pt;}
.x18{left:498.173333pt;}
.x21{left:505.213333pt;}
.x33{left:516.586667pt;}
.x1d{left:529.693333pt;}
.x12{left:533.213333pt;}
.x25{left:535.933333pt;}
.x1a{left:553.213333pt;}
.x2c{left:570.186667pt;}
.x1b{left:589.253333pt;}
.x30{left:667.173333pt;}
.x3{left:673.733333pt;}
.x31{left:675.493333pt;}
.x10{left:680.453333pt;}
.x2e{left:681.573333pt;}
.x2f{left:683.493333pt;}
.x2d{left:687.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; }
  