
    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_81705150df79636b60278da5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_b02752b01a4314b8633b08c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_bf0b5123c90aa87ee1bd0b73.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe193a97988ae08480de3eb9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6f569015e4b1874e2a702424.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8156b64dc1543c57ec0bc0a3.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_fe5a114961a59aa940dc539f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_834d158b950addac6e9a6a62.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6a1fc1885cfde151059a8734.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.858398;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_b1b9f8a4e092d3f4f53ef926.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.274800px;}
.ls1{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.666000px;}
.lse{letter-spacing:0.696000px;}
.ls3{letter-spacing:0.720000px;}
.ls7{letter-spacing:2.424000px;}
.ls8{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls6{letter-spacing:3.144000px;}
.ls4{letter-spacing:64.002720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.642080px;}
.ws1{word-spacing:-18.922080px;}
.wsa{word-spacing:-15.606000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.505760px;}
.wsb{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._b{width:5.568240px;}
._e{width:7.004400px;}
._a{width:8.403120px;}
._9{width:9.800640px;}
._c{width:10.945680px;}
._d{width:12.011760px;}
._f{width:13.087440px;}
._6{width:16.085040px;}
._7{width:17.261040px;}
._8{width:18.943920px;}
._10{width:20.916000px;}
._11{width:64.959120px;}
._13{width:66.123360px;}
._12{width:68.199120px;}
._14{width:71.114400px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y12{bottom:3.420000px;}
.y9b{bottom:3.774000px;}
.y18{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.y9d{bottom:7.920000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.y17{bottom:20.880000px;}
.y8e{bottom:21.060000px;}
.y2e{bottom:21.105000px;}
.ya9{bottom:22.935000px;}
.yb9{bottom:23.010000px;}
.y2{bottom:28.980000px;}
.y2f{bottom:38.025000px;}
.y16{bottom:38.160000px;}
.y123{bottom:38.340000px;}
.y2d{bottom:38.385000px;}
.yb8{bottom:41.370000px;}
.y9f{bottom:46.050000px;}
.y15{bottom:55.440000px;}
.yb{bottom:56.700000px;}
.yaf{bottom:64.470000px;}
.ya0{bottom:68.940000px;}
.y14{bottom:72.360000px;}
.y19{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y2b{bottom:90.000000px;}
.yb0{bottom:90.540000px;}
.ya1{bottom:91.875000px;}
.y37{bottom:105.660000px;}
.y2a{bottom:107.280000px;}
.ya2{bottom:114.765000px;}
.yb1{bottom:116.610000px;}
.yfa{bottom:120.456000px;}
.y36{bottom:122.580000px;}
.y118{bottom:123.336000px;}
.y29{bottom:124.380000px;}
.y122{bottom:124.560000px;}
.y54{bottom:125.136000px;}
.y9c{bottom:125.856000px;}
.yf9{bottom:137.556000px;}
.ya3{bottom:137.670000px;}
.y35{bottom:140.220000px;}
.y117{bottom:140.616000px;}
.y28{bottom:141.660000px;}
.y53{bottom:142.236000px;}
.yb2{bottom:142.635000px;}
.ybc{bottom:145.440000px;}
.yad{bottom:145.545000px;}
.yab{bottom:145.590000px;}
.ybe{bottom:145.620000px;}
.y9a{bottom:147.996000px;}
.yf8{bottom:154.830000px;}
.y34{bottom:157.500000px;}
.y116{bottom:157.890000px;}
.y27{bottom:158.940000px;}
.y121{bottom:158.985000px;}
.y52{bottom:159.510000px;}
.ya4{bottom:160.560000px;}
.y99{bottom:165.990000px;}
.yb3{bottom:168.690000px;}
.yf7{bottom:172.110000px;}
.y33{bottom:174.780000px;}
.y115{bottom:175.170000px;}
.y120{bottom:175.905000px;}
.y26{bottom:176.220000px;}
.y51{bottom:176.430000px;}
.ya5{bottom:183.495000px;}
.y98{bottom:187.410000px;}
.yf6{bottom:189.030000px;}
.y32{bottom:191.880000px;}
.y114{bottom:192.450000px;}
.y124{bottom:193.185000px;}
.y25{bottom:193.500000px;}
.y11f{bottom:193.545000px;}
.y50{bottom:193.710000px;}
.yb4{bottom:194.730000px;}
.y97{bottom:205.050000px;}
.ya6{bottom:206.385000px;}
.yf5{bottom:206.670000px;}
.y31{bottom:209.160000px;}
.y113{bottom:209.550000px;}
.y24{bottom:210.780000px;}
.y11e{bottom:210.825000px;}
.y4f{bottom:212.430000px;}
.yb5{bottom:220.785000px;}
.y96{bottom:222.330000px;}
.yf4{bottom:223.590000px;}
.y30{bottom:226.080000px;}
.y112{bottom:226.830000px;}
.y23{bottom:227.880000px;}
.y11d{bottom:228.105000px;}
.ya7{bottom:229.290000px;}
.y4e{bottom:230.610000px;}
.y95{bottom:239.610000px;}
.yf3{bottom:241.050000px;}
.y111{bottom:244.110000px;}
.y22{bottom:245.160000px;}
.y11c{bottom:245.205000px;}
.yb6{bottom:246.810000px;}
.y4d{bottom:248.610000px;}
.ya8{bottom:252.210000px;}
.y94{bottom:253.830000px;}
.yf2{bottom:258.330000px;}
.y110{bottom:261.390000px;}
.y21{bottom:262.485000px;}
.y4c{bottom:266.250000px;}
.y93{bottom:271.830000px;}
.yb7{bottom:272.880000px;}
.yf1{bottom:275.610000px;}
.y10f{bottom:278.670000px;}
.y11b{bottom:279.405000px;}
.y20{bottom:279.765000px;}
.y4b{bottom:283.530000px;}
.y92{bottom:289.830000px;}
.yf0{bottom:292.530000px;}
.y10e{bottom:295.950000px;}
.y1f{bottom:297.045000px;}
.y4a{bottom:300.810000px;}
.y91{bottom:307.830000px;}
.yef{bottom:310.170000px;}
.y10d{bottom:313.050000px;}
.y1e{bottom:314.145000px;}
.y49{bottom:318.090000px;}
.y90{bottom:325.830000px;}
.yee{bottom:327.450000px;}
.y10c{bottom:330.330000px;}
.y1d{bottom:331.425000px;}
.y48{bottom:335.190000px;}
.y8f{bottom:343.830000px;}
.yed{bottom:344.550000px;}
.y10b{bottom:347.610000px;}
.y1c{bottom:348.705000px;}
.y47{bottom:352.470000px;}
.y8d{bottom:361.875000px;}
.y84{bottom:362.415000px;}
.y10a{bottom:364.935000px;}
.y1b{bottom:365.985000px;}
.y46{bottom:369.795000px;}
.yec{bottom:379.155000px;}
.y83{bottom:380.055000px;}
.y109{bottom:382.215000px;}
.y45{bottom:387.075000px;}
.yeb{bottom:396.435000px;}
.y8c{bottom:397.155000px;}
.y82{bottom:397.335000px;}
.y108{bottom:399.495000px;}
.y44{bottom:404.355000px;}
.yea{bottom:413.715000px;}
.y81{bottom:414.075000px;}
.y8b{bottom:415.155000px;}
.y107{bottom:416.595000px;}
.y43{bottom:421.635000px;}
.ye9{bottom:430.995000px;}
.y80{bottom:431.715000px;}
.y106{bottom:433.875000px;}
.y8a{bottom:436.575000px;}
.y42{bottom:438.735000px;}
.ye8{bottom:448.095000px;}
.y7f{bottom:448.995000px;}
.y105{bottom:451.155000px;}
.y89{bottom:454.035000px;}
.y41{bottom:456.015000px;}
.ye7{bottom:465.375000px;}
.y7e{bottom:466.995000px;}
.y88{bottom:467.715000px;}
.y104{bottom:468.435000px;}
.yae{bottom:469.980000px;}
.y40{bottom:473.295000px;}
.ye6{bottom:482.655000px;}
.y7d{bottom:484.635000px;}
.y103{bottom:485.715000px;}
.y3f{bottom:490.575000px;}
.ye5{bottom:499.935000px;}
.y7c{bottom:501.735000px;}
.y102{bottom:502.815000px;}
.y3e{bottom:507.855000px;}
.ye4{bottom:517.215000px;}
.y7b{bottom:519.735000px;}
.yba{bottom:519.840000px;}
.y101{bottom:520.095000px;}
.y3d{bottom:524.955000px;}
.ye3{bottom:534.315000px;}
.y7a{bottom:537.375000px;}
.ybf{bottom:540.720000px;}
.y3c{bottom:542.235000px;}
.ybb{bottom:546.480000px;}
.ye2{bottom:551.595000px;}
.y79{bottom:554.655000px;}
.y3b{bottom:559.515000px;}
.ye1{bottom:568.875000px;}
.y78{bottom:571.935000px;}
.y3a{bottom:576.795000px;}
.ye0{bottom:586.155000px;}
.y77{bottom:589.215000px;}
.y39{bottom:593.715000px;}
.ydf{bottom:603.435000px;}
.y76{bottom:606.315000px;}
.y38{bottom:610.995000px;}
.ybd{bottom:620.280000px;}
.yde{bottom:620.745000px;}
.y75{bottom:623.625000px;}
.y1a{bottom:625.605000px;}
.ydd{bottom:637.845000px;}
.y74{bottom:640.545000px;}
.y100{bottom:640.905000px;}
.ydc{bottom:655.125000px;}
.y73{bottom:658.185000px;}
.ydb{bottom:672.405000px;}
.y72{bottom:675.465000px;}
.yda{bottom:689.685000px;}
.y126{bottom:690.405000px;}
.y71{bottom:692.745000px;}
.y125{bottom:704.625000px;}
.yd9{bottom:706.965000px;}
.y70{bottom:709.485000px;}
.yff{bottom:709.845000px;}
.y11a{bottom:721.905000px;}
.yd8{bottom:724.245000px;}
.y6f{bottom:727.125000px;}
.yd7{bottom:741.345000px;}
.y6e{bottom:744.405000px;}
.yd6{bottom:758.625000px;}
.y6d{bottom:761.685000px;}
.yd5{bottom:775.905000px;}
.y6c{bottom:778.965000px;}
.yd4{bottom:793.185000px;}
.y6b{bottom:796.065000px;}
.y87{bottom:797.325000px;}
.yd3{bottom:810.465000px;}
.y6a{bottom:812.985000px;}
.yfe{bottom:813.345000px;}
.y86{bottom:814.785000px;}
.yd2{bottom:827.565000px;}
.y85{bottom:828.465000px;}
.y69{bottom:830.625000px;}
.y9e{bottom:830.700000px;}
.yac{bottom:835.920000px;}
.yd1{bottom:844.845000px;}
.y68{bottom:847.545000px;}
.yfd{bottom:847.905000px;}
.yd0{bottom:862.125000px;}
.y67{bottom:864.825000px;}
.yfc{bottom:865.185000px;}
.y2c{bottom:866.265000px;}
.ycf{bottom:879.450000px;}
.y66{bottom:882.510000px;}
.yce{bottom:896.730000px;}
.y65{bottom:899.610000px;}
.ycd{bottom:914.010000px;}
.y64{bottom:916.890000px;}
.y13{bottom:918.870000px;}
.ycc{bottom:931.110000px;}
.y63{bottom:934.170000px;}
.ycb{bottom:948.390000px;}
.y62{bottom:951.450000px;}
.yca{bottom:965.670000px;}
.y61{bottom:968.730000px;}
.yc9{bottom:982.950000px;}
.yaa{bottom:984.420000px;}
.y60{bottom:986.010000px;}
.yc8{bottom:1000.230000px;}
.y5f{bottom:1003.110000px;}
.y11{bottom:1005.810000px;}
.y119{bottom:1015.890000px;}
.yc7{bottom:1017.510000px;}
.y5e{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.yc6{bottom:1034.250000px;}
.y5d{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.yc5{bottom:1051.890000px;}
.y5c{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.yc4{bottom:1069.170000px;}
.y5b{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.yc3{bottom:1086.450000px;}
.y5a{bottom:1089.510000px;}
.yc2{bottom:1100.670000px;}
.yc{bottom:1104.450000px;}
.y59{bottom:1106.610000px;}
.yc1{bottom:1118.670000px;}
.y58{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.yc0{bottom:1136.700000px;}
.yfb{bottom:1140.840000px;}
.y57{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y56{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y55{bottom:1196.100000px;}
.hc{height:17.280000px;}
.h16{height:17.316000px;}
.h6{height:20.880000px;}
.h17{height:21.420000px;}
.h5{height:23.400000px;}
.h15{height:34.560000px;}
.h7{height:36.651094px;}
.h1a{height:37.260000px;}
.h8{height:40.500000px;}
.h19{height:40.647305px;}
.h10{height:41.493516px;}
.h1e{height:41.522695px;}
.h2{height:44.280000px;}
.h11{height:51.876000px;}
.h4{height:54.421875px;}
.h1c{height:55.620000px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h14{height:61.423863px;}
.h13{height:65.518594px;}
.h3{height:66.757500px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h1b{height:162.000000px;}
.h1d{height:162.180000px;}
.h12{height:239.940000px;}
.h1f{height:293.250000px;}
.h18{height:324.000000px;}
.hf{height:379.470000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w13{width:35.820000px;}
.w12{width:39.060000px;}
.w19{width:44.280000px;}
.w14{width:63.180000px;}
.w18{width:63.360000px;}
.wf{width:85.140000px;}
.wb{width:86.040000px;}
.w15{width:91.080000px;}
.we{width:97.956000px;}
.wa{width:99.216000px;}
.w17{width:99.360000px;}
.w16{width:104.400000px;}
.wc{width:111.276000px;}
.w10{width:111.636000px;}
.w6{width:176.250000px;}
.w2{width:216.570000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.w1b{width:337.755000px;}
.w1c{width:340.275000px;}
.w9{width:393.735000px;}
.wd{width:395.535000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w11{width:540.000000px;}
.w1a{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xf{left:7.020000px;}
.xc{left:8.100000px;}
.x1b{left:9.435000px;}
.x25{left:18.510000px;}
.x20{left:28.800000px;}
.x19{left:30.636000px;}
.x5{left:34.920000px;}
.x1f{left:36.396000px;}
.x18{left:38.232000px;}
.x1{left:90.396000px;}
.x13{left:100.296000px;}
.x7{left:108.036000px;}
.xb{left:113.076000px;}
.x11{left:135.036000px;}
.x9{left:139.536000px;}
.x2a{left:148.536000px;}
.x10{left:162.030000px;}
.x21{left:198.540000px;}
.x26{left:231.480000px;}
.x1a{left:267.120000px;}
.x2b{left:274.539000px;}
.xd{left:283.755000px;}
.x1d{left:288.360000px;}
.x22{left:298.260000px;}
.x3{left:306.975000px;}
.xe{left:314.895000px;}
.x27{left:324.000000px;}
.xa{left:358.095000px;}
.x23{left:386.100000px;}
.x28{left:430.740000px;}
.x2c{left:445.245000px;}
.x1c{left:447.300000px;}
.x1e{left:469.980000px;}
.x24{left:485.820000px;}
.x14{left:494.745000px;}
.x17{left:496.545000px;}
.x29{left:526.320000px;}
.x6{left:576.825000px;}
.x15{left:594.690000px;}
.x12{left:650.310000px;}
.x16{left:681.450000px;}
.x8{left:770.040000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.244267pt;}
.ls1{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.618667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls7{letter-spacing:2.154667pt;}
.ls8{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls6{letter-spacing:2.794667pt;}
.ls4{letter-spacing:56.891307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-16.819627pt;}
.wsa{word-spacing:-13.872000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsb{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._b{width:4.949547pt;}
._e{width:6.226133pt;}
._a{width:7.469440pt;}
._9{width:8.711680pt;}
._c{width:9.729493pt;}
._d{width:10.677120pt;}
._f{width:11.633280pt;}
._6{width:14.297813pt;}
._7{width:15.343147pt;}
._8{width:16.839040pt;}
._10{width:18.592000pt;}
._11{width:57.741440pt;}
._13{width:58.776320pt;}
._12{width:60.621440pt;}
._14{width:63.212800pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y12{bottom:3.040000pt;}
.y9b{bottom:3.354667pt;}
.y18{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.y9d{bottom:7.040000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.y17{bottom:18.560000pt;}
.y8e{bottom:18.720000pt;}
.y2e{bottom:18.760000pt;}
.ya9{bottom:20.386667pt;}
.yb9{bottom:20.453333pt;}
.y2{bottom:25.760000pt;}
.y2f{bottom:33.800000pt;}
.y16{bottom:33.920000pt;}
.y123{bottom:34.080000pt;}
.y2d{bottom:34.120000pt;}
.yb8{bottom:36.773333pt;}
.y9f{bottom:40.933333pt;}
.y15{bottom:49.280000pt;}
.yb{bottom:50.400000pt;}
.yaf{bottom:57.306667pt;}
.ya0{bottom:61.280000pt;}
.y14{bottom:64.320000pt;}
.y19{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y2b{bottom:80.000000pt;}
.yb0{bottom:80.480000pt;}
.ya1{bottom:81.666667pt;}
.y37{bottom:93.920000pt;}
.y2a{bottom:95.360000pt;}
.ya2{bottom:102.013333pt;}
.yb1{bottom:103.653333pt;}
.yfa{bottom:107.072000pt;}
.y36{bottom:108.960000pt;}
.y118{bottom:109.632000pt;}
.y29{bottom:110.560000pt;}
.y122{bottom:110.720000pt;}
.y54{bottom:111.232000pt;}
.y9c{bottom:111.872000pt;}
.yf9{bottom:122.272000pt;}
.ya3{bottom:122.373333pt;}
.y35{bottom:124.640000pt;}
.y117{bottom:124.992000pt;}
.y28{bottom:125.920000pt;}
.y53{bottom:126.432000pt;}
.yb2{bottom:126.786667pt;}
.ybc{bottom:129.280000pt;}
.yad{bottom:129.373333pt;}
.yab{bottom:129.413333pt;}
.ybe{bottom:129.440000pt;}
.y9a{bottom:131.552000pt;}
.yf8{bottom:137.626667pt;}
.y34{bottom:140.000000pt;}
.y116{bottom:140.346667pt;}
.y27{bottom:141.280000pt;}
.y121{bottom:141.320000pt;}
.y52{bottom:141.786667pt;}
.ya4{bottom:142.720000pt;}
.y99{bottom:147.546667pt;}
.yb3{bottom:149.946667pt;}
.yf7{bottom:152.986667pt;}
.y33{bottom:155.360000pt;}
.y115{bottom:155.706667pt;}
.y120{bottom:156.360000pt;}
.y26{bottom:156.640000pt;}
.y51{bottom:156.826667pt;}
.ya5{bottom:163.106667pt;}
.y98{bottom:166.586667pt;}
.yf6{bottom:168.026667pt;}
.y32{bottom:170.560000pt;}
.y114{bottom:171.066667pt;}
.y124{bottom:171.720000pt;}
.y25{bottom:172.000000pt;}
.y11f{bottom:172.040000pt;}
.y50{bottom:172.186667pt;}
.yb4{bottom:173.093333pt;}
.y97{bottom:182.266667pt;}
.ya6{bottom:183.453333pt;}
.yf5{bottom:183.706667pt;}
.y31{bottom:185.920000pt;}
.y113{bottom:186.266667pt;}
.y24{bottom:187.360000pt;}
.y11e{bottom:187.400000pt;}
.y4f{bottom:188.826667pt;}
.yb5{bottom:196.253333pt;}
.y96{bottom:197.626667pt;}
.yf4{bottom:198.746667pt;}
.y30{bottom:200.960000pt;}
.y112{bottom:201.626667pt;}
.y23{bottom:202.560000pt;}
.y11d{bottom:202.760000pt;}
.ya7{bottom:203.813333pt;}
.y4e{bottom:204.986667pt;}
.y95{bottom:212.986667pt;}
.yf3{bottom:214.266667pt;}
.y111{bottom:216.986667pt;}
.y22{bottom:217.920000pt;}
.y11c{bottom:217.960000pt;}
.yb6{bottom:219.386667pt;}
.y4d{bottom:220.986667pt;}
.ya8{bottom:224.186667pt;}
.y94{bottom:225.626667pt;}
.yf2{bottom:229.626667pt;}
.y110{bottom:232.346667pt;}
.y21{bottom:233.320000pt;}
.y4c{bottom:236.666667pt;}
.y93{bottom:241.626667pt;}
.yb7{bottom:242.560000pt;}
.yf1{bottom:244.986667pt;}
.y10f{bottom:247.706667pt;}
.y11b{bottom:248.360000pt;}
.y20{bottom:248.680000pt;}
.y4b{bottom:252.026667pt;}
.y92{bottom:257.626667pt;}
.yf0{bottom:260.026667pt;}
.y10e{bottom:263.066667pt;}
.y1f{bottom:264.040000pt;}
.y4a{bottom:267.386667pt;}
.y91{bottom:273.626667pt;}
.yef{bottom:275.706667pt;}
.y10d{bottom:278.266667pt;}
.y1e{bottom:279.240000pt;}
.y49{bottom:282.746667pt;}
.y90{bottom:289.626667pt;}
.yee{bottom:291.066667pt;}
.y10c{bottom:293.626667pt;}
.y1d{bottom:294.600000pt;}
.y48{bottom:297.946667pt;}
.y8f{bottom:305.626667pt;}
.yed{bottom:306.266667pt;}
.y10b{bottom:308.986667pt;}
.y1c{bottom:309.960000pt;}
.y47{bottom:313.306667pt;}
.y8d{bottom:321.666667pt;}
.y84{bottom:322.146667pt;}
.y10a{bottom:324.386667pt;}
.y1b{bottom:325.320000pt;}
.y46{bottom:328.706667pt;}
.yec{bottom:337.026667pt;}
.y83{bottom:337.826667pt;}
.y109{bottom:339.746667pt;}
.y45{bottom:344.066667pt;}
.yeb{bottom:352.386667pt;}
.y8c{bottom:353.026667pt;}
.y82{bottom:353.186667pt;}
.y108{bottom:355.106667pt;}
.y44{bottom:359.426667pt;}
.yea{bottom:367.746667pt;}
.y81{bottom:368.066667pt;}
.y8b{bottom:369.026667pt;}
.y107{bottom:370.306667pt;}
.y43{bottom:374.786667pt;}
.ye9{bottom:383.106667pt;}
.y80{bottom:383.746667pt;}
.y106{bottom:385.666667pt;}
.y8a{bottom:388.066667pt;}
.y42{bottom:389.986667pt;}
.ye8{bottom:398.306667pt;}
.y7f{bottom:399.106667pt;}
.y105{bottom:401.026667pt;}
.y89{bottom:403.586667pt;}
.y41{bottom:405.346667pt;}
.ye7{bottom:413.666667pt;}
.y7e{bottom:415.106667pt;}
.y88{bottom:415.746667pt;}
.y104{bottom:416.386667pt;}
.yae{bottom:417.760000pt;}
.y40{bottom:420.706667pt;}
.ye6{bottom:429.026667pt;}
.y7d{bottom:430.786667pt;}
.y103{bottom:431.746667pt;}
.y3f{bottom:436.066667pt;}
.ye5{bottom:444.386667pt;}
.y7c{bottom:445.986667pt;}
.y102{bottom:446.946667pt;}
.y3e{bottom:451.426667pt;}
.ye4{bottom:459.746667pt;}
.y7b{bottom:461.986667pt;}
.yba{bottom:462.080000pt;}
.y101{bottom:462.306667pt;}
.y3d{bottom:466.626667pt;}
.ye3{bottom:474.946667pt;}
.y7a{bottom:477.666667pt;}
.ybf{bottom:480.640000pt;}
.y3c{bottom:481.986667pt;}
.ybb{bottom:485.760000pt;}
.ye2{bottom:490.306667pt;}
.y79{bottom:493.026667pt;}
.y3b{bottom:497.346667pt;}
.ye1{bottom:505.666667pt;}
.y78{bottom:508.386667pt;}
.y3a{bottom:512.706667pt;}
.ye0{bottom:521.026667pt;}
.y77{bottom:523.746667pt;}
.y39{bottom:527.746667pt;}
.ydf{bottom:536.386667pt;}
.y76{bottom:538.946667pt;}
.y38{bottom:543.106667pt;}
.ybd{bottom:551.360000pt;}
.yde{bottom:551.773333pt;}
.y75{bottom:554.333333pt;}
.y1a{bottom:556.093333pt;}
.ydd{bottom:566.973333pt;}
.y74{bottom:569.373333pt;}
.y100{bottom:569.693333pt;}
.ydc{bottom:582.333333pt;}
.y73{bottom:585.053333pt;}
.ydb{bottom:597.693333pt;}
.y72{bottom:600.413333pt;}
.yda{bottom:613.053333pt;}
.y126{bottom:613.693333pt;}
.y71{bottom:615.773333pt;}
.y125{bottom:626.333333pt;}
.yd9{bottom:628.413333pt;}
.y70{bottom:630.653333pt;}
.yff{bottom:630.973333pt;}
.y11a{bottom:641.693333pt;}
.yd8{bottom:643.773333pt;}
.y6f{bottom:646.333333pt;}
.yd7{bottom:658.973333pt;}
.y6e{bottom:661.693333pt;}
.yd6{bottom:674.333333pt;}
.y6d{bottom:677.053333pt;}
.yd5{bottom:689.693333pt;}
.y6c{bottom:692.413333pt;}
.yd4{bottom:705.053333pt;}
.y6b{bottom:707.613333pt;}
.y87{bottom:708.733333pt;}
.yd3{bottom:720.413333pt;}
.y6a{bottom:722.653333pt;}
.yfe{bottom:722.973333pt;}
.y86{bottom:724.253333pt;}
.yd2{bottom:735.613333pt;}
.y85{bottom:736.413333pt;}
.y69{bottom:738.333333pt;}
.y9e{bottom:738.400000pt;}
.yac{bottom:743.040000pt;}
.yd1{bottom:750.973333pt;}
.y68{bottom:753.373333pt;}
.yfd{bottom:753.693333pt;}
.yd0{bottom:766.333333pt;}
.y67{bottom:768.733333pt;}
.yfc{bottom:769.053333pt;}
.y2c{bottom:770.013333pt;}
.ycf{bottom:781.733333pt;}
.y66{bottom:784.453333pt;}
.yce{bottom:797.093333pt;}
.y65{bottom:799.653333pt;}
.ycd{bottom:812.453333pt;}
.y64{bottom:815.013333pt;}
.y13{bottom:816.773333pt;}
.ycc{bottom:827.653333pt;}
.y63{bottom:830.373333pt;}
.ycb{bottom:843.013333pt;}
.y62{bottom:845.733333pt;}
.yca{bottom:858.373333pt;}
.y61{bottom:861.093333pt;}
.yc9{bottom:873.733333pt;}
.yaa{bottom:875.040000pt;}
.y60{bottom:876.453333pt;}
.yc8{bottom:889.093333pt;}
.y5f{bottom:891.653333pt;}
.y11{bottom:894.053333pt;}
.y119{bottom:903.013333pt;}
.yc7{bottom:904.453333pt;}
.y5e{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.yc6{bottom:919.333333pt;}
.y5d{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.yc5{bottom:935.013333pt;}
.y5c{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.yc4{bottom:950.373333pt;}
.y5b{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.yc3{bottom:965.733333pt;}
.y5a{bottom:968.453333pt;}
.yc2{bottom:978.373333pt;}
.yc{bottom:981.733333pt;}
.y59{bottom:983.653333pt;}
.yc1{bottom:994.373333pt;}
.y58{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.yc0{bottom:1010.400000pt;}
.yfb{bottom:1014.080000pt;}
.y57{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y56{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y55{bottom:1063.200000pt;}
.hc{height:15.360000pt;}
.h16{height:15.392000pt;}
.h6{height:18.560000pt;}
.h17{height:19.040000pt;}
.h5{height:20.800000pt;}
.h15{height:30.720000pt;}
.h7{height:32.578750pt;}
.h1a{height:33.120000pt;}
.h8{height:36.000000pt;}
.h19{height:36.130938pt;}
.h10{height:36.883125pt;}
.h1e{height:36.909063pt;}
.h2{height:39.360000pt;}
.h11{height:46.112000pt;}
.h4{height:48.375000pt;}
.h1c{height:49.440000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h14{height:54.598989pt;}
.h13{height:58.238750pt;}
.h3{height:59.340000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h1b{height:144.000000pt;}
.h1d{height:144.160000pt;}
.h12{height:213.280000pt;}
.h1f{height:260.666667pt;}
.h18{height:288.000000pt;}
.hf{height:337.306667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w13{width:31.840000pt;}
.w12{width:34.720000pt;}
.w19{width:39.360000pt;}
.w14{width:56.160000pt;}
.w18{width:56.320000pt;}
.wf{width:75.680000pt;}
.wb{width:76.480000pt;}
.w15{width:80.960000pt;}
.we{width:87.072000pt;}
.wa{width:88.192000pt;}
.w17{width:88.320000pt;}
.w16{width:92.800000pt;}
.wc{width:98.912000pt;}
.w10{width:99.232000pt;}
.w6{width:156.666667pt;}
.w2{width:192.506667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.w1b{width:300.226667pt;}
.w1c{width:302.466667pt;}
.w9{width:349.986667pt;}
.wd{width:351.586667pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w11{width:480.000000pt;}
.w1a{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xf{left:6.240000pt;}
.xc{left:7.200000pt;}
.x1b{left:8.386667pt;}
.x25{left:16.453333pt;}
.x20{left:25.600000pt;}
.x19{left:27.232000pt;}
.x5{left:31.040000pt;}
.x1f{left:32.352000pt;}
.x18{left:33.984000pt;}
.x1{left:80.352000pt;}
.x13{left:89.152000pt;}
.x7{left:96.032000pt;}
.xb{left:100.512000pt;}
.x11{left:120.032000pt;}
.x9{left:124.032000pt;}
.x2a{left:132.032000pt;}
.x10{left:144.026667pt;}
.x21{left:176.480000pt;}
.x26{left:205.760000pt;}
.x1a{left:237.440000pt;}
.x2b{left:244.034667pt;}
.xd{left:252.226667pt;}
.x1d{left:256.320000pt;}
.x22{left:265.120000pt;}
.x3{left:272.866667pt;}
.xe{left:279.906667pt;}
.x27{left:288.000000pt;}
.xa{left:318.306667pt;}
.x23{left:343.200000pt;}
.x28{left:382.880000pt;}
.x2c{left:395.773333pt;}
.x1c{left:397.600000pt;}
.x1e{left:417.760000pt;}
.x24{left:431.840000pt;}
.x14{left:439.773333pt;}
.x17{left:441.373333pt;}
.x29{left:467.840000pt;}
.x6{left:512.733333pt;}
.x15{left:528.613333pt;}
.x12{left:578.053333pt;}
.x16{left:605.733333pt;}
.x8{left:684.480000pt;}
}




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