
    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_1ce82b5538f8a5c1fe758a6c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1baada4e1b5c6af2279db535.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096191;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_467d27ac6cad5105c184b67e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_de4cf09e29ca91d7b9d9416a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008301;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_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_a21aeae51cdd4af7820d2604.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_c871ed3e16e29f8b37956fba.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_544d8b09d12fb82cde1a278f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4f5fac5b22443be41d33e59c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_992afddcc8012ea885f100c8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_140651f8fa1a95db0c378686.woff')format("woff");}.ffb{font-family:ffb;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b248bfdc10321973d8ad108b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2aa5b4600e985e3997aa9541.woff')format("woff");}.ffd{font-family:ffd;line-height:1.096191;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3d39f2bf7322051b2b88a82a.woff')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.666000px;}
.ls4{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.072000px;}
.lse{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls16{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:16.506720px;}
.lsc{letter-spacing:20.160000px;}
.ls5{letter-spacing:39.185280px;}
.ls6{letter-spacing:46.026720px;}
.ls9{letter-spacing:55.362720px;}
.lsd{letter-spacing:64.260000px;}
.ls11{letter-spacing:197.460000px;}
.lsf{letter-spacing:203.196000px;}
.ls10{letter-spacing:207.540000px;}
.lsb{letter-spacing:356.556000px;}
.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;}
}
.ws7{word-spacing:-66.496200px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-8.426880px;}
._30{margin-left:-6.699120px;}
._18{margin-left:-4.857600px;}
._c{margin-left:-3.355680px;}
._9{margin-left:-2.091120px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._f{width:3.123120px;}
._11{width:4.709520px;}
._10{width:5.976000px;}
._12{width:7.589520px;}
._17{width:8.932320px;}
._d{width:10.207920px;}
._e{width:11.218800px;}
._5{width:12.960000px;}
._13{width:16.351680px;}
._2f{width:17.420160px;}
._1d{width:18.564240px;}
._20{width:19.590240px;}
._25{width:21.246960px;}
._1a{width:22.529520px;}
._19{width:23.664960px;}
._7{width:25.089120px;}
._8{width:26.598720px;}
._21{width:27.756720px;}
._1c{width:28.767120px;}
._1b{width:30.417840px;}
._22{width:31.670880px;}
._1e{width:33.303360px;}
._1f{width:34.624560px;}
._2b{width:36.522480px;}
._2a{width:37.637760px;}
._29{width:38.844000px;}
._2e{width:40.506240px;}
._2d{width:41.880720px;}
._2c{width:42.967440px;}
._45{width:44.310720px;}
._3e{width:45.705360px;}
._3a{width:46.721280px;}
._3b{width:48.166560px;}
._32{width:49.769040px;}
._31{width:50.975280px;}
._27{width:53.414400px;}
._28{width:54.452400px;}
._26{width:56.030160px;}
._4{width:57.204000px;}
._24{width:58.374000px;}
._23{width:59.819760px;}
._35{width:68.473920px;}
._36{width:69.919200px;}
._3f{width:70.935120px;}
._40{width:72.966960px;}
._3d{width:78.038880px;}
._3c{width:79.540560px;}
._34{width:81.557040px;}
._33{width:82.946880px;}
._15{width:85.576320px;}
._3{width:87.120000px;}
._43{width:89.086080px;}
._46{width:91.182720px;}
._41{width:92.293680px;}
._42{width:93.389760px;}
._38{width:100.027200px;}
._39{width:101.228400px;}
._16{width:104.389680px;}
._37{width:116.173440px;}
._6{width:199.416000px;}
._2{width:233.273760px;}
._44{width:872.502000px;}
._b{width:1023.282960px;}
._14{width:2429.340000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y25{bottom:5.760000px;}
.y14{bottom:7.560000px;}
.yc1{bottom:10.260000px;}
.yc4{bottom:10.440000px;}
.ybf{bottom:12.060000px;}
.yc6{bottom:12.960000px;}
.ybd{bottom:13.500000px;}
.y6{bottom:13.860000px;}
.yd9{bottom:17.280000px;}
.yd7{bottom:19.800000px;}
.yd4{bottom:24.120000px;}
.y24{bottom:25.740000px;}
.yd5{bottom:27.180000px;}
.y5{bottom:45.000000px;}
.y23{bottom:45.540000px;}
.y9{bottom:60.480000px;}
.y22{bottom:65.340000px;}
.y4{bottom:76.320000px;}
.y21{bottom:85.140000px;}
.ye9{bottom:88.560000px;}
.y76{bottom:95.940000px;}
.y38{bottom:98.460000px;}
.ya9{bottom:99.360000px;}
.y3f{bottom:102.420000px;}
.y20{bottom:104.940000px;}
.y3{bottom:107.670000px;}
.ye8{bottom:108.360000px;}
.y96{bottom:110.160000px;}
.y75{bottom:115.740000px;}
.y37{bottom:117.000000px;}
.ya8{bottom:119.160000px;}
.y3e{bottom:122.220000px;}
.y1f{bottom:124.920000px;}
.ye7{bottom:128.160000px;}
.y95{bottom:129.960000px;}
.y74{bottom:135.540000px;}
.y36{bottom:135.720000px;}
.ya7{bottom:138.960000px;}
.y2{bottom:140.430000px;}
.y3d{bottom:142.020000px;}
.y1e{bottom:144.720000px;}
.ye6{bottom:147.960000px;}
.y94{bottom:149.760000px;}
.y35{bottom:154.290000px;}
.y73{bottom:155.370000px;}
.ya6{bottom:158.790000px;}
.y3c{bottom:161.850000px;}
.y1d{bottom:164.520000px;}
.ye5{bottom:167.790000px;}
.y93{bottom:169.770000px;}
.y34{bottom:172.830000px;}
.y72{bottom:175.350000px;}
.ya5{bottom:178.770000px;}
.y3b{bottom:181.650000px;}
.y1c{bottom:184.350000px;}
.ye4{bottom:187.770000px;}
.y92{bottom:189.570000px;}
.y33{bottom:191.550000px;}
.y71{bottom:195.150000px;}
.ya4{bottom:198.570000px;}
.y3a{bottom:201.630000px;}
.y1b{bottom:204.150000px;}
.ye3{bottom:207.570000px;}
.y91{bottom:209.370000px;}
.y70{bottom:214.950000px;}
.ya3{bottom:218.370000px;}
.y32{bottom:219.090000px;}
.y39{bottom:221.430000px;}
.y1a{bottom:224.130000px;}
.ye2{bottom:227.370000px;}
.y90{bottom:229.170000px;}
.y6f{bottom:234.750000px;}
.ya2{bottom:238.170000px;}
.y31{bottom:241.230000px;}
.y19{bottom:243.930000px;}
.ye1{bottom:247.170000px;}
.y8f{bottom:248.970000px;}
.y6e{bottom:254.550000px;}
.ya1{bottom:257.970000px;}
.y30{bottom:261.030000px;}
.y18{bottom:263.730000px;}
.ye0{bottom:266.970000px;}
.y8e{bottom:268.950000px;}
.y6d{bottom:274.530000px;}
.y2f{bottom:280.830000px;}
.y17{bottom:283.530000px;}
.ya0{bottom:286.950000px;}
.y8d{bottom:288.750000px;}
.y6c{bottom:294.330000px;}
.ybb{bottom:297.750000px;}
.y2e{bottom:300.810000px;}
.y16{bottom:303.330000px;}
.y9f{bottom:306.750000px;}
.y8c{bottom:308.550000px;}
.y6b{bottom:314.130000px;}
.yba{bottom:317.550000px;}
.y2d{bottom:320.610000px;}
.y9e{bottom:326.550000px;}
.y8b{bottom:328.350000px;}
.ydf{bottom:333.930000px;}
.yb9{bottom:337.350000px;}
.y2c{bottom:340.410000px;}
.y6a{bottom:342.930000px;}
.y9d{bottom:346.350000px;}
.y8a{bottom:348.150000px;}
.yde{bottom:353.730000px;}
.yb8{bottom:357.150000px;}
.y2b{bottom:360.210000px;}
.y69{bottom:362.730000px;}
.y9c{bottom:366.150000px;}
.y89{bottom:368.130000px;}
.ydd{bottom:373.710000px;}
.yb7{bottom:377.130000px;}
.y2a{bottom:380.010000px;}
.y68{bottom:382.530000px;}
.y9b{bottom:386.130000px;}
.ydc{bottom:393.510000px;}
.y88{bottom:396.930000px;}
.y29{bottom:399.990000px;}
.y67{bottom:404.175000px;}
.y9a{bottom:405.975000px;}
.ydb{bottom:413.355000px;}
.y87{bottom:416.775000px;}
.y28{bottom:419.835000px;}
.y66{bottom:423.975000px;}
.y99{bottom:425.775000px;}
.yda{bottom:433.155000px;}
.y86{bottom:436.575000px;}
.y27{bottom:439.635000px;}
.y65{bottom:443.955000px;}
.y98{bottom:445.575000px;}
.yd8{bottom:447.915000px;}
.y85{bottom:456.375000px;}
.y26{bottom:459.435000px;}
.y64{bottom:463.575000px;}
.y97{bottom:465.375000px;}
.y15{bottom:474.195000px;}
.y84{bottom:476.355000px;}
.y63{bottom:485.355000px;}
.yd6{bottom:495.255000px;}
.y83{bottom:496.155000px;}
.y62{bottom:505.155000px;}
.y82{bottom:515.955000px;}
.y61{bottom:524.955000px;}
.y81{bottom:535.755000px;}
.yd3{bottom:536.115000px;}
.y60{bottom:544.755000px;}
.y80{bottom:555.555000px;}
.y5f{bottom:564.555000px;}
.y7f{bottom:575.355000px;}
.y5e{bottom:584.355000px;}
.yd2{bottom:585.435000px;}
.y7e{bottom:595.335000px;}
.y5d{bottom:604.335000px;}
.yd1{bottom:605.235000px;}
.y7d{bottom:615.135000px;}
.y5c{bottom:624.135000px;}
.yd0{bottom:625.035000px;}
.y7c{bottom:634.935000px;}
.y5b{bottom:643.935000px;}
.ycf{bottom:644.835000px;}
.y7b{bottom:654.765000px;}
.y5a{bottom:663.765000px;}
.yce{bottom:664.845000px;}
.y7a{bottom:674.565000px;}
.y59{bottom:683.565000px;}
.ycd{bottom:684.645000px;}
.y79{bottom:694.545000px;}
.y58{bottom:703.545000px;}
.ycc{bottom:704.445000px;}
.y78{bottom:714.345000px;}
.y57{bottom:723.345000px;}
.ycb{bottom:724.245000px;}
.y77{bottom:734.145000px;}
.y56{bottom:743.145000px;}
.yca{bottom:744.045000px;}
.yb6{bottom:753.945000px;}
.y55{bottom:762.945000px;}
.yc9{bottom:764.025000px;}
.yb5{bottom:773.745000px;}
.y54{bottom:782.745000px;}
.yc8{bottom:783.825000px;}
.y13{bottom:792.465000px;}
.yb4{bottom:793.725000px;}
.yc7{bottom:798.585000px;}
.y53{bottom:802.725000px;}
.yb3{bottom:813.525000px;}
.y52{bottom:822.525000px;}
.y12{bottom:825.045000px;}
.yc5{bottom:831.525000px;}
.yb2{bottom:833.325000px;}
.y51{bottom:842.325000px;}
.y11{bottom:850.065000px;}
.yb1{bottom:853.125000px;}
.y50{bottom:862.125000px;}
.y10{bottom:869.865000px;}
.yc3{bottom:870.045000px;}
.yb0{bottom:872.925000px;}
.y4f{bottom:881.925000px;}
.yf{bottom:889.845000px;}
.yaf{bottom:892.905000px;}
.y4e{bottom:901.950000px;}
.yc2{bottom:903.570000px;}
.ye{bottom:904.470000px;}
.yae{bottom:912.750000px;}
.y4d{bottom:921.750000px;}
.yd{bottom:924.810000px;}
.yad{bottom:932.550000px;}
.yc0{bottom:937.050000px;}
.y4c{bottom:941.550000px;}
.yc{bottom:946.590000px;}
.yac{bottom:952.350000px;}
.y4b{bottom:961.350000px;}
.ybe{bottom:970.530000px;}
.yb{bottom:971.610000px;}
.yab{bottom:972.150000px;}
.y4a{bottom:981.150000px;}
.yaa{bottom:992.130000px;}
.y49{bottom:1001.130000px;}
.ybc{bottom:1002.030000px;}
.ya{bottom:1003.290000px;}
.y48{bottom:1020.930000px;}
.y8{bottom:1030.110000px;}
.y47{bottom:1040.730000px;}
.y1{bottom:1046.490000px;}
.y46{bottom:1060.530000px;}
.y45{bottom:1080.330000px;}
.y44{bottom:1100.310000px;}
.y43{bottom:1120.110000px;}
.y42{bottom:1139.910000px;}
.y41{bottom:1169.820000px;}
.y40{bottom:1192.680000px;}
.hd{height:26.100000px;}
.hb{height:27.147656px;}
.h13{height:27.540000px;}
.h14{height:28.800000px;}
.h15{height:28.836000px;}
.h18{height:33.840000px;}
.h16{height:34.020000px;}
.h17{height:38.160000px;}
.hc{height:41.726953px;}
.he{height:42.164648px;}
.h19{height:42.660000px;}
.h12{height:43.506914px;}
.h8{height:46.736719px;}
.ha{height:48.027656px;}
.h10{height:48.496641px;}
.h4{height:48.774375px;}
.h11{height:51.706406px;}
.h9{height:53.224453px;}
.h3{height:62.028281px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h6{height:74.039062px;}
.h2{height:162.390000px;}
.hf{height:317.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.wc{width:37.800000px;}
.wf{width:52.740000px;}
.wb{width:61.920000px;}
.wa{width:74.376000px;}
.w4{width:144.576000px;}
.w8{width:153.030000px;}
.w9{width:180.930000px;}
.we{width:214.230000px;}
.wd{width:255.315000px;}
.w2{width:619.530000px;}
.w7{width:627.090000px;}
.w6{width:780.120000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x19{left:-3.600000px;}
.x0{left:0.000000px;}
.x12{left:3.420000px;}
.x2{left:8.100000px;}
.x6{left:52.919987px;}
.x1{left:54.000000px;}
.x7{left:56.520000px;}
.x11{left:59.220000px;}
.xa{left:79.919987px;}
.xb{left:106.955987px;}
.xf{left:135.035987px;}
.x5{left:136.290000px;}
.x16{left:144.750000px;}
.x10{left:162.029987px;}
.x13{left:240.150000px;}
.x17{left:309.315000px;}
.x14{left:314.535000px;}
.x15{left:376.455000px;}
.xc{left:472.424987px;}
.x9{left:473.504987px;}
.xd{left:499.424987px;}
.x18{left:523.545000px;}
.xe{left:526.424987px;}
.x3{left:673.530000px;}
.x8{left:683.610000px;}
.x4{left:694.590000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.592000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls16{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:14.672640pt;}
.lsc{letter-spacing:17.920000pt;}
.ls5{letter-spacing:34.831360pt;}
.ls6{letter-spacing:40.912640pt;}
.ls9{letter-spacing:49.211307pt;}
.lsd{letter-spacing:57.120000pt;}
.ls11{letter-spacing:175.520000pt;}
.lsf{letter-spacing:180.618667pt;}
.ls10{letter-spacing:184.480000pt;}
.lsb{letter-spacing:316.938667pt;}
.ws7{word-spacing:-59.107733pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-7.490560pt;}
._30{margin-left:-5.954773pt;}
._18{margin-left:-4.317867pt;}
._c{margin-left:-2.982827pt;}
._9{margin-left:-1.858773pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._f{width:2.776107pt;}
._11{width:4.186240pt;}
._10{width:5.312000pt;}
._12{width:6.746240pt;}
._17{width:7.939840pt;}
._d{width:9.073707pt;}
._e{width:9.972267pt;}
._5{width:11.520000pt;}
._13{width:14.534827pt;}
._2f{width:15.484587pt;}
._1d{width:16.501547pt;}
._20{width:17.413547pt;}
._25{width:18.886187pt;}
._1a{width:20.026240pt;}
._19{width:21.035520pt;}
._7{width:22.301440pt;}
._8{width:23.643307pt;}
._21{width:24.672640pt;}
._1c{width:25.570773pt;}
._1b{width:27.038080pt;}
._22{width:28.151893pt;}
._1e{width:29.602987pt;}
._1f{width:30.777387pt;}
._2b{width:32.464427pt;}
._2a{width:33.455787pt;}
._29{width:34.528000pt;}
._2e{width:36.005547pt;}
._2d{width:37.227307pt;}
._2c{width:38.193280pt;}
._45{width:39.387307pt;}
._3e{width:40.626987pt;}
._3a{width:41.530027pt;}
._3b{width:42.814720pt;}
._32{width:44.239147pt;}
._31{width:45.311360pt;}
._27{width:47.479467pt;}
._28{width:48.402133pt;}
._26{width:49.804587pt;}
._4{width:50.848000pt;}
._24{width:51.888000pt;}
._23{width:53.173120pt;}
._35{width:60.865707pt;}
._36{width:62.150400pt;}
._3f{width:63.053440pt;}
._40{width:64.859520pt;}
._3d{width:69.367893pt;}
._3c{width:70.702720pt;}
._34{width:72.495147pt;}
._33{width:73.730560pt;}
._15{width:76.067840pt;}
._3{width:77.440000pt;}
._43{width:79.187627pt;}
._46{width:81.051307pt;}
._41{width:82.038827pt;}
._42{width:83.013120pt;}
._38{width:88.913067pt;}
._39{width:89.980800pt;}
._16{width:92.790827pt;}
._37{width:103.265280pt;}
._6{width:177.258667pt;}
._2{width:207.354453pt;}
._44{width:775.557333pt;}
._b{width:909.584853pt;}
._14{width:2159.413333pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y25{bottom:5.120000pt;}
.y14{bottom:6.720000pt;}
.yc1{bottom:9.120000pt;}
.yc4{bottom:9.280000pt;}
.ybf{bottom:10.720000pt;}
.yc6{bottom:11.520000pt;}
.ybd{bottom:12.000000pt;}
.y6{bottom:12.320000pt;}
.yd9{bottom:15.360000pt;}
.yd7{bottom:17.600000pt;}
.yd4{bottom:21.440000pt;}
.y24{bottom:22.880000pt;}
.yd5{bottom:24.160000pt;}
.y5{bottom:40.000000pt;}
.y23{bottom:40.480000pt;}
.y9{bottom:53.760000pt;}
.y22{bottom:58.080000pt;}
.y4{bottom:67.840000pt;}
.y21{bottom:75.680000pt;}
.ye9{bottom:78.720000pt;}
.y76{bottom:85.280000pt;}
.y38{bottom:87.520000pt;}
.ya9{bottom:88.320000pt;}
.y3f{bottom:91.040000pt;}
.y20{bottom:93.280000pt;}
.y3{bottom:95.706667pt;}
.ye8{bottom:96.320000pt;}
.y96{bottom:97.920000pt;}
.y75{bottom:102.880000pt;}
.y37{bottom:104.000000pt;}
.ya8{bottom:105.920000pt;}
.y3e{bottom:108.640000pt;}
.y1f{bottom:111.040000pt;}
.ye7{bottom:113.920000pt;}
.y95{bottom:115.520000pt;}
.y74{bottom:120.480000pt;}
.y36{bottom:120.640000pt;}
.ya7{bottom:123.520000pt;}
.y2{bottom:124.826667pt;}
.y3d{bottom:126.240000pt;}
.y1e{bottom:128.640000pt;}
.ye6{bottom:131.520000pt;}
.y94{bottom:133.120000pt;}
.y35{bottom:137.146667pt;}
.y73{bottom:138.106667pt;}
.ya6{bottom:141.146667pt;}
.y3c{bottom:143.866667pt;}
.y1d{bottom:146.240000pt;}
.ye5{bottom:149.146667pt;}
.y93{bottom:150.906667pt;}
.y34{bottom:153.626667pt;}
.y72{bottom:155.866667pt;}
.ya5{bottom:158.906667pt;}
.y3b{bottom:161.466667pt;}
.y1c{bottom:163.866667pt;}
.ye4{bottom:166.906667pt;}
.y92{bottom:168.506667pt;}
.y33{bottom:170.266667pt;}
.y71{bottom:173.466667pt;}
.ya4{bottom:176.506667pt;}
.y3a{bottom:179.226667pt;}
.y1b{bottom:181.466667pt;}
.ye3{bottom:184.506667pt;}
.y91{bottom:186.106667pt;}
.y70{bottom:191.066667pt;}
.ya3{bottom:194.106667pt;}
.y32{bottom:194.746667pt;}
.y39{bottom:196.826667pt;}
.y1a{bottom:199.226667pt;}
.ye2{bottom:202.106667pt;}
.y90{bottom:203.706667pt;}
.y6f{bottom:208.666667pt;}
.ya2{bottom:211.706667pt;}
.y31{bottom:214.426667pt;}
.y19{bottom:216.826667pt;}
.ye1{bottom:219.706667pt;}
.y8f{bottom:221.306667pt;}
.y6e{bottom:226.266667pt;}
.ya1{bottom:229.306667pt;}
.y30{bottom:232.026667pt;}
.y18{bottom:234.426667pt;}
.ye0{bottom:237.306667pt;}
.y8e{bottom:239.066667pt;}
.y6d{bottom:244.026667pt;}
.y2f{bottom:249.626667pt;}
.y17{bottom:252.026667pt;}
.ya0{bottom:255.066667pt;}
.y8d{bottom:256.666667pt;}
.y6c{bottom:261.626667pt;}
.ybb{bottom:264.666667pt;}
.y2e{bottom:267.386667pt;}
.y16{bottom:269.626667pt;}
.y9f{bottom:272.666667pt;}
.y8c{bottom:274.266667pt;}
.y6b{bottom:279.226667pt;}
.yba{bottom:282.266667pt;}
.y2d{bottom:284.986667pt;}
.y9e{bottom:290.266667pt;}
.y8b{bottom:291.866667pt;}
.ydf{bottom:296.826667pt;}
.yb9{bottom:299.866667pt;}
.y2c{bottom:302.586667pt;}
.y6a{bottom:304.826667pt;}
.y9d{bottom:307.866667pt;}
.y8a{bottom:309.466667pt;}
.yde{bottom:314.426667pt;}
.yb8{bottom:317.466667pt;}
.y2b{bottom:320.186667pt;}
.y69{bottom:322.426667pt;}
.y9c{bottom:325.466667pt;}
.y89{bottom:327.226667pt;}
.ydd{bottom:332.186667pt;}
.yb7{bottom:335.226667pt;}
.y2a{bottom:337.786667pt;}
.y68{bottom:340.026667pt;}
.y9b{bottom:343.226667pt;}
.ydc{bottom:349.786667pt;}
.y88{bottom:352.826667pt;}
.y29{bottom:355.546667pt;}
.y67{bottom:359.266667pt;}
.y9a{bottom:360.866667pt;}
.ydb{bottom:367.426667pt;}
.y87{bottom:370.466667pt;}
.y28{bottom:373.186667pt;}
.y66{bottom:376.866667pt;}
.y99{bottom:378.466667pt;}
.yda{bottom:385.026667pt;}
.y86{bottom:388.066667pt;}
.y27{bottom:390.786667pt;}
.y65{bottom:394.626667pt;}
.y98{bottom:396.066667pt;}
.yd8{bottom:398.146667pt;}
.y85{bottom:405.666667pt;}
.y26{bottom:408.386667pt;}
.y64{bottom:412.066667pt;}
.y97{bottom:413.666667pt;}
.y15{bottom:421.506667pt;}
.y84{bottom:423.426667pt;}
.y63{bottom:431.426667pt;}
.yd6{bottom:440.226667pt;}
.y83{bottom:441.026667pt;}
.y62{bottom:449.026667pt;}
.y82{bottom:458.626667pt;}
.y61{bottom:466.626667pt;}
.y81{bottom:476.226667pt;}
.yd3{bottom:476.546667pt;}
.y60{bottom:484.226667pt;}
.y80{bottom:493.826667pt;}
.y5f{bottom:501.826667pt;}
.y7f{bottom:511.426667pt;}
.y5e{bottom:519.426667pt;}
.yd2{bottom:520.386667pt;}
.y7e{bottom:529.186667pt;}
.y5d{bottom:537.186667pt;}
.yd1{bottom:537.986667pt;}
.y7d{bottom:546.786667pt;}
.y5c{bottom:554.786667pt;}
.yd0{bottom:555.586667pt;}
.y7c{bottom:564.386667pt;}
.y5b{bottom:572.386667pt;}
.ycf{bottom:573.186667pt;}
.y7b{bottom:582.013333pt;}
.y5a{bottom:590.013333pt;}
.yce{bottom:590.973333pt;}
.y7a{bottom:599.613333pt;}
.y59{bottom:607.613333pt;}
.ycd{bottom:608.573333pt;}
.y79{bottom:617.373333pt;}
.y58{bottom:625.373333pt;}
.ycc{bottom:626.173333pt;}
.y78{bottom:634.973333pt;}
.y57{bottom:642.973333pt;}
.ycb{bottom:643.773333pt;}
.y77{bottom:652.573333pt;}
.y56{bottom:660.573333pt;}
.yca{bottom:661.373333pt;}
.yb6{bottom:670.173333pt;}
.y55{bottom:678.173333pt;}
.yc9{bottom:679.133333pt;}
.yb5{bottom:687.773333pt;}
.y54{bottom:695.773333pt;}
.yc8{bottom:696.733333pt;}
.y13{bottom:704.413333pt;}
.yb4{bottom:705.533333pt;}
.yc7{bottom:709.853333pt;}
.y53{bottom:713.533333pt;}
.yb3{bottom:723.133333pt;}
.y52{bottom:731.133333pt;}
.y12{bottom:733.373333pt;}
.yc5{bottom:739.133333pt;}
.yb2{bottom:740.733333pt;}
.y51{bottom:748.733333pt;}
.y11{bottom:755.613333pt;}
.yb1{bottom:758.333333pt;}
.y50{bottom:766.333333pt;}
.y10{bottom:773.213333pt;}
.yc3{bottom:773.373333pt;}
.yb0{bottom:775.933333pt;}
.y4f{bottom:783.933333pt;}
.yf{bottom:790.973333pt;}
.yaf{bottom:793.693333pt;}
.y4e{bottom:801.733333pt;}
.yc2{bottom:803.173333pt;}
.ye{bottom:803.973333pt;}
.yae{bottom:811.333333pt;}
.y4d{bottom:819.333333pt;}
.yd{bottom:822.053333pt;}
.yad{bottom:828.933333pt;}
.yc0{bottom:832.933333pt;}
.y4c{bottom:836.933333pt;}
.yc{bottom:841.413333pt;}
.yac{bottom:846.533333pt;}
.y4b{bottom:854.533333pt;}
.ybe{bottom:862.693333pt;}
.yb{bottom:863.653333pt;}
.yab{bottom:864.133333pt;}
.y4a{bottom:872.133333pt;}
.yaa{bottom:881.893333pt;}
.y49{bottom:889.893333pt;}
.ybc{bottom:890.693333pt;}
.ya{bottom:891.813333pt;}
.y48{bottom:907.493333pt;}
.y8{bottom:915.653333pt;}
.y47{bottom:925.093333pt;}
.y1{bottom:930.213333pt;}
.y46{bottom:942.693333pt;}
.y45{bottom:960.293333pt;}
.y44{bottom:978.053333pt;}
.y43{bottom:995.653333pt;}
.y42{bottom:1013.253333pt;}
.y41{bottom:1039.840000pt;}
.y40{bottom:1060.160000pt;}
.hd{height:23.200000pt;}
.hb{height:24.131250pt;}
.h13{height:24.480000pt;}
.h14{height:25.600000pt;}
.h15{height:25.632000pt;}
.h18{height:30.080000pt;}
.h16{height:30.240000pt;}
.h17{height:33.920000pt;}
.hc{height:37.090625pt;}
.he{height:37.479688pt;}
.h19{height:37.920000pt;}
.h12{height:38.672812pt;}
.h8{height:41.543750pt;}
.ha{height:42.691250pt;}
.h10{height:43.108125pt;}
.h4{height:43.355000pt;}
.h11{height:45.961250pt;}
.h9{height:47.310625pt;}
.h3{height:55.136250pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h6{height:65.812500pt;}
.h2{height:144.346667pt;}
.hf{height:282.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.wc{width:33.600000pt;}
.wf{width:46.880000pt;}
.wb{width:55.040000pt;}
.wa{width:66.112000pt;}
.w4{width:128.512000pt;}
.w8{width:136.026667pt;}
.w9{width:160.826667pt;}
.we{width:190.426667pt;}
.wd{width:226.946667pt;}
.w2{width:550.693333pt;}
.w7{width:557.413333pt;}
.w6{width:693.440000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x19{left:-3.200000pt;}
.x0{left:0.000000pt;}
.x12{left:3.040000pt;}
.x2{left:7.200000pt;}
.x6{left:47.039988pt;}
.x1{left:48.000000pt;}
.x7{left:50.240000pt;}
.x11{left:52.640000pt;}
.xa{left:71.039988pt;}
.xb{left:95.071988pt;}
.xf{left:120.031988pt;}
.x5{left:121.146667pt;}
.x16{left:128.666667pt;}
.x10{left:144.026655pt;}
.x13{left:213.466667pt;}
.x17{left:274.946667pt;}
.x14{left:279.586667pt;}
.x15{left:334.626667pt;}
.xc{left:419.933322pt;}
.x9{left:420.893322pt;}
.xd{left:443.933322pt;}
.x18{left:465.373333pt;}
.xe{left:467.933322pt;}
.x3{left:598.693333pt;}
.x8{left:607.653333pt;}
.x4{left:617.413333pt;}
}




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