
    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_6e64fa1f981d6d7b3ab632ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_3a632e057a6573bf17ea1c58.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_895f7ef67af68928b5de9e5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.199219;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_e4b6c1f8743e08414800754c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:20.664000px;}
.ls2{letter-spacing:64.512000px;}
.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;}
}
.wsc{word-spacing:-65.501100px;}
.ws71{word-spacing:-55.944000px;}
.ws5{word-spacing:-51.515100px;}
.ws7{word-spacing:-51.242700px;}
.ws6{word-spacing:-50.574300px;}
.ws18{word-spacing:-45.722100px;}
.ws3c{word-spacing:-45.402000px;}
.wsf6{word-spacing:-45.331200px;}
.ws1c{word-spacing:-44.814300px;}
.wsb{word-spacing:-40.536000px;}
.ws107{word-spacing:-38.659500px;}
.wsa9{word-spacing:-38.658600px;}
.wsfc{word-spacing:-38.654100px;}
.ws10a{word-spacing:-38.652300px;}
.ws102{word-spacing:-38.646900px;}
.wsfe{word-spacing:-38.637900px;}
.ws106{word-spacing:-38.594400px;}
.ws103{word-spacing:-38.581200px;}
.ws4c{word-spacing:-38.579400px;}
.ws101{word-spacing:-38.576700px;}
.wsb6{word-spacing:-38.367300px;}
.wsd2{word-spacing:-38.361600px;}
.ws5c{word-spacing:-38.348100px;}
.ws10e{word-spacing:-38.162400px;}
.wsd3{word-spacing:-38.160000px;}
.ws10d{word-spacing:-38.155200px;}
.ws83{word-spacing:-38.154600px;}
.ws10f{word-spacing:-38.153700px;}
.ws104{word-spacing:-38.151900px;}
.ws44{word-spacing:-38.150100px;}
.ws110{word-spacing:-38.149200px;}
.wsb2{word-spacing:-38.147400px;}
.wsa1{word-spacing:-38.144100px;}
.wsd5{word-spacing:-38.138400px;}
.wsca{word-spacing:-38.133000px;}
.ws9e{word-spacing:-38.129400px;}
.ws109{word-spacing:-37.946400px;}
.ws6f{word-spacing:-37.944000px;}
.wsff{word-spacing:-37.941000px;}
.ws10c{word-spacing:-37.940400px;}
.wsc9{word-spacing:-37.937700px;}
.wsfb{word-spacing:-37.728000px;}
.wsce{word-spacing:-37.711200px;}
.wscd{word-spacing:-37.642800px;}
.ws4b{word-spacing:-37.627200px;}
.ws81{word-spacing:-37.436100px;}
.wsc6{word-spacing:-37.211400px;}
.ws4a{word-spacing:-35.699700px;}
.ws70{word-spacing:-35.509200px;}
.ws2{word-spacing:-35.295600px;}
.ws4{word-spacing:-34.797900px;}
.ws17{word-spacing:-33.611100px;}
.ws0{word-spacing:-33.589200px;}
.ws1{word-spacing:-33.491400px;}
.wsc5{word-spacing:-30.030000px;}
.wsfa{word-spacing:-23.470200px;}
.wsa3{word-spacing:-23.464800px;}
.wsd6{word-spacing:-23.457600px;}
.ws77{word-spacing:-23.254200px;}
.ws105{word-spacing:-23.253300px;}
.ws93{word-spacing:-23.252400px;}
.ws75{word-spacing:-23.248500px;}
.ws31{word-spacing:-23.247000px;}
.ws4f{word-spacing:-23.246400px;}
.ws5a{word-spacing:-23.243400px;}
.ws47{word-spacing:-23.242500px;}
.ws8c{word-spacing:-23.239800px;}
.wse7{word-spacing:-23.238000px;}
.wsaf{word-spacing:-23.237100px;}
.ws79{word-spacing:-23.236500px;}
.wsb3{word-spacing:-23.236200px;}
.wsa8{word-spacing:-23.232600px;}
.ws89{word-spacing:-23.232000px;}
.ws58{word-spacing:-23.230800px;}
.wsda{word-spacing:-23.033700px;}
.wscf{word-spacing:-23.032800px;}
.ws9b{word-spacing:-23.027400px;}
.ws49{word-spacing:-23.025000px;}
.wsb8{word-spacing:-23.024700px;}
.ws1b{word-spacing:-23.016000px;}
.ws53{word-spacing:-22.758000px;}
.ws45{word-spacing:-22.754400px;}
.ws72{word-spacing:-22.753500px;}
.ws7a{word-spacing:-22.752600px;}
.ws9{word-spacing:-22.752000px;}
.ws3b{word-spacing:-22.751100px;}
.ws50{word-spacing:-22.749300px;}
.ws63{word-spacing:-22.749000px;}
.ws56{word-spacing:-22.748400px;}
.ws62{word-spacing:-22.747200px;}
.ws2e{word-spacing:-22.744800px;}
.wsa2{word-spacing:-22.743000px;}
.wsb9{word-spacing:-22.742100px;}
.ws80{word-spacing:-22.739400px;}
.ws43{word-spacing:-22.735800px;}
.wsa7{word-spacing:-22.732500px;}
.ws9a{word-spacing:-22.728600px;}
.wsac{word-spacing:-22.719600px;}
.wsb7{word-spacing:-22.673700px;}
.wsc0{word-spacing:-22.540200px;}
.ws76{word-spacing:-22.538400px;}
.wsd9{word-spacing:-22.536000px;}
.ws8{word-spacing:-22.535700px;}
.ws78{word-spacing:-22.534800px;}
.ws6b{word-spacing:-22.534200px;}
.wsae{word-spacing:-22.533900px;}
.ws100{word-spacing:-22.533300px;}
.wscc{word-spacing:-22.532400px;}
.wsa{word-spacing:-22.531500px;}
.wsa6{word-spacing:-22.531200px;}
.ws64{word-spacing:-22.530600px;}
.wsbb{word-spacing:-22.529400px;}
.ws59{word-spacing:-22.528800px;}
.ws40{word-spacing:-22.527900px;}
.wsa5{word-spacing:-22.527600px;}
.wsbe{word-spacing:-22.527000px;}
.wsb4{word-spacing:-22.525200px;}
.wsfd{word-spacing:-22.524300px;}
.ws82{word-spacing:-22.523400px;}
.wsd7{word-spacing:-22.522500px;}
.wsa4{word-spacing:-22.521600px;}
.ws111{word-spacing:-22.520700px;}
.ws90{word-spacing:-22.520400px;}
.ws74{word-spacing:-22.518900px;}
.wsd4{word-spacing:-22.513500px;}
.wsf9{word-spacing:-22.456800px;}
.ws8e{word-spacing:-22.449600px;}
.ws87{word-spacing:-22.314600px;}
.wsc7{word-spacing:-22.038000px;}
.wsc8{word-spacing:-22.034400px;}
.wsea{word-spacing:-22.032000px;}
.ws2b{word-spacing:-22.028400px;}
.ws46{word-spacing:-22.027500px;}
.ws10b{word-spacing:-21.822000px;}
.ws108{word-spacing:-21.813300px;}
.ws73{word-spacing:-21.811500px;}
.wsdc{word-spacing:-21.810600px;}
.wsad{word-spacing:-21.807900px;}
.ws33{word-spacing:-21.807000px;}
.wsa0{word-spacing:-21.805200px;}
.wsdf{word-spacing:-21.596100px;}
.ws8d{word-spacing:-21.307500px;}
.ws8f{word-spacing:-21.302400px;}
.ws96{word-spacing:-21.091500px;}
.ws19{word-spacing:-21.082500px;}
.wse5{word-spacing:-20.598000px;}
.ws85{word-spacing:-20.592000px;}
.ws23{word-spacing:-20.588400px;}
.ws57{word-spacing:-20.587500px;}
.wse6{word-spacing:-20.367900px;}
.ws6d{word-spacing:-19.874400px;}
.wsf5{word-spacing:-19.870800px;}
.wsf4{word-spacing:-19.863000px;}
.wse3{word-spacing:-19.652400px;}
.wsbd{word-spacing:-19.149300px;}
.ws7d{word-spacing:-19.148400px;}
.ws37{word-spacing:-19.124700px;}
.wsb5{word-spacing:-18.938400px;}
.wsf3{word-spacing:-18.932400px;}
.ws35{word-spacing:-18.929400px;}
.ws11{word-spacing:-18.918900px;}
.ws1d{word-spacing:-18.862200px;}
.ws52{word-spacing:-18.424800px;}
.wsc1{word-spacing:-18.202800px;}
.wsc3{word-spacing:-17.714400px;}
.wse2{word-spacing:-17.712600px;}
.wsdb{word-spacing:-17.496000px;}
.ws55{word-spacing:-17.492400px;}
.ws4e{word-spacing:-17.488800px;}
.wsf{word-spacing:-17.374200px;}
.ws15{word-spacing:-17.369400px;}
.ws91{word-spacing:-16.912200px;}
.ws28{word-spacing:-16.763400px;}
.wsf1{word-spacing:-16.551600px;}
.ws3d{word-spacing:-16.549200px;}
.ws60{word-spacing:-16.272000px;}
.ws3f{word-spacing:-16.269000px;}
.ws8a{word-spacing:-16.048800px;}
.ws32{word-spacing:-16.037100px;}
.wsbc{word-spacing:-16.032600px;}
.ws36{word-spacing:-15.840000px;}
.ws2d{word-spacing:-15.830100px;}
.wsf0{word-spacing:-15.554400px;}
.ws22{word-spacing:-15.552000px;}
.wsbf{word-spacing:-15.336000px;}
.wsef{word-spacing:-15.316800px;}
.ws9d{word-spacing:-14.834400px;}
.wsc4{word-spacing:-14.832000px;}
.ws65{word-spacing:-14.828400px;}
.ws2f{word-spacing:-14.622000px;}
.wsb0{word-spacing:-14.605200px;}
.ws8b{word-spacing:-14.527800px;}
.ws41{word-spacing:-14.103000px;}
.ws7e{word-spacing:-13.894800px;}
.wsf2{word-spacing:-13.388400px;}
.ws14{word-spacing:-13.257900px;}
.wsee{word-spacing:-13.169400px;}
.ws5d{word-spacing:-13.168800px;}
.wsd{word-spacing:-13.063500px;}
.wsdd{word-spacing:-12.952800px;}
.ws3a{word-spacing:-12.458400px;}
.wsec{word-spacing:-12.443400px;}
.wsf8{word-spacing:-12.441600px;}
.ws94{word-spacing:-12.440700px;}
.ws98{word-spacing:-12.236400px;}
.ws1f{word-spacing:-11.943000px;}
.ws25{word-spacing:-11.727000px;}
.ws2c{word-spacing:-11.651400px;}
.ws20{word-spacing:-11.232000px;}
.ws7f{word-spacing:-10.934400px;}
.ws95{word-spacing:-10.512000px;}
.ws26{word-spacing:-10.508400px;}
.ws1a{word-spacing:-10.504800px;}
.ws30{word-spacing:-10.501200px;}
.ws10{word-spacing:-10.348200px;}
.wsc2{word-spacing:-10.296600px;}
.ws97{word-spacing:-10.292400px;}
.ws34{word-spacing:-10.290600px;}
.wsed{word-spacing:-10.076400px;}
.ws16{word-spacing:-9.826800px;}
.ws21{word-spacing:-9.798000px;}
.ws5e{word-spacing:-9.792000px;}
.ws39{word-spacing:-9.573000px;}
.ws86{word-spacing:-9.572400px;}
.ws4d{word-spacing:-9.497700px;}
.wsd0{word-spacing:-9.078000px;}
.wsab{word-spacing:-9.068400px;}
.wsf7{word-spacing:-8.852400px;}
.wse8{word-spacing:-8.352000px;}
.ws84{word-spacing:-8.348400px;}
.ws48{word-spacing:-8.138400px;}
.ws13{word-spacing:-7.992600px;}
.ws67{word-spacing:-7.987500px;}
.ws69{word-spacing:-7.979400px;}
.ws66{word-spacing:-7.847100px;}
.ws68{word-spacing:-7.482000px;}
.wse{word-spacing:-7.416300px;}
.ws92{word-spacing:-6.683400px;}
.ws27{word-spacing:-6.186600px;}
.ws1e{word-spacing:-5.972400px;}
.ws6e{word-spacing:-5.252400px;}
.wse1{word-spacing:-5.025600px;}
.wsde{word-spacing:-4.527000px;}
.ws38{word-spacing:-4.526400px;}
.wsb1{word-spacing:-4.523400px;}
.ws5b{word-spacing:-4.028400px;}
.ws51{word-spacing:-3.964200px;}
.wse4{word-spacing:-3.308400px;}
.wseb{word-spacing:-3.301200px;}
.wscb{word-spacing:-3.083400px;}
.ws24{word-spacing:-3.017400px;}
.ws99{word-spacing:-2.372400px;}
.wse0{word-spacing:-2.156400px;}
.ws88{word-spacing:-1.641600px;}
.wsaa{word-spacing:-0.434400px;}
.ws6a{word-spacing:-0.429300px;}
.ws29{word-spacing:0.000000px;}
.wse9{word-spacing:1.219800px;}
.ws9f{word-spacing:1.236600px;}
.wsd8{word-spacing:1.728000px;}
.ws42{word-spacing:2.671800px;}
.ws2a{word-spacing:3.177000px;}
.ws6c{word-spacing:3.400200px;}
.wsba{word-spacing:3.885600px;}
.ws61{word-spacing:4.613400px;}
.ws54{word-spacing:5.544000px;}
.ws12{word-spacing:6.186300px;}
.ws9c{word-spacing:7.917600px;}
.ws3e{word-spacing:9.651600px;}
.wsd1{word-spacing:10.365600px;}
.ws7c{word-spacing:11.880000px;}
.ws7b{word-spacing:23.976000px;}
.ws5f{word-spacing:41.976000px;}
.ws3{word-spacing:525.223500px;}
._5{margin-left:-1.283700px;}
._0{width:1.041000px;}
._1{width:16.128900px;}
._2{width:17.157600px;}
._9{width:19.008000px;}
._f{width:20.742600px;}
._a{width:21.768300px;}
._10{width:23.057700px;}
._c{width:24.357600px;}
._7{width:25.661700px;}
._e{width:26.728500px;}
._b{width:27.746100px;}
._12{width:29.685000px;}
._3{width:31.739700px;}
._11{width:33.536100px;}
._8{width:35.862000px;}
._15{width:37.286400px;}
._13{width:38.585400px;}
._22{width:39.960000px;}
._d{width:41.688300px;}
._1a{width:43.529700px;}
._14{width:44.928000px;}
._19{width:47.127000px;}
._23{width:49.610400px;}
._16{width:51.633000px;}
._21{width:53.640000px;}
._18{width:64.512000px;}
._1f{width:68.970000px;}
._20{width:70.434000px;}
._17{width:82.512000px;}
._1b{width:110.592000px;}
._1c{width:111.672000px;}
._1e{width:163.218000px;}
._1d{width:164.232000px;}
._4{width:175.479900px;}
._6{width:692.563500px;}
.fc5{color:rgb(31,36,60);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(30,115,190);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:59.700000px;}
.fs0{font-size:62.700000px;}
.fs1{font-size:66.300000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.300000px;}
.fs2{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:15.990000px;}
.yc4{bottom:28.140000px;}
.y6f{bottom:28.155000px;}
.yb4{bottom:28.230000px;}
.ya1{bottom:28.275000px;}
.y76{bottom:29.730000px;}
.ybc{bottom:29.805000px;}
.ya8{bottom:29.850000px;}
.y3{bottom:60.405000px;}
.ybd{bottom:112.065000px;}
.y26{bottom:113.505000px;}
.ya9{bottom:114.405000px;}
.yd2{bottom:123.765000px;}
.y5a{bottom:127.005000px;}
.ybb{bottom:128.700000px;}
.ya7{bottom:131.175000px;}
.y6c{bottom:131.505000px;}
.y9d{bottom:135.286500px;}
.y25{bottom:137.265000px;}
.yd1{bottom:147.525000px;}
.y59{bottom:150.765000px;}
.yf7{bottom:152.025000px;}
.y6b{bottom:155.445000px;}
.y9c{bottom:159.046500px;}
.y24{bottom:161.025000px;}
.yd0{bottom:171.465000px;}
.yf6{bottom:172.725000px;}
.y58{bottom:174.525000px;}
.y6a{bottom:179.205000px;}
.y9b{bottom:182.805000px;}
.yba{bottom:184.275000px;}
.y23{bottom:184.965000px;}
.ya6{bottom:186.750000px;}
.yf5{bottom:193.425000px;}
.ycf{bottom:195.225000px;}
.y57{bottom:198.465000px;}
.y69{bottom:202.965000px;}
.y82{bottom:203.686500px;}
.y9a{bottom:206.746500px;}
.y22{bottom:208.725000px;}
.yf4{bottom:214.846500px;}
.yce{bottom:218.986500px;}
.y56{bottom:222.225000px;}
.y48{bottom:224.205000px;}
.y68{bottom:226.725000px;}
.y81{bottom:227.625000px;}
.y99{bottom:230.505000px;}
.y21{bottom:232.486500px;}
.yb9{bottom:238.275000px;}
.ya5{bottom:240.750000px;}
.ycd{bottom:242.925000px;}
.y55{bottom:245.986500px;}
.y47{bottom:247.965000px;}
.y67{bottom:250.665000px;}
.y80{bottom:251.386500px;}
.y98{bottom:254.265000px;}
.y20{bottom:256.246500px;}
.yf3{bottom:262.365000px;}
.ycc{bottom:266.686500px;}
.y54{bottom:269.746500px;}
.y46{bottom:271.725000px;}
.y66{bottom:274.425000px;}
.y7f{bottom:275.146500px;}
.y97{bottom:278.025000px;}
.y1f{bottom:280.186500px;}
.yf2{bottom:283.065000px;}
.ycb{bottom:290.445000px;}
.yb8{bottom:292.275000px;}
.y53{bottom:293.686500px;}
.ya4{bottom:294.750000px;}
.y45{bottom:295.665000px;}
.y65{bottom:298.186500px;}
.y7e{bottom:298.905000px;}
.y96{bottom:301.965000px;}
.yf1{bottom:303.765000px;}
.y1e{bottom:303.945000px;}
.yca{bottom:314.205000px;}
.y52{bottom:317.445000px;}
.y44{bottom:319.425000px;}
.y64{bottom:321.945000px;}
.y7d{bottom:322.665000px;}
.yf0{bottom:324.465000px;}
.y95{bottom:325.725000px;}
.y1d{bottom:327.705000px;}
.yc8{bottom:330.975000px;}
.y51{bottom:341.205000px;}
.y43{bottom:343.186500px;}
.yef{bottom:345.165000px;}
.y63{bottom:345.886500px;}
.yb7{bottom:346.275000px;}
.y7c{bottom:346.425000px;}
.ya3{bottom:348.750000px;}
.y94{bottom:349.486500px;}
.y1c{bottom:351.465000px;}
.y50{bottom:364.965000px;}
.y42{bottom:366.945000px;}
.yee{bottom:368.925000px;}
.y62{bottom:369.646500px;}
.yc7{bottom:372.825000px;}
.y93{bottom:373.246500px;}
.y1b{bottom:375.225000px;}
.y4f{bottom:388.725000px;}
.y41{bottom:390.886500px;}
.yed{bottom:392.865000px;}
.y61{bottom:393.405000px;}
.y92{bottom:397.186500px;}
.y1a{bottom:399.165000px;}
.yb6{bottom:400.275000px;}
.ya2{bottom:402.750000px;}
.y4e{bottom:412.665000px;}
.yad{bottom:413.925000px;}
.y40{bottom:414.646500px;}
.yec{bottom:416.625000px;}
.y91{bottom:420.946500px;}
.y60{bottom:424.005000px;}
.yc6{bottom:426.825000px;}
.y4d{bottom:436.425000px;}
.y3f{bottom:438.405000px;}
.yeb{bottom:440.386500px;}
.y90{bottom:444.705000px;}
.y19{bottom:445.965000px;}
.y7b{bottom:447.765000px;}
.yb5{bottom:454.275000px;}
.ya0{bottom:456.750000px;}
.y4c{bottom:460.186500px;}
.y5f{bottom:460.546500px;}
.y3e{bottom:462.165000px;}
.yea{bottom:464.146500px;}
.yac{bottom:468.105000px;}
.y8f{bottom:468.465000px;}
.y7a{bottom:471.525000px;}
.yc5{bottom:480.825000px;}
.y4b{bottom:484.125000px;}
.y3d{bottom:485.925000px;}
.ye9{bottom:488.086500px;}
.yab{bottom:492.046500px;}
.y8e{bottom:492.225000px;}
.y5e{bottom:497.086500px;}
.y18{bottom:500.325000px;}
.y4a{bottom:507.886500px;}
.yb3{bottom:508.275000px;}
.y3c{bottom:509.865000px;}
.ye8{bottom:511.845000px;}
.yaa{bottom:515.805000px;}
.y8d{bottom:516.165000px;}
.y9f{bottom:517.246500px;}
.y79{bottom:519.046500px;}
.y17{bottom:524.086500px;}
.y49{bottom:531.646500px;}
.y3b{bottom:533.625000px;}
.yc3{bottom:534.825000px;}
.ye7{bottom:535.605000px;}
.y9e{bottom:539.565000px;}
.y8c{bottom:539.925000px;}
.y16{bottom:549.105000px;}
.y10c{bottom:555.405000px;}
.ye6{bottom:559.365000px;}
.y5d{bottom:563.325000px;}
.y8b{bottom:563.686500px;}
.y78{bottom:566.746500px;}
.yb2{bottom:568.725000px;}
.y10b{bottom:579.165000px;}
.y3a{bottom:580.425000px;}
.ye5{bottom:583.125000px;}
.y5c{bottom:587.265000px;}
.y8a{bottom:587.445000px;}
.yb1{bottom:591.046500px;}
.yc2{bottom:595.365000px;}
.y15{bottom:598.246500px;}
.y10a{bottom:603.105000px;}
.ye4{bottom:607.065000px;}
.y5b{bottom:611.025000px;}
.y89{bottom:611.386500px;}
.y77{bottom:614.265000px;}
.yb0{bottom:614.805000px;}
.yc1{bottom:617.686500px;}
.y14{bottom:618.046500px;}
.y109{bottom:626.865000px;}
.ye3{bottom:630.825000px;}
.y39{bottom:634.786500px;}
.y88{bottom:635.146500px;}
.y13{bottom:638.025000px;}
.yaf{bottom:638.746500px;}
.yc0{bottom:641.445000px;}
.y108{bottom:650.625000px;}
.ye2{bottom:654.586500px;}
.y12{bottom:657.825000px;}
.y38{bottom:658.545000px;}
.y87{bottom:658.905000px;}
.yae{bottom:662.505000px;}
.ybf{bottom:665.205000px;}
.y107{bottom:674.565000px;}
.y11{bottom:677.625000px;}
.ye1{bottom:678.525000px;}
.y75{bottom:678.675000px;}
.y37{bottom:682.486500px;}
.y86{bottom:682.665000px;}
.ybe{bottom:688.425000px;}
.y10{bottom:697.425000px;}
.y106{bottom:698.325000px;}
.ye0{bottom:702.286500px;}
.y36{bottom:706.246500px;}
.y85{bottom:706.425000px;}
.yf{bottom:717.225000px;}
.y105{bottom:722.086500px;}
.ydf{bottom:726.045000px;}
.y35{bottom:730.005000px;}
.y84{bottom:730.365000px;}
.y74{bottom:734.250000px;}
.ye{bottom:737.025000px;}
.y104{bottom:745.845000px;}
.yde{bottom:749.805000px;}
.y34{bottom:753.765000px;}
.y83{bottom:754.125000px;}
.yd{bottom:757.005000px;}
.y103{bottom:769.605000px;}
.ydd{bottom:773.565000px;}
.yc{bottom:776.805000px;}
.y33{bottom:777.525000px;}
.y73{bottom:788.250000px;}
.y102{bottom:793.545000px;}
.yb{bottom:796.605000px;}
.ydc{bottom:797.505000px;}
.y32{bottom:801.465000px;}
.y101{bottom:817.305000px;}
.ydb{bottom:821.265000px;}
.y31{bottom:825.225000px;}
.ya{bottom:840.705000px;}
.y100{bottom:841.065000px;}
.y72{bottom:842.250000px;}
.yda{bottom:845.025000px;}
.y30{bottom:848.986500px;}
.yff{bottom:864.825000px;}
.yd9{bottom:868.965000px;}
.y2f{bottom:872.925000px;}
.yfe{bottom:888.765000px;}
.y9{bottom:889.125000px;}
.yd8{bottom:892.725000px;}
.y71{bottom:896.250000px;}
.y2e{bottom:896.686500px;}
.yfd{bottom:912.525000px;}
.y8{bottom:912.886500px;}
.yd7{bottom:916.486500px;}
.y2d{bottom:920.445000px;}
.yfc{bottom:936.286500px;}
.y7{bottom:936.645000px;}
.yd6{bottom:940.245000px;}
.y2c{bottom:944.205000px;}
.y70{bottom:950.250000px;}
.yfb{bottom:960.045000px;}
.yd5{bottom:964.005000px;}
.y2b{bottom:967.965000px;}
.y6{bottom:981.286500px;}
.yfa{bottom:983.986500px;}
.yd4{bottom:987.765000px;}
.y2a{bottom:991.725000px;}
.y6e{bottom:1004.250000px;}
.yf9{bottom:1007.745000px;}
.yd3{bottom:1012.965000px;}
.y29{bottom:1015.665000px;}
.y5{bottom:1027.725000px;}
.y28{bottom:1039.425000px;}
.y4{bottom:1057.605000px;}
.yf8{bottom:1060.486500px;}
.y27{bottom:1063.186500px;}
.y6d{bottom:1064.625000px;}
.y2{bottom:1102.425000px;}
.y1{bottom:1132.125000px;}
.h6{height:41.481006px;}
.hd{height:41.850000px;}
.h1{height:42.493945px;}
.ha{height:44.933789px;}
.h2{height:45.659789px;}
.h7{height:48.796875px;}
.h4{height:50.027344px;}
.hb{height:54.000000px;}
.hc{height:55.575000px;}
.h5{height:57.133008px;}
.h9{height:61.113844px;}
.h8{height:61.119844px;}
.h3{height:64.859180px;}
.h0{height:1188.000000px;}
.w7{width:70.950000px;}
.w8{width:93.450000px;}
.w6{width:95.700000px;}
.w3{width:119.325000px;}
.w5{width:173.325000px;}
.w1{width:178.200000px;}
.wa{width:230.700000px;}
.w9{width:248.700000px;}
.w2{width:357.075000px;}
.w4{width:444.450000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:7.530000px;}
.x17{left:8.835000px;}
.x15{left:20.820000px;}
.x1a{left:22.695000px;}
.x11{left:25.320000px;}
.x13{left:35.400000px;}
.x18{left:41.413500px;}
.xe{left:44.038500px;}
.x19{left:56.100000px;}
.x14{left:73.995000px;}
.x16{left:78.675000px;}
.x10{left:106.035000px;}
.x3{left:108.000000px;}
.x12{left:118.455000px;}
.x9{left:135.000000px;}
.xb{left:162.000000px;}
.x1{left:174.060000px;}
.x2{left:176.760000px;}
.x6{left:181.800000px;}
.xd{left:191.400000px;}
.x7{left:204.300000px;}
.x5{left:209.338500px;}
.x24{left:219.375000px;}
.x1f{left:242.400000px;}
.x1d{left:296.400000px;}
.x4{left:331.020000px;}
.xa{left:334.260000px;}
.x8{left:340.560000px;}
.x23{left:351.000000px;}
.x1b{left:357.838500px;}
.xf{left:369.525000px;}
.x1e{left:375.660000px;}
.x20{left:415.650000px;}
.xc{left:432.538500px;}
.x25{left:468.000000px;}
.x21{left:511.275000px;}
.x22{left:582.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:18.368000pt;}
.ls2{letter-spacing:57.344000pt;}
.wsc{word-spacing:-58.223200pt;}
.ws71{word-spacing:-49.728000pt;}
.ws5{word-spacing:-45.791200pt;}
.ws7{word-spacing:-45.549067pt;}
.ws6{word-spacing:-44.954933pt;}
.ws18{word-spacing:-40.641867pt;}
.ws3c{word-spacing:-40.357333pt;}
.wsf6{word-spacing:-40.294400pt;}
.ws1c{word-spacing:-39.834933pt;}
.wsb{word-spacing:-36.032000pt;}
.ws107{word-spacing:-34.364000pt;}
.wsa9{word-spacing:-34.363200pt;}
.wsfc{word-spacing:-34.359200pt;}
.ws10a{word-spacing:-34.357600pt;}
.ws102{word-spacing:-34.352800pt;}
.wsfe{word-spacing:-34.344800pt;}
.ws106{word-spacing:-34.306133pt;}
.ws103{word-spacing:-34.294400pt;}
.ws4c{word-spacing:-34.292800pt;}
.ws101{word-spacing:-34.290400pt;}
.wsb6{word-spacing:-34.104267pt;}
.wsd2{word-spacing:-34.099200pt;}
.ws5c{word-spacing:-34.087200pt;}
.ws10e{word-spacing:-33.922133pt;}
.wsd3{word-spacing:-33.920000pt;}
.ws10d{word-spacing:-33.915733pt;}
.ws83{word-spacing:-33.915200pt;}
.ws10f{word-spacing:-33.914400pt;}
.ws104{word-spacing:-33.912800pt;}
.ws44{word-spacing:-33.911200pt;}
.ws110{word-spacing:-33.910400pt;}
.wsb2{word-spacing:-33.908800pt;}
.wsa1{word-spacing:-33.905867pt;}
.wsd5{word-spacing:-33.900800pt;}
.wsca{word-spacing:-33.896000pt;}
.ws9e{word-spacing:-33.892800pt;}
.ws109{word-spacing:-33.730133pt;}
.ws6f{word-spacing:-33.728000pt;}
.wsff{word-spacing:-33.725333pt;}
.ws10c{word-spacing:-33.724800pt;}
.wsc9{word-spacing:-33.722400pt;}
.wsfb{word-spacing:-33.536000pt;}
.wsce{word-spacing:-33.521067pt;}
.wscd{word-spacing:-33.460267pt;}
.ws4b{word-spacing:-33.446400pt;}
.ws81{word-spacing:-33.276533pt;}
.wsc6{word-spacing:-33.076800pt;}
.ws4a{word-spacing:-31.733067pt;}
.ws70{word-spacing:-31.563733pt;}
.ws2{word-spacing:-31.373867pt;}
.ws4{word-spacing:-30.931467pt;}
.ws17{word-spacing:-29.876533pt;}
.ws0{word-spacing:-29.857067pt;}
.ws1{word-spacing:-29.770133pt;}
.wsc5{word-spacing:-26.693333pt;}
.wsfa{word-spacing:-20.862400pt;}
.wsa3{word-spacing:-20.857600pt;}
.wsd6{word-spacing:-20.851200pt;}
.ws77{word-spacing:-20.670400pt;}
.ws105{word-spacing:-20.669600pt;}
.ws93{word-spacing:-20.668800pt;}
.ws75{word-spacing:-20.665333pt;}
.ws31{word-spacing:-20.664000pt;}
.ws4f{word-spacing:-20.663467pt;}
.ws5a{word-spacing:-20.660800pt;}
.ws47{word-spacing:-20.660000pt;}
.ws8c{word-spacing:-20.657600pt;}
.wse7{word-spacing:-20.656000pt;}
.wsaf{word-spacing:-20.655200pt;}
.ws79{word-spacing:-20.654667pt;}
.wsb3{word-spacing:-20.654400pt;}
.wsa8{word-spacing:-20.651200pt;}
.ws89{word-spacing:-20.650667pt;}
.ws58{word-spacing:-20.649600pt;}
.wsda{word-spacing:-20.474400pt;}
.wscf{word-spacing:-20.473600pt;}
.ws9b{word-spacing:-20.468800pt;}
.ws49{word-spacing:-20.466667pt;}
.wsb8{word-spacing:-20.466400pt;}
.ws1b{word-spacing:-20.458667pt;}
.ws53{word-spacing:-20.229333pt;}
.ws45{word-spacing:-20.226133pt;}
.ws72{word-spacing:-20.225333pt;}
.ws7a{word-spacing:-20.224533pt;}
.ws9{word-spacing:-20.224000pt;}
.ws3b{word-spacing:-20.223200pt;}
.ws50{word-spacing:-20.221600pt;}
.ws63{word-spacing:-20.221333pt;}
.ws56{word-spacing:-20.220800pt;}
.ws62{word-spacing:-20.219733pt;}
.ws2e{word-spacing:-20.217600pt;}
.wsa2{word-spacing:-20.216000pt;}
.wsb9{word-spacing:-20.215200pt;}
.ws80{word-spacing:-20.212800pt;}
.ws43{word-spacing:-20.209600pt;}
.wsa7{word-spacing:-20.206667pt;}
.ws9a{word-spacing:-20.203200pt;}
.wsac{word-spacing:-20.195200pt;}
.wsb7{word-spacing:-20.154400pt;}
.wsc0{word-spacing:-20.035733pt;}
.ws76{word-spacing:-20.034133pt;}
.wsd9{word-spacing:-20.032000pt;}
.ws8{word-spacing:-20.031733pt;}
.ws78{word-spacing:-20.030933pt;}
.ws6b{word-spacing:-20.030400pt;}
.wsae{word-spacing:-20.030133pt;}
.ws100{word-spacing:-20.029600pt;}
.wscc{word-spacing:-20.028800pt;}
.wsa{word-spacing:-20.028000pt;}
.wsa6{word-spacing:-20.027733pt;}
.ws64{word-spacing:-20.027200pt;}
.wsbb{word-spacing:-20.026133pt;}
.ws59{word-spacing:-20.025600pt;}
.ws40{word-spacing:-20.024800pt;}
.wsa5{word-spacing:-20.024533pt;}
.wsbe{word-spacing:-20.024000pt;}
.wsb4{word-spacing:-20.022400pt;}
.wsfd{word-spacing:-20.021600pt;}
.ws82{word-spacing:-20.020800pt;}
.wsd7{word-spacing:-20.020000pt;}
.wsa4{word-spacing:-20.019200pt;}
.ws111{word-spacing:-20.018400pt;}
.ws90{word-spacing:-20.018133pt;}
.ws74{word-spacing:-20.016800pt;}
.wsd4{word-spacing:-20.012000pt;}
.wsf9{word-spacing:-19.961600pt;}
.ws8e{word-spacing:-19.955200pt;}
.ws87{word-spacing:-19.835200pt;}
.wsc7{word-spacing:-19.589333pt;}
.wsc8{word-spacing:-19.586133pt;}
.wsea{word-spacing:-19.584000pt;}
.ws2b{word-spacing:-19.580800pt;}
.ws46{word-spacing:-19.580000pt;}
.ws10b{word-spacing:-19.397333pt;}
.ws108{word-spacing:-19.389600pt;}
.ws73{word-spacing:-19.388000pt;}
.wsdc{word-spacing:-19.387200pt;}
.wsad{word-spacing:-19.384800pt;}
.ws33{word-spacing:-19.384000pt;}
.wsa0{word-spacing:-19.382400pt;}
.wsdf{word-spacing:-19.196533pt;}
.ws8d{word-spacing:-18.940000pt;}
.ws8f{word-spacing:-18.935467pt;}
.ws96{word-spacing:-18.748000pt;}
.ws19{word-spacing:-18.740000pt;}
.wse5{word-spacing:-18.309333pt;}
.ws85{word-spacing:-18.304000pt;}
.ws23{word-spacing:-18.300800pt;}
.ws57{word-spacing:-18.300000pt;}
.wse6{word-spacing:-18.104800pt;}
.ws6d{word-spacing:-17.666133pt;}
.wsf5{word-spacing:-17.662933pt;}
.wsf4{word-spacing:-17.656000pt;}
.wse3{word-spacing:-17.468800pt;}
.wsbd{word-spacing:-17.021600pt;}
.ws7d{word-spacing:-17.020800pt;}
.ws37{word-spacing:-16.999733pt;}
.wsb5{word-spacing:-16.834133pt;}
.wsf3{word-spacing:-16.828800pt;}
.ws35{word-spacing:-16.826133pt;}
.ws11{word-spacing:-16.816800pt;}
.ws1d{word-spacing:-16.766400pt;}
.ws52{word-spacing:-16.377600pt;}
.wsc1{word-spacing:-16.180267pt;}
.wsc3{word-spacing:-15.746133pt;}
.wse2{word-spacing:-15.744533pt;}
.wsdb{word-spacing:-15.552000pt;}
.ws55{word-spacing:-15.548800pt;}
.ws4e{word-spacing:-15.545600pt;}
.wsf{word-spacing:-15.443733pt;}
.ws15{word-spacing:-15.439467pt;}
.ws91{word-spacing:-15.033067pt;}
.ws28{word-spacing:-14.900800pt;}
.wsf1{word-spacing:-14.712533pt;}
.ws3d{word-spacing:-14.710400pt;}
.ws60{word-spacing:-14.464000pt;}
.ws3f{word-spacing:-14.461333pt;}
.ws8a{word-spacing:-14.265600pt;}
.ws32{word-spacing:-14.255200pt;}
.wsbc{word-spacing:-14.251200pt;}
.ws36{word-spacing:-14.080000pt;}
.ws2d{word-spacing:-14.071200pt;}
.wsf0{word-spacing:-13.826133pt;}
.ws22{word-spacing:-13.824000pt;}
.wsbf{word-spacing:-13.632000pt;}
.wsef{word-spacing:-13.614933pt;}
.ws9d{word-spacing:-13.186133pt;}
.wsc4{word-spacing:-13.184000pt;}
.ws65{word-spacing:-13.180800pt;}
.ws2f{word-spacing:-12.997333pt;}
.wsb0{word-spacing:-12.982400pt;}
.ws8b{word-spacing:-12.913600pt;}
.ws41{word-spacing:-12.536000pt;}
.ws7e{word-spacing:-12.350933pt;}
.wsf2{word-spacing:-11.900800pt;}
.ws14{word-spacing:-11.784800pt;}
.wsee{word-spacing:-11.706133pt;}
.ws5d{word-spacing:-11.705600pt;}
.wsd{word-spacing:-11.612000pt;}
.wsdd{word-spacing:-11.513600pt;}
.ws3a{word-spacing:-11.074133pt;}
.wsec{word-spacing:-11.060800pt;}
.wsf8{word-spacing:-11.059200pt;}
.ws94{word-spacing:-11.058400pt;}
.ws98{word-spacing:-10.876800pt;}
.ws1f{word-spacing:-10.616000pt;}
.ws25{word-spacing:-10.424000pt;}
.ws2c{word-spacing:-10.356800pt;}
.ws20{word-spacing:-9.984000pt;}
.ws7f{word-spacing:-9.719467pt;}
.ws95{word-spacing:-9.344000pt;}
.ws26{word-spacing:-9.340800pt;}
.ws1a{word-spacing:-9.337600pt;}
.ws30{word-spacing:-9.334400pt;}
.ws10{word-spacing:-9.198400pt;}
.wsc2{word-spacing:-9.152533pt;}
.ws97{word-spacing:-9.148800pt;}
.ws34{word-spacing:-9.147200pt;}
.wsed{word-spacing:-8.956800pt;}
.ws16{word-spacing:-8.734933pt;}
.ws21{word-spacing:-8.709333pt;}
.ws5e{word-spacing:-8.704000pt;}
.ws39{word-spacing:-8.509333pt;}
.ws86{word-spacing:-8.508800pt;}
.ws4d{word-spacing:-8.442400pt;}
.wsd0{word-spacing:-8.069333pt;}
.wsab{word-spacing:-8.060800pt;}
.wsf7{word-spacing:-7.868800pt;}
.wse8{word-spacing:-7.424000pt;}
.ws84{word-spacing:-7.420800pt;}
.ws48{word-spacing:-7.234133pt;}
.ws13{word-spacing:-7.104533pt;}
.ws67{word-spacing:-7.100000pt;}
.ws69{word-spacing:-7.092800pt;}
.ws66{word-spacing:-6.975200pt;}
.ws68{word-spacing:-6.650667pt;}
.wse{word-spacing:-6.592267pt;}
.ws92{word-spacing:-5.940800pt;}
.ws27{word-spacing:-5.499200pt;}
.ws1e{word-spacing:-5.308800pt;}
.ws6e{word-spacing:-4.668800pt;}
.wse1{word-spacing:-4.467200pt;}
.wsde{word-spacing:-4.024000pt;}
.ws38{word-spacing:-4.023467pt;}
.wsb1{word-spacing:-4.020800pt;}
.ws5b{word-spacing:-3.580800pt;}
.ws51{word-spacing:-3.523733pt;}
.wse4{word-spacing:-2.940800pt;}
.wseb{word-spacing:-2.934400pt;}
.wscb{word-spacing:-2.740800pt;}
.ws24{word-spacing:-2.682133pt;}
.ws99{word-spacing:-2.108800pt;}
.wse0{word-spacing:-1.916800pt;}
.ws88{word-spacing:-1.459200pt;}
.wsaa{word-spacing:-0.386133pt;}
.ws6a{word-spacing:-0.381600pt;}
.ws29{word-spacing:0.000000pt;}
.wse9{word-spacing:1.084267pt;}
.ws9f{word-spacing:1.099200pt;}
.wsd8{word-spacing:1.536000pt;}
.ws42{word-spacing:2.374933pt;}
.ws2a{word-spacing:2.824000pt;}
.ws6c{word-spacing:3.022400pt;}
.wsba{word-spacing:3.453867pt;}
.ws61{word-spacing:4.100800pt;}
.ws54{word-spacing:4.928000pt;}
.ws12{word-spacing:5.498933pt;}
.ws9c{word-spacing:7.037867pt;}
.ws3e{word-spacing:8.579200pt;}
.wsd1{word-spacing:9.213867pt;}
.ws7c{word-spacing:10.560000pt;}
.ws7b{word-spacing:21.312000pt;}
.ws5f{word-spacing:37.312000pt;}
.ws3{word-spacing:466.865333pt;}
._5{margin-left:-1.141067pt;}
._0{width:0.925333pt;}
._1{width:14.336800pt;}
._2{width:15.251200pt;}
._9{width:16.896000pt;}
._f{width:18.437867pt;}
._a{width:19.349600pt;}
._10{width:20.495733pt;}
._c{width:21.651200pt;}
._7{width:22.810400pt;}
._e{width:23.758667pt;}
._b{width:24.663200pt;}
._12{width:26.386667pt;}
._3{width:28.213067pt;}
._11{width:29.809867pt;}
._8{width:31.877333pt;}
._15{width:33.143467pt;}
._13{width:34.298133pt;}
._22{width:35.520000pt;}
._d{width:37.056267pt;}
._1a{width:38.693067pt;}
._14{width:39.936000pt;}
._19{width:41.890667pt;}
._23{width:44.098133pt;}
._16{width:45.896000pt;}
._21{width:47.680000pt;}
._18{width:57.344000pt;}
._1f{width:61.306667pt;}
._20{width:62.608000pt;}
._17{width:73.344000pt;}
._1b{width:98.304000pt;}
._1c{width:99.264000pt;}
._1e{width:145.082667pt;}
._1d{width:145.984000pt;}
._4{width:155.982133pt;}
._6{width:615.612000pt;}
.fs5{font-size:53.066667pt;}
.fs0{font-size:55.733333pt;}
.fs1{font-size:58.933333pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.933333pt;}
.fs2{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:14.213333pt;}
.yc4{bottom:25.013333pt;}
.y6f{bottom:25.026667pt;}
.yb4{bottom:25.093333pt;}
.ya1{bottom:25.133333pt;}
.y76{bottom:26.426667pt;}
.ybc{bottom:26.493333pt;}
.ya8{bottom:26.533333pt;}
.y3{bottom:53.693333pt;}
.ybd{bottom:99.613333pt;}
.y26{bottom:100.893333pt;}
.ya9{bottom:101.693333pt;}
.yd2{bottom:110.013333pt;}
.y5a{bottom:112.893333pt;}
.ybb{bottom:114.400000pt;}
.ya7{bottom:116.600000pt;}
.y6c{bottom:116.893333pt;}
.y9d{bottom:120.254667pt;}
.y25{bottom:122.013333pt;}
.yd1{bottom:131.133333pt;}
.y59{bottom:134.013333pt;}
.yf7{bottom:135.133333pt;}
.y6b{bottom:138.173333pt;}
.y9c{bottom:141.374667pt;}
.y24{bottom:143.133333pt;}
.yd0{bottom:152.413333pt;}
.yf6{bottom:153.533333pt;}
.y58{bottom:155.133333pt;}
.y6a{bottom:159.293333pt;}
.y9b{bottom:162.493333pt;}
.yba{bottom:163.800000pt;}
.y23{bottom:164.413333pt;}
.ya6{bottom:166.000000pt;}
.yf5{bottom:171.933333pt;}
.ycf{bottom:173.533333pt;}
.y57{bottom:176.413333pt;}
.y69{bottom:180.413333pt;}
.y82{bottom:181.054667pt;}
.y9a{bottom:183.774667pt;}
.y22{bottom:185.533333pt;}
.yf4{bottom:190.974667pt;}
.yce{bottom:194.654667pt;}
.y56{bottom:197.533333pt;}
.y48{bottom:199.293333pt;}
.y68{bottom:201.533333pt;}
.y81{bottom:202.333333pt;}
.y99{bottom:204.893333pt;}
.y21{bottom:206.654667pt;}
.yb9{bottom:211.800000pt;}
.ya5{bottom:214.000000pt;}
.ycd{bottom:215.933333pt;}
.y55{bottom:218.654667pt;}
.y47{bottom:220.413333pt;}
.y67{bottom:222.813333pt;}
.y80{bottom:223.454667pt;}
.y98{bottom:226.013333pt;}
.y20{bottom:227.774667pt;}
.yf3{bottom:233.213333pt;}
.ycc{bottom:237.054667pt;}
.y54{bottom:239.774667pt;}
.y46{bottom:241.533333pt;}
.y66{bottom:243.933333pt;}
.y7f{bottom:244.574667pt;}
.y97{bottom:247.133333pt;}
.y1f{bottom:249.054667pt;}
.yf2{bottom:251.613333pt;}
.ycb{bottom:258.173333pt;}
.yb8{bottom:259.800000pt;}
.y53{bottom:261.054667pt;}
.ya4{bottom:262.000000pt;}
.y45{bottom:262.813333pt;}
.y65{bottom:265.054667pt;}
.y7e{bottom:265.693333pt;}
.y96{bottom:268.413333pt;}
.yf1{bottom:270.013333pt;}
.y1e{bottom:270.173333pt;}
.yca{bottom:279.293333pt;}
.y52{bottom:282.173333pt;}
.y44{bottom:283.933333pt;}
.y64{bottom:286.173333pt;}
.y7d{bottom:286.813333pt;}
.yf0{bottom:288.413333pt;}
.y95{bottom:289.533333pt;}
.y1d{bottom:291.293333pt;}
.yc8{bottom:294.200000pt;}
.y51{bottom:303.293333pt;}
.y43{bottom:305.054667pt;}
.yef{bottom:306.813333pt;}
.y63{bottom:307.454667pt;}
.yb7{bottom:307.800000pt;}
.y7c{bottom:307.933333pt;}
.ya3{bottom:310.000000pt;}
.y94{bottom:310.654667pt;}
.y1c{bottom:312.413333pt;}
.y50{bottom:324.413333pt;}
.y42{bottom:326.173333pt;}
.yee{bottom:327.933333pt;}
.y62{bottom:328.574667pt;}
.yc7{bottom:331.400000pt;}
.y93{bottom:331.774667pt;}
.y1b{bottom:333.533333pt;}
.y4f{bottom:345.533333pt;}
.y41{bottom:347.454667pt;}
.yed{bottom:349.213333pt;}
.y61{bottom:349.693333pt;}
.y92{bottom:353.054667pt;}
.y1a{bottom:354.813333pt;}
.yb6{bottom:355.800000pt;}
.ya2{bottom:358.000000pt;}
.y4e{bottom:366.813333pt;}
.yad{bottom:367.933333pt;}
.y40{bottom:368.574667pt;}
.yec{bottom:370.333333pt;}
.y91{bottom:374.174667pt;}
.y60{bottom:376.893333pt;}
.yc6{bottom:379.400000pt;}
.y4d{bottom:387.933333pt;}
.y3f{bottom:389.693333pt;}
.yeb{bottom:391.454667pt;}
.y90{bottom:395.293333pt;}
.y19{bottom:396.413333pt;}
.y7b{bottom:398.013333pt;}
.yb5{bottom:403.800000pt;}
.ya0{bottom:406.000000pt;}
.y4c{bottom:409.054667pt;}
.y5f{bottom:409.374667pt;}
.y3e{bottom:410.813333pt;}
.yea{bottom:412.574667pt;}
.yac{bottom:416.093333pt;}
.y8f{bottom:416.413333pt;}
.y7a{bottom:419.133333pt;}
.yc5{bottom:427.400000pt;}
.y4b{bottom:430.333333pt;}
.y3d{bottom:431.933333pt;}
.ye9{bottom:433.854667pt;}
.yab{bottom:437.374667pt;}
.y8e{bottom:437.533333pt;}
.y5e{bottom:441.854667pt;}
.y18{bottom:444.733333pt;}
.y4a{bottom:451.454667pt;}
.yb3{bottom:451.800000pt;}
.y3c{bottom:453.213333pt;}
.ye8{bottom:454.973333pt;}
.yaa{bottom:458.493333pt;}
.y8d{bottom:458.813333pt;}
.y9f{bottom:459.774667pt;}
.y79{bottom:461.374667pt;}
.y17{bottom:465.854667pt;}
.y49{bottom:472.574667pt;}
.y3b{bottom:474.333333pt;}
.yc3{bottom:475.400000pt;}
.ye7{bottom:476.093333pt;}
.y9e{bottom:479.613333pt;}
.y8c{bottom:479.933333pt;}
.y16{bottom:488.093333pt;}
.y10c{bottom:493.693333pt;}
.ye6{bottom:497.213333pt;}
.y5d{bottom:500.733333pt;}
.y8b{bottom:501.054667pt;}
.y78{bottom:503.774667pt;}
.yb2{bottom:505.533333pt;}
.y10b{bottom:514.813333pt;}
.y3a{bottom:515.933333pt;}
.ye5{bottom:518.333333pt;}
.y5c{bottom:522.013333pt;}
.y8a{bottom:522.173333pt;}
.yb1{bottom:525.374667pt;}
.yc2{bottom:529.213333pt;}
.y15{bottom:531.774667pt;}
.y10a{bottom:536.093333pt;}
.ye4{bottom:539.613333pt;}
.y5b{bottom:543.133333pt;}
.y89{bottom:543.454667pt;}
.y77{bottom:546.013333pt;}
.yb0{bottom:546.493333pt;}
.yc1{bottom:549.054667pt;}
.y14{bottom:549.374667pt;}
.y109{bottom:557.213333pt;}
.ye3{bottom:560.733333pt;}
.y39{bottom:564.254667pt;}
.y88{bottom:564.574667pt;}
.y13{bottom:567.133333pt;}
.yaf{bottom:567.774667pt;}
.yc0{bottom:570.173333pt;}
.y108{bottom:578.333333pt;}
.ye2{bottom:581.854667pt;}
.y12{bottom:584.733333pt;}
.y38{bottom:585.373333pt;}
.y87{bottom:585.693333pt;}
.yae{bottom:588.893333pt;}
.ybf{bottom:591.293333pt;}
.y107{bottom:599.613333pt;}
.y11{bottom:602.333333pt;}
.ye1{bottom:603.133333pt;}
.y75{bottom:603.266667pt;}
.y37{bottom:606.654667pt;}
.y86{bottom:606.813333pt;}
.ybe{bottom:611.933333pt;}
.y10{bottom:619.933333pt;}
.y106{bottom:620.733333pt;}
.ye0{bottom:624.254667pt;}
.y36{bottom:627.774667pt;}
.y85{bottom:627.933333pt;}
.yf{bottom:637.533333pt;}
.y105{bottom:641.854667pt;}
.ydf{bottom:645.373333pt;}
.y35{bottom:648.893333pt;}
.y84{bottom:649.213333pt;}
.y74{bottom:652.666667pt;}
.ye{bottom:655.133333pt;}
.y104{bottom:662.973333pt;}
.yde{bottom:666.493333pt;}
.y34{bottom:670.013333pt;}
.y83{bottom:670.333333pt;}
.yd{bottom:672.893333pt;}
.y103{bottom:684.093333pt;}
.ydd{bottom:687.613333pt;}
.yc{bottom:690.493333pt;}
.y33{bottom:691.133333pt;}
.y73{bottom:700.666667pt;}
.y102{bottom:705.373333pt;}
.yb{bottom:708.093333pt;}
.ydc{bottom:708.893333pt;}
.y32{bottom:712.413333pt;}
.y101{bottom:726.493333pt;}
.ydb{bottom:730.013333pt;}
.y31{bottom:733.533333pt;}
.ya{bottom:747.293333pt;}
.y100{bottom:747.613333pt;}
.y72{bottom:748.666667pt;}
.yda{bottom:751.133333pt;}
.y30{bottom:754.654667pt;}
.yff{bottom:768.733333pt;}
.yd9{bottom:772.413333pt;}
.y2f{bottom:775.933333pt;}
.yfe{bottom:790.013333pt;}
.y9{bottom:790.333333pt;}
.yd8{bottom:793.533333pt;}
.y71{bottom:796.666667pt;}
.y2e{bottom:797.054667pt;}
.yfd{bottom:811.133333pt;}
.y8{bottom:811.454667pt;}
.yd7{bottom:814.654667pt;}
.y2d{bottom:818.173333pt;}
.yfc{bottom:832.254667pt;}
.y7{bottom:832.573333pt;}
.yd6{bottom:835.773333pt;}
.y2c{bottom:839.293333pt;}
.y70{bottom:844.666667pt;}
.yfb{bottom:853.373333pt;}
.yd5{bottom:856.893333pt;}
.y2b{bottom:860.413333pt;}
.y6{bottom:872.254667pt;}
.yfa{bottom:874.654667pt;}
.yd4{bottom:878.013333pt;}
.y2a{bottom:881.533333pt;}
.y6e{bottom:892.666667pt;}
.yf9{bottom:895.773333pt;}
.yd3{bottom:900.413333pt;}
.y29{bottom:902.813333pt;}
.y5{bottom:913.533333pt;}
.y28{bottom:923.933333pt;}
.y4{bottom:940.093333pt;}
.yf8{bottom:942.654667pt;}
.y27{bottom:945.054667pt;}
.y6d{bottom:946.333333pt;}
.y2{bottom:979.933333pt;}
.y1{bottom:1006.333333pt;}
.h6{height:36.872005pt;}
.hd{height:37.200000pt;}
.h1{height:37.772396pt;}
.ha{height:39.941146pt;}
.h2{height:40.586479pt;}
.h7{height:43.375000pt;}
.h4{height:44.468750pt;}
.hb{height:48.000000pt;}
.hc{height:49.400000pt;}
.h5{height:50.784896pt;}
.h9{height:54.323417pt;}
.h8{height:54.328750pt;}
.h3{height:57.652604pt;}
.h0{height:1056.000000pt;}
.w7{width:63.066667pt;}
.w8{width:83.066667pt;}
.w6{width:85.066667pt;}
.w3{width:106.066667pt;}
.w5{width:154.066667pt;}
.w1{width:158.400000pt;}
.wa{width:205.066667pt;}
.w9{width:221.066667pt;}
.w2{width:317.400000pt;}
.w4{width:395.066667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.693333pt;}
.x17{left:7.853333pt;}
.x15{left:18.506667pt;}
.x1a{left:20.173333pt;}
.x11{left:22.506667pt;}
.x13{left:31.466667pt;}
.x18{left:36.812000pt;}
.xe{left:39.145333pt;}
.x19{left:49.866667pt;}
.x14{left:65.773333pt;}
.x16{left:69.933333pt;}
.x10{left:94.253333pt;}
.x3{left:96.000000pt;}
.x12{left:105.293333pt;}
.x9{left:120.000000pt;}
.xb{left:144.000000pt;}
.x1{left:154.720000pt;}
.x2{left:157.120000pt;}
.x6{left:161.600000pt;}
.xd{left:170.133333pt;}
.x7{left:181.600000pt;}
.x5{left:186.078667pt;}
.x24{left:195.000000pt;}
.x1f{left:215.466667pt;}
.x1d{left:263.466667pt;}
.x4{left:294.240000pt;}
.xa{left:297.120000pt;}
.x8{left:302.720000pt;}
.x23{left:312.000000pt;}
.x1b{left:318.078667pt;}
.xf{left:328.466667pt;}
.x1e{left:333.920000pt;}
.x20{left:369.466667pt;}
.xc{left:384.478667pt;}
.x25{left:416.000000pt;}
.x21{left:454.466667pt;}
.x22{left:517.466667pt;}
}




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