
    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_79440722e5f0445515386e59.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_01daf98b6f7e038e211f29e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_3f1a63964dcb80553a987818.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_d215caf3ae284ba203c154c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9098a9254c2bbb7d2f24c6ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.145508;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_488d6fcd942ddd30eac002a5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_b5545bc04a18bb022e1dcc02.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b322d0825bfc684aea5e79a7.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.lsb{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.229800px;}
.ls9{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.112200px;}
.ls8{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.lsa{letter-spacing:54.864000px;}
.ls3{letter-spacing:842.484000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws6{word-spacing:-21.960000px;}
.ws3{word-spacing:-21.816000px;}
.ws4{word-spacing:-18.808440px;}
.wsc{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.416000px;}
.ws5{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.200000px;}
.ws9{word-spacing:-16.056000px;}
.ws7{word-spacing:-14.970240px;}
.ws0{word-spacing:-13.393560px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-11.083440px;}
._7{margin-left:-9.492000px;}
._5{margin-left:-7.332000px;}
._4{margin-left:-5.100000px;}
._10{margin-left:-3.748560px;}
._8{margin-left:-2.515440px;}
._1{margin-left:-1.080000px;}
._0{width:1.135440px;}
._2{width:2.434560px;}
._c{width:3.630000px;}
._b{width:4.752000px;}
._f{width:5.760000px;}
._12{width:6.888000px;}
._11{width:7.920000px;}
._e{width:9.432000px;}
._d{width:10.476000px;}
._9{width:11.856000px;}
._16{width:13.176000px;}
._a{width:15.048000px;}
._13{width:17.280000px;}
._1d{width:19.056000px;}
._19{width:20.304000px;}
._18{width:21.432000px;}
._17{width:22.656000px;}
._1c{width:23.673120px;}
._15{width:24.696000px;}
._14{width:25.920000px;}
._1e{width:27.292560px;}
._1b{width:31.392000px;}
._1a{width:32.544000px;}
._3{width:842.484000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(210,32,32);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.851000px;}
.y10b{bottom:13.860000px;}
.y38{bottom:13.905000px;}
.y32{bottom:14.040000px;}
.y35{bottom:14.220000px;}
.y4e{bottom:16.185000px;}
.y48{bottom:16.200000px;}
.y4b{bottom:16.365000px;}
.y45{bottom:16.380000px;}
.y42{bottom:16.740000px;}
.y8{bottom:27.045000px;}
.y7{bottom:36.216000px;}
.y3e{bottom:37.980000px;}
.y34{bottom:39.420000px;}
.y3c{bottom:45.360000px;}
.yae{bottom:90.936000px;}
.yea{bottom:93.996000px;}
.y51{bottom:97.596000px;}
.y73{bottom:102.996000px;}
.y93{bottom:113.436000px;}
.y108{bottom:115.596000px;}
.yad{bottom:116.136000px;}
.ye9{bottom:119.376000px;}
.y50{bottom:125.856000px;}
.y72{bottom:128.196000px;}
.y92{bottom:138.636000px;}
.yac{bottom:141.336000px;}
.ye8{bottom:144.576000px;}
.y107{bottom:145.836000px;}
.y4f{bottom:155.730000px;}
.y71{bottom:162.570000px;}
.y128{bottom:163.650000px;}
.ycc{bottom:166.710000px;}
.ye7{bottom:169.770000px;}
.yab{bottom:172.650000px;}
.y91{bottom:172.830000px;}
.y4d{bottom:175.725000px;}
.y106{bottom:177.150000px;}
.y70{bottom:187.770000px;}
.ycb{bottom:191.910000px;}
.y127{bottom:193.710000px;}
.ye6{bottom:195.150000px;}
.yaa{bottom:198.030000px;}
.y90{bottom:201.090000px;}
.y105{bottom:208.290000px;}
.y6f{bottom:212.970000px;}
.y4c{bottom:214.965000px;}
.yca{bottom:217.290000px;}
.ye5{bottom:220.350000px;}
.y126{bottom:223.770000px;}
.y8f{bottom:226.470000px;}
.ya9{bottom:229.170000px;}
.y104{bottom:233.670000px;}
.y6e{bottom:238.350000px;}
.yc9{bottom:242.490000px;}
.y8e{bottom:251.670000px;}
.y125{bottom:254.010000px;}
.y4a{bottom:254.385000px;}
.ya8{bottom:254.550000px;}
.y103{bottom:258.870000px;}
.y6d{bottom:263.550000px;}
.yc8{bottom:267.690000px;}
.ye4{bottom:276.915000px;}
.y124{bottom:279.255000px;}
.ya7{bottom:279.795000px;}
.y8d{bottom:285.555000px;}
.y6c{bottom:288.975000px;}
.y102{bottom:290.235000px;}
.yc7{bottom:293.115000px;}
.y49{bottom:293.835000px;}
.ye3{bottom:302.295000px;}
.y123{bottom:304.635000px;}
.y8c{bottom:308.775000px;}
.ya6{bottom:311.115000px;}
.y6b{bottom:314.175000px;}
.y101{bottom:315.435000px;}
.yc6{bottom:318.315000px;}
.ye2{bottom:327.495000px;}
.y122{bottom:329.835000px;}
.y47{bottom:333.255000px;}
.ya5{bottom:336.315000px;}
.y6a{bottom:339.375000px;}
.y100{bottom:340.815000px;}
.y8b{bottom:341.355000px;}
.yc5{bottom:352.695000px;}
.y121{bottom:355.035000px;}
.ya4{bottom:361.695000px;}
.y69{bottom:364.755000px;}
.yff{bottom:366.015000px;}
.y8a{bottom:366.555000px;}
.y46{bottom:372.495000px;}
.yc4{bottom:377.895000px;}
.ye1{bottom:378.075000px;}
.y120{bottom:380.415000px;}
.yfe{bottom:391.215000px;}
.y89{bottom:391.935000px;}
.ya3{bottom:392.835000px;}
.y68{bottom:398.955000px;}
.yc3{bottom:403.095000px;}
.ye0{bottom:403.275000px;}
.y11f{bottom:411.555000px;}
.y44{bottom:411.915000px;}
.y88{bottom:417.135000px;}
.ya2{bottom:418.215000px;}
.y67{bottom:424.155000px;}
.yc2{bottom:428.475000px;}
.yfd{bottom:429.915000px;}
.y137{bottom:431.175000px;}
.ydf{bottom:434.595000px;}
.y11e{bottom:436.935000px;}
.y87{bottom:442.515000px;}
.ya1{bottom:449.355000px;}
.y66{bottom:449.535000px;}
.y43{bottom:451.335000px;}
.yc1{bottom:453.675000px;}
.y136{bottom:458.535000px;}
.yde{bottom:459.795000px;}
.y11d{bottom:462.135000px;}
.y86{bottom:467.715000px;}
.y65{bottom:474.735000px;}
.y1c{bottom:475.095000px;}
.yfc{bottom:477.255000px;}
.yc0{bottom:478.875000px;}
.y135{bottom:483.735000px;}
.ydd{bottom:485.175000px;}
.y11c{bottom:487.515000px;}
.y41{bottom:490.755000px;}
.y85{bottom:492.915000px;}
.ya0{bottom:499.935000px;}
.y64{bottom:500.115000px;}
.ybf{bottom:504.255000px;}
.y1b{bottom:504.975000px;}
.y134{bottom:509.115000px;}
.ydc{bottom:510.375000px;}
.y11b{bottom:512.715000px;}
.yfb{bottom:514.335000px;}
.y84{bottom:518.295000px;}
.y2e{bottom:520.455000px;}
.y63{bottom:525.315000px;}
.ybe{bottom:529.455000px;}
.y40{bottom:529.995000px;}
.y9f{bottom:531.255000px;}
.y133{bottom:534.315000px;}
.y1a{bottom:535.035000px;}
.ydb{bottom:535.575000px;}
.y11a{bottom:537.915000px;}
.y2d{bottom:538.815000px;}
.y83{bottom:543.495000px;}
.yfa{bottom:544.575000px;}
.y62{bottom:550.515000px;}
.y9e{bottom:556.485000px;}
.y132{bottom:559.545000px;}
.yda{bottom:560.985000px;}
.ybd{bottom:563.865000px;}
.y19{bottom:565.125000px;}
.y2c{bottom:567.105000px;}
.y119{bottom:569.265000px;}
.yf9{bottom:569.805000px;}
.y82{bottom:577.545000px;}
.y9d{bottom:581.865000px;}
.y61{bottom:584.925000px;}
.yd9{bottom:586.185000px;}
.ybc{bottom:589.065000px;}
.y131{bottom:593.925000px;}
.y118{bottom:594.465000px;}
.yf8{bottom:595.005000px;}
.y18{bottom:595.185000px;}
.y2b{bottom:597.165000px;}
.y3f{bottom:600.045000px;}
.y9c{bottom:607.065000px;}
.y60{bottom:610.125000px;}
.y81{bottom:610.665000px;}
.yd8{bottom:611.385000px;}
.ybb{bottom:614.265000px;}
.y130{bottom:619.125000px;}
.y117{bottom:619.845000px;}
.yf7{bottom:620.385000px;}
.y17{bottom:625.245000px;}
.y2a{bottom:627.225000px;}
.y3d{bottom:635.145000px;}
.y5f{bottom:635.325000px;}
.yd7{bottom:636.765000px;}
.y9b{bottom:638.385000px;}
.yba{bottom:639.645000px;}
.y12f{bottom:644.325000px;}
.y116{bottom:645.045000px;}
.y80{bottom:648.105000px;}
.yf6{bottom:651.525000px;}
.y16{bottom:655.305000px;}
.y29{bottom:657.285000px;}
.y5e{bottom:660.705000px;}
.yd6{bottom:661.965000px;}
.y9a{bottom:663.585000px;}
.yb9{bottom:664.845000px;}
.y12e{bottom:669.705000px;}
.y115{bottom:676.365000px;}
.yf5{bottom:676.905000px;}
.y15{bottom:685.185000px;}
.y28{bottom:687.165000px;}
.yd5{bottom:687.345000px;}
.y99{bottom:688.785000px;}
.yb8{bottom:690.045000px;}
.y3b{bottom:692.925000px;}
.y5d{bottom:694.905000px;}
.y114{bottom:701.565000px;}
.yf4{bottom:702.105000px;}
.y14{bottom:711.465000px;}
.yd4{bottom:712.545000px;}
.y98{bottom:713.985000px;}
.y7f{bottom:715.065000px;}
.y27{bottom:717.225000px;}
.y5c{bottom:720.285000px;}
.yb7{bottom:724.425000px;}
.y113{bottom:726.945000px;}
.yf3{bottom:727.485000px;}
.y7e{bottom:742.425000px;}
.yd3{bottom:743.865000px;}
.y13{bottom:744.405000px;}
.y5b{bottom:745.485000px;}
.y26{bottom:747.105000px;}
.yb6{bottom:749.625000px;}
.y112{bottom:752.145000px;}
.yf2{bottom:752.685000px;}
.y3a{bottom:759.165000px;}
.y7d{bottom:767.625000px;}
.y5a{bottom:770.685000px;}
.yb5{bottom:775.005000px;}
.y25{bottom:776.985000px;}
.y12{bottom:777.345000px;}
.yf1{bottom:784.005000px;}
.y111{bottom:790.665000px;}
.y39{bottom:793.005000px;}
.y12d{bottom:795.885000px;}
.y59{bottom:796.065000px;}
.yb4{bottom:800.205000px;}
.yd2{bottom:806.325000px;}
.y24{bottom:808.125000px;}
.yf0{bottom:809.205000px;}
.y11{bottom:817.125000px;}
.y7c{bottom:818.205000px;}
.y58{bottom:821.265000px;}
.yb3{bottom:825.405000px;}
.y110{bottom:827.745000px;}
.y37{bottom:828.105000px;}
.y12c{bottom:830.265000px;}
.yd1{bottom:831.705000px;}
.yef{bottom:834.405000px;}
.y23{bottom:839.130000px;}
.y7b{bottom:843.450000px;}
.y10{bottom:847.230000px;}
.y57{bottom:855.690000px;}
.y10f{bottom:857.670000px;}
.yb2{bottom:859.830000px;}
.y36{bottom:861.810000px;}
.yd0{bottom:863.070000px;}
.y7a{bottom:868.830000px;}
.y22{bottom:870.090000px;}
.yf{bottom:877.290000px;}
.y10e{bottom:877.650000px;}
.y97{bottom:877.830000px;}
.y56{bottom:880.890000px;}
.yee{bottom:885.030000px;}
.ycf{bottom:889.170000px;}
.yb1{bottom:890.970000px;}
.y79{bottom:894.030000px;}
.y33{bottom:895.650000px;}
.y21{bottom:901.050000px;}
.y96{bottom:903.030000px;}
.y55{bottom:906.090000px;}
.ye{bottom:907.350000px;}
.yed{bottom:910.410000px;}
.y10d{bottom:911.310000px;}
.y12b{bottom:912.210000px;}
.yce{bottom:915.450000px;}
.y78{bottom:919.410000px;}
.yb0{bottom:922.290000px;}
.y95{bottom:928.410000px;}
.y54{bottom:931.470000px;}
.y20{bottom:932.010000px;}
.yd{bottom:937.410000px;}
.yec{bottom:941.550000px;}
.y77{bottom:944.610000px;}
.y10c{bottom:945.150000px;}
.yaf{bottom:947.670000px;}
.y94{bottom:953.610000px;}
.y31{bottom:955.950000px;}
.y53{bottom:956.670000px;}
.y12a{bottom:962.610000px;}
.y1f{bottom:963.690000px;}
.yc{bottom:967.470000px;}
.ycd{bottom:969.810000px;}
.yeb{bottom:972.870000px;}
.y76{bottom:978.810000px;}
.y10a{bottom:978.990000px;}
.y52{bottom:981.870000px;}
.y129{bottom:987.810000px;}
.y30{bottom:993.750000px;}
.y1e{bottom:996.810000px;}
.yb{bottom:997.530000px;}
.y75{bottom:1004.190000px;}
.y109{bottom:1012.650000px;}
.y1d{bottom:1026.330000px;}
.y2f{bottom:1026.510000px;}
.ya{bottom:1027.410000px;}
.y74{bottom:1029.390000px;}
.y6{bottom:1099.050000px;}
.y5{bottom:1122.300000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1159.020000px;}
.y2{bottom:1177.200000px;}
.y1{bottom:1195.560000px;}
.h5{height:20.871000px;}
.h1b{height:32.925000px;}
.hf{height:32.962500px;}
.hc{height:33.105000px;}
.h11{height:33.120000px;}
.h10{height:34.200000px;}
.h14{height:34.380000px;}
.h15{height:34.410000px;}
.h16{height:38.505000px;}
.h17{height:38.685000px;}
.h18{height:38.721000px;}
.h4{height:50.572266px;}
.h13{height:57.060000px;}
.hd{height:59.565000px;}
.h2{height:61.189805px;}
.h12{height:65.520000px;}
.h19{height:65.884219px;}
.h3{height:66.023438px;}
.h6{height:67.429688px;}
.he{height:71.613281px;}
.hb{height:73.722656px;}
.h1a{height:74.004654px;}
.ha{height:80.208984px;}
.h9{height:86.255508px;}
.h8{height:107.419922px;}
.h7{height:110.583984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:32.025000px;}
.wf{width:42.465000px;}
.wa{width:62.811000px;}
.wb{width:62.985000px;}
.wd{width:63.000000px;}
.wc{width:63.021000px;}
.we{width:63.036000px;}
.w8{width:125.811000px;}
.w4{width:127.791000px;}
.w6{width:148.176000px;}
.w7{width:201.255000px;}
.w5{width:232.215000px;}
.w9{width:383.100000px;}
.w3{width:711.630000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.731000px;}
.x1{left:95.796000px;}
.x10{left:122.796000px;}
.xf{left:138.276000px;}
.x5{left:148.896000px;}
.x11{left:160.245000px;}
.x4{left:213.510000px;}
.xe{left:222.705000px;}
.xb{left:224.685000px;}
.x6{left:226.470000px;}
.x12{left:287.715000px;}
.x8{left:323.895000px;}
.x13{left:351.435000px;}
.x7{left:358.815000px;}
.x9{left:371.595000px;}
.x14{left:415.155000px;}
.x3{left:430.635000px;}
.xc{left:457.635000px;}
.x15{left:478.920000px;}
.x16{left:542.820000px;}
.xd{left:606.540000px;}
.x17{left:670.290000px;}
.x18{left:723.030000px;}
.x2{left:733.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.204267pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.099733pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.lsa{letter-spacing:48.768000pt;}
.ls3{letter-spacing:748.874667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws6{word-spacing:-19.520000pt;}
.ws3{word-spacing:-19.392000pt;}
.ws4{word-spacing:-16.718613pt;}
.wsc{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.592000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.400000pt;}
.ws9{word-spacing:-14.272000pt;}
.ws7{word-spacing:-13.306880pt;}
.ws0{word-spacing:-11.905387pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-9.851947pt;}
._7{margin-left:-8.437333pt;}
._5{margin-left:-6.517333pt;}
._4{margin-left:-4.533333pt;}
._10{margin-left:-3.332053pt;}
._8{margin-left:-2.235947pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.009280pt;}
._2{width:2.164053pt;}
._c{width:3.226667pt;}
._b{width:4.224000pt;}
._f{width:5.120000pt;}
._12{width:6.122667pt;}
._11{width:7.040000pt;}
._e{width:8.384000pt;}
._d{width:9.312000pt;}
._9{width:10.538667pt;}
._16{width:11.712000pt;}
._a{width:13.376000pt;}
._13{width:15.360000pt;}
._1d{width:16.938667pt;}
._19{width:18.048000pt;}
._18{width:19.050667pt;}
._17{width:20.138667pt;}
._1c{width:21.042773pt;}
._15{width:21.952000pt;}
._14{width:23.040000pt;}
._1e{width:24.260053pt;}
._1b{width:27.904000pt;}
._1a{width:28.928000pt;}
._3{width:748.874667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.312000pt;}
.y10b{bottom:12.320000pt;}
.y38{bottom:12.360000pt;}
.y32{bottom:12.480000pt;}
.y35{bottom:12.640000pt;}
.y4e{bottom:14.386667pt;}
.y48{bottom:14.400000pt;}
.y4b{bottom:14.546667pt;}
.y45{bottom:14.560000pt;}
.y42{bottom:14.880000pt;}
.y8{bottom:24.040000pt;}
.y7{bottom:32.192000pt;}
.y3e{bottom:33.760000pt;}
.y34{bottom:35.040000pt;}
.y3c{bottom:40.320000pt;}
.yae{bottom:80.832000pt;}
.yea{bottom:83.552000pt;}
.y51{bottom:86.752000pt;}
.y73{bottom:91.552000pt;}
.y93{bottom:100.832000pt;}
.y108{bottom:102.752000pt;}
.yad{bottom:103.232000pt;}
.ye9{bottom:106.112000pt;}
.y50{bottom:111.872000pt;}
.y72{bottom:113.952000pt;}
.y92{bottom:123.232000pt;}
.yac{bottom:125.632000pt;}
.ye8{bottom:128.512000pt;}
.y107{bottom:129.632000pt;}
.y4f{bottom:138.426667pt;}
.y71{bottom:144.506667pt;}
.y128{bottom:145.466667pt;}
.ycc{bottom:148.186667pt;}
.ye7{bottom:150.906667pt;}
.yab{bottom:153.466667pt;}
.y91{bottom:153.626667pt;}
.y4d{bottom:156.200000pt;}
.y106{bottom:157.466667pt;}
.y70{bottom:166.906667pt;}
.ycb{bottom:170.586667pt;}
.y127{bottom:172.186667pt;}
.ye6{bottom:173.466667pt;}
.yaa{bottom:176.026667pt;}
.y90{bottom:178.746667pt;}
.y105{bottom:185.146667pt;}
.y6f{bottom:189.306667pt;}
.y4c{bottom:191.080000pt;}
.yca{bottom:193.146667pt;}
.ye5{bottom:195.866667pt;}
.y126{bottom:198.906667pt;}
.y8f{bottom:201.306667pt;}
.ya9{bottom:203.706667pt;}
.y104{bottom:207.706667pt;}
.y6e{bottom:211.866667pt;}
.yc9{bottom:215.546667pt;}
.y8e{bottom:223.706667pt;}
.y125{bottom:225.786667pt;}
.y4a{bottom:226.120000pt;}
.ya8{bottom:226.266667pt;}
.y103{bottom:230.106667pt;}
.y6d{bottom:234.266667pt;}
.yc8{bottom:237.946667pt;}
.ye4{bottom:246.146667pt;}
.y124{bottom:248.226667pt;}
.ya7{bottom:248.706667pt;}
.y8d{bottom:253.826667pt;}
.y6c{bottom:256.866667pt;}
.y102{bottom:257.986667pt;}
.yc7{bottom:260.546667pt;}
.y49{bottom:261.186667pt;}
.ye3{bottom:268.706667pt;}
.y123{bottom:270.786667pt;}
.y8c{bottom:274.466667pt;}
.ya6{bottom:276.546667pt;}
.y6b{bottom:279.266667pt;}
.y101{bottom:280.386667pt;}
.yc6{bottom:282.946667pt;}
.ye2{bottom:291.106667pt;}
.y122{bottom:293.186667pt;}
.y47{bottom:296.226667pt;}
.ya5{bottom:298.946667pt;}
.y6a{bottom:301.666667pt;}
.y100{bottom:302.946667pt;}
.y8b{bottom:303.426667pt;}
.yc5{bottom:313.506667pt;}
.y121{bottom:315.586667pt;}
.ya4{bottom:321.506667pt;}
.y69{bottom:324.226667pt;}
.yff{bottom:325.346667pt;}
.y8a{bottom:325.826667pt;}
.y46{bottom:331.106667pt;}
.yc4{bottom:335.906667pt;}
.ye1{bottom:336.066667pt;}
.y120{bottom:338.146667pt;}
.yfe{bottom:347.746667pt;}
.y89{bottom:348.386667pt;}
.ya3{bottom:349.186667pt;}
.y68{bottom:354.626667pt;}
.yc3{bottom:358.306667pt;}
.ye0{bottom:358.466667pt;}
.y11f{bottom:365.826667pt;}
.y44{bottom:366.146667pt;}
.y88{bottom:370.786667pt;}
.ya2{bottom:371.746667pt;}
.y67{bottom:377.026667pt;}
.yc2{bottom:380.866667pt;}
.yfd{bottom:382.146667pt;}
.y137{bottom:383.266667pt;}
.ydf{bottom:386.306667pt;}
.y11e{bottom:388.386667pt;}
.y87{bottom:393.346667pt;}
.ya1{bottom:399.426667pt;}
.y66{bottom:399.586667pt;}
.y43{bottom:401.186667pt;}
.yc1{bottom:403.266667pt;}
.y136{bottom:407.586667pt;}
.yde{bottom:408.706667pt;}
.y11d{bottom:410.786667pt;}
.y86{bottom:415.746667pt;}
.y65{bottom:421.986667pt;}
.y1c{bottom:422.306667pt;}
.yfc{bottom:424.226667pt;}
.yc0{bottom:425.666667pt;}
.y135{bottom:429.986667pt;}
.ydd{bottom:431.266667pt;}
.y11c{bottom:433.346667pt;}
.y41{bottom:436.226667pt;}
.y85{bottom:438.146667pt;}
.ya0{bottom:444.386667pt;}
.y64{bottom:444.546667pt;}
.ybf{bottom:448.226667pt;}
.y1b{bottom:448.866667pt;}
.y134{bottom:452.546667pt;}
.ydc{bottom:453.666667pt;}
.y11b{bottom:455.746667pt;}
.yfb{bottom:457.186667pt;}
.y84{bottom:460.706667pt;}
.y2e{bottom:462.626667pt;}
.y63{bottom:466.946667pt;}
.ybe{bottom:470.626667pt;}
.y40{bottom:471.106667pt;}
.y9f{bottom:472.226667pt;}
.y133{bottom:474.946667pt;}
.y1a{bottom:475.586667pt;}
.ydb{bottom:476.066667pt;}
.y11a{bottom:478.146667pt;}
.y2d{bottom:478.946667pt;}
.y83{bottom:483.106667pt;}
.yfa{bottom:484.066667pt;}
.y62{bottom:489.346667pt;}
.y9e{bottom:494.653333pt;}
.y132{bottom:497.373333pt;}
.yda{bottom:498.653333pt;}
.ybd{bottom:501.213333pt;}
.y19{bottom:502.333333pt;}
.y2c{bottom:504.093333pt;}
.y119{bottom:506.013333pt;}
.yf9{bottom:506.493333pt;}
.y82{bottom:513.373333pt;}
.y9d{bottom:517.213333pt;}
.y61{bottom:519.933333pt;}
.yd9{bottom:521.053333pt;}
.ybc{bottom:523.613333pt;}
.y131{bottom:527.933333pt;}
.y118{bottom:528.413333pt;}
.yf8{bottom:528.893333pt;}
.y18{bottom:529.053333pt;}
.y2b{bottom:530.813333pt;}
.y3f{bottom:533.373333pt;}
.y9c{bottom:539.613333pt;}
.y60{bottom:542.333333pt;}
.y81{bottom:542.813333pt;}
.yd8{bottom:543.453333pt;}
.ybb{bottom:546.013333pt;}
.y130{bottom:550.333333pt;}
.y117{bottom:550.973333pt;}
.yf7{bottom:551.453333pt;}
.y17{bottom:555.773333pt;}
.y2a{bottom:557.533333pt;}
.y3d{bottom:564.573333pt;}
.y5f{bottom:564.733333pt;}
.yd7{bottom:566.013333pt;}
.y9b{bottom:567.453333pt;}
.yba{bottom:568.573333pt;}
.y12f{bottom:572.733333pt;}
.y116{bottom:573.373333pt;}
.y80{bottom:576.093333pt;}
.yf6{bottom:579.133333pt;}
.y16{bottom:582.493333pt;}
.y29{bottom:584.253333pt;}
.y5e{bottom:587.293333pt;}
.yd6{bottom:588.413333pt;}
.y9a{bottom:589.853333pt;}
.yb9{bottom:590.973333pt;}
.y12e{bottom:595.293333pt;}
.y115{bottom:601.213333pt;}
.yf5{bottom:601.693333pt;}
.y15{bottom:609.053333pt;}
.y28{bottom:610.813333pt;}
.yd5{bottom:610.973333pt;}
.y99{bottom:612.253333pt;}
.yb8{bottom:613.373333pt;}
.y3b{bottom:615.933333pt;}
.y5d{bottom:617.693333pt;}
.y114{bottom:623.613333pt;}
.yf4{bottom:624.093333pt;}
.y14{bottom:632.413333pt;}
.yd4{bottom:633.373333pt;}
.y98{bottom:634.653333pt;}
.y7f{bottom:635.613333pt;}
.y27{bottom:637.533333pt;}
.y5c{bottom:640.253333pt;}
.yb7{bottom:643.933333pt;}
.y113{bottom:646.173333pt;}
.yf3{bottom:646.653333pt;}
.y7e{bottom:659.933333pt;}
.yd3{bottom:661.213333pt;}
.y13{bottom:661.693333pt;}
.y5b{bottom:662.653333pt;}
.y26{bottom:664.093333pt;}
.yb6{bottom:666.333333pt;}
.y112{bottom:668.573333pt;}
.yf2{bottom:669.053333pt;}
.y3a{bottom:674.813333pt;}
.y7d{bottom:682.333333pt;}
.y5a{bottom:685.053333pt;}
.yb5{bottom:688.893333pt;}
.y25{bottom:690.653333pt;}
.y12{bottom:690.973333pt;}
.yf1{bottom:696.893333pt;}
.y111{bottom:702.813333pt;}
.y39{bottom:704.893333pt;}
.y12d{bottom:707.453333pt;}
.y59{bottom:707.613333pt;}
.yb4{bottom:711.293333pt;}
.yd2{bottom:716.733333pt;}
.y24{bottom:718.333333pt;}
.yf0{bottom:719.293333pt;}
.y11{bottom:726.333333pt;}
.y7c{bottom:727.293333pt;}
.y58{bottom:730.013333pt;}
.yb3{bottom:733.693333pt;}
.y110{bottom:735.773333pt;}
.y37{bottom:736.093333pt;}
.y12c{bottom:738.013333pt;}
.yd1{bottom:739.293333pt;}
.yef{bottom:741.693333pt;}
.y23{bottom:745.893333pt;}
.y7b{bottom:749.733333pt;}
.y10{bottom:753.093333pt;}
.y57{bottom:760.613333pt;}
.y10f{bottom:762.373333pt;}
.yb2{bottom:764.293333pt;}
.y36{bottom:766.053333pt;}
.yd0{bottom:767.173333pt;}
.y7a{bottom:772.293333pt;}
.y22{bottom:773.413333pt;}
.yf{bottom:779.813333pt;}
.y10e{bottom:780.133333pt;}
.y97{bottom:780.293333pt;}
.y56{bottom:783.013333pt;}
.yee{bottom:786.693333pt;}
.ycf{bottom:790.373333pt;}
.yb1{bottom:791.973333pt;}
.y79{bottom:794.693333pt;}
.y33{bottom:796.133333pt;}
.y21{bottom:800.933333pt;}
.y96{bottom:802.693333pt;}
.y55{bottom:805.413333pt;}
.ye{bottom:806.533333pt;}
.yed{bottom:809.253333pt;}
.y10d{bottom:810.053333pt;}
.y12b{bottom:810.853333pt;}
.yce{bottom:813.733333pt;}
.y78{bottom:817.253333pt;}
.yb0{bottom:819.813333pt;}
.y95{bottom:825.253333pt;}
.y54{bottom:827.973333pt;}
.y20{bottom:828.453333pt;}
.yd{bottom:833.253333pt;}
.yec{bottom:836.933333pt;}
.y77{bottom:839.653333pt;}
.y10c{bottom:840.133333pt;}
.yaf{bottom:842.373333pt;}
.y94{bottom:847.653333pt;}
.y31{bottom:849.733333pt;}
.y53{bottom:850.373333pt;}
.y12a{bottom:855.653333pt;}
.y1f{bottom:856.613333pt;}
.yc{bottom:859.973333pt;}
.ycd{bottom:862.053333pt;}
.yeb{bottom:864.773333pt;}
.y76{bottom:870.053333pt;}
.y10a{bottom:870.213333pt;}
.y52{bottom:872.773333pt;}
.y129{bottom:878.053333pt;}
.y30{bottom:883.333333pt;}
.y1e{bottom:886.053333pt;}
.yb{bottom:886.693333pt;}
.y75{bottom:892.613333pt;}
.y109{bottom:900.133333pt;}
.y1d{bottom:912.293333pt;}
.y2f{bottom:912.453333pt;}
.ya{bottom:913.253333pt;}
.y74{bottom:915.013333pt;}
.y6{bottom:976.933333pt;}
.y5{bottom:997.600000pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1030.240000pt;}
.y2{bottom:1046.400000pt;}
.y1{bottom:1062.720000pt;}
.h5{height:18.552000pt;}
.h1b{height:29.266667pt;}
.hf{height:29.300000pt;}
.hc{height:29.426667pt;}
.h11{height:29.440000pt;}
.h10{height:30.400000pt;}
.h14{height:30.560000pt;}
.h15{height:30.586667pt;}
.h16{height:34.226667pt;}
.h17{height:34.386667pt;}
.h18{height:34.418667pt;}
.h4{height:44.953125pt;}
.h13{height:50.720000pt;}
.hd{height:52.946667pt;}
.h2{height:54.390938pt;}
.h12{height:58.240000pt;}
.h19{height:58.563750pt;}
.h3{height:58.687500pt;}
.h6{height:59.937500pt;}
.he{height:63.656250pt;}
.hb{height:65.531250pt;}
.h1a{height:65.781915pt;}
.ha{height:71.296875pt;}
.h9{height:76.671562pt;}
.h8{height:95.484375pt;}
.h7{height:98.296875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:28.466667pt;}
.wf{width:37.746667pt;}
.wa{width:55.832000pt;}
.wb{width:55.986667pt;}
.wd{width:56.000000pt;}
.wc{width:56.018667pt;}
.we{width:56.032000pt;}
.w8{width:111.832000pt;}
.w4{width:113.592000pt;}
.w6{width:131.712000pt;}
.w7{width:178.893333pt;}
.w5{width:206.413333pt;}
.w9{width:340.533333pt;}
.w3{width:632.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.872000pt;}
.x1{left:85.152000pt;}
.x10{left:109.152000pt;}
.xf{left:122.912000pt;}
.x5{left:132.352000pt;}
.x11{left:142.440000pt;}
.x4{left:189.786667pt;}
.xe{left:197.960000pt;}
.xb{left:199.720000pt;}
.x6{left:201.306667pt;}
.x12{left:255.746667pt;}
.x8{left:287.906667pt;}
.x13{left:312.386667pt;}
.x7{left:318.946667pt;}
.x9{left:330.306667pt;}
.x14{left:369.026667pt;}
.x3{left:382.786667pt;}
.xc{left:406.786667pt;}
.x15{left:425.706667pt;}
.x16{left:482.506667pt;}
.xd{left:539.146667pt;}
.x17{left:595.813333pt;}
.x18{left:642.693333pt;}
.x2{left:651.973333pt;}
}




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