
    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_18ca7fb6ecafab3ede7d7b49.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_046605b08ad79255d5835db7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_5ca46772da7af6923a278885.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_d06361423337fde5a49765d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_e8c047efdd22ea89c920318a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_51b5573e3b5029281febd841.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls13{letter-spacing:-1.722240px;}
.ls12{letter-spacing:-1.523520px;}
.ls33{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.296000px;}
.ls32{letter-spacing:-1.152000px;}
.ls11{letter-spacing:-1.059840px;}
.ls37{letter-spacing:-1.010880px;}
.ls36{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.861120px;}
.ls14{letter-spacing:-0.792000px;}
.ls31{letter-spacing:-0.758160px;}
.ls1f{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.576000px;}
.ls30{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.331200px;}
.ls5{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.264960px;}
.ls1e{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.191520px;}
.ls16{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.084240px;}
.ls1d{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.670320px;}
.ls2{letter-spacing:0.728640px;}
.lsc{letter-spacing:1.584000px;}
.ls24{letter-spacing:2.304000px;}
.ls34{letter-spacing:3.024000px;}
.ls2d{letter-spacing:3.744000px;}
.ls21{letter-spacing:4.464000px;}
.ls25{letter-spacing:5.184000px;}
.ls3{letter-spacing:5.431680px;}
.ls18{letter-spacing:5.904000px;}
.ls35{letter-spacing:6.616800px;}
.ls28{letter-spacing:7.344000px;}
.lsa{letter-spacing:8.064000px;}
.ls1b{letter-spacing:9.504000px;}
.ls1c{letter-spacing:10.224000px;}
.ls2f{letter-spacing:10.944000px;}
.ls2c{letter-spacing:12.384000px;}
.ls23{letter-spacing:13.104000px;}
.ls2e{letter-spacing:14.544000px;}
.ls26{letter-spacing:15.264000px;}
.ls1a{letter-spacing:15.984000px;}
.ls19{letter-spacing:16.704000px;}
.ls29{letter-spacing:18.864000px;}
.ls2b{letter-spacing:22.464000px;}
.ls2a{letter-spacing:54.864000px;}
.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;}
}
.ws23{word-spacing:-23.334480px;}
.ws3e{word-spacing:-20.304000px;}
.ws40{word-spacing:-20.232000px;}
.ws24{word-spacing:-20.160000px;}
.ws1f{word-spacing:-20.016000px;}
.ws41{word-spacing:-19.872000px;}
.ws88{word-spacing:-19.800000px;}
.ws6f{word-spacing:-19.584000px;}
.ws77{word-spacing:-19.512000px;}
.ws3f{word-spacing:-19.296000px;}
.ws1d{word-spacing:-19.152000px;}
.ws82{word-spacing:-19.080000px;}
.ws7f{word-spacing:-18.864000px;}
.ws21{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.282240px;}
.ws3{word-spacing:-18.149760px;}
.ws2{word-spacing:-18.083520px;}
.ws22{word-spacing:-17.553600px;}
.ws1e{word-spacing:-17.354880px;}
.ws20{word-spacing:-16.891200px;}
.ws0{word-spacing:-13.410720px;}
.ws8a{word-spacing:-4.464000px;}
.wsc{word-spacing:-1.722240px;}
.ws27{word-spacing:-0.864000px;}
.ws75{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.670320px;}
.ws50{word-spacing:-0.504000px;}
.ws4{word-spacing:-0.288000px;}
.ws59{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:0.132480px;}
.ws5c{word-spacing:0.144000px;}
.ws34{word-spacing:0.191520px;}
.ws29{word-spacing:0.216000px;}
.ws1b{word-spacing:0.264960px;}
.ws7{word-spacing:0.288000px;}
.ws83{word-spacing:0.360000px;}
.ws7c{word-spacing:0.421200px;}
.ws54{word-spacing:0.432000px;}
.ws9{word-spacing:0.463680px;}
.ws89{word-spacing:0.504000px;}
.ws3a{word-spacing:0.576000px;}
.ws8{word-spacing:0.662400px;}
.ws84{word-spacing:0.673920px;}
.ws26{word-spacing:0.720000px;}
.ws7b{word-spacing:0.864000px;}
.ws80{word-spacing:1.152000px;}
.wse{word-spacing:1.192320px;}
.ws3d{word-spacing:1.296000px;}
.ws45{word-spacing:1.584000px;}
.ws28{word-spacing:1.722240px;}
.ws3c{word-spacing:1.728000px;}
.ws2e{word-spacing:2.016000px;}
.ws64{word-spacing:2.088000px;}
.ws7e{word-spacing:2.304000px;}
.ws1c{word-spacing:2.583360px;}
.ws4a{word-spacing:2.736000px;}
.ws65{word-spacing:2.880000px;}
.ws7d{word-spacing:3.168000px;}
.ws30{word-spacing:3.456000px;}
.ws16{word-spacing:4.040640px;}
.ws44{word-spacing:4.176000px;}
.ws12{word-spacing:4.769280px;}
.ws31{word-spacing:4.896000px;}
.wsb{word-spacing:5.497920px;}
.ws43{word-spacing:5.616000px;}
.ws72{word-spacing:5.688000px;}
.wsa{word-spacing:6.226560px;}
.ws3b{word-spacing:6.336000px;}
.wsd{word-spacing:6.425280px;}
.ws2b{word-spacing:7.056000px;}
.ws81{word-spacing:7.200000px;}
.wsf{word-spacing:7.683840px;}
.ws35{word-spacing:7.776000px;}
.ws2a{word-spacing:8.208000px;}
.ws52{word-spacing:8.280000px;}
.ws4c{word-spacing:8.496000px;}
.ws85{word-spacing:8.568000px;}
.ws6b{word-spacing:8.784000px;}
.ws1a{word-spacing:9.074880px;}
.ws42{word-spacing:9.216000px;}
.ws53{word-spacing:9.936000px;}
.ws5a{word-spacing:10.224000px;}
.ws33{word-spacing:10.656000px;}
.ws61{word-spacing:11.376000px;}
.ws86{word-spacing:11.520000px;}
.ws6a{word-spacing:11.808000px;}
.ws13{word-spacing:11.989440px;}
.ws6e{word-spacing:12.096000px;}
.ws14{word-spacing:12.718080px;}
.ws56{word-spacing:12.816000px;}
.ws2c{word-spacing:13.536000px;}
.ws5e{word-spacing:14.256000px;}
.ws63{word-spacing:14.976000px;}
.ws48{word-spacing:15.696000px;}
.ws7a{word-spacing:15.840000px;}
.ws37{word-spacing:16.416000px;}
.ws73{word-spacing:16.560000px;}
.ws10{word-spacing:17.023680px;}
.ws4d{word-spacing:17.136000px;}
.ws79{word-spacing:17.280000px;}
.ws11{word-spacing:17.752320px;}
.ws46{word-spacing:17.856000px;}
.ws74{word-spacing:18.144000px;}
.ws49{word-spacing:18.288000px;}
.ws51{word-spacing:18.576000px;}
.ws78{word-spacing:19.008000px;}
.ws6c{word-spacing:19.296000px;}
.ws17{word-spacing:19.872000px;}
.ws2f{word-spacing:20.016000px;}
.ws6d{word-spacing:20.448000px;}
.ws62{word-spacing:20.736000px;}
.ws5b{word-spacing:21.456000px;}
.ws70{word-spacing:21.600000px;}
.ws71{word-spacing:21.888000px;}
.ws36{word-spacing:22.176000px;}
.ws55{word-spacing:22.896000px;}
.ws57{word-spacing:23.616000px;}
.ws58{word-spacing:24.336000px;}
.ws5d{word-spacing:25.056000px;}
.ws2d{word-spacing:25.776000px;}
.ws60{word-spacing:26.496000px;}
.ws4b{word-spacing:27.216000px;}
.ws5f{word-spacing:28.656000px;}
.ws39{word-spacing:29.376000px;}
.ws76{word-spacing:30.096000px;}
.ws67{word-spacing:30.816000px;}
.ws68{word-spacing:31.536000px;}
.ws87{word-spacing:32.256000px;}
.ws66{word-spacing:32.976000px;}
.ws38{word-spacing:33.696000px;}
.ws4e{word-spacing:35.856000px;}
.ws4f{word-spacing:36.576000px;}
.ws69{word-spacing:38.016000px;}
.ws47{word-spacing:43.776000px;}
.ws18{word-spacing:48.686400px;}
.ws32{word-spacing:53.856000px;}
.ws19{word-spacing:112.078080px;}
._b{margin-left:-112.291200px;}
._11{margin-left:-54.843840px;}
._a{margin-left:-48.553920px;}
._17{margin-left:-44.118720px;}
._18{margin-left:-36.915840px;}
._15{margin-left:-34.431840px;}
._21{margin-left:-31.340160px;}
._16{margin-left:-29.459520px;}
._22{margin-left:-27.943200px;}
._10{margin-left:-26.726400px;}
._1b{margin-left:-25.320960px;}
._19{margin-left:-23.404320px;}
._13{margin-left:-22.144320px;}
._23{margin-left:-20.822400px;}
._9{margin-left:-19.739520px;}
._7{margin-left:-18.239328px;}
._14{margin-left:-16.424640px;}
._1f{margin-left:-14.474880px;}
._f{margin-left:-13.321440px;}
._8{margin-left:-11.966400px;}
._12{margin-left:-10.856160px;}
._d{margin-left:-9.331200px;}
._6{margin-left:-7.992000px;}
._5{margin-left:-6.917760px;}
._3{margin-left:-5.438304px;}
._4{margin-left:-4.305600px;}
._1{margin-left:-2.877120px;}
._0{margin-left:-1.045440px;}
._2{width:1.391040px;}
._25{width:3.251520px;}
._24{width:4.394880px;}
._c{width:6.212160px;}
._1e{width:7.634880px;}
._20{width:8.688960px;}
._1d{width:9.809280px;}
._1c{width:15.393600px;}
._e{width:16.692480px;}
._1a{width:23.330880px;}
._26{width:30.888000px;}
._27{width:843.984000px;}
.fc3{color:rgb(1,1,255);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(84,141,212);}
.fs1{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.600000px;}
.y1c{bottom:3.780000px;}
.y4{bottom:58.320000px;}
.y3a{bottom:60.660000px;}
.y33{bottom:79.560000px;}
.y3{bottom:85.320000px;}
.y32{bottom:98.640000px;}
.ybe{bottom:118.080000px;}
.y109{bottom:120.060000px;}
.y16c{bottom:123.480000px;}
.y43{bottom:127.080000px;}
.y143{bottom:128.700000px;}
.y72{bottom:130.140000px;}
.yc1{bottom:131.760000px;}
.y9f{bottom:131.940000px;}
.ybd{bottom:138.780000px;}
.y108{bottom:140.400000px;}
.y16b{bottom:144.180000px;}
.y42{bottom:147.780000px;}
.y142{bottom:149.400000px;}
.y71{bottom:151.020000px;}
.y9e{bottom:152.460000px;}
.y2f{bottom:155.520000px;}
.yc4{bottom:159.480000px;}
.ybc{bottom:159.660000px;}
.y107{bottom:161.100000px;}
.y16a{bottom:164.880000px;}
.y41{bottom:168.480000px;}
.y141{bottom:170.100000px;}
.y70{bottom:171.540000px;}
.y9d{bottom:173.160000px;}
.y24{bottom:174.420000px;}
.yed{bottom:175.320000px;}
.ybb{bottom:180.180000px;}
.y106{bottom:181.800000px;}
.y169{bottom:185.760000px;}
.y40{bottom:189.180000px;}
.y140{bottom:190.800000px;}
.y6f{bottom:192.240000px;}
.y9c{bottom:193.860000px;}
.yec{bottom:196.020000px;}
.yba{bottom:200.880000px;}
.yc3{bottom:201.060000px;}
.y105{bottom:202.500000px;}
.y168{bottom:206.280000px;}
.y3f{bottom:209.880000px;}
.y13f{bottom:211.500000px;}
.y6e{bottom:212.940000px;}
.y9b{bottom:214.560000px;}
.yeb{bottom:216.720000px;}
.yb9{bottom:221.580000px;}
.y104{bottom:223.200000px;}
.y167{bottom:226.980000px;}
.y3e{bottom:230.580000px;}
.y13e{bottom:232.200000px;}
.y6d{bottom:233.640000px;}
.y9a{bottom:235.260000px;}
.yea{bottom:237.420000px;}
.yb8{bottom:242.280000px;}
.y128{bottom:243.180000px;}
.y103{bottom:243.900000px;}
.y166{bottom:247.680000px;}
.y3d{bottom:251.280000px;}
.y13d{bottom:252.900000px;}
.y6c{bottom:254.340000px;}
.y99{bottom:255.960000px;}
.ye9{bottom:258.120000px;}
.yb7{bottom:262.980000px;}
.y127{bottom:263.880000px;}
.y102{bottom:264.600000px;}
.y165{bottom:268.380000px;}
.y2e{bottom:268.560000px;}
.y1e{bottom:269.280000px;}
.y13c{bottom:273.600000px;}
.y6b{bottom:275.040000px;}
.y98{bottom:276.660000px;}
.ye8{bottom:278.820000px;}
.yb6{bottom:283.680000px;}
.y126{bottom:284.580000px;}
.y101{bottom:285.300000px;}
.y164{bottom:289.080000px;}
.y3c{bottom:291.245040px;}
.y36{bottom:291.247920px;}
.y13b{bottom:294.300000px;}
.y6a{bottom:295.740000px;}
.y97{bottom:297.360000px;}
.ye7{bottom:299.520000px;}
.yb5{bottom:304.380000px;}
.y125{bottom:305.280000px;}
.y100{bottom:306.000000px;}
.y163{bottom:309.780000px;}
.y3b{bottom:310.140000px;}
.y35{bottom:310.142880px;}
.y13a{bottom:315.000000px;}
.y69{bottom:316.440000px;}
.y96{bottom:318.060000px;}
.ye6{bottom:320.220000px;}
.yb4{bottom:325.080000px;}
.y124{bottom:325.980000px;}
.yff{bottom:326.700000px;}
.y34{bottom:329.220000px;}
.y39{bottom:329.238000px;}
.y162{bottom:330.480000px;}
.y139{bottom:335.700000px;}
.y68{bottom:337.140000px;}
.y95{bottom:338.760000px;}
.ye5{bottom:340.920000px;}
.ya{bottom:345.420000px;}
.yb3{bottom:345.780000px;}
.y123{bottom:346.680000px;}
.yfe{bottom:347.580000px;}
.y38{bottom:348.132960px;}
.y161{bottom:351.180000px;}
.y138{bottom:356.400000px;}
.y67{bottom:357.840000px;}
.y94{bottom:359.460000px;}
.ye4{bottom:361.620000px;}
.yb2{bottom:366.480000px;}
.y37{bottom:367.210080px;}
.y122{bottom:367.380000px;}
.yfd{bottom:368.100000px;}
.y160{bottom:371.880000px;}
.y137{bottom:377.100000px;}
.y66{bottom:378.720000px;}
.y93{bottom:380.160000px;}
.ye3{bottom:382.320000px;}
.y31{bottom:386.105040px;}
.yb1{bottom:387.180000px;}
.y121{bottom:388.080000px;}
.yfc{bottom:388.800000px;}
.y15f{bottom:392.580000px;}
.y136{bottom:397.800000px;}
.y65{bottom:400.500000px;}
.y92{bottom:400.860000px;}
.ye2{bottom:403.020000px;}
.y30{bottom:405.000000px;}
.yb0{bottom:407.880000px;}
.y120{bottom:408.780000px;}
.yfb{bottom:409.500000px;}
.y15e{bottom:413.280000px;}
.y135{bottom:418.500000px;}
.y91{bottom:421.560000px;}
.ye1{bottom:423.720000px;}
.y64{bottom:426.780000px;}
.yaf{bottom:428.580000px;}
.yc2{bottom:428.760000px;}
.y11f{bottom:429.480000px;}
.yfa{bottom:430.200000px;}
.y15d{bottom:433.980000px;}
.y134{bottom:435.060000px;}
.y1d{bottom:440.100000px;}
.y90{bottom:442.260000px;}
.ye0{bottom:444.420000px;}
.y63{bottom:447.480000px;}
.yae{bottom:449.280000px;}
.y11e{bottom:450.180000px;}
.yf9{bottom:450.900000px;}
.y15c{bottom:454.680000px;}
.y2c{bottom:462.808800px;}
.y8f{bottom:462.960000px;}
.yc0{bottom:463.140000px;}
.ydf{bottom:465.120000px;}
.y62{bottom:468.180000px;}
.yad{bottom:469.980000px;}
.y11d{bottom:470.880000px;}
.yf8{bottom:471.780000px;}
.y15b{bottom:475.380000px;}
.y2b{bottom:481.703760px;}
.y8e{bottom:483.660000px;}
.yde{bottom:485.820000px;}
.y61{bottom:488.880000px;}
.yac{bottom:490.680000px;}
.y11c{bottom:491.580000px;}
.yf7{bottom:492.300000px;}
.y15a{bottom:496.080000px;}
.y2a{bottom:500.780880px;}
.y150{bottom:502.200000px;}
.y8d{bottom:504.360000px;}
.ydd{bottom:506.520000px;}
.y60{bottom:509.580000px;}
.yab{bottom:511.380000px;}
.y10f{bottom:511.560000px;}
.y11b{bottom:512.280000px;}
.yf6{bottom:513.000000px;}
.y159{bottom:516.780000px;}
.y29{bottom:519.675840px;}
.y14f{bottom:522.900000px;}
.y8c{bottom:525.060000px;}
.ybf{bottom:526.500000px;}
.ydc{bottom:527.220000px;}
.y5f{bottom:530.280000px;}
.yaa{bottom:532.080000px;}
.y11a{bottom:532.980000px;}
.yf5{bottom:533.700000px;}
.y158{bottom:537.660000px;}
.y28{bottom:538.752960px;}
.y14e{bottom:543.600000px;}
.y8b{bottom:545.760000px;}
.ydb{bottom:547.920000px;}
.y5e{bottom:550.980000px;}
.ya9{bottom:552.780000px;}
.y10e{bottom:552.960000px;}
.y119{bottom:553.680000px;}
.yf4{bottom:554.400000px;}
.y27{bottom:557.647920px;}
.y157{bottom:558.180000px;}
.y14d{bottom:564.300000px;}
.y8a{bottom:566.460000px;}
.yda{bottom:568.620000px;}
.y5d{bottom:571.680000px;}
.ya8{bottom:573.480000px;}
.y118{bottom:574.380000px;}
.yf3{bottom:575.100000px;}
.y26{bottom:576.542880px;}
.y156{bottom:578.880000px;}
.y14c{bottom:585.000000px;}
.y89{bottom:587.160000px;}
.yd9{bottom:589.320000px;}
.y5c{bottom:592.380000px;}
.ya7{bottom:594.000000px;}
.y117{bottom:595.080000px;}
.y25{bottom:595.620000px;}
.yf2{bottom:595.800000px;}
.y155{bottom:599.580000px;}
.y14b{bottom:605.700000px;}
.y88{bottom:607.860000px;}
.yd8{bottom:610.020000px;}
.y5b{bottom:613.080000px;}
.y23{bottom:614.535840px;}
.ya6{bottom:614.700000px;}
.y116{bottom:615.780000px;}
.yf1{bottom:616.500000px;}
.y154{bottom:620.812800px;}
.y14a{bottom:626.400000px;}
.y87{bottom:628.560000px;}
.yd7{bottom:630.720000px;}
.y22{bottom:633.612960px;}
.y5a{bottom:633.780000px;}
.ya5{bottom:635.400000px;}
.y10d{bottom:635.580000px;}
.y115{bottom:636.480000px;}
.yf0{bottom:637.200000px;}
.y153{bottom:644.400000px;}
.y149{bottom:647.100000px;}
.y86{bottom:649.260000px;}
.yd6{bottom:651.420000px;}
.y21{bottom:652.507920px;}
.y59{bottom:654.660000px;}
.ya4{bottom:656.100000px;}
.y114{bottom:657.360000px;}
.yef{bottom:657.900000px;}
.y152{bottom:665.100000px;}
.y148{bottom:667.800000px;}
.y133{bottom:669.780000px;}
.y85{bottom:669.960000px;}
.y20{bottom:671.402880px;}
.yd5{bottom:672.120000px;}
.yee{bottom:674.640000px;}
.y58{bottom:675.720000px;}
.ya3{bottom:676.800000px;}
.yc6{bottom:676.980000px;}
.y113{bottom:678.412800px;}
.y151{bottom:681.660000px;}
.y147{bottom:688.500000px;}
.y132{bottom:690.300000px;}
.y1f{bottom:690.480000px;}
.y84{bottom:690.660000px;}
.yd4{bottom:692.640000px;}
.ya2{bottom:697.500000px;}
.y57{bottom:699.300000px;}
.y112{bottom:702.000000px;}
.y146{bottom:709.200000px;}
.y131{bottom:711.000000px;}
.y83{bottom:711.360000px;}
.yd3{bottom:714.600000px;}
.ya1{bottom:718.200000px;}
.y56{bottom:720.000000px;}
.y111{bottom:722.700000px;}
.y9{bottom:725.400000px;}
.y145{bottom:729.900000px;}
.y130{bottom:731.700000px;}
.y17b{bottom:732.060000px;}
.y82{bottom:733.320000px;}
.yd2{bottom:735.300000px;}
.ya0{bottom:738.900000px;}
.y110{bottom:739.440000px;}
.y55{bottom:740.700000px;}
.y144{bottom:746.460000px;}
.y1b{bottom:748.145520px;}
.y12f{bottom:752.400000px;}
.y17a{bottom:752.760000px;}
.yd1{bottom:756.000000px;}
.y81{bottom:759.600000px;}
.y10c{bottom:759.780000px;}
.y54{bottom:761.400000px;}
.y1a{bottom:767.222640px;}
.y12e{bottom:773.100000px;}
.y179{bottom:773.460000px;}
.yd0{bottom:776.700000px;}
.y80{bottom:780.300000px;}
.y10b{bottom:780.480000px;}
.y53{bottom:781.556400px;}
.y19{bottom:786.117600px;}
.y12d{bottom:793.800000px;}
.y178{bottom:794.160000px;}
.ycf{bottom:797.400000px;}
.y7f{bottom:801.000000px;}
.y52{bottom:801.180000px;}
.y18{bottom:805.012560px;}
.y8{bottom:813.425040px;}
.y12c{bottom:814.500000px;}
.y177{bottom:814.860000px;}
.yce{bottom:819.360000px;}
.y51{bottom:821.700000px;}
.y17{bottom:824.089680px;}
.y7{bottom:832.320000px;}
.y12b{bottom:835.200000px;}
.y176{bottom:835.560000px;}
.ycd{bottom:840.060000px;}
.y50{bottom:842.045040px;}
.y7e{bottom:842.400000px;}
.y16{bottom:842.984640px;}
.y12a{bottom:855.900000px;}
.y175{bottom:856.260000px;}
.ycc{bottom:860.760000px;}
.y4f{bottom:860.939280px;}
.y15{bottom:862.061760px;}
.y7d{bottom:863.100000px;}
.yc5{bottom:863.280000px;}
.y129{bottom:872.640000px;}
.y174{bottom:876.960000px;}
.y4e{bottom:880.016400px;}
.y14{bottom:880.956720px;}
.ycb{bottom:881.460000px;}
.y7c{bottom:883.800000px;}
.y173{bottom:897.660000px;}
.y4d{bottom:899.640000px;}
.y13{bottom:899.851680px;}
.yca{bottom:902.160000px;}
.y7b{bottom:904.500000px;}
.y172{bottom:918.360000px;}
.y12{bottom:918.928800px;}
.y4c{bottom:920.160000px;}
.yc9{bottom:924.120000px;}
.y7a{bottom:925.200000px;}
.y11{bottom:937.823760px;}
.y171{bottom:939.060000px;}
.y4b{bottom:940.860000px;}
.yc8{bottom:944.820000px;}
.y79{bottom:945.900000px;}
.y10{bottom:956.900880px;}
.y170{bottom:959.760000px;}
.y4a{bottom:961.740000px;}
.yc7{bottom:965.340000px;}
.y78{bottom:966.600000px;}
.yf{bottom:975.795840px;}
.y16f{bottom:980.460000px;}
.y49{bottom:981.716400px;}
.y77{bottom:987.300000px;}
.ye{bottom:994.690800px;}
.y16e{bottom:1001.160000px;}
.y48{bottom:1001.340000px;}
.y76{bottom:1008.000000px;}
.yd{bottom:1013.767920px;}
.y47{bottom:1022.040000px;}
.y16d{bottom:1023.120000px;}
.y75{bottom:1028.700000px;}
.yc{bottom:1032.662880px;}
.y46{bottom:1042.560000px;}
.y74{bottom:1049.400000px;}
.yb{bottom:1051.740000px;}
.y45{bottom:1063.260000px;}
.y73{bottom:1070.100000px;}
.y44{bottom:1085.220000px;}
.y6{bottom:1090.800000px;}
.y5{bottom:1111.500000px;}
.y10a{bottom:1111.680000px;}
.y2{bottom:1132.200000px;}
.y1{bottom:1159.200000px;}
.h7{height:48.256875px;}
.h5{height:48.289219px;}
.he{height:48.292099px;}
.h4{height:48.761719px;}
.h12{height:52.417969px;}
.hc{height:52.453125px;}
.hf{height:52.467525px;}
.ha{height:52.468121px;}
.h3{height:52.488281px;}
.hd{height:52.502681px;}
.h13{height:53.332031px;}
.h14{height:61.329023px;}
.h10{height:61.370156px;}
.h2{height:68.287148px;}
.hb{height:69.715898px;}
.h11{height:69.762656px;}
.h9{height:170.821500px;}
.h8{height:284.580000px;}
.h6{height:360.540000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:199.080000px;}
.w2{width:540.360000px;}
.w3{width:739.800000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x8{left:68.040000px;}
.x4{left:76.500000px;}
.xe{left:103.500000px;}
.x17{left:130.500000px;}
.x9{left:154.980000px;}
.x5{left:267.480000px;}
.x7{left:275.220000px;}
.x1{left:288.180000px;}
.x14{left:297.357120px;}
.x12{left:314.280000px;}
.x16{left:318.420000px;}
.x10{left:335.880000px;}
.xb{left:341.640000px;}
.xa{left:356.220000px;}
.xd{left:368.640000px;}
.x15{left:371.340000px;}
.x13{left:372.953520px;}
.x11{left:375.840000px;}
.xf{left:402.120000px;}
.x3{left:404.820000px;}
.xc{left:432.900000px;}
.x2{left:446.400000px;}
.x18{left:759.060000px;}
.x19{left:771.480000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls13{letter-spacing:-1.530880pt;}
.ls12{letter-spacing:-1.354240pt;}
.ls33{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.152000pt;}
.ls32{letter-spacing:-1.024000pt;}
.ls11{letter-spacing:-0.942080pt;}
.ls37{letter-spacing:-0.898560pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.765440pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls31{letter-spacing:-0.673920pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls30{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.294400pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.235520pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.170240pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.074880pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.595840pt;}
.ls2{letter-spacing:0.647680pt;}
.lsc{letter-spacing:1.408000pt;}
.ls24{letter-spacing:2.048000pt;}
.ls34{letter-spacing:2.688000pt;}
.ls2d{letter-spacing:3.328000pt;}
.ls21{letter-spacing:3.968000pt;}
.ls25{letter-spacing:4.608000pt;}
.ls3{letter-spacing:4.828160pt;}
.ls18{letter-spacing:5.248000pt;}
.ls35{letter-spacing:5.881600pt;}
.ls28{letter-spacing:6.528000pt;}
.lsa{letter-spacing:7.168000pt;}
.ls1b{letter-spacing:8.448000pt;}
.ls1c{letter-spacing:9.088000pt;}
.ls2f{letter-spacing:9.728000pt;}
.ls2c{letter-spacing:11.008000pt;}
.ls23{letter-spacing:11.648000pt;}
.ls2e{letter-spacing:12.928000pt;}
.ls26{letter-spacing:13.568000pt;}
.ls1a{letter-spacing:14.208000pt;}
.ls19{letter-spacing:14.848000pt;}
.ls29{letter-spacing:16.768000pt;}
.ls2b{letter-spacing:19.968000pt;}
.ls2a{letter-spacing:48.768000pt;}
.ws23{word-spacing:-20.741760pt;}
.ws3e{word-spacing:-18.048000pt;}
.ws40{word-spacing:-17.984000pt;}
.ws24{word-spacing:-17.920000pt;}
.ws1f{word-spacing:-17.792000pt;}
.ws41{word-spacing:-17.664000pt;}
.ws88{word-spacing:-17.600000pt;}
.ws6f{word-spacing:-17.408000pt;}
.ws77{word-spacing:-17.344000pt;}
.ws3f{word-spacing:-17.152000pt;}
.ws1d{word-spacing:-17.024000pt;}
.ws82{word-spacing:-16.960000pt;}
.ws7f{word-spacing:-16.768000pt;}
.ws21{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.250880pt;}
.ws3{word-spacing:-16.133120pt;}
.ws2{word-spacing:-16.074240pt;}
.ws22{word-spacing:-15.603200pt;}
.ws1e{word-spacing:-15.426560pt;}
.ws20{word-spacing:-15.014400pt;}
.ws0{word-spacing:-11.920640pt;}
.ws8a{word-spacing:-3.968000pt;}
.wsc{word-spacing:-1.530880pt;}
.ws27{word-spacing:-0.768000pt;}
.ws75{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.595840pt;}
.ws50{word-spacing:-0.448000pt;}
.ws4{word-spacing:-0.256000pt;}
.ws59{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:0.117760pt;}
.ws5c{word-spacing:0.128000pt;}
.ws34{word-spacing:0.170240pt;}
.ws29{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.235520pt;}
.ws7{word-spacing:0.256000pt;}
.ws83{word-spacing:0.320000pt;}
.ws7c{word-spacing:0.374400pt;}
.ws54{word-spacing:0.384000pt;}
.ws9{word-spacing:0.412160pt;}
.ws89{word-spacing:0.448000pt;}
.ws3a{word-spacing:0.512000pt;}
.ws8{word-spacing:0.588800pt;}
.ws84{word-spacing:0.599040pt;}
.ws26{word-spacing:0.640000pt;}
.ws7b{word-spacing:0.768000pt;}
.ws80{word-spacing:1.024000pt;}
.wse{word-spacing:1.059840pt;}
.ws3d{word-spacing:1.152000pt;}
.ws45{word-spacing:1.408000pt;}
.ws28{word-spacing:1.530880pt;}
.ws3c{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.792000pt;}
.ws64{word-spacing:1.856000pt;}
.ws7e{word-spacing:2.048000pt;}
.ws1c{word-spacing:2.296320pt;}
.ws4a{word-spacing:2.432000pt;}
.ws65{word-spacing:2.560000pt;}
.ws7d{word-spacing:2.816000pt;}
.ws30{word-spacing:3.072000pt;}
.ws16{word-spacing:3.591680pt;}
.ws44{word-spacing:3.712000pt;}
.ws12{word-spacing:4.239360pt;}
.ws31{word-spacing:4.352000pt;}
.wsb{word-spacing:4.887040pt;}
.ws43{word-spacing:4.992000pt;}
.ws72{word-spacing:5.056000pt;}
.wsa{word-spacing:5.534720pt;}
.ws3b{word-spacing:5.632000pt;}
.wsd{word-spacing:5.711360pt;}
.ws2b{word-spacing:6.272000pt;}
.ws81{word-spacing:6.400000pt;}
.wsf{word-spacing:6.830080pt;}
.ws35{word-spacing:6.912000pt;}
.ws2a{word-spacing:7.296000pt;}
.ws52{word-spacing:7.360000pt;}
.ws4c{word-spacing:7.552000pt;}
.ws85{word-spacing:7.616000pt;}
.ws6b{word-spacing:7.808000pt;}
.ws1a{word-spacing:8.066560pt;}
.ws42{word-spacing:8.192000pt;}
.ws53{word-spacing:8.832000pt;}
.ws5a{word-spacing:9.088000pt;}
.ws33{word-spacing:9.472000pt;}
.ws61{word-spacing:10.112000pt;}
.ws86{word-spacing:10.240000pt;}
.ws6a{word-spacing:10.496000pt;}
.ws13{word-spacing:10.657280pt;}
.ws6e{word-spacing:10.752000pt;}
.ws14{word-spacing:11.304960pt;}
.ws56{word-spacing:11.392000pt;}
.ws2c{word-spacing:12.032000pt;}
.ws5e{word-spacing:12.672000pt;}
.ws63{word-spacing:13.312000pt;}
.ws48{word-spacing:13.952000pt;}
.ws7a{word-spacing:14.080000pt;}
.ws37{word-spacing:14.592000pt;}
.ws73{word-spacing:14.720000pt;}
.ws10{word-spacing:15.132160pt;}
.ws4d{word-spacing:15.232000pt;}
.ws79{word-spacing:15.360000pt;}
.ws11{word-spacing:15.779840pt;}
.ws46{word-spacing:15.872000pt;}
.ws74{word-spacing:16.128000pt;}
.ws49{word-spacing:16.256000pt;}
.ws51{word-spacing:16.512000pt;}
.ws78{word-spacing:16.896000pt;}
.ws6c{word-spacing:17.152000pt;}
.ws17{word-spacing:17.664000pt;}
.ws2f{word-spacing:17.792000pt;}
.ws6d{word-spacing:18.176000pt;}
.ws62{word-spacing:18.432000pt;}
.ws5b{word-spacing:19.072000pt;}
.ws70{word-spacing:19.200000pt;}
.ws71{word-spacing:19.456000pt;}
.ws36{word-spacing:19.712000pt;}
.ws55{word-spacing:20.352000pt;}
.ws57{word-spacing:20.992000pt;}
.ws58{word-spacing:21.632000pt;}
.ws5d{word-spacing:22.272000pt;}
.ws2d{word-spacing:22.912000pt;}
.ws60{word-spacing:23.552000pt;}
.ws4b{word-spacing:24.192000pt;}
.ws5f{word-spacing:25.472000pt;}
.ws39{word-spacing:26.112000pt;}
.ws76{word-spacing:26.752000pt;}
.ws67{word-spacing:27.392000pt;}
.ws68{word-spacing:28.032000pt;}
.ws87{word-spacing:28.672000pt;}
.ws66{word-spacing:29.312000pt;}
.ws38{word-spacing:29.952000pt;}
.ws4e{word-spacing:31.872000pt;}
.ws4f{word-spacing:32.512000pt;}
.ws69{word-spacing:33.792000pt;}
.ws47{word-spacing:38.912000pt;}
.ws18{word-spacing:43.276800pt;}
.ws32{word-spacing:47.872000pt;}
.ws19{word-spacing:99.624960pt;}
._b{margin-left:-99.814400pt;}
._11{margin-left:-48.750080pt;}
._a{margin-left:-43.159040pt;}
._17{margin-left:-39.216640pt;}
._18{margin-left:-32.814080pt;}
._15{margin-left:-30.606080pt;}
._21{margin-left:-27.857920pt;}
._16{margin-left:-26.186240pt;}
._22{margin-left:-24.838400pt;}
._10{margin-left:-23.756800pt;}
._1b{margin-left:-22.507520pt;}
._19{margin-left:-20.803840pt;}
._13{margin-left:-19.683840pt;}
._23{margin-left:-18.508800pt;}
._9{margin-left:-17.546240pt;}
._7{margin-left:-16.212736pt;}
._14{margin-left:-14.599680pt;}
._1f{margin-left:-12.866560pt;}
._f{margin-left:-11.841280pt;}
._8{margin-left:-10.636800pt;}
._12{margin-left:-9.649920pt;}
._d{margin-left:-8.294400pt;}
._6{margin-left:-7.104000pt;}
._5{margin-left:-6.149120pt;}
._3{margin-left:-4.834048pt;}
._4{margin-left:-3.827200pt;}
._1{margin-left:-2.557440pt;}
._0{margin-left:-0.929280pt;}
._2{width:1.236480pt;}
._25{width:2.890240pt;}
._24{width:3.906560pt;}
._c{width:5.521920pt;}
._1e{width:6.786560pt;}
._20{width:7.723520pt;}
._1d{width:8.719360pt;}
._1c{width:13.683200pt;}
._e{width:14.837760pt;}
._1a{width:20.738560pt;}
._26{width:27.456000pt;}
._27{width:750.208000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.200000pt;}
.y1c{bottom:3.360000pt;}
.y4{bottom:51.840000pt;}
.y3a{bottom:53.920000pt;}
.y33{bottom:70.720000pt;}
.y3{bottom:75.840000pt;}
.y32{bottom:87.680000pt;}
.ybe{bottom:104.960000pt;}
.y109{bottom:106.720000pt;}
.y16c{bottom:109.760000pt;}
.y43{bottom:112.960000pt;}
.y143{bottom:114.400000pt;}
.y72{bottom:115.680000pt;}
.yc1{bottom:117.120000pt;}
.y9f{bottom:117.280000pt;}
.ybd{bottom:123.360000pt;}
.y108{bottom:124.800000pt;}
.y16b{bottom:128.160000pt;}
.y42{bottom:131.360000pt;}
.y142{bottom:132.800000pt;}
.y71{bottom:134.240000pt;}
.y9e{bottom:135.520000pt;}
.y2f{bottom:138.240000pt;}
.yc4{bottom:141.760000pt;}
.ybc{bottom:141.920000pt;}
.y107{bottom:143.200000pt;}
.y16a{bottom:146.560000pt;}
.y41{bottom:149.760000pt;}
.y141{bottom:151.200000pt;}
.y70{bottom:152.480000pt;}
.y9d{bottom:153.920000pt;}
.y24{bottom:155.040000pt;}
.yed{bottom:155.840000pt;}
.ybb{bottom:160.160000pt;}
.y106{bottom:161.600000pt;}
.y169{bottom:165.120000pt;}
.y40{bottom:168.160000pt;}
.y140{bottom:169.600000pt;}
.y6f{bottom:170.880000pt;}
.y9c{bottom:172.320000pt;}
.yec{bottom:174.240000pt;}
.yba{bottom:178.560000pt;}
.yc3{bottom:178.720000pt;}
.y105{bottom:180.000000pt;}
.y168{bottom:183.360000pt;}
.y3f{bottom:186.560000pt;}
.y13f{bottom:188.000000pt;}
.y6e{bottom:189.280000pt;}
.y9b{bottom:190.720000pt;}
.yeb{bottom:192.640000pt;}
.yb9{bottom:196.960000pt;}
.y104{bottom:198.400000pt;}
.y167{bottom:201.760000pt;}
.y3e{bottom:204.960000pt;}
.y13e{bottom:206.400000pt;}
.y6d{bottom:207.680000pt;}
.y9a{bottom:209.120000pt;}
.yea{bottom:211.040000pt;}
.yb8{bottom:215.360000pt;}
.y128{bottom:216.160000pt;}
.y103{bottom:216.800000pt;}
.y166{bottom:220.160000pt;}
.y3d{bottom:223.360000pt;}
.y13d{bottom:224.800000pt;}
.y6c{bottom:226.080000pt;}
.y99{bottom:227.520000pt;}
.ye9{bottom:229.440000pt;}
.yb7{bottom:233.760000pt;}
.y127{bottom:234.560000pt;}
.y102{bottom:235.200000pt;}
.y165{bottom:238.560000pt;}
.y2e{bottom:238.720000pt;}
.y1e{bottom:239.360000pt;}
.y13c{bottom:243.200000pt;}
.y6b{bottom:244.480000pt;}
.y98{bottom:245.920000pt;}
.ye8{bottom:247.840000pt;}
.yb6{bottom:252.160000pt;}
.y126{bottom:252.960000pt;}
.y101{bottom:253.600000pt;}
.y164{bottom:256.960000pt;}
.y3c{bottom:258.884480pt;}
.y36{bottom:258.887040pt;}
.y13b{bottom:261.600000pt;}
.y6a{bottom:262.880000pt;}
.y97{bottom:264.320000pt;}
.ye7{bottom:266.240000pt;}
.yb5{bottom:270.560000pt;}
.y125{bottom:271.360000pt;}
.y100{bottom:272.000000pt;}
.y163{bottom:275.360000pt;}
.y3b{bottom:275.680000pt;}
.y35{bottom:275.682560pt;}
.y13a{bottom:280.000000pt;}
.y69{bottom:281.280000pt;}
.y96{bottom:282.720000pt;}
.ye6{bottom:284.640000pt;}
.yb4{bottom:288.960000pt;}
.y124{bottom:289.760000pt;}
.yff{bottom:290.400000pt;}
.y34{bottom:292.640000pt;}
.y39{bottom:292.656000pt;}
.y162{bottom:293.760000pt;}
.y139{bottom:298.400000pt;}
.y68{bottom:299.680000pt;}
.y95{bottom:301.120000pt;}
.ye5{bottom:303.040000pt;}
.ya{bottom:307.040000pt;}
.yb3{bottom:307.360000pt;}
.y123{bottom:308.160000pt;}
.yfe{bottom:308.960000pt;}
.y38{bottom:309.451520pt;}
.y161{bottom:312.160000pt;}
.y138{bottom:316.800000pt;}
.y67{bottom:318.080000pt;}
.y94{bottom:319.520000pt;}
.ye4{bottom:321.440000pt;}
.yb2{bottom:325.760000pt;}
.y37{bottom:326.408960pt;}
.y122{bottom:326.560000pt;}
.yfd{bottom:327.200000pt;}
.y160{bottom:330.560000pt;}
.y137{bottom:335.200000pt;}
.y66{bottom:336.640000pt;}
.y93{bottom:337.920000pt;}
.ye3{bottom:339.840000pt;}
.y31{bottom:343.204480pt;}
.yb1{bottom:344.160000pt;}
.y121{bottom:344.960000pt;}
.yfc{bottom:345.600000pt;}
.y15f{bottom:348.960000pt;}
.y136{bottom:353.600000pt;}
.y65{bottom:356.000000pt;}
.y92{bottom:356.320000pt;}
.ye2{bottom:358.240000pt;}
.y30{bottom:360.000000pt;}
.yb0{bottom:362.560000pt;}
.y120{bottom:363.360000pt;}
.yfb{bottom:364.000000pt;}
.y15e{bottom:367.360000pt;}
.y135{bottom:372.000000pt;}
.y91{bottom:374.720000pt;}
.ye1{bottom:376.640000pt;}
.y64{bottom:379.360000pt;}
.yaf{bottom:380.960000pt;}
.yc2{bottom:381.120000pt;}
.y11f{bottom:381.760000pt;}
.yfa{bottom:382.400000pt;}
.y15d{bottom:385.760000pt;}
.y134{bottom:386.720000pt;}
.y1d{bottom:391.200000pt;}
.y90{bottom:393.120000pt;}
.ye0{bottom:395.040000pt;}
.y63{bottom:397.760000pt;}
.yae{bottom:399.360000pt;}
.y11e{bottom:400.160000pt;}
.yf9{bottom:400.800000pt;}
.y15c{bottom:404.160000pt;}
.y2c{bottom:411.385600pt;}
.y8f{bottom:411.520000pt;}
.yc0{bottom:411.680000pt;}
.ydf{bottom:413.440000pt;}
.y62{bottom:416.160000pt;}
.yad{bottom:417.760000pt;}
.y11d{bottom:418.560000pt;}
.yf8{bottom:419.360000pt;}
.y15b{bottom:422.560000pt;}
.y2b{bottom:428.181120pt;}
.y8e{bottom:429.920000pt;}
.yde{bottom:431.840000pt;}
.y61{bottom:434.560000pt;}
.yac{bottom:436.160000pt;}
.y11c{bottom:436.960000pt;}
.yf7{bottom:437.600000pt;}
.y15a{bottom:440.960000pt;}
.y2a{bottom:445.138560pt;}
.y150{bottom:446.400000pt;}
.y8d{bottom:448.320000pt;}
.ydd{bottom:450.240000pt;}
.y60{bottom:452.960000pt;}
.yab{bottom:454.560000pt;}
.y10f{bottom:454.720000pt;}
.y11b{bottom:455.360000pt;}
.yf6{bottom:456.000000pt;}
.y159{bottom:459.360000pt;}
.y29{bottom:461.934080pt;}
.y14f{bottom:464.800000pt;}
.y8c{bottom:466.720000pt;}
.ybf{bottom:468.000000pt;}
.ydc{bottom:468.640000pt;}
.y5f{bottom:471.360000pt;}
.yaa{bottom:472.960000pt;}
.y11a{bottom:473.760000pt;}
.yf5{bottom:474.400000pt;}
.y158{bottom:477.920000pt;}
.y28{bottom:478.891520pt;}
.y14e{bottom:483.200000pt;}
.y8b{bottom:485.120000pt;}
.ydb{bottom:487.040000pt;}
.y5e{bottom:489.760000pt;}
.ya9{bottom:491.360000pt;}
.y10e{bottom:491.520000pt;}
.y119{bottom:492.160000pt;}
.yf4{bottom:492.800000pt;}
.y27{bottom:495.687040pt;}
.y157{bottom:496.160000pt;}
.y14d{bottom:501.600000pt;}
.y8a{bottom:503.520000pt;}
.yda{bottom:505.440000pt;}
.y5d{bottom:508.160000pt;}
.ya8{bottom:509.760000pt;}
.y118{bottom:510.560000pt;}
.yf3{bottom:511.200000pt;}
.y26{bottom:512.482560pt;}
.y156{bottom:514.560000pt;}
.y14c{bottom:520.000000pt;}
.y89{bottom:521.920000pt;}
.yd9{bottom:523.840000pt;}
.y5c{bottom:526.560000pt;}
.ya7{bottom:528.000000pt;}
.y117{bottom:528.960000pt;}
.y25{bottom:529.440000pt;}
.yf2{bottom:529.600000pt;}
.y155{bottom:532.960000pt;}
.y14b{bottom:538.400000pt;}
.y88{bottom:540.320000pt;}
.yd8{bottom:542.240000pt;}
.y5b{bottom:544.960000pt;}
.y23{bottom:546.254080pt;}
.ya6{bottom:546.400000pt;}
.y116{bottom:547.360000pt;}
.yf1{bottom:548.000000pt;}
.y154{bottom:551.833600pt;}
.y14a{bottom:556.800000pt;}
.y87{bottom:558.720000pt;}
.yd7{bottom:560.640000pt;}
.y22{bottom:563.211520pt;}
.y5a{bottom:563.360000pt;}
.ya5{bottom:564.800000pt;}
.y10d{bottom:564.960000pt;}
.y115{bottom:565.760000pt;}
.yf0{bottom:566.400000pt;}
.y153{bottom:572.800000pt;}
.y149{bottom:575.200000pt;}
.y86{bottom:577.120000pt;}
.yd6{bottom:579.040000pt;}
.y21{bottom:580.007040pt;}
.y59{bottom:581.920000pt;}
.ya4{bottom:583.200000pt;}
.y114{bottom:584.320000pt;}
.yef{bottom:584.800000pt;}
.y152{bottom:591.200000pt;}
.y148{bottom:593.600000pt;}
.y133{bottom:595.360000pt;}
.y85{bottom:595.520000pt;}
.y20{bottom:596.802560pt;}
.yd5{bottom:597.440000pt;}
.yee{bottom:599.680000pt;}
.y58{bottom:600.640000pt;}
.ya3{bottom:601.600000pt;}
.yc6{bottom:601.760000pt;}
.y113{bottom:603.033600pt;}
.y151{bottom:605.920000pt;}
.y147{bottom:612.000000pt;}
.y132{bottom:613.600000pt;}
.y1f{bottom:613.760000pt;}
.y84{bottom:613.920000pt;}
.yd4{bottom:615.680000pt;}
.ya2{bottom:620.000000pt;}
.y57{bottom:621.600000pt;}
.y112{bottom:624.000000pt;}
.y146{bottom:630.400000pt;}
.y131{bottom:632.000000pt;}
.y83{bottom:632.320000pt;}
.yd3{bottom:635.200000pt;}
.ya1{bottom:638.400000pt;}
.y56{bottom:640.000000pt;}
.y111{bottom:642.400000pt;}
.y9{bottom:644.800000pt;}
.y145{bottom:648.800000pt;}
.y130{bottom:650.400000pt;}
.y17b{bottom:650.720000pt;}
.y82{bottom:651.840000pt;}
.yd2{bottom:653.600000pt;}
.ya0{bottom:656.800000pt;}
.y110{bottom:657.280000pt;}
.y55{bottom:658.400000pt;}
.y144{bottom:663.520000pt;}
.y1b{bottom:665.018240pt;}
.y12f{bottom:668.800000pt;}
.y17a{bottom:669.120000pt;}
.yd1{bottom:672.000000pt;}
.y81{bottom:675.200000pt;}
.y10c{bottom:675.360000pt;}
.y54{bottom:676.800000pt;}
.y1a{bottom:681.975680pt;}
.y12e{bottom:687.200000pt;}
.y179{bottom:687.520000pt;}
.yd0{bottom:690.400000pt;}
.y80{bottom:693.600000pt;}
.y10b{bottom:693.760000pt;}
.y53{bottom:694.716800pt;}
.y19{bottom:698.771200pt;}
.y12d{bottom:705.600000pt;}
.y178{bottom:705.920000pt;}
.ycf{bottom:708.800000pt;}
.y7f{bottom:712.000000pt;}
.y52{bottom:712.160000pt;}
.y18{bottom:715.566720pt;}
.y8{bottom:723.044480pt;}
.y12c{bottom:724.000000pt;}
.y177{bottom:724.320000pt;}
.yce{bottom:728.320000pt;}
.y51{bottom:730.400000pt;}
.y17{bottom:732.524160pt;}
.y7{bottom:739.840000pt;}
.y12b{bottom:742.400000pt;}
.y176{bottom:742.720000pt;}
.ycd{bottom:746.720000pt;}
.y50{bottom:748.484480pt;}
.y7e{bottom:748.800000pt;}
.y16{bottom:749.319680pt;}
.y12a{bottom:760.800000pt;}
.y175{bottom:761.120000pt;}
.ycc{bottom:765.120000pt;}
.y4f{bottom:765.279360pt;}
.y15{bottom:766.277120pt;}
.y7d{bottom:767.200000pt;}
.yc5{bottom:767.360000pt;}
.y129{bottom:775.680000pt;}
.y174{bottom:779.520000pt;}
.y4e{bottom:782.236800pt;}
.y14{bottom:783.072640pt;}
.ycb{bottom:783.520000pt;}
.y7c{bottom:785.600000pt;}
.y173{bottom:797.920000pt;}
.y4d{bottom:799.680000pt;}
.y13{bottom:799.868160pt;}
.yca{bottom:801.920000pt;}
.y7b{bottom:804.000000pt;}
.y172{bottom:816.320000pt;}
.y12{bottom:816.825600pt;}
.y4c{bottom:817.920000pt;}
.yc9{bottom:821.440000pt;}
.y7a{bottom:822.400000pt;}
.y11{bottom:833.621120pt;}
.y171{bottom:834.720000pt;}
.y4b{bottom:836.320000pt;}
.yc8{bottom:839.840000pt;}
.y79{bottom:840.800000pt;}
.y10{bottom:850.578560pt;}
.y170{bottom:853.120000pt;}
.y4a{bottom:854.880000pt;}
.yc7{bottom:858.080000pt;}
.y78{bottom:859.200000pt;}
.yf{bottom:867.374080pt;}
.y16f{bottom:871.520000pt;}
.y49{bottom:872.636800pt;}
.y77{bottom:877.600000pt;}
.ye{bottom:884.169600pt;}
.y16e{bottom:889.920000pt;}
.y48{bottom:890.080000pt;}
.y76{bottom:896.000000pt;}
.yd{bottom:901.127040pt;}
.y47{bottom:908.480000pt;}
.y16d{bottom:909.440000pt;}
.y75{bottom:914.400000pt;}
.yc{bottom:917.922560pt;}
.y46{bottom:926.720000pt;}
.y74{bottom:932.800000pt;}
.yb{bottom:934.880000pt;}
.y45{bottom:945.120000pt;}
.y73{bottom:951.200000pt;}
.y44{bottom:964.640000pt;}
.y6{bottom:969.600000pt;}
.y5{bottom:988.000000pt;}
.y10a{bottom:988.160000pt;}
.y2{bottom:1006.400000pt;}
.y1{bottom:1030.400000pt;}
.h7{height:42.895000pt;}
.h5{height:42.923750pt;}
.he{height:42.926310pt;}
.h4{height:43.343750pt;}
.h12{height:46.593750pt;}
.hc{height:46.625000pt;}
.hf{height:46.637800pt;}
.ha{height:46.638330pt;}
.h3{height:46.656250pt;}
.hd{height:46.669050pt;}
.h13{height:47.406250pt;}
.h14{height:54.514687pt;}
.h10{height:54.551250pt;}
.h2{height:60.699688pt;}
.hb{height:61.969687pt;}
.h11{height:62.011250pt;}
.h9{height:151.841333pt;}
.h8{height:252.960000pt;}
.h6{height:320.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:176.960000pt;}
.w2{width:480.320000pt;}
.w3{width:657.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x8{left:60.480000pt;}
.x4{left:68.000000pt;}
.xe{left:92.000000pt;}
.x17{left:116.000000pt;}
.x9{left:137.760000pt;}
.x5{left:237.760000pt;}
.x7{left:244.640000pt;}
.x1{left:256.160000pt;}
.x14{left:264.317440pt;}
.x12{left:279.360000pt;}
.x16{left:283.040000pt;}
.x10{left:298.560000pt;}
.xb{left:303.680000pt;}
.xa{left:316.640000pt;}
.xd{left:327.680000pt;}
.x15{left:330.080000pt;}
.x13{left:331.514240pt;}
.x11{left:334.080000pt;}
.xf{left:357.440000pt;}
.x3{left:359.840000pt;}
.xc{left:384.800000pt;}
.x2{left:396.800000pt;}
.x18{left:674.720000pt;}
.x19{left:685.760000pt;}
}




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