
    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_f5d63d8e4525910b100a6672.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_f0a61f31d0b8768a0f8ef0e2.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_19310fcb879bd52dcae69aa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bc239deac0656f8f8c0f8215.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c92a5dc826e0eaa00d3d3ecf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1bdbe963caa4d168ba9e9fc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7612a0256ab45a98dc42a2d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e8fbbef2190470cddfb78035.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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_cf5b54b838ee9f69dcdff9c4.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a16d0ce1271e82d21d65589f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.130371;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_162a955255eb97c57d70de68.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0b6de8dc3d0f617dd12adb46.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.000000px;}
.v2{vertical-align:34.800000px;}
.ls16{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.048000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls1c{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.800000px;}
.ls13{letter-spacing:13.560000px;}
.ls19{letter-spacing:15.720000px;}
.ls15{letter-spacing:16.500000px;}
.ls18{letter-spacing:45.720000px;}
.ls1a{letter-spacing:54.444000px;}
.ls12{letter-spacing:120.780000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-72.000000px;}
.ws12{word-spacing:-60.360000px;}
.wsb{word-spacing:-60.000000px;}
.ws11{word-spacing:-44.760000px;}
.wsf{word-spacing:-42.000000px;}
.ws13{word-spacing:-22.080000px;}
.ws14{word-spacing:-21.840000px;}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.024000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.420000px;}
.ws8{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws7{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.760000px;}
.ws5{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.460000px;}
.wse{word-spacing:-14.100000px;}
.ws9{word-spacing:-13.800000px;}
.ws6{word-spacing:-9.900000px;}
.wsd{word-spacing:0.000000px;}
.ws10{word-spacing:15.282000px;}
._18{margin-left:-2.628000px;}
._1{margin-left:-1.206000px;}
._0{width:1.056000px;}
._a{width:2.502000px;}
._6{width:4.416000px;}
._7{width:6.006000px;}
._c{width:7.344000px;}
._b{width:8.580000px;}
._9{width:10.278000px;}
._8{width:11.616000px;}
._15{width:12.642000px;}
._13{width:13.680000px;}
._14{width:15.192000px;}
._e{width:16.686000px;}
._d{width:17.820000px;}
._f{width:19.230000px;}
._10{width:20.250000px;}
._16{width:21.294000px;}
._17{width:23.142000px;}
._11{width:24.180000px;}
._12{width:25.896000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:6.000000px;}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:3.300000px;}
.y8f{bottom:3.315000px;}
.y96{bottom:3.600000px;}
.y92{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.yc9{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y41{bottom:5.985000px;}
.ydf{bottom:6.300000px;}
.yc7{bottom:7.500000px;}
.ydc{bottom:8.700000px;}
.yca{bottom:10.200000px;}
.yc8{bottom:10.500000px;}
.ye0{bottom:11.415000px;}
.yc3{bottom:11.700000px;}
.y5{bottom:12.337500px;}
.ydd{bottom:14.085000px;}
.yc5{bottom:16.200000px;}
.yda{bottom:16.500000px;}
.yc1{bottom:20.400000px;}
.y8e{bottom:20.700000px;}
.y91{bottom:20.715000px;}
.y95{bottom:20.745000px;}
.yc6{bottom:24.900000px;}
.y131{bottom:25.200000px;}
.y40{bottom:25.500000px;}
.yc2{bottom:28.800000px;}
.ybf{bottom:33.600000px;}
.ya8{bottom:37.800000px;}
.y8d{bottom:37.815000px;}
.y3f{bottom:40.200000px;}
.yd8{bottom:42.585000px;}
.y4{bottom:46.800000px;}
.y130{bottom:49.500000px;}
.ybe{bottom:50.700000px;}
.y1{bottom:57.037500px;}
.y3e{bottom:57.300000px;}
.y12f{bottom:74.100000px;}
.yb4{bottom:74.137500px;}
.y3d{bottom:74.700000px;}
.y3{bottom:81.337500px;}
.y3c{bottom:91.800000px;}
.y12e{bottom:98.700000px;}
.y3b{bottom:109.200000px;}
.yd6{bottom:112.837500px;}
.y115{bottom:116.737500px;}
.yb3{bottom:120.937500px;}
.y7b{bottom:123.037500px;}
.y2e{bottom:124.537500px;}
.y3a{bottom:126.285000px;}
.yd5{bottom:129.937500px;}
.y114{bottom:133.837500px;}
.yb2{bottom:138.337500px;}
.y7a{bottom:140.437500px;}
.y2d{bottom:141.937500px;}
.y39{bottom:143.730000px;}
.yd4{bottom:145.237500px;}
.y12d{bottom:147.300000px;}
.y113{bottom:151.245000px;}
.yd3{bottom:152.430000px;}
.yb1{bottom:155.430000px;}
.y79{bottom:157.545000px;}
.y2c{bottom:159.030000px;}
.y38{bottom:160.830000px;}
.y112{bottom:168.330000px;}
.yb0{bottom:172.830000px;}
.y2b{bottom:175.530000px;}
.y37{bottom:178.230000px;}
.y111{bottom:185.775000px;}
.y78{bottom:189.675000px;}
.yaf{bottom:189.975000px;}
.y2a{bottom:190.275000px;}
.y36{bottom:195.330000px;}
.y12c{bottom:201.345000px;}
.y110{bottom:202.875000px;}
.y77{bottom:207.075000px;}
.y29{bottom:207.375000px;}
.y35{bottom:212.730000px;}
.y10f{bottom:220.275000px;}
.y76{bottom:224.475000px;}
.y28{bottom:224.775000px;}
.y34{bottom:229.830000px;}
.y10e{bottom:237.375000px;}
.y75{bottom:241.575000px;}
.y27{bottom:241.875000px;}
.y33{bottom:247.230000px;}
.y10d{bottom:254.775000px;}
.yae{bottom:258.375000px;}
.y74{bottom:258.975000px;}
.y26{bottom:259.275000px;}
.y32{bottom:264.330000px;}
.yad{bottom:269.475000px;}
.y10c{bottom:271.875000px;}
.y73{bottom:276.075000px;}
.y25{bottom:276.375000px;}
.yac{bottom:276.975000px;}
.y31{bottom:281.730000px;}
.y10b{bottom:289.275000px;}
.y24{bottom:294.075000px;}
.yab{bottom:295.275000px;}
.yaa{bottom:297.375000px;}
.y30{bottom:299.460000px;}
.y10a{bottom:306.375000px;}
.y72{bottom:308.175000px;}
.y23{bottom:312.375000px;}
.y109{bottom:323.775000px;}
.y71{bottom:325.575000px;}
.y108{bottom:340.875000px;}
.y70{bottom:342.975000px;}
.ya7{bottom:349.905000px;}
.y107{bottom:358.320000px;}
.y6f{bottom:360.120000px;}
.y106{bottom:375.420000px;}
.y6e{bottom:377.505000px;}
.y2f{bottom:385.620000px;}
.y105{bottom:392.820000px;}
.y6d{bottom:394.620000px;}
.ya6{bottom:402.720000px;}
.ya5{bottom:408.120000px;}
.y104{bottom:409.920000px;}
.y6c{bottom:426.705000px;}
.y103{bottom:427.320000px;}
.ya4{bottom:428.820000px;}
.y6b{bottom:444.120000px;}
.y102{bottom:444.405000px;}
.ya3{bottom:448.920000px;}
.yd2{bottom:451.005000px;}
.y6a{bottom:461.505000px;}
.y101{bottom:461.820000px;}
.ya2{bottom:466.320000px;}
.yd1{bottom:471.720000px;}
.y69{bottom:478.620000px;}
.y100{bottom:478.920000px;}
.ya1{bottom:483.420000px;}
.yd0{bottom:492.120000px;}
.y68{bottom:496.005000px;}
.yff{bottom:496.320000px;}
.ya0{bottom:500.820000px;}
.ycf{bottom:509.205000px;}
.y67{bottom:513.120000px;}
.yfe{bottom:513.450000px;}
.y9f{bottom:517.950000px;}
.y12b{bottom:519.450000px;}
.yce{bottom:526.650000px;}
.y66{bottom:530.550000px;}
.yfd{bottom:530.850000px;}
.y9e{bottom:535.350000px;}
.ycd{bottom:543.750000px;}
.y65{bottom:547.650000px;}
.yfc{bottom:547.950000px;}
.y9d{bottom:552.450000px;}
.ycc{bottom:561.150000px;}
.y64{bottom:565.050000px;}
.yfb{bottom:565.350000px;}
.y9c{bottom:569.850000px;}
.ycb{bottom:578.250000px;}
.y63{bottom:582.150000px;}
.yfa{bottom:582.450000px;}
.y9b{bottom:586.950000px;}
.y62{bottom:599.550000px;}
.yf9{bottom:599.850000px;}
.ybd{bottom:600.450000px;}
.y9a{bottom:604.350000px;}
.y61{bottom:616.650000px;}
.yf8{bottom:616.950000px;}
.y99{bottom:621.450000px;}
.yc4{bottom:622.050000px;}
.y60{bottom:634.050000px;}
.yf7{bottom:634.350000px;}
.y98{bottom:638.850000px;}
.yc0{bottom:644.250000px;}
.y5f{bottom:651.150000px;}
.yf6{bottom:651.450000px;}
.y97{bottom:656.550000px;}
.y5e{bottom:668.550000px;}
.yf5{bottom:669.150000px;}
.y94{bottom:673.950000px;}
.y5d{bottom:685.695000px;}
.yf4{bottom:689.595000px;}
.y5c{bottom:703.095000px;}
.yf3{bottom:706.695000px;}
.ybc{bottom:707.295000px;}
.y93{bottom:709.380000px;}
.y5b{bottom:720.195000px;}
.yf2{bottom:724.095000px;}
.ybb{bottom:727.695000px;}
.y22{bottom:730.380000px;}
.y5a{bottom:737.595000px;}
.yf1{bottom:741.195000px;}
.y90{bottom:744.480000px;}
.y12a{bottom:744.495000px;}
.yba{bottom:744.780000px;}
.y21{bottom:750.795000px;}
.y59{bottom:754.695000px;}
.yf0{bottom:758.595000px;}
.y129{bottom:761.595000px;}
.yb9{bottom:762.195000px;}
.y20{bottom:770.580000px;}
.y58{bottom:772.080000px;}
.yef{bottom:776.295000px;}
.yb8{bottom:777.480000px;}
.y128{bottom:778.980000px;}
.y8c{bottom:779.880000px;}
.yb7{bottom:784.695000px;}
.y1f{bottom:788.880000px;}
.y57{bottom:789.795000px;}
.y127{bottom:796.080000px;}
.yee{bottom:796.380000px;}
.y1e{bottom:804.795000px;}
.y56{bottom:809.295000px;}
.y1d{bottom:809.580000px;}
.y126{bottom:813.495000px;}
.yed{bottom:813.795000px;}
.y55{bottom:823.695000px;}
.y1c{bottom:826.995000px;}
.y125{bottom:830.580000px;}
.yec{bottom:830.880000px;}
.y54{bottom:841.080000px;}
.y8b{bottom:843.795000px;}
.y1b{bottom:844.080000px;}
.y124{bottom:847.995000px;}
.yeb{bottom:848.295000px;}
.y53{bottom:858.225000px;}
.y1a{bottom:861.525000px;}
.y8a{bottom:863.925000px;}
.y123{bottom:865.125000px;}
.yea{bottom:865.425000px;}
.y52{bottom:875.625000px;}
.y19{bottom:878.625000px;}
.y89{bottom:881.325000px;}
.y122{bottom:882.525000px;}
.ye9{bottom:883.125000px;}
.y51{bottom:892.725000px;}
.y18{bottom:896.025000px;}
.y88{bottom:898.425000px;}
.y121{bottom:899.625000px;}
.ye8{bottom:903.525000px;}
.y50{bottom:909.225000px;}
.y17{bottom:913.125000px;}
.y87{bottom:915.825000px;}
.y120{bottom:917.025000px;}
.ye7{bottom:920.625000px;}
.y4f{bottom:923.925000px;}
.y16{bottom:929.625000px;}
.y86{bottom:932.925000px;}
.y11f{bottom:934.125000px;}
.ye6{bottom:938.025000px;}
.y4e{bottom:941.025000px;}
.y15{bottom:949.725000px;}
.y85{bottom:950.325000px;}
.y11e{bottom:951.525000px;}
.ye5{bottom:955.125000px;}
.y4d{bottom:958.425000px;}
.y14{bottom:966.825000px;}
.y84{bottom:967.425000px;}
.y11d{bottom:968.625000px;}
.ye4{bottom:972.525000px;}
.y4c{bottom:975.525000px;}
.y13{bottom:979.125000px;}
.y83{bottom:984.825000px;}
.y11c{bottom:986.025000px;}
.ye3{bottom:989.625000px;}
.y4b{bottom:992.925000px;}
.y12{bottom:999.825000px;}
.y82{bottom:1002.525000px;}
.y11b{bottom:1003.125000px;}
.ye2{bottom:1007.025000px;}
.y4a{bottom:1009.425000px;}
.y11{bottom:1020.570000px;}
.ye1{bottom:1022.370000px;}
.y81{bottom:1022.670000px;}
.y49{bottom:1023.870000px;}
.yde{bottom:1030.155000px;}
.yd7{bottom:1030.170000px;}
.y11a{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.y80{bottom:1040.070000px;}
.yd{bottom:1040.955000px;}
.y48{bottom:1041.255000px;}
.ydb{bottom:1053.870000px;}
.y119{bottom:1055.070000px;}
.y7f{bottom:1057.170000px;}
.y47{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y118{bottom:1072.170000px;}
.y7e{bottom:1074.570000px;}
.y46{bottom:1075.755000px;}
.yd9{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.y117{bottom:1089.570000px;}
.y7d{bottom:1091.670000px;}
.y45{bottom:1092.870000px;}
.y9{bottom:1097.955000px;}
.y116{bottom:1106.670000px;}
.y44{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.yb6{bottom:1117.455000px;}
.y7c{bottom:1123.755000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yb5{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y42{bottom:1196.400000px;}
.he{height:4.189453px;}
.h22{height:4.200000px;}
.h1b{height:4.233398px;}
.h28{height:4.485000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h25{height:20.700000px;}
.h1f{height:20.947266px;}
.ha{height:21.000000px;}
.h11{height:21.166992px;}
.h23{height:21.300000px;}
.h2b{height:22.800000px;}
.hb{height:27.650391px;}
.h29{height:28.200000px;}
.hc{height:29.200781px;}
.h12{height:33.515625px;}
.h7{height:33.867188px;}
.h19{height:34.500000px;}
.h1a{height:34.537500px;}
.h16{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hf{height:38.100586px;}
.hd{height:41.894531px;}
.h4{height:42.333984px;}
.h24{height:42.900000px;}
.h27{height:43.500000px;}
.h2c{height:43.681641px;}
.h17{height:44.507812px;}
.h15{height:49.453125px;}
.h10{height:50.273438px;}
.h6{height:50.800781px;}
.h21{height:51.037500px;}
.h18{height:51.600000px;}
.h1c{height:51.637500px;}
.h2a{height:51.900000px;}
.h14{height:51.996094px;}
.h1{height:65.645508px;}
.h1d{height:70.196484px;}
.h2f{height:73.722656px;}
.h1e{height:80.566406px;}
.h2e{height:91.406250px;}
.h20{height:94.837500px;}
.h26{height:96.000000px;}
.h2{height:97.200000px;}
.h2d{height:238.530000px;}
.h13{height:316.275000px;}
.h0{height:1263.000000px;}
.w1c{width:16.800000px;}
.w26{width:17.700000px;}
.w27{width:56.700000px;}
.w1d{width:56.737500px;}
.w16{width:57.037500px;}
.w1f{width:62.437500px;}
.w1e{width:62.700000px;}
.w28{width:62.737500px;}
.w20{width:68.700000px;}
.w29{width:69.037500px;}
.w4{width:72.300000px;}
.w15{width:72.600000px;}
.wf{width:73.537500px;}
.we{width:73.800000px;}
.w10{width:78.900000px;}
.wd{width:87.937500px;}
.wb{width:88.237500px;}
.w14{width:94.537500px;}
.w1b{width:94.837500px;}
.wa{width:96.337500px;}
.w9{width:96.600000px;}
.w24{width:97.837500px;}
.wc{width:99.337500px;}
.w8{width:101.137500px;}
.w11{width:101.737500px;}
.w13{width:107.437500px;}
.w3{width:108.000000px;}
.w1a{width:111.637500px;}
.w23{width:114.037500px;}
.w18{width:119.437500px;}
.w12{width:120.037500px;}
.w21{width:126.937500px;}
.w19{width:131.137500px;}
.w22{width:131.737500px;}
.w25{width:134.737500px;}
.w17{width:187.830000px;}
.w6{width:247.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.800000px;}
.x2{left:10.799998px;}
.x1c{left:11.985000px;}
.x1e{left:13.800000px;}
.x26{left:15.000000px;}
.xe{left:16.200000px;}
.x1a{left:17.400000px;}
.x2c{left:18.630000px;}
.x19{left:20.100000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x35{left:25.545000px;}
.x22{left:27.000000px;}
.x25{left:30.300000px;}
.x20{left:33.300000px;}
.x23{left:36.000000px;}
.x29{left:37.530000px;}
.x33{left:38.730000px;}
.x2b{left:40.500000px;}
.x31{left:42.630000px;}
.x2a{left:46.800000px;}
.x2f{left:66.600000px;}
.x1{left:81.037487px;}
.x10{left:85.237500px;}
.x45{left:86.737500px;}
.x44{left:108.037487px;}
.xd{left:111.330000px;}
.x3b{left:141.937487px;}
.x9{left:153.629987px;}
.x1b{left:161.145000px;}
.x46{left:177.337500px;}
.x12{left:186.975000px;}
.x3c{left:208.875000px;}
.x2d{left:222.974987px;}
.xb{left:241.582500px;}
.x47{left:259.282500px;}
.x1d{left:263.475000px;}
.x42{left:265.575000px;}
.x30{left:269.775000px;}
.x13{left:284.475000px;}
.x39{left:326.520000px;}
.x3d{left:328.920000px;}
.x1f{left:365.820000px;}
.x14{left:381.720000px;}
.x32{left:389.820000px;}
.x43{left:391.620000px;}
.x6{left:446.249987px;}
.x3a{left:452.250000px;}
.x3e{left:461.550000px;}
.x15{left:470.850000px;}
.x21{left:486.450000px;}
.x34{left:521.550000px;}
.xc{left:564.495000px;}
.x16{left:571.095000px;}
.x3f{left:576.495000px;}
.xf{left:579.479987px;}
.x24{left:594.780000px;}
.x8{left:616.379987px;}
.x36{left:634.095000px;}
.x7{left:648.194987px;}
.x17{left:659.925000px;}
.x40{left:675.225000px;}
.x27{left:689.925000px;}
.x5{left:697.124987px;}
.x37{left:729.825000px;}
.x18{left:734.625000px;}
.x28{left:763.125000px;}
.x38{left:803.670000px;}
.x2e{left:807.569987px;}
.x41{left:810.255000px;}
.xa{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.666667pt;}
.v2{vertical-align:30.933333pt;}
.ls16{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.042667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls13{letter-spacing:12.053333pt;}
.ls19{letter-spacing:13.973333pt;}
.ls15{letter-spacing:14.666667pt;}
.ls18{letter-spacing:40.640000pt;}
.ls1a{letter-spacing:48.394667pt;}
.ls12{letter-spacing:107.360000pt;}
.ws15{word-spacing:-64.000000pt;}
.ws12{word-spacing:-53.653333pt;}
.wsb{word-spacing:-53.333333pt;}
.ws11{word-spacing:-39.786667pt;}
.wsf{word-spacing:-37.333333pt;}
.ws13{word-spacing:-19.626667pt;}
.ws14{word-spacing:-19.413333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.021333pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.706667pt;}
.ws8{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws7{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.120000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.853333pt;}
.wse{word-spacing:-12.533333pt;}
.ws9{word-spacing:-12.266667pt;}
.ws6{word-spacing:-8.800000pt;}
.wsd{word-spacing:0.000000pt;}
.ws10{word-spacing:13.584000pt;}
._18{margin-left:-2.336000pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.938667pt;}
._a{width:2.224000pt;}
._6{width:3.925333pt;}
._7{width:5.338667pt;}
._c{width:6.528000pt;}
._b{width:7.626667pt;}
._9{width:9.136000pt;}
._8{width:10.325333pt;}
._15{width:11.237333pt;}
._13{width:12.160000pt;}
._14{width:13.504000pt;}
._e{width:14.832000pt;}
._d{width:15.840000pt;}
._f{width:17.093333pt;}
._10{width:18.000000pt;}
._16{width:18.928000pt;}
._17{width:20.570667pt;}
._11{width:21.493333pt;}
._12{width:23.018667pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs8{font-size:5.333333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:2.933333pt;}
.y8f{bottom:2.946667pt;}
.y96{bottom:3.200000pt;}
.y92{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.yc9{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y41{bottom:5.320000pt;}
.ydf{bottom:5.600000pt;}
.yc7{bottom:6.666667pt;}
.ydc{bottom:7.733333pt;}
.yca{bottom:9.066667pt;}
.yc8{bottom:9.333333pt;}
.ye0{bottom:10.146667pt;}
.yc3{bottom:10.400000pt;}
.y5{bottom:10.966667pt;}
.ydd{bottom:12.520000pt;}
.yc5{bottom:14.400000pt;}
.yda{bottom:14.666667pt;}
.yc1{bottom:18.133333pt;}
.y8e{bottom:18.400000pt;}
.y91{bottom:18.413333pt;}
.y95{bottom:18.440000pt;}
.yc6{bottom:22.133333pt;}
.y131{bottom:22.400000pt;}
.y40{bottom:22.666667pt;}
.yc2{bottom:25.600000pt;}
.ybf{bottom:29.866667pt;}
.ya8{bottom:33.600000pt;}
.y8d{bottom:33.613333pt;}
.y3f{bottom:35.733333pt;}
.yd8{bottom:37.853333pt;}
.y4{bottom:41.600000pt;}
.y130{bottom:44.000000pt;}
.ybe{bottom:45.066667pt;}
.y1{bottom:50.700000pt;}
.y3e{bottom:50.933333pt;}
.y12f{bottom:65.866667pt;}
.yb4{bottom:65.900000pt;}
.y3d{bottom:66.400000pt;}
.y3{bottom:72.300000pt;}
.y3c{bottom:81.600000pt;}
.y12e{bottom:87.733333pt;}
.y3b{bottom:97.066667pt;}
.yd6{bottom:100.300000pt;}
.y115{bottom:103.766667pt;}
.yb3{bottom:107.500000pt;}
.y7b{bottom:109.366667pt;}
.y2e{bottom:110.700000pt;}
.y3a{bottom:112.253333pt;}
.yd5{bottom:115.500000pt;}
.y114{bottom:118.966667pt;}
.yb2{bottom:122.966667pt;}
.y7a{bottom:124.833333pt;}
.y2d{bottom:126.166667pt;}
.y39{bottom:127.760000pt;}
.yd4{bottom:129.100000pt;}
.y12d{bottom:130.933333pt;}
.y113{bottom:134.440000pt;}
.yd3{bottom:135.493333pt;}
.yb1{bottom:138.160000pt;}
.y79{bottom:140.040000pt;}
.y2c{bottom:141.360000pt;}
.y38{bottom:142.960000pt;}
.y112{bottom:149.626667pt;}
.yb0{bottom:153.626667pt;}
.y2b{bottom:156.026667pt;}
.y37{bottom:158.426667pt;}
.y111{bottom:165.133333pt;}
.y78{bottom:168.600000pt;}
.yaf{bottom:168.866667pt;}
.y2a{bottom:169.133333pt;}
.y36{bottom:173.626667pt;}
.y12c{bottom:178.973333pt;}
.y110{bottom:180.333333pt;}
.y77{bottom:184.066667pt;}
.y29{bottom:184.333333pt;}
.y35{bottom:189.093333pt;}
.y10f{bottom:195.800000pt;}
.y76{bottom:199.533333pt;}
.y28{bottom:199.800000pt;}
.y34{bottom:204.293333pt;}
.y10e{bottom:211.000000pt;}
.y75{bottom:214.733333pt;}
.y27{bottom:215.000000pt;}
.y33{bottom:219.760000pt;}
.y10d{bottom:226.466667pt;}
.yae{bottom:229.666667pt;}
.y74{bottom:230.200000pt;}
.y26{bottom:230.466667pt;}
.y32{bottom:234.960000pt;}
.yad{bottom:239.533333pt;}
.y10c{bottom:241.666667pt;}
.y73{bottom:245.400000pt;}
.y25{bottom:245.666667pt;}
.yac{bottom:246.200000pt;}
.y31{bottom:250.426667pt;}
.y10b{bottom:257.133333pt;}
.y24{bottom:261.400000pt;}
.yab{bottom:262.466667pt;}
.yaa{bottom:264.333333pt;}
.y30{bottom:266.186667pt;}
.y10a{bottom:272.333333pt;}
.y72{bottom:273.933333pt;}
.y23{bottom:277.666667pt;}
.y109{bottom:287.800000pt;}
.y71{bottom:289.400000pt;}
.y108{bottom:303.000000pt;}
.y70{bottom:304.866667pt;}
.ya7{bottom:311.026667pt;}
.y107{bottom:318.506667pt;}
.y6f{bottom:320.106667pt;}
.y106{bottom:333.706667pt;}
.y6e{bottom:335.560000pt;}
.y2f{bottom:342.773333pt;}
.y105{bottom:349.173333pt;}
.y6d{bottom:350.773333pt;}
.ya6{bottom:357.973333pt;}
.ya5{bottom:362.773333pt;}
.y104{bottom:364.373333pt;}
.y6c{bottom:379.293333pt;}
.y103{bottom:379.840000pt;}
.ya4{bottom:381.173333pt;}
.y6b{bottom:394.773333pt;}
.y102{bottom:395.026667pt;}
.ya3{bottom:399.040000pt;}
.yd2{bottom:400.893333pt;}
.y6a{bottom:410.226667pt;}
.y101{bottom:410.506667pt;}
.ya2{bottom:414.506667pt;}
.yd1{bottom:419.306667pt;}
.y69{bottom:425.440000pt;}
.y100{bottom:425.706667pt;}
.ya1{bottom:429.706667pt;}
.yd0{bottom:437.440000pt;}
.y68{bottom:440.893333pt;}
.yff{bottom:441.173333pt;}
.ya0{bottom:445.173333pt;}
.ycf{bottom:452.626667pt;}
.y67{bottom:456.106667pt;}
.yfe{bottom:456.400000pt;}
.y9f{bottom:460.400000pt;}
.y12b{bottom:461.733333pt;}
.yce{bottom:468.133333pt;}
.y66{bottom:471.600000pt;}
.yfd{bottom:471.866667pt;}
.y9e{bottom:475.866667pt;}
.ycd{bottom:483.333333pt;}
.y65{bottom:486.800000pt;}
.yfc{bottom:487.066667pt;}
.y9d{bottom:491.066667pt;}
.ycc{bottom:498.800000pt;}
.y64{bottom:502.266667pt;}
.yfb{bottom:502.533333pt;}
.y9c{bottom:506.533333pt;}
.ycb{bottom:514.000000pt;}
.y63{bottom:517.466667pt;}
.yfa{bottom:517.733333pt;}
.y9b{bottom:521.733333pt;}
.y62{bottom:532.933333pt;}
.yf9{bottom:533.200000pt;}
.ybd{bottom:533.733333pt;}
.y9a{bottom:537.200000pt;}
.y61{bottom:548.133333pt;}
.yf8{bottom:548.400000pt;}
.y99{bottom:552.400000pt;}
.yc4{bottom:552.933333pt;}
.y60{bottom:563.600000pt;}
.yf7{bottom:563.866667pt;}
.y98{bottom:567.866667pt;}
.yc0{bottom:572.666667pt;}
.y5f{bottom:578.800000pt;}
.yf6{bottom:579.066667pt;}
.y97{bottom:583.600000pt;}
.y5e{bottom:594.266667pt;}
.yf5{bottom:594.800000pt;}
.y94{bottom:599.066667pt;}
.y5d{bottom:609.506667pt;}
.yf4{bottom:612.973333pt;}
.y5c{bottom:624.973333pt;}
.yf3{bottom:628.173333pt;}
.ybc{bottom:628.706667pt;}
.y93{bottom:630.560000pt;}
.y5b{bottom:640.173333pt;}
.yf2{bottom:643.640000pt;}
.ybb{bottom:646.840000pt;}
.y22{bottom:649.226667pt;}
.y5a{bottom:655.640000pt;}
.yf1{bottom:658.840000pt;}
.y90{bottom:661.760000pt;}
.y12a{bottom:661.773333pt;}
.yba{bottom:662.026667pt;}
.y21{bottom:667.373333pt;}
.y59{bottom:670.840000pt;}
.yf0{bottom:674.306667pt;}
.y129{bottom:676.973333pt;}
.yb9{bottom:677.506667pt;}
.y20{bottom:684.960000pt;}
.y58{bottom:686.293333pt;}
.yef{bottom:690.040000pt;}
.yb8{bottom:691.093333pt;}
.y128{bottom:692.426667pt;}
.y8c{bottom:693.226667pt;}
.yb7{bottom:697.506667pt;}
.y1f{bottom:701.226667pt;}
.y57{bottom:702.040000pt;}
.y127{bottom:707.626667pt;}
.yee{bottom:707.893333pt;}
.y1e{bottom:715.373333pt;}
.y56{bottom:719.373333pt;}
.y1d{bottom:719.626667pt;}
.y126{bottom:723.106667pt;}
.yed{bottom:723.373333pt;}
.y55{bottom:732.173333pt;}
.y1c{bottom:735.106667pt;}
.y125{bottom:738.293333pt;}
.yec{bottom:738.560000pt;}
.y54{bottom:747.626667pt;}
.y8b{bottom:750.040000pt;}
.y1b{bottom:750.293333pt;}
.y124{bottom:753.773333pt;}
.yeb{bottom:754.040000pt;}
.y53{bottom:762.866667pt;}
.y1a{bottom:765.800000pt;}
.y8a{bottom:767.933333pt;}
.y123{bottom:769.000000pt;}
.yea{bottom:769.266667pt;}
.y52{bottom:778.333333pt;}
.y19{bottom:781.000000pt;}
.y89{bottom:783.400000pt;}
.y122{bottom:784.466667pt;}
.ye9{bottom:785.000000pt;}
.y51{bottom:793.533333pt;}
.y18{bottom:796.466667pt;}
.y88{bottom:798.600000pt;}
.y121{bottom:799.666667pt;}
.ye8{bottom:803.133333pt;}
.y50{bottom:808.200000pt;}
.y17{bottom:811.666667pt;}
.y87{bottom:814.066667pt;}
.y120{bottom:815.133333pt;}
.ye7{bottom:818.333333pt;}
.y4f{bottom:821.266667pt;}
.y16{bottom:826.333333pt;}
.y86{bottom:829.266667pt;}
.y11f{bottom:830.333333pt;}
.ye6{bottom:833.800000pt;}
.y4e{bottom:836.466667pt;}
.y15{bottom:844.200000pt;}
.y85{bottom:844.733333pt;}
.y11e{bottom:845.800000pt;}
.ye5{bottom:849.000000pt;}
.y4d{bottom:851.933333pt;}
.y14{bottom:859.400000pt;}
.y84{bottom:859.933333pt;}
.y11d{bottom:861.000000pt;}
.ye4{bottom:864.466667pt;}
.y4c{bottom:867.133333pt;}
.y13{bottom:870.333333pt;}
.y83{bottom:875.400000pt;}
.y11c{bottom:876.466667pt;}
.ye3{bottom:879.666667pt;}
.y4b{bottom:882.600000pt;}
.y12{bottom:888.733333pt;}
.y82{bottom:891.133333pt;}
.y11b{bottom:891.666667pt;}
.ye2{bottom:895.133333pt;}
.y4a{bottom:897.266667pt;}
.y11{bottom:907.173333pt;}
.ye1{bottom:908.773333pt;}
.y81{bottom:909.040000pt;}
.y49{bottom:910.106667pt;}
.yde{bottom:915.693333pt;}
.yd7{bottom:915.706667pt;}
.y11a{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.y80{bottom:924.506667pt;}
.yd{bottom:925.293333pt;}
.y48{bottom:925.560000pt;}
.ydb{bottom:936.773333pt;}
.y119{bottom:937.840000pt;}
.y7f{bottom:939.706667pt;}
.y47{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y118{bottom:953.040000pt;}
.y7e{bottom:955.173333pt;}
.y46{bottom:956.226667pt;}
.yd9{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.y117{bottom:968.506667pt;}
.y7d{bottom:970.373333pt;}
.y45{bottom:971.440000pt;}
.y9{bottom:975.960000pt;}
.y116{bottom:983.706667pt;}
.y44{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.yb6{bottom:993.293333pt;}
.y7c{bottom:998.893333pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yb5{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y42{bottom:1063.466667pt;}
.he{height:3.723958pt;}
.h22{height:3.733333pt;}
.h1b{height:3.763021pt;}
.h28{height:3.986667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h25{height:18.400000pt;}
.h1f{height:18.619792pt;}
.ha{height:18.666667pt;}
.h11{height:18.815104pt;}
.h23{height:18.933333pt;}
.h2b{height:20.266667pt;}
.hb{height:24.578125pt;}
.h29{height:25.066667pt;}
.hc{height:25.956250pt;}
.h12{height:29.791667pt;}
.h7{height:30.104167pt;}
.h19{height:30.666667pt;}
.h1a{height:30.700000pt;}
.h16{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hf{height:33.867188pt;}
.hd{height:37.239583pt;}
.h4{height:37.630208pt;}
.h24{height:38.133333pt;}
.h27{height:38.666667pt;}
.h2c{height:38.828125pt;}
.h17{height:39.562500pt;}
.h15{height:43.958333pt;}
.h10{height:44.687500pt;}
.h6{height:45.156250pt;}
.h21{height:45.366667pt;}
.h18{height:45.866667pt;}
.h1c{height:45.900000pt;}
.h2a{height:46.133333pt;}
.h14{height:46.218750pt;}
.h1{height:58.351562pt;}
.h1d{height:62.396875pt;}
.h2f{height:65.531250pt;}
.h1e{height:71.614583pt;}
.h2e{height:81.250000pt;}
.h20{height:84.300000pt;}
.h26{height:85.333333pt;}
.h2{height:86.400000pt;}
.h2d{height:212.026667pt;}
.h13{height:281.133333pt;}
.h0{height:1122.666667pt;}
.w1c{width:14.933333pt;}
.w26{width:15.733333pt;}
.w27{width:50.400000pt;}
.w1d{width:50.433333pt;}
.w16{width:50.700000pt;}
.w1f{width:55.500000pt;}
.w1e{width:55.733333pt;}
.w28{width:55.766667pt;}
.w20{width:61.066667pt;}
.w29{width:61.366667pt;}
.w4{width:64.266667pt;}
.w15{width:64.533333pt;}
.wf{width:65.366667pt;}
.we{width:65.600000pt;}
.w10{width:70.133333pt;}
.wd{width:78.166667pt;}
.wb{width:78.433333pt;}
.w14{width:84.033333pt;}
.w1b{width:84.300000pt;}
.wa{width:85.633333pt;}
.w9{width:85.866667pt;}
.w24{width:86.966667pt;}
.wc{width:88.300000pt;}
.w8{width:89.900000pt;}
.w11{width:90.433333pt;}
.w13{width:95.500000pt;}
.w3{width:96.000000pt;}
.w1a{width:99.233333pt;}
.w23{width:101.366667pt;}
.w18{width:106.166667pt;}
.w12{width:106.700000pt;}
.w21{width:112.833333pt;}
.w19{width:116.566667pt;}
.w22{width:117.100000pt;}
.w25{width:119.766667pt;}
.w17{width:166.960000pt;}
.w6{width:220.333333pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.933333pt;}
.x2{left:9.599999pt;}
.x1c{left:10.653333pt;}
.x1e{left:12.266667pt;}
.x26{left:13.333333pt;}
.xe{left:14.400000pt;}
.x1a{left:15.466667pt;}
.x2c{left:16.560000pt;}
.x19{left:17.866667pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x35{left:22.706667pt;}
.x22{left:24.000000pt;}
.x25{left:26.933333pt;}
.x20{left:29.600000pt;}
.x23{left:32.000000pt;}
.x29{left:33.360000pt;}
.x33{left:34.426667pt;}
.x2b{left:36.000000pt;}
.x31{left:37.893333pt;}
.x2a{left:41.600000pt;}
.x2f{left:59.200000pt;}
.x1{left:72.033322pt;}
.x10{left:75.766667pt;}
.x45{left:77.100000pt;}
.x44{left:96.033322pt;}
.xd{left:98.960000pt;}
.x3b{left:126.166655pt;}
.x9{left:136.559988pt;}
.x1b{left:143.240000pt;}
.x46{left:157.633333pt;}
.x12{left:166.200000pt;}
.x3c{left:185.666667pt;}
.x2d{left:198.199988pt;}
.xb{left:214.740000pt;}
.x47{left:230.473333pt;}
.x1d{left:234.200000pt;}
.x42{left:236.066667pt;}
.x30{left:239.800000pt;}
.x13{left:252.866667pt;}
.x39{left:290.240000pt;}
.x3d{left:292.373333pt;}
.x1f{left:325.173333pt;}
.x14{left:339.306667pt;}
.x32{left:346.506667pt;}
.x43{left:348.106667pt;}
.x6{left:396.666655pt;}
.x3a{left:402.000000pt;}
.x3e{left:410.266667pt;}
.x15{left:418.533333pt;}
.x21{left:432.400000pt;}
.x34{left:463.600000pt;}
.xc{left:501.773333pt;}
.x16{left:507.640000pt;}
.x3f{left:512.440000pt;}
.xf{left:515.093322pt;}
.x24{left:528.693333pt;}
.x8{left:547.893322pt;}
.x36{left:563.640000pt;}
.x7{left:576.173322pt;}
.x17{left:586.600000pt;}
.x40{left:600.200000pt;}
.x27{left:613.266667pt;}
.x5{left:619.666655pt;}
.x37{left:648.733333pt;}
.x18{left:653.000000pt;}
.x28{left:678.333333pt;}
.x38{left:714.373333pt;}
.x2e{left:717.839988pt;}
.x41{left:720.226667pt;}
.xa{left:722.106655pt;}
}




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