
    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_7a1d51a9cce8fc6facbbfd69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_c4453b2b7c0683fe08a688b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_0808296c6ef7325309350d44.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_fb578a3016ee44a405c80c2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_997cd7e74bc7e45982e7044d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.152000;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);}
.v2{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls4d{letter-spacing:-1.782000px;}
.ls4c{letter-spacing:-1.716000px;}
.ls1d{letter-spacing:-1.650000px;}
.ls3b{letter-spacing:-1.584000px;}
.ls2a{letter-spacing:-1.518000px;}
.ls38{letter-spacing:-1.452000px;}
.ls37{letter-spacing:-1.320000px;}
.ls34{letter-spacing:-1.254000px;}
.lsb{letter-spacing:-1.188000px;}
.ls10{letter-spacing:-1.122000px;}
.ls27{letter-spacing:-1.056000px;}
.ls39{letter-spacing:-0.990000px;}
.lsf{letter-spacing:-0.924000px;}
.ls11{letter-spacing:-0.858000px;}
.ls4b{letter-spacing:-0.810000px;}
.ls21{letter-spacing:-0.792000px;}
.ls29{letter-spacing:-0.726000px;}
.ls15{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.594000px;}
.ls28{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.462000px;}
.ls44{letter-spacing:-0.415800px;}
.ls12{letter-spacing:-0.396000px;}
.ls47{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.330000px;}
.ls50{letter-spacing:-0.277200px;}
.ls3c{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.162000px;}
.ls3f{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132000px;}
.ls42{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.066000px;}
.ls35{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.048000px;}
.ls2b{letter-spacing:-0.046200px;}
.lsc{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.066000px;}
.ls45{letter-spacing:0.092400px;}
.ls4a{letter-spacing:0.096000px;}
.ls32{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.132000px;}
.ls46{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.231000px;}
.ls5{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.330000px;}
.ls49{letter-spacing:0.378000px;}
.ls19{letter-spacing:0.396000px;}
.ls33{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.462000px;}
.ls4e{letter-spacing:0.480000px;}
.ls4f{letter-spacing:0.486000px;}
.ls2e{letter-spacing:0.528000px;}
.ls2f{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.660000px;}
.lse{letter-spacing:0.726000px;}
.ls16{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.858000px;}
.ls1{letter-spacing:0.924000px;}
.ls3{letter-spacing:0.990000px;}
.ls2{letter-spacing:1.056000px;}
.ls43{letter-spacing:1.122000px;}
.ls3d{letter-spacing:1.188000px;}
.ls48{letter-spacing:1.254000px;}
.ls36{letter-spacing:1.320000px;}
.ls8{letter-spacing:1.386000px;}
.ls30{letter-spacing:1.584000px;}
.ls22{letter-spacing:1.650000px;}
.ls51{letter-spacing:1.914000px;}
.ls18{letter-spacing:1.980000px;}
.ls41{letter-spacing:15.000000px;}
.ls3a{letter-spacing:15.180000px;}
.ls31{letter-spacing:15.300000px;}
.ls3e{letter-spacing:15.312000px;}
.ls23{letter-spacing:18.660000px;}
.ls40{letter-spacing:18.720000px;}
.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;}
}
.ws0{word-spacing:-24.000000px;}
.ws81{word-spacing:-18.414000px;}
.ws50{word-spacing:-18.150000px;}
.ws7c{word-spacing:-17.886000px;}
.ws67{word-spacing:-17.622000px;}
.ws4e{word-spacing:-17.556000px;}
.ws45{word-spacing:-17.424000px;}
.ws5a{word-spacing:-17.358000px;}
.ws75{word-spacing:-17.292000px;}
.ws19{word-spacing:-17.226000px;}
.ws1d{word-spacing:-17.160000px;}
.ws57{word-spacing:-17.094000px;}
.ws5e{word-spacing:-17.028000px;}
.ws47{word-spacing:-16.962000px;}
.ws6b{word-spacing:-16.896000px;}
.ws59{word-spacing:-16.830000px;}
.ws1c{word-spacing:-16.764000px;}
.ws5f{word-spacing:-16.698000px;}
.ws2e{word-spacing:-16.632000px;}
.ws3d{word-spacing:-16.566000px;}
.ws17{word-spacing:-16.500000px;}
.ws1a{word-spacing:-16.434000px;}
.ws46{word-spacing:-16.368000px;}
.ws2d{word-spacing:-16.302000px;}
.ws2c{word-spacing:-16.236000px;}
.ws49{word-spacing:-16.104000px;}
.ws1b{word-spacing:-16.038000px;}
.ws4f{word-spacing:-15.972000px;}
.ws68{word-spacing:-15.906000px;}
.ws56{word-spacing:-15.840000px;}
.ws4d{word-spacing:-15.774000px;}
.ws78{word-spacing:-15.708000px;}
.ws79{word-spacing:-15.642000px;}
.ws30{word-spacing:-15.576000px;}
.ws5c{word-spacing:-15.510000px;}
.ws48{word-spacing:-15.444000px;}
.ws7b{word-spacing:-15.378000px;}
.ws2f{word-spacing:-14.982000px;}
.ws62{word-spacing:-14.094000px;}
.ws82{word-spacing:-13.986000px;}
.ws83{word-spacing:-13.554000px;}
.ws6f{word-spacing:-13.500000px;}
.ws3e{word-spacing:-13.446000px;}
.ws31{word-spacing:-13.284000px;}
.ws7e{word-spacing:-12.771000px;}
.ws7f{word-spacing:-12.480000px;}
.ws6d{word-spacing:-12.144000px;}
.ws76{word-spacing:-12.096000px;}
.ws20{word-spacing:-12.000000px;}
.ws5d{word-spacing:-11.856000px;}
.ws87{word-spacing:-11.472000px;}
.ws4a{word-spacing:-11.280000px;}
.ws69{word-spacing:-11.134200px;}
.ws16{word-spacing:-7.248000px;}
.ws29{word-spacing:-0.858000px;}
.ws23{word-spacing:-0.792000px;}
.wse{word-spacing:-0.726000px;}
.ws5{word-spacing:-0.660000px;}
.ws66{word-spacing:-0.648000px;}
.ws15{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.540000px;}
.ws1{word-spacing:-0.528000px;}
.ws3c{word-spacing:-0.486000px;}
.ws1e{word-spacing:-0.462000px;}
.ws6{word-spacing:-0.396000px;}
.ws55{word-spacing:-0.378000px;}
.ws84{word-spacing:-0.369600px;}
.ws35{word-spacing:-0.330000px;}
.ws42{word-spacing:-0.324000px;}
.ws6e{word-spacing:-0.270000px;}
.ws12{word-spacing:-0.264000px;}
.ws32{word-spacing:-0.198000px;}
.ws28{word-spacing:-0.132000px;}
.ws54{word-spacing:-0.108000px;}
.ws53{word-spacing:-0.092400px;}
.ws11{word-spacing:-0.066000px;}
.ws8{word-spacing:0.000000px;}
.ws7{word-spacing:0.066000px;}
.ws63{word-spacing:0.092400px;}
.ws43{word-spacing:0.108000px;}
.ws38{word-spacing:0.132000px;}
.ws77{word-spacing:0.162000px;}
.ws58{word-spacing:0.198000px;}
.ws72{word-spacing:0.231000px;}
.ws51{word-spacing:0.264000px;}
.ws9{word-spacing:0.330000px;}
.ws64{word-spacing:0.378000px;}
.ws41{word-spacing:0.396000px;}
.ws4c{word-spacing:0.462000px;}
.ws74{word-spacing:0.486000px;}
.ws5b{word-spacing:0.528000px;}
.ws2b{word-spacing:0.540000px;}
.ws40{word-spacing:0.554400px;}
.ws14{word-spacing:0.594000px;}
.ws37{word-spacing:0.600600px;}
.wsd{word-spacing:0.660000px;}
.ws65{word-spacing:0.702000px;}
.ws24{word-spacing:0.726000px;}
.wsc{word-spacing:0.792000px;}
.ws86{word-spacing:0.810000px;}
.ws10{word-spacing:0.858000px;}
.ws44{word-spacing:0.864000px;}
.ws73{word-spacing:0.918000px;}
.wsf{word-spacing:0.924000px;}
.ws25{word-spacing:0.990000px;}
.ws3f{word-spacing:1.056000px;}
.ws2a{word-spacing:1.080000px;}
.ws33{word-spacing:1.122000px;}
.ws3{word-spacing:1.188000px;}
.ws39{word-spacing:1.242000px;}
.ws4{word-spacing:1.254000px;}
.ws3a{word-spacing:1.296000px;}
.ws13{word-spacing:1.320000px;}
.ws2{word-spacing:1.386000px;}
.wsb{word-spacing:1.452000px;}
.wsa{word-spacing:1.518000px;}
.ws27{word-spacing:1.584000px;}
.ws22{word-spacing:1.650000px;}
.ws34{word-spacing:1.782000px;}
.ws7a{word-spacing:2.706000px;}
.ws18{word-spacing:3.493500px;}
.ws60{word-spacing:4.050000px;}
.ws6c{word-spacing:4.248600px;}
.ws80{word-spacing:4.341600px;}
.ws36{word-spacing:4.620000px;}
.ws52{word-spacing:5.148000px;}
.ws7d{word-spacing:5.337000px;}
.ws70{word-spacing:5.544000px;}
.ws6a{word-spacing:6.532800px;}
.ws71{word-spacing:6.732000px;}
.ws61{word-spacing:9.018000px;}
.ws26{word-spacing:13.200000px;}
.ws85{word-spacing:19.404000px;}
.ws1f{word-spacing:35.712000px;}
.ws21{word-spacing:36.018000px;}
.ws4b{word-spacing:1298.208000px;}
._7{margin-left:-9.042000px;}
._8{margin-left:-7.128000px;}
._c{margin-left:-5.940000px;}
._3{margin-left:-4.752000px;}
._1{margin-left:-3.168000px;}
._0{margin-left:-1.386000px;}
._2{width:1.056000px;}
._f{width:2.112000px;}
._5{width:3.234000px;}
._d{width:11.076000px;}
._9{width:16.104000px;}
._e{width:22.518000px;}
._b{width:36.018000px;}
._4{width:47.274000px;}
._a{width:48.624000px;}
._6{width:1309.530000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:49.866000px;}
.y4d{bottom:49.872000px;}
.y1a2{bottom:50.031000px;}
.y84{bottom:50.229000px;}
.y10b{bottom:50.298000px;}
.y13c{bottom:50.559000px;}
.y15e{bottom:50.604000px;}
.y17d{bottom:50.610000px;}
.yeb{bottom:50.682000px;}
.yaf{bottom:50.698500px;}
.ye0{bottom:50.715000px;}
.y131{bottom:50.754000px;}
.yd1{bottom:50.943000px;}
.y20{bottom:50.962500px;}
.yb8{bottom:51.378000px;}
.y74{bottom:64.122000px;}
.y4c{bottom:64.128000px;}
.y1a1{bottom:64.287000px;}
.y83{bottom:64.485000px;}
.y10a{bottom:64.554000px;}
.y13b{bottom:64.815000px;}
.y15d{bottom:64.860000px;}
.y130{bottom:65.010000px;}
.yd0{bottom:65.199000px;}
.yb7{bottom:65.634000px;}
.y17c{bottom:67.852500px;}
.yea{bottom:67.924500px;}
.yae{bottom:67.941000px;}
.ydf{bottom:67.957500px;}
.y1f{bottom:68.205000px;}
.y73{bottom:78.378000px;}
.y4b{bottom:78.384000px;}
.y1a0{bottom:78.543000px;}
.y82{bottom:78.741000px;}
.y109{bottom:78.810000px;}
.y13a{bottom:79.071000px;}
.y12f{bottom:79.266000px;}
.ycf{bottom:79.455000px;}
.yb6{bottom:79.890000px;}
.y17b{bottom:85.095000px;}
.ye9{bottom:85.167000px;}
.yad{bottom:85.183500px;}
.yde{bottom:85.200000px;}
.y1e{bottom:85.447500px;}
.y72{bottom:92.634000px;}
.y4a{bottom:92.640000px;}
.y19f{bottom:92.799000px;}
.y81{bottom:92.997000px;}
.y108{bottom:93.066000px;}
.y139{bottom:93.327000px;}
.y12e{bottom:93.522000px;}
.y17a{bottom:102.337500px;}
.ye8{bottom:102.409500px;}
.yac{bottom:102.426000px;}
.ydd{bottom:102.442500px;}
.y1d{bottom:102.690000px;}
.y71{bottom:106.890000px;}
.y19e{bottom:107.055000px;}
.y80{bottom:107.253000px;}
.y107{bottom:107.322000px;}
.y138{bottom:107.583000px;}
.y12d{bottom:107.778000px;}
.y15f{bottom:111.039000px;}
.yb5{bottom:119.467500px;}
.yce{bottom:119.497500px;}
.y179{bottom:119.580000px;}
.y15c{bottom:119.617500px;}
.ye7{bottom:119.652000px;}
.yab{bottom:119.668500px;}
.ydc{bottom:119.685000px;}
.y1c{bottom:119.932500px;}
.y7f{bottom:121.509000px;}
.y106{bottom:121.578000px;}
.y137{bottom:121.839000px;}
.y12c{bottom:122.034000px;}
.y7e{bottom:135.765000px;}
.y105{bottom:135.834000px;}
.y136{bottom:136.095000px;}
.y12b{bottom:136.290000px;}
.yb4{bottom:136.710000px;}
.ycd{bottom:136.740000px;}
.y178{bottom:136.822500px;}
.y15b{bottom:136.860000px;}
.y49{bottom:136.875000px;}
.ye6{bottom:136.894500px;}
.yaa{bottom:136.911000px;}
.ydb{bottom:136.927500px;}
.y1b{bottom:137.175000px;}
.y1a3{bottom:145.524000px;}
.y104{bottom:150.090000px;}
.y70{bottom:153.922500px;}
.yb3{bottom:153.952500px;}
.ycc{bottom:153.982500px;}
.y19d{bottom:154.005000px;}
.y177{bottom:154.065000px;}
.y15a{bottom:154.102500px;}
.y48{bottom:154.117500px;}
.ye5{bottom:154.137000px;}
.ya9{bottom:154.153500px;}
.yda{bottom:154.170000px;}
.y1a{bottom:154.417500px;}
.y6f{bottom:171.165000px;}
.yb2{bottom:171.195000px;}
.ycb{bottom:171.225000px;}
.y19c{bottom:171.247500px;}
.y176{bottom:171.307500px;}
.y159{bottom:171.345000px;}
.y47{bottom:171.360000px;}
.ye4{bottom:171.379500px;}
.ya8{bottom:171.396000px;}
.yd9{bottom:171.412500px;}
.y19{bottom:171.660000px;}
.y6e{bottom:188.407500px;}
.y12a{bottom:188.430000px;}
.y7d{bottom:188.437500px;}
.y135{bottom:188.452500px;}
.yca{bottom:188.467500px;}
.y19b{bottom:188.490000px;}
.y175{bottom:188.550000px;}
.y158{bottom:188.587500px;}
.y46{bottom:188.602500px;}
.ye3{bottom:188.622000px;}
.ya7{bottom:188.638500px;}
.yd8{bottom:188.655000px;}
.y18{bottom:188.902500px;}
.y6d{bottom:205.650000px;}
.y103{bottom:205.657500px;}
.y129{bottom:205.672500px;}
.y7c{bottom:205.680000px;}
.y134{bottom:205.695000px;}
.yc9{bottom:205.710000px;}
.y19a{bottom:205.732500px;}
.y174{bottom:205.792500px;}
.y157{bottom:205.830000px;}
.y45{bottom:205.845000px;}
.ye2{bottom:205.864500px;}
.ya6{bottom:205.881000px;}
.yd7{bottom:205.897500px;}
.y17{bottom:206.145000px;}
.y6c{bottom:222.892500px;}
.y102{bottom:222.900000px;}
.y128{bottom:222.915000px;}
.y7b{bottom:222.922500px;}
.y133{bottom:222.937500px;}
.yc8{bottom:222.952500px;}
.y199{bottom:222.975000px;}
.y173{bottom:223.035000px;}
.y156{bottom:223.072500px;}
.y44{bottom:223.087500px;}
.ya5{bottom:223.123500px;}
.yd6{bottom:223.140000px;}
.y16{bottom:223.387500px;}
.ye1{bottom:231.736500px;}
.y101{bottom:240.142500px;}
.y127{bottom:240.157500px;}
.y7a{bottom:240.165000px;}
.y6b{bottom:240.180000px;}
.yc7{bottom:240.195000px;}
.y198{bottom:240.217500px;}
.y172{bottom:240.277500px;}
.y155{bottom:240.315000px;}
.y43{bottom:240.330000px;}
.ya4{bottom:240.366000px;}
.yd5{bottom:240.382500px;}
.y15{bottom:240.630000px;}
.y126{bottom:257.400000px;}
.y79{bottom:257.407500px;}
.y6a{bottom:257.422500px;}
.yc6{bottom:257.437500px;}
.y197{bottom:257.460000px;}
.y100{bottom:257.497500px;}
.y171{bottom:257.520000px;}
.y154{bottom:257.557500px;}
.y42{bottom:257.572500px;}
.ya3{bottom:257.608500px;}
.yd4{bottom:257.625000px;}
.y14{bottom:257.872500px;}
.y125{bottom:274.642500px;}
.y78{bottom:274.650000px;}
.y69{bottom:274.665000px;}
.yc5{bottom:274.680000px;}
.y196{bottom:274.702500px;}
.yff{bottom:274.740000px;}
.y170{bottom:274.762500px;}
.y153{bottom:274.800000px;}
.y41{bottom:274.815000px;}
.ya2{bottom:274.851000px;}
.yd3{bottom:274.867500px;}
.y13{bottom:275.115000px;}
.y77{bottom:291.892500px;}
.y68{bottom:291.907500px;}
.yc4{bottom:291.922500px;}
.y195{bottom:291.945000px;}
.yfe{bottom:291.982500px;}
.y124{bottom:291.997500px;}
.y16f{bottom:292.005000px;}
.y152{bottom:292.042500px;}
.y40{bottom:292.057500px;}
.ya1{bottom:292.093500px;}
.yd2{bottom:292.110000px;}
.y12{bottom:292.357500px;}
.y67{bottom:309.150000px;}
.yc3{bottom:309.165000px;}
.y194{bottom:309.187500px;}
.yfd{bottom:309.225000px;}
.y123{bottom:309.240000px;}
.y16e{bottom:309.247500px;}
.y151{bottom:309.285000px;}
.y3f{bottom:309.300000px;}
.ya0{bottom:309.336000px;}
.yb1{bottom:309.352500px;}
.y11{bottom:309.600000px;}
.y66{bottom:326.392500px;}
.yc2{bottom:326.407500px;}
.y193{bottom:326.430000px;}
.yfc{bottom:326.467500px;}
.y122{bottom:326.482500px;}
.y16d{bottom:326.490000px;}
.y150{bottom:326.527500px;}
.y3e{bottom:326.542500px;}
.y9f{bottom:326.578500px;}
.yb0{bottom:326.595000px;}
.y10{bottom:326.842500px;}
.y132{bottom:343.635000px;}
.yc1{bottom:343.650000px;}
.y192{bottom:343.672500px;}
.yfb{bottom:343.710000px;}
.y121{bottom:343.725000px;}
.y16c{bottom:343.732500px;}
.y14f{bottom:343.770000px;}
.y3d{bottom:343.785000px;}
.y9e{bottom:343.821000px;}
.y65{bottom:343.837500px;}
.yf{bottom:344.085000px;}
.yc0{bottom:360.892500px;}
.y191{bottom:360.915000px;}
.yfa{bottom:360.952500px;}
.y120{bottom:360.967500px;}
.y16b{bottom:360.975000px;}
.y14e{bottom:361.012500px;}
.y3c{bottom:361.027500px;}
.y9d{bottom:361.063500px;}
.y64{bottom:361.080000px;}
.ye{bottom:361.327500px;}
.ybf{bottom:378.135000px;}
.y190{bottom:378.157500px;}
.yf9{bottom:378.195000px;}
.y11f{bottom:378.210000px;}
.y16a{bottom:378.217500px;}
.y14d{bottom:378.255000px;}
.y3b{bottom:378.270000px;}
.y9c{bottom:378.306000px;}
.y63{bottom:378.322500px;}
.yd{bottom:378.570000px;}
.y18f{bottom:395.400000px;}
.yf8{bottom:395.437500px;}
.y11e{bottom:395.452500px;}
.y169{bottom:395.460000px;}
.y14c{bottom:395.497500px;}
.y3a{bottom:395.512500px;}
.ybe{bottom:395.532000px;}
.y9b{bottom:395.548500px;}
.y62{bottom:395.565000px;}
.yc{bottom:395.812500px;}
.y18e{bottom:412.642500px;}
.yf7{bottom:412.680000px;}
.y11d{bottom:412.695000px;}
.y168{bottom:412.702500px;}
.y14b{bottom:412.740000px;}
.y39{bottom:412.755000px;}
.ybd{bottom:412.774500px;}
.y9a{bottom:412.791000px;}
.y61{bottom:412.807500px;}
.yb{bottom:413.055000px;}
.y18d{bottom:429.900000px;}
.yf6{bottom:429.922500px;}
.y11c{bottom:429.937500px;}
.y167{bottom:429.945000px;}
.y14a{bottom:429.982500px;}
.y38{bottom:429.997500px;}
.ybc{bottom:430.017000px;}
.y99{bottom:430.033500px;}
.y60{bottom:430.050000px;}
.ya{bottom:430.297500px;}
.y18c{bottom:447.142500px;}
.yf5{bottom:447.165000px;}
.y11b{bottom:447.180000px;}
.y166{bottom:447.187500px;}
.y149{bottom:447.225000px;}
.y37{bottom:447.240000px;}
.ybb{bottom:447.259500px;}
.y98{bottom:447.276000px;}
.y5f{bottom:447.292500px;}
.y9{bottom:447.540000px;}
.y18b{bottom:464.385000px;}
.yf4{bottom:464.407500px;}
.y11a{bottom:464.422500px;}
.y165{bottom:464.430000px;}
.y148{bottom:464.467500px;}
.y36{bottom:464.482500px;}
.yba{bottom:464.502000px;}
.y97{bottom:464.518500px;}
.y5e{bottom:464.535000px;}
.y8{bottom:464.782500px;}
.yf3{bottom:481.650000px;}
.y119{bottom:481.665000px;}
.y164{bottom:481.672500px;}
.y147{bottom:481.710000px;}
.y35{bottom:481.725000px;}
.y18a{bottom:481.744500px;}
.y96{bottom:481.761000px;}
.y5d{bottom:481.777500px;}
.y7{bottom:482.025000px;}
.yb9{bottom:490.374000px;}
.yf2{bottom:498.892500px;}
.y118{bottom:498.907500px;}
.y163{bottom:498.915000px;}
.y146{bottom:498.952500px;}
.y34{bottom:498.967500px;}
.y189{bottom:498.987000px;}
.y95{bottom:499.003500px;}
.y5c{bottom:499.020000px;}
.y6{bottom:499.267500px;}
.y117{bottom:516.150000px;}
.y162{bottom:516.157500px;}
.yf1{bottom:516.180000px;}
.y145{bottom:516.195000px;}
.y33{bottom:516.210000px;}
.y188{bottom:516.229500px;}
.y94{bottom:516.246000px;}
.y5b{bottom:516.262500px;}
.y5{bottom:516.510000px;}
.y116{bottom:533.392500px;}
.y161{bottom:533.400000px;}
.yf0{bottom:533.422500px;}
.y144{bottom:533.437500px;}
.y32{bottom:533.452500px;}
.y187{bottom:533.472000px;}
.y93{bottom:533.488500px;}
.y5a{bottom:533.505000px;}
.y4{bottom:533.752500px;}
.y115{bottom:550.635000px;}
.y160{bottom:550.642500px;}
.yef{bottom:550.665000px;}
.y143{bottom:550.680000px;}
.y31{bottom:550.695000px;}
.y186{bottom:550.714500px;}
.y92{bottom:550.731000px;}
.y59{bottom:550.747500px;}
.y3{bottom:550.995000px;}
.y114{bottom:567.892500px;}
.yee{bottom:567.907500px;}
.y142{bottom:567.922500px;}
.y30{bottom:567.937500px;}
.y185{bottom:567.957000px;}
.y91{bottom:567.973500px;}
.y58{bottom:567.990000px;}
.y2{bottom:568.237500px;}
.yed{bottom:585.150000px;}
.y141{bottom:585.165000px;}
.y113{bottom:585.177000px;}
.y2f{bottom:585.180000px;}
.y184{bottom:585.199500px;}
.y90{bottom:585.216000px;}
.y57{bottom:585.232500px;}
.y1{bottom:585.480000px;}
.yec{bottom:602.392500px;}
.y140{bottom:602.407500px;}
.y112{bottom:602.419500px;}
.y2e{bottom:602.422500px;}
.y183{bottom:602.442000px;}
.y8f{bottom:602.458500px;}
.y56{bottom:602.475000px;}
.y13f{bottom:619.650000px;}
.y111{bottom:619.662000px;}
.y2d{bottom:619.665000px;}
.y182{bottom:619.684500px;}
.y8e{bottom:619.701000px;}
.y55{bottom:619.717500px;}
.y13e{bottom:636.892500px;}
.y110{bottom:636.904500px;}
.y2c{bottom:636.907500px;}
.y181{bottom:636.927000px;}
.y8d{bottom:636.943500px;}
.y54{bottom:636.960000px;}
.y13d{bottom:654.135000px;}
.y2b{bottom:654.150000px;}
.y180{bottom:654.169500px;}
.y8c{bottom:654.186000px;}
.y53{bottom:654.202500px;}
.y10f{bottom:662.776500px;}
.y2a{bottom:671.392500px;}
.y17f{bottom:671.412000px;}
.y8b{bottom:671.428500px;}
.y52{bottom:671.445000px;}
.y76{bottom:688.635000px;}
.y29{bottom:688.638000px;}
.y1a4{bottom:688.654500px;}
.y8a{bottom:688.671000px;}
.y51{bottom:688.687500px;}
.y17e{bottom:697.284000px;}
.y10e{bottom:705.907500px;}
.y89{bottom:705.913500px;}
.y50{bottom:705.930000px;}
.y28{bottom:714.510000px;}
.y10d{bottom:723.150000px;}
.y88{bottom:723.156000px;}
.y4f{bottom:723.172500px;}
.y10c{bottom:740.392500px;}
.y87{bottom:740.398500px;}
.y4e{bottom:740.415000px;}
.y86{bottom:757.641000px;}
.y27{bottom:757.657500px;}
.y85{bottom:774.883500px;}
.y26{bottom:774.900000px;}
.y25{bottom:792.142500px;}
.y22{bottom:805.605000px;}
.y24{bottom:809.385000px;}
.y21{bottom:856.605000px;}
.y23{bottom:1045.500000px;}
.h3{height:41.568000px;}
.h8{height:45.954000px;}
.h5{height:47.085938px;}
.h2{height:56.166000px;}
.h7{height:57.156000px;}
.hc{height:60.226200px;}
.h9{height:60.286200px;}
.h12{height:60.316200px;}
.hb{height:60.436200px;}
.hd{height:60.508200px;}
.hf{height:60.646200px;}
.h15{height:60.658200px;}
.he{height:60.766200px;}
.h13{height:60.826200px;}
.ha{height:60.916200px;}
.h14{height:60.922200px;}
.h10{height:60.928200px;}
.h6{height:61.006200px;}
.h16{height:61.036200px;}
.h11{height:61.066200px;}
.h4{height:81.696000px;}
.h1{height:889.500000px;}
.h0{height:892.500000px;}
.w1{width:634.500000px;}
.w0{width:637.500000px;}
.x4{left:-64.500000px;}
.x0{left:0.000000px;}
.x1{left:71.700000px;}
.x5{left:78.450000px;}
.x2{left:94.206000px;}
.x7{left:356.155500px;}
.x6{left:421.809000px;}
.x3{left:438.510000px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls4d{letter-spacing:-1.584000pt;}
.ls4c{letter-spacing:-1.525333pt;}
.ls1d{letter-spacing:-1.466667pt;}
.ls3b{letter-spacing:-1.408000pt;}
.ls2a{letter-spacing:-1.349333pt;}
.ls38{letter-spacing:-1.290667pt;}
.ls37{letter-spacing:-1.173333pt;}
.ls34{letter-spacing:-1.114667pt;}
.lsb{letter-spacing:-1.056000pt;}
.ls10{letter-spacing:-0.997333pt;}
.ls27{letter-spacing:-0.938667pt;}
.ls39{letter-spacing:-0.880000pt;}
.lsf{letter-spacing:-0.821333pt;}
.ls11{letter-spacing:-0.762667pt;}
.ls4b{letter-spacing:-0.720000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls29{letter-spacing:-0.645333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.528000pt;}
.ls28{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.410667pt;}
.ls44{letter-spacing:-0.369600pt;}
.ls12{letter-spacing:-0.352000pt;}
.ls47{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.293333pt;}
.ls50{letter-spacing:-0.246400pt;}
.ls3c{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.144000pt;}
.ls3f{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls35{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls2b{letter-spacing:-0.041067pt;}
.lsc{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.058667pt;}
.ls45{letter-spacing:0.082133pt;}
.ls4a{letter-spacing:0.085333pt;}
.ls32{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.117333pt;}
.ls46{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.205333pt;}
.ls5{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.293333pt;}
.ls49{letter-spacing:0.336000pt;}
.ls19{letter-spacing:0.352000pt;}
.ls33{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.410667pt;}
.ls4e{letter-spacing:0.426667pt;}
.ls4f{letter-spacing:0.432000pt;}
.ls2e{letter-spacing:0.469333pt;}
.ls2f{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.645333pt;}
.ls16{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.762667pt;}
.ls1{letter-spacing:0.821333pt;}
.ls3{letter-spacing:0.880000pt;}
.ls2{letter-spacing:0.938667pt;}
.ls43{letter-spacing:0.997333pt;}
.ls3d{letter-spacing:1.056000pt;}
.ls48{letter-spacing:1.114667pt;}
.ls36{letter-spacing:1.173333pt;}
.ls8{letter-spacing:1.232000pt;}
.ls30{letter-spacing:1.408000pt;}
.ls22{letter-spacing:1.466667pt;}
.ls51{letter-spacing:1.701333pt;}
.ls18{letter-spacing:1.760000pt;}
.ls41{letter-spacing:13.333333pt;}
.ls3a{letter-spacing:13.493333pt;}
.ls31{letter-spacing:13.600000pt;}
.ls3e{letter-spacing:13.610667pt;}
.ls23{letter-spacing:16.586667pt;}
.ls40{letter-spacing:16.640000pt;}
.ws0{word-spacing:-21.333333pt;}
.ws81{word-spacing:-16.368000pt;}
.ws50{word-spacing:-16.133333pt;}
.ws7c{word-spacing:-15.898667pt;}
.ws67{word-spacing:-15.664000pt;}
.ws4e{word-spacing:-15.605333pt;}
.ws45{word-spacing:-15.488000pt;}
.ws5a{word-spacing:-15.429333pt;}
.ws75{word-spacing:-15.370667pt;}
.ws19{word-spacing:-15.312000pt;}
.ws1d{word-spacing:-15.253333pt;}
.ws57{word-spacing:-15.194667pt;}
.ws5e{word-spacing:-15.136000pt;}
.ws47{word-spacing:-15.077333pt;}
.ws6b{word-spacing:-15.018667pt;}
.ws59{word-spacing:-14.960000pt;}
.ws1c{word-spacing:-14.901333pt;}
.ws5f{word-spacing:-14.842667pt;}
.ws2e{word-spacing:-14.784000pt;}
.ws3d{word-spacing:-14.725333pt;}
.ws17{word-spacing:-14.666667pt;}
.ws1a{word-spacing:-14.608000pt;}
.ws46{word-spacing:-14.549333pt;}
.ws2d{word-spacing:-14.490667pt;}
.ws2c{word-spacing:-14.432000pt;}
.ws49{word-spacing:-14.314667pt;}
.ws1b{word-spacing:-14.256000pt;}
.ws4f{word-spacing:-14.197333pt;}
.ws68{word-spacing:-14.138667pt;}
.ws56{word-spacing:-14.080000pt;}
.ws4d{word-spacing:-14.021333pt;}
.ws78{word-spacing:-13.962667pt;}
.ws79{word-spacing:-13.904000pt;}
.ws30{word-spacing:-13.845333pt;}
.ws5c{word-spacing:-13.786667pt;}
.ws48{word-spacing:-13.728000pt;}
.ws7b{word-spacing:-13.669333pt;}
.ws2f{word-spacing:-13.317333pt;}
.ws62{word-spacing:-12.528000pt;}
.ws82{word-spacing:-12.432000pt;}
.ws83{word-spacing:-12.048000pt;}
.ws6f{word-spacing:-12.000000pt;}
.ws3e{word-spacing:-11.952000pt;}
.ws31{word-spacing:-11.808000pt;}
.ws7e{word-spacing:-11.352000pt;}
.ws7f{word-spacing:-11.093333pt;}
.ws6d{word-spacing:-10.794667pt;}
.ws76{word-spacing:-10.752000pt;}
.ws20{word-spacing:-10.666667pt;}
.ws5d{word-spacing:-10.538667pt;}
.ws87{word-spacing:-10.197333pt;}
.ws4a{word-spacing:-10.026667pt;}
.ws69{word-spacing:-9.897067pt;}
.ws16{word-spacing:-6.442667pt;}
.ws29{word-spacing:-0.762667pt;}
.ws23{word-spacing:-0.704000pt;}
.wse{word-spacing:-0.645333pt;}
.ws5{word-spacing:-0.586667pt;}
.ws66{word-spacing:-0.576000pt;}
.ws15{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws1{word-spacing:-0.469333pt;}
.ws3c{word-spacing:-0.432000pt;}
.ws1e{word-spacing:-0.410667pt;}
.ws6{word-spacing:-0.352000pt;}
.ws55{word-spacing:-0.336000pt;}
.ws84{word-spacing:-0.328533pt;}
.ws35{word-spacing:-0.293333pt;}
.ws42{word-spacing:-0.288000pt;}
.ws6e{word-spacing:-0.240000pt;}
.ws12{word-spacing:-0.234667pt;}
.ws32{word-spacing:-0.176000pt;}
.ws28{word-spacing:-0.117333pt;}
.ws54{word-spacing:-0.096000pt;}
.ws53{word-spacing:-0.082133pt;}
.ws11{word-spacing:-0.058667pt;}
.ws8{word-spacing:0.000000pt;}
.ws7{word-spacing:0.058667pt;}
.ws63{word-spacing:0.082133pt;}
.ws43{word-spacing:0.096000pt;}
.ws38{word-spacing:0.117333pt;}
.ws77{word-spacing:0.144000pt;}
.ws58{word-spacing:0.176000pt;}
.ws72{word-spacing:0.205333pt;}
.ws51{word-spacing:0.234667pt;}
.ws9{word-spacing:0.293333pt;}
.ws64{word-spacing:0.336000pt;}
.ws41{word-spacing:0.352000pt;}
.ws4c{word-spacing:0.410667pt;}
.ws74{word-spacing:0.432000pt;}
.ws5b{word-spacing:0.469333pt;}
.ws2b{word-spacing:0.480000pt;}
.ws40{word-spacing:0.492800pt;}
.ws14{word-spacing:0.528000pt;}
.ws37{word-spacing:0.533867pt;}
.wsd{word-spacing:0.586667pt;}
.ws65{word-spacing:0.624000pt;}
.ws24{word-spacing:0.645333pt;}
.wsc{word-spacing:0.704000pt;}
.ws86{word-spacing:0.720000pt;}
.ws10{word-spacing:0.762667pt;}
.ws44{word-spacing:0.768000pt;}
.ws73{word-spacing:0.816000pt;}
.wsf{word-spacing:0.821333pt;}
.ws25{word-spacing:0.880000pt;}
.ws3f{word-spacing:0.938667pt;}
.ws2a{word-spacing:0.960000pt;}
.ws33{word-spacing:0.997333pt;}
.ws3{word-spacing:1.056000pt;}
.ws39{word-spacing:1.104000pt;}
.ws4{word-spacing:1.114667pt;}
.ws3a{word-spacing:1.152000pt;}
.ws13{word-spacing:1.173333pt;}
.ws2{word-spacing:1.232000pt;}
.wsb{word-spacing:1.290667pt;}
.wsa{word-spacing:1.349333pt;}
.ws27{word-spacing:1.408000pt;}
.ws22{word-spacing:1.466667pt;}
.ws34{word-spacing:1.584000pt;}
.ws7a{word-spacing:2.405333pt;}
.ws18{word-spacing:3.105333pt;}
.ws60{word-spacing:3.600000pt;}
.ws6c{word-spacing:3.776533pt;}
.ws80{word-spacing:3.859200pt;}
.ws36{word-spacing:4.106667pt;}
.ws52{word-spacing:4.576000pt;}
.ws7d{word-spacing:4.744000pt;}
.ws70{word-spacing:4.928000pt;}
.ws6a{word-spacing:5.806933pt;}
.ws71{word-spacing:5.984000pt;}
.ws61{word-spacing:8.016000pt;}
.ws26{word-spacing:11.733333pt;}
.ws85{word-spacing:17.248000pt;}
.ws1f{word-spacing:31.744000pt;}
.ws21{word-spacing:32.016000pt;}
.ws4b{word-spacing:1153.962667pt;}
._7{margin-left:-8.037333pt;}
._8{margin-left:-6.336000pt;}
._c{margin-left:-5.280000pt;}
._3{margin-left:-4.224000pt;}
._1{margin-left:-2.816000pt;}
._0{margin-left:-1.232000pt;}
._2{width:0.938667pt;}
._f{width:1.877333pt;}
._5{width:2.874667pt;}
._d{width:9.845333pt;}
._9{width:14.314667pt;}
._e{width:20.016000pt;}
._b{width:32.016000pt;}
._4{width:42.021333pt;}
._a{width:43.221333pt;}
._6{width:1164.026667pt;}
.fs3{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:44.325333pt;}
.y4d{bottom:44.330667pt;}
.y1a2{bottom:44.472000pt;}
.y84{bottom:44.648000pt;}
.y10b{bottom:44.709333pt;}
.y13c{bottom:44.941333pt;}
.y15e{bottom:44.981333pt;}
.y17d{bottom:44.986667pt;}
.yeb{bottom:45.050667pt;}
.yaf{bottom:45.065333pt;}
.ye0{bottom:45.080000pt;}
.y131{bottom:45.114667pt;}
.yd1{bottom:45.282667pt;}
.y20{bottom:45.300000pt;}
.yb8{bottom:45.669333pt;}
.y74{bottom:56.997333pt;}
.y4c{bottom:57.002667pt;}
.y1a1{bottom:57.144000pt;}
.y83{bottom:57.320000pt;}
.y10a{bottom:57.381333pt;}
.y13b{bottom:57.613333pt;}
.y15d{bottom:57.653333pt;}
.y130{bottom:57.786667pt;}
.yd0{bottom:57.954667pt;}
.yb7{bottom:58.341333pt;}
.y17c{bottom:60.313333pt;}
.yea{bottom:60.377333pt;}
.yae{bottom:60.392000pt;}
.ydf{bottom:60.406667pt;}
.y1f{bottom:60.626667pt;}
.y73{bottom:69.669333pt;}
.y4b{bottom:69.674667pt;}
.y1a0{bottom:69.816000pt;}
.y82{bottom:69.992000pt;}
.y109{bottom:70.053333pt;}
.y13a{bottom:70.285333pt;}
.y12f{bottom:70.458667pt;}
.ycf{bottom:70.626667pt;}
.yb6{bottom:71.013333pt;}
.y17b{bottom:75.640000pt;}
.ye9{bottom:75.704000pt;}
.yad{bottom:75.718667pt;}
.yde{bottom:75.733333pt;}
.y1e{bottom:75.953333pt;}
.y72{bottom:82.341333pt;}
.y4a{bottom:82.346667pt;}
.y19f{bottom:82.488000pt;}
.y81{bottom:82.664000pt;}
.y108{bottom:82.725333pt;}
.y139{bottom:82.957333pt;}
.y12e{bottom:83.130667pt;}
.y17a{bottom:90.966667pt;}
.ye8{bottom:91.030667pt;}
.yac{bottom:91.045333pt;}
.ydd{bottom:91.060000pt;}
.y1d{bottom:91.280000pt;}
.y71{bottom:95.013333pt;}
.y19e{bottom:95.160000pt;}
.y80{bottom:95.336000pt;}
.y107{bottom:95.397333pt;}
.y138{bottom:95.629333pt;}
.y12d{bottom:95.802667pt;}
.y15f{bottom:98.701333pt;}
.yb5{bottom:106.193333pt;}
.yce{bottom:106.220000pt;}
.y179{bottom:106.293333pt;}
.y15c{bottom:106.326667pt;}
.ye7{bottom:106.357333pt;}
.yab{bottom:106.372000pt;}
.ydc{bottom:106.386667pt;}
.y1c{bottom:106.606667pt;}
.y7f{bottom:108.008000pt;}
.y106{bottom:108.069333pt;}
.y137{bottom:108.301333pt;}
.y12c{bottom:108.474667pt;}
.y7e{bottom:120.680000pt;}
.y105{bottom:120.741333pt;}
.y136{bottom:120.973333pt;}
.y12b{bottom:121.146667pt;}
.yb4{bottom:121.520000pt;}
.ycd{bottom:121.546667pt;}
.y178{bottom:121.620000pt;}
.y15b{bottom:121.653333pt;}
.y49{bottom:121.666667pt;}
.ye6{bottom:121.684000pt;}
.yaa{bottom:121.698667pt;}
.ydb{bottom:121.713333pt;}
.y1b{bottom:121.933333pt;}
.y1a3{bottom:129.354667pt;}
.y104{bottom:133.413333pt;}
.y70{bottom:136.820000pt;}
.yb3{bottom:136.846667pt;}
.ycc{bottom:136.873333pt;}
.y19d{bottom:136.893333pt;}
.y177{bottom:136.946667pt;}
.y15a{bottom:136.980000pt;}
.y48{bottom:136.993333pt;}
.ye5{bottom:137.010667pt;}
.ya9{bottom:137.025333pt;}
.yda{bottom:137.040000pt;}
.y1a{bottom:137.260000pt;}
.y6f{bottom:152.146667pt;}
.yb2{bottom:152.173333pt;}
.ycb{bottom:152.200000pt;}
.y19c{bottom:152.220000pt;}
.y176{bottom:152.273333pt;}
.y159{bottom:152.306667pt;}
.y47{bottom:152.320000pt;}
.ye4{bottom:152.337333pt;}
.ya8{bottom:152.352000pt;}
.yd9{bottom:152.366667pt;}
.y19{bottom:152.586667pt;}
.y6e{bottom:167.473333pt;}
.y12a{bottom:167.493333pt;}
.y7d{bottom:167.500000pt;}
.y135{bottom:167.513333pt;}
.yca{bottom:167.526667pt;}
.y19b{bottom:167.546667pt;}
.y175{bottom:167.600000pt;}
.y158{bottom:167.633333pt;}
.y46{bottom:167.646667pt;}
.ye3{bottom:167.664000pt;}
.ya7{bottom:167.678667pt;}
.yd8{bottom:167.693333pt;}
.y18{bottom:167.913333pt;}
.y6d{bottom:182.800000pt;}
.y103{bottom:182.806667pt;}
.y129{bottom:182.820000pt;}
.y7c{bottom:182.826667pt;}
.y134{bottom:182.840000pt;}
.yc9{bottom:182.853333pt;}
.y19a{bottom:182.873333pt;}
.y174{bottom:182.926667pt;}
.y157{bottom:182.960000pt;}
.y45{bottom:182.973333pt;}
.ye2{bottom:182.990667pt;}
.ya6{bottom:183.005333pt;}
.yd7{bottom:183.020000pt;}
.y17{bottom:183.240000pt;}
.y6c{bottom:198.126667pt;}
.y102{bottom:198.133333pt;}
.y128{bottom:198.146667pt;}
.y7b{bottom:198.153333pt;}
.y133{bottom:198.166667pt;}
.yc8{bottom:198.180000pt;}
.y199{bottom:198.200000pt;}
.y173{bottom:198.253333pt;}
.y156{bottom:198.286667pt;}
.y44{bottom:198.300000pt;}
.ya5{bottom:198.332000pt;}
.yd6{bottom:198.346667pt;}
.y16{bottom:198.566667pt;}
.ye1{bottom:205.988000pt;}
.y101{bottom:213.460000pt;}
.y127{bottom:213.473333pt;}
.y7a{bottom:213.480000pt;}
.y6b{bottom:213.493333pt;}
.yc7{bottom:213.506667pt;}
.y198{bottom:213.526667pt;}
.y172{bottom:213.580000pt;}
.y155{bottom:213.613333pt;}
.y43{bottom:213.626667pt;}
.ya4{bottom:213.658667pt;}
.yd5{bottom:213.673333pt;}
.y15{bottom:213.893333pt;}
.y126{bottom:228.800000pt;}
.y79{bottom:228.806667pt;}
.y6a{bottom:228.820000pt;}
.yc6{bottom:228.833333pt;}
.y197{bottom:228.853333pt;}
.y100{bottom:228.886667pt;}
.y171{bottom:228.906667pt;}
.y154{bottom:228.940000pt;}
.y42{bottom:228.953333pt;}
.ya3{bottom:228.985333pt;}
.yd4{bottom:229.000000pt;}
.y14{bottom:229.220000pt;}
.y125{bottom:244.126667pt;}
.y78{bottom:244.133333pt;}
.y69{bottom:244.146667pt;}
.yc5{bottom:244.160000pt;}
.y196{bottom:244.180000pt;}
.yff{bottom:244.213333pt;}
.y170{bottom:244.233333pt;}
.y153{bottom:244.266667pt;}
.y41{bottom:244.280000pt;}
.ya2{bottom:244.312000pt;}
.yd3{bottom:244.326667pt;}
.y13{bottom:244.546667pt;}
.y77{bottom:259.460000pt;}
.y68{bottom:259.473333pt;}
.yc4{bottom:259.486667pt;}
.y195{bottom:259.506667pt;}
.yfe{bottom:259.540000pt;}
.y124{bottom:259.553333pt;}
.y16f{bottom:259.560000pt;}
.y152{bottom:259.593333pt;}
.y40{bottom:259.606667pt;}
.ya1{bottom:259.638667pt;}
.yd2{bottom:259.653333pt;}
.y12{bottom:259.873333pt;}
.y67{bottom:274.800000pt;}
.yc3{bottom:274.813333pt;}
.y194{bottom:274.833333pt;}
.yfd{bottom:274.866667pt;}
.y123{bottom:274.880000pt;}
.y16e{bottom:274.886667pt;}
.y151{bottom:274.920000pt;}
.y3f{bottom:274.933333pt;}
.ya0{bottom:274.965333pt;}
.yb1{bottom:274.980000pt;}
.y11{bottom:275.200000pt;}
.y66{bottom:290.126667pt;}
.yc2{bottom:290.140000pt;}
.y193{bottom:290.160000pt;}
.yfc{bottom:290.193333pt;}
.y122{bottom:290.206667pt;}
.y16d{bottom:290.213333pt;}
.y150{bottom:290.246667pt;}
.y3e{bottom:290.260000pt;}
.y9f{bottom:290.292000pt;}
.yb0{bottom:290.306667pt;}
.y10{bottom:290.526667pt;}
.y132{bottom:305.453333pt;}
.yc1{bottom:305.466667pt;}
.y192{bottom:305.486667pt;}
.yfb{bottom:305.520000pt;}
.y121{bottom:305.533333pt;}
.y16c{bottom:305.540000pt;}
.y14f{bottom:305.573333pt;}
.y3d{bottom:305.586667pt;}
.y9e{bottom:305.618667pt;}
.y65{bottom:305.633333pt;}
.yf{bottom:305.853333pt;}
.yc0{bottom:320.793333pt;}
.y191{bottom:320.813333pt;}
.yfa{bottom:320.846667pt;}
.y120{bottom:320.860000pt;}
.y16b{bottom:320.866667pt;}
.y14e{bottom:320.900000pt;}
.y3c{bottom:320.913333pt;}
.y9d{bottom:320.945333pt;}
.y64{bottom:320.960000pt;}
.ye{bottom:321.180000pt;}
.ybf{bottom:336.120000pt;}
.y190{bottom:336.140000pt;}
.yf9{bottom:336.173333pt;}
.y11f{bottom:336.186667pt;}
.y16a{bottom:336.193333pt;}
.y14d{bottom:336.226667pt;}
.y3b{bottom:336.240000pt;}
.y9c{bottom:336.272000pt;}
.y63{bottom:336.286667pt;}
.yd{bottom:336.506667pt;}
.y18f{bottom:351.466667pt;}
.yf8{bottom:351.500000pt;}
.y11e{bottom:351.513333pt;}
.y169{bottom:351.520000pt;}
.y14c{bottom:351.553333pt;}
.y3a{bottom:351.566667pt;}
.ybe{bottom:351.584000pt;}
.y9b{bottom:351.598667pt;}
.y62{bottom:351.613333pt;}
.yc{bottom:351.833333pt;}
.y18e{bottom:366.793333pt;}
.yf7{bottom:366.826667pt;}
.y11d{bottom:366.840000pt;}
.y168{bottom:366.846667pt;}
.y14b{bottom:366.880000pt;}
.y39{bottom:366.893333pt;}
.ybd{bottom:366.910667pt;}
.y9a{bottom:366.925333pt;}
.y61{bottom:366.940000pt;}
.yb{bottom:367.160000pt;}
.y18d{bottom:382.133333pt;}
.yf6{bottom:382.153333pt;}
.y11c{bottom:382.166667pt;}
.y167{bottom:382.173333pt;}
.y14a{bottom:382.206667pt;}
.y38{bottom:382.220000pt;}
.ybc{bottom:382.237333pt;}
.y99{bottom:382.252000pt;}
.y60{bottom:382.266667pt;}
.ya{bottom:382.486667pt;}
.y18c{bottom:397.460000pt;}
.yf5{bottom:397.480000pt;}
.y11b{bottom:397.493333pt;}
.y166{bottom:397.500000pt;}
.y149{bottom:397.533333pt;}
.y37{bottom:397.546667pt;}
.ybb{bottom:397.564000pt;}
.y98{bottom:397.578667pt;}
.y5f{bottom:397.593333pt;}
.y9{bottom:397.813333pt;}
.y18b{bottom:412.786667pt;}
.yf4{bottom:412.806667pt;}
.y11a{bottom:412.820000pt;}
.y165{bottom:412.826667pt;}
.y148{bottom:412.860000pt;}
.y36{bottom:412.873333pt;}
.yba{bottom:412.890667pt;}
.y97{bottom:412.905333pt;}
.y5e{bottom:412.920000pt;}
.y8{bottom:413.140000pt;}
.yf3{bottom:428.133333pt;}
.y119{bottom:428.146667pt;}
.y164{bottom:428.153333pt;}
.y147{bottom:428.186667pt;}
.y35{bottom:428.200000pt;}
.y18a{bottom:428.217333pt;}
.y96{bottom:428.232000pt;}
.y5d{bottom:428.246667pt;}
.y7{bottom:428.466667pt;}
.yb9{bottom:435.888000pt;}
.yf2{bottom:443.460000pt;}
.y118{bottom:443.473333pt;}
.y163{bottom:443.480000pt;}
.y146{bottom:443.513333pt;}
.y34{bottom:443.526667pt;}
.y189{bottom:443.544000pt;}
.y95{bottom:443.558667pt;}
.y5c{bottom:443.573333pt;}
.y6{bottom:443.793333pt;}
.y117{bottom:458.800000pt;}
.y162{bottom:458.806667pt;}
.yf1{bottom:458.826667pt;}
.y145{bottom:458.840000pt;}
.y33{bottom:458.853333pt;}
.y188{bottom:458.870667pt;}
.y94{bottom:458.885333pt;}
.y5b{bottom:458.900000pt;}
.y5{bottom:459.120000pt;}
.y116{bottom:474.126667pt;}
.y161{bottom:474.133333pt;}
.yf0{bottom:474.153333pt;}
.y144{bottom:474.166667pt;}
.y32{bottom:474.180000pt;}
.y187{bottom:474.197333pt;}
.y93{bottom:474.212000pt;}
.y5a{bottom:474.226667pt;}
.y4{bottom:474.446667pt;}
.y115{bottom:489.453333pt;}
.y160{bottom:489.460000pt;}
.yef{bottom:489.480000pt;}
.y143{bottom:489.493333pt;}
.y31{bottom:489.506667pt;}
.y186{bottom:489.524000pt;}
.y92{bottom:489.538667pt;}
.y59{bottom:489.553333pt;}
.y3{bottom:489.773333pt;}
.y114{bottom:504.793333pt;}
.yee{bottom:504.806667pt;}
.y142{bottom:504.820000pt;}
.y30{bottom:504.833333pt;}
.y185{bottom:504.850667pt;}
.y91{bottom:504.865333pt;}
.y58{bottom:504.880000pt;}
.y2{bottom:505.100000pt;}
.yed{bottom:520.133333pt;}
.y141{bottom:520.146667pt;}
.y113{bottom:520.157333pt;}
.y2f{bottom:520.160000pt;}
.y184{bottom:520.177333pt;}
.y90{bottom:520.192000pt;}
.y57{bottom:520.206667pt;}
.y1{bottom:520.426667pt;}
.yec{bottom:535.460000pt;}
.y140{bottom:535.473333pt;}
.y112{bottom:535.484000pt;}
.y2e{bottom:535.486667pt;}
.y183{bottom:535.504000pt;}
.y8f{bottom:535.518667pt;}
.y56{bottom:535.533333pt;}
.y13f{bottom:550.800000pt;}
.y111{bottom:550.810667pt;}
.y2d{bottom:550.813333pt;}
.y182{bottom:550.830667pt;}
.y8e{bottom:550.845333pt;}
.y55{bottom:550.860000pt;}
.y13e{bottom:566.126667pt;}
.y110{bottom:566.137333pt;}
.y2c{bottom:566.140000pt;}
.y181{bottom:566.157333pt;}
.y8d{bottom:566.172000pt;}
.y54{bottom:566.186667pt;}
.y13d{bottom:581.453333pt;}
.y2b{bottom:581.466667pt;}
.y180{bottom:581.484000pt;}
.y8c{bottom:581.498667pt;}
.y53{bottom:581.513333pt;}
.y10f{bottom:589.134667pt;}
.y2a{bottom:596.793333pt;}
.y17f{bottom:596.810667pt;}
.y8b{bottom:596.825333pt;}
.y52{bottom:596.840000pt;}
.y76{bottom:612.120000pt;}
.y29{bottom:612.122667pt;}
.y1a4{bottom:612.137333pt;}
.y8a{bottom:612.152000pt;}
.y51{bottom:612.166667pt;}
.y17e{bottom:619.808000pt;}
.y10e{bottom:627.473333pt;}
.y89{bottom:627.478667pt;}
.y50{bottom:627.493333pt;}
.y28{bottom:635.120000pt;}
.y10d{bottom:642.800000pt;}
.y88{bottom:642.805333pt;}
.y4f{bottom:642.820000pt;}
.y10c{bottom:658.126667pt;}
.y87{bottom:658.132000pt;}
.y4e{bottom:658.146667pt;}
.y86{bottom:673.458667pt;}
.y27{bottom:673.473333pt;}
.y85{bottom:688.785333pt;}
.y26{bottom:688.800000pt;}
.y25{bottom:704.126667pt;}
.y22{bottom:716.093333pt;}
.y24{bottom:719.453333pt;}
.y21{bottom:761.426667pt;}
.y23{bottom:929.333333pt;}
.h3{height:36.949333pt;}
.h8{height:40.848000pt;}
.h5{height:41.854167pt;}
.h2{height:49.925333pt;}
.h7{height:50.805333pt;}
.hc{height:53.534400pt;}
.h9{height:53.587733pt;}
.h12{height:53.614400pt;}
.hb{height:53.721067pt;}
.hd{height:53.785067pt;}
.hf{height:53.907733pt;}
.h15{height:53.918400pt;}
.he{height:54.014400pt;}
.h13{height:54.067733pt;}
.ha{height:54.147733pt;}
.h14{height:54.153067pt;}
.h10{height:54.158400pt;}
.h6{height:54.227733pt;}
.h16{height:54.254400pt;}
.h11{height:54.281067pt;}
.h4{height:72.618667pt;}
.h1{height:790.666667pt;}
.h0{height:793.333333pt;}
.w1{width:564.000000pt;}
.w0{width:566.666667pt;}
.x4{left:-57.333333pt;}
.x0{left:0.000000pt;}
.x1{left:63.733333pt;}
.x5{left:69.733333pt;}
.x2{left:83.738667pt;}
.x7{left:316.582667pt;}
.x6{left:374.941333pt;}
.x3{left:389.786667pt;}
}




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