
    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_351e124f9c67d7182c809bb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_6746bdb99734a1f47cfc07d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_f779c748948eca1d2e347ea0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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);}
.v2{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.012000px;}
.ls11{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.096000px;}
.ls10{letter-spacing:0.801000px;}
.ls5{letter-spacing:0.933000px;}
.ls2{letter-spacing:1.464000px;}
.ls18{letter-spacing:1.488000px;}
.lsc{letter-spacing:1.494000px;}
.ls13{letter-spacing:1.500000px;}
.lse{letter-spacing:1.506000px;}
.ls1a{letter-spacing:1.512000px;}
.ls4{letter-spacing:1.518000px;}
.ls17{letter-spacing:1.590000px;}
.ls16{letter-spacing:1.596000px;}
.ls19{letter-spacing:1.842000px;}
.lsb{letter-spacing:2.970000px;}
.ls7{letter-spacing:6.000000px;}
.lsd{letter-spacing:15.000000px;}
.ls8{letter-spacing:15.006000px;}
.ls6{letter-spacing:15.933000px;}
.lsa{letter-spacing:16.500000px;}
.lsf{letter-spacing:17.403000px;}
.ls12{letter-spacing:19.500000px;}
.ls9{letter-spacing:24.933000px;}
.ls14{letter-spacing:30.012000px;}
.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;}
}
.ws79{word-spacing:-17.490000px;}
.ws71{word-spacing:-17.442000px;}
.ws89{word-spacing:-17.172000px;}
.ws8a{word-spacing:-17.148000px;}
.ws64{word-spacing:-17.130000px;}
.ws69{word-spacing:-17.100000px;}
.wsc8{word-spacing:-17.082000px;}
.wsb4{word-spacing:-17.076000px;}
.ws9d{word-spacing:-17.052000px;}
.ws29{word-spacing:-17.022000px;}
.ws18{word-spacing:-16.986000px;}
.ws40{word-spacing:-16.980000px;}
.ws9b{word-spacing:-16.968000px;}
.ws9c{word-spacing:-16.956000px;}
.wsc9{word-spacing:-16.938000px;}
.ws2c{word-spacing:-16.932000px;}
.ws3d{word-spacing:-16.920000px;}
.wsa6{word-spacing:-16.914000px;}
.ws95{word-spacing:-16.902000px;}
.ws7c{word-spacing:-16.896000px;}
.ws3e{word-spacing:-16.878000px;}
.ws31{word-spacing:-16.872000px;}
.ws2f{word-spacing:-16.842000px;}
.ws3a{word-spacing:-16.836000px;}
.ws2a{word-spacing:-16.812000px;}
.ws24{word-spacing:-16.788000px;}
.ws7b{word-spacing:-16.782000px;}
.ws87{word-spacing:-16.758000px;}
.wsc1{word-spacing:-16.728000px;}
.wsa2{word-spacing:-16.716000px;}
.ws34{word-spacing:-16.680000px;}
.ws35{word-spacing:-16.674000px;}
.ws49{word-spacing:-16.668000px;}
.ws13{word-spacing:-16.650000px;}
.ws55{word-spacing:-16.644000px;}
.ws86{word-spacing:-16.632000px;}
.ws67{word-spacing:-16.626000px;}
.ws8b{word-spacing:-16.620000px;}
.ws81{word-spacing:-16.614000px;}
.ws4c{word-spacing:-16.596000px;}
.ws38{word-spacing:-16.584000px;}
.ws28{word-spacing:-16.578000px;}
.wsca{word-spacing:-16.572000px;}
.ws23{word-spacing:-16.566000px;}
.ws46{word-spacing:-16.548000px;}
.wsc0{word-spacing:-16.542000px;}
.ws60{word-spacing:-16.524000px;}
.wscb{word-spacing:-16.506000px;}
.ws1f{word-spacing:-16.500000px;}
.ws1d{word-spacing:-16.494000px;}
.ws78{word-spacing:-16.488000px;}
.wsc3{word-spacing:-16.482000px;}
.ws48{word-spacing:-16.476000px;}
.ws6d{word-spacing:-16.470000px;}
.ws6f{word-spacing:-16.452000px;}
.ws1e{word-spacing:-16.446000px;}
.ws70{word-spacing:-16.440000px;}
.ws37{word-spacing:-16.434000px;}
.ws33{word-spacing:-16.428000px;}
.ws27{word-spacing:-16.404000px;}
.ws1a{word-spacing:-16.386000px;}
.ws75{word-spacing:-16.380000px;}
.ws30{word-spacing:-16.368000px;}
.ws8c{word-spacing:-16.356000px;}
.ws20{word-spacing:-16.350000px;}
.ws62{word-spacing:-16.338000px;}
.ws4b{word-spacing:-16.332000px;}
.ws99{word-spacing:-16.326000px;}
.ws4d{word-spacing:-16.320000px;}
.wsa4{word-spacing:-16.314000px;}
.wsa1{word-spacing:-16.308000px;}
.ws3c{word-spacing:-16.284000px;}
.ws22{word-spacing:-16.272000px;}
.ws2e{word-spacing:-16.266000px;}
.ws3b{word-spacing:-16.260000px;}
.wsc7{word-spacing:-16.236000px;}
.ws61{word-spacing:-16.230000px;}
.ws7d{word-spacing:-16.224000px;}
.ws1b{word-spacing:-16.212000px;}
.ws15{word-spacing:-16.206000px;}
.ws83{word-spacing:-16.194000px;}
.ws66{word-spacing:-16.182000px;}
.ws4{word-spacing:-16.170000px;}
.ws91{word-spacing:-16.158000px;}
.ws14{word-spacing:-16.152000px;}
.wsa9{word-spacing:-16.146000px;}
.ws1c{word-spacing:-16.116000px;}
.ws5f{word-spacing:-16.110000px;}
.ws9a{word-spacing:-16.098000px;}
.ws25{word-spacing:-16.086000px;}
.ws41{word-spacing:-16.080000px;}
.ws77{word-spacing:-16.062000px;}
.ws6a{word-spacing:-16.056000px;}
.wsa8{word-spacing:-16.050000px;}
.ws80{word-spacing:-16.044000px;}
.ws42{word-spacing:-16.026000px;}
.ws90{word-spacing:-16.008000px;}
.ws8f{word-spacing:-16.002000px;}
.ws85{word-spacing:-15.978000px;}
.wsa3{word-spacing:-15.936000px;}
.ws74{word-spacing:-15.924000px;}
.ws84{word-spacing:-15.918000px;}
.ws88{word-spacing:-15.912000px;}
.wsa7{word-spacing:-15.882000px;}
.ws26{word-spacing:-15.858000px;}
.ws50{word-spacing:-15.852000px;}
.ws73{word-spacing:-15.840000px;}
.ws58{word-spacing:-15.834000px;}
.ws3f{word-spacing:-15.822000px;}
.ws2b{word-spacing:-15.816000px;}
.ws45{word-spacing:-15.810000px;}
.ws47{word-spacing:-15.798000px;}
.wsa5{word-spacing:-15.780000px;}
.ws4a{word-spacing:-15.774000px;}
.ws36{word-spacing:-15.744000px;}
.ws97{word-spacing:-15.738000px;}
.ws19{word-spacing:-15.732000px;}
.wsc4{word-spacing:-15.696000px;}
.ws59{word-spacing:-15.690000px;}
.ws21{word-spacing:-15.678000px;}
.ws32{word-spacing:-15.666000px;}
.ws82{word-spacing:-15.648000px;}
.ws68{word-spacing:-15.630000px;}
.ws93{word-spacing:-15.618000px;}
.wse6{word-spacing:-15.552000px;}
.ws5c{word-spacing:-15.522000px;}
.ws5b{word-spacing:-15.510000px;}
.wsd4{word-spacing:-15.504000px;}
.wsf5{word-spacing:-15.492000px;}
.wseb{word-spacing:-15.426000px;}
.ws44{word-spacing:-15.390000px;}
.ws101{word-spacing:-15.366000px;}
.ws6e{word-spacing:-15.360000px;}
.ws5a{word-spacing:-15.348000px;}
.wsf1{word-spacing:-15.300000px;}
.ws94{word-spacing:-15.294000px;}
.wsec{word-spacing:-15.252000px;}
.ws92{word-spacing:-15.234000px;}
.wsf9{word-spacing:-15.150000px;}
.wsd9{word-spacing:-15.102000px;}
.wsf3{word-spacing:-15.066000px;}
.wsed{word-spacing:-15.006000px;}
.wscc{word-spacing:-15.000000px;}
.ws5e{word-spacing:-14.982000px;}
.wsd6{word-spacing:-14.976000px;}
.wsf2{word-spacing:-14.952000px;}
.wsfa{word-spacing:-14.946000px;}
.wsfd{word-spacing:-14.916000px;}
.wse8{word-spacing:-14.910000px;}
.wsde{word-spacing:-14.868000px;}
.wsda{word-spacing:-14.850000px;}
.ws6c{word-spacing:-14.820000px;}
.wse4{word-spacing:-14.814000px;}
.wse2{word-spacing:-14.766000px;}
.wsf{word-spacing:-14.748000px;}
.wscf{word-spacing:-14.700000px;}
.ws108{word-spacing:-14.664000px;}
.wsfb{word-spacing:-14.652000px;}
.ws1{word-spacing:-14.535000px;}
.wsf4{word-spacing:-14.514000px;}
.wsd7{word-spacing:-14.484000px;}
.wsf6{word-spacing:-14.454000px;}
.wsf7{word-spacing:-14.400000px;}
.wsdf{word-spacing:-14.376000px;}
.ws105{word-spacing:-14.328000px;}
.ws2{word-spacing:-14.250000px;}
.ws6{word-spacing:-14.238000px;}
.wse0{word-spacing:-14.130000px;}
.ws9{word-spacing:-14.118000px;}
.ws11{word-spacing:-14.112000px;}
.wsa{word-spacing:-14.082000px;}
.wse{word-spacing:-13.992000px;}
.ws7{word-spacing:-13.986000px;}
.ws8{word-spacing:-13.968000px;}
.ws12{word-spacing:-13.962000px;}
.wsdb{word-spacing:-13.908000px;}
.wsa0{word-spacing:-13.896000px;}
.ws8e{word-spacing:-13.890000px;}
.wsc6{word-spacing:-13.878000px;}
.wsc{word-spacing:-13.824000px;}
.wsd{word-spacing:-13.818000px;}
.ws6b{word-spacing:-13.770000px;}
.ws10{word-spacing:-13.740000px;}
.ws43{word-spacing:-13.716000px;}
.ws2d{word-spacing:-13.620000px;}
.wsc5{word-spacing:-13.548000px;}
.ws98{word-spacing:-13.536000px;}
.ws0{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.482000px;}
.wsbe{word-spacing:-13.452000px;}
.ws9e{word-spacing:-13.446000px;}
.ws9f{word-spacing:-13.416000px;}
.ws8d{word-spacing:-13.398000px;}
.ws63{word-spacing:-13.344000px;}
.ws5{word-spacing:-13.230000px;}
.ws4f{word-spacing:-13.224000px;}
.ws57{word-spacing:-13.152000px;}
.ws7a{word-spacing:-13.122000px;}
.wsc2{word-spacing:-13.050000px;}
.wsbf{word-spacing:-12.960000px;}
.wsaa{word-spacing:-12.654000px;}
.wsb{word-spacing:-12.288000px;}
.wsd2{word-spacing:-12.163500px;}
.wse5{word-spacing:-12.100500px;}
.ws16{word-spacing:-11.988000px;}
.wsbc{word-spacing:-11.807208px;}
.wsd1{word-spacing:-11.772000px;}
.ws17{word-spacing:-11.760000px;}
.wsd3{word-spacing:-11.754000px;}
.wsea{word-spacing:-11.677500px;}
.ws56{word-spacing:-11.647152px;}
.ws100{word-spacing:-11.619000px;}
.wse3{word-spacing:-11.560500px;}
.wsf0{word-spacing:-11.551500px;}
.ws39{word-spacing:-11.542500px;}
.ws65{word-spacing:-11.511720px;}
.wsf8{word-spacing:-11.479500px;}
.ws7e{word-spacing:-11.450160px;}
.wse1{word-spacing:-11.421000px;}
.wsbd{word-spacing:-11.351664px;}
.ws72{word-spacing:-11.339352px;}
.ws4e{word-spacing:-11.314728px;}
.wsef{word-spacing:-11.254500px;}
.wscd{word-spacing:-11.250000px;}
.wsee{word-spacing:-11.241000px;}
.wsfe{word-spacing:-11.232000px;}
.wsd5{word-spacing:-11.223000px;}
.wsfc{word-spacing:-11.164500px;}
.wse7{word-spacing:-11.155500px;}
.wsd8{word-spacing:-11.101500px;}
.ws76{word-spacing:-11.086956px;}
.ws106{word-spacing:-11.025000px;}
.ws96{word-spacing:-11.013084px;}
.ws102{word-spacing:-10.957500px;}
.wsce{word-spacing:-10.948500px;}
.ws107{word-spacing:-10.912500px;}
.ws103{word-spacing:-10.894500px;}
.ws5d{word-spacing:-10.853028px;}
.wsd0{word-spacing:-10.795500px;}
.ws104{word-spacing:-10.759500px;}
.wse9{word-spacing:-10.732500px;}
.wsff{word-spacing:-10.723500px;}
.wsdd{word-spacing:-10.683000px;}
.wsdc{word-spacing:-10.156500px;}
.ws54{word-spacing:-1.116000px;}
.wsb3{word-spacing:-0.462000px;}
.ws3{word-spacing:0.000000px;}
.ws53{word-spacing:0.594000px;}
.wsbb{word-spacing:1.320000px;}
.wsaf{word-spacing:1.500000px;}
.wsb7{word-spacing:1.584000px;}
.wsb9{word-spacing:1.758000px;}
.wsac{word-spacing:1.842000px;}
.wsae{word-spacing:1.938000px;}
.wsb2{word-spacing:1.944000px;}
.wsad{word-spacing:1.992000px;}
.wsb8{word-spacing:2.190000px;}
.wsba{word-spacing:2.244000px;}
.ws51{word-spacing:2.256000px;}
.wsb5{word-spacing:2.424000px;}
.wsb6{word-spacing:2.478000px;}
.ws52{word-spacing:2.568000px;}
.wsb1{word-spacing:2.586000px;}
.wsab{word-spacing:2.598000px;}
.wsb0{word-spacing:2.898000px;}
._15{margin-left:-12.465000px;}
._1f{margin-left:-11.271000px;}
._12{margin-left:-8.976000px;}
._5{margin-left:-7.524000px;}
._1b{margin-left:-6.450000px;}
._7{margin-left:-5.367000px;}
._10{margin-left:-4.326000px;}
._4{margin-left:-3.099000px;}
._2{margin-left:-1.536000px;}
._0{width:1.536000px;}
._1{width:2.976000px;}
._3{width:4.395000px;}
._6{width:5.679000px;}
._9{width:6.741000px;}
._b{width:8.094000px;}
._c{width:9.108000px;}
._1c{width:10.434000px;}
._16{width:13.530000px;}
._11{width:15.228000px;}
._8{width:16.632000px;}
._1d{width:17.694000px;}
._14{width:19.236000px;}
._17{width:21.276000px;}
._18{width:22.500000px;}
._13{width:23.940000px;}
._19{width:24.942000px;}
._1a{width:26.052000px;}
._20{width:28.500000px;}
._1e{width:30.000000px;}
._a{width:47.907000px;}
._d{width:49.428000px;}
._f{width:466.050000px;}
._e{width:1036.320000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.000000px;}
.fs5{font-size:46.170000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:49.036425px;}
.y102{bottom:49.786425px;}
.y27{bottom:50.161425px;}
.ydb{bottom:50.536425px;}
.y7a{bottom:50.911425px;}
.y49{bottom:53.536425px;}
.y7d{bottom:64.036425px;}
.y26{bottom:65.161425px;}
.y101{bottom:66.286425px;}
.yda{bottom:67.036425px;}
.y79{bottom:68.161425px;}
.y48{bottom:70.786425px;}
.y7c{bottom:79.036425px;}
.y25{bottom:80.161425px;}
.yd9{bottom:83.536425px;}
.y78{bottom:85.411425px;}
.y47{bottom:88.036425px;}
.y7b{bottom:94.036425px;}
.y24{bottom:95.161425px;}
.yd8{bottom:100.036425px;}
.y77{bottom:102.661425px;}
.y46{bottom:105.286425px;}
.y83{bottom:109.036425px;}
.y23{bottom:110.161425px;}
.yd7{bottom:116.536425px;}
.y100{bottom:117.286425px;}
.y76{bottom:119.911425px;}
.y45{bottom:122.536425px;}
.y82{bottom:124.036425px;}
.y22{bottom:125.161425px;}
.yd6{bottom:133.036425px;}
.yff{bottom:133.786425px;}
.y75{bottom:137.161425px;}
.y81{bottom:139.036425px;}
.y44{bottom:139.786425px;}
.y21{bottom:140.161425px;}
.yd5{bottom:149.536425px;}
.yfe{bottom:151.411425px;}
.y80{bottom:154.036425px;}
.y74{bottom:154.411425px;}
.y20{bottom:155.161425px;}
.y43{bottom:157.036425px;}
.yb2{bottom:163.036425px;}
.yd4{bottom:166.036425px;}
.yfd{bottom:167.911425px;}
.y8f{bottom:169.036425px;}
.y73{bottom:171.661425px;}
.y42{bottom:174.286425px;}
.yb1{bottom:180.286425px;}
.yd3{bottom:182.536425px;}
.y8e{bottom:184.036425px;}
.y1f{bottom:185.161425px;}
.y72{bottom:188.911425px;}
.y41{bottom:191.536425px;}
.yb0{bottom:197.536425px;}
.y8d{bottom:199.036425px;}
.yfc{bottom:201.661425px;}
.y71{bottom:206.161425px;}
.y40{bottom:208.786425px;}
.y8c{bottom:214.036425px;}
.yaf{bottom:214.786425px;}
.yd2{bottom:215.536425px;}
.yfb{bottom:218.911425px;}
.y1e{bottom:221.161425px;}
.y70{bottom:223.411425px;}
.y3f{bottom:226.036425px;}
.y8b{bottom:229.036425px;}
.yae{bottom:232.036425px;}
.y123{bottom:232.411425px;}
.yfa{bottom:236.161425px;}
.y6f{bottom:240.661425px;}
.y1d{bottom:242.161425px;}
.y3e{bottom:243.286425px;}
.y8a{bottom:244.036425px;}
.yd1{bottom:248.536425px;}
.y122{bottom:248.911425px;}
.y7f{bottom:249.286425px;}
.yf9{bottom:252.661425px;}
.y1c{bottom:257.161425px;}
.y6e{bottom:257.911425px;}
.y89{bottom:259.036425px;}
.y3d{bottom:260.536425px;}
.yd0{bottom:265.036425px;}
.y121{bottom:265.411425px;}
.yad{bottom:266.536425px;}
.yf8{bottom:270.286425px;}
.y1b{bottom:272.161425px;}
.y88{bottom:274.036425px;}
.y6d{bottom:275.161425px;}
.y3c{bottom:277.786425px;}
.ycf{bottom:281.536425px;}
.y120{bottom:281.911425px;}
.yac{bottom:283.786425px;}
.yf7{bottom:286.786425px;}
.y1a{bottom:287.161425px;}
.y87{bottom:289.036425px;}
.y6c{bottom:292.411425px;}
.y3b{bottom:295.036425px;}
.yce{bottom:298.036425px;}
.y11f{bottom:298.411425px;}
.yab{bottom:301.036425px;}
.y19{bottom:302.161425px;}
.y86{bottom:304.036425px;}
.y6b{bottom:309.661425px;}
.y3a{bottom:312.286425px;}
.ycd{bottom:314.536425px;}
.y11e{bottom:314.911425px;}
.y18{bottom:317.161425px;}
.yaa{bottom:318.286425px;}
.y85{bottom:319.036425px;}
.yf6{bottom:320.536425px;}
.y6a{bottom:326.911425px;}
.y39{bottom:329.536425px;}
.ycc{bottom:331.036425px;}
.y11d{bottom:331.411425px;}
.y17{bottom:332.161425px;}
.y84{bottom:334.036425px;}
.ya9{bottom:335.536425px;}
.yf5{bottom:337.786425px;}
.y69{bottom:344.161425px;}
.y38{bottom:346.786425px;}
.y16{bottom:347.161425px;}
.ycb{bottom:347.536425px;}
.y11c{bottom:347.911425px;}
.ya8{bottom:352.786425px;}
.yf4{bottom:354.286425px;}
.y68{bottom:361.411425px;}
.y15{bottom:362.161425px;}
.y37{bottom:364.036425px;}
.y11b{bottom:364.411425px;}
.ya7{bottom:370.036425px;}
.yf3{bottom:370.786425px;}
.y14{bottom:377.161425px;}
.y67{bottom:378.661425px;}
.yca{bottom:380.536425px;}
.y11a{bottom:380.911425px;}
.y36{bottom:381.286425px;}
.ya6{bottom:387.286425px;}
.yf2{bottom:388.036425px;}
.y13{bottom:392.161425px;}
.y66{bottom:395.911425px;}
.yc9{bottom:397.036425px;}
.y119{bottom:397.411425px;}
.ya5{bottom:404.536425px;}
.yf1{bottom:405.661425px;}
.y12{bottom:407.161425px;}
.y65{bottom:413.161425px;}
.yc8{bottom:413.536425px;}
.y118{bottom:413.911425px;}
.ya4{bottom:421.786425px;}
.y11{bottom:422.161425px;}
.yc7{bottom:430.036425px;}
.y64{bottom:430.411425px;}
.y10{bottom:437.161425px;}
.ya3{bottom:439.036425px;}
.yf0{bottom:439.411425px;}
.yc6{bottom:446.536425px;}
.y117{bottom:446.911425px;}
.y63{bottom:447.661425px;}
.yf{bottom:452.161425px;}
.yef{bottom:455.911425px;}
.ya2{bottom:456.286425px;}
.yc5{bottom:463.036425px;}
.y116{bottom:463.411425px;}
.y62{bottom:464.911425px;}
.ye{bottom:467.161425px;}
.yee{bottom:472.411425px;}
.ya1{bottom:473.536425px;}
.yc4{bottom:479.536425px;}
.y115{bottom:479.911425px;}
.yd{bottom:482.161425px;}
.y4e{bottom:488.161425px;}
.yed{bottom:489.661425px;}
.ya0{bottom:490.786425px;}
.yc3{bottom:496.036425px;}
.y114{bottom:496.411425px;}
.yc{bottom:497.161425px;}
.y61{bottom:499.411425px;}
.y4c{bottom:503.161425px;}
.yec{bottom:506.161425px;}
.y9f{bottom:508.036425px;}
.yb{bottom:512.161425px;}
.yc2{bottom:512.536425px;}
.y113{bottom:512.911425px;}
.y60{bottom:516.661425px;}
.y4b{bottom:518.161425px;}
.yeb{bottom:522.661425px;}
.y4d{bottom:524.161425px;}
.y9e{bottom:525.286425px;}
.ya{bottom:527.161425px;}
.yc1{bottom:529.036425px;}
.y112{bottom:529.411425px;}
.y5f{bottom:533.911425px;}
.y4a{bottom:539.161425px;}
.yea{bottom:540.286425px;}
.y9{bottom:542.161425px;}
.y9d{bottom:542.536425px;}
.yc0{bottom:545.536425px;}
.y111{bottom:545.911425px;}
.y5e{bottom:551.161425px;}
.ye9{bottom:556.786425px;}
.y8{bottom:557.161425px;}
.y9c{bottom:559.786425px;}
.ybf{bottom:562.036425px;}
.y110{bottom:562.411425px;}
.y4f{bottom:563.161425px;}
.y5d{bottom:568.411425px;}
.ye8{bottom:573.286425px;}
.y9b{bottom:577.036425px;}
.ybe{bottom:578.536425px;}
.y10f{bottom:578.911425px;}
.y5c{bottom:585.661425px;}
.y7{bottom:587.161425px;}
.ye7{bottom:590.536425px;}
.y9a{bottom:594.286425px;}
.ybd{bottom:595.036425px;}
.y10e{bottom:595.411425px;}
.y5b{bottom:602.911425px;}
.ye6{bottom:607.036425px;}
.y99{bottom:611.536425px;}
.y10d{bottom:611.911425px;}
.y5a{bottom:620.161425px;}
.y35{bottom:623.911425px;}
.ye5{bottom:624.286425px;}
.ybc{bottom:628.036425px;}
.y10c{bottom:628.411425px;}
.y98{bottom:628.786425px;}
.y59{bottom:637.411425px;}
.ye4{bottom:640.786425px;}
.ybb{bottom:644.536425px;}
.y34{bottom:644.911425px;}
.y97{bottom:646.036425px;}
.y58{bottom:654.661425px;}
.ye3{bottom:658.036425px;}
.y33{bottom:659.911425px;}
.yba{bottom:661.036425px;}
.y10b{bottom:661.411425px;}
.y96{bottom:663.286425px;}
.y57{bottom:671.911425px;}
.ye2{bottom:674.536425px;}
.y32{bottom:674.911425px;}
.yb9{bottom:677.536425px;}
.y10a{bottom:677.911425px;}
.y95{bottom:680.536425px;}
.y6{bottom:685.036425px;}
.y56{bottom:689.161425px;}
.y31{bottom:689.911425px;}
.ye1{bottom:692.161425px;}
.yb8{bottom:694.036425px;}
.y109{bottom:694.411425px;}
.y94{bottom:697.786425px;}
.y5{bottom:700.036425px;}
.y30{bottom:704.911425px;}
.y55{bottom:706.411425px;}
.ye0{bottom:708.661425px;}
.yb7{bottom:710.536425px;}
.y108{bottom:710.911425px;}
.y4{bottom:715.036425px;}
.y2f{bottom:719.911425px;}
.y54{bottom:723.661425px;}
.ydf{bottom:725.911425px;}
.yb6{bottom:727.036425px;}
.y107{bottom:727.411425px;}
.y93{bottom:732.286425px;}
.y3{bottom:733.786425px;}
.y2e{bottom:734.911425px;}
.y53{bottom:740.911425px;}
.yde{bottom:742.411425px;}
.yb5{bottom:743.536425px;}
.y106{bottom:743.911425px;}
.y92{bottom:749.536425px;}
.y2d{bottom:749.911425px;}
.y52{bottom:758.161425px;}
.ydd{bottom:759.661425px;}
.yb4{bottom:760.036425px;}
.y105{bottom:760.411425px;}
.y2c{bottom:764.911425px;}
.y91{bottom:766.786425px;}
.y51{bottom:775.411425px;}
.ydc{bottom:776.161425px;}
.yb3{bottom:776.536425px;}
.y104{bottom:776.911425px;}
.y2{bottom:778.786425px;}
.y2b{bottom:779.911425px;}
.y90{bottom:784.036425px;}
.y50{bottom:792.661425px;}
.y103{bottom:793.411425px;}
.y2a{bottom:794.911425px;}
.y1{bottom:802.786425px;}
.y29{bottom:809.911425px;}
.y28{bottom:856.786425px;}
.h7{height:41.568000px;}
.h4{height:45.954000px;}
.h6{height:48.507000px;}
.h5{height:49.362000px;}
.ha{height:51.060000px;}
.h3{height:56.166000px;}
.h8{height:57.156000px;}
.h9{height:61.790670px;}
.h2{height:81.696000px;}
.h1{height:901.500000px;}
.h0{height:901.582680px;}
.w0{width:586.358280px;}
.w1{width:586.500000px;}
.x0{left:0.000000px;}
.x1{left:48.116640px;}
.xa{left:54.875640px;}
.x6{left:56.093640px;}
.x2{left:62.723640px;}
.x9{left:70.789140px;}
.x5{left:137.869140px;}
.x4{left:189.875640px;}
.x8{left:267.146640px;}
.x7{left:304.115640px;}
.x3{left:405.116640px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.010667pt;}
.ls11{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.085333pt;}
.ls10{letter-spacing:0.712000pt;}
.ls5{letter-spacing:0.829333pt;}
.ls2{letter-spacing:1.301333pt;}
.ls18{letter-spacing:1.322667pt;}
.lsc{letter-spacing:1.328000pt;}
.ls13{letter-spacing:1.333333pt;}
.lse{letter-spacing:1.338667pt;}
.ls1a{letter-spacing:1.344000pt;}
.ls4{letter-spacing:1.349333pt;}
.ls17{letter-spacing:1.413333pt;}
.ls16{letter-spacing:1.418667pt;}
.ls19{letter-spacing:1.637333pt;}
.lsb{letter-spacing:2.640000pt;}
.ls7{letter-spacing:5.333333pt;}
.lsd{letter-spacing:13.333333pt;}
.ls8{letter-spacing:13.338667pt;}
.ls6{letter-spacing:14.162667pt;}
.lsa{letter-spacing:14.666667pt;}
.lsf{letter-spacing:15.469333pt;}
.ls12{letter-spacing:17.333333pt;}
.ls9{letter-spacing:22.162667pt;}
.ls14{letter-spacing:26.677333pt;}
.ws79{word-spacing:-15.546667pt;}
.ws71{word-spacing:-15.504000pt;}
.ws89{word-spacing:-15.264000pt;}
.ws8a{word-spacing:-15.242667pt;}
.ws64{word-spacing:-15.226667pt;}
.ws69{word-spacing:-15.200000pt;}
.wsc8{word-spacing:-15.184000pt;}
.wsb4{word-spacing:-15.178667pt;}
.ws9d{word-spacing:-15.157333pt;}
.ws29{word-spacing:-15.130667pt;}
.ws18{word-spacing:-15.098667pt;}
.ws40{word-spacing:-15.093333pt;}
.ws9b{word-spacing:-15.082667pt;}
.ws9c{word-spacing:-15.072000pt;}
.wsc9{word-spacing:-15.056000pt;}
.ws2c{word-spacing:-15.050667pt;}
.ws3d{word-spacing:-15.040000pt;}
.wsa6{word-spacing:-15.034667pt;}
.ws95{word-spacing:-15.024000pt;}
.ws7c{word-spacing:-15.018667pt;}
.ws3e{word-spacing:-15.002667pt;}
.ws31{word-spacing:-14.997333pt;}
.ws2f{word-spacing:-14.970667pt;}
.ws3a{word-spacing:-14.965333pt;}
.ws2a{word-spacing:-14.944000pt;}
.ws24{word-spacing:-14.922667pt;}
.ws7b{word-spacing:-14.917333pt;}
.ws87{word-spacing:-14.896000pt;}
.wsc1{word-spacing:-14.869333pt;}
.wsa2{word-spacing:-14.858667pt;}
.ws34{word-spacing:-14.826667pt;}
.ws35{word-spacing:-14.821333pt;}
.ws49{word-spacing:-14.816000pt;}
.ws13{word-spacing:-14.800000pt;}
.ws55{word-spacing:-14.794667pt;}
.ws86{word-spacing:-14.784000pt;}
.ws67{word-spacing:-14.778667pt;}
.ws8b{word-spacing:-14.773333pt;}
.ws81{word-spacing:-14.768000pt;}
.ws4c{word-spacing:-14.752000pt;}
.ws38{word-spacing:-14.741333pt;}
.ws28{word-spacing:-14.736000pt;}
.wsca{word-spacing:-14.730667pt;}
.ws23{word-spacing:-14.725333pt;}
.ws46{word-spacing:-14.709333pt;}
.wsc0{word-spacing:-14.704000pt;}
.ws60{word-spacing:-14.688000pt;}
.wscb{word-spacing:-14.672000pt;}
.ws1f{word-spacing:-14.666667pt;}
.ws1d{word-spacing:-14.661333pt;}
.ws78{word-spacing:-14.656000pt;}
.wsc3{word-spacing:-14.650667pt;}
.ws48{word-spacing:-14.645333pt;}
.ws6d{word-spacing:-14.640000pt;}
.ws6f{word-spacing:-14.624000pt;}
.ws1e{word-spacing:-14.618667pt;}
.ws70{word-spacing:-14.613333pt;}
.ws37{word-spacing:-14.608000pt;}
.ws33{word-spacing:-14.602667pt;}
.ws27{word-spacing:-14.581333pt;}
.ws1a{word-spacing:-14.565333pt;}
.ws75{word-spacing:-14.560000pt;}
.ws30{word-spacing:-14.549333pt;}
.ws8c{word-spacing:-14.538667pt;}
.ws20{word-spacing:-14.533333pt;}
.ws62{word-spacing:-14.522667pt;}
.ws4b{word-spacing:-14.517333pt;}
.ws99{word-spacing:-14.512000pt;}
.ws4d{word-spacing:-14.506667pt;}
.wsa4{word-spacing:-14.501333pt;}
.wsa1{word-spacing:-14.496000pt;}
.ws3c{word-spacing:-14.474667pt;}
.ws22{word-spacing:-14.464000pt;}
.ws2e{word-spacing:-14.458667pt;}
.ws3b{word-spacing:-14.453333pt;}
.wsc7{word-spacing:-14.432000pt;}
.ws61{word-spacing:-14.426667pt;}
.ws7d{word-spacing:-14.421333pt;}
.ws1b{word-spacing:-14.410667pt;}
.ws15{word-spacing:-14.405333pt;}
.ws83{word-spacing:-14.394667pt;}
.ws66{word-spacing:-14.384000pt;}
.ws4{word-spacing:-14.373333pt;}
.ws91{word-spacing:-14.362667pt;}
.ws14{word-spacing:-14.357333pt;}
.wsa9{word-spacing:-14.352000pt;}
.ws1c{word-spacing:-14.325333pt;}
.ws5f{word-spacing:-14.320000pt;}
.ws9a{word-spacing:-14.309333pt;}
.ws25{word-spacing:-14.298667pt;}
.ws41{word-spacing:-14.293333pt;}
.ws77{word-spacing:-14.277333pt;}
.ws6a{word-spacing:-14.272000pt;}
.wsa8{word-spacing:-14.266667pt;}
.ws80{word-spacing:-14.261333pt;}
.ws42{word-spacing:-14.245333pt;}
.ws90{word-spacing:-14.229333pt;}
.ws8f{word-spacing:-14.224000pt;}
.ws85{word-spacing:-14.202667pt;}
.wsa3{word-spacing:-14.165333pt;}
.ws74{word-spacing:-14.154667pt;}
.ws84{word-spacing:-14.149333pt;}
.ws88{word-spacing:-14.144000pt;}
.wsa7{word-spacing:-14.117333pt;}
.ws26{word-spacing:-14.096000pt;}
.ws50{word-spacing:-14.090667pt;}
.ws73{word-spacing:-14.080000pt;}
.ws58{word-spacing:-14.074667pt;}
.ws3f{word-spacing:-14.064000pt;}
.ws2b{word-spacing:-14.058667pt;}
.ws45{word-spacing:-14.053333pt;}
.ws47{word-spacing:-14.042667pt;}
.wsa5{word-spacing:-14.026667pt;}
.ws4a{word-spacing:-14.021333pt;}
.ws36{word-spacing:-13.994667pt;}
.ws97{word-spacing:-13.989333pt;}
.ws19{word-spacing:-13.984000pt;}
.wsc4{word-spacing:-13.952000pt;}
.ws59{word-spacing:-13.946667pt;}
.ws21{word-spacing:-13.936000pt;}
.ws32{word-spacing:-13.925333pt;}
.ws82{word-spacing:-13.909333pt;}
.ws68{word-spacing:-13.893333pt;}
.ws93{word-spacing:-13.882667pt;}
.wse6{word-spacing:-13.824000pt;}
.ws5c{word-spacing:-13.797333pt;}
.ws5b{word-spacing:-13.786667pt;}
.wsd4{word-spacing:-13.781333pt;}
.wsf5{word-spacing:-13.770667pt;}
.wseb{word-spacing:-13.712000pt;}
.ws44{word-spacing:-13.680000pt;}
.ws101{word-spacing:-13.658667pt;}
.ws6e{word-spacing:-13.653333pt;}
.ws5a{word-spacing:-13.642667pt;}
.wsf1{word-spacing:-13.600000pt;}
.ws94{word-spacing:-13.594667pt;}
.wsec{word-spacing:-13.557333pt;}
.ws92{word-spacing:-13.541333pt;}
.wsf9{word-spacing:-13.466667pt;}
.wsd9{word-spacing:-13.424000pt;}
.wsf3{word-spacing:-13.392000pt;}
.wsed{word-spacing:-13.338667pt;}
.wscc{word-spacing:-13.333333pt;}
.ws5e{word-spacing:-13.317333pt;}
.wsd6{word-spacing:-13.312000pt;}
.wsf2{word-spacing:-13.290667pt;}
.wsfa{word-spacing:-13.285333pt;}
.wsfd{word-spacing:-13.258667pt;}
.wse8{word-spacing:-13.253333pt;}
.wsde{word-spacing:-13.216000pt;}
.wsda{word-spacing:-13.200000pt;}
.ws6c{word-spacing:-13.173333pt;}
.wse4{word-spacing:-13.168000pt;}
.wse2{word-spacing:-13.125333pt;}
.wsf{word-spacing:-13.109333pt;}
.wscf{word-spacing:-13.066667pt;}
.ws108{word-spacing:-13.034667pt;}
.wsfb{word-spacing:-13.024000pt;}
.ws1{word-spacing:-12.920000pt;}
.wsf4{word-spacing:-12.901333pt;}
.wsd7{word-spacing:-12.874667pt;}
.wsf6{word-spacing:-12.848000pt;}
.wsf7{word-spacing:-12.800000pt;}
.wsdf{word-spacing:-12.778667pt;}
.ws105{word-spacing:-12.736000pt;}
.ws2{word-spacing:-12.666667pt;}
.ws6{word-spacing:-12.656000pt;}
.wse0{word-spacing:-12.560000pt;}
.ws9{word-spacing:-12.549333pt;}
.ws11{word-spacing:-12.544000pt;}
.wsa{word-spacing:-12.517333pt;}
.wse{word-spacing:-12.437333pt;}
.ws7{word-spacing:-12.432000pt;}
.ws8{word-spacing:-12.416000pt;}
.ws12{word-spacing:-12.410667pt;}
.wsdb{word-spacing:-12.362667pt;}
.wsa0{word-spacing:-12.352000pt;}
.ws8e{word-spacing:-12.346667pt;}
.wsc6{word-spacing:-12.336000pt;}
.wsc{word-spacing:-12.288000pt;}
.wsd{word-spacing:-12.282667pt;}
.ws6b{word-spacing:-12.240000pt;}
.ws10{word-spacing:-12.213333pt;}
.ws43{word-spacing:-12.192000pt;}
.ws2d{word-spacing:-12.106667pt;}
.wsc5{word-spacing:-12.042667pt;}
.ws98{word-spacing:-12.032000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.984000pt;}
.wsbe{word-spacing:-11.957333pt;}
.ws9e{word-spacing:-11.952000pt;}
.ws9f{word-spacing:-11.925333pt;}
.ws8d{word-spacing:-11.909333pt;}
.ws63{word-spacing:-11.861333pt;}
.ws5{word-spacing:-11.760000pt;}
.ws4f{word-spacing:-11.754667pt;}
.ws57{word-spacing:-11.690667pt;}
.ws7a{word-spacing:-11.664000pt;}
.wsc2{word-spacing:-11.600000pt;}
.wsbf{word-spacing:-11.520000pt;}
.wsaa{word-spacing:-11.248000pt;}
.wsb{word-spacing:-10.922667pt;}
.wsd2{word-spacing:-10.812000pt;}
.wse5{word-spacing:-10.756000pt;}
.ws16{word-spacing:-10.656000pt;}
.wsbc{word-spacing:-10.495296pt;}
.wsd1{word-spacing:-10.464000pt;}
.ws17{word-spacing:-10.453333pt;}
.wsd3{word-spacing:-10.448000pt;}
.wsea{word-spacing:-10.380000pt;}
.ws56{word-spacing:-10.353024pt;}
.ws100{word-spacing:-10.328000pt;}
.wse3{word-spacing:-10.276000pt;}
.wsf0{word-spacing:-10.268000pt;}
.ws39{word-spacing:-10.260000pt;}
.ws65{word-spacing:-10.232640pt;}
.wsf8{word-spacing:-10.204000pt;}
.ws7e{word-spacing:-10.177920pt;}
.wse1{word-spacing:-10.152000pt;}
.wsbd{word-spacing:-10.090368pt;}
.ws72{word-spacing:-10.079424pt;}
.ws4e{word-spacing:-10.057536pt;}
.wsef{word-spacing:-10.004000pt;}
.wscd{word-spacing:-10.000000pt;}
.wsee{word-spacing:-9.992000pt;}
.wsfe{word-spacing:-9.984000pt;}
.wsd5{word-spacing:-9.976000pt;}
.wsfc{word-spacing:-9.924000pt;}
.wse7{word-spacing:-9.916000pt;}
.wsd8{word-spacing:-9.868000pt;}
.ws76{word-spacing:-9.855072pt;}
.ws106{word-spacing:-9.800000pt;}
.ws96{word-spacing:-9.789408pt;}
.ws102{word-spacing:-9.740000pt;}
.wsce{word-spacing:-9.732000pt;}
.ws107{word-spacing:-9.700000pt;}
.ws103{word-spacing:-9.684000pt;}
.ws5d{word-spacing:-9.647136pt;}
.wsd0{word-spacing:-9.596000pt;}
.ws104{word-spacing:-9.564000pt;}
.wse9{word-spacing:-9.540000pt;}
.wsff{word-spacing:-9.532000pt;}
.wsdd{word-spacing:-9.496000pt;}
.wsdc{word-spacing:-9.028000pt;}
.ws54{word-spacing:-0.992000pt;}
.wsb3{word-spacing:-0.410667pt;}
.ws3{word-spacing:0.000000pt;}
.ws53{word-spacing:0.528000pt;}
.wsbb{word-spacing:1.173333pt;}
.wsaf{word-spacing:1.333333pt;}
.wsb7{word-spacing:1.408000pt;}
.wsb9{word-spacing:1.562667pt;}
.wsac{word-spacing:1.637333pt;}
.wsae{word-spacing:1.722667pt;}
.wsb2{word-spacing:1.728000pt;}
.wsad{word-spacing:1.770667pt;}
.wsb8{word-spacing:1.946667pt;}
.wsba{word-spacing:1.994667pt;}
.ws51{word-spacing:2.005333pt;}
.wsb5{word-spacing:2.154667pt;}
.wsb6{word-spacing:2.202667pt;}
.ws52{word-spacing:2.282667pt;}
.wsb1{word-spacing:2.298667pt;}
.wsab{word-spacing:2.309333pt;}
.wsb0{word-spacing:2.576000pt;}
._15{margin-left:-11.080000pt;}
._1f{margin-left:-10.018667pt;}
._12{margin-left:-7.978667pt;}
._5{margin-left:-6.688000pt;}
._1b{margin-left:-5.733333pt;}
._7{margin-left:-4.770667pt;}
._10{margin-left:-3.845333pt;}
._4{margin-left:-2.754667pt;}
._2{margin-left:-1.365333pt;}
._0{width:1.365333pt;}
._1{width:2.645333pt;}
._3{width:3.906667pt;}
._6{width:5.048000pt;}
._9{width:5.992000pt;}
._b{width:7.194667pt;}
._c{width:8.096000pt;}
._1c{width:9.274667pt;}
._16{width:12.026667pt;}
._11{width:13.536000pt;}
._8{width:14.784000pt;}
._1d{width:15.728000pt;}
._14{width:17.098667pt;}
._17{width:18.912000pt;}
._18{width:20.000000pt;}
._13{width:21.280000pt;}
._19{width:22.170667pt;}
._1a{width:23.157333pt;}
._20{width:25.333333pt;}
._1e{width:26.666667pt;}
._a{width:42.584000pt;}
._d{width:43.936000pt;}
._f{width:414.266667pt;}
._e{width:921.173333pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:41.040000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:43.587933pt;}
.y102{bottom:44.254600pt;}
.y27{bottom:44.587933pt;}
.ydb{bottom:44.921267pt;}
.y7a{bottom:45.254600pt;}
.y49{bottom:47.587933pt;}
.y7d{bottom:56.921267pt;}
.y26{bottom:57.921267pt;}
.y101{bottom:58.921267pt;}
.yda{bottom:59.587933pt;}
.y79{bottom:60.587933pt;}
.y48{bottom:62.921267pt;}
.y7c{bottom:70.254600pt;}
.y25{bottom:71.254600pt;}
.yd9{bottom:74.254600pt;}
.y78{bottom:75.921267pt;}
.y47{bottom:78.254600pt;}
.y7b{bottom:83.587933pt;}
.y24{bottom:84.587933pt;}
.yd8{bottom:88.921267pt;}
.y77{bottom:91.254600pt;}
.y46{bottom:93.587933pt;}
.y83{bottom:96.921267pt;}
.y23{bottom:97.921267pt;}
.yd7{bottom:103.587933pt;}
.y100{bottom:104.254600pt;}
.y76{bottom:106.587933pt;}
.y45{bottom:108.921267pt;}
.y82{bottom:110.254600pt;}
.y22{bottom:111.254600pt;}
.yd6{bottom:118.254600pt;}
.yff{bottom:118.921267pt;}
.y75{bottom:121.921267pt;}
.y81{bottom:123.587933pt;}
.y44{bottom:124.254600pt;}
.y21{bottom:124.587933pt;}
.yd5{bottom:132.921267pt;}
.yfe{bottom:134.587933pt;}
.y80{bottom:136.921267pt;}
.y74{bottom:137.254600pt;}
.y20{bottom:137.921267pt;}
.y43{bottom:139.587933pt;}
.yb2{bottom:144.921267pt;}
.yd4{bottom:147.587933pt;}
.yfd{bottom:149.254600pt;}
.y8f{bottom:150.254600pt;}
.y73{bottom:152.587933pt;}
.y42{bottom:154.921267pt;}
.yb1{bottom:160.254600pt;}
.yd3{bottom:162.254600pt;}
.y8e{bottom:163.587933pt;}
.y1f{bottom:164.587933pt;}
.y72{bottom:167.921267pt;}
.y41{bottom:170.254600pt;}
.yb0{bottom:175.587933pt;}
.y8d{bottom:176.921267pt;}
.yfc{bottom:179.254600pt;}
.y71{bottom:183.254600pt;}
.y40{bottom:185.587933pt;}
.y8c{bottom:190.254600pt;}
.yaf{bottom:190.921267pt;}
.yd2{bottom:191.587933pt;}
.yfb{bottom:194.587933pt;}
.y1e{bottom:196.587933pt;}
.y70{bottom:198.587933pt;}
.y3f{bottom:200.921267pt;}
.y8b{bottom:203.587933pt;}
.yae{bottom:206.254600pt;}
.y123{bottom:206.587933pt;}
.yfa{bottom:209.921267pt;}
.y6f{bottom:213.921267pt;}
.y1d{bottom:215.254600pt;}
.y3e{bottom:216.254600pt;}
.y8a{bottom:216.921267pt;}
.yd1{bottom:220.921267pt;}
.y122{bottom:221.254600pt;}
.y7f{bottom:221.587933pt;}
.yf9{bottom:224.587933pt;}
.y1c{bottom:228.587933pt;}
.y6e{bottom:229.254600pt;}
.y89{bottom:230.254600pt;}
.y3d{bottom:231.587933pt;}
.yd0{bottom:235.587933pt;}
.y121{bottom:235.921267pt;}
.yad{bottom:236.921267pt;}
.yf8{bottom:240.254600pt;}
.y1b{bottom:241.921267pt;}
.y88{bottom:243.587933pt;}
.y6d{bottom:244.587933pt;}
.y3c{bottom:246.921267pt;}
.ycf{bottom:250.254600pt;}
.y120{bottom:250.587933pt;}
.yac{bottom:252.254600pt;}
.yf7{bottom:254.921267pt;}
.y1a{bottom:255.254600pt;}
.y87{bottom:256.921267pt;}
.y6c{bottom:259.921267pt;}
.y3b{bottom:262.254600pt;}
.yce{bottom:264.921267pt;}
.y11f{bottom:265.254600pt;}
.yab{bottom:267.587933pt;}
.y19{bottom:268.587933pt;}
.y86{bottom:270.254600pt;}
.y6b{bottom:275.254600pt;}
.y3a{bottom:277.587933pt;}
.ycd{bottom:279.587933pt;}
.y11e{bottom:279.921267pt;}
.y18{bottom:281.921267pt;}
.yaa{bottom:282.921267pt;}
.y85{bottom:283.587933pt;}
.yf6{bottom:284.921267pt;}
.y6a{bottom:290.587933pt;}
.y39{bottom:292.921267pt;}
.ycc{bottom:294.254600pt;}
.y11d{bottom:294.587933pt;}
.y17{bottom:295.254600pt;}
.y84{bottom:296.921267pt;}
.ya9{bottom:298.254600pt;}
.yf5{bottom:300.254600pt;}
.y69{bottom:305.921267pt;}
.y38{bottom:308.254600pt;}
.y16{bottom:308.587933pt;}
.ycb{bottom:308.921267pt;}
.y11c{bottom:309.254600pt;}
.ya8{bottom:313.587933pt;}
.yf4{bottom:314.921267pt;}
.y68{bottom:321.254600pt;}
.y15{bottom:321.921267pt;}
.y37{bottom:323.587933pt;}
.y11b{bottom:323.921267pt;}
.ya7{bottom:328.921267pt;}
.yf3{bottom:329.587933pt;}
.y14{bottom:335.254600pt;}
.y67{bottom:336.587933pt;}
.yca{bottom:338.254600pt;}
.y11a{bottom:338.587933pt;}
.y36{bottom:338.921267pt;}
.ya6{bottom:344.254600pt;}
.yf2{bottom:344.921267pt;}
.y13{bottom:348.587933pt;}
.y66{bottom:351.921267pt;}
.yc9{bottom:352.921267pt;}
.y119{bottom:353.254600pt;}
.ya5{bottom:359.587933pt;}
.yf1{bottom:360.587933pt;}
.y12{bottom:361.921267pt;}
.y65{bottom:367.254600pt;}
.yc8{bottom:367.587933pt;}
.y118{bottom:367.921267pt;}
.ya4{bottom:374.921267pt;}
.y11{bottom:375.254600pt;}
.yc7{bottom:382.254600pt;}
.y64{bottom:382.587933pt;}
.y10{bottom:388.587933pt;}
.ya3{bottom:390.254600pt;}
.yf0{bottom:390.587933pt;}
.yc6{bottom:396.921267pt;}
.y117{bottom:397.254600pt;}
.y63{bottom:397.921267pt;}
.yf{bottom:401.921267pt;}
.yef{bottom:405.254600pt;}
.ya2{bottom:405.587933pt;}
.yc5{bottom:411.587933pt;}
.y116{bottom:411.921267pt;}
.y62{bottom:413.254600pt;}
.ye{bottom:415.254600pt;}
.yee{bottom:419.921267pt;}
.ya1{bottom:420.921267pt;}
.yc4{bottom:426.254600pt;}
.y115{bottom:426.587933pt;}
.yd{bottom:428.587933pt;}
.y4e{bottom:433.921267pt;}
.yed{bottom:435.254600pt;}
.ya0{bottom:436.254600pt;}
.yc3{bottom:440.921267pt;}
.y114{bottom:441.254600pt;}
.yc{bottom:441.921267pt;}
.y61{bottom:443.921267pt;}
.y4c{bottom:447.254600pt;}
.yec{bottom:449.921267pt;}
.y9f{bottom:451.587933pt;}
.yb{bottom:455.254600pt;}
.yc2{bottom:455.587933pt;}
.y113{bottom:455.921267pt;}
.y60{bottom:459.254600pt;}
.y4b{bottom:460.587933pt;}
.yeb{bottom:464.587933pt;}
.y4d{bottom:465.921267pt;}
.y9e{bottom:466.921267pt;}
.ya{bottom:468.587933pt;}
.yc1{bottom:470.254600pt;}
.y112{bottom:470.587933pt;}
.y5f{bottom:474.587933pt;}
.y4a{bottom:479.254600pt;}
.yea{bottom:480.254600pt;}
.y9{bottom:481.921267pt;}
.y9d{bottom:482.254600pt;}
.yc0{bottom:484.921267pt;}
.y111{bottom:485.254600pt;}
.y5e{bottom:489.921267pt;}
.ye9{bottom:494.921267pt;}
.y8{bottom:495.254600pt;}
.y9c{bottom:497.587933pt;}
.ybf{bottom:499.587933pt;}
.y110{bottom:499.921267pt;}
.y4f{bottom:500.587933pt;}
.y5d{bottom:505.254600pt;}
.ye8{bottom:509.587933pt;}
.y9b{bottom:512.921267pt;}
.ybe{bottom:514.254600pt;}
.y10f{bottom:514.587933pt;}
.y5c{bottom:520.587933pt;}
.y7{bottom:521.921267pt;}
.ye7{bottom:524.921267pt;}
.y9a{bottom:528.254600pt;}
.ybd{bottom:528.921267pt;}
.y10e{bottom:529.254600pt;}
.y5b{bottom:535.921267pt;}
.ye6{bottom:539.587933pt;}
.y99{bottom:543.587933pt;}
.y10d{bottom:543.921267pt;}
.y5a{bottom:551.254600pt;}
.y35{bottom:554.587933pt;}
.ye5{bottom:554.921267pt;}
.ybc{bottom:558.254600pt;}
.y10c{bottom:558.587933pt;}
.y98{bottom:558.921267pt;}
.y59{bottom:566.587933pt;}
.ye4{bottom:569.587933pt;}
.ybb{bottom:572.921267pt;}
.y34{bottom:573.254600pt;}
.y97{bottom:574.254600pt;}
.y58{bottom:581.921267pt;}
.ye3{bottom:584.921267pt;}
.y33{bottom:586.587933pt;}
.yba{bottom:587.587933pt;}
.y10b{bottom:587.921267pt;}
.y96{bottom:589.587933pt;}
.y57{bottom:597.254600pt;}
.ye2{bottom:599.587933pt;}
.y32{bottom:599.921267pt;}
.yb9{bottom:602.254600pt;}
.y10a{bottom:602.587933pt;}
.y95{bottom:604.921267pt;}
.y6{bottom:608.921267pt;}
.y56{bottom:612.587933pt;}
.y31{bottom:613.254600pt;}
.ye1{bottom:615.254600pt;}
.yb8{bottom:616.921267pt;}
.y109{bottom:617.254600pt;}
.y94{bottom:620.254600pt;}
.y5{bottom:622.254600pt;}
.y30{bottom:626.587933pt;}
.y55{bottom:627.921267pt;}
.ye0{bottom:629.921267pt;}
.yb7{bottom:631.587933pt;}
.y108{bottom:631.921267pt;}
.y4{bottom:635.587933pt;}
.y2f{bottom:639.921267pt;}
.y54{bottom:643.254600pt;}
.ydf{bottom:645.254600pt;}
.yb6{bottom:646.254600pt;}
.y107{bottom:646.587933pt;}
.y93{bottom:650.921267pt;}
.y3{bottom:652.254600pt;}
.y2e{bottom:653.254600pt;}
.y53{bottom:658.587933pt;}
.yde{bottom:659.921267pt;}
.yb5{bottom:660.921267pt;}
.y106{bottom:661.254600pt;}
.y92{bottom:666.254600pt;}
.y2d{bottom:666.587933pt;}
.y52{bottom:673.921267pt;}
.ydd{bottom:675.254600pt;}
.yb4{bottom:675.587933pt;}
.y105{bottom:675.921267pt;}
.y2c{bottom:679.921267pt;}
.y91{bottom:681.587933pt;}
.y51{bottom:689.254600pt;}
.ydc{bottom:689.921267pt;}
.yb3{bottom:690.254600pt;}
.y104{bottom:690.587933pt;}
.y2{bottom:692.254600pt;}
.y2b{bottom:693.254600pt;}
.y90{bottom:696.921267pt;}
.y50{bottom:704.587933pt;}
.y103{bottom:705.254600pt;}
.y2a{bottom:706.587933pt;}
.y1{bottom:713.587933pt;}
.y29{bottom:719.921267pt;}
.y28{bottom:761.587933pt;}
.h7{height:36.949333pt;}
.h4{height:40.848000pt;}
.h6{height:43.117333pt;}
.h5{height:43.877333pt;}
.ha{height:45.386667pt;}
.h3{height:49.925333pt;}
.h8{height:50.805333pt;}
.h9{height:54.925040pt;}
.h2{height:72.618667pt;}
.h1{height:801.333333pt;}
.h0{height:801.406827pt;}
.w0{width:521.207360pt;}
.w1{width:521.333333pt;}
.x0{left:0.000000pt;}
.x1{left:42.770347pt;}
.xa{left:48.778347pt;}
.x6{left:49.861013pt;}
.x2{left:55.754347pt;}
.x9{left:62.923680pt;}
.x5{left:122.550347pt;}
.x4{left:168.778347pt;}
.x8{left:237.463680pt;}
.x7{left:270.325013pt;}
.x3{left:360.103680pt;}
}




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