
    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_18cc511d05c258bb3957d4eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.078613;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_480bf1cd70c1b7df71bd6adb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.078613;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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_839b7486ef2e6328aa210699.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_a8c6d1447c968c9f323935bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_ca247e8702bcbd64477b1550.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_f0c16e804de5dd09726bb3b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fac6a0d0786be249cc3119d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_25a957735eb289b5939026bb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7075c8bf670ee9f927764a70.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.845215;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v10{vertical-align:-144.000000px;}
.va{vertical-align:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v9{vertical-align:-15.840000px;}
.v5{vertical-align:-13.680000px;}
.v14{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.920000px;}
.v4{vertical-align:13.680000px;}
.v6{vertical-align:15.840000px;}
.vf{vertical-align:18.720000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.vc{vertical-align:36.000000px;}
.v7{vertical-align:42.480000px;}
.v15{vertical-align:46.080000px;}
.v12{vertical-align:48.240000px;}
.v13{vertical-align:56.856000px;}
.v11{vertical-align:69.120000px;}
.ve{vertical-align:74.880000px;}
.vd{vertical-align:78.480000px;}
.vb{vertical-align:115.200000px;}
.ls2f{letter-spacing:-2.232000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.265800px;}
.ls2b{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.099600px;}
.ls4{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.342600px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.296000px;}
.ls13{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.648880px;}
.ls3{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.104640px;}
.lse{letter-spacing:3.312000px;}
.ls22{letter-spacing:3.543120px;}
.ls19{letter-spacing:4.130640px;}
.ls25{letter-spacing:4.263120px;}
.ls29{letter-spacing:7.200000px;}
.lsa{letter-spacing:8.496000px;}
.lsb{letter-spacing:9.936000px;}
.ls15{letter-spacing:12.336480px;}
.ls14{letter-spacing:13.056480px;}
.ls24{letter-spacing:13.675680px;}
.ls12{letter-spacing:15.480000px;}
.ls1a{letter-spacing:15.696000px;}
.ls1c{letter-spacing:16.056000px;}
.ls21{letter-spacing:17.943120px;}
.ls30{letter-spacing:18.144000px;}
.ls20{letter-spacing:19.383120px;}
.ls7{letter-spacing:19.656000px;}
.ls9{letter-spacing:20.736000px;}
.lsc{letter-spacing:24.077520px;}
.ls1b{letter-spacing:24.336000px;}
.ls1{letter-spacing:25.200000px;}
.ls17{letter-spacing:26.208000px;}
.ls6{letter-spacing:27.216000px;}
.ls8{letter-spacing:28.656000px;}
.ls23{letter-spacing:29.016000px;}
.ls5{letter-spacing:29.376000px;}
.ls1e{letter-spacing:31.601520px;}
.ls2a{letter-spacing:54.144000px;}
.ls2{letter-spacing:72.720000px;}
.ls18{letter-spacing:363.360000px;}
.ls1f{letter-spacing:900.876000px;}
.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;}
}
.ws3{word-spacing:-49.320000px;}
.ws4{word-spacing:-35.017200px;}
.ws8{word-spacing:-34.751400px;}
.wsd{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wse{word-spacing:-15.768000px;}
.ws6{word-spacing:-12.780000px;}
.wsb{word-spacing:-12.680400px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:3.790800px;}
.ws7{word-spacing:5.235480px;}
.ws5{word-spacing:5.649840px;}
.ws9{word-spacing:5.950800px;}
._24{margin-left:-34.596000px;}
._1f{margin-left:-33.192000px;}
._23{margin-left:-31.980000px;}
._22{margin-left:-30.096000px;}
._27{margin-left:-27.072000px;}
._21{margin-left:-23.616000px;}
._2a{margin-left:-11.856480px;}
._6{margin-left:-10.550160px;}
._7{margin-left:-8.618400px;}
._2b{margin-left:-7.481040px;}
._5{margin-left:-5.808240px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._8{width:2.087520px;}
._f{width:3.588960px;}
._1a{width:4.806000px;}
._17{width:6.498000px;}
._d{width:7.704000px;}
._13{width:9.504000px;}
._14{width:10.674000px;}
._b{width:11.952000px;}
._c{width:13.086000px;}
._15{width:14.880000px;}
._1e{width:16.344000px;}
._2c{width:18.093120px;}
._12{width:19.368000px;}
._20{width:20.376000px;}
._25{width:22.320000px;}
._26{width:23.328000px;}
._11{width:24.558000px;}
._9{width:25.608000px;}
._a{width:27.360000px;}
._28{width:28.872000px;}
._29{width:30.186000px;}
._18{width:31.680000px;}
._19{width:33.408000px;}
._1d{width:34.560000px;}
._1c{width:35.568000px;}
._2d{width:37.656000px;}
._2e{width:38.664000px;}
._2f{width:40.668000px;}
._38{width:41.706000px;}
._35{width:42.806640px;}
._30{width:43.848000px;}
._3b{width:45.918000px;}
._39{width:46.944000px;}
._3a{width:48.150000px;}
._e{width:50.112000px;}
._16{width:62.280000px;}
._10{width:72.144000px;}
._1b{width:80.208000px;}
._32{width:92.016000px;}
._37{width:103.782240px;}
._36{width:104.940000px;}
._33{width:279.576000px;}
._34{width:280.692000px;}
._4{width:1241.976000px;}
._31{width:1646.940000px;}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(192,0,0);}
.fc7{color:rgb(46,46,46);}
.fc6{color:rgb(80,80,80);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y46{bottom:-3.420000px;}
.y44{bottom:-3.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.536000px;}
.y7{bottom:7.416000px;}
.y9{bottom:26.640000px;}
.y8{bottom:47.700000px;}
.y5{bottom:68.040000px;}
.y35{bottom:97.056000px;}
.yc2{bottom:101.016000px;}
.y67{bottom:102.096000px;}
.y86{bottom:107.496000px;}
.y9e{bottom:115.416000px;}
.y34{bottom:120.996000px;}
.yc1{bottom:124.776000px;}
.y66{bottom:125.856000px;}
.y85{bottom:130.536000px;}
.y9d{bottom:139.356000px;}
.y84{bottom:139.536000px;}
.y33{bottom:144.756000px;}
.yc0{bottom:148.536000px;}
.y65{bottom:149.616000px;}
.y9c{bottom:163.110000px;}
.y83{bottom:164.730000px;}
.y32{bottom:168.510000px;}
.ybf{bottom:172.470000px;}
.y64{bottom:173.550000px;}
.y9b{bottom:186.870000px;}
.y31{bottom:192.270000px;}
.ybe{bottom:196.230000px;}
.y63{bottom:197.310000px;}
.y9a{bottom:210.630000px;}
.y82{bottom:212.790000px;}
.y30{bottom:216.210000px;}
.ybd{bottom:219.990000px;}
.y62{bottom:221.610000px;}
.y81{bottom:236.550000px;}
.y2f{bottom:239.970000px;}
.y99{bottom:243.570000px;}
.ybc{bottom:243.750000px;}
.y61{bottom:247.890000px;}
.y2e{bottom:263.730000px;}
.ybb{bottom:267.690000px;}
.y80{bottom:269.310000px;}
.y98{bottom:278.310000px;}
.y60{bottom:286.590000px;}
.y2d{bottom:287.490000px;}
.yba{bottom:291.450000px;}
.y7f{bottom:304.050000px;}
.y2c{bottom:311.430000px;}
.yb9{bottom:315.210000px;}
.y54{bottom:324.750000px;}
.y5e{bottom:327.270000px;}
.y2b{bottom:335.190000px;}
.yb8{bottom:339.015000px;}
.y55{bottom:347.115000px;}
.y5d{bottom:352.155000px;}
.y2a{bottom:358.995000px;}
.yb7{bottom:362.955000px;}
.y56{bottom:365.835000px;}
.y5c{bottom:373.215000px;}
.y5f{bottom:377.895000px;}
.y29{bottom:382.755000px;}
.yb6{bottom:386.715000px;}
.y5b{bottom:394.095000px;}
.y5a{bottom:403.095000px;}
.y57{bottom:403.635000px;}
.y28{bottom:406.695000px;}
.yb5{bottom:410.475000px;}
.y58{bottom:422.355000px;}
.y59{bottom:429.555000px;}
.y27{bottom:430.455000px;}
.yb4{bottom:434.235000px;}
.y26{bottom:454.215000px;}
.y53{bottom:454.755000px;}
.yb3{bottom:457.995000px;}
.y7e{bottom:461.955000px;}
.y25{bottom:477.975000px;}
.y52{bottom:478.515000px;}
.yb2{bottom:481.935000px;}
.y7d{bottom:485.895000px;}
.y24{bottom:501.735000px;}
.y51{bottom:502.455000px;}
.yb1{bottom:505.695000px;}
.y7c{bottom:518.655000px;}
.y23{bottom:525.675000px;}
.y50{bottom:528.015000px;}
.yb0{bottom:529.455000px;}
.y97{bottom:539.715000px;}
.y22{bottom:549.435000px;}
.y42{bottom:552.495000px;}
.yaf{bottom:553.215000px;}
.y7b{bottom:553.395000px;}
.y4e{bottom:555.015000px;}
.y96{bottom:568.515000px;}
.y21{bottom:573.195000px;}
.y43{bottom:574.815000px;}
.yae{bottom:577.155000px;}
.y4d{bottom:579.855000px;}
.y45{bottom:593.535000px;}
.y20{bottom:596.955000px;}
.y4c{bottom:600.915000px;}
.y4f{bottom:605.625000px;}
.y1f{bottom:620.925000px;}
.y4b{bottom:621.825000px;}
.yad{bottom:624.705000px;}
.y4a{bottom:630.825000px;}
.y47{bottom:631.365000px;}
.y1e{bottom:644.685000px;}
.yac{bottom:648.465000px;}
.y48{bottom:650.085000px;}
.y49{bottom:657.285000px;}
.y1d{bottom:668.445000px;}
.yab{bottom:672.405000px;}
.y7a{bottom:675.285000px;}
.y41{bottom:682.485000px;}
.y1c{bottom:692.205000px;}
.yaa{bottom:696.165000px;}
.y79{bottom:699.045000px;}
.y40{bottom:706.245000px;}
.y1b{bottom:716.145000px;}
.ya9{bottom:719.925000px;}
.y78{bottom:722.985000px;}
.y3f{bottom:730.005000px;}
.y1a{bottom:739.905000px;}
.ya8{bottom:743.685000px;}
.y77{bottom:746.745000px;}
.y3e{bottom:762.945000px;}
.y19{bottom:763.665000px;}
.ya7{bottom:767.625000px;}
.y76{bottom:770.505000px;}
.y18{bottom:787.425000px;}
.ya6{bottom:791.385000px;}
.y75{bottom:794.265000px;}
.y3d{bottom:797.685000px;}
.y95{bottom:802.905000px;}
.y17{bottom:811.365000px;}
.ya5{bottom:815.145000px;}
.y94{bottom:826.665000px;}
.y74{bottom:831.705000px;}
.y16{bottom:835.125000px;}
.ya4{bottom:838.905000px;}
.y93{bottom:850.425000px;}
.y15{bottom:858.885000px;}
.y73{bottom:874.230000px;}
.y92{bottom:874.410000px;}
.ya3{bottom:874.770000px;}
.y14{bottom:882.690000px;}
.y72{bottom:883.230000px;}
.y91{bottom:898.170000px;}
.ya2{bottom:898.530000px;}
.y13{bottom:906.630000px;}
.y71{bottom:920.670000px;}
.y90{bottom:921.930000px;}
.ya1{bottom:922.470000px;}
.y12{bottom:930.390000px;}
.y70{bottom:944.430000px;}
.y8f{bottom:945.690000px;}
.ya0{bottom:946.230000px;}
.y11{bottom:954.150000px;}
.y6f{bottom:964.770000px;}
.y8e{bottom:969.630000px;}
.y9f{bottom:969.990000px;}
.y6e{bottom:973.770000px;}
.y10{bottom:977.910000px;}
.y6d{bottom:992.490000px;}
.y8d{bottom:993.390000px;}
.y3c{bottom:993.750000px;}
.yf{bottom:1001.670000px;}
.y8c{bottom:1017.150000px;}
.y3b{bottom:1017.690000px;}
.ye{bottom:1032.450000px;}
.y6c{bottom:1040.370000px;}
.y8b{bottom:1040.910000px;}
.y3a{bottom:1041.450000px;}
.yd{bottom:1049.370000px;}
.y6b{bottom:1064.310000px;}
.y8a{bottom:1064.850000px;}
.y39{bottom:1065.210000px;}
.yc{bottom:1073.130000px;}
.y6a{bottom:1088.070000px;}
.y89{bottom:1088.610000px;}
.y38{bottom:1088.970000px;}
.yb{bottom:1099.410000px;}
.y69{bottom:1111.830000px;}
.y88{bottom:1112.370000px;}
.y37{bottom:1112.910000px;}
.ya{bottom:1131.090000px;}
.y68{bottom:1135.770000px;}
.y87{bottom:1136.310000px;}
.y36{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.he{height:18.720000px;}
.h5{height:24.156000px;}
.h16{height:37.800000px;}
.hf{height:37.836000px;}
.ha{height:42.516211px;}
.h2{height:46.696289px;}
.h3{height:51.677227px;}
.h4{height:54.000000px;}
.hb{height:59.343750px;}
.h1d{height:62.261719px;}
.h7{height:63.457031px;}
.h9{height:65.475352px;}
.h6{height:74.244727px;}
.h1c{height:75.497344px;}
.h8{height:82.808086px;}
.h13{height:116.991914px;}
.hd{height:164.777344px;}
.h12{height:178.457344px;}
.h14{height:178.577344px;}
.h11{height:180.617344px;}
.h1a{height:195.471914px;}
.h19{height:200.777344px;}
.h1b{height:216.617344px;}
.h18{height:232.191914px;}
.h15{height:347.115000px;}
.hc{height:574.815000px;}
.h10{height:612.795000px;}
.h17{height:840.525000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.596000px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:53.280000px;}
.x4{left:95.795987px;}
.x9{left:99.935987px;}
.x1b{left:104.975987px;}
.x1{left:121.715987px;}
.x31{left:127.835987px;}
.x30{left:138.275987px;}
.x12{left:140.795987px;}
.x5{left:143.634000px;}
.x10{left:148.895987px;}
.x2{left:150.149987px;}
.x2e{left:157.169987px;}
.x28{left:221.069987px;}
.xe{left:222.689987px;}
.x26{left:224.309987px;}
.x2d{left:238.349987px;}
.xc{left:249.509987px;}
.x2a{left:251.849987px;}
.x1d{left:260.489987px;}
.xa{left:263.189987px;}
.x23{left:266.609987px;}
.x1e{left:285.914987px;}
.xd{left:289.694987px;}
.xf{left:295.814987px;}
.x1f{left:297.794987px;}
.x13{left:336.134973px;}
.x20{left:341.714987px;}
.x14{left:348.374987px;}
.x22{left:351.434987px;}
.x17{left:360.974973px;}
.x21{left:367.634987px;}
.x18{left:373.214987px;}
.x1c{left:378.434987px;}
.x6{left:383.295000px;}
.x3{left:402.554987px;}
.x15{left:408.494987px;}
.x19{left:433.334987px;}
.xb{left:446.474987px;}
.x24{left:449.534987px;}
.x16{left:459.434987px;}
.x1a{left:484.304987px;}
.x2b{left:494.024987px;}
.x8{left:517.605000px;}
.x2c{left:529.664987px;}
.x29{left:549.644987px;}
.x2f{left:604.004987px;}
.x11{left:605.084987px;}
.x25{left:632.084987px;}
.x27{left:707.549987px;}
@media print{
.v10{vertical-align:-128.000000pt;}
.va{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v9{vertical-align:-14.080000pt;}
.v5{vertical-align:-12.160000pt;}
.v14{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:7.040000pt;}
.v4{vertical-align:12.160000pt;}
.v6{vertical-align:14.080000pt;}
.vf{vertical-align:16.640000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.vc{vertical-align:32.000000pt;}
.v7{vertical-align:37.760000pt;}
.v15{vertical-align:40.960000pt;}
.v12{vertical-align:42.880000pt;}
.v13{vertical-align:50.538667pt;}
.v11{vertical-align:61.440000pt;}
.ve{vertical-align:66.560000pt;}
.vd{vertical-align:69.760000pt;}
.vb{vertical-align:102.400000pt;}
.ls2f{letter-spacing:-1.984000pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.236267pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.088533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.304533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.152000pt;}
.ls13{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.354560pt;}
.ls3{letter-spacing:2.560000pt;}
.ls16{letter-spacing:2.759680pt;}
.lse{letter-spacing:2.944000pt;}
.ls22{letter-spacing:3.149440pt;}
.ls19{letter-spacing:3.671680pt;}
.ls25{letter-spacing:3.789440pt;}
.ls29{letter-spacing:6.400000pt;}
.lsa{letter-spacing:7.552000pt;}
.lsb{letter-spacing:8.832000pt;}
.ls15{letter-spacing:10.965760pt;}
.ls14{letter-spacing:11.605760pt;}
.ls24{letter-spacing:12.156160pt;}
.ls12{letter-spacing:13.760000pt;}
.ls1a{letter-spacing:13.952000pt;}
.ls1c{letter-spacing:14.272000pt;}
.ls21{letter-spacing:15.949440pt;}
.ls30{letter-spacing:16.128000pt;}
.ls20{letter-spacing:17.229440pt;}
.ls7{letter-spacing:17.472000pt;}
.ls9{letter-spacing:18.432000pt;}
.lsc{letter-spacing:21.402240pt;}
.ls1b{letter-spacing:21.632000pt;}
.ls1{letter-spacing:22.400000pt;}
.ls17{letter-spacing:23.296000pt;}
.ls6{letter-spacing:24.192000pt;}
.ls8{letter-spacing:25.472000pt;}
.ls23{letter-spacing:25.792000pt;}
.ls5{letter-spacing:26.112000pt;}
.ls1e{letter-spacing:28.090240pt;}
.ls2a{letter-spacing:48.128000pt;}
.ls2{letter-spacing:64.640000pt;}
.ls18{letter-spacing:322.986667pt;}
.ls1f{letter-spacing:800.778667pt;}
.ws3{word-spacing:-43.840000pt;}
.ws4{word-spacing:-31.126400pt;}
.ws8{word-spacing:-30.890133pt;}
.wsd{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wse{word-spacing:-14.016000pt;}
.ws6{word-spacing:-11.360000pt;}
.wsb{word-spacing:-11.271467pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:3.369600pt;}
.ws7{word-spacing:4.653760pt;}
.ws5{word-spacing:5.022080pt;}
.ws9{word-spacing:5.289600pt;}
._24{margin-left:-30.752000pt;}
._1f{margin-left:-29.504000pt;}
._23{margin-left:-28.426667pt;}
._22{margin-left:-26.752000pt;}
._27{margin-left:-24.064000pt;}
._21{margin-left:-20.992000pt;}
._2a{margin-left:-10.539093pt;}
._6{margin-left:-9.377920pt;}
._7{margin-left:-7.660800pt;}
._2b{margin-left:-6.649813pt;}
._5{margin-left:-5.162880pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._8{width:1.855573pt;}
._f{width:3.190187pt;}
._1a{width:4.272000pt;}
._17{width:5.776000pt;}
._d{width:6.848000pt;}
._13{width:8.448000pt;}
._14{width:9.488000pt;}
._b{width:10.624000pt;}
._c{width:11.632000pt;}
._15{width:13.226667pt;}
._1e{width:14.528000pt;}
._2c{width:16.082773pt;}
._12{width:17.216000pt;}
._20{width:18.112000pt;}
._25{width:19.840000pt;}
._26{width:20.736000pt;}
._11{width:21.829333pt;}
._9{width:22.762667pt;}
._a{width:24.320000pt;}
._28{width:25.664000pt;}
._29{width:26.832000pt;}
._18{width:28.160000pt;}
._19{width:29.696000pt;}
._1d{width:30.720000pt;}
._1c{width:31.616000pt;}
._2d{width:33.472000pt;}
._2e{width:34.368000pt;}
._2f{width:36.149333pt;}
._38{width:37.072000pt;}
._35{width:38.050347pt;}
._30{width:38.976000pt;}
._3b{width:40.816000pt;}
._39{width:41.728000pt;}
._3a{width:42.800000pt;}
._e{width:44.544000pt;}
._16{width:55.360000pt;}
._10{width:64.128000pt;}
._1b{width:71.296000pt;}
._32{width:81.792000pt;}
._37{width:92.250880pt;}
._36{width:93.280000pt;}
._33{width:248.512000pt;}
._34{width:249.504000pt;}
._4{width:1103.978667pt;}
._31{width:1463.946667pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y46{bottom:-3.040000pt;}
.y44{bottom:-2.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.032000pt;}
.y7{bottom:6.592000pt;}
.y9{bottom:23.680000pt;}
.y8{bottom:42.400000pt;}
.y5{bottom:60.480000pt;}
.y35{bottom:86.272000pt;}
.yc2{bottom:89.792000pt;}
.y67{bottom:90.752000pt;}
.y86{bottom:95.552000pt;}
.y9e{bottom:102.592000pt;}
.y34{bottom:107.552000pt;}
.yc1{bottom:110.912000pt;}
.y66{bottom:111.872000pt;}
.y85{bottom:116.032000pt;}
.y9d{bottom:123.872000pt;}
.y84{bottom:124.032000pt;}
.y33{bottom:128.672000pt;}
.yc0{bottom:132.032000pt;}
.y65{bottom:132.992000pt;}
.y9c{bottom:144.986667pt;}
.y83{bottom:146.426667pt;}
.y32{bottom:149.786667pt;}
.ybf{bottom:153.306667pt;}
.y64{bottom:154.266667pt;}
.y9b{bottom:166.106667pt;}
.y31{bottom:170.906667pt;}
.ybe{bottom:174.426667pt;}
.y63{bottom:175.386667pt;}
.y9a{bottom:187.226667pt;}
.y82{bottom:189.146667pt;}
.y30{bottom:192.186667pt;}
.ybd{bottom:195.546667pt;}
.y62{bottom:196.986667pt;}
.y81{bottom:210.266667pt;}
.y2f{bottom:213.306667pt;}
.y99{bottom:216.506667pt;}
.ybc{bottom:216.666667pt;}
.y61{bottom:220.346667pt;}
.y2e{bottom:234.426667pt;}
.ybb{bottom:237.946667pt;}
.y80{bottom:239.386667pt;}
.y98{bottom:247.386667pt;}
.y60{bottom:254.746667pt;}
.y2d{bottom:255.546667pt;}
.yba{bottom:259.066667pt;}
.y7f{bottom:270.266667pt;}
.y2c{bottom:276.826667pt;}
.yb9{bottom:280.186667pt;}
.y54{bottom:288.666667pt;}
.y5e{bottom:290.906667pt;}
.y2b{bottom:297.946667pt;}
.yb8{bottom:301.346667pt;}
.y55{bottom:308.546667pt;}
.y5d{bottom:313.026667pt;}
.y2a{bottom:319.106667pt;}
.yb7{bottom:322.626667pt;}
.y56{bottom:325.186667pt;}
.y5c{bottom:331.746667pt;}
.y5f{bottom:335.906667pt;}
.y29{bottom:340.226667pt;}
.yb6{bottom:343.746667pt;}
.y5b{bottom:350.306667pt;}
.y5a{bottom:358.306667pt;}
.y57{bottom:358.786667pt;}
.y28{bottom:361.506667pt;}
.yb5{bottom:364.866667pt;}
.y58{bottom:375.426667pt;}
.y59{bottom:381.826667pt;}
.y27{bottom:382.626667pt;}
.yb4{bottom:385.986667pt;}
.y26{bottom:403.746667pt;}
.y53{bottom:404.226667pt;}
.yb3{bottom:407.106667pt;}
.y7e{bottom:410.626667pt;}
.y25{bottom:424.866667pt;}
.y52{bottom:425.346667pt;}
.yb2{bottom:428.386667pt;}
.y7d{bottom:431.906667pt;}
.y24{bottom:445.986667pt;}
.y51{bottom:446.626667pt;}
.yb1{bottom:449.506667pt;}
.y7c{bottom:461.026667pt;}
.y23{bottom:467.266667pt;}
.y50{bottom:469.346667pt;}
.yb0{bottom:470.626667pt;}
.y97{bottom:479.746667pt;}
.y22{bottom:488.386667pt;}
.y42{bottom:491.106667pt;}
.yaf{bottom:491.746667pt;}
.y7b{bottom:491.906667pt;}
.y4e{bottom:493.346667pt;}
.y96{bottom:505.346667pt;}
.y21{bottom:509.506667pt;}
.y43{bottom:510.946667pt;}
.yae{bottom:513.026667pt;}
.y4d{bottom:515.426667pt;}
.y45{bottom:527.586667pt;}
.y20{bottom:530.626667pt;}
.y4c{bottom:534.146667pt;}
.y4f{bottom:538.333333pt;}
.y1f{bottom:551.933333pt;}
.y4b{bottom:552.733333pt;}
.yad{bottom:555.293333pt;}
.y4a{bottom:560.733333pt;}
.y47{bottom:561.213333pt;}
.y1e{bottom:573.053333pt;}
.yac{bottom:576.413333pt;}
.y48{bottom:577.853333pt;}
.y49{bottom:584.253333pt;}
.y1d{bottom:594.173333pt;}
.yab{bottom:597.693333pt;}
.y7a{bottom:600.253333pt;}
.y41{bottom:606.653333pt;}
.y1c{bottom:615.293333pt;}
.yaa{bottom:618.813333pt;}
.y79{bottom:621.373333pt;}
.y40{bottom:627.773333pt;}
.y1b{bottom:636.573333pt;}
.ya9{bottom:639.933333pt;}
.y78{bottom:642.653333pt;}
.y3f{bottom:648.893333pt;}
.y1a{bottom:657.693333pt;}
.ya8{bottom:661.053333pt;}
.y77{bottom:663.773333pt;}
.y3e{bottom:678.173333pt;}
.y19{bottom:678.813333pt;}
.ya7{bottom:682.333333pt;}
.y76{bottom:684.893333pt;}
.y18{bottom:699.933333pt;}
.ya6{bottom:703.453333pt;}
.y75{bottom:706.013333pt;}
.y3d{bottom:709.053333pt;}
.y95{bottom:713.693333pt;}
.y17{bottom:721.213333pt;}
.ya5{bottom:724.573333pt;}
.y94{bottom:734.813333pt;}
.y74{bottom:739.293333pt;}
.y16{bottom:742.333333pt;}
.ya4{bottom:745.693333pt;}
.y93{bottom:755.933333pt;}
.y15{bottom:763.453333pt;}
.y73{bottom:777.093333pt;}
.y92{bottom:777.253333pt;}
.ya3{bottom:777.573333pt;}
.y14{bottom:784.613333pt;}
.y72{bottom:785.093333pt;}
.y91{bottom:798.373333pt;}
.ya2{bottom:798.693333pt;}
.y13{bottom:805.893333pt;}
.y71{bottom:818.373333pt;}
.y90{bottom:819.493333pt;}
.ya1{bottom:819.973333pt;}
.y12{bottom:827.013333pt;}
.y70{bottom:839.493333pt;}
.y8f{bottom:840.613333pt;}
.ya0{bottom:841.093333pt;}
.y11{bottom:848.133333pt;}
.y6f{bottom:857.573333pt;}
.y8e{bottom:861.893333pt;}
.y9f{bottom:862.213333pt;}
.y6e{bottom:865.573333pt;}
.y10{bottom:869.253333pt;}
.y6d{bottom:882.213333pt;}
.y8d{bottom:883.013333pt;}
.y3c{bottom:883.333333pt;}
.yf{bottom:890.373333pt;}
.y8c{bottom:904.133333pt;}
.y3b{bottom:904.613333pt;}
.ye{bottom:917.733333pt;}
.y6c{bottom:924.773333pt;}
.y8b{bottom:925.253333pt;}
.y3a{bottom:925.733333pt;}
.yd{bottom:932.773333pt;}
.y6b{bottom:946.053333pt;}
.y8a{bottom:946.533333pt;}
.y39{bottom:946.853333pt;}
.yc{bottom:953.893333pt;}
.y6a{bottom:967.173333pt;}
.y89{bottom:967.653333pt;}
.y38{bottom:967.973333pt;}
.yb{bottom:977.253333pt;}
.y69{bottom:988.293333pt;}
.y88{bottom:988.773333pt;}
.y37{bottom:989.253333pt;}
.ya{bottom:1005.413333pt;}
.y68{bottom:1009.573333pt;}
.y87{bottom:1010.053333pt;}
.y36{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.he{height:16.640000pt;}
.h5{height:21.472000pt;}
.h16{height:33.600000pt;}
.hf{height:33.632000pt;}
.ha{height:37.792187pt;}
.h2{height:41.507812pt;}
.h3{height:45.935313pt;}
.h4{height:48.000000pt;}
.hb{height:52.750000pt;}
.h1d{height:55.343750pt;}
.h7{height:56.406250pt;}
.h9{height:58.200312pt;}
.h6{height:65.995312pt;}
.h1c{height:67.108750pt;}
.h8{height:73.607188pt;}
.h13{height:103.992812pt;}
.hd{height:146.468750pt;}
.h12{height:158.628750pt;}
.h14{height:158.735417pt;}
.h11{height:160.548750pt;}
.h1a{height:173.752812pt;}
.h19{height:178.468750pt;}
.h1b{height:192.548750pt;}
.h18{height:206.392812pt;}
.h15{height:308.546667pt;}
.hc{height:510.946667pt;}
.h10{height:544.706667pt;}
.h17{height:747.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.752000pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:47.360000pt;}
.x4{left:85.151988pt;}
.x9{left:88.831988pt;}
.x1b{left:93.311988pt;}
.x1{left:108.191988pt;}
.x31{left:113.631988pt;}
.x30{left:122.911988pt;}
.x12{left:125.151988pt;}
.x5{left:127.674667pt;}
.x10{left:132.351988pt;}
.x2{left:133.466655pt;}
.x2e{left:139.706655pt;}
.x28{left:196.506655pt;}
.xe{left:197.946655pt;}
.x26{left:199.386655pt;}
.x2d{left:211.866655pt;}
.xc{left:221.786655pt;}
.x2a{left:223.866655pt;}
.x1d{left:231.546655pt;}
.xa{left:233.946655pt;}
.x23{left:236.986655pt;}
.x1e{left:254.146655pt;}
.xd{left:257.506655pt;}
.xf{left:262.946655pt;}
.x1f{left:264.706655pt;}
.x13{left:298.786643pt;}
.x20{left:303.746655pt;}
.x14{left:309.666655pt;}
.x22{left:312.386655pt;}
.x17{left:320.866643pt;}
.x21{left:326.786655pt;}
.x18{left:331.746655pt;}
.x1c{left:336.386655pt;}
.x6{left:340.706667pt;}
.x3{left:357.826655pt;}
.x15{left:363.106655pt;}
.x19{left:385.186655pt;}
.xb{left:396.866655pt;}
.x24{left:399.586655pt;}
.x16{left:408.386655pt;}
.x1a{left:430.493322pt;}
.x2b{left:439.133322pt;}
.x8{left:460.093333pt;}
.x2c{left:470.813322pt;}
.x29{left:488.573322pt;}
.x2f{left:536.893322pt;}
.x11{left:537.853322pt;}
.x25{left:561.853322pt;}
.x27{left:628.933322pt;}
}




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