
    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_ec1a5a4e8fbe8caf6951098e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_bfa97beec1ba85979157765c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_3c04e1a711aeebd5d6cf090c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_1445d95cf146e1ed0f8c0411.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_442d6789d8fa8ec05d3cbf2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.002725px;}
.lse{letter-spacing:0.834017px;}
.lsb{letter-spacing:2.371909px;}
.ls9{letter-spacing:2.387660px;}
.lsd{letter-spacing:2.387740px;}
.lsa{letter-spacing:2.391030px;}
.lsc{letter-spacing:2.393740px;}
.ls0{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.983492px;}
.lsf{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988017px;}
.ls8{letter-spacing:2.988780px;}
.ls7{letter-spacing:2.993108px;}
.ls4{letter-spacing:35.863409px;}
.ls1{letter-spacing:35.869409px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws1b{word-spacing:-14.920027px;}
.ws19{word-spacing:-13.449600px;}
.wsa6{word-spacing:-11.955150px;}
.wsa3{word-spacing:-11.936059px;}
.wsa4{word-spacing:-9.564150px;}
.wsa2{word-spacing:-2.396257px;}
.wsa1{word-spacing:-2.394643px;}
.ws1f{word-spacing:-1.016185px;}
.wsd1{word-spacing:-0.908591px;}
.ws95{word-spacing:-0.896634px;}
.ws93{word-spacing:-0.879908px;}
.ws94{word-spacing:-0.879350px;}
.ws43{word-spacing:-0.836858px;}
.wsd{word-spacing:-0.537984px;}
.wsfd{word-spacing:-0.430385px;}
.ws84{word-spacing:-0.179327px;}
.ws73{word-spacing:-0.143462px;}
.ws102{word-spacing:-0.095641px;}
.ws5{word-spacing:-0.053798px;}
.ws46{word-spacing:0.000000px;}
.ws107{word-spacing:0.143462px;}
.ws88{word-spacing:0.239103px;}
.ws26{word-spacing:0.597756px;}
.wsfa{word-spacing:0.717309px;}
.wsb{word-spacing:0.806976px;}
.wsff{word-spacing:0.908591px;}
.wsda{word-spacing:1.195512px;}
.ws27{word-spacing:1.315063px;}
.wse7{word-spacing:1.434614px;}
.ws78{word-spacing:1.434618px;}
.ws9c{word-spacing:1.494390px;}
.wsf3{word-spacing:1.625900px;}
.wsfb{word-spacing:1.673721px;}
.ws6b{word-spacing:1.733492px;}
.ws47{word-spacing:1.793268px;}
.wscb{word-spacing:1.865003px;}
.wsfe{word-spacing:1.960645px;}
.wsc7{word-spacing:2.008465px;}
.wsdb{word-spacing:2.211697px;}
.ws72{word-spacing:2.331248px;}
.ws4e{word-spacing:2.450800px;}
.wsf2{word-spacing:2.486671px;}
.ws39{word-spacing:2.510575px;}
.ws25{word-spacing:2.630126px;}
.ws8e{word-spacing:2.689902px;}
.ws21{word-spacing:2.988780px;}
.ws68{word-spacing:3.048556px;}
.ws85{word-spacing:3.108331px;}
.ws66{word-spacing:3.526760px;}
.ws7b{word-spacing:3.586536px;}
.ws3e{word-spacing:3.706087px;}
.ws103{word-spacing:3.730007px;}
.ws37{word-spacing:3.765863px;}
.ws108{word-spacing:3.969110px;}
.wse6{word-spacing:4.064741px;}
.wsd7{word-spacing:4.184292px;}
.ws90{word-spacing:4.363619px;}
.ws91{word-spacing:4.381436px;}
.ws67{word-spacing:4.423394px;}
.wsc8{word-spacing:4.447316px;}
.ws30{word-spacing:4.542946px;}
.wsf0{word-spacing:4.542957px;}
.wsa5{word-spacing:4.705562px;}
.wsa0{word-spacing:4.742861px;}
.ws2c{word-spacing:4.782048px;}
.ws29{word-spacing:4.782060px;}
.ws7a{word-spacing:4.961375px;}
.ws8f{word-spacing:5.140702px;}
.ws28{word-spacing:5.200477px;}
.ws100{word-spacing:5.212445px;}
.ws76{word-spacing:5.308087px;}
.wsf8{word-spacing:5.355907px;}
.ws97{word-spacing:5.379804px;}
.ws98{word-spacing:5.393924px;}
.ws96{word-spacing:5.394575px;}
.ws24{word-spacing:5.439580px;}
.wsd4{word-spacing:5.451548px;}
.ws9d{word-spacing:5.559131px;}
.wsef{word-spacing:5.642831px;}
.ws36{word-spacing:5.678682px;}
.wsb1{word-spacing:5.690651px;}
.wsee{word-spacing:5.834113px;}
.ws4f{word-spacing:5.917113px;}
.ws50{word-spacing:5.943803px;}
.ws51{word-spacing:5.961718px;}
.ws2{word-spacing:5.977560px;}
.wsae{word-spacing:6.073216px;}
.ws2e{word-spacing:6.156887px;}
.wse2{word-spacing:6.276438px;}
.wseb{word-spacing:6.312319px;}
.ws41{word-spacing:6.336214px;}
.wsdf{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws1e{word-spacing:6.694867px;}
.ws16{word-spacing:6.724800px;}
.ws59{word-spacing:6.754643px;}
.ws87{word-spacing:6.790525px;}
.ws8b{word-spacing:6.814418px;}
.ws75{word-spacing:6.838346px;}
.wsd6{word-spacing:6.993745px;}
.ws7d{word-spacing:7.173072px;}
.wscf{word-spacing:7.220911px;}
.ws45{word-spacing:7.352399px;}
.wsb0{word-spacing:7.364372px;}
.wsb2{word-spacing:7.651296px;}
.wsdc{word-spacing:7.711052px;}
.wsf9{word-spacing:7.938220px;}
.wsb4{word-spacing:8.081681px;}
.ws23{word-spacing:8.129482px;}
.ws86{word-spacing:8.177323px;}
.wsec{word-spacing:8.368605px;}
.wscd{word-spacing:8.416426px;}
.wse0{word-spacing:8.428360px;}
.wsd0{word-spacing:8.607708px;}
.ws11{word-spacing:8.769139px;}
.ws6f{word-spacing:8.846789px;}
.ws48{word-spacing:8.966340px;}
.wsd3{word-spacing:8.990273px;}
.ws9b{word-spacing:9.205442px;}
.wsdd{word-spacing:9.324994px;}
.wse8{word-spacing:9.564120px;}
.ws18{word-spacing:9.737510px;}
.ws2f{word-spacing:9.743423px;}
.ws38{word-spacing:9.803198px;}
.wsac{word-spacing:9.851044px;}
.ws22{word-spacing:9.982525px;}
.wsf5{word-spacing:9.994505px;}
.wsc{word-spacing:10.114099px;}
.ws12{word-spacing:10.167898px;}
.ws9f{word-spacing:10.221628px;}
.wsde{word-spacing:10.281403px;}
.ws35{word-spacing:10.400954px;}
.wse4{word-spacing:10.520506px;}
.wsf6{word-spacing:10.616173px;}
.ws3f{word-spacing:10.640057px;}
.wsf1{word-spacing:10.663994px;}
.ws69{word-spacing:10.699832px;}
.wsa{word-spacing:10.974874px;}
.ws82{word-spacing:10.998710px;}
.ws9a{word-spacing:11.118262px;}
.ws2a{word-spacing:11.297588px;}
.wse{word-spacing:11.351462px;}
.ws81{word-spacing:11.357364px;}
.ws83{word-spacing:11.536691px;}
.ws74{word-spacing:11.763868px;}
.ws6d{word-spacing:11.775793px;}
.ws6e{word-spacing:11.955120px;}
.ws3b{word-spacing:12.074671px;}
.ws33{word-spacing:12.134447px;}
.ws44{word-spacing:12.194222px;}
.ws2b{word-spacing:12.313774px;}
.ws92{word-spacing:12.373549px;}
.wsce{word-spacing:12.481177px;}
.ws4c{word-spacing:12.672427px;}
.ws2d{word-spacing:12.791978px;}
.ws8c{word-spacing:13.031081px;}
.wsd5{word-spacing:13.090856px;}
.wsd8{word-spacing:13.150632px;}
.ws7e{word-spacing:13.329959px;}
.ws79{word-spacing:13.341947px;}
.ws13{word-spacing:13.342003px;}
.ws99{word-spacing:13.509286px;}
.ws8{word-spacing:13.557197px;}
.ws71{word-spacing:13.987490px;}
.ws32{word-spacing:14.047266px;}
.ws0{word-spacing:14.346180px;}
.ws7f{word-spacing:14.405920px;}
.wsaf{word-spacing:14.489642px;}
.wse3{word-spacing:14.525471px;}
.wsf7{word-spacing:14.633104px;}
.ws62{word-spacing:14.645022px;}
.ws6a{word-spacing:14.704798px;}
.ws34{word-spacing:14.824349px;}
.wse5{word-spacing:14.884124px;}
.ws106{word-spacing:14.920027px;}
.ws20{word-spacing:15.003676px;}
.wsd9{word-spacing:15.123227px;}
.ws9e{word-spacing:15.183002px;}
.ws3d{word-spacing:15.422105px;}
.ws70{word-spacing:15.601432px;}
.wsed{word-spacing:15.637336px;}
.wsfc{word-spacing:15.685157px;}
.ws1d{word-spacing:15.720983px;}
.ws89{word-spacing:15.780758px;}
.ws61{word-spacing:15.840534px;}
.ws65{word-spacing:15.900310px;}
.ws8d{word-spacing:16.019861px;}
.wsad{word-spacing:16.067722px;}
.wsf{word-spacing:16.085722px;}
.ws7{word-spacing:16.139520px;}
.ws109{word-spacing:16.354645px;}
.ws49{word-spacing:16.617617px;}
.ws8a{word-spacing:16.677392px;}
.ws4d{word-spacing:16.737168px;}
.wsa8{word-spacing:16.832851px;}
.wscc{word-spacing:16.880672px;}
.wsf4{word-spacing:17.167595px;}
.ws77{word-spacing:17.215416px;}
.ws58{word-spacing:17.394700px;}
.ws42{word-spacing:17.574026px;}
.ws3a{word-spacing:17.633802px;}
.wsb3{word-spacing:17.789263px;}
.wsa7{word-spacing:17.884904px;}
.ws1a{word-spacing:17.932680px;}
.ws104{word-spacing:17.932725px;}
.ws7c{word-spacing:18.649987px;}
.ws10{word-spacing:18.775642px;}
.ws4b{word-spacing:18.948865px;}
.wse1{word-spacing:19.128192px;}
.ws6c{word-spacing:19.187968px;}
.ws6{word-spacing:19.475021px;}
.ws5c{word-spacing:19.606397px;}
.ws9{word-spacing:20.120602px;}
.ws63{word-spacing:20.144377px;}
.ws80{word-spacing:20.204153px;}
.ws57{word-spacing:20.383480px;}
.wsb7{word-spacing:20.754140px;}
.ws56{word-spacing:20.801909px;}
.ws4{word-spacing:20.861684px;}
.ws31{word-spacing:21.041011px;}
.wsb5{word-spacing:21.088885px;}
.ws52{word-spacing:21.638767px;}
.ws3c{word-spacing:21.818094px;}
.wsca{word-spacing:22.093117px;}
.wsc6{word-spacing:22.523503px;}
.ws15{word-spacing:22.541530px;}
.ws14{word-spacing:22.702925px;}
.ws17{word-spacing:23.187110px;}
.wsc9{word-spacing:23.910300px;}
.wsd2{word-spacing:24.771071px;}
.wsc1{word-spacing:25.823124px;}
.ws40{word-spacing:26.002386px;}
.ws5d{word-spacing:26.181713px;}
.wsab{word-spacing:27.401204px;}
.ws4a{word-spacing:27.676103px;}
.wsbd{word-spacing:28.740181px;}
.wse9{word-spacing:29.696593px;}
.ws5b{word-spacing:29.708473px;}
.ws5f{word-spacing:30.186678px;}
.ws1c{word-spacing:30.306229px;}
.ws60{word-spacing:30.425780px;}
.ws5a{word-spacing:30.664883px;}
.ws5e{word-spacing:32.398375px;}
.wsb6{word-spacing:35.339423px;}
.ws53{word-spacing:38.482513px;}
.ws54{word-spacing:38.495486px;}
.wsc3{word-spacing:38.830327px;}
.ws55{word-spacing:40.109428px;}
.wsbe{word-spacing:40.743151px;}
.wsbf{word-spacing:45.477391px;}
.wsb9{word-spacing:45.668673px;}
.wsba{word-spacing:47.677138px;}
.ws105{word-spacing:48.203165px;}
.wsea{word-spacing:48.681371px;}
.wsb8{word-spacing:51.980992px;}
.wsbc{word-spacing:52.650481px;}
.ws64{word-spacing:54.754450px;}
.wsc2{word-spacing:58.914979px;}
.wsa9{word-spacing:60.588700px;}
.wsc0{word-spacing:76.560781px;}
.wsc4{word-spacing:85.359771px;}
.wsc5{word-spacing:86.746568px;}
.wsaa{word-spacing:99.945054px;}
.wsbb{word-spacing:164.407223px;}
.ws101{word-spacing:185.735210px;}
._1{margin-left:-10.616173px;}
._4{margin-left:-7.471931px;}
._6{margin-left:-5.308121px;}
._2{margin-left:-4.303854px;}
._3{margin-left:-2.630136px;}
._0{margin-left:-1.434618px;}
._12{width:1.716782px;}
._7{width:2.988780px;}
._5{width:11.883443px;}
._18{width:15.123227px;}
._f{width:17.514251px;}
._9{width:20.263928px;}
._19{width:21.280117px;}
._8{width:24.328673px;}
._11{width:26.301264px;}
._e{width:28.632516px;}
._a{width:30.664883px;}
._c{width:33.354794px;}
._16{width:38.782510px;}
._10{width:40.312766px;}
._d{width:44.592601px;}
._b{width:60.373356px;}
._15{width:87.887975px;}
._17{width:212.759473px;}
._14{width:233.262673px;}
._13{width:317.071727px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2e{bottom:113.332500px;}
.y4e{bottom:131.265000px;}
.y98{bottom:131.266500px;}
.y2d{bottom:148.264500px;}
.y7e{bottom:149.197500px;}
.y4d{bottom:149.199000px;}
.yef{bottom:153.888000px;}
.y2c{bottom:166.197000px;}
.y4c{bottom:167.131500px;}
.yee{bottom:181.803000px;}
.y2b{bottom:184.129500px;}
.y97{bottom:184.854000px;}
.y4b{bottom:185.064000px;}
.yed{bottom:199.735500px;}
.y2a{bottom:202.063500px;}
.y96{bottom:202.786500px;}
.y4a{bottom:202.996500px;}
.yec{bottom:217.668000px;}
.y29{bottom:219.996000px;}
.y95{bottom:220.719000px;}
.y49{bottom:220.929000px;}
.yeb{bottom:235.600500px;}
.y28{bottom:237.928500px;}
.y94{bottom:238.651500px;}
.y48{bottom:238.861500px;}
.yea{bottom:253.533000px;}
.y27{bottom:255.861000px;}
.y93{bottom:256.584000px;}
.y7d{bottom:256.795500px;}
.y47{bottom:257.940000px;}
.y127{bottom:269.349000px;}
.ye9{bottom:271.465500px;}
.y26{bottom:273.793500px;}
.y92{bottom:274.518000px;}
.y7c{bottom:274.728000px;}
.y46{bottom:275.872500px;}
.y126{bottom:282.798000px;}
.ye8{bottom:289.399500px;}
.y25{bottom:291.726000px;}
.y91{bottom:292.450500px;}
.y7b{bottom:292.660500px;}
.yb4{bottom:293.197500px;}
.y45{bottom:293.805000px;}
.y125{bottom:296.247000px;}
.ye7{bottom:307.332000px;}
.y24{bottom:309.660000px;}
.y124{bottom:309.697500px;}
.y90{bottom:310.383000px;}
.y7a{bottom:310.593000px;}
.yb3{bottom:311.130000px;}
.y44{bottom:311.737500px;}
.y123{bottom:323.146500px;}
.ye6{bottom:325.264500px;}
.y23{bottom:327.592500px;}
.y8f{bottom:328.315500px;}
.y79{bottom:328.525500px;}
.yb2{bottom:329.064000px;}
.y43{bottom:329.670000px;}
.y122{bottom:336.597000px;}
.ye5{bottom:343.197000px;}
.y22{bottom:345.525000px;}
.y8e{bottom:346.248000px;}
.y78{bottom:346.660500px;}
.yb1{bottom:346.996500px;}
.y42{bottom:347.604000px;}
.y121{bottom:350.046000px;}
.ye4{bottom:361.129500px;}
.y21{bottom:363.457500px;}
.y120{bottom:363.495000px;}
.y8d{bottom:364.180500px;}
.y77{bottom:364.594500px;}
.yb0{bottom:364.929000px;}
.y41{bottom:364.963500px;}
.y11f{bottom:376.945500px;}
.ye3{bottom:379.063500px;}
.y8c{bottom:382.114500px;}
.y76{bottom:382.527000px;}
.yaf{bottom:382.861500px;}
.y40{bottom:382.896000px;}
.y11e{bottom:390.394500px;}
.y20{bottom:393.007500px;}
.ye2{bottom:396.996000px;}
.y8b{bottom:400.047000px;}
.y75{bottom:400.459500px;}
.yae{bottom:400.794000px;}
.y3f{bottom:400.828500px;}
.y11d{bottom:403.843500px;}
.ye1{bottom:414.928500px;}
.y11c{bottom:417.294000px;}
.y8a{bottom:417.979500px;}
.y74{bottom:418.392000px;}
.yad{bottom:418.726500px;}
.y3e{bottom:418.762500px;}
.y11b{bottom:430.743000px;}
.ye0{bottom:432.861000px;}
.y1f{bottom:434.971500px;}
.y89{bottom:435.912000px;}
.y73{bottom:436.324500px;}
.yac{bottom:436.660500px;}
.y3d{bottom:436.695000px;}
.y11a{bottom:444.192000px;}
.y1e{bottom:449.914500px;}
.ydf{bottom:450.793500px;}
.y72{bottom:454.257000px;}
.y3c{bottom:454.627500px;}
.y119{bottom:457.642500px;}
.y88{bottom:458.341500px;}
.yab{bottom:462.525000px;}
.y1d{bottom:466.011000px;}
.yde{bottom:468.726000px;}
.y118{bottom:471.091500px;}
.y71{bottom:472.191000px;}
.y3b{bottom:472.560000px;}
.y1c{bottom:480.954000px;}
.y117{bottom:484.542000px;}
.y87{bottom:485.100000px;}
.ydd{bottom:486.660000px;}
.y70{bottom:490.123500px;}
.y3a{bottom:490.492500px;}
.yaa{bottom:495.112500px;}
.y1b{bottom:495.898500px;}
.y116{bottom:497.991000px;}
.y86{bottom:503.032500px;}
.ydc{bottom:504.574500px;}
.y6f{bottom:508.056000px;}
.y39{bottom:508.426500px;}
.y1a{bottom:510.843000px;}
.y115{bottom:511.440000px;}
.ya9{bottom:513.045000px;}
.y85{bottom:520.965000px;}
.ydb{bottom:522.507000px;}
.y114{bottom:524.890500px;}
.y19{bottom:525.786000px;}
.y6e{bottom:525.988500px;}
.y38{bottom:526.359000px;}
.ya8{bottom:530.977500px;}
.y113{bottom:538.339500px;}
.y18{bottom:540.730500px;}
.y6d{bottom:543.921000px;}
.y37{bottom:544.291500px;}
.ya7{bottom:548.910000px;}
.y112{bottom:551.788500px;}
.y17{bottom:555.675000px;}
.y6c{bottom:561.853500px;}
.y36{bottom:562.224000px;}
.y111{bottom:565.239000px;}
.ya6{bottom:566.844000px;}
.y84{bottom:567.037500px;}
.y16{bottom:570.618000px;}
.y110{bottom:578.688000px;}
.y6b{bottom:579.787500px;}
.y35{bottom:580.156500px;}
.y83{bottom:580.488000px;}
.yda{bottom:581.647500px;}
.ya5{bottom:584.776500px;}
.y15{bottom:585.562500px;}
.y10f{bottom:592.138500px;}
.y82{bottom:593.937000px;}
.yd9{bottom:595.096500px;}
.y6a{bottom:597.720000px;}
.y34{bottom:598.089000px;}
.y14{bottom:600.505500px;}
.ya4{bottom:602.709000px;}
.y10e{bottom:605.587500px;}
.y81{bottom:607.386000px;}
.yd8{bottom:608.547000px;}
.y13{bottom:615.450000px;}
.y69{bottom:615.652500px;}
.y33{bottom:616.023000px;}
.y10d{bottom:619.036500px;}
.ya3{bottom:620.641500px;}
.y80{bottom:620.836500px;}
.yd7{bottom:621.996000px;}
.y12{bottom:630.394500px;}
.y10c{bottom:632.487000px;}
.y68{bottom:633.585000px;}
.y32{bottom:633.955500px;}
.y7f{bottom:634.285500px;}
.yd6{bottom:635.445000px;}
.ya2{bottom:638.574000px;}
.y11{bottom:645.337500px;}
.y10b{bottom:645.936000px;}
.yd5{bottom:648.895500px;}
.y67{bottom:651.517500px;}
.y31{bottom:651.888000px;}
.ya1{bottom:656.506500px;}
.y10a{bottom:659.385000px;}
.y10{bottom:660.282000px;}
.yd4{bottom:662.344500px;}
.y66{bottom:669.450000px;}
.y30{bottom:669.820500px;}
.y109{bottom:672.835500px;}
.ya0{bottom:674.977500px;}
.yf{bottom:675.226500px;}
.yd3{bottom:675.793500px;}
.y108{bottom:686.284500px;}
.y2f{bottom:687.181500px;}
.y65{bottom:687.384000px;}
.yd2{bottom:689.841000px;}
.ye{bottom:690.169500px;}
.y9f{bottom:692.910000px;}
.y107{bottom:699.735000px;}
.yd1{bottom:703.291500px;}
.yd{bottom:705.114000px;}
.y64{bottom:705.316500px;}
.y9e{bottom:710.842500px;}
.y106{bottom:713.184000px;}
.yd0{bottom:716.740500px;}
.y63{bottom:723.249000px;}
.y105{bottom:726.633000px;}
.y9d{bottom:728.775000px;}
.ycf{bottom:730.189500px;}
.y104{bottom:740.083500px;}
.y62{bottom:741.181500px;}
.yce{bottom:743.640000px;}
.y103{bottom:753.532500px;}
.ycd{bottom:757.089000px;}
.y61{bottom:759.114000px;}
.y102{bottom:766.981500px;}
.ycc{bottom:770.539500px;}
.y60{bottom:777.048000px;}
.y9c{bottom:778.525500px;}
.y101{bottom:780.432000px;}
.yc{bottom:782.992500px;}
.ycb{bottom:783.988500px;}
.y9b{bottom:791.974500px;}
.y100{bottom:793.881000px;}
.y5f{bottom:794.980500px;}
.yca{bottom:797.437500px;}
.yb{bottom:801.486000px;}
.y9a{bottom:805.425000px;}
.yff{bottom:807.331500px;}
.yc9{bottom:810.888000px;}
.y5e{bottom:812.913000px;}
.y99{bottom:818.874000px;}
.ya{bottom:819.979500px;}
.yfe{bottom:820.780500px;}
.yc8{bottom:824.935500px;}
.yfd{bottom:834.229500px;}
.y5d{bottom:836.767500px;}
.yc7{bottom:838.384500px;}
.y9{bottom:838.473000px;}
.yfc{bottom:847.680000px;}
.yc6{bottom:851.833500px;}
.y8{bottom:857.187000px;}
.yfb{bottom:861.129000px;}
.yc5{bottom:865.284000px;}
.y5c{bottom:866.508000px;}
.yfa{bottom:874.578000px;}
.yc4{bottom:878.733000px;}
.y5b{bottom:884.442000px;}
.yf9{bottom:888.028500px;}
.yc3{bottom:892.182000px;}
.y7{bottom:894.691500px;}
.yf8{bottom:901.477500px;}
.y5a{bottom:902.374500px;}
.yc2{bottom:905.632500px;}
.y6{bottom:913.185000px;}
.yf7{bottom:914.926500px;}
.yc1{bottom:919.680000px;}
.y59{bottom:920.307000px;}
.yf6{bottom:928.377000px;}
.y5{bottom:931.677000px;}
.yc0{bottom:933.129000px;}
.y58{bottom:938.239500px;}
.yf5{bottom:941.826000px;}
.ybf{bottom:946.578000px;}
.y4{bottom:950.392500px;}
.yf4{bottom:955.276500px;}
.y57{bottom:956.172000px;}
.ybe{bottom:960.028500px;}
.yf3{bottom:968.725500px;}
.ybd{bottom:974.076000px;}
.y56{bottom:974.104500px;}
.yf2{bottom:982.174500px;}
.ybc{bottom:987.525000px;}
.y55{bottom:992.038500px;}
.yf1{bottom:995.625000px;}
.y3{bottom:997.465500px;}
.ybb{bottom:1000.974000px;}
.y54{bottom:1009.971000px;}
.yba{bottom:1014.424500px;}
.yf0{bottom:1017.816000px;}
.yb9{bottom:1027.873500px;}
.y53{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.yb8{bottom:1044.910500px;}
.y52{bottom:1045.836000px;}
.y51{bottom:1063.768500px;}
.yb7{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y50{bottom:1081.701000px;}
.yb6{bottom:1086.184500px;}
.yb5{bottom:1099.633500px;}
.y4f{bottom:1099.635000px;}
.h7{height:32.900573px;}
.ha{height:33.140573px;}
.h9{height:33.426599px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h8{height:41.484266px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:73.446000px;}
.x2c{left:79.423500px;}
.x1e{left:85.401000px;}
.x2{left:86.485500px;}
.x1c{left:88.390500px;}
.x2d{left:100.834500px;}
.x22{left:103.479000px;}
.x1{left:109.923000px;}
.x12{left:113.757000px;}
.x11{left:118.053000px;}
.x10{left:135.048000px;}
.x6{left:139.309500px;}
.x23{left:140.455500px;}
.x2e{left:148.093500px;}
.x7{left:169.437000px;}
.x4{left:180.159000px;}
.x5{left:201.954000px;}
.x1d{left:203.428500px;}
.x24{left:207.576000px;}
.x3{left:214.525500px;}
.x2b{left:219.897000px;}
.x16{left:373.569000px;}
.xa{left:374.802000px;}
.x17{left:397.473000px;}
.x8{left:404.680500px;}
.x14{left:406.201500px;}
.xb{left:407.290500px;}
.x15{left:433.599000px;}
.x9{left:437.446500px;}
.x1f{left:467.967000px;}
.x28{left:476.988000px;}
.x20{left:482.910000px;}
.x26{left:488.119500px;}
.x21{left:498.000000px;}
.x29{left:581.322000px;}
.x27{left:586.795500px;}
.x1a{left:609.061500px;}
.xf{left:610.294500px;}
.xd{left:615.868500px;}
.x25{left:633.474000px;}
.x1b{left:647.071500px;}
.x18{left:650.364000px;}
.xe{left:661.051500px;}
.x19{left:671.707500px;}
.xc{left:680.131500px;}
.x2a{left:707.254500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.002422pt;}
.lse{letter-spacing:0.741348pt;}
.lsb{letter-spacing:2.108364pt;}
.ls9{letter-spacing:2.122364pt;}
.lsd{letter-spacing:2.122436pt;}
.lsa{letter-spacing:2.125360pt;}
.lsc{letter-spacing:2.127769pt;}
.ls0{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.651993pt;}
.lsf{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656015pt;}
.ls8{letter-spacing:2.656693pt;}
.ls7{letter-spacing:2.660541pt;}
.ls4{letter-spacing:31.878586pt;}
.ls1{letter-spacing:31.883919pt;}
.ws3{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-13.262246pt;}
.ws19{word-spacing:-11.955200pt;}
.wsa6{word-spacing:-10.626800pt;}
.wsa3{word-spacing:-10.609830pt;}
.wsa4{word-spacing:-8.501467pt;}
.wsa2{word-spacing:-2.130006pt;}
.wsa1{word-spacing:-2.128572pt;}
.ws1f{word-spacing:-0.903276pt;}
.wsd1{word-spacing:-0.807637pt;}
.ws95{word-spacing:-0.797008pt;}
.ws93{word-spacing:-0.782141pt;}
.ws94{word-spacing:-0.781645pt;}
.ws43{word-spacing:-0.743874pt;}
.wsd{word-spacing:-0.478208pt;}
.wsfd{word-spacing:-0.382565pt;}
.ws84{word-spacing:-0.159402pt;}
.ws73{word-spacing:-0.127522pt;}
.ws102{word-spacing:-0.085014pt;}
.ws5{word-spacing:-0.047821pt;}
.ws46{word-spacing:0.000000pt;}
.ws107{word-spacing:0.127522pt;}
.ws88{word-spacing:0.212536pt;}
.ws26{word-spacing:0.531339pt;}
.wsfa{word-spacing:0.637608pt;}
.wsb{word-spacing:0.717312pt;}
.wsff{word-spacing:0.807637pt;}
.wsda{word-spacing:1.062677pt;}
.ws27{word-spacing:1.168945pt;}
.wse7{word-spacing:1.275213pt;}
.ws78{word-spacing:1.275216pt;}
.ws9c{word-spacing:1.328347pt;}
.wsf3{word-spacing:1.445245pt;}
.wsfb{word-spacing:1.487752pt;}
.ws6b{word-spacing:1.540882pt;}
.ws47{word-spacing:1.594016pt;}
.wscb{word-spacing:1.657781pt;}
.wsfe{word-spacing:1.742795pt;}
.wsc7{word-spacing:1.785302pt;}
.wsdb{word-spacing:1.965953pt;}
.ws72{word-spacing:2.072221pt;}
.ws4e{word-spacing:2.178489pt;}
.wsf2{word-spacing:2.210374pt;}
.ws39{word-spacing:2.231622pt;}
.ws25{word-spacing:2.337890pt;}
.ws8e{word-spacing:2.391024pt;}
.ws21{word-spacing:2.656693pt;}
.ws68{word-spacing:2.709827pt;}
.ws85{word-spacing:2.762961pt;}
.ws66{word-spacing:3.134898pt;}
.ws7b{word-spacing:3.188032pt;}
.ws3e{word-spacing:3.294300pt;}
.ws103{word-spacing:3.315562pt;}
.ws37{word-spacing:3.347434pt;}
.ws108{word-spacing:3.528098pt;}
.wse6{word-spacing:3.613103pt;}
.wsd7{word-spacing:3.719371pt;}
.ws90{word-spacing:3.878772pt;}
.ws91{word-spacing:3.894610pt;}
.ws67{word-spacing:3.931906pt;}
.wsc8{word-spacing:3.953170pt;}
.ws30{word-spacing:4.038174pt;}
.wsf0{word-spacing:4.038184pt;}
.wsa5{word-spacing:4.182722pt;}
.wsa0{word-spacing:4.215877pt;}
.ws2c{word-spacing:4.250709pt;}
.ws29{word-spacing:4.250720pt;}
.ws7a{word-spacing:4.410111pt;}
.ws8f{word-spacing:4.569513pt;}
.ws28{word-spacing:4.622646pt;}
.ws100{word-spacing:4.633285pt;}
.ws76{word-spacing:4.718299pt;}
.wsf8{word-spacing:4.760806pt;}
.ws97{word-spacing:4.782048pt;}
.ws98{word-spacing:4.794599pt;}
.ws96{word-spacing:4.795178pt;}
.ws24{word-spacing:4.835182pt;}
.wsd4{word-spacing:4.845821pt;}
.ws9d{word-spacing:4.941450pt;}
.wsef{word-spacing:5.015850pt;}
.ws36{word-spacing:5.047717pt;}
.wsb1{word-spacing:5.058357pt;}
.wsee{word-spacing:5.185878pt;}
.ws4f{word-spacing:5.259656pt;}
.ws50{word-spacing:5.283380pt;}
.ws51{word-spacing:5.299305pt;}
.ws2{word-spacing:5.313387pt;}
.wsae{word-spacing:5.398414pt;}
.ws2e{word-spacing:5.472788pt;}
.wse2{word-spacing:5.579056pt;}
.wseb{word-spacing:5.610950pt;}
.ws41{word-spacing:5.632190pt;}
.wsdf{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws1e{word-spacing:5.950993pt;}
.ws16{word-spacing:5.977600pt;}
.ws59{word-spacing:6.004127pt;}
.ws87{word-spacing:6.036022pt;}
.ws8b{word-spacing:6.057261pt;}
.ws75{word-spacing:6.078530pt;}
.wsd6{word-spacing:6.216662pt;}
.ws7d{word-spacing:6.376064pt;}
.wscf{word-spacing:6.418587pt;}
.ws45{word-spacing:6.535466pt;}
.wsb0{word-spacing:6.546109pt;}
.wsb2{word-spacing:6.801152pt;}
.wsdc{word-spacing:6.854269pt;}
.wsf9{word-spacing:7.056195pt;}
.wsb4{word-spacing:7.183717pt;}
.ws23{word-spacing:7.226206pt;}
.ws86{word-spacing:7.268731pt;}
.wsec{word-spacing:7.438760pt;}
.wscd{word-spacing:7.481267pt;}
.wse0{word-spacing:7.491875pt;}
.wsd0{word-spacing:7.651296pt;}
.ws11{word-spacing:7.794790pt;}
.ws6f{word-spacing:7.863812pt;}
.ws48{word-spacing:7.970080pt;}
.wsd3{word-spacing:7.991354pt;}
.ws9b{word-spacing:8.182615pt;}
.wsdd{word-spacing:8.288883pt;}
.wse8{word-spacing:8.501440pt;}
.ws18{word-spacing:8.655565pt;}
.ws2f{word-spacing:8.660820pt;}
.ws38{word-spacing:8.713954pt;}
.wsac{word-spacing:8.756483pt;}
.ws22{word-spacing:8.873356pt;}
.wsf5{word-spacing:8.884005pt;}
.wsc{word-spacing:8.990310pt;}
.ws12{word-spacing:9.038131pt;}
.ws9f{word-spacing:9.085891pt;}
.wsde{word-spacing:9.139025pt;}
.ws35{word-spacing:9.245293pt;}
.wse4{word-spacing:9.351561pt;}
.wsf6{word-spacing:9.436598pt;}
.ws3f{word-spacing:9.457828pt;}
.wsf1{word-spacing:9.479106pt;}
.ws69{word-spacing:9.510962pt;}
.wsa{word-spacing:9.755443pt;}
.ws82{word-spacing:9.776631pt;}
.ws9a{word-spacing:9.882899pt;}
.ws2a{word-spacing:10.042301pt;}
.wse{word-spacing:10.090189pt;}
.ws81{word-spacing:10.095435pt;}
.ws83{word-spacing:10.254836pt;}
.ws74{word-spacing:10.456771pt;}
.ws6d{word-spacing:10.467372pt;}
.ws6e{word-spacing:10.626773pt;}
.ws3b{word-spacing:10.733041pt;}
.ws33{word-spacing:10.786175pt;}
.ws44{word-spacing:10.839309pt;}
.ws2b{word-spacing:10.945577pt;}
.ws92{word-spacing:10.998710pt;}
.wsce{word-spacing:11.094379pt;}
.ws4c{word-spacing:11.264380pt;}
.ws2d{word-spacing:11.370647pt;}
.ws8c{word-spacing:11.583183pt;}
.wsd5{word-spacing:11.636317pt;}
.wsd8{word-spacing:11.689451pt;}
.ws7e{word-spacing:11.848852pt;}
.ws79{word-spacing:11.859509pt;}
.ws13{word-spacing:11.859558pt;}
.ws99{word-spacing:12.008254pt;}
.ws8{word-spacing:12.050842pt;}
.ws71{word-spacing:12.433325pt;}
.ws32{word-spacing:12.486459pt;}
.ws0{word-spacing:12.752160pt;}
.ws7f{word-spacing:12.805262pt;}
.wsaf{word-spacing:12.879682pt;}
.wse3{word-spacing:12.911530pt;}
.wsf7{word-spacing:13.007203pt;}
.ws62{word-spacing:13.017797pt;}
.ws6a{word-spacing:13.070931pt;}
.ws34{word-spacing:13.177199pt;}
.wse5{word-spacing:13.230333pt;}
.ws106{word-spacing:13.262246pt;}
.ws20{word-spacing:13.336601pt;}
.wsd9{word-spacing:13.442868pt;}
.ws9e{word-spacing:13.496002pt;}
.ws3d{word-spacing:13.708538pt;}
.ws70{word-spacing:13.867939pt;}
.wsed{word-spacing:13.899854pt;}
.wsfc{word-spacing:13.942362pt;}
.ws1d{word-spacing:13.974207pt;}
.ws89{word-spacing:14.027341pt;}
.ws61{word-spacing:14.080475pt;}
.ws65{word-spacing:14.133609pt;}
.ws8d{word-spacing:14.239876pt;}
.wsad{word-spacing:14.282419pt;}
.wsf{word-spacing:14.298419pt;}
.ws7{word-spacing:14.346240pt;}
.ws109{word-spacing:14.537462pt;}
.ws49{word-spacing:14.771215pt;}
.ws8a{word-spacing:14.824349pt;}
.ws4d{word-spacing:14.877483pt;}
.wsa8{word-spacing:14.962534pt;}
.wscc{word-spacing:15.005042pt;}
.wsf4{word-spacing:15.260085pt;}
.ws77{word-spacing:15.302592pt;}
.ws58{word-spacing:15.461955pt;}
.ws42{word-spacing:15.621357pt;}
.ws3a{word-spacing:15.674491pt;}
.wsb3{word-spacing:15.812678pt;}
.wsa7{word-spacing:15.897693pt;}
.ws1a{word-spacing:15.940160pt;}
.ws104{word-spacing:15.940200pt;}
.ws7c{word-spacing:16.577766pt;}
.ws10{word-spacing:16.689459pt;}
.ws4b{word-spacing:16.843436pt;}
.wse1{word-spacing:17.002837pt;}
.ws6c{word-spacing:17.055971pt;}
.ws6{word-spacing:17.311130pt;}
.ws5c{word-spacing:17.427908pt;}
.ws9{word-spacing:17.884979pt;}
.ws63{word-spacing:17.906113pt;}
.ws80{word-spacing:17.959247pt;}
.ws57{word-spacing:18.118649pt;}
.wsb7{word-spacing:18.448125pt;}
.ws56{word-spacing:18.490586pt;}
.ws4{word-spacing:18.543719pt;}
.ws31{word-spacing:18.703121pt;}
.wsb5{word-spacing:18.745675pt;}
.ws52{word-spacing:19.234460pt;}
.ws3c{word-spacing:19.393861pt;}
.wsca{word-spacing:19.638326pt;}
.wsc6{word-spacing:20.020891pt;}
.ws15{word-spacing:20.036915pt;}
.ws14{word-spacing:20.180378pt;}
.ws17{word-spacing:20.610765pt;}
.wsc9{word-spacing:21.253600pt;}
.wsd2{word-spacing:22.018730pt;}
.wsc1{word-spacing:22.953888pt;}
.ws40{word-spacing:23.113232pt;}
.ws5d{word-spacing:23.272634pt;}
.wsab{word-spacing:24.356626pt;}
.ws4a{word-spacing:24.600980pt;}
.wsbd{word-spacing:25.546827pt;}
.wse9{word-spacing:26.396971pt;}
.ws5b{word-spacing:26.407532pt;}
.ws5f{word-spacing:26.832603pt;}
.ws1c{word-spacing:26.938870pt;}
.ws60{word-spacing:27.045138pt;}
.ws5a{word-spacing:27.257674pt;}
.ws5e{word-spacing:28.798556pt;}
.wsb6{word-spacing:31.412821pt;}
.ws53{word-spacing:34.206678pt;}
.ws54{word-spacing:34.218210pt;}
.wsc3{word-spacing:34.515846pt;}
.ws55{word-spacing:35.652825pt;}
.wsbe{word-spacing:36.216134pt;}
.wsbf{word-spacing:40.424347pt;}
.wsb9{word-spacing:40.594376pt;}
.wsba{word-spacing:42.379678pt;}
.ws105{word-spacing:42.847258pt;}
.wsea{word-spacing:43.272330pt;}
.wsb8{word-spacing:46.205326pt;}
.wsbc{word-spacing:46.800427pt;}
.ws64{word-spacing:48.670622pt;}
.wsc2{word-spacing:52.368870pt;}
.wsa9{word-spacing:53.856622pt;}
.wsc0{word-spacing:68.054027pt;}
.wsc4{word-spacing:75.875352pt;}
.wsc5{word-spacing:77.108061pt;}
.wsaa{word-spacing:88.840048pt;}
.wsbb{word-spacing:146.139754pt;}
.ws101{word-spacing:165.097965pt;}
._1{margin-left:-9.436598pt;}
._4{margin-left:-6.641716pt;}
._6{margin-left:-4.718330pt;}
._2{margin-left:-3.825648pt;}
._3{margin-left:-2.337899pt;}
._0{margin-left:-1.275216pt;}
._12{width:1.526028pt;}
._7{width:2.656693pt;}
._5{width:10.563060pt;}
._18{width:13.442868pt;}
._f{width:15.568223pt;}
._9{width:18.012381pt;}
._19{width:18.915660pt;}
._8{width:21.625487pt;}
._11{width:23.378901pt;}
._e{width:25.451125pt;}
._a{width:27.257674pt;}
._c{width:29.648706pt;}
._16{width:34.473342pt;}
._10{width:35.833570pt;}
._d{width:39.637868pt;}
._b{width:53.665205pt;}
._15{width:78.122645pt;}
._17{width:189.119532pt;}
._14{width:207.344598pt;}
._13{width:281.841535pt;}
.fs6{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:100.740000pt;}
.y4e{bottom:116.680000pt;}
.y98{bottom:116.681333pt;}
.y2d{bottom:131.790667pt;}
.y7e{bottom:132.620000pt;}
.y4d{bottom:132.621333pt;}
.yef{bottom:136.789333pt;}
.y2c{bottom:147.730667pt;}
.y4c{bottom:148.561333pt;}
.yee{bottom:161.602667pt;}
.y2b{bottom:163.670667pt;}
.y97{bottom:164.314667pt;}
.y4b{bottom:164.501333pt;}
.yed{bottom:177.542667pt;}
.y2a{bottom:179.612000pt;}
.y96{bottom:180.254667pt;}
.y4a{bottom:180.441333pt;}
.yec{bottom:193.482667pt;}
.y29{bottom:195.552000pt;}
.y95{bottom:196.194667pt;}
.y49{bottom:196.381333pt;}
.yeb{bottom:209.422667pt;}
.y28{bottom:211.492000pt;}
.y94{bottom:212.134667pt;}
.y48{bottom:212.321333pt;}
.yea{bottom:225.362667pt;}
.y27{bottom:227.432000pt;}
.y93{bottom:228.074667pt;}
.y7d{bottom:228.262667pt;}
.y47{bottom:229.280000pt;}
.y127{bottom:239.421333pt;}
.ye9{bottom:241.302667pt;}
.y26{bottom:243.372000pt;}
.y92{bottom:244.016000pt;}
.y7c{bottom:244.202667pt;}
.y46{bottom:245.220000pt;}
.y126{bottom:251.376000pt;}
.ye8{bottom:257.244000pt;}
.y25{bottom:259.312000pt;}
.y91{bottom:259.956000pt;}
.y7b{bottom:260.142667pt;}
.yb4{bottom:260.620000pt;}
.y45{bottom:261.160000pt;}
.y125{bottom:263.330667pt;}
.ye7{bottom:273.184000pt;}
.y24{bottom:275.253333pt;}
.y124{bottom:275.286667pt;}
.y90{bottom:275.896000pt;}
.y7a{bottom:276.082667pt;}
.yb3{bottom:276.560000pt;}
.y44{bottom:277.100000pt;}
.y123{bottom:287.241333pt;}
.ye6{bottom:289.124000pt;}
.y23{bottom:291.193333pt;}
.y8f{bottom:291.836000pt;}
.y79{bottom:292.022667pt;}
.yb2{bottom:292.501333pt;}
.y43{bottom:293.040000pt;}
.y122{bottom:299.197333pt;}
.ye5{bottom:305.064000pt;}
.y22{bottom:307.133333pt;}
.y8e{bottom:307.776000pt;}
.y78{bottom:308.142667pt;}
.yb1{bottom:308.441333pt;}
.y42{bottom:308.981333pt;}
.y121{bottom:311.152000pt;}
.ye4{bottom:321.004000pt;}
.y21{bottom:323.073333pt;}
.y120{bottom:323.106667pt;}
.y8d{bottom:323.716000pt;}
.y77{bottom:324.084000pt;}
.yb0{bottom:324.381333pt;}
.y41{bottom:324.412000pt;}
.y11f{bottom:335.062667pt;}
.ye3{bottom:336.945333pt;}
.y8c{bottom:339.657333pt;}
.y76{bottom:340.024000pt;}
.yaf{bottom:340.321333pt;}
.y40{bottom:340.352000pt;}
.y11e{bottom:347.017333pt;}
.y20{bottom:349.340000pt;}
.ye2{bottom:352.885333pt;}
.y8b{bottom:355.597333pt;}
.y75{bottom:355.964000pt;}
.yae{bottom:356.261333pt;}
.y3f{bottom:356.292000pt;}
.y11d{bottom:358.972000pt;}
.ye1{bottom:368.825333pt;}
.y11c{bottom:370.928000pt;}
.y8a{bottom:371.537333pt;}
.y74{bottom:371.904000pt;}
.yad{bottom:372.201333pt;}
.y3e{bottom:372.233333pt;}
.y11b{bottom:382.882667pt;}
.ye0{bottom:384.765333pt;}
.y1f{bottom:386.641333pt;}
.y89{bottom:387.477333pt;}
.y73{bottom:387.844000pt;}
.yac{bottom:388.142667pt;}
.y3d{bottom:388.173333pt;}
.y11a{bottom:394.837333pt;}
.y1e{bottom:399.924000pt;}
.ydf{bottom:400.705333pt;}
.y72{bottom:403.784000pt;}
.y3c{bottom:404.113333pt;}
.y119{bottom:406.793333pt;}
.y88{bottom:407.414667pt;}
.yab{bottom:411.133333pt;}
.y1d{bottom:414.232000pt;}
.yde{bottom:416.645333pt;}
.y118{bottom:418.748000pt;}
.y71{bottom:419.725333pt;}
.y3b{bottom:420.053333pt;}
.y1c{bottom:427.514667pt;}
.y117{bottom:430.704000pt;}
.y87{bottom:431.200000pt;}
.ydd{bottom:432.586667pt;}
.y70{bottom:435.665333pt;}
.y3a{bottom:435.993333pt;}
.yaa{bottom:440.100000pt;}
.y1b{bottom:440.798667pt;}
.y116{bottom:442.658667pt;}
.y86{bottom:447.140000pt;}
.ydc{bottom:448.510667pt;}
.y6f{bottom:451.605333pt;}
.y39{bottom:451.934667pt;}
.y1a{bottom:454.082667pt;}
.y115{bottom:454.613333pt;}
.ya9{bottom:456.040000pt;}
.y85{bottom:463.080000pt;}
.ydb{bottom:464.450667pt;}
.y114{bottom:466.569333pt;}
.y19{bottom:467.365333pt;}
.y6e{bottom:467.545333pt;}
.y38{bottom:467.874667pt;}
.ya8{bottom:471.980000pt;}
.y113{bottom:478.524000pt;}
.y18{bottom:480.649333pt;}
.y6d{bottom:483.485333pt;}
.y37{bottom:483.814667pt;}
.ya7{bottom:487.920000pt;}
.y112{bottom:490.478667pt;}
.y17{bottom:493.933333pt;}
.y6c{bottom:499.425333pt;}
.y36{bottom:499.754667pt;}
.y111{bottom:502.434667pt;}
.ya6{bottom:503.861333pt;}
.y84{bottom:504.033333pt;}
.y16{bottom:507.216000pt;}
.y110{bottom:514.389333pt;}
.y6b{bottom:515.366667pt;}
.y35{bottom:515.694667pt;}
.y83{bottom:515.989333pt;}
.yda{bottom:517.020000pt;}
.ya5{bottom:519.801333pt;}
.y15{bottom:520.500000pt;}
.y10f{bottom:526.345333pt;}
.y82{bottom:527.944000pt;}
.yd9{bottom:528.974667pt;}
.y6a{bottom:531.306667pt;}
.y34{bottom:531.634667pt;}
.y14{bottom:533.782667pt;}
.ya4{bottom:535.741333pt;}
.y10e{bottom:538.300000pt;}
.y81{bottom:539.898667pt;}
.yd8{bottom:540.930667pt;}
.y13{bottom:547.066667pt;}
.y69{bottom:547.246667pt;}
.y33{bottom:547.576000pt;}
.y10d{bottom:550.254667pt;}
.ya3{bottom:551.681333pt;}
.y80{bottom:551.854667pt;}
.yd7{bottom:552.885333pt;}
.y12{bottom:560.350667pt;}
.y10c{bottom:562.210667pt;}
.y68{bottom:563.186667pt;}
.y32{bottom:563.516000pt;}
.y7f{bottom:563.809333pt;}
.yd6{bottom:564.840000pt;}
.ya2{bottom:567.621333pt;}
.y11{bottom:573.633333pt;}
.y10b{bottom:574.165333pt;}
.yd5{bottom:576.796000pt;}
.y67{bottom:579.126667pt;}
.y31{bottom:579.456000pt;}
.ya1{bottom:583.561333pt;}
.y10a{bottom:586.120000pt;}
.y10{bottom:586.917333pt;}
.yd4{bottom:588.750667pt;}
.y66{bottom:595.066667pt;}
.y30{bottom:595.396000pt;}
.y109{bottom:598.076000pt;}
.ya0{bottom:599.980000pt;}
.yf{bottom:600.201333pt;}
.yd3{bottom:600.705333pt;}
.y108{bottom:610.030667pt;}
.y2f{bottom:610.828000pt;}
.y65{bottom:611.008000pt;}
.yd2{bottom:613.192000pt;}
.ye{bottom:613.484000pt;}
.y9f{bottom:615.920000pt;}
.y107{bottom:621.986667pt;}
.yd1{bottom:625.148000pt;}
.yd{bottom:626.768000pt;}
.y64{bottom:626.948000pt;}
.y9e{bottom:631.860000pt;}
.y106{bottom:633.941333pt;}
.yd0{bottom:637.102667pt;}
.y63{bottom:642.888000pt;}
.y105{bottom:645.896000pt;}
.y9d{bottom:647.800000pt;}
.ycf{bottom:649.057333pt;}
.y104{bottom:657.852000pt;}
.y62{bottom:658.828000pt;}
.yce{bottom:661.013333pt;}
.y103{bottom:669.806667pt;}
.ycd{bottom:672.968000pt;}
.y61{bottom:674.768000pt;}
.y102{bottom:681.761333pt;}
.ycc{bottom:684.924000pt;}
.y60{bottom:690.709333pt;}
.y9c{bottom:692.022667pt;}
.y101{bottom:693.717333pt;}
.yc{bottom:695.993333pt;}
.ycb{bottom:696.878667pt;}
.y9b{bottom:703.977333pt;}
.y100{bottom:705.672000pt;}
.y5f{bottom:706.649333pt;}
.yca{bottom:708.833333pt;}
.yb{bottom:712.432000pt;}
.y9a{bottom:715.933333pt;}
.yff{bottom:717.628000pt;}
.yc9{bottom:720.789333pt;}
.y5e{bottom:722.589333pt;}
.y99{bottom:727.888000pt;}
.ya{bottom:728.870667pt;}
.yfe{bottom:729.582667pt;}
.yc8{bottom:733.276000pt;}
.yfd{bottom:741.537333pt;}
.y5d{bottom:743.793333pt;}
.yc7{bottom:745.230667pt;}
.y9{bottom:745.309333pt;}
.yfc{bottom:753.493333pt;}
.yc6{bottom:757.185333pt;}
.y8{bottom:761.944000pt;}
.yfb{bottom:765.448000pt;}
.yc5{bottom:769.141333pt;}
.y5c{bottom:770.229333pt;}
.yfa{bottom:777.402667pt;}
.yc4{bottom:781.096000pt;}
.y5b{bottom:786.170667pt;}
.yf9{bottom:789.358667pt;}
.yc3{bottom:793.050667pt;}
.y7{bottom:795.281333pt;}
.yf8{bottom:801.313333pt;}
.y5a{bottom:802.110667pt;}
.yc2{bottom:805.006667pt;}
.y6{bottom:811.720000pt;}
.yf7{bottom:813.268000pt;}
.yc1{bottom:817.493333pt;}
.y59{bottom:818.050667pt;}
.yf6{bottom:825.224000pt;}
.y5{bottom:828.157333pt;}
.yc0{bottom:829.448000pt;}
.y58{bottom:833.990667pt;}
.yf5{bottom:837.178667pt;}
.ybf{bottom:841.402667pt;}
.y4{bottom:844.793333pt;}
.yf4{bottom:849.134667pt;}
.y57{bottom:849.930667pt;}
.ybe{bottom:853.358667pt;}
.yf3{bottom:861.089333pt;}
.ybd{bottom:865.845333pt;}
.y56{bottom:865.870667pt;}
.yf2{bottom:873.044000pt;}
.ybc{bottom:877.800000pt;}
.y55{bottom:881.812000pt;}
.yf1{bottom:885.000000pt;}
.y3{bottom:886.636000pt;}
.ybb{bottom:889.754667pt;}
.y54{bottom:897.752000pt;}
.yba{bottom:901.710667pt;}
.yf0{bottom:904.725333pt;}
.yb9{bottom:913.665333pt;}
.y53{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.yb8{bottom:928.809333pt;}
.y52{bottom:929.632000pt;}
.y51{bottom:945.572000pt;}
.yb7{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y50{bottom:961.512000pt;}
.yb6{bottom:965.497333pt;}
.yb5{bottom:977.452000pt;}
.y4f{bottom:977.453333pt;}
.h7{height:29.244954pt;}
.ha{height:29.458287pt;}
.h9{height:29.712533pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h8{height:36.874903pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:65.285333pt;}
.x2c{left:70.598667pt;}
.x1e{left:75.912000pt;}
.x2{left:76.876000pt;}
.x1c{left:78.569333pt;}
.x2d{left:89.630667pt;}
.x22{left:91.981333pt;}
.x1{left:97.709333pt;}
.x12{left:101.117333pt;}
.x11{left:104.936000pt;}
.x10{left:120.042667pt;}
.x6{left:123.830667pt;}
.x23{left:124.849333pt;}
.x2e{left:131.638667pt;}
.x7{left:150.610667pt;}
.x4{left:160.141333pt;}
.x5{left:179.514667pt;}
.x1d{left:180.825333pt;}
.x24{left:184.512000pt;}
.x3{left:190.689333pt;}
.x2b{left:195.464000pt;}
.x16{left:332.061333pt;}
.xa{left:333.157333pt;}
.x17{left:353.309333pt;}
.x8{left:359.716000pt;}
.x14{left:361.068000pt;}
.xb{left:362.036000pt;}
.x15{left:385.421333pt;}
.x9{left:388.841333pt;}
.x1f{left:415.970667pt;}
.x28{left:423.989333pt;}
.x20{left:429.253333pt;}
.x26{left:433.884000pt;}
.x21{left:442.666667pt;}
.x29{left:516.730667pt;}
.x27{left:521.596000pt;}
.x1a{left:541.388000pt;}
.xf{left:542.484000pt;}
.xd{left:547.438667pt;}
.x25{left:563.088000pt;}
.x1b{left:575.174667pt;}
.x18{left:578.101333pt;}
.xe{left:587.601333pt;}
.x19{left:597.073333pt;}
.xc{left:604.561333pt;}
.x2a{left:628.670667pt;}
}




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