
    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_cd00276067e8d65c16267636.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_0e9c2e121b1929a3dd7e0b82.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_642d58325faaf13a25a3f0e9.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_86caa20a6483badc464a662f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.773438;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_29ad799bdba715fc274e9632.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7fcb1c09a216e0e505ffbb09.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_cab7709bd0daa49d4deb0eaf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_faa7583f8178e5f010552391.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_0d1ed0e80e30a0a2418b00eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls7{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.159600px;}
.lsd{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.493800px;}
.lsf{letter-spacing:4.986720px;}
.ls10{letter-spacing:8.586720px;}
.ls11{letter-spacing:32.346720px;}
.ls16{letter-spacing:33.066720px;}
.lse{letter-spacing:41.706720px;}
.ls19{letter-spacing:46.026720px;}
.ls15{letter-spacing:55.386720px;}
.ls12{letter-spacing:75.546720px;}
.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;}
}
.ws3{word-spacing:-25.196640px;}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.wsf{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.680200px;}
.ws11{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.ws8{word-spacing:-10.933800px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.213800px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.000000px;}
.wsb{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._12{margin-left:-10.228320px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._2{width:2.644560px;}
._4{width:3.681600px;}
._3{width:4.752000px;}
._5{width:6.135360px;}
._9{width:7.768800px;}
._7{width:8.823600px;}
._6{width:10.354320px;}
._8{width:12.250800px;}
._c{width:13.704960px;}
._f{width:16.852320px;}
._a{width:19.262640px;}
._b{width:20.437920px;}
._11{width:32.350080px;}
._10{width:33.485520px;}
._e{width:36.846000px;}
._d{width:38.016000px;}
._13{width:817.347360px;}
._14{width:1235.103360px;}
.fc6{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(85,85,85);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:2.880000px;}
.y64{bottom:3.060000px;}
.yd0{bottom:3.240000px;}
.yd2{bottom:3.420000px;}
.y5{bottom:3.780000px;}
.y66{bottom:5.010000px;}
.yd8{bottom:9.720000px;}
.y2{bottom:9.930000px;}
.y4e{bottom:15.120000px;}
.y2b{bottom:15.300000px;}
.y63{bottom:18.540000px;}
.ycf{bottom:18.720000px;}
.y4{bottom:22.710000px;}
.yd7{bottom:25.245000px;}
.y4d{bottom:32.400000px;}
.y62{bottom:34.740000px;}
.y57{bottom:39.420000px;}
.y2a{bottom:40.320000px;}
.y3{bottom:47.910000px;}
.y56{bottom:48.054000px;}
.y4c{bottom:49.725000px;}
.y61{bottom:52.734000px;}
.y55{bottom:57.054000px;}
.y7{bottom:57.060000px;}
.y29{bottom:65.385000px;}
.y4b{bottom:67.005000px;}
.y54{bottom:67.674000px;}
.y60{bottom:68.214000px;}
.y53{bottom:79.734000px;}
.y5f{bottom:83.874000px;}
.y4a{bottom:84.285000px;}
.y28{bottom:90.405000px;}
.y52{bottom:91.794000px;}
.ya0{bottom:97.236000px;}
.y5e{bottom:101.514000px;}
.y49{bottom:101.565000px;}
.y4f{bottom:103.356000px;}
.yfd{bottom:111.456000px;}
.y9f{bottom:114.336000px;}
.y27{bottom:115.425000px;}
.y5d{bottom:117.174000px;}
.y48{bottom:118.665000px;}
.yc5{bottom:120.636000px;}
.yfc{bottom:128.556000px;}
.y9e{bottom:131.616000px;}
.y5c{bottom:132.654000px;}
.y47{bottom:135.945000px;}
.yc4{bottom:137.916000px;}
.y26{bottom:140.445000px;}
.yfb{bottom:145.836000px;}
.y5b{bottom:148.134000px;}
.y9d{bottom:148.896000px;}
.y51{bottom:152.814000px;}
.y46{bottom:153.225000px;}
.yc3{bottom:155.190000px;}
.y50{bottom:162.534000px;}
.yfa{bottom:163.110000px;}
.y5a{bottom:163.614000px;}
.y25{bottom:165.465000px;}
.y9c{bottom:166.170000px;}
.y45{bottom:170.505000px;}
.yc2{bottom:172.470000px;}
.y59{bottom:179.274000px;}
.y9b{bottom:183.450000px;}
.y44{bottom:187.785000px;}
.yf9{bottom:189.390000px;}
.yc1{bottom:189.750000px;}
.y24{bottom:190.485000px;}
.y9a{bottom:200.550000px;}
.y43{bottom:205.065000px;}
.yf8{bottom:206.670000px;}
.yc0{bottom:206.850000px;}
.y23{bottom:215.505000px;}
.y99{bottom:217.830000px;}
.y42{bottom:222.165000px;}
.yf7{bottom:223.950000px;}
.ybf{bottom:224.130000px;}
.ydd{bottom:228.270000px;}
.y98{bottom:235.110000px;}
.y41{bottom:239.445000px;}
.y22{bottom:240.525000px;}
.yf6{bottom:241.050000px;}
.ybe{bottom:241.410000px;}
.ydc{bottom:245.730000px;}
.y97{bottom:252.390000px;}
.y40{bottom:256.725000px;}
.yf5{bottom:258.330000px;}
.ybd{bottom:258.690000px;}
.ydb{bottom:263.190000px;}
.y21{bottom:265.545000px;}
.y96{bottom:269.670000px;}
.y3f{bottom:274.005000px;}
.ybc{bottom:275.970000px;}
.y20{bottom:278.685000px;}
.yda{bottom:280.650000px;}
.yf4{bottom:284.610000px;}
.y95{bottom:286.950000px;}
.y3e{bottom:291.285000px;}
.ybb{bottom:293.250000px;}
.y12{bottom:295.950000px;}
.yd9{bottom:297.750000px;}
.yf3{bottom:301.890000px;}
.y1f{bottom:302.805000px;}
.y94{bottom:304.050000px;}
.y3d{bottom:308.595000px;}
.yba{bottom:310.350000px;}
.yd6{bottom:315.210000px;}
.yf2{bottom:319.170000px;}
.y93{bottom:321.330000px;}
.y3c{bottom:325.695000px;}
.y1e{bottom:326.955000px;}
.yb9{bottom:327.630000px;}
.yf1{bottom:336.270000px;}
.y92{bottom:338.610000px;}
.y3b{bottom:342.975000px;}
.yb8{bottom:344.955000px;}
.y1d{bottom:351.075000px;}
.yf0{bottom:353.595000px;}
.y91{bottom:355.935000px;}
.y3a{bottom:360.255000px;}
.yb7{bottom:362.235000px;}
.yef{bottom:370.875000px;}
.y90{bottom:373.215000px;}
.y1c{bottom:375.195000px;}
.y39{bottom:377.535000px;}
.yb6{bottom:379.515000px;}
.yee{bottom:388.155000px;}
.y8f{bottom:390.495000px;}
.yb5{bottom:396.615000px;}
.y1b{bottom:399.495000px;}
.y38{bottom:403.455000px;}
.yed{bottom:405.435000px;}
.y8e{bottom:407.595000px;}
.yb4{bottom:413.895000px;}
.y37{bottom:418.935000px;}
.yec{bottom:422.715000px;}
.y1a{bottom:423.615000px;}
.y8d{bottom:424.875000px;}
.yb3{bottom:431.175000px;}
.y36{bottom:434.415000px;}
.yeb{bottom:439.815000px;}
.y8c{bottom:442.155000px;}
.y19{bottom:447.735000px;}
.yb2{bottom:448.455000px;}
.y35{bottom:450.075000px;}
.yea{bottom:457.095000px;}
.y8b{bottom:459.435000px;}
.ycd{bottom:464.835000px;}
.y34{bottom:465.555000px;}
.yb1{bottom:465.735000px;}
.y18{bottom:471.855000px;}
.ye9{bottom:474.375000px;}
.y8a{bottom:476.715000px;}
.y33{bottom:481.035000px;}
.ycc{bottom:481.935000px;}
.yb0{bottom:483.015000px;}
.y89{bottom:493.995000px;}
.y17{bottom:495.975000px;}
.y32{bottom:496.515000px;}
.yd5{bottom:498.675000px;}
.ycb{bottom:498.855000px;}
.yaf{bottom:500.115000px;}
.ye8{bottom:500.655000px;}
.y88{bottom:511.095000px;}
.y31{bottom:512.175000px;}
.ye7{bottom:514.695000px;}
.yca{bottom:515.955000px;}
.yd4{bottom:516.135000px;}
.yae{bottom:517.395000px;}
.y16{bottom:520.095000px;}
.y30{bottom:527.655000px;}
.y87{bottom:528.375000px;}
.yc9{bottom:532.875000px;}
.yd3{bottom:533.055000px;}
.yad{bottom:534.675000px;}
.y2f{bottom:543.135000px;}
.y15{bottom:544.395000px;}
.y86{bottom:545.655000px;}
.yc8{bottom:549.975000px;}
.yd1{bottom:550.155000px;}
.yac{bottom:551.955000px;}
.y2e{bottom:558.615000px;}
.y85{bottom:562.935000px;}
.yce{bottom:567.615000px;}
.y14{bottom:568.515000px;}
.yab{bottom:569.235000px;}
.y2d{bottom:574.320000px;}
.y84{bottom:580.215000px;}
.yaa{bottom:586.515000px;}
.y2c{bottom:589.800000px;}
.y13{bottom:592.680000px;}
.y83{bottom:597.315000px;}
.ya9{bottom:603.615000px;}
.y82{bottom:614.625000px;}
.ya8{bottom:620.925000px;}
.y81{bottom:631.905000px;}
.ya7{bottom:638.205000px;}
.y80{bottom:649.185000px;}
.ya6{bottom:655.485000px;}
.y7f{bottom:666.465000px;}
.y7e{bottom:683.745000px;}
.yc7{bottom:684.465000px;}
.y7d{bottom:700.845000px;}
.yc6{bottom:701.565000px;}
.y7c{bottom:718.125000px;}
.ye6{bottom:727.125000px;}
.y7b{bottom:735.405000px;}
.ya5{bottom:743.505000px;}
.ye5{bottom:744.405000px;}
.y7a{bottom:752.685000px;}
.ya4{bottom:760.605000px;}
.ye4{bottom:761.685000px;}
.y79{bottom:769.965000px;}
.ya3{bottom:777.885000px;}
.ye3{bottom:778.965000px;}
.y78{bottom:787.245000px;}
.ya2{bottom:791.925000px;}
.ye2{bottom:796.245000px;}
.y77{bottom:804.345000px;}
.ye1{bottom:813.345000px;}
.y76{bottom:821.625000px;}
.ye0{bottom:830.625000px;}
.y75{bottom:838.905000px;}
.ydf{bottom:847.905000px;}
.y74{bottom:856.185000px;}
.yde{bottom:865.185000px;}
.y73{bottom:882.510000px;}
.y72{bottom:899.610000px;}
.y11{bottom:903.750000px;}
.y71{bottom:916.890000px;}
.y10{bottom:921.030000px;}
.y70{bottom:934.170000px;}
.ya1{bottom:942.450000px;}
.yf{bottom:943.530000px;}
.y6f{bottom:951.450000px;}
.ye{bottom:955.590000px;}
.y6e{bottom:968.730000px;}
.yd{bottom:978.090000px;}
.y6d{bottom:986.010000px;}
.yc{bottom:989.970000px;}
.y6c{bottom:1003.110000px;}
.yb{bottom:1012.470000px;}
.y6b{bottom:1020.390000px;}
.ya{bottom:1024.530000px;}
.y6a{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y69{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y68{bottom:1072.230000px;}
.y65{bottom:1075.140000px;}
.y67{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h1a{height:15.480000px;}
.h1d{height:15.660000px;}
.h20{height:15.840000px;}
.h1f{height:16.020000px;}
.h13{height:21.114844px;}
.h12{height:25.136719px;}
.ha{height:27.147656px;}
.h16{height:27.720000px;}
.he{height:29.158594px;}
.hd{height:29.464453px;}
.h1c{height:31.140000px;}
.h1e{height:31.320000px;}
.h1b{height:37.705078px;}
.h21{height:37.836000px;}
.h14{height:38.100586px;}
.hf{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.hb{height:42.164648px;}
.h18{height:43.506914px;}
.h10{height:44.507812px;}
.h5{height:46.251562px;}
.h19{height:48.027656px;}
.h9{height:48.312422px;}
.h22{height:49.255313px;}
.h15{height:53.709961px;}
.h17{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:191.880000px;}
.hc{height:602.385000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:63.396000px;}
.wa{width:69.660000px;}
.we{width:69.840000px;}
.wf{width:70.020000px;}
.wb{width:70.056000px;}
.w9{width:71.136000px;}
.wc{width:76.500000px;}
.w10{width:102.456000px;}
.w2{width:104.076000px;}
.w11{width:108.036000px;}
.w13{width:110.880000px;}
.w12{width:117.756000px;}
.w5{width:131.940000px;}
.w15{width:141.120000px;}
.w14{width:153.570000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x19{left:18.180000px;}
.x6{left:19.260000px;}
.x13{left:25.560000px;}
.x14{left:28.980000px;}
.x12{left:31.140000px;}
.x18{left:37.260000px;}
.x17{left:40.320000px;}
.x16{left:42.480000px;}
.x1e{left:47.340000px;}
.x1f{left:56.700000px;}
.x1c{left:62.145000px;}
.x15{left:65.874000px;}
.x21{left:75.779987px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.xb{left:99.215987px;}
.x1d{left:106.374000px;}
.x30{left:113.435987px;}
.xd{left:115.235987px;}
.xf{left:132.875987px;}
.x5{left:141.345000px;}
.x25{left:151.590000px;}
.x3{left:182.370000px;}
.x1a{left:218.370000px;}
.x26{left:222.690000px;}
.x22{left:262.514987px;}
.x27{left:294.195000px;}
.x23{left:306.074987px;}
.x28{left:372.135000px;}
.x24{left:379.154987px;}
.xa{left:434.264987px;}
.x29{left:437.145000px;}
.x2f{left:448.485000px;}
.x2a{left:508.425000px;}
.x2d{left:522.285000px;}
.xe{left:575.204987px;}
.x2b{left:579.885000px;}
.x11{left:602.789987px;}
.x2e{left:641.490000px;}
.x2c{left:683.790000px;}
.xc{left:703.049987px;}
.x10{left:757.229987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.141867pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.438933pt;}
.lsf{letter-spacing:4.432640pt;}
.ls10{letter-spacing:7.632640pt;}
.ls11{letter-spacing:28.752640pt;}
.ls16{letter-spacing:29.392640pt;}
.lse{letter-spacing:37.072640pt;}
.ls19{letter-spacing:40.912640pt;}
.ls15{letter-spacing:49.232640pt;}
.ls12{letter-spacing:67.152640pt;}
.ws3{word-spacing:-22.397013pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws8{word-spacing:-9.718933pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-9.078933pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.000000pt;}
.wsb{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._12{margin-left:-9.091840pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._2{width:2.350720pt;}
._4{width:3.272533pt;}
._3{width:4.224000pt;}
._5{width:5.453653pt;}
._9{width:6.905600pt;}
._7{width:7.843200pt;}
._6{width:9.203840pt;}
._8{width:10.889600pt;}
._c{width:12.182187pt;}
._f{width:14.979840pt;}
._a{width:17.122347pt;}
._b{width:18.167040pt;}
._11{width:28.755627pt;}
._10{width:29.764907pt;}
._e{width:32.752000pt;}
._d{width:33.792000pt;}
._13{width:726.530987pt;}
._14{width:1097.869653pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.560000pt;}
.y64{bottom:2.720000pt;}
.yd0{bottom:2.880000pt;}
.yd2{bottom:3.040000pt;}
.y5{bottom:3.360000pt;}
.y66{bottom:4.453333pt;}
.yd8{bottom:8.640000pt;}
.y2{bottom:8.826667pt;}
.y4e{bottom:13.440000pt;}
.y2b{bottom:13.600000pt;}
.y63{bottom:16.480000pt;}
.ycf{bottom:16.640000pt;}
.y4{bottom:20.186667pt;}
.yd7{bottom:22.440000pt;}
.y4d{bottom:28.800000pt;}
.y62{bottom:30.880000pt;}
.y57{bottom:35.040000pt;}
.y2a{bottom:35.840000pt;}
.y3{bottom:42.586667pt;}
.y56{bottom:42.714667pt;}
.y4c{bottom:44.200000pt;}
.y61{bottom:46.874667pt;}
.y55{bottom:50.714667pt;}
.y7{bottom:50.720000pt;}
.y29{bottom:58.120000pt;}
.y4b{bottom:59.560000pt;}
.y54{bottom:60.154667pt;}
.y60{bottom:60.634667pt;}
.y53{bottom:70.874667pt;}
.y5f{bottom:74.554667pt;}
.y4a{bottom:74.920000pt;}
.y28{bottom:80.360000pt;}
.y52{bottom:81.594667pt;}
.ya0{bottom:86.432000pt;}
.y5e{bottom:90.234667pt;}
.y49{bottom:90.280000pt;}
.y4f{bottom:91.872000pt;}
.yfd{bottom:99.072000pt;}
.y9f{bottom:101.632000pt;}
.y27{bottom:102.600000pt;}
.y5d{bottom:104.154667pt;}
.y48{bottom:105.480000pt;}
.yc5{bottom:107.232000pt;}
.yfc{bottom:114.272000pt;}
.y9e{bottom:116.992000pt;}
.y5c{bottom:117.914667pt;}
.y47{bottom:120.840000pt;}
.yc4{bottom:122.592000pt;}
.y26{bottom:124.840000pt;}
.yfb{bottom:129.632000pt;}
.y5b{bottom:131.674667pt;}
.y9d{bottom:132.352000pt;}
.y51{bottom:135.834667pt;}
.y46{bottom:136.200000pt;}
.yc3{bottom:137.946667pt;}
.y50{bottom:144.474667pt;}
.yfa{bottom:144.986667pt;}
.y5a{bottom:145.434667pt;}
.y25{bottom:147.080000pt;}
.y9c{bottom:147.706667pt;}
.y45{bottom:151.560000pt;}
.yc2{bottom:153.306667pt;}
.y59{bottom:159.354667pt;}
.y9b{bottom:163.066667pt;}
.y44{bottom:166.920000pt;}
.yf9{bottom:168.346667pt;}
.yc1{bottom:168.666667pt;}
.y24{bottom:169.320000pt;}
.y9a{bottom:178.266667pt;}
.y43{bottom:182.280000pt;}
.yf8{bottom:183.706667pt;}
.yc0{bottom:183.866667pt;}
.y23{bottom:191.560000pt;}
.y99{bottom:193.626667pt;}
.y42{bottom:197.480000pt;}
.yf7{bottom:199.066667pt;}
.ybf{bottom:199.226667pt;}
.ydd{bottom:202.906667pt;}
.y98{bottom:208.986667pt;}
.y41{bottom:212.840000pt;}
.y22{bottom:213.800000pt;}
.yf6{bottom:214.266667pt;}
.ybe{bottom:214.586667pt;}
.ydc{bottom:218.426667pt;}
.y97{bottom:224.346667pt;}
.y40{bottom:228.200000pt;}
.yf5{bottom:229.626667pt;}
.ybd{bottom:229.946667pt;}
.ydb{bottom:233.946667pt;}
.y21{bottom:236.040000pt;}
.y96{bottom:239.706667pt;}
.y3f{bottom:243.560000pt;}
.ybc{bottom:245.306667pt;}
.y20{bottom:247.720000pt;}
.yda{bottom:249.466667pt;}
.yf4{bottom:252.986667pt;}
.y95{bottom:255.066667pt;}
.y3e{bottom:258.920000pt;}
.ybb{bottom:260.666667pt;}
.y12{bottom:263.066667pt;}
.yd9{bottom:264.666667pt;}
.yf3{bottom:268.346667pt;}
.y1f{bottom:269.160000pt;}
.y94{bottom:270.266667pt;}
.y3d{bottom:274.306667pt;}
.yba{bottom:275.866667pt;}
.yd6{bottom:280.186667pt;}
.yf2{bottom:283.706667pt;}
.y93{bottom:285.626667pt;}
.y3c{bottom:289.506667pt;}
.y1e{bottom:290.626667pt;}
.yb9{bottom:291.226667pt;}
.yf1{bottom:298.906667pt;}
.y92{bottom:300.986667pt;}
.y3b{bottom:304.866667pt;}
.yb8{bottom:306.626667pt;}
.y1d{bottom:312.066667pt;}
.yf0{bottom:314.306667pt;}
.y91{bottom:316.386667pt;}
.y3a{bottom:320.226667pt;}
.yb7{bottom:321.986667pt;}
.yef{bottom:329.666667pt;}
.y90{bottom:331.746667pt;}
.y1c{bottom:333.506667pt;}
.y39{bottom:335.586667pt;}
.yb6{bottom:337.346667pt;}
.yee{bottom:345.026667pt;}
.y8f{bottom:347.106667pt;}
.yb5{bottom:352.546667pt;}
.y1b{bottom:355.106667pt;}
.y38{bottom:358.626667pt;}
.yed{bottom:360.386667pt;}
.y8e{bottom:362.306667pt;}
.yb4{bottom:367.906667pt;}
.y37{bottom:372.386667pt;}
.yec{bottom:375.746667pt;}
.y1a{bottom:376.546667pt;}
.y8d{bottom:377.666667pt;}
.yb3{bottom:383.266667pt;}
.y36{bottom:386.146667pt;}
.yeb{bottom:390.946667pt;}
.y8c{bottom:393.026667pt;}
.y19{bottom:397.986667pt;}
.yb2{bottom:398.626667pt;}
.y35{bottom:400.066667pt;}
.yea{bottom:406.306667pt;}
.y8b{bottom:408.386667pt;}
.ycd{bottom:413.186667pt;}
.y34{bottom:413.826667pt;}
.yb1{bottom:413.986667pt;}
.y18{bottom:419.426667pt;}
.ye9{bottom:421.666667pt;}
.y8a{bottom:423.746667pt;}
.y33{bottom:427.586667pt;}
.ycc{bottom:428.386667pt;}
.yb0{bottom:429.346667pt;}
.y89{bottom:439.106667pt;}
.y17{bottom:440.866667pt;}
.y32{bottom:441.346667pt;}
.yd5{bottom:443.266667pt;}
.ycb{bottom:443.426667pt;}
.yaf{bottom:444.546667pt;}
.ye8{bottom:445.026667pt;}
.y88{bottom:454.306667pt;}
.y31{bottom:455.266667pt;}
.ye7{bottom:457.506667pt;}
.yca{bottom:458.626667pt;}
.yd4{bottom:458.786667pt;}
.yae{bottom:459.906667pt;}
.y16{bottom:462.306667pt;}
.y30{bottom:469.026667pt;}
.y87{bottom:469.666667pt;}
.yc9{bottom:473.666667pt;}
.yd3{bottom:473.826667pt;}
.yad{bottom:475.266667pt;}
.y2f{bottom:482.786667pt;}
.y15{bottom:483.906667pt;}
.y86{bottom:485.026667pt;}
.yc8{bottom:488.866667pt;}
.yd1{bottom:489.026667pt;}
.yac{bottom:490.626667pt;}
.y2e{bottom:496.546667pt;}
.y85{bottom:500.386667pt;}
.yce{bottom:504.546667pt;}
.y14{bottom:505.346667pt;}
.yab{bottom:505.986667pt;}
.y2d{bottom:510.506667pt;}
.y84{bottom:515.746667pt;}
.yaa{bottom:521.346667pt;}
.y2c{bottom:524.266667pt;}
.y13{bottom:526.826667pt;}
.y83{bottom:530.946667pt;}
.ya9{bottom:536.546667pt;}
.y82{bottom:546.333333pt;}
.ya8{bottom:551.933333pt;}
.y81{bottom:561.693333pt;}
.ya7{bottom:567.293333pt;}
.y80{bottom:577.053333pt;}
.ya6{bottom:582.653333pt;}
.y7f{bottom:592.413333pt;}
.y7e{bottom:607.773333pt;}
.yc7{bottom:608.413333pt;}
.y7d{bottom:622.973333pt;}
.yc6{bottom:623.613333pt;}
.y7c{bottom:638.333333pt;}
.ye6{bottom:646.333333pt;}
.y7b{bottom:653.693333pt;}
.ya5{bottom:660.893333pt;}
.ye5{bottom:661.693333pt;}
.y7a{bottom:669.053333pt;}
.ya4{bottom:676.093333pt;}
.ye4{bottom:677.053333pt;}
.y79{bottom:684.413333pt;}
.ya3{bottom:691.453333pt;}
.ye3{bottom:692.413333pt;}
.y78{bottom:699.773333pt;}
.ya2{bottom:703.933333pt;}
.ye2{bottom:707.773333pt;}
.y77{bottom:714.973333pt;}
.ye1{bottom:722.973333pt;}
.y76{bottom:730.333333pt;}
.ye0{bottom:738.333333pt;}
.y75{bottom:745.693333pt;}
.ydf{bottom:753.693333pt;}
.y74{bottom:761.053333pt;}
.yde{bottom:769.053333pt;}
.y73{bottom:784.453333pt;}
.y72{bottom:799.653333pt;}
.y11{bottom:803.333333pt;}
.y71{bottom:815.013333pt;}
.y10{bottom:818.693333pt;}
.y70{bottom:830.373333pt;}
.ya1{bottom:837.733333pt;}
.yf{bottom:838.693333pt;}
.y6f{bottom:845.733333pt;}
.ye{bottom:849.413333pt;}
.y6e{bottom:861.093333pt;}
.yd{bottom:869.413333pt;}
.y6d{bottom:876.453333pt;}
.yc{bottom:879.973333pt;}
.y6c{bottom:891.653333pt;}
.yb{bottom:899.973333pt;}
.y6b{bottom:907.013333pt;}
.ya{bottom:910.693333pt;}
.y6a{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y69{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y68{bottom:953.093333pt;}
.y65{bottom:955.680000pt;}
.y67{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h1a{height:13.760000pt;}
.h1d{height:13.920000pt;}
.h20{height:14.080000pt;}
.h1f{height:14.240000pt;}
.h13{height:18.768750pt;}
.h12{height:22.343750pt;}
.ha{height:24.131250pt;}
.h16{height:24.640000pt;}
.he{height:25.918750pt;}
.hd{height:26.190625pt;}
.h1c{height:27.680000pt;}
.h1e{height:27.840000pt;}
.h1b{height:33.515625pt;}
.h21{height:33.632000pt;}
.h14{height:33.867188pt;}
.hf{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.hb{height:37.479688pt;}
.h18{height:38.672812pt;}
.h10{height:39.562500pt;}
.h5{height:41.112500pt;}
.h19{height:42.691250pt;}
.h9{height:42.944375pt;}
.h22{height:43.782500pt;}
.h15{height:47.742188pt;}
.h17{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:170.560000pt;}
.hc{height:535.453333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:56.352000pt;}
.wa{width:61.920000pt;}
.we{width:62.080000pt;}
.wf{width:62.240000pt;}
.wb{width:62.272000pt;}
.w9{width:63.232000pt;}
.wc{width:68.000000pt;}
.w10{width:91.072000pt;}
.w2{width:92.512000pt;}
.w11{width:96.032000pt;}
.w13{width:98.560000pt;}
.w12{width:104.672000pt;}
.w5{width:117.280000pt;}
.w15{width:125.440000pt;}
.w14{width:136.506667pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x19{left:16.160000pt;}
.x6{left:17.120000pt;}
.x13{left:22.720000pt;}
.x14{left:25.760000pt;}
.x12{left:27.680000pt;}
.x18{left:33.120000pt;}
.x17{left:35.840000pt;}
.x16{left:37.760000pt;}
.x1e{left:42.080000pt;}
.x1f{left:50.400000pt;}
.x1c{left:55.240000pt;}
.x15{left:58.554667pt;}
.x21{left:67.359988pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.xb{left:88.191988pt;}
.x1d{left:94.554667pt;}
.x30{left:100.831988pt;}
.xd{left:102.431988pt;}
.xf{left:118.111988pt;}
.x5{left:125.640000pt;}
.x25{left:134.746667pt;}
.x3{left:162.106667pt;}
.x1a{left:194.106667pt;}
.x26{left:197.946667pt;}
.x22{left:233.346655pt;}
.x27{left:261.506667pt;}
.x23{left:272.066655pt;}
.x28{left:330.786667pt;}
.x24{left:337.026655pt;}
.xa{left:386.013322pt;}
.x29{left:388.573333pt;}
.x2f{left:398.653333pt;}
.x2a{left:451.933333pt;}
.x2d{left:464.253333pt;}
.xe{left:511.293322pt;}
.x2b{left:515.453333pt;}
.x11{left:535.813322pt;}
.x2e{left:570.213333pt;}
.x2c{left:607.813333pt;}
.xc{left:624.933322pt;}
.x10{left:673.093322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
}




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