
    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_5682b09b426c2123c5ff13c1.woff')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_c2736986fcac29d62dbe7fc8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9321acf1df822f93b6b9cbd0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1f8646fa15c4af35184d599c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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);}
.v3{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.252000px;}
.v1{vertical-align:23.754000px;}
.v4{vertical-align:31.380000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001490px;}
.lsa{letter-spacing:2.371909px;}
.ls9{letter-spacing:2.393660px;}
.ls5{letter-spacing:2.964877px;}
.lse{letter-spacing:2.987675px;}
.ls0{letter-spacing:2.987700px;}
.lsd{letter-spacing:2.988017px;}
.ls8{letter-spacing:2.988780px;}
.ls7{letter-spacing:2.989492px;}
.ls1{letter-spacing:2.993700px;}
.lsc{letter-spacing:18.830045px;}
.ls3{letter-spacing:23.909700px;}
.ls4{letter-spacing:23.915700px;}
.lsb{letter-spacing:165.496800px;}
.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;}
}
.ws1{word-spacing:-35.865450px;}
.ws4{word-spacing:-16.438350px;}
.ws29{word-spacing:-14.920027px;}
.ws5{word-spacing:-11.955150px;}
.ws3d{word-spacing:-1.075961px;}
.ws82{word-spacing:-0.777083px;}
.ws91{word-spacing:-0.717307px;}
.ws31{word-spacing:-0.597756px;}
.wsb2{word-spacing:-0.298878px;}
.ws9{word-spacing:-0.053798px;}
.wsce{word-spacing:-0.004308px;}
.ws3c{word-spacing:0.000000px;}
.wse8{word-spacing:0.059776px;}
.wse5{word-spacing:0.119551px;}
.ws14{word-spacing:0.161395px;}
.wsa5{word-spacing:0.179327px;}
.ws97{word-spacing:0.358654px;}
.ws80{word-spacing:0.418429px;}
.ws9c{word-spacing:0.478205px;}
.wsa6{word-spacing:0.597756px;}
.ws51{word-spacing:0.657532px;}
.ws83{word-spacing:0.717307px;}
.wsc1{word-spacing:0.836858px;}
.ws71{word-spacing:1.075961px;}
.ws1b{word-spacing:1.237363px;}
.wscd{word-spacing:1.255288px;}
.ws88{word-spacing:1.434614px;}
.wsf7{word-spacing:1.494390px;}
.ws8a{word-spacing:1.554166px;}
.ws20{word-spacing:1.625900px;}
.wsdf{word-spacing:1.673717px;}
.ws2a{word-spacing:1.733492px;}
.ws35{word-spacing:1.793268px;}
.wsa4{word-spacing:1.853044px;}
.ws101{word-spacing:1.865003px;}
.ws94{word-spacing:1.912819px;}
.ws6e{word-spacing:1.972595px;}
.ws32{word-spacing:2.032370px;}
.ws38{word-spacing:2.151922px;}
.wsc2{word-spacing:2.211697px;}
.ws3f{word-spacing:2.391024px;}
.wscf{word-spacing:2.391226px;}
.ws37{word-spacing:2.450800px;}
.ws7e{word-spacing:2.510575px;}
.ws9b{word-spacing:2.689902px;}
.ws8d{word-spacing:2.869229px;}
.ws105{word-spacing:2.917057px;}
.ws21{word-spacing:2.964877px;}
.ws63{word-spacing:3.048556px;}
.ws61{word-spacing:3.108331px;}
.wsff{word-spacing:3.156160px;}
.wse6{word-spacing:3.168107px;}
.wsb5{word-spacing:3.287658px;}
.ws36{word-spacing:3.526760px;}
.ws3b{word-spacing:3.586536px;}
.ws107{word-spacing:3.634366px;}
.ws9d{word-spacing:3.646312px;}
.ws93{word-spacing:3.706087px;}
.wsa3{word-spacing:3.765863px;}
.ws16{word-spacing:3.819686px;}
.ws6b{word-spacing:3.825638px;}
.wsfd{word-spacing:3.873469px;}
.wsbc{word-spacing:3.945190px;}
.ws13{word-spacing:4.142477px;}
.ws60{word-spacing:4.184292px;}
.ws39{word-spacing:4.244068px;}
.wsc9{word-spacing:4.303843px;}
.ws2d{word-spacing:4.363619px;}
.wscc{word-spacing:4.602721px;}
.wsea{word-spacing:4.662497px;}
.wsd1{word-spacing:4.743818px;}
.wsd0{word-spacing:4.770493px;}
.ws24{word-spacing:4.782060px;}
.ws8f{word-spacing:5.080926px;}
.ws8c{word-spacing:5.200477px;}
.ws72{word-spacing:5.260253px;}
.wsd4{word-spacing:5.379840px;}
.wsd3{word-spacing:5.383200px;}
.wsd6{word-spacing:5.392733px;}
.ws22{word-spacing:5.403728px;}
.wsaa{word-spacing:5.678682px;}
.wscb{word-spacing:5.738458px;}
.ws4b{word-spacing:5.858009px;}
.ws7b{word-spacing:5.929754px;}
.ws6{word-spacing:5.977560px;}
.wsdb{word-spacing:6.276438px;}
.wsbe{word-spacing:6.395989px;}
.ws48{word-spacing:6.455765px;}
.wsfe{word-spacing:6.551422px;}
.ws2{word-spacing:6.575340px;}
.ws89{word-spacing:6.635092px;}
.ws26{word-spacing:6.671002px;}
.ws6a{word-spacing:6.694867px;}
.ws1c{word-spacing:6.724800px;}
.ws6c{word-spacing:6.754643px;}
.wsf0{word-spacing:6.874194px;}
.ws3e{word-spacing:6.933970px;}
.ws92{word-spacing:7.113296px;}
.ws4e{word-spacing:7.232848px;}
.wseb{word-spacing:7.412174px;}
.wsb6{word-spacing:7.531726px;}
.ws15{word-spacing:7.531776px;}
.wsd9{word-spacing:7.591501px;}
.ws55{word-spacing:7.711052px;}
.ws5a{word-spacing:7.770828px;}
.ws67{word-spacing:7.890379px;}
.wsc3{word-spacing:8.009930px;}
.ws8e{word-spacing:8.069706px;}
.ws11{word-spacing:8.177357px;}
.wsc0{word-spacing:8.249033px;}
.ws18{word-spacing:8.284954px;}
.ws54{word-spacing:8.308808px;}
.ws52{word-spacing:8.368584px;}
.ws40{word-spacing:8.428360px;}
.ws5d{word-spacing:8.488135px;}
.ws2f{word-spacing:8.547911px;}
.wsf8{word-spacing:8.607686px;}
.ws59{word-spacing:8.787013px;}
.ws23{word-spacing:8.798990px;}
.wsc7{word-spacing:8.846789px;}
.wsda{word-spacing:9.026116px;}
.ws30{word-spacing:9.145667px;}
.wsf6{word-spacing:9.205442px;}
.wsbf{word-spacing:9.265218px;}
.ws64{word-spacing:9.324994px;}
.ws76{word-spacing:9.384769px;}
.ws98{word-spacing:9.444545px;}
.wsa0{word-spacing:9.623872px;}
.ws5f{word-spacing:9.743423px;}
.ws70{word-spacing:9.803198px;}
.ws46{word-spacing:9.862974px;}
.wse7{word-spacing:9.922750px;}
.ws4f{word-spacing:10.042301px;}
.ws9f{word-spacing:10.161852px;}
.wsfc{word-spacing:10.233608px;}
.wsbb{word-spacing:10.281403px;}
.ws1f{word-spacing:10.281429px;}
.ws8b{word-spacing:10.400954px;}
.ws5c{word-spacing:10.460730px;}
.wsec{word-spacing:10.580281px;}
.ws103{word-spacing:10.663994px;}
.ws96{word-spacing:10.879159px;}
.wsac{word-spacing:11.058486px;}
.ws65{word-spacing:11.118262px;}
.ws49{word-spacing:11.178037px;}
.ws106{word-spacing:11.190020px;}
.ws27{word-spacing:11.190067px;}
.wsb9{word-spacing:11.237813px;}
.wsf3{word-spacing:11.357364px;}
.ws6d{word-spacing:11.417140px;}
.wsc4{word-spacing:11.476915px;}
.ws3a{word-spacing:11.536691px;}
.ws79{word-spacing:11.596466px;}
.ws66{word-spacing:11.656242px;}
.ws73{word-spacing:11.716018px;}
.ws41{word-spacing:11.835569px;}
.wsc{word-spacing:11.889446px;}
.ws7{word-spacing:11.954250px;}
.wsbd{word-spacing:11.955120px;}
.ws8{word-spacing:11.960250px;}
.wsb4{word-spacing:12.134447px;}
.wsb3{word-spacing:12.194222px;}
.wsdc{word-spacing:12.253998px;}
.ws47{word-spacing:12.313774px;}
.ws34{word-spacing:12.373549px;}
.ws7a{word-spacing:12.433325px;}
.wsba{word-spacing:12.493100px;}
.ws75{word-spacing:12.552876px;}
.wsf4{word-spacing:12.612652px;}
.ws81{word-spacing:12.672427px;}
.ws12{word-spacing:12.696422px;}
.ws7d{word-spacing:12.732203px;}
.ws9e{word-spacing:12.971305px;}
.ws104{word-spacing:13.102844px;}
.ws50{word-spacing:13.210408px;}
.ws17{word-spacing:13.342003px;}
.ws53{word-spacing:13.389734px;}
.ws62{word-spacing:13.449510px;}
.ws87{word-spacing:13.509286px;}
.wsaf{word-spacing:13.569061px;}
.ws74{word-spacing:13.628837px;}
.ws77{word-spacing:13.748388px;}
.ws6f{word-spacing:13.867939px;}
.ws7f{word-spacing:14.166817px;}
.wsd{word-spacing:14.202778px;}
.ws84{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws102{word-spacing:14.537462px;}
.wsfa{word-spacing:14.585246px;}
.ws100{word-spacing:14.585283px;}
.ws99{word-spacing:14.645022px;}
.wsed{word-spacing:14.704798px;}
.wsb1{word-spacing:14.884124px;}
.wsb8{word-spacing:14.943900px;}
.wsca{word-spacing:15.003676px;}
.ws86{word-spacing:15.063451px;}
.ws1e{word-spacing:15.206951px;}
.wsf5{word-spacing:15.242778px;}
.ws2e{word-spacing:15.362329px;}
.ws19{word-spacing:15.386342px;}
.ws58{word-spacing:15.422105px;}
.ws56{word-spacing:15.437228px;}
.wse9{word-spacing:15.541656px;}
.wsa1{word-spacing:15.601432px;}
.wsa{word-spacing:15.601536px;}
.wsd8{word-spacing:15.661207px;}
.ws9a{word-spacing:15.720983px;}
.wsee{word-spacing:15.900310px;}
.wsad{word-spacing:15.960085px;}
.ws45{word-spacing:16.019861px;}
.wsdd{word-spacing:16.139412px;}
.ws4a{word-spacing:16.378514px;}
.wse4{word-spacing:16.438290px;}
.ws95{word-spacing:16.737168px;}
.wsc6{word-spacing:16.796944px;}
.ws5e{word-spacing:16.976270px;}
.wsb{word-spacing:17.054093px;}
.ws44{word-spacing:17.155597px;}
.ws42{word-spacing:17.175193px;}
.ws2c{word-spacing:17.215373px;}
.wsfb{word-spacing:17.215416px;}
.wsa8{word-spacing:17.334924px;}
.ws5b{word-spacing:17.454475px;}
.wsc8{word-spacing:17.514251px;}
.ws3{word-spacing:17.553274px;}
.wsde{word-spacing:17.633802px;}
.wse0{word-spacing:17.813129px;}
.ws28{word-spacing:17.932680px;}
.wse{word-spacing:18.022464px;}
.wsab{word-spacing:18.052231px;}
.ws1d{word-spacing:18.124007px;}
.wse3{word-spacing:18.171782px;}
.wsf{word-spacing:18.237658px;}
.wsa2{word-spacing:18.291334px;}
.wsb7{word-spacing:18.410885px;}
.ws4c{word-spacing:18.530436px;}
.wsd2{word-spacing:18.775642px;}
.ws1a{word-spacing:19.313626px;}
.wsa9{word-spacing:19.606397px;}
.wsef{word-spacing:19.965050px;}
.ws4d{word-spacing:20.024826px;}
.ws25{word-spacing:20.066803px;}
.ws78{word-spacing:20.084602px;}
.wsf9{word-spacing:20.443255px;}
.ws90{word-spacing:20.861684px;}
.ws69{word-spacing:20.981236px;}
.wsf1{word-spacing:21.578992px;}
.wsa7{word-spacing:22.356074px;}
.wsb0{word-spacing:22.415850px;}
.ws33{word-spacing:22.595177px;}
.wse1{word-spacing:22.749190px;}
.ws68{word-spacing:22.774504px;}
.ws85{word-spacing:23.073382px;}
.wsf2{word-spacing:23.192933px;}
.wsd7{word-spacing:23.491811px;}
.ws2b{word-spacing:24.507996px;}
.wsae{word-spacing:24.866650px;}
.wsc5{word-spacing:24.926425px;}
.ws10{word-spacing:25.661837px;}
.ws7c{word-spacing:29.828024px;}
.ws57{word-spacing:30.306229px;}
.ws43{word-spacing:32.039722px;}
.wse2{word-spacing:37.658628px;}
.wsd5{word-spacing:58.279200px;}
._4{margin-left:-7.846730px;}
._b{margin-left:-6.635092px;}
._2{margin-left:-5.455020px;}
._0{margin-left:-3.586545px;}
._a{margin-left:-2.450792px;}
._1{margin-left:-1.434618px;}
._5{width:2.346346px;}
._3{width:3.647390px;}
._6{width:4.749095px;}
._8{width:16.079636px;}
._9{width:17.514251px;}
._f{width:19.128192px;}
._1d{width:20.622575px;}
._d{width:21.997421px;}
._11{width:25.225303px;}
._7{width:26.301268px;}
._c{width:27.676096px;}
._e{width:29.887800px;}
._10{width:33.474420px;}
._15{width:71.713267px;}
._13{width:156.337382px;}
._18{width:165.507994px;}
._16{width:203.025855px;}
._17{width:219.282278px;}
._1b{width:264.215136px;}
._19{width:270.186758px;}
._1a{width:303.003782px;}
._12{width:332.743104px;}
._14{width:356.855981px;}
._1c{width:377.221640px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.256600px;}
.fs2{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;}
.y43{bottom:113.332500px;}
.y34{bottom:113.334000px;}
.y114{bottom:115.198500px;}
.y33{bottom:126.783000px;}
.y113{bottom:128.647500px;}
.y6e{bottom:131.265000px;}
.y42{bottom:131.266500px;}
.y32{bottom:140.232000px;}
.y112{bottom:142.098000px;}
.y6d{bottom:149.197500px;}
.y41{bottom:149.199000px;}
.y31{bottom:153.682500px;}
.y111{bottom:155.547000px;}
.y97{bottom:167.130000px;}
.y30{bottom:167.131500px;}
.y110{bottom:168.997500px;}
.y2f{bottom:180.580500px;}
.y10f{bottom:182.446500px;}
.y40{bottom:185.064000px;}
.y2e{bottom:194.031000px;}
.y10e{bottom:195.895500px;}
.y3f{bottom:202.996500px;}
.y2d{bottom:207.480000px;}
.y10d{bottom:209.346000px;}
.y3e{bottom:220.929000px;}
.y10c{bottom:222.795000px;}
.y96{bottom:225.808500px;}
.y10b{bottom:236.244000px;}
.y6c{bottom:238.861500px;}
.y2c{bottom:238.863000px;}
.y10a{bottom:249.694500px;}
.y2b{bottom:253.806000px;}
.y95{bottom:254.244000px;}
.y6b{bottom:256.794000px;}
.y3d{bottom:256.795500px;}
.y109{bottom:263.143500px;}
.y2a{bottom:268.750500px;}
.y94{bottom:272.178000px;}
.y3c{bottom:274.728000px;}
.y108{bottom:276.594000px;}
.y29{bottom:283.695000px;}
.y107{bottom:290.043000px;}
.y93{bottom:290.110500px;}
.y3b{bottom:292.660500px;}
.yc0{bottom:297.610500px;}
.y28{bottom:298.638000px;}
.ydb{bottom:302.284500px;}
.y106{bottom:303.492000px;}
.y92{bottom:308.043000px;}
.y3a{bottom:310.593000px;}
.y27{bottom:313.582500px;}
.y105{bottom:316.942500px;}
.ybf{bottom:325.974000px;}
.y91{bottom:326.025000px;}
.y6a{bottom:328.525500px;}
.y26{bottom:328.527000px;}
.y104{bottom:330.391500px;}
.yda{bottom:337.270500px;}
.y25{bottom:343.470000px;}
.y103{bottom:343.840500px;}
.ybe{bottom:343.908000px;}
.y90{bottom:343.957500px;}
.y69{bottom:346.458000px;}
.y39{bottom:346.459500px;}
.yd9{bottom:355.203000px;}
.y24{bottom:358.414500px;}
.ybd{bottom:361.840500px;}
.y8f{bottom:361.890000px;}
.y38{bottom:364.392000px;}
.y102{bottom:365.022000px;}
.yd8{bottom:373.135500px;}
.y23{bottom:373.357500px;}
.ybc{bottom:379.773000px;}
.y8e{bottom:379.822500px;}
.y37{bottom:382.324500px;}
.yb5{bottom:383.829000px;}
.y22{bottom:388.302000px;}
.y101{bottom:390.010500px;}
.yd7{bottom:391.068000px;}
.ybb{bottom:397.705500px;}
.y8d{bottom:397.755000px;}
.y36{bottom:400.257000px;}
.yb4{bottom:401.761500px;}
.y21{bottom:403.246500px;}
.y100{bottom:407.943000px;}
.yd6{bottom:409.000500px;}
.yba{bottom:415.638000px;}
.y8c{bottom:415.689000px;}
.y20{bottom:418.189500px;}
.yb3{bottom:419.694000px;}
.yff{bottom:425.875500px;}
.yd5{bottom:426.934500px;}
.y1f{bottom:433.134000px;}
.yb9{bottom:433.570500px;}
.y8b{bottom:433.621500px;}
.y68{bottom:436.122000px;}
.yb2{bottom:437.628000px;}
.y35{bottom:442.884000px;}
.yfe{bottom:443.808000px;}
.yd4{bottom:444.867000px;}
.y1e{bottom:448.078500px;}
.yb8{bottom:451.504500px;}
.y8a{bottom:451.554000px;}
.y67{bottom:454.054500px;}
.yb1{bottom:455.560500px;}
.yfd{bottom:461.740500px;}
.yd3{bottom:462.799500px;}
.y1d{bottom:463.021500px;}
.y89{bottom:469.486500px;}
.y66{bottom:471.988500px;}
.yb0{bottom:473.493000px;}
.y1c{bottom:477.966000px;}
.yfc{bottom:479.674500px;}
.yd2{bottom:480.732000px;}
.yb7{bottom:487.204500px;}
.y88{bottom:487.419000px;}
.y65{bottom:489.921000px;}
.yaf{bottom:491.425500px;}
.y1b{bottom:492.910500px;}
.yfb{bottom:497.607000px;}
.y87{bottom:505.351500px;}
.y1a{bottom:507.853500px;}
.yae{bottom:509.358000px;}
.yfa{bottom:519.741000px;}
.yd1{bottom:522.123000px;}
.y86{bottom:523.285500px;}
.y64{bottom:525.786000px;}
.yad{bottom:527.292000px;}
.yd0{bottom:540.055500px;}
.y85{bottom:541.218000px;}
.y63{bottom:543.718500px;}
.yf9{bottom:544.729500px;}
.yac{bottom:555.199500px;}
.y84{bottom:559.150500px;}
.y62{bottom:561.651000px;}
.yf8{bottom:562.662000px;}
.y19{bottom:563.509500px;}
.ycf{bottom:565.797000px;}
.y18{bottom:576.579000px;}
.y83{bottom:577.132500px;}
.y61{bottom:579.585000px;}
.yf7{bottom:580.594500px;}
.yce{bottom:583.729500px;}
.y82{bottom:595.065000px;}
.yab{bottom:596.011500px;}
.y60{bottom:597.517500px;}
.yf6{bottom:598.527000px;}
.y17{bottom:600.495000px;}
.ycd{bottom:609.469500px;}
.y81{bottom:612.997500px;}
.yaa{bottom:613.945500px;}
.y5f{bottom:615.450000px;}
.yf5{bottom:616.461000px;}
.y16{bottom:618.988500px;}
.ycc{bottom:627.403500px;}
.y80{bottom:630.930000px;}
.ya9{bottom:631.878000px;}
.y15{bottom:632.058000px;}
.y5e{bottom:633.382500px;}
.yf4{bottom:634.393500px;}
.y14{bottom:637.482000px;}
.ycb{bottom:645.336000px;}
.y7f{bottom:648.864000px;}
.ya8{bottom:649.810500px;}
.y13{bottom:650.551500px;}
.y5d{bottom:651.315000px;}
.yf3{bottom:652.326000px;}
.yca{bottom:663.268500px;}
.y7e{bottom:666.796500px;}
.ya7{bottom:667.743000px;}
.y5c{bottom:669.247500px;}
.yf2{bottom:670.258500px;}
.y12{bottom:674.467500px;}
.y7d{bottom:684.729000px;}
.ya6{bottom:685.675500px;}
.y5b{bottom:687.181500px;}
.yf1{bottom:688.191000px;}
.yc9{bottom:689.008500px;}
.y11{bottom:692.961000px;}
.y7c{bottom:702.661500px;}
.ya5{bottom:703.608000px;}
.y5a{bottom:705.114000px;}
.y10{bottom:706.030500px;}
.yf0{bottom:706.125000px;}
.yc8{bottom:706.941000px;}
.y7b{bottom:720.594000px;}
.ya4{bottom:721.542000px;}
.y59{bottom:723.046500px;}
.yef{bottom:724.057500px;}
.yc7{bottom:724.875000px;}
.yf{bottom:729.946500px;}
.y7a{bottom:738.526500px;}
.ya3{bottom:739.474500px;}
.y58{bottom:740.979000px;}
.yee{bottom:741.990000px;}
.yc6{bottom:742.807500px;}
.ye{bottom:748.440000px;}
.y79{bottom:756.460500px;}
.ya2{bottom:757.407000px;}
.y57{bottom:758.911500px;}
.yed{bottom:759.922500px;}
.yd{bottom:761.509500px;}
.yc4{bottom:767.650500px;}
.y78{bottom:774.393000px;}
.yc3{bottom:774.750000px;}
.ya1{bottom:775.339500px;}
.y56{bottom:776.845500px;}
.yec{bottom:777.855000px;}
.yc5{bottom:782.595000px;}
.yc{bottom:785.425500px;}
.y77{bottom:792.325500px;}
.ya0{bottom:793.272000px;}
.y55{bottom:794.778000px;}
.yeb{bottom:795.787500px;}
.yb{bottom:798.496500px;}
.ya{bottom:803.919000px;}
.y76{bottom:810.258000px;}
.y9f{bottom:811.206000px;}
.y54{bottom:812.710500px;}
.yea{bottom:813.721500px;}
.yc2{bottom:814.462500px;}
.y9{bottom:816.988500px;}
.yc1{bottom:827.913000px;}
.y75{bottom:828.190500px;}
.y9e{bottom:829.138500px;}
.y53{bottom:830.643000px;}
.ye9{bottom:831.654000px;}
.y8{bottom:840.904500px;}
.y9d{bottom:847.071000px;}
.y52{bottom:848.575500px;}
.ye8{bottom:849.586500px;}
.y74{bottom:851.002500px;}
.y9c{bottom:865.003500px;}
.y51{bottom:866.508000px;}
.ye7{bottom:867.013500px;}
.y7{bottom:873.430500px;}
.y73{bottom:873.937500px;}
.y9b{bottom:882.936000px;}
.yb6{bottom:884.440500px;}
.y50{bottom:884.442000px;}
.ye6{bottom:884.946000px;}
.y6{bottom:892.663500px;}
.y9a{bottom:900.868500px;}
.y72{bottom:902.373000px;}
.y4f{bottom:902.374500px;}
.ye5{bottom:902.880000px;}
.y5{bottom:913.227000px;}
.y99{bottom:918.802500px;}
.y4e{bottom:920.307000px;}
.ye4{bottom:920.812500px;}
.y4{bottom:932.460000px;}
.y98{bottom:936.735000px;}
.y4d{bottom:938.239500px;}
.ye3{bottom:938.745000px;}
.y4c{bottom:956.172000px;}
.ye2{bottom:956.677500px;}
.y4b{bottom:974.104500px;}
.ye1{bottom:974.610000px;}
.y71{bottom:992.037000px;}
.y4a{bottom:992.038500px;}
.ye0{bottom:992.542500px;}
.y3{bottom:997.465500px;}
.y70{bottom:1009.969500px;}
.y49{bottom:1009.971000px;}
.ydf{bottom:1010.476500px;}
.y48{bottom:1027.903500px;}
.yde{bottom:1028.409000px;}
.y2{bottom:1039.309500px;}
.y47{bottom:1045.836000px;}
.ydd{bottom:1046.341500px;}
.y46{bottom:1063.768500px;}
.ydc{bottom:1064.274000px;}
.y1{bottom:1081.152000px;}
.y45{bottom:1081.701000px;}
.y6f{bottom:1099.633500px;}
.y44{bottom:1099.635000px;}
.h6{height:32.900573px;}
.ha{height:37.658880px;}
.hb{height:40.826735px;}
.h7{height:41.125613px;}
.h8{height:41.419613px;}
.h9{height:41.425613px;}
.h4{height:45.562339px;}
.h5{height:56.648573px;}
.h2{height:56.654573px;}
.h3{height:60.490339px;}
.hc{height:69.038880px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:73.446000px;}
.x28{left:76.335000px;}
.x6{left:82.576500px;}
.x5{left:84.240000px;}
.x20{left:85.401000px;}
.x1f{left:88.389000px;}
.x1{left:92.601000px;}
.x2{left:97.210500px;}
.xd{left:114.384000px;}
.x12{left:119.757000px;}
.x4{left:121.185000px;}
.x7{left:130.033500px;}
.xf{left:133.497000px;}
.x19{left:136.882500px;}
.x8{left:161.989500px;}
.x18{left:167.046000px;}
.x9{left:173.857500px;}
.xc{left:188.569500px;}
.x1d{left:190.635000px;}
.x16{left:198.502500px;}
.x2e{left:202.078500px;}
.x17{left:210.435000px;}
.x2f{left:222.139500px;}
.xa{left:225.130500px;}
.x2d{left:234.733500px;}
.x27{left:238.953000px;}
.x2c{left:247.435500px;}
.x1e{left:275.031000px;}
.xb{left:278.358000px;}
.x14{left:290.848500px;}
.x29{left:297.295500px;}
.x13{left:301.264500px;}
.x1c{left:311.232000px;}
.xe{left:338.265000px;}
.x1a{left:371.217000px;}
.x2b{left:375.454500px;}
.x3{left:382.015500px;}
.x2a{left:390.391500px;}
.x22{left:467.967000px;}
.x32{left:473.944500px;}
.x21{left:482.910000px;}
.x33{left:495.355500px;}
.x25{left:514.968000px;}
.x24{left:556.152000px;}
.x23{left:597.949500px;}
.x30{left:609.733500px;}
.x26{left:613.132500px;}
.x31{left:614.418000px;}
.x10{left:669.070500px;}
.x1b{left:686.622000px;}
.x11{left:712.063500px;}
@media print{
.v3{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.557333pt;}
.v1{vertical-align:21.114667pt;}
.v4{vertical-align:27.893333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001325pt;}
.lsa{letter-spacing:2.108364pt;}
.ls9{letter-spacing:2.127698pt;}
.ls5{letter-spacing:2.635446pt;}
.lse{letter-spacing:2.655711pt;}
.ls0{letter-spacing:2.655733pt;}
.lsd{letter-spacing:2.656015pt;}
.ls8{letter-spacing:2.656693pt;}
.ls7{letter-spacing:2.657326pt;}
.ls1{letter-spacing:2.661067pt;}
.lsc{letter-spacing:16.737818pt;}
.ls3{letter-spacing:21.253067pt;}
.ls4{letter-spacing:21.258400pt;}
.lsb{letter-spacing:147.108267pt;}
.ws1{word-spacing:-31.880400pt;}
.ws4{word-spacing:-14.611867pt;}
.ws29{word-spacing:-13.262246pt;}
.ws5{word-spacing:-10.626800pt;}
.ws3d{word-spacing:-0.956410pt;}
.ws82{word-spacing:-0.690740pt;}
.ws91{word-spacing:-0.637606pt;}
.ws31{word-spacing:-0.531339pt;}
.wsb2{word-spacing:-0.265669pt;}
.ws9{word-spacing:-0.047821pt;}
.wsce{word-spacing:-0.003829pt;}
.ws3c{word-spacing:0.000000pt;}
.wse8{word-spacing:0.053134pt;}
.wse5{word-spacing:0.106268pt;}
.ws14{word-spacing:0.143462pt;}
.wsa5{word-spacing:0.159402pt;}
.ws97{word-spacing:0.318803pt;}
.ws80{word-spacing:0.371937pt;}
.ws9c{word-spacing:0.425071pt;}
.wsa6{word-spacing:0.531339pt;}
.ws51{word-spacing:0.584473pt;}
.ws83{word-spacing:0.637606pt;}
.wsc1{word-spacing:0.743874pt;}
.ws71{word-spacing:0.956410pt;}
.ws1b{word-spacing:1.099878pt;}
.wscd{word-spacing:1.115811pt;}
.ws88{word-spacing:1.275213pt;}
.wsf7{word-spacing:1.328347pt;}
.ws8a{word-spacing:1.381481pt;}
.ws20{word-spacing:1.445245pt;}
.wsdf{word-spacing:1.487748pt;}
.ws2a{word-spacing:1.540882pt;}
.ws35{word-spacing:1.594016pt;}
.wsa4{word-spacing:1.647150pt;}
.ws101{word-spacing:1.657781pt;}
.ws94{word-spacing:1.700284pt;}
.ws6e{word-spacing:1.753418pt;}
.ws32{word-spacing:1.806551pt;}
.ws38{word-spacing:1.912819pt;}
.wsc2{word-spacing:1.965953pt;}
.ws3f{word-spacing:2.125355pt;}
.wscf{word-spacing:2.125534pt;}
.ws37{word-spacing:2.178489pt;}
.ws7e{word-spacing:2.231622pt;}
.ws9b{word-spacing:2.391024pt;}
.ws8d{word-spacing:2.550426pt;}
.ws105{word-spacing:2.592939pt;}
.ws21{word-spacing:2.635446pt;}
.ws63{word-spacing:2.709827pt;}
.ws61{word-spacing:2.762961pt;}
.wsff{word-spacing:2.805475pt;}
.wse6{word-spacing:2.816095pt;}
.wsb5{word-spacing:2.922363pt;}
.ws36{word-spacing:3.134898pt;}
.ws3b{word-spacing:3.188032pt;}
.ws107{word-spacing:3.230547pt;}
.ws9d{word-spacing:3.241166pt;}
.ws93{word-spacing:3.294300pt;}
.wsa3{word-spacing:3.347434pt;}
.ws16{word-spacing:3.395277pt;}
.ws6b{word-spacing:3.400567pt;}
.wsfd{word-spacing:3.443083pt;}
.wsbc{word-spacing:3.506835pt;}
.ws13{word-spacing:3.682202pt;}
.ws60{word-spacing:3.719371pt;}
.ws39{word-spacing:3.772505pt;}
.wsc9{word-spacing:3.825638pt;}
.ws2d{word-spacing:3.878772pt;}
.wscc{word-spacing:4.091308pt;}
.wsea{word-spacing:4.144442pt;}
.wsd1{word-spacing:4.216727pt;}
.wsd0{word-spacing:4.240438pt;}
.ws24{word-spacing:4.250720pt;}
.ws8f{word-spacing:4.516379pt;}
.ws8c{word-spacing:4.622646pt;}
.ws72{word-spacing:4.675780pt;}
.wsd4{word-spacing:4.782080pt;}
.wsd3{word-spacing:4.785067pt;}
.wsd6{word-spacing:4.793540pt;}
.ws22{word-spacing:4.803314pt;}
.wsaa{word-spacing:5.047717pt;}
.wscb{word-spacing:5.100851pt;}
.ws4b{word-spacing:5.207119pt;}
.ws7b{word-spacing:5.270893pt;}
.ws6{word-spacing:5.313387pt;}
.wsdb{word-spacing:5.579056pt;}
.wsbe{word-spacing:5.685324pt;}
.ws48{word-spacing:5.738458pt;}
.wsfe{word-spacing:5.823486pt;}
.ws2{word-spacing:5.844747pt;}
.ws89{word-spacing:5.897859pt;}
.ws26{word-spacing:5.929779pt;}
.ws6a{word-spacing:5.950993pt;}
.ws1c{word-spacing:5.977600pt;}
.ws6c{word-spacing:6.004127pt;}
.wsf0{word-spacing:6.110395pt;}
.ws3e{word-spacing:6.163529pt;}
.ws92{word-spacing:6.322930pt;}
.ws4e{word-spacing:6.429198pt;}
.wseb{word-spacing:6.588599pt;}
.wsb6{word-spacing:6.694867pt;}
.ws15{word-spacing:6.694912pt;}
.wsd9{word-spacing:6.748001pt;}
.ws55{word-spacing:6.854269pt;}
.ws5a{word-spacing:6.907403pt;}
.ws67{word-spacing:7.013670pt;}
.wsc3{word-spacing:7.119938pt;}
.ws8e{word-spacing:7.173072pt;}
.ws11{word-spacing:7.268762pt;}
.wsc0{word-spacing:7.332474pt;}
.ws18{word-spacing:7.364403pt;}
.ws54{word-spacing:7.385607pt;}
.ws52{word-spacing:7.438741pt;}
.ws40{word-spacing:7.491875pt;}
.ws5d{word-spacing:7.545009pt;}
.ws2f{word-spacing:7.598143pt;}
.wsf8{word-spacing:7.651277pt;}
.ws59{word-spacing:7.810678pt;}
.ws23{word-spacing:7.821325pt;}
.wsc7{word-spacing:7.863812pt;}
.wsda{word-spacing:8.023214pt;}
.ws30{word-spacing:8.129482pt;}
.wsf6{word-spacing:8.182615pt;}
.wsbf{word-spacing:8.235749pt;}
.ws64{word-spacing:8.288883pt;}
.ws76{word-spacing:8.342017pt;}
.ws98{word-spacing:8.395151pt;}
.wsa0{word-spacing:8.554553pt;}
.ws5f{word-spacing:8.660820pt;}
.ws70{word-spacing:8.713954pt;}
.ws46{word-spacing:8.767088pt;}
.wse7{word-spacing:8.820222pt;}
.ws4f{word-spacing:8.926490pt;}
.ws9f{word-spacing:9.032757pt;}
.wsfc{word-spacing:9.096541pt;}
.wsbb{word-spacing:9.139025pt;}
.ws1f{word-spacing:9.139048pt;}
.ws8b{word-spacing:9.245293pt;}
.ws5c{word-spacing:9.298427pt;}
.wsec{word-spacing:9.404694pt;}
.ws103{word-spacing:9.479106pt;}
.ws96{word-spacing:9.670364pt;}
.wsac{word-spacing:9.829765pt;}
.ws65{word-spacing:9.882899pt;}
.ws49{word-spacing:9.936033pt;}
.ws106{word-spacing:9.946685pt;}
.ws27{word-spacing:9.946726pt;}
.wsb9{word-spacing:9.989167pt;}
.wsf3{word-spacing:10.095435pt;}
.ws6d{word-spacing:10.148569pt;}
.wsc4{word-spacing:10.201702pt;}
.ws3a{word-spacing:10.254836pt;}
.ws79{word-spacing:10.307970pt;}
.ws66{word-spacing:10.361104pt;}
.ws73{word-spacing:10.414238pt;}
.ws41{word-spacing:10.520506pt;}
.wsc{word-spacing:10.568397pt;}
.ws7{word-spacing:10.626000pt;}
.wsbd{word-spacing:10.626773pt;}
.ws8{word-spacing:10.631333pt;}
.wsb4{word-spacing:10.786175pt;}
.wsb3{word-spacing:10.839309pt;}
.wsdc{word-spacing:10.892443pt;}
.ws47{word-spacing:10.945577pt;}
.ws34{word-spacing:10.998710pt;}
.ws7a{word-spacing:11.051844pt;}
.wsba{word-spacing:11.104978pt;}
.ws75{word-spacing:11.158112pt;}
.wsf4{word-spacing:11.211246pt;}
.ws81{word-spacing:11.264380pt;}
.ws12{word-spacing:11.285709pt;}
.ws7d{word-spacing:11.317514pt;}
.ws9e{word-spacing:11.530049pt;}
.ws104{word-spacing:11.646973pt;}
.ws50{word-spacing:11.742585pt;}
.ws17{word-spacing:11.859558pt;}
.ws53{word-spacing:11.901986pt;}
.ws62{word-spacing:11.955120pt;}
.ws87{word-spacing:12.008254pt;}
.wsaf{word-spacing:12.061388pt;}
.ws74{word-spacing:12.114522pt;}
.ws77{word-spacing:12.220789pt;}
.ws6f{word-spacing:12.327057pt;}
.ws7f{word-spacing:12.592726pt;}
.wsd{word-spacing:12.624691pt;}
.ws84{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws102{word-spacing:12.922189pt;}
.wsfa{word-spacing:12.964663pt;}
.ws100{word-spacing:12.964696pt;}
.ws99{word-spacing:13.017797pt;}
.wsed{word-spacing:13.070931pt;}
.wsb1{word-spacing:13.230333pt;}
.wsb8{word-spacing:13.283467pt;}
.wsca{word-spacing:13.336601pt;}
.ws86{word-spacing:13.389734pt;}
.ws1e{word-spacing:13.517290pt;}
.wsf5{word-spacing:13.549136pt;}
.ws2e{word-spacing:13.655404pt;}
.ws19{word-spacing:13.676749pt;}
.ws58{word-spacing:13.708538pt;}
.ws56{word-spacing:13.721981pt;}
.wse9{word-spacing:13.814805pt;}
.wsa1{word-spacing:13.867939pt;}
.wsa{word-spacing:13.868032pt;}
.wsd8{word-spacing:13.921073pt;}
.ws9a{word-spacing:13.974207pt;}
.wsee{word-spacing:14.133609pt;}
.wsad{word-spacing:14.186742pt;}
.ws45{word-spacing:14.239876pt;}
.wsdd{word-spacing:14.346144pt;}
.ws4a{word-spacing:14.558679pt;}
.wse4{word-spacing:14.611813pt;}
.ws95{word-spacing:14.877483pt;}
.wsc6{word-spacing:14.930617pt;}
.ws5e{word-spacing:15.090018pt;}
.wsb{word-spacing:15.159194pt;}
.ws44{word-spacing:15.249420pt;}
.ws42{word-spacing:15.266838pt;}
.ws2c{word-spacing:15.302554pt;}
.wsfb{word-spacing:15.302592pt;}
.wsa8{word-spacing:15.408821pt;}
.ws5b{word-spacing:15.515089pt;}
.wsc8{word-spacing:15.568223pt;}
.ws3{word-spacing:15.602910pt;}
.wsde{word-spacing:15.674491pt;}
.wse0{word-spacing:15.833892pt;}
.ws28{word-spacing:15.940160pt;}
.wse{word-spacing:16.019968pt;}
.wsab{word-spacing:16.046428pt;}
.ws1d{word-spacing:16.110229pt;}
.wse3{word-spacing:16.152695pt;}
.wsf{word-spacing:16.211251pt;}
.wsa2{word-spacing:16.258963pt;}
.wsb7{word-spacing:16.365231pt;}
.ws4c{word-spacing:16.471499pt;}
.wsd2{word-spacing:16.689459pt;}
.ws1a{word-spacing:17.167667pt;}
.wsa9{word-spacing:17.427908pt;}
.wsef{word-spacing:17.746711pt;}
.ws4d{word-spacing:17.799845pt;}
.ws25{word-spacing:17.837158pt;}
.ws78{word-spacing:17.852979pt;}
.wsf9{word-spacing:18.171782pt;}
.ws90{word-spacing:18.543719pt;}
.ws69{word-spacing:18.649987pt;}
.wsf1{word-spacing:19.181326pt;}
.wsa7{word-spacing:19.872066pt;}
.wsb0{word-spacing:19.925200pt;}
.ws33{word-spacing:20.084602pt;}
.wse1{word-spacing:20.221502pt;}
.ws68{word-spacing:20.244003pt;}
.ws85{word-spacing:20.509673pt;}
.wsf2{word-spacing:20.615940pt;}
.wsd7{word-spacing:20.881610pt;}
.ws2b{word-spacing:21.784885pt;}
.wsae{word-spacing:22.103689pt;}
.wsc5{word-spacing:22.156822pt;}
.ws10{word-spacing:22.810522pt;}
.ws7c{word-spacing:26.513799pt;}
.ws57{word-spacing:26.938870pt;}
.ws43{word-spacing:28.479753pt;}
.wse2{word-spacing:33.474336pt;}
.wsd5{word-spacing:51.803733pt;}
._4{margin-left:-6.974871pt;}
._b{margin-left:-5.897859pt;}
._2{margin-left:-4.848907pt;}
._0{margin-left:-3.188040pt;}
._a{margin-left:-2.178482pt;}
._1{margin-left:-1.275216pt;}
._5{width:2.085641pt;}
._3{width:3.242125pt;}
._6{width:4.221418pt;}
._8{width:14.293010pt;}
._9{width:15.568223pt;}
._f{width:17.002837pt;}
._1d{width:18.331178pt;}
._d{width:19.553263pt;}
._11{width:22.422492pt;}
._7{width:23.378905pt;}
._c{width:24.600974pt;}
._e{width:26.566933pt;}
._10{width:29.755040pt;}
._15{width:63.745126pt;}
._13{width:138.966562pt;}
._18{width:147.118217pt;}
._16{width:180.467427pt;}
._17{width:194.917581pt;}
._1b{width:234.857899pt;}
._19{width:240.166007pt;}
._1a{width:269.336695pt;}
._12{width:295.771648pt;}
._14{width:317.205316pt;}
._1c{width:335.308125pt;}
.fs5{font-size:34.005867pt;}
.fs2{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;}
.y43{bottom:100.740000pt;}
.y34{bottom:100.741333pt;}
.y114{bottom:102.398667pt;}
.y33{bottom:112.696000pt;}
.y113{bottom:114.353333pt;}
.y6e{bottom:116.680000pt;}
.y42{bottom:116.681333pt;}
.y32{bottom:124.650667pt;}
.y112{bottom:126.309333pt;}
.y6d{bottom:132.620000pt;}
.y41{bottom:132.621333pt;}
.y31{bottom:136.606667pt;}
.y111{bottom:138.264000pt;}
.y97{bottom:148.560000pt;}
.y30{bottom:148.561333pt;}
.y110{bottom:150.220000pt;}
.y2f{bottom:160.516000pt;}
.y10f{bottom:162.174667pt;}
.y40{bottom:164.501333pt;}
.y2e{bottom:172.472000pt;}
.y10e{bottom:174.129333pt;}
.y3f{bottom:180.441333pt;}
.y2d{bottom:184.426667pt;}
.y10d{bottom:186.085333pt;}
.y3e{bottom:196.381333pt;}
.y10c{bottom:198.040000pt;}
.y96{bottom:200.718667pt;}
.y10b{bottom:209.994667pt;}
.y6c{bottom:212.321333pt;}
.y2c{bottom:212.322667pt;}
.y10a{bottom:221.950667pt;}
.y2b{bottom:225.605333pt;}
.y95{bottom:225.994667pt;}
.y6b{bottom:228.261333pt;}
.y3d{bottom:228.262667pt;}
.y109{bottom:233.905333pt;}
.y2a{bottom:238.889333pt;}
.y94{bottom:241.936000pt;}
.y3c{bottom:244.202667pt;}
.y108{bottom:245.861333pt;}
.y29{bottom:252.173333pt;}
.y107{bottom:257.816000pt;}
.y93{bottom:257.876000pt;}
.y3b{bottom:260.142667pt;}
.yc0{bottom:264.542667pt;}
.y28{bottom:265.456000pt;}
.ydb{bottom:268.697333pt;}
.y106{bottom:269.770667pt;}
.y92{bottom:273.816000pt;}
.y3a{bottom:276.082667pt;}
.y27{bottom:278.740000pt;}
.y105{bottom:281.726667pt;}
.ybf{bottom:289.754667pt;}
.y91{bottom:289.800000pt;}
.y6a{bottom:292.022667pt;}
.y26{bottom:292.024000pt;}
.y104{bottom:293.681333pt;}
.yda{bottom:299.796000pt;}
.y25{bottom:305.306667pt;}
.y103{bottom:305.636000pt;}
.ybe{bottom:305.696000pt;}
.y90{bottom:305.740000pt;}
.y69{bottom:307.962667pt;}
.y39{bottom:307.964000pt;}
.yd9{bottom:315.736000pt;}
.y24{bottom:318.590667pt;}
.ybd{bottom:321.636000pt;}
.y8f{bottom:321.680000pt;}
.y38{bottom:323.904000pt;}
.y102{bottom:324.464000pt;}
.yd8{bottom:331.676000pt;}
.y23{bottom:331.873333pt;}
.ybc{bottom:337.576000pt;}
.y8e{bottom:337.620000pt;}
.y37{bottom:339.844000pt;}
.yb5{bottom:341.181333pt;}
.y22{bottom:345.157333pt;}
.y101{bottom:346.676000pt;}
.yd7{bottom:347.616000pt;}
.ybb{bottom:353.516000pt;}
.y8d{bottom:353.560000pt;}
.y36{bottom:355.784000pt;}
.yb4{bottom:357.121333pt;}
.y21{bottom:358.441333pt;}
.y100{bottom:362.616000pt;}
.yd6{bottom:363.556000pt;}
.yba{bottom:369.456000pt;}
.y8c{bottom:369.501333pt;}
.y20{bottom:371.724000pt;}
.yb3{bottom:373.061333pt;}
.yff{bottom:378.556000pt;}
.yd5{bottom:379.497333pt;}
.y1f{bottom:385.008000pt;}
.yb9{bottom:385.396000pt;}
.y8b{bottom:385.441333pt;}
.y68{bottom:387.664000pt;}
.yb2{bottom:389.002667pt;}
.y35{bottom:393.674667pt;}
.yfe{bottom:394.496000pt;}
.yd4{bottom:395.437333pt;}
.y1e{bottom:398.292000pt;}
.yb8{bottom:401.337333pt;}
.y8a{bottom:401.381333pt;}
.y67{bottom:403.604000pt;}
.yb1{bottom:404.942667pt;}
.yfd{bottom:410.436000pt;}
.yd3{bottom:411.377333pt;}
.y1d{bottom:411.574667pt;}
.y89{bottom:417.321333pt;}
.y66{bottom:419.545333pt;}
.yb0{bottom:420.882667pt;}
.y1c{bottom:424.858667pt;}
.yfc{bottom:426.377333pt;}
.yd2{bottom:427.317333pt;}
.yb7{bottom:433.070667pt;}
.y88{bottom:433.261333pt;}
.y65{bottom:435.485333pt;}
.yaf{bottom:436.822667pt;}
.y1b{bottom:438.142667pt;}
.yfb{bottom:442.317333pt;}
.y87{bottom:449.201333pt;}
.y1a{bottom:451.425333pt;}
.yae{bottom:452.762667pt;}
.yfa{bottom:461.992000pt;}
.yd1{bottom:464.109333pt;}
.y86{bottom:465.142667pt;}
.y64{bottom:467.365333pt;}
.yad{bottom:468.704000pt;}
.yd0{bottom:480.049333pt;}
.y85{bottom:481.082667pt;}
.y63{bottom:483.305333pt;}
.yf9{bottom:484.204000pt;}
.yac{bottom:493.510667pt;}
.y84{bottom:497.022667pt;}
.y62{bottom:499.245333pt;}
.yf8{bottom:500.144000pt;}
.y19{bottom:500.897333pt;}
.ycf{bottom:502.930667pt;}
.y18{bottom:512.514667pt;}
.y83{bottom:513.006667pt;}
.y61{bottom:515.186667pt;}
.yf7{bottom:516.084000pt;}
.yce{bottom:518.870667pt;}
.y82{bottom:528.946667pt;}
.yab{bottom:529.788000pt;}
.y60{bottom:531.126667pt;}
.yf6{bottom:532.024000pt;}
.y17{bottom:533.773333pt;}
.ycd{bottom:541.750667pt;}
.y81{bottom:544.886667pt;}
.yaa{bottom:545.729333pt;}
.y5f{bottom:547.066667pt;}
.yf5{bottom:547.965333pt;}
.y16{bottom:550.212000pt;}
.ycc{bottom:557.692000pt;}
.y80{bottom:560.826667pt;}
.ya9{bottom:561.669333pt;}
.y15{bottom:561.829333pt;}
.y5e{bottom:563.006667pt;}
.yf4{bottom:563.905333pt;}
.y14{bottom:566.650667pt;}
.ycb{bottom:573.632000pt;}
.y7f{bottom:576.768000pt;}
.ya8{bottom:577.609333pt;}
.y13{bottom:578.268000pt;}
.y5d{bottom:578.946667pt;}
.yf3{bottom:579.845333pt;}
.yca{bottom:589.572000pt;}
.y7e{bottom:592.708000pt;}
.ya7{bottom:593.549333pt;}
.y5c{bottom:594.886667pt;}
.yf2{bottom:595.785333pt;}
.y12{bottom:599.526667pt;}
.y7d{bottom:608.648000pt;}
.ya6{bottom:609.489333pt;}
.y5b{bottom:610.828000pt;}
.yf1{bottom:611.725333pt;}
.yc9{bottom:612.452000pt;}
.y11{bottom:615.965333pt;}
.y7c{bottom:624.588000pt;}
.ya5{bottom:625.429333pt;}
.y5a{bottom:626.768000pt;}
.y10{bottom:627.582667pt;}
.yf0{bottom:627.666667pt;}
.yc8{bottom:628.392000pt;}
.y7b{bottom:640.528000pt;}
.ya4{bottom:641.370667pt;}
.y59{bottom:642.708000pt;}
.yef{bottom:643.606667pt;}
.yc7{bottom:644.333333pt;}
.yf{bottom:648.841333pt;}
.y7a{bottom:656.468000pt;}
.ya3{bottom:657.310667pt;}
.y58{bottom:658.648000pt;}
.yee{bottom:659.546667pt;}
.yc6{bottom:660.273333pt;}
.ye{bottom:665.280000pt;}
.y79{bottom:672.409333pt;}
.ya2{bottom:673.250667pt;}
.y57{bottom:674.588000pt;}
.yed{bottom:675.486667pt;}
.yd{bottom:676.897333pt;}
.yc4{bottom:682.356000pt;}
.y78{bottom:688.349333pt;}
.yc3{bottom:688.666667pt;}
.ya1{bottom:689.190667pt;}
.y56{bottom:690.529333pt;}
.yec{bottom:691.426667pt;}
.yc5{bottom:695.640000pt;}
.yc{bottom:698.156000pt;}
.y77{bottom:704.289333pt;}
.ya0{bottom:705.130667pt;}
.y55{bottom:706.469333pt;}
.yeb{bottom:707.366667pt;}
.yb{bottom:709.774667pt;}
.ya{bottom:714.594667pt;}
.y76{bottom:720.229333pt;}
.y9f{bottom:721.072000pt;}
.y54{bottom:722.409333pt;}
.yea{bottom:723.308000pt;}
.yc2{bottom:723.966667pt;}
.y9{bottom:726.212000pt;}
.yc1{bottom:735.922667pt;}
.y75{bottom:736.169333pt;}
.y9e{bottom:737.012000pt;}
.y53{bottom:738.349333pt;}
.ye9{bottom:739.248000pt;}
.y8{bottom:747.470667pt;}
.y9d{bottom:752.952000pt;}
.y52{bottom:754.289333pt;}
.ye8{bottom:755.188000pt;}
.y74{bottom:756.446667pt;}
.y9c{bottom:768.892000pt;}
.y51{bottom:770.229333pt;}
.ye7{bottom:770.678667pt;}
.y7{bottom:776.382667pt;}
.y73{bottom:776.833333pt;}
.y9b{bottom:784.832000pt;}
.yb6{bottom:786.169333pt;}
.y50{bottom:786.170667pt;}
.ye6{bottom:786.618667pt;}
.y6{bottom:793.478667pt;}
.y9a{bottom:800.772000pt;}
.y72{bottom:802.109333pt;}
.y4f{bottom:802.110667pt;}
.ye5{bottom:802.560000pt;}
.y5{bottom:811.757333pt;}
.y99{bottom:816.713333pt;}
.y4e{bottom:818.050667pt;}
.ye4{bottom:818.500000pt;}
.y4{bottom:828.853333pt;}
.y98{bottom:832.653333pt;}
.y4d{bottom:833.990667pt;}
.ye3{bottom:834.440000pt;}
.y4c{bottom:849.930667pt;}
.ye2{bottom:850.380000pt;}
.y4b{bottom:865.870667pt;}
.ye1{bottom:866.320000pt;}
.y71{bottom:881.810667pt;}
.y4a{bottom:881.812000pt;}
.ye0{bottom:882.260000pt;}
.y3{bottom:886.636000pt;}
.y70{bottom:897.750667pt;}
.y49{bottom:897.752000pt;}
.ydf{bottom:898.201333pt;}
.y48{bottom:913.692000pt;}
.yde{bottom:914.141333pt;}
.y2{bottom:923.830667pt;}
.y47{bottom:929.632000pt;}
.ydd{bottom:930.081333pt;}
.y46{bottom:945.572000pt;}
.ydc{bottom:946.021333pt;}
.y1{bottom:961.024000pt;}
.y45{bottom:961.512000pt;}
.y6f{bottom:977.452000pt;}
.y44{bottom:977.453333pt;}
.h6{height:29.244954pt;}
.ha{height:33.474560pt;}
.hb{height:36.290431pt;}
.h7{height:36.556100pt;}
.h8{height:36.817434pt;}
.h9{height:36.822767pt;}
.h4{height:40.499857pt;}
.h5{height:50.354287pt;}
.h2{height:50.359620pt;}
.h3{height:53.769190pt;}
.hc{height:61.367893pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:65.285333pt;}
.x28{left:67.853333pt;}
.x6{left:73.401333pt;}
.x5{left:74.880000pt;}
.x20{left:75.912000pt;}
.x1f{left:78.568000pt;}
.x1{left:82.312000pt;}
.x2{left:86.409333pt;}
.xd{left:101.674667pt;}
.x12{left:106.450667pt;}
.x4{left:107.720000pt;}
.x7{left:115.585333pt;}
.xf{left:118.664000pt;}
.x19{left:121.673333pt;}
.x8{left:143.990667pt;}
.x18{left:148.485333pt;}
.x9{left:154.540000pt;}
.xc{left:167.617333pt;}
.x1d{left:169.453333pt;}
.x16{left:176.446667pt;}
.x2e{left:179.625333pt;}
.x17{left:187.053333pt;}
.x2f{left:197.457333pt;}
.xa{left:200.116000pt;}
.x2d{left:208.652000pt;}
.x27{left:212.402667pt;}
.x2c{left:219.942667pt;}
.x1e{left:244.472000pt;}
.xb{left:247.429333pt;}
.x14{left:258.532000pt;}
.x29{left:264.262667pt;}
.x13{left:267.790667pt;}
.x1c{left:276.650667pt;}
.xe{left:300.680000pt;}
.x1a{left:329.970667pt;}
.x2b{left:333.737333pt;}
.x3{left:339.569333pt;}
.x2a{left:347.014667pt;}
.x22{left:415.970667pt;}
.x32{left:421.284000pt;}
.x21{left:429.253333pt;}
.x33{left:440.316000pt;}
.x25{left:457.749333pt;}
.x24{left:494.357333pt;}
.x23{left:531.510667pt;}
.x30{left:541.985333pt;}
.x26{left:545.006667pt;}
.x31{left:546.149333pt;}
.x10{left:594.729333pt;}
.x1b{left:610.330667pt;}
.x11{left:632.945333pt;}
}




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