
    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_fc1e1fd745d76b4af8c96780.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_acd0d34994371662f1b1fa5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_77d4e5977d450bc5e24387f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e7f04b1e4e46077ac42d591.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:18.066000px;}
.ls0{letter-spacing:18.144000px;}
.ls11{letter-spacing:22.458000px;}
.lsc{letter-spacing:23.832000px;}
.ls6{letter-spacing:24.624000px;}
.ls1{letter-spacing:26.784000px;}
.ls13{letter-spacing:33.984000px;}
.ls12{letter-spacing:34.704000px;}
.ls14{letter-spacing:35.430000px;}
.lse{letter-spacing:37.590000px;}
.ls3{letter-spacing:43.344000px;}
.ls2{letter-spacing:45.504000px;}
.ls5{letter-spacing:51.258000px;}
.ls8{letter-spacing:53.424000px;}
.lsd{letter-spacing:54.066000px;}
.ls7{letter-spacing:59.184000px;}
.lsa{letter-spacing:64.152000px;}
.lsb{letter-spacing:65.592000px;}
.ls10{letter-spacing:66.384000px;}
.lsf{letter-spacing:93.030000px;}
.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;}
}
.ws2{word-spacing:-55.944000px;}
.ws0{word-spacing:-50.571600px;}
.ws10e{word-spacing:-38.886000px;}
.ws10c{word-spacing:-38.862000px;}
.ws115{word-spacing:-38.857800px;}
.ws49{word-spacing:-38.661000px;}
.ws106{word-spacing:-38.656800px;}
.ws6f{word-spacing:-38.655000px;}
.wsb3{word-spacing:-38.653200px;}
.ws56{word-spacing:-38.652300px;}
.ws9{word-spacing:-38.646600px;}
.ws36{word-spacing:-38.646000px;}
.ws46{word-spacing:-38.644200px;}
.ws6b{word-spacing:-38.448000px;}
.wsd9{word-spacing:-38.447700px;}
.ws71{word-spacing:-38.446800px;}
.ws6d{word-spacing:-38.446200px;}
.ws23{word-spacing:-38.444400px;}
.ws39{word-spacing:-38.442600px;}
.ws103{word-spacing:-38.440800px;}
.wsc{word-spacing:-38.437800px;}
.ws5{word-spacing:-38.433300px;}
.wsd0{word-spacing:-38.431800px;}
.ws114{word-spacing:-38.422800px;}
.ws3{word-spacing:-38.368800px;}
.ws1d{word-spacing:-38.166000px;}
.ws16{word-spacing:-38.160000px;}
.ws104{word-spacing:-38.154600px;}
.ws76{word-spacing:-38.154000px;}
.ws119{word-spacing:-38.152800px;}
.ws5c{word-spacing:-38.087100px;}
.ws1a{word-spacing:-37.944000px;}
.wsb5{word-spacing:-37.941000px;}
.wsca{word-spacing:-37.940400px;}
.ws5b{word-spacing:-37.938600px;}
.ws4{word-spacing:-37.937700px;}
.ws6e{word-spacing:-37.934400px;}
.ws7e{word-spacing:-37.932600px;}
.wsb2{word-spacing:-37.929600px;}
.ws94{word-spacing:-37.916400px;}
.ws73{word-spacing:-37.730400px;}
.ws3b{word-spacing:-37.728000px;}
.wsa6{word-spacing:-37.724400px;}
.ws29{word-spacing:-37.722600px;}
.ws10d{word-spacing:-37.721700px;}
.ws111{word-spacing:-37.719000px;}
.ws109{word-spacing:-37.718100px;}
.wsf3{word-spacing:-37.716300px;}
.ws15{word-spacing:-37.440000px;}
.wsc8{word-spacing:-37.422000px;}
.ws10{word-spacing:-37.230000px;}
.wsb{word-spacing:-37.222800px;}
.wsc3{word-spacing:-37.212300px;}
.wsb8{word-spacing:-37.003200px;}
.ws8e{word-spacing:-36.997200px;}
.wse1{word-spacing:-36.994500px;}
.wsa{word-spacing:-36.924300px;}
.ws4f{word-spacing:-36.720000px;}
.wsde{word-spacing:-36.702000px;}
.wse2{word-spacing:-36.505500px;}
.ws8a{word-spacing:-36.504000px;}
.ws10b{word-spacing:-36.496800px;}
.ws9d{word-spacing:-36.284400px;}
.ws78{word-spacing:-36.006000px;}
.ws60{word-spacing:-36.000000px;}
.wsd7{word-spacing:-35.790000px;}
.wsa7{word-spacing:-35.784000px;}
.wse3{word-spacing:-35.782200px;}
.wsbd{word-spacing:-35.781000px;}
.ws74{word-spacing:-35.779200px;}
.ws9e{word-spacing:-35.778000px;}
.wsfb{word-spacing:-35.773200px;}
.ws64{word-spacing:-35.568000px;}
.ws8d{word-spacing:-35.286000px;}
.ws4c{word-spacing:-35.280000px;}
.wsf6{word-spacing:-35.276400px;}
.wsfd{word-spacing:-35.053200px;}
.wsab{word-spacing:-35.043000px;}
.ws35{word-spacing:-34.560000px;}
.ws25{word-spacing:-34.554000px;}
.ws1b{word-spacing:-34.344000px;}
.ws7f{word-spacing:-33.840000px;}
.ws62{word-spacing:-33.624000px;}
.wsc1{word-spacing:-33.620100px;}
.wsc7{word-spacing:-33.613200px;}
.ws95{word-spacing:-33.611400px;}
.ws17{word-spacing:-33.398400px;}
.wscb{word-spacing:-33.397200px;}
.ws24{word-spacing:-33.120000px;}
.ws82{word-spacing:-32.887200px;}
.wsa4{word-spacing:-32.674800px;}
.wsba{word-spacing:-32.175000px;}
.wsf7{word-spacing:-32.169000px;}
.wsfc{word-spacing:-32.165400px;}
.ws88{word-spacing:-31.958400px;}
.ws85{word-spacing:-31.680000px;}
.ws8c{word-spacing:-31.674000px;}
.ws14{word-spacing:-31.464000px;}
.wsf4{word-spacing:-31.382100px;}
.ws7b{word-spacing:-31.242000px;}
.ws65{word-spacing:-30.960000px;}
.ws77{word-spacing:-30.954000px;}
.ws112{word-spacing:-30.953700px;}
.ws44{word-spacing:-30.744000px;}
.ws68{word-spacing:-30.742200px;}
.wsd4{word-spacing:-30.740400px;}
.ws1f{word-spacing:-30.524400px;}
.wsf5{word-spacing:-30.240000px;}
.ws18{word-spacing:-30.024000px;}
.wsf9{word-spacing:-30.022200px;}
.ws9f{word-spacing:-30.020400px;}
.wsa0{word-spacing:-29.808000px;}
.wsd6{word-spacing:-29.804400px;}
.wsa1{word-spacing:-29.801400px;}
.ws87{word-spacing:-29.520000px;}
.ws22{word-spacing:-29.304000px;}
.wsee{word-spacing:-29.300400px;}
.ws7d{word-spacing:-29.295000px;}
.ws43{word-spacing:-29.088000px;}
.wsb4{word-spacing:-29.079000px;}
.ws97{word-spacing:-28.800000px;}
.ws10a{word-spacing:-28.783800px;}
.ws12{word-spacing:-28.584000px;}
.ws99{word-spacing:-28.580400px;}
.wsbe{word-spacing:-28.579500px;}
.ws31{word-spacing:-28.578600px;}
.ws53{word-spacing:-28.575000px;}
.ws98{word-spacing:-28.571400px;}
.wsec{word-spacing:-28.560600px;}
.wsac{word-spacing:-28.360800px;}
.wsaa{word-spacing:-27.864000px;}
.wsdb{word-spacing:-27.639000px;}
.ws45{word-spacing:-27.360000px;}
.ws61{word-spacing:-27.144000px;}
.wsb7{word-spacing:-26.908500px;}
.ws2a{word-spacing:-26.640000px;}
.wse4{word-spacing:-26.636400px;}
.wsf8{word-spacing:-26.413200px;}
.wsfe{word-spacing:-26.200800px;}
.wsf0{word-spacing:-25.918200px;}
.ws1e{word-spacing:-25.704000px;}
.ws19{word-spacing:-25.700400px;}
.ws8f{word-spacing:-25.200000px;}
.ws3d{word-spacing:-24.975000px;}
.ws2c{word-spacing:-24.480000px;}
.ws116{word-spacing:-24.456600px;}
.ws1c{word-spacing:-24.264000px;}
.ws83{word-spacing:-24.044400px;}
.wse0{word-spacing:-23.760000px;}
.wsae{word-spacing:-23.753400px;}
.ws101{word-spacing:-23.544000px;}
.ws51{word-spacing:-23.540400px;}
.wsb6{word-spacing:-23.535600px;}
.ws33{word-spacing:-23.040000px;}
.ws13{word-spacing:-22.824000px;}
.wsa5{word-spacing:-22.822200px;}
.wsb0{word-spacing:-22.818600px;}
.wsef{word-spacing:-22.817700px;}
.ws69{word-spacing:-22.608000px;}
.wsa2{word-spacing:-22.600800px;}
.wse5{word-spacing:-22.596000px;}
.ws52{word-spacing:-22.593600px;}
.ws41{word-spacing:-22.320000px;}
.wsea{word-spacing:-22.318200px;}
.wse9{word-spacing:-22.316400px;}
.wsff{word-spacing:-22.107300px;}
.ws5e{word-spacing:-22.106400px;}
.ws102{word-spacing:-21.868200px;}
.ws96{word-spacing:-21.600000px;}
.wsbb{word-spacing:-21.372000px;}
.ws105{word-spacing:-21.353400px;}
.ws6a{word-spacing:-21.164400px;}
.ws34{word-spacing:-20.880000px;}
.wsdd{word-spacing:-20.874600px;}
.ws67{word-spacing:-20.664000px;}
.ws3a{word-spacing:-20.160000px;}
.ws75{word-spacing:-19.944600px;}
.ws79{word-spacing:-19.724400px;}
.wsce{word-spacing:-19.717200px;}
.wsc0{word-spacing:-19.440000px;}
.ws84{word-spacing:-19.230000px;}
.wsd3{word-spacing:-19.218600px;}
.ws48{word-spacing:-19.008000px;}
.ws1{word-spacing:-18.804300px;}
.wsc9{word-spacing:-18.722400px;}
.ws100{word-spacing:-18.720000px;}
.wse6{word-spacing:-18.643500px;}
.wsd5{word-spacing:-18.500400px;}
.ws21{word-spacing:-18.000000px;}
.wsb1{word-spacing:-17.996400px;}
.wsc4{word-spacing:-17.774100px;}
.ws80{word-spacing:-17.773200px;}
.ws37{word-spacing:-17.280000px;}
.ws47{word-spacing:-17.055000px;}
.wse{word-spacing:-16.560000px;}
.ws26{word-spacing:-16.346400px;}
.wsbf{word-spacing:-16.340400px;}
.ws20{word-spacing:-16.332600px;}
.wsd{word-spacing:-16.329600px;}
.ws59{word-spacing:-15.840000px;}
.ws63{word-spacing:-15.630000px;}
.wsc2{word-spacing:-15.609600px;}
.ws50{word-spacing:-15.404400px;}
.ws4b{word-spacing:-15.126000px;}
.ws70{word-spacing:-15.120000px;}
.ws66{word-spacing:-14.904000px;}
.wsb9{word-spacing:-14.890800px;}
.ws3c{word-spacing:-14.400000px;}
.ws81{word-spacing:-14.180400px;}
.ws9c{word-spacing:-14.166000px;}
.ws72{word-spacing:-13.968000px;}
.ws8b{word-spacing:-13.686000px;}
.wsf2{word-spacing:-13.680000px;}
.ws7c{word-spacing:-13.453200px;}
.ws5d{word-spacing:-12.954000px;}
.ws86{word-spacing:-12.748200px;}
.wsed{word-spacing:-12.528000px;}
.ws55{word-spacing:-12.508200px;}
.wsd2{word-spacing:-12.240600px;}
.ws4e{word-spacing:-12.240000px;}
.wse7{word-spacing:-12.236400px;}
.ws38{word-spacing:-12.230400px;}
.ws5a{word-spacing:-12.024000px;}
.ws93{word-spacing:-11.520000px;}
.ws28{word-spacing:-11.304000px;}
.wsda{word-spacing:-11.293200px;}
.ws32{word-spacing:-10.800000px;}
.wsc6{word-spacing:-10.566000px;}
.wscc{word-spacing:-9.864000px;}
.ws30{word-spacing:-9.858000px;}
.wsfa{word-spacing:-9.135000px;}
.ws8{word-spacing:-8.920500px;}
.wseb{word-spacing:-8.640000px;}
.wsd1{word-spacing:-8.421000px;}
.wsa3{word-spacing:-7.488000px;}
.wsd8{word-spacing:-7.115700px;}
.ws4a{word-spacing:-6.264000px;}
.ws107{word-spacing:-6.031200px;}
.ws3e{word-spacing:-5.760000px;}
.ws113{word-spacing:-5.326800px;}
.wsdc{word-spacing:-4.820400px;}
.ws2f{word-spacing:-4.316400px;}
.ws2b{word-spacing:-4.104000px;}
.ws108{word-spacing:-3.879000px;}
.wsc5{word-spacing:-3.377700px;}
.wsad{word-spacing:-2.873400px;}
.ws11{word-spacing:-2.664000px;}
.ws57{word-spacing:-2.656800px;}
.ws40{word-spacing:-2.166000px;}
.ws7a{word-spacing:-1.932300px;}
.ws42{word-spacing:-1.008000px;}
.ws9a{word-spacing:-1.005000px;}
.ws91{word-spacing:-0.726000px;}
.wsf1{word-spacing:-0.712800px;}
.ws6{word-spacing:-0.701100px;}
.ws9b{word-spacing:-0.510000px;}
.wsaf{word-spacing:-0.483600px;}
.ws27{word-spacing:0.000000px;}
.ws7{word-spacing:0.016800px;}
.ws10f{word-spacing:0.228600px;}
.ws54{word-spacing:0.720000px;}
.ws89{word-spacing:1.656000px;}
.wsdf{word-spacing:2.161800px;}
.ws4d{word-spacing:2.163600px;}
.ws2e{word-spacing:3.600000px;}
.ws3f{word-spacing:4.032000px;}
.ws5f{word-spacing:4.035000px;}
.ws6c{word-spacing:4.543200px;}
.ws2d{word-spacing:5.760000px;}
.ws58{word-spacing:6.696000px;}
.ws118{word-spacing:8.145900px;}
.ws110{word-spacing:9.357600px;}
.wscd{word-spacing:11.023200px;}
.ws90{word-spacing:11.730000px;}
.ws92{word-spacing:11.736000px;}
.wsf{word-spacing:17.497800px;}
.wse8{word-spacing:23.988600px;}
.ws117{word-spacing:25.200900px;}
.wscf{word-spacing:35.280000px;}
.wsbc{word-spacing:49.903200px;}
.wsa9{word-spacing:72.232800px;}
.wsa8{word-spacing:917.280000px;}
._16{margin-left:-2.414400px;}
._2{margin-left:-1.245600px;}
._0{width:1.562400px;}
._1f{width:2.610000px;}
._21{width:16.872000px;}
._3{width:18.576000px;}
._6{width:19.879200px;}
._e{width:21.636000px;}
._9{width:22.680000px;}
._17{width:24.163200px;}
._1{width:25.781100px;}
._d{width:27.858000px;}
._15{width:29.692200px;}
._8{width:31.464000px;}
._10{width:32.487600px;}
._1a{width:34.027200px;}
._1e{width:35.090400px;}
._18{width:36.099600px;}
._1b{width:37.944000px;}
._c{width:39.499200px;}
._b{width:40.629600px;}
._a{width:41.676600px;}
._1c{width:43.113600px;}
._19{width:44.725200px;}
._24{width:46.440000px;}
._14{width:47.451600px;}
._4{width:48.556200px;}
._f{width:50.803200px;}
._13{width:52.776000px;}
._7{width:54.547200px;}
._23{width:56.221200px;}
._5{width:57.516300px;}
._26{width:59.523000px;}
._12{width:60.546000px;}
._20{width:61.695600px;}
._11{width:62.706000px;}
._1d{width:63.864000px;}
._2a{width:65.743200px;}
._28{width:66.823200px;}
._22{width:68.772000px;}
._27{width:81.000000px;}
._25{width:92.448000px;}
._29{width:158.400000px;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(10,10,10);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.050000px;}
.y3{bottom:50.100000px;}
.ycf{bottom:97.711500px;}
.yf8{bottom:101.490000px;}
.y89{bottom:106.711500px;}
.y2b{bottom:117.330000px;}
.yce{bottom:118.411500px;}
.yf7{bottom:122.190000px;}
.y88{bottom:127.411500px;}
.y113{bottom:127.950000px;}
.ya6{bottom:129.930000px;}
.y2a{bottom:138.030000px;}
.ycd{bottom:139.111500px;}
.yf6{bottom:142.890000px;}
.y112{bottom:148.650000px;}
.y71{bottom:149.190000px;}
.ya5{bottom:150.630000px;}
.ycc{bottom:159.811500px;}
.y87{bottom:163.050000px;}
.yf5{bottom:163.590000px;}
.y53{bottom:165.930000px;}
.y111{bottom:169.350000px;}
.ya4{bottom:171.330000px;}
.y29{bottom:173.671500px;}
.ycb{bottom:180.511500px;}
.y86{bottom:183.930000px;}
.yf4{bottom:184.290000px;}
.y70{bottom:184.830000px;}
.ya3{bottom:192.030000px;}
.y28{bottom:194.370000px;}
.yca{bottom:201.211500px;}
.y52{bottom:201.571500px;}
.yf3{bottom:204.990000px;}
.ya2{bottom:212.730000px;}
.y6f{bottom:220.471500px;}
.y85{bottom:220.830000px;}
.yc9{bottom:221.911500px;}
.y51{bottom:222.271500px;}
.yf2{bottom:225.690000px;}
.y27{bottom:230.190000px;}
.y84{bottom:241.711500px;}
.yc8{bottom:242.611500px;}
.y50{bottom:242.971500px;}
.yf1{bottom:246.390000px;}
.ya1{bottom:248.370000px;}
.y26{bottom:250.890000px;}
.y6e{bottom:256.290000px;}
.yc7{bottom:263.311500px;}
.y4f{bottom:263.671500px;}
.yf0{bottom:267.090000px;}
.ya0{bottom:269.071500px;}
.y25{bottom:271.590000px;}
.y83{bottom:278.611500px;}
.y110{bottom:282.030000px;}
.yc6{bottom:284.011500px;}
.y4e{bottom:284.370000px;}
.yef{bottom:287.790000px;}
.y9f{bottom:289.771500px;}
.y6d{bottom:291.930000px;}
.y82{bottom:299.490000px;}
.yc5{bottom:304.711500px;}
.y4d{bottom:305.071500px;}
.y24{bottom:307.230000px;}
.yee{bottom:308.490000px;}
.y10f{bottom:317.671500px;}
.yc4{bottom:325.411500px;}
.y9e{bottom:325.590000px;}
.y4c{bottom:325.771500px;}
.y6c{bottom:327.571500px;}
.y23{bottom:327.930000px;}
.yed{bottom:329.190000px;}
.y81{bottom:336.390000px;}
.y10e{bottom:338.370000px;}
.y9d{bottom:346.290000px;}
.y4b{bottom:346.471500px;}
.y22{bottom:348.630000px;}
.yec{bottom:349.890000px;}
.y80{bottom:357.090000px;}
.y10d{bottom:359.071500px;}
.yc3{bottom:361.050000px;}
.y6b{bottom:363.390000px;}
.y9c{bottom:366.990000px;}
.y4a{bottom:367.171500px;}
.yeb{bottom:370.590000px;}
.y10c{bottom:379.771500px;}
.yc2{bottom:381.750000px;}
.y21{bottom:384.271500px;}
.y49{bottom:387.870000px;}
.y7f{bottom:394.171500px;}
.y6a{bottom:399.030000px;}
.y10b{bottom:400.471500px;}
.yc1{bottom:402.450000px;}
.y9b{bottom:402.630000px;}
.y20{bottom:405.150000px;}
.yea{bottom:406.230000px;}
.y48{bottom:408.571500px;}
.y69{bottom:419.730000px;}
.y10a{bottom:421.171500px;}
.yc0{bottom:423.150000px;}
.y9a{bottom:423.330000px;}
.ye9{bottom:426.930000px;}
.y47{bottom:429.271500px;}
.y7e{bottom:431.071500px;}
.y12a{bottom:435.030000px;}
.y68{bottom:440.430000px;}
.y109{bottom:441.870000px;}
.y1f{bottom:442.050000px;}
.ybf{bottom:443.850000px;}
.y99{bottom:444.030000px;}
.ye8{bottom:447.630000px;}
.y46{bottom:449.971500px;}
.y67{bottom:461.130000px;}
.y108{bottom:462.571500px;}
.y1e{bottom:462.930000px;}
.ybe{bottom:464.550000px;}
.y98{bottom:464.730000px;}
.y7d{bottom:466.890000px;}
.ye7{bottom:468.330000px;}
.y129{bottom:476.430000px;}
.y66{bottom:481.830000px;}
.y107{bottom:483.271500px;}
.ybd{bottom:485.250000px;}
.y97{bottom:485.430000px;}
.y45{bottom:485.790000px;}
.y7c{bottom:487.590000px;}
.ye6{bottom:489.030000px;}
.y1d{bottom:499.830000px;}
.y106{bottom:503.971500px;}
.ybc{bottom:505.950000px;}
.y96{bottom:506.130000px;}
.y44{bottom:506.490000px;}
.ye5{bottom:509.730000px;}
.y65{bottom:517.471500px;}
.y128{bottom:517.830000px;}
.y1c{bottom:520.711500px;}
.y7b{bottom:523.230000px;}
.y105{bottom:524.671500px;}
.ybb{bottom:526.650000px;}
.y95{bottom:526.830000px;}
.y43{bottom:527.190000px;}
.ye4{bottom:530.430000px;}
.y127{bottom:538.530000px;}
.y7a{bottom:543.930000px;}
.y104{bottom:545.371500px;}
.yba{bottom:547.350000px;}
.y94{bottom:547.530000px;}
.ye3{bottom:551.130000px;}
.y64{bottom:553.290000px;}
.y1b{bottom:557.790000px;}
.y42{bottom:564.090000px;}
.y103{bottom:566.071500px;}
.yb9{bottom:568.050000px;}
.y93{bottom:568.230000px;}
.ye2{bottom:571.830000px;}
.y79{bottom:579.571500px;}
.y126{bottom:579.930000px;}
.y41{bottom:584.790000px;}
.y102{bottom:586.770000px;}
.yb8{bottom:588.750000px;}
.y63{bottom:588.930000px;}
.y1a{bottom:594.690000px;}
.y125{bottom:600.630000px;}
.y40{bottom:605.671500px;}
.ye1{bottom:607.471500px;}
.yb7{bottom:609.450000px;}
.y19{bottom:615.390000px;}
.y62{bottom:624.571500px;}
.ye0{bottom:628.171500px;}
.y18{bottom:636.090000px;}
.y124{bottom:642.030000px;}
.y3f{bottom:642.571500px;}
.y101{bottom:643.290000px;}
.yb6{bottom:645.090000px;}
.y61{bottom:645.270000px;}
.ydf{bottom:648.870000px;}
.y17{bottom:656.790000px;}
.y123{bottom:662.730000px;}
.y3e{bottom:663.450000px;}
.y100{bottom:663.990000px;}
.yb5{bottom:665.790000px;}
.y92{bottom:665.971500px;}
.yde{bottom:669.571500px;}
.y16{bottom:677.490000px;}
.y60{bottom:681.090000px;}
.yff{bottom:684.690000px;}
.yb4{bottom:686.490000px;}
.y91{bottom:686.671500px;}
.ydd{bottom:690.270000px;}
.y15{bottom:698.190000px;}
.y3d{bottom:700.350000px;}
.y5f{bottom:701.790000px;}
.y122{bottom:704.130000px;}
.yfe{bottom:705.390000px;}
.y90{bottom:707.370000px;}
.ydc{bottom:710.971500px;}
.y14{bottom:718.890000px;}
.y3c{bottom:721.050000px;}
.yb3{bottom:722.311500px;}
.y5e{bottom:722.490000px;}
.y121{bottom:724.830000px;}
.yfd{bottom:726.090000px;}
.y8f{bottom:728.071500px;}
.ydb{bottom:731.671500px;}
.y13{bottom:739.590000px;}
.y3b{bottom:741.930000px;}
.yb2{bottom:743.011500px;}
.y5d{bottom:743.190000px;}
.y120{bottom:745.530000px;}
.yfc{bottom:746.790000px;}
.y8e{bottom:748.770000px;}
.yda{bottom:752.370000px;}
.y12{bottom:760.290000px;}
.yb1{bottom:763.711500px;}
.y5c{bottom:763.890000px;}
.y11f{bottom:766.230000px;}
.yfb{bottom:767.490000px;}
.yd9{bottom:773.071500px;}
.y3a{bottom:778.830000px;}
.y11{bottom:780.990000px;}
.yb0{bottom:784.411500px;}
.y5b{bottom:784.590000px;}
.yfa{bottom:788.190000px;}
.yd8{bottom:793.770000px;}
.y39{bottom:799.530000px;}
.y10{bottom:801.690000px;}
.y11e{bottom:801.870000px;}
.yaf{bottom:804.930000px;}
.y8d{bottom:805.290000px;}
.yf9{bottom:808.890000px;}
.y78{bottom:816.630000px;}
.y38{bottom:820.230000px;}
.yf{bottom:822.390000px;}
.yae{bottom:825.630000px;}
.y8c{bottom:825.990000px;}
.yd7{bottom:829.590000px;}
.y11d{bottom:837.690000px;}
.y37{bottom:840.930000px;}
.ye{bottom:843.090000px;}
.yad{bottom:846.511500px;}
.y8b{bottom:846.690000px;}
.yd6{bottom:850.290000px;}
.y77{bottom:852.270000px;}
.y11c{bottom:858.390000px;}
.y5a{bottom:861.630000px;}
.y8a{bottom:867.390000px;}
.yac{bottom:868.650000px;}
.yd5{bottom:870.990000px;}
.y36{bottom:876.571500px;}
.yd{bottom:878.730000px;}
.y11b{bottom:879.090000px;}
.y59{bottom:882.330000px;}
.y76{bottom:888.090000px;}
.yab{bottom:890.611500px;}
.yd4{bottom:891.690000px;}
.y35{bottom:897.270000px;}
.yc{bottom:899.430000px;}
.y58{bottom:903.030000px;}
.yd3{bottom:912.390000px;}
.yaa{bottom:912.750000px;}
.y11a{bottom:913.290000px;}
.y34{bottom:917.970000px;}
.y57{bottom:923.730000px;}
.yd2{bottom:933.090000px;}
.y119{bottom:933.990000px;}
.ya9{bottom:934.711500px;}
.yb{bottom:935.070000px;}
.y33{bottom:938.670000px;}
.y56{bottom:944.430000px;}
.yd1{bottom:953.790000px;}
.y118{bottom:954.690000px;}
.ya{bottom:955.770000px;}
.ya8{bottom:956.850000px;}
.y32{bottom:959.370000px;}
.y55{bottom:965.130000px;}
.yd0{bottom:974.490000px;}
.y9{bottom:976.470000px;}
.ya7{bottom:978.811500px;}
.y31{bottom:980.070000px;}
.y117{bottom:988.890000px;}
.y75{bottom:995.190000px;}
.y30{bottom:1000.770000px;}
.y116{bottom:1009.590000px;}
.y8{bottom:1012.290000px;}
.y74{bottom:1015.890000px;}
.y2f{bottom:1021.470000px;}
.y73{bottom:1036.590000px;}
.y2e{bottom:1042.170000px;}
.y115{bottom:1043.790000px;}
.y7{bottom:1047.930000px;}
.y72{bottom:1057.290000px;}
.y2d{bottom:1062.870000px;}
.y114{bottom:1064.490000px;}
.y54{bottom:1077.990000px;}
.y6{bottom:1083.570000px;}
.y2c{bottom:1098.690000px;}
.y5{bottom:1119.211500px;}
.y2{bottom:1147.470000px;}
.y1{bottom:1188.150000px;}
.h4{height:20.700000px;}
.h3{height:47.588379px;}
.h6{height:49.289063px;}
.h8{height:49.301344px;}
.h9{height:49.307344px;}
.h7{height:49.313344px;}
.h5{height:50.027344px;}
.h2{height:66.494678px;}
.h0{height:1262.925000px;}
.h1{height:1263.000000px;}
.w2{width:27.000000px;}
.w0{width:893.025000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:111.060000px;}
.x8{left:115.560000px;}
.xe{left:117.720000px;}
.xc{left:124.560000px;}
.x1{left:128.338500px;}
.x2{left:129.600000px;}
.xb{left:133.560000px;}
.xa{left:138.060000px;}
.x4{left:141.480000px;}
.x9{left:142.560000px;}
.xd{left:147.060000px;}
.x3{left:427.575000px;}
.x6{left:509.038500px;}
.x5{left:518.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:16.058667pt;}
.ls0{letter-spacing:16.128000pt;}
.ls11{letter-spacing:19.962667pt;}
.lsc{letter-spacing:21.184000pt;}
.ls6{letter-spacing:21.888000pt;}
.ls1{letter-spacing:23.808000pt;}
.ls13{letter-spacing:30.208000pt;}
.ls12{letter-spacing:30.848000pt;}
.ls14{letter-spacing:31.493333pt;}
.lse{letter-spacing:33.413333pt;}
.ls3{letter-spacing:38.528000pt;}
.ls2{letter-spacing:40.448000pt;}
.ls5{letter-spacing:45.562667pt;}
.ls8{letter-spacing:47.488000pt;}
.lsd{letter-spacing:48.058667pt;}
.ls7{letter-spacing:52.608000pt;}
.lsa{letter-spacing:57.024000pt;}
.lsb{letter-spacing:58.304000pt;}
.ls10{letter-spacing:59.008000pt;}
.lsf{letter-spacing:82.693333pt;}
.ws2{word-spacing:-49.728000pt;}
.ws0{word-spacing:-44.952533pt;}
.ws10e{word-spacing:-34.565333pt;}
.ws10c{word-spacing:-34.544000pt;}
.ws115{word-spacing:-34.540267pt;}
.ws49{word-spacing:-34.365333pt;}
.ws106{word-spacing:-34.361600pt;}
.ws6f{word-spacing:-34.360000pt;}
.wsb3{word-spacing:-34.358400pt;}
.ws56{word-spacing:-34.357600pt;}
.ws9{word-spacing:-34.352533pt;}
.ws36{word-spacing:-34.352000pt;}
.ws46{word-spacing:-34.350400pt;}
.ws6b{word-spacing:-34.176000pt;}
.wsd9{word-spacing:-34.175733pt;}
.ws71{word-spacing:-34.174933pt;}
.ws6d{word-spacing:-34.174400pt;}
.ws23{word-spacing:-34.172800pt;}
.ws39{word-spacing:-34.171200pt;}
.ws103{word-spacing:-34.169600pt;}
.wsc{word-spacing:-34.166933pt;}
.ws5{word-spacing:-34.162933pt;}
.wsd0{word-spacing:-34.161600pt;}
.ws114{word-spacing:-34.153600pt;}
.ws3{word-spacing:-34.105600pt;}
.ws1d{word-spacing:-33.925333pt;}
.ws16{word-spacing:-33.920000pt;}
.ws104{word-spacing:-33.915200pt;}
.ws76{word-spacing:-33.914667pt;}
.ws119{word-spacing:-33.913600pt;}
.ws5c{word-spacing:-33.855200pt;}
.ws1a{word-spacing:-33.728000pt;}
.wsb5{word-spacing:-33.725333pt;}
.wsca{word-spacing:-33.724800pt;}
.ws5b{word-spacing:-33.723200pt;}
.ws4{word-spacing:-33.722400pt;}
.ws6e{word-spacing:-33.719467pt;}
.ws7e{word-spacing:-33.717867pt;}
.wsb2{word-spacing:-33.715200pt;}
.ws94{word-spacing:-33.703467pt;}
.ws73{word-spacing:-33.538133pt;}
.ws3b{word-spacing:-33.536000pt;}
.wsa6{word-spacing:-33.532800pt;}
.ws29{word-spacing:-33.531200pt;}
.ws10d{word-spacing:-33.530400pt;}
.ws111{word-spacing:-33.528000pt;}
.ws109{word-spacing:-33.527200pt;}
.wsf3{word-spacing:-33.525600pt;}
.ws15{word-spacing:-33.280000pt;}
.wsc8{word-spacing:-33.264000pt;}
.ws10{word-spacing:-33.093333pt;}
.wsb{word-spacing:-33.086933pt;}
.wsc3{word-spacing:-33.077600pt;}
.wsb8{word-spacing:-32.891733pt;}
.ws8e{word-spacing:-32.886400pt;}
.wse1{word-spacing:-32.884000pt;}
.wsa{word-spacing:-32.821600pt;}
.ws4f{word-spacing:-32.640000pt;}
.wsde{word-spacing:-32.624000pt;}
.wse2{word-spacing:-32.449333pt;}
.ws8a{word-spacing:-32.448000pt;}
.ws10b{word-spacing:-32.441600pt;}
.ws9d{word-spacing:-32.252800pt;}
.ws78{word-spacing:-32.005333pt;}
.ws60{word-spacing:-32.000000pt;}
.wsd7{word-spacing:-31.813333pt;}
.wsa7{word-spacing:-31.808000pt;}
.wse3{word-spacing:-31.806400pt;}
.wsbd{word-spacing:-31.805333pt;}
.ws74{word-spacing:-31.803733pt;}
.ws9e{word-spacing:-31.802667pt;}
.wsfb{word-spacing:-31.798400pt;}
.ws64{word-spacing:-31.616000pt;}
.ws8d{word-spacing:-31.365333pt;}
.ws4c{word-spacing:-31.360000pt;}
.wsf6{word-spacing:-31.356800pt;}
.wsfd{word-spacing:-31.158400pt;}
.wsab{word-spacing:-31.149333pt;}
.ws35{word-spacing:-30.720000pt;}
.ws25{word-spacing:-30.714667pt;}
.ws1b{word-spacing:-30.528000pt;}
.ws7f{word-spacing:-30.080000pt;}
.ws62{word-spacing:-29.888000pt;}
.wsc1{word-spacing:-29.884533pt;}
.wsc7{word-spacing:-29.878400pt;}
.ws95{word-spacing:-29.876800pt;}
.ws17{word-spacing:-29.687467pt;}
.wscb{word-spacing:-29.686400pt;}
.ws24{word-spacing:-29.440000pt;}
.ws82{word-spacing:-29.233067pt;}
.wsa4{word-spacing:-29.044267pt;}
.wsba{word-spacing:-28.600000pt;}
.wsf7{word-spacing:-28.594667pt;}
.wsfc{word-spacing:-28.591467pt;}
.ws88{word-spacing:-28.407467pt;}
.ws85{word-spacing:-28.160000pt;}
.ws8c{word-spacing:-28.154667pt;}
.ws14{word-spacing:-27.968000pt;}
.wsf4{word-spacing:-27.895200pt;}
.ws7b{word-spacing:-27.770667pt;}
.ws65{word-spacing:-27.520000pt;}
.ws77{word-spacing:-27.514667pt;}
.ws112{word-spacing:-27.514400pt;}
.ws44{word-spacing:-27.328000pt;}
.ws68{word-spacing:-27.326400pt;}
.wsd4{word-spacing:-27.324800pt;}
.ws1f{word-spacing:-27.132800pt;}
.wsf5{word-spacing:-26.880000pt;}
.ws18{word-spacing:-26.688000pt;}
.wsf9{word-spacing:-26.686400pt;}
.ws9f{word-spacing:-26.684800pt;}
.wsa0{word-spacing:-26.496000pt;}
.wsd6{word-spacing:-26.492800pt;}
.wsa1{word-spacing:-26.490133pt;}
.ws87{word-spacing:-26.240000pt;}
.ws22{word-spacing:-26.048000pt;}
.wsee{word-spacing:-26.044800pt;}
.ws7d{word-spacing:-26.040000pt;}
.ws43{word-spacing:-25.856000pt;}
.wsb4{word-spacing:-25.848000pt;}
.ws97{word-spacing:-25.600000pt;}
.ws10a{word-spacing:-25.585600pt;}
.ws12{word-spacing:-25.408000pt;}
.ws99{word-spacing:-25.404800pt;}
.wsbe{word-spacing:-25.404000pt;}
.ws31{word-spacing:-25.403200pt;}
.ws53{word-spacing:-25.400000pt;}
.ws98{word-spacing:-25.396800pt;}
.wsec{word-spacing:-25.387200pt;}
.wsac{word-spacing:-25.209600pt;}
.wsaa{word-spacing:-24.768000pt;}
.wsdb{word-spacing:-24.568000pt;}
.ws45{word-spacing:-24.320000pt;}
.ws61{word-spacing:-24.128000pt;}
.wsb7{word-spacing:-23.918667pt;}
.ws2a{word-spacing:-23.680000pt;}
.wse4{word-spacing:-23.676800pt;}
.wsf8{word-spacing:-23.478400pt;}
.wsfe{word-spacing:-23.289600pt;}
.wsf0{word-spacing:-23.038400pt;}
.ws1e{word-spacing:-22.848000pt;}
.ws19{word-spacing:-22.844800pt;}
.ws8f{word-spacing:-22.400000pt;}
.ws3d{word-spacing:-22.200000pt;}
.ws2c{word-spacing:-21.760000pt;}
.ws116{word-spacing:-21.739200pt;}
.ws1c{word-spacing:-21.568000pt;}
.ws83{word-spacing:-21.372800pt;}
.wse0{word-spacing:-21.120000pt;}
.wsae{word-spacing:-21.114133pt;}
.ws101{word-spacing:-20.928000pt;}
.ws51{word-spacing:-20.924800pt;}
.wsb6{word-spacing:-20.920533pt;}
.ws33{word-spacing:-20.480000pt;}
.ws13{word-spacing:-20.288000pt;}
.wsa5{word-spacing:-20.286400pt;}
.wsb0{word-spacing:-20.283200pt;}
.wsef{word-spacing:-20.282400pt;}
.ws69{word-spacing:-20.096000pt;}
.wsa2{word-spacing:-20.089600pt;}
.wse5{word-spacing:-20.085333pt;}
.ws52{word-spacing:-20.083200pt;}
.ws41{word-spacing:-19.840000pt;}
.wsea{word-spacing:-19.838400pt;}
.wse9{word-spacing:-19.836800pt;}
.wsff{word-spacing:-19.650933pt;}
.ws5e{word-spacing:-19.650133pt;}
.ws102{word-spacing:-19.438400pt;}
.ws96{word-spacing:-19.200000pt;}
.wsbb{word-spacing:-18.997333pt;}
.ws105{word-spacing:-18.980800pt;}
.ws6a{word-spacing:-18.812800pt;}
.ws34{word-spacing:-18.560000pt;}
.wsdd{word-spacing:-18.555200pt;}
.ws67{word-spacing:-18.368000pt;}
.ws3a{word-spacing:-17.920000pt;}
.ws75{word-spacing:-17.728533pt;}
.ws79{word-spacing:-17.532800pt;}
.wsce{word-spacing:-17.526400pt;}
.wsc0{word-spacing:-17.280000pt;}
.ws84{word-spacing:-17.093333pt;}
.wsd3{word-spacing:-17.083200pt;}
.ws48{word-spacing:-16.896000pt;}
.ws1{word-spacing:-16.714933pt;}
.wsc9{word-spacing:-16.642133pt;}
.ws100{word-spacing:-16.640000pt;}
.wse6{word-spacing:-16.572000pt;}
.wsd5{word-spacing:-16.444800pt;}
.ws21{word-spacing:-16.000000pt;}
.wsb1{word-spacing:-15.996800pt;}
.wsc4{word-spacing:-15.799200pt;}
.ws80{word-spacing:-15.798400pt;}
.ws37{word-spacing:-15.360000pt;}
.ws47{word-spacing:-15.160000pt;}
.wse{word-spacing:-14.720000pt;}
.ws26{word-spacing:-14.530133pt;}
.wsbf{word-spacing:-14.524800pt;}
.ws20{word-spacing:-14.517867pt;}
.wsd{word-spacing:-14.515200pt;}
.ws59{word-spacing:-14.080000pt;}
.ws63{word-spacing:-13.893333pt;}
.wsc2{word-spacing:-13.875200pt;}
.ws50{word-spacing:-13.692800pt;}
.ws4b{word-spacing:-13.445333pt;}
.ws70{word-spacing:-13.440000pt;}
.ws66{word-spacing:-13.248000pt;}
.wsb9{word-spacing:-13.236267pt;}
.ws3c{word-spacing:-12.800000pt;}
.ws81{word-spacing:-12.604800pt;}
.ws9c{word-spacing:-12.592000pt;}
.ws72{word-spacing:-12.416000pt;}
.ws8b{word-spacing:-12.165333pt;}
.wsf2{word-spacing:-12.160000pt;}
.ws7c{word-spacing:-11.958400pt;}
.ws5d{word-spacing:-11.514667pt;}
.ws86{word-spacing:-11.331733pt;}
.wsed{word-spacing:-11.136000pt;}
.ws55{word-spacing:-11.118400pt;}
.wsd2{word-spacing:-10.880533pt;}
.ws4e{word-spacing:-10.880000pt;}
.wse7{word-spacing:-10.876800pt;}
.ws38{word-spacing:-10.871467pt;}
.ws5a{word-spacing:-10.688000pt;}
.ws93{word-spacing:-10.240000pt;}
.ws28{word-spacing:-10.048000pt;}
.wsda{word-spacing:-10.038400pt;}
.ws32{word-spacing:-9.600000pt;}
.wsc6{word-spacing:-9.392000pt;}
.wscc{word-spacing:-8.768000pt;}
.ws30{word-spacing:-8.762667pt;}
.wsfa{word-spacing:-8.120000pt;}
.ws8{word-spacing:-7.929333pt;}
.wseb{word-spacing:-7.680000pt;}
.wsd1{word-spacing:-7.485333pt;}
.wsa3{word-spacing:-6.656000pt;}
.wsd8{word-spacing:-6.325067pt;}
.ws4a{word-spacing:-5.568000pt;}
.ws107{word-spacing:-5.361067pt;}
.ws3e{word-spacing:-5.120000pt;}
.ws113{word-spacing:-4.734933pt;}
.wsdc{word-spacing:-4.284800pt;}
.ws2f{word-spacing:-3.836800pt;}
.ws2b{word-spacing:-3.648000pt;}
.ws108{word-spacing:-3.448000pt;}
.wsc5{word-spacing:-3.002400pt;}
.wsad{word-spacing:-2.554133pt;}
.ws11{word-spacing:-2.368000pt;}
.ws57{word-spacing:-2.361600pt;}
.ws40{word-spacing:-1.925333pt;}
.ws7a{word-spacing:-1.717600pt;}
.ws42{word-spacing:-0.896000pt;}
.ws9a{word-spacing:-0.893333pt;}
.ws91{word-spacing:-0.645333pt;}
.wsf1{word-spacing:-0.633600pt;}
.ws6{word-spacing:-0.623200pt;}
.ws9b{word-spacing:-0.453333pt;}
.wsaf{word-spacing:-0.429867pt;}
.ws27{word-spacing:0.000000pt;}
.ws7{word-spacing:0.014933pt;}
.ws10f{word-spacing:0.203200pt;}
.ws54{word-spacing:0.640000pt;}
.ws89{word-spacing:1.472000pt;}
.wsdf{word-spacing:1.921600pt;}
.ws4d{word-spacing:1.923200pt;}
.ws2e{word-spacing:3.200000pt;}
.ws3f{word-spacing:3.584000pt;}
.ws5f{word-spacing:3.586667pt;}
.ws6c{word-spacing:4.038400pt;}
.ws2d{word-spacing:5.120000pt;}
.ws58{word-spacing:5.952000pt;}
.ws118{word-spacing:7.240800pt;}
.ws110{word-spacing:8.317867pt;}
.wscd{word-spacing:9.798400pt;}
.ws90{word-spacing:10.426667pt;}
.ws92{word-spacing:10.432000pt;}
.wsf{word-spacing:15.553600pt;}
.wse8{word-spacing:21.323200pt;}
.ws117{word-spacing:22.400800pt;}
.wscf{word-spacing:31.360000pt;}
.wsbc{word-spacing:44.358400pt;}
.wsa9{word-spacing:64.206933pt;}
.wsa8{word-spacing:815.360000pt;}
._16{margin-left:-2.146133pt;}
._2{margin-left:-1.107200pt;}
._0{width:1.388800pt;}
._1f{width:2.320000pt;}
._21{width:14.997333pt;}
._3{width:16.512000pt;}
._6{width:17.670400pt;}
._e{width:19.232000pt;}
._9{width:20.160000pt;}
._17{width:21.478400pt;}
._1{width:22.916533pt;}
._d{width:24.762667pt;}
._15{width:26.393067pt;}
._8{width:27.968000pt;}
._10{width:28.877867pt;}
._1a{width:30.246400pt;}
._1e{width:31.191467pt;}
._18{width:32.088533pt;}
._1b{width:33.728000pt;}
._c{width:35.110400pt;}
._b{width:36.115200pt;}
._a{width:37.045867pt;}
._1c{width:38.323200pt;}
._19{width:39.755733pt;}
._24{width:41.280000pt;}
._14{width:42.179200pt;}
._4{width:43.161067pt;}
._f{width:45.158400pt;}
._13{width:46.912000pt;}
._7{width:48.486400pt;}
._23{width:49.974400pt;}
._5{width:51.125600pt;}
._26{width:52.909333pt;}
._12{width:53.818667pt;}
._20{width:54.840533pt;}
._11{width:55.738667pt;}
._1d{width:56.768000pt;}
._2a{width:58.438400pt;}
._28{width:59.398400pt;}
._22{width:61.130667pt;}
._27{width:72.000000pt;}
._25{width:82.176000pt;}
._29{width:140.800000pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.600000pt;}
.y3{bottom:44.533333pt;}
.ycf{bottom:86.854667pt;}
.yf8{bottom:90.213333pt;}
.y89{bottom:94.854667pt;}
.y2b{bottom:104.293333pt;}
.yce{bottom:105.254667pt;}
.yf7{bottom:108.613333pt;}
.y88{bottom:113.254667pt;}
.y113{bottom:113.733333pt;}
.ya6{bottom:115.493333pt;}
.y2a{bottom:122.693333pt;}
.ycd{bottom:123.654667pt;}
.yf6{bottom:127.013333pt;}
.y112{bottom:132.133333pt;}
.y71{bottom:132.613333pt;}
.ya5{bottom:133.893333pt;}
.ycc{bottom:142.054667pt;}
.y87{bottom:144.933333pt;}
.yf5{bottom:145.413333pt;}
.y53{bottom:147.493333pt;}
.y111{bottom:150.533333pt;}
.ya4{bottom:152.293333pt;}
.y29{bottom:154.374667pt;}
.ycb{bottom:160.454667pt;}
.y86{bottom:163.493333pt;}
.yf4{bottom:163.813333pt;}
.y70{bottom:164.293333pt;}
.ya3{bottom:170.693333pt;}
.y28{bottom:172.773333pt;}
.yca{bottom:178.854667pt;}
.y52{bottom:179.174667pt;}
.yf3{bottom:182.213333pt;}
.ya2{bottom:189.093333pt;}
.y6f{bottom:195.974667pt;}
.y85{bottom:196.293333pt;}
.yc9{bottom:197.254667pt;}
.y51{bottom:197.574667pt;}
.yf2{bottom:200.613333pt;}
.y27{bottom:204.613333pt;}
.y84{bottom:214.854667pt;}
.yc8{bottom:215.654667pt;}
.y50{bottom:215.974667pt;}
.yf1{bottom:219.013333pt;}
.ya1{bottom:220.773333pt;}
.y26{bottom:223.013333pt;}
.y6e{bottom:227.813333pt;}
.yc7{bottom:234.054667pt;}
.y4f{bottom:234.374667pt;}
.yf0{bottom:237.413333pt;}
.ya0{bottom:239.174667pt;}
.y25{bottom:241.413333pt;}
.y83{bottom:247.654667pt;}
.y110{bottom:250.693333pt;}
.yc6{bottom:252.454667pt;}
.y4e{bottom:252.773333pt;}
.yef{bottom:255.813333pt;}
.y9f{bottom:257.574667pt;}
.y6d{bottom:259.493333pt;}
.y82{bottom:266.213333pt;}
.yc5{bottom:270.854667pt;}
.y4d{bottom:271.174667pt;}
.y24{bottom:273.093333pt;}
.yee{bottom:274.213333pt;}
.y10f{bottom:282.374667pt;}
.yc4{bottom:289.254667pt;}
.y9e{bottom:289.413333pt;}
.y4c{bottom:289.574667pt;}
.y6c{bottom:291.174667pt;}
.y23{bottom:291.493333pt;}
.yed{bottom:292.613333pt;}
.y81{bottom:299.013333pt;}
.y10e{bottom:300.773333pt;}
.y9d{bottom:307.813333pt;}
.y4b{bottom:307.974667pt;}
.y22{bottom:309.893333pt;}
.yec{bottom:311.013333pt;}
.y80{bottom:317.413333pt;}
.y10d{bottom:319.174667pt;}
.yc3{bottom:320.933333pt;}
.y6b{bottom:323.013333pt;}
.y9c{bottom:326.213333pt;}
.y4a{bottom:326.374667pt;}
.yeb{bottom:329.413333pt;}
.y10c{bottom:337.574667pt;}
.yc2{bottom:339.333333pt;}
.y21{bottom:341.574667pt;}
.y49{bottom:344.773333pt;}
.y7f{bottom:350.374667pt;}
.y6a{bottom:354.693333pt;}
.y10b{bottom:355.974667pt;}
.yc1{bottom:357.733333pt;}
.y9b{bottom:357.893333pt;}
.y20{bottom:360.133333pt;}
.yea{bottom:361.093333pt;}
.y48{bottom:363.174667pt;}
.y69{bottom:373.093333pt;}
.y10a{bottom:374.374667pt;}
.yc0{bottom:376.133333pt;}
.y9a{bottom:376.293333pt;}
.ye9{bottom:379.493333pt;}
.y47{bottom:381.574667pt;}
.y7e{bottom:383.174667pt;}
.y12a{bottom:386.693333pt;}
.y68{bottom:391.493333pt;}
.y109{bottom:392.773333pt;}
.y1f{bottom:392.933333pt;}
.ybf{bottom:394.533333pt;}
.y99{bottom:394.693333pt;}
.ye8{bottom:397.893333pt;}
.y46{bottom:399.974667pt;}
.y67{bottom:409.893333pt;}
.y108{bottom:411.174667pt;}
.y1e{bottom:411.493333pt;}
.ybe{bottom:412.933333pt;}
.y98{bottom:413.093333pt;}
.y7d{bottom:415.013333pt;}
.ye7{bottom:416.293333pt;}
.y129{bottom:423.493333pt;}
.y66{bottom:428.293333pt;}
.y107{bottom:429.574667pt;}
.ybd{bottom:431.333333pt;}
.y97{bottom:431.493333pt;}
.y45{bottom:431.813333pt;}
.y7c{bottom:433.413333pt;}
.ye6{bottom:434.693333pt;}
.y1d{bottom:444.293333pt;}
.y106{bottom:447.974667pt;}
.ybc{bottom:449.733333pt;}
.y96{bottom:449.893333pt;}
.y44{bottom:450.213333pt;}
.ye5{bottom:453.093333pt;}
.y65{bottom:459.974667pt;}
.y128{bottom:460.293333pt;}
.y1c{bottom:462.854667pt;}
.y7b{bottom:465.093333pt;}
.y105{bottom:466.374667pt;}
.ybb{bottom:468.133333pt;}
.y95{bottom:468.293333pt;}
.y43{bottom:468.613333pt;}
.ye4{bottom:471.493333pt;}
.y127{bottom:478.693333pt;}
.y7a{bottom:483.493333pt;}
.y104{bottom:484.774667pt;}
.yba{bottom:486.533333pt;}
.y94{bottom:486.693333pt;}
.ye3{bottom:489.893333pt;}
.y64{bottom:491.813333pt;}
.y1b{bottom:495.813333pt;}
.y42{bottom:501.413333pt;}
.y103{bottom:503.174667pt;}
.yb9{bottom:504.933333pt;}
.y93{bottom:505.093333pt;}
.ye2{bottom:508.293333pt;}
.y79{bottom:515.174667pt;}
.y126{bottom:515.493333pt;}
.y41{bottom:519.813333pt;}
.y102{bottom:521.573333pt;}
.yb8{bottom:523.333333pt;}
.y63{bottom:523.493333pt;}
.y1a{bottom:528.613333pt;}
.y125{bottom:533.893333pt;}
.y40{bottom:538.374667pt;}
.ye1{bottom:539.974667pt;}
.yb7{bottom:541.733333pt;}
.y19{bottom:547.013333pt;}
.y62{bottom:555.174667pt;}
.ye0{bottom:558.374667pt;}
.y18{bottom:565.413333pt;}
.y124{bottom:570.693333pt;}
.y3f{bottom:571.174667pt;}
.y101{bottom:571.813333pt;}
.yb6{bottom:573.413333pt;}
.y61{bottom:573.573333pt;}
.ydf{bottom:576.773333pt;}
.y17{bottom:583.813333pt;}
.y123{bottom:589.093333pt;}
.y3e{bottom:589.733333pt;}
.y100{bottom:590.213333pt;}
.yb5{bottom:591.813333pt;}
.y92{bottom:591.974667pt;}
.yde{bottom:595.174667pt;}
.y16{bottom:602.213333pt;}
.y60{bottom:605.413333pt;}
.yff{bottom:608.613333pt;}
.yb4{bottom:610.213333pt;}
.y91{bottom:610.374667pt;}
.ydd{bottom:613.573333pt;}
.y15{bottom:620.613333pt;}
.y3d{bottom:622.533333pt;}
.y5f{bottom:623.813333pt;}
.y122{bottom:625.893333pt;}
.yfe{bottom:627.013333pt;}
.y90{bottom:628.773333pt;}
.ydc{bottom:631.974667pt;}
.y14{bottom:639.013333pt;}
.y3c{bottom:640.933333pt;}
.yb3{bottom:642.054667pt;}
.y5e{bottom:642.213333pt;}
.y121{bottom:644.293333pt;}
.yfd{bottom:645.413333pt;}
.y8f{bottom:647.174667pt;}
.ydb{bottom:650.374667pt;}
.y13{bottom:657.413333pt;}
.y3b{bottom:659.493333pt;}
.yb2{bottom:660.454667pt;}
.y5d{bottom:660.613333pt;}
.y120{bottom:662.693333pt;}
.yfc{bottom:663.813333pt;}
.y8e{bottom:665.573333pt;}
.yda{bottom:668.773333pt;}
.y12{bottom:675.813333pt;}
.yb1{bottom:678.854667pt;}
.y5c{bottom:679.013333pt;}
.y11f{bottom:681.093333pt;}
.yfb{bottom:682.213333pt;}
.yd9{bottom:687.174667pt;}
.y3a{bottom:692.293333pt;}
.y11{bottom:694.213333pt;}
.yb0{bottom:697.254667pt;}
.y5b{bottom:697.413333pt;}
.yfa{bottom:700.613333pt;}
.yd8{bottom:705.573333pt;}
.y39{bottom:710.693333pt;}
.y10{bottom:712.613333pt;}
.y11e{bottom:712.773333pt;}
.yaf{bottom:715.493333pt;}
.y8d{bottom:715.813333pt;}
.yf9{bottom:719.013333pt;}
.y78{bottom:725.893333pt;}
.y38{bottom:729.093333pt;}
.yf{bottom:731.013333pt;}
.yae{bottom:733.893333pt;}
.y8c{bottom:734.213333pt;}
.yd7{bottom:737.413333pt;}
.y11d{bottom:744.613333pt;}
.y37{bottom:747.493333pt;}
.ye{bottom:749.413333pt;}
.yad{bottom:752.454667pt;}
.y8b{bottom:752.613333pt;}
.yd6{bottom:755.813333pt;}
.y77{bottom:757.573333pt;}
.y11c{bottom:763.013333pt;}
.y5a{bottom:765.893333pt;}
.y8a{bottom:771.013333pt;}
.yac{bottom:772.133333pt;}
.yd5{bottom:774.213333pt;}
.y36{bottom:779.174667pt;}
.yd{bottom:781.093333pt;}
.y11b{bottom:781.413333pt;}
.y59{bottom:784.293333pt;}
.y76{bottom:789.413333pt;}
.yab{bottom:791.654667pt;}
.yd4{bottom:792.613333pt;}
.y35{bottom:797.573333pt;}
.yc{bottom:799.493333pt;}
.y58{bottom:802.693333pt;}
.yd3{bottom:811.013333pt;}
.yaa{bottom:811.333333pt;}
.y11a{bottom:811.813333pt;}
.y34{bottom:815.973333pt;}
.y57{bottom:821.093333pt;}
.yd2{bottom:829.413333pt;}
.y119{bottom:830.213333pt;}
.ya9{bottom:830.854667pt;}
.yb{bottom:831.173333pt;}
.y33{bottom:834.373333pt;}
.y56{bottom:839.493333pt;}
.yd1{bottom:847.813333pt;}
.y118{bottom:848.613333pt;}
.ya{bottom:849.573333pt;}
.ya8{bottom:850.533333pt;}
.y32{bottom:852.773333pt;}
.y55{bottom:857.893333pt;}
.yd0{bottom:866.213333pt;}
.y9{bottom:867.973333pt;}
.ya7{bottom:870.054667pt;}
.y31{bottom:871.173333pt;}
.y117{bottom:879.013333pt;}
.y75{bottom:884.613333pt;}
.y30{bottom:889.573333pt;}
.y116{bottom:897.413333pt;}
.y8{bottom:899.813333pt;}
.y74{bottom:903.013333pt;}
.y2f{bottom:907.973333pt;}
.y73{bottom:921.413333pt;}
.y2e{bottom:926.373333pt;}
.y115{bottom:927.813333pt;}
.y7{bottom:931.493333pt;}
.y72{bottom:939.813333pt;}
.y2d{bottom:944.773333pt;}
.y114{bottom:946.213333pt;}
.y54{bottom:958.213333pt;}
.y6{bottom:963.173333pt;}
.y2c{bottom:976.613333pt;}
.y5{bottom:994.854667pt;}
.y2{bottom:1019.973333pt;}
.y1{bottom:1056.133333pt;}
.h4{height:18.400000pt;}
.h3{height:42.300781pt;}
.h6{height:43.812500pt;}
.h8{height:43.823417pt;}
.h9{height:43.828750pt;}
.h7{height:43.834083pt;}
.h5{height:44.468750pt;}
.h2{height:59.106380pt;}
.h0{height:1122.600000pt;}
.h1{height:1122.666667pt;}
.w2{width:24.000000pt;}
.w0{width:793.800000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:98.720000pt;}
.x8{left:102.720000pt;}
.xe{left:104.640000pt;}
.xc{left:110.720000pt;}
.x1{left:114.078667pt;}
.x2{left:115.200000pt;}
.xb{left:118.720000pt;}
.xa{left:122.720000pt;}
.x4{left:125.760000pt;}
.x9{left:126.720000pt;}
.xd{left:130.720000pt;}
.x3{left:380.066667pt;}
.x6{left:452.478667pt;}
.x5{left:460.960000pt;}
}




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