
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a90cd8ccbbbebb88c6744e3a.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_5c9e209894e81db644302b9d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_4f1362a2305f2aaa024074f7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_ddfbd55d8336055cad03e58c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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_67f873d789e3bdabaf7f8259.woff')format("woff");}.ffa{font-family:ffa;line-height:0.976562;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_d18861fe735072766e52e0f0.woff')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_bb564ed4857172948f7930e3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_05ec077f09d50457eaa7ce31.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.576000px;}
.ls7{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.160000px;}
.ls6{letter-spacing:70.704000px;}
.lsd{letter-spacing:194.400000px;}
.lsb{letter-spacing:197.976000px;}
.lsc{letter-spacing:596.280000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws3{word-spacing:-36.000000px;}
.ws9{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.064000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.833200px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-3.744000px;}
._12{margin-left:-2.481716px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._3{width:2.347142px;}
._d{width:3.528000px;}
._e{width:5.038907px;}
._b{width:6.912000px;}
._5{width:8.568000px;}
._6{width:9.720000px;}
._11{width:11.232000px;}
._7{width:12.816000px;}
._8{width:14.196000px;}
._17{width:15.624000px;}
._c{width:16.632000px;}
._28{width:17.832038px;}
._13{width:19.056000px;}
._14{width:20.292000px;}
._f{width:21.672000px;}
._10{width:23.184000px;}
._44{width:24.192000px;}
._15{width:25.200000px;}
._9{width:26.496000px;}
._a{width:27.864000px;}
._42{width:29.373158px;}
._3a{width:30.792518px;}
._16{width:32.472000px;}
._43{width:36.288000px;}
._32{width:37.605158px;}
._4a{width:40.032000px;}
._3f{width:42.130800px;}
._4f{width:44.424000px;}
._21{width:45.612998px;}
._39{width:49.079078px;}
._41{width:50.616720px;}
._22{width:51.768278px;}
._33{width:61.210358px;}
._37{width:63.811718px;}
._38{width:64.899360px;}
._3d{width:65.931398px;}
._29{width:67.170240px;}
._27{width:68.783760px;}
._47{width:69.840000px;}
._48{width:71.892000px;}
._23{width:82.468800px;}
._18{width:86.412960px;}
._34{width:87.684038px;}
._1d{width:89.058518px;}
._1c{width:92.046518px;}
._2f{width:96.153840px;}
._3e{width:99.679680px;}
._2e{width:103.026240px;}
._40{width:104.101920px;}
._4d{width:110.016000px;}
._36{width:112.842998px;}
._19{width:115.054118px;}
._1f{width:122.046038px;}
._31{width:123.643440px;}
._3c{width:128.125440px;}
._3b{width:129.201120px;}
._49{width:132.552000px;}
._1a{width:135.372518px;}
._2c{width:136.611360px;}
._2{width:146.082865px;}
._1b{width:148.459958px;}
._50{width:150.060000px;}
._26{width:152.567280px;}
._4b{width:161.976000px;}
._25{width:167.328000px;}
._4e{width:168.840000px;}
._2d{width:174.558960px;}
._35{width:178.682400px;}
._51{width:179.976000px;}
._2a{width:184.973318px;}
._30{width:192.084758px;}
._4c{width:194.328000px;}
._20{width:195.534720px;}
._45{width:197.976000px;}
._24{width:199.777680px;}
._2b{width:218.900880px;}
._1e{width:229.657680px;}
._46{width:596.448000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.240000px;}
.y4a{bottom:3.960000px;}
.y54{bottom:12.420000px;}
.y70{bottom:20.340000px;}
.y68{bottom:20.520000px;}
.y4d{bottom:24.480000px;}
.y49{bottom:24.660000px;}
.y53{bottom:33.120000px;}
.y6f{bottom:37.620000px;}
.y7d{bottom:37.665000px;}
.y74{bottom:37.800000px;}
.y77{bottom:37.830000px;}
.y6c{bottom:37.845000px;}
.y51{bottom:38.520000px;}
.y48{bottom:45.360000px;}
.y4b{bottom:46.080000px;}
.y6e{bottom:54.900000px;}
.y6b{bottom:54.945000px;}
.y73{bottom:55.080000px;}
.y46{bottom:66.780000px;}
.y4{bottom:68.580000px;}
.y7f{bottom:72.180000px;}
.y7c{bottom:72.225000px;}
.y72{bottom:72.360000px;}
.y50{bottom:79.920000px;}
.y56{bottom:87.480000px;}
.y97{bottom:89.460000px;}
.y9a{bottom:89.685000px;}
.y4f{bottom:96.660000px;}
.yc4{bottom:118.656000px;}
.y94{bottom:119.016000px;}
.y75{bottom:120.096000px;}
.y66{bottom:124.776000px;}
.yc2{bottom:128.916000px;}
.yaf{bottom:138.276000px;}
.y2e{bottom:139.356000px;}
.yc3{bottom:149.616000px;}
.y93{bottom:150.330000px;}
.y71{bottom:154.470000px;}
.y65{bottom:155.910000px;}
.yc1{bottom:160.050000px;}
.y2d{bottom:170.310000px;}
.yae{bottom:170.850000px;}
.y44{bottom:180.750000px;}
.y92{bottom:181.470000px;}
.y64{bottom:186.870000px;}
.yc0{bottom:191.010000px;}
.y2c{bottom:201.450000px;}
.yad{bottom:203.790000px;}
.y43{bottom:211.710000px;}
.y91{bottom:212.430000px;}
.y63{bottom:218.010000px;}
.ybf{bottom:222.150000px;}
.y2b{bottom:232.410000px;}
.yac{bottom:235.110000px;}
.y6d{bottom:240.870000px;}
.y42{bottom:242.850000px;}
.y90{bottom:243.570000px;}
.y62{bottom:248.970000px;}
.ybe{bottom:253.110000px;}
.y2a{bottom:263.550000px;}
.yab{bottom:266.250000px;}
.y41{bottom:273.810000px;}
.y8f{bottom:274.530000px;}
.y61{bottom:280.110000px;}
.ybd{bottom:284.250000px;}
.y29{bottom:294.510000px;}
.yaa{bottom:297.210000px;}
.y40{bottom:304.950000px;}
.y8e{bottom:305.670000px;}
.y6a{bottom:309.810000px;}
.y60{bottom:311.070000px;}
.ybc{bottom:315.210000px;}
.y28{bottom:325.650000px;}
.ya9{bottom:328.350000px;}
.y3f{bottom:335.910000px;}
.y5f{bottom:342.255000px;}
.ybb{bottom:346.395000px;}
.y8d{bottom:351.795000px;}
.y27{bottom:356.655000px;}
.ya8{bottom:359.355000px;}
.y3e{bottom:367.095000px;}
.y5e{bottom:373.215000px;}
.yba{bottom:377.355000px;}
.y67{bottom:379.515000px;}
.y8c{bottom:382.755000px;}
.y26{bottom:387.795000px;}
.ya7{bottom:390.495000px;}
.y3d{bottom:398.055000px;}
.y5d{bottom:404.355000px;}
.yb9{bottom:408.495000px;}
.y8b{bottom:413.895000px;}
.y25{bottom:418.755000px;}
.ya6{bottom:421.455000px;}
.y5c{bottom:425.055000px;}
.y3c{bottom:429.195000px;}
.yb8{bottom:439.455000px;}
.y8a{bottom:444.855000px;}
.y5b{bottom:445.755000px;}
.y24{bottom:449.895000px;}
.ya5{bottom:452.595000px;}
.y3b{bottom:460.155000px;}
.y5a{bottom:466.455000px;}
.yb7{bottom:470.595000px;}
.y89{bottom:475.995000px;}
.y23{bottom:480.855000px;}
.ya4{bottom:483.555000px;}
.y59{bottom:487.155000px;}
.y3a{bottom:491.295000px;}
.yb6{bottom:501.555000px;}
.y55{bottom:504.615000px;}
.y88{bottom:506.955000px;}
.y22{bottom:511.995000px;}
.ya3{bottom:514.695000px;}
.y39{bottom:522.255000px;}
.yb5{bottom:532.695000px;}
.y87{bottom:538.095000px;}
.y21{bottom:542.955000px;}
.ya2{bottom:545.655000px;}
.y38{bottom:553.395000px;}
.yb4{bottom:563.655000px;}
.y58{bottom:567.435000px;}
.y86{bottom:569.055000px;}
.yd2{bottom:574.095000px;}
.ya1{bottom:576.795000px;}
.y20{bottom:584.355000px;}
.y57{bottom:588.135000px;}
.yb3{bottom:594.795000px;}
.y85{bottom:600.195000px;}
.y1f{bottom:605.085000px;}
.ya0{bottom:607.785000px;}
.y4e{bottom:609.585000px;}
.y37{bottom:615.525000px;}
.y1e{bottom:625.785000px;}
.y84{bottom:631.185000px;}
.yd1{bottom:636.225000px;}
.y9f{bottom:638.925000px;}
.y1d{bottom:646.485000px;}
.yb2{bottom:656.925000px;}
.y52{bottom:660.165000px;}
.y83{bottom:662.325000px;}
.y1c{bottom:667.185000px;}
.y9e{bottom:669.885000px;}
.y36{bottom:677.625000px;}
.y4c{bottom:681.765000px;}
.y1b{bottom:687.885000px;}
.y82{bottom:693.285000px;}
.yd0{bottom:698.325000px;}
.y9d{bottom:701.025000px;}
.y1a{bottom:708.585000px;}
.yb1{bottom:718.845000px;}
.y45{bottom:723.885000px;}
.y81{bottom:724.245000px;}
.y19{bottom:729.285000px;}
.y9c{bottom:731.985000px;}
.y35{bottom:739.545000px;}
.y80{bottom:744.945000px;}
.y47{bottom:745.305000px;}
.y18{bottom:749.985000px;}
.ycf{bottom:760.245000px;}
.y7e{bottom:762.585000px;}
.y9b{bottom:764.565000px;}
.y17{bottom:770.685000px;}
.yb0{bottom:780.945000px;}
.y99{bottom:782.385000px;}
.y16{bottom:791.385000px;}
.y34{bottom:801.645000px;}
.y15{bottom:812.085000px;}
.yce{bottom:822.345000px;}
.y14{bottom:832.785000px;}
.ycd{bottom:843.045000px;}
.y7b{bottom:848.805000px;}
.y13{bottom:853.485000px;}
.y33{bottom:863.745000px;}
.y12{bottom:874.230000px;}
.ycc{bottom:884.490000px;}
.y98{bottom:885.930000px;}
.y11{bottom:894.930000px;}
.ycb{bottom:905.190000px;}
.y10{bottom:915.630000px;}
.y32{bottom:925.890000px;}
.y7a{bottom:935.070000px;}
.yf{bottom:936.330000px;}
.yca{bottom:946.590000px;}
.ye{bottom:957.030000px;}
.yc9{bottom:967.290000px;}
.y96{bottom:972.330000px;}
.yd{bottom:977.730000px;}
.y79{bottom:986.730000px;}
.y31{bottom:987.990000px;}
.yc{bottom:998.430000px;}
.yc8{bottom:1008.690000px;}
.yb{bottom:1019.130000px;}
.yc7{bottom:1029.390000px;}
.y78{bottom:1038.570000px;}
.ya{bottom:1039.830000px;}
.y30{bottom:1050.090000px;}
.y9{bottom:1060.530000px;}
.yc6{bottom:1070.790000px;}
.y95{bottom:1076.550000px;}
.y8{bottom:1081.230000px;}
.yc5{bottom:1091.490000px;}
.y7{bottom:1101.930000px;}
.y76{bottom:1107.510000px;}
.y2f{bottom:1112.190000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.ha{height:20.700000px;}
.h10{height:20.736000px;}
.h18{height:34.380000px;}
.h12{height:34.560000px;}
.h2{height:40.790039px;}
.hb{height:41.220000px;}
.h13{height:42.164648px;}
.h4{height:45.386260px;}
.he{height:49.860000px;}
.h6{height:50.800781px;}
.h1b{height:51.660000px;}
.h1a{height:51.840000px;}
.h19{height:51.876000px;}
.h1e{height:52.417969px;}
.h15{height:53.573906px;}
.h11{height:54.773438px;}
.h5{height:56.900391px;}
.h9{height:62.100000px;}
.h7{height:64.546875px;}
.h16{height:68.940000px;}
.h14{height:68.976000px;}
.h3{height:70.802565px;}
.h22{height:71.613281px;}
.h1f{height:73.722656px;}
.h8{height:83.520000px;}
.h1d{height:86.220000px;}
.h1c{height:86.256000px;}
.h17{height:86.400000px;}
.h20{height:103.320000px;}
.h21{height:103.536000px;}
.hf{height:104.256000px;}
.hc{height:113.400000px;}
.hd{height:129.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:21.240000px;}
.wc{width:21.420000px;}
.w17{width:35.100000px;}
.w5{width:53.136000px;}
.w12{width:69.660000px;}
.w19{width:108.036000px;}
.w18{width:114.660000px;}
.w9{width:120.420000px;}
.we{width:121.140000px;}
.w13{width:139.716000px;}
.w14{width:140.400000px;}
.w4{width:142.416000px;}
.w3{width:142.740000px;}
.w10{width:143.100000px;}
.w6{width:145.080000px;}
.wd{width:146.556000px;}
.wf{width:147.276000px;}
.w1a{width:148.500000px;}
.w15{width:160.230000px;}
.w16{width:167.070000px;}
.w7{width:169.050000px;}
.w11{width:169.410000px;}
.w1b{width:203.970000px;}
.wb{width:342.255000px;}
.w8{width:342.975000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:38.154000px;}
.x1b{left:40.005000px;}
.x11{left:41.265000px;}
.x16{left:46.440000px;}
.x1c{left:59.574000px;}
.x12{left:61.425000px;}
.x1d{left:69.480000px;}
.x15{left:72.360000px;}
.x19{left:73.485000px;}
.x1{left:108.035987px;}
.x3{left:120.275987px;}
.x28{left:121.535987px;}
.x29{left:128.375987px;}
.xe{left:129.636000px;}
.x2a{left:135.035987px;}
.x23{left:138.095987px;}
.x2{left:142.775987px;}
.x4{left:148.715987px;}
.xd{left:162.029987px;}
.x1f{left:177.690000px;}
.x1e{left:195.869987px;}
.x18{left:251.130000px;}
.x24{left:257.790000px;}
.x7{left:268.769987px;}
.x10{left:273.090000px;}
.xc{left:274.349987px;}
.x20{left:317.415000px;}
.x8{left:341.534987px;}
.xb{left:357.554987px;}
.x25{left:365.835000px;}
.x9{left:396.974987px;}
.x6{left:402.734987px;}
.x13{left:416.415000px;}
.xa{left:439.454987px;}
.x5{left:449.894987px;}
.x21{left:457.815000px;}
.x14{left:470.265000px;}
.x26{left:473.865000px;}
.x17{left:616.065000px;}
.x22{left:618.045000px;}
.x27{left:622.365000px;}
.x1a{left:638.205000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.512000pt;}
.ls7{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls6{letter-spacing:62.848000pt;}
.lsd{letter-spacing:172.800000pt;}
.lsb{letter-spacing:175.978667pt;}
.lsc{letter-spacing:530.026667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws9{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.185067pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-3.328000pt;}
._12{margin-left:-2.205969pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._3{width:2.086349pt;}
._d{width:3.136000pt;}
._e{width:4.479028pt;}
._b{width:6.144000pt;}
._5{width:7.616000pt;}
._6{width:8.640000pt;}
._11{width:9.984000pt;}
._7{width:11.392000pt;}
._8{width:12.618667pt;}
._17{width:13.888000pt;}
._c{width:14.784000pt;}
._28{width:15.850701pt;}
._13{width:16.938667pt;}
._14{width:18.037333pt;}
._f{width:19.264000pt;}
._10{width:20.608000pt;}
._44{width:21.504000pt;}
._15{width:22.400000pt;}
._9{width:23.552000pt;}
._a{width:24.768000pt;}
._42{width:26.109474pt;}
._3a{width:27.371128pt;}
._16{width:28.864000pt;}
._43{width:32.256000pt;}
._32{width:33.426808pt;}
._4a{width:35.584000pt;}
._3f{width:37.449600pt;}
._4f{width:39.488000pt;}
._21{width:40.544888pt;}
._39{width:43.625848pt;}
._41{width:44.992640pt;}
._22{width:46.016248pt;}
._33{width:54.409208pt;}
._37{width:56.721528pt;}
._38{width:57.688320pt;}
._3d{width:58.605688pt;}
._29{width:59.706880pt;}
._27{width:61.141120pt;}
._47{width:62.080000pt;}
._48{width:63.904000pt;}
._23{width:73.305600pt;}
._18{width:76.811520pt;}
._34{width:77.941368pt;}
._1d{width:79.163128pt;}
._1c{width:81.819128pt;}
._2f{width:85.470080pt;}
._3e{width:88.604160pt;}
._2e{width:91.578880pt;}
._40{width:92.535040pt;}
._4d{width:97.792000pt;}
._36{width:100.304888pt;}
._19{width:102.270328pt;}
._1f{width:108.485368pt;}
._31{width:109.905280pt;}
._3c{width:113.889280pt;}
._3b{width:114.845440pt;}
._49{width:117.824000pt;}
._1a{width:120.331128pt;}
._2c{width:121.432320pt;}
._2{width:129.851436pt;}
._1b{width:131.964408pt;}
._50{width:133.386667pt;}
._26{width:135.615360pt;}
._4b{width:143.978667pt;}
._25{width:148.736000pt;}
._4e{width:150.080000pt;}
._2d{width:155.163520pt;}
._35{width:158.828800pt;}
._51{width:159.978667pt;}
._2a{width:164.420728pt;}
._30{width:170.742008pt;}
._4c{width:172.736000pt;}
._20{width:173.808640pt;}
._45{width:175.978667pt;}
._24{width:177.580160pt;}
._2b{width:194.578560pt;}
._1e{width:204.140160pt;}
._46{width:530.176000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:2.880000pt;}
.y4a{bottom:3.520000pt;}
.y54{bottom:11.040000pt;}
.y70{bottom:18.080000pt;}
.y68{bottom:18.240000pt;}
.y4d{bottom:21.760000pt;}
.y49{bottom:21.920000pt;}
.y53{bottom:29.440000pt;}
.y6f{bottom:33.440000pt;}
.y7d{bottom:33.480000pt;}
.y74{bottom:33.600000pt;}
.y77{bottom:33.626667pt;}
.y6c{bottom:33.640000pt;}
.y51{bottom:34.240000pt;}
.y48{bottom:40.320000pt;}
.y4b{bottom:40.960000pt;}
.y6e{bottom:48.800000pt;}
.y6b{bottom:48.840000pt;}
.y73{bottom:48.960000pt;}
.y46{bottom:59.360000pt;}
.y4{bottom:60.960000pt;}
.y7f{bottom:64.160000pt;}
.y7c{bottom:64.200000pt;}
.y72{bottom:64.320000pt;}
.y50{bottom:71.040000pt;}
.y56{bottom:77.760000pt;}
.y97{bottom:79.520000pt;}
.y9a{bottom:79.720000pt;}
.y4f{bottom:85.920000pt;}
.yc4{bottom:105.472000pt;}
.y94{bottom:105.792000pt;}
.y75{bottom:106.752000pt;}
.y66{bottom:110.912000pt;}
.yc2{bottom:114.592000pt;}
.yaf{bottom:122.912000pt;}
.y2e{bottom:123.872000pt;}
.yc3{bottom:132.992000pt;}
.y93{bottom:133.626667pt;}
.y71{bottom:137.306667pt;}
.y65{bottom:138.586667pt;}
.yc1{bottom:142.266667pt;}
.y2d{bottom:151.386667pt;}
.yae{bottom:151.866667pt;}
.y44{bottom:160.666667pt;}
.y92{bottom:161.306667pt;}
.y64{bottom:166.106667pt;}
.yc0{bottom:169.786667pt;}
.y2c{bottom:179.066667pt;}
.yad{bottom:181.146667pt;}
.y43{bottom:188.186667pt;}
.y91{bottom:188.826667pt;}
.y63{bottom:193.786667pt;}
.ybf{bottom:197.466667pt;}
.y2b{bottom:206.586667pt;}
.yac{bottom:208.986667pt;}
.y6d{bottom:214.106667pt;}
.y42{bottom:215.866667pt;}
.y90{bottom:216.506667pt;}
.y62{bottom:221.306667pt;}
.ybe{bottom:224.986667pt;}
.y2a{bottom:234.266667pt;}
.yab{bottom:236.666667pt;}
.y41{bottom:243.386667pt;}
.y8f{bottom:244.026667pt;}
.y61{bottom:248.986667pt;}
.ybd{bottom:252.666667pt;}
.y29{bottom:261.786667pt;}
.yaa{bottom:264.186667pt;}
.y40{bottom:271.066667pt;}
.y8e{bottom:271.706667pt;}
.y6a{bottom:275.386667pt;}
.y60{bottom:276.506667pt;}
.ybc{bottom:280.186667pt;}
.y28{bottom:289.466667pt;}
.ya9{bottom:291.866667pt;}
.y3f{bottom:298.586667pt;}
.y5f{bottom:304.226667pt;}
.ybb{bottom:307.906667pt;}
.y8d{bottom:312.706667pt;}
.y27{bottom:317.026667pt;}
.ya8{bottom:319.426667pt;}
.y3e{bottom:326.306667pt;}
.y5e{bottom:331.746667pt;}
.yba{bottom:335.426667pt;}
.y67{bottom:337.346667pt;}
.y8c{bottom:340.226667pt;}
.y26{bottom:344.706667pt;}
.ya7{bottom:347.106667pt;}
.y3d{bottom:353.826667pt;}
.y5d{bottom:359.426667pt;}
.yb9{bottom:363.106667pt;}
.y8b{bottom:367.906667pt;}
.y25{bottom:372.226667pt;}
.ya6{bottom:374.626667pt;}
.y5c{bottom:377.826667pt;}
.y3c{bottom:381.506667pt;}
.yb8{bottom:390.626667pt;}
.y8a{bottom:395.426667pt;}
.y5b{bottom:396.226667pt;}
.y24{bottom:399.906667pt;}
.ya5{bottom:402.306667pt;}
.y3b{bottom:409.026667pt;}
.y5a{bottom:414.626667pt;}
.yb7{bottom:418.306667pt;}
.y89{bottom:423.106667pt;}
.y23{bottom:427.426667pt;}
.ya4{bottom:429.826667pt;}
.y59{bottom:433.026667pt;}
.y3a{bottom:436.706667pt;}
.yb6{bottom:445.826667pt;}
.y55{bottom:448.546667pt;}
.y88{bottom:450.626667pt;}
.y22{bottom:455.106667pt;}
.ya3{bottom:457.506667pt;}
.y39{bottom:464.226667pt;}
.yb5{bottom:473.506667pt;}
.y87{bottom:478.306667pt;}
.y21{bottom:482.626667pt;}
.ya2{bottom:485.026667pt;}
.y38{bottom:491.906667pt;}
.yb4{bottom:501.026667pt;}
.y58{bottom:504.386667pt;}
.y86{bottom:505.826667pt;}
.yd2{bottom:510.306667pt;}
.ya1{bottom:512.706667pt;}
.y20{bottom:519.426667pt;}
.y57{bottom:522.786667pt;}
.yb3{bottom:528.706667pt;}
.y85{bottom:533.506667pt;}
.y1f{bottom:537.853333pt;}
.ya0{bottom:540.253333pt;}
.y4e{bottom:541.853333pt;}
.y37{bottom:547.133333pt;}
.y1e{bottom:556.253333pt;}
.y84{bottom:561.053333pt;}
.yd1{bottom:565.533333pt;}
.y9f{bottom:567.933333pt;}
.y1d{bottom:574.653333pt;}
.yb2{bottom:583.933333pt;}
.y52{bottom:586.813333pt;}
.y83{bottom:588.733333pt;}
.y1c{bottom:593.053333pt;}
.y9e{bottom:595.453333pt;}
.y36{bottom:602.333333pt;}
.y4c{bottom:606.013333pt;}
.y1b{bottom:611.453333pt;}
.y82{bottom:616.253333pt;}
.yd0{bottom:620.733333pt;}
.y9d{bottom:623.133333pt;}
.y1a{bottom:629.853333pt;}
.yb1{bottom:638.973333pt;}
.y45{bottom:643.453333pt;}
.y81{bottom:643.773333pt;}
.y19{bottom:648.253333pt;}
.y9c{bottom:650.653333pt;}
.y35{bottom:657.373333pt;}
.y80{bottom:662.173333pt;}
.y47{bottom:662.493333pt;}
.y18{bottom:666.653333pt;}
.ycf{bottom:675.773333pt;}
.y7e{bottom:677.853333pt;}
.y9b{bottom:679.613333pt;}
.y17{bottom:685.053333pt;}
.yb0{bottom:694.173333pt;}
.y99{bottom:695.453333pt;}
.y16{bottom:703.453333pt;}
.y34{bottom:712.573333pt;}
.y15{bottom:721.853333pt;}
.yce{bottom:730.973333pt;}
.y14{bottom:740.253333pt;}
.ycd{bottom:749.373333pt;}
.y7b{bottom:754.493333pt;}
.y13{bottom:758.653333pt;}
.y33{bottom:767.773333pt;}
.y12{bottom:777.093333pt;}
.ycc{bottom:786.213333pt;}
.y98{bottom:787.493333pt;}
.y11{bottom:795.493333pt;}
.ycb{bottom:804.613333pt;}
.y10{bottom:813.893333pt;}
.y32{bottom:823.013333pt;}
.y7a{bottom:831.173333pt;}
.yf{bottom:832.293333pt;}
.yca{bottom:841.413333pt;}
.ye{bottom:850.693333pt;}
.yc9{bottom:859.813333pt;}
.y96{bottom:864.293333pt;}
.yd{bottom:869.093333pt;}
.y79{bottom:877.093333pt;}
.y31{bottom:878.213333pt;}
.yc{bottom:887.493333pt;}
.yc8{bottom:896.613333pt;}
.yb{bottom:905.893333pt;}
.yc7{bottom:915.013333pt;}
.y78{bottom:923.173333pt;}
.ya{bottom:924.293333pt;}
.y30{bottom:933.413333pt;}
.y9{bottom:942.693333pt;}
.yc6{bottom:951.813333pt;}
.y95{bottom:956.933333pt;}
.y8{bottom:961.093333pt;}
.yc5{bottom:970.213333pt;}
.y7{bottom:979.493333pt;}
.y76{bottom:984.453333pt;}
.y2f{bottom:988.613333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.ha{height:18.400000pt;}
.h10{height:18.432000pt;}
.h18{height:30.560000pt;}
.h12{height:30.720000pt;}
.h2{height:36.257812pt;}
.hb{height:36.640000pt;}
.h13{height:37.479688pt;}
.h4{height:40.343342pt;}
.he{height:44.320000pt;}
.h6{height:45.156250pt;}
.h1b{height:45.920000pt;}
.h1a{height:46.080000pt;}
.h19{height:46.112000pt;}
.h1e{height:46.593750pt;}
.h15{height:47.621250pt;}
.h11{height:48.687500pt;}
.h5{height:50.578125pt;}
.h9{height:55.200000pt;}
.h7{height:57.375000pt;}
.h16{height:61.280000pt;}
.h14{height:61.312000pt;}
.h3{height:62.935614pt;}
.h22{height:63.656250pt;}
.h1f{height:65.531250pt;}
.h8{height:74.240000pt;}
.h1d{height:76.640000pt;}
.h1c{height:76.672000pt;}
.h17{height:76.800000pt;}
.h20{height:91.840000pt;}
.h21{height:92.032000pt;}
.hf{height:92.672000pt;}
.hc{height:100.800000pt;}
.hd{height:114.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:18.880000pt;}
.wc{width:19.040000pt;}
.w17{width:31.200000pt;}
.w5{width:47.232000pt;}
.w12{width:61.920000pt;}
.w19{width:96.032000pt;}
.w18{width:101.920000pt;}
.w9{width:107.040000pt;}
.we{width:107.680000pt;}
.w13{width:124.192000pt;}
.w14{width:124.800000pt;}
.w4{width:126.592000pt;}
.w3{width:126.880000pt;}
.w10{width:127.200000pt;}
.w6{width:128.960000pt;}
.wd{width:130.272000pt;}
.wf{width:130.912000pt;}
.w1a{width:132.000000pt;}
.w15{width:142.426667pt;}
.w16{width:148.506667pt;}
.w7{width:150.266667pt;}
.w11{width:150.586667pt;}
.w1b{width:181.306667pt;}
.wb{width:304.226667pt;}
.w8{width:304.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:33.914667pt;}
.x1b{left:35.560000pt;}
.x11{left:36.680000pt;}
.x16{left:41.280000pt;}
.x1c{left:52.954667pt;}
.x12{left:54.600000pt;}
.x1d{left:61.760000pt;}
.x15{left:64.320000pt;}
.x19{left:65.320000pt;}
.x1{left:96.031988pt;}
.x3{left:106.911988pt;}
.x28{left:108.031988pt;}
.x29{left:114.111988pt;}
.xe{left:115.232000pt;}
.x2a{left:120.031988pt;}
.x23{left:122.751988pt;}
.x2{left:126.911988pt;}
.x4{left:132.191988pt;}
.xd{left:144.026655pt;}
.x1f{left:157.946667pt;}
.x1e{left:174.106655pt;}
.x18{left:223.226667pt;}
.x24{left:229.146667pt;}
.x7{left:238.906655pt;}
.x10{left:242.746667pt;}
.xc{left:243.866655pt;}
.x20{left:282.146667pt;}
.x8{left:303.586655pt;}
.xb{left:317.826655pt;}
.x25{left:325.186667pt;}
.x9{left:352.866655pt;}
.x6{left:357.986655pt;}
.x13{left:370.146667pt;}
.xa{left:390.626655pt;}
.x5{left:399.906655pt;}
.x21{left:406.946667pt;}
.x14{left:418.013333pt;}
.x26{left:421.213333pt;}
.x17{left:547.613333pt;}
.x22{left:549.373333pt;}
.x27{left:553.213333pt;}
.x1a{left:567.293333pt;}
}




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