
    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_c82a6c18ca6663991265cd86.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e541893409d6e46405656b6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_0b6cb66f5abc814e77925a28.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7f966b0a919cb096b7b4ca5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b5e30bda645dca83d344693b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_db79d0e27b9eb9135482b5cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_f52f46f519e3f3ab462251e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_46c143a07bffc726ca0bc7ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966797;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_5fd82f7b6663a2fc5d9f9bd2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929688;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_93784450abf6e4df8a815ddd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.955078;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:fff;src:url('chunks/assets/font_d66717fab1899864194c79af.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.260000px;}
.ls15{letter-spacing:-0.924000px;}
.ls14{letter-spacing:-0.774000px;}
.ls1d{letter-spacing:-0.666000px;}
.ls13{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls1c{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106560px;}
.lse{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.379920px;}
.ls1f{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.511800px;}
.ls7{letter-spacing:0.540000px;}
.lsd{letter-spacing:7.866720px;}
.ls1a{letter-spacing:11.466720px;}
.lsf{letter-spacing:15.066720px;}
.ls2{letter-spacing:31.626720px;}
.ls1e{letter-spacing:41.706720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wse{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._1a{margin-left:-15.312480px;}
._1c{margin-left:-11.546640px;}
._7{margin-left:-9.325680px;}
._8{margin-left:-4.743840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:3.040080px;}
._c{width:4.761840px;}
._10{width:6.523920px;}
._f{width:7.709040px;}
._14{width:9.077040px;}
._d{width:10.229040px;}
._e{width:11.404080px;}
._11{width:12.470400px;}
._15{width:13.535280px;}
._16{width:16.045920px;}
._18{width:17.310240px;}
._19{width:18.496080px;}
._1b{width:19.531440px;}
._13{width:20.557440px;}
._17{width:21.623760px;}
._12{width:22.708800px;}
._1e{width:25.031760px;}
._1d{width:27.439920px;}
._a{width:65.851920px;}
._9{width:67.012320px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y10f{bottom:10.620000px;}
.y10e{bottom:30.600000px;}
.y10b{bottom:34.740000px;}
.y10d{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.y10c{bottom:70.230000px;}
.yfa{bottom:87.300000px;}
.y67{bottom:94.320000px;}
.yd7{bottom:101.340000px;}
.y32{bottom:102.780000px;}
.y95{bottom:105.300000px;}
.y10a{bottom:105.480000px;}
.yf9{bottom:107.100000px;}
.y66{bottom:114.300000px;}
.yd6{bottom:121.140000px;}
.y31{bottom:122.580000px;}
.y109{bottom:124.380000px;}
.y94{bottom:125.100000px;}
.yf8{bottom:126.900000px;}
.y65{bottom:134.100000px;}
.yd5{bottom:140.940000px;}
.y30{bottom:142.560000px;}
.y108{bottom:144.180000px;}
.y93{bottom:144.900000px;}
.yf7{bottom:146.700000px;}
.y64{bottom:153.930000px;}
.yd4{bottom:160.950000px;}
.y2f{bottom:162.390000px;}
.y107{bottom:164.010000px;}
.y92{bottom:164.730000px;}
.y63{bottom:173.730000px;}
.yf6{bottom:175.530000px;}
.yd3{bottom:180.750000px;}
.y2e{bottom:182.190000px;}
.y106{bottom:183.810000px;}
.y91{bottom:184.530000px;}
.y62{bottom:193.530000px;}
.yf5{bottom:195.510000px;}
.yd2{bottom:200.550000px;}
.y2d{bottom:201.990000px;}
.y105{bottom:203.610000px;}
.y90{bottom:204.510000px;}
.y61{bottom:213.510000px;}
.yf4{bottom:215.310000px;}
.yd1{bottom:220.350000px;}
.y2c{bottom:221.790000px;}
.y104{bottom:223.590000px;}
.y8f{bottom:224.310000px;}
.y60{bottom:233.310000px;}
.yf3{bottom:235.110000px;}
.yd0{bottom:240.150000px;}
.y2b{bottom:241.770000px;}
.y103{bottom:243.390000px;}
.y8e{bottom:244.110000px;}
.y5f{bottom:253.110000px;}
.yf2{bottom:254.910000px;}
.ycf{bottom:260.130000px;}
.y2a{bottom:261.570000px;}
.yb2{bottom:261.930000px;}
.y102{bottom:263.190000px;}
.y8d{bottom:263.910000px;}
.y5e{bottom:272.910000px;}
.yf1{bottom:274.710000px;}
.yce{bottom:279.930000px;}
.y29{bottom:281.370000px;}
.yb1{bottom:281.730000px;}
.y101{bottom:282.990000px;}
.y8c{bottom:283.710000px;}
.y5d{bottom:292.710000px;}
.yf0{bottom:294.690000px;}
.ycd{bottom:299.730000px;}
.y28{bottom:301.170000px;}
.yb0{bottom:301.710000px;}
.y100{bottom:302.790000px;}
.y8b{bottom:303.690000px;}
.y5c{bottom:312.690000px;}
.yef{bottom:314.490000px;}
.ycc{bottom:319.530000px;}
.y27{bottom:320.970000px;}
.yaf{bottom:321.510000px;}
.yff{bottom:322.770000px;}
.y8a{bottom:323.490000px;}
.y5b{bottom:332.490000px;}
.yee{bottom:334.290000px;}
.ycb{bottom:339.330000px;}
.y26{bottom:340.950000px;}
.yae{bottom:341.310000px;}
.yfe{bottom:342.570000px;}
.y89{bottom:343.290000px;}
.y5a{bottom:352.290000px;}
.yed{bottom:354.090000px;}
.yca{bottom:359.310000px;}
.y25{bottom:360.750000px;}
.yad{bottom:361.110000px;}
.yfd{bottom:362.370000px;}
.y88{bottom:363.090000px;}
.y59{bottom:372.090000px;}
.yec{bottom:373.890000px;}
.yc9{bottom:379.110000px;}
.y24{bottom:380.550000px;}
.yac{bottom:380.910000px;}
.yfc{bottom:382.170000px;}
.y87{bottom:382.890000px;}
.y58{bottom:391.890000px;}
.yeb{bottom:393.870000px;}
.yc8{bottom:398.910000px;}
.y23{bottom:400.350000px;}
.yab{bottom:400.755000px;}
.y86{bottom:402.915000px;}
.yfb{bottom:407.055000px;}
.y57{bottom:411.915000px;}
.yea{bottom:413.715000px;}
.yc7{bottom:418.755000px;}
.y22{bottom:420.195000px;}
.yaa{bottom:420.735000px;}
.y85{bottom:422.715000px;}
.y56{bottom:431.715000px;}
.ye9{bottom:433.515000px;}
.yc6{bottom:438.555000px;}
.y21{bottom:440.175000px;}
.ya9{bottom:440.535000px;}
.y84{bottom:442.515000px;}
.y55{bottom:451.515000px;}
.ye8{bottom:453.315000px;}
.yc5{bottom:458.535000px;}
.y20{bottom:459.975000px;}
.ya8{bottom:460.335000px;}
.y83{bottom:462.315000px;}
.y54{bottom:471.315000px;}
.ye7{bottom:473.115000px;}
.y1f{bottom:479.775000px;}
.ya7{bottom:480.135000px;}
.y82{bottom:482.115000px;}
.yc4{bottom:487.335000px;}
.y53{bottom:491.115000px;}
.ye6{bottom:493.095000px;}
.y1e{bottom:499.575000px;}
.ya6{bottom:499.935000px;}
.y81{bottom:502.095000px;}
.yc3{bottom:507.135000px;}
.y52{bottom:511.095000px;}
.ye5{bottom:512.895000px;}
.ya5{bottom:516.675000px;}
.y80{bottom:521.895000px;}
.yc2{bottom:526.935000px;}
.y51{bottom:530.895000px;}
.ye4{bottom:532.695000px;}
.y1d{bottom:541.515000px;}
.y7f{bottom:541.695000px;}
.yc1{bottom:546.735000px;}
.y50{bottom:550.695000px;}
.ye3{bottom:552.495000px;}
.y7e{bottom:561.495000px;}
.yc0{bottom:566.715000px;}
.y1c{bottom:570.315000px;}
.y4f{bottom:570.495000px;}
.ye2{bottom:572.295000px;}
.y7d{bottom:581.295000px;}
.ybf{bottom:586.515000px;}
.y1b{bottom:590.295000px;}
.ye1{bottom:592.275000px;}
.y7c{bottom:601.275000px;}
.ybe{bottom:606.315000px;}
.y1a{bottom:610.095000px;}
.y4e{bottom:610.275000px;}
.ye0{bottom:612.075000px;}
.y7b{bottom:621.075000px;}
.ybd{bottom:626.115000px;}
.y19{bottom:629.895000px;}
.y4d{bottom:630.075000px;}
.ydf{bottom:631.875000px;}
.y7a{bottom:640.875000px;}
.ybc{bottom:645.915000px;}
.y18{bottom:649.725000px;}
.y4c{bottom:649.905000px;}
.yde{bottom:651.705000px;}
.y79{bottom:660.705000px;}
.ybb{bottom:665.925000px;}
.y17{bottom:669.525000px;}
.y4b{bottom:669.705000px;}
.y78{bottom:680.505000px;}
.yba{bottom:685.725000px;}
.y16{bottom:689.505000px;}
.y77{bottom:700.485000px;}
.yb9{bottom:705.525000px;}
.y15{bottom:709.305000px;}
.y4a{bottom:709.485000px;}
.y76{bottom:720.285000px;}
.yb8{bottom:725.325000px;}
.y14{bottom:729.105000px;}
.y49{bottom:729.285000px;}
.y75{bottom:740.085000px;}
.yb7{bottom:745.125000px;}
.y13{bottom:748.905000px;}
.y48{bottom:749.085000px;}
.y74{bottom:759.885000px;}
.yb6{bottom:764.925000px;}
.y12{bottom:768.705000px;}
.y47{bottom:768.885000px;}
.y73{bottom:779.685000px;}
.yb5{bottom:784.905000px;}
.y11{bottom:788.685000px;}
.y72{bottom:799.665000px;}
.yb4{bottom:804.705000px;}
.y10{bottom:808.485000px;}
.y46{bottom:808.665000px;}
.y71{bottom:819.465000px;}
.yb3{bottom:821.265000px;}
.yf{bottom:828.285000px;}
.y45{bottom:828.465000px;}
.y70{bottom:839.265000px;}
.ye{bottom:848.085000px;}
.y44{bottom:848.265000px;}
.y6f{bottom:859.065000px;}
.y43{bottom:868.065000px;}
.yd{bottom:870.225000px;}
.y6e{bottom:878.865000px;}
.ya4{bottom:882.825000px;}
.y42{bottom:887.865000px;}
.yc{bottom:895.245000px;}
.y6d{bottom:898.890000px;}
.ya3{bottom:902.670000px;}
.y41{bottom:907.890000px;}
.yb{bottom:915.090000px;}
.y6c{bottom:918.690000px;}
.ya2{bottom:922.650000px;}
.y40{bottom:927.690000px;}
.ya{bottom:930.210000px;}
.y6b{bottom:938.490000px;}
.ya1{bottom:942.450000px;}
.y3f{bottom:947.490000px;}
.y9{bottom:951.630000px;}
.y6a{bottom:958.290000px;}
.ya0{bottom:962.250000px;}
.y3e{bottom:967.290000px;}
.y8{bottom:975.030000px;}
.y69{bottom:978.090000px;}
.y9f{bottom:982.050000px;}
.y3d{bottom:987.090000px;}
.y68{bottom:998.070000px;}
.y9e{bottom:1001.850000px;}
.y7{bottom:1006.710000px;}
.y3c{bottom:1007.070000px;}
.ydd{bottom:1017.870000px;}
.y9d{bottom:1021.830000px;}
.y3b{bottom:1026.870000px;}
.ydc{bottom:1037.670000px;}
.y9c{bottom:1041.630000px;}
.y3a{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.ydb{bottom:1057.470000px;}
.y9b{bottom:1061.430000px;}
.y39{bottom:1066.470000px;}
.yda{bottom:1077.270000px;}
.y9a{bottom:1081.230000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.270000px;}
.yd9{bottom:1097.250000px;}
.y99{bottom:1101.030000px;}
.y37{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.yd8{bottom:1117.050000px;}
.y98{bottom:1121.010000px;}
.y36{bottom:1126.050000px;}
.y97{bottom:1142.250000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.850000px;}
.y96{bottom:1164.600000px;}
.y34{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.he{height:2.403281px;}
.h7{height:32.444297px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.h3{height:46.736719px;}
.hb{height:49.255313px;}
.h8{height:49.868086px;}
.h6{height:53.224453px;}
.h4{height:55.275469px;}
.hc{height:59.362523px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.hd{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.xc{left:45.900000px;}
.x1{left:54.179987px;}
.x3{left:70.199987px;}
.x2{left:75.599987px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.xd{left:190.290000px;}
.x5{left:240.329987px;}
.xe{left:256.710000px;}
.x7{left:276.734987px;}
.x6{left:457.304987px;}
.xa{left:732.749987px;}
.xb{left:747.689987px;}
.x4{left:759.749987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls15{letter-spacing:-0.821333pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls1d{letter-spacing:-0.592000pt;}
.ls13{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.337707pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.454933pt;}
.ls7{letter-spacing:0.480000pt;}
.lsd{letter-spacing:6.992640pt;}
.ls1a{letter-spacing:10.192640pt;}
.lsf{letter-spacing:13.392640pt;}
.ls2{letter-spacing:28.112640pt;}
.ls1e{letter-spacing:37.072640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wse{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._1a{margin-left:-13.611093pt;}
._1c{margin-left:-10.263680pt;}
._7{margin-left:-8.289493pt;}
._8{margin-left:-4.216747pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.702293pt;}
._c{width:4.232747pt;}
._10{width:5.799040pt;}
._f{width:6.852480pt;}
._14{width:8.068480pt;}
._d{width:9.092480pt;}
._e{width:10.136960pt;}
._11{width:11.084800pt;}
._15{width:12.031360pt;}
._16{width:14.263040pt;}
._18{width:15.386880pt;}
._19{width:16.440960pt;}
._1b{width:17.361280pt;}
._13{width:18.273280pt;}
._17{width:19.221120pt;}
._12{width:20.185600pt;}
._1e{width:22.250453pt;}
._1d{width:24.391040pt;}
._a{width:58.535040pt;}
._9{width:59.566507pt;}
.fs7{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:9.440000pt;}
.y10e{bottom:27.200000pt;}
.y10b{bottom:30.880000pt;}
.y10d{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.y10c{bottom:62.426667pt;}
.yfa{bottom:77.600000pt;}
.y67{bottom:83.840000pt;}
.yd7{bottom:90.080000pt;}
.y32{bottom:91.360000pt;}
.y95{bottom:93.600000pt;}
.y10a{bottom:93.760000pt;}
.yf9{bottom:95.200000pt;}
.y66{bottom:101.600000pt;}
.yd6{bottom:107.680000pt;}
.y31{bottom:108.960000pt;}
.y109{bottom:110.560000pt;}
.y94{bottom:111.200000pt;}
.yf8{bottom:112.800000pt;}
.y65{bottom:119.200000pt;}
.yd5{bottom:125.280000pt;}
.y30{bottom:126.720000pt;}
.y108{bottom:128.160000pt;}
.y93{bottom:128.800000pt;}
.yf7{bottom:130.400000pt;}
.y64{bottom:136.826667pt;}
.yd4{bottom:143.066667pt;}
.y2f{bottom:144.346667pt;}
.y107{bottom:145.786667pt;}
.y92{bottom:146.426667pt;}
.y63{bottom:154.426667pt;}
.yf6{bottom:156.026667pt;}
.yd3{bottom:160.666667pt;}
.y2e{bottom:161.946667pt;}
.y106{bottom:163.386667pt;}
.y91{bottom:164.026667pt;}
.y62{bottom:172.026667pt;}
.yf5{bottom:173.786667pt;}
.yd2{bottom:178.266667pt;}
.y2d{bottom:179.546667pt;}
.y105{bottom:180.986667pt;}
.y90{bottom:181.786667pt;}
.y61{bottom:189.786667pt;}
.yf4{bottom:191.386667pt;}
.yd1{bottom:195.866667pt;}
.y2c{bottom:197.146667pt;}
.y104{bottom:198.746667pt;}
.y8f{bottom:199.386667pt;}
.y60{bottom:207.386667pt;}
.yf3{bottom:208.986667pt;}
.yd0{bottom:213.466667pt;}
.y2b{bottom:214.906667pt;}
.y103{bottom:216.346667pt;}
.y8e{bottom:216.986667pt;}
.y5f{bottom:224.986667pt;}
.yf2{bottom:226.586667pt;}
.ycf{bottom:231.226667pt;}
.y2a{bottom:232.506667pt;}
.yb2{bottom:232.826667pt;}
.y102{bottom:233.946667pt;}
.y8d{bottom:234.586667pt;}
.y5e{bottom:242.586667pt;}
.yf1{bottom:244.186667pt;}
.yce{bottom:248.826667pt;}
.y29{bottom:250.106667pt;}
.yb1{bottom:250.426667pt;}
.y101{bottom:251.546667pt;}
.y8c{bottom:252.186667pt;}
.y5d{bottom:260.186667pt;}
.yf0{bottom:261.946667pt;}
.ycd{bottom:266.426667pt;}
.y28{bottom:267.706667pt;}
.yb0{bottom:268.186667pt;}
.y100{bottom:269.146667pt;}
.y8b{bottom:269.946667pt;}
.y5c{bottom:277.946667pt;}
.yef{bottom:279.546667pt;}
.ycc{bottom:284.026667pt;}
.y27{bottom:285.306667pt;}
.yaf{bottom:285.786667pt;}
.yff{bottom:286.906667pt;}
.y8a{bottom:287.546667pt;}
.y5b{bottom:295.546667pt;}
.yee{bottom:297.146667pt;}
.ycb{bottom:301.626667pt;}
.y26{bottom:303.066667pt;}
.yae{bottom:303.386667pt;}
.yfe{bottom:304.506667pt;}
.y89{bottom:305.146667pt;}
.y5a{bottom:313.146667pt;}
.yed{bottom:314.746667pt;}
.yca{bottom:319.386667pt;}
.y25{bottom:320.666667pt;}
.yad{bottom:320.986667pt;}
.yfd{bottom:322.106667pt;}
.y88{bottom:322.746667pt;}
.y59{bottom:330.746667pt;}
.yec{bottom:332.346667pt;}
.yc9{bottom:336.986667pt;}
.y24{bottom:338.266667pt;}
.yac{bottom:338.586667pt;}
.yfc{bottom:339.706667pt;}
.y87{bottom:340.346667pt;}
.y58{bottom:348.346667pt;}
.yeb{bottom:350.106667pt;}
.yc8{bottom:354.586667pt;}
.y23{bottom:355.866667pt;}
.yab{bottom:356.226667pt;}
.y86{bottom:358.146667pt;}
.yfb{bottom:361.826667pt;}
.y57{bottom:366.146667pt;}
.yea{bottom:367.746667pt;}
.yc7{bottom:372.226667pt;}
.y22{bottom:373.506667pt;}
.yaa{bottom:373.986667pt;}
.y85{bottom:375.746667pt;}
.y56{bottom:383.746667pt;}
.ye9{bottom:385.346667pt;}
.yc6{bottom:389.826667pt;}
.y21{bottom:391.266667pt;}
.ya9{bottom:391.586667pt;}
.y84{bottom:393.346667pt;}
.y55{bottom:401.346667pt;}
.ye8{bottom:402.946667pt;}
.yc5{bottom:407.586667pt;}
.y20{bottom:408.866667pt;}
.ya8{bottom:409.186667pt;}
.y83{bottom:410.946667pt;}
.y54{bottom:418.946667pt;}
.ye7{bottom:420.546667pt;}
.y1f{bottom:426.466667pt;}
.ya7{bottom:426.786667pt;}
.y82{bottom:428.546667pt;}
.yc4{bottom:433.186667pt;}
.y53{bottom:436.546667pt;}
.ye6{bottom:438.306667pt;}
.y1e{bottom:444.066667pt;}
.ya6{bottom:444.386667pt;}
.y81{bottom:446.306667pt;}
.yc3{bottom:450.786667pt;}
.y52{bottom:454.306667pt;}
.ye5{bottom:455.906667pt;}
.ya5{bottom:459.266667pt;}
.y80{bottom:463.906667pt;}
.yc2{bottom:468.386667pt;}
.y51{bottom:471.906667pt;}
.ye4{bottom:473.506667pt;}
.y1d{bottom:481.346667pt;}
.y7f{bottom:481.506667pt;}
.yc1{bottom:485.986667pt;}
.y50{bottom:489.506667pt;}
.ye3{bottom:491.106667pt;}
.y7e{bottom:499.106667pt;}
.yc0{bottom:503.746667pt;}
.y1c{bottom:506.946667pt;}
.y4f{bottom:507.106667pt;}
.ye2{bottom:508.706667pt;}
.y7d{bottom:516.706667pt;}
.ybf{bottom:521.346667pt;}
.y1b{bottom:524.706667pt;}
.ye1{bottom:526.466667pt;}
.y7c{bottom:534.466667pt;}
.ybe{bottom:538.946667pt;}
.y1a{bottom:542.306667pt;}
.y4e{bottom:542.466667pt;}
.ye0{bottom:544.066667pt;}
.y7b{bottom:552.066667pt;}
.ybd{bottom:556.546667pt;}
.y19{bottom:559.906667pt;}
.y4d{bottom:560.066667pt;}
.ydf{bottom:561.666667pt;}
.y7a{bottom:569.666667pt;}
.ybc{bottom:574.146667pt;}
.y18{bottom:577.533333pt;}
.y4c{bottom:577.693333pt;}
.yde{bottom:579.293333pt;}
.y79{bottom:587.293333pt;}
.ybb{bottom:591.933333pt;}
.y17{bottom:595.133333pt;}
.y4b{bottom:595.293333pt;}
.y78{bottom:604.893333pt;}
.yba{bottom:609.533333pt;}
.y16{bottom:612.893333pt;}
.y77{bottom:622.653333pt;}
.yb9{bottom:627.133333pt;}
.y15{bottom:630.493333pt;}
.y4a{bottom:630.653333pt;}
.y76{bottom:640.253333pt;}
.yb8{bottom:644.733333pt;}
.y14{bottom:648.093333pt;}
.y49{bottom:648.253333pt;}
.y75{bottom:657.853333pt;}
.yb7{bottom:662.333333pt;}
.y13{bottom:665.693333pt;}
.y48{bottom:665.853333pt;}
.y74{bottom:675.453333pt;}
.yb6{bottom:679.933333pt;}
.y12{bottom:683.293333pt;}
.y47{bottom:683.453333pt;}
.y73{bottom:693.053333pt;}
.yb5{bottom:697.693333pt;}
.y11{bottom:701.053333pt;}
.y72{bottom:710.813333pt;}
.yb4{bottom:715.293333pt;}
.y10{bottom:718.653333pt;}
.y46{bottom:718.813333pt;}
.y71{bottom:728.413333pt;}
.yb3{bottom:730.013333pt;}
.yf{bottom:736.253333pt;}
.y45{bottom:736.413333pt;}
.y70{bottom:746.013333pt;}
.ye{bottom:753.853333pt;}
.y44{bottom:754.013333pt;}
.y6f{bottom:763.613333pt;}
.y43{bottom:771.613333pt;}
.yd{bottom:773.533333pt;}
.y6e{bottom:781.213333pt;}
.ya4{bottom:784.733333pt;}
.y42{bottom:789.213333pt;}
.yc{bottom:795.773333pt;}
.y6d{bottom:799.013333pt;}
.ya3{bottom:802.373333pt;}
.y41{bottom:807.013333pt;}
.yb{bottom:813.413333pt;}
.y6c{bottom:816.613333pt;}
.ya2{bottom:820.133333pt;}
.y40{bottom:824.613333pt;}
.ya{bottom:826.853333pt;}
.y6b{bottom:834.213333pt;}
.ya1{bottom:837.733333pt;}
.y3f{bottom:842.213333pt;}
.y9{bottom:845.893333pt;}
.y6a{bottom:851.813333pt;}
.ya0{bottom:855.333333pt;}
.y3e{bottom:859.813333pt;}
.y8{bottom:866.693333pt;}
.y69{bottom:869.413333pt;}
.y9f{bottom:872.933333pt;}
.y3d{bottom:877.413333pt;}
.y68{bottom:887.173333pt;}
.y9e{bottom:890.533333pt;}
.y7{bottom:894.853333pt;}
.y3c{bottom:895.173333pt;}
.ydd{bottom:904.773333pt;}
.y9d{bottom:908.293333pt;}
.y3b{bottom:912.773333pt;}
.ydc{bottom:922.373333pt;}
.y9c{bottom:925.893333pt;}
.y3a{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.ydb{bottom:939.973333pt;}
.y9b{bottom:943.493333pt;}
.y39{bottom:947.973333pt;}
.yda{bottom:957.573333pt;}
.y9a{bottom:961.093333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.573333pt;}
.yd9{bottom:975.333333pt;}
.y99{bottom:978.693333pt;}
.y37{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.yd8{bottom:992.933333pt;}
.y98{bottom:996.453333pt;}
.y36{bottom:1000.933333pt;}
.y97{bottom:1015.333333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.533333pt;}
.y96{bottom:1035.200000pt;}
.y34{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.he{height:2.136250pt;}
.h7{height:28.839375pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.h3{height:41.543750pt;}
.hb{height:43.782500pt;}
.h8{height:44.327188pt;}
.h6{height:47.310625pt;}
.h4{height:49.133750pt;}
.hc{height:52.766687pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.hd{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.xc{left:40.800000pt;}
.x1{left:48.159988pt;}
.x3{left:62.399988pt;}
.x2{left:67.199988pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.xd{left:169.146667pt;}
.x5{left:213.626655pt;}
.xe{left:228.186667pt;}
.x7{left:245.986655pt;}
.x6{left:406.493322pt;}
.xa{left:651.333322pt;}
.xb{left:664.613322pt;}
.x4{left:675.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; }
  