
    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_6669b210201e8b09d5c25682.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6df10e90ce26c06cfb2e1b12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_eaff2f54a0a49f920624b244.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a4b371b867db625860b41374.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e6f641c41b46d8a9b79a724c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_55fb1d4498a11424aa4394aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_8d86b7dcbf3243f80059d6ad.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_212eb7c928769902a5abbcd9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4847bfecc1e6f93c2607facd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_fdd15866ad1d0a77508d2356.woff2')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_b9fff3da31dbae99c461ecd8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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.249167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249167,0.000000,0.000000,0.250000,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);}
.v4{vertical-align:-14.400000px;}
.v8{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:14.400000px;}
.v2{vertical-align:15.600000px;}
.va{vertical-align:25.800000px;}
.v3{vertical-align:36.000000px;}
.v1{vertical-align:42.000000px;}
.vc{vertical-align:52.716610px;}
.v5{vertical-align:54.600000px;}
.vb{vertical-align:62.400000px;}
.v7{vertical-align:70.200000px;}
.v6{vertical-align:81.000000px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls20{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.168000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls11{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.660000px;}
.ls1a{letter-spacing:2.256000px;}
.ls18{letter-spacing:4.488000px;}
.ls15{letter-spacing:6.288000px;}
.ls1b{letter-spacing:9.600000px;}
.ls19{letter-spacing:16.194000px;}
.ls1f{letter-spacing:23.460000px;}
.ls12{letter-spacing:23.940000px;}
.ls13{letter-spacing:24.639000px;}
.ls17{letter-spacing:29.745000px;}
.ls22{letter-spacing:30.984000px;}
.ls16{letter-spacing:44.352000px;}
.ls10{letter-spacing:48.384000px;}
.ls21{letter-spacing:63.720000px;}
.ls1e{letter-spacing:64.134000px;}
.ls14{letter-spacing:80.676000px;}
.ls5{letter-spacing:149.934000px;}
.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;}
}
.ws16{word-spacing:-60.000000px;}
.wsa{word-spacing:-18.192000px;}
.ws15{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.832000px;}
.ws10{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wse{word-spacing:-11.220000px;}
.ws13{word-spacing:-10.990227px;}
.ws12{word-spacing:-10.967426px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsf{word-spacing:-9.240000px;}
.ws11{word-spacing:-4.200000px;}
.wsd{word-spacing:-3.600000px;}
.wsb{word-spacing:0.000000px;}
.ws14{word-spacing:123.627199px;}
._9{margin-left:-5.184000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._8{width:2.910000px;}
._a{width:4.680000px;}
._18{width:6.396000px;}
._16{width:7.560000px;}
._17{width:9.534000px;}
._23{width:11.142000px;}
._20{width:12.816000px;}
._6{width:13.896000px;}
._7{width:15.294000px;}
._d{width:16.560000px;}
._1d{width:19.326000px;}
._13{width:20.592000px;}
._30{width:21.768000px;}
._24{width:23.022000px;}
._2d{width:24.768000px;}
._2e{width:25.806000px;}
._2c{width:27.360000px;}
._5{width:29.160000px;}
._4{width:30.606000px;}
._1e{width:32.184000px;}
._11{width:33.696000px;}
._12{width:34.848000px;}
._1a{width:36.720000px;}
._21{width:38.808000px;}
._22{width:40.608000px;}
._19{width:42.048000px;}
._3b{width:43.272000px;}
._2f{width:44.280000px;}
._41{width:45.318000px;}
._4c{width:46.770000px;}
._1b{width:48.600000px;}
._2b{width:50.472000px;}
._1c{width:52.008000px;}
._3f{width:53.286000px;}
._47{width:54.864000px;}
._36{width:56.664000px;}
._27{width:57.816000px;}
._f{width:59.544000px;}
._10{width:61.176000px;}
._1f{width:63.144000px;}
._28{width:64.872000px;}
._29{width:66.816000px;}
._2a{width:68.184000px;}
._14{width:69.774000px;}
._15{width:70.842000px;}
._45{width:72.000000px;}
._46{width:73.080000px;}
._31{width:74.736000px;}
._e{width:75.888000px;}
._34{width:79.920000px;}
._35{width:81.240000px;}
._43{width:82.560000px;}
._3c{width:85.140000px;}
._32{width:86.976000px;}
._33{width:88.416000px;}
._3d{width:89.928000px;}
._3e{width:91.440000px;}
._3a{width:94.752000px;}
._40{width:95.904000px;}
._38{width:97.056000px;}
._4a{width:98.094000px;}
._b{width:104.328000px;}
._c{width:105.408000px;}
._4e{width:109.728000px;}
._4f{width:110.838000px;}
._44{width:112.104000px;}
._25{width:113.184000px;}
._26{width:114.192000px;}
._42{width:115.920000px;}
._37{width:126.564000px;}
._4d{width:128.808000px;}
._39{width:134.136000px;}
._54{width:140.184000px;}
._55{width:141.264000px;}
._48{width:142.488000px;}
._49{width:143.856000px;}
._50{width:146.808000px;}
._53{width:167.328000px;}
._52{width:178.848000px;}
._51{width:180.720000px;}
._4b{width:194.550000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.fs9{font-size:43.869705px;}
.fs8{font-size:43.960910px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y23{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y28{bottom:24.600000px;}
.y22{bottom:24.645000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y27{bottom:45.300000px;}
.y21{bottom:45.345000px;}
.y3{bottom:57.637500px;}
.y26{bottom:66.000000px;}
.y20{bottom:66.045000px;}
.y2{bottom:81.637500px;}
.y1f{bottom:86.745000px;}
.yc2{bottom:105.787500px;}
.y1e{bottom:107.445000px;}
.yb4{bottom:109.087500px;}
.y3d{bottom:116.887500px;}
.y69{bottom:118.237500px;}
.y89{bottom:122.887500px;}
.y68{bottom:126.637500px;}
.y1d{bottom:128.145000px;}
.yc1{bottom:129.487500px;}
.y9d{bottom:129.718855px;}
.yb3{bottom:132.787500px;}
.ya0{bottom:138.611397px;}
.y3c{bottom:140.587500px;}
.y9c{bottom:142.916248px;}
.y88{bottom:146.587500px;}
.y1c{bottom:148.845000px;}
.y67{bottom:150.495000px;}
.y9f{bottom:151.899995px;}
.yc0{bottom:153.345000px;}
.yb2{bottom:156.645000px;}
.y3b{bottom:164.430000px;}
.y1b{bottom:169.545000px;}
.ya2{bottom:169.803551px;}
.ya5{bottom:169.803558px;}
.ya4{bottom:169.803565px;}
.y87{bottom:170.445000px;}
.yba{bottom:171.795000px;}
.y66{bottom:174.345000px;}
.y9e{bottom:176.388591px;}
.ybf{bottom:177.195000px;}
.yb1{bottom:180.495000px;}
.ya1{bottom:182.982703px;}
.ya3{bottom:182.982717px;}
.y3a{bottom:188.295000px;}
.y86{bottom:194.295000px;}
.yb9{bottom:195.495000px;}
.ybe{bottom:196.995000px;}
.y65{bottom:198.195000px;}
.yb0{bottom:204.195000px;}
.y39{bottom:212.130000px;}
.y85{bottom:217.995000px;}
.yb8{bottom:219.330000px;}
.y64{bottom:221.895000px;}
.yaf{bottom:228.045000px;}
.y38{bottom:235.845000px;}
.y84{bottom:241.845000px;}
.yb7{bottom:244.395000px;}
.y63{bottom:245.745000px;}
.yae{bottom:251.895000px;}
.y37{bottom:259.695000px;}
.y83{bottom:265.695000px;}
.yb6{bottom:268.245000px;}
.y62{bottom:269.595000px;}
.yad{bottom:275.595000px;}
.y36{bottom:283.545000px;}
.y82{bottom:289.395000px;}
.yb5{bottom:291.945000px;}
.y61{bottom:293.295000px;}
.yac{bottom:299.445000px;}
.y35{bottom:307.245000px;}
.y81{bottom:313.245000px;}
.y60{bottom:317.130000px;}
.yab{bottom:323.295000px;}
.y34{bottom:331.080000px;}
.y80{bottom:337.095000px;}
.y5f{bottom:340.995000px;}
.yaa{bottom:346.995000px;}
.y33{bottom:354.945000px;}
.y7f{bottom:360.945000px;}
.ybd{bottom:363.795000px;}
.y5e{bottom:364.695000px;}
.ya9{bottom:370.845000px;}
.y32{bottom:378.645000px;}
.y7e{bottom:384.675000px;}
.ybc{bottom:387.825000px;}
.y5d{bottom:388.575000px;}
.ya8{bottom:394.725000px;}
.y31{bottom:402.525000px;}
.y7d{bottom:408.525000px;}
.ybb{bottom:412.125000px;}
.y5c{bottom:412.425000px;}
.ya7{bottom:418.575000px;}
.y30{bottom:426.375000px;}
.y7c{bottom:432.375000px;}
.y5b{bottom:436.125000px;}
.ya6{bottom:438.375000px;}
.y9b{bottom:438.696494px;}
.y2f{bottom:450.075000px;}
.y7b{bottom:456.075000px;}
.y5a{bottom:459.975000px;}
.y2e{bottom:473.925000px;}
.y7a{bottom:479.925000px;}
.y59{bottom:483.825000px;}
.y2d{bottom:497.775000px;}
.y79{bottom:503.775000px;}
.y58{bottom:507.525000px;}
.y2c{bottom:521.475000px;}
.y78{bottom:527.475000px;}
.y57{bottom:531.375000px;}
.y2b{bottom:545.325000px;}
.y77{bottom:551.325000px;}
.y56{bottom:555.225000px;}
.y2a{bottom:569.175000px;}
.y76{bottom:575.175000px;}
.y55{bottom:579.075000px;}
.y75{bottom:598.875000px;}
.y29{bottom:601.875000px;}
.y54{bottom:602.775000px;}
.y25{bottom:618.675000px;}
.y74{bottom:622.725000px;}
.y53{bottom:626.625000px;}
.y9a{bottom:639.675000px;}
.y73{bottom:647.775000px;}
.y52{bottom:650.475000px;}
.y99{bottom:663.375000px;}
.y72{bottom:671.625000px;}
.y51{bottom:674.175000px;}
.y98{bottom:687.225000px;}
.y71{bottom:695.475000px;}
.y50{bottom:698.025000px;}
.y24{bottom:701.475000px;}
.y97{bottom:711.075000px;}
.y70{bottom:719.175000px;}
.y4f{bottom:721.875000px;}
.y1a{bottom:722.175000px;}
.y96{bottom:735.075000px;}
.y6f{bottom:743.070000px;}
.y4e{bottom:745.620000px;}
.y95{bottom:755.520000px;}
.y94{bottom:759.720000px;}
.y6e{bottom:766.770000px;}
.y4d{bottom:769.470000px;}
.y93{bottom:771.120000px;}
.y6d{bottom:791.970000px;}
.y4c{bottom:793.320000px;}
.y92{bottom:807.420000px;}
.y6c{bottom:815.820000px;}
.y4b{bottom:817.020000px;}
.y91{bottom:831.120000px;}
.y6b{bottom:839.520000px;}
.y4a{bottom:840.870000px;}
.y90{bottom:854.970000px;}
.y6a{bottom:863.370000px;}
.y49{bottom:864.720000px;}
.y8f{bottom:878.820000px;}
.y48{bottom:888.420000px;}
.y8e{bottom:902.520000px;}
.y19{bottom:912.120000px;}
.y47{bottom:912.270000px;}
.y8d{bottom:926.370000px;}
.y18{bottom:931.320000px;}
.y46{bottom:936.120000px;}
.y8c{bottom:950.220000px;}
.y17{bottom:952.020000px;}
.y45{bottom:959.970000px;}
.y8b{bottom:970.170000px;}
.y16{bottom:972.720000px;}
.y8a{bottom:979.170000px;}
.y44{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y3e{bottom:1126.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h1d{height:43.055716px;}
.h1c{height:43.145229px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.hb{height:50.484375px;}
.h11{height:50.800781px;}
.h14{height:51.609375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h19{height:60.679688px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h15{height:70.628906px;}
.hc{height:70.664062px;}
.ha{height:72.562500px;}
.h13{height:74.004654px;}
.h12{height:74.953125px;}
.h2{height:82.441406px;}
.h10{height:82.800000px;}
.h16{height:84.981445px;}
.h1e{height:95.861839px;}
.h17{height:106.664062px;}
.h18{height:123.981445px;}
.h1a{height:133.064063px;}
.he{height:186.345000px;}
.h1b{height:193.583093px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w9{width:403.601260px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1c{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x27{left:36.631587px;}
.x3{left:42.599987px;}
.x31{left:69.599987px;}
.x1d{left:95.699987px;}
.x1b{left:100.200000px;}
.x2f{left:101.699987px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x23{left:120.149987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x2a{left:142.717813px;}
.x10{left:184.244987px;}
.x24{left:187.994987px;}
.x25{left:200.744987px;}
.x2b{left:207.957592px;}
.x29{left:280.905792px;}
.x28{left:282.569283px;}
.x22{left:298.244987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x26{left:355.381133px;}
.x20{left:358.994987px;}
.x30{left:436.424987px;}
.x2c{left:446.924987px;}
.x14{left:456.074987px;}
.x1f{left:457.274987px;}
.x21{left:483.374987px;}
.x1e{left:510.374987px;}
.x13{left:512.024987px;}
.x12{left:532.724987px;}
.x11{left:534.974987px;}
.x2d{left:537.374987px;}
.x2e{left:564.374987px;}
.x17{left:572.024987px;}
.xc{left:625.425000px;}
.x18{left:661.754987px;}
.x15{left:679.619987px;}
.x19{left:705.569987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
@media print{
.v4{vertical-align:-12.800000pt;}
.v8{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:12.800000pt;}
.v2{vertical-align:13.866667pt;}
.va{vertical-align:22.933333pt;}
.v3{vertical-align:32.000000pt;}
.v1{vertical-align:37.333333pt;}
.vc{vertical-align:46.859209pt;}
.v5{vertical-align:48.533333pt;}
.vb{vertical-align:55.466667pt;}
.v7{vertical-align:62.400000pt;}
.v6{vertical-align:72.000000pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls20{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.149333pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls11{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:2.005333pt;}
.ls18{letter-spacing:3.989333pt;}
.ls15{letter-spacing:5.589333pt;}
.ls1b{letter-spacing:8.533333pt;}
.ls19{letter-spacing:14.394667pt;}
.ls1f{letter-spacing:20.853333pt;}
.ls12{letter-spacing:21.280000pt;}
.ls13{letter-spacing:21.901333pt;}
.ls17{letter-spacing:26.440000pt;}
.ls22{letter-spacing:27.541333pt;}
.ls16{letter-spacing:39.424000pt;}
.ls10{letter-spacing:43.008000pt;}
.ls21{letter-spacing:56.640000pt;}
.ls1e{letter-spacing:57.008000pt;}
.ls14{letter-spacing:71.712000pt;}
.ls5{letter-spacing:133.274667pt;}
.ws16{word-spacing:-53.333333pt;}
.wsa{word-spacing:-16.170667pt;}
.ws15{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.850667pt;}
.ws10{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wse{word-spacing:-9.973333pt;}
.ws13{word-spacing:-9.769091pt;}
.ws12{word-spacing:-9.748823pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsf{word-spacing:-8.213333pt;}
.ws11{word-spacing:-3.733333pt;}
.wsd{word-spacing:-3.200000pt;}
.wsb{word-spacing:0.000000pt;}
.ws14{word-spacing:109.890844pt;}
._9{margin-left:-4.608000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._8{width:2.586667pt;}
._a{width:4.160000pt;}
._18{width:5.685333pt;}
._16{width:6.720000pt;}
._17{width:8.474667pt;}
._23{width:9.904000pt;}
._20{width:11.392000pt;}
._6{width:12.352000pt;}
._7{width:13.594667pt;}
._d{width:14.720000pt;}
._1d{width:17.178667pt;}
._13{width:18.304000pt;}
._30{width:19.349333pt;}
._24{width:20.464000pt;}
._2d{width:22.016000pt;}
._2e{width:22.938667pt;}
._2c{width:24.320000pt;}
._5{width:25.920000pt;}
._4{width:27.205333pt;}
._1e{width:28.608000pt;}
._11{width:29.952000pt;}
._12{width:30.976000pt;}
._1a{width:32.640000pt;}
._21{width:34.496000pt;}
._22{width:36.096000pt;}
._19{width:37.376000pt;}
._3b{width:38.464000pt;}
._2f{width:39.360000pt;}
._41{width:40.282667pt;}
._4c{width:41.573333pt;}
._1b{width:43.200000pt;}
._2b{width:44.864000pt;}
._1c{width:46.229333pt;}
._3f{width:47.365333pt;}
._47{width:48.768000pt;}
._36{width:50.368000pt;}
._27{width:51.392000pt;}
._f{width:52.928000pt;}
._10{width:54.378667pt;}
._1f{width:56.128000pt;}
._28{width:57.664000pt;}
._29{width:59.392000pt;}
._2a{width:60.608000pt;}
._14{width:62.021333pt;}
._15{width:62.970667pt;}
._45{width:64.000000pt;}
._46{width:64.960000pt;}
._31{width:66.432000pt;}
._e{width:67.456000pt;}
._34{width:71.040000pt;}
._35{width:72.213333pt;}
._43{width:73.386667pt;}
._3c{width:75.680000pt;}
._32{width:77.312000pt;}
._33{width:78.592000pt;}
._3d{width:79.936000pt;}
._3e{width:81.280000pt;}
._3a{width:84.224000pt;}
._40{width:85.248000pt;}
._38{width:86.272000pt;}
._4a{width:87.194667pt;}
._b{width:92.736000pt;}
._c{width:93.696000pt;}
._4e{width:97.536000pt;}
._4f{width:98.522667pt;}
._44{width:99.648000pt;}
._25{width:100.608000pt;}
._26{width:101.504000pt;}
._42{width:103.040000pt;}
._37{width:112.501333pt;}
._4d{width:114.496000pt;}
._39{width:119.232000pt;}
._54{width:124.608000pt;}
._55{width:125.568000pt;}
._48{width:126.656000pt;}
._49{width:127.872000pt;}
._50{width:130.496000pt;}
._53{width:148.736000pt;}
._52{width:158.976000pt;}
._51{width:160.640000pt;}
._4b{width:172.933333pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:38.995293pt;}
.fs8{font-size:39.076364pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y23{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y28{bottom:21.866667pt;}
.y22{bottom:21.906667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y27{bottom:40.266667pt;}
.y21{bottom:40.306667pt;}
.y3{bottom:51.233333pt;}
.y26{bottom:58.666667pt;}
.y20{bottom:58.706667pt;}
.y2{bottom:72.566667pt;}
.y1f{bottom:77.106667pt;}
.yc2{bottom:94.033333pt;}
.y1e{bottom:95.506667pt;}
.yb4{bottom:96.966667pt;}
.y3d{bottom:103.900000pt;}
.y69{bottom:105.100000pt;}
.y89{bottom:109.233333pt;}
.y68{bottom:112.566667pt;}
.y1d{bottom:113.906667pt;}
.yc1{bottom:115.100000pt;}
.y9d{bottom:115.305649pt;}
.yb3{bottom:118.033333pt;}
.ya0{bottom:123.210130pt;}
.y3c{bottom:124.966667pt;}
.y9c{bottom:127.036665pt;}
.y88{bottom:130.300000pt;}
.y1c{bottom:132.306667pt;}
.y67{bottom:133.773333pt;}
.y9f{bottom:135.022218pt;}
.yc0{bottom:136.306667pt;}
.yb2{bottom:139.240000pt;}
.y3b{bottom:146.160000pt;}
.y1b{bottom:150.706667pt;}
.ya2{bottom:150.936490pt;}
.ya5{bottom:150.936496pt;}
.ya4{bottom:150.936502pt;}
.y87{bottom:151.506667pt;}
.yba{bottom:152.706667pt;}
.y66{bottom:154.973333pt;}
.y9e{bottom:156.789859pt;}
.ybf{bottom:157.506667pt;}
.yb1{bottom:160.440000pt;}
.ya1{bottom:162.651292pt;}
.ya3{bottom:162.651304pt;}
.y3a{bottom:167.373333pt;}
.y86{bottom:172.706667pt;}
.yb9{bottom:173.773333pt;}
.ybe{bottom:175.106667pt;}
.y65{bottom:176.173333pt;}
.yb0{bottom:181.506667pt;}
.y39{bottom:188.560000pt;}
.y85{bottom:193.773333pt;}
.yb8{bottom:194.960000pt;}
.y64{bottom:197.240000pt;}
.yaf{bottom:202.706667pt;}
.y38{bottom:209.640000pt;}
.y84{bottom:214.973333pt;}
.yb7{bottom:217.240000pt;}
.y63{bottom:218.440000pt;}
.yae{bottom:223.906667pt;}
.y37{bottom:230.840000pt;}
.y83{bottom:236.173333pt;}
.yb6{bottom:238.440000pt;}
.y62{bottom:239.640000pt;}
.yad{bottom:244.973333pt;}
.y36{bottom:252.040000pt;}
.y82{bottom:257.240000pt;}
.yb5{bottom:259.506667pt;}
.y61{bottom:260.706667pt;}
.yac{bottom:266.173333pt;}
.y35{bottom:273.106667pt;}
.y81{bottom:278.440000pt;}
.y60{bottom:281.893333pt;}
.yab{bottom:287.373333pt;}
.y34{bottom:294.293333pt;}
.y80{bottom:299.640000pt;}
.y5f{bottom:303.106667pt;}
.yaa{bottom:308.440000pt;}
.y33{bottom:315.506667pt;}
.y7f{bottom:320.840000pt;}
.ybd{bottom:323.373333pt;}
.y5e{bottom:324.173333pt;}
.ya9{bottom:329.640000pt;}
.y32{bottom:336.573333pt;}
.y7e{bottom:341.933333pt;}
.ybc{bottom:344.733333pt;}
.y5d{bottom:345.400000pt;}
.ya8{bottom:350.866667pt;}
.y31{bottom:357.800000pt;}
.y7d{bottom:363.133333pt;}
.ybb{bottom:366.333333pt;}
.y5c{bottom:366.600000pt;}
.ya7{bottom:372.066667pt;}
.y30{bottom:379.000000pt;}
.y7c{bottom:384.333333pt;}
.y5b{bottom:387.666667pt;}
.ya6{bottom:389.666667pt;}
.y9b{bottom:389.952439pt;}
.y2f{bottom:400.066667pt;}
.y7b{bottom:405.400000pt;}
.y5a{bottom:408.866667pt;}
.y2e{bottom:421.266667pt;}
.y7a{bottom:426.600000pt;}
.y59{bottom:430.066667pt;}
.y2d{bottom:442.466667pt;}
.y79{bottom:447.800000pt;}
.y58{bottom:451.133333pt;}
.y2c{bottom:463.533333pt;}
.y78{bottom:468.866667pt;}
.y57{bottom:472.333333pt;}
.y2b{bottom:484.733333pt;}
.y77{bottom:490.066667pt;}
.y56{bottom:493.533333pt;}
.y2a{bottom:505.933333pt;}
.y76{bottom:511.266667pt;}
.y55{bottom:514.733333pt;}
.y75{bottom:532.333333pt;}
.y29{bottom:535.000000pt;}
.y54{bottom:535.800000pt;}
.y25{bottom:549.933333pt;}
.y74{bottom:553.533333pt;}
.y53{bottom:557.000000pt;}
.y9a{bottom:568.600000pt;}
.y73{bottom:575.800000pt;}
.y52{bottom:578.200000pt;}
.y99{bottom:589.666667pt;}
.y72{bottom:597.000000pt;}
.y51{bottom:599.266667pt;}
.y98{bottom:610.866667pt;}
.y71{bottom:618.200000pt;}
.y50{bottom:620.466667pt;}
.y24{bottom:623.533333pt;}
.y97{bottom:632.066667pt;}
.y70{bottom:639.266667pt;}
.y4f{bottom:641.666667pt;}
.y1a{bottom:641.933333pt;}
.y96{bottom:653.400000pt;}
.y6f{bottom:660.506667pt;}
.y4e{bottom:662.773333pt;}
.y95{bottom:671.573333pt;}
.y94{bottom:675.306667pt;}
.y6e{bottom:681.573333pt;}
.y4d{bottom:683.973333pt;}
.y93{bottom:685.440000pt;}
.y6d{bottom:703.973333pt;}
.y4c{bottom:705.173333pt;}
.y92{bottom:717.706667pt;}
.y6c{bottom:725.173333pt;}
.y4b{bottom:726.240000pt;}
.y91{bottom:738.773333pt;}
.y6b{bottom:746.240000pt;}
.y4a{bottom:747.440000pt;}
.y90{bottom:759.973333pt;}
.y6a{bottom:767.440000pt;}
.y49{bottom:768.640000pt;}
.y8f{bottom:781.173333pt;}
.y48{bottom:789.706667pt;}
.y8e{bottom:802.240000pt;}
.y19{bottom:810.773333pt;}
.y47{bottom:810.906667pt;}
.y8d{bottom:823.440000pt;}
.y18{bottom:827.840000pt;}
.y46{bottom:832.106667pt;}
.y8c{bottom:844.640000pt;}
.y17{bottom:846.240000pt;}
.y45{bottom:853.306667pt;}
.y8b{bottom:862.373333pt;}
.y16{bottom:864.640000pt;}
.y8a{bottom:870.373333pt;}
.y44{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y3e{bottom:1001.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h1d{height:38.271748pt;}
.h1c{height:38.351315pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.hb{height:44.875000pt;}
.h11{height:45.156250pt;}
.h14{height:45.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h19{height:53.937500pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h15{height:62.781250pt;}
.hc{height:62.812500pt;}
.ha{height:64.500000pt;}
.h13{height:65.781915pt;}
.h12{height:66.625000pt;}
.h2{height:73.281250pt;}
.h10{height:73.600000pt;}
.h16{height:75.539062pt;}
.h1e{height:85.210523pt;}
.h17{height:94.812500pt;}
.h18{height:110.205729pt;}
.h1a{height:118.279167pt;}
.he{height:165.640000pt;}
.h1b{height:172.073861pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w9{width:358.756675pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1c{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x27{left:32.561410pt;}
.x3{left:37.866655pt;}
.x31{left:61.866655pt;}
.x1d{left:85.066655pt;}
.x1b{left:89.066667pt;}
.x2f{left:90.399988pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x23{left:106.799988pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x2a{left:126.860278pt;}
.x10{left:163.773322pt;}
.x24{left:167.106655pt;}
.x25{left:178.439988pt;}
.x2b{left:184.851193pt;}
.x29{left:249.694037pt;}
.x28{left:251.172696pt;}
.x22{left:265.106655pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x26{left:315.894340pt;}
.x20{left:319.106655pt;}
.x30{left:387.933322pt;}
.x2c{left:397.266655pt;}
.x14{left:405.399988pt;}
.x1f{left:406.466655pt;}
.x21{left:429.666655pt;}
.x1e{left:453.666655pt;}
.x13{left:455.133322pt;}
.x12{left:473.533322pt;}
.x11{left:475.533322pt;}
.x2d{left:477.666655pt;}
.x2e{left:501.666655pt;}
.x17{left:508.466655pt;}
.xc{left:555.933333pt;}
.x18{left:588.226655pt;}
.x15{left:604.106655pt;}
.x19{left:627.173322pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
}




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