
    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_046a64cb661395618d48d6c0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca7f71c7b87a3dd201cd87e4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_80045c416adfcc0f7931d438.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c5825c32d91c2190c379f1de.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_897c8c45a5755be36f222b71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_40b238cc48ce77a27e660829.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4c4c4edb6c6e743704a6d66b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102539;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);}
.v3{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.987000px;}
.ls8{letter-spacing:-1.998000px;}
.ls7{letter-spacing:-1.423686px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.858000px;}
.lsa{letter-spacing:0.932100px;}
.ls5{letter-spacing:1.054200px;}
.lsc{letter-spacing:1.684800px;}
.ls1{letter-spacing:1.890000px;}
.ls3{letter-spacing:2.100000px;}
.ls4{letter-spacing:2.310000px;}
.ls0{letter-spacing:2.940000px;}
.ls9{letter-spacing:4.309800px;}
.ls6{letter-spacing:40.068000px;}
.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;}
}
.ws12{word-spacing:-16.500000px;}
.ws13{word-spacing:-13.500000px;}
.ws68{word-spacing:-11.502000px;}
.ws11{word-spacing:-9.619500px;}
.ws66{word-spacing:-8.745000px;}
.ws67{word-spacing:-8.195814px;}
.ws1{word-spacing:-6.132000px;}
.ws69{word-spacing:-4.818000px;}
.ws9d{word-spacing:-3.564000px;}
.wsb0{word-spacing:-3.366000px;}
.wsb4{word-spacing:-3.300000px;}
.wscb{word-spacing:-3.234000px;}
.wsb3{word-spacing:-3.168000px;}
.wsd8{word-spacing:-3.102000px;}
.wsa8{word-spacing:-3.000000px;}
.wsc4{word-spacing:-2.970000px;}
.ws84{word-spacing:-2.904000px;}
.wsa6{word-spacing:-2.820000px;}
.ws5f{word-spacing:-2.772000px;}
.ws29{word-spacing:-2.640000px;}
.ws97{word-spacing:-2.520000px;}
.ws54{word-spacing:-2.508000px;}
.ws16{word-spacing:-2.376000px;}
.ws3f{word-spacing:-2.310000px;}
.ws99{word-spacing:-2.268000px;}
.ws90{word-spacing:-2.244000px;}
.ws92{word-spacing:-2.178000px;}
.wsb1{word-spacing:-2.112000px;}
.wsb{word-spacing:-2.100000px;}
.ws10{word-spacing:-2.052000px;}
.wsbe{word-spacing:-2.046000px;}
.ws58{word-spacing:-1.980000px;}
.ws28{word-spacing:-1.914000px;}
.ws3{word-spacing:-1.890000px;}
.wsdd{word-spacing:-1.848000px;}
.ws1e{word-spacing:-1.782000px;}
.ws6d{word-spacing:-1.716000px;}
.ws47{word-spacing:-1.650000px;}
.ws1d{word-spacing:-1.584000px;}
.wse{word-spacing:-1.566000px;}
.ws51{word-spacing:-1.452000px;}
.ws2{word-spacing:-1.428000px;}
.ws43{word-spacing:-1.386000px;}
.wsd{word-spacing:-1.350000px;}
.wsaf{word-spacing:-1.320000px;}
.ws20{word-spacing:-1.254000px;}
.wscd{word-spacing:-1.188000px;}
.ws14{word-spacing:-1.122000px;}
.ws1f{word-spacing:-1.056000px;}
.ws39{word-spacing:-0.990000px;}
.wsa7{word-spacing:-0.960000px;}
.ws6f{word-spacing:-0.924000px;}
.ws3a{word-spacing:-0.792000px;}
.ws36{word-spacing:-0.726000px;}
.ws2d{word-spacing:-0.660000px;}
.ws71{word-spacing:-0.594000px;}
.ws32{word-spacing:-0.528000px;}
.ws96{word-spacing:-0.480000px;}
.wsb8{word-spacing:-0.462000px;}
.ws65{word-spacing:-0.432000px;}
.wsd0{word-spacing:-0.396000px;}
.wsd1{word-spacing:-0.330000px;}
.ws9f{word-spacing:-0.264000px;}
.wscc{word-spacing:-0.198000px;}
.ws9b{word-spacing:-0.162000px;}
.ws61{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws33{word-spacing:0.066000px;}
.ws4b{word-spacing:0.132000px;}
.wsb7{word-spacing:0.198000px;}
.ws95{word-spacing:0.240000px;}
.ws57{word-spacing:0.264000px;}
.wsc{word-spacing:0.270000px;}
.ws19{word-spacing:0.330000px;}
.wsdc{word-spacing:0.396000px;}
.ws83{word-spacing:0.462000px;}
.ws5e{word-spacing:0.528000px;}
.ws6e{word-spacing:0.540000px;}
.ws42{word-spacing:0.594000px;}
.wsa5{word-spacing:0.660000px;}
.ws7b{word-spacing:0.726000px;}
.wsbb{word-spacing:0.756000px;}
.ws2b{word-spacing:0.792000px;}
.ws79{word-spacing:0.858000px;}
.ws76{word-spacing:0.924000px;}
.ws59{word-spacing:0.990000px;}
.wsa2{word-spacing:1.026000px;}
.ws35{word-spacing:1.056000px;}
.ws9e{word-spacing:1.122000px;}
.ws1c{word-spacing:1.188000px;}
.wsbc{word-spacing:1.242000px;}
.ws4c{word-spacing:1.254000px;}
.ws34{word-spacing:1.320000px;}
.ws45{word-spacing:1.386000px;}
.ws60{word-spacing:1.452000px;}
.ws78{word-spacing:1.518000px;}
.ws8f{word-spacing:1.584000px;}
.wsba{word-spacing:1.620000px;}
.ws22{word-spacing:1.650000px;}
.wsa1{word-spacing:1.674000px;}
.wsc7{word-spacing:1.716000px;}
.ws26{word-spacing:1.782000px;}
.ws8{word-spacing:1.836000px;}
.ws55{word-spacing:1.848000px;}
.ws94{word-spacing:1.914000px;}
.wscf{word-spacing:1.980000px;}
.ws80{word-spacing:1.998000px;}
.ws3d{word-spacing:2.046000px;}
.wsf{word-spacing:2.106000px;}
.ws63{word-spacing:2.112000px;}
.ws77{word-spacing:2.178000px;}
.ws46{word-spacing:2.244000px;}
.wsd4{word-spacing:2.310000px;}
.ws4{word-spacing:2.376000px;}
.ws4e{word-spacing:2.442000px;}
.ws8e{word-spacing:2.508000px;}
.ws4a{word-spacing:2.574000px;}
.ws7d{word-spacing:2.640000px;}
.wsc3{word-spacing:2.706000px;}
.ws82{word-spacing:2.754000px;}
.wsa0{word-spacing:2.772000px;}
.ws9a{word-spacing:2.808000px;}
.ws1b{word-spacing:2.838000px;}
.ws18{word-spacing:2.904000px;}
.ws70{word-spacing:2.970000px;}
.ws86{word-spacing:3.036000px;}
.wsad{word-spacing:3.078000px;}
.ws52{word-spacing:3.102000px;}
.ws21{word-spacing:3.168000px;}
.ws50{word-spacing:3.234000px;}
.ws62{word-spacing:3.300000px;}
.ws56{word-spacing:3.366000px;}
.ws8a{word-spacing:3.432000px;}
.wsab{word-spacing:3.498000px;}
.ws7c{word-spacing:3.564000px;}
.ws27{word-spacing:3.630000px;}
.ws93{word-spacing:3.696000px;}
.ws7{word-spacing:3.726000px;}
.ws38{word-spacing:3.762000px;}
.wsda{word-spacing:3.828000px;}
.ws91{word-spacing:3.894000px;}
.ws49{word-spacing:3.960000px;}
.ws6c{word-spacing:4.026000px;}
.ws23{word-spacing:4.092000px;}
.ws3e{word-spacing:4.158000px;}
.wsc0{word-spacing:4.224000px;}
.ws6a{word-spacing:4.290000px;}
.ws5a{word-spacing:4.356000px;}
.ws2a{word-spacing:4.422000px;}
.wsaa{word-spacing:4.488000px;}
.wsa4{word-spacing:4.554000px;}
.ws8d{word-spacing:4.620000px;}
.ws7e{word-spacing:4.686000px;}
.ws1a{word-spacing:4.752000px;}
.wsd6{word-spacing:4.884000px;}
.wsc2{word-spacing:5.016000px;}
.ws5c{word-spacing:5.082000px;}
.wsc5{word-spacing:5.148000px;}
.ws37{word-spacing:5.280000px;}
.ws88{word-spacing:5.346000px;}
.ws2c{word-spacing:5.412000px;}
.wsbd{word-spacing:5.544000px;}
.wsd3{word-spacing:5.610000px;}
.ws6{word-spacing:5.616000px;}
.ws81{word-spacing:5.724000px;}
.ws2e{word-spacing:5.742000px;}
.wsa{word-spacing:5.778000px;}
.wsc6{word-spacing:5.808000px;}
.wsa9{word-spacing:5.874000px;}
.wsac{word-spacing:5.886000px;}
.wsb2{word-spacing:5.940000px;}
.wsdb{word-spacing:6.006000px;}
.ws31{word-spacing:6.072000px;}
.ws72{word-spacing:6.102000px;}
.ws3b{word-spacing:6.138000px;}
.ws5{word-spacing:6.156000px;}
.ws98{word-spacing:6.204000px;}
.ws75{word-spacing:6.270000px;}
.wsd9{word-spacing:6.336000px;}
.ws25{word-spacing:6.534000px;}
.ws64{word-spacing:6.588000px;}
.wsb6{word-spacing:6.600000px;}
.ws85{word-spacing:6.666000px;}
.ws24{word-spacing:6.732000px;}
.wsa3{word-spacing:6.750000px;}
.wsb5{word-spacing:6.798000px;}
.ws40{word-spacing:6.864000px;}
.wsb9{word-spacing:6.930000px;}
.wsc1{word-spacing:6.996000px;}
.ws30{word-spacing:7.128000px;}
.ws8b{word-spacing:7.260000px;}
.ws5b{word-spacing:7.326000px;}
.wsca{word-spacing:7.392000px;}
.ws2f{word-spacing:7.524000px;}
.ws44{word-spacing:7.590000px;}
.wsce{word-spacing:7.656000px;}
.ws74{word-spacing:7.722000px;}
.wsc9{word-spacing:7.788000px;}
.ws89{word-spacing:7.986000px;}
.wsc8{word-spacing:8.118000px;}
.ws17{word-spacing:8.184000px;}
.ws4f{word-spacing:8.250000px;}
.wsd5{word-spacing:8.316000px;}
.ws4d{word-spacing:8.382000px;}
.ws9{word-spacing:8.424000px;}
.ws6b{word-spacing:8.448000px;}
.wsae{word-spacing:8.514000px;}
.ws87{word-spacing:8.778000px;}
.ws7f{word-spacing:8.844000px;}
.ws5d{word-spacing:8.910000px;}
.ws8c{word-spacing:8.976000px;}
.ws53{word-spacing:9.042000px;}
.ws73{word-spacing:9.108000px;}
.wsbf{word-spacing:9.174000px;}
.wsd2{word-spacing:9.372000px;}
.ws41{word-spacing:9.438000px;}
.ws9c{word-spacing:9.504000px;}
.ws15{word-spacing:9.702000px;}
.ws48{word-spacing:9.834000px;}
.wsd7{word-spacing:12.276000px;}
.ws7a{word-spacing:13.332000px;}
.ws3c{word-spacing:65.070000px;}
._c{margin-left:-2041.576200px;}
._11{margin-left:-65.070000px;}
._4{margin-left:-10.802400px;}
._1a{margin-left:-9.207000px;}
._a{margin-left:-7.396800px;}
._2{margin-left:-6.224400px;}
._8{margin-left:-4.428000px;}
._1{margin-left:-3.360000px;}
._6{margin-left:-2.096400px;}
._0{margin-left:-1.003200px;}
._9{width:1.024200px;}
._5{width:2.266800px;}
._3{width:4.228800px;}
._7{width:5.296800px;}
._f{width:6.523200px;}
._d{width:8.184000px;}
._12{width:9.187200px;}
._19{width:12.249600px;}
._1b{width:13.720200px;}
._16{width:36.396000px;}
._14{width:38.070000px;}
._17{width:40.338000px;}
._18{width:51.570000px;}
._13{width:58.482000px;}
._e{width:65.070000px;}
._10{width:1188.164400px;}
._15{width:2011.942800px;}
._b{width:2029.222800px;}
.fc7{color:rgb(55,56,58);}
.fc4{color:rgb(26,26,27);}
.fc8{color:rgb(70,71,74);}
.fc5{color:rgb(15,15,15);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc6{color:rgb(40,41,42);}
.fc3{color:rgb(238,37,43);}
.fc0{color:rgb(28,29,30);}
.fs8{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs6{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:9.000000px;}
.y2{bottom:77.782200px;}
.y28{bottom:81.325500px;}
.y1{bottom:89.782200px;}
.y27{bottom:93.325500px;}
.y24{bottom:138.102000px;}
.y4c{bottom:139.925250px;}
.y150{bottom:143.035050px;}
.y8e{bottom:144.419100px;}
.y4b{bottom:153.425250px;}
.y23{bottom:154.302000px;}
.y14f{bottom:162.835050px;}
.y8d{bottom:164.219100px;}
.y4a{bottom:166.925250px;}
.y22{bottom:170.502000px;}
.y153{bottom:172.519050px;}
.yb1{bottom:180.425250px;}
.y14e{bottom:182.635050px;}
.y8c{bottom:184.019100px;}
.y21{bottom:186.702000px;}
.y152{bottom:192.319050px;}
.yca{bottom:193.925250px;}
.y14d{bottom:202.435050px;}
.y8b{bottom:203.819100px;}
.yd8{bottom:207.425250px;}
.yf8{bottom:207.721350px;}
.y151{bottom:212.119050px;}
.y155{bottom:212.135100px;}
.y136{bottom:219.180600px;}
.yd7{bottom:220.925250px;}
.y14c{bottom:222.235050px;}
.y49{bottom:222.237300px;}
.y12e{bottom:222.794100px;}
.y8a{bottom:223.619100px;}
.y20{bottom:224.164500px;}
.yf7{bottom:227.521350px;}
.yb0{bottom:231.919050px;}
.y154{bottom:231.935100px;}
.y6f{bottom:231.935250px;}
.y105{bottom:234.425250px;}
.y135{bottom:238.980600px;}
.y1f{bottom:240.364500px;}
.y14b{bottom:242.035050px;}
.y48{bottom:242.037300px;}
.y12d{bottom:242.594100px;}
.y89{bottom:243.419100px;}
.yc9{bottom:246.109650px;}
.yf6{bottom:247.321350px;}
.y11b{bottom:247.925250px;}
.yaf{bottom:251.719050px;}
.y6e{bottom:251.735100px;}
.ydc{bottom:251.735250px;}
.y104{bottom:255.807600px;}
.y1e{bottom:256.564500px;}
.y134{bottom:258.780600px;}
.y11a{bottom:261.425250px;}
.y14a{bottom:261.835050px;}
.y47{bottom:261.837300px;}
.y12c{bottom:262.394100px;}
.y88{bottom:263.219100px;}
.yc8{bottom:265.909650px;}
.yf5{bottom:267.121350px;}
.yae{bottom:271.519050px;}
.y6d{bottom:271.535100px;}
.ydb{bottom:271.535250px;}
.y1d{bottom:272.764500px;}
.y103{bottom:275.607600px;}
.y133{bottom:278.580600px;}
.y149{bottom:281.635050px;}
.y46{bottom:281.637300px;}
.y12b{bottom:282.194100px;}
.y87{bottom:283.019100px;}
.yc7{bottom:285.709650px;}
.yf4{bottom:286.921350px;}
.y1c{bottom:288.964500px;}
.yad{bottom:291.319050px;}
.y6c{bottom:291.335100px;}
.yda{bottom:291.335250px;}
.y102{bottom:295.407600px;}
.y148{bottom:301.435050px;}
.y45{bottom:301.437300px;}
.y12a{bottom:301.994100px;}
.y86{bottom:302.819100px;}
.y1b{bottom:305.164500px;}
.yc6{bottom:305.509650px;}
.yf3{bottom:306.721350px;}
.yac{bottom:311.119050px;}
.y6b{bottom:311.135100px;}
.yd9{bottom:311.135250px;}
.y101{bottom:315.207600px;}
.y119{bottom:320.007600px;}
.y147{bottom:321.235050px;}
.y44{bottom:321.237300px;}
.y1a{bottom:321.364500px;}
.y129{bottom:321.794100px;}
.y85{bottom:322.619100px;}
.yc5{bottom:325.309650px;}
.yf2{bottom:326.521350px;}
.yab{bottom:330.919050px;}
.y6a{bottom:330.935100px;}
.yd6{bottom:330.935250px;}
.y100{bottom:335.007600px;}
.y19{bottom:337.564500px;}
.y118{bottom:339.807600px;}
.y146{bottom:341.035050px;}
.y43{bottom:341.037300px;}
.y128{bottom:341.594100px;}
.y84{bottom:342.419100px;}
.yc4{bottom:345.109650px;}
.yf1{bottom:346.321350px;}
.yaa{bottom:350.719050px;}
.y69{bottom:350.735100px;}
.yd5{bottom:350.735250px;}
.y18{bottom:353.764500px;}
.yff{bottom:354.807600px;}
.y117{bottom:359.607600px;}
.y145{bottom:360.835050px;}
.y42{bottom:360.837300px;}
.y127{bottom:361.394100px;}
.y83{bottom:362.219100px;}
.yc3{bottom:364.909650px;}
.yf0{bottom:366.121350px;}
.y17{bottom:369.964500px;}
.ya9{bottom:370.519050px;}
.y68{bottom:370.535100px;}
.yd4{bottom:370.535250px;}
.yfe{bottom:374.607600px;}
.y116{bottom:379.407600px;}
.y144{bottom:380.635050px;}
.y41{bottom:380.637300px;}
.y126{bottom:381.194100px;}
.y82{bottom:382.019100px;}
.yc2{bottom:384.709650px;}
.yef{bottom:385.921350px;}
.y16{bottom:386.164500px;}
.ya8{bottom:390.319050px;}
.y67{bottom:390.335100px;}
.yd3{bottom:390.335250px;}
.y115{bottom:399.207600px;}
.y143{bottom:400.435050px;}
.y40{bottom:400.437300px;}
.y125{bottom:400.994100px;}
.y81{bottom:401.819100px;}
.y15{bottom:402.364500px;}
.yc1{bottom:404.509650px;}
.yee{bottom:405.721350px;}
.ya7{bottom:410.119050px;}
.y66{bottom:410.135100px;}
.yd2{bottom:410.135250px;}
.y114{bottom:419.007600px;}
.y142{bottom:420.235050px;}
.y3f{bottom:420.237300px;}
.y80{bottom:421.619100px;}
.yfd{bottom:424.171350px;}
.yc0{bottom:424.309650px;}
.yed{bottom:425.521350px;}
.ya6{bottom:429.919050px;}
.y65{bottom:429.935100px;}
.yd1{bottom:429.935250px;}
.y14{bottom:437.372400px;}
.y113{bottom:438.807600px;}
.yfc{bottom:439.171350px;}
.y141{bottom:440.035050px;}
.y3e{bottom:440.037300px;}
.y7f{bottom:441.419100px;}
.ybf{bottom:444.109650px;}
.yec{bottom:445.321350px;}
.ya5{bottom:449.719050px;}
.y64{bottom:449.735100px;}
.y132{bottom:449.735250px;}
.y124{bottom:450.560100px;}
.y13{bottom:453.572400px;}
.yfb{bottom:454.171350px;}
.y112{bottom:458.607600px;}
.y140{bottom:459.835050px;}
.y3d{bottom:459.837300px;}
.y7e{bottom:461.219100px;}
.ybe{bottom:463.909650px;}
.yeb{bottom:465.121350px;}
.yfa{bottom:469.171350px;}
.ya4{bottom:469.519050px;}
.y63{bottom:469.535100px;}
.y131{bottom:469.535250px;}
.y12{bottom:469.772400px;}
.y111{bottom:478.407600px;}
.y13f{bottom:479.635050px;}
.y3c{bottom:479.637300px;}
.y7d{bottom:481.019100px;}
.ybd{bottom:483.709650px;}
.yf9{bottom:484.171350px;}
.yea{bottom:484.913100px;}
.y11{bottom:485.972400px;}
.ya3{bottom:489.319050px;}
.y62{bottom:489.335100px;}
.y130{bottom:489.335250px;}
.y110{bottom:498.207600px;}
.y13e{bottom:499.435050px;}
.y3b{bottom:499.437300px;}
.y7c{bottom:500.819100px;}
.y10{bottom:502.172400px;}
.ybc{bottom:503.509650px;}
.ye9{bottom:504.713100px;}
.ya2{bottom:509.119050px;}
.y61{bottom:509.135100px;}
.y12f{bottom:509.135250px;}
.y10f{bottom:518.007600px;}
.yf{bottom:518.372400px;}
.y13d{bottom:519.235050px;}
.y3a{bottom:519.237300px;}
.y7b{bottom:520.619100px;}
.ye8{bottom:524.513100px;}
.ya1{bottom:528.919050px;}
.y60{bottom:528.935100px;}
.y123{bottom:528.935250px;}
.ye{bottom:534.572400px;}
.y10e{bottom:537.807600px;}
.y13c{bottom:539.035050px;}
.y39{bottom:539.037300px;}
.y7a{bottom:540.419100px;}
.ye7{bottom:544.313100px;}
.ya0{bottom:548.719050px;}
.y5f{bottom:548.735100px;}
.y122{bottom:548.735250px;}
.yd{bottom:550.772400px;}
.ybb{bottom:553.073400px;}
.y10d{bottom:557.607600px;}
.y13b{bottom:558.835050px;}
.y38{bottom:558.837300px;}
.y79{bottom:560.219100px;}
.ye6{bottom:564.113100px;}
.yc{bottom:566.972400px;}
.yba{bottom:568.073400px;}
.y9f{bottom:568.519050px;}
.y5e{bottom:568.535100px;}
.y121{bottom:568.535250px;}
.y13a{bottom:578.635050px;}
.y37{bottom:578.637300px;}
.y78{bottom:580.019100px;}
.yb9{bottom:583.073400px;}
.yb{bottom:583.172400px;}
.ye5{bottom:583.913100px;}
.y9e{bottom:588.319050px;}
.y5d{bottom:588.335100px;}
.y120{bottom:588.335250px;}
.yb8{bottom:598.073400px;}
.y139{bottom:598.435050px;}
.y36{bottom:598.437300px;}
.ya{bottom:599.372400px;}
.y77{bottom:599.819100px;}
.ye4{bottom:603.713100px;}
.y10c{bottom:607.171350px;}
.y9d{bottom:608.119050px;}
.y5c{bottom:608.135100px;}
.y11f{bottom:608.135250px;}
.yb7{bottom:613.073400px;}
.y9{bottom:615.572400px;}
.y138{bottom:618.235050px;}
.y35{bottom:618.237300px;}
.y76{bottom:619.619100px;}
.y10b{bottom:622.171350px;}
.ye3{bottom:623.513100px;}
.y9c{bottom:627.919050px;}
.y5b{bottom:627.935100px;}
.y11e{bottom:627.935250px;}
.y10a{bottom:637.171350px;}
.y137{bottom:638.035050px;}
.y34{bottom:638.037300px;}
.y75{bottom:639.419100px;}
.ye2{bottom:643.313100px;}
.y9b{bottom:647.719050px;}
.y5a{bottom:647.735100px;}
.y11d{bottom:647.735250px;}
.y109{bottom:652.171350px;}
.y8{bottom:653.032200px;}
.yb6{bottom:657.835050px;}
.y33{bottom:657.837300px;}
.y74{bottom:659.219100px;}
.ye1{bottom:663.113100px;}
.y108{bottom:667.171350px;}
.y9a{bottom:667.519050px;}
.y59{bottom:667.535100px;}
.y11c{bottom:667.535250px;}
.y7{bottom:671.032200px;}
.yb5{bottom:677.635050px;}
.y32{bottom:677.637300px;}
.y107{bottom:682.171350px;}
.ye0{bottom:682.913100px;}
.y99{bottom:687.319050px;}
.y58{bottom:687.335100px;}
.yd0{bottom:687.335250px;}
.y6{bottom:689.032200px;}
.yb4{bottom:697.435050px;}
.y31{bottom:697.437300px;}
.ydf{bottom:702.713100px;}
.y98{bottom:707.119050px;}
.y57{bottom:707.135100px;}
.ycf{bottom:707.135250px;}
.y73{bottom:708.785100px;}
.yb3{bottom:717.235050px;}
.y30{bottom:717.237300px;}
.y97{bottom:726.919050px;}
.y56{bottom:726.935100px;}
.yce{bottom:726.935250px;}
.y72{bottom:727.760100px;}
.y5{bottom:736.795950px;}
.yb2{bottom:737.035050px;}
.y2f{bottom:737.037300px;}
.y96{bottom:746.719050px;}
.y55{bottom:746.735100px;}
.ycd{bottom:746.735250px;}
.yde{bottom:752.279100px;}
.y2e{bottom:756.835050px;}
.y4{bottom:761.995950px;}
.y95{bottom:766.519050px;}
.y54{bottom:766.535100px;}
.ycc{bottom:766.535250px;}
.ydd{bottom:771.254100px;}
.y2d{bottom:776.635050px;}
.y94{bottom:786.319050px;}
.y53{bottom:786.335100px;}
.ycb{bottom:786.335250px;}
.y3{bottom:787.195950px;}
.y2c{bottom:796.435050px;}
.y93{bottom:806.119050px;}
.y52{bottom:806.135100px;}
.y106{bottom:806.135250px;}
.y2b{bottom:816.235050px;}
.y92{bottom:825.919050px;}
.y51{bottom:825.935100px;}
.y2a{bottom:836.035050px;}
.y91{bottom:845.719050px;}
.y50{bottom:845.735100px;}
.y90{bottom:865.519050px;}
.y4f{bottom:865.535100px;}
.y8f{bottom:885.319050px;}
.y4e{bottom:885.335100px;}
.y29{bottom:885.601050px;}
.y70{bottom:926.814750px;}
.y4d{bottom:928.880100px;}
.y26{bottom:928.894800px;}
.y71{bottom:928.899750px;}
.h7{height:28.656000px;}
.h3{height:42.117188px;}
.h2{height:42.234375px;}
.h6{height:47.381836px;}
.hf{height:47.513672px;}
.h5{height:52.646484px;}
.hc{height:52.792969px;}
.h9{height:57.911133px;}
.hd{height:57.911733px;}
.ha{height:57.920133px;}
.h10{height:57.944133px;}
.hb{height:58.072266px;}
.h11{height:58.072866px;}
.h8{height:58.620117px;}
.he{height:63.175781px;}
.h4{height:74.607422px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.xa{left:46.500000px;}
.x1{left:137.799150px;}
.xd{left:151.904250px;}
.x2{left:158.948850px;}
.x9{left:167.567400px;}
.x6{left:170.528250px;}
.x3{left:186.563850px;}
.xc{left:191.168250px;}
.x4{left:270.815850px;}
.x5{left:289.913250px;}
.xf{left:334.837050px;}
.x7{left:350.738250px;}
.x8{left:356.121900px;}
.xe{left:369.814800px;}
.xb{left:374.578350px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.544000pt;}
.ls8{letter-spacing:-1.776000pt;}
.ls7{letter-spacing:-1.265499pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.762667pt;}
.lsa{letter-spacing:0.828533pt;}
.ls5{letter-spacing:0.937067pt;}
.lsc{letter-spacing:1.497600pt;}
.ls1{letter-spacing:1.680000pt;}
.ls3{letter-spacing:1.866667pt;}
.ls4{letter-spacing:2.053333pt;}
.ls0{letter-spacing:2.613333pt;}
.ls9{letter-spacing:3.830933pt;}
.ls6{letter-spacing:35.616000pt;}
.ws12{word-spacing:-14.666667pt;}
.ws13{word-spacing:-12.000000pt;}
.ws68{word-spacing:-10.224000pt;}
.ws11{word-spacing:-8.550667pt;}
.ws66{word-spacing:-7.773333pt;}
.ws67{word-spacing:-7.285168pt;}
.ws1{word-spacing:-5.450667pt;}
.ws69{word-spacing:-4.282667pt;}
.ws9d{word-spacing:-3.168000pt;}
.wsb0{word-spacing:-2.992000pt;}
.wsb4{word-spacing:-2.933333pt;}
.wscb{word-spacing:-2.874667pt;}
.wsb3{word-spacing:-2.816000pt;}
.wsd8{word-spacing:-2.757333pt;}
.wsa8{word-spacing:-2.666667pt;}
.wsc4{word-spacing:-2.640000pt;}
.ws84{word-spacing:-2.581333pt;}
.wsa6{word-spacing:-2.506667pt;}
.ws5f{word-spacing:-2.464000pt;}
.ws29{word-spacing:-2.346667pt;}
.ws97{word-spacing:-2.240000pt;}
.ws54{word-spacing:-2.229333pt;}
.ws16{word-spacing:-2.112000pt;}
.ws3f{word-spacing:-2.053333pt;}
.ws99{word-spacing:-2.016000pt;}
.ws90{word-spacing:-1.994667pt;}
.ws92{word-spacing:-1.936000pt;}
.wsb1{word-spacing:-1.877333pt;}
.wsb{word-spacing:-1.866667pt;}
.ws10{word-spacing:-1.824000pt;}
.wsbe{word-spacing:-1.818667pt;}
.ws58{word-spacing:-1.760000pt;}
.ws28{word-spacing:-1.701333pt;}
.ws3{word-spacing:-1.680000pt;}
.wsdd{word-spacing:-1.642667pt;}
.ws1e{word-spacing:-1.584000pt;}
.ws6d{word-spacing:-1.525333pt;}
.ws47{word-spacing:-1.466667pt;}
.ws1d{word-spacing:-1.408000pt;}
.wse{word-spacing:-1.392000pt;}
.ws51{word-spacing:-1.290667pt;}
.ws2{word-spacing:-1.269333pt;}
.ws43{word-spacing:-1.232000pt;}
.wsd{word-spacing:-1.200000pt;}
.wsaf{word-spacing:-1.173333pt;}
.ws20{word-spacing:-1.114667pt;}
.wscd{word-spacing:-1.056000pt;}
.ws14{word-spacing:-0.997333pt;}
.ws1f{word-spacing:-0.938667pt;}
.ws39{word-spacing:-0.880000pt;}
.wsa7{word-spacing:-0.853333pt;}
.ws6f{word-spacing:-0.821333pt;}
.ws3a{word-spacing:-0.704000pt;}
.ws36{word-spacing:-0.645333pt;}
.ws2d{word-spacing:-0.586667pt;}
.ws71{word-spacing:-0.528000pt;}
.ws32{word-spacing:-0.469333pt;}
.ws96{word-spacing:-0.426667pt;}
.wsb8{word-spacing:-0.410667pt;}
.ws65{word-spacing:-0.384000pt;}
.wsd0{word-spacing:-0.352000pt;}
.wsd1{word-spacing:-0.293333pt;}
.ws9f{word-spacing:-0.234667pt;}
.wscc{word-spacing:-0.176000pt;}
.ws9b{word-spacing:-0.144000pt;}
.ws61{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws33{word-spacing:0.058667pt;}
.ws4b{word-spacing:0.117333pt;}
.wsb7{word-spacing:0.176000pt;}
.ws95{word-spacing:0.213333pt;}
.ws57{word-spacing:0.234667pt;}
.wsc{word-spacing:0.240000pt;}
.ws19{word-spacing:0.293333pt;}
.wsdc{word-spacing:0.352000pt;}
.ws83{word-spacing:0.410667pt;}
.ws5e{word-spacing:0.469333pt;}
.ws6e{word-spacing:0.480000pt;}
.ws42{word-spacing:0.528000pt;}
.wsa5{word-spacing:0.586667pt;}
.ws7b{word-spacing:0.645333pt;}
.wsbb{word-spacing:0.672000pt;}
.ws2b{word-spacing:0.704000pt;}
.ws79{word-spacing:0.762667pt;}
.ws76{word-spacing:0.821333pt;}
.ws59{word-spacing:0.880000pt;}
.wsa2{word-spacing:0.912000pt;}
.ws35{word-spacing:0.938667pt;}
.ws9e{word-spacing:0.997333pt;}
.ws1c{word-spacing:1.056000pt;}
.wsbc{word-spacing:1.104000pt;}
.ws4c{word-spacing:1.114667pt;}
.ws34{word-spacing:1.173333pt;}
.ws45{word-spacing:1.232000pt;}
.ws60{word-spacing:1.290667pt;}
.ws78{word-spacing:1.349333pt;}
.ws8f{word-spacing:1.408000pt;}
.wsba{word-spacing:1.440000pt;}
.ws22{word-spacing:1.466667pt;}
.wsa1{word-spacing:1.488000pt;}
.wsc7{word-spacing:1.525333pt;}
.ws26{word-spacing:1.584000pt;}
.ws8{word-spacing:1.632000pt;}
.ws55{word-spacing:1.642667pt;}
.ws94{word-spacing:1.701333pt;}
.wscf{word-spacing:1.760000pt;}
.ws80{word-spacing:1.776000pt;}
.ws3d{word-spacing:1.818667pt;}
.wsf{word-spacing:1.872000pt;}
.ws63{word-spacing:1.877333pt;}
.ws77{word-spacing:1.936000pt;}
.ws46{word-spacing:1.994667pt;}
.wsd4{word-spacing:2.053333pt;}
.ws4{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.170667pt;}
.ws8e{word-spacing:2.229333pt;}
.ws4a{word-spacing:2.288000pt;}
.ws7d{word-spacing:2.346667pt;}
.wsc3{word-spacing:2.405333pt;}
.ws82{word-spacing:2.448000pt;}
.wsa0{word-spacing:2.464000pt;}
.ws9a{word-spacing:2.496000pt;}
.ws1b{word-spacing:2.522667pt;}
.ws18{word-spacing:2.581333pt;}
.ws70{word-spacing:2.640000pt;}
.ws86{word-spacing:2.698667pt;}
.wsad{word-spacing:2.736000pt;}
.ws52{word-spacing:2.757333pt;}
.ws21{word-spacing:2.816000pt;}
.ws50{word-spacing:2.874667pt;}
.ws62{word-spacing:2.933333pt;}
.ws56{word-spacing:2.992000pt;}
.ws8a{word-spacing:3.050667pt;}
.wsab{word-spacing:3.109333pt;}
.ws7c{word-spacing:3.168000pt;}
.ws27{word-spacing:3.226667pt;}
.ws93{word-spacing:3.285333pt;}
.ws7{word-spacing:3.312000pt;}
.ws38{word-spacing:3.344000pt;}
.wsda{word-spacing:3.402667pt;}
.ws91{word-spacing:3.461333pt;}
.ws49{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.578667pt;}
.ws23{word-spacing:3.637333pt;}
.ws3e{word-spacing:3.696000pt;}
.wsc0{word-spacing:3.754667pt;}
.ws6a{word-spacing:3.813333pt;}
.ws5a{word-spacing:3.872000pt;}
.ws2a{word-spacing:3.930667pt;}
.wsaa{word-spacing:3.989333pt;}
.wsa4{word-spacing:4.048000pt;}
.ws8d{word-spacing:4.106667pt;}
.ws7e{word-spacing:4.165333pt;}
.ws1a{word-spacing:4.224000pt;}
.wsd6{word-spacing:4.341333pt;}
.wsc2{word-spacing:4.458667pt;}
.ws5c{word-spacing:4.517333pt;}
.wsc5{word-spacing:4.576000pt;}
.ws37{word-spacing:4.693333pt;}
.ws88{word-spacing:4.752000pt;}
.ws2c{word-spacing:4.810667pt;}
.wsbd{word-spacing:4.928000pt;}
.wsd3{word-spacing:4.986667pt;}
.ws6{word-spacing:4.992000pt;}
.ws81{word-spacing:5.088000pt;}
.ws2e{word-spacing:5.104000pt;}
.wsa{word-spacing:5.136000pt;}
.wsc6{word-spacing:5.162667pt;}
.wsa9{word-spacing:5.221333pt;}
.wsac{word-spacing:5.232000pt;}
.wsb2{word-spacing:5.280000pt;}
.wsdb{word-spacing:5.338667pt;}
.ws31{word-spacing:5.397333pt;}
.ws72{word-spacing:5.424000pt;}
.ws3b{word-spacing:5.456000pt;}
.ws5{word-spacing:5.472000pt;}
.ws98{word-spacing:5.514667pt;}
.ws75{word-spacing:5.573333pt;}
.wsd9{word-spacing:5.632000pt;}
.ws25{word-spacing:5.808000pt;}
.ws64{word-spacing:5.856000pt;}
.wsb6{word-spacing:5.866667pt;}
.ws85{word-spacing:5.925333pt;}
.ws24{word-spacing:5.984000pt;}
.wsa3{word-spacing:6.000000pt;}
.wsb5{word-spacing:6.042667pt;}
.ws40{word-spacing:6.101333pt;}
.wsb9{word-spacing:6.160000pt;}
.wsc1{word-spacing:6.218667pt;}
.ws30{word-spacing:6.336000pt;}
.ws8b{word-spacing:6.453333pt;}
.ws5b{word-spacing:6.512000pt;}
.wsca{word-spacing:6.570667pt;}
.ws2f{word-spacing:6.688000pt;}
.ws44{word-spacing:6.746667pt;}
.wsce{word-spacing:6.805333pt;}
.ws74{word-spacing:6.864000pt;}
.wsc9{word-spacing:6.922667pt;}
.ws89{word-spacing:7.098667pt;}
.wsc8{word-spacing:7.216000pt;}
.ws17{word-spacing:7.274667pt;}
.ws4f{word-spacing:7.333333pt;}
.wsd5{word-spacing:7.392000pt;}
.ws4d{word-spacing:7.450667pt;}
.ws9{word-spacing:7.488000pt;}
.ws6b{word-spacing:7.509333pt;}
.wsae{word-spacing:7.568000pt;}
.ws87{word-spacing:7.802667pt;}
.ws7f{word-spacing:7.861333pt;}
.ws5d{word-spacing:7.920000pt;}
.ws8c{word-spacing:7.978667pt;}
.ws53{word-spacing:8.037333pt;}
.ws73{word-spacing:8.096000pt;}
.wsbf{word-spacing:8.154667pt;}
.wsd2{word-spacing:8.330667pt;}
.ws41{word-spacing:8.389333pt;}
.ws9c{word-spacing:8.448000pt;}
.ws15{word-spacing:8.624000pt;}
.ws48{word-spacing:8.741333pt;}
.wsd7{word-spacing:10.912000pt;}
.ws7a{word-spacing:11.850667pt;}
.ws3c{word-spacing:57.840000pt;}
._c{margin-left:-1814.734400pt;}
._11{margin-left:-57.840000pt;}
._4{margin-left:-9.602133pt;}
._1a{margin-left:-8.184000pt;}
._a{margin-left:-6.574933pt;}
._2{margin-left:-5.532800pt;}
._8{margin-left:-3.936000pt;}
._1{margin-left:-2.986667pt;}
._6{margin-left:-1.863467pt;}
._0{margin-left:-0.891733pt;}
._9{width:0.910400pt;}
._5{width:2.014933pt;}
._3{width:3.758933pt;}
._7{width:4.708267pt;}
._f{width:5.798400pt;}
._d{width:7.274667pt;}
._12{width:8.166400pt;}
._19{width:10.888533pt;}
._1b{width:12.195733pt;}
._16{width:32.352000pt;}
._14{width:33.840000pt;}
._17{width:35.856000pt;}
._18{width:45.840000pt;}
._13{width:51.984000pt;}
._e{width:57.840000pt;}
._10{width:1056.146133pt;}
._15{width:1788.393600pt;}
._b{width:1803.753600pt;}
.fs8{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:8.000000pt;}
.y2{bottom:69.139733pt;}
.y28{bottom:72.289333pt;}
.y1{bottom:79.806400pt;}
.y27{bottom:82.956000pt;}
.y24{bottom:122.757333pt;}
.y4c{bottom:124.378000pt;}
.y150{bottom:127.142267pt;}
.y8e{bottom:128.372533pt;}
.y4b{bottom:136.378000pt;}
.y23{bottom:137.157333pt;}
.y14f{bottom:144.742267pt;}
.y8d{bottom:145.972533pt;}
.y4a{bottom:148.378000pt;}
.y22{bottom:151.557333pt;}
.y153{bottom:153.350267pt;}
.yb1{bottom:160.378000pt;}
.y14e{bottom:162.342267pt;}
.y8c{bottom:163.572533pt;}
.y21{bottom:165.957333pt;}
.y152{bottom:170.950267pt;}
.yca{bottom:172.378000pt;}
.y14d{bottom:179.942267pt;}
.y8b{bottom:181.172533pt;}
.yd8{bottom:184.378000pt;}
.yf8{bottom:184.641200pt;}
.y151{bottom:188.550267pt;}
.y155{bottom:188.564533pt;}
.y136{bottom:194.827200pt;}
.yd7{bottom:196.378000pt;}
.y14c{bottom:197.542267pt;}
.y49{bottom:197.544267pt;}
.y12e{bottom:198.039200pt;}
.y8a{bottom:198.772533pt;}
.y20{bottom:199.257333pt;}
.yf7{bottom:202.241200pt;}
.yb0{bottom:206.150267pt;}
.y154{bottom:206.164533pt;}
.y6f{bottom:206.164667pt;}
.y105{bottom:208.378000pt;}
.y135{bottom:212.427200pt;}
.y1f{bottom:213.657333pt;}
.y14b{bottom:215.142267pt;}
.y48{bottom:215.144267pt;}
.y12d{bottom:215.639200pt;}
.y89{bottom:216.372533pt;}
.yc9{bottom:218.764133pt;}
.yf6{bottom:219.841200pt;}
.y11b{bottom:220.378000pt;}
.yaf{bottom:223.750267pt;}
.y6e{bottom:223.764533pt;}
.ydc{bottom:223.764667pt;}
.y104{bottom:227.384533pt;}
.y1e{bottom:228.057333pt;}
.y134{bottom:230.027200pt;}
.y11a{bottom:232.378000pt;}
.y14a{bottom:232.742267pt;}
.y47{bottom:232.744267pt;}
.y12c{bottom:233.239200pt;}
.y88{bottom:233.972533pt;}
.yc8{bottom:236.364133pt;}
.yf5{bottom:237.441200pt;}
.yae{bottom:241.350267pt;}
.y6d{bottom:241.364533pt;}
.ydb{bottom:241.364667pt;}
.y1d{bottom:242.457333pt;}
.y103{bottom:244.984533pt;}
.y133{bottom:247.627200pt;}
.y149{bottom:250.342267pt;}
.y46{bottom:250.344267pt;}
.y12b{bottom:250.839200pt;}
.y87{bottom:251.572533pt;}
.yc7{bottom:253.964133pt;}
.yf4{bottom:255.041200pt;}
.y1c{bottom:256.857333pt;}
.yad{bottom:258.950267pt;}
.y6c{bottom:258.964533pt;}
.yda{bottom:258.964667pt;}
.y102{bottom:262.584533pt;}
.y148{bottom:267.942267pt;}
.y45{bottom:267.944267pt;}
.y12a{bottom:268.439200pt;}
.y86{bottom:269.172533pt;}
.y1b{bottom:271.257333pt;}
.yc6{bottom:271.564133pt;}
.yf3{bottom:272.641200pt;}
.yac{bottom:276.550267pt;}
.y6b{bottom:276.564533pt;}
.yd9{bottom:276.564667pt;}
.y101{bottom:280.184533pt;}
.y119{bottom:284.451200pt;}
.y147{bottom:285.542267pt;}
.y44{bottom:285.544267pt;}
.y1a{bottom:285.657333pt;}
.y129{bottom:286.039200pt;}
.y85{bottom:286.772533pt;}
.yc5{bottom:289.164133pt;}
.yf2{bottom:290.241200pt;}
.yab{bottom:294.150267pt;}
.y6a{bottom:294.164533pt;}
.yd6{bottom:294.164667pt;}
.y100{bottom:297.784533pt;}
.y19{bottom:300.057333pt;}
.y118{bottom:302.051200pt;}
.y146{bottom:303.142267pt;}
.y43{bottom:303.144267pt;}
.y128{bottom:303.639200pt;}
.y84{bottom:304.372533pt;}
.yc4{bottom:306.764133pt;}
.yf1{bottom:307.841200pt;}
.yaa{bottom:311.750267pt;}
.y69{bottom:311.764533pt;}
.yd5{bottom:311.764667pt;}
.y18{bottom:314.457333pt;}
.yff{bottom:315.384533pt;}
.y117{bottom:319.651200pt;}
.y145{bottom:320.742267pt;}
.y42{bottom:320.744267pt;}
.y127{bottom:321.239200pt;}
.y83{bottom:321.972533pt;}
.yc3{bottom:324.364133pt;}
.yf0{bottom:325.441200pt;}
.y17{bottom:328.857333pt;}
.ya9{bottom:329.350267pt;}
.y68{bottom:329.364533pt;}
.yd4{bottom:329.364667pt;}
.yfe{bottom:332.984533pt;}
.y116{bottom:337.251200pt;}
.y144{bottom:338.342267pt;}
.y41{bottom:338.344267pt;}
.y126{bottom:338.839200pt;}
.y82{bottom:339.572533pt;}
.yc2{bottom:341.964133pt;}
.yef{bottom:343.041200pt;}
.y16{bottom:343.257333pt;}
.ya8{bottom:346.950267pt;}
.y67{bottom:346.964533pt;}
.yd3{bottom:346.964667pt;}
.y115{bottom:354.851200pt;}
.y143{bottom:355.942267pt;}
.y40{bottom:355.944267pt;}
.y125{bottom:356.439200pt;}
.y81{bottom:357.172533pt;}
.y15{bottom:357.657333pt;}
.yc1{bottom:359.564133pt;}
.yee{bottom:360.641200pt;}
.ya7{bottom:364.550267pt;}
.y66{bottom:364.564533pt;}
.yd2{bottom:364.564667pt;}
.y114{bottom:372.451200pt;}
.y142{bottom:373.542267pt;}
.y3f{bottom:373.544267pt;}
.y80{bottom:374.772533pt;}
.yfd{bottom:377.041200pt;}
.yc0{bottom:377.164133pt;}
.yed{bottom:378.241200pt;}
.ya6{bottom:382.150267pt;}
.y65{bottom:382.164533pt;}
.yd1{bottom:382.164667pt;}
.y14{bottom:388.775467pt;}
.y113{bottom:390.051200pt;}
.yfc{bottom:390.374533pt;}
.y141{bottom:391.142267pt;}
.y3e{bottom:391.144267pt;}
.y7f{bottom:392.372533pt;}
.ybf{bottom:394.764133pt;}
.yec{bottom:395.841200pt;}
.ya5{bottom:399.750267pt;}
.y64{bottom:399.764533pt;}
.y132{bottom:399.764667pt;}
.y124{bottom:400.497867pt;}
.y13{bottom:403.175467pt;}
.yfb{bottom:403.707867pt;}
.y112{bottom:407.651200pt;}
.y140{bottom:408.742267pt;}
.y3d{bottom:408.744267pt;}
.y7e{bottom:409.972533pt;}
.ybe{bottom:412.364133pt;}
.yeb{bottom:413.441200pt;}
.yfa{bottom:417.041200pt;}
.ya4{bottom:417.350267pt;}
.y63{bottom:417.364533pt;}
.y131{bottom:417.364667pt;}
.y12{bottom:417.575467pt;}
.y111{bottom:425.251200pt;}
.y13f{bottom:426.342267pt;}
.y3c{bottom:426.344267pt;}
.y7d{bottom:427.572533pt;}
.ybd{bottom:429.964133pt;}
.yf9{bottom:430.374533pt;}
.yea{bottom:431.033867pt;}
.y11{bottom:431.975467pt;}
.ya3{bottom:434.950267pt;}
.y62{bottom:434.964533pt;}
.y130{bottom:434.964667pt;}
.y110{bottom:442.851200pt;}
.y13e{bottom:443.942267pt;}
.y3b{bottom:443.944267pt;}
.y7c{bottom:445.172533pt;}
.y10{bottom:446.375467pt;}
.ybc{bottom:447.564133pt;}
.ye9{bottom:448.633867pt;}
.ya2{bottom:452.550267pt;}
.y61{bottom:452.564533pt;}
.y12f{bottom:452.564667pt;}
.y10f{bottom:460.451200pt;}
.yf{bottom:460.775467pt;}
.y13d{bottom:461.542267pt;}
.y3a{bottom:461.544267pt;}
.y7b{bottom:462.772533pt;}
.ye8{bottom:466.233867pt;}
.ya1{bottom:470.150267pt;}
.y60{bottom:470.164533pt;}
.y123{bottom:470.164667pt;}
.ye{bottom:475.175467pt;}
.y10e{bottom:478.051200pt;}
.y13c{bottom:479.142267pt;}
.y39{bottom:479.144267pt;}
.y7a{bottom:480.372533pt;}
.ye7{bottom:483.833867pt;}
.ya0{bottom:487.750267pt;}
.y5f{bottom:487.764533pt;}
.y122{bottom:487.764667pt;}
.yd{bottom:489.575467pt;}
.ybb{bottom:491.620800pt;}
.y10d{bottom:495.651200pt;}
.y13b{bottom:496.742267pt;}
.y38{bottom:496.744267pt;}
.y79{bottom:497.972533pt;}
.ye6{bottom:501.433867pt;}
.yc{bottom:503.975467pt;}
.yba{bottom:504.954133pt;}
.y9f{bottom:505.350267pt;}
.y5e{bottom:505.364533pt;}
.y121{bottom:505.364667pt;}
.y13a{bottom:514.342267pt;}
.y37{bottom:514.344267pt;}
.y78{bottom:515.572533pt;}
.yb9{bottom:518.287467pt;}
.yb{bottom:518.375467pt;}
.ye5{bottom:519.033867pt;}
.y9e{bottom:522.950267pt;}
.y5d{bottom:522.964533pt;}
.y120{bottom:522.964667pt;}
.yb8{bottom:531.620800pt;}
.y139{bottom:531.942267pt;}
.y36{bottom:531.944267pt;}
.ya{bottom:532.775467pt;}
.y77{bottom:533.172533pt;}
.ye4{bottom:536.633867pt;}
.y10c{bottom:539.707867pt;}
.y9d{bottom:540.550267pt;}
.y5c{bottom:540.564533pt;}
.y11f{bottom:540.564667pt;}
.yb7{bottom:544.954133pt;}
.y9{bottom:547.175467pt;}
.y138{bottom:549.542267pt;}
.y35{bottom:549.544267pt;}
.y76{bottom:550.772533pt;}
.y10b{bottom:553.041200pt;}
.ye3{bottom:554.233867pt;}
.y9c{bottom:558.150267pt;}
.y5b{bottom:558.164533pt;}
.y11e{bottom:558.164667pt;}
.y10a{bottom:566.374533pt;}
.y137{bottom:567.142267pt;}
.y34{bottom:567.144267pt;}
.y75{bottom:568.372533pt;}
.ye2{bottom:571.833867pt;}
.y9b{bottom:575.750267pt;}
.y5a{bottom:575.764533pt;}
.y11d{bottom:575.764667pt;}
.y109{bottom:579.707867pt;}
.y8{bottom:580.473067pt;}
.yb6{bottom:584.742267pt;}
.y33{bottom:584.744267pt;}
.y74{bottom:585.972533pt;}
.ye1{bottom:589.433867pt;}
.y108{bottom:593.041200pt;}
.y9a{bottom:593.350267pt;}
.y59{bottom:593.364533pt;}
.y11c{bottom:593.364667pt;}
.y7{bottom:596.473067pt;}
.yb5{bottom:602.342267pt;}
.y32{bottom:602.344267pt;}
.y107{bottom:606.374533pt;}
.ye0{bottom:607.033867pt;}
.y99{bottom:610.950267pt;}
.y58{bottom:610.964533pt;}
.yd0{bottom:610.964667pt;}
.y6{bottom:612.473067pt;}
.yb4{bottom:619.942267pt;}
.y31{bottom:619.944267pt;}
.ydf{bottom:624.633867pt;}
.y98{bottom:628.550267pt;}
.y57{bottom:628.564533pt;}
.ycf{bottom:628.564667pt;}
.y73{bottom:630.031200pt;}
.yb3{bottom:637.542267pt;}
.y30{bottom:637.544267pt;}
.y97{bottom:646.150267pt;}
.y56{bottom:646.164533pt;}
.yce{bottom:646.164667pt;}
.y72{bottom:646.897867pt;}
.y5{bottom:654.929733pt;}
.yb2{bottom:655.142267pt;}
.y2f{bottom:655.144267pt;}
.y96{bottom:663.750267pt;}
.y55{bottom:663.764533pt;}
.ycd{bottom:663.764667pt;}
.yde{bottom:668.692533pt;}
.y2e{bottom:672.742267pt;}
.y4{bottom:677.329733pt;}
.y95{bottom:681.350267pt;}
.y54{bottom:681.364533pt;}
.ycc{bottom:681.364667pt;}
.ydd{bottom:685.559200pt;}
.y2d{bottom:690.342267pt;}
.y94{bottom:698.950267pt;}
.y53{bottom:698.964533pt;}
.ycb{bottom:698.964667pt;}
.y3{bottom:699.729733pt;}
.y2c{bottom:707.942267pt;}
.y93{bottom:716.550267pt;}
.y52{bottom:716.564533pt;}
.y106{bottom:716.564667pt;}
.y2b{bottom:725.542267pt;}
.y92{bottom:734.150267pt;}
.y51{bottom:734.164533pt;}
.y2a{bottom:743.142267pt;}
.y91{bottom:751.750267pt;}
.y50{bottom:751.764533pt;}
.y90{bottom:769.350267pt;}
.y4f{bottom:769.364533pt;}
.y8f{bottom:786.950267pt;}
.y4e{bottom:786.964533pt;}
.y29{bottom:787.200933pt;}
.y70{bottom:823.835333pt;}
.y4d{bottom:825.671200pt;}
.y26{bottom:825.684267pt;}
.y71{bottom:825.688667pt;}
.h7{height:25.472000pt;}
.h3{height:37.437500pt;}
.h2{height:37.541667pt;}
.h6{height:42.117188pt;}
.hf{height:42.234375pt;}
.h5{height:46.796875pt;}
.hc{height:46.927083pt;}
.h9{height:51.476562pt;}
.hd{height:51.477096pt;}
.ha{height:51.484563pt;}
.h10{height:51.505896pt;}
.hb{height:51.619792pt;}
.h11{height:51.620325pt;}
.h8{height:52.106771pt;}
.he{height:56.156250pt;}
.h4{height:66.317708pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.xa{left:41.333333pt;}
.x1{left:122.488133pt;}
.xd{left:135.026000pt;}
.x2{left:141.287867pt;}
.x9{left:148.948800pt;}
.x6{left:151.580667pt;}
.x3{left:165.834533pt;}
.xc{left:169.927333pt;}
.x4{left:240.725200pt;}
.x5{left:257.700667pt;}
.xf{left:297.632933pt;}
.x7{left:311.767333pt;}
.x8{left:316.552800pt;}
.xe{left:328.724267pt;}
.xb{left:332.958533pt;}
}




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