
    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_5398602c37b8f1782f7f23ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_ca41ce7a9e8ba0da0519be9f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_d5ca36408f5ed22b03252321.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2502f64ab32bf69283f9eae5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.019531;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_2ba8241c7fcab6629c4a44df.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012695;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_416f259ace645211cbc11a89.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;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_01ce8cbd34e42b9a86a59126.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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_239dfbbdaf3b5449bf1dbbe0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.ls9{letter-spacing:-0.984000px;}
.ls8{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.570000px;}
.ls12{letter-spacing:-0.294000px;}
.lsf{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.135000px;}
.ls6{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.063000px;}
.lsb{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.372000px;}
.ls2{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.516000px;}
.ls7{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.920000px;}
.ls15{letter-spacing:30.990000px;}
.ls16{letter-spacing:32.490000px;}
.ls10{letter-spacing:54.984000px;}
.ls14{letter-spacing:56.490000px;}
.ls13{letter-spacing:57.990000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws2{word-spacing:-44.688000px;}
.ws6{word-spacing:-33.120000px;}
.ws1{word-spacing:-31.464000px;}
.ws8{word-spacing:-18.780000px;}
.wsc{word-spacing:-17.580000px;}
.ws4{word-spacing:-16.902000px;}
.ws5{word-spacing:-15.918000px;}
.ws0{word-spacing:-15.024000px;}
.ws3{word-spacing:-14.064000px;}
.wsa{word-spacing:-13.515000px;}
.wsd{word-spacing:-12.270000px;}
.ws7{word-spacing:-12.207000px;}
.wse{word-spacing:-11.913000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-2.433000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._b{width:2.637000px;}
._6{width:4.416000px;}
._7{width:5.421000px;}
._8{width:6.636000px;}
._13{width:7.920000px;}
._14{width:9.021000px;}
._10{width:10.527000px;}
._c{width:11.949000px;}
._d{width:13.881000px;}
._16{width:15.504000px;}
._f{width:16.512000px;}
._15{width:17.568000px;}
._19{width:20.220000px;}
._1a{width:21.408000px;}
._e{width:22.428000px;}
._12{width:23.622000px;}
._11{width:25.083000px;}
._4{width:26.502000px;}
._5{width:27.660000px;}
._1b{width:28.920000px;}
._a{width:31.737000px;}
._2{width:37.125000px;}
._3{width:38.196000px;}
._18{width:186.888000px;}
._17{width:188.538000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fse{font-size:18.000000px;}
.fsf{font-size:30.000000px;}
.fs14{font-size:33.000000px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs13{font-size:47.433691px;}
.fs3{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs12{font-size:63.244921px;}
.fs1{font-size:72.000000px;}
.fs10{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:0.750000px;}
.y34{bottom:1.125000px;}
.y59{bottom:1.875000px;}
.y50{bottom:2.250000px;}
.y9{bottom:2.625000px;}
.y6c{bottom:3.000000px;}
.yd3{bottom:3.015000px;}
.y15{bottom:3.375000px;}
.y144{bottom:3.750000px;}
.y15e{bottom:4.500000px;}
.y3{bottom:4.875000px;}
.y145{bottom:5.625000px;}
.y13{bottom:6.000000px;}
.y57{bottom:7.125000px;}
.ya{bottom:8.625000px;}
.y4{bottom:10.125000px;}
.y6{bottom:15.037500px;}
.y15b{bottom:15.750000px;}
.y46{bottom:16.920000px;}
.y32{bottom:17.250000px;}
.y52{bottom:18.750000px;}
.y4e{bottom:19.170000px;}
.y53{bottom:19.500000px;}
.y7{bottom:20.625000px;}
.y6b{bottom:21.000000px;}
.yb{bottom:21.375000px;}
.yd2{bottom:21.390000px;}
.y84{bottom:21.405000px;}
.y2{bottom:22.875000px;}
.y110{bottom:23.625000px;}
.y15a{bottom:29.250000px;}
.y45{bottom:31.545000px;}
.y31{bottom:31.905000px;}
.y12{bottom:32.250000px;}
.y11e{bottom:39.000000px;}
.y138{bottom:39.360000px;}
.y6a{bottom:39.375000px;}
.yd1{bottom:39.420000px;}
.y54{bottom:39.750000px;}
.y83{bottom:42.045000px;}
.y159{bottom:43.125000px;}
.y1e{bottom:45.420000px;}
.y30{bottom:46.155000px;}
.y44{bottom:46.170000px;}
.y10f{bottom:47.257500px;}
.y158{bottom:56.625000px;}
.y13f{bottom:57.367500px;}
.y11d{bottom:57.375000px;}
.y69{bottom:57.382500px;}
.y91{bottom:57.420000px;}
.y137{bottom:57.750000px;}
.ya2{bottom:57.757500px;}
.y11{bottom:58.500000px;}
.y1d{bottom:59.295000px;}
.y43{bottom:60.420000px;}
.y2f{bottom:60.780000px;}
.y8{bottom:61.125000px;}
.y70{bottom:61.500000px;}
.y10e{bottom:65.632500px;}
.y82{bottom:65.655000px;}
.y157{bottom:70.125000px;}
.y1c{bottom:70.920000px;}
.y5{bottom:71.250000px;}
.y2e{bottom:75.030000px;}
.y42{bottom:75.045000px;}
.y11c{bottom:75.375000px;}
.y68{bottom:75.382500px;}
.y90{bottom:75.420000px;}
.ya1{bottom:75.742500px;}
.y136{bottom:75.750000px;}
.y4d{bottom:77.625000px;}
.yf{bottom:82.125000px;}
.y4c{bottom:82.875000px;}
.y1b{bottom:82.920000px;}
.y10d{bottom:83.617500px;}
.y156{bottom:83.625000px;}
.y81{bottom:83.655000px;}
.y10{bottom:84.375000px;}
.y4b{bottom:88.500000px;}
.y41{bottom:89.295000px;}
.y2d{bottom:89.655000px;}
.y67{bottom:93.367500px;}
.y13e{bottom:93.742500px;}
.y4a{bottom:93.750000px;}
.ya0{bottom:93.757500px;}
.y8f{bottom:93.795000px;}
.y1a{bottom:94.545000px;}
.y11b{bottom:96.045000px;}
.y155{bottom:97.530000px;}
.y49{bottom:99.375000px;}
.y48{bottom:99.750000px;}
.y80{bottom:101.655000px;}
.y10c{bottom:101.662500px;}
.yd6{bottom:103.537500px;}
.y40{bottom:103.920000px;}
.y2c{bottom:104.280000px;}
.y19{bottom:106.170000px;}
.y5a{bottom:106.912500px;}
.y95{bottom:108.412500px;}
.y13c{bottom:109.912500px;}
.y154{bottom:111.030000px;}
.y135{bottom:111.780000px;}
.y66{bottom:111.787500px;}
.y8e{bottom:111.795000px;}
.yd7{bottom:113.662500px;}
.y18{bottom:118.170000px;}
.y2b{bottom:118.530000px;}
.y3f{bottom:118.545000px;}
.y7f{bottom:119.655000px;}
.y10b{bottom:119.662500px;}
.y11a{bottom:119.670000px;}
.yd5{bottom:120.037500px;}
.y153{bottom:124.530000px;}
.y65{bottom:129.787500px;}
.y8d{bottom:129.795000px;}
.y134{bottom:130.155000px;}
.y9f{bottom:130.162500px;}
.y17{bottom:130.545000px;}
.y3e{bottom:132.795000px;}
.y2a{bottom:133.155000px;}
.y119{bottom:137.670000px;}
.y7e{bottom:138.030000px;}
.y10a{bottom:140.287500px;}
.y13d{bottom:146.287500px;}
.y3d{bottom:147.450000px;}
.y64{bottom:147.787500px;}
.y29{bottom:147.825000px;}
.y133{bottom:148.155000px;}
.y9e{bottom:148.162500px;}
.y8c{bottom:148.170000px;}
.y152{bottom:151.530000px;}
.y118{bottom:155.670000px;}
.y7d{bottom:156.075000px;}
.yd4{bottom:157.545000px;}
.y28{bottom:162.075000px;}
.y109{bottom:163.912500px;}
.y151{bottom:165.405000px;}
.y132{bottom:166.155000px;}
.y63{bottom:166.162500px;}
.y8b{bottom:166.170000px;}
.yd0{bottom:166.215000px;}
.y117{bottom:174.045000px;}
.y7c{bottom:174.075000px;}
.y3c{bottom:176.325000px;}
.y27{bottom:176.700000px;}
.y150{bottom:178.905000px;}
.ya3{bottom:181.530000px;}
.y108{bottom:182.287500px;}
.y89{bottom:182.325000px;}
.y62{bottom:184.162500px;}
.y8a{bottom:184.200000px;}
.ycf{bottom:184.215000px;}
.y131{bottom:184.530000px;}
.y26{bottom:190.950000px;}
.y116{bottom:192.045000px;}
.y14f{bottom:192.405000px;}
.y7b{bottom:192.450000px;}
.y107{bottom:200.287500px;}
.y61{bottom:202.162500px;}
.yce{bottom:202.200000px;}
.y130{bottom:202.530000px;}
.y9d{bottom:202.537500px;}
.y3b{bottom:205.200000px;}
.y25{bottom:205.575000px;}
.y14e{bottom:205.905000px;}
.y115{bottom:210.045000px;}
.y7a{bottom:210.450000px;}
.y106{bottom:218.287500px;}
.y14d{bottom:219.450000px;}
.y3a{bottom:219.825000px;}
.y60{bottom:220.162500px;}
.y37{bottom:220.185000px;}
.y24{bottom:220.200000px;}
.y12f{bottom:220.530000px;}
.y9c{bottom:220.537500px;}
.ycd{bottom:220.590000px;}
.y38{bottom:225.060000px;}
.y79{bottom:228.450000px;}
.y14c{bottom:233.325000px;}
.y23{bottom:234.450000px;}
.y105{bottom:236.707500px;}
.y12e{bottom:238.575000px;}
.y5f{bottom:238.582500px;}
.ycc{bottom:238.590000px;}
.y78{bottom:246.450000px;}
.y14b{bottom:246.825000px;}
.y22{bottom:249.075000px;}
.y149{bottom:254.700000px;}
.y104{bottom:254.707500px;}
.y5e{bottom:256.567500px;}
.ycb{bottom:256.590000px;}
.y12d{bottom:256.950000px;}
.y9b{bottom:259.207500px;}
.y14a{bottom:260.325000px;}
.y21{bottom:263.700000px;}
.y77{bottom:264.855000px;}
.y114{bottom:267.075000px;}
.y13b{bottom:273.075000px;}
.y5d{bottom:274.582500px;}
.y12c{bottom:274.950000px;}
.yca{bottom:274.965000px;}
.y103{bottom:275.332500px;}
.y9a{bottom:282.832500px;}
.y76{bottom:282.855000px;}
.y13a{bottom:289.200000px;}
.y113{bottom:290.700000px;}
.y12b{bottom:292.950000px;}
.y5c{bottom:292.957500px;}
.yc9{bottom:292.995000px;}
.yd{bottom:298.230000px;}
.y102{bottom:298.957500px;}
.y75{bottom:300.855000px;}
.y99{bottom:301.207500px;}
.y112{bottom:308.700000px;}
.y5b{bottom:310.957500px;}
.yc8{bottom:310.995000px;}
.y12a{bottom:311.325000px;}
.y101{bottom:316.957500px;}
.y98{bottom:319.207500px;}
.y74{bottom:319.230000px;}
.y139{bottom:326.700000px;}
.yc7{bottom:328.995000px;}
.y129{bottom:329.325000px;}
.y100{bottom:334.957500px;}
.y96{bottom:335.332500px;}
.y97{bottom:337.207500px;}
.y73{bottom:337.230000px;}
.y128{bottom:347.325000px;}
.yc6{bottom:347.370000px;}
.y122{bottom:350.745000px;}
.yff{bottom:353.362500px;}
.y72{bottom:355.230000px;}
.y127{bottom:365.355000px;}
.yc5{bottom:365.370000px;}
.yfe{bottom:373.987500px;}
.yc4{bottom:383.370000px;}
.y126{bottom:383.730000px;}
.yfd{bottom:397.612500px;}
.y125{bottom:401.730000px;}
.yc3{bottom:401.790000px;}
.yfc{bottom:415.612500px;}
.y123{bottom:417.855000px;}
.y124{bottom:419.730000px;}
.yc2{bottom:419.790000px;}
.y58{bottom:432.870000px;}
.yfb{bottom:433.612500px;}
.yc1{bottom:437.790000px;}
.y56{bottom:444.495000px;}
.yfa{bottom:451.612500px;}
.yc0{bottom:455.790000px;}
.y94{bottom:460.650000px;}
.yf9{bottom:470.032500px;}
.ybf{bottom:474.165000px;}
.y93{bottom:477.150000px;}
.y55{bottom:482.400000px;}
.yf8{bottom:488.032500px;}
.ybe{bottom:492.165000px;}
.yf7{bottom:506.032500px;}
.y51{bottom:506.400000px;}
.y1f{bottom:509.775000px;}
.ybd{bottom:510.165000px;}
.y92{bottom:514.650000px;}
.yf6{bottom:524.407500px;}
.ybc{bottom:530.820000px;}
.y88{bottom:538.650000px;}
.yf5{bottom:542.407500px;}
.ybb{bottom:554.445000px;}
.y4f{bottom:555.900000px;}
.yf4{bottom:560.407500px;}
.yc{bottom:564.150000px;}
.yba{bottom:572.445000px;}
.yf3{bottom:578.407500px;}
.yb9{bottom:590.820000px;}
.y47{bottom:595.320000px;}
.yf2{bottom:596.812500px;}
.yb8{bottom:608.820000px;}
.yf1{bottom:614.812500px;}
.yb7{bottom:626.820000px;}
.yf0{bottom:632.812500px;}
.yb6{bottom:645.195000px;}
.yef{bottom:651.187500px;}
.y160{bottom:658.695000px;}
.yb5{bottom:663.225000px;}
.yee{bottom:669.187500px;}
.y15f{bottom:676.695000px;}
.yb4{bottom:681.225000px;}
.yed{bottom:687.187500px;}
.y36{bottom:699.195000px;}
.yb3{bottom:699.225000px;}
.yec{bottom:705.187500px;}
.y15d{bottom:713.475000px;}
.yb2{bottom:720.600000px;}
.yeb{bottom:723.592500px;}
.y15c{bottom:729.600000px;}
.y87{bottom:737.850000px;}
.yea{bottom:741.592500px;}
.yb1{bottom:741.600000px;}
.y86{bottom:754.350000px;}
.ye9{bottom:759.592500px;}
.yb0{bottom:762.975000px;}
.ye8{bottom:777.592500px;}
.yaf{bottom:784.020000px;}
.y121{bottom:785.475000px;}
.y85{bottom:791.850000px;}
.ye7{bottom:795.967500px;}
.y39{bottom:795.975000px;}
.y120{bottom:801.975000px;}
.yae{bottom:805.395000px;}
.y20{bottom:810.225000px;}
.ye6{bottom:813.967500px;}
.y71{bottom:815.850000px;}
.yad{bottom:826.770000px;}
.ye5{bottom:831.967500px;}
.y11f{bottom:839.880000px;}
.yac{bottom:844.770000px;}
.ye4{bottom:850.387500px;}
.y111{bottom:862.380000px;}
.yab{bottom:862.770000px;}
.ye3{bottom:868.387500px;}
.yaa{bottom:880.770000px;}
.ye2{bottom:886.387500px;}
.ya9{bottom:899.175000px;}
.ye1{bottom:904.387500px;}
.ya8{bottom:917.175000px;}
.ye0{bottom:922.762500px;}
.ya7{bottom:935.175000px;}
.y33{bottom:936.255000px;}
.ydf{bottom:940.762500px;}
.y16{bottom:941.505000px;}
.ya6{bottom:953.550000px;}
.yde{bottom:958.762500px;}
.ya5{bottom:971.550000px;}
.ydd{bottom:979.417500px;}
.ya4{bottom:989.550000px;}
.ydc{bottom:1003.042500px;}
.y148{bottom:1009.425000px;}
.ydb{bottom:1021.417500px;}
.y147{bottom:1025.925000px;}
.yda{bottom:1039.417500px;}
.yd8{bottom:1055.542500px;}
.yd9{bottom:1057.417500px;}
.y146{bottom:1063.425000px;}
.y14{bottom:1085.580000px;}
.y143{bottom:1087.455000px;}
.ye{bottom:1102.080000px;}
.y142{bottom:1108.080000px;}
.y141{bottom:1124.580000px;}
.y140{bottom:1162.080000px;}
.y6f{bottom:1189.830000px;}
.y6e{bottom:1208.625000px;}
.y1{bottom:1226.625000px;}
.y6d{bottom:1227.375000px;}
.hd{height:3.999023px;}
.h34{height:4.166016px;}
.h1b{height:5.250000px;}
.h9{height:5.625000px;}
.h23{height:8.250000px;}
.h2d{height:11.625000px;}
.ha{height:12.005859px;}
.h1c{height:12.498047px;}
.h1f{height:14.250000px;}
.h1d{height:14.730469px;}
.h42{height:16.125000px;}
.h14{height:16.500000px;}
.h44{height:20.625000px;}
.h24{height:22.500000px;}
.h22{height:31.162500px;}
.h6{height:31.912500px;}
.h2e{height:31.916016px;}
.h38{height:32.625000px;}
.h2b{height:32.662500px;}
.h48{height:33.016113px;}
.h28{height:36.000000px;}
.h49{height:36.772500px;}
.hb{height:38.250000px;}
.h33{height:38.625000px;}
.h18{height:39.019043px;}
.h10{height:39.281250px;}
.h29{height:40.500000px;}
.h7{height:43.875000px;}
.h17{height:44.191406px;}
.h46{height:45.021973px;}
.h47{height:47.456852px;}
.h8{height:48.023438px;}
.h31{height:49.101562px;}
.h15{height:49.189453px;}
.h25{height:49.500000px;}
.h2{height:49.804688px;}
.h5{height:49.992188px;}
.h27{height:54.026367px;}
.h30{height:60.029297px;}
.h26{height:63.000000px;}
.h3b{height:63.275802px;}
.h40{height:66.656250px;}
.h32{height:68.742188px;}
.h3e{height:72.000000px;}
.h4{height:72.035156px;}
.h2a{height:78.562500px;}
.h36{height:78.703125px;}
.h13{height:79.687500px;}
.h3{height:80.287500px;}
.h12{height:89.648438px;}
.h37{height:96.046875px;}
.h2c{height:98.378906px;}
.h21{height:103.875000px;}
.h11{height:105.037500px;}
.hc{height:108.000000px;}
.hf{height:139.453125px;}
.h16{height:144.075000px;}
.h43{height:163.170000px;}
.h39{height:199.200000px;}
.h20{height:231.825000px;}
.h1e{height:237.075000px;}
.h45{height:271.575000px;}
.h1a{height:275.355000px;}
.h3f{height:323.700000px;}
.h2f{height:325.950000px;}
.h3a{height:352.245000px;}
.h35{height:370.245000px;}
.h41{height:434.730000px;}
.h19{height:521.430000px;}
.he{height:642.975000px;}
.h3c{height:1004.550000px;}
.h3d{height:1072.425000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.w1b{width:16.875000px;}
.w19{width:18.000000px;}
.w17{width:18.750000px;}
.wb{width:21.375000px;}
.w7{width:25.162500px;}
.w5{width:59.250000px;}
.w6{width:62.625000px;}
.w14{width:85.537500px;}
.w10{width:95.662500px;}
.w2{width:97.537500px;}
.w12{width:106.537500px;}
.wf{width:114.787500px;}
.w9{width:115.950000px;}
.w15{width:117.037500px;}
.w11{width:127.537500px;}
.w13{width:154.200000px;}
.w3{width:182.700000px;}
.wa{width:233.700000px;}
.wd{width:349.650000px;}
.wc{width:367.650000px;}
.w4{width:461.820000px;}
.w8{width:713.520000px;}
.w18{width:776.925000px;}
.w1c{width:782.550000px;}
.w1a{width:784.425000px;}
.w16{width:795.675000px;}
.we{width:801.300000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x17{left:13.875000px;}
.x19{left:18.795000px;}
.x1b{left:26.280000px;}
.x8{left:30.750000px;}
.x26{left:34.875000px;}
.xb{left:44.250000px;}
.x2{left:45.787500px;}
.xa{left:51.000000px;}
.x1{left:54.037487px;}
.x22{left:62.662500px;}
.x1f{left:64.537500px;}
.xc{left:66.000000px;}
.x3{left:89.287500px;}
.x21{left:95.287487px;}
.xd{left:104.662500px;}
.xe{left:108.412500px;}
.x1e{left:109.530000px;}
.x10{left:116.332500px;}
.xf{left:133.575000px;}
.x4{left:143.325000px;}
.x15{left:160.575000px;}
.x5{left:174.825000px;}
.x28{left:207.832500px;}
.x11{left:224.370000px;}
.x16{left:256.245000px;}
.x29{left:258.112500px;}
.x6{left:326.025000px;}
.x23{left:327.112500px;}
.x2b{left:350.362500px;}
.x18{left:383.775000px;}
.x14{left:400.657500px;}
.x24{left:415.657500px;}
.x25{left:429.944987px;}
.x2c{left:451.312500px;}
.x12{left:458.070000px;}
.x13{left:479.445000px;}
.x1a{left:490.320000px;}
.x2a{left:491.812500px;}
.x1c{left:644.520000px;}
.x27{left:689.137500px;}
.x20{left:696.674987px;}
.x1d{left:730.050000px;}
.x9{left:787.845000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.ls9{letter-spacing:-0.874667pt;}
.ls8{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.506667pt;}
.ls12{letter-spacing:-0.261333pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.120000pt;}
.ls6{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.056000pt;}
.lsb{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.330667pt;}
.ls2{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.458667pt;}
.ls7{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.706667pt;}
.ls15{letter-spacing:27.546667pt;}
.ls16{letter-spacing:28.880000pt;}
.ls10{letter-spacing:48.874667pt;}
.ls14{letter-spacing:50.213333pt;}
.ls13{letter-spacing:51.546667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws2{word-spacing:-39.722667pt;}
.ws6{word-spacing:-29.440000pt;}
.ws1{word-spacing:-27.968000pt;}
.ws8{word-spacing:-16.693333pt;}
.wsc{word-spacing:-15.626667pt;}
.ws4{word-spacing:-15.024000pt;}
.ws5{word-spacing:-14.149333pt;}
.ws0{word-spacing:-13.354667pt;}
.ws3{word-spacing:-12.501333pt;}
.wsa{word-spacing:-12.013333pt;}
.wsd{word-spacing:-10.906667pt;}
.ws7{word-spacing:-10.850667pt;}
.wse{word-spacing:-10.589333pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-2.162667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._b{width:2.344000pt;}
._6{width:3.925333pt;}
._7{width:4.818667pt;}
._8{width:5.898667pt;}
._13{width:7.040000pt;}
._14{width:8.018667pt;}
._10{width:9.357333pt;}
._c{width:10.621333pt;}
._d{width:12.338667pt;}
._16{width:13.781333pt;}
._f{width:14.677333pt;}
._15{width:15.616000pt;}
._19{width:17.973333pt;}
._1a{width:19.029333pt;}
._e{width:19.936000pt;}
._12{width:20.997333pt;}
._11{width:22.296000pt;}
._4{width:23.557333pt;}
._5{width:24.586667pt;}
._1b{width:25.706667pt;}
._a{width:28.210667pt;}
._2{width:33.000000pt;}
._3{width:33.952000pt;}
._18{width:166.122667pt;}
._17{width:167.589333pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fse{font-size:16.000000pt;}
.fsf{font-size:26.666667pt;}
.fs14{font-size:29.333333pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs13{font-size:42.163281pt;}
.fs3{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs12{font-size:56.217707pt;}
.fs1{font-size:64.000000pt;}
.fs10{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:0.666667pt;}
.y34{bottom:1.000000pt;}
.y59{bottom:1.666667pt;}
.y50{bottom:2.000000pt;}
.y9{bottom:2.333333pt;}
.y6c{bottom:2.666667pt;}
.yd3{bottom:2.680000pt;}
.y15{bottom:3.000000pt;}
.y144{bottom:3.333333pt;}
.y15e{bottom:4.000000pt;}
.y3{bottom:4.333333pt;}
.y145{bottom:5.000000pt;}
.y13{bottom:5.333333pt;}
.y57{bottom:6.333333pt;}
.ya{bottom:7.666667pt;}
.y4{bottom:9.000000pt;}
.y6{bottom:13.366667pt;}
.y15b{bottom:14.000000pt;}
.y46{bottom:15.040000pt;}
.y32{bottom:15.333333pt;}
.y52{bottom:16.666667pt;}
.y4e{bottom:17.040000pt;}
.y53{bottom:17.333333pt;}
.y7{bottom:18.333333pt;}
.y6b{bottom:18.666667pt;}
.yb{bottom:19.000000pt;}
.yd2{bottom:19.013333pt;}
.y84{bottom:19.026667pt;}
.y2{bottom:20.333333pt;}
.y110{bottom:21.000000pt;}
.y15a{bottom:26.000000pt;}
.y45{bottom:28.040000pt;}
.y31{bottom:28.360000pt;}
.y12{bottom:28.666667pt;}
.y11e{bottom:34.666667pt;}
.y138{bottom:34.986667pt;}
.y6a{bottom:35.000000pt;}
.yd1{bottom:35.040000pt;}
.y54{bottom:35.333333pt;}
.y83{bottom:37.373333pt;}
.y159{bottom:38.333333pt;}
.y1e{bottom:40.373333pt;}
.y30{bottom:41.026667pt;}
.y44{bottom:41.040000pt;}
.y10f{bottom:42.006667pt;}
.y158{bottom:50.333333pt;}
.y13f{bottom:50.993333pt;}
.y11d{bottom:51.000000pt;}
.y69{bottom:51.006667pt;}
.y91{bottom:51.040000pt;}
.y137{bottom:51.333333pt;}
.ya2{bottom:51.340000pt;}
.y11{bottom:52.000000pt;}
.y1d{bottom:52.706667pt;}
.y43{bottom:53.706667pt;}
.y2f{bottom:54.026667pt;}
.y8{bottom:54.333333pt;}
.y70{bottom:54.666667pt;}
.y10e{bottom:58.340000pt;}
.y82{bottom:58.360000pt;}
.y157{bottom:62.333333pt;}
.y1c{bottom:63.040000pt;}
.y5{bottom:63.333333pt;}
.y2e{bottom:66.693333pt;}
.y42{bottom:66.706667pt;}
.y11c{bottom:67.000000pt;}
.y68{bottom:67.006667pt;}
.y90{bottom:67.040000pt;}
.ya1{bottom:67.326667pt;}
.y136{bottom:67.333333pt;}
.y4d{bottom:69.000000pt;}
.yf{bottom:73.000000pt;}
.y4c{bottom:73.666667pt;}
.y1b{bottom:73.706667pt;}
.y10d{bottom:74.326667pt;}
.y156{bottom:74.333333pt;}
.y81{bottom:74.360000pt;}
.y10{bottom:75.000000pt;}
.y4b{bottom:78.666667pt;}
.y41{bottom:79.373333pt;}
.y2d{bottom:79.693333pt;}
.y67{bottom:82.993333pt;}
.y13e{bottom:83.326667pt;}
.y4a{bottom:83.333333pt;}
.ya0{bottom:83.340000pt;}
.y8f{bottom:83.373333pt;}
.y1a{bottom:84.040000pt;}
.y11b{bottom:85.373333pt;}
.y155{bottom:86.693333pt;}
.y49{bottom:88.333333pt;}
.y48{bottom:88.666667pt;}
.y80{bottom:90.360000pt;}
.y10c{bottom:90.366667pt;}
.yd6{bottom:92.033333pt;}
.y40{bottom:92.373333pt;}
.y2c{bottom:92.693333pt;}
.y19{bottom:94.373333pt;}
.y5a{bottom:95.033333pt;}
.y95{bottom:96.366667pt;}
.y13c{bottom:97.700000pt;}
.y154{bottom:98.693333pt;}
.y135{bottom:99.360000pt;}
.y66{bottom:99.366667pt;}
.y8e{bottom:99.373333pt;}
.yd7{bottom:101.033333pt;}
.y18{bottom:105.040000pt;}
.y2b{bottom:105.360000pt;}
.y3f{bottom:105.373333pt;}
.y7f{bottom:106.360000pt;}
.y10b{bottom:106.366667pt;}
.y11a{bottom:106.373333pt;}
.yd5{bottom:106.700000pt;}
.y153{bottom:110.693333pt;}
.y65{bottom:115.366667pt;}
.y8d{bottom:115.373333pt;}
.y134{bottom:115.693333pt;}
.y9f{bottom:115.700000pt;}
.y17{bottom:116.040000pt;}
.y3e{bottom:118.040000pt;}
.y2a{bottom:118.360000pt;}
.y119{bottom:122.373333pt;}
.y7e{bottom:122.693333pt;}
.y10a{bottom:124.700000pt;}
.y13d{bottom:130.033333pt;}
.y3d{bottom:131.066667pt;}
.y64{bottom:131.366667pt;}
.y29{bottom:131.400000pt;}
.y133{bottom:131.693333pt;}
.y9e{bottom:131.700000pt;}
.y8c{bottom:131.706667pt;}
.y152{bottom:134.693333pt;}
.y118{bottom:138.373333pt;}
.y7d{bottom:138.733333pt;}
.yd4{bottom:140.040000pt;}
.y28{bottom:144.066667pt;}
.y109{bottom:145.700000pt;}
.y151{bottom:147.026667pt;}
.y132{bottom:147.693333pt;}
.y63{bottom:147.700000pt;}
.y8b{bottom:147.706667pt;}
.yd0{bottom:147.746667pt;}
.y117{bottom:154.706667pt;}
.y7c{bottom:154.733333pt;}
.y3c{bottom:156.733333pt;}
.y27{bottom:157.066667pt;}
.y150{bottom:159.026667pt;}
.ya3{bottom:161.360000pt;}
.y108{bottom:162.033333pt;}
.y89{bottom:162.066667pt;}
.y62{bottom:163.700000pt;}
.y8a{bottom:163.733333pt;}
.ycf{bottom:163.746667pt;}
.y131{bottom:164.026667pt;}
.y26{bottom:169.733333pt;}
.y116{bottom:170.706667pt;}
.y14f{bottom:171.026667pt;}
.y7b{bottom:171.066667pt;}
.y107{bottom:178.033333pt;}
.y61{bottom:179.700000pt;}
.yce{bottom:179.733333pt;}
.y130{bottom:180.026667pt;}
.y9d{bottom:180.033333pt;}
.y3b{bottom:182.400000pt;}
.y25{bottom:182.733333pt;}
.y14e{bottom:183.026667pt;}
.y115{bottom:186.706667pt;}
.y7a{bottom:187.066667pt;}
.y106{bottom:194.033333pt;}
.y14d{bottom:195.066667pt;}
.y3a{bottom:195.400000pt;}
.y60{bottom:195.700000pt;}
.y37{bottom:195.720000pt;}
.y24{bottom:195.733333pt;}
.y12f{bottom:196.026667pt;}
.y9c{bottom:196.033333pt;}
.ycd{bottom:196.080000pt;}
.y38{bottom:200.053333pt;}
.y79{bottom:203.066667pt;}
.y14c{bottom:207.400000pt;}
.y23{bottom:208.400000pt;}
.y105{bottom:210.406667pt;}
.y12e{bottom:212.066667pt;}
.y5f{bottom:212.073333pt;}
.ycc{bottom:212.080000pt;}
.y78{bottom:219.066667pt;}
.y14b{bottom:219.400000pt;}
.y22{bottom:221.400000pt;}
.y149{bottom:226.400000pt;}
.y104{bottom:226.406667pt;}
.y5e{bottom:228.060000pt;}
.ycb{bottom:228.080000pt;}
.y12d{bottom:228.400000pt;}
.y9b{bottom:230.406667pt;}
.y14a{bottom:231.400000pt;}
.y21{bottom:234.400000pt;}
.y77{bottom:235.426667pt;}
.y114{bottom:237.400000pt;}
.y13b{bottom:242.733333pt;}
.y5d{bottom:244.073333pt;}
.y12c{bottom:244.400000pt;}
.yca{bottom:244.413333pt;}
.y103{bottom:244.740000pt;}
.y9a{bottom:251.406667pt;}
.y76{bottom:251.426667pt;}
.y13a{bottom:257.066667pt;}
.y113{bottom:258.400000pt;}
.y12b{bottom:260.400000pt;}
.y5c{bottom:260.406667pt;}
.yc9{bottom:260.440000pt;}
.yd{bottom:265.093333pt;}
.y102{bottom:265.740000pt;}
.y75{bottom:267.426667pt;}
.y99{bottom:267.740000pt;}
.y112{bottom:274.400000pt;}
.y5b{bottom:276.406667pt;}
.yc8{bottom:276.440000pt;}
.y12a{bottom:276.733333pt;}
.y101{bottom:281.740000pt;}
.y98{bottom:283.740000pt;}
.y74{bottom:283.760000pt;}
.y139{bottom:290.400000pt;}
.yc7{bottom:292.440000pt;}
.y129{bottom:292.733333pt;}
.y100{bottom:297.740000pt;}
.y96{bottom:298.073333pt;}
.y97{bottom:299.740000pt;}
.y73{bottom:299.760000pt;}
.y128{bottom:308.733333pt;}
.yc6{bottom:308.773333pt;}
.y122{bottom:311.773333pt;}
.yff{bottom:314.100000pt;}
.y72{bottom:315.760000pt;}
.y127{bottom:324.760000pt;}
.yc5{bottom:324.773333pt;}
.yfe{bottom:332.433333pt;}
.yc4{bottom:340.773333pt;}
.y126{bottom:341.093333pt;}
.yfd{bottom:353.433333pt;}
.y125{bottom:357.093333pt;}
.yc3{bottom:357.146667pt;}
.yfc{bottom:369.433333pt;}
.y123{bottom:371.426667pt;}
.y124{bottom:373.093333pt;}
.yc2{bottom:373.146667pt;}
.y58{bottom:384.773333pt;}
.yfb{bottom:385.433333pt;}
.yc1{bottom:389.146667pt;}
.y56{bottom:395.106667pt;}
.yfa{bottom:401.433333pt;}
.yc0{bottom:405.146667pt;}
.y94{bottom:409.466667pt;}
.yf9{bottom:417.806667pt;}
.ybf{bottom:421.480000pt;}
.y93{bottom:424.133333pt;}
.y55{bottom:428.800000pt;}
.yf8{bottom:433.806667pt;}
.ybe{bottom:437.480000pt;}
.yf7{bottom:449.806667pt;}
.y51{bottom:450.133333pt;}
.y1f{bottom:453.133333pt;}
.ybd{bottom:453.480000pt;}
.y92{bottom:457.466667pt;}
.yf6{bottom:466.140000pt;}
.ybc{bottom:471.840000pt;}
.y88{bottom:478.800000pt;}
.yf5{bottom:482.140000pt;}
.ybb{bottom:492.840000pt;}
.y4f{bottom:494.133333pt;}
.yf4{bottom:498.140000pt;}
.yc{bottom:501.466667pt;}
.yba{bottom:508.840000pt;}
.yf3{bottom:514.140000pt;}
.yb9{bottom:525.173333pt;}
.y47{bottom:529.173333pt;}
.yf2{bottom:530.500000pt;}
.yb8{bottom:541.173333pt;}
.yf1{bottom:546.500000pt;}
.yb7{bottom:557.173333pt;}
.yf0{bottom:562.500000pt;}
.yb6{bottom:573.506667pt;}
.yef{bottom:578.833333pt;}
.y160{bottom:585.506667pt;}
.yb5{bottom:589.533333pt;}
.yee{bottom:594.833333pt;}
.y15f{bottom:601.506667pt;}
.yb4{bottom:605.533333pt;}
.yed{bottom:610.833333pt;}
.y36{bottom:621.506667pt;}
.yb3{bottom:621.533333pt;}
.yec{bottom:626.833333pt;}
.y15d{bottom:634.200000pt;}
.yb2{bottom:640.533333pt;}
.yeb{bottom:643.193333pt;}
.y15c{bottom:648.533333pt;}
.y87{bottom:655.866667pt;}
.yea{bottom:659.193333pt;}
.yb1{bottom:659.200000pt;}
.y86{bottom:670.533333pt;}
.ye9{bottom:675.193333pt;}
.yb0{bottom:678.200000pt;}
.ye8{bottom:691.193333pt;}
.yaf{bottom:696.906667pt;}
.y121{bottom:698.200000pt;}
.y85{bottom:703.866667pt;}
.ye7{bottom:707.526667pt;}
.y39{bottom:707.533333pt;}
.y120{bottom:712.866667pt;}
.yae{bottom:715.906667pt;}
.y20{bottom:720.200000pt;}
.ye6{bottom:723.526667pt;}
.y71{bottom:725.200000pt;}
.yad{bottom:734.906667pt;}
.ye5{bottom:739.526667pt;}
.y11f{bottom:746.560000pt;}
.yac{bottom:750.906667pt;}
.ye4{bottom:755.900000pt;}
.y111{bottom:766.560000pt;}
.yab{bottom:766.906667pt;}
.ye3{bottom:771.900000pt;}
.yaa{bottom:782.906667pt;}
.ye2{bottom:787.900000pt;}
.ya9{bottom:799.266667pt;}
.ye1{bottom:803.900000pt;}
.ya8{bottom:815.266667pt;}
.ye0{bottom:820.233333pt;}
.ya7{bottom:831.266667pt;}
.y33{bottom:832.226667pt;}
.ydf{bottom:836.233333pt;}
.y16{bottom:836.893333pt;}
.ya6{bottom:847.600000pt;}
.yde{bottom:852.233333pt;}
.ya5{bottom:863.600000pt;}
.ydd{bottom:870.593333pt;}
.ya4{bottom:879.600000pt;}
.ydc{bottom:891.593333pt;}
.y148{bottom:897.266667pt;}
.ydb{bottom:907.926667pt;}
.y147{bottom:911.933333pt;}
.yda{bottom:923.926667pt;}
.yd8{bottom:938.260000pt;}
.yd9{bottom:939.926667pt;}
.y146{bottom:945.266667pt;}
.y14{bottom:964.960000pt;}
.y143{bottom:966.626667pt;}
.ye{bottom:979.626667pt;}
.y142{bottom:984.960000pt;}
.y141{bottom:999.626667pt;}
.y140{bottom:1032.960000pt;}
.y6f{bottom:1057.626667pt;}
.y6e{bottom:1074.333333pt;}
.y1{bottom:1090.333333pt;}
.y6d{bottom:1091.000000pt;}
.hd{height:3.554688pt;}
.h34{height:3.703125pt;}
.h1b{height:4.666667pt;}
.h9{height:5.000000pt;}
.h23{height:7.333333pt;}
.h2d{height:10.333333pt;}
.ha{height:10.671875pt;}
.h1c{height:11.109375pt;}
.h1f{height:12.666667pt;}
.h1d{height:13.093750pt;}
.h42{height:14.333333pt;}
.h14{height:14.666667pt;}
.h44{height:18.333333pt;}
.h24{height:20.000000pt;}
.h22{height:27.700000pt;}
.h6{height:28.366667pt;}
.h2e{height:28.369792pt;}
.h38{height:29.000000pt;}
.h2b{height:29.033333pt;}
.h48{height:29.347656pt;}
.h28{height:32.000000pt;}
.h49{height:32.686667pt;}
.hb{height:34.000000pt;}
.h33{height:34.333333pt;}
.h18{height:34.683594pt;}
.h10{height:34.916667pt;}
.h29{height:36.000000pt;}
.h7{height:39.000000pt;}
.h17{height:39.281250pt;}
.h46{height:40.019531pt;}
.h47{height:42.183868pt;}
.h8{height:42.687500pt;}
.h31{height:43.645833pt;}
.h15{height:43.723958pt;}
.h25{height:44.000000pt;}
.h2{height:44.270833pt;}
.h5{height:44.437500pt;}
.h27{height:48.023438pt;}
.h30{height:53.359375pt;}
.h26{height:56.000000pt;}
.h3b{height:56.245157pt;}
.h40{height:59.250000pt;}
.h32{height:61.104167pt;}
.h3e{height:64.000000pt;}
.h4{height:64.031250pt;}
.h2a{height:69.833333pt;}
.h36{height:69.958333pt;}
.h13{height:70.833333pt;}
.h3{height:71.366667pt;}
.h12{height:79.687500pt;}
.h37{height:85.375000pt;}
.h2c{height:87.447917pt;}
.h21{height:92.333333pt;}
.h11{height:93.366667pt;}
.hc{height:96.000000pt;}
.hf{height:123.958333pt;}
.h16{height:128.066667pt;}
.h43{height:145.040000pt;}
.h39{height:177.066667pt;}
.h20{height:206.066667pt;}
.h1e{height:210.733333pt;}
.h45{height:241.400000pt;}
.h1a{height:244.760000pt;}
.h3f{height:287.733333pt;}
.h2f{height:289.733333pt;}
.h3a{height:313.106667pt;}
.h35{height:329.106667pt;}
.h41{height:386.426667pt;}
.h19{height:463.493333pt;}
.he{height:571.533333pt;}
.h3c{height:892.933333pt;}
.h3d{height:953.266667pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.w1b{width:15.000000pt;}
.w19{width:16.000000pt;}
.w17{width:16.666667pt;}
.wb{width:19.000000pt;}
.w7{width:22.366667pt;}
.w5{width:52.666667pt;}
.w6{width:55.666667pt;}
.w14{width:76.033333pt;}
.w10{width:85.033333pt;}
.w2{width:86.700000pt;}
.w12{width:94.700000pt;}
.wf{width:102.033333pt;}
.w9{width:103.066667pt;}
.w15{width:104.033333pt;}
.w11{width:113.366667pt;}
.w13{width:137.066667pt;}
.w3{width:162.400000pt;}
.wa{width:207.733333pt;}
.wd{width:310.800000pt;}
.wc{width:326.800000pt;}
.w4{width:410.506667pt;}
.w8{width:634.240000pt;}
.w18{width:690.600000pt;}
.w1c{width:695.600000pt;}
.w1a{width:697.266667pt;}
.w16{width:707.266667pt;}
.we{width:712.266667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x17{left:12.333333pt;}
.x19{left:16.706667pt;}
.x1b{left:23.360000pt;}
.x8{left:27.333333pt;}
.x26{left:31.000000pt;}
.xb{left:39.333333pt;}
.x2{left:40.700000pt;}
.xa{left:45.333333pt;}
.x1{left:48.033322pt;}
.x22{left:55.700000pt;}
.x1f{left:57.366667pt;}
.xc{left:58.666667pt;}
.x3{left:79.366667pt;}
.x21{left:84.699988pt;}
.xd{left:93.033333pt;}
.xe{left:96.366667pt;}
.x1e{left:97.360000pt;}
.x10{left:103.406667pt;}
.xf{left:118.733333pt;}
.x4{left:127.400000pt;}
.x15{left:142.733333pt;}
.x5{left:155.400000pt;}
.x28{left:184.740000pt;}
.x11{left:199.440000pt;}
.x16{left:227.773333pt;}
.x29{left:229.433333pt;}
.x6{left:289.800000pt;}
.x23{left:290.766667pt;}
.x2b{left:311.433333pt;}
.x18{left:341.133333pt;}
.x14{left:356.140000pt;}
.x24{left:369.473333pt;}
.x25{left:382.173322pt;}
.x2c{left:401.166667pt;}
.x12{left:407.173333pt;}
.x13{left:426.173333pt;}
.x1a{left:435.840000pt;}
.x2a{left:437.166667pt;}
.x1c{left:572.906667pt;}
.x27{left:612.566667pt;}
.x20{left:619.266655pt;}
.x1d{left:648.933333pt;}
.x9{left:700.306667pt;}
}




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