
    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_ffa7666cc6e0449abb00cb3e.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_6680713e161e3bab7a612eac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dba5849cc4cf997a20d5451e.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_c4cef911037c9703bd7059dd.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;}
.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;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.834017px;}
.ls3{letter-spacing:1.133675px;}
.ls8{letter-spacing:2.449834px;}
.ls1{letter-spacing:2.964877px;}
.ls4{letter-spacing:2.986766px;}
.lsa{letter-spacing:2.987108px;}
.lsb{letter-spacing:2.987675px;}
.ls6{letter-spacing:2.988017px;}
.ls0{letter-spacing:2.990725px;}
.ls5{letter-spacing:2.992766px;}
.ls9{letter-spacing:2.994017px;}
.ls7{letter-spacing:17.936100px;}
.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;}
.ws60{word-spacing:-14.943900px;}
.ws26{word-spacing:-14.920027px;}
.ws23{word-spacing:-13.449600px;}
.ws51{word-spacing:-11.955150px;}
.ws59{word-spacing:-1.135736px;}
.ws45{word-spacing:-1.075961px;}
.ws88{word-spacing:-0.956410px;}
.ws67{word-spacing:-0.836858px;}
.wsa9{word-spacing:-0.358654px;}
.wsbb{word-spacing:-0.298878px;}
.wsb1{word-spacing:-0.239102px;}
.wsc7{word-spacing:-0.179327px;}
.ws6{word-spacing:-0.053798px;}
.ws100{word-spacing:-0.047821px;}
.wsbd{word-spacing:-0.002439px;}
.ws4a{word-spacing:0.000000px;}
.wsc6{word-spacing:0.006767px;}
.wsbc{word-spacing:0.007463px;}
.ws43{word-spacing:0.059776px;}
.wsaa{word-spacing:0.119551px;}
.ws52{word-spacing:0.179327px;}
.ws36{word-spacing:0.298878px;}
.ws11{word-spacing:0.322790px;}
.wsde{word-spacing:0.418429px;}
.ws53{word-spacing:0.478205px;}
.wsf1{word-spacing:0.669488px;}
.ws96{word-spacing:0.717307px;}
.ws90{word-spacing:0.777083px;}
.wsea{word-spacing:0.908591px;}
.wsb4{word-spacing:0.956410px;}
.ws97{word-spacing:1.016185px;}
.ws12{word-spacing:1.075968px;}
.wsef{word-spacing:1.147694px;}
.wsd5{word-spacing:1.255288px;}
.wscb{word-spacing:1.315063px;}
.wsc{word-spacing:1.344960px;}
.ws3a{word-spacing:1.374839px;}
.ws8f{word-spacing:1.554166px;}
.wsd8{word-spacing:1.733492px;}
.ws42{word-spacing:1.793268px;}
.ws99{word-spacing:1.912819px;}
.wsda{word-spacing:1.972595px;}
.ws1f{word-spacing:2.205734px;}
.ws3e{word-spacing:2.271473px;}
.ws4b{word-spacing:2.510575px;}
.wse2{word-spacing:2.534492px;}
.wsdf{word-spacing:2.570351px;}
.wsf8{word-spacing:2.582312px;}
.ws68{word-spacing:2.630126px;}
.ws7b{word-spacing:2.689902px;}
.wse7{word-spacing:2.773595px;}
.ws89{word-spacing:2.929004px;}
.ws85{word-spacing:2.988780px;}
.wsdc{word-spacing:3.048556px;}
.ws1e{word-spacing:3.066509px;}
.wsb5{word-spacing:3.108331px;}
.ws83{word-spacing:3.168107px;}
.ws70{word-spacing:3.287658px;}
.ws29{word-spacing:3.407209px;}
.ws1c{word-spacing:3.443098px;}
.ws65{word-spacing:3.466985px;}
.ws13{word-spacing:3.496896px;}
.wsa3{word-spacing:3.586536px;}
.ws8a{word-spacing:3.646312px;}
.ws103{word-spacing:3.682186px;}
.ws94{word-spacing:3.765863px;}
.ws66{word-spacing:3.825638px;}
.wsf0{word-spacing:3.825648px;}
.wscd{word-spacing:4.004965px;}
.ws25{word-spacing:4.034880px;}
.ws15{word-spacing:4.088678px;}
.wsac{word-spacing:4.184292px;}
.wsa5{word-spacing:4.244068px;}
.ws78{word-spacing:4.303843px;}
.ws54{word-spacing:4.423394px;}
.wsd3{word-spacing:4.542946px;}
.ws3f{word-spacing:4.602721px;}
.ws2e{word-spacing:4.662497px;}
.wse8{word-spacing:4.782060px;}
.ws6f{word-spacing:4.961375px;}
.ws8{word-spacing:5.218445px;}
.wsc5{word-spacing:5.260253px;}
.ws87{word-spacing:5.320028px;}
.ws4f{word-spacing:5.379804px;}
.ws95{word-spacing:5.439580px;}
.wsdb{word-spacing:5.499355px;}
.ws37{word-spacing:5.559131px;}
.ws6e{word-spacing:5.618906px;}
.ws91{word-spacing:5.738458px;}
.ws84{word-spacing:5.909802px;}
.wsaf{word-spacing:5.929754px;}
.ws86{word-spacing:5.938499px;}
.wsb0{word-spacing:5.944499px;}
.ws3{word-spacing:5.977560px;}
.wsfc{word-spacing:5.977575px;}
.ws57{word-spacing:6.216662px;}
.wsfa{word-spacing:6.312319px;}
.ws19{word-spacing:6.455808px;}
.ws7{word-spacing:6.509606px;}
.ws31{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.wsf5{word-spacing:6.599243px;}
.ws47{word-spacing:6.694867px;}
.ws1b{word-spacing:6.724800px;}
.ws58{word-spacing:6.814418px;}
.ws5c{word-spacing:6.874194px;}
.ws8b{word-spacing:6.933970px;}
.ws5f{word-spacing:6.993745px;}
.wsfe{word-spacing:7.029628px;}
.wsa8{word-spacing:7.113296px;}
.ws46{word-spacing:7.173072px;}
.ws69{word-spacing:7.232848px;}
.ws1d{word-spacing:7.262784px;}
.ws35{word-spacing:7.292623px;}
.ws75{word-spacing:7.352399px;}
.ws41{word-spacing:7.531726px;}
.ws18{word-spacing:7.531776px;}
.ws7a{word-spacing:7.591501px;}
.wscf{word-spacing:7.830604px;}
.ws48{word-spacing:7.950155px;}
.wsd6{word-spacing:8.009930px;}
.ws9e{word-spacing:8.069706px;}
.wsb9{word-spacing:8.189257px;}
.ws50{word-spacing:8.308808px;}
.wsca{word-spacing:8.368584px;}
.wse6{word-spacing:8.416426px;}
.wsa{word-spacing:8.500147px;}
.ws4e{word-spacing:8.547911px;}
.wsa4{word-spacing:8.607686px;}
.wsc3{word-spacing:8.667462px;}
.ws74{word-spacing:8.787013px;}
.ws8c{word-spacing:8.846789px;}
.ws98{word-spacing:8.906564px;}
.wsa6{word-spacing:8.966340px;}
.ws22{word-spacing:9.038131px;}
.wsb{word-spacing:9.091930px;}
.ws28{word-spacing:9.145667px;}
.wsce{word-spacing:9.205442px;}
.ws32{word-spacing:9.265218px;}
.ws72{word-spacing:9.324994px;}
.wsd0{word-spacing:9.564096px;}
.ws8e{word-spacing:9.623872px;}
.ws2a{word-spacing:9.743423px;}
.ws93{word-spacing:9.803198px;}
.wsba{word-spacing:9.922750px;}
.wse1{word-spacing:10.137967px;}
.wsab{word-spacing:10.161852px;}
.ws71{word-spacing:10.341179px;}
.wsb3{word-spacing:10.400954px;}
.wsf9{word-spacing:10.424891px;}
.ws92{word-spacing:10.460730px;}
.wsb2{word-spacing:10.520506px;}
.ws21{word-spacing:10.544486px;}
.wsa1{word-spacing:10.640057px;}
.ws38{word-spacing:10.699832px;}
.ws6c{word-spacing:10.879159px;}
.ws5b{word-spacing:11.058486px;}
.ws14{word-spacing:11.082470px;}
.wsf4{word-spacing:11.190020px;}
.ws102{word-spacing:11.381303px;}
.ws101{word-spacing:11.429123px;}
.ws7d{word-spacing:11.476915px;}
.ws6a{word-spacing:11.716018px;}
.ws9{word-spacing:11.781850px;}
.ws9a{word-spacing:11.895344px;}
.wsf2{word-spacing:12.002971px;}
.wsd7{word-spacing:12.134447px;}
.wsdd{word-spacing:12.253998px;}
.ws76{word-spacing:12.433325px;}
.wsf7{word-spacing:12.481177px;}
.ws5a{word-spacing:12.552876px;}
.ws33{word-spacing:12.612652px;}
.ws44{word-spacing:12.911530px;}
.wsf{word-spacing:12.965414px;}
.wsfb{word-spacing:13.007203px;}
.ws17{word-spacing:13.073011px;}
.ws7c{word-spacing:13.150632px;}
.ws7f{word-spacing:13.329959px;}
.wsc0{word-spacing:13.509286px;}
.wsfd{word-spacing:13.533230px;}
.ws6d{word-spacing:13.569061px;}
.ws56{word-spacing:13.688612px;}
.ws9c{word-spacing:13.748388px;}
.ws81{word-spacing:13.867939px;}
.wsd1{word-spacing:13.927715px;}
.wsf6{word-spacing:13.963615px;}
.wsc4{word-spacing:13.987490px;}
.wsbf{word-spacing:14.047266px;}
.wse0{word-spacing:14.298359px;}
.wscc{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wsae{word-spacing:14.465695px;}
.wse3{word-spacing:14.489642px;}
.wsd{word-spacing:14.686963px;}
.ws73{word-spacing:14.943900px;}
.ws16{word-spacing:14.955955px;}
.ws77{word-spacing:15.003676px;}
.wsa2{word-spacing:15.063451px;}
.ws20{word-spacing:15.117350px;}
.ws39{word-spacing:15.242778px;}
.wsb8{word-spacing:15.422105px;}
.ws7e{word-spacing:15.481880px;}
.wsd9{word-spacing:15.780758px;}
.ws5e{word-spacing:16.199188px;}
.wse{word-spacing:16.300915px;}
.ws3b{word-spacing:16.318739px;}
.wsc2{word-spacing:16.557841px;}
.ws34{word-spacing:16.677392px;}
.ws24{word-spacing:16.838899px;}
.ws2f{word-spacing:16.976270px;}
.wsc1{word-spacing:17.275148px;}
.ws5d{word-spacing:17.753353px;}
.wsd4{word-spacing:17.872904px;}
.ws49{word-spacing:18.112007px;}
.ws79{word-spacing:18.171782px;}
.ws61{word-spacing:18.590212px;}
.ws1a{word-spacing:18.668045px;}
.ws4d{word-spacing:18.769538px;}
.wsff{word-spacing:18.889137px;}
.ws80{word-spacing:18.948865px;}
.ws9f{word-spacing:19.068416px;}
.wsb7{word-spacing:19.307519px;}
.wsa0{word-spacing:19.367294px;}
.wsad{word-spacing:19.427070px;}
.ws82{word-spacing:19.486846px;}
.ws2d{word-spacing:19.606397px;}
.ws3d{word-spacing:19.905275px;}
.ws30{word-spacing:19.965050px;}
.wsc9{word-spacing:20.024826px;}
.ws64{word-spacing:20.084602px;}
.ws62{word-spacing:20.503031px;}
.ws2c{word-spacing:20.742133px;}
.ws10{word-spacing:20.819981px;}
.ws2{word-spacing:20.861684px;}
.ws40{word-spacing:20.981236px;}
.wsc8{word-spacing:21.100787px;}
.ws63{word-spacing:21.220338px;}
.wsf3{word-spacing:21.327988px;}
.wsb6{word-spacing:21.519216px;}
.ws2b{word-spacing:21.698543px;}
.ws9d{word-spacing:21.758318px;}
.ws9b{word-spacing:21.818094px;}
.ws8d{word-spacing:21.997421px;}
.wsbe{word-spacing:22.595177px;}
.wsa7{word-spacing:22.714728px;}
.wsec{word-spacing:22.858247px;}
.ws4{word-spacing:22.947937px;}
.wse5{word-spacing:23.145170px;}
.ws3c{word-spacing:23.372260px;}
.ws55{word-spacing:23.551586px;}
.ws4c{word-spacing:23.611362px;}
.ws6b{word-spacing:24.388445px;}
.wsd2{word-spacing:24.507996px;}
.wse9{word-spacing:24.962353px;}
.wse4{word-spacing:26.444792px;}
.ws27{word-spacing:26.719693px;}
.wsed{word-spacing:26.731715px;}
.wseb{word-spacing:28.070692px;}
.wsee{word-spacing:38.495583px;}
._c{margin-left:-7.303724px;}
._3{margin-left:-6.049313px;}
._2{margin-left:-5.021163px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._4{margin-left:-1.135743px;}
._7{width:1.052053px;}
._8{width:2.964877px;}
._a{width:13.090869px;}
._11{width:14.405920px;}
._10{width:20.263934px;}
._6{width:22.236523px;}
._e{width:24.388450px;}
._f{width:25.823059px;}
._5{width:27.114394px;}
._b{width:28.393415px;}
._d{width:29.887800px;}
._9{width:31.681068px;}
._12{width:35.028502px;}
._13{width:44.090593px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y35{bottom:113.332500px;}
.y13e{bottom:126.783000px;}
.y34{bottom:131.265000px;}
.y13d{bottom:140.232000px;}
.y52{bottom:149.197500px;}
.y33{bottom:149.199000px;}
.y13c{bottom:153.681000px;}
.yb2{bottom:167.130000px;}
.y32{bottom:167.131500px;}
.ydf{bottom:169.038000px;}
.y13b{bottom:181.216500px;}
.yb1{bottom:185.062500px;}
.y51{bottom:185.064000px;}
.yde{bottom:186.970500px;}
.y13a{bottom:194.665500px;}
.y31{bottom:197.620500px;}
.y50{bottom:202.996500px;}
.ydd{bottom:204.903000px;}
.y139{bottom:208.114500px;}
.yb0{bottom:208.497000px;}
.y4f{bottom:220.929000px;}
.y138{bottom:221.565000px;}
.ydc{bottom:222.837000px;}
.y137{bottom:235.014000px;}
.yaf{bottom:238.446000px;}
.y4e{bottom:238.861500px;}
.y81{bottom:239.943000px;}
.ydb{bottom:240.769500px;}
.y136{bottom:249.099000px;}
.y30{bottom:255.859500px;}
.yae{bottom:256.378500px;}
.y4d{bottom:256.794000px;}
.y80{bottom:257.875500px;}
.yda{bottom:258.702000px;}
.y135{bottom:262.548000px;}
.y2f{bottom:270.802500px;}
.yad{bottom:274.311000px;}
.y109{bottom:274.726500px;}
.y4c{bottom:274.728000px;}
.y7f{bottom:275.808000px;}
.y134{bottom:275.998500px;}
.yd9{bottom:278.541000px;}
.y2e{bottom:287.055000px;}
.y133{bottom:289.447500px;}
.yac{bottom:292.243500px;}
.y4b{bottom:292.660500px;}
.y7e{bottom:293.740500px;}
.yd8{bottom:296.475000px;}
.y2d{bottom:301.999500px;}
.y132{bottom:303.532500px;}
.yab{bottom:310.176000px;}
.y4a{bottom:310.593000px;}
.y108{bottom:311.068500px;}
.y7d{bottom:311.673000px;}
.yd7{bottom:314.407500px;}
.y2c{bottom:316.942500px;}
.y131{bottom:316.981500px;}
.yaa{bottom:328.110000px;}
.y49{bottom:328.525500px;}
.y107{bottom:329.001000px;}
.y7c{bottom:329.607000px;}
.y130{bottom:330.432000px;}
.y2b{bottom:331.887000px;}
.yd6{bottom:332.340000px;}
.y12f{bottom:343.881000px;}
.ya9{bottom:346.042500px;}
.y48{bottom:346.458000px;}
.y2a{bottom:346.831500px;}
.y106{bottom:346.933500px;}
.y7b{bottom:347.539500px;}
.yd5{bottom:350.272500px;}
.y12e{bottom:357.330000px;}
.y29{bottom:361.774500px;}
.ya8{bottom:363.975000px;}
.y47{bottom:364.390500px;}
.y105{bottom:364.866000px;}
.y7a{bottom:365.472000px;}
.yd4{bottom:368.205000px;}
.y12d{bottom:370.780500px;}
.y28{bottom:376.719000px;}
.ya7{bottom:381.907500px;}
.y46{bottom:382.324500px;}
.y104{bottom:382.800000px;}
.y79{bottom:383.404500px;}
.y12c{bottom:384.229500px;}
.yd3{bottom:388.045500px;}
.y27{bottom:391.663500px;}
.y12b{bottom:397.678500px;}
.ya6{bottom:399.840000px;}
.y45{bottom:400.257000px;}
.y103{bottom:400.732500px;}
.y78{bottom:401.337000px;}
.yd2{bottom:405.978000px;}
.y26{bottom:407.914500px;}
.y12a{bottom:411.763500px;}
.ya5{bottom:417.772500px;}
.y44{bottom:418.189500px;}
.y77{bottom:420.351000px;}
.y25{bottom:422.859000px;}
.yd1{bottom:423.910500px;}
.y129{bottom:425.214000px;}
.y102{bottom:426.226500px;}
.ya4{bottom:435.706500px;}
.y43{bottom:436.122000px;}
.y24{bottom:437.803500px;}
.y76{bottom:438.283500px;}
.y128{bottom:438.663000px;}
.yd0{bottom:441.843000px;}
.y23{bottom:452.746500px;}
.y127{bottom:452.748000px;}
.ya3{bottom:453.865500px;}
.y42{bottom:454.054500px;}
.y75{bottom:456.216000px;}
.y101{bottom:458.289000px;}
.ycf{bottom:459.777000px;}
.y126{bottom:466.197000px;}
.y22{bottom:467.691000px;}
.ya2{bottom:471.798000px;}
.y41{bottom:471.988500px;}
.y74{bottom:474.148500px;}
.y100{bottom:476.221500px;}
.yce{bottom:477.709500px;}
.y125{bottom:479.647500px;}
.y21{bottom:482.635500px;}
.ya1{bottom:489.730500px;}
.y40{bottom:489.921000px;}
.y73{bottom:492.081000px;}
.y124{bottom:493.096500px;}
.yff{bottom:494.154000px;}
.y20{bottom:498.886500px;}
.y123{bottom:506.545500px;}
.ya0{bottom:507.664500px;}
.y3f{bottom:507.853500px;}
.y72{bottom:510.015000px;}
.ycd{bottom:511.792500px;}
.yfe{bottom:512.088000px;}
.y1f{bottom:513.831000px;}
.y122{bottom:520.630500px;}
.y9f{bottom:525.597000px;}
.y3e{bottom:525.786000px;}
.y71{bottom:527.947500px;}
.y1e{bottom:528.775500px;}
.ycc{bottom:529.725000px;}
.yfd{bottom:530.020500px;}
.y121{bottom:534.079500px;}
.y9e{bottom:543.529500px;}
.y1d{bottom:543.718500px;}
.y70{bottom:545.880000px;}
.yfc{bottom:548.428500px;}
.y1c{bottom:558.663000px;}
.y9d{bottom:561.462000px;}
.y3d{bottom:561.651000px;}
.y120{bottom:563.131500px;}
.y6f{bottom:563.812500px;}
.yfb{bottom:566.361000px;}
.y1b{bottom:573.607500px;}
.ycb{bottom:573.955500px;}
.y9c{bottom:579.394500px;}
.y3c{bottom:579.585000px;}
.y6e{bottom:581.745000px;}
.yfa{bottom:584.293500px;}
.y1a{bottom:588.550500px;}
.yca{bottom:591.888000px;}
.y9b{bottom:597.327000px;}
.y3b{bottom:597.517500px;}
.y6d{bottom:600.759000px;}
.y11f{bottom:600.868500px;}
.yf9{bottom:602.227500px;}
.y19{bottom:603.495000px;}
.yc9{bottom:609.820500px;}
.y9a{bottom:615.261000px;}
.y3a{bottom:615.450000px;}
.y18{bottom:618.439500px;}
.y6c{bottom:618.691500px;}
.y11e{bottom:618.801000px;}
.yf8{bottom:620.160000px;}
.yc8{bottom:627.754500px;}
.y99{bottom:633.193500px;}
.y17{bottom:633.382500px;}
.y6b{bottom:636.624000px;}
.y11d{bottom:636.733500px;}
.yf7{bottom:638.092500px;}
.yc7{bottom:645.687000px;}
.y16{bottom:648.327000px;}
.y39{bottom:651.315000px;}
.y6a{bottom:654.556500px;}
.y11c{bottom:654.667500px;}
.yf6{bottom:656.500500px;}
.y98{bottom:656.626500px;}
.y15{bottom:663.271500px;}
.yc6{bottom:665.526000px;}
.y38{bottom:669.247500px;}
.y69{bottom:672.490500px;}
.yf5{bottom:674.433000px;}
.y14{bottom:678.214500px;}
.yc5{bottom:683.458500px;}
.y11b{bottom:684.166500px;}
.y97{bottom:686.575500px;}
.y37{bottom:687.181500px;}
.y68{bottom:690.423000px;}
.yf4{bottom:692.367000px;}
.y13{bottom:693.159000px;}
.yc4{bottom:701.392500px;}
.y96{bottom:704.508000px;}
.y36{bottom:705.114000px;}
.y12{bottom:708.102000px;}
.y67{bottom:708.355500px;}
.yf3{bottom:710.299500px;}
.yc3{bottom:719.325000px;}
.y11a{bottom:721.903500px;}
.y95{bottom:722.440500px;}
.y11{bottom:723.046500px;}
.y66{bottom:726.288000px;}
.yf2{bottom:735.793500px;}
.yc2{bottom:737.257500px;}
.y119{bottom:739.836000px;}
.y94{bottom:740.374500px;}
.y65{bottom:744.220500px;}
.yc1{bottom:755.190000px;}
.y118{bottom:757.768500px;}
.y64{bottom:762.153000px;}
.y93{bottom:764.374500px;}
.yf1{bottom:767.856000px;}
.yc0{bottom:773.122500px;}
.y117{bottom:775.701000px;}
.y63{bottom:781.167000px;}
.y92{bottom:782.308500px;}
.yf0{bottom:785.788500px;}
.ybf{bottom:791.056500px;}
.y116{bottom:793.635000px;}
.y62{bottom:799.099500px;}
.y10{bottom:799.906500px;}
.yef{bottom:803.721000px;}
.ybe{bottom:808.989000px;}
.y115{bottom:811.567500px;}
.y91{bottom:812.256000px;}
.y61{bottom:817.032000px;}
.yf{bottom:819.139500px;}
.yee{bottom:822.130500px;}
.y114{bottom:829.500000px;}
.y90{bottom:830.188500px;}
.y60{bottom:834.966000px;}
.ybd{bottom:838.303500px;}
.ye{bottom:838.372500px;}
.yed{bottom:840.063000px;}
.y113{bottom:847.432500px;}
.y8f{bottom:848.121000px;}
.y5f{bottom:852.898500px;}
.yd{bottom:857.605500px;}
.yec{bottom:857.995500px;}
.y112{bottom:865.365000px;}
.y8e{bottom:866.055000px;}
.y5e{bottom:870.831000px;}
.yeb{bottom:875.928000px;}
.yc{bottom:876.838500px;}
.ybc{bottom:882.534000px;}
.y111{bottom:883.297500px;}
.y8d{bottom:883.987500px;}
.y5d{bottom:888.763500px;}
.yea{bottom:893.860500px;}
.ybb{bottom:900.466500px;}
.y110{bottom:901.231500px;}
.y8c{bottom:901.920000px;}
.y5c{bottom:906.696000px;}
.ye9{bottom:912.270000px;}
.yb{bottom:915.304500px;}
.y7{bottom:918.042000px;}
.yba{bottom:918.399000px;}
.y10f{bottom:919.164000px;}
.y8b{bottom:920.079000px;}
.ye8{bottom:930.202500px;}
.ya{bottom:934.537500px;}
.y5b{bottom:935.820000px;}
.yb9{bottom:936.333000px;}
.y6{bottom:936.534000px;}
.y10e{bottom:937.096500px;}
.y8a{bottom:938.013000px;}
.ye7{bottom:948.135000px;}
.y9{bottom:953.770500px;}
.yb8{bottom:954.265500px;}
.y5{bottom:955.027500px;}
.y10d{bottom:955.029000px;}
.y89{bottom:955.945500px;}
.ye6{bottom:966.067500px;}
.yb7{bottom:972.198000px;}
.y10c{bottom:972.961500px;}
.y8{bottom:973.003500px;}
.y5a{bottom:973.024500px;}
.y4{bottom:973.521000px;}
.y88{bottom:973.878000px;}
.ye5{bottom:984.000000px;}
.yb6{bottom:990.130500px;}
.y59{bottom:990.957000px;}
.y87{bottom:991.810500px;}
.y10b{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.ye4{bottom:1002.409500px;}
.y144{bottom:1005.487500px;}
.yb5{bottom:1008.063000px;}
.y58{bottom:1008.889500px;}
.y86{bottom:1009.743000px;}
.y10a{bottom:1009.971000px;}
.y143{bottom:1018.936500px;}
.ye3{bottom:1020.342000px;}
.y57{bottom:1026.823500px;}
.y85{bottom:1027.675500px;}
.yb4{bottom:1027.903500px;}
.y142{bottom:1032.387000px;}
.ye2{bottom:1038.274500px;}
.y2{bottom:1039.309500px;}
.y56{bottom:1044.756000px;}
.y84{bottom:1045.609500px;}
.yb3{bottom:1045.836000px;}
.ye1{bottom:1056.207000px;}
.y141{bottom:1059.286500px;}
.y83{bottom:1063.542000px;}
.y55{bottom:1063.768500px;}
.y140{bottom:1072.735500px;}
.ye0{bottom:1074.139500px;}
.y1{bottom:1081.152000px;}
.y54{bottom:1081.701000px;}
.y13f{bottom:1086.184500px;}
.y82{bottom:1099.633500px;}
.y53{bottom:1099.635000px;}
.h8{height:32.900573px;}
.h9{height:33.140573px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h5{height:44.909572px;}
.h2{height:45.238339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:73.446000px;}
.x12{left:77.835000px;}
.x2{left:89.247000px;}
.x5{left:91.411500px;}
.x28{left:94.857000px;}
.x4{left:98.764500px;}
.x21{left:100.159500px;}
.x14{left:104.325000px;}
.x1{left:115.858500px;}
.x15{left:136.798500px;}
.x6{left:140.151000px;}
.x7{left:146.017500px;}
.x11{left:152.670000px;}
.x3{left:155.559000px;}
.x26{left:196.570500px;}
.x1b{left:212.268000px;}
.x1e{left:215.959500px;}
.x27{left:219.897000px;}
.x22{left:224.275500px;}
.x9{left:329.890500px;}
.x29{left:331.377000px;}
.xa{left:360.819000px;}
.xc{left:371.125500px;}
.xb{left:381.127500px;}
.x8{left:403.542000px;}
.x18{left:459.000000px;}
.x17{left:463.389000px;}
.x1c{left:467.967000px;}
.x24{left:481.336500px;}
.x1d{left:482.910000px;}
.x19{left:489.879000px;}
.x1f{left:497.259000px;}
.x2a{left:512.619000px;}
.x1a{left:526.470000px;}
.x16{left:538.783500px;}
.x23{left:543.846000px;}
.xf{left:590.386500px;}
.xe{left:607.737000px;}
.x20{left:618.796500px;}
.x25{left:624.087000px;}
.x10{left:625.612500px;}
.xd{left:669.856500px;}
.x2d{left:694.245000px;}
.x2b{left:734.148000px;}
.x2c{left:748.420500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.741348pt;}
.ls3{letter-spacing:1.007711pt;}
.ls8{letter-spacing:2.177630pt;}
.ls1{letter-spacing:2.635446pt;}
.ls4{letter-spacing:2.654903pt;}
.lsa{letter-spacing:2.655207pt;}
.lsb{letter-spacing:2.655711pt;}
.ls6{letter-spacing:2.656015pt;}
.ls0{letter-spacing:2.658422pt;}
.ls5{letter-spacing:2.660237pt;}
.ls9{letter-spacing:2.661348pt;}
.ls7{letter-spacing:15.943200pt;}
.ws5{word-spacing:-14.611867pt;}
.ws60{word-spacing:-13.283467pt;}
.ws26{word-spacing:-13.262246pt;}
.ws23{word-spacing:-11.955200pt;}
.ws51{word-spacing:-10.626800pt;}
.ws59{word-spacing:-1.009543pt;}
.ws45{word-spacing:-0.956410pt;}
.ws88{word-spacing:-0.850142pt;}
.ws67{word-spacing:-0.743874pt;}
.wsa9{word-spacing:-0.318803pt;}
.wsbb{word-spacing:-0.265669pt;}
.wsb1{word-spacing:-0.212535pt;}
.wsc7{word-spacing:-0.159402pt;}
.ws6{word-spacing:-0.047821pt;}
.ws100{word-spacing:-0.042507pt;}
.wsbd{word-spacing:-0.002168pt;}
.ws4a{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.006015pt;}
.wsbc{word-spacing:0.006634pt;}
.ws43{word-spacing:0.053134pt;}
.wsaa{word-spacing:0.106268pt;}
.ws52{word-spacing:0.159402pt;}
.ws36{word-spacing:0.265669pt;}
.ws11{word-spacing:0.286925pt;}
.wsde{word-spacing:0.371937pt;}
.ws53{word-spacing:0.425071pt;}
.wsf1{word-spacing:0.595101pt;}
.ws96{word-spacing:0.637606pt;}
.ws90{word-spacing:0.690740pt;}
.wsea{word-spacing:0.807637pt;}
.wsb4{word-spacing:0.850142pt;}
.ws97{word-spacing:0.903276pt;}
.ws12{word-spacing:0.956416pt;}
.wsef{word-spacing:1.020173pt;}
.wsd5{word-spacing:1.115811pt;}
.wscb{word-spacing:1.168945pt;}
.wsc{word-spacing:1.195520pt;}
.ws3a{word-spacing:1.222079pt;}
.ws8f{word-spacing:1.381481pt;}
.wsd8{word-spacing:1.540882pt;}
.ws42{word-spacing:1.594016pt;}
.ws99{word-spacing:1.700284pt;}
.wsda{word-spacing:1.753418pt;}
.ws1f{word-spacing:1.960653pt;}
.ws3e{word-spacing:2.019087pt;}
.ws4b{word-spacing:2.231622pt;}
.wse2{word-spacing:2.252882pt;}
.wsdf{word-spacing:2.284756pt;}
.wsf8{word-spacing:2.295389pt;}
.ws68{word-spacing:2.337890pt;}
.ws7b{word-spacing:2.391024pt;}
.wse7{word-spacing:2.465418pt;}
.ws89{word-spacing:2.603559pt;}
.ws85{word-spacing:2.656693pt;}
.wsdc{word-spacing:2.709827pt;}
.ws1e{word-spacing:2.725786pt;}
.wsb5{word-spacing:2.762961pt;}
.ws83{word-spacing:2.816095pt;}
.ws70{word-spacing:2.922363pt;}
.ws29{word-spacing:3.028630pt;}
.ws1c{word-spacing:3.060531pt;}
.ws65{word-spacing:3.081764pt;}
.ws13{word-spacing:3.108352pt;}
.wsa3{word-spacing:3.188032pt;}
.ws8a{word-spacing:3.241166pt;}
.ws103{word-spacing:3.273054pt;}
.ws94{word-spacing:3.347434pt;}
.ws66{word-spacing:3.400567pt;}
.wsf0{word-spacing:3.400576pt;}
.wscd{word-spacing:3.559969pt;}
.ws25{word-spacing:3.586560pt;}
.ws15{word-spacing:3.634381pt;}
.wsac{word-spacing:3.719371pt;}
.wsa5{word-spacing:3.772505pt;}
.ws78{word-spacing:3.825638pt;}
.ws54{word-spacing:3.931906pt;}
.wsd3{word-spacing:4.038174pt;}
.ws3f{word-spacing:4.091308pt;}
.ws2e{word-spacing:4.144442pt;}
.wse8{word-spacing:4.250720pt;}
.ws6f{word-spacing:4.410111pt;}
.ws8{word-spacing:4.638618pt;}
.wsc5{word-spacing:4.675780pt;}
.ws87{word-spacing:4.728914pt;}
.ws4f{word-spacing:4.782048pt;}
.ws95{word-spacing:4.835182pt;}
.wsdb{word-spacing:4.888316pt;}
.ws37{word-spacing:4.941450pt;}
.ws6e{word-spacing:4.994583pt;}
.ws91{word-spacing:5.100851pt;}
.ws84{word-spacing:5.253157pt;}
.wsaf{word-spacing:5.270893pt;}
.ws86{word-spacing:5.278666pt;}
.wsb0{word-spacing:5.283999pt;}
.ws3{word-spacing:5.313387pt;}
.wsfc{word-spacing:5.313400pt;}
.ws57{word-spacing:5.525922pt;}
.wsfa{word-spacing:5.610950pt;}
.ws19{word-spacing:5.738496pt;}
.ws7{word-spacing:5.786317pt;}
.ws31{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.wsf5{word-spacing:5.865994pt;}
.ws47{word-spacing:5.950993pt;}
.ws1b{word-spacing:5.977600pt;}
.ws58{word-spacing:6.057261pt;}
.ws5c{word-spacing:6.110395pt;}
.ws8b{word-spacing:6.163529pt;}
.ws5f{word-spacing:6.216662pt;}
.wsfe{word-spacing:6.248558pt;}
.wsa8{word-spacing:6.322930pt;}
.ws46{word-spacing:6.376064pt;}
.ws69{word-spacing:6.429198pt;}
.ws1d{word-spacing:6.455808pt;}
.ws35{word-spacing:6.482332pt;}
.ws75{word-spacing:6.535466pt;}
.ws41{word-spacing:6.694867pt;}
.ws18{word-spacing:6.694912pt;}
.ws7a{word-spacing:6.748001pt;}
.wscf{word-spacing:6.960537pt;}
.ws48{word-spacing:7.066804pt;}
.wsd6{word-spacing:7.119938pt;}
.ws9e{word-spacing:7.173072pt;}
.wsb9{word-spacing:7.279340pt;}
.ws50{word-spacing:7.385607pt;}
.wsca{word-spacing:7.438741pt;}
.wse6{word-spacing:7.481267pt;}
.wsa{word-spacing:7.555686pt;}
.ws4e{word-spacing:7.598143pt;}
.wsa4{word-spacing:7.651277pt;}
.wsc3{word-spacing:7.704411pt;}
.ws74{word-spacing:7.810678pt;}
.ws8c{word-spacing:7.863812pt;}
.ws98{word-spacing:7.916946pt;}
.wsa6{word-spacing:7.970080pt;}
.ws22{word-spacing:8.033894pt;}
.wsb{word-spacing:8.081715pt;}
.ws28{word-spacing:8.129482pt;}
.wsce{word-spacing:8.182615pt;}
.ws32{word-spacing:8.235749pt;}
.ws72{word-spacing:8.288883pt;}
.wsd0{word-spacing:8.501419pt;}
.ws8e{word-spacing:8.554553pt;}
.ws2a{word-spacing:8.660820pt;}
.ws93{word-spacing:8.713954pt;}
.wsba{word-spacing:8.820222pt;}
.wse1{word-spacing:9.011526pt;}
.wsab{word-spacing:9.032757pt;}
.ws71{word-spacing:9.192159pt;}
.wsb3{word-spacing:9.245293pt;}
.wsf9{word-spacing:9.266570pt;}
.ws92{word-spacing:9.298427pt;}
.wsb2{word-spacing:9.351561pt;}
.ws21{word-spacing:9.372877pt;}
.wsa1{word-spacing:9.457828pt;}
.ws38{word-spacing:9.510962pt;}
.ws6c{word-spacing:9.670364pt;}
.ws5b{word-spacing:9.829765pt;}
.ws14{word-spacing:9.851085pt;}
.wsf4{word-spacing:9.946685pt;}
.ws102{word-spacing:10.116714pt;}
.ws101{word-spacing:10.159221pt;}
.ws7d{word-spacing:10.201702pt;}
.ws6a{word-spacing:10.414238pt;}
.ws9{word-spacing:10.472755pt;}
.ws9a{word-spacing:10.573639pt;}
.wsf2{word-spacing:10.669307pt;}
.wsd7{word-spacing:10.786175pt;}
.wsdd{word-spacing:10.892443pt;}
.ws76{word-spacing:11.051844pt;}
.wsf7{word-spacing:11.094379pt;}
.ws5a{word-spacing:11.158112pt;}
.ws33{word-spacing:11.211246pt;}
.ws44{word-spacing:11.476915pt;}
.wsf{word-spacing:11.524813pt;}
.wsfb{word-spacing:11.561958pt;}
.ws17{word-spacing:11.620454pt;}
.ws7c{word-spacing:11.689451pt;}
.ws7f{word-spacing:11.848852pt;}
.wsc0{word-spacing:12.008254pt;}
.wsfd{word-spacing:12.029538pt;}
.ws6d{word-spacing:12.061388pt;}
.ws56{word-spacing:12.167655pt;}
.ws9c{word-spacing:12.220789pt;}
.ws81{word-spacing:12.327057pt;}
.wsd1{word-spacing:12.380191pt;}
.wsf6{word-spacing:12.412102pt;}
.wsc4{word-spacing:12.433325pt;}
.wsbf{word-spacing:12.486459pt;}
.wse0{word-spacing:12.709653pt;}
.wscc{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wsae{word-spacing:12.858396pt;}
.wse3{word-spacing:12.879682pt;}
.wsd{word-spacing:13.055078pt;}
.ws73{word-spacing:13.283467pt;}
.ws16{word-spacing:13.294182pt;}
.ws77{word-spacing:13.336601pt;}
.wsa2{word-spacing:13.389734pt;}
.ws20{word-spacing:13.437645pt;}
.ws39{word-spacing:13.549136pt;}
.wsb8{word-spacing:13.708538pt;}
.ws7e{word-spacing:13.761671pt;}
.wsd9{word-spacing:14.027341pt;}
.ws5e{word-spacing:14.399278pt;}
.wse{word-spacing:14.489702pt;}
.ws3b{word-spacing:14.505546pt;}
.wsc2{word-spacing:14.718081pt;}
.ws34{word-spacing:14.824349pt;}
.ws24{word-spacing:14.967910pt;}
.ws2f{word-spacing:15.090018pt;}
.wsc1{word-spacing:15.355687pt;}
.ws5d{word-spacing:15.780758pt;}
.wsd4{word-spacing:15.887026pt;}
.ws49{word-spacing:16.099562pt;}
.ws79{word-spacing:16.152695pt;}
.ws61{word-spacing:16.524633pt;}
.ws1a{word-spacing:16.593818pt;}
.ws4d{word-spacing:16.684034pt;}
.wsff{word-spacing:16.790344pt;}
.ws80{word-spacing:16.843436pt;}
.ws9f{word-spacing:16.949703pt;}
.wsb7{word-spacing:17.162239pt;}
.wsa0{word-spacing:17.215373pt;}
.wsad{word-spacing:17.268507pt;}
.ws82{word-spacing:17.321641pt;}
.ws2d{word-spacing:17.427908pt;}
.ws3d{word-spacing:17.693578pt;}
.ws30{word-spacing:17.746711pt;}
.wsc9{word-spacing:17.799845pt;}
.ws64{word-spacing:17.852979pt;}
.ws62{word-spacing:18.224916pt;}
.ws2c{word-spacing:18.437452pt;}
.ws10{word-spacing:18.506650pt;}
.ws2{word-spacing:18.543719pt;}
.ws40{word-spacing:18.649987pt;}
.wsc8{word-spacing:18.756255pt;}
.ws63{word-spacing:18.862523pt;}
.wsf3{word-spacing:18.958211pt;}
.wsb6{word-spacing:19.128192pt;}
.ws2b{word-spacing:19.287594pt;}
.ws9d{word-spacing:19.340727pt;}
.ws9b{word-spacing:19.393861pt;}
.ws8d{word-spacing:19.553263pt;}
.wsbe{word-spacing:20.084602pt;}
.wsa7{word-spacing:20.190869pt;}
.wsec{word-spacing:20.318442pt;}
.ws4{word-spacing:20.398166pt;}
.wse5{word-spacing:20.573485pt;}
.ws3c{word-spacing:20.775342pt;}
.ws55{word-spacing:20.934743pt;}
.ws4c{word-spacing:20.987877pt;}
.ws6b{word-spacing:21.678618pt;}
.wsd2{word-spacing:21.784885pt;}
.wse9{word-spacing:22.188758pt;}
.wse4{word-spacing:23.506482pt;}
.ws27{word-spacing:23.750838pt;}
.wsed{word-spacing:23.761525pt;}
.wseb{word-spacing:24.951726pt;}
.wsee{word-spacing:34.218296pt;}
._c{margin-left:-6.492199pt;}
._3{margin-left:-5.377167pt;}
._2{margin-left:-4.463256pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._4{margin-left:-1.009549pt;}
._7{width:0.935158pt;}
._8{width:2.635446pt;}
._a{width:11.636328pt;}
._11{width:12.805262pt;}
._10{width:18.012386pt;}
._6{width:19.765798pt;}
._e{width:21.678622pt;}
._f{width:22.953830pt;}
._5{width:24.101683pt;}
._b{width:25.238591pt;}
._d{width:26.566933pt;}
._9{width:28.160949pt;}
._12{width:31.136446pt;}
._13{width:39.191638pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:100.740000pt;}
.y13e{bottom:112.696000pt;}
.y34{bottom:116.680000pt;}
.y13d{bottom:124.650667pt;}
.y52{bottom:132.620000pt;}
.y33{bottom:132.621333pt;}
.y13c{bottom:136.605333pt;}
.yb2{bottom:148.560000pt;}
.y32{bottom:148.561333pt;}
.ydf{bottom:150.256000pt;}
.y13b{bottom:161.081333pt;}
.yb1{bottom:164.500000pt;}
.y51{bottom:164.501333pt;}
.yde{bottom:166.196000pt;}
.y13a{bottom:173.036000pt;}
.y31{bottom:175.662667pt;}
.y50{bottom:180.441333pt;}
.ydd{bottom:182.136000pt;}
.y139{bottom:184.990667pt;}
.yb0{bottom:185.330667pt;}
.y4f{bottom:196.381333pt;}
.y138{bottom:196.946667pt;}
.ydc{bottom:198.077333pt;}
.y137{bottom:208.901333pt;}
.yaf{bottom:211.952000pt;}
.y4e{bottom:212.321333pt;}
.y81{bottom:213.282667pt;}
.ydb{bottom:214.017333pt;}
.y136{bottom:221.421333pt;}
.y30{bottom:227.430667pt;}
.yae{bottom:227.892000pt;}
.y4d{bottom:228.261333pt;}
.y80{bottom:229.222667pt;}
.yda{bottom:229.957333pt;}
.y135{bottom:233.376000pt;}
.y2f{bottom:240.713333pt;}
.yad{bottom:243.832000pt;}
.y109{bottom:244.201333pt;}
.y4c{bottom:244.202667pt;}
.y7f{bottom:245.162667pt;}
.y134{bottom:245.332000pt;}
.yd9{bottom:247.592000pt;}
.y2e{bottom:255.160000pt;}
.y133{bottom:257.286667pt;}
.yac{bottom:259.772000pt;}
.y4b{bottom:260.142667pt;}
.y7e{bottom:261.102667pt;}
.yd8{bottom:263.533333pt;}
.y2d{bottom:268.444000pt;}
.y132{bottom:269.806667pt;}
.yab{bottom:275.712000pt;}
.y4a{bottom:276.082667pt;}
.y108{bottom:276.505333pt;}
.y7d{bottom:277.042667pt;}
.yd7{bottom:279.473333pt;}
.y2c{bottom:281.726667pt;}
.y131{bottom:281.761333pt;}
.yaa{bottom:291.653333pt;}
.y49{bottom:292.022667pt;}
.y107{bottom:292.445333pt;}
.y7c{bottom:292.984000pt;}
.y130{bottom:293.717333pt;}
.y2b{bottom:295.010667pt;}
.yd6{bottom:295.413333pt;}
.y12f{bottom:305.672000pt;}
.ya9{bottom:307.593333pt;}
.y48{bottom:307.962667pt;}
.y2a{bottom:308.294667pt;}
.y106{bottom:308.385333pt;}
.y7b{bottom:308.924000pt;}
.yd5{bottom:311.353333pt;}
.y12e{bottom:317.626667pt;}
.y29{bottom:321.577333pt;}
.ya8{bottom:323.533333pt;}
.y47{bottom:323.902667pt;}
.y105{bottom:324.325333pt;}
.y7a{bottom:324.864000pt;}
.yd4{bottom:327.293333pt;}
.y12d{bottom:329.582667pt;}
.y28{bottom:334.861333pt;}
.ya7{bottom:339.473333pt;}
.y46{bottom:339.844000pt;}
.y104{bottom:340.266667pt;}
.y79{bottom:340.804000pt;}
.y12c{bottom:341.537333pt;}
.yd3{bottom:344.929333pt;}
.y27{bottom:348.145333pt;}
.y12b{bottom:353.492000pt;}
.ya6{bottom:355.413333pt;}
.y45{bottom:355.784000pt;}
.y103{bottom:356.206667pt;}
.y78{bottom:356.744000pt;}
.yd2{bottom:360.869333pt;}
.y26{bottom:362.590667pt;}
.y12a{bottom:366.012000pt;}
.ya5{bottom:371.353333pt;}
.y44{bottom:371.724000pt;}
.y77{bottom:373.645333pt;}
.y25{bottom:375.874667pt;}
.yd1{bottom:376.809333pt;}
.y129{bottom:377.968000pt;}
.y102{bottom:378.868000pt;}
.ya4{bottom:387.294667pt;}
.y43{bottom:387.664000pt;}
.y24{bottom:389.158667pt;}
.y76{bottom:389.585333pt;}
.y128{bottom:389.922667pt;}
.yd0{bottom:392.749333pt;}
.y23{bottom:402.441333pt;}
.y127{bottom:402.442667pt;}
.ya3{bottom:403.436000pt;}
.y42{bottom:403.604000pt;}
.y75{bottom:405.525333pt;}
.y101{bottom:407.368000pt;}
.ycf{bottom:408.690667pt;}
.y126{bottom:414.397333pt;}
.y22{bottom:415.725333pt;}
.ya2{bottom:419.376000pt;}
.y41{bottom:419.545333pt;}
.y74{bottom:421.465333pt;}
.y100{bottom:423.308000pt;}
.yce{bottom:424.630667pt;}
.y125{bottom:426.353333pt;}
.y21{bottom:429.009333pt;}
.ya1{bottom:435.316000pt;}
.y40{bottom:435.485333pt;}
.y73{bottom:437.405333pt;}
.y124{bottom:438.308000pt;}
.yff{bottom:439.248000pt;}
.y20{bottom:443.454667pt;}
.y123{bottom:450.262667pt;}
.ya0{bottom:451.257333pt;}
.y3f{bottom:451.425333pt;}
.y72{bottom:453.346667pt;}
.ycd{bottom:454.926667pt;}
.yfe{bottom:455.189333pt;}
.y1f{bottom:456.738667pt;}
.y122{bottom:462.782667pt;}
.y9f{bottom:467.197333pt;}
.y3e{bottom:467.365333pt;}
.y71{bottom:469.286667pt;}
.y1e{bottom:470.022667pt;}
.ycc{bottom:470.866667pt;}
.yfd{bottom:471.129333pt;}
.y121{bottom:474.737333pt;}
.y9e{bottom:483.137333pt;}
.y1d{bottom:483.305333pt;}
.y70{bottom:485.226667pt;}
.yfc{bottom:487.492000pt;}
.y1c{bottom:496.589333pt;}
.y9d{bottom:499.077333pt;}
.y3d{bottom:499.245333pt;}
.y120{bottom:500.561333pt;}
.y6f{bottom:501.166667pt;}
.yfb{bottom:503.432000pt;}
.y1b{bottom:509.873333pt;}
.ycb{bottom:510.182667pt;}
.y9c{bottom:515.017333pt;}
.y3c{bottom:515.186667pt;}
.y6e{bottom:517.106667pt;}
.yfa{bottom:519.372000pt;}
.y1a{bottom:523.156000pt;}
.yca{bottom:526.122667pt;}
.y9b{bottom:530.957333pt;}
.y3b{bottom:531.126667pt;}
.y6d{bottom:534.008000pt;}
.y11f{bottom:534.105333pt;}
.yf9{bottom:535.313333pt;}
.y19{bottom:536.440000pt;}
.yc9{bottom:542.062667pt;}
.y9a{bottom:546.898667pt;}
.y3a{bottom:547.066667pt;}
.y18{bottom:549.724000pt;}
.y6c{bottom:549.948000pt;}
.y11e{bottom:550.045333pt;}
.yf8{bottom:551.253333pt;}
.yc8{bottom:558.004000pt;}
.y99{bottom:562.838667pt;}
.y17{bottom:563.006667pt;}
.y6b{bottom:565.888000pt;}
.y11d{bottom:565.985333pt;}
.yf7{bottom:567.193333pt;}
.yc7{bottom:573.944000pt;}
.y16{bottom:576.290667pt;}
.y39{bottom:578.946667pt;}
.y6a{bottom:581.828000pt;}
.y11c{bottom:581.926667pt;}
.yf6{bottom:583.556000pt;}
.y98{bottom:583.668000pt;}
.y15{bottom:589.574667pt;}
.yc6{bottom:591.578667pt;}
.y38{bottom:594.886667pt;}
.y69{bottom:597.769333pt;}
.yf5{bottom:599.496000pt;}
.y14{bottom:602.857333pt;}
.yc5{bottom:607.518667pt;}
.y11b{bottom:608.148000pt;}
.y97{bottom:610.289333pt;}
.y37{bottom:610.828000pt;}
.y68{bottom:613.709333pt;}
.yf4{bottom:615.437333pt;}
.y13{bottom:616.141333pt;}
.yc4{bottom:623.460000pt;}
.y96{bottom:626.229333pt;}
.y36{bottom:626.768000pt;}
.y12{bottom:629.424000pt;}
.y67{bottom:629.649333pt;}
.yf3{bottom:631.377333pt;}
.yc3{bottom:639.400000pt;}
.y11a{bottom:641.692000pt;}
.y95{bottom:642.169333pt;}
.y11{bottom:642.708000pt;}
.y66{bottom:645.589333pt;}
.yf2{bottom:654.038667pt;}
.yc2{bottom:655.340000pt;}
.y119{bottom:657.632000pt;}
.y94{bottom:658.110667pt;}
.y65{bottom:661.529333pt;}
.yc1{bottom:671.280000pt;}
.y118{bottom:673.572000pt;}
.y64{bottom:677.469333pt;}
.y93{bottom:679.444000pt;}
.yf1{bottom:682.538667pt;}
.yc0{bottom:687.220000pt;}
.y117{bottom:689.512000pt;}
.y63{bottom:694.370667pt;}
.y92{bottom:695.385333pt;}
.yf0{bottom:698.478667pt;}
.ybf{bottom:703.161333pt;}
.y116{bottom:705.453333pt;}
.y62{bottom:710.310667pt;}
.y10{bottom:711.028000pt;}
.yef{bottom:714.418667pt;}
.ybe{bottom:719.101333pt;}
.y115{bottom:721.393333pt;}
.y91{bottom:722.005333pt;}
.y61{bottom:726.250667pt;}
.yf{bottom:728.124000pt;}
.yee{bottom:730.782667pt;}
.y114{bottom:737.333333pt;}
.y90{bottom:737.945333pt;}
.y60{bottom:742.192000pt;}
.ybd{bottom:745.158667pt;}
.ye{bottom:745.220000pt;}
.yed{bottom:746.722667pt;}
.y113{bottom:753.273333pt;}
.y8f{bottom:753.885333pt;}
.y5f{bottom:758.132000pt;}
.yd{bottom:762.316000pt;}
.yec{bottom:762.662667pt;}
.y112{bottom:769.213333pt;}
.y8e{bottom:769.826667pt;}
.y5e{bottom:774.072000pt;}
.yeb{bottom:778.602667pt;}
.yc{bottom:779.412000pt;}
.ybc{bottom:784.474667pt;}
.y111{bottom:785.153333pt;}
.y8d{bottom:785.766667pt;}
.y5d{bottom:790.012000pt;}
.yea{bottom:794.542667pt;}
.ybb{bottom:800.414667pt;}
.y110{bottom:801.094667pt;}
.y8c{bottom:801.706667pt;}
.y5c{bottom:805.952000pt;}
.ye9{bottom:810.906667pt;}
.yb{bottom:813.604000pt;}
.y7{bottom:816.037333pt;}
.yba{bottom:816.354667pt;}
.y10f{bottom:817.034667pt;}
.y8b{bottom:817.848000pt;}
.ye8{bottom:826.846667pt;}
.ya{bottom:830.700000pt;}
.y5b{bottom:831.840000pt;}
.yb9{bottom:832.296000pt;}
.y6{bottom:832.474667pt;}
.y10e{bottom:832.974667pt;}
.y8a{bottom:833.789333pt;}
.ye7{bottom:842.786667pt;}
.y9{bottom:847.796000pt;}
.yb8{bottom:848.236000pt;}
.y5{bottom:848.913333pt;}
.y10d{bottom:848.914667pt;}
.y89{bottom:849.729333pt;}
.ye6{bottom:858.726667pt;}
.yb7{bottom:864.176000pt;}
.y10c{bottom:864.854667pt;}
.y8{bottom:864.892000pt;}
.y5a{bottom:864.910667pt;}
.y4{bottom:865.352000pt;}
.y88{bottom:865.669333pt;}
.ye5{bottom:874.666667pt;}
.yb6{bottom:880.116000pt;}
.y59{bottom:880.850667pt;}
.y87{bottom:881.609333pt;}
.y10b{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.ye4{bottom:891.030667pt;}
.y144{bottom:893.766667pt;}
.yb5{bottom:896.056000pt;}
.y58{bottom:896.790667pt;}
.y86{bottom:897.549333pt;}
.y10a{bottom:897.752000pt;}
.y143{bottom:905.721333pt;}
.ye3{bottom:906.970667pt;}
.y57{bottom:912.732000pt;}
.y85{bottom:913.489333pt;}
.yb4{bottom:913.692000pt;}
.y142{bottom:917.677333pt;}
.ye2{bottom:922.910667pt;}
.y2{bottom:923.830667pt;}
.y56{bottom:928.672000pt;}
.y84{bottom:929.430667pt;}
.yb3{bottom:929.632000pt;}
.ye1{bottom:938.850667pt;}
.y141{bottom:941.588000pt;}
.y83{bottom:945.370667pt;}
.y55{bottom:945.572000pt;}
.y140{bottom:953.542667pt;}
.ye0{bottom:954.790667pt;}
.y1{bottom:961.024000pt;}
.y54{bottom:961.512000pt;}
.y13f{bottom:965.497333pt;}
.y82{bottom:977.452000pt;}
.y53{bottom:977.453333pt;}
.h8{height:29.244954pt;}
.h9{height:29.458287pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h5{height:39.919620pt;}
.h2{height:40.211857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:65.285333pt;}
.x12{left:69.186667pt;}
.x2{left:79.330667pt;}
.x5{left:81.254667pt;}
.x28{left:84.317333pt;}
.x4{left:87.790667pt;}
.x21{left:89.030667pt;}
.x14{left:92.733333pt;}
.x1{left:102.985333pt;}
.x15{left:121.598667pt;}
.x6{left:124.578667pt;}
.x7{left:129.793333pt;}
.x11{left:135.706667pt;}
.x3{left:138.274667pt;}
.x26{left:174.729333pt;}
.x1b{left:188.682667pt;}
.x1e{left:191.964000pt;}
.x27{left:195.464000pt;}
.x22{left:199.356000pt;}
.x9{left:293.236000pt;}
.x29{left:294.557333pt;}
.xa{left:320.728000pt;}
.xc{left:329.889333pt;}
.xb{left:338.780000pt;}
.x8{left:358.704000pt;}
.x18{left:408.000000pt;}
.x17{left:411.901333pt;}
.x1c{left:415.970667pt;}
.x24{left:427.854667pt;}
.x1d{left:429.253333pt;}
.x19{left:435.448000pt;}
.x1f{left:442.008000pt;}
.x2a{left:455.661333pt;}
.x1a{left:467.973333pt;}
.x16{left:478.918667pt;}
.x23{left:483.418667pt;}
.xf{left:524.788000pt;}
.xe{left:540.210667pt;}
.x20{left:550.041333pt;}
.x25{left:554.744000pt;}
.x10{left:556.100000pt;}
.xd{left:595.428000pt;}
.x2d{left:617.106667pt;}
.x2b{left:652.576000pt;}
.x2c{left:665.262667pt;}
}




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