
    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_9645c318c2a7e98faee4f545.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_4c6d2a87a2afd2d4fd1bcccc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_e91b949128df1f2cfc6a3a06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_b4d0e75aedf253f89cd54369.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_069e191c2078b9960bc40b8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_d9c1d21182c67a7d8f8c5e36.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea3cd964af26538c564b6c24.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a1011b501331d25cc6428207.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1d18bd811919eefe789909e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_03daaf399cf2c59ccf60d212.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.698200px;}
.v3{vertical-align:19.799400px;}
.v2{vertical-align:53.931000px;}
.ls8{letter-spacing:-1.287600px;}
.ls7{letter-spacing:-1.188000px;}
.ls5{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.348000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.010200px;}
.lsb{letter-spacing:1.320000px;}
.ls9{letter-spacing:2.376000px;}
.lsd{letter-spacing:4.950000px;}
.lsc{letter-spacing:5.478000px;}
.ls2{letter-spacing:698.995800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-40.524000px;}
.ws24{word-spacing:-36.960000px;}
.ws0{word-spacing:-18.000000px;}
.ws22{word-spacing:-16.500000px;}
.ws3e{word-spacing:-15.906000px;}
.ws7c{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.600000px;}
.ws10{word-spacing:-11.550000px;}
.wsf{word-spacing:-8.700000px;}
.ws69{word-spacing:-8.352000px;}
.ws3f{word-spacing:-7.412400px;}
.ws70{word-spacing:-3.036000px;}
.ws1c{word-spacing:-2.970000px;}
.ws28{word-spacing:-2.772000px;}
.wsc{word-spacing:-2.640000px;}
.ws20{word-spacing:-2.592000px;}
.ws35{word-spacing:-2.442000px;}
.ws45{word-spacing:-2.310000px;}
.ws8d{word-spacing:-2.268000px;}
.ws65{word-spacing:-2.178000px;}
.wsa{word-spacing:-2.160000px;}
.ws2e{word-spacing:-2.112000px;}
.ws51{word-spacing:-1.914000px;}
.ws31{word-spacing:-1.848000px;}
.ws50{word-spacing:-1.716000px;}
.wsb{word-spacing:-1.680000px;}
.ws41{word-spacing:-1.650000px;}
.ws75{word-spacing:-1.584000px;}
.ws14{word-spacing:-1.452000px;}
.ws6a{word-spacing:-1.386000px;}
.ws5{word-spacing:-1.380000px;}
.ws68{word-spacing:-1.320000px;}
.ws9b{word-spacing:-1.188000px;}
.ws2b{word-spacing:-1.122000px;}
.ws7{word-spacing:-1.080000px;}
.ws71{word-spacing:-1.056000px;}
.ws95{word-spacing:-1.026000px;}
.ws4e{word-spacing:-0.990000px;}
.ws21{word-spacing:-0.972000px;}
.ws2d{word-spacing:-0.924000px;}
.ws77{word-spacing:-0.858000px;}
.ws5a{word-spacing:-0.792000px;}
.ws83{word-spacing:-0.756000px;}
.ws2c{word-spacing:-0.594000px;}
.ws4a{word-spacing:-0.528000px;}
.ws49{word-spacing:-0.462000px;}
.ws36{word-spacing:-0.396000px;}
.ws11{word-spacing:-0.330000px;}
.ws27{word-spacing:-0.264000px;}
.ws91{word-spacing:-0.216000px;}
.ws48{word-spacing:-0.198000px;}
.ws73{word-spacing:-0.132000px;}
.ws4f{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:0.066000px;}
.ws26{word-spacing:0.132000px;}
.ws8f{word-spacing:0.162000px;}
.ws5b{word-spacing:0.198000px;}
.ws78{word-spacing:0.330000px;}
.ws43{word-spacing:0.396000px;}
.ws6f{word-spacing:0.462000px;}
.ws8{word-spacing:0.480000px;}
.ws92{word-spacing:0.486000px;}
.ws16{word-spacing:0.528000px;}
.ws13{word-spacing:0.594000px;}
.ws96{word-spacing:0.648000px;}
.ws47{word-spacing:0.660000px;}
.ws3{word-spacing:0.702000px;}
.ws9{word-spacing:0.720000px;}
.ws30{word-spacing:0.726000px;}
.ws62{word-spacing:0.792000px;}
.ws3a{word-spacing:0.858000px;}
.ws7e{word-spacing:0.924000px;}
.ws6d{word-spacing:1.056000px;}
.ws64{word-spacing:1.122000px;}
.ws25{word-spacing:1.188000px;}
.ws54{word-spacing:1.254000px;}
.ws15{word-spacing:1.320000px;}
.ws97{word-spacing:1.350000px;}
.ws19{word-spacing:1.452000px;}
.ws8c{word-spacing:1.458000px;}
.ws66{word-spacing:1.518000px;}
.ws8e{word-spacing:1.566000px;}
.ws4b{word-spacing:1.584000px;}
.ws60{word-spacing:1.650000px;}
.ws94{word-spacing:1.674000px;}
.ws57{word-spacing:1.716000px;}
.ws17{word-spacing:1.782000px;}
.ws18{word-spacing:1.848000px;}
.ws80{word-spacing:1.890000px;}
.ws1e{word-spacing:1.914000px;}
.ws86{word-spacing:1.944000px;}
.ws40{word-spacing:2.046000px;}
.ws99{word-spacing:2.106000px;}
.ws3b{word-spacing:2.112000px;}
.ws84{word-spacing:2.160000px;}
.ws4d{word-spacing:2.178000px;}
.ws93{word-spacing:2.214000px;}
.ws37{word-spacing:2.244000px;}
.ws38{word-spacing:2.310000px;}
.ws9c{word-spacing:2.322000px;}
.ws6b{word-spacing:2.376000px;}
.ws6{word-spacing:2.400000px;}
.ws8a{word-spacing:2.430000px;}
.ws32{word-spacing:2.442000px;}
.ws98{word-spacing:2.484000px;}
.ws39{word-spacing:2.508000px;}
.ws52{word-spacing:2.574000px;}
.ws59{word-spacing:2.640000px;}
.ws87{word-spacing:2.700000px;}
.ws58{word-spacing:2.706000px;}
.ws12{word-spacing:2.772000px;}
.ws88{word-spacing:2.808000px;}
.ws2a{word-spacing:2.838000px;}
.ws82{word-spacing:2.862000px;}
.ws29{word-spacing:2.970000px;}
.ws7a{word-spacing:3.036000px;}
.ws1a{word-spacing:3.102000px;}
.ws33{word-spacing:3.168000px;}
.ws72{word-spacing:3.234000px;}
.ws85{word-spacing:3.240000px;}
.ws90{word-spacing:3.348000px;}
.ws79{word-spacing:3.366000px;}
.ws5d{word-spacing:3.432000px;}
.ws4{word-spacing:3.564000px;}
.ws9a{word-spacing:3.618000px;}
.ws3d{word-spacing:3.630000px;}
.ws61{word-spacing:3.696000px;}
.ws55{word-spacing:3.762000px;}
.ws9d{word-spacing:3.780000px;}
.ws1d{word-spacing:3.828000px;}
.ws81{word-spacing:3.834000px;}
.ws4c{word-spacing:3.894000px;}
.wsd{word-spacing:3.960000px;}
.ws42{word-spacing:4.026000px;}
.ws1b{word-spacing:4.092000px;}
.ws56{word-spacing:4.554000px;}
.ws9e{word-spacing:4.644000px;}
.ws44{word-spacing:4.686000px;}
.ws46{word-spacing:4.752000px;}
.ws63{word-spacing:4.884000px;}
.ws3c{word-spacing:5.016000px;}
.ws89{word-spacing:5.184000px;}
.ws53{word-spacing:5.280000px;}
.ws5c{word-spacing:5.676000px;}
.ws6e{word-spacing:5.742000px;}
.ws5f{word-spacing:6.534000px;}
.ws2f{word-spacing:6.600000px;}
.ws7b{word-spacing:6.666000px;}
.ws76{word-spacing:6.732000px;}
.ws5e{word-spacing:6.930000px;}
.ws6c{word-spacing:7.326000px;}
.ws7f{word-spacing:7.722000px;}
.ws8b{word-spacing:7.938000px;}
.ws74{word-spacing:8.316000px;}
.wse{word-spacing:8.646000px;}
.ws34{word-spacing:9.174000px;}
.ws7d{word-spacing:9.438000px;}
.ws67{word-spacing:10.098000px;}
._7{margin-left:-8.424000px;}
._6{margin-left:-6.450000px;}
._4{margin-left:-5.184000px;}
._5{margin-left:-4.056000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.026000px;}
._3{width:1.578000px;}
._8{width:3.462000px;}
._a{width:5.382000px;}
._b{width:6.402000px;}
._9{width:7.458000px;}
._c{width:8.550000px;}
._d{width:9.732000px;}
._e{width:10.734000px;}
._2{width:418.673400px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.800000px;}
.fs8{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:65.403000px;}
.y2c{bottom:68.120250px;}
.y5e{bottom:69.827550px;}
.y1{bottom:81.603000px;}
.y3{bottom:95.314950px;}
.y5d{bottom:120.472350px;}
.yd8{bottom:127.559100px;}
.y8c{bottom:127.559250px;}
.y128{bottom:132.035250px;}
.ya6{bottom:133.936950px;}
.y7{bottom:135.050250px;}
.y5c{bottom:136.672350px;}
.y8b{bottom:143.759250px;}
.y127{bottom:148.235250px;}
.ya5{bottom:150.136950px;}
.y6{bottom:151.250250px;}
.y5b{bottom:152.872350px;}
.yd7{bottom:153.116700px;}
.y8a{bottom:159.959250px;}
.y126{bottom:164.435250px;}
.ya4{bottom:166.336950px;}
.y5{bottom:167.450250px;}
.y5a{bottom:169.072350px;}
.yd6{bottom:172.916700px;}
.y100{bottom:173.435250px;}
.y125{bottom:180.635250px;}
.y4{bottom:183.650250px;}
.y59{bottom:185.272350px;}
.yd5{bottom:192.716700px;}
.y89{bottom:193.235250px;}
.y124{bottom:196.835250px;}
.ya3{bottom:198.609450px;}
.y2a{bottom:208.453500px;}
.y58{bottom:212.412750px;}
.yd4{bottom:212.516700px;}
.y88{bottom:213.035250px;}
.ya2{bottom:218.409450px;}
.y29{bottom:228.253500px;}
.y123{bottom:229.235250px;}
.y57{bottom:232.212750px;}
.yd3{bottom:232.316700px;}
.y87{bottom:232.835250px;}
.ya1{bottom:238.209450px;}
.y122{bottom:245.435250px;}
.y28{bottom:248.053500px;}
.y56{bottom:252.012750px;}
.yd2{bottom:252.116700px;}
.yff{bottom:252.635100px;}
.y86{bottom:252.635250px;}
.ya0{bottom:258.009450px;}
.y121{bottom:261.635250px;}
.y27{bottom:267.853500px;}
.y55{bottom:271.812750px;}
.yd1{bottom:271.916700px;}
.yfe{bottom:272.435100px;}
.y85{bottom:272.435250px;}
.y9f{bottom:277.809450px;}
.y120{bottom:277.835250px;}
.y54{bottom:291.612750px;}
.yd0{bottom:291.716700px;}
.yfd{bottom:292.235100px;}
.y84{bottom:292.235250px;}
.y11f{bottom:294.035250px;}
.y9e{bottom:297.609450px;}
.y26{bottom:307.453350px;}
.y11e{bottom:310.235250px;}
.y53{bottom:311.412750px;}
.ycf{bottom:311.516700px;}
.yfc{bottom:312.035100px;}
.y83{bottom:312.035250px;}
.y9d{bottom:317.409450px;}
.y11d{bottom:326.435250px;}
.y52{bottom:331.212750px;}
.yce{bottom:331.316700px;}
.yfb{bottom:331.835100px;}
.y82{bottom:331.835250px;}
.y9c{bottom:337.209450px;}
.y11c{bottom:342.635250px;}
.y51{bottom:351.012750px;}
.ycd{bottom:351.116700px;}
.y81{bottom:351.635250px;}
.y9b{bottom:357.009450px;}
.y11b{bottom:358.835250px;}
.y25{bottom:365.053500px;}
.y50{bottom:370.812750px;}
.ycc{bottom:370.916700px;}
.yfa{bottom:371.435100px;}
.y80{bottom:371.435250px;}
.y11a{bottom:375.035250px;}
.y9a{bottom:376.809450px;}
.y4f{bottom:390.612750px;}
.ycb{bottom:390.716700px;}
.yf9{bottom:391.235100px;}
.y7f{bottom:391.235250px;}
.y99{bottom:396.609450px;}
.y24{bottom:401.053500px;}
.y119{bottom:407.435250px;}
.y4e{bottom:410.412750px;}
.yca{bottom:410.516700px;}
.yf8{bottom:411.035100px;}
.y7e{bottom:411.035250px;}
.y98{bottom:416.409450px;}
.y23{bottom:419.053500px;}
.y118{bottom:423.635250px;}
.y4d{bottom:430.212750px;}
.yc9{bottom:430.316700px;}
.y7d{bottom:430.835250px;}
.y97{bottom:436.209450px;}
.y22{bottom:437.053500px;}
.y117{bottom:439.835250px;}
.y4c{bottom:450.012750px;}
.yc8{bottom:450.116700px;}
.yf7{bottom:450.635100px;}
.y7c{bottom:450.635250px;}
.y21{bottom:455.053500px;}
.y96{bottom:456.009450px;}
.y116{bottom:456.035250px;}
.y4b{bottom:469.812750px;}
.yc7{bottom:469.916700px;}
.yf6{bottom:470.435100px;}
.y7b{bottom:470.435250px;}
.y115{bottom:472.235250px;}
.y20{bottom:473.053500px;}
.y95{bottom:475.809450px;}
.y114{bottom:488.435250px;}
.y4a{bottom:489.612750px;}
.yc6{bottom:489.716700px;}
.yf5{bottom:490.235100px;}
.y7a{bottom:490.235250px;}
.y1f{bottom:491.053500px;}
.y94{bottom:495.609450px;}
.y113{bottom:504.635250px;}
.y1e{bottom:509.053500px;}
.y49{bottom:509.412750px;}
.yc5{bottom:509.516700px;}
.yf4{bottom:510.035100px;}
.y79{bottom:510.035250px;}
.y93{bottom:515.409450px;}
.y112{bottom:520.835250px;}
.y1d{bottom:527.053500px;}
.y48{bottom:529.212750px;}
.yc4{bottom:529.316700px;}
.yf3{bottom:529.835100px;}
.y78{bottom:529.835250px;}
.y92{bottom:535.209450px;}
.y111{bottom:537.035250px;}
.y47{bottom:549.012750px;}
.yc3{bottom:549.116700px;}
.yf2{bottom:549.635100px;}
.y77{bottom:549.635250px;}
.y110{bottom:553.235250px;}
.y46{bottom:568.812750px;}
.y76{bottom:569.435250px;}
.y91{bottom:574.809450px;}
.y1c{bottom:581.053500px;}
.y10f{bottom:585.635250px;}
.y45{bottom:588.612750px;}
.yc2{bottom:588.716700px;}
.yf1{bottom:589.235100px;}
.y75{bottom:589.235250px;}
.y10e{bottom:601.835250px;}
.y44{bottom:608.412750px;}
.yc1{bottom:608.516700px;}
.yf0{bottom:609.035100px;}
.ye7{bottom:609.035250px;}
.y1b{bottom:617.053500px;}
.y10d{bottom:618.035250px;}
.y43{bottom:628.212750px;}
.yc0{bottom:628.316700px;}
.yef{bottom:628.835100px;}
.y74{bottom:628.835250px;}
.y10c{bottom:634.235250px;}
.y1a{bottom:635.053500px;}
.y42{bottom:648.012750px;}
.ybf{bottom:648.116700px;}
.yee{bottom:648.635100px;}
.ye6{bottom:648.635250px;}
.y10b{bottom:650.435250px;}
.y19{bottom:653.053500px;}
.y10a{bottom:666.635250px;}
.y41{bottom:667.812750px;}
.ybe{bottom:667.916700px;}
.ye5{bottom:668.435250px;}
.y18{bottom:671.053500px;}
.y109{bottom:682.835250px;}
.y40{bottom:687.612750px;}
.ybd{bottom:687.716700px;}
.yed{bottom:688.235100px;}
.y73{bottom:688.235250px;}
.y17{bottom:689.053500px;}
.y108{bottom:699.035250px;}
.y16{bottom:707.053500px;}
.ybc{bottom:707.516700px;}
.yec{bottom:708.035100px;}
.y72{bottom:708.035250px;}
.y107{bottom:715.235250px;}
.y15{bottom:725.053500px;}
.y3f{bottom:727.212750px;}
.ybb{bottom:727.316700px;}
.yeb{bottom:727.835100px;}
.y71{bottom:727.835250px;}
.y106{bottom:731.435250px;}
.y14{bottom:743.053500px;}
.yba{bottom:747.116700px;}
.y70{bottom:747.635250px;}
.y140{bottom:753.309000px;}
.y13{bottom:761.053500px;}
.y105{bottom:763.835250px;}
.yb9{bottom:766.916700px;}
.yea{bottom:767.435100px;}
.y6f{bottom:767.435250px;}
.y13f{bottom:769.509000px;}
.y104{bottom:780.035250px;}
.y13e{bottom:785.709000px;}
.y3e{bottom:786.612750px;}
.yb8{bottom:786.716700px;}
.ye9{bottom:787.235100px;}
.y6e{bottom:787.235250px;}
.y103{bottom:796.235250px;}
.y13d{bottom:801.909000px;}
.y3d{bottom:806.412750px;}
.yb7{bottom:806.516700px;}
.ye8{bottom:807.035100px;}
.y6d{bottom:807.035250px;}
.y12{bottom:815.053500px;}
.y13c{bottom:818.109000px;}
.y3c{bottom:826.212750px;}
.yb6{bottom:826.316700px;}
.ye4{bottom:826.835100px;}
.y6c{bottom:826.835250px;}
.y102{bottom:828.635250px;}
.y11{bottom:833.053500px;}
.y13b{bottom:834.309000px;}
.y3b{bottom:846.012750px;}
.yb5{bottom:846.116700px;}
.ye3{bottom:846.635100px;}
.y6b{bottom:846.635250px;}
.y13a{bottom:850.509000px;}
.y10{bottom:851.053500px;}
.y3a{bottom:865.812750px;}
.yb4{bottom:865.916700px;}
.ye2{bottom:866.435100px;}
.y6a{bottom:866.435250px;}
.y139{bottom:866.709000px;}
.yf{bottom:869.053500px;}
.y138{bottom:882.909000px;}
.y39{bottom:885.612750px;}
.yb3{bottom:885.716700px;}
.ye1{bottom:886.235100px;}
.y101{bottom:886.235250px;}
.y137{bottom:899.109000px;}
.y38{bottom:905.412750px;}
.yb2{bottom:905.516700px;}
.ye0{bottom:906.035100px;}
.y69{bottom:906.035250px;}
.y136{bottom:915.309000px;}
.ye{bottom:923.053500px;}
.y37{bottom:925.212750px;}
.yb1{bottom:925.316700px;}
.ydf{bottom:925.835100px;}
.y68{bottom:925.835250px;}
.y135{bottom:931.509000px;}
.y36{bottom:945.012750px;}
.yb0{bottom:945.116700px;}
.yde{bottom:945.635100px;}
.y67{bottom:945.635250px;}
.y134{bottom:947.709000px;}
.y133{bottom:963.909000px;}
.y35{bottom:964.812750px;}
.yaf{bottom:964.916700px;}
.ydd{bottom:965.435100px;}
.y66{bottom:965.435250px;}
.yd{bottom:969.853500px;}
.y132{bottom:980.109000px;}
.y34{bottom:984.612750px;}
.yae{bottom:984.716700px;}
.ydc{bottom:985.235100px;}
.y65{bottom:985.235250px;}
.yc{bottom:995.053500px;}
.y131{bottom:996.309000px;}
.y33{bottom:1004.412750px;}
.yad{bottom:1004.516700px;}
.ydb{bottom:1005.035100px;}
.y64{bottom:1005.035250px;}
.y130{bottom:1012.509000px;}
.yb{bottom:1020.253500px;}
.y32{bottom:1024.212750px;}
.yac{bottom:1024.316700px;}
.yda{bottom:1024.835100px;}
.y63{bottom:1024.835250px;}
.y12f{bottom:1028.709000px;}
.y31{bottom:1044.012750px;}
.yab{bottom:1044.116700px;}
.yd9{bottom:1044.635100px;}
.y12e{bottom:1044.909000px;}
.y12d{bottom:1061.109000px;}
.y90{bottom:1062.282000px;}
.y30{bottom:1063.812750px;}
.yaa{bottom:1063.916700px;}
.y62{bottom:1064.435100px;}
.ya{bottom:1070.653500px;}
.y12c{bottom:1077.309000px;}
.y8f{bottom:1082.082000px;}
.y2f{bottom:1083.612750px;}
.ya9{bottom:1083.716700px;}
.y61{bottom:1084.235100px;}
.y12b{bottom:1093.509000px;}
.y9{bottom:1095.853500px;}
.y8e{bottom:1101.882000px;}
.y2e{bottom:1103.412750px;}
.ya8{bottom:1103.516700px;}
.y60{bottom:1104.035100px;}
.y12a{bottom:1109.709000px;}
.y8{bottom:1121.053500px;}
.y8d{bottom:1121.682000px;}
.y2d{bottom:1123.212750px;}
.ya7{bottom:1123.316700px;}
.y5f{bottom:1123.835100px;}
.y129{bottom:1125.909000px;}
.y2b{bottom:1190.780700px;}
.h4{height:34.176000px;}
.h2{height:38.448000px;}
.he{height:47.381836px;}
.hf{height:47.513672px;}
.h10{height:51.264000px;}
.h9{height:52.646484px;}
.ha{height:52.792969px;}
.h8{height:53.291016px;}
.hc{height:57.911133px;}
.h11{height:57.911733px;}
.h12{height:58.072266px;}
.h13{height:58.620117px;}
.hb{height:63.175781px;}
.h7{height:63.949219px;}
.h3{height:68.962200px;}
.h6{height:73.910156px;}
.h5{height:74.484375px;}
.hd{height:92.379000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:59.843100px;}
.x5{left:106.293900px;}
.x8{left:109.617450px;}
.x16{left:117.739050px;}
.x10{left:122.059050px;}
.xe{left:127.599150px;}
.x6{left:143.238450px;}
.x4{left:148.818900px;}
.x7{left:151.848450px;}
.xa{left:158.526450px;}
.xb{left:160.647450px;}
.x9{left:167.829450px;}
.x13{left:175.899600px;}
.xc{left:225.728100px;}
.xf{left:226.935150px;}
.x14{left:231.919200px;}
.x2{left:235.167000px;}
.x1{left:305.448000px;}
.xd{left:354.960300px;}
.x17{left:390.609450px;}
.x11{left:401.697150px;}
.x15{left:421.150800px;}
.x18{left:757.660350px;}
.x12{left:761.980350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.731733pt;}
.v3{vertical-align:17.599467pt;}
.v2{vertical-align:47.938667pt;}
.ls8{letter-spacing:-1.144533pt;}
.ls7{letter-spacing:-1.056000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.309333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.009067pt;}
.lsb{letter-spacing:1.173333pt;}
.ls9{letter-spacing:2.112000pt;}
.lsd{letter-spacing:4.400000pt;}
.lsc{letter-spacing:4.869333pt;}
.ls2{letter-spacing:621.329600pt;}
.ws23{word-spacing:-36.021333pt;}
.ws24{word-spacing:-32.853333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws22{word-spacing:-14.666667pt;}
.ws3e{word-spacing:-14.138667pt;}
.ws7c{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.200000pt;}
.ws10{word-spacing:-10.266667pt;}
.wsf{word-spacing:-7.733333pt;}
.ws69{word-spacing:-7.424000pt;}
.ws3f{word-spacing:-6.588800pt;}
.ws70{word-spacing:-2.698667pt;}
.ws1c{word-spacing:-2.640000pt;}
.ws28{word-spacing:-2.464000pt;}
.wsc{word-spacing:-2.346667pt;}
.ws20{word-spacing:-2.304000pt;}
.ws35{word-spacing:-2.170667pt;}
.ws45{word-spacing:-2.053333pt;}
.ws8d{word-spacing:-2.016000pt;}
.ws65{word-spacing:-1.936000pt;}
.wsa{word-spacing:-1.920000pt;}
.ws2e{word-spacing:-1.877333pt;}
.ws51{word-spacing:-1.701333pt;}
.ws31{word-spacing:-1.642667pt;}
.ws50{word-spacing:-1.525333pt;}
.wsb{word-spacing:-1.493333pt;}
.ws41{word-spacing:-1.466667pt;}
.ws75{word-spacing:-1.408000pt;}
.ws14{word-spacing:-1.290667pt;}
.ws6a{word-spacing:-1.232000pt;}
.ws5{word-spacing:-1.226667pt;}
.ws68{word-spacing:-1.173333pt;}
.ws9b{word-spacing:-1.056000pt;}
.ws2b{word-spacing:-0.997333pt;}
.ws7{word-spacing:-0.960000pt;}
.ws71{word-spacing:-0.938667pt;}
.ws95{word-spacing:-0.912000pt;}
.ws4e{word-spacing:-0.880000pt;}
.ws21{word-spacing:-0.864000pt;}
.ws2d{word-spacing:-0.821333pt;}
.ws77{word-spacing:-0.762667pt;}
.ws5a{word-spacing:-0.704000pt;}
.ws83{word-spacing:-0.672000pt;}
.ws2c{word-spacing:-0.528000pt;}
.ws4a{word-spacing:-0.469333pt;}
.ws49{word-spacing:-0.410667pt;}
.ws36{word-spacing:-0.352000pt;}
.ws11{word-spacing:-0.293333pt;}
.ws27{word-spacing:-0.234667pt;}
.ws91{word-spacing:-0.192000pt;}
.ws48{word-spacing:-0.176000pt;}
.ws73{word-spacing:-0.117333pt;}
.ws4f{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.058667pt;}
.ws26{word-spacing:0.117333pt;}
.ws8f{word-spacing:0.144000pt;}
.ws5b{word-spacing:0.176000pt;}
.ws78{word-spacing:0.293333pt;}
.ws43{word-spacing:0.352000pt;}
.ws6f{word-spacing:0.410667pt;}
.ws8{word-spacing:0.426667pt;}
.ws92{word-spacing:0.432000pt;}
.ws16{word-spacing:0.469333pt;}
.ws13{word-spacing:0.528000pt;}
.ws96{word-spacing:0.576000pt;}
.ws47{word-spacing:0.586667pt;}
.ws3{word-spacing:0.624000pt;}
.ws9{word-spacing:0.640000pt;}
.ws30{word-spacing:0.645333pt;}
.ws62{word-spacing:0.704000pt;}
.ws3a{word-spacing:0.762667pt;}
.ws7e{word-spacing:0.821333pt;}
.ws6d{word-spacing:0.938667pt;}
.ws64{word-spacing:0.997333pt;}
.ws25{word-spacing:1.056000pt;}
.ws54{word-spacing:1.114667pt;}
.ws15{word-spacing:1.173333pt;}
.ws97{word-spacing:1.200000pt;}
.ws19{word-spacing:1.290667pt;}
.ws8c{word-spacing:1.296000pt;}
.ws66{word-spacing:1.349333pt;}
.ws8e{word-spacing:1.392000pt;}
.ws4b{word-spacing:1.408000pt;}
.ws60{word-spacing:1.466667pt;}
.ws94{word-spacing:1.488000pt;}
.ws57{word-spacing:1.525333pt;}
.ws17{word-spacing:1.584000pt;}
.ws18{word-spacing:1.642667pt;}
.ws80{word-spacing:1.680000pt;}
.ws1e{word-spacing:1.701333pt;}
.ws86{word-spacing:1.728000pt;}
.ws40{word-spacing:1.818667pt;}
.ws99{word-spacing:1.872000pt;}
.ws3b{word-spacing:1.877333pt;}
.ws84{word-spacing:1.920000pt;}
.ws4d{word-spacing:1.936000pt;}
.ws93{word-spacing:1.968000pt;}
.ws37{word-spacing:1.994667pt;}
.ws38{word-spacing:2.053333pt;}
.ws9c{word-spacing:2.064000pt;}
.ws6b{word-spacing:2.112000pt;}
.ws6{word-spacing:2.133333pt;}
.ws8a{word-spacing:2.160000pt;}
.ws32{word-spacing:2.170667pt;}
.ws98{word-spacing:2.208000pt;}
.ws39{word-spacing:2.229333pt;}
.ws52{word-spacing:2.288000pt;}
.ws59{word-spacing:2.346667pt;}
.ws87{word-spacing:2.400000pt;}
.ws58{word-spacing:2.405333pt;}
.ws12{word-spacing:2.464000pt;}
.ws88{word-spacing:2.496000pt;}
.ws2a{word-spacing:2.522667pt;}
.ws82{word-spacing:2.544000pt;}
.ws29{word-spacing:2.640000pt;}
.ws7a{word-spacing:2.698667pt;}
.ws1a{word-spacing:2.757333pt;}
.ws33{word-spacing:2.816000pt;}
.ws72{word-spacing:2.874667pt;}
.ws85{word-spacing:2.880000pt;}
.ws90{word-spacing:2.976000pt;}
.ws79{word-spacing:2.992000pt;}
.ws5d{word-spacing:3.050667pt;}
.ws4{word-spacing:3.168000pt;}
.ws9a{word-spacing:3.216000pt;}
.ws3d{word-spacing:3.226667pt;}
.ws61{word-spacing:3.285333pt;}
.ws55{word-spacing:3.344000pt;}
.ws9d{word-spacing:3.360000pt;}
.ws1d{word-spacing:3.402667pt;}
.ws81{word-spacing:3.408000pt;}
.ws4c{word-spacing:3.461333pt;}
.wsd{word-spacing:3.520000pt;}
.ws42{word-spacing:3.578667pt;}
.ws1b{word-spacing:3.637333pt;}
.ws56{word-spacing:4.048000pt;}
.ws9e{word-spacing:4.128000pt;}
.ws44{word-spacing:4.165333pt;}
.ws46{word-spacing:4.224000pt;}
.ws63{word-spacing:4.341333pt;}
.ws3c{word-spacing:4.458667pt;}
.ws89{word-spacing:4.608000pt;}
.ws53{word-spacing:4.693333pt;}
.ws5c{word-spacing:5.045333pt;}
.ws6e{word-spacing:5.104000pt;}
.ws5f{word-spacing:5.808000pt;}
.ws2f{word-spacing:5.866667pt;}
.ws7b{word-spacing:5.925333pt;}
.ws76{word-spacing:5.984000pt;}
.ws5e{word-spacing:6.160000pt;}
.ws6c{word-spacing:6.512000pt;}
.ws7f{word-spacing:6.864000pt;}
.ws8b{word-spacing:7.056000pt;}
.ws74{word-spacing:7.392000pt;}
.wse{word-spacing:7.685333pt;}
.ws34{word-spacing:8.154667pt;}
.ws7d{word-spacing:8.389333pt;}
.ws67{word-spacing:8.976000pt;}
._7{margin-left:-7.488000pt;}
._6{margin-left:-5.733333pt;}
._4{margin-left:-4.608000pt;}
._5{margin-left:-3.605333pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-0.912000pt;}
._3{width:1.402667pt;}
._8{width:3.077333pt;}
._a{width:4.784000pt;}
._b{width:5.690667pt;}
._9{width:6.629333pt;}
._c{width:7.600000pt;}
._d{width:8.650667pt;}
._e{width:9.541333pt;}
._2{width:372.154133pt;}
.fs7{font-size:30.933333pt;}
.fs8{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:58.136000pt;}
.y2c{bottom:60.551333pt;}
.y5e{bottom:62.068933pt;}
.y1{bottom:72.536000pt;}
.y3{bottom:84.724400pt;}
.y5d{bottom:107.086533pt;}
.yd8{bottom:113.385867pt;}
.y8c{bottom:113.386000pt;}
.y128{bottom:117.364667pt;}
.ya6{bottom:119.055067pt;}
.y7{bottom:120.044667pt;}
.y5c{bottom:121.486533pt;}
.y8b{bottom:127.786000pt;}
.y127{bottom:131.764667pt;}
.ya5{bottom:133.455067pt;}
.y6{bottom:134.444667pt;}
.y5b{bottom:135.886533pt;}
.yd7{bottom:136.103733pt;}
.y8a{bottom:142.186000pt;}
.y126{bottom:146.164667pt;}
.ya4{bottom:147.855067pt;}
.y5{bottom:148.844667pt;}
.y5a{bottom:150.286533pt;}
.yd6{bottom:153.703733pt;}
.y100{bottom:154.164667pt;}
.y125{bottom:160.564667pt;}
.y4{bottom:163.244667pt;}
.y59{bottom:164.686533pt;}
.yd5{bottom:171.303733pt;}
.y89{bottom:171.764667pt;}
.y124{bottom:174.964667pt;}
.ya3{bottom:176.541733pt;}
.y2a{bottom:185.292000pt;}
.y58{bottom:188.811333pt;}
.yd4{bottom:188.903733pt;}
.y88{bottom:189.364667pt;}
.ya2{bottom:194.141733pt;}
.y29{bottom:202.892000pt;}
.y123{bottom:203.764667pt;}
.y57{bottom:206.411333pt;}
.yd3{bottom:206.503733pt;}
.y87{bottom:206.964667pt;}
.ya1{bottom:211.741733pt;}
.y122{bottom:218.164667pt;}
.y28{bottom:220.492000pt;}
.y56{bottom:224.011333pt;}
.yd2{bottom:224.103733pt;}
.yff{bottom:224.564533pt;}
.y86{bottom:224.564667pt;}
.ya0{bottom:229.341733pt;}
.y121{bottom:232.564667pt;}
.y27{bottom:238.092000pt;}
.y55{bottom:241.611333pt;}
.yd1{bottom:241.703733pt;}
.yfe{bottom:242.164533pt;}
.y85{bottom:242.164667pt;}
.y9f{bottom:246.941733pt;}
.y120{bottom:246.964667pt;}
.y54{bottom:259.211333pt;}
.yd0{bottom:259.303733pt;}
.yfd{bottom:259.764533pt;}
.y84{bottom:259.764667pt;}
.y11f{bottom:261.364667pt;}
.y9e{bottom:264.541733pt;}
.y26{bottom:273.291867pt;}
.y11e{bottom:275.764667pt;}
.y53{bottom:276.811333pt;}
.ycf{bottom:276.903733pt;}
.yfc{bottom:277.364533pt;}
.y83{bottom:277.364667pt;}
.y9d{bottom:282.141733pt;}
.y11d{bottom:290.164667pt;}
.y52{bottom:294.411333pt;}
.yce{bottom:294.503733pt;}
.yfb{bottom:294.964533pt;}
.y82{bottom:294.964667pt;}
.y9c{bottom:299.741733pt;}
.y11c{bottom:304.564667pt;}
.y51{bottom:312.011333pt;}
.ycd{bottom:312.103733pt;}
.y81{bottom:312.564667pt;}
.y9b{bottom:317.341733pt;}
.y11b{bottom:318.964667pt;}
.y25{bottom:324.492000pt;}
.y50{bottom:329.611333pt;}
.ycc{bottom:329.703733pt;}
.yfa{bottom:330.164533pt;}
.y80{bottom:330.164667pt;}
.y11a{bottom:333.364667pt;}
.y9a{bottom:334.941733pt;}
.y4f{bottom:347.211333pt;}
.ycb{bottom:347.303733pt;}
.yf9{bottom:347.764533pt;}
.y7f{bottom:347.764667pt;}
.y99{bottom:352.541733pt;}
.y24{bottom:356.492000pt;}
.y119{bottom:362.164667pt;}
.y4e{bottom:364.811333pt;}
.yca{bottom:364.903733pt;}
.yf8{bottom:365.364533pt;}
.y7e{bottom:365.364667pt;}
.y98{bottom:370.141733pt;}
.y23{bottom:372.492000pt;}
.y118{bottom:376.564667pt;}
.y4d{bottom:382.411333pt;}
.yc9{bottom:382.503733pt;}
.y7d{bottom:382.964667pt;}
.y97{bottom:387.741733pt;}
.y22{bottom:388.492000pt;}
.y117{bottom:390.964667pt;}
.y4c{bottom:400.011333pt;}
.yc8{bottom:400.103733pt;}
.yf7{bottom:400.564533pt;}
.y7c{bottom:400.564667pt;}
.y21{bottom:404.492000pt;}
.y96{bottom:405.341733pt;}
.y116{bottom:405.364667pt;}
.y4b{bottom:417.611333pt;}
.yc7{bottom:417.703733pt;}
.yf6{bottom:418.164533pt;}
.y7b{bottom:418.164667pt;}
.y115{bottom:419.764667pt;}
.y20{bottom:420.492000pt;}
.y95{bottom:422.941733pt;}
.y114{bottom:434.164667pt;}
.y4a{bottom:435.211333pt;}
.yc6{bottom:435.303733pt;}
.yf5{bottom:435.764533pt;}
.y7a{bottom:435.764667pt;}
.y1f{bottom:436.492000pt;}
.y94{bottom:440.541733pt;}
.y113{bottom:448.564667pt;}
.y1e{bottom:452.492000pt;}
.y49{bottom:452.811333pt;}
.yc5{bottom:452.903733pt;}
.yf4{bottom:453.364533pt;}
.y79{bottom:453.364667pt;}
.y93{bottom:458.141733pt;}
.y112{bottom:462.964667pt;}
.y1d{bottom:468.492000pt;}
.y48{bottom:470.411333pt;}
.yc4{bottom:470.503733pt;}
.yf3{bottom:470.964533pt;}
.y78{bottom:470.964667pt;}
.y92{bottom:475.741733pt;}
.y111{bottom:477.364667pt;}
.y47{bottom:488.011333pt;}
.yc3{bottom:488.103733pt;}
.yf2{bottom:488.564533pt;}
.y77{bottom:488.564667pt;}
.y110{bottom:491.764667pt;}
.y46{bottom:505.611333pt;}
.y76{bottom:506.164667pt;}
.y91{bottom:510.941733pt;}
.y1c{bottom:516.492000pt;}
.y10f{bottom:520.564667pt;}
.y45{bottom:523.211333pt;}
.yc2{bottom:523.303733pt;}
.yf1{bottom:523.764533pt;}
.y75{bottom:523.764667pt;}
.y10e{bottom:534.964667pt;}
.y44{bottom:540.811333pt;}
.yc1{bottom:540.903733pt;}
.yf0{bottom:541.364533pt;}
.ye7{bottom:541.364667pt;}
.y1b{bottom:548.492000pt;}
.y10d{bottom:549.364667pt;}
.y43{bottom:558.411333pt;}
.yc0{bottom:558.503733pt;}
.yef{bottom:558.964533pt;}
.y74{bottom:558.964667pt;}
.y10c{bottom:563.764667pt;}
.y1a{bottom:564.492000pt;}
.y42{bottom:576.011333pt;}
.ybf{bottom:576.103733pt;}
.yee{bottom:576.564533pt;}
.ye6{bottom:576.564667pt;}
.y10b{bottom:578.164667pt;}
.y19{bottom:580.492000pt;}
.y10a{bottom:592.564667pt;}
.y41{bottom:593.611333pt;}
.ybe{bottom:593.703733pt;}
.ye5{bottom:594.164667pt;}
.y18{bottom:596.492000pt;}
.y109{bottom:606.964667pt;}
.y40{bottom:611.211333pt;}
.ybd{bottom:611.303733pt;}
.yed{bottom:611.764533pt;}
.y73{bottom:611.764667pt;}
.y17{bottom:612.492000pt;}
.y108{bottom:621.364667pt;}
.y16{bottom:628.492000pt;}
.ybc{bottom:628.903733pt;}
.yec{bottom:629.364533pt;}
.y72{bottom:629.364667pt;}
.y107{bottom:635.764667pt;}
.y15{bottom:644.492000pt;}
.y3f{bottom:646.411333pt;}
.ybb{bottom:646.503733pt;}
.yeb{bottom:646.964533pt;}
.y71{bottom:646.964667pt;}
.y106{bottom:650.164667pt;}
.y14{bottom:660.492000pt;}
.yba{bottom:664.103733pt;}
.y70{bottom:664.564667pt;}
.y140{bottom:669.608000pt;}
.y13{bottom:676.492000pt;}
.y105{bottom:678.964667pt;}
.yb9{bottom:681.703733pt;}
.yea{bottom:682.164533pt;}
.y6f{bottom:682.164667pt;}
.y13f{bottom:684.008000pt;}
.y104{bottom:693.364667pt;}
.y13e{bottom:698.408000pt;}
.y3e{bottom:699.211333pt;}
.yb8{bottom:699.303733pt;}
.ye9{bottom:699.764533pt;}
.y6e{bottom:699.764667pt;}
.y103{bottom:707.764667pt;}
.y13d{bottom:712.808000pt;}
.y3d{bottom:716.811333pt;}
.yb7{bottom:716.903733pt;}
.ye8{bottom:717.364533pt;}
.y6d{bottom:717.364667pt;}
.y12{bottom:724.492000pt;}
.y13c{bottom:727.208000pt;}
.y3c{bottom:734.411333pt;}
.yb6{bottom:734.503733pt;}
.ye4{bottom:734.964533pt;}
.y6c{bottom:734.964667pt;}
.y102{bottom:736.564667pt;}
.y11{bottom:740.492000pt;}
.y13b{bottom:741.608000pt;}
.y3b{bottom:752.011333pt;}
.yb5{bottom:752.103733pt;}
.ye3{bottom:752.564533pt;}
.y6b{bottom:752.564667pt;}
.y13a{bottom:756.008000pt;}
.y10{bottom:756.492000pt;}
.y3a{bottom:769.611333pt;}
.yb4{bottom:769.703733pt;}
.ye2{bottom:770.164533pt;}
.y6a{bottom:770.164667pt;}
.y139{bottom:770.408000pt;}
.yf{bottom:772.492000pt;}
.y138{bottom:784.808000pt;}
.y39{bottom:787.211333pt;}
.yb3{bottom:787.303733pt;}
.ye1{bottom:787.764533pt;}
.y101{bottom:787.764667pt;}
.y137{bottom:799.208000pt;}
.y38{bottom:804.811333pt;}
.yb2{bottom:804.903733pt;}
.ye0{bottom:805.364533pt;}
.y69{bottom:805.364667pt;}
.y136{bottom:813.608000pt;}
.ye{bottom:820.492000pt;}
.y37{bottom:822.411333pt;}
.yb1{bottom:822.503733pt;}
.ydf{bottom:822.964533pt;}
.y68{bottom:822.964667pt;}
.y135{bottom:828.008000pt;}
.y36{bottom:840.011333pt;}
.yb0{bottom:840.103733pt;}
.yde{bottom:840.564533pt;}
.y67{bottom:840.564667pt;}
.y134{bottom:842.408000pt;}
.y133{bottom:856.808000pt;}
.y35{bottom:857.611333pt;}
.yaf{bottom:857.703733pt;}
.ydd{bottom:858.164533pt;}
.y66{bottom:858.164667pt;}
.yd{bottom:862.092000pt;}
.y132{bottom:871.208000pt;}
.y34{bottom:875.211333pt;}
.yae{bottom:875.303733pt;}
.ydc{bottom:875.764533pt;}
.y65{bottom:875.764667pt;}
.yc{bottom:884.492000pt;}
.y131{bottom:885.608000pt;}
.y33{bottom:892.811333pt;}
.yad{bottom:892.903733pt;}
.ydb{bottom:893.364533pt;}
.y64{bottom:893.364667pt;}
.y130{bottom:900.008000pt;}
.yb{bottom:906.892000pt;}
.y32{bottom:910.411333pt;}
.yac{bottom:910.503733pt;}
.yda{bottom:910.964533pt;}
.y63{bottom:910.964667pt;}
.y12f{bottom:914.408000pt;}
.y31{bottom:928.011333pt;}
.yab{bottom:928.103733pt;}
.yd9{bottom:928.564533pt;}
.y12e{bottom:928.808000pt;}
.y12d{bottom:943.208000pt;}
.y90{bottom:944.250667pt;}
.y30{bottom:945.611333pt;}
.yaa{bottom:945.703733pt;}
.y62{bottom:946.164533pt;}
.ya{bottom:951.692000pt;}
.y12c{bottom:957.608000pt;}
.y8f{bottom:961.850667pt;}
.y2f{bottom:963.211333pt;}
.ya9{bottom:963.303733pt;}
.y61{bottom:963.764533pt;}
.y12b{bottom:972.008000pt;}
.y9{bottom:974.092000pt;}
.y8e{bottom:979.450667pt;}
.y2e{bottom:980.811333pt;}
.ya8{bottom:980.903733pt;}
.y60{bottom:981.364533pt;}
.y12a{bottom:986.408000pt;}
.y8{bottom:996.492000pt;}
.y8d{bottom:997.050667pt;}
.y2d{bottom:998.411333pt;}
.ya7{bottom:998.503733pt;}
.y5f{bottom:998.964533pt;}
.y129{bottom:1000.808000pt;}
.y2b{bottom:1058.471733pt;}
.h4{height:30.378667pt;}
.h2{height:34.176000pt;}
.he{height:42.117188pt;}
.hf{height:42.234375pt;}
.h10{height:45.568000pt;}
.h9{height:46.796875pt;}
.ha{height:46.927083pt;}
.h8{height:47.369792pt;}
.hc{height:51.476562pt;}
.h11{height:51.477096pt;}
.h12{height:51.619792pt;}
.h13{height:52.106771pt;}
.hb{height:56.156250pt;}
.h7{height:56.843750pt;}
.h3{height:61.299733pt;}
.h6{height:65.697917pt;}
.h5{height:66.208333pt;}
.hd{height:82.114667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:53.193867pt;}
.x5{left:94.483467pt;}
.x8{left:97.437733pt;}
.x16{left:104.656933pt;}
.x10{left:108.496933pt;}
.xe{left:113.421467pt;}
.x6{left:127.323067pt;}
.x4{left:132.283467pt;}
.x7{left:134.976400pt;}
.xa{left:140.912400pt;}
.xb{left:142.797733pt;}
.x9{left:149.181733pt;}
.x13{left:156.355200pt;}
.xc{left:200.647200pt;}
.xf{left:201.720133pt;}
.x14{left:206.150400pt;}
.x2{left:209.037333pt;}
.x1{left:271.509333pt;}
.xd{left:315.520267pt;}
.x17{left:347.208400pt;}
.x11{left:357.064133pt;}
.x15{left:374.356267pt;}
.x18{left:673.475867pt;}
.x12{left:677.315867pt;}
}




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