
    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_401804f76525cd0422ee938d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_9d220ca4ca37e9bb73018fd6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_03af801961bdb9d548a105b4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_8e004813e5280284463e002e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_4ad9897ba8ce9d4bed8478ca.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0755c7f707034c661a676378.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d4367845d1a80ba48f9a80b8.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4ef1b065771b60fdfcce00c1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_21c492223c7f01b037421e19.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_c8fe59ce75dac02488e0e530.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;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:ff10;src:url('chunks/assets/font_51bb7f9907689b30b3a31628.woff')format("woff");}.ff10{font-family:ff10;line-height:0.767578;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.574000px;}
.lsb{letter-spacing:-1.746000px;}
.lsd{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.134000px;}
.lsc{letter-spacing:-0.984000px;}
.ls13{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.483600px;}
.lsa{letter-spacing:-0.420600px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.576000px;}
.ls11{letter-spacing:1.746000px;}
.ls0{letter-spacing:7.920000px;}
.ls16{letter-spacing:27.665280px;}
.ls15{letter-spacing:27.809280px;}
.ls12{letter-spacing:60.905280px;}
.ls14{letter-spacing:60.929280px;}
.ls8{letter-spacing:63.826560px;}
.ls7{letter-spacing:63.838560px;}
.ls1{letter-spacing:63.946560px;}
.ls6{letter-spacing:63.970560px;}
.ls17{letter-spacing:849.485760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws4{word-spacing:-60.480000px;}
.ws8{word-spacing:-23.549640px;}
.ws0{word-spacing:-19.010880px;}
.wsf{word-spacing:-18.306000px;}
.ws7{word-spacing:-17.890800px;}
.wsb{word-spacing:-16.865400px;}
.wse{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.wsa{word-spacing:-15.576000px;}
.wsc{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.814000px;}
.ws2{word-spacing:-14.650800px;}
.wsd{word-spacing:-13.986000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-2.980800px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._4{width:4.504320px;}
._3{width:6.359040px;}
._a{width:7.648800px;}
._14{width:9.455040px;}
._15{width:10.506240px;}
._13{width:11.923200px;}
._8{width:13.619520px;}
._9{width:15.517920px;}
._7{width:18.348480px;}
._6{width:19.382400px;}
._c{width:20.733120px;}
._29{width:21.794400px;}
._1b{width:22.959360px;}
._1a{width:24.350400px;}
._19{width:26.032320px;}
._4b{width:27.262080px;}
._12{width:28.391040px;}
._23{width:29.410560px;}
._17{width:31.040640px;}
._18{width:32.843520px;}
._1e{width:34.272000px;}
._38{width:35.452800px;}
._37{width:37.002240px;}
._e{width:38.949120px;}
._d{width:40.248000px;}
._f{width:41.374080px;}
._28{width:42.989760px;}
._32{width:44.435520px;}
._33{width:45.639360px;}
._3a{width:47.033280px;}
._16{width:48.568320px;}
._1d{width:50.587200px;}
._3c{width:51.811200px;}
._2c{width:52.994880px;}
._46{width:54.293760px;}
._27{width:55.667520px;}
._51{width:56.710080px;}
._4e{width:57.818880px;}
._55{width:58.901760px;}
._2e{width:60.079680px;}
._4a{width:61.336800px;}
._40{width:62.434080px;}
._3f{width:65.182080px;}
._11{width:67.605120px;}
._10{width:68.863680px;}
._57{width:70.254720px;}
._31{width:71.414400px;}
._50{width:73.131840px;}
._4c{width:74.655360px;}
._4d{width:75.709440px;}
._3b{width:77.633280px;}
._35{width:78.955200px;}
._34{width:80.193600px;}
._b{width:81.316800px;}
._58{width:84.058560px;}
._41{width:87.811200px;}
._21{width:88.894080px;}
._22{width:90.786720px;}
._26{width:91.981440px;}
._25{width:93.468960px;}
._36{width:94.798080px;}
._3d{width:96.120000px;}
._54{width:100.621440px;}
._52{width:101.986560px;}
._49{width:104.999040px;}
._48{width:106.159680px;}
._5a{width:107.282880px;}
._5b{width:108.434880px;}
._59{width:109.437120px;}
._56{width:111.084480px;}
._1c{width:116.061120px;}
._45{width:122.587200px;}
._30{width:128.369760px;}
._2f{width:129.756000px;}
._44{width:133.318080px;}
._39{width:141.727680px;}
._2d{width:143.942400px;}
._24{width:155.574720px;}
._47{width:171.956160px;}
._53{width:176.495040px;}
._2a{width:190.783200px;}
._4f{width:195.226560px;}
._2b{width:197.745600px;}
._1f{width:199.915200px;}
._20{width:201.700800px;}
._3e{width:222.084480px;}
._43{width:305.277120px;}
._42{width:342.967680px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1a{bottom:1.425000px;}
.y13{bottom:2.160000px;}
.y3{bottom:3.600000px;}
.yb{bottom:6.480000px;}
.y53{bottom:6.825000px;}
.y9{bottom:6.840000px;}
.y55{bottom:7.185000px;}
.yc{bottom:7.200000px;}
.y51{bottom:7.215000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y17{bottom:26.625000px;}
.y4e{bottom:28.440000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y16{bottom:47.895000px;}
.y1{bottom:51.120000px;}
.y15{bottom:70.575000px;}
.y45{bottom:75.240000px;}
.y3c{bottom:115.956000px;}
.y75{bottom:130.356000px;}
.yaf{bottom:134.316000px;}
.y3b{bottom:140.436000px;}
.y74{bottom:155.190000px;}
.ya1{bottom:158.790000px;}
.y3a{bottom:165.270000px;}
.y73{bottom:179.670000px;}
.yb6{bottom:183.270000px;}
.ya0{bottom:183.630000px;}
.y39{bottom:189.750000px;}
.y72{bottom:204.555000px;}
.yb5{bottom:207.795000px;}
.y9f{bottom:208.155000px;}
.y38{bottom:214.635000px;}
.y71{bottom:229.035000px;}
.yb4{bottom:232.635000px;}
.y9e{bottom:232.995000px;}
.y37{bottom:239.115000px;}
.y70{bottom:253.875000px;}
.yb3{bottom:257.115000px;}
.y9d{bottom:257.475000px;}
.y36{bottom:263.955000px;}
.y6f{bottom:278.355000px;}
.yae{bottom:281.955000px;}
.y9c{bottom:282.315000px;}
.y35{bottom:288.435000px;}
.y7a{bottom:302.835000px;}
.y6e{bottom:303.195000px;}
.y9b{bottom:306.435000px;}
.ya7{bottom:306.795000px;}
.y34{bottom:313.275000px;}
.y79{bottom:327.345000px;}
.y6d{bottom:327.705000px;}
.ya6{bottom:331.305000px;}
.y9a{bottom:331.665000px;}
.y33{bottom:337.785000px;}
.y6c{bottom:352.185000px;}
.y78{bottom:352.545000px;}
.yba{bottom:355.785000px;}
.y99{bottom:356.145000px;}
.y42{bottom:362.265000px;}
.y32{bottom:362.625000px;}
.y6b{bottom:377.025000px;}
.y98{bottom:380.985000px;}
.y31{bottom:387.105000px;}
.y6a{bottom:401.865000px;}
.yb9{bottom:405.105000px;}
.y97{bottom:405.465000px;}
.y30{bottom:411.945000px;}
.y69{bottom:426.345000px;}
.yb2{bottom:429.945000px;}
.y96{bottom:430.305000px;}
.y2f{bottom:436.425000px;}
.y68{bottom:451.230000px;}
.y95{bottom:454.830000px;}
.y41{bottom:460.950000px;}
.y2e{bottom:461.310000px;}
.y67{bottom:475.710000px;}
.y94{bottom:479.670000px;}
.y40{bottom:485.430000px;}
.y2d{bottom:485.790000px;}
.y66{bottom:500.550000px;}
.yad{bottom:503.790000px;}
.y93{bottom:504.150000px;}
.y3f{bottom:510.270000px;}
.y2c{bottom:510.630000px;}
.y65{bottom:525.030000px;}
.yac{bottom:528.630000px;}
.y92{bottom:528.990000px;}
.y3e{bottom:534.750000px;}
.y2b{bottom:535.110000px;}
.y64{bottom:549.870000px;}
.ya5{bottom:553.110000px;}
.y91{bottom:553.470000px;}
.y2a{bottom:559.950000px;}
.y77{bottom:574.350000px;}
.y63{bottom:574.710000px;}
.y90{bottom:577.980000px;}
.yab{bottom:578.340000px;}
.y29{bottom:584.820000px;}
.y62{bottom:599.220000px;}
.y8f{bottom:602.460000px;}
.yaa{bottom:602.820000px;}
.y28{bottom:608.940000px;}
.y3d{bottom:609.300000px;}
.y61{bottom:624.060000px;}
.yb1{bottom:627.300000px;}
.y8e{bottom:627.660000px;}
.y27{bottom:633.780000px;}
.y60{bottom:648.540000px;}
.y8d{bottom:652.140000px;}
.y26{bottom:657.540000px;}
.y5f{bottom:673.020000px;}
.y76{bottom:673.380000px;}
.ybd{bottom:676.620000px;}
.y8c{bottom:676.980000px;}
.y25{bottom:679.500000px;}
.y5e{bottom:697.500000px;}
.ybc{bottom:701.130000px;}
.y8b{bottom:701.490000px;}
.y24{bottom:704.010000px;}
.y5d{bottom:722.370000px;}
.y23{bottom:725.610000px;}
.y8a{bottom:726.330000px;}
.y5c{bottom:746.850000px;}
.y22{bottom:747.570000px;}
.ya9{bottom:750.450000px;}
.y89{bottom:750.810000px;}
.y21{bottom:769.530000px;}
.y5b{bottom:771.690000px;}
.ya4{bottom:775.290000px;}
.y88{bottom:775.650000px;}
.y20{bottom:791.130000px;}
.y5a{bottom:796.170000px;}
.yb8{bottom:799.770000px;}
.y87{bottom:800.130000px;}
.y59{bottom:812.025000px;}
.y1f{bottom:813.090000px;}
.y86{bottom:824.610000px;}
.ya3{bottom:824.970000px;}
.y58{bottom:834.750000px;}
.y1e{bottom:835.095000px;}
.y85{bottom:849.495000px;}
.y1d{bottom:856.695000px;}
.y57{bottom:857.430000px;}
.yb0{bottom:873.975000px;}
.y84{bottom:874.335000px;}
.y1c{bottom:878.655000px;}
.y56{bottom:879.750000px;}
.ybb{bottom:898.815000px;}
.y83{bottom:899.175000px;}
.y1b{bottom:899.895000px;}
.y54{bottom:902.430000px;}
.y19{bottom:915.030000px;}
.y14{bottom:922.230000px;}
.y82{bottom:923.655000px;}
.y52{bottom:925.110000px;}
.y18{bottom:926.396347px;}
.ybf{bottom:940.575000px;}
.y50{bottom:947.430000px;}
.y81{bottom:948.495000px;}
.y4f{bottom:970.125000px;}
.ybe{bottom:972.645000px;}
.y80{bottom:973.005000px;}
.y4d{bottom:992.805000px;}
.ya2{bottom:997.485000px;}
.y7f{bottom:997.845000px;}
.y12{bottom:1018.365000px;}
.yb7{bottom:1021.965000px;}
.y7e{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.y4b{bottom:1047.165000px;}
.ya8{bottom:1071.285000px;}
.y4a{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y49{bottom:1096.170000px;}
.y7d{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.y7c{bottom:1120.650000px;}
.y48{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y7b{bottom:1145.490000px;}
.y47{bottom:1145.850000px;}
.y4{bottom:1156.650000px;}
.y4c{bottom:1169.970000px;}
.y46{bottom:1170.330000px;}
.y44{bottom:1187.250000px;}
.y43{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.857187px;}
.h17{height:18.120938px;}
.h11{height:19.584000px;}
.h20{height:21.585000px;}
.h1e{height:21.945000px;}
.h1f{height:21.960000px;}
.h21{height:21.981000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h1b{height:30.480469px;}
.h1d{height:43.545000px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h9{height:56.084062px;}
.h1c{height:59.328281px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h15{height:63.984375px;}
.h18{height:64.978594px;}
.h1a{height:65.010937px;}
.h19{height:66.757500px;}
.h14{height:67.803750px;}
.h22{height:68.084282px;}
.h6{height:70.714687px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:96.120000px;}
.h3{height:103.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w9{width:115.632000px;}
.wa{width:137.520000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w8{width:294.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.266500px;}
.x5{left:11.145000px;}
.x12{left:16.906500px;}
.x10{left:20.520000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x1b{left:113.076000px;}
.x20{left:134.352000px;}
.x14{left:138.655500px;}
.x1c{left:140.112000px;}
.x15{left:161.695500px;}
.x4{left:168.930000px;}
.x1d{left:171.810000px;}
.x6{left:208.860000px;}
.x13{left:215.380500px;}
.x16{left:325.030998px;}
.x11{left:335.650500px;}
.xa{left:445.860000px;}
.x1e{left:467.820000px;}
.x18{left:473.580000px;}
.x19{left:478.620000px;}
.x21{left:499.890000px;}
.x1a{left:505.650000px;}
.x22{left:526.890000px;}
.x1f{left:584.190000px;}
.x7{left:722.445000px;}
.x1{left:761.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.288000pt;}
.lsb{letter-spacing:-1.552000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.008000pt;}
.lsc{letter-spacing:-0.874667pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.429867pt;}
.lsa{letter-spacing:-0.373867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.512000pt;}
.ls11{letter-spacing:1.552000pt;}
.ls0{letter-spacing:7.040000pt;}
.ls16{letter-spacing:24.591360pt;}
.ls15{letter-spacing:24.719360pt;}
.ls12{letter-spacing:54.138027pt;}
.ls14{letter-spacing:54.159360pt;}
.ls8{letter-spacing:56.734720pt;}
.ls7{letter-spacing:56.745387pt;}
.ls1{letter-spacing:56.841387pt;}
.ls6{letter-spacing:56.862720pt;}
.ls17{letter-spacing:755.098453pt;}
.ws1{word-spacing:-74.240000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws8{word-spacing:-20.933013pt;}
.ws0{word-spacing:-16.898560pt;}
.wsf{word-spacing:-16.272000pt;}
.ws7{word-spacing:-15.902933pt;}
.wsb{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.wsa{word-spacing:-13.845333pt;}
.wsc{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.168000pt;}
.ws2{word-spacing:-13.022933pt;}
.wsd{word-spacing:-12.432000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2.649600pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._4{width:4.003840pt;}
._3{width:5.652480pt;}
._a{width:6.798933pt;}
._14{width:8.404480pt;}
._15{width:9.338880pt;}
._13{width:10.598400pt;}
._8{width:12.106240pt;}
._9{width:13.793707pt;}
._7{width:16.309760pt;}
._6{width:17.228800pt;}
._c{width:18.429440pt;}
._29{width:19.372800pt;}
._1b{width:20.408320pt;}
._1a{width:21.644800pt;}
._19{width:23.139840pt;}
._4b{width:24.232960pt;}
._12{width:25.236480pt;}
._23{width:26.142720pt;}
._17{width:27.591680pt;}
._18{width:29.194240pt;}
._1e{width:30.464000pt;}
._38{width:31.513600pt;}
._37{width:32.890880pt;}
._e{width:34.621440pt;}
._d{width:35.776000pt;}
._f{width:36.776960pt;}
._28{width:38.213120pt;}
._32{width:39.498240pt;}
._33{width:40.568320pt;}
._3a{width:41.807360pt;}
._16{width:43.171840pt;}
._1d{width:44.966400pt;}
._3c{width:46.054400pt;}
._2c{width:47.106560pt;}
._46{width:48.261120pt;}
._27{width:49.482240pt;}
._51{width:50.408960pt;}
._4e{width:51.394560pt;}
._55{width:52.357120pt;}
._2e{width:53.404160pt;}
._4a{width:54.521600pt;}
._40{width:55.496960pt;}
._3f{width:57.939627pt;}
._11{width:60.093440pt;}
._10{width:61.212160pt;}
._57{width:62.448640pt;}
._31{width:63.479467pt;}
._50{width:65.006080pt;}
._4c{width:66.360320pt;}
._4d{width:67.297280pt;}
._3b{width:69.007360pt;}
._35{width:70.182400pt;}
._34{width:71.283200pt;}
._b{width:72.281600pt;}
._58{width:74.718720pt;}
._41{width:78.054400pt;}
._21{width:79.016960pt;}
._22{width:80.699307pt;}
._26{width:81.761280pt;}
._25{width:83.083520pt;}
._36{width:84.264960pt;}
._3d{width:85.440000pt;}
._54{width:89.441280pt;}
._52{width:90.654720pt;}
._49{width:93.332480pt;}
._48{width:94.364160pt;}
._5a{width:95.362560pt;}
._5b{width:96.386560pt;}
._59{width:97.277440pt;}
._56{width:98.741760pt;}
._1c{width:103.165440pt;}
._45{width:108.966400pt;}
._30{width:114.106453pt;}
._2f{width:115.338667pt;}
._44{width:118.504960pt;}
._39{width:125.980160pt;}
._2d{width:127.948800pt;}
._24{width:138.288640pt;}
._47{width:152.849920pt;}
._53{width:156.884480pt;}
._2a{width:169.585067pt;}
._4f{width:173.534720pt;}
._2b{width:175.773867pt;}
._1f{width:177.702400pt;}
._20{width:179.289600pt;}
._3e{width:197.408427pt;}
._43{width:271.357440pt;}
._42{width:304.860160pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1a{bottom:1.266667pt;}
.y13{bottom:1.920000pt;}
.y3{bottom:3.200000pt;}
.yb{bottom:5.760000pt;}
.y53{bottom:6.066667pt;}
.y9{bottom:6.080000pt;}
.y55{bottom:6.386667pt;}
.yc{bottom:6.400000pt;}
.y51{bottom:6.413333pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y17{bottom:23.666667pt;}
.y4e{bottom:25.280000pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y16{bottom:42.573333pt;}
.y1{bottom:45.440000pt;}
.y15{bottom:62.733333pt;}
.y45{bottom:66.880000pt;}
.y3c{bottom:103.072000pt;}
.y75{bottom:115.872000pt;}
.yaf{bottom:119.392000pt;}
.y3b{bottom:124.832000pt;}
.y74{bottom:137.946667pt;}
.ya1{bottom:141.146667pt;}
.y3a{bottom:146.906667pt;}
.y73{bottom:159.706667pt;}
.yb6{bottom:162.906667pt;}
.ya0{bottom:163.226667pt;}
.y39{bottom:168.666667pt;}
.y72{bottom:181.826667pt;}
.yb5{bottom:184.706667pt;}
.y9f{bottom:185.026667pt;}
.y38{bottom:190.786667pt;}
.y71{bottom:203.586667pt;}
.yb4{bottom:206.786667pt;}
.y9e{bottom:207.106667pt;}
.y37{bottom:212.546667pt;}
.y70{bottom:225.666667pt;}
.yb3{bottom:228.546667pt;}
.y9d{bottom:228.866667pt;}
.y36{bottom:234.626667pt;}
.y6f{bottom:247.426667pt;}
.yae{bottom:250.626667pt;}
.y9c{bottom:250.946667pt;}
.y35{bottom:256.386667pt;}
.y7a{bottom:269.186667pt;}
.y6e{bottom:269.506667pt;}
.y9b{bottom:272.386667pt;}
.ya7{bottom:272.706667pt;}
.y34{bottom:278.466667pt;}
.y79{bottom:290.973333pt;}
.y6d{bottom:291.293333pt;}
.ya6{bottom:294.493333pt;}
.y9a{bottom:294.813333pt;}
.y33{bottom:300.253333pt;}
.y6c{bottom:313.053333pt;}
.y78{bottom:313.373333pt;}
.yba{bottom:316.253333pt;}
.y99{bottom:316.573333pt;}
.y42{bottom:322.013333pt;}
.y32{bottom:322.333333pt;}
.y6b{bottom:335.133333pt;}
.y98{bottom:338.653333pt;}
.y31{bottom:344.093333pt;}
.y6a{bottom:357.213333pt;}
.yb9{bottom:360.093333pt;}
.y97{bottom:360.413333pt;}
.y30{bottom:366.173333pt;}
.y69{bottom:378.973333pt;}
.yb2{bottom:382.173333pt;}
.y96{bottom:382.493333pt;}
.y2f{bottom:387.933333pt;}
.y68{bottom:401.093333pt;}
.y95{bottom:404.293333pt;}
.y41{bottom:409.733333pt;}
.y2e{bottom:410.053333pt;}
.y67{bottom:422.853333pt;}
.y94{bottom:426.373333pt;}
.y40{bottom:431.493333pt;}
.y2d{bottom:431.813333pt;}
.y66{bottom:444.933333pt;}
.yad{bottom:447.813333pt;}
.y93{bottom:448.133333pt;}
.y3f{bottom:453.573333pt;}
.y2c{bottom:453.893333pt;}
.y65{bottom:466.693333pt;}
.yac{bottom:469.893333pt;}
.y92{bottom:470.213333pt;}
.y3e{bottom:475.333333pt;}
.y2b{bottom:475.653333pt;}
.y64{bottom:488.773333pt;}
.ya5{bottom:491.653333pt;}
.y91{bottom:491.973333pt;}
.y2a{bottom:497.733333pt;}
.y77{bottom:510.533333pt;}
.y63{bottom:510.853333pt;}
.y90{bottom:513.760000pt;}
.yab{bottom:514.080000pt;}
.y29{bottom:519.840000pt;}
.y62{bottom:532.640000pt;}
.y8f{bottom:535.520000pt;}
.yaa{bottom:535.840000pt;}
.y28{bottom:541.280000pt;}
.y3d{bottom:541.600000pt;}
.y61{bottom:554.720000pt;}
.yb1{bottom:557.600000pt;}
.y8e{bottom:557.920000pt;}
.y27{bottom:563.360000pt;}
.y60{bottom:576.480000pt;}
.y8d{bottom:579.680000pt;}
.y26{bottom:584.480000pt;}
.y5f{bottom:598.240000pt;}
.y76{bottom:598.560000pt;}
.ybd{bottom:601.440000pt;}
.y8c{bottom:601.760000pt;}
.y25{bottom:604.000000pt;}
.y5e{bottom:620.000000pt;}
.ybc{bottom:623.226667pt;}
.y8b{bottom:623.546667pt;}
.y24{bottom:625.786667pt;}
.y5d{bottom:642.106667pt;}
.y23{bottom:644.986667pt;}
.y8a{bottom:645.626667pt;}
.y5c{bottom:663.866667pt;}
.y22{bottom:664.506667pt;}
.ya9{bottom:667.066667pt;}
.y89{bottom:667.386667pt;}
.y21{bottom:684.026667pt;}
.y5b{bottom:685.946667pt;}
.ya4{bottom:689.146667pt;}
.y88{bottom:689.466667pt;}
.y20{bottom:703.226667pt;}
.y5a{bottom:707.706667pt;}
.yb8{bottom:710.906667pt;}
.y87{bottom:711.226667pt;}
.y59{bottom:721.800000pt;}
.y1f{bottom:722.746667pt;}
.y86{bottom:732.986667pt;}
.ya3{bottom:733.306667pt;}
.y58{bottom:742.000000pt;}
.y1e{bottom:742.306667pt;}
.y85{bottom:755.106667pt;}
.y1d{bottom:761.506667pt;}
.y57{bottom:762.160000pt;}
.yb0{bottom:776.866667pt;}
.y84{bottom:777.186667pt;}
.y1c{bottom:781.026667pt;}
.y56{bottom:782.000000pt;}
.ybb{bottom:798.946667pt;}
.y83{bottom:799.266667pt;}
.y1b{bottom:799.906667pt;}
.y54{bottom:802.160000pt;}
.y19{bottom:813.360000pt;}
.y14{bottom:819.760000pt;}
.y82{bottom:821.026667pt;}
.y52{bottom:822.320000pt;}
.y18{bottom:823.463420pt;}
.ybf{bottom:836.066667pt;}
.y50{bottom:842.160000pt;}
.y81{bottom:843.106667pt;}
.y4f{bottom:862.333333pt;}
.ybe{bottom:864.573333pt;}
.y80{bottom:864.893333pt;}
.y4d{bottom:882.493333pt;}
.ya2{bottom:886.653333pt;}
.y7f{bottom:886.973333pt;}
.y12{bottom:905.213333pt;}
.yb7{bottom:908.413333pt;}
.y7e{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.y4b{bottom:930.813333pt;}
.ya8{bottom:952.253333pt;}
.y4a{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y49{bottom:974.373333pt;}
.y7d{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.y7c{bottom:996.133333pt;}
.y48{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y7b{bottom:1018.213333pt;}
.y47{bottom:1018.533333pt;}
.y4{bottom:1028.133333pt;}
.y4c{bottom:1039.973333pt;}
.y46{bottom:1040.293333pt;}
.y44{bottom:1055.333333pt;}
.y43{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:12.317500pt;}
.h17{height:16.107500pt;}
.h11{height:17.408000pt;}
.h20{height:19.186667pt;}
.h1e{height:19.506667pt;}
.h1f{height:19.520000pt;}
.h21{height:19.538667pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h1b{height:27.093750pt;}
.h1d{height:38.706667pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h9{height:49.852500pt;}
.h1c{height:52.736250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h15{height:56.875000pt;}
.h18{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h19{height:59.340000pt;}
.h14{height:60.270000pt;}
.h22{height:60.519362pt;}
.h6{height:62.857500pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:85.440000pt;}
.h3{height:91.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w9{width:102.784000pt;}
.wa{width:122.240000pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w8{width:262.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.348000pt;}
.x5{left:9.906667pt;}
.x12{left:15.028000pt;}
.x10{left:18.240000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x1b{left:100.512000pt;}
.x20{left:119.424000pt;}
.x14{left:123.249333pt;}
.x1c{left:124.544000pt;}
.x15{left:143.729333pt;}
.x4{left:150.160000pt;}
.x1d{left:152.720000pt;}
.x6{left:185.653333pt;}
.x13{left:191.449333pt;}
.x16{left:288.916443pt;}
.x11{left:298.356000pt;}
.xa{left:396.320000pt;}
.x1e{left:415.840000pt;}
.x18{left:420.960000pt;}
.x19{left:425.440000pt;}
.x21{left:444.346667pt;}
.x1a{left:449.466667pt;}
.x22{left:468.346667pt;}
.x1f{left:519.280000pt;}
.x7{left:642.173333pt;}
.x1{left:676.773333pt;}
}




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