
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_0192b3e9a862391a6a311a9c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a813f8b4fb1c862ce96f1e5e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_a473045203fbb3d2e58c5d9c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_05bf18d268c5adbe63799adc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.999512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9ebfdc0d0f3be747c7342fbb.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a1d65598fb5fea05a8951c28.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b0da6ef1fc1a7957970bf124.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2c46388768197457ab195335.woff')format("woff");}.ffe{font-family:ffe;line-height:0.999512;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.008000px;}
.ls9{letter-spacing:10.080000px;}
.ls7{letter-spacing:12.960000px;}
.ls8{letter-spacing:14.400000px;}
.ls6{letter-spacing:33.960000px;}
.lsd{letter-spacing:69.984000px;}
.ls11{letter-spacing:141.816000px;}
.lse{letter-spacing:197.976000px;}
.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;}
}
.ws6{word-spacing:-19.008000px;}
.ws7{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._2d{margin-left:-15.859699px;}
._40{margin-left:-9.883699px;}
._37{margin-left:-8.016000px;}
._14{margin-left:-5.194872px;}
._f{margin-left:-3.517128px;}
._e{margin-left:-2.409716px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._b{width:2.332301px;}
._9{width:3.816000px;}
._5{width:5.472000px;}
._4{width:6.768000px;}
._8{width:8.102284px;}
._6{width:9.144000px;}
._a{width:11.136000px;}
._10{width:12.672000px;}
._c{width:13.968000px;}
._d{width:15.249158px;}
._7{width:16.320000px;}
._3{width:19.272000px;}
._15{width:20.841716px;}
._13{width:22.123142px;}
._12{width:23.256000px;}
._11{width:24.840000px;}
._20{width:25.920000px;}
._21{width:27.129158px;}
._1c{width:30.888000px;}
._1f{width:31.896000px;}
._3c{width:33.600000px;}
._1d{width:34.632000px;}
._2b{width:36.504000px;}
._2c{width:37.560000px;}
._32{width:53.976000px;}
._18{width:56.520000px;}
._19{width:57.744000px;}
._27{width:60.840000px;}
._28{width:61.848000px;}
._16{width:66.816000px;}
._17{width:68.040000px;}
._38{width:70.488000px;}
._39{width:71.970317px;}
._3a{width:73.092000px;}
._1a{width:75.528000px;}
._1b{width:80.803142px;}
._3b{width:89.976000px;}
._3d{width:91.641158px;}
._24{width:94.008000px;}
._30{width:96.048000px;}
._25{width:107.976000px;}
._26{width:109.992000px;}
._2f{width:113.952000px;}
._22{width:120.864000px;}
._2a{width:128.280000px;}
._33{width:130.008000px;}
._1e{width:141.768000px;}
._2{width:146.082865px;}
._31{width:154.056000px;}
._3f{width:159.960000px;}
._36{width:166.008000px;}
._2e{width:178.032000px;}
._23{width:197.976000px;}
._3e{width:232.488000px;}
._34{width:244.368000px;}
._35{width:245.820000px;}
._29{width:423.000000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.960000px;}
.y58{bottom:14.400000px;}
.y59{bottom:24.660000px;}
.y65{bottom:24.690000px;}
.y5e{bottom:35.100000px;}
.y5d{bottom:45.360000px;}
.y5f{bottom:45.405000px;}
.y4{bottom:68.580000px;}
.yd3{bottom:117.036000px;}
.y9c{bottom:117.936000px;}
.y54{bottom:118.656000px;}
.y33{bottom:128.016000px;}
.y82{bottom:128.916000px;}
.y9b{bottom:138.636000px;}
.y117{bottom:146.016000px;}
.y118{bottom:146.376000px;}
.yae{bottom:147.636000px;}
.yd2{bottom:148.176000px;}
.y32{bottom:148.716000px;}
.y53{bottom:149.616000px;}
.y73{bottom:157.710000px;}
.y9a{bottom:159.330000px;}
.ye4{bottom:159.690000px;}
.y81{bottom:160.050000px;}
.yad{bottom:165.990000px;}
.y116{bottom:166.710000px;}
.y107{bottom:167.070000px;}
.y31{bottom:169.410000px;}
.yd1{bottom:179.130000px;}
.y99{bottom:180.030000px;}
.y52{bottom:180.750000px;}
.yac{bottom:184.350000px;}
.y115{bottom:187.410000px;}
.y106{bottom:187.770000px;}
.y72{bottom:188.850000px;}
.yea{bottom:189.930000px;}
.y30{bottom:190.110000px;}
.ye3{bottom:190.830000px;}
.y80{bottom:191.010000px;}
.y98{bottom:200.730000px;}
.yab{bottom:202.530000px;}
.yd0{bottom:210.270000px;}
.ye9{bottom:210.630000px;}
.y2f{bottom:210.810000px;}
.y51{bottom:211.710000px;}
.y71{bottom:219.810000px;}
.y97{bottom:221.430000px;}
.ye2{bottom:221.790000px;}
.y114{bottom:229.170000px;}
.y105{bottom:229.350000px;}
.ye8{bottom:231.330000px;}
.y2e{bottom:231.510000px;}
.y7f{bottom:232.410000px;}
.ycf{bottom:241.230000px;}
.yaa{bottom:241.950000px;}
.y96{bottom:242.130000px;}
.y50{bottom:242.850000px;}
.y113{bottom:249.870000px;}
.y104{bottom:250.050000px;}
.y70{bottom:250.950000px;}
.y2d{bottom:252.210000px;}
.ye1{bottom:252.930000px;}
.y7e{bottom:253.110000px;}
.ya9{bottom:262.650000px;}
.y95{bottom:262.830000px;}
.y112{bottom:270.570000px;}
.y103{bottom:270.750000px;}
.yce{bottom:272.370000px;}
.y2c{bottom:272.910000px;}
.y4f{bottom:273.810000px;}
.y6f{bottom:281.910000px;}
.ya8{bottom:283.350000px;}
.y94{bottom:283.530000px;}
.ye0{bottom:283.890000px;}
.y102{bottom:291.450000px;}
.y2b{bottom:293.610000px;}
.y7d{bottom:294.510000px;}
.ycd{bottom:303.330000px;}
.ya7{bottom:304.050000px;}
.y93{bottom:304.230000px;}
.y4e{bottom:304.950000px;}
.y111{bottom:312.150000px;}
.y6e{bottom:313.050000px;}
.y2a{bottom:314.310000px;}
.ydf{bottom:314.850000px;}
.ya6{bottom:324.750000px;}
.y92{bottom:324.930000px;}
.y7c{bottom:325.650000px;}
.y110{bottom:332.850000px;}
.y101{bottom:333.210000px;}
.ycc{bottom:334.470000px;}
.y29{bottom:335.010000px;}
.y4d{bottom:335.910000px;}
.y6d{bottom:344.055000px;}
.ya5{bottom:345.495000px;}
.y91{bottom:345.675000px;}
.yde{bottom:346.035000px;}
.y10f{bottom:353.595000px;}
.y100{bottom:353.955000px;}
.y28{bottom:355.755000px;}
.ye7{bottom:356.115000px;}
.y7b{bottom:356.655000px;}
.ycb{bottom:365.475000px;}
.ya4{bottom:366.195000px;}
.y90{bottom:366.375000px;}
.y4c{bottom:367.095000px;}
.yff{bottom:374.655000px;}
.y6c{bottom:375.195000px;}
.y27{bottom:376.455000px;}
.ye6{bottom:376.815000px;}
.ydd{bottom:376.995000px;}
.y7a{bottom:377.355000px;}
.y8f{bottom:387.075000px;}
.y10e{bottom:395.355000px;}
.yca{bottom:396.615000px;}
.ye5{bottom:397.515000px;}
.y4b{bottom:398.055000px;}
.y6b{bottom:406.155000px;}
.y8e{bottom:407.775000px;}
.ydc{bottom:408.135000px;}
.y10d{bottom:416.055000px;}
.yfe{bottom:416.415000px;}
.y26{bottom:418.215000px;}
.y79{bottom:418.755000px;}
.yc9{bottom:427.575000px;}
.y8d{bottom:428.475000px;}
.y4a{bottom:429.195000px;}
.y10c{bottom:436.755000px;}
.yfd{bottom:437.115000px;}
.y6a{bottom:437.295000px;}
.y25{bottom:438.915000px;}
.ydb{bottom:439.095000px;}
.y78{bottom:439.455000px;}
.yc8{bottom:448.275000px;}
.y8c{bottom:449.175000px;}
.yfc{bottom:457.815000px;}
.y49{bottom:460.155000px;}
.y69{bottom:468.255000px;}
.yc7{bottom:468.975000px;}
.yda{bottom:470.235000px;}
.y10b{bottom:478.515000px;}
.y8b{bottom:480.315000px;}
.y24{bottom:480.495000px;}
.yc6{bottom:489.675000px;}
.y48{bottom:491.295000px;}
.y10a{bottom:499.215000px;}
.y68{bottom:499.395000px;}
.y8a{bottom:501.015000px;}
.y23{bottom:501.195000px;}
.yc5{bottom:510.375000px;}
.yfb{bottom:520.095000px;}
.y89{bottom:521.715000px;}
.y22{bottom:521.895000px;}
.y47{bottom:522.255000px;}
.y67{bottom:530.355000px;}
.yc4{bottom:531.075000px;}
.yd9{bottom:532.335000px;}
.yfa{bottom:540.795000px;}
.y88{bottom:542.415000px;}
.y21{bottom:542.595000px;}
.yc3{bottom:551.775000px;}
.y46{bottom:553.395000px;}
.y66{bottom:561.495000px;}
.y87{bottom:563.115000px;}
.y20{bottom:563.295000px;}
.y64{bottom:582.195000px;}
.yc2{bottom:582.915000px;}
.y86{bottom:583.815000px;}
.y1f{bottom:583.995000px;}
.y45{bottom:584.355000px;}
.yd8{bottom:594.435000px;}
.yf9{bottom:603.255000px;}
.y85{bottom:604.545000px;}
.y1e{bottom:604.725000px;}
.yc1{bottom:613.905000px;}
.y44{bottom:615.525000px;}
.yf8{bottom:623.985000px;}
.y1d{bottom:625.425000px;}
.y63{bottom:628.125000px;}
.yf7{bottom:644.685000px;}
.y1c{bottom:646.125000px;}
.y43{bottom:646.485000px;}
.yc0{bottom:655.665000px;}
.y84{bottom:656.565000px;}
.y1b{bottom:666.825000px;}
.y62{bottom:674.025000px;}
.ybf{bottom:676.365000px;}
.y42{bottom:677.625000px;}
.yf6{bottom:686.445000px;}
.y1a{bottom:687.525000px;}
.ybe{bottom:697.065000px;}
.y77{bottom:698.325000px;}
.yf5{bottom:707.145000px;}
.y19{bottom:708.225000px;}
.y41{bottom:708.585000px;}
.ybd{bottom:717.765000px;}
.y83{bottom:718.485000px;}
.yd7{bottom:718.665000px;}
.y76{bottom:718.845000px;}
.y61{bottom:719.925000px;}
.yf4{bottom:727.845000px;}
.y18{bottom:728.925000px;}
.ybc{bottom:738.465000px;}
.y40{bottom:739.545000px;}
.y17{bottom:749.625000px;}
.ybb{bottom:759.165000px;}
.y75{bottom:760.245000px;}
.yf3{bottom:769.425000px;}
.y16{bottom:770.325000px;}
.y3f{bottom:770.685000px;}
.yd6{bottom:780.765000px;}
.y74{bottom:780.945000px;}
.y60{bottom:786.525000px;}
.yf2{bottom:790.125000px;}
.y15{bottom:791.025000px;}
.y3e{bottom:801.645000px;}
.yf1{bottom:810.825000px;}
.yba{bottom:811.185000px;}
.y14{bottom:811.725000px;}
.ya3{bottom:812.085000px;}
.y109{bottom:831.885000px;}
.y13{bottom:832.425000px;}
.y3d{bottom:832.785000px;}
.yb9{bottom:842.145000px;}
.yd5{bottom:842.865000px;}
.ya2{bottom:843.045000px;}
.yf0{bottom:852.585000px;}
.y12{bottom:853.125000px;}
.y3c{bottom:863.745000px;}
.yb8{bottom:873.330000px;}
.y11{bottom:873.870000px;}
.ya1{bottom:874.230000px;}
.yef{bottom:894.030000px;}
.y10{bottom:894.570000px;}
.y3b{bottom:894.930000px;}
.y5c{bottom:899.070000px;}
.yd4{bottom:905.010000px;}
.y108{bottom:915.090000px;}
.yf{bottom:915.270000px;}
.ya0{bottom:915.630000px;}
.yb7{bottom:925.350000px;}
.y3a{bottom:925.890000px;}
.yee{bottom:935.790000px;}
.ye{bottom:935.970000px;}
.y9f{bottom:936.330000px;}
.yed{bottom:956.490000px;}
.yd{bottom:956.670000px;}
.y39{bottom:957.030000px;}
.y5b{bottom:965.670000px;}
.yb6{bottom:967.110000px;}
.yec{bottom:977.190000px;}
.yc{bottom:977.370000px;}
.y9e{bottom:977.730000px;}
.yb5{bottom:987.810000px;}
.y38{bottom:987.990000px;}
.yb{bottom:998.070000px;}
.y9d{bottom:998.430000px;}
.yb4{bottom:1008.510000px;}
.y5a{bottom:1011.570000px;}
.ya{bottom:1018.770000px;}
.y37{bottom:1019.130000px;}
.yb3{bottom:1029.210000px;}
.y9{bottom:1039.470000px;}
.yb2{bottom:1049.910000px;}
.y36{bottom:1050.090000px;}
.y57{bottom:1057.470000px;}
.y8{bottom:1060.170000px;}
.yb1{bottom:1070.610000px;}
.y7{bottom:1080.870000px;}
.y35{bottom:1081.230000px;}
.yb0{bottom:1091.310000px;}
.yeb{bottom:1101.930000px;}
.y55{bottom:1104.090000px;}
.y34{bottom:1112.190000px;}
.y6{bottom:1122.630000px;}
.yaf{bottom:1143.180000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.h9{height:20.700000px;}
.h2{height:40.790039px;}
.ha{height:41.400000px;}
.he{height:41.436000px;}
.h4{height:45.386260px;}
.h6{height:50.800781px;}
.h8{height:54.246094px;}
.h5{height:56.900391px;}
.hb{height:59.343750px;}
.hf{height:59.439023px;}
.hc{height:62.100000px;}
.hd{height:62.136000px;}
.h7{height:63.035156px;}
.h3{height:70.802565px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:30.240000px;}
.w4{width:312.690000px;}
.w5{width:325.155000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.080000px;}
.x13{left:92.010000px;}
.x11{left:96.294000px;}
.x1{left:108.035987px;}
.xf{left:110.376000px;}
.x3{left:122.075987px;}
.xd{left:135.035987px;}
.x2{left:142.775987px;}
.xe{left:162.029987px;}
.x15{left:180.029987px;}
.x6{left:192.269987px;}
.xb{left:211.349987px;}
.x14{left:216.029987px;}
.xa{left:335.954987px;}
.x4{left:348.734987px;}
.x7{left:358.454987px;}
.xc{left:364.934987px;}
.x5{left:372.494987px;}
.x8{left:439.454987px;}
.x9{left:446.474987px;}
.x12{left:457.635000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.896000pt;}
.ls9{letter-spacing:8.960000pt;}
.ls7{letter-spacing:11.520000pt;}
.ls8{letter-spacing:12.800000pt;}
.ls6{letter-spacing:30.186667pt;}
.lsd{letter-spacing:62.208000pt;}
.ls11{letter-spacing:126.058667pt;}
.lse{letter-spacing:175.978667pt;}
.ws6{word-spacing:-16.896000pt;}
.ws7{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._2d{margin-left:-14.097511pt;}
._40{margin-left:-8.785511pt;}
._37{margin-left:-7.125333pt;}
._14{margin-left:-4.617664pt;}
._f{margin-left:-3.126336pt;}
._e{margin-left:-2.141969pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._b{width:2.073156pt;}
._9{width:3.392000pt;}
._5{width:4.864000pt;}
._4{width:6.016000pt;}
._8{width:7.202031pt;}
._6{width:8.128000pt;}
._a{width:9.898667pt;}
._10{width:11.264000pt;}
._c{width:12.416000pt;}
._d{width:13.554808pt;}
._7{width:14.506667pt;}
._3{width:17.130667pt;}
._15{width:18.525969pt;}
._13{width:19.665015pt;}
._12{width:20.672000pt;}
._11{width:22.080000pt;}
._20{width:23.040000pt;}
._21{width:24.114808pt;}
._1c{width:27.456000pt;}
._1f{width:28.352000pt;}
._3c{width:29.866667pt;}
._1d{width:30.784000pt;}
._2b{width:32.448000pt;}
._2c{width:33.386667pt;}
._32{width:47.978667pt;}
._18{width:50.240000pt;}
._19{width:51.328000pt;}
._27{width:54.080000pt;}
._28{width:54.976000pt;}
._16{width:59.392000pt;}
._17{width:60.480000pt;}
._38{width:62.656000pt;}
._39{width:63.973615pt;}
._3a{width:64.970667pt;}
._1a{width:67.136000pt;}
._1b{width:71.825015pt;}
._3b{width:79.978667pt;}
._3d{width:81.458808pt;}
._24{width:83.562667pt;}
._30{width:85.376000pt;}
._25{width:95.978667pt;}
._26{width:97.770667pt;}
._2f{width:101.290667pt;}
._22{width:107.434667pt;}
._2a{width:114.026667pt;}
._33{width:115.562667pt;}
._1e{width:126.016000pt;}
._2{width:129.851436pt;}
._31{width:136.938667pt;}
._3f{width:142.186667pt;}
._36{width:147.562667pt;}
._2e{width:158.250667pt;}
._23{width:175.978667pt;}
._3e{width:206.656000pt;}
._34{width:217.216000pt;}
._35{width:218.506667pt;}
._29{width:376.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:3.520000pt;}
.y58{bottom:12.800000pt;}
.y59{bottom:21.920000pt;}
.y65{bottom:21.946667pt;}
.y5e{bottom:31.200000pt;}
.y5d{bottom:40.320000pt;}
.y5f{bottom:40.360000pt;}
.y4{bottom:60.960000pt;}
.yd3{bottom:104.032000pt;}
.y9c{bottom:104.832000pt;}
.y54{bottom:105.472000pt;}
.y33{bottom:113.792000pt;}
.y82{bottom:114.592000pt;}
.y9b{bottom:123.232000pt;}
.y117{bottom:129.792000pt;}
.y118{bottom:130.112000pt;}
.yae{bottom:131.232000pt;}
.yd2{bottom:131.712000pt;}
.y32{bottom:132.192000pt;}
.y53{bottom:132.992000pt;}
.y73{bottom:140.186667pt;}
.y9a{bottom:141.626667pt;}
.ye4{bottom:141.946667pt;}
.y81{bottom:142.266667pt;}
.yad{bottom:147.546667pt;}
.y116{bottom:148.186667pt;}
.y107{bottom:148.506667pt;}
.y31{bottom:150.586667pt;}
.yd1{bottom:159.226667pt;}
.y99{bottom:160.026667pt;}
.y52{bottom:160.666667pt;}
.yac{bottom:163.866667pt;}
.y115{bottom:166.586667pt;}
.y106{bottom:166.906667pt;}
.y72{bottom:167.866667pt;}
.yea{bottom:168.826667pt;}
.y30{bottom:168.986667pt;}
.ye3{bottom:169.626667pt;}
.y80{bottom:169.786667pt;}
.y98{bottom:178.426667pt;}
.yab{bottom:180.026667pt;}
.yd0{bottom:186.906667pt;}
.ye9{bottom:187.226667pt;}
.y2f{bottom:187.386667pt;}
.y51{bottom:188.186667pt;}
.y71{bottom:195.386667pt;}
.y97{bottom:196.826667pt;}
.ye2{bottom:197.146667pt;}
.y114{bottom:203.706667pt;}
.y105{bottom:203.866667pt;}
.ye8{bottom:205.626667pt;}
.y2e{bottom:205.786667pt;}
.y7f{bottom:206.586667pt;}
.ycf{bottom:214.426667pt;}
.yaa{bottom:215.066667pt;}
.y96{bottom:215.226667pt;}
.y50{bottom:215.866667pt;}
.y113{bottom:222.106667pt;}
.y104{bottom:222.266667pt;}
.y70{bottom:223.066667pt;}
.y2d{bottom:224.186667pt;}
.ye1{bottom:224.826667pt;}
.y7e{bottom:224.986667pt;}
.ya9{bottom:233.466667pt;}
.y95{bottom:233.626667pt;}
.y112{bottom:240.506667pt;}
.y103{bottom:240.666667pt;}
.yce{bottom:242.106667pt;}
.y2c{bottom:242.586667pt;}
.y4f{bottom:243.386667pt;}
.y6f{bottom:250.586667pt;}
.ya8{bottom:251.866667pt;}
.y94{bottom:252.026667pt;}
.ye0{bottom:252.346667pt;}
.y102{bottom:259.066667pt;}
.y2b{bottom:260.986667pt;}
.y7d{bottom:261.786667pt;}
.ycd{bottom:269.626667pt;}
.ya7{bottom:270.266667pt;}
.y93{bottom:270.426667pt;}
.y4e{bottom:271.066667pt;}
.y111{bottom:277.466667pt;}
.y6e{bottom:278.266667pt;}
.y2a{bottom:279.386667pt;}
.ydf{bottom:279.866667pt;}
.ya6{bottom:288.666667pt;}
.y92{bottom:288.826667pt;}
.y7c{bottom:289.466667pt;}
.y110{bottom:295.866667pt;}
.y101{bottom:296.186667pt;}
.ycc{bottom:297.306667pt;}
.y29{bottom:297.786667pt;}
.y4d{bottom:298.586667pt;}
.y6d{bottom:305.826667pt;}
.ya5{bottom:307.106667pt;}
.y91{bottom:307.266667pt;}
.yde{bottom:307.586667pt;}
.y10f{bottom:314.306667pt;}
.y100{bottom:314.626667pt;}
.y28{bottom:316.226667pt;}
.ye7{bottom:316.546667pt;}
.y7b{bottom:317.026667pt;}
.ycb{bottom:324.866667pt;}
.ya4{bottom:325.506667pt;}
.y90{bottom:325.666667pt;}
.y4c{bottom:326.306667pt;}
.yff{bottom:333.026667pt;}
.y6c{bottom:333.506667pt;}
.y27{bottom:334.626667pt;}
.ye6{bottom:334.946667pt;}
.ydd{bottom:335.106667pt;}
.y7a{bottom:335.426667pt;}
.y8f{bottom:344.066667pt;}
.y10e{bottom:351.426667pt;}
.yca{bottom:352.546667pt;}
.ye5{bottom:353.346667pt;}
.y4b{bottom:353.826667pt;}
.y6b{bottom:361.026667pt;}
.y8e{bottom:362.466667pt;}
.ydc{bottom:362.786667pt;}
.y10d{bottom:369.826667pt;}
.yfe{bottom:370.146667pt;}
.y26{bottom:371.746667pt;}
.y79{bottom:372.226667pt;}
.yc9{bottom:380.066667pt;}
.y8d{bottom:380.866667pt;}
.y4a{bottom:381.506667pt;}
.y10c{bottom:388.226667pt;}
.yfd{bottom:388.546667pt;}
.y6a{bottom:388.706667pt;}
.y25{bottom:390.146667pt;}
.ydb{bottom:390.306667pt;}
.y78{bottom:390.626667pt;}
.yc8{bottom:398.466667pt;}
.y8c{bottom:399.266667pt;}
.yfc{bottom:406.946667pt;}
.y49{bottom:409.026667pt;}
.y69{bottom:416.226667pt;}
.yc7{bottom:416.866667pt;}
.yda{bottom:417.986667pt;}
.y10b{bottom:425.346667pt;}
.y8b{bottom:426.946667pt;}
.y24{bottom:427.106667pt;}
.yc6{bottom:435.266667pt;}
.y48{bottom:436.706667pt;}
.y10a{bottom:443.746667pt;}
.y68{bottom:443.906667pt;}
.y8a{bottom:445.346667pt;}
.y23{bottom:445.506667pt;}
.yc5{bottom:453.666667pt;}
.yfb{bottom:462.306667pt;}
.y89{bottom:463.746667pt;}
.y22{bottom:463.906667pt;}
.y47{bottom:464.226667pt;}
.y67{bottom:471.426667pt;}
.yc4{bottom:472.066667pt;}
.yd9{bottom:473.186667pt;}
.yfa{bottom:480.706667pt;}
.y88{bottom:482.146667pt;}
.y21{bottom:482.306667pt;}
.yc3{bottom:490.466667pt;}
.y46{bottom:491.906667pt;}
.y66{bottom:499.106667pt;}
.y87{bottom:500.546667pt;}
.y20{bottom:500.706667pt;}
.y64{bottom:517.506667pt;}
.yc2{bottom:518.146667pt;}
.y86{bottom:518.946667pt;}
.y1f{bottom:519.106667pt;}
.y45{bottom:519.426667pt;}
.yd8{bottom:528.386667pt;}
.yf9{bottom:536.226667pt;}
.y85{bottom:537.373333pt;}
.y1e{bottom:537.533333pt;}
.yc1{bottom:545.693333pt;}
.y44{bottom:547.133333pt;}
.yf8{bottom:554.653333pt;}
.y1d{bottom:555.933333pt;}
.y63{bottom:558.333333pt;}
.yf7{bottom:573.053333pt;}
.y1c{bottom:574.333333pt;}
.y43{bottom:574.653333pt;}
.yc0{bottom:582.813333pt;}
.y84{bottom:583.613333pt;}
.y1b{bottom:592.733333pt;}
.y62{bottom:599.133333pt;}
.ybf{bottom:601.213333pt;}
.y42{bottom:602.333333pt;}
.yf6{bottom:610.173333pt;}
.y1a{bottom:611.133333pt;}
.ybe{bottom:619.613333pt;}
.y77{bottom:620.733333pt;}
.yf5{bottom:628.573333pt;}
.y19{bottom:629.533333pt;}
.y41{bottom:629.853333pt;}
.ybd{bottom:638.013333pt;}
.y83{bottom:638.653333pt;}
.yd7{bottom:638.813333pt;}
.y76{bottom:638.973333pt;}
.y61{bottom:639.933333pt;}
.yf4{bottom:646.973333pt;}
.y18{bottom:647.933333pt;}
.ybc{bottom:656.413333pt;}
.y40{bottom:657.373333pt;}
.y17{bottom:666.333333pt;}
.ybb{bottom:674.813333pt;}
.y75{bottom:675.773333pt;}
.yf3{bottom:683.933333pt;}
.y16{bottom:684.733333pt;}
.y3f{bottom:685.053333pt;}
.yd6{bottom:694.013333pt;}
.y74{bottom:694.173333pt;}
.y60{bottom:699.133333pt;}
.yf2{bottom:702.333333pt;}
.y15{bottom:703.133333pt;}
.y3e{bottom:712.573333pt;}
.yf1{bottom:720.733333pt;}
.yba{bottom:721.053333pt;}
.y14{bottom:721.533333pt;}
.ya3{bottom:721.853333pt;}
.y109{bottom:739.453333pt;}
.y13{bottom:739.933333pt;}
.y3d{bottom:740.253333pt;}
.yb9{bottom:748.573333pt;}
.yd5{bottom:749.213333pt;}
.ya2{bottom:749.373333pt;}
.yf0{bottom:757.853333pt;}
.y12{bottom:758.333333pt;}
.y3c{bottom:767.773333pt;}
.yb8{bottom:776.293333pt;}
.y11{bottom:776.773333pt;}
.ya1{bottom:777.093333pt;}
.yef{bottom:794.693333pt;}
.y10{bottom:795.173333pt;}
.y3b{bottom:795.493333pt;}
.y5c{bottom:799.173333pt;}
.yd4{bottom:804.453333pt;}
.y108{bottom:813.413333pt;}
.yf{bottom:813.573333pt;}
.ya0{bottom:813.893333pt;}
.yb7{bottom:822.533333pt;}
.y3a{bottom:823.013333pt;}
.yee{bottom:831.813333pt;}
.ye{bottom:831.973333pt;}
.y9f{bottom:832.293333pt;}
.yed{bottom:850.213333pt;}
.yd{bottom:850.373333pt;}
.y39{bottom:850.693333pt;}
.y5b{bottom:858.373333pt;}
.yb6{bottom:859.653333pt;}
.yec{bottom:868.613333pt;}
.yc{bottom:868.773333pt;}
.y9e{bottom:869.093333pt;}
.yb5{bottom:878.053333pt;}
.y38{bottom:878.213333pt;}
.yb{bottom:887.173333pt;}
.y9d{bottom:887.493333pt;}
.yb4{bottom:896.453333pt;}
.y5a{bottom:899.173333pt;}
.ya{bottom:905.573333pt;}
.y37{bottom:905.893333pt;}
.yb3{bottom:914.853333pt;}
.y9{bottom:923.973333pt;}
.yb2{bottom:933.253333pt;}
.y36{bottom:933.413333pt;}
.y57{bottom:939.973333pt;}
.y8{bottom:942.373333pt;}
.yb1{bottom:951.653333pt;}
.y7{bottom:960.773333pt;}
.y35{bottom:961.093333pt;}
.yb0{bottom:970.053333pt;}
.yeb{bottom:979.493333pt;}
.y55{bottom:981.413333pt;}
.y34{bottom:988.613333pt;}
.y6{bottom:997.893333pt;}
.yaf{bottom:1016.160000pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.h9{height:18.400000pt;}
.h2{height:36.257812pt;}
.ha{height:36.800000pt;}
.he{height:36.832000pt;}
.h4{height:40.343342pt;}
.h6{height:45.156250pt;}
.h8{height:48.218750pt;}
.h5{height:50.578125pt;}
.hb{height:52.750000pt;}
.hf{height:52.834688pt;}
.hc{height:55.200000pt;}
.hd{height:55.232000pt;}
.h7{height:56.031250pt;}
.h3{height:62.935614pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:26.880000pt;}
.w4{width:277.946667pt;}
.w5{width:289.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:0.960000pt;}
.x13{left:81.786667pt;}
.x11{left:85.594667pt;}
.x1{left:96.031988pt;}
.xf{left:98.112000pt;}
.x3{left:108.511988pt;}
.xd{left:120.031988pt;}
.x2{left:126.911988pt;}
.xe{left:144.026655pt;}
.x15{left:160.026655pt;}
.x6{left:170.906655pt;}
.xb{left:187.866655pt;}
.x14{left:192.026655pt;}
.xa{left:298.626655pt;}
.x4{left:309.986655pt;}
.x7{left:318.626655pt;}
.xc{left:324.386655pt;}
.x5{left:331.106655pt;}
.x8{left:390.626655pt;}
.x9{left:396.866655pt;}
.x12{left:406.786667pt;}
}




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