
    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_06f446a80ce37eea7c067a4c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4f3a355ba26f618b8d1d9d2f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_af1b446358f3b31da4fdfc30.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2172a1a62135a7397a876bdc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e18bbc7bb5dd390eba3d1948.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1b4437d0a959ae9912d561df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_01ce8cbd34e42b9a86a59126.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_581773332429d7a2783a9dbc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_9501a56863111beaf352c82b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ef824d516193aea8df5f9e99.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_934448726f3a7e0c5bda2f36.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.983398;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;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-5.184000px;}
.lsf{letter-spacing:-4.320000px;}
.ls6{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.320400px;}
.ls14{letter-spacing:-0.252600px;}
.ls13{letter-spacing:-0.202800px;}
.ls2{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.102000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.576000px;}
.ls1e{letter-spacing:4.608000px;}
.ls1d{letter-spacing:24.768000px;}
.lsd{letter-spacing:32.544000px;}
.lsc{letter-spacing:44.784000px;}
.ls15{letter-spacing:54.840000px;}
.lsb{letter-spacing:54.864000px;}
.ls1b{letter-spacing:103.104000px;}
.ls1a{letter-spacing:118.944000px;}
.ls19{letter-spacing:135.504000px;}
.ls1c{letter-spacing:196.104000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws6{word-spacing:-16.632000px;}
.ws13{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws8{word-spacing:-16.416000px;}
.wsb{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws7{word-spacing:-15.912000px;}
.ws11{word-spacing:-15.768000px;}
.ws4{word-spacing:-15.696000px;}
.ws5{word-spacing:-15.624000px;}
.ws0{word-spacing:-14.970240px;}
.ws9{word-spacing:-11.952000px;}
.ws12{word-spacing:-11.088000px;}
.wsc{word-spacing:-10.934784px;}
.wsd{word-spacing:-10.902240px;}
.wse{word-spacing:-10.699440px;}
.wsf{word-spacing:-10.649640px;}
.ws10{word-spacing:-10.581840px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-14.008800px;}
._20{margin-left:-8.987040px;}
._f{margin-left:-7.329120px;}
._1b{margin-left:-6.310080px;}
._9{margin-left:-5.207040px;}
._0{margin-left:-4.121280px;}
._4{margin-left:-2.520000px;}
._1{margin-left:-1.321920px;}
._2{width:1.041120px;}
._3{width:2.048160px;}
._b{width:3.341280px;}
._6{width:4.781760px;}
._5{width:5.808000px;}
._a{width:6.865920px;}
._10{width:7.992000px;}
._c{width:9.443040px;}
._8{width:11.093760px;}
._7{width:12.384000px;}
._12{width:13.681920px;}
._13{width:14.904000px;}
._1a{width:17.298720px;}
._11{width:18.351840px;}
._19{width:19.872000px;}
._16{width:21.767040px;}
._15{width:23.148000px;}
._14{width:24.841920px;}
._18{width:25.897920px;}
._17{width:27.001920px;}
._1f{width:28.056960px;}
._1d{width:30.528000px;}
._e{width:31.637280px;}
._d{width:32.693760px;}
._23{width:56.737920px;}
._22{width:121.680000px;}
._21{width:122.850720px;}
._1e{width:501.675840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:48.384000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:54.144000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:1.005000px;}
.ya5{bottom:4.785000px;}
.yaf{bottom:4.830000px;}
.yc0{bottom:4.935000px;}
.ya8{bottom:4.965000px;}
.ybe{bottom:5.145000px;}
.yb2{bottom:6.405000px;}
.ya3{bottom:7.170000px;}
.yc3{bottom:9.105000px;}
.yad{bottom:10.365000px;}
.ybb{bottom:12.315000px;}
.yb5{bottom:15.045000px;}
.ybd{bottom:19.725000px;}
.ya7{bottom:20.625000px;}
.yc2{bottom:24.765000px;}
.yb9{bottom:27.795000px;}
.y1{bottom:57.456000px;}
.y5c{bottom:113.076000px;}
.ya1{bottom:120.996000px;}
.yd1{bottom:121.176000px;}
.yf5{bottom:121.356000px;}
.y2e{bottom:134.676000px;}
.y5b{bottom:135.216000px;}
.ya0{bottom:142.956000px;}
.yd0{bottom:143.136000px;}
.yf4{bottom:143.316000px;}
.y106{bottom:146.016000px;}
.y87{bottom:154.290000px;}
.y2d{bottom:156.630000px;}
.y5a{bottom:157.170000px;}
.y9f{bottom:164.910000px;}
.yf3{bottom:165.270000px;}
.ycf{bottom:166.170000px;}
.y10d{bottom:170.850000px;}
.y86{bottom:176.250000px;}
.y2c{bottom:178.590000px;}
.y59{bottom:179.130000px;}
.y105{bottom:181.830000px;}
.y9e{bottom:186.870000px;}
.yf2{bottom:187.230000px;}
.yce{bottom:189.030000px;}
.y10c{bottom:192.810000px;}
.y85{bottom:198.210000px;}
.y2b{bottom:200.550000px;}
.y58{bottom:201.090000px;}
.y9d{bottom:208.830000px;}
.yf1{bottom:209.190000px;}
.ycd{bottom:211.890000px;}
.y10b{bottom:214.770000px;}
.y104{bottom:217.470000px;}
.y84{bottom:220.170000px;}
.y2a{bottom:222.510000px;}
.y57{bottom:223.050000px;}
.y9c{bottom:230.790000px;}
.yf0{bottom:231.330000px;}
.ycc{bottom:234.930000px;}
.y10a{bottom:236.730000px;}
.y83{bottom:242.130000px;}
.y29{bottom:244.470000px;}
.y56{bottom:245.010000px;}
.y9b{bottom:252.750000px;}
.yef{bottom:253.290000px;}
.ycb{bottom:257.790000px;}
.y109{bottom:258.690000px;}
.y82{bottom:264.090000px;}
.y28{bottom:266.430000px;}
.y55{bottom:266.970000px;}
.yee{bottom:275.250000px;}
.yca{bottom:279.750000px;}
.y108{bottom:280.650000px;}
.y81{bottom:286.095000px;}
.y9a{bottom:288.435000px;}
.y27{bottom:288.615000px;}
.y54{bottom:288.975000px;}
.yed{bottom:297.255000px;}
.y107{bottom:302.655000px;}
.y80{bottom:308.055000px;}
.y26{bottom:310.575000px;}
.y53{bottom:310.935000px;}
.yc9{bottom:315.435000px;}
.yec{bottom:319.215000px;}
.y99{bottom:324.255000px;}
.y103{bottom:324.615000px;}
.y7f{bottom:330.015000px;}
.y25{bottom:332.535000px;}
.y52{bottom:332.895000px;}
.yc8{bottom:339.195000px;}
.yeb{bottom:341.175000px;}
.y102{bottom:346.575000px;}
.y98{bottom:348.015000px;}
.y7e{bottom:351.975000px;}
.y24{bottom:354.495000px;}
.y51{bottom:354.855000px;}
.yc7{bottom:362.955000px;}
.yea{bottom:363.135000px;}
.y101{bottom:368.715000px;}
.y7d{bottom:373.935000px;}
.y23{bottom:376.455000px;}
.y50{bottom:376.815000px;}
.ybf{bottom:378.720000px;}
.y97{bottom:383.655000px;}
.yc6{bottom:384.915000px;}
.ye9{bottom:385.095000px;}
.y100{bottom:390.675000px;}
.y7c{bottom:395.895000px;}
.y22{bottom:398.775000px;}
.yc5{bottom:402.015000px;}
.ye8{bottom:407.055000px;}
.yff{bottom:412.635000px;}
.y7b{bottom:417.855000px;}
.y96{bottom:419.295000px;}
.y4f{bottom:420.735000px;}
.y21{bottom:422.175000px;}
.ye7{bottom:429.015000px;}
.yfe{bottom:434.595000px;}
.y7a{bottom:439.995000px;}
.y4e{bottom:442.695000px;}
.y20{bottom:444.135000px;}
.ye6{bottom:450.975000px;}
.y95{bottom:455.115000px;}
.yfd{bottom:456.555000px;}
.yb8{bottom:459.360000px;}
.y79{bottom:461.955000px;}
.y4d{bottom:464.835000px;}
.y1f{bottom:466.095000px;}
.yba{bottom:471.675000px;}
.ye5{bottom:472.935000px;}
.yb7{bottom:475.455000px;}
.yfc{bottom:478.515000px;}
.y78{bottom:483.915000px;}
.y4c{bottom:486.795000px;}
.y1e{bottom:488.055000px;}
.y94{bottom:490.755000px;}
.ye4{bottom:494.895000px;}
.yfb{bottom:500.475000px;}
.y77{bottom:506.775000px;}
.y4b{bottom:508.755000px;}
.y1d{bottom:510.015000px;}
.ye3{bottom:516.855000px;}
.yfa{bottom:522.435000px;}
.y93{bottom:526.575000px;}
.y76{bottom:528.735000px;}
.y4a{bottom:530.715000px;}
.y1c{bottom:531.975000px;}
.ye2{bottom:538.995000px;}
.yf9{bottom:544.395000px;}
.y75{bottom:551.775000px;}
.y49{bottom:552.675000px;}
.y1b{bottom:554.115000px;}
.yb4{bottom:557.820000px;}
.ye1{bottom:560.955000px;}
.y92{bottom:562.215000px;}
.yf8{bottom:566.385000px;}
.y74{bottom:573.765000px;}
.y48{bottom:574.665000px;}
.y1a{bottom:576.105000px;}
.ye0{bottom:582.945000px;}
.yf7{bottom:588.345000px;}
.y73{bottom:595.725000px;}
.y47{bottom:596.625000px;}
.y91{bottom:597.885000px;}
.y19{bottom:598.065000px;}
.ydf{bottom:604.905000px;}
.yf6{bottom:610.305000px;}
.ybc{bottom:613.980000px;}
.y46{bottom:618.585000px;}
.y18{bottom:620.025000px;}
.yb6{bottom:620.280000px;}
.yde{bottom:626.865000px;}
.yb1{bottom:630.540000px;}
.yc4{bottom:632.265000px;}
.y90{bottom:633.705000px;}
.y45{bottom:640.545000px;}
.y17{bottom:641.985000px;}
.ydd{bottom:648.825000px;}
.yb0{bottom:651.705000px;}
.yb3{bottom:652.680000px;}
.y72{bottom:654.225000px;}
.y44{bottom:662.505000px;}
.y16{bottom:663.945000px;}
.y8f{bottom:669.345000px;}
.ydc{bottom:670.785000px;}
.y71{bottom:676.365000px;}
.y43{bottom:684.465000px;}
.y15{bottom:685.905000px;}
.ydb{bottom:692.745000px;}
.y70{bottom:698.325000px;}
.y8e{bottom:705.165000px;}
.yac{bottom:705.600000px;}
.y42{bottom:706.425000px;}
.y14{bottom:707.865000px;}
.yda{bottom:714.705000px;}
.y6f{bottom:720.285000px;}
.y41{bottom:728.385000px;}
.y13{bottom:728.565000px;}
.yd9{bottom:736.665000px;}
.y8d{bottom:740.805000px;}
.y6e{bottom:742.245000px;}
.y12{bottom:748.905000px;}
.y40{bottom:750.345000px;}
.yab{bottom:756.720000px;}
.yd8{bottom:758.625000px;}
.y6d{bottom:764.205000px;}
.ya6{bottom:764.460000px;}
.y11{bottom:770.865000px;}
.y3f{bottom:772.485000px;}
.y8c{bottom:776.445000px;}
.yd7{bottom:780.585000px;}
.ya4{bottom:785.340000px;}
.y6c{bottom:786.165000px;}
.y10{bottom:791.565000px;}
.y3e{bottom:794.445000px;}
.yd6{bottom:802.545000px;}
.ya9{bottom:804.240000px;}
.yc1{bottom:806.760000px;}
.y6b{bottom:808.125000px;}
.yf{bottom:810.465000px;}
.y8b{bottom:812.265000px;}
.y3d{bottom:816.405000px;}
.yd5{bottom:824.505000px;}
.y6a{bottom:830.085000px;}
.ye{bottom:830.625000px;}
.y3c{bottom:838.365000px;}
.ya2{bottom:842.220000px;}
.yd4{bottom:846.465000px;}
.y8a{bottom:847.950000px;}
.y69{bottom:852.090000px;}
.yd{bottom:852.810000px;}
.y3b{bottom:860.370000px;}
.yd3{bottom:868.650000px;}
.y68{bottom:874.050000px;}
.yc{bottom:874.770000px;}
.y3a{bottom:882.330000px;}
.y89{bottom:883.770000px;}
.yd2{bottom:890.610000px;}
.y67{bottom:896.010000px;}
.yb{bottom:896.730000px;}
.y39{bottom:904.290000px;}
.yae{bottom:904.680000px;}
.y66{bottom:917.970000px;}
.y88{bottom:918.330000px;}
.ya{bottom:918.690000px;}
.y38{bottom:926.250000px;}
.y65{bottom:939.930000px;}
.y9{bottom:940.650000px;}
.y37{bottom:948.210000px;}
.y64{bottom:961.890000px;}
.y36{bottom:970.170000px;}
.y8{bottom:971.610000px;}
.y63{bottom:984.030000px;}
.y35{bottom:992.130000px;}
.y7{bottom:1002.570000px;}
.y62{bottom:1005.990000px;}
.y34{bottom:1014.090000px;}
.y61{bottom:1027.950000px;}
.y6{bottom:1033.530000px;}
.y33{bottom:1036.050000px;}
.y60{bottom:1049.910000px;}
.y32{bottom:1058.010000px;}
.y5{bottom:1064.850000px;}
.y5f{bottom:1071.870000px;}
.y31{bottom:1080.150000px;}
.y4{bottom:1088.790000px;}
.y5e{bottom:1093.830000px;}
.y30{bottom:1102.110000px;}
.y3{bottom:1112.550000px;}
.y5d{bottom:1115.790000px;}
.y2{bottom:1136.340000px;}
.y2f{bottom:1137.780000px;}
.hf{height:12.600000px;}
.hc{height:16.200000px;}
.h10{height:16.380000px;}
.h14{height:26.460000px;}
.ha{height:27.900000px;}
.h11{height:30.960000px;}
.h16{height:31.140000px;}
.hd{height:32.220000px;}
.h17{height:36.360000px;}
.h15{height:39.600000px;}
.h13{height:41.580000px;}
.he{height:47.980898px;}
.h12{height:53.709961px;}
.hb{height:53.853187px;}
.h9{height:57.937500px;}
.h2{height:65.884219px;}
.h5{height:68.956875px;}
.h4{height:71.613281px;}
.h18{height:71.740898px;}
.h6{height:73.722656px;}
.h7{height:74.004654px;}
.h8{height:74.953125px;}
.h3{height:79.620469px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:54.180000px;}
.wc{width:68.760000px;}
.w8{width:81.000000px;}
.w6{width:83.340000px;}
.wb{width:101.160000px;}
.w3{width:127.080000px;}
.w5{width:129.780000px;}
.w9{width:140.040000px;}
.wa{width:199.980000px;}
.w7{width:330.840000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:10.875000px;}
.x11{left:14.970000px;}
.x17{left:24.915000px;}
.x1f{left:30.270000px;}
.x1e{left:34.950000px;}
.x14{left:40.245000px;}
.x1c{left:59.250000px;}
.x4{left:108.035987px;}
.x5{left:135.035987px;}
.x6{left:162.029987px;}
.x3{left:166.169987px;}
.x1a{left:180.540000px;}
.x9{left:189.029987px;}
.x1b{left:191.369987px;}
.x7{left:216.029987px;}
.xd{left:233.820000px;}
.x8{left:243.029987px;}
.x1d{left:257.760000px;}
.x10{left:268.020000px;}
.xa{left:309.780000px;}
.x16{left:318.420000px;}
.x20{left:340.380000px;}
.x12{left:355.500000px;}
.x18{left:385.560000px;}
.xf{left:392.760000px;}
.x2{left:446.474987px;}
.x15{left:460.260000px;}
.xe{left:462.060000px;}
.x19{left:467.534987px;}
.xc{left:518.940000px;}
.x13{left:557.204987px;}
.x22{left:632.084987px;}
.x21{left:652.320000px;}
.x1{left:776.849987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-4.608000pt;}
.lsf{letter-spacing:-3.840000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.284800pt;}
.ls14{letter-spacing:-0.224533pt;}
.ls13{letter-spacing:-0.180267pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:4.096000pt;}
.ls1d{letter-spacing:22.016000pt;}
.lsd{letter-spacing:28.928000pt;}
.lsc{letter-spacing:39.808000pt;}
.ls15{letter-spacing:48.746667pt;}
.lsb{letter-spacing:48.768000pt;}
.ls1b{letter-spacing:91.648000pt;}
.ls1a{letter-spacing:105.728000pt;}
.ls19{letter-spacing:120.448000pt;}
.ls1c{letter-spacing:174.314667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws6{word-spacing:-14.784000pt;}
.ws13{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws8{word-spacing:-14.592000pt;}
.wsb{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.144000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.952000pt;}
.ws5{word-spacing:-13.888000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws9{word-spacing:-10.624000pt;}
.ws12{word-spacing:-9.856000pt;}
.wsc{word-spacing:-9.719808pt;}
.wsd{word-spacing:-9.690880pt;}
.wse{word-spacing:-9.510613pt;}
.wsf{word-spacing:-9.466347pt;}
.ws10{word-spacing:-9.406080pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-12.452267pt;}
._20{margin-left:-7.988480pt;}
._f{margin-left:-6.514773pt;}
._1b{margin-left:-5.608960pt;}
._9{margin-left:-4.628480pt;}
._0{margin-left:-3.663360pt;}
._4{margin-left:-2.240000pt;}
._1{margin-left:-1.175040pt;}
._2{width:0.925440pt;}
._3{width:1.820587pt;}
._b{width:2.970027pt;}
._6{width:4.250453pt;}
._5{width:5.162667pt;}
._a{width:6.103040pt;}
._10{width:7.104000pt;}
._c{width:8.393813pt;}
._8{width:9.861120pt;}
._7{width:11.008000pt;}
._12{width:12.161707pt;}
._13{width:13.248000pt;}
._1a{width:15.376640pt;}
._11{width:16.312747pt;}
._19{width:17.664000pt;}
._16{width:19.348480pt;}
._15{width:20.576000pt;}
._14{width:22.081707pt;}
._18{width:23.020373pt;}
._17{width:24.001707pt;}
._1f{width:24.939520pt;}
._1d{width:27.136000pt;}
._e{width:28.122027pt;}
._d{width:29.061120pt;}
._23{width:50.433707pt;}
._22{width:108.160000pt;}
._21{width:109.200640pt;}
._1e{width:445.934080pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:43.008000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:48.128000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:0.893333pt;}
.ya5{bottom:4.253333pt;}
.yaf{bottom:4.293333pt;}
.yc0{bottom:4.386667pt;}
.ya8{bottom:4.413333pt;}
.ybe{bottom:4.573333pt;}
.yb2{bottom:5.693333pt;}
.ya3{bottom:6.373333pt;}
.yc3{bottom:8.093333pt;}
.yad{bottom:9.213333pt;}
.ybb{bottom:10.946667pt;}
.yb5{bottom:13.373333pt;}
.ybd{bottom:17.533333pt;}
.ya7{bottom:18.333333pt;}
.yc2{bottom:22.013333pt;}
.yb9{bottom:24.706667pt;}
.y1{bottom:51.072000pt;}
.y5c{bottom:100.512000pt;}
.ya1{bottom:107.552000pt;}
.yd1{bottom:107.712000pt;}
.yf5{bottom:107.872000pt;}
.y2e{bottom:119.712000pt;}
.y5b{bottom:120.192000pt;}
.ya0{bottom:127.072000pt;}
.yd0{bottom:127.232000pt;}
.yf4{bottom:127.392000pt;}
.y106{bottom:129.792000pt;}
.y87{bottom:137.146667pt;}
.y2d{bottom:139.226667pt;}
.y5a{bottom:139.706667pt;}
.y9f{bottom:146.586667pt;}
.yf3{bottom:146.906667pt;}
.ycf{bottom:147.706667pt;}
.y10d{bottom:151.866667pt;}
.y86{bottom:156.666667pt;}
.y2c{bottom:158.746667pt;}
.y59{bottom:159.226667pt;}
.y105{bottom:161.626667pt;}
.y9e{bottom:166.106667pt;}
.yf2{bottom:166.426667pt;}
.yce{bottom:168.026667pt;}
.y10c{bottom:171.386667pt;}
.y85{bottom:176.186667pt;}
.y2b{bottom:178.266667pt;}
.y58{bottom:178.746667pt;}
.y9d{bottom:185.626667pt;}
.yf1{bottom:185.946667pt;}
.ycd{bottom:188.346667pt;}
.y10b{bottom:190.906667pt;}
.y104{bottom:193.306667pt;}
.y84{bottom:195.706667pt;}
.y2a{bottom:197.786667pt;}
.y57{bottom:198.266667pt;}
.y9c{bottom:205.146667pt;}
.yf0{bottom:205.626667pt;}
.ycc{bottom:208.826667pt;}
.y10a{bottom:210.426667pt;}
.y83{bottom:215.226667pt;}
.y29{bottom:217.306667pt;}
.y56{bottom:217.786667pt;}
.y9b{bottom:224.666667pt;}
.yef{bottom:225.146667pt;}
.ycb{bottom:229.146667pt;}
.y109{bottom:229.946667pt;}
.y82{bottom:234.746667pt;}
.y28{bottom:236.826667pt;}
.y55{bottom:237.306667pt;}
.yee{bottom:244.666667pt;}
.yca{bottom:248.666667pt;}
.y108{bottom:249.466667pt;}
.y81{bottom:254.306667pt;}
.y9a{bottom:256.386667pt;}
.y27{bottom:256.546667pt;}
.y54{bottom:256.866667pt;}
.yed{bottom:264.226667pt;}
.y107{bottom:269.026667pt;}
.y80{bottom:273.826667pt;}
.y26{bottom:276.066667pt;}
.y53{bottom:276.386667pt;}
.yc9{bottom:280.386667pt;}
.yec{bottom:283.746667pt;}
.y99{bottom:288.226667pt;}
.y103{bottom:288.546667pt;}
.y7f{bottom:293.346667pt;}
.y25{bottom:295.586667pt;}
.y52{bottom:295.906667pt;}
.yc8{bottom:301.506667pt;}
.yeb{bottom:303.266667pt;}
.y102{bottom:308.066667pt;}
.y98{bottom:309.346667pt;}
.y7e{bottom:312.866667pt;}
.y24{bottom:315.106667pt;}
.y51{bottom:315.426667pt;}
.yc7{bottom:322.626667pt;}
.yea{bottom:322.786667pt;}
.y101{bottom:327.746667pt;}
.y7d{bottom:332.386667pt;}
.y23{bottom:334.626667pt;}
.y50{bottom:334.946667pt;}
.ybf{bottom:336.640000pt;}
.y97{bottom:341.026667pt;}
.yc6{bottom:342.146667pt;}
.ye9{bottom:342.306667pt;}
.y100{bottom:347.266667pt;}
.y7c{bottom:351.906667pt;}
.y22{bottom:354.466667pt;}
.yc5{bottom:357.346667pt;}
.ye8{bottom:361.826667pt;}
.yff{bottom:366.786667pt;}
.y7b{bottom:371.426667pt;}
.y96{bottom:372.706667pt;}
.y4f{bottom:373.986667pt;}
.y21{bottom:375.266667pt;}
.ye7{bottom:381.346667pt;}
.yfe{bottom:386.306667pt;}
.y7a{bottom:391.106667pt;}
.y4e{bottom:393.506667pt;}
.y20{bottom:394.786667pt;}
.ye6{bottom:400.866667pt;}
.y95{bottom:404.546667pt;}
.yfd{bottom:405.826667pt;}
.yb8{bottom:408.320000pt;}
.y79{bottom:410.626667pt;}
.y4d{bottom:413.186667pt;}
.y1f{bottom:414.306667pt;}
.yba{bottom:419.266667pt;}
.ye5{bottom:420.386667pt;}
.yb7{bottom:422.626667pt;}
.yfc{bottom:425.346667pt;}
.y78{bottom:430.146667pt;}
.y4c{bottom:432.706667pt;}
.y1e{bottom:433.826667pt;}
.y94{bottom:436.226667pt;}
.ye4{bottom:439.906667pt;}
.yfb{bottom:444.866667pt;}
.y77{bottom:450.466667pt;}
.y4b{bottom:452.226667pt;}
.y1d{bottom:453.346667pt;}
.ye3{bottom:459.426667pt;}
.yfa{bottom:464.386667pt;}
.y93{bottom:468.066667pt;}
.y76{bottom:469.986667pt;}
.y4a{bottom:471.746667pt;}
.y1c{bottom:472.866667pt;}
.ye2{bottom:479.106667pt;}
.yf9{bottom:483.906667pt;}
.y75{bottom:490.466667pt;}
.y49{bottom:491.266667pt;}
.y1b{bottom:492.546667pt;}
.yb4{bottom:495.840000pt;}
.ye1{bottom:498.626667pt;}
.y92{bottom:499.746667pt;}
.yf8{bottom:503.453333pt;}
.y74{bottom:510.013333pt;}
.y48{bottom:510.813333pt;}
.y1a{bottom:512.093333pt;}
.ye0{bottom:518.173333pt;}
.yf7{bottom:522.973333pt;}
.y73{bottom:529.533333pt;}
.y47{bottom:530.333333pt;}
.y91{bottom:531.453333pt;}
.y19{bottom:531.613333pt;}
.ydf{bottom:537.693333pt;}
.yf6{bottom:542.493333pt;}
.ybc{bottom:545.760000pt;}
.y46{bottom:549.853333pt;}
.y18{bottom:551.133333pt;}
.yb6{bottom:551.360000pt;}
.yde{bottom:557.213333pt;}
.yb1{bottom:560.480000pt;}
.yc4{bottom:562.013333pt;}
.y90{bottom:563.293333pt;}
.y45{bottom:569.373333pt;}
.y17{bottom:570.653333pt;}
.ydd{bottom:576.733333pt;}
.yb0{bottom:579.293333pt;}
.yb3{bottom:580.160000pt;}
.y72{bottom:581.533333pt;}
.y44{bottom:588.893333pt;}
.y16{bottom:590.173333pt;}
.y8f{bottom:594.973333pt;}
.ydc{bottom:596.253333pt;}
.y71{bottom:601.213333pt;}
.y43{bottom:608.413333pt;}
.y15{bottom:609.693333pt;}
.ydb{bottom:615.773333pt;}
.y70{bottom:620.733333pt;}
.y8e{bottom:626.813333pt;}
.yac{bottom:627.200000pt;}
.y42{bottom:627.933333pt;}
.y14{bottom:629.213333pt;}
.yda{bottom:635.293333pt;}
.y6f{bottom:640.253333pt;}
.y41{bottom:647.453333pt;}
.y13{bottom:647.613333pt;}
.yd9{bottom:654.813333pt;}
.y8d{bottom:658.493333pt;}
.y6e{bottom:659.773333pt;}
.y12{bottom:665.693333pt;}
.y40{bottom:666.973333pt;}
.yab{bottom:672.640000pt;}
.yd8{bottom:674.333333pt;}
.y6d{bottom:679.293333pt;}
.ya6{bottom:679.520000pt;}
.y11{bottom:685.213333pt;}
.y3f{bottom:686.653333pt;}
.y8c{bottom:690.173333pt;}
.yd7{bottom:693.853333pt;}
.ya4{bottom:698.080000pt;}
.y6c{bottom:698.813333pt;}
.y10{bottom:703.613333pt;}
.y3e{bottom:706.173333pt;}
.yd6{bottom:713.373333pt;}
.ya9{bottom:714.880000pt;}
.yc1{bottom:717.120000pt;}
.y6b{bottom:718.333333pt;}
.yf{bottom:720.413333pt;}
.y8b{bottom:722.013333pt;}
.y3d{bottom:725.693333pt;}
.yd5{bottom:732.893333pt;}
.y6a{bottom:737.853333pt;}
.ye{bottom:738.333333pt;}
.y3c{bottom:745.213333pt;}
.ya2{bottom:748.640000pt;}
.yd4{bottom:752.413333pt;}
.y8a{bottom:753.733333pt;}
.y69{bottom:757.413333pt;}
.yd{bottom:758.053333pt;}
.y3b{bottom:764.773333pt;}
.yd3{bottom:772.133333pt;}
.y68{bottom:776.933333pt;}
.yc{bottom:777.573333pt;}
.y3a{bottom:784.293333pt;}
.y89{bottom:785.573333pt;}
.yd2{bottom:791.653333pt;}
.y67{bottom:796.453333pt;}
.yb{bottom:797.093333pt;}
.y39{bottom:803.813333pt;}
.yae{bottom:804.160000pt;}
.y66{bottom:815.973333pt;}
.y88{bottom:816.293333pt;}
.ya{bottom:816.613333pt;}
.y38{bottom:823.333333pt;}
.y65{bottom:835.493333pt;}
.y9{bottom:836.133333pt;}
.y37{bottom:842.853333pt;}
.y64{bottom:855.013333pt;}
.y36{bottom:862.373333pt;}
.y8{bottom:863.653333pt;}
.y63{bottom:874.693333pt;}
.y35{bottom:881.893333pt;}
.y7{bottom:891.173333pt;}
.y62{bottom:894.213333pt;}
.y34{bottom:901.413333pt;}
.y61{bottom:913.733333pt;}
.y6{bottom:918.693333pt;}
.y33{bottom:920.933333pt;}
.y60{bottom:933.253333pt;}
.y32{bottom:940.453333pt;}
.y5{bottom:946.533333pt;}
.y5f{bottom:952.773333pt;}
.y31{bottom:960.133333pt;}
.y4{bottom:967.813333pt;}
.y5e{bottom:972.293333pt;}
.y30{bottom:979.653333pt;}
.y3{bottom:988.933333pt;}
.y5d{bottom:991.813333pt;}
.y2{bottom:1010.080000pt;}
.y2f{bottom:1011.360000pt;}
.hf{height:11.200000pt;}
.hc{height:14.400000pt;}
.h10{height:14.560000pt;}
.h14{height:23.520000pt;}
.ha{height:24.800000pt;}
.h11{height:27.520000pt;}
.h16{height:27.680000pt;}
.hd{height:28.640000pt;}
.h17{height:32.320000pt;}
.h15{height:35.200000pt;}
.h13{height:36.960000pt;}
.he{height:42.649687pt;}
.h12{height:47.742188pt;}
.hb{height:47.869500pt;}
.h9{height:51.500000pt;}
.h2{height:58.563750pt;}
.h5{height:61.295000pt;}
.h4{height:63.656250pt;}
.h18{height:63.769688pt;}
.h6{height:65.531250pt;}
.h7{height:65.781915pt;}
.h8{height:66.625000pt;}
.h3{height:70.773750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:48.160000pt;}
.wc{width:61.120000pt;}
.w8{width:72.000000pt;}
.w6{width:74.080000pt;}
.wb{width:89.920000pt;}
.w3{width:112.960000pt;}
.w5{width:115.360000pt;}
.w9{width:124.480000pt;}
.wa{width:177.760000pt;}
.w7{width:294.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.666667pt;}
.x11{left:13.306667pt;}
.x17{left:22.146667pt;}
.x1f{left:26.906667pt;}
.x1e{left:31.066667pt;}
.x14{left:35.773333pt;}
.x1c{left:52.666667pt;}
.x4{left:96.031988pt;}
.x5{left:120.031988pt;}
.x6{left:144.026655pt;}
.x3{left:147.706655pt;}
.x1a{left:160.480000pt;}
.x9{left:168.026655pt;}
.x1b{left:170.106655pt;}
.x7{left:192.026655pt;}
.xd{left:207.840000pt;}
.x8{left:216.026655pt;}
.x1d{left:229.120000pt;}
.x10{left:238.240000pt;}
.xa{left:275.360000pt;}
.x16{left:283.040000pt;}
.x20{left:302.560000pt;}
.x12{left:316.000000pt;}
.x18{left:342.720000pt;}
.xf{left:349.120000pt;}
.x2{left:396.866655pt;}
.x15{left:409.120000pt;}
.xe{left:410.720000pt;}
.x19{left:415.586655pt;}
.xc{left:461.280000pt;}
.x13{left:495.293322pt;}
.x22{left:561.853322pt;}
.x21{left:579.840000pt;}
.x1{left:690.533322pt;}
}




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