
    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_8674838e03e56a1197c995d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.744000;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_50eefa6198aa3f2da212c4b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_64fe1a7cef6fce1ba3844b37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_eeb0e3afa42cf0487589dbbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_8587df1559dc646657c6173f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bfa2accfb6e6aa9ad0edbd27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bb1c2343242706313c33b620.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.745000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c1137078ce66cb7c22dd0ff4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c83980ef5bd2613bf09b5982.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3cad64ec3f561188304aa078.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:21.990000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.900000px;}
.ls2{letter-spacing:15.000000px;}
.ls0{letter-spacing:78.204000px;}
.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;}
}
.wsd{word-spacing:-16.500000px;}
.ws43{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws6f{word-spacing:-9.619500px;}
.wsb2{word-spacing:-5.400000px;}
.ws3b{word-spacing:-3.300000px;}
.ws16{word-spacing:-3.168000px;}
.ws66{word-spacing:-3.000000px;}
.ws13{word-spacing:-2.970000px;}
.wsb5{word-spacing:-2.940000px;}
.ws47{word-spacing:-2.904000px;}
.wsaf{word-spacing:-2.820000px;}
.ws2a{word-spacing:-2.640000px;}
.ws2e{word-spacing:-2.580000px;}
.ws75{word-spacing:-2.574000px;}
.ws4f{word-spacing:-2.520000px;}
.wsaa{word-spacing:-2.508000px;}
.wsae{word-spacing:-2.460000px;}
.ws90{word-spacing:-2.376000px;}
.ws29{word-spacing:-2.340000px;}
.ws8c{word-spacing:-2.244000px;}
.ws23{word-spacing:-2.220000px;}
.ws61{word-spacing:-2.178000px;}
.wsb7{word-spacing:-2.160000px;}
.ws62{word-spacing:-2.112000px;}
.wsa8{word-spacing:-2.100000px;}
.ws17{word-spacing:-2.046000px;}
.ws7d{word-spacing:-1.848000px;}
.ws2d{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.782000px;}
.ws9a{word-spacing:-1.584000px;}
.ws78{word-spacing:-1.560000px;}
.ws41{word-spacing:-1.518000px;}
.ws1d{word-spacing:-1.500000px;}
.ws6e{word-spacing:-1.380000px;}
.wsf{word-spacing:-1.320000px;}
.ws95{word-spacing:-1.260000px;}
.ws48{word-spacing:-1.254000px;}
.wsa0{word-spacing:-1.188000px;}
.ws9b{word-spacing:-1.122000px;}
.ws7e{word-spacing:-1.104000px;}
.ws2f{word-spacing:-1.080000px;}
.ws1a{word-spacing:-0.990000px;}
.ws4c{word-spacing:-0.900000px;}
.ws63{word-spacing:-0.858000px;}
.ws7a{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.780000px;}
.ws4a{word-spacing:-0.726000px;}
.ws80{word-spacing:-0.672000px;}
.ws11{word-spacing:-0.594000px;}
.ws3a{word-spacing:-0.528000px;}
.ws24{word-spacing:-0.480000px;}
.wsb0{word-spacing:-0.420000px;}
.ws2b{word-spacing:-0.396000px;}
.ws52{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.264000px;}
.ws5b{word-spacing:-0.198000px;}
.ws93{word-spacing:-0.180000px;}
.ws8d{word-spacing:-0.132000px;}
.ws4{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsb3{word-spacing:0.060000px;}
.wse{word-spacing:0.066000px;}
.ws70{word-spacing:0.120000px;}
.ws6a{word-spacing:0.180000px;}
.ws4d{word-spacing:0.240000px;}
.ws3c{word-spacing:0.264000px;}
.ws38{word-spacing:0.330000px;}
.ws65{word-spacing:0.360000px;}
.ws5e{word-spacing:0.396000px;}
.ws9e{word-spacing:0.420000px;}
.ws5a{word-spacing:0.462000px;}
.ws26{word-spacing:0.540000px;}
.ws22{word-spacing:0.594000px;}
.ws25{word-spacing:0.660000px;}
.ws8e{word-spacing:0.726000px;}
.ws5d{word-spacing:0.780000px;}
.ws34{word-spacing:0.792000px;}
.ws2c{word-spacing:0.840000px;}
.wsa7{word-spacing:0.900000px;}
.ws1f{word-spacing:0.924000px;}
.wsb8{word-spacing:0.960000px;}
.ws83{word-spacing:1.122000px;}
.wsa9{word-spacing:1.140000px;}
.wsa{word-spacing:1.188000px;}
.ws76{word-spacing:1.254000px;}
.ws19{word-spacing:1.320000px;}
.ws7f{word-spacing:1.344000px;}
.ws96{word-spacing:1.380000px;}
.ws81{word-spacing:1.392000px;}
.wsa5{word-spacing:1.440000px;}
.ws37{word-spacing:1.452000px;}
.ws56{word-spacing:1.584000px;}
.ws58{word-spacing:1.650000px;}
.ws51{word-spacing:1.680000px;}
.ws82{word-spacing:1.716000px;}
.ws9{word-spacing:1.728000px;}
.ws5f{word-spacing:1.782000px;}
.wsac{word-spacing:1.914000px;}
.wsa2{word-spacing:1.980000px;}
.ws32{word-spacing:2.046000px;}
.ws5c{word-spacing:2.100000px;}
.ws3f{word-spacing:2.178000px;}
.wsab{word-spacing:2.244000px;}
.ws68{word-spacing:2.280000px;}
.ws57{word-spacing:2.310000px;}
.ws85{word-spacing:2.340000px;}
.ws55{word-spacing:2.376000px;}
.ws1c{word-spacing:2.400000px;}
.wsad{word-spacing:2.508000px;}
.ws45{word-spacing:2.574000px;}
.ws6{word-spacing:2.592000px;}
.ws71{word-spacing:2.640000px;}
.ws3{word-spacing:2.646000px;}
.ws97{word-spacing:2.700000px;}
.ws3d{word-spacing:2.706000px;}
.ws87{word-spacing:2.772000px;}
.ws7c{word-spacing:2.820000px;}
.ws10{word-spacing:2.838000px;}
.ws28{word-spacing:2.880000px;}
.ws84{word-spacing:2.940000px;}
.ws15{word-spacing:2.970000px;}
.ws67{word-spacing:3.000000px;}
.ws69{word-spacing:3.060000px;}
.wsc{word-spacing:3.078000px;}
.ws1e{word-spacing:3.102000px;}
.ws98{word-spacing:3.120000px;}
.ws7{word-spacing:3.132000px;}
.ws49{word-spacing:3.168000px;}
.ws91{word-spacing:3.234000px;}
.ws9f{word-spacing:3.300000px;}
.ws9c{word-spacing:3.432000px;}
.ws64{word-spacing:3.564000px;}
.ws94{word-spacing:3.600000px;}
.ws9d{word-spacing:3.720000px;}
.ws39{word-spacing:3.828000px;}
.ws4e{word-spacing:3.900000px;}
.ws6b{word-spacing:4.080000px;}
.ws77{word-spacing:4.092000px;}
.ws50{word-spacing:4.140000px;}
.wsb1{word-spacing:4.200000px;}
.ws59{word-spacing:4.224000px;}
.ws4b{word-spacing:4.260000px;}
.ws27{word-spacing:4.320000px;}
.ws20{word-spacing:4.356000px;}
.ws8b{word-spacing:4.422000px;}
.ws3e{word-spacing:4.686000px;}
.ws74{word-spacing:4.752000px;}
.wsa4{word-spacing:4.920000px;}
.ws53{word-spacing:5.148000px;}
.ws54{word-spacing:5.214000px;}
.ws60{word-spacing:5.280000px;}
.ws6d{word-spacing:5.340000px;}
.wsa6{word-spacing:5.400000px;}
.ws46{word-spacing:5.412000px;}
.ws7b{word-spacing:5.460000px;}
.wsa3{word-spacing:5.520000px;}
.ws92{word-spacing:5.544000px;}
.ws42{word-spacing:5.610000px;}
.wsb4{word-spacing:5.640000px;}
.ws72{word-spacing:5.676000px;}
.ws79{word-spacing:5.700000px;}
.wsa1{word-spacing:5.760000px;}
.ws8f{word-spacing:5.808000px;}
.ws8a{word-spacing:6.270000px;}
.ws8{word-spacing:6.408000px;}
.ws89{word-spacing:6.468000px;}
.ws14{word-spacing:6.534000px;}
.ws1b{word-spacing:6.660000px;}
.ws73{word-spacing:6.930000px;}
.ws88{word-spacing:6.996000px;}
.wsb{word-spacing:7.074000px;}
.ws18{word-spacing:7.194000px;}
.ws31{word-spacing:7.260000px;}
.ws30{word-spacing:7.458000px;}
.wsb6{word-spacing:7.500000px;}
.ws40{word-spacing:7.590000px;}
.ws44{word-spacing:7.656000px;}
.ws6c{word-spacing:7.920000px;}
.ws99{word-spacing:7.986000px;}
.ws36{word-spacing:8.844000px;}
.ws2{word-spacing:8.856000px;}
.ws21{word-spacing:9.372000px;}
.ws5{word-spacing:10.440000px;}
.ws35{word-spacing:11.682000px;}
._b{margin-left:-2211.048000px;}
._e{margin-left:-8.270400px;}
._f{margin-left:-6.593400px;}
._1{margin-left:-5.460000px;}
._5{margin-left:-3.834000px;}
._3{margin-left:-2.343600px;}
._6{margin-left:-1.288800px;}
._8{width:1.328400px;}
._7{width:2.592000px;}
._c{width:3.737400px;}
._4{width:5.167800px;}
._9{width:7.074000px;}
._2{width:8.856000px;}
._11{width:19.008000px;}
._10{width:22.704000px;}
._12{width:30.030000px;}
._a{width:64.212000px;}
._d{width:1281.126000px;}
._0{width:1599.276000px;}
.fc1{color:rgb(248,248,248);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs3{font-size:34.980000px;}
.fs9{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.944050px;}
.y7e{bottom:74.168850px;}
.y13d{bottom:74.396700px;}
.yf7{bottom:74.409450px;}
.y113{bottom:74.413800px;}
.y50{bottom:74.415000px;}
.ycc{bottom:74.425950px;}
.ya7{bottom:74.466300px;}
.y164{bottom:74.533200px;}
.y20{bottom:78.405450px;}
.yf6{bottom:88.809450px;}
.y7d{bottom:92.252850px;}
.y13c{bottom:92.497200px;}
.y4f{bottom:92.499000px;}
.y112{bottom:92.503800px;}
.ycb{bottom:92.515950px;}
.ya6{bottom:92.550300px;}
.y163{bottom:92.617200px;}
.y1f{bottom:92.805450px;}
.yf5{bottom:103.209450px;}
.y1e{bottom:107.205450px;}
.y7c{bottom:110.336850px;}
.y4e{bottom:110.583000px;}
.y111{bottom:110.593800px;}
.y13b{bottom:110.597700px;}
.yca{bottom:110.605950px;}
.ya5{bottom:110.634300px;}
.y162{bottom:110.701200px;}
.yf4{bottom:117.609450px;}
.y7b{bottom:128.420850px;}
.y110{bottom:128.683800px;}
.yc9{bottom:128.695950px;}
.y13a{bottom:128.698200px;}
.ya4{bottom:128.718300px;}
.y161{bottom:128.785200px;}
.yf3{bottom:132.009450px;}
.y18f{bottom:132.400200px;}
.yf2{bottom:146.409450px;}
.y7a{bottom:146.504850px;}
.y4d{bottom:146.724000px;}
.y10f{bottom:146.773800px;}
.yc8{bottom:146.785950px;}
.y139{bottom:146.798700px;}
.ya3{bottom:146.802300px;}
.y160{bottom:146.869200px;}
.y18e{bottom:150.400200px;}
.yf1{bottom:160.809450px;}
.y79{bottom:164.588850px;}
.y4c{bottom:164.814000px;}
.yc7{bottom:164.875950px;}
.ya2{bottom:164.886300px;}
.y138{bottom:164.899200px;}
.y15f{bottom:164.953200px;}
.y18d{bottom:168.400200px;}
.y1d{bottom:169.867950px;}
.yf0{bottom:179.205450px;}
.y78{bottom:182.672850px;}
.y4b{bottom:182.904000px;}
.yc6{bottom:182.965950px;}
.ya1{bottom:182.970300px;}
.y10e{bottom:182.994600px;}
.y137{bottom:182.999700px;}
.y15e{bottom:183.037200px;}
.y18c{bottom:186.400200px;}
.y1c{bottom:189.672450px;}
.y77{bottom:200.756850px;}
.y4a{bottom:200.994000px;}
.ya0{bottom:201.054300px;}
.yc5{bottom:201.055950px;}
.y10d{bottom:201.078600px;}
.y15d{bottom:201.121200px;}
.y18b{bottom:204.400200px;}
.y76{bottom:218.840850px;}
.y49{bottom:219.084000px;}
.y9f{bottom:219.138300px;}
.yc4{bottom:219.145950px;}
.y10c{bottom:219.162600px;}
.y136{bottom:219.163200px;}
.y15c{bottom:219.205200px;}
.y1b{bottom:220.870950px;}
.yef{bottom:221.231250px;}
.y18a{bottom:222.400200px;}
.y1a{bottom:235.869450px;}
.y75{bottom:236.924850px;}
.y48{bottom:237.174000px;}
.yc3{bottom:237.235950px;}
.y10b{bottom:237.246600px;}
.y135{bottom:237.268200px;}
.y15b{bottom:237.289200px;}
.yee{bottom:239.232750px;}
.y189{bottom:240.400200px;}
.y19{bottom:250.867950px;}
.y74{bottom:255.008850px;}
.y47{bottom:255.264000px;}
.yc2{bottom:255.325950px;}
.y10a{bottom:255.330600px;}
.y9e{bottom:255.333600px;}
.y134{bottom:255.373200px;}
.y188{bottom:258.400200px;}
.y73{bottom:273.092850px;}
.y46{bottom:273.354000px;}
.y109{bottom:273.414600px;}
.yc1{bottom:273.415950px;}
.y9d{bottom:273.423600px;}
.y15a{bottom:273.457200px;}
.y133{bottom:273.478200px;}
.yed{bottom:275.232750px;}
.y187{bottom:276.400200px;}
.y72{bottom:291.176850px;}
.y45{bottom:291.444000px;}
.yc0{bottom:291.505950px;}
.y9c{bottom:291.513600px;}
.y159{bottom:291.541200px;}
.y132{bottom:291.583200px;}
.yec{bottom:293.232750px;}
.y186{bottom:294.400200px;}
.y18{bottom:295.863450px;}
.y71{bottom:309.260850px;}
.y108{bottom:309.368100px;}
.y44{bottom:309.534000px;}
.ybf{bottom:309.595950px;}
.y9b{bottom:309.603600px;}
.y158{bottom:309.625200px;}
.y131{bottom:309.688200px;}
.y17{bottom:310.861950px;}
.yeb{bottom:311.232750px;}
.y185{bottom:312.400200px;}
.y16{bottom:325.860450px;}
.y70{bottom:327.344850px;}
.y107{bottom:327.573900px;}
.y43{bottom:327.624000px;}
.ybe{bottom:327.685950px;}
.y9a{bottom:327.693600px;}
.y157{bottom:327.709200px;}
.yea{bottom:329.232750px;}
.y184{bottom:330.400200px;}
.y15{bottom:340.858950px;}
.y6f{bottom:345.428850px;}
.ybd{bottom:345.775950px;}
.y99{bottom:345.783600px;}
.y156{bottom:345.793200px;}
.y130{bottom:345.880650px;}
.ye9{bottom:347.232750px;}
.y183{bottom:348.400200px;}
.y14{bottom:355.857450px;}
.y6e{bottom:363.512850px;}
.y42{bottom:363.811350px;}
.y98{bottom:363.873600px;}
.y155{bottom:363.877200px;}
.y12f{bottom:363.981150px;}
.ye8{bottom:365.232750px;}
.y182{bottom:366.400200px;}
.y106{bottom:381.380400px;}
.y6d{bottom:381.596850px;}
.y41{bottom:381.895350px;}
.y154{bottom:381.961200px;}
.y97{bottom:381.963600px;}
.ybc{bottom:381.975300px;}
.y12e{bottom:382.081650px;}
.ye7{bottom:383.232750px;}
.y181{bottom:384.400200px;}
.y13{bottom:385.857450px;}
.y105{bottom:399.464400px;}
.y6c{bottom:399.680850px;}
.y40{bottom:399.979350px;}
.y153{bottom:400.045200px;}
.y96{bottom:400.053600px;}
.ybb{bottom:400.059300px;}
.y180{bottom:402.400200px;}
.y12{bottom:407.457450px;}
.y104{bottom:417.548400px;}
.y6b{bottom:417.764850px;}
.y3f{bottom:418.063350px;}
.yba{bottom:418.143300px;}
.y95{bottom:418.143600px;}
.y12d{bottom:418.225350px;}
.ye6{bottom:419.204250px;}
.y17f{bottom:420.400200px;}
.y103{bottom:435.632400px;}
.y6a{bottom:435.848850px;}
.y152{bottom:436.056600px;}
.y3e{bottom:436.147350px;}
.yb9{bottom:436.227300px;}
.y94{bottom:436.233600px;}
.y12c{bottom:436.330350px;}
.ye5{bottom:437.205750px;}
.y17e{bottom:438.400200px;}
.y102{bottom:453.716400px;}
.y69{bottom:453.932850px;}
.y3d{bottom:454.231350px;}
.y93{bottom:454.323600px;}
.y12b{bottom:454.435350px;}
.ye4{bottom:455.207250px;}
.y17d{bottom:456.400200px;}
.y11{bottom:459.063450px;}
.y101{bottom:471.800400px;}
.y68{bottom:472.016850px;}
.yb8{bottom:472.245900px;}
.y92{bottom:472.413600px;}
.y12a{bottom:472.540350px;}
.ye3{bottom:473.208750px;}
.y10{bottom:474.061950px;}
.y17c{bottom:474.400200px;}
.yf{bottom:489.060450px;}
.y151{bottom:489.863100px;}
.y100{bottom:489.884400px;}
.y67{bottom:490.100850px;}
.y3c{bottom:490.391850px;}
.y129{bottom:490.645350px;}
.ye2{bottom:491.210250px;}
.y17b{bottom:492.400200px;}
.ye{bottom:504.058950px;}
.y150{bottom:507.947100px;}
.yff{bottom:507.968400px;}
.y66{bottom:508.184850px;}
.y3b{bottom:508.481850px;}
.y91{bottom:508.612950px;}
.y128{bottom:508.750350px;}
.y17a{bottom:510.400200px;}
.yd{bottom:519.057450px;}
.y14f{bottom:526.031100px;}
.yb7{bottom:526.052400px;}
.y65{bottom:526.268850px;}
.y3a{bottom:526.571850px;}
.y90{bottom:526.696950px;}
.y127{bottom:526.855350px;}
.y179{bottom:528.400200px;}
.ye1{bottom:529.011750px;}
.y14e{bottom:544.115100px;}
.yb6{bottom:544.136400px;}
.y64{bottom:544.352850px;}
.y39{bottom:544.661850px;}
.y8f{bottom:544.780950px;}
.y126{bottom:544.960350px;}
.y178{bottom:546.400200px;}
.ye0{bottom:547.013250px;}
.yc{bottom:549.057450px;}
.y14d{bottom:562.199100px;}
.yb5{bottom:562.220400px;}
.y63{bottom:562.436850px;}
.y38{bottom:562.751850px;}
.y8e{bottom:562.864950px;}
.y125{bottom:563.065350px;}
.y177{bottom:564.400200px;}
.ydf{bottom:565.014750px;}
.yb{bottom:570.657450px;}
.y14c{bottom:580.283100px;}
.yb4{bottom:580.304400px;}
.y62{bottom:580.520850px;}
.y176{bottom:582.400200px;}
.yde{bottom:583.016250px;}
.y14b{bottom:598.367100px;}
.yb3{bottom:598.388400px;}
.y61{bottom:598.604850px;}
.y8d{bottom:598.926150px;}
.y37{bottom:598.977600px;}
.y124{bottom:599.236500px;}
.y175{bottom:600.400200px;}
.ydd{bottom:601.017750px;}
.y14a{bottom:616.451100px;}
.yb2{bottom:616.472400px;}
.y60{bottom:616.688850px;}
.y36{bottom:617.061600px;}
.y123{bottom:617.337000px;}
.y174{bottom:618.400200px;}
.ydc{bottom:619.019250px;}
.ya{bottom:622.264950px;}
.y149{bottom:634.535100px;}
.yb1{bottom:634.556400px;}
.y5f{bottom:634.772850px;}
.y35{bottom:635.145600px;}
.y122{bottom:635.437500px;}
.y173{bottom:636.400200px;}
.ydb{bottom:637.020750px;}
.y9{bottom:637.263450px;}
.y8{bottom:652.261950px;}
.yb0{bottom:652.640400px;}
.y8c{bottom:652.732650px;}
.y34{bottom:653.229600px;}
.y121{bottom:653.538000px;}
.y172{bottom:654.400200px;}
.yda{bottom:655.022250px;}
.y7{bottom:667.260450px;}
.yaf{bottom:670.724400px;}
.y148{bottom:670.728300px;}
.y8b{bottom:670.816650px;}
.y5e{bottom:670.939050px;}
.y33{bottom:671.313600px;}
.y120{bottom:671.638500px;}
.y171{bottom:672.400200px;}
.yd9{bottom:673.023750px;}
.y6{bottom:682.258950px;}
.yae{bottom:688.808400px;}
.y147{bottom:688.818300px;}
.y8a{bottom:688.900650px;}
.y5d{bottom:689.014050px;}
.y32{bottom:689.397600px;}
.y11f{bottom:689.739000px;}
.y170{bottom:690.400200px;}
.yd8{bottom:691.025250px;}
.y5{bottom:697.257450px;}
.y146{bottom:706.908300px;}
.y89{bottom:706.984650px;}
.y5c{bottom:707.089050px;}
.y31{bottom:707.481600px;}
.y11e{bottom:707.839500px;}
.y16f{bottom:708.400200px;}
.yd7{bottom:709.026750px;}
.yad{bottom:724.996050px;}
.yfe{bottom:724.997250px;}
.y145{bottom:724.998300px;}
.y88{bottom:725.068650px;}
.y5b{bottom:725.164050px;}
.y30{bottom:725.565600px;}
.y11d{bottom:725.940000px;}
.y16e{bottom:726.400200px;}
.y4{bottom:727.257450px;}
.yac{bottom:743.086050px;}
.yfd{bottom:743.087250px;}
.y144{bottom:743.088300px;}
.y87{bottom:743.152650px;}
.y5a{bottom:743.239050px;}
.y2f{bottom:743.649600px;}
.y11c{bottom:744.040500px;}
.y16d{bottom:744.400200px;}
.yd6{bottom:745.029750px;}
.yab{bottom:761.176050px;}
.yfc{bottom:761.177250px;}
.y143{bottom:761.178300px;}
.y86{bottom:761.236650px;}
.y59{bottom:761.314050px;}
.y2e{bottom:761.733600px;}
.y11b{bottom:762.141000px;}
.y16c{bottom:762.400200px;}
.yd5{bottom:763.031250px;}
.y3{bottom:769.857450px;}
.yaa{bottom:779.266050px;}
.yfb{bottom:779.267250px;}
.y142{bottom:779.268300px;}
.y85{bottom:779.320650px;}
.y58{bottom:779.389050px;}
.y2d{bottom:779.817600px;}
.y11a{bottom:780.241500px;}
.y16b{bottom:780.400200px;}
.yd4{bottom:781.029750px;}
.ya9{bottom:797.356050px;}
.yfa{bottom:797.357250px;}
.y141{bottom:797.358300px;}
.y84{bottom:797.404650px;}
.y57{bottom:797.464050px;}
.y2c{bottom:797.901600px;}
.y119{bottom:798.342000px;}
.y16a{bottom:798.400200px;}
.yd3{bottom:799.031250px;}
.y2{bottom:802.857450px;}
.ya8{bottom:815.446050px;}
.yf9{bottom:815.447250px;}
.y140{bottom:815.448300px;}
.y83{bottom:815.488650px;}
.y56{bottom:815.539050px;}
.y2b{bottom:815.985600px;}
.y169{bottom:816.400200px;}
.y118{bottom:816.442500px;}
.yd2{bottom:817.032750px;}
.yf8{bottom:833.537250px;}
.y13f{bottom:833.538300px;}
.y82{bottom:833.572650px;}
.y55{bottom:833.614050px;}
.y2a{bottom:834.069600px;}
.y168{bottom:834.400200px;}
.y13e{bottom:851.628300px;}
.y81{bottom:851.656650px;}
.y54{bottom:851.689050px;}
.y29{bottom:852.153600px;}
.y167{bottom:852.400200px;}
.y117{bottom:852.612750px;}
.yd1{bottom:853.032750px;}
.y23{bottom:865.983600px;}
.y80{bottom:869.740650px;}
.y53{bottom:869.764050px;}
.y28{bottom:870.237600px;}
.y166{bottom:870.400200px;}
.y116{bottom:870.717750px;}
.yd0{bottom:871.032750px;}
.y7f{bottom:887.824650px;}
.y27{bottom:888.321600px;}
.y165{bottom:888.400200px;}
.y115{bottom:888.822750px;}
.ycf{bottom:889.032750px;}
.y22{bottom:897.991500px;}
.y52{bottom:905.908650px;}
.y114{bottom:906.927750px;}
.yce{bottom:907.032750px;}
.y21{bottom:912.241500px;}
.y51{bottom:923.992650px;}
.y26{bottom:924.258600px;}
.ycd{bottom:925.032750px;}
.y24{bottom:945.503700px;}
.y25{bottom:963.070800px;}
.h9{height:26.133188px;}
.h14{height:33.351562px;}
.h5{height:36.852539px;}
.h7{height:37.520508px;}
.h2{height:38.724000px;}
.hf{height:41.689453px;}
.h13{height:42.117188px;}
.hb{height:44.256000px;}
.hc{height:45.181641px;}
.he{height:45.858398px;}
.h6{height:47.381836px;}
.h15{height:52.159284px;}
.h10{height:52.215684px;}
.h11{height:52.386084px;}
.h16{height:52.414884px;}
.h4{height:52.646484px;}
.ha{height:55.320000px;}
.hd{height:57.911133px;}
.h12{height:57.923133px;}
.h8{height:63.175781px;}
.h3{height:68.440430px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x2{left:93.543300px;}
.x6{left:106.299150px;}
.x7{left:127.544550px;}
.x5{left:148.818900px;}
.x4{left:422.841300px;}
.x3{left:554.632500px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:19.546667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.800000pt;}
.ls2{letter-spacing:13.333333pt;}
.ls0{letter-spacing:69.514667pt;}
.wsd{word-spacing:-14.666667pt;}
.ws43{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws6f{word-spacing:-8.550667pt;}
.wsb2{word-spacing:-4.800000pt;}
.ws3b{word-spacing:-2.933333pt;}
.ws16{word-spacing:-2.816000pt;}
.ws66{word-spacing:-2.666667pt;}
.ws13{word-spacing:-2.640000pt;}
.wsb5{word-spacing:-2.613333pt;}
.ws47{word-spacing:-2.581333pt;}
.wsaf{word-spacing:-2.506667pt;}
.ws2a{word-spacing:-2.346667pt;}
.ws2e{word-spacing:-2.293333pt;}
.ws75{word-spacing:-2.288000pt;}
.ws4f{word-spacing:-2.240000pt;}
.wsaa{word-spacing:-2.229333pt;}
.wsae{word-spacing:-2.186667pt;}
.ws90{word-spacing:-2.112000pt;}
.ws29{word-spacing:-2.080000pt;}
.ws8c{word-spacing:-1.994667pt;}
.ws23{word-spacing:-1.973333pt;}
.ws61{word-spacing:-1.936000pt;}
.wsb7{word-spacing:-1.920000pt;}
.ws62{word-spacing:-1.877333pt;}
.wsa8{word-spacing:-1.866667pt;}
.ws17{word-spacing:-1.818667pt;}
.ws7d{word-spacing:-1.642667pt;}
.ws2d{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.584000pt;}
.ws9a{word-spacing:-1.408000pt;}
.ws78{word-spacing:-1.386667pt;}
.ws41{word-spacing:-1.349333pt;}
.ws1d{word-spacing:-1.333333pt;}
.ws6e{word-spacing:-1.226667pt;}
.wsf{word-spacing:-1.173333pt;}
.ws95{word-spacing:-1.120000pt;}
.ws48{word-spacing:-1.114667pt;}
.wsa0{word-spacing:-1.056000pt;}
.ws9b{word-spacing:-0.997333pt;}
.ws7e{word-spacing:-0.981333pt;}
.ws2f{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.880000pt;}
.ws4c{word-spacing:-0.800000pt;}
.ws63{word-spacing:-0.762667pt;}
.ws7a{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.693333pt;}
.ws4a{word-spacing:-0.645333pt;}
.ws80{word-spacing:-0.597333pt;}
.ws11{word-spacing:-0.528000pt;}
.ws3a{word-spacing:-0.469333pt;}
.ws24{word-spacing:-0.426667pt;}
.wsb0{word-spacing:-0.373333pt;}
.ws2b{word-spacing:-0.352000pt;}
.ws52{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.234667pt;}
.ws5b{word-spacing:-0.176000pt;}
.ws93{word-spacing:-0.160000pt;}
.ws8d{word-spacing:-0.117333pt;}
.ws4{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.053333pt;}
.wse{word-spacing:0.058667pt;}
.ws70{word-spacing:0.106667pt;}
.ws6a{word-spacing:0.160000pt;}
.ws4d{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.234667pt;}
.ws38{word-spacing:0.293333pt;}
.ws65{word-spacing:0.320000pt;}
.ws5e{word-spacing:0.352000pt;}
.ws9e{word-spacing:0.373333pt;}
.ws5a{word-spacing:0.410667pt;}
.ws26{word-spacing:0.480000pt;}
.ws22{word-spacing:0.528000pt;}
.ws25{word-spacing:0.586667pt;}
.ws8e{word-spacing:0.645333pt;}
.ws5d{word-spacing:0.693333pt;}
.ws34{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.746667pt;}
.wsa7{word-spacing:0.800000pt;}
.ws1f{word-spacing:0.821333pt;}
.wsb8{word-spacing:0.853333pt;}
.ws83{word-spacing:0.997333pt;}
.wsa9{word-spacing:1.013333pt;}
.wsa{word-spacing:1.056000pt;}
.ws76{word-spacing:1.114667pt;}
.ws19{word-spacing:1.173333pt;}
.ws7f{word-spacing:1.194667pt;}
.ws96{word-spacing:1.226667pt;}
.ws81{word-spacing:1.237333pt;}
.wsa5{word-spacing:1.280000pt;}
.ws37{word-spacing:1.290667pt;}
.ws56{word-spacing:1.408000pt;}
.ws58{word-spacing:1.466667pt;}
.ws51{word-spacing:1.493333pt;}
.ws82{word-spacing:1.525333pt;}
.ws9{word-spacing:1.536000pt;}
.ws5f{word-spacing:1.584000pt;}
.wsac{word-spacing:1.701333pt;}
.wsa2{word-spacing:1.760000pt;}
.ws32{word-spacing:1.818667pt;}
.ws5c{word-spacing:1.866667pt;}
.ws3f{word-spacing:1.936000pt;}
.wsab{word-spacing:1.994667pt;}
.ws68{word-spacing:2.026667pt;}
.ws57{word-spacing:2.053333pt;}
.ws85{word-spacing:2.080000pt;}
.ws55{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.133333pt;}
.wsad{word-spacing:2.229333pt;}
.ws45{word-spacing:2.288000pt;}
.ws6{word-spacing:2.304000pt;}
.ws71{word-spacing:2.346667pt;}
.ws3{word-spacing:2.352000pt;}
.ws97{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.405333pt;}
.ws87{word-spacing:2.464000pt;}
.ws7c{word-spacing:2.506667pt;}
.ws10{word-spacing:2.522667pt;}
.ws28{word-spacing:2.560000pt;}
.ws84{word-spacing:2.613333pt;}
.ws15{word-spacing:2.640000pt;}
.ws67{word-spacing:2.666667pt;}
.ws69{word-spacing:2.720000pt;}
.wsc{word-spacing:2.736000pt;}
.ws1e{word-spacing:2.757333pt;}
.ws98{word-spacing:2.773333pt;}
.ws7{word-spacing:2.784000pt;}
.ws49{word-spacing:2.816000pt;}
.ws91{word-spacing:2.874667pt;}
.ws9f{word-spacing:2.933333pt;}
.ws9c{word-spacing:3.050667pt;}
.ws64{word-spacing:3.168000pt;}
.ws94{word-spacing:3.200000pt;}
.ws9d{word-spacing:3.306667pt;}
.ws39{word-spacing:3.402667pt;}
.ws4e{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.626667pt;}
.ws77{word-spacing:3.637333pt;}
.ws50{word-spacing:3.680000pt;}
.wsb1{word-spacing:3.733333pt;}
.ws59{word-spacing:3.754667pt;}
.ws4b{word-spacing:3.786667pt;}
.ws27{word-spacing:3.840000pt;}
.ws20{word-spacing:3.872000pt;}
.ws8b{word-spacing:3.930667pt;}
.ws3e{word-spacing:4.165333pt;}
.ws74{word-spacing:4.224000pt;}
.wsa4{word-spacing:4.373333pt;}
.ws53{word-spacing:4.576000pt;}
.ws54{word-spacing:4.634667pt;}
.ws60{word-spacing:4.693333pt;}
.ws6d{word-spacing:4.746667pt;}
.wsa6{word-spacing:4.800000pt;}
.ws46{word-spacing:4.810667pt;}
.ws7b{word-spacing:4.853333pt;}
.wsa3{word-spacing:4.906667pt;}
.ws92{word-spacing:4.928000pt;}
.ws42{word-spacing:4.986667pt;}
.wsb4{word-spacing:5.013333pt;}
.ws72{word-spacing:5.045333pt;}
.ws79{word-spacing:5.066667pt;}
.wsa1{word-spacing:5.120000pt;}
.ws8f{word-spacing:5.162667pt;}
.ws8a{word-spacing:5.573333pt;}
.ws8{word-spacing:5.696000pt;}
.ws89{word-spacing:5.749333pt;}
.ws14{word-spacing:5.808000pt;}
.ws1b{word-spacing:5.920000pt;}
.ws73{word-spacing:6.160000pt;}
.ws88{word-spacing:6.218667pt;}
.wsb{word-spacing:6.288000pt;}
.ws18{word-spacing:6.394667pt;}
.ws31{word-spacing:6.453333pt;}
.ws30{word-spacing:6.629333pt;}
.wsb6{word-spacing:6.666667pt;}
.ws40{word-spacing:6.746667pt;}
.ws44{word-spacing:6.805333pt;}
.ws6c{word-spacing:7.040000pt;}
.ws99{word-spacing:7.098667pt;}
.ws36{word-spacing:7.861333pt;}
.ws2{word-spacing:7.872000pt;}
.ws21{word-spacing:8.330667pt;}
.ws5{word-spacing:9.280000pt;}
.ws35{word-spacing:10.384000pt;}
._b{margin-left:-1965.376000pt;}
._e{margin-left:-7.351467pt;}
._f{margin-left:-5.860800pt;}
._1{margin-left:-4.853333pt;}
._5{margin-left:-3.408000pt;}
._3{margin-left:-2.083200pt;}
._6{margin-left:-1.145600pt;}
._8{width:1.180800pt;}
._7{width:2.304000pt;}
._c{width:3.322133pt;}
._4{width:4.593600pt;}
._9{width:6.288000pt;}
._2{width:7.872000pt;}
._11{width:16.896000pt;}
._10{width:20.181333pt;}
._12{width:26.693333pt;}
._a{width:57.077333pt;}
._d{width:1138.778667pt;}
._0{width:1421.578667pt;}
.fs6{font-size:24.874667pt;}
.fs3{font-size:31.093333pt;}
.fs9{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.950267pt;}
.y7e{bottom:65.927867pt;}
.y13d{bottom:66.130400pt;}
.yf7{bottom:66.141733pt;}
.y113{bottom:66.145600pt;}
.y50{bottom:66.146667pt;}
.ycc{bottom:66.156400pt;}
.ya7{bottom:66.192267pt;}
.y164{bottom:66.251733pt;}
.y20{bottom:69.693733pt;}
.yf6{bottom:78.941733pt;}
.y7d{bottom:82.002533pt;}
.y13c{bottom:82.219733pt;}
.y4f{bottom:82.221333pt;}
.y112{bottom:82.225600pt;}
.ycb{bottom:82.236400pt;}
.ya6{bottom:82.266933pt;}
.y163{bottom:82.326400pt;}
.y1f{bottom:82.493733pt;}
.yf5{bottom:91.741733pt;}
.y1e{bottom:95.293733pt;}
.y7c{bottom:98.077200pt;}
.y4e{bottom:98.296000pt;}
.y111{bottom:98.305600pt;}
.y13b{bottom:98.309067pt;}
.yca{bottom:98.316400pt;}
.ya5{bottom:98.341600pt;}
.y162{bottom:98.401067pt;}
.yf4{bottom:104.541733pt;}
.y7b{bottom:114.151867pt;}
.y110{bottom:114.385600pt;}
.yc9{bottom:114.396400pt;}
.y13a{bottom:114.398400pt;}
.ya4{bottom:114.416267pt;}
.y161{bottom:114.475733pt;}
.yf3{bottom:117.341733pt;}
.y18f{bottom:117.689067pt;}
.yf2{bottom:130.141733pt;}
.y7a{bottom:130.226533pt;}
.y4d{bottom:130.421333pt;}
.y10f{bottom:130.465600pt;}
.yc8{bottom:130.476400pt;}
.y139{bottom:130.487733pt;}
.ya3{bottom:130.490933pt;}
.y160{bottom:130.550400pt;}
.y18e{bottom:133.689067pt;}
.yf1{bottom:142.941733pt;}
.y79{bottom:146.301200pt;}
.y4c{bottom:146.501333pt;}
.yc7{bottom:146.556400pt;}
.ya2{bottom:146.565600pt;}
.y138{bottom:146.577067pt;}
.y15f{bottom:146.625067pt;}
.y18d{bottom:149.689067pt;}
.y1d{bottom:150.993733pt;}
.yf0{bottom:159.293733pt;}
.y78{bottom:162.375867pt;}
.y4b{bottom:162.581333pt;}
.yc6{bottom:162.636400pt;}
.ya1{bottom:162.640267pt;}
.y10e{bottom:162.661867pt;}
.y137{bottom:162.666400pt;}
.y15e{bottom:162.699733pt;}
.y18c{bottom:165.689067pt;}
.y1c{bottom:168.597733pt;}
.y77{bottom:178.450533pt;}
.y4a{bottom:178.661333pt;}
.ya0{bottom:178.714933pt;}
.yc5{bottom:178.716400pt;}
.y10d{bottom:178.736533pt;}
.y15d{bottom:178.774400pt;}
.y18b{bottom:181.689067pt;}
.y76{bottom:194.525200pt;}
.y49{bottom:194.741333pt;}
.y9f{bottom:194.789600pt;}
.yc4{bottom:194.796400pt;}
.y10c{bottom:194.811200pt;}
.y136{bottom:194.811733pt;}
.y15c{bottom:194.849067pt;}
.y1b{bottom:196.329733pt;}
.yef{bottom:196.650000pt;}
.y18a{bottom:197.689067pt;}
.y1a{bottom:209.661733pt;}
.y75{bottom:210.599867pt;}
.y48{bottom:210.821333pt;}
.yc3{bottom:210.876400pt;}
.y10b{bottom:210.885867pt;}
.y135{bottom:210.905067pt;}
.y15b{bottom:210.923733pt;}
.yee{bottom:212.651333pt;}
.y189{bottom:213.689067pt;}
.y19{bottom:222.993733pt;}
.y74{bottom:226.674533pt;}
.y47{bottom:226.901333pt;}
.yc2{bottom:226.956400pt;}
.y10a{bottom:226.960533pt;}
.y9e{bottom:226.963200pt;}
.y134{bottom:226.998400pt;}
.y188{bottom:229.689067pt;}
.y73{bottom:242.749200pt;}
.y46{bottom:242.981333pt;}
.y109{bottom:243.035200pt;}
.yc1{bottom:243.036400pt;}
.y9d{bottom:243.043200pt;}
.y15a{bottom:243.073067pt;}
.y133{bottom:243.091733pt;}
.yed{bottom:244.651333pt;}
.y187{bottom:245.689067pt;}
.y72{bottom:258.823867pt;}
.y45{bottom:259.061333pt;}
.yc0{bottom:259.116400pt;}
.y9c{bottom:259.123200pt;}
.y159{bottom:259.147733pt;}
.y132{bottom:259.185067pt;}
.yec{bottom:260.651333pt;}
.y186{bottom:261.689067pt;}
.y18{bottom:262.989733pt;}
.y71{bottom:274.898533pt;}
.y108{bottom:274.993867pt;}
.y44{bottom:275.141333pt;}
.ybf{bottom:275.196400pt;}
.y9b{bottom:275.203200pt;}
.y158{bottom:275.222400pt;}
.y131{bottom:275.278400pt;}
.y17{bottom:276.321733pt;}
.yeb{bottom:276.651333pt;}
.y185{bottom:277.689067pt;}
.y16{bottom:289.653733pt;}
.y70{bottom:290.973200pt;}
.y107{bottom:291.176800pt;}
.y43{bottom:291.221333pt;}
.ybe{bottom:291.276400pt;}
.y9a{bottom:291.283200pt;}
.y157{bottom:291.297067pt;}
.yea{bottom:292.651333pt;}
.y184{bottom:293.689067pt;}
.y15{bottom:302.985733pt;}
.y6f{bottom:307.047867pt;}
.ybd{bottom:307.356400pt;}
.y99{bottom:307.363200pt;}
.y156{bottom:307.371733pt;}
.y130{bottom:307.449467pt;}
.ye9{bottom:308.651333pt;}
.y183{bottom:309.689067pt;}
.y14{bottom:316.317733pt;}
.y6e{bottom:323.122533pt;}
.y42{bottom:323.387867pt;}
.y98{bottom:323.443200pt;}
.y155{bottom:323.446400pt;}
.y12f{bottom:323.538800pt;}
.ye8{bottom:324.651333pt;}
.y182{bottom:325.689067pt;}
.y106{bottom:339.004800pt;}
.y6d{bottom:339.197200pt;}
.y41{bottom:339.462533pt;}
.y154{bottom:339.521067pt;}
.y97{bottom:339.523200pt;}
.ybc{bottom:339.533600pt;}
.y12e{bottom:339.628133pt;}
.ye7{bottom:340.651333pt;}
.y181{bottom:341.689067pt;}
.y13{bottom:342.984400pt;}
.y105{bottom:355.079467pt;}
.y6c{bottom:355.271867pt;}
.y40{bottom:355.537200pt;}
.y153{bottom:355.595733pt;}
.y96{bottom:355.603200pt;}
.ybb{bottom:355.608267pt;}
.y180{bottom:357.689067pt;}
.y12{bottom:362.184400pt;}
.y104{bottom:371.154133pt;}
.y6b{bottom:371.346533pt;}
.y3f{bottom:371.611867pt;}
.yba{bottom:371.682933pt;}
.y95{bottom:371.683200pt;}
.y12d{bottom:371.755867pt;}
.ye6{bottom:372.626000pt;}
.y17f{bottom:373.689067pt;}
.y103{bottom:387.228800pt;}
.y6a{bottom:387.421200pt;}
.y152{bottom:387.605867pt;}
.y3e{bottom:387.686533pt;}
.yb9{bottom:387.757600pt;}
.y94{bottom:387.763200pt;}
.y12c{bottom:387.849200pt;}
.ye5{bottom:388.627333pt;}
.y17e{bottom:389.689067pt;}
.y102{bottom:403.303467pt;}
.y69{bottom:403.495867pt;}
.y3d{bottom:403.761200pt;}
.y93{bottom:403.843200pt;}
.y12b{bottom:403.942533pt;}
.ye4{bottom:404.628667pt;}
.y17d{bottom:405.689067pt;}
.y11{bottom:408.056400pt;}
.y101{bottom:419.378133pt;}
.y68{bottom:419.570533pt;}
.yb8{bottom:419.774133pt;}
.y92{bottom:419.923200pt;}
.y12a{bottom:420.035867pt;}
.ye3{bottom:420.630000pt;}
.y10{bottom:421.388400pt;}
.y17c{bottom:421.689067pt;}
.yf{bottom:434.720400pt;}
.y151{bottom:435.433867pt;}
.y100{bottom:435.452800pt;}
.y67{bottom:435.645200pt;}
.y3c{bottom:435.903867pt;}
.y129{bottom:436.129200pt;}
.ye2{bottom:436.631333pt;}
.y17b{bottom:437.689067pt;}
.ye{bottom:448.052400pt;}
.y150{bottom:451.508533pt;}
.yff{bottom:451.527467pt;}
.y66{bottom:451.719867pt;}
.y3b{bottom:451.983867pt;}
.y91{bottom:452.100400pt;}
.y128{bottom:452.222533pt;}
.y17a{bottom:453.689067pt;}
.yd{bottom:461.384400pt;}
.y14f{bottom:467.583200pt;}
.yb7{bottom:467.602133pt;}
.y65{bottom:467.794533pt;}
.y3a{bottom:468.063867pt;}
.y90{bottom:468.175067pt;}
.y127{bottom:468.315867pt;}
.y179{bottom:469.689067pt;}
.ye1{bottom:470.232667pt;}
.y14e{bottom:483.657867pt;}
.yb6{bottom:483.676800pt;}
.y64{bottom:483.869200pt;}
.y39{bottom:484.143867pt;}
.y8f{bottom:484.249733pt;}
.y126{bottom:484.409200pt;}
.y178{bottom:485.689067pt;}
.ye0{bottom:486.234000pt;}
.yc{bottom:488.051067pt;}
.y14d{bottom:499.732533pt;}
.yb5{bottom:499.751467pt;}
.y63{bottom:499.943867pt;}
.y38{bottom:500.223867pt;}
.y8e{bottom:500.324400pt;}
.y125{bottom:500.502533pt;}
.y177{bottom:501.689067pt;}
.ydf{bottom:502.235333pt;}
.yb{bottom:507.251067pt;}
.y14c{bottom:515.807200pt;}
.yb4{bottom:515.826133pt;}
.y62{bottom:516.018533pt;}
.y176{bottom:517.689067pt;}
.yde{bottom:518.236667pt;}
.y14b{bottom:531.881867pt;}
.yb3{bottom:531.900800pt;}
.y61{bottom:532.093200pt;}
.y8d{bottom:532.378800pt;}
.y37{bottom:532.424533pt;}
.y124{bottom:532.654667pt;}
.y175{bottom:533.689067pt;}
.ydd{bottom:534.238000pt;}
.y14a{bottom:547.956533pt;}
.yb2{bottom:547.975467pt;}
.y60{bottom:548.167867pt;}
.y36{bottom:548.499200pt;}
.y123{bottom:548.744000pt;}
.y174{bottom:549.689067pt;}
.ydc{bottom:550.239333pt;}
.ya{bottom:553.124400pt;}
.y149{bottom:564.031200pt;}
.yb1{bottom:564.050133pt;}
.y5f{bottom:564.242533pt;}
.y35{bottom:564.573867pt;}
.y122{bottom:564.833333pt;}
.y173{bottom:565.689067pt;}
.ydb{bottom:566.240667pt;}
.y9{bottom:566.456400pt;}
.y8{bottom:579.788400pt;}
.yb0{bottom:580.124800pt;}
.y8c{bottom:580.206800pt;}
.y34{bottom:580.648533pt;}
.y121{bottom:580.922667pt;}
.y172{bottom:581.689067pt;}
.yda{bottom:582.242000pt;}
.y7{bottom:593.120400pt;}
.yaf{bottom:596.199467pt;}
.y148{bottom:596.202933pt;}
.y8b{bottom:596.281467pt;}
.y5e{bottom:596.390267pt;}
.y33{bottom:596.723200pt;}
.y120{bottom:597.012000pt;}
.y171{bottom:597.689067pt;}
.yd9{bottom:598.243333pt;}
.y6{bottom:606.452400pt;}
.yae{bottom:612.274133pt;}
.y147{bottom:612.282933pt;}
.y8a{bottom:612.356133pt;}
.y5d{bottom:612.456933pt;}
.y32{bottom:612.797867pt;}
.y11f{bottom:613.101333pt;}
.y170{bottom:613.689067pt;}
.yd8{bottom:614.244667pt;}
.y5{bottom:619.784400pt;}
.y146{bottom:628.362933pt;}
.y89{bottom:628.430800pt;}
.y5c{bottom:628.523600pt;}
.y31{bottom:628.872533pt;}
.y11e{bottom:629.190667pt;}
.y16f{bottom:629.689067pt;}
.yd7{bottom:630.246000pt;}
.yad{bottom:644.440933pt;}
.yfe{bottom:644.442000pt;}
.y145{bottom:644.442933pt;}
.y88{bottom:644.505467pt;}
.y5b{bottom:644.590267pt;}
.y30{bottom:644.947200pt;}
.y11d{bottom:645.280000pt;}
.y16e{bottom:645.689067pt;}
.y4{bottom:646.451067pt;}
.yac{bottom:660.520933pt;}
.yfd{bottom:660.522000pt;}
.y144{bottom:660.522933pt;}
.y87{bottom:660.580133pt;}
.y5a{bottom:660.656933pt;}
.y2f{bottom:661.021867pt;}
.y11c{bottom:661.369333pt;}
.y16d{bottom:661.689067pt;}
.yd6{bottom:662.248667pt;}
.yab{bottom:676.600933pt;}
.yfc{bottom:676.602000pt;}
.y143{bottom:676.602933pt;}
.y86{bottom:676.654800pt;}
.y59{bottom:676.723600pt;}
.y2e{bottom:677.096533pt;}
.y11b{bottom:677.458667pt;}
.y16c{bottom:677.689067pt;}
.yd5{bottom:678.250000pt;}
.y3{bottom:684.317733pt;}
.yaa{bottom:692.680933pt;}
.yfb{bottom:692.682000pt;}
.y142{bottom:692.682933pt;}
.y85{bottom:692.729467pt;}
.y58{bottom:692.790267pt;}
.y2d{bottom:693.171200pt;}
.y11a{bottom:693.548000pt;}
.y16b{bottom:693.689067pt;}
.yd4{bottom:694.248667pt;}
.ya9{bottom:708.760933pt;}
.yfa{bottom:708.762000pt;}
.y141{bottom:708.762933pt;}
.y84{bottom:708.804133pt;}
.y57{bottom:708.856933pt;}
.y2c{bottom:709.245867pt;}
.y119{bottom:709.637333pt;}
.y16a{bottom:709.689067pt;}
.yd3{bottom:710.250000pt;}
.y2{bottom:713.651067pt;}
.ya8{bottom:724.840933pt;}
.yf9{bottom:724.842000pt;}
.y140{bottom:724.842933pt;}
.y83{bottom:724.878800pt;}
.y56{bottom:724.923600pt;}
.y2b{bottom:725.320533pt;}
.y169{bottom:725.689067pt;}
.y118{bottom:725.726667pt;}
.yd2{bottom:726.251333pt;}
.yf8{bottom:740.922000pt;}
.y13f{bottom:740.922933pt;}
.y82{bottom:740.953467pt;}
.y55{bottom:740.990267pt;}
.y2a{bottom:741.395200pt;}
.y168{bottom:741.689067pt;}
.y13e{bottom:757.002933pt;}
.y81{bottom:757.028133pt;}
.y54{bottom:757.056933pt;}
.y29{bottom:757.469867pt;}
.y167{bottom:757.689067pt;}
.y117{bottom:757.878000pt;}
.yd1{bottom:758.251333pt;}
.y23{bottom:769.763200pt;}
.y80{bottom:773.102800pt;}
.y53{bottom:773.123600pt;}
.y28{bottom:773.544533pt;}
.y166{bottom:773.689067pt;}
.y116{bottom:773.971333pt;}
.yd0{bottom:774.251333pt;}
.y7f{bottom:789.177467pt;}
.y27{bottom:789.619200pt;}
.y165{bottom:789.689067pt;}
.y115{bottom:790.064667pt;}
.ycf{bottom:790.251333pt;}
.y22{bottom:798.214667pt;}
.y52{bottom:805.252133pt;}
.y114{bottom:806.158000pt;}
.yce{bottom:806.251333pt;}
.y21{bottom:810.881333pt;}
.y51{bottom:821.326800pt;}
.y26{bottom:821.563200pt;}
.ycd{bottom:822.251333pt;}
.y24{bottom:840.447733pt;}
.y25{bottom:856.062933pt;}
.h9{height:23.229500pt;}
.h14{height:29.645833pt;}
.h5{height:32.757812pt;}
.h7{height:33.351562pt;}
.h2{height:34.421333pt;}
.hf{height:37.057292pt;}
.h13{height:37.437500pt;}
.hb{height:39.338667pt;}
.hc{height:40.161458pt;}
.he{height:40.763021pt;}
.h6{height:42.117188pt;}
.h15{height:46.363808pt;}
.h10{height:46.413942pt;}
.h11{height:46.565408pt;}
.h16{height:46.591008pt;}
.h4{height:46.796875pt;}
.ha{height:49.173333pt;}
.hd{height:51.476562pt;}
.h12{height:51.487229pt;}
.h8{height:56.156250pt;}
.h3{height:60.835938pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x2{left:83.149600pt;}
.x6{left:94.488133pt;}
.x7{left:113.372933pt;}
.x5{left:132.283467pt;}
.x4{left:375.858933pt;}
.x3{left:493.006667pt;}
}




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