
    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_be3ef558be0a4ee5eeef9a20.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068000;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_2885a466cdad5684718a3023.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_f838790ce220138d37d74adf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.715000;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_8fc916ca541464f0ccf8fd44.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0192d456992eb942a5dc78f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_e370b753c5d1bde37c9adaff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_fc523c8d0dba9ed61c0ec6f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.085000;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-12.480000px;}
.lsc{letter-spacing:-10.764000px;}
.lse{letter-spacing:-3.042000px;}
.ls8{letter-spacing:-1.716000px;}
.lsf{letter-spacing:-1.482000px;}
.ls7{letter-spacing:-1.326000px;}
.lsb{letter-spacing:-1.248000px;}
.ls2{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.546000px;}
.ls6{letter-spacing:-0.312000px;}
.lsa{letter-spacing:-0.234000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.780000px;}
.ls0{letter-spacing:1.080000px;}
.lsd{letter-spacing:6.162000px;}
.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;}
}
.ws10{word-spacing:-17.706000px;}
.ws6f{word-spacing:-17.550000px;}
.ws0{word-spacing:-16.926000px;}
.ws1{word-spacing:-16.770000px;}
.ws107{word-spacing:-16.380000px;}
.ws89{word-spacing:-16.146000px;}
.wsc6{word-spacing:-14.982000px;}
.ws104{word-spacing:-14.820000px;}
.wsb9{word-spacing:-8.424000px;}
.wsfc{word-spacing:-7.956000px;}
.wsfb{word-spacing:-7.878000px;}
.wsf2{word-spacing:-7.644000px;}
.wsdf{word-spacing:-7.176000px;}
.ws74{word-spacing:-7.098000px;}
.ws6d{word-spacing:-6.864000px;}
.ws72{word-spacing:-6.786000px;}
.ws73{word-spacing:-6.708000px;}
.wsb7{word-spacing:-6.552000px;}
.wscf{word-spacing:-6.240000px;}
.ws46{word-spacing:-6.084000px;}
.wsef{word-spacing:-6.006000px;}
.ws67{word-spacing:-5.928000px;}
.ws65{word-spacing:-5.694000px;}
.wse2{word-spacing:-5.616000px;}
.ws6e{word-spacing:-5.538000px;}
.ws13{word-spacing:-5.460000px;}
.wsf9{word-spacing:-5.382000px;}
.wsb4{word-spacing:-5.304000px;}
.ws7a{word-spacing:-5.226000px;}
.ws79{word-spacing:-5.148000px;}
.ws3d{word-spacing:-5.070000px;}
.wsa7{word-spacing:-4.992000px;}
.wsbe{word-spacing:-4.914000px;}
.wsbb{word-spacing:-4.836000px;}
.wsdd{word-spacing:-4.524000px;}
.wsc{word-spacing:-4.368000px;}
.ws9c{word-spacing:-4.290000px;}
.ws68{word-spacing:-4.212000px;}
.ws20{word-spacing:-4.134000px;}
.wsba{word-spacing:-4.056000px;}
.wsf6{word-spacing:-3.900000px;}
.wsd{word-spacing:-3.822000px;}
.wse3{word-spacing:-3.666000px;}
.wsa1{word-spacing:-3.588000px;}
.wsd0{word-spacing:-3.510000px;}
.ws3f{word-spacing:-3.432000px;}
.ws58{word-spacing:-3.354000px;}
.ws103{word-spacing:-3.276000px;}
.wse{word-spacing:-3.198000px;}
.ws24{word-spacing:-3.120000px;}
.ws7e{word-spacing:-3.042000px;}
.ws9b{word-spacing:-2.964000px;}
.ws47{word-spacing:-2.886000px;}
.ws76{word-spacing:-2.808000px;}
.ws57{word-spacing:-2.730000px;}
.ws45{word-spacing:-2.652000px;}
.ws41{word-spacing:-2.574000px;}
.ws2f{word-spacing:-2.496000px;}
.ws37{word-spacing:-2.418000px;}
.ws5e{word-spacing:-2.340000px;}
.wsc9{word-spacing:-2.262000px;}
.wsa4{word-spacing:-2.184000px;}
.wsd4{word-spacing:-2.106000px;}
.ws2b{word-spacing:-2.028000px;}
.ws1f{word-spacing:-1.950000px;}
.ws39{word-spacing:-1.872000px;}
.ws1c{word-spacing:-1.794000px;}
.wse0{word-spacing:-1.716000px;}
.ws9f{word-spacing:-1.638000px;}
.wse1{word-spacing:-1.560000px;}
.ws99{word-spacing:-1.482000px;}
.ws50{word-spacing:-1.404000px;}
.ws1b{word-spacing:-1.326000px;}
.ws5c{word-spacing:-1.248000px;}
.ws26{word-spacing:-1.170000px;}
.ws93{word-spacing:-1.092000px;}
.ws6c{word-spacing:-1.014000px;}
.ws8e{word-spacing:-0.936000px;}
.ws44{word-spacing:-0.858000px;}
.ws2a{word-spacing:-0.780000px;}
.ws8f{word-spacing:-0.702000px;}
.ws88{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.546000px;}
.ws4{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.468000px;}
.ws56{word-spacing:-0.390000px;}
.ws1e{word-spacing:-0.312000px;}
.wsde{word-spacing:-0.234000px;}
.ws97{word-spacing:-0.156000px;}
.ws2{word-spacing:0.000000px;}
.wsa3{word-spacing:0.078000px;}
.wsa6{word-spacing:0.156000px;}
.wsbd{word-spacing:0.234000px;}
.wsaf{word-spacing:0.312000px;}
.ws69{word-spacing:0.390000px;}
.ws87{word-spacing:0.468000px;}
.ws9d{word-spacing:0.546000px;}
.ws40{word-spacing:0.624000px;}
.ws5f{word-spacing:0.780000px;}
.wsf8{word-spacing:0.858000px;}
.ws54{word-spacing:0.936000px;}
.wsaa{word-spacing:1.014000px;}
.ws25{word-spacing:1.092000px;}
.ws3a{word-spacing:1.170000px;}
.wsbc{word-spacing:1.248000px;}
.ws4a{word-spacing:1.326000px;}
.wsed{word-spacing:1.482000px;}
.ws5{word-spacing:1.560000px;}
.wsfd{word-spacing:1.638000px;}
.wsb{word-spacing:1.716000px;}
.ws70{word-spacing:1.794000px;}
.wse7{word-spacing:1.872000px;}
.ws4f{word-spacing:1.950000px;}
.ws8c{word-spacing:2.028000px;}
.ws71{word-spacing:2.106000px;}
.wse8{word-spacing:2.184000px;}
.ws23{word-spacing:2.262000px;}
.ws53{word-spacing:2.340000px;}
.ws64{word-spacing:2.418000px;}
.ws2c{word-spacing:2.496000px;}
.wsa2{word-spacing:2.574000px;}
.ws90{word-spacing:2.652000px;}
.wsdb{word-spacing:2.730000px;}
.ws8d{word-spacing:2.808000px;}
.wse6{word-spacing:2.886000px;}
.ws7f{word-spacing:2.964000px;}
.wsfa{word-spacing:3.042000px;}
.ws27{word-spacing:3.120000px;}
.wsd1{word-spacing:3.198000px;}
.wsc7{word-spacing:3.276000px;}
.ws43{word-spacing:3.354000px;}
.ws8a{word-spacing:3.432000px;}
.ws42{word-spacing:3.510000px;}
.wsc0{word-spacing:3.588000px;}
.wsa{word-spacing:3.666000px;}
.ws1d{word-spacing:3.744000px;}
.ws9e{word-spacing:3.822000px;}
.ws84{word-spacing:3.900000px;}
.ws8b{word-spacing:3.978000px;}
.ws91{word-spacing:4.056000px;}
.ws92{word-spacing:4.134000px;}
.ws63{word-spacing:4.212000px;}
.ws38{word-spacing:4.290000px;}
.wscd{word-spacing:4.368000px;}
.wsab{word-spacing:4.446000px;}
.wsca{word-spacing:4.524000px;}
.wsc4{word-spacing:4.602000px;}
.wsa5{word-spacing:4.680000px;}
.ws8{word-spacing:4.758000px;}
.ws66{word-spacing:4.836000px;}
.ws6b{word-spacing:4.914000px;}
.ws2e{word-spacing:4.992000px;}
.ws1a{word-spacing:5.070000px;}
.wsf4{word-spacing:5.148000px;}
.ws78{word-spacing:5.226000px;}
.ws77{word-spacing:5.304000px;}
.wseb{word-spacing:5.382000px;}
.ws4d{word-spacing:5.460000px;}
.ws6a{word-spacing:5.616000px;}
.wsa8{word-spacing:5.694000px;}
.ws6{word-spacing:5.772000px;}
.ws3{word-spacing:5.832000px;}
.ws48{word-spacing:5.850000px;}
.ws49{word-spacing:5.928000px;}
.wsf0{word-spacing:6.006000px;}
.ws18{word-spacing:6.084000px;}
.ws7{word-spacing:6.240000px;}
.ws51{word-spacing:6.318000px;}
.ws7d{word-spacing:6.552000px;}
.wsf7{word-spacing:6.630000px;}
.ws96{word-spacing:6.708000px;}
.ws5d{word-spacing:6.786000px;}
.wsb0{word-spacing:6.864000px;}
.wscb{word-spacing:6.942000px;}
.ws62{word-spacing:7.020000px;}
.ws34{word-spacing:7.098000px;}
.wsdc{word-spacing:7.176000px;}
.wsec{word-spacing:7.254000px;}
.ws85{word-spacing:7.332000px;}
.ws29{word-spacing:7.410000px;}
.wsa9{word-spacing:7.488000px;}
.ws95{word-spacing:7.566000px;}
.ws12{word-spacing:7.644000px;}
.ws16{word-spacing:7.800000px;}
.wsb2{word-spacing:7.878000px;}
.wsc3{word-spacing:7.956000px;}
.wsd3{word-spacing:8.034000px;}
.ws32{word-spacing:8.112000px;}
.ws33{word-spacing:8.190000px;}
.wsb8{word-spacing:8.268000px;}
.ws4e{word-spacing:8.346000px;}
.ws55{word-spacing:8.424000px;}
.ws5b{word-spacing:8.502000px;}
.wse4{word-spacing:8.580000px;}
.ws98{word-spacing:8.658000px;}
.ws5a{word-spacing:8.736000px;}
.wse5{word-spacing:8.814000px;}
.ws11{word-spacing:8.892000px;}
.ws102{word-spacing:9.048000px;}
.ws80{word-spacing:9.126000px;}
.wsae{word-spacing:9.282000px;}
.ws86{word-spacing:9.360000px;}
.wsff{word-spacing:9.438000px;}
.ws3b{word-spacing:9.516000px;}
.ws4c{word-spacing:9.594000px;}
.ws4b{word-spacing:9.672000px;}
.ws19{word-spacing:9.750000px;}
.wsc5{word-spacing:9.828000px;}
.ws2d{word-spacing:9.984000px;}
.ws17{word-spacing:10.062000px;}
.ws30{word-spacing:10.140000px;}
.wsea{word-spacing:10.218000px;}
.wsad{word-spacing:10.296000px;}
.wsa0{word-spacing:10.374000px;}
.wsb3{word-spacing:10.608000px;}
.ws75{word-spacing:10.686000px;}
.wsd8{word-spacing:10.764000px;}
.wscc{word-spacing:10.842000px;}
.wsb5{word-spacing:10.920000px;}
.wsc2{word-spacing:10.998000px;}
.ws61{word-spacing:11.076000px;}
.wsc1{word-spacing:11.388000px;}
.wsac{word-spacing:11.466000px;}
.ws109{word-spacing:11.544000px;}
.ws15{word-spacing:11.700000px;}
.ws100{word-spacing:11.778000px;}
.ws28{word-spacing:11.856000px;}
.ws9{word-spacing:11.934000px;}
.ws108{word-spacing:12.012000px;}
.wsd7{word-spacing:12.246000px;}
.wsee{word-spacing:12.402000px;}
.ws3e{word-spacing:12.480000px;}
.ws9a{word-spacing:12.636000px;}
.wsda{word-spacing:12.714000px;}
.wsb1{word-spacing:12.792000px;}
.ws81{word-spacing:13.026000px;}
.ws101{word-spacing:13.416000px;}
.wsd9{word-spacing:13.494000px;}
.ws7b{word-spacing:13.572000px;}
.ws7c{word-spacing:13.650000px;}
.ws83{word-spacing:13.728000px;}
.ws60{word-spacing:13.884000px;}
.wsd6{word-spacing:14.040000px;}
.ws106{word-spacing:14.196000px;}
.wsf1{word-spacing:14.274000px;}
.wsd2{word-spacing:14.976000px;}
.ws94{word-spacing:15.054000px;}
.wsf5{word-spacing:15.210000px;}
.wsbf{word-spacing:15.600000px;}
.wsd5{word-spacing:15.678000px;}
.ws3c{word-spacing:16.380000px;}
.ws31{word-spacing:16.770000px;}
.wsfe{word-spacing:16.926000px;}
.ws36{word-spacing:17.160000px;}
.ws35{word-spacing:17.316000px;}
.wsf3{word-spacing:17.784000px;}
.wsc8{word-spacing:17.862000px;}
.ws52{word-spacing:18.096000px;}
.ws82{word-spacing:19.344000px;}
.ws14{word-spacing:19.422000px;}
.ws59{word-spacing:19.578000px;}
.wse9{word-spacing:20.280000px;}
.wsb6{word-spacing:22.386000px;}
.wsce{word-spacing:24.258000px;}
.ws105{word-spacing:25.194000px;}
.wsf{word-spacing:26.520000px;}
._8{margin-left:-15.180000px;}
._b{margin-left:-13.098000px;}
._6{margin-left:-12.084000px;}
._e{margin-left:-11.064000px;}
._a{margin-left:-9.870000px;}
._4{margin-left:-7.464000px;}
._9{margin-left:-6.396000px;}
._7{margin-left:-5.388000px;}
._1{margin-left:-4.380000px;}
._2{margin-left:-3.240000px;}
._0{margin-left:-1.320000px;}
._5{width:1.236000px;}
._3{width:2.484000px;}
._f{width:4.332000px;}
._11{width:9.804000px;}
._10{width:11.724000px;}
._c{width:12.912000px;}
._d{width:35.070000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:6.480000px;}
.y23{bottom:55.169596px;}
.y9f{bottom:83.567700px;}
.y142{bottom:86.570700px;}
.yb4{bottom:109.073700px;}
.y9e{bottom:110.575200px;}
.y141{bottom:113.578200px;}
.y10f{bottom:113.669250px;}
.yf1{bottom:117.575700px;}
.y125{bottom:119.077200px;}
.y87{bottom:119.243850px;}
.y22{bottom:119.504100px;}
.yea{bottom:122.080200px;}
.y63{bottom:127.579200px;}
.y45{bottom:130.601700px;}
.yb3{bottom:136.081200px;}
.y9d{bottom:137.582700px;}
.y140{bottom:140.585700px;}
.y10e{bottom:140.676750px;}
.yf0{bottom:144.583200px;}
.y124{bottom:146.084700px;}
.y86{bottom:146.251350px;}
.y21{bottom:146.511600px;}
.ye9{bottom:149.087700px;}
.y62{bottom:154.586700px;}
.y44{bottom:157.609200px;}
.yb2{bottom:163.088700px;}
.y9c{bottom:164.590200px;}
.y10d{bottom:167.684250px;}
.yef{bottom:171.590700px;}
.y123{bottom:173.092200px;}
.y85{bottom:173.258850px;}
.ye8{bottom:176.095200px;}
.y118{bottom:180.092700px;}
.y61{bottom:181.594200px;}
.y20{bottom:182.021100px;}
.y13a{bottom:184.597200px;}
.y43{bottom:184.616700px;}
.yb1{bottom:190.096200px;}
.y9b{bottom:191.597700px;}
.y10c{bottom:194.691750px;}
.yee{bottom:198.598200px;}
.y11c{bottom:200.099700px;}
.y84{bottom:200.266350px;}
.y13f{bottom:203.102700px;}
.y117{bottom:207.100200px;}
.y60{bottom:208.601700px;}
.ye7{bottom:211.604700px;}
.y42{bottom:211.624200px;}
.yb0{bottom:217.103700px;}
.y1f{bottom:217.530600px;}
.y10b{bottom:221.699250px;}
.yca{bottom:225.605700px;}
.y9a{bottom:227.107200px;}
.y83{bottom:227.273850px;}
.y116{bottom:234.107700px;}
.y5f{bottom:235.609200px;}
.ye6{bottom:238.612200px;}
.y41{bottom:238.631700px;}
.yaf{bottom:244.111200px;}
.y1e{bottom:244.538100px;}
.y10a{bottom:248.706750px;}
.yc9{bottom:252.613200px;}
.y99{bottom:254.114700px;}
.y82{bottom:254.281350px;}
.y115{bottom:261.115200px;}
.y5e{bottom:262.616700px;}
.ye5{bottom:265.619700px;}
.y40{bottom:265.639200px;}
.yae{bottom:271.118700px;}
.y109{bottom:275.714250px;}
.y114{bottom:279.620700px;}
.y1d{bottom:280.047600px;}
.y98{bottom:281.122200px;}
.y81{bottom:281.288850px;}
.yc8{bottom:288.122700px;}
.y5d{bottom:289.624200px;}
.ye4{bottom:292.627200px;}
.y3f{bottom:292.646700px;}
.yad{bottom:298.126200px;}
.y139{bottom:301.129200px;}
.y113{bottom:306.628200px;}
.y1c{bottom:307.055100px;}
.y97{bottom:308.129700px;}
.y80{bottom:308.296350px;}
.y108{bottom:311.223750px;}
.yc7{bottom:315.130200px;}
.y5c{bottom:316.631700px;}
.ye3{bottom:319.634700px;}
.y3e{bottom:319.654200px;}
.yed{bottom:323.632200px;}
.yac{bottom:325.133700px;}
.y138{bottom:328.136700px;}
.y112{bottom:333.635700px;}
.y1b{bottom:334.062600px;}
.y96{bottom:335.137200px;}
.y107{bottom:338.231250px;}
.yc6{bottom:342.137700px;}
.y5b{bottom:343.639200px;}
.y7f{bottom:343.805850px;}
.ye2{bottom:346.642200px;}
.y3d{bottom:346.661700px;}
.yec{bottom:350.639700px;}
.yab{bottom:352.141200px;}
.y13e{bottom:355.144200px;}
.y111{bottom:360.643200px;}
.y1a{bottom:361.070100px;}
.y122{bottom:362.144700px;}
.y137{bottom:363.646200px;}
.y106{bottom:365.238750px;}
.yc5{bottom:369.145200px;}
.y5a{bottom:370.646700px;}
.y7e{bottom:370.813350px;}
.ye1{bottom:373.649700px;}
.y3c{bottom:373.669200px;}
.yeb{bottom:377.647200px;}
.yaa{bottom:379.148700px;}
.yfa{bottom:387.650700px;}
.y19{bottom:388.077600px;}
.y121{bottom:389.152200px;}
.y136{bottom:390.653700px;}
.y126{bottom:396.152700px;}
.y59{bottom:397.654200px;}
.y7d{bottom:397.820850px;}
.ye0{bottom:400.657200px;}
.y105{bottom:400.748250px;}
.yc4{bottom:404.654700px;}
.ya9{bottom:406.156200px;}
.y3b{bottom:409.178700px;}
.y110{bottom:414.658200px;}
.y135{bottom:417.661200px;}
.yf9{bottom:423.160200px;}
.y18{bottom:423.587100px;}
.y58{bottom:424.661700px;}
.ydf{bottom:427.664700px;}
.y104{bottom:427.755750px;}
.yc3{bottom:431.662200px;}
.yf4{bottom:433.163700px;}
.y7c{bottom:433.330350px;}
.y3a{bottom:436.186200px;}
.ya8{bottom:441.665700px;}
.yf8{bottom:450.167700px;}
.y17{bottom:450.594600px;}
.y57{bottom:451.669200px;}
.y134{bottom:453.170700px;}
.yde{bottom:454.672200px;}
.y103{bottom:454.763250px;}
.yc2{bottom:458.669700px;}
.yf3{bottom:460.171200px;}
.y7b{bottom:460.337850px;}
.y39{bottom:463.193700px;}
.ya7{bottom:468.673200px;}
.yf7{bottom:477.175200px;}
.y16{bottom:477.602100px;}
.y56{bottom:478.676700px;}
.y133{bottom:480.178200px;}
.y102{bottom:481.770750px;}
.yc1{bottom:485.677200px;}
.y95{bottom:487.178700px;}
.ydd{bottom:490.181700px;}
.ya6{bottom:495.680700px;}
.y7a{bottom:495.847350px;}
.y38{bottom:498.703200px;}
.yf6{bottom:504.182700px;}
.y15{bottom:504.609600px;}
.y11b{bottom:505.684200px;}
.y132{bottom:507.185700px;}
.y101{bottom:508.778250px;}
.yc0{bottom:512.684700px;}
.y55{bottom:514.186200px;}
.ydc{bottom:517.189200px;}
.ya5{bottom:522.688200px;}
.y37{bottom:525.710700px;}
.yf5{bottom:531.190200px;}
.y79{bottom:531.351300px;}
.y14{bottom:531.617100px;}
.y11a{bottom:532.691700px;}
.y100{bottom:535.785750px;}
.ybf{bottom:539.692200px;}
.y54{bottom:541.193700px;}
.y131{bottom:542.695200px;}
.ydb{bottom:544.196700px;}
.y94{bottom:549.695700px;}
.y36{bottom:552.718200px;}
.ya4{bottom:558.197700px;}
.y119{bottom:559.699200px;}
.yff{bottom:562.793250px;}
.ybe{bottom:566.699700px;}
.y78{bottom:566.855250px;}
.y13{bottom:567.126600px;}
.y53{bottom:568.201200px;}
.y13d{bottom:569.702700px;}
.yda{bottom:571.204200px;}
.y93{bottom:576.703200px;}
.y130{bottom:578.204700px;}
.ya3{bottom:585.205200px;}
.y35{bottom:588.227700px;}
.yfe{bottom:589.800750px;}
.ybd{bottom:593.707200px;}
.y52{bottom:595.208700px;}
.yd9{bottom:598.211700px;}
.y77{bottom:602.209200px;}
.y92{bottom:603.710700px;}
.y12f{bottom:605.212200px;}
.ya2{bottom:612.212700px;}
.y34{bottom:615.235200px;}
.yfd{bottom:616.808250px;}
.ybc{bottom:620.714700px;}
.y51{bottom:622.216200px;}
.yd8{bottom:625.219200px;}
.y76{bottom:629.216700px;}
.y91{bottom:630.718200px;}
.y12e{bottom:632.219700px;}
.yf2{bottom:639.220200px;}
.y33{bottom:642.242700px;}
.yfc{bottom:643.815750px;}
.ya1{bottom:647.722200px;}
.y50{bottom:649.223700px;}
.yd7{bottom:652.226700px;}
.y75{bottom:656.224200px;}
.y120{bottom:657.725700px;}
.y12d{bottom:659.227200px;}
.y90{bottom:666.227700px;}
.y32{bottom:669.250200px;}
.ya0{bottom:674.729700px;}
.y4f{bottom:676.231200px;}
.yd6{bottom:679.234200px;}
.yfb{bottom:679.319850px;}
.y74{bottom:683.231700px;}
.y12{bottom:683.630550px;}
.y11f{bottom:684.733200px;}
.y13c{bottom:686.234700px;}
.y8f{bottom:693.235200px;}
.y12c{bottom:694.736700px;}
.ybb{bottom:701.737200px;}
.y31{bottom:704.759700px;}
.yd5{bottom:706.241700px;}
.y73{bottom:710.239200px;}
.y11{bottom:710.630550px;}
.y4e{bottom:711.740700px;}
.y8e{bottom:720.242700px;}
.y12b{bottom:721.744200px;}
.yba{bottom:728.744700px;}
.y72{bottom:737.246700px;}
.y4d{bottom:738.748200px;}
.yd4{bottom:741.751200px;}
.y8d{bottom:747.250200px;}
.y13b{bottom:748.751700px;}
.yb9{bottom:755.752200px;}
.y12a{bottom:757.253700px;}
.y71{bottom:764.254200px;}
.y4c{bottom:765.755700px;}
.yd3{bottom:768.758700px;}
.y8c{bottom:774.257700px;}
.y10{bottom:779.633550px;}
.yb8{bottom:782.759700px;}
.y129{bottom:784.261200px;}
.y70{bottom:791.261700px;}
.y4b{bottom:792.763200px;}
.yd2{bottom:795.766200px;}
.y8b{bottom:801.265200px;}
.yf{bottom:809.630550px;}
.yb7{bottom:809.767200px;}
.y30{bottom:811.268700px;}
.y6f{bottom:818.269200px;}
.y4a{bottom:819.770700px;}
.y11e{bottom:828.272700px;}
.yd1{bottom:831.275700px;}
.y8a{bottom:836.774700px;}
.y2f{bottom:838.276200px;}
.y6e{bottom:845.276700px;}
.y49{bottom:846.778200px;}
.y11d{bottom:855.280200px;}
.y89{bottom:863.782200px;}
.yd0{bottom:866.785200px;}
.y6d{bottom:872.284200px;}
.y2e{bottom:873.785700px;}
.y48{bottom:882.287700px;}
.y88{bottom:890.789700px;}
.ye{bottom:895.445550px;}
.y6c{bottom:899.291700px;}
.y128{bottom:900.793200px;}
.ycf{bottom:902.294700px;}
.y2d{bottom:909.295200px;}
.yd{bottom:913.445550px;}
.yb6{bottom:917.797200px;}
.y6b{bottom:926.299200px;}
.y127{bottom:927.800700px;}
.yc{bottom:931.445550px;}
.y2c{bottom:936.302700px;}
.yce{bottom:937.804200px;}
.yb5{bottom:944.804700px;}
.yb{bottom:949.445550px;}
.y6a{bottom:953.306700px;}
.y2b{bottom:963.310200px;}
.ya{bottom:971.765550px;}
.y47{bottom:971.812200px;}
.ycd{bottom:973.313700px;}
.y69{bottom:980.314200px;}
.y2a{bottom:990.317700px;}
.y46{bottom:998.819700px;}
.y9{bottom:1001.630550px;}
.y68{bottom:1007.321700px;}
.ycc{bottom:1008.823200px;}
.y8{bottom:1019.630550px;}
.y29{bottom:1025.827200px;}
.y67{bottom:1034.329200px;}
.y7{bottom:1037.630550px;}
.ycb{bottom:1044.332700px;}
.y28{bottom:1052.834700px;}
.y6{bottom:1055.630550px;}
.y66{bottom:1061.336700px;}
.y5{bottom:1073.630550px;}
.y27{bottom:1079.842200px;}
.y65{bottom:1088.344200px;}
.y4{bottom:1091.630550px;}
.y26{bottom:1106.849700px;}
.y3{bottom:1109.630550px;}
.y64{bottom:1115.351700px;}
.y2{bottom:1127.630550px;}
.y25{bottom:1142.359200px;}
.y1{bottom:1145.630550px;}
.ha{height:24.282000px;}
.h4{height:42.720000px;}
.h2{height:48.660000px;}
.h3{height:49.140000px;}
.hb{height:50.400000px;}
.hd{height:53.526000px;}
.h7{height:60.552000px;}
.h9{height:63.258000px;}
.hc{height:63.882000px;}
.h8{height:65.598000px;}
.h5{height:76.896000px;}
.h6{height:90.828000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:17.280000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x4{left:153.070800px;}
.x3{left:187.299150px;}
.x2{left:437.816986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-11.093333pt;}
.lsc{letter-spacing:-9.568000pt;}
.lse{letter-spacing:-2.704000pt;}
.ls8{letter-spacing:-1.525333pt;}
.lsf{letter-spacing:-1.317333pt;}
.ls7{letter-spacing:-1.178667pt;}
.lsb{letter-spacing:-1.109333pt;}
.ls2{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.485333pt;}
.ls6{letter-spacing:-0.277333pt;}
.lsa{letter-spacing:-0.208000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.960000pt;}
.lsd{letter-spacing:5.477333pt;}
.ws10{word-spacing:-15.738667pt;}
.ws6f{word-spacing:-15.600000pt;}
.ws0{word-spacing:-15.045333pt;}
.ws1{word-spacing:-14.906667pt;}
.ws107{word-spacing:-14.560000pt;}
.ws89{word-spacing:-14.352000pt;}
.wsc6{word-spacing:-13.317333pt;}
.ws104{word-spacing:-13.173333pt;}
.wsb9{word-spacing:-7.488000pt;}
.wsfc{word-spacing:-7.072000pt;}
.wsfb{word-spacing:-7.002667pt;}
.wsf2{word-spacing:-6.794667pt;}
.wsdf{word-spacing:-6.378667pt;}
.ws74{word-spacing:-6.309333pt;}
.ws6d{word-spacing:-6.101333pt;}
.ws72{word-spacing:-6.032000pt;}
.ws73{word-spacing:-5.962667pt;}
.wsb7{word-spacing:-5.824000pt;}
.wscf{word-spacing:-5.546667pt;}
.ws46{word-spacing:-5.408000pt;}
.wsef{word-spacing:-5.338667pt;}
.ws67{word-spacing:-5.269333pt;}
.ws65{word-spacing:-5.061333pt;}
.wse2{word-spacing:-4.992000pt;}
.ws6e{word-spacing:-4.922667pt;}
.ws13{word-spacing:-4.853333pt;}
.wsf9{word-spacing:-4.784000pt;}
.wsb4{word-spacing:-4.714667pt;}
.ws7a{word-spacing:-4.645333pt;}
.ws79{word-spacing:-4.576000pt;}
.ws3d{word-spacing:-4.506667pt;}
.wsa7{word-spacing:-4.437333pt;}
.wsbe{word-spacing:-4.368000pt;}
.wsbb{word-spacing:-4.298667pt;}
.wsdd{word-spacing:-4.021333pt;}
.wsc{word-spacing:-3.882667pt;}
.ws9c{word-spacing:-3.813333pt;}
.ws68{word-spacing:-3.744000pt;}
.ws20{word-spacing:-3.674667pt;}
.wsba{word-spacing:-3.605333pt;}
.wsf6{word-spacing:-3.466667pt;}
.wsd{word-spacing:-3.397333pt;}
.wse3{word-spacing:-3.258667pt;}
.wsa1{word-spacing:-3.189333pt;}
.wsd0{word-spacing:-3.120000pt;}
.ws3f{word-spacing:-3.050667pt;}
.ws58{word-spacing:-2.981333pt;}
.ws103{word-spacing:-2.912000pt;}
.wse{word-spacing:-2.842667pt;}
.ws24{word-spacing:-2.773333pt;}
.ws7e{word-spacing:-2.704000pt;}
.ws9b{word-spacing:-2.634667pt;}
.ws47{word-spacing:-2.565333pt;}
.ws76{word-spacing:-2.496000pt;}
.ws57{word-spacing:-2.426667pt;}
.ws45{word-spacing:-2.357333pt;}
.ws41{word-spacing:-2.288000pt;}
.ws2f{word-spacing:-2.218667pt;}
.ws37{word-spacing:-2.149333pt;}
.ws5e{word-spacing:-2.080000pt;}
.wsc9{word-spacing:-2.010667pt;}
.wsa4{word-spacing:-1.941333pt;}
.wsd4{word-spacing:-1.872000pt;}
.ws2b{word-spacing:-1.802667pt;}
.ws1f{word-spacing:-1.733333pt;}
.ws39{word-spacing:-1.664000pt;}
.ws1c{word-spacing:-1.594667pt;}
.wse0{word-spacing:-1.525333pt;}
.ws9f{word-spacing:-1.456000pt;}
.wse1{word-spacing:-1.386667pt;}
.ws99{word-spacing:-1.317333pt;}
.ws50{word-spacing:-1.248000pt;}
.ws1b{word-spacing:-1.178667pt;}
.ws5c{word-spacing:-1.109333pt;}
.ws26{word-spacing:-1.040000pt;}
.ws93{word-spacing:-0.970667pt;}
.ws6c{word-spacing:-0.901333pt;}
.ws8e{word-spacing:-0.832000pt;}
.ws44{word-spacing:-0.762667pt;}
.ws2a{word-spacing:-0.693333pt;}
.ws8f{word-spacing:-0.624000pt;}
.ws88{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.485333pt;}
.ws4{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.416000pt;}
.ws56{word-spacing:-0.346667pt;}
.ws1e{word-spacing:-0.277333pt;}
.wsde{word-spacing:-0.208000pt;}
.ws97{word-spacing:-0.138667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.069333pt;}
.wsa6{word-spacing:0.138667pt;}
.wsbd{word-spacing:0.208000pt;}
.wsaf{word-spacing:0.277333pt;}
.ws69{word-spacing:0.346667pt;}
.ws87{word-spacing:0.416000pt;}
.ws9d{word-spacing:0.485333pt;}
.ws40{word-spacing:0.554667pt;}
.ws5f{word-spacing:0.693333pt;}
.wsf8{word-spacing:0.762667pt;}
.ws54{word-spacing:0.832000pt;}
.wsaa{word-spacing:0.901333pt;}
.ws25{word-spacing:0.970667pt;}
.ws3a{word-spacing:1.040000pt;}
.wsbc{word-spacing:1.109333pt;}
.ws4a{word-spacing:1.178667pt;}
.wsed{word-spacing:1.317333pt;}
.ws5{word-spacing:1.386667pt;}
.wsfd{word-spacing:1.456000pt;}
.wsb{word-spacing:1.525333pt;}
.ws70{word-spacing:1.594667pt;}
.wse7{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.733333pt;}
.ws8c{word-spacing:1.802667pt;}
.ws71{word-spacing:1.872000pt;}
.wse8{word-spacing:1.941333pt;}
.ws23{word-spacing:2.010667pt;}
.ws53{word-spacing:2.080000pt;}
.ws64{word-spacing:2.149333pt;}
.ws2c{word-spacing:2.218667pt;}
.wsa2{word-spacing:2.288000pt;}
.ws90{word-spacing:2.357333pt;}
.wsdb{word-spacing:2.426667pt;}
.ws8d{word-spacing:2.496000pt;}
.wse6{word-spacing:2.565333pt;}
.ws7f{word-spacing:2.634667pt;}
.wsfa{word-spacing:2.704000pt;}
.ws27{word-spacing:2.773333pt;}
.wsd1{word-spacing:2.842667pt;}
.wsc7{word-spacing:2.912000pt;}
.ws43{word-spacing:2.981333pt;}
.ws8a{word-spacing:3.050667pt;}
.ws42{word-spacing:3.120000pt;}
.wsc0{word-spacing:3.189333pt;}
.wsa{word-spacing:3.258667pt;}
.ws1d{word-spacing:3.328000pt;}
.ws9e{word-spacing:3.397333pt;}
.ws84{word-spacing:3.466667pt;}
.ws8b{word-spacing:3.536000pt;}
.ws91{word-spacing:3.605333pt;}
.ws92{word-spacing:3.674667pt;}
.ws63{word-spacing:3.744000pt;}
.ws38{word-spacing:3.813333pt;}
.wscd{word-spacing:3.882667pt;}
.wsab{word-spacing:3.952000pt;}
.wsca{word-spacing:4.021333pt;}
.wsc4{word-spacing:4.090667pt;}
.wsa5{word-spacing:4.160000pt;}
.ws8{word-spacing:4.229333pt;}
.ws66{word-spacing:4.298667pt;}
.ws6b{word-spacing:4.368000pt;}
.ws2e{word-spacing:4.437333pt;}
.ws1a{word-spacing:4.506667pt;}
.wsf4{word-spacing:4.576000pt;}
.ws78{word-spacing:4.645333pt;}
.ws77{word-spacing:4.714667pt;}
.wseb{word-spacing:4.784000pt;}
.ws4d{word-spacing:4.853333pt;}
.ws6a{word-spacing:4.992000pt;}
.wsa8{word-spacing:5.061333pt;}
.ws6{word-spacing:5.130667pt;}
.ws3{word-spacing:5.184000pt;}
.ws48{word-spacing:5.200000pt;}
.ws49{word-spacing:5.269333pt;}
.wsf0{word-spacing:5.338667pt;}
.ws18{word-spacing:5.408000pt;}
.ws7{word-spacing:5.546667pt;}
.ws51{word-spacing:5.616000pt;}
.ws7d{word-spacing:5.824000pt;}
.wsf7{word-spacing:5.893333pt;}
.ws96{word-spacing:5.962667pt;}
.ws5d{word-spacing:6.032000pt;}
.wsb0{word-spacing:6.101333pt;}
.wscb{word-spacing:6.170667pt;}
.ws62{word-spacing:6.240000pt;}
.ws34{word-spacing:6.309333pt;}
.wsdc{word-spacing:6.378667pt;}
.wsec{word-spacing:6.448000pt;}
.ws85{word-spacing:6.517333pt;}
.ws29{word-spacing:6.586667pt;}
.wsa9{word-spacing:6.656000pt;}
.ws95{word-spacing:6.725333pt;}
.ws12{word-spacing:6.794667pt;}
.ws16{word-spacing:6.933333pt;}
.wsb2{word-spacing:7.002667pt;}
.wsc3{word-spacing:7.072000pt;}
.wsd3{word-spacing:7.141333pt;}
.ws32{word-spacing:7.210667pt;}
.ws33{word-spacing:7.280000pt;}
.wsb8{word-spacing:7.349333pt;}
.ws4e{word-spacing:7.418667pt;}
.ws55{word-spacing:7.488000pt;}
.ws5b{word-spacing:7.557333pt;}
.wse4{word-spacing:7.626667pt;}
.ws98{word-spacing:7.696000pt;}
.ws5a{word-spacing:7.765333pt;}
.wse5{word-spacing:7.834667pt;}
.ws11{word-spacing:7.904000pt;}
.ws102{word-spacing:8.042667pt;}
.ws80{word-spacing:8.112000pt;}
.wsae{word-spacing:8.250667pt;}
.ws86{word-spacing:8.320000pt;}
.wsff{word-spacing:8.389333pt;}
.ws3b{word-spacing:8.458667pt;}
.ws4c{word-spacing:8.528000pt;}
.ws4b{word-spacing:8.597333pt;}
.ws19{word-spacing:8.666667pt;}
.wsc5{word-spacing:8.736000pt;}
.ws2d{word-spacing:8.874667pt;}
.ws17{word-spacing:8.944000pt;}
.ws30{word-spacing:9.013333pt;}
.wsea{word-spacing:9.082667pt;}
.wsad{word-spacing:9.152000pt;}
.wsa0{word-spacing:9.221333pt;}
.wsb3{word-spacing:9.429333pt;}
.ws75{word-spacing:9.498667pt;}
.wsd8{word-spacing:9.568000pt;}
.wscc{word-spacing:9.637333pt;}
.wsb5{word-spacing:9.706667pt;}
.wsc2{word-spacing:9.776000pt;}
.ws61{word-spacing:9.845333pt;}
.wsc1{word-spacing:10.122667pt;}
.wsac{word-spacing:10.192000pt;}
.ws109{word-spacing:10.261333pt;}
.ws15{word-spacing:10.400000pt;}
.ws100{word-spacing:10.469333pt;}
.ws28{word-spacing:10.538667pt;}
.ws9{word-spacing:10.608000pt;}
.ws108{word-spacing:10.677333pt;}
.wsd7{word-spacing:10.885333pt;}
.wsee{word-spacing:11.024000pt;}
.ws3e{word-spacing:11.093333pt;}
.ws9a{word-spacing:11.232000pt;}
.wsda{word-spacing:11.301333pt;}
.wsb1{word-spacing:11.370667pt;}
.ws81{word-spacing:11.578667pt;}
.ws101{word-spacing:11.925333pt;}
.wsd9{word-spacing:11.994667pt;}
.ws7b{word-spacing:12.064000pt;}
.ws7c{word-spacing:12.133333pt;}
.ws83{word-spacing:12.202667pt;}
.ws60{word-spacing:12.341333pt;}
.wsd6{word-spacing:12.480000pt;}
.ws106{word-spacing:12.618667pt;}
.wsf1{word-spacing:12.688000pt;}
.wsd2{word-spacing:13.312000pt;}
.ws94{word-spacing:13.381333pt;}
.wsf5{word-spacing:13.520000pt;}
.wsbf{word-spacing:13.866667pt;}
.wsd5{word-spacing:13.936000pt;}
.ws3c{word-spacing:14.560000pt;}
.ws31{word-spacing:14.906667pt;}
.wsfe{word-spacing:15.045333pt;}
.ws36{word-spacing:15.253333pt;}
.ws35{word-spacing:15.392000pt;}
.wsf3{word-spacing:15.808000pt;}
.wsc8{word-spacing:15.877333pt;}
.ws52{word-spacing:16.085333pt;}
.ws82{word-spacing:17.194667pt;}
.ws14{word-spacing:17.264000pt;}
.ws59{word-spacing:17.402667pt;}
.wse9{word-spacing:18.026667pt;}
.wsb6{word-spacing:19.898667pt;}
.wsce{word-spacing:21.562667pt;}
.ws105{word-spacing:22.394667pt;}
.wsf{word-spacing:23.573333pt;}
._8{margin-left:-13.493333pt;}
._b{margin-left:-11.642667pt;}
._6{margin-left:-10.741333pt;}
._e{margin-left:-9.834667pt;}
._a{margin-left:-8.773333pt;}
._4{margin-left:-6.634667pt;}
._9{margin-left:-5.685333pt;}
._7{margin-left:-4.789333pt;}
._1{margin-left:-3.893333pt;}
._2{margin-left:-2.880000pt;}
._0{margin-left:-1.173333pt;}
._5{width:1.098667pt;}
._3{width:2.208000pt;}
._f{width:3.850667pt;}
._11{width:8.714667pt;}
._10{width:10.421333pt;}
._c{width:11.477333pt;}
._d{width:31.173333pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:5.760000pt;}
.y23{bottom:49.039641pt;}
.y9f{bottom:74.282400pt;}
.y142{bottom:76.951733pt;}
.yb4{bottom:96.954400pt;}
.y9e{bottom:98.289067pt;}
.y141{bottom:100.958400pt;}
.y10f{bottom:101.039333pt;}
.yf1{bottom:104.511733pt;}
.y125{bottom:105.846400pt;}
.y87{bottom:105.994533pt;}
.y22{bottom:106.225867pt;}
.yea{bottom:108.515733pt;}
.y63{bottom:113.403733pt;}
.y45{bottom:116.090400pt;}
.yb3{bottom:120.961067pt;}
.y9d{bottom:122.295733pt;}
.y140{bottom:124.965067pt;}
.y10e{bottom:125.046000pt;}
.yf0{bottom:128.518400pt;}
.y124{bottom:129.853067pt;}
.y86{bottom:130.001200pt;}
.y21{bottom:130.232533pt;}
.ye9{bottom:132.522400pt;}
.y62{bottom:137.410400pt;}
.y44{bottom:140.097067pt;}
.yb2{bottom:144.967733pt;}
.y9c{bottom:146.302400pt;}
.y10d{bottom:149.052667pt;}
.yef{bottom:152.525067pt;}
.y123{bottom:153.859733pt;}
.y85{bottom:154.007867pt;}
.ye8{bottom:156.529067pt;}
.y118{bottom:160.082400pt;}
.y61{bottom:161.417067pt;}
.y20{bottom:161.796533pt;}
.y13a{bottom:164.086400pt;}
.y43{bottom:164.103733pt;}
.yb1{bottom:168.974400pt;}
.y9b{bottom:170.309067pt;}
.y10c{bottom:173.059333pt;}
.yee{bottom:176.531733pt;}
.y11c{bottom:177.866400pt;}
.y84{bottom:178.014533pt;}
.y13f{bottom:180.535733pt;}
.y117{bottom:184.089067pt;}
.y60{bottom:185.423733pt;}
.ye7{bottom:188.093067pt;}
.y42{bottom:188.110400pt;}
.yb0{bottom:192.981067pt;}
.y1f{bottom:193.360533pt;}
.y10b{bottom:197.066000pt;}
.yca{bottom:200.538400pt;}
.y9a{bottom:201.873067pt;}
.y83{bottom:202.021200pt;}
.y116{bottom:208.095733pt;}
.y5f{bottom:209.430400pt;}
.ye6{bottom:212.099733pt;}
.y41{bottom:212.117067pt;}
.yaf{bottom:216.987733pt;}
.y1e{bottom:217.367200pt;}
.y10a{bottom:221.072667pt;}
.yc9{bottom:224.545067pt;}
.y99{bottom:225.879733pt;}
.y82{bottom:226.027867pt;}
.y115{bottom:232.102400pt;}
.y5e{bottom:233.437067pt;}
.ye5{bottom:236.106400pt;}
.y40{bottom:236.123733pt;}
.yae{bottom:240.994400pt;}
.y109{bottom:245.079333pt;}
.y114{bottom:248.551733pt;}
.y1d{bottom:248.931200pt;}
.y98{bottom:249.886400pt;}
.y81{bottom:250.034533pt;}
.yc8{bottom:256.109067pt;}
.y5d{bottom:257.443733pt;}
.ye4{bottom:260.113067pt;}
.y3f{bottom:260.130400pt;}
.yad{bottom:265.001067pt;}
.y139{bottom:267.670400pt;}
.y113{bottom:272.558400pt;}
.y1c{bottom:272.937867pt;}
.y97{bottom:273.893067pt;}
.y80{bottom:274.041200pt;}
.y108{bottom:276.643333pt;}
.yc7{bottom:280.115733pt;}
.y5c{bottom:281.450400pt;}
.ye3{bottom:284.119733pt;}
.y3e{bottom:284.137067pt;}
.yed{bottom:287.673067pt;}
.yac{bottom:289.007733pt;}
.y138{bottom:291.677067pt;}
.y112{bottom:296.565067pt;}
.y1b{bottom:296.944533pt;}
.y96{bottom:297.899733pt;}
.y107{bottom:300.650000pt;}
.yc6{bottom:304.122400pt;}
.y5b{bottom:305.457067pt;}
.y7f{bottom:305.605200pt;}
.ye2{bottom:308.126400pt;}
.y3d{bottom:308.143733pt;}
.yec{bottom:311.679733pt;}
.yab{bottom:313.014400pt;}
.y13e{bottom:315.683733pt;}
.y111{bottom:320.571733pt;}
.y1a{bottom:320.951200pt;}
.y122{bottom:321.906400pt;}
.y137{bottom:323.241067pt;}
.y106{bottom:324.656667pt;}
.yc5{bottom:328.129067pt;}
.y5a{bottom:329.463733pt;}
.y7e{bottom:329.611867pt;}
.ye1{bottom:332.133067pt;}
.y3c{bottom:332.150400pt;}
.yeb{bottom:335.686400pt;}
.yaa{bottom:337.021067pt;}
.yfa{bottom:344.578400pt;}
.y19{bottom:344.957867pt;}
.y121{bottom:345.913067pt;}
.y136{bottom:347.247733pt;}
.y126{bottom:352.135733pt;}
.y59{bottom:353.470400pt;}
.y7d{bottom:353.618533pt;}
.ye0{bottom:356.139733pt;}
.y105{bottom:356.220667pt;}
.yc4{bottom:359.693067pt;}
.ya9{bottom:361.027733pt;}
.y3b{bottom:363.714400pt;}
.y110{bottom:368.585067pt;}
.y135{bottom:371.254400pt;}
.yf9{bottom:376.142400pt;}
.y18{bottom:376.521867pt;}
.y58{bottom:377.477067pt;}
.ydf{bottom:380.146400pt;}
.y104{bottom:380.227333pt;}
.yc3{bottom:383.699733pt;}
.yf4{bottom:385.034400pt;}
.y7c{bottom:385.182533pt;}
.y3a{bottom:387.721067pt;}
.ya8{bottom:392.591733pt;}
.yf8{bottom:400.149067pt;}
.y17{bottom:400.528533pt;}
.y57{bottom:401.483733pt;}
.y134{bottom:402.818400pt;}
.yde{bottom:404.153067pt;}
.y103{bottom:404.234000pt;}
.yc2{bottom:407.706400pt;}
.yf3{bottom:409.041067pt;}
.y7b{bottom:409.189200pt;}
.y39{bottom:411.727733pt;}
.ya7{bottom:416.598400pt;}
.yf7{bottom:424.155733pt;}
.y16{bottom:424.535200pt;}
.y56{bottom:425.490400pt;}
.y133{bottom:426.825067pt;}
.y102{bottom:428.240667pt;}
.yc1{bottom:431.713067pt;}
.y95{bottom:433.047733pt;}
.ydd{bottom:435.717067pt;}
.ya6{bottom:440.605067pt;}
.y7a{bottom:440.753200pt;}
.y38{bottom:443.291733pt;}
.yf6{bottom:448.162400pt;}
.y15{bottom:448.541867pt;}
.y11b{bottom:449.497067pt;}
.y132{bottom:450.831733pt;}
.y101{bottom:452.247333pt;}
.yc0{bottom:455.719733pt;}
.y55{bottom:457.054400pt;}
.ydc{bottom:459.723733pt;}
.ya5{bottom:464.611733pt;}
.y37{bottom:467.298400pt;}
.yf5{bottom:472.169067pt;}
.y79{bottom:472.312267pt;}
.y14{bottom:472.548533pt;}
.y11a{bottom:473.503733pt;}
.y100{bottom:476.254000pt;}
.ybf{bottom:479.726400pt;}
.y54{bottom:481.061067pt;}
.y131{bottom:482.395733pt;}
.ydb{bottom:483.730400pt;}
.y94{bottom:488.618400pt;}
.y36{bottom:491.305067pt;}
.ya4{bottom:496.175733pt;}
.y119{bottom:497.510400pt;}
.yff{bottom:500.260667pt;}
.ybe{bottom:503.733067pt;}
.y78{bottom:503.871333pt;}
.y13{bottom:504.112533pt;}
.y53{bottom:505.067733pt;}
.y13d{bottom:506.402400pt;}
.yda{bottom:507.737067pt;}
.y93{bottom:512.625067pt;}
.y130{bottom:513.959733pt;}
.ya3{bottom:520.182400pt;}
.y35{bottom:522.869067pt;}
.yfe{bottom:524.267333pt;}
.ybd{bottom:527.739733pt;}
.y52{bottom:529.074400pt;}
.yd9{bottom:531.743733pt;}
.y77{bottom:535.297067pt;}
.y92{bottom:536.631733pt;}
.y12f{bottom:537.966400pt;}
.ya2{bottom:544.189067pt;}
.y34{bottom:546.875733pt;}
.yfd{bottom:548.274000pt;}
.ybc{bottom:551.746400pt;}
.y51{bottom:553.081067pt;}
.yd8{bottom:555.750400pt;}
.y76{bottom:559.303733pt;}
.y91{bottom:560.638400pt;}
.y12e{bottom:561.973067pt;}
.yf2{bottom:568.195733pt;}
.y33{bottom:570.882400pt;}
.yfc{bottom:572.280667pt;}
.ya1{bottom:575.753067pt;}
.y50{bottom:577.087733pt;}
.yd7{bottom:579.757067pt;}
.y75{bottom:583.310400pt;}
.y120{bottom:584.645067pt;}
.y12d{bottom:585.979733pt;}
.y90{bottom:592.202400pt;}
.y32{bottom:594.889067pt;}
.ya0{bottom:599.759733pt;}
.y4f{bottom:601.094400pt;}
.yd6{bottom:603.763733pt;}
.yfb{bottom:603.839867pt;}
.y74{bottom:607.317067pt;}
.y12{bottom:607.671600pt;}
.y11f{bottom:608.651733pt;}
.y13c{bottom:609.986400pt;}
.y8f{bottom:616.209067pt;}
.y12c{bottom:617.543733pt;}
.ybb{bottom:623.766400pt;}
.y31{bottom:626.453067pt;}
.yd5{bottom:627.770400pt;}
.y73{bottom:631.323733pt;}
.y11{bottom:631.671600pt;}
.y4e{bottom:632.658400pt;}
.y8e{bottom:640.215733pt;}
.y12b{bottom:641.550400pt;}
.yba{bottom:647.773067pt;}
.y72{bottom:655.330400pt;}
.y4d{bottom:656.665067pt;}
.yd4{bottom:659.334400pt;}
.y8d{bottom:664.222400pt;}
.y13b{bottom:665.557067pt;}
.yb9{bottom:671.779733pt;}
.y12a{bottom:673.114400pt;}
.y71{bottom:679.337067pt;}
.y4c{bottom:680.671733pt;}
.yd3{bottom:683.341067pt;}
.y8c{bottom:688.229067pt;}
.y10{bottom:693.007600pt;}
.yb8{bottom:695.786400pt;}
.y129{bottom:697.121067pt;}
.y70{bottom:703.343733pt;}
.y4b{bottom:704.678400pt;}
.yd2{bottom:707.347733pt;}
.y8b{bottom:712.235733pt;}
.yf{bottom:719.671600pt;}
.yb7{bottom:719.793067pt;}
.y30{bottom:721.127733pt;}
.y6f{bottom:727.350400pt;}
.y4a{bottom:728.685067pt;}
.y11e{bottom:736.242400pt;}
.yd1{bottom:738.911733pt;}
.y8a{bottom:743.799733pt;}
.y2f{bottom:745.134400pt;}
.y6e{bottom:751.357067pt;}
.y49{bottom:752.691733pt;}
.y11d{bottom:760.249067pt;}
.y89{bottom:767.806400pt;}
.yd0{bottom:770.475733pt;}
.y6d{bottom:775.363733pt;}
.y2e{bottom:776.698400pt;}
.y48{bottom:784.255733pt;}
.y88{bottom:791.813067pt;}
.ye{bottom:795.951600pt;}
.y6c{bottom:799.370400pt;}
.y128{bottom:800.705067pt;}
.ycf{bottom:802.039733pt;}
.y2d{bottom:808.262400pt;}
.yd{bottom:811.951600pt;}
.yb6{bottom:815.819733pt;}
.y6b{bottom:823.377067pt;}
.y127{bottom:824.711733pt;}
.yc{bottom:827.951600pt;}
.y2c{bottom:832.269067pt;}
.yce{bottom:833.603733pt;}
.yb5{bottom:839.826400pt;}
.yb{bottom:843.951600pt;}
.y6a{bottom:847.383733pt;}
.y2b{bottom:856.275733pt;}
.ya{bottom:863.791600pt;}
.y47{bottom:863.833067pt;}
.ycd{bottom:865.167733pt;}
.y69{bottom:871.390400pt;}
.y2a{bottom:880.282400pt;}
.y46{bottom:887.839733pt;}
.y9{bottom:890.338267pt;}
.y68{bottom:895.397067pt;}
.ycc{bottom:896.731733pt;}
.y8{bottom:906.338267pt;}
.y29{bottom:911.846400pt;}
.y67{bottom:919.403733pt;}
.y7{bottom:922.338267pt;}
.ycb{bottom:928.295733pt;}
.y28{bottom:935.853067pt;}
.y6{bottom:938.338267pt;}
.y66{bottom:943.410400pt;}
.y5{bottom:954.338267pt;}
.y27{bottom:959.859733pt;}
.y65{bottom:967.417067pt;}
.y4{bottom:970.338267pt;}
.y26{bottom:983.866400pt;}
.y3{bottom:986.338267pt;}
.y64{bottom:991.423733pt;}
.y2{bottom:1002.338267pt;}
.y25{bottom:1015.430400pt;}
.y1{bottom:1018.338267pt;}
.ha{height:21.584000pt;}
.h4{height:37.973333pt;}
.h2{height:43.253333pt;}
.h3{height:43.680000pt;}
.hb{height:44.800000pt;}
.hd{height:47.578667pt;}
.h7{height:53.824000pt;}
.h9{height:56.229333pt;}
.hc{height:56.784000pt;}
.h8{height:58.309333pt;}
.h5{height:68.352000pt;}
.h6{height:80.736000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:15.360000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x4{left:136.062933pt;}
.x3{left:166.488133pt;}
.x2{left:389.170654pt;}
}




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