
    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_c82f4a7392bf6028deea50c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_680d7a85a1d2a69451065275.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5f4a093d5a383fda4766ea3a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d54b34b26c9b2a3ae644809b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2d2c8647b05401f10c37965f.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_f7b1a8aceba1fa486c8a8fbb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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_db9e2bb783827d63c816b559.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_a9f998a95460f25b3e8f0f40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694336;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_65f34bfe0223ab6615417089.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_b90b8e010d4f22ddea1e3247.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c48da8b6afa09a0d1cb7fb4e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_87e5d326c5d32828c1cdcf3e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4c00ab652898f62ebb587b8c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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);}
.v6{vertical-align:-69.960000px;}
.v2{vertical-align:-27.000000px;}
.v7{vertical-align:-13.680000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v8{vertical-align:13.680000px;}
.vb{vertical-align:21.960000px;}
.v1{vertical-align:27.000000px;}
.va{vertical-align:44.280000px;}
.v9{vertical-align:50.040000px;}
.lsb{letter-spacing:-0.346800px;}
.ls5{letter-spacing:-0.270000px;}
.ls2a{letter-spacing:-0.233400px;}
.ls15{letter-spacing:-0.220200px;}
.ls16{letter-spacing:-0.186600px;}
.ls32{letter-spacing:-0.183000px;}
.ls33{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.166800px;}
.lsc{letter-spacing:-0.153600px;}
.ls22{letter-spacing:-0.135000px;}
.ls2c{letter-spacing:-0.059400px;}
.ls8{letter-spacing:-0.053280px;}
.ls2b{letter-spacing:-0.030600px;}
.ls1f{letter-spacing:-0.027000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls17{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.091200px;}
.lsf{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.123600px;}
.ls34{letter-spacing:0.124200px;}
.ls7{letter-spacing:0.139800px;}
.ls19{letter-spacing:0.140040px;}
.ls23{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.153360px;}
.ls6{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.210000px;}
.ls1a{letter-spacing:0.586440px;}
.ls10{letter-spacing:1.140480px;}
.ls18{letter-spacing:1.433160px;}
.ls2e{letter-spacing:1.452600px;}
.ls24{letter-spacing:1.694520px;}
.ls2f{letter-spacing:1.728000px;}
.ls31{letter-spacing:1.892520px;}
.ls13{letter-spacing:2.215440px;}
.lse{letter-spacing:2.250000px;}
.ls11{letter-spacing:2.252520px;}
.ls2d{letter-spacing:2.612520px;}
.ls27{letter-spacing:2.961360px;}
.ls25{letter-spacing:3.321360px;}
.ls26{letter-spacing:6.570000px;}
.ls1b{letter-spacing:11.610000px;}
.ls1d{letter-spacing:13.050000px;}
.ls12{letter-spacing:15.570000px;}
.ls30{letter-spacing:16.650360px;}
.ls29{letter-spacing:21.857400px;}
.ls28{letter-spacing:22.778640px;}
.ls2{letter-spacing:23.246640px;}
.ls35{letter-spacing:23.606640px;}
.ls0{letter-spacing:112.886640px;}
.lsd{letter-spacing:324.450000px;}
.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;}
}
.ws15{word-spacing:-15.930000px;}
.ws13{word-spacing:-15.858000px;}
.ws14{word-spacing:-15.750000px;}
.ws2{word-spacing:-15.210000px;}
.ws3{word-spacing:-15.169800px;}
.wsc{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.030000px;}
.wsf{word-spacing:-15.012480px;}
.ws4{word-spacing:-14.976720px;}
.ws11{word-spacing:-14.876400px;}
.ws12{word-spacing:-14.863200px;}
.ws10{word-spacing:-14.861880px;}
.ws6{word-spacing:-14.850000px;}
.ws1c{word-spacing:-14.847000px;}
.wsb{word-spacing:-14.809800px;}
.ws17{word-spacing:-14.796600px;}
.ws19{word-spacing:-14.493600px;}
.wse{word-spacing:-13.246560px;}
.ws9{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.039800px;}
.ws1a{word-spacing:-10.474200px;}
.ws5{word-spacing:-9.732960px;}
.ws1{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.373200px;}
.wsa{word-spacing:-9.357600px;}
.ws18{word-spacing:-9.235800px;}
.ws1b{word-spacing:-1.461600px;}
.ws1d{word-spacing:-0.160920px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:0.183960px;}
.ws1f{word-spacing:11.106360px;}
.ws1e{word-spacing:11.466360px;}
._5{margin-left:-12.393360px;}
._19{margin-left:-5.184240px;}
._18{margin-left:-4.014960px;}
._1{margin-left:-1.503000px;}
._4{width:1.006560px;}
._9{width:2.181600px;}
._a{width:3.244680px;}
._10{width:4.869720px;}
._14{width:5.884200px;}
._b{width:7.094160px;}
._e{width:8.306640px;}
._f{width:9.691560px;}
._11{width:10.948320px;}
._d{width:12.384720px;}
._c{width:13.767480px;}
._6{width:16.052040px;}
._15{width:17.383320px;}
._12{width:18.697320px;}
._1c{width:19.899720px;}
._13{width:21.943800px;}
._16{width:23.446800px;}
._1d{width:24.709320px;}
._17{width:26.155080px;}
._7{width:27.349920px;}
._8{width:28.640640px;}
._1a{width:29.890080px;}
._1b{width:30.969960px;}
._1f{width:33.787440px;}
._20{width:35.442960px;}
._1e{width:54.649080px;}
._3{width:195.030000px;}
._2{width:584.919600px;}
._0{width:614.970000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:0.090000px;}
.y93{bottom:0.270000px;}
.ya3{bottom:0.450000px;}
.y62{bottom:3.060000px;}
.y6f{bottom:3.150000px;}
.y4d{bottom:3.240000px;}
.y4b{bottom:3.330000px;}
.ya8{bottom:3.420000px;}
.y4f{bottom:3.510000px;}
.y6e{bottom:5.490000px;}
.y71{bottom:7.470000px;}
.y65{bottom:7.560000px;}
.y92{bottom:11.340000px;}
.y94{bottom:21.420000px;}
.y63{bottom:48.060000px;}
.y2{bottom:109.710000px;}
.y91{bottom:218.370000px;}
.y77{bottom:220.440000px;}
.y31{bottom:222.240000px;}
.ya9{bottom:224.580000px;}
.y5e{bottom:227.370000px;}
.ya7{bottom:238.530000px;}
.y30{bottom:239.430000px;}
.y76{bottom:240.690000px;}
.ycc{bottom:242.580000px;}
.y5d{bottom:247.530000px;}
.ya5{bottom:256.170000px;}
.y2f{bottom:256.710000px;}
.y90{bottom:258.960000px;}
.ycb{bottom:259.770000px;}
.y75{bottom:260.940000px;}
.y5c{bottom:267.420000px;}
.y2e{bottom:273.990000px;}
.y8f{bottom:276.150000px;}
.yca{bottom:277.050000px;}
.y74{bottom:281.100000px;}
.y5b{bottom:287.220000px;}
.y2d{bottom:291.180000px;}
.y8e{bottom:293.700000px;}
.yc9{bottom:294.330000px;}
.y73{bottom:301.350000px;}
.y5a{bottom:307.110000px;}
.y2c{bottom:308.460000px;}
.y8d{bottom:311.340000px;}
.yc8{bottom:311.520000px;}
.y72{bottom:321.240000px;}
.y2b{bottom:325.560000px;}
.y59{bottom:326.910000px;}
.yc7{bottom:328.800000px;}
.y8c{bottom:328.890000px;}
.y70{bottom:335.910000px;}
.y2a{bottom:342.930000px;}
.yc6{bottom:346.080000px;}
.y8b{bottom:346.170000px;}
.y58{bottom:347.160000px;}
.y6d{bottom:359.040000px;}
.y29{bottom:360.210000px;}
.yc5{bottom:363.270000px;}
.y8a{bottom:363.450000px;}
.y57{bottom:367.320000px;}
.y28{bottom:377.400000px;}
.yc4{bottom:380.550000px;}
.y89{bottom:383.070000px;}
.y56{bottom:387.210000px;}
.y27{bottom:394.680000px;}
.y88{bottom:397.020000px;}
.yc3{bottom:397.830000px;}
.y55{bottom:407.010000px;}
.y26{bottom:411.960000px;}
.yc2{bottom:415.020000px;}
.y54{bottom:426.900000px;}
.y25{bottom:429.150000px;}
.yc1{bottom:432.300000px;}
.ya4{bottom:437.970000px;}
.y24{bottom:446.430000px;}
.y53{bottom:446.700000px;}
.yc0{bottom:449.580000px;}
.ya2{bottom:455.700000px;}
.y23{bottom:463.710000px;}
.y52{bottom:466.500000px;}
.ybf{bottom:466.770000px;}
.y22{bottom:480.900000px;}
.y51{bottom:483.600000px;}
.ybe{bottom:484.050000px;}
.y21{bottom:498.180000px;}
.ybd{bottom:501.330000px;}
.y50{bottom:505.020000px;}
.y20{bottom:515.460000px;}
.ybc{bottom:518.520000px;}
.y4e{bottom:523.560000px;}
.y1f{bottom:532.650000px;}
.ybb{bottom:535.800000px;}
.y6c{bottom:544.530000px;}
.y4c{bottom:545.790000px;}
.y1e{bottom:549.930000px;}
.yba{bottom:553.080000px;}
.y6b{bottom:564.600000px;}
.y1d{bottom:567.210000px;}
.y4a{bottom:567.930000px;}
.yb9{bottom:570.270000px;}
.y1c{bottom:584.400000px;}
.y87{bottom:585.030000px;}
.y6a{bottom:585.390000px;}
.yb8{bottom:587.550000px;}
.y1b{bottom:601.680000px;}
.y86{bottom:602.220000px;}
.yb7{bottom:604.740000px;}
.y69{bottom:606.090000px;}
.y49{bottom:608.820000px;}
.y1a{bottom:618.990000px;}
.y85{bottom:619.530000px;}
.yb6{bottom:622.050000px;}
.y68{bottom:626.370000px;}
.y48{bottom:628.620000px;}
.y19{bottom:636.180000px;}
.y84{bottom:636.810000px;}
.yb5{bottom:639.150000px;}
.ya1{bottom:639.870000px;}
.y67{bottom:646.530000px;}
.y47{bottom:648.510000px;}
.y18{bottom:653.460000px;}
.y83{bottom:654.000000px;}
.yb4{bottom:656.520000px;}
.ya0{bottom:657.240000px;}
.y66{bottom:666.150000px;}
.y46{bottom:668.310000px;}
.y17{bottom:670.740000px;}
.y82{bottom:671.280000px;}
.y9f{bottom:671.460000px;}
.yb3{bottom:673.800000px;}
.y64{bottom:680.100000px;}
.y16{bottom:687.930000px;}
.y45{bottom:688.200000px;}
.y81{bottom:688.560000px;}
.yb2{bottom:691.080000px;}
.y61{bottom:703.320000px;}
.y15{bottom:705.210000px;}
.y80{bottom:705.750000px;}
.yb1{bottom:708.270000px;}
.y14{bottom:722.400000px;}
.y7f{bottom:723.030000px;}
.y44{bottom:723.660000px;}
.yb0{bottom:725.550000px;}
.y13{bottom:739.680000px;}
.y7e{bottom:740.310000px;}
.y43{bottom:742.830000px;}
.y12{bottom:756.960000px;}
.y7d{bottom:757.500000px;}
.y42{bottom:760.020000px;}
.y11{bottom:773.970000px;}
.y7c{bottom:777.210000px;}
.y41{bottom:777.300000px;}
.y7b{bottom:791.160000px;}
.y10{bottom:791.430000px;}
.yaf{bottom:794.490000px;}
.y40{bottom:794.580000px;}
.yf{bottom:808.710000px;}
.y3f{bottom:811.770000px;}
.yae{bottom:812.130000px;}
.ye{bottom:825.900000px;}
.y3e{bottom:829.050000px;}
.yad{bottom:829.410000px;}
.yd{bottom:843.180000px;}
.y3d{bottom:846.330000px;}
.yac{bottom:846.600000px;}
.yc{bottom:860.460000px;}
.y9e{bottom:862.890000px;}
.y3c{bottom:863.520000px;}
.yab{bottom:863.700000px;}
.yb{bottom:877.470000px;}
.y9d{bottom:880.080000px;}
.y3b{bottom:880.800000px;}
.yaa{bottom:881.160000px;}
.ya{bottom:894.930000px;}
.y9c{bottom:897.360000px;}
.y3a{bottom:898.350000px;}
.y9{bottom:912.030000px;}
.y9b{bottom:914.550000px;}
.y39{bottom:915.630000px;}
.y8{bottom:930.480000px;}
.y9a{bottom:932.190000px;}
.y38{bottom:932.910000px;}
.y99{bottom:949.470000px;}
.y37{bottom:950.100000px;}
.y7{bottom:954.600000px;}
.y98{bottom:966.660000px;}
.y36{bottom:967.380000px;}
.y6{bottom:978.810000px;}
.y97{bottom:983.940000px;}
.y7a{bottom:984.300000px;}
.y35{bottom:984.660000px;}
.y96{bottom:1001.220000px;}
.y79{bottom:1001.490000px;}
.y5{bottom:1001.670000px;}
.y34{bottom:1001.850000px;}
.y60{bottom:1016.160000px;}
.y95{bottom:1018.410000px;}
.y78{bottom:1018.770000px;}
.y4{bottom:1018.950000px;}
.y33{bottom:1019.130000px;}
.y5f{bottom:1035.960000px;}
.y3{bottom:1036.140000px;}
.y32{bottom:1036.320000px;}
.y1{bottom:1091.610000px;}
.h17{height:1.995469px;}
.ha{height:17.190000px;}
.h9{height:17.280000px;}
.h1a{height:17.640000px;}
.h18{height:17.730000px;}
.h11{height:23.130000px;}
.he{height:23.220000px;}
.h13{height:37.080000px;}
.hb{height:45.646348px;}
.hc{height:53.896641px;}
.h1c{height:58.975137px;}
.h2{height:59.004492px;}
.h1b{height:59.973223px;}
.h5{height:60.589687px;}
.h7{height:61.793886px;}
.hf{height:61.831055px;}
.h3{height:62.585859px;}
.h12{height:63.492188px;}
.h8{height:65.158594px;}
.h6{height:66.183750px;}
.h4{height:84.535312px;}
.h15{height:89.926348px;}
.h14{height:96.233203px;}
.h10{height:179.460000px;}
.h16{height:180.930000px;}
.h19{height:181.800000px;}
.hd{height:306.720000px;}
.h0{height:1262.790000px;}
.h1{height:1263.000000px;}
.wb{width:55.350000px;}
.w5{width:95.940000px;}
.w4{width:95.970000px;}
.w3{width:192.600000px;}
.w2{width:192.630000px;}
.w6{width:270.930000px;}
.w7{width:272.910000px;}
.wd{width:279.750000px;}
.wc{width:281.100000px;}
.w9{width:286.140000px;}
.w8{width:298.110000px;}
.wa{width:486.600000px;}
.we{width:560.850000px;}
.w0{width:892.890000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:9.360000px;}
.x14{left:13.770000px;}
.x13{left:17.550000px;}
.x10{left:19.170000px;}
.x15{left:21.420000px;}
.x28{left:28.890000px;}
.xd{left:38.250000px;}
.xb{left:50.220000px;}
.x19{left:132.390000px;}
.x20{left:139.590000px;}
.x2d{left:143.010000px;}
.x30{left:144.450000px;}
.x1f{left:145.980000px;}
.x1b{left:154.380000px;}
.x2b{left:166.080000px;}
.x25{left:172.650000px;}
.x16{left:174.540000px;}
.x1{left:180.750000px;}
.x9{left:181.920000px;}
.x4{left:183.450000px;}
.x1a{left:191.730000px;}
.x5{left:202.080000px;}
.xa{left:205.140000px;}
.x17{left:255.090000px;}
.x6{left:259.680000px;}
.x31{left:267.690000px;}
.x18{left:271.560000px;}
.x26{left:273.000000px;}
.x2c{left:279.660000px;}
.x1e{left:284.880000px;}
.x2f{left:286.230000px;}
.x2e{left:287.760000px;}
.x24{left:294.870000px;}
.x1c{left:296.760000px;}
.x11{left:301.800000px;}
.x7{left:320.610000px;}
.x21{left:321.690000px;}
.x8{left:331.050000px;}
.x2a{left:335.370000px;}
.xc{left:398.490000px;}
.x3{left:430.260000px;}
.x2{left:446.460000px;}
.x1d{left:452.490000px;}
.x12{left:495.240000px;}
.x29{left:589.200000px;}
.x23{left:590.460000px;}
.xe{left:591.900000px;}
.x22{left:647.640000px;}
.x27{left:659.250000px;}
@media print{
.v6{vertical-align:-62.186667pt;}
.v2{vertical-align:-24.000000pt;}
.v7{vertical-align:-12.160000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v8{vertical-align:12.160000pt;}
.vb{vertical-align:19.520000pt;}
.v1{vertical-align:24.000000pt;}
.va{vertical-align:39.360000pt;}
.v9{vertical-align:44.480000pt;}
.lsb{letter-spacing:-0.308267pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls2a{letter-spacing:-0.207467pt;}
.ls15{letter-spacing:-0.195733pt;}
.ls16{letter-spacing:-0.165867pt;}
.ls32{letter-spacing:-0.162667pt;}
.ls33{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.148267pt;}
.lsc{letter-spacing:-0.136533pt;}
.ls22{letter-spacing:-0.120000pt;}
.ls2c{letter-spacing:-0.052800pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2b{letter-spacing:-0.027200pt;}
.ls1f{letter-spacing:-0.024000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls17{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.081067pt;}
.lsf{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.109867pt;}
.ls34{letter-spacing:0.110400pt;}
.ls7{letter-spacing:0.124267pt;}
.ls19{letter-spacing:0.124480pt;}
.ls23{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.136320pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.186667pt;}
.ls1a{letter-spacing:0.521280pt;}
.ls10{letter-spacing:1.013760pt;}
.ls18{letter-spacing:1.273920pt;}
.ls2e{letter-spacing:1.291200pt;}
.ls24{letter-spacing:1.506240pt;}
.ls2f{letter-spacing:1.536000pt;}
.ls31{letter-spacing:1.682240pt;}
.ls13{letter-spacing:1.969280pt;}
.lse{letter-spacing:2.000000pt;}
.ls11{letter-spacing:2.002240pt;}
.ls2d{letter-spacing:2.322240pt;}
.ls27{letter-spacing:2.632320pt;}
.ls25{letter-spacing:2.952320pt;}
.ls26{letter-spacing:5.840000pt;}
.ls1b{letter-spacing:10.320000pt;}
.ls1d{letter-spacing:11.600000pt;}
.ls12{letter-spacing:13.840000pt;}
.ls30{letter-spacing:14.800320pt;}
.ls29{letter-spacing:19.428800pt;}
.ls28{letter-spacing:20.247680pt;}
.ls2{letter-spacing:20.663680pt;}
.ls35{letter-spacing:20.983680pt;}
.ls0{letter-spacing:100.343680pt;}
.lsd{letter-spacing:288.400000pt;}
.ws15{word-spacing:-14.160000pt;}
.ws13{word-spacing:-14.096000pt;}
.ws14{word-spacing:-14.000000pt;}
.ws2{word-spacing:-13.520000pt;}
.ws3{word-spacing:-13.484267pt;}
.wsc{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.344427pt;}
.ws4{word-spacing:-13.312640pt;}
.ws11{word-spacing:-13.223467pt;}
.ws12{word-spacing:-13.211733pt;}
.ws10{word-spacing:-13.210560pt;}
.ws6{word-spacing:-13.200000pt;}
.ws1c{word-spacing:-13.197333pt;}
.wsb{word-spacing:-13.164267pt;}
.ws17{word-spacing:-13.152533pt;}
.ws19{word-spacing:-12.883200pt;}
.wse{word-spacing:-11.774720pt;}
.ws9{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.590933pt;}
.ws1a{word-spacing:-9.310400pt;}
.ws5{word-spacing:-8.651520pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.331733pt;}
.wsa{word-spacing:-8.317867pt;}
.ws18{word-spacing:-8.209600pt;}
.ws1b{word-spacing:-1.299200pt;}
.ws1d{word-spacing:-0.143040pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:0.163520pt;}
.ws1f{word-spacing:9.872320pt;}
.ws1e{word-spacing:10.192320pt;}
._5{margin-left:-11.016320pt;}
._19{margin-left:-4.608213pt;}
._18{margin-left:-3.568853pt;}
._1{margin-left:-1.336000pt;}
._4{width:0.894720pt;}
._9{width:1.939200pt;}
._a{width:2.884160pt;}
._10{width:4.328640pt;}
._14{width:5.230400pt;}
._b{width:6.305920pt;}
._e{width:7.383680pt;}
._f{width:8.614720pt;}
._11{width:9.731840pt;}
._d{width:11.008640pt;}
._c{width:12.237760pt;}
._6{width:14.268480pt;}
._15{width:15.451840pt;}
._12{width:16.619840pt;}
._1c{width:17.688640pt;}
._13{width:19.505600pt;}
._16{width:20.841600pt;}
._1d{width:21.963840pt;}
._17{width:23.248960pt;}
._7{width:24.311040pt;}
._8{width:25.458347pt;}
._1a{width:26.568960pt;}
._1b{width:27.528853pt;}
._1f{width:30.033280pt;}
._20{width:31.504853pt;}
._1e{width:48.576960pt;}
._3{width:173.360000pt;}
._2{width:519.928533pt;}
._0{width:546.640000pt;}
.fs7{font-size:2.560000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:0.080000pt;}
.y93{bottom:0.240000pt;}
.ya3{bottom:0.400000pt;}
.y62{bottom:2.720000pt;}
.y6f{bottom:2.800000pt;}
.y4d{bottom:2.880000pt;}
.y4b{bottom:2.960000pt;}
.ya8{bottom:3.040000pt;}
.y4f{bottom:3.120000pt;}
.y6e{bottom:4.880000pt;}
.y71{bottom:6.640000pt;}
.y65{bottom:6.720000pt;}
.y92{bottom:10.080000pt;}
.y94{bottom:19.040000pt;}
.y63{bottom:42.720000pt;}
.y2{bottom:97.520000pt;}
.y91{bottom:194.106667pt;}
.y77{bottom:195.946667pt;}
.y31{bottom:197.546667pt;}
.ya9{bottom:199.626667pt;}
.y5e{bottom:202.106667pt;}
.ya7{bottom:212.026667pt;}
.y30{bottom:212.826667pt;}
.y76{bottom:213.946667pt;}
.ycc{bottom:215.626667pt;}
.y5d{bottom:220.026667pt;}
.ya5{bottom:227.706667pt;}
.y2f{bottom:228.186667pt;}
.y90{bottom:230.186667pt;}
.ycb{bottom:230.906667pt;}
.y75{bottom:231.946667pt;}
.y5c{bottom:237.706667pt;}
.y2e{bottom:243.546667pt;}
.y8f{bottom:245.466667pt;}
.yca{bottom:246.266667pt;}
.y74{bottom:249.866667pt;}
.y5b{bottom:255.306667pt;}
.y2d{bottom:258.826667pt;}
.y8e{bottom:261.066667pt;}
.yc9{bottom:261.626667pt;}
.y73{bottom:267.866667pt;}
.y5a{bottom:272.986667pt;}
.y2c{bottom:274.186667pt;}
.y8d{bottom:276.746667pt;}
.yc8{bottom:276.906667pt;}
.y72{bottom:285.546667pt;}
.y2b{bottom:289.386667pt;}
.y59{bottom:290.586667pt;}
.yc7{bottom:292.266667pt;}
.y8c{bottom:292.346667pt;}
.y70{bottom:298.586667pt;}
.y2a{bottom:304.826667pt;}
.yc6{bottom:307.626667pt;}
.y8b{bottom:307.706667pt;}
.y58{bottom:308.586667pt;}
.y6d{bottom:319.146667pt;}
.y29{bottom:320.186667pt;}
.yc5{bottom:322.906667pt;}
.y8a{bottom:323.066667pt;}
.y57{bottom:326.506667pt;}
.y28{bottom:335.466667pt;}
.yc4{bottom:338.266667pt;}
.y89{bottom:340.506667pt;}
.y56{bottom:344.186667pt;}
.y27{bottom:350.826667pt;}
.y88{bottom:352.906667pt;}
.yc3{bottom:353.626667pt;}
.y55{bottom:361.786667pt;}
.y26{bottom:366.186667pt;}
.yc2{bottom:368.906667pt;}
.y54{bottom:379.466667pt;}
.y25{bottom:381.466667pt;}
.yc1{bottom:384.266667pt;}
.ya4{bottom:389.306667pt;}
.y24{bottom:396.826667pt;}
.y53{bottom:397.066667pt;}
.yc0{bottom:399.626667pt;}
.ya2{bottom:405.066667pt;}
.y23{bottom:412.186667pt;}
.y52{bottom:414.666667pt;}
.ybf{bottom:414.906667pt;}
.y22{bottom:427.466667pt;}
.y51{bottom:429.866667pt;}
.ybe{bottom:430.266667pt;}
.y21{bottom:442.826667pt;}
.ybd{bottom:445.626667pt;}
.y50{bottom:448.906667pt;}
.y20{bottom:458.186667pt;}
.ybc{bottom:460.906667pt;}
.y4e{bottom:465.386667pt;}
.y1f{bottom:473.466667pt;}
.ybb{bottom:476.266667pt;}
.y6c{bottom:484.026667pt;}
.y4c{bottom:485.146667pt;}
.y1e{bottom:488.826667pt;}
.yba{bottom:491.626667pt;}
.y6b{bottom:501.866667pt;}
.y1d{bottom:504.186667pt;}
.y4a{bottom:504.826667pt;}
.yb9{bottom:506.906667pt;}
.y1c{bottom:519.466667pt;}
.y87{bottom:520.026667pt;}
.y6a{bottom:520.346667pt;}
.yb8{bottom:522.266667pt;}
.y1b{bottom:534.826667pt;}
.y86{bottom:535.306667pt;}
.yb7{bottom:537.546667pt;}
.y69{bottom:538.746667pt;}
.y49{bottom:541.173333pt;}
.y1a{bottom:550.213333pt;}
.y85{bottom:550.693333pt;}
.yb6{bottom:552.933333pt;}
.y68{bottom:556.773333pt;}
.y48{bottom:558.773333pt;}
.y19{bottom:565.493333pt;}
.y84{bottom:566.053333pt;}
.yb5{bottom:568.133333pt;}
.ya1{bottom:568.773333pt;}
.y67{bottom:574.693333pt;}
.y47{bottom:576.453333pt;}
.y18{bottom:580.853333pt;}
.y83{bottom:581.333333pt;}
.yb4{bottom:583.573333pt;}
.ya0{bottom:584.213333pt;}
.y66{bottom:592.133333pt;}
.y46{bottom:594.053333pt;}
.y17{bottom:596.213333pt;}
.y82{bottom:596.693333pt;}
.y9f{bottom:596.853333pt;}
.yb3{bottom:598.933333pt;}
.y64{bottom:604.533333pt;}
.y16{bottom:611.493333pt;}
.y45{bottom:611.733333pt;}
.y81{bottom:612.053333pt;}
.yb2{bottom:614.293333pt;}
.y61{bottom:625.173333pt;}
.y15{bottom:626.853333pt;}
.y80{bottom:627.333333pt;}
.yb1{bottom:629.573333pt;}
.y14{bottom:642.133333pt;}
.y7f{bottom:642.693333pt;}
.y44{bottom:643.253333pt;}
.yb0{bottom:644.933333pt;}
.y13{bottom:657.493333pt;}
.y7e{bottom:658.053333pt;}
.y43{bottom:660.293333pt;}
.y12{bottom:672.853333pt;}
.y7d{bottom:673.333333pt;}
.y42{bottom:675.573333pt;}
.y11{bottom:687.973333pt;}
.y7c{bottom:690.853333pt;}
.y41{bottom:690.933333pt;}
.y7b{bottom:703.253333pt;}
.y10{bottom:703.493333pt;}
.yaf{bottom:706.213333pt;}
.y40{bottom:706.293333pt;}
.yf{bottom:718.853333pt;}
.y3f{bottom:721.573333pt;}
.yae{bottom:721.893333pt;}
.ye{bottom:734.133333pt;}
.y3e{bottom:736.933333pt;}
.yad{bottom:737.253333pt;}
.yd{bottom:749.493333pt;}
.y3d{bottom:752.293333pt;}
.yac{bottom:752.533333pt;}
.yc{bottom:764.853333pt;}
.y9e{bottom:767.013333pt;}
.y3c{bottom:767.573333pt;}
.yab{bottom:767.733333pt;}
.yb{bottom:779.973333pt;}
.y9d{bottom:782.293333pt;}
.y3b{bottom:782.933333pt;}
.yaa{bottom:783.253333pt;}
.ya{bottom:795.493333pt;}
.y9c{bottom:797.653333pt;}
.y3a{bottom:798.533333pt;}
.y9{bottom:810.693333pt;}
.y9b{bottom:812.933333pt;}
.y39{bottom:813.893333pt;}
.y8{bottom:827.093333pt;}
.y9a{bottom:828.613333pt;}
.y38{bottom:829.253333pt;}
.y99{bottom:843.973333pt;}
.y37{bottom:844.533333pt;}
.y7{bottom:848.533333pt;}
.y98{bottom:859.253333pt;}
.y36{bottom:859.893333pt;}
.y6{bottom:870.053333pt;}
.y97{bottom:874.613333pt;}
.y7a{bottom:874.933333pt;}
.y35{bottom:875.253333pt;}
.y96{bottom:889.973333pt;}
.y79{bottom:890.213333pt;}
.y5{bottom:890.373333pt;}
.y34{bottom:890.533333pt;}
.y60{bottom:903.253333pt;}
.y95{bottom:905.253333pt;}
.y78{bottom:905.573333pt;}
.y4{bottom:905.733333pt;}
.y33{bottom:905.893333pt;}
.y5f{bottom:920.853333pt;}
.y3{bottom:921.013333pt;}
.y32{bottom:921.173333pt;}
.y1{bottom:970.320000pt;}
.h17{height:1.773750pt;}
.ha{height:15.280000pt;}
.h9{height:15.360000pt;}
.h1a{height:15.680000pt;}
.h18{height:15.760000pt;}
.h11{height:20.560000pt;}
.he{height:20.640000pt;}
.h13{height:32.960000pt;}
.hb{height:40.574531pt;}
.hc{height:47.908125pt;}
.h1c{height:52.422344pt;}
.h2{height:52.448437pt;}
.h1b{height:53.309531pt;}
.h5{height:53.857500pt;}
.h7{height:54.927899pt;}
.hf{height:54.960938pt;}
.h3{height:55.631875pt;}
.h12{height:56.437500pt;}
.h8{height:57.918750pt;}
.h6{height:58.830000pt;}
.h4{height:75.142500pt;}
.h15{height:79.934531pt;}
.h14{height:85.540625pt;}
.h10{height:159.520000pt;}
.h16{height:160.826667pt;}
.h19{height:161.600000pt;}
.hd{height:272.640000pt;}
.h0{height:1122.480000pt;}
.h1{height:1122.666667pt;}
.wb{width:49.200000pt;}
.w5{width:85.280000pt;}
.w4{width:85.306667pt;}
.w3{width:171.200000pt;}
.w2{width:171.226667pt;}
.w6{width:240.826667pt;}
.w7{width:242.586667pt;}
.wd{width:248.666667pt;}
.wc{width:249.866667pt;}
.w9{width:254.346667pt;}
.w8{width:264.986667pt;}
.wa{width:432.533333pt;}
.we{width:498.533333pt;}
.w0{width:793.680000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:8.320000pt;}
.x14{left:12.240000pt;}
.x13{left:15.600000pt;}
.x10{left:17.040000pt;}
.x15{left:19.040000pt;}
.x28{left:25.680000pt;}
.xd{left:34.000000pt;}
.xb{left:44.640000pt;}
.x19{left:117.680000pt;}
.x20{left:124.080000pt;}
.x2d{left:127.120000pt;}
.x30{left:128.400000pt;}
.x1f{left:129.760000pt;}
.x1b{left:137.226667pt;}
.x2b{left:147.626667pt;}
.x25{left:153.466667pt;}
.x16{left:155.146667pt;}
.x1{left:160.666667pt;}
.x9{left:161.706667pt;}
.x4{left:163.066667pt;}
.x1a{left:170.426667pt;}
.x5{left:179.626667pt;}
.xa{left:182.346667pt;}
.x17{left:226.746667pt;}
.x6{left:230.826667pt;}
.x31{left:237.946667pt;}
.x18{left:241.386667pt;}
.x26{left:242.666667pt;}
.x2c{left:248.586667pt;}
.x1e{left:253.226667pt;}
.x2f{left:254.426667pt;}
.x2e{left:255.786667pt;}
.x24{left:262.106667pt;}
.x1c{left:263.786667pt;}
.x11{left:268.266667pt;}
.x7{left:284.986667pt;}
.x21{left:285.946667pt;}
.x8{left:294.266667pt;}
.x2a{left:298.106667pt;}
.xc{left:354.213333pt;}
.x3{left:382.453333pt;}
.x2{left:396.853333pt;}
.x1d{left:402.213333pt;}
.x12{left:440.213333pt;}
.x29{left:523.733333pt;}
.x23{left:524.853333pt;}
.xe{left:526.133333pt;}
.x22{left:575.680000pt;}
.x27{left:586.000000pt;}
}




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