
    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_9a22e53c7d3f53867eca2ecc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dbb772bf01aed0691a6a4e56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7541fbdb53851ccb0dd644a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_744686661c1a2a4e9e37040c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_af6bcb96de5e7981e5e6c1d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_d305a44845296572f4c84dc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_a1cb4a9422f29b34fba30757.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_71bb55568f29f89436e89cb2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lse{letter-spacing:-2.736000px;}
.lsd{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls6{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.732000px;}
.ls0{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.160000px;}
.ls1a{letter-spacing:3.600000px;}
.ls5{letter-spacing:7.920000px;}
.ls14{letter-spacing:9.360000px;}
.lsa{letter-spacing:10.224000px;}
.ls11{letter-spacing:10.800000px;}
.ls15{letter-spacing:16.560000px;}
.ls13{letter-spacing:16.572000px;}
.ls18{letter-spacing:20.880000px;}
.ls10{letter-spacing:22.320000px;}
.ls17{letter-spacing:29.520000px;}
.ls1c{letter-spacing:33.840000px;}
.ls8{letter-spacing:39.600000px;}
.ls4{letter-spacing:51.120000px;}
.ls1e{letter-spacing:53.424000px;}
.ls9{letter-spacing:72.720000px;}
.ls2{letter-spacing:75.749760px;}
.ls1d{letter-spacing:77.040000px;}
.ls1b{letter-spacing:95.184000px;}
.ls1{letter-spacing:111.869760px;}
.ls7{letter-spacing:136.944000px;}
.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;}
}
.ws1{word-spacing:-24.120000px;}
.ws5{word-spacing:-20.880000px;}
.ws6{word-spacing:-18.504000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.352000px;}
.ws3{word-spacing:-15.264000px;}
.ws2{word-spacing:0.000000px;}
._2a{margin-left:-3.790080px;}
._2{margin-left:-2.736000px;}
._0{margin-left:-1.313280px;}
._1{width:1.039680px;}
._3{width:2.448000px;}
._7{width:4.320000px;}
._e{width:5.449440px;}
._1a{width:6.465120px;}
._14{width:7.508160px;}
._6{width:9.449280px;}
._1c{width:10.811520px;}
._c{width:12.024000px;}
._d{width:13.037280px;}
._11{width:14.204160px;}
._10{width:15.549120px;}
._f{width:16.632000px;}
._12{width:19.944000px;}
._13{width:21.113280px;}
._5{width:22.896000px;}
._4{width:24.180000px;}
._24{width:25.270560px;}
._3a{width:26.752320px;}
._2b{width:28.111680px;}
._1d{width:29.301120px;}
._1b{width:30.320640px;}
._a{width:32.057280px;}
._b{width:33.929280px;}
._2e{width:34.957440px;}
._28{width:36.722880px;}
._27{width:38.652480px;}
._1e{width:40.660320px;}
._1f{width:42.182880px;}
._32{width:43.400160px;}
._25{width:45.273600px;}
._9{width:47.491200px;}
._8{width:48.513600px;}
._15{width:51.825600px;}
._16{width:52.833600px;}
._26{width:54.288000px;}
._17{width:55.408800px;}
._2c{width:58.832640px;}
._29{width:63.924480px;}
._19{width:65.325120px;}
._18{width:66.893760px;}
._20{width:69.852000px;}
._21{width:71.551200px;}
._22{width:73.420320px;}
._23{width:74.948160px;}
._3b{width:78.992640px;}
._3c{width:80.432640px;}
._2d{width:85.334400px;}
._31{width:87.206400px;}
._37{width:91.857600px;}
._35{width:98.107200px;}
._33{width:104.460480px;}
._36{width:138.075840px;}
._2f{width:160.643520px;}
._38{width:218.808000px;}
._30{width:254.364480px;}
._39{width:283.116000px;}
._34{width:353.992320px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:7.200000px;}
.y83{bottom:7.560000px;}
.ya8{bottom:7.920000px;}
.y94{bottom:8.280000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.520000px;}
.ye5{bottom:13.680000px;}
.ye7{bottom:14.040000px;}
.yae{bottom:14.760000px;}
.yac{bottom:15.840000px;}
.yaa{bottom:16.950000px;}
.yb0{bottom:19.800000px;}
.y9e{bottom:26.640000px;}
.yc5{bottom:31.005000px;}
.y82{bottom:31.320000px;}
.y97{bottom:31.365000px;}
.y8c{bottom:31.680000px;}
.y9c{bottom:31.710000px;}
.y8a{bottom:32.040000px;}
.y93{bottom:32.085000px;}
.ya0{bottom:35.670000px;}
.ye4{bottom:39.960000px;}
.ycb{bottom:50.070000px;}
.y8d{bottom:55.110000px;}
.y96{bottom:55.125000px;}
.y9b{bottom:55.470000px;}
.y8{bottom:55.476000px;}
.ya4{bottom:55.800000px;}
.y89{bottom:55.830000px;}
.y92{bottom:56.205000px;}
.y5{bottom:57.276000px;}
.y9f{bottom:59.430000px;}
.yca{bottom:73.830000px;}
.ya2{bottom:79.200000px;}
.y9a{bottom:79.230000px;}
.ya3{bottom:79.560000px;}
.y88{bottom:79.590000px;}
.y91{bottom:79.965000px;}
.y80{bottom:80.310000px;}
.yc9{bottom:97.590000px;}
.y34{bottom:101.556000px;}
.y98{bottom:102.630000px;}
.y99{bottom:102.990000px;}
.y86{bottom:103.350000px;}
.y8f{bottom:103.365000px;}
.y87{bottom:103.710000px;}
.y90{bottom:103.725000px;}
.y7f{bottom:104.070000px;}
.y61{bottom:109.476000px;}
.yc8{bottom:121.350000px;}
.y33{bottom:125.316000px;}
.ye2{bottom:126.792000px;}
.y7d{bottom:127.470000px;}
.y7e{bottom:127.830000px;}
.yff{bottom:130.392000px;}
.y60{bottom:133.632000px;}
.ya6{bottom:139.032000px;}
.y32{bottom:149.472000px;}
.ye1{bottom:150.555000px;}
.yfe{bottom:154.155000px;}
.ya1{bottom:155.955000px;}
.y5f{bottom:157.035000px;}
.y31{bottom:173.235000px;}
.ye0{bottom:174.315000px;}
.yfd{bottom:177.915000px;}
.y5e{bottom:180.795000px;}
.y30{bottom:196.995000px;}
.ydf{bottom:198.075000px;}
.yfc{bottom:201.315000px;}
.ya5{bottom:204.195000px;}
.y5d{bottom:204.915000px;}
.ye3{bottom:209.595000px;}
.ye6{bottom:219.315000px;}
.y2f{bottom:220.755000px;}
.y74{bottom:221.115000px;}
.yde{bottom:222.195000px;}
.yfb{bottom:225.435000px;}
.y5c{bottom:228.675000px;}
.y2e{bottom:244.515000px;}
.y73{bottom:244.875000px;}
.ydd{bottom:245.955000px;}
.yfa{bottom:249.195000px;}
.y5b{bottom:252.435000px;}
.yc3{bottom:263.985000px;}
.y2d{bottom:268.305000px;}
.y72{bottom:268.665000px;}
.ydc{bottom:269.745000px;}
.yf9{bottom:273.345000px;}
.y5a{bottom:275.865000px;}
.yc2{bottom:287.745000px;}
.ydb{bottom:289.185000px;}
.y2c{bottom:292.065000px;}
.y71{bottom:292.425000px;}
.yf8{bottom:297.105000px;}
.y59{bottom:299.625000px;}
.yc1{bottom:311.505000px;}
.y2b{bottom:315.825000px;}
.y70{bottom:316.545000px;}
.yf7{bottom:320.505000px;}
.y58{bottom:323.745000px;}
.y9d{bottom:328.785000px;}
.yc0{bottom:335.625000px;}
.y2a{bottom:339.945000px;}
.y6f{bottom:340.305000px;}
.yf6{bottom:344.625000px;}
.y57{bottom:347.865000px;}
.ybf{bottom:359.385000px;}
.y29{bottom:363.345000px;}
.y6e{bottom:364.065000px;}
.yf5{bottom:368.385000px;}
.y56{bottom:371.265000px;}
.y8e{bottom:372.345000px;}
.yd3{bottom:379.905000px;}
.ybe{bottom:383.145000px;}
.y28{bottom:387.465000px;}
.y6d{bottom:387.825000px;}
.yf4{bottom:392.145000px;}
.y55{bottom:395.430000px;}
.yd2{bottom:403.710000px;}
.ybd{bottom:406.950000px;}
.y27{bottom:411.270000px;}
.y6c{bottom:411.630000px;}
.yf3{bottom:415.950000px;}
.y54{bottom:419.190000px;}
.ybc{bottom:430.710000px;}
.y26{bottom:435.030000px;}
.y6b{bottom:435.390000px;}
.yf2{bottom:439.710000px;}
.y53{bottom:442.950000px;}
.y95{bottom:444.750000px;}
.ybb{bottom:454.470000px;}
.y25{bottom:458.790000px;}
.y6a{bottom:459.150000px;}
.yf1{bottom:463.830000px;}
.y52{bottom:466.710000px;}
.yba{bottom:478.230000px;}
.y24{bottom:482.550000px;}
.y69{bottom:482.910000px;}
.yf0{bottom:487.590000px;}
.y51{bottom:490.470000px;}
.y85{bottom:492.990000px;}
.yb9{bottom:501.990000px;}
.y23{bottom:506.310000px;}
.y68{bottom:506.670000px;}
.yef{bottom:511.350000px;}
.y50{bottom:514.230000px;}
.yb8{bottom:525.750000px;}
.y22{bottom:530.100000px;}
.y67{bottom:530.820000px;}
.yee{bottom:535.140000px;}
.y4f{bottom:538.380000px;}
.yb7{bottom:549.900000px;}
.y21{bottom:554.220000px;}
.y66{bottom:554.580000px;}
.yed{bottom:558.900000px;}
.y4e{bottom:562.140000px;}
.y8b{bottom:565.020000px;}
.yb6{bottom:573.660000px;}
.y20{bottom:577.980000px;}
.y65{bottom:578.340000px;}
.yec{bottom:582.660000px;}
.y4d{bottom:585.900000px;}
.yb5{bottom:597.420000px;}
.y64{bottom:597.780000px;}
.y1f{bottom:601.740000px;}
.yeb{bottom:606.420000px;}
.y4c{bottom:609.660000px;}
.y7c{bottom:613.620000px;}
.yb4{bottom:616.860000px;}
.y1e{bottom:625.500000px;}
.yea{bottom:629.820000px;}
.y4b{bottom:633.420000px;}
.y1d{bottom:649.260000px;}
.ye9{bottom:654.300000px;}
.y4a{bottom:657.180000px;}
.y84{bottom:661.890000px;}
.yda{bottom:666.570000px;}
.y1c{bottom:673.050000px;}
.y49{bottom:680.970000px;}
.yd9{bottom:690.330000px;}
.y1b{bottom:696.810000px;}
.y48{bottom:704.730000px;}
.y81{bottom:710.130000px;}
.yd8{bottom:714.090000px;}
.y1a{bottom:720.570000px;}
.y47{bottom:728.490000px;}
.yd7{bottom:737.850000px;}
.y19{bottom:744.690000px;}
.y46{bottom:752.610000px;}
.yb3{bottom:758.370000px;}
.yd6{bottom:761.970000px;}
.y7b{bottom:766.290000px;}
.y18{bottom:768.450000px;}
.y101{bottom:776.010000px;}
.y45{bottom:776.370000px;}
.yd1{bottom:779.250000px;}
.yb2{bottom:782.130000px;}
.yd5{bottom:785.730000px;}
.y7a{bottom:790.050000px;}
.y17{bottom:792.210000px;}
.y44{bottom:800.175000px;}
.yd0{bottom:803.055000px;}
.yb1{bottom:806.295000px;}
.yd4{bottom:809.535000px;}
.y79{bottom:813.855000px;}
.y16{bottom:816.015000px;}
.yaf{bottom:823.215000px;}
.y43{bottom:823.935000px;}
.ycf{bottom:827.175000px;}
.y78{bottom:837.615000px;}
.y15{bottom:839.775000px;}
.y42{bottom:847.695000px;}
.yce{bottom:850.935000px;}
.yad{bottom:859.935000px;}
.y77{bottom:861.015000px;}
.y14{bottom:863.535000px;}
.y41{bottom:871.455000px;}
.ycd{bottom:874.695000px;}
.y76{bottom:885.135000px;}
.y13{bottom:887.295000px;}
.yab{bottom:891.615000px;}
.y40{bottom:895.215000px;}
.ycc{bottom:898.455000px;}
.y75{bottom:904.935000px;}
.y12{bottom:910.695000px;}
.yc7{bottom:915.375000px;}
.y3f{bottom:918.975000px;}
.ya9{bottom:924.375000px;}
.y11{bottom:934.845000px;}
.y3e{bottom:943.125000px;}
.ya7{bottom:958.245000px;}
.y10{bottom:958.965000px;}
.y3d{bottom:966.885000px;}
.yf{bottom:982.725000px;}
.y3c{bottom:990.645000px;}
.ye{bottom:1012.965000px;}
.y3b{bottom:1014.405000px;}
.yd{bottom:1029.885000px;}
.y3a{bottom:1037.805000px;}
.y63{bottom:1038.165000px;}
.yc4{bottom:1053.645000px;}
.yc{bottom:1055.805000px;}
.y39{bottom:1061.565000px;}
.y62{bottom:1061.925000px;}
.y38{bottom:1085.730000px;}
.yb{bottom:1087.530000px;}
.y100{bottom:1109.130000px;}
.y37{bottom:1109.490000px;}
.ya{bottom:1119.210000px;}
.y36{bottom:1133.610000px;}
.y9{bottom:1151.250000px;}
.ye8{bottom:1157.010000px;}
.y35{bottom:1157.370000px;}
.y4{bottom:1178.610000px;}
.y3{bottom:1195.530000px;}
.y2{bottom:1212.120000px;}
.y1{bottom:1229.040000px;}
.h6{height:4.038750px;}
.h17{height:24.120000px;}
.h3{height:27.000000px;}
.h1a{height:30.960000px;}
.h19{height:32.040000px;}
.h18{height:33.156000px;}
.h9{height:33.528516px;}
.h1b{height:36.000000px;}
.h2{height:38.608594px;}
.h14{height:42.840000px;}
.hf{height:47.520000px;}
.h1c{height:47.556000px;}
.h11{height:47.880000px;}
.h4{height:50.484375px;}
.h8{height:50.800781px;}
.hd{height:52.417969px;}
.hb{height:54.246094px;}
.hc{height:54.773438px;}
.h1e{height:59.076000px;}
.ha{height:60.679688px;}
.h1f{height:63.537187px;}
.h5{height:65.884219px;}
.h7{height:68.073047px;}
.h12{height:71.316000px;}
.h15{height:75.636000px;}
.h16{height:95.760000px;}
.h13{height:119.196000px;}
.h10{height:119.916000px;}
.h1d{height:137.556000px;}
.he{height:144.036000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:41.040000px;}
.w4{width:105.516000px;}
.wb{width:110.556000px;}
.w7{width:180.075000px;}
.wf{width:216.795000px;}
.wd{width:222.915000px;}
.we{width:228.705000px;}
.wa{width:249.225000px;}
.w5{width:305.430000px;}
.w3{width:305.745000px;}
.w11{width:310.425000px;}
.w10{width:310.785000px;}
.wc{width:340.350000px;}
.w9{width:451.620000px;}
.w8{width:475.050000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x2b{left:24.840000px;}
.x25{left:32.760000px;}
.x22{left:46.440000px;}
.x26{left:50.400000px;}
.x24{left:52.245000px;}
.x2e{left:61.920000px;}
.x1e{left:64.830000px;}
.x2f{left:74.910000px;}
.x5{left:87.516000px;}
.x19{left:91.476000px;}
.xa{left:95.795987px;}
.x10{left:96.875987px;}
.x2{left:101.195987px;}
.xc{left:124.235987px;}
.x2c{left:126.039000px;}
.x31{left:127.835987px;}
.xd{left:132.155987px;}
.xb{left:133.955987px;}
.x1{left:138.635987px;}
.xe{left:148.751987px;}
.x17{left:149.831987px;}
.x15{left:159.554987px;}
.x14{left:193.034987px;}
.x1d{left:199.155000px;}
.x3{left:206.714987px;}
.x27{left:209.954987px;}
.x20{left:227.234987px;}
.x28{left:232.664987px;}
.x2a{left:246.344987px;}
.x1f{left:255.704987px;}
.x16{left:256.784987px;}
.xf{left:281.984987px;}
.x12{left:296.024987px;}
.x6{left:297.834000px;}
.x23{left:311.505000px;}
.x30{left:312.584987px;}
.x1a{left:314.025000px;}
.x11{left:367.709987px;}
.x7{left:393.990000px;}
.x29{left:400.829987px;}
.x18{left:412.349987px;}
.x4{left:446.579987px;}
.x2d{left:447.660000px;}
.x1b{left:458.099987px;}
.x21{left:464.219987px;}
.x9{left:500.220000px;}
.x1c{left:540.210000px;}
.x13{left:797.369987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lse{letter-spacing:-2.432000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.650667pt;}
.ls0{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls14{letter-spacing:8.320000pt;}
.lsa{letter-spacing:9.088000pt;}
.ls11{letter-spacing:9.600000pt;}
.ls15{letter-spacing:14.720000pt;}
.ls13{letter-spacing:14.730667pt;}
.ls18{letter-spacing:18.560000pt;}
.ls10{letter-spacing:19.840000pt;}
.ls17{letter-spacing:26.240000pt;}
.ls1c{letter-spacing:30.080000pt;}
.ls8{letter-spacing:35.200000pt;}
.ls4{letter-spacing:45.440000pt;}
.ls1e{letter-spacing:47.488000pt;}
.ls9{letter-spacing:64.640000pt;}
.ls2{letter-spacing:67.333120pt;}
.ls1d{letter-spacing:68.480000pt;}
.ls1b{letter-spacing:84.608000pt;}
.ls1{letter-spacing:99.439787pt;}
.ls7{letter-spacing:121.728000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws5{word-spacing:-18.560000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws3{word-spacing:-13.568000pt;}
.ws2{word-spacing:0.000000pt;}
._2a{margin-left:-3.368960pt;}
._2{margin-left:-2.432000pt;}
._0{margin-left:-1.167360pt;}
._1{width:0.924160pt;}
._3{width:2.176000pt;}
._7{width:3.840000pt;}
._e{width:4.843947pt;}
._1a{width:5.746773pt;}
._14{width:6.673920pt;}
._6{width:8.399360pt;}
._1c{width:9.610240pt;}
._c{width:10.688000pt;}
._d{width:11.588693pt;}
._11{width:12.625920pt;}
._10{width:13.821440pt;}
._f{width:14.784000pt;}
._12{width:17.728000pt;}
._13{width:18.767360pt;}
._5{width:20.352000pt;}
._4{width:21.493333pt;}
._24{width:22.462720pt;}
._3a{width:23.779840pt;}
._2b{width:24.988160pt;}
._1d{width:26.045440pt;}
._1b{width:26.951680pt;}
._a{width:28.495360pt;}
._b{width:30.159360pt;}
._2e{width:31.073280pt;}
._28{width:32.642560pt;}
._27{width:34.357760pt;}
._1e{width:36.142507pt;}
._1f{width:37.495893pt;}
._32{width:38.577920pt;}
._25{width:40.243200pt;}
._9{width:42.214400pt;}
._8{width:43.123200pt;}
._15{width:46.067200pt;}
._16{width:46.963200pt;}
._26{width:48.256000pt;}
._17{width:49.252267pt;}
._2c{width:52.295680pt;}
._29{width:56.821760pt;}
._19{width:58.066773pt;}
._18{width:59.461120pt;}
._20{width:62.090667pt;}
._21{width:63.601067pt;}
._22{width:65.262507pt;}
._23{width:66.620587pt;}
._3b{width:70.215680pt;}
._3c{width:71.495680pt;}
._2d{width:75.852800pt;}
._31{width:77.516800pt;}
._37{width:81.651200pt;}
._35{width:87.206400pt;}
._33{width:92.853760pt;}
._36{width:122.734080pt;}
._2f{width:142.794240pt;}
._38{width:194.496000pt;}
._30{width:226.101760pt;}
._39{width:251.658667pt;}
._34{width:314.659840pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:6.400000pt;}
.y83{bottom:6.720000pt;}
.ya8{bottom:7.040000pt;}
.y94{bottom:7.360000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:10.240000pt;}
.ye5{bottom:12.160000pt;}
.ye7{bottom:12.480000pt;}
.yae{bottom:13.120000pt;}
.yac{bottom:14.080000pt;}
.yaa{bottom:15.066667pt;}
.yb0{bottom:17.600000pt;}
.y9e{bottom:23.680000pt;}
.yc5{bottom:27.560000pt;}
.y82{bottom:27.840000pt;}
.y97{bottom:27.880000pt;}
.y8c{bottom:28.160000pt;}
.y9c{bottom:28.186667pt;}
.y8a{bottom:28.480000pt;}
.y93{bottom:28.520000pt;}
.ya0{bottom:31.706667pt;}
.ye4{bottom:35.520000pt;}
.ycb{bottom:44.506667pt;}
.y8d{bottom:48.986667pt;}
.y96{bottom:49.000000pt;}
.y9b{bottom:49.306667pt;}
.y8{bottom:49.312000pt;}
.ya4{bottom:49.600000pt;}
.y89{bottom:49.626667pt;}
.y92{bottom:49.960000pt;}
.y5{bottom:50.912000pt;}
.y9f{bottom:52.826667pt;}
.yca{bottom:65.626667pt;}
.ya2{bottom:70.400000pt;}
.y9a{bottom:70.426667pt;}
.ya3{bottom:70.720000pt;}
.y88{bottom:70.746667pt;}
.y91{bottom:71.080000pt;}
.y80{bottom:71.386667pt;}
.yc9{bottom:86.746667pt;}
.y34{bottom:90.272000pt;}
.y98{bottom:91.226667pt;}
.y99{bottom:91.546667pt;}
.y86{bottom:91.866667pt;}
.y8f{bottom:91.880000pt;}
.y87{bottom:92.186667pt;}
.y90{bottom:92.200000pt;}
.y7f{bottom:92.506667pt;}
.y61{bottom:97.312000pt;}
.yc8{bottom:107.866667pt;}
.y33{bottom:111.392000pt;}
.ye2{bottom:112.704000pt;}
.y7d{bottom:113.306667pt;}
.y7e{bottom:113.626667pt;}
.yff{bottom:115.904000pt;}
.y60{bottom:118.784000pt;}
.ya6{bottom:123.584000pt;}
.y32{bottom:132.864000pt;}
.ye1{bottom:133.826667pt;}
.yfe{bottom:137.026667pt;}
.ya1{bottom:138.626667pt;}
.y5f{bottom:139.586667pt;}
.y31{bottom:153.986667pt;}
.ye0{bottom:154.946667pt;}
.yfd{bottom:158.146667pt;}
.y5e{bottom:160.706667pt;}
.y30{bottom:175.106667pt;}
.ydf{bottom:176.066667pt;}
.yfc{bottom:178.946667pt;}
.ya5{bottom:181.506667pt;}
.y5d{bottom:182.146667pt;}
.ye3{bottom:186.306667pt;}
.ye6{bottom:194.946667pt;}
.y2f{bottom:196.226667pt;}
.y74{bottom:196.546667pt;}
.yde{bottom:197.506667pt;}
.yfb{bottom:200.386667pt;}
.y5c{bottom:203.266667pt;}
.y2e{bottom:217.346667pt;}
.y73{bottom:217.666667pt;}
.ydd{bottom:218.626667pt;}
.yfa{bottom:221.506667pt;}
.y5b{bottom:224.386667pt;}
.yc3{bottom:234.653333pt;}
.y2d{bottom:238.493333pt;}
.y72{bottom:238.813333pt;}
.ydc{bottom:239.773333pt;}
.yf9{bottom:242.973333pt;}
.y5a{bottom:245.213333pt;}
.yc2{bottom:255.773333pt;}
.ydb{bottom:257.053333pt;}
.y2c{bottom:259.613333pt;}
.y71{bottom:259.933333pt;}
.yf8{bottom:264.093333pt;}
.y59{bottom:266.333333pt;}
.yc1{bottom:276.893333pt;}
.y2b{bottom:280.733333pt;}
.y70{bottom:281.373333pt;}
.yf7{bottom:284.893333pt;}
.y58{bottom:287.773333pt;}
.y9d{bottom:292.253333pt;}
.yc0{bottom:298.333333pt;}
.y2a{bottom:302.173333pt;}
.y6f{bottom:302.493333pt;}
.yf6{bottom:306.333333pt;}
.y57{bottom:309.213333pt;}
.ybf{bottom:319.453333pt;}
.y29{bottom:322.973333pt;}
.y6e{bottom:323.613333pt;}
.yf5{bottom:327.453333pt;}
.y56{bottom:330.013333pt;}
.y8e{bottom:330.973333pt;}
.yd3{bottom:337.693333pt;}
.ybe{bottom:340.573333pt;}
.y28{bottom:344.413333pt;}
.y6d{bottom:344.733333pt;}
.yf4{bottom:348.573333pt;}
.y55{bottom:351.493333pt;}
.yd2{bottom:358.853333pt;}
.ybd{bottom:361.733333pt;}
.y27{bottom:365.573333pt;}
.y6c{bottom:365.893333pt;}
.yf3{bottom:369.733333pt;}
.y54{bottom:372.613333pt;}
.ybc{bottom:382.853333pt;}
.y26{bottom:386.693333pt;}
.y6b{bottom:387.013333pt;}
.yf2{bottom:390.853333pt;}
.y53{bottom:393.733333pt;}
.y95{bottom:395.333333pt;}
.ybb{bottom:403.973333pt;}
.y25{bottom:407.813333pt;}
.y6a{bottom:408.133333pt;}
.yf1{bottom:412.293333pt;}
.y52{bottom:414.853333pt;}
.yba{bottom:425.093333pt;}
.y24{bottom:428.933333pt;}
.y69{bottom:429.253333pt;}
.yf0{bottom:433.413333pt;}
.y51{bottom:435.973333pt;}
.y85{bottom:438.213333pt;}
.yb9{bottom:446.213333pt;}
.y23{bottom:450.053333pt;}
.y68{bottom:450.373333pt;}
.yef{bottom:454.533333pt;}
.y50{bottom:457.093333pt;}
.yb8{bottom:467.333333pt;}
.y22{bottom:471.200000pt;}
.y67{bottom:471.840000pt;}
.yee{bottom:475.680000pt;}
.y4f{bottom:478.560000pt;}
.yb7{bottom:488.800000pt;}
.y21{bottom:492.640000pt;}
.y66{bottom:492.960000pt;}
.yed{bottom:496.800000pt;}
.y4e{bottom:499.680000pt;}
.y8b{bottom:502.240000pt;}
.yb6{bottom:509.920000pt;}
.y20{bottom:513.760000pt;}
.y65{bottom:514.080000pt;}
.yec{bottom:517.920000pt;}
.y4d{bottom:520.800000pt;}
.yb5{bottom:531.040000pt;}
.y64{bottom:531.360000pt;}
.y1f{bottom:534.880000pt;}
.yeb{bottom:539.040000pt;}
.y4c{bottom:541.920000pt;}
.y7c{bottom:545.440000pt;}
.yb4{bottom:548.320000pt;}
.y1e{bottom:556.000000pt;}
.yea{bottom:559.840000pt;}
.y4b{bottom:563.040000pt;}
.y1d{bottom:577.120000pt;}
.ye9{bottom:581.600000pt;}
.y4a{bottom:584.160000pt;}
.y84{bottom:588.346667pt;}
.yda{bottom:592.506667pt;}
.y1c{bottom:598.266667pt;}
.y49{bottom:605.306667pt;}
.yd9{bottom:613.626667pt;}
.y1b{bottom:619.386667pt;}
.y48{bottom:626.426667pt;}
.y81{bottom:631.226667pt;}
.yd8{bottom:634.746667pt;}
.y1a{bottom:640.506667pt;}
.y47{bottom:647.546667pt;}
.yd7{bottom:655.866667pt;}
.y19{bottom:661.946667pt;}
.y46{bottom:668.986667pt;}
.yb3{bottom:674.106667pt;}
.yd6{bottom:677.306667pt;}
.y7b{bottom:681.146667pt;}
.y18{bottom:683.066667pt;}
.y101{bottom:689.786667pt;}
.y45{bottom:690.106667pt;}
.yd1{bottom:692.666667pt;}
.yb2{bottom:695.226667pt;}
.yd5{bottom:698.426667pt;}
.y7a{bottom:702.266667pt;}
.y17{bottom:704.186667pt;}
.y44{bottom:711.266667pt;}
.yd0{bottom:713.826667pt;}
.yb1{bottom:716.706667pt;}
.yd4{bottom:719.586667pt;}
.y79{bottom:723.426667pt;}
.y16{bottom:725.346667pt;}
.yaf{bottom:731.746667pt;}
.y43{bottom:732.386667pt;}
.ycf{bottom:735.266667pt;}
.y78{bottom:744.546667pt;}
.y15{bottom:746.466667pt;}
.y42{bottom:753.506667pt;}
.yce{bottom:756.386667pt;}
.yad{bottom:764.386667pt;}
.y77{bottom:765.346667pt;}
.y14{bottom:767.586667pt;}
.y41{bottom:774.626667pt;}
.ycd{bottom:777.506667pt;}
.y76{bottom:786.786667pt;}
.y13{bottom:788.706667pt;}
.yab{bottom:792.546667pt;}
.y40{bottom:795.746667pt;}
.ycc{bottom:798.626667pt;}
.y75{bottom:804.386667pt;}
.y12{bottom:809.506667pt;}
.yc7{bottom:813.666667pt;}
.y3f{bottom:816.866667pt;}
.ya9{bottom:821.666667pt;}
.y11{bottom:830.973333pt;}
.y3e{bottom:838.333333pt;}
.ya7{bottom:851.773333pt;}
.y10{bottom:852.413333pt;}
.y3d{bottom:859.453333pt;}
.yf{bottom:873.533333pt;}
.y3c{bottom:880.573333pt;}
.ye{bottom:900.413333pt;}
.y3b{bottom:901.693333pt;}
.yd{bottom:915.453333pt;}
.y3a{bottom:922.493333pt;}
.y63{bottom:922.813333pt;}
.yc4{bottom:936.573333pt;}
.yc{bottom:938.493333pt;}
.y39{bottom:943.613333pt;}
.y62{bottom:943.933333pt;}
.y38{bottom:965.093333pt;}
.yb{bottom:966.693333pt;}
.y100{bottom:985.893333pt;}
.y37{bottom:986.213333pt;}
.ya{bottom:994.853333pt;}
.y36{bottom:1007.653333pt;}
.y9{bottom:1023.333333pt;}
.ye8{bottom:1028.453333pt;}
.y35{bottom:1028.773333pt;}
.y4{bottom:1047.653333pt;}
.y3{bottom:1062.693333pt;}
.y2{bottom:1077.440000pt;}
.y1{bottom:1092.480000pt;}
.h6{height:3.590000pt;}
.h17{height:21.440000pt;}
.h3{height:24.000000pt;}
.h1a{height:27.520000pt;}
.h19{height:28.480000pt;}
.h18{height:29.472000pt;}
.h9{height:29.803125pt;}
.h1b{height:32.000000pt;}
.h2{height:34.318750pt;}
.h14{height:38.080000pt;}
.hf{height:42.240000pt;}
.h1c{height:42.272000pt;}
.h11{height:42.560000pt;}
.h4{height:44.875000pt;}
.h8{height:45.156250pt;}
.hd{height:46.593750pt;}
.hb{height:48.218750pt;}
.hc{height:48.687500pt;}
.h1e{height:52.512000pt;}
.ha{height:53.937500pt;}
.h1f{height:56.477500pt;}
.h5{height:58.563750pt;}
.h7{height:60.509375pt;}
.h12{height:63.392000pt;}
.h15{height:67.232000pt;}
.h16{height:85.120000pt;}
.h13{height:105.952000pt;}
.h10{height:106.592000pt;}
.h1d{height:122.272000pt;}
.he{height:128.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:36.480000pt;}
.w4{width:93.792000pt;}
.wb{width:98.272000pt;}
.w7{width:160.066667pt;}
.wf{width:192.706667pt;}
.wd{width:198.146667pt;}
.we{width:203.293333pt;}
.wa{width:221.533333pt;}
.w5{width:271.493333pt;}
.w3{width:271.773333pt;}
.w11{width:275.933333pt;}
.w10{width:276.253333pt;}
.wc{width:302.533333pt;}
.w9{width:401.440000pt;}
.w8{width:422.266667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x2b{left:22.080000pt;}
.x25{left:29.120000pt;}
.x22{left:41.280000pt;}
.x26{left:44.800000pt;}
.x24{left:46.440000pt;}
.x2e{left:55.040000pt;}
.x1e{left:57.626667pt;}
.x2f{left:66.586667pt;}
.x5{left:77.792000pt;}
.x19{left:81.312000pt;}
.xa{left:85.151988pt;}
.x10{left:86.111988pt;}
.x2{left:89.951988pt;}
.xc{left:110.431988pt;}
.x2c{left:112.034667pt;}
.x31{left:113.631988pt;}
.xd{left:117.471988pt;}
.xb{left:119.071988pt;}
.x1{left:123.231988pt;}
.xe{left:132.223988pt;}
.x17{left:133.183988pt;}
.x15{left:141.826655pt;}
.x14{left:171.586655pt;}
.x1d{left:177.026667pt;}
.x3{left:183.746655pt;}
.x27{left:186.626655pt;}
.x20{left:201.986655pt;}
.x28{left:206.813322pt;}
.x2a{left:218.973322pt;}
.x1f{left:227.293322pt;}
.x16{left:228.253322pt;}
.xf{left:250.653322pt;}
.x12{left:263.133322pt;}
.x6{left:264.741333pt;}
.x23{left:276.893333pt;}
.x30{left:277.853322pt;}
.x1a{left:279.133333pt;}
.x11{left:326.853322pt;}
.x7{left:350.213333pt;}
.x29{left:356.293322pt;}
.x18{left:366.533322pt;}
.x4{left:396.959988pt;}
.x2d{left:397.920000pt;}
.x1b{left:407.199988pt;}
.x21{left:412.639988pt;}
.x9{left:444.640000pt;}
.x1c{left:480.186667pt;}
.x13{left:708.773322pt;}
}




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