
    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_0e47980cb1d958a40a546b59.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_48235826c96460fdd570f342.woff')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_9a196f8b1e1bd233c13508aa.woff')format("woff");}.ff3{font-family:ff3;line-height:1.124000;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_40f8e31b307a61c7900b26de.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_cf488525fb544d44e96d1075.woff')format("woff");}.ff5{font-family:ff5;line-height:1.050000;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_0e47980cb1d958a40a546b59.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_9a196f8b1e1bd233c13508aa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.124000;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_bec27171e69011ba9a9e4674.woff')format("woff");}.ff8{font-family:ff8;line-height:1.077000;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_0a624120299949847ec9b3f1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_8558baa401575dcf8bb5bb7f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0e47980cb1d958a40a546b59.woff')format("woff");}.ffb{font-family:ffb;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9a196f8b1e1bd233c13508aa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.124000;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;}
.m3{transform:matrix(0.240410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240410,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.290641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290641,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.971400px;}
.ls3{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.396000px;}
.ls2{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.264000px;}
.ls9{letter-spacing:-0.132000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1b{word-spacing:-57.790095px;}
.ws4{word-spacing:-56.505075px;}
.ws0{word-spacing:-29.700000px;}
.ws5{word-spacing:-15.624000px;}
.ws69{word-spacing:-14.982000px;}
.ws99{word-spacing:-14.586000px;}
.ws98{word-spacing:-14.190000px;}
.ws1{word-spacing:-13.467300px;}
.ws2{word-spacing:-9.696000px;}
.ws30{word-spacing:-4.620000px;}
.ws9e{word-spacing:-3.762000px;}
.ws8b{word-spacing:-3.366000px;}
.wsa3{word-spacing:-3.300000px;}
.ws9d{word-spacing:-3.168000px;}
.ws44{word-spacing:-3.102000px;}
.wsa7{word-spacing:-3.036000px;}
.wsac{word-spacing:-2.970000px;}
.ws4f{word-spacing:-2.838000px;}
.ws15{word-spacing:-2.772000px;}
.ws7f{word-spacing:-2.508000px;}
.ws42{word-spacing:-2.376000px;}
.ws43{word-spacing:-2.178000px;}
.ws77{word-spacing:-1.980000px;}
.ws8f{word-spacing:-1.914000px;}
.ws2a{word-spacing:-1.848000px;}
.ws73{word-spacing:-1.782000px;}
.ws2b{word-spacing:-1.518000px;}
.ws6e{word-spacing:-1.452000px;}
.ws45{word-spacing:-1.254000px;}
.ws1f{word-spacing:-1.188000px;}
.ws54{word-spacing:-1.122000px;}
.ws2f{word-spacing:-1.056000px;}
.ws8d{word-spacing:-0.924000px;}
.ws50{word-spacing:-0.858000px;}
.ws16{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.726000px;}
.ws20{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.594000px;}
.ws4c{word-spacing:-0.528000px;}
.ws4b{word-spacing:-0.462000px;}
.ws5d{word-spacing:-0.396000px;}
.ws9f{word-spacing:-0.330000px;}
.ws7b{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.198000px;}
.wsf{word-spacing:-0.132000px;}
.wsb0{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws47{word-spacing:0.066000px;}
.ws6b{word-spacing:0.264000px;}
.ws72{word-spacing:0.330000px;}
.ws6f{word-spacing:0.396000px;}
.ws23{word-spacing:0.462000px;}
.ws66{word-spacing:0.528000px;}
.ws3e{word-spacing:0.594000px;}
.ws37{word-spacing:0.660000px;}
.wsa{word-spacing:0.726000px;}
.ws29{word-spacing:0.792000px;}
.ws7c{word-spacing:0.858000px;}
.ws2c{word-spacing:1.188000px;}
.ws4e{word-spacing:1.320000px;}
.ws31{word-spacing:1.386000px;}
.ws68{word-spacing:1.452000px;}
.ws3f{word-spacing:1.518000px;}
.ws4d{word-spacing:1.584000px;}
.ws2d{word-spacing:1.650000px;}
.ws63{word-spacing:1.716000px;}
.ws5e{word-spacing:1.782000px;}
.wsd{word-spacing:1.914000px;}
.ws1d{word-spacing:1.980000px;}
.wse{word-spacing:2.046000px;}
.ws8c{word-spacing:2.178000px;}
.ws3c{word-spacing:2.244000px;}
.ws53{word-spacing:2.310000px;}
.ws4a{word-spacing:2.442000px;}
.ws39{word-spacing:2.508000px;}
.ws41{word-spacing:2.574000px;}
.wsb{word-spacing:2.640000px;}
.ws60{word-spacing:2.706000px;}
.ws46{word-spacing:2.838000px;}
.ws5c{word-spacing:2.904000px;}
.ws34{word-spacing:3.036000px;}
.ws13{word-spacing:3.168000px;}
.ws6d{word-spacing:3.300000px;}
.ws62{word-spacing:3.366000px;}
.ws65{word-spacing:3.432000px;}
.ws67{word-spacing:3.498000px;}
.ws12{word-spacing:3.564000px;}
.ws83{word-spacing:3.630000px;}
.wsa4{word-spacing:3.894000px;}
.wsa0{word-spacing:4.026000px;}
.ws5b{word-spacing:4.092000px;}
.ws36{word-spacing:4.224000px;}
.ws8{word-spacing:4.290000px;}
.ws61{word-spacing:4.356000px;}
.ws8a{word-spacing:4.422000px;}
.ws74{word-spacing:4.488000px;}
.ws14{word-spacing:4.554000px;}
.wsa6{word-spacing:4.686000px;}
.ws1e{word-spacing:4.752000px;}
.ws24{word-spacing:4.818000px;}
.ws49{word-spacing:4.884000px;}
.ws56{word-spacing:5.082000px;}
.ws21{word-spacing:5.148000px;}
.ws89{word-spacing:5.214000px;}
.ws3a{word-spacing:5.280000px;}
.ws38{word-spacing:5.478000px;}
.ws51{word-spacing:5.610000px;}
.ws40{word-spacing:5.676000px;}
.ws93{word-spacing:5.742000px;}
.ws11{word-spacing:5.808000px;}
.ws92{word-spacing:5.874000px;}
.ws71{word-spacing:5.940000px;}
.ws84{word-spacing:6.006000px;}
.ws57{word-spacing:6.072000px;}
.ws64{word-spacing:6.138000px;}
.ws85{word-spacing:6.204000px;}
.ws7e{word-spacing:6.534000px;}
.ws33{word-spacing:6.600000px;}
.ws32{word-spacing:6.666000px;}
.ws59{word-spacing:6.798000px;}
.ws9c{word-spacing:6.864000px;}
.ws3b{word-spacing:6.930000px;}
.wsc{word-spacing:6.996000px;}
.ws19{word-spacing:7.062000px;}
.ws5a{word-spacing:7.260000px;}
.wsa8{word-spacing:7.326000px;}
.ws27{word-spacing:7.392000px;}
.wsa1{word-spacing:7.458000px;}
.ws2e{word-spacing:7.524000px;}
.ws18{word-spacing:7.590000px;}
.ws7{word-spacing:7.788000px;}
.ws5f{word-spacing:7.854000px;}
.ws3d{word-spacing:7.920000px;}
.wsa5{word-spacing:7.986000px;}
.ws6c{word-spacing:8.250000px;}
.ws10{word-spacing:8.316000px;}
.ws70{word-spacing:8.448000px;}
.ws55{word-spacing:8.514000px;}
.ws94{word-spacing:8.646000px;}
.ws6a{word-spacing:8.844000px;}
.ws76{word-spacing:8.976000px;}
.ws58{word-spacing:9.042000px;}
.ws52{word-spacing:9.174000px;}
.ws48{word-spacing:9.438000px;}
.ws95{word-spacing:9.504000px;}
.ws96{word-spacing:9.636000px;}
.ws82{word-spacing:10.098000px;}
.ws80{word-spacing:10.494000px;}
.ws7a{word-spacing:10.560000px;}
.ws90{word-spacing:10.626000px;}
.ws81{word-spacing:10.956000px;}
.wsa2{word-spacing:11.154000px;}
.ws75{word-spacing:11.220000px;}
.ws26{word-spacing:11.286000px;}
.ws7d{word-spacing:11.352000px;}
.ws78{word-spacing:11.550000px;}
.ws97{word-spacing:11.616000px;}
.ws91{word-spacing:11.748000px;}
.ws8e{word-spacing:11.880000px;}
.ws88{word-spacing:12.078000px;}
.ws1c{word-spacing:12.342000px;}
.wsb3{word-spacing:12.474000px;}
.ws9a{word-spacing:13.002000px;}
.ws87{word-spacing:13.134000px;}
.ws79{word-spacing:13.596000px;}
.wsad{word-spacing:13.992000px;}
.ws1a{word-spacing:14.058000px;}
.ws28{word-spacing:14.916000px;}
.ws25{word-spacing:14.982000px;}
.ws86{word-spacing:16.566000px;}
.wsb1{word-spacing:17.754000px;}
.ws6{word-spacing:18.084000px;}
.ws9b{word-spacing:19.800000px;}
.ws17{word-spacing:21.516000px;}
.wsb2{word-spacing:21.714000px;}
.wsab{word-spacing:22.374000px;}
.wsaf{word-spacing:24.288000px;}
.wsae{word-spacing:34.914000px;}
.wsaa{word-spacing:47.388000px;}
.wsa9{word-spacing:56.166000px;}
._6{margin-left:-10.972800px;}
._a{margin-left:-9.689400px;}
._7{margin-left:-7.660800px;}
._b{margin-left:-6.468000px;}
._1{margin-left:-5.400000px;}
._0{margin-left:-3.790800px;}
._5{margin-left:-2.342400px;}
._3{margin-left:-1.252800px;}
._2{width:1.195200px;}
._8{width:2.704800px;}
._9{width:23.329800px;}
._4{width:50.256000px;}
._c{width:67.278000px;}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(68,65,65);}
.fc1{color:rgb(107,56,79);}
.fc0{color:rgb(111,36,42);}
.fsc{font-size:18.018600px;}
.fs7{font-size:19.374000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs6{font-size:123.322800px;}
.fsb{font-size:126.127200px;}
.fs5{font-size:205.473000px;}
.fsa{font-size:210.145800px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.779550px;}
.y92{bottom:84.884250px;}
.yfe{bottom:85.030200px;}
.y19{bottom:85.039500px;}
.yb6{bottom:85.053000px;}
.ydb{bottom:85.082850px;}
.y6b{bottom:85.313250px;}
.y42{bottom:88.876500px;}
.y91{bottom:104.750250px;}
.yb5{bottom:105.100500px;}
.yda{bottom:105.163350px;}
.yfd{bottom:105.556200px;}
.y6a{bottom:105.690750px;}
.y41{bottom:108.676500px;}
.y90{bottom:124.616250px;}
.yb4{bottom:125.148000px;}
.yd9{bottom:125.243850px;}
.y69{bottom:126.068250px;}
.yfc{bottom:126.082200px;}
.y40{bottom:128.476500px;}
.y8f{bottom:144.482250px;}
.yb3{bottom:145.195500px;}
.yd8{bottom:145.324350px;}
.y68{bottom:146.445750px;}
.y3f{bottom:148.276500px;}
.yfb{bottom:155.098200px;}
.y8e{bottom:164.348250px;}
.yd7{bottom:165.404850px;}
.y67{bottom:166.823250px;}
.y3e{bottom:168.076500px;}
.yb2{bottom:173.757000px;}
.yfa{bottom:175.624200px;}
.y8d{bottom:184.214250px;}
.yd6{bottom:185.485350px;}
.y66{bottom:187.200750px;}
.yb1{bottom:193.804500px;}
.yf9{bottom:196.150200px;}
.y3d{bottom:200.632350px;}
.y8c{bottom:204.080250px;}
.yd5{bottom:205.565850px;}
.y65{bottom:207.578250px;}
.yb0{bottom:213.852000px;}
.y18{bottom:215.643750px;}
.y11b{bottom:217.619850px;}
.y8b{bottom:223.946250px;}
.yf8{bottom:225.166050px;}
.yd4{bottom:225.646350px;}
.y3c{bottom:227.788350px;}
.y64{bottom:227.955750px;}
.yaf{bottom:233.899500px;}
.y11a{bottom:237.122850px;}
.y17{bottom:241.275750px;}
.y3b{bottom:242.188350px;}
.y8a{bottom:243.812250px;}
.yf7{bottom:245.692050px;}
.yd3{bottom:245.726850px;}
.y63{bottom:248.333250px;}
.yae{bottom:253.947000px;}
.y16{bottom:256.275750px;}
.y3a{bottom:256.588350px;}
.y89{bottom:263.678250px;}
.y119{bottom:265.120800px;}
.yd2{bottom:265.807350px;}
.yf6{bottom:266.218050px;}
.y62{bottom:268.710750px;}
.y15{bottom:271.275750px;}
.yad{bottom:273.994500px;}
.y39{bottom:279.492300px;}
.y88{bottom:283.544250px;}
.y118{bottom:284.623800px;}
.yd1{bottom:285.887850px;}
.y14{bottom:286.275750px;}
.y61{bottom:289.088250px;}
.yac{bottom:294.042000px;}
.yf5{bottom:295.243350px;}
.y13{bottom:301.275750px;}
.y87{bottom:303.410250px;}
.y117{bottom:304.126800px;}
.yd0{bottom:305.968350px;}
.y60{bottom:309.465750px;}
.y12{bottom:316.275750px;}
.yab{bottom:318.360450px;}
.y38{bottom:322.352100px;}
.y86{bottom:323.276250px;}
.ycf{bottom:326.048850px;}
.y5f{bottom:329.843250px;}
.y116{bottom:332.121750px;}
.yaa{bottom:338.407950px;}
.yf4{bottom:339.083250px;}
.y11{bottom:341.907750px;}
.y37{bottom:342.152100px;}
.y85{bottom:343.142250px;}
.yce{bottom:346.129350px;}
.y5e{bottom:350.220750px;}
.y115{bottom:351.624750px;}
.ya9{bottom:358.455450px;}
.yf3{bottom:359.906250px;}
.y36{bottom:361.952100px;}
.y84{bottom:363.008250px;}
.ycd{bottom:366.209850px;}
.y10{bottom:367.539750px;}
.y5d{bottom:370.598250px;}
.y114{bottom:371.127750px;}
.ya8{bottom:378.502950px;}
.yf2{bottom:380.729250px;}
.y35{bottom:381.752100px;}
.y83{bottom:382.874250px;}
.ycc{bottom:386.290350px;}
.y113{bottom:390.630750px;}
.y5c{bottom:390.975750px;}
.yf{bottom:393.171750px;}
.ya7{bottom:398.550450px;}
.y34{bottom:401.552100px;}
.yf1{bottom:401.552250px;}
.y82{bottom:402.740250px;}
.ycb{bottom:406.370850px;}
.ye{bottom:408.171750px;}
.y5b{bottom:411.353250px;}
.ya6{bottom:418.597950px;}
.y112{bottom:418.631700px;}
.y33{bottom:421.352100px;}
.yf0{bottom:422.375250px;}
.y81{bottom:422.606250px;}
.yd{bottom:423.171750px;}
.yca{bottom:426.451350px;}
.y5a{bottom:431.730750px;}
.y111{bottom:438.134700px;}
.yc{bottom:438.171750px;}
.ya5{bottom:438.645450px;}
.y32{bottom:441.152100px;}
.y80{bottom:442.472250px;}
.yef{bottom:443.198250px;}
.yc9{bottom:446.531850px;}
.y59{bottom:452.108250px;}
.yb{bottom:453.171750px;}
.ya4{bottom:458.692950px;}
.y31{bottom:460.952100px;}
.y7f{bottom:462.338250px;}
.yee{bottom:464.021250px;}
.y110{bottom:466.135650px;}
.yc8{bottom:466.612350px;}
.ya{bottom:468.171750px;}
.y58{bottom:472.485750px;}
.y30{bottom:480.752100px;}
.y7e{bottom:482.204250px;}
.y9{bottom:483.171750px;}
.yed{bottom:484.844250px;}
.y10f{bottom:485.638650px;}
.yc7{bottom:486.692850px;}
.ya3{bottom:487.272750px;}
.y57{bottom:492.863250px;}
.y2f{bottom:500.552100px;}
.y7d{bottom:502.070250px;}
.yec{bottom:505.667250px;}
.yc6{bottom:506.773350px;}
.ya2{bottom:507.320250px;}
.y8{bottom:508.803750px;}
.y56{bottom:513.240750px;}
.y10e{bottom:513.633450px;}
.y2e{bottom:520.352100px;}
.y7c{bottom:521.936250px;}
.yeb{bottom:526.490250px;}
.ya1{bottom:527.367750px;}
.y10d{bottom:533.136450px;}
.y55{bottom:533.618250px;}
.yc5{bottom:535.359900px;}
.y2d{bottom:540.152100px;}
.y7b{bottom:541.802250px;}
.yea{bottom:547.313250px;}
.ya0{bottom:547.415250px;}
.y10c{bottom:552.639450px;}
.y54{bottom:553.995750px;}
.y2c{bottom:559.952100px;}
.y7a{bottom:561.668250px;}
.y9f{bottom:567.462750px;}
.ye9{bottom:568.136250px;}
.y10b{bottom:572.142450px;}
.y53{bottom:574.373250px;}
.yc4{bottom:578.531250px;}
.y2b{bottom:579.752100px;}
.y79{bottom:581.534250px;}
.y9e{bottom:587.510250px;}
.ye8{bottom:588.959250px;}
.y52{bottom:594.750750px;}
.y7{bottom:596.087100px;}
.yc3{bottom:598.611750px;}
.y2a{bottom:599.552100px;}
.y10a{bottom:600.134550px;}
.y78{bottom:601.400250px;}
.y9d{bottom:607.557750px;}
.ye7{bottom:609.782250px;}
.y6{bottom:614.087100px;}
.y51{bottom:615.128250px;}
.yc2{bottom:618.692250px;}
.y29{bottom:619.352100px;}
.y109{bottom:619.637550px;}
.y77{bottom:621.266250px;}
.y9c{bottom:627.605250px;}
.ye6{bottom:630.605250px;}
.y50{bottom:635.505750px;}
.yc1{bottom:638.772750px;}
.y108{bottom:639.140550px;}
.y28{bottom:639.152100px;}
.y76{bottom:641.132250px;}
.y9b{bottom:647.652750px;}
.ye5{bottom:651.428250px;}
.y4f{bottom:655.883250px;}
.y107{bottom:658.643550px;}
.yc0{bottom:658.853250px;}
.y27{bottom:658.952100px;}
.y75{bottom:660.998250px;}
.y9a{bottom:667.700250px;}
.ye4{bottom:672.251250px;}
.y4e{bottom:676.260750px;}
.y106{bottom:678.146550px;}
.y26{bottom:678.752100px;}
.ybf{bottom:678.933750px;}
.y74{bottom:680.864250px;}
.y5{bottom:687.362850px;}
.y99{bottom:687.747750px;}
.ye3{bottom:693.074250px;}
.y4d{bottom:696.638250px;}
.y25{bottom:698.552100px;}
.ybe{bottom:699.014250px;}
.y73{bottom:700.730250px;}
.y105{bottom:706.147350px;}
.y98{bottom:707.795250px;}
.ye2{bottom:713.897250px;}
.y4c{bottom:717.015750px;}
.y24{bottom:718.352100px;}
.ybd{bottom:719.094750px;}
.y72{bottom:720.596250px;}
.y4{bottom:722.780400px;}
.y104{bottom:725.650350px;}
.ye1{bottom:734.720250px;}
.y97{bottom:736.349100px;}
.y4b{bottom:737.393250px;}
.ybc{bottom:739.175250px;}
.y71{bottom:740.462250px;}
.y23{bottom:750.907950px;}
.y103{bottom:753.651300px;}
.y3{bottom:755.180400px;}
.ye0{bottom:755.543250px;}
.y4a{bottom:757.770750px;}
.ybb{bottom:759.255750px;}
.y70{bottom:760.328250px;}
.y102{bottom:773.154300px;}
.ydf{bottom:776.366250px;}
.y22{bottom:778.063950px;}
.y49{bottom:778.148250px;}
.yba{bottom:779.336250px;}
.y96{bottom:779.468250px;}
.y6f{bottom:780.194250px;}
.y2{bottom:787.580400px;}
.y21{bottom:792.463950px;}
.yde{bottom:797.189250px;}
.y48{bottom:798.525750px;}
.yb9{bottom:799.416750px;}
.y95{bottom:799.515750px;}
.y6e{bottom:800.060250px;}
.y101{bottom:801.149250px;}
.y20{bottom:806.863950px;}
.ydd{bottom:818.012250px;}
.y47{bottom:818.903250px;}
.yb8{bottom:819.497250px;}
.y94{bottom:819.563250px;}
.y6d{bottom:819.926250px;}
.y100{bottom:820.652250px;}
.y1f{bottom:821.263950px;}
.y1e{bottom:835.663950px;}
.ydc{bottom:838.835250px;}
.y46{bottom:839.280750px;}
.yb7{bottom:839.577750px;}
.y93{bottom:839.610750px;}
.y6c{bottom:839.792250px;}
.yff{bottom:840.155250px;}
.y1d{bottom:858.567750px;}
.y45{bottom:859.658250px;}
.y1b{bottom:887.422350px;}
.y43{bottom:887.432850px;}
.y1a{bottom:889.269300px;}
.y1c{bottom:905.170500px;}
.y44{bottom:905.967000px;}
.he{height:16.577112px;}
.h9{height:17.824080px;}
.h6{height:34.080000px;}
.hb{height:34.272000px;}
.h7{height:39.792000px;}
.h2{height:43.054688px;}
.h5{height:53.818359px;}
.hc{height:53.988000px;}
.hf{height:54.978000px;}
.ha{height:59.976000px;}
.h4{height:77.280000px;}
.h3{height:103.248000px;}
.h8{height:189.035160px;}
.hd{height:193.334136px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:671.811000px;}
.w1{width:672.000000px;}
.x0{left:0.000000px;}
.x4{left:62.016900px;}
.x6{left:63.779550px;}
.x2{left:85.039350px;}
.x5{left:93.671400px;}
.x15{left:106.291350px;}
.x18{left:112.039350px;}
.x16{left:127.559100px;}
.x3{left:197.716500px;}
.xf{left:206.161650px;}
.xa{left:207.923550px;}
.xd{left:218.968500px;}
.x8{left:221.435550px;}
.xb{left:223.895550px;}
.xe{left:228.733650px;}
.x9{left:229.907550px;}
.x7{left:262.367550px;}
.x10{left:271.681650px;}
.x12{left:380.058900px;}
.x13{left:483.677850px;}
.xc{left:488.663550px;}
.x11{left:494.017650px;}
.x14{left:515.421000px;}
.x1{left:595.779450px;}
.x17{left:598.949400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.863467pt;}
.ls3{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.352000pt;}
.ls2{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.234667pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1b{word-spacing:-51.368973pt;}
.ws4{word-spacing:-50.226733pt;}
.ws0{word-spacing:-26.400000pt;}
.ws5{word-spacing:-13.888000pt;}
.ws69{word-spacing:-13.317333pt;}
.ws99{word-spacing:-12.965333pt;}
.ws98{word-spacing:-12.613333pt;}
.ws1{word-spacing:-11.970933pt;}
.ws2{word-spacing:-8.618667pt;}
.ws30{word-spacing:-4.106667pt;}
.ws9e{word-spacing:-3.344000pt;}
.ws8b{word-spacing:-2.992000pt;}
.wsa3{word-spacing:-2.933333pt;}
.ws9d{word-spacing:-2.816000pt;}
.ws44{word-spacing:-2.757333pt;}
.wsa7{word-spacing:-2.698667pt;}
.wsac{word-spacing:-2.640000pt;}
.ws4f{word-spacing:-2.522667pt;}
.ws15{word-spacing:-2.464000pt;}
.ws7f{word-spacing:-2.229333pt;}
.ws42{word-spacing:-2.112000pt;}
.ws43{word-spacing:-1.936000pt;}
.ws77{word-spacing:-1.760000pt;}
.ws8f{word-spacing:-1.701333pt;}
.ws2a{word-spacing:-1.642667pt;}
.ws73{word-spacing:-1.584000pt;}
.ws2b{word-spacing:-1.349333pt;}
.ws6e{word-spacing:-1.290667pt;}
.ws45{word-spacing:-1.114667pt;}
.ws1f{word-spacing:-1.056000pt;}
.ws54{word-spacing:-0.997333pt;}
.ws2f{word-spacing:-0.938667pt;}
.ws8d{word-spacing:-0.821333pt;}
.ws50{word-spacing:-0.762667pt;}
.ws16{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.645333pt;}
.ws20{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.528000pt;}
.ws4c{word-spacing:-0.469333pt;}
.ws4b{word-spacing:-0.410667pt;}
.ws5d{word-spacing:-0.352000pt;}
.ws9f{word-spacing:-0.293333pt;}
.ws7b{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.176000pt;}
.wsf{word-spacing:-0.117333pt;}
.wsb0{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws47{word-spacing:0.058667pt;}
.ws6b{word-spacing:0.234667pt;}
.ws72{word-spacing:0.293333pt;}
.ws6f{word-spacing:0.352000pt;}
.ws23{word-spacing:0.410667pt;}
.ws66{word-spacing:0.469333pt;}
.ws3e{word-spacing:0.528000pt;}
.ws37{word-spacing:0.586667pt;}
.wsa{word-spacing:0.645333pt;}
.ws29{word-spacing:0.704000pt;}
.ws7c{word-spacing:0.762667pt;}
.ws2c{word-spacing:1.056000pt;}
.ws4e{word-spacing:1.173333pt;}
.ws31{word-spacing:1.232000pt;}
.ws68{word-spacing:1.290667pt;}
.ws3f{word-spacing:1.349333pt;}
.ws4d{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.466667pt;}
.ws63{word-spacing:1.525333pt;}
.ws5e{word-spacing:1.584000pt;}
.wsd{word-spacing:1.701333pt;}
.ws1d{word-spacing:1.760000pt;}
.wse{word-spacing:1.818667pt;}
.ws8c{word-spacing:1.936000pt;}
.ws3c{word-spacing:1.994667pt;}
.ws53{word-spacing:2.053333pt;}
.ws4a{word-spacing:2.170667pt;}
.ws39{word-spacing:2.229333pt;}
.ws41{word-spacing:2.288000pt;}
.wsb{word-spacing:2.346667pt;}
.ws60{word-spacing:2.405333pt;}
.ws46{word-spacing:2.522667pt;}
.ws5c{word-spacing:2.581333pt;}
.ws34{word-spacing:2.698667pt;}
.ws13{word-spacing:2.816000pt;}
.ws6d{word-spacing:2.933333pt;}
.ws62{word-spacing:2.992000pt;}
.ws65{word-spacing:3.050667pt;}
.ws67{word-spacing:3.109333pt;}
.ws12{word-spacing:3.168000pt;}
.ws83{word-spacing:3.226667pt;}
.wsa4{word-spacing:3.461333pt;}
.wsa0{word-spacing:3.578667pt;}
.ws5b{word-spacing:3.637333pt;}
.ws36{word-spacing:3.754667pt;}
.ws8{word-spacing:3.813333pt;}
.ws61{word-spacing:3.872000pt;}
.ws8a{word-spacing:3.930667pt;}
.ws74{word-spacing:3.989333pt;}
.ws14{word-spacing:4.048000pt;}
.wsa6{word-spacing:4.165333pt;}
.ws1e{word-spacing:4.224000pt;}
.ws24{word-spacing:4.282667pt;}
.ws49{word-spacing:4.341333pt;}
.ws56{word-spacing:4.517333pt;}
.ws21{word-spacing:4.576000pt;}
.ws89{word-spacing:4.634667pt;}
.ws3a{word-spacing:4.693333pt;}
.ws38{word-spacing:4.869333pt;}
.ws51{word-spacing:4.986667pt;}
.ws40{word-spacing:5.045333pt;}
.ws93{word-spacing:5.104000pt;}
.ws11{word-spacing:5.162667pt;}
.ws92{word-spacing:5.221333pt;}
.ws71{word-spacing:5.280000pt;}
.ws84{word-spacing:5.338667pt;}
.ws57{word-spacing:5.397333pt;}
.ws64{word-spacing:5.456000pt;}
.ws85{word-spacing:5.514667pt;}
.ws7e{word-spacing:5.808000pt;}
.ws33{word-spacing:5.866667pt;}
.ws32{word-spacing:5.925333pt;}
.ws59{word-spacing:6.042667pt;}
.ws9c{word-spacing:6.101333pt;}
.ws3b{word-spacing:6.160000pt;}
.wsc{word-spacing:6.218667pt;}
.ws19{word-spacing:6.277333pt;}
.ws5a{word-spacing:6.453333pt;}
.wsa8{word-spacing:6.512000pt;}
.ws27{word-spacing:6.570667pt;}
.wsa1{word-spacing:6.629333pt;}
.ws2e{word-spacing:6.688000pt;}
.ws18{word-spacing:6.746667pt;}
.ws7{word-spacing:6.922667pt;}
.ws5f{word-spacing:6.981333pt;}
.ws3d{word-spacing:7.040000pt;}
.wsa5{word-spacing:7.098667pt;}
.ws6c{word-spacing:7.333333pt;}
.ws10{word-spacing:7.392000pt;}
.ws70{word-spacing:7.509333pt;}
.ws55{word-spacing:7.568000pt;}
.ws94{word-spacing:7.685333pt;}
.ws6a{word-spacing:7.861333pt;}
.ws76{word-spacing:7.978667pt;}
.ws58{word-spacing:8.037333pt;}
.ws52{word-spacing:8.154667pt;}
.ws48{word-spacing:8.389333pt;}
.ws95{word-spacing:8.448000pt;}
.ws96{word-spacing:8.565333pt;}
.ws82{word-spacing:8.976000pt;}
.ws80{word-spacing:9.328000pt;}
.ws7a{word-spacing:9.386667pt;}
.ws90{word-spacing:9.445333pt;}
.ws81{word-spacing:9.738667pt;}
.wsa2{word-spacing:9.914667pt;}
.ws75{word-spacing:9.973333pt;}
.ws26{word-spacing:10.032000pt;}
.ws7d{word-spacing:10.090667pt;}
.ws78{word-spacing:10.266667pt;}
.ws97{word-spacing:10.325333pt;}
.ws91{word-spacing:10.442667pt;}
.ws8e{word-spacing:10.560000pt;}
.ws88{word-spacing:10.736000pt;}
.ws1c{word-spacing:10.970667pt;}
.wsb3{word-spacing:11.088000pt;}
.ws9a{word-spacing:11.557333pt;}
.ws87{word-spacing:11.674667pt;}
.ws79{word-spacing:12.085333pt;}
.wsad{word-spacing:12.437333pt;}
.ws1a{word-spacing:12.496000pt;}
.ws28{word-spacing:13.258667pt;}
.ws25{word-spacing:13.317333pt;}
.ws86{word-spacing:14.725333pt;}
.wsb1{word-spacing:15.781333pt;}
.ws6{word-spacing:16.074667pt;}
.ws9b{word-spacing:17.600000pt;}
.ws17{word-spacing:19.125333pt;}
.wsb2{word-spacing:19.301333pt;}
.wsab{word-spacing:19.888000pt;}
.wsaf{word-spacing:21.589333pt;}
.wsae{word-spacing:31.034667pt;}
.wsaa{word-spacing:42.122667pt;}
.wsa9{word-spacing:49.925333pt;}
._6{margin-left:-9.753600pt;}
._a{margin-left:-8.612800pt;}
._7{margin-left:-6.809600pt;}
._b{margin-left:-5.749333pt;}
._1{margin-left:-4.800000pt;}
._0{margin-left:-3.369600pt;}
._5{margin-left:-2.082133pt;}
._3{margin-left:-1.113600pt;}
._2{width:1.062400pt;}
._8{width:2.404267pt;}
._9{width:20.737600pt;}
._4{width:44.672000pt;}
._c{width:59.802667pt;}
.fsc{font-size:16.016533pt;}
.fs7{font-size:17.221333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs6{font-size:109.620267pt;}
.fsb{font-size:112.113067pt;}
.fs5{font-size:182.642667pt;}
.fsa{font-size:186.796267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.692933pt;}
.y92{bottom:75.452667pt;}
.yfe{bottom:75.582400pt;}
.y19{bottom:75.590667pt;}
.yb6{bottom:75.602667pt;}
.ydb{bottom:75.629200pt;}
.y6b{bottom:75.834000pt;}
.y42{bottom:79.001333pt;}
.y91{bottom:93.111333pt;}
.yb5{bottom:93.422667pt;}
.yda{bottom:93.478533pt;}
.yfd{bottom:93.827733pt;}
.y6a{bottom:93.947333pt;}
.y41{bottom:96.601333pt;}
.y90{bottom:110.770000pt;}
.yb4{bottom:111.242667pt;}
.yd9{bottom:111.327867pt;}
.y69{bottom:112.060667pt;}
.yfc{bottom:112.073067pt;}
.y40{bottom:114.201333pt;}
.y8f{bottom:128.428667pt;}
.yb3{bottom:129.062667pt;}
.yd8{bottom:129.177200pt;}
.y68{bottom:130.174000pt;}
.y3f{bottom:131.801333pt;}
.yfb{bottom:137.865067pt;}
.y8e{bottom:146.087333pt;}
.yd7{bottom:147.026533pt;}
.y67{bottom:148.287333pt;}
.y3e{bottom:149.401333pt;}
.yb2{bottom:154.450667pt;}
.yfa{bottom:156.110400pt;}
.y8d{bottom:163.746000pt;}
.yd6{bottom:164.875867pt;}
.y66{bottom:166.400667pt;}
.yb1{bottom:172.270667pt;}
.yf9{bottom:174.355733pt;}
.y3d{bottom:178.339867pt;}
.y8c{bottom:181.404667pt;}
.yd5{bottom:182.725200pt;}
.y65{bottom:184.514000pt;}
.yb0{bottom:190.090667pt;}
.y18{bottom:191.683333pt;}
.y11b{bottom:193.439867pt;}
.y8b{bottom:199.063333pt;}
.yf8{bottom:200.147600pt;}
.yd4{bottom:200.574533pt;}
.y3c{bottom:202.478533pt;}
.y64{bottom:202.627333pt;}
.yaf{bottom:207.910667pt;}
.y11a{bottom:210.775867pt;}
.y17{bottom:214.467333pt;}
.y3b{bottom:215.278533pt;}
.y8a{bottom:216.722000pt;}
.yf7{bottom:218.392933pt;}
.yd3{bottom:218.423867pt;}
.y63{bottom:220.740667pt;}
.yae{bottom:225.730667pt;}
.y16{bottom:227.800667pt;}
.y3a{bottom:228.078533pt;}
.y89{bottom:234.380667pt;}
.y119{bottom:235.662933pt;}
.yd2{bottom:236.273200pt;}
.yf6{bottom:236.638267pt;}
.y62{bottom:238.854000pt;}
.y15{bottom:241.134000pt;}
.yad{bottom:243.550667pt;}
.y39{bottom:248.437600pt;}
.y88{bottom:252.039333pt;}
.y118{bottom:252.998933pt;}
.yd1{bottom:254.122533pt;}
.y14{bottom:254.467333pt;}
.y61{bottom:256.967333pt;}
.yac{bottom:261.370667pt;}
.yf5{bottom:262.438533pt;}
.y13{bottom:267.800667pt;}
.y87{bottom:269.698000pt;}
.y117{bottom:270.334933pt;}
.yd0{bottom:271.971867pt;}
.y60{bottom:275.080667pt;}
.y12{bottom:281.134000pt;}
.yab{bottom:282.987067pt;}
.y38{bottom:286.535200pt;}
.y86{bottom:287.356667pt;}
.ycf{bottom:289.821200pt;}
.y5f{bottom:293.194000pt;}
.y116{bottom:295.219333pt;}
.yaa{bottom:300.807067pt;}
.yf4{bottom:301.407333pt;}
.y11{bottom:303.918000pt;}
.y37{bottom:304.135200pt;}
.y85{bottom:305.015333pt;}
.yce{bottom:307.670533pt;}
.y5e{bottom:311.307333pt;}
.y115{bottom:312.555333pt;}
.ya9{bottom:318.627067pt;}
.yf3{bottom:319.916667pt;}
.y36{bottom:321.735200pt;}
.y84{bottom:322.674000pt;}
.ycd{bottom:325.519867pt;}
.y10{bottom:326.702000pt;}
.y5d{bottom:329.420667pt;}
.y114{bottom:329.891333pt;}
.ya8{bottom:336.447067pt;}
.yf2{bottom:338.426000pt;}
.y35{bottom:339.335200pt;}
.y83{bottom:340.332667pt;}
.ycc{bottom:343.369200pt;}
.y113{bottom:347.227333pt;}
.y5c{bottom:347.534000pt;}
.yf{bottom:349.486000pt;}
.ya7{bottom:354.267067pt;}
.y34{bottom:356.935200pt;}
.yf1{bottom:356.935333pt;}
.y82{bottom:357.991333pt;}
.ycb{bottom:361.218533pt;}
.ye{bottom:362.819333pt;}
.y5b{bottom:365.647333pt;}
.ya6{bottom:372.087067pt;}
.y112{bottom:372.117067pt;}
.y33{bottom:374.535200pt;}
.yf0{bottom:375.444667pt;}
.y81{bottom:375.650000pt;}
.yd{bottom:376.152667pt;}
.yca{bottom:379.067867pt;}
.y5a{bottom:383.760667pt;}
.y111{bottom:389.453067pt;}
.yc{bottom:389.486000pt;}
.ya5{bottom:389.907067pt;}
.y32{bottom:392.135200pt;}
.y80{bottom:393.308667pt;}
.yef{bottom:393.954000pt;}
.yc9{bottom:396.917200pt;}
.y59{bottom:401.874000pt;}
.yb{bottom:402.819333pt;}
.ya4{bottom:407.727067pt;}
.y31{bottom:409.735200pt;}
.y7f{bottom:410.967333pt;}
.yee{bottom:412.463333pt;}
.y110{bottom:414.342800pt;}
.yc8{bottom:414.766533pt;}
.ya{bottom:416.152667pt;}
.y58{bottom:419.987333pt;}
.y30{bottom:427.335200pt;}
.y7e{bottom:428.626000pt;}
.y9{bottom:429.486000pt;}
.yed{bottom:430.972667pt;}
.y10f{bottom:431.678800pt;}
.yc7{bottom:432.615867pt;}
.ya3{bottom:433.131333pt;}
.y57{bottom:438.100667pt;}
.y2f{bottom:444.935200pt;}
.y7d{bottom:446.284667pt;}
.yec{bottom:449.482000pt;}
.yc6{bottom:450.465200pt;}
.ya2{bottom:450.951333pt;}
.y8{bottom:452.270000pt;}
.y56{bottom:456.214000pt;}
.y10e{bottom:456.563067pt;}
.y2e{bottom:462.535200pt;}
.y7c{bottom:463.943333pt;}
.yeb{bottom:467.991333pt;}
.ya1{bottom:468.771333pt;}
.y10d{bottom:473.899067pt;}
.y55{bottom:474.327333pt;}
.yc5{bottom:475.875467pt;}
.y2d{bottom:480.135200pt;}
.y7b{bottom:481.602000pt;}
.yea{bottom:486.500667pt;}
.ya0{bottom:486.591333pt;}
.y10c{bottom:491.235067pt;}
.y54{bottom:492.440667pt;}
.y2c{bottom:497.735200pt;}
.y7a{bottom:499.260667pt;}
.y9f{bottom:504.411333pt;}
.ye9{bottom:505.010000pt;}
.y10b{bottom:508.571067pt;}
.y53{bottom:510.554000pt;}
.yc4{bottom:514.250000pt;}
.y2b{bottom:515.335200pt;}
.y79{bottom:516.919333pt;}
.y9e{bottom:522.231333pt;}
.ye8{bottom:523.519333pt;}
.y52{bottom:528.667333pt;}
.y7{bottom:529.855200pt;}
.yc3{bottom:532.099333pt;}
.y2a{bottom:532.935200pt;}
.y10a{bottom:533.452933pt;}
.y78{bottom:534.578000pt;}
.y9d{bottom:540.051333pt;}
.ye7{bottom:542.028667pt;}
.y6{bottom:545.855200pt;}
.y51{bottom:546.780667pt;}
.yc2{bottom:549.948667pt;}
.y29{bottom:550.535200pt;}
.y109{bottom:550.788933pt;}
.y77{bottom:552.236667pt;}
.y9c{bottom:557.871333pt;}
.ye6{bottom:560.538000pt;}
.y50{bottom:564.894000pt;}
.yc1{bottom:567.798000pt;}
.y108{bottom:568.124933pt;}
.y28{bottom:568.135200pt;}
.y76{bottom:569.895333pt;}
.y9b{bottom:575.691333pt;}
.ye5{bottom:579.047333pt;}
.y4f{bottom:583.007333pt;}
.y107{bottom:585.460933pt;}
.yc0{bottom:585.647333pt;}
.y27{bottom:585.735200pt;}
.y75{bottom:587.554000pt;}
.y9a{bottom:593.511333pt;}
.ye4{bottom:597.556667pt;}
.y4e{bottom:601.120667pt;}
.y106{bottom:602.796933pt;}
.y26{bottom:603.335200pt;}
.ybf{bottom:603.496667pt;}
.y74{bottom:605.212667pt;}
.y5{bottom:610.989200pt;}
.y99{bottom:611.331333pt;}
.ye3{bottom:616.066000pt;}
.y4d{bottom:619.234000pt;}
.y25{bottom:620.935200pt;}
.ybe{bottom:621.346000pt;}
.y73{bottom:622.871333pt;}
.y105{bottom:627.686533pt;}
.y98{bottom:629.151333pt;}
.ye2{bottom:634.575333pt;}
.y4c{bottom:637.347333pt;}
.y24{bottom:638.535200pt;}
.ybd{bottom:639.195333pt;}
.y72{bottom:640.530000pt;}
.y4{bottom:642.471467pt;}
.y104{bottom:645.022533pt;}
.ye1{bottom:653.084667pt;}
.y97{bottom:654.532533pt;}
.y4b{bottom:655.460667pt;}
.ybc{bottom:657.044667pt;}
.y71{bottom:658.188667pt;}
.y23{bottom:667.473733pt;}
.y103{bottom:669.912267pt;}
.y3{bottom:671.271467pt;}
.ye0{bottom:671.594000pt;}
.y4a{bottom:673.574000pt;}
.ybb{bottom:674.894000pt;}
.y70{bottom:675.847333pt;}
.y102{bottom:687.248267pt;}
.ydf{bottom:690.103333pt;}
.y22{bottom:691.612400pt;}
.y49{bottom:691.687333pt;}
.yba{bottom:692.743333pt;}
.y96{bottom:692.860667pt;}
.y6f{bottom:693.506000pt;}
.y2{bottom:700.071467pt;}
.y21{bottom:704.412400pt;}
.yde{bottom:708.612667pt;}
.y48{bottom:709.800667pt;}
.yb9{bottom:710.592667pt;}
.y95{bottom:710.680667pt;}
.y6e{bottom:711.164667pt;}
.y101{bottom:712.132667pt;}
.y20{bottom:717.212400pt;}
.ydd{bottom:727.122000pt;}
.y47{bottom:727.914000pt;}
.yb8{bottom:728.442000pt;}
.y94{bottom:728.500667pt;}
.y6d{bottom:728.823333pt;}
.y100{bottom:729.468667pt;}
.y1f{bottom:730.012400pt;}
.y1e{bottom:742.812400pt;}
.ydc{bottom:745.631333pt;}
.y46{bottom:746.027333pt;}
.yb7{bottom:746.291333pt;}
.y93{bottom:746.320667pt;}
.y6c{bottom:746.482000pt;}
.yff{bottom:746.804667pt;}
.y1d{bottom:763.171333pt;}
.y45{bottom:764.140667pt;}
.y1b{bottom:788.819867pt;}
.y43{bottom:788.829200pt;}
.y1a{bottom:790.461600pt;}
.y1c{bottom:804.596000pt;}
.y44{bottom:805.304000pt;}
.he{height:14.735211pt;}
.h9{height:15.843627pt;}
.h6{height:30.293333pt;}
.hb{height:30.464000pt;}
.h7{height:35.370667pt;}
.h2{height:38.270833pt;}
.h5{height:47.838542pt;}
.hc{height:47.989333pt;}
.hf{height:48.869333pt;}
.ha{height:53.312000pt;}
.h4{height:68.693333pt;}
.h3{height:91.776000pt;}
.h8{height:168.031253pt;}
.hd{height:171.852565pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:597.165333pt;}
.w1{width:597.333333pt;}
.x0{left:0.000000pt;}
.x4{left:55.126133pt;}
.x6{left:56.692933pt;}
.x2{left:75.590533pt;}
.x5{left:83.263467pt;}
.x15{left:94.481200pt;}
.x18{left:99.590533pt;}
.x16{left:113.385867pt;}
.x3{left:175.748000pt;}
.xf{left:183.254800pt;}
.xa{left:184.820933pt;}
.xd{left:194.638667pt;}
.x8{left:196.831600pt;}
.xb{left:199.018267pt;}
.xe{left:203.318800pt;}
.x9{left:204.362267pt;}
.x7{left:233.215600pt;}
.x10{left:241.494800pt;}
.x12{left:337.830133pt;}
.x13{left:429.935867pt;}
.xc{left:434.367600pt;}
.x11{left:439.126800pt;}
.x14{left:458.152000pt;}
.x1{left:529.581733pt;}
.x17{left:532.399467pt;}
}




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