
    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_c69034b1762efc8487f9234c.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_ed421868be044fda1be30a4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_adea9526f98fb14f01288bc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_e4bba73d945486453f641a7c.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_ee207c313893f58dcc04de77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.829000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fca0cbfb4af77625d0fff6b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003300px;}
.ls2{letter-spacing:2.964877px;}
.lsb{letter-spacing:2.986766px;}
.ls6{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988017px;}
.ls7{letter-spacing:2.988780px;}
.ls8{letter-spacing:2.990725px;}
.lsc{letter-spacing:2.994017px;}
.lsf{letter-spacing:14.360850px;}
.ls9{letter-spacing:16.058100px;}
.lsa{letter-spacing:17.504100px;}
.ls4{letter-spacing:27.572100px;}
.ls10{letter-spacing:29.810100px;}
.ls1{letter-spacing:39.362400px;}
.lsd{letter-spacing:159.752100px;}
.lse{letter-spacing:723.284100px;}
.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;}
}
.ws5{word-spacing:-16.438350px;}
.ws4{word-spacing:-14.943900px;}
.ws2c{word-spacing:-14.920027px;}
.ws7a{word-spacing:-11.955150px;}
.ws7c{word-spacing:-2.988780px;}
.ws78{word-spacing:-1.135736px;}
.ws111{word-spacing:-0.812950px;}
.ws4a{word-spacing:-0.777083px;}
.ws10a{word-spacing:-0.669488px;}
.ws39{word-spacing:-0.298878px;}
.ws53{word-spacing:-0.179327px;}
.ws84{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.wsf0{word-spacing:-0.047821px;}
.ws4f{word-spacing:0.000000px;}
.ws7b{word-spacing:0.007163px;}
.ws6a{word-spacing:0.179327px;}
.ws36{word-spacing:0.358654px;}
.ws9c{word-spacing:0.537980px;}
.ws37{word-spacing:0.597756px;}
.ws41{word-spacing:0.657532px;}
.ws63{word-spacing:0.777083px;}
.wsfc{word-spacing:0.836858px;}
.ws7f{word-spacing:1.075961px;}
.ws83{word-spacing:1.135736px;}
.wsb{word-spacing:1.237363px;}
.ws10c{word-spacing:1.291156px;}
.ws33{word-spacing:1.338977px;}
.ws27{word-spacing:1.398758px;}
.wsfd{word-spacing:1.554166px;}
.ws6c{word-spacing:1.625900px;}
.ws51{word-spacing:1.972595px;}
.ws64{word-spacing:2.331248px;}
.wsef{word-spacing:2.385076px;}
.ws105{word-spacing:2.391024px;}
.wsf1{word-spacing:2.391030px;}
.ws1c{word-spacing:2.447453px;}
.ws66{word-spacing:2.450800px;}
.ws1d{word-spacing:2.474726px;}
.wsf5{word-spacing:2.510575px;}
.wsad{word-spacing:2.553983px;}
.wsac{word-spacing:2.555700px;}
.wsae{word-spacing:2.570351px;}
.ws10b{word-spacing:2.582312px;}
.ws118{word-spacing:2.821415px;}
.ws9a{word-spacing:2.929004px;}
.wsc8{word-spacing:2.988780px;}
.ws119{word-spacing:3.108339px;}
.wsb2{word-spacing:3.227882px;}
.wsb4{word-spacing:3.287658px;}
.ws5c{word-spacing:3.347434px;}
.wsa6{word-spacing:3.466985px;}
.ws11b{word-spacing:3.634366px;}
.wsa3{word-spacing:3.969110px;}
.ws3e{word-spacing:4.244068px;}
.ws25{word-spacing:4.465267px;}
.ws90{word-spacing:4.483170px;}
.ws8e{word-spacing:4.491025px;}
.ws10d{word-spacing:4.734239px;}
.ws6d{word-spacing:4.782060px;}
.ws10f{word-spacing:4.925522px;}
.ws65{word-spacing:4.961375px;}
.ws76{word-spacing:5.021150px;}
.ws4c{word-spacing:5.140702px;}
.wsdd{word-spacing:5.200477px;}
.ws68{word-spacing:5.260253px;}
.ws104{word-spacing:5.320028px;}
.ws4b{word-spacing:5.559131px;}
.wsc5{word-spacing:5.618906px;}
.ws8f{word-spacing:5.678682px;}
.ws92{word-spacing:5.798233px;}
.wsd{word-spacing:5.810227px;}
.wsc7{word-spacing:5.905333px;}
.wsc9{word-spacing:5.913741px;}
.ws79{word-spacing:5.929754px;}
.ws7d{word-spacing:5.939090px;}
.wscb{word-spacing:5.948746px;}
.ws3{word-spacing:5.977560px;}
.wsca{word-spacing:5.977575px;}
.ws71{word-spacing:6.216662px;}
.ws47{word-spacing:6.276438px;}
.ws4e{word-spacing:6.336214px;}
.wsf7{word-spacing:6.455765px;}
.wsf6{word-spacing:6.468552px;}
.wsa7{word-spacing:6.515540px;}
.ws3a{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws2a{word-spacing:6.724800px;}
.ws46{word-spacing:6.814418px;}
.ws60{word-spacing:6.874194px;}
.ws110{word-spacing:6.933987px;}
.ws91{word-spacing:7.173072px;}
.ws4d{word-spacing:7.412174px;}
.ws108{word-spacing:7.507834px;}
.ws29{word-spacing:7.531776px;}
.ws9b{word-spacing:7.591501px;}
.wsf{word-spacing:7.639373px;}
.ws97{word-spacing:7.651277px;}
.wsa8{word-spacing:7.711052px;}
.ws50{word-spacing:8.009930px;}
.ws57{word-spacing:8.069706px;}
.ws56{word-spacing:8.129482px;}
.ws1e{word-spacing:8.335622px;}
.ws20{word-spacing:8.339846px;}
.wsf9{word-spacing:8.368584px;}
.ws30{word-spacing:8.559887px;}
.ws114{word-spacing:8.607708px;}
.ws45{word-spacing:9.026116px;}
.wsf2{word-spacing:9.384769px;}
.ws73{word-spacing:9.504320px;}
.ws10e{word-spacing:9.659761px;}
.ws9e{word-spacing:9.683647px;}
.wsb1{word-spacing:9.803198px;}
.wsa0{word-spacing:9.946685px;}
.ws3c{word-spacing:9.982525px;}
.ws43{word-spacing:10.042301px;}
.ws117{word-spacing:10.042326px;}
.ws116{word-spacing:10.137967px;}
.ws96{word-spacing:10.400954px;}
.ws6b{word-spacing:10.568353px;}
.ws107{word-spacing:10.616173px;}
.wsbb{word-spacing:10.699832px;}
.wsb9{word-spacing:10.707025px;}
.ws9f{word-spacing:10.711814px;}
.ws54{word-spacing:10.759608px;}
.ws18{word-spacing:10.813478px;}
.ws8d{word-spacing:10.819384px;}
.ws113{word-spacing:10.855276px;}
.ws3f{word-spacing:10.938935px;}
.wsc0{word-spacing:10.983025px;}
.wsc2{word-spacing:10.998710px;}
.ws88{word-spacing:11.058486px;}
.ws5d{word-spacing:11.118262px;}
.ws6f{word-spacing:11.237813px;}
.ws40{word-spacing:11.357364px;}
.ws93{word-spacing:11.469025px;}
.ws8c{word-spacing:11.476915px;}
.ws2d{word-spacing:11.596466px;}
.ws72{word-spacing:11.656242px;}
.ws34{word-spacing:11.775793px;}
.ws6e{word-spacing:11.895344px;}
.ws24{word-spacing:11.943245px;}
.wsc6{word-spacing:11.955120px;}
.wsd8{word-spacing:12.074671px;}
.wse9{word-spacing:12.194222px;}
.ws11{word-spacing:12.266035px;}
.ws67{word-spacing:12.373549px;}
.wsab{word-spacing:12.433325px;}
.ws49{word-spacing:12.552876px;}
.ws52{word-spacing:12.612652px;}
.ws69{word-spacing:12.732203px;}
.ws55{word-spacing:12.791978px;}
.ws11a{word-spacing:12.863741px;}
.wsba{word-spacing:12.971305px;}
.ws95{word-spacing:13.090856px;}
.ws89{word-spacing:13.150632px;}
.ws80{word-spacing:13.210408px;}
.wsee{word-spacing:13.267859px;}
.wsc1{word-spacing:13.329959px;}
.ws13{word-spacing:13.395802px;}
.ws38{word-spacing:13.449510px;}
.ws22{word-spacing:13.503398px;}
.wsa4{word-spacing:13.605025px;}
.ws10{word-spacing:13.610995px;}
.ws74{word-spacing:13.628837px;}
.ws94{word-spacing:13.867939px;}
.ws42{word-spacing:13.927715px;}
.ws28{word-spacing:14.041382px;}
.wsd9{word-spacing:14.047266px;}
.ws7e{word-spacing:14.166817px;}
.ws106{word-spacing:14.202718px;}
.wsc3{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wse4{word-spacing:14.405920px;}
.wsc{word-spacing:14.471770px;}
.ws1{word-spacing:14.493058px;}
.ws6{word-spacing:14.496000px;}
.ws8{word-spacing:14.496038px;}
.ws7{word-spacing:14.496542px;}
.ws5b{word-spacing:14.585246px;}
.ws44{word-spacing:14.645022px;}
.wse6{word-spacing:14.762134px;}
.wse7{word-spacing:14.764573px;}
.ws115{word-spacing:14.824386px;}
.ws17{word-spacing:14.848358px;}
.wsfa{word-spacing:14.853101px;}
.ws31{word-spacing:14.872207px;}
.wsfb{word-spacing:14.884124px;}
.ws62{word-spacing:14.943900px;}
.ws8a{word-spacing:15.123227px;}
.wsa9{word-spacing:15.422105px;}
.ws9d{word-spacing:15.481880px;}
.ws109{word-spacing:15.637336px;}
.wsb7{word-spacing:15.720983px;}
.ws35{word-spacing:15.780758px;}
.ws112{word-spacing:15.828619px;}
.ws2f{word-spacing:15.876439px;}
.ws102{word-spacing:15.900310px;}
.wsaf{word-spacing:16.019861px;}
.ws75{word-spacing:16.318739px;}
.wsa5{word-spacing:16.378514px;}
.wsb5{word-spacing:16.617617px;}
.ws70{word-spacing:16.796944px;}
.ws3b{word-spacing:16.976270px;}
.ws99{word-spacing:17.036046px;}
.wsff{word-spacing:17.215373px;}
.wseb{word-spacing:17.275148px;}
.ws12{word-spacing:17.323085px;}
.wsf4{word-spacing:17.389904px;}
.wsbd{word-spacing:17.394700px;}
.ws32{word-spacing:17.406698px;}
.ws58{word-spacing:17.454475px;}
.wse{word-spacing:17.914867px;}
.ws2b{word-spacing:17.932680px;}
.wsb3{word-spacing:18.149984px;}
.ws82{word-spacing:18.590212px;}
.ws101{word-spacing:18.649987px;}
.ws5e{word-spacing:18.709763px;}
.wsbe{word-spacing:18.889090px;}
.ws87{word-spacing:19.367294px;}
.wsa{word-spacing:19.367424px;}
.ws85{word-spacing:19.400134px;}
.ws61{word-spacing:19.965050px;}
.ws26{word-spacing:20.013005px;}
.wsc4{word-spacing:20.024826px;}
.wsdc{word-spacing:20.083184px;}
.ws5f{word-spacing:20.323704px;}
.ws8b{word-spacing:20.383480px;}
.ws98{word-spacing:20.443255px;}
.ws81{word-spacing:20.562806px;}
.ws59{word-spacing:20.682358px;}
.ws14{word-spacing:20.766182px;}
.wsaa{word-spacing:21.041011px;}
.ws77{word-spacing:21.399665px;}
.ws2e{word-spacing:21.519216px;}
.ws23{word-spacing:21.573158px;}
.ws21{word-spacing:21.733402px;}
.ws1f{word-spacing:21.735562px;}
.wsa1{word-spacing:21.860939px;}
.ws3d{word-spacing:22.356074px;}
.ws1a{word-spacing:22.433933px;}
.ws15{word-spacing:22.702925px;}
.ws48{word-spacing:22.894055px;}
.wsdf{word-spacing:22.953830px;}
.ws19{word-spacing:23.079514px;}
.wsf8{word-spacing:23.227904px;}
.wsbf{word-spacing:24.029791px;}
.wsf3{word-spacing:24.295424px;}
.ws5a{word-spacing:24.687323px;}
.wsb0{word-spacing:24.703424px;}
.ws16{word-spacing:24.801062px;}
.wsec{word-spacing:25.165528px;}
.ws1b{word-spacing:25.877030px;}
.wse8{word-spacing:27.101984px;}
.wsbc{word-spacing:28.489904px;}
.wsa2{word-spacing:28.644539px;}
.wse5{word-spacing:29.649824px;}
.wscc{word-spacing:30.297042px;}
.wsce{word-spacing:30.306229px;}
.wsb8{word-spacing:30.623984px;}
.ws103{word-spacing:30.769904px;}
.wsb6{word-spacing:31.524704px;}
.wsea{word-spacing:32.177984px;}
.wse3{word-spacing:32.338600px;}
.ws100{word-spacing:32.816804px;}
.ws86{word-spacing:34.284704px;}
.wsd5{word-spacing:35.446931px;}
.wsed{word-spacing:40.057904px;}
.wsde{word-spacing:40.766959px;}
.wsfe{word-spacing:41.245164px;}
.wse0{word-spacing:41.962471px;}
.wse2{word-spacing:42.022247px;}
.wscd{word-spacing:45.187904px;}
.wscf{word-spacing:46.266314px;}
.wsd6{word-spacing:49.255094px;}
.wse1{word-spacing:56.887904px;}
.wsd7{word-spacing:64.153904px;}
.wsd1{word-spacing:89.902502px;}
.wsd2{word-spacing:104.812304px;}
.wsd0{word-spacing:108.373163px;}
.wsd4{word-spacing:114.948479px;}
.wsd3{word-spacing:129.804944px;}
.wsda{word-spacing:144.807042px;}
.wsdb{word-spacing:314.180554px;}
._2{margin-left:-7.958861px;}
._3{margin-left:-5.260272px;}
._0{margin-left:-3.586545px;}
._8{margin-left:-2.534492px;}
._1{margin-left:-1.434618px;}
._7{width:2.988780px;}
._9{width:13.628837px;}
._c{width:15.792733px;}
._e{width:20.466319px;}
._f{width:21.578992px;}
._b{width:22.953834px;}
._4{width:26.020487px;}
._11{width:27.556552px;}
._10{width:28.706395px;}
._12{width:29.887875px;}
._6{width:32.440435px;}
._5{width:34.861363px;}
._a{width:35.865360px;}
._d{width:45.094826px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y33{bottom:113.332500px;}
.y32{bottom:126.783000px;}
.y52{bottom:131.265000px;}
.y75{bottom:131.266500px;}
.y31{bottom:140.232000px;}
.ya0{bottom:149.197500px;}
.y51{bottom:149.199000px;}
.yd7{bottom:149.413500px;}
.y30{bottom:153.681000px;}
.y74{bottom:155.173500px;}
.y2f{bottom:167.131500px;}
.yd6{bottom:167.347500px;}
.y50{bottom:174.175500px;}
.y2e{bottom:180.580500px;}
.y9f{bottom:185.064000px;}
.yd5{bottom:185.280000px;}
.y4f{bottom:192.109500px;}
.yf2{bottom:192.187500px;}
.y73{bottom:200.749500px;}
.y9e{bottom:202.996500px;}
.ybd{bottom:203.208000px;}
.yd4{bottom:203.212500px;}
.y2d{bottom:208.075500px;}
.y4e{bottom:210.042000px;}
.y72{bottom:214.198500px;}
.y9d{bottom:220.929000px;}
.ybc{bottom:221.140500px;}
.yd3{bottom:221.145000px;}
.yf1{bottom:224.266500px;}
.y2c{bottom:226.009500px;}
.y71{bottom:227.647500px;}
.y4d{bottom:227.974500px;}
.y9c{bottom:238.861500px;}
.ybb{bottom:239.073000px;}
.yd2{bottom:239.077500px;}
.yf0{bottom:242.199000px;}
.y4c{bottom:245.907000px;}
.y2b{bottom:248.406000px;}
.y9b{bottom:256.795500px;}
.yba{bottom:257.007000px;}
.yd1{bottom:257.010000px;}
.yef{bottom:260.131500px;}
.y4b{bottom:263.839500px;}
.y9a{bottom:274.728000px;}
.yb9{bottom:274.939500px;}
.yd0{bottom:274.944000px;}
.y2a{bottom:274.971000px;}
.yee{bottom:278.064000px;}
.y4a{bottom:281.772000px;}
.y29{bottom:289.914000px;}
.y99{bottom:292.660500px;}
.yb8{bottom:292.872000px;}
.ycf{bottom:292.876500px;}
.yed{bottom:295.996500px;}
.y109{bottom:296.952000px;}
.y49{bottom:299.706000px;}
.y28{bottom:304.858500px;}
.y108{bottom:310.401000px;}
.y98{bottom:310.593000px;}
.yce{bottom:310.809000px;}
.yb7{bottom:311.016000px;}
.yec{bottom:313.930500px;}
.y48{bottom:317.638500px;}
.y27{bottom:319.803000px;}
.y107{bottom:323.851500px;}
.y97{bottom:328.525500px;}
.ycd{bottom:328.741500px;}
.yb6{bottom:328.948500px;}
.yeb{bottom:331.863000px;}
.y26{bottom:334.746000px;}
.y47{bottom:335.571000px;}
.y106{bottom:337.300500px;}
.y96{bottom:346.458000px;}
.ycc{bottom:346.674000px;}
.yb5{bottom:346.881000px;}
.y25{bottom:349.690500px;}
.yea{bottom:349.795500px;}
.y105{bottom:350.751000px;}
.y46{bottom:353.503500px;}
.y104{bottom:364.200000px;}
.y95{bottom:364.392000px;}
.ycb{bottom:364.606500px;}
.y24{bottom:364.633500px;}
.yb4{bottom:364.813500px;}
.ye9{bottom:367.728000px;}
.y45{bottom:371.436000px;}
.y103{bottom:377.649000px;}
.y23{bottom:379.578000px;}
.yb3{bottom:382.747500px;}
.yca{bottom:382.755000px;}
.y94{bottom:383.527500px;}
.ye8{bottom:386.139000px;}
.y44{bottom:389.368500px;}
.y102{bottom:391.099500px;}
.y22{bottom:394.522500px;}
.yb2{bottom:400.680000px;}
.yc9{bottom:400.689000px;}
.y93{bottom:401.461500px;}
.ye7{bottom:404.071500px;}
.y101{bottom:404.548500px;}
.y43{bottom:407.302500px;}
.y21{bottom:409.465500px;}
.y100{bottom:417.997500px;}
.yb1{bottom:418.612500px;}
.yc8{bottom:418.621500px;}
.y92{bottom:419.394000px;}
.ye6{bottom:422.004000px;}
.y20{bottom:424.410000px;}
.y42{bottom:425.235000px;}
.yff{bottom:431.448000px;}
.yb0{bottom:436.545000px;}
.yc7{bottom:436.554000px;}
.y91{bottom:437.326500px;}
.y1f{bottom:439.354500px;}
.ye5{bottom:439.936500px;}
.y41{bottom:443.167500px;}
.yfe{bottom:444.897000px;}
.y1e{bottom:454.297500px;}
.yaf{bottom:454.477500px;}
.yc6{bottom:454.486500px;}
.y90{bottom:455.259000px;}
.ye4{bottom:457.869000px;}
.yfd{bottom:458.347500px;}
.y40{bottom:461.100000px;}
.y1d{bottom:469.242000px;}
.yfc{bottom:471.796500px;}
.yae{bottom:472.410000px;}
.yc5{bottom:472.419000px;}
.y8f{bottom:473.191500px;}
.ye3{bottom:475.801500px;}
.y1c{bottom:484.186500px;}
.yfb{bottom:485.245500px;}
.y3f{bottom:486.078000px;}
.yad{bottom:490.344000px;}
.yc4{bottom:490.353000px;}
.y8e{bottom:492.328500px;}
.ye2{bottom:493.735500px;}
.yfa{bottom:498.696000px;}
.y1b{bottom:499.129500px;}
.y3e{bottom:505.932000px;}
.yac{bottom:508.276500px;}
.yc3{bottom:508.285500px;}
.y8d{bottom:510.261000px;}
.ye1{bottom:511.668000px;}
.yf9{bottom:512.145000px;}
.y1a{bottom:514.074000px;}
.y3d{bottom:523.864500px;}
.yf8{bottom:525.594000px;}
.yab{bottom:526.209000px;}
.yc2{bottom:526.218000px;}
.y8c{bottom:528.195000px;}
.y19{bottom:529.018500px;}
.ye0{bottom:529.600500px;}
.yf7{bottom:539.044500px;}
.y3c{bottom:541.797000px;}
.y18{bottom:543.961500px;}
.yaa{bottom:544.141500px;}
.yc1{bottom:544.150500px;}
.y8b{bottom:546.127500px;}
.ydf{bottom:547.533000px;}
.yf6{bottom:552.493500px;}
.y17{bottom:558.663000px;}
.y3b{bottom:559.731000px;}
.y70{bottom:560.080500px;}
.ya9{bottom:562.074000px;}
.yc0{bottom:562.083000px;}
.y8a{bottom:564.060000px;}
.yde{bottom:565.944000px;}
.y16{bottom:573.607500px;}
.y3a{bottom:577.663500px;}
.y6f{bottom:578.013000px;}
.yf5{bottom:579.393000px;}
.ya8{bottom:580.008000px;}
.y89{bottom:581.992500px;}
.ydd{bottom:583.876500px;}
.ybf{bottom:586.018500px;}
.y15{bottom:588.550500px;}
.yf4{bottom:592.842000px;}
.y39{bottom:595.596000px;}
.y6e{bottom:595.947000px;}
.ya7{bottom:597.940500px;}
.y88{bottom:599.925000px;}
.ydc{bottom:601.809000px;}
.y14{bottom:603.495000px;}
.ybe{bottom:603.951000px;}
.yf3{bottom:606.292500px;}
.y38{bottom:613.528500px;}
.y6d{bottom:613.879500px;}
.ya6{bottom:615.873000px;}
.y87{bottom:617.857500px;}
.y13{bottom:618.439500px;}
.ydb{bottom:619.741500px;}
.y6c{bottom:631.812000px;}
.y12{bottom:633.382500px;}
.ya5{bottom:633.805500px;}
.y86{bottom:635.791500px;}
.y11{bottom:648.327000px;}
.y6b{bottom:649.744500px;}
.y37{bottom:651.315000px;}
.y85{bottom:653.724000px;}
.y10{bottom:663.271500px;}
.yda{bottom:665.637000px;}
.y6a{bottom:667.677000px;}
.y36{bottom:669.249000px;}
.y84{bottom:671.656500px;}
.yf{bottom:678.214500px;}
.yd9{bottom:679.087500px;}
.ya4{bottom:682.122000px;}
.y69{bottom:685.611000px;}
.y35{bottom:687.181500px;}
.y83{bottom:689.589000px;}
.yd8{bottom:692.536500px;}
.ye{bottom:693.159000px;}
.ya3{bottom:695.572500px;}
.y68{bottom:703.543500px;}
.y34{bottom:705.114000px;}
.y82{bottom:707.521500px;}
.yd{bottom:708.103500px;}
.ya2{bottom:709.021500px;}
.ya1{bottom:722.470500px;}
.yc{bottom:723.046500px;}
.y81{bottom:725.454000px;}
.y67{bottom:727.450500px;}
.y80{bottom:743.388000px;}
.y66{bottom:758.550000px;}
.y7f{bottom:761.320500px;}
.y65{bottom:776.482500px;}
.y7e{bottom:779.253000px;}
.y64{bottom:794.415000px;}
.yb{bottom:801.163500px;}
.y7d{bottom:809.118000px;}
.y63{bottom:812.347500px;}
.ya{bottom:819.657000px;}
.y7c{bottom:827.050500px;}
.y62{bottom:830.281500px;}
.y9{bottom:838.149000px;}
.y7b{bottom:844.983000px;}
.y61{bottom:848.214000px;}
.y8{bottom:856.864500px;}
.y60{bottom:866.508000px;}
.y7a{bottom:883.237500px;}
.y5f{bottom:884.442000px;}
.y7{bottom:894.691500px;}
.y79{bottom:901.170000px;}
.y5e{bottom:902.374500px;}
.y6{bottom:913.185000px;}
.y78{bottom:919.102500px;}
.y5d{bottom:920.307000px;}
.y5{bottom:931.677000px;}
.y77{bottom:937.035000px;}
.y5c{bottom:938.239500px;}
.y4{bottom:950.392500px;}
.y76{bottom:954.969000px;}
.y5b{bottom:956.172000px;}
.y5a{bottom:974.104500px;}
.y59{bottom:992.038500px;}
.y3{bottom:997.465500px;}
.y58{bottom:1009.971000px;}
.y57{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.y56{bottom:1045.836000px;}
.y55{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y54{bottom:1081.701000px;}
.y53{bottom:1099.635000px;}
.h7{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h8{height:41.484266px;}
.h2{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:73.485000px;}
.x11{left:75.634500px;}
.x20{left:79.423500px;}
.x10{left:83.197500px;}
.x17{left:85.401000px;}
.x1{left:89.193000px;}
.xf{left:90.802500px;}
.x21{left:100.834500px;}
.x7{left:119.859000px;}
.x5{left:133.876500px;}
.x6{left:144.441000px;}
.x4{left:165.178500px;}
.x16{left:203.430000px;}
.x1f{left:219.897000px;}
.x3{left:298.342500px;}
.xb{left:359.526000px;}
.x8{left:390.231000px;}
.x9{left:398.865000px;}
.xa{left:409.429500px;}
.x13{left:446.350500px;}
.x14{left:456.915000px;}
.x12{left:466.962000px;}
.x15{left:468.952500px;}
.x22{left:473.944500px;}
.x18{left:482.910000px;}
.x1b{left:484.026000px;}
.x23{left:495.355500px;}
.x1a{left:498.730500px;}
.x19{left:504.325500px;}
.x1d{left:524.590500px;}
.x1e{left:574.570500px;}
.x1c{left:598.726500px;}
.xe{left:649.836000px;}
.xd{left:679.425000px;}
.xc{left:688.990500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002933pt;}
.ls2{letter-spacing:2.635446pt;}
.lsb{letter-spacing:2.654903pt;}
.ls6{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656015pt;}
.ls7{letter-spacing:2.656693pt;}
.ls8{letter-spacing:2.658422pt;}
.lsc{letter-spacing:2.661348pt;}
.lsf{letter-spacing:12.765200pt;}
.ls9{letter-spacing:14.273867pt;}
.lsa{letter-spacing:15.559200pt;}
.ls4{letter-spacing:24.508533pt;}
.ls10{letter-spacing:26.497867pt;}
.ls1{letter-spacing:34.988800pt;}
.lsd{letter-spacing:142.001867pt;}
.lse{letter-spacing:642.919200pt;}
.ws5{word-spacing:-14.611867pt;}
.ws4{word-spacing:-13.283467pt;}
.ws2c{word-spacing:-13.262246pt;}
.ws7a{word-spacing:-10.626800pt;}
.ws7c{word-spacing:-2.656693pt;}
.ws78{word-spacing:-1.009543pt;}
.ws111{word-spacing:-0.722622pt;}
.ws4a{word-spacing:-0.690740pt;}
.ws10a{word-spacing:-0.595101pt;}
.ws39{word-spacing:-0.265669pt;}
.ws53{word-spacing:-0.159402pt;}
.ws84{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047821pt;}
.wsf0{word-spacing:-0.042507pt;}
.ws4f{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.006367pt;}
.ws6a{word-spacing:0.159402pt;}
.ws36{word-spacing:0.318803pt;}
.ws9c{word-spacing:0.478205pt;}
.ws37{word-spacing:0.531339pt;}
.ws41{word-spacing:0.584473pt;}
.ws63{word-spacing:0.690740pt;}
.wsfc{word-spacing:0.743874pt;}
.ws7f{word-spacing:0.956410pt;}
.ws83{word-spacing:1.009543pt;}
.wsb{word-spacing:1.099878pt;}
.ws10c{word-spacing:1.147694pt;}
.ws33{word-spacing:1.190202pt;}
.ws27{word-spacing:1.243341pt;}
.wsfd{word-spacing:1.381481pt;}
.ws6c{word-spacing:1.445245pt;}
.ws51{word-spacing:1.753418pt;}
.ws64{word-spacing:2.072221pt;}
.wsef{word-spacing:2.120067pt;}
.ws105{word-spacing:2.125355pt;}
.wsf1{word-spacing:2.125360pt;}
.ws1c{word-spacing:2.175514pt;}
.ws66{word-spacing:2.178489pt;}
.ws1d{word-spacing:2.199757pt;}
.wsf5{word-spacing:2.231622pt;}
.wsad{word-spacing:2.270207pt;}
.wsac{word-spacing:2.271733pt;}
.wsae{word-spacing:2.284756pt;}
.ws10b{word-spacing:2.295389pt;}
.ws118{word-spacing:2.507925pt;}
.ws9a{word-spacing:2.603559pt;}
.wsc8{word-spacing:2.656693pt;}
.ws119{word-spacing:2.762968pt;}
.wsb2{word-spacing:2.869229pt;}
.wsb4{word-spacing:2.922363pt;}
.ws5c{word-spacing:2.975497pt;}
.wsa6{word-spacing:3.081764pt;}
.ws11b{word-spacing:3.230547pt;}
.wsa3{word-spacing:3.528098pt;}
.ws3e{word-spacing:3.772505pt;}
.ws25{word-spacing:3.969126pt;}
.ws90{word-spacing:3.985040pt;}
.ws8e{word-spacing:3.992022pt;}
.ws10d{word-spacing:4.208213pt;}
.ws6d{word-spacing:4.250720pt;}
.ws10f{word-spacing:4.378242pt;}
.ws65{word-spacing:4.410111pt;}
.ws76{word-spacing:4.463245pt;}
.ws4c{word-spacing:4.569513pt;}
.wsdd{word-spacing:4.622646pt;}
.ws68{word-spacing:4.675780pt;}
.ws104{word-spacing:4.728914pt;}
.ws4b{word-spacing:4.941450pt;}
.wsc5{word-spacing:4.994583pt;}
.ws8f{word-spacing:5.047717pt;}
.ws92{word-spacing:5.153985pt;}
.wsd{word-spacing:5.164646pt;}
.wsc7{word-spacing:5.249185pt;}
.wsc9{word-spacing:5.256659pt;}
.ws79{word-spacing:5.270893pt;}
.ws7d{word-spacing:5.279191pt;}
.wscb{word-spacing:5.287774pt;}
.ws3{word-spacing:5.313387pt;}
.wsca{word-spacing:5.313400pt;}
.ws71{word-spacing:5.525922pt;}
.ws47{word-spacing:5.579056pt;}
.ws4e{word-spacing:5.632190pt;}
.wsf7{word-spacing:5.738458pt;}
.wsf6{word-spacing:5.749824pt;}
.wsa7{word-spacing:5.791591pt;}
.ws3a{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws2a{word-spacing:5.977600pt;}
.ws46{word-spacing:6.057261pt;}
.ws60{word-spacing:6.110395pt;}
.ws110{word-spacing:6.163544pt;}
.ws91{word-spacing:6.376064pt;}
.ws4d{word-spacing:6.588599pt;}
.ws108{word-spacing:6.673630pt;}
.ws29{word-spacing:6.694912pt;}
.ws9b{word-spacing:6.748001pt;}
.wsf{word-spacing:6.790554pt;}
.ws97{word-spacing:6.801135pt;}
.wsa8{word-spacing:6.854269pt;}
.ws50{word-spacing:7.119938pt;}
.ws57{word-spacing:7.173072pt;}
.ws56{word-spacing:7.226206pt;}
.ws1e{word-spacing:7.409442pt;}
.ws20{word-spacing:7.413197pt;}
.wsf9{word-spacing:7.438741pt;}
.ws30{word-spacing:7.608789pt;}
.ws114{word-spacing:7.651296pt;}
.ws45{word-spacing:8.023214pt;}
.wsf2{word-spacing:8.342017pt;}
.ws73{word-spacing:8.448285pt;}
.ws10e{word-spacing:8.586454pt;}
.ws9e{word-spacing:8.607686pt;}
.wsb1{word-spacing:8.713954pt;}
.wsa0{word-spacing:8.841498pt;}
.ws3c{word-spacing:8.873356pt;}
.ws43{word-spacing:8.926490pt;}
.ws117{word-spacing:8.926512pt;}
.ws116{word-spacing:9.011526pt;}
.ws96{word-spacing:9.245293pt;}
.ws6b{word-spacing:9.394091pt;}
.ws107{word-spacing:9.436598pt;}
.wsbb{word-spacing:9.510962pt;}
.wsb9{word-spacing:9.517356pt;}
.ws9f{word-spacing:9.521613pt;}
.ws54{word-spacing:9.564096pt;}
.ws18{word-spacing:9.611981pt;}
.ws8d{word-spacing:9.617230pt;}
.ws113{word-spacing:9.649134pt;}
.ws3f{word-spacing:9.723498pt;}
.wsc0{word-spacing:9.762689pt;}
.wsc2{word-spacing:9.776631pt;}
.ws88{word-spacing:9.829765pt;}
.ws5d{word-spacing:9.882899pt;}
.ws6f{word-spacing:9.989167pt;}
.ws40{word-spacing:10.095435pt;}
.ws93{word-spacing:10.194689pt;}
.ws8c{word-spacing:10.201702pt;}
.ws2d{word-spacing:10.307970pt;}
.ws72{word-spacing:10.361104pt;}
.ws34{word-spacing:10.467372pt;}
.ws6e{word-spacing:10.573639pt;}
.ws24{word-spacing:10.616218pt;}
.wsc6{word-spacing:10.626773pt;}
.wsd8{word-spacing:10.733041pt;}
.wse9{word-spacing:10.839309pt;}
.ws11{word-spacing:10.903142pt;}
.ws67{word-spacing:10.998710pt;}
.wsab{word-spacing:11.051844pt;}
.ws49{word-spacing:11.158112pt;}
.ws52{word-spacing:11.211246pt;}
.ws69{word-spacing:11.317514pt;}
.ws55{word-spacing:11.370647pt;}
.ws11a{word-spacing:11.434437pt;}
.wsba{word-spacing:11.530049pt;}
.ws95{word-spacing:11.636317pt;}
.ws89{word-spacing:11.689451pt;}
.ws80{word-spacing:11.742585pt;}
.wsee{word-spacing:11.793653pt;}
.wsc1{word-spacing:11.848852pt;}
.ws13{word-spacing:11.907379pt;}
.ws38{word-spacing:11.955120pt;}
.ws22{word-spacing:12.003021pt;}
.wsa4{word-spacing:12.093356pt;}
.ws10{word-spacing:12.098662pt;}
.ws74{word-spacing:12.114522pt;}
.ws94{word-spacing:12.327057pt;}
.ws42{word-spacing:12.380191pt;}
.ws28{word-spacing:12.481229pt;}
.wsd9{word-spacing:12.486459pt;}
.ws7e{word-spacing:12.592726pt;}
.ws106{word-spacing:12.624638pt;}
.wsc3{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wse4{word-spacing:12.805262pt;}
.wsc{word-spacing:12.863795pt;}
.ws1{word-spacing:12.882718pt;}
.ws6{word-spacing:12.885333pt;}
.ws8{word-spacing:12.885367pt;}
.ws7{word-spacing:12.885815pt;}
.ws5b{word-spacing:12.964663pt;}
.ws44{word-spacing:13.017797pt;}
.wse6{word-spacing:13.121897pt;}
.wse7{word-spacing:13.124065pt;}
.ws115{word-spacing:13.177232pt;}
.ws17{word-spacing:13.198541pt;}
.wsfa{word-spacing:13.202756pt;}
.ws31{word-spacing:13.219739pt;}
.wsfb{word-spacing:13.230333pt;}
.ws62{word-spacing:13.283467pt;}
.ws8a{word-spacing:13.442868pt;}
.wsa9{word-spacing:13.708538pt;}
.ws9d{word-spacing:13.761671pt;}
.ws109{word-spacing:13.899854pt;}
.wsb7{word-spacing:13.974207pt;}
.ws35{word-spacing:14.027341pt;}
.ws112{word-spacing:14.069883pt;}
.ws2f{word-spacing:14.112390pt;}
.ws102{word-spacing:14.133609pt;}
.wsaf{word-spacing:14.239876pt;}
.ws75{word-spacing:14.505546pt;}
.wsa5{word-spacing:14.558679pt;}
.wsb5{word-spacing:14.771215pt;}
.ws70{word-spacing:14.930617pt;}
.ws3b{word-spacing:15.090018pt;}
.ws99{word-spacing:15.143152pt;}
.wsff{word-spacing:15.302554pt;}
.wseb{word-spacing:15.355687pt;}
.ws12{word-spacing:15.398298pt;}
.wsf4{word-spacing:15.457693pt;}
.wsbd{word-spacing:15.461955pt;}
.ws32{word-spacing:15.472621pt;}
.ws58{word-spacing:15.515089pt;}
.wse{word-spacing:15.924326pt;}
.ws2b{word-spacing:15.940160pt;}
.wsb3{word-spacing:16.133319pt;}
.ws82{word-spacing:16.524633pt;}
.ws101{word-spacing:16.577766pt;}
.ws5e{word-spacing:16.630900pt;}
.wsbe{word-spacing:16.790302pt;}
.ws87{word-spacing:17.215373pt;}
.wsa{word-spacing:17.215488pt;}
.ws85{word-spacing:17.244563pt;}
.ws61{word-spacing:17.746711pt;}
.ws26{word-spacing:17.789338pt;}
.wsc4{word-spacing:17.799845pt;}
.wsdc{word-spacing:17.851719pt;}
.ws5f{word-spacing:18.065515pt;}
.ws8b{word-spacing:18.118649pt;}
.ws98{word-spacing:18.171782pt;}
.ws81{word-spacing:18.278050pt;}
.ws59{word-spacing:18.384318pt;}
.ws14{word-spacing:18.458829pt;}
.wsaa{word-spacing:18.703121pt;}
.ws77{word-spacing:19.021924pt;}
.ws2e{word-spacing:19.128192pt;}
.ws23{word-spacing:19.176141pt;}
.ws21{word-spacing:19.318579pt;}
.ws1f{word-spacing:19.320499pt;}
.wsa1{word-spacing:19.431946pt;}
.ws3d{word-spacing:19.872066pt;}
.ws1a{word-spacing:19.941274pt;}
.ws15{word-spacing:20.180378pt;}
.ws48{word-spacing:20.350271pt;}
.wsdf{word-spacing:20.403405pt;}
.ws19{word-spacing:20.515123pt;}
.wsf8{word-spacing:20.647026pt;}
.wsbf{word-spacing:21.359814pt;}
.wsf3{word-spacing:21.595933pt;}
.ws5a{word-spacing:21.944287pt;}
.wsb0{word-spacing:21.958599pt;}
.ws16{word-spacing:22.045389pt;}
.wsec{word-spacing:22.369358pt;}
.ws1b{word-spacing:23.001805pt;}
.wse8{word-spacing:24.090653pt;}
.wsbc{word-spacing:25.324359pt;}
.wsa2{word-spacing:25.461813pt;}
.wse5{word-spacing:26.355399pt;}
.wscc{word-spacing:26.930704pt;}
.wsce{word-spacing:26.938870pt;}
.wsb8{word-spacing:27.221319pt;}
.ws103{word-spacing:27.351026pt;}
.wsb6{word-spacing:28.021959pt;}
.wsea{word-spacing:28.602653pt;}
.wse3{word-spacing:28.745422pt;}
.ws100{word-spacing:29.170493pt;}
.ws86{word-spacing:30.475293pt;}
.wsd5{word-spacing:31.508383pt;}
.wsed{word-spacing:35.607026pt;}
.wsde{word-spacing:36.237297pt;}
.wsfe{word-spacing:36.662368pt;}
.wse0{word-spacing:37.299974pt;}
.wse2{word-spacing:37.353108pt;}
.wscd{word-spacing:40.167026pt;}
.wscf{word-spacing:41.125613pt;}
.wsd6{word-spacing:43.782306pt;}
.wse1{word-spacing:50.567026pt;}
.wsd7{word-spacing:57.025693pt;}
.wsd1{word-spacing:79.913335pt;}
.wsd2{word-spacing:93.166493pt;}
.wsd0{word-spacing:96.331700pt;}
.wsd4{word-spacing:102.176426pt;}
.wsd3{word-spacing:115.382173pt;}
.wsda{word-spacing:128.717371pt;}
.wsdb{word-spacing:279.271603pt;}
._2{margin-left:-7.074543pt;}
._3{margin-left:-4.675797pt;}
._0{margin-left:-3.188040pt;}
._8{margin-left:-2.252882pt;}
._1{margin-left:-1.275216pt;}
._7{width:2.656693pt;}
._9{width:12.114522pt;}
._c{width:14.037985pt;}
._e{width:18.192283pt;}
._f{width:19.181326pt;}
._b{width:20.403408pt;}
._4{width:23.129322pt;}
._11{width:24.494713pt;}
._10{width:25.516796pt;}
._12{width:26.567000pt;}
._6{width:28.835942pt;}
._5{width:30.987878pt;}
._a{width:31.880320pt;}
._d{width:40.084290pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:100.740000pt;}
.y32{bottom:112.696000pt;}
.y52{bottom:116.680000pt;}
.y75{bottom:116.681333pt;}
.y31{bottom:124.650667pt;}
.ya0{bottom:132.620000pt;}
.y51{bottom:132.621333pt;}
.yd7{bottom:132.812000pt;}
.y30{bottom:136.605333pt;}
.y74{bottom:137.932000pt;}
.y2f{bottom:148.561333pt;}
.yd6{bottom:148.753333pt;}
.y50{bottom:154.822667pt;}
.y2e{bottom:160.516000pt;}
.y9f{bottom:164.501333pt;}
.yd5{bottom:164.693333pt;}
.y4f{bottom:170.764000pt;}
.yf2{bottom:170.833333pt;}
.y73{bottom:178.444000pt;}
.y9e{bottom:180.441333pt;}
.ybd{bottom:180.629333pt;}
.yd4{bottom:180.633333pt;}
.y2d{bottom:184.956000pt;}
.y4e{bottom:186.704000pt;}
.y72{bottom:190.398667pt;}
.y9d{bottom:196.381333pt;}
.ybc{bottom:196.569333pt;}
.yd3{bottom:196.573333pt;}
.yf1{bottom:199.348000pt;}
.y2c{bottom:200.897333pt;}
.y71{bottom:202.353333pt;}
.y4d{bottom:202.644000pt;}
.y9c{bottom:212.321333pt;}
.ybb{bottom:212.509333pt;}
.yd2{bottom:212.513333pt;}
.yf0{bottom:215.288000pt;}
.y4c{bottom:218.584000pt;}
.y2b{bottom:220.805333pt;}
.y9b{bottom:228.262667pt;}
.yba{bottom:228.450667pt;}
.yd1{bottom:228.453333pt;}
.yef{bottom:231.228000pt;}
.y4b{bottom:234.524000pt;}
.y9a{bottom:244.202667pt;}
.yb9{bottom:244.390667pt;}
.yd0{bottom:244.394667pt;}
.y2a{bottom:244.418667pt;}
.yee{bottom:247.168000pt;}
.y4a{bottom:250.464000pt;}
.y29{bottom:257.701333pt;}
.y99{bottom:260.142667pt;}
.yb8{bottom:260.330667pt;}
.ycf{bottom:260.334667pt;}
.yed{bottom:263.108000pt;}
.y109{bottom:263.957333pt;}
.y49{bottom:266.405333pt;}
.y28{bottom:270.985333pt;}
.y108{bottom:275.912000pt;}
.y98{bottom:276.082667pt;}
.yce{bottom:276.274667pt;}
.yb7{bottom:276.458667pt;}
.yec{bottom:279.049333pt;}
.y48{bottom:282.345333pt;}
.y27{bottom:284.269333pt;}
.y107{bottom:287.868000pt;}
.y97{bottom:292.022667pt;}
.ycd{bottom:292.214667pt;}
.yb6{bottom:292.398667pt;}
.yeb{bottom:294.989333pt;}
.y26{bottom:297.552000pt;}
.y47{bottom:298.285333pt;}
.y106{bottom:299.822667pt;}
.y96{bottom:307.962667pt;}
.ycc{bottom:308.154667pt;}
.yb5{bottom:308.338667pt;}
.y25{bottom:310.836000pt;}
.yea{bottom:310.929333pt;}
.y105{bottom:311.778667pt;}
.y46{bottom:314.225333pt;}
.y104{bottom:323.733333pt;}
.y95{bottom:323.904000pt;}
.ycb{bottom:324.094667pt;}
.y24{bottom:324.118667pt;}
.yb4{bottom:324.278667pt;}
.ye9{bottom:326.869333pt;}
.y45{bottom:330.165333pt;}
.y103{bottom:335.688000pt;}
.y23{bottom:337.402667pt;}
.yb3{bottom:340.220000pt;}
.yca{bottom:340.226667pt;}
.y94{bottom:340.913333pt;}
.ye8{bottom:343.234667pt;}
.y44{bottom:346.105333pt;}
.y102{bottom:347.644000pt;}
.y22{bottom:350.686667pt;}
.yb2{bottom:356.160000pt;}
.yc9{bottom:356.168000pt;}
.y93{bottom:356.854667pt;}
.ye7{bottom:359.174667pt;}
.y101{bottom:359.598667pt;}
.y43{bottom:362.046667pt;}
.y21{bottom:363.969333pt;}
.y100{bottom:371.553333pt;}
.yb1{bottom:372.100000pt;}
.yc8{bottom:372.108000pt;}
.y92{bottom:372.794667pt;}
.ye6{bottom:375.114667pt;}
.y20{bottom:377.253333pt;}
.y42{bottom:377.986667pt;}
.yff{bottom:383.509333pt;}
.yb0{bottom:388.040000pt;}
.yc7{bottom:388.048000pt;}
.y91{bottom:388.734667pt;}
.y1f{bottom:390.537333pt;}
.ye5{bottom:391.054667pt;}
.y41{bottom:393.926667pt;}
.yfe{bottom:395.464000pt;}
.y1e{bottom:403.820000pt;}
.yaf{bottom:403.980000pt;}
.yc6{bottom:403.988000pt;}
.y90{bottom:404.674667pt;}
.ye4{bottom:406.994667pt;}
.yfd{bottom:407.420000pt;}
.y40{bottom:409.866667pt;}
.y1d{bottom:417.104000pt;}
.yfc{bottom:419.374667pt;}
.yae{bottom:419.920000pt;}
.yc5{bottom:419.928000pt;}
.y8f{bottom:420.614667pt;}
.ye3{bottom:422.934667pt;}
.y1c{bottom:430.388000pt;}
.yfb{bottom:431.329333pt;}
.y3f{bottom:432.069333pt;}
.yad{bottom:435.861333pt;}
.yc4{bottom:435.869333pt;}
.y8e{bottom:437.625333pt;}
.ye2{bottom:438.876000pt;}
.yfa{bottom:443.285333pt;}
.y1b{bottom:443.670667pt;}
.y3e{bottom:449.717333pt;}
.yac{bottom:451.801333pt;}
.yc3{bottom:451.809333pt;}
.y8d{bottom:453.565333pt;}
.ye1{bottom:454.816000pt;}
.yf9{bottom:455.240000pt;}
.y1a{bottom:456.954667pt;}
.y3d{bottom:465.657333pt;}
.yf8{bottom:467.194667pt;}
.yab{bottom:467.741333pt;}
.yc2{bottom:467.749333pt;}
.y8c{bottom:469.506667pt;}
.y19{bottom:470.238667pt;}
.ye0{bottom:470.756000pt;}
.yf7{bottom:479.150667pt;}
.y3c{bottom:481.597333pt;}
.y18{bottom:483.521333pt;}
.yaa{bottom:483.681333pt;}
.yc1{bottom:483.689333pt;}
.y8b{bottom:485.446667pt;}
.ydf{bottom:486.696000pt;}
.yf6{bottom:491.105333pt;}
.y17{bottom:496.589333pt;}
.y3b{bottom:497.538667pt;}
.y70{bottom:497.849333pt;}
.ya9{bottom:499.621333pt;}
.yc0{bottom:499.629333pt;}
.y8a{bottom:501.386667pt;}
.yde{bottom:503.061333pt;}
.y16{bottom:509.873333pt;}
.y3a{bottom:513.478667pt;}
.y6f{bottom:513.789333pt;}
.yf5{bottom:515.016000pt;}
.ya8{bottom:515.562667pt;}
.y89{bottom:517.326667pt;}
.ydd{bottom:519.001333pt;}
.ybf{bottom:520.905333pt;}
.y15{bottom:523.156000pt;}
.yf4{bottom:526.970667pt;}
.y39{bottom:529.418667pt;}
.y6e{bottom:529.730667pt;}
.ya7{bottom:531.502667pt;}
.y88{bottom:533.266667pt;}
.ydc{bottom:534.941333pt;}
.y14{bottom:536.440000pt;}
.ybe{bottom:536.845333pt;}
.yf3{bottom:538.926667pt;}
.y38{bottom:545.358667pt;}
.y6d{bottom:545.670667pt;}
.ya6{bottom:547.442667pt;}
.y87{bottom:549.206667pt;}
.y13{bottom:549.724000pt;}
.ydb{bottom:550.881333pt;}
.y6c{bottom:561.610667pt;}
.y12{bottom:563.006667pt;}
.ya5{bottom:563.382667pt;}
.y86{bottom:565.148000pt;}
.y11{bottom:576.290667pt;}
.y6b{bottom:577.550667pt;}
.y37{bottom:578.946667pt;}
.y85{bottom:581.088000pt;}
.y10{bottom:589.574667pt;}
.yda{bottom:591.677333pt;}
.y6a{bottom:593.490667pt;}
.y36{bottom:594.888000pt;}
.y84{bottom:597.028000pt;}
.yf{bottom:602.857333pt;}
.yd9{bottom:603.633333pt;}
.ya4{bottom:606.330667pt;}
.y69{bottom:609.432000pt;}
.y35{bottom:610.828000pt;}
.y83{bottom:612.968000pt;}
.yd8{bottom:615.588000pt;}
.ye{bottom:616.141333pt;}
.ya3{bottom:618.286667pt;}
.y68{bottom:625.372000pt;}
.y34{bottom:626.768000pt;}
.y82{bottom:628.908000pt;}
.yd{bottom:629.425333pt;}
.ya2{bottom:630.241333pt;}
.ya1{bottom:642.196000pt;}
.yc{bottom:642.708000pt;}
.y81{bottom:644.848000pt;}
.y67{bottom:646.622667pt;}
.y80{bottom:660.789333pt;}
.y66{bottom:674.266667pt;}
.y7f{bottom:676.729333pt;}
.y65{bottom:690.206667pt;}
.y7e{bottom:692.669333pt;}
.y64{bottom:706.146667pt;}
.yb{bottom:712.145333pt;}
.y7d{bottom:719.216000pt;}
.y63{bottom:722.086667pt;}
.ya{bottom:728.584000pt;}
.y7c{bottom:735.156000pt;}
.y62{bottom:738.028000pt;}
.y9{bottom:745.021333pt;}
.y7b{bottom:751.096000pt;}
.y61{bottom:753.968000pt;}
.y8{bottom:761.657333pt;}
.y60{bottom:770.229333pt;}
.y7a{bottom:785.100000pt;}
.y5f{bottom:786.170667pt;}
.y7{bottom:795.281333pt;}
.y79{bottom:801.040000pt;}
.y5e{bottom:802.110667pt;}
.y6{bottom:811.720000pt;}
.y78{bottom:816.980000pt;}
.y5d{bottom:818.050667pt;}
.y5{bottom:828.157333pt;}
.y77{bottom:832.920000pt;}
.y5c{bottom:833.990667pt;}
.y4{bottom:844.793333pt;}
.y76{bottom:848.861333pt;}
.y5b{bottom:849.930667pt;}
.y5a{bottom:865.870667pt;}
.y59{bottom:881.812000pt;}
.y3{bottom:886.636000pt;}
.y58{bottom:897.752000pt;}
.y57{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.y56{bottom:929.632000pt;}
.y55{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y54{bottom:961.512000pt;}
.y53{bottom:977.453333pt;}
.h7{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h8{height:36.874903pt;}
.h2{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.320000pt;}
.x11{left:67.230667pt;}
.x20{left:70.598667pt;}
.x10{left:73.953333pt;}
.x17{left:75.912000pt;}
.x1{left:79.282667pt;}
.xf{left:80.713333pt;}
.x21{left:89.630667pt;}
.x7{left:106.541333pt;}
.x5{left:119.001333pt;}
.x6{left:128.392000pt;}
.x4{left:146.825333pt;}
.x16{left:180.826667pt;}
.x1f{left:195.464000pt;}
.x3{left:265.193333pt;}
.xb{left:319.578667pt;}
.x8{left:346.872000pt;}
.x9{left:354.546667pt;}
.xa{left:363.937333pt;}
.x13{left:396.756000pt;}
.x14{left:406.146667pt;}
.x12{left:415.077333pt;}
.x15{left:416.846667pt;}
.x22{left:421.284000pt;}
.x18{left:429.253333pt;}
.x1b{left:430.245333pt;}
.x23{left:440.316000pt;}
.x1a{left:443.316000pt;}
.x19{left:448.289333pt;}
.x1d{left:466.302667pt;}
.x1e{left:510.729333pt;}
.x1c{left:532.201333pt;}
.xe{left:577.632000pt;}
.xd{left:603.933333pt;}
.xc{left:612.436000pt;}
}




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