
    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_c3239eabf0ce77c26d0d4ee7.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_b3e1b0cb3d1e6adbf8dd9cd8.woff2')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_03a329bfe795a5148569aaa6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0559459e552042763ff233a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8b2abe569f626f52e483a980.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7e5e070e19cdd24e5119de12.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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:ff7;src:url('chunks/assets/font_4c9485b49486fe2f90b55ac1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677246;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:ff8;src:url('chunks/assets/font_741f72abb86d1e86cad6d355.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.658000;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:ff9;src:url('chunks/assets/font_e55a8b00d844d3210aa32962.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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:ffa;src:url('chunks/assets/font_ab4b9d638bfc56122c22c879.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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:ffb;src:url('chunks/assets/font_8481e0c94eefdfa9cf0d59bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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:ffc;src:url('chunks/assets/font_65178b30b3908faa41795071.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703450;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:ffd;src:url('chunks/assets/font_d6c5669ad28898ae585c00b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.521000;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:ffe;src:url('chunks/assets/font_3203aeb2c6c8da2bfb5e6d47.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.374865px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.374865px;}
.v5{vertical-align:15.492000px;}
.v4{vertical-align:16.878000px;}
.v2{vertical-align:21.373783px;}
.v6{vertical-align:32.370000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000509px;}
.ls18{letter-spacing:0.000557px;}
.ls14{letter-spacing:0.003072px;}
.ls1b{letter-spacing:0.834017px;}
.lsa{letter-spacing:1.709907px;}
.lse{letter-spacing:1.715907px;}
.ls11{letter-spacing:1.719332px;}
.ls5{letter-spacing:2.144222px;}
.ls3{letter-spacing:2.150222px;}
.ls0{letter-spacing:2.964877px;}
.ls1c{letter-spacing:2.987675px;}
.ls1{letter-spacing:2.988017px;}
.ls1a{letter-spacing:2.988780px;}
.lsf{letter-spacing:2.990289px;}
.ls8{letter-spacing:8.464246px;}
.ls13{letter-spacing:14.113289px;}
.ls7{letter-spacing:14.119289px;}
.ls16{letter-spacing:16.736850px;}
.ls9{letter-spacing:16.736915px;}
.ls10{letter-spacing:16.826850px;}
.ls15{letter-spacing:17.576289px;}
.ls12{letter-spacing:19.952289px;}
.ls4{letter-spacing:24.501223px;}
.lsd{letter-spacing:24.704289px;}
.lsb{letter-spacing:26.426289px;}
.ls6{letter-spacing:32.266888px;}
.ls17{letter-spacing:36.032289px;}
.ls19{letter-spacing:40.880289px;}
.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;}
}
.ws79{word-spacing:-41.675653px;}
.ws7c{word-spacing:-33.211407px;}
.ws1{word-spacing:-16.438350px;}
.wsc2{word-spacing:-14.943900px;}
.ws12{word-spacing:-14.920027px;}
.ws4c{word-spacing:-13.358615px;}
.ws73{word-spacing:-11.955150px;}
.wsbb{word-spacing:-1.195512px;}
.ws15{word-spacing:-1.016185px;}
.ws23{word-spacing:-0.956410px;}
.ws16{word-spacing:-0.836858px;}
.ws60{word-spacing:-0.717307px;}
.ws10{word-spacing:-0.699379px;}
.ws1d{word-spacing:-0.537980px;}
.ws3f{word-spacing:-0.478205px;}
.ws44{word-spacing:-0.358654px;}
.ws9e{word-spacing:-0.298878px;}
.wsa1{word-spacing:-0.239102px;}
.wsac{word-spacing:-0.179327px;}
.ws63{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws78{word-spacing:-0.047821px;}
.ws84{word-spacing:-0.035866px;}
.ws4b{word-spacing:0.000000px;}
.ws27{word-spacing:0.119551px;}
.wsd4{word-spacing:0.143462px;}
.ws2a{word-spacing:0.298878px;}
.ws1c{word-spacing:0.478205px;}
.ws1a{word-spacing:0.500134px;}
.ws1b{word-spacing:0.504300px;}
.ws64{word-spacing:0.537980px;}
.ws95{word-spacing:0.717307px;}
.wsab{word-spacing:0.777083px;}
.ws6b{word-spacing:0.896634px;}
.ws42{word-spacing:1.075961px;}
.ws52{word-spacing:1.135736px;}
.ws7{word-spacing:1.291162px;}
.ws66{word-spacing:1.315063px;}
.ws69{word-spacing:1.673717px;}
.ws2e{word-spacing:1.793268px;}
.wsd5{word-spacing:1.943191px;}
.wsd6{word-spacing:1.960645px;}
.ws17{word-spacing:2.092146px;}
.ws57{word-spacing:2.151922px;}
.ws92{word-spacing:2.211697px;}
.ws6d{word-spacing:2.271473px;}
.ws99{word-spacing:2.570351px;}
.ws9a{word-spacing:2.689902px;}
.ws58{word-spacing:2.749678px;}
.wsaf{word-spacing:2.809453px;}
.ws1e{word-spacing:2.869229px;}
.ws5d{word-spacing:2.988780px;}
.wsce{word-spacing:3.203980px;}
.wscf{word-spacing:3.251801px;}
.ws9b{word-spacing:3.347434px;}
.ws35{word-spacing:3.407209px;}
.wsae{word-spacing:3.466985px;}
.ws51{word-spacing:3.586536px;}
.ws3e{word-spacing:3.646312px;}
.ws9{word-spacing:3.981082px;}
.ws47{word-spacing:4.004965px;}
.wsbe{word-spacing:4.064741px;}
.wsbd{word-spacing:4.091156px;}
.wsbc{word-spacing:4.095025px;}
.ws33{word-spacing:4.184292px;}
.wsb5{word-spacing:4.303843px;}
.ws48{word-spacing:4.363619px;}
.ws59{word-spacing:4.542946px;}
.ws43{word-spacing:4.602721px;}
.ws45{word-spacing:4.662497px;}
.ws76{word-spacing:4.774714px;}
.ws7e{word-spacing:4.780463px;}
.ws83{word-spacing:4.780714px;}
.ws82{word-spacing:4.781459px;}
.ws7a{word-spacing:4.781534px;}
.ws4f{word-spacing:4.782060px;}
.ws87{word-spacing:4.783829px;}
.ws75{word-spacing:4.787459px;}
.ws8b{word-spacing:4.841824px;}
.ws7b{word-spacing:4.877701px;}
.wsc6{word-spacing:5.080926px;}
.ws3a{word-spacing:5.140702px;}
.wsd0{word-spacing:5.164625px;}
.ws6a{word-spacing:5.200477px;}
.ws91{word-spacing:5.260253px;}
.wsaa{word-spacing:5.439580px;}
.ws22{word-spacing:5.499355px;}
.ws8{word-spacing:5.541235px;}
.ws14{word-spacing:5.618906px;}
.ws6c{word-spacing:5.678682px;}
.ws46{word-spacing:5.798233px;}
.ws8d{word-spacing:5.925878px;}
.ws6f{word-spacing:5.971684px;}
.ws37{word-spacing:5.976969px;}
.ws3{word-spacing:5.977560px;}
.ws5{word-spacing:6.186816px;}
.ws29{word-spacing:6.216662px;}
.wsd1{word-spacing:6.216678px;}
.ws8e{word-spacing:6.276438px;}
.ws2d{word-spacing:6.336214px;}
.wse{word-spacing:6.402010px;}
.wsa5{word-spacing:6.455765px;}
.ws2{word-spacing:6.575340px;}
.ws3c{word-spacing:6.694867px;}
.ws88{word-spacing:6.754643px;}
.ws3b{word-spacing:6.874194px;}
.wsbf{word-spacing:6.933970px;}
.wsba{word-spacing:7.053521px;}
.wscc{word-spacing:7.077449px;}
.wsb9{word-spacing:7.078566px;}
.wsb0{word-spacing:7.113296px;}
.ws40{word-spacing:7.292623px;}
.ws85{word-spacing:7.364372px;}
.wsc{word-spacing:7.370381px;}
.wsad{word-spacing:7.412174px;}
.wscb{word-spacing:7.412193px;}
.ws65{word-spacing:7.830604px;}
.wsa7{word-spacing:7.890379px;}
.wsd2{word-spacing:7.938220px;}
.ws30{word-spacing:8.009930px;}
.wsc3{word-spacing:8.177323px;}
.ws96{word-spacing:8.368584px;}
.ws90{word-spacing:8.488135px;}
.wsd8{word-spacing:8.559887px;}
.wsd7{word-spacing:8.579036px;}
.wsc1{word-spacing:8.787013px;}
.wsd3{word-spacing:8.894632px;}
.wsb2{word-spacing:8.906564px;}
.ws13{word-spacing:8.966340px;}
.ws41{word-spacing:9.085891px;}
.ws9c{word-spacing:9.205442px;}
.ws94{word-spacing:9.265218px;}
.ws5e{word-spacing:9.444545px;}
.ws9d{word-spacing:9.504320px;}
.ws68{word-spacing:9.560134px;}
.ws67{word-spacing:9.564096px;}
.ws5f{word-spacing:9.743423px;}
.ws6{word-spacing:9.845107px;}
.wsb8{word-spacing:9.982525px;}
.ws89{word-spacing:10.042301px;}
.ws4a{word-spacing:10.102076px;}
.wsc8{word-spacing:10.221628px;}
.wsc0{word-spacing:10.281403px;}
.wsf{word-spacing:10.329293px;}
.ws21{word-spacing:10.400954px;}
.ws38{word-spacing:10.640057px;}
.ws61{word-spacing:10.699832px;}
.ws53{word-spacing:10.759608px;}
.ws2c{word-spacing:10.819384px;}
.wsd{word-spacing:10.974874px;}
.wsa4{word-spacing:11.118262px;}
.wsa2{word-spacing:11.178037px;}
.wsca{word-spacing:11.333482px;}
.wsb1{word-spacing:11.417140px;}
.wsa9{word-spacing:11.476915px;}
.ws18{word-spacing:11.656242px;}
.ws93{word-spacing:11.835569px;}
.ws86{word-spacing:11.950123px;}
.ws70{word-spacing:11.951215px;}
.ws8c{word-spacing:11.955120px;}
.ws72{word-spacing:11.956423px;}
.ws36{word-spacing:12.194222px;}
.ws80{word-spacing:12.768100px;}
.ws54{word-spacing:12.971305px;}
.wsb6{word-spacing:13.210408px;}
.wsc5{word-spacing:13.270183px;}
.ws26{word-spacing:13.329959px;}
.ws24{word-spacing:13.389734px;}
.ws50{word-spacing:13.449510px;}
.ws56{word-spacing:13.509286px;}
.ws8a{word-spacing:13.569061px;}
.wscd{word-spacing:13.676692px;}
.ws8f{word-spacing:14.047266px;}
.ws77{word-spacing:14.059256px;}
.ws28{word-spacing:14.107042px;}
.wsb7{word-spacing:14.226593px;}
.ws0{word-spacing:14.346180px;}
.ws2f{word-spacing:14.525471px;}
.ws9f{word-spacing:14.572064px;}
.ws5c{word-spacing:14.824349px;}
.wsa0{word-spacing:14.884124px;}
.ws62{word-spacing:15.003676px;}
.ws25{word-spacing:15.123227px;}
.ws71{word-spacing:15.206951px;}
.ws3d{word-spacing:15.601432px;}
.wsc9{word-spacing:15.661207px;}
.ws6e{word-spacing:15.720983px;}
.wsb{word-spacing:15.870528px;}
.wsa3{word-spacing:15.960085px;}
.ws55{word-spacing:16.019861px;}
.ws32{word-spacing:16.258963px;}
.ws5b{word-spacing:16.916495px;}
.ws5a{word-spacing:16.935581px;}
.wsb4{word-spacing:17.095822px;}
.ws34{word-spacing:17.454475px;}
.ws19{word-spacing:17.633802px;}
.wsa8{word-spacing:17.753353px;}
.ws11{word-spacing:17.932680px;}
.wsa{word-spacing:18.022464px;}
.wsc4{word-spacing:18.291334px;}
.ws39{word-spacing:18.948865px;}
.wsb3{word-spacing:19.068416px;}
.wsc7{word-spacing:20.443255px;}
.ws1f{word-spacing:20.742133px;}
.wsa6{word-spacing:20.801909px;}
.ws31{word-spacing:20.921460px;}
.ws2b{word-spacing:20.981236px;}
.ws20{word-spacing:21.280114px;}
.ws49{word-spacing:21.399665px;}
.ws97{word-spacing:21.758318px;}
.ws98{word-spacing:36.646064px;}
.ws4d{word-spacing:42.371856px;}
.ws7f{word-spacing:71.728123px;}
.ws74{word-spacing:71.728423px;}
.wsd9{word-spacing:104.727114px;}
.ws81{word-spacing:131.506123px;}
.ws7d{word-spacing:131.506423px;}
.ws4e{word-spacing:395.549496px;}
._1d{margin-left:-22.834265px;}
._6{margin-left:-7.298627px;}
._2{margin-left:-5.021163px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-2.151927px;}
._b{margin-left:-1.022170px;}
._18{width:1.015001px;}
._c{width:2.331306px;}
._3{width:3.649664px;}
._1e{width:8.287013px;}
._20{width:14.192859px;}
._f{width:15.720983px;}
._19{width:18.133565px;}
._e{width:20.144377px;}
._10{width:21.758333px;}
._17{width:23.372260px;}
._a{width:30.449894px;}
._15{width:33.474420px;}
._16{width:35.148053px;}
._d{width:36.702224px;}
._1c{width:40.217125px;}
._1f{width:47.820463px;}
._9{width:56.042417px;}
._7{width:73.151272px;}
._8{width:88.756927px;}
._5{width:121.780454px;}
._12{width:132.936666px;}
._13{width:141.814683px;}
._1a{width:143.461800px;}
._11{width:154.714094px;}
._4{width:172.758166px;}
._1b{width:203.237550px;}
._14{width:375.079053px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887800px;}
.fs7{font-size:33.248108px;}
.fs9{font-size:35.622972px;}
.fsa{font-size:35.865600px;}
.fs5{font-size:37.997837px;}
.fs6{font-size:42.747567px;}
.fs8{font-size:47.497297px;}
.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;}
.y6b{bottom:14.480287px;}
.y6c{bottom:15.074003px;}
.y66{bottom:44.166097px;}
.y5c{bottom:50.103259px;}
.y5b{bottom:61.977583px;}
.y61{bottom:73.851907px;}
.y58{bottom:75.039340px;}
.y64{bottom:85.132515px;}
.y59{bottom:86.913664px;}
.y62{bottom:96.413123px;}
.y57{bottom:97.600556px;}
.y63{bottom:108.881164px;}
.y5a{bottom:109.474880px;}
.y33{bottom:113.332500px;}
.y69{bottom:114.818326px;}
.yf3{bottom:114.889500px;}
.y68{bottom:118.380623px;}
.y65{bottom:127.286366px;}
.yf2{bottom:128.340000px;}
.y67{bottom:129.067515px;}
.y32{bottom:131.265000px;}
.yf1{bottom:141.789000px;}
.y54{bottom:149.197500px;}
.y31{bottom:149.199000px;}
.yf0{bottom:155.239500px;}
.y30{bottom:167.131500px;}
.y53{bottom:167.881500px;}
.yef{bottom:168.688500px;}
.yee{bottom:182.137500px;}
.y2f{bottom:185.064000px;}
.y52{bottom:185.814000px;}
.yed{bottom:195.588000px;}
.y2e{bottom:202.996500px;}
.y51{bottom:203.748000px;}
.yec{bottom:209.037000px;}
.y56{bottom:219.312378px;}
.y2d{bottom:220.929000px;}
.y50{bottom:221.680500px;}
.yeb{bottom:222.486000px;}
.yea{bottom:235.936500px;}
.y2c{bottom:238.861500px;}
.y4f{bottom:239.613000px;}
.yac{bottom:248.121000px;}
.ye9{bottom:249.385500px;}
.y6a{bottom:254.341634px;}
.y60{bottom:255.529067px;}
.yca{bottom:256.794000px;}
.y2b{bottom:256.795500px;}
.y4e{bottom:257.545500px;}
.y5d{bottom:259.685080px;}
.y5f{bottom:261.466229px;}
.ye8{bottom:262.836000px;}
.y5e{bottom:267.403391px;}
.yab{bottom:274.084500px;}
.y2a{bottom:274.728000px;}
.y4d{bottom:275.478000px;}
.ye7{bottom:276.285000px;}
.ye6{bottom:289.734000px;}
.yaa{bottom:292.017000px;}
.y29{bottom:292.660500px;}
.y4c{bottom:293.412000px;}
.ye5{bottom:303.184500px;}
.ya9{bottom:309.949500px;}
.y28{bottom:310.593000px;}
.y4b{bottom:311.344500px;}
.ye4{bottom:316.633500px;}
.ya8{bottom:327.882000px;}
.y27{bottom:327.955500px;}
.y86{bottom:328.525500px;}
.y4a{bottom:329.277000px;}
.ye3{bottom:330.082500px;}
.ye2{bottom:343.533000px;}
.ya7{bottom:345.814500px;}
.y26{bottom:345.888000px;}
.yc9{bottom:346.458000px;}
.y49{bottom:347.209500px;}
.y85{bottom:347.536500px;}
.ye1{bottom:356.982000px;}
.ya6{bottom:363.748500px;}
.y25{bottom:363.820500px;}
.yc8{bottom:364.392000px;}
.y48{bottom:365.142000px;}
.y84{bottom:365.470500px;}
.ye0{bottom:370.431000px;}
.y24{bottom:381.753000px;}
.yc7{bottom:382.324500px;}
.y47{bottom:383.074500px;}
.y83{bottom:383.403000px;}
.ydf{bottom:383.881500px;}
.y23{bottom:399.687000px;}
.yc6{bottom:400.257000px;}
.y46{bottom:401.008500px;}
.y82{bottom:401.335500px;}
.yde{bottom:404.784000px;}
.y22{bottom:417.619500px;}
.yc5{bottom:418.189500px;}
.y45{bottom:418.941000px;}
.y81{bottom:419.268000px;}
.ya5{bottom:420.064500px;}
.ydd{bottom:428.938500px;}
.ya4{bottom:433.515000px;}
.y21{bottom:435.552000px;}
.yc4{bottom:436.122000px;}
.y44{bottom:436.873500px;}
.y80{bottom:437.200500px;}
.ydc{bottom:446.871000px;}
.ya3{bottom:446.964000px;}
.y20{bottom:453.484500px;}
.yc3{bottom:454.054500px;}
.y43{bottom:454.806000px;}
.y7f{bottom:455.133000px;}
.ya2{bottom:460.413000px;}
.ydb{bottom:464.805000px;}
.y1f{bottom:471.417000px;}
.yc2{bottom:471.988500px;}
.y42{bottom:472.738500px;}
.y7e{bottom:473.067000px;}
.ya1{bottom:473.863500px;}
.yda{bottom:486.799500px;}
.ya0{bottom:487.312500px;}
.y1e{bottom:489.351000px;}
.yc1{bottom:489.921000px;}
.y41{bottom:490.671000px;}
.y7d{bottom:490.999500px;}
.y9f{bottom:496.888500px;}
.y9e{bottom:500.763000px;}
.yd9{bottom:502.450500px;}
.y1d{bottom:507.283500px;}
.yc0{bottom:507.853500px;}
.y7c{bottom:508.932000px;}
.y40{bottom:513.567000px;}
.y9d{bottom:515.484000px;}
.yd8{bottom:520.383000px;}
.y9c{bottom:525.060000px;}
.y1c{bottom:525.216000px;}
.ybf{bottom:525.786000px;}
.y7b{bottom:527.943000px;}
.y9b{bottom:528.933000px;}
.yd7{bottom:538.315500px;}
.y3f{bottom:543.718500px;}
.y9a{bottom:544.054500px;}
.y7a{bottom:545.875500px;}
.y1b{bottom:547.285500px;}
.yd6{bottom:556.249500px;}
.y99{bottom:557.505000px;}
.y3e{bottom:561.651000px;}
.y79{bottom:563.808000px;}
.y1a{bottom:567.630000px;}
.y98{bottom:570.954000px;}
.yd5{bottom:574.182000px;}
.y3d{bottom:579.585000px;}
.y78{bottom:581.742000px;}
.y19{bottom:582.573000px;}
.y97{bottom:584.403000px;}
.yd4{bottom:592.114500px;}
.y18{bottom:597.517500px;}
.y96{bottom:597.853500px;}
.y77{bottom:599.674500px;}
.yd3{bottom:610.047000px;}
.y95{bottom:611.302500px;}
.y17{bottom:612.462000px;}
.y3c{bottom:615.450000px;}
.y76{bottom:617.607000px;}
.y94{bottom:624.751500px;}
.y16{bottom:627.405000px;}
.yd2{bottom:627.979500px;}
.y3b{bottom:633.382500px;}
.y75{bottom:635.539500px;}
.y93{bottom:638.202000px;}
.y15{bottom:642.349500px;}
.yd1{bottom:645.912000px;}
.y3a{bottom:651.315000px;}
.y92{bottom:651.651000px;}
.y74{bottom:653.472000px;}
.y14{bottom:657.292500px;}
.y91{bottom:661.227000px;}
.y90{bottom:665.101500px;}
.yd0{bottom:667.908000px;}
.y39{bottom:669.247500px;}
.y73{bottom:671.404500px;}
.y13{bottom:672.237000px;}
.y8f{bottom:675.546000px;}
.y8e{bottom:679.420500px;}
.ycf{bottom:685.671000px;}
.y12{bottom:687.181500px;}
.y8d{bottom:688.996500px;}
.y72{bottom:689.338500px;}
.y8c{bottom:692.869500px;}
.yce{bottom:699.120000px;}
.y11{bottom:702.124500px;}
.y38{bottom:705.114000px;}
.y8b{bottom:706.318500px;}
.y71{bottom:707.271000px;}
.y10{bottom:717.069000px;}
.y8a{bottom:719.769000px;}
.y37{bottom:723.046500px;}
.y70{bottom:725.203500px;}
.yf{bottom:732.013500px;}
.y89{bottom:733.218000px;}
.y36{bottom:740.979000px;}
.y6f{bottom:743.136000px;}
.y88{bottom:746.667000px;}
.ye{bottom:746.956500px;}
.y35{bottom:758.911500px;}
.y6e{bottom:761.068500px;}
.yd{bottom:761.901000px;}
.y87{bottom:764.521500px;}
.y34{bottom:776.844000px;}
.yc{bottom:776.845500px;}
.ybe{bottom:794.778000px;}
.y6d{bottom:796.629000px;}
.ybd{bottom:812.710500px;}
.y55{bottom:818.245212px;}
.yb{bottom:828.319500px;}
.ybc{bottom:830.643000px;}
.ya{bottom:847.317000px;}
.ybb{bottom:848.575500px;}
.yba{bottom:866.508000px;}
.y9{bottom:867.490500px;}
.yb9{bottom:884.442000px;}
.y8{bottom:887.665500px;}
.yb8{bottom:902.374500px;}
.y7{bottom:907.839000px;}
.yb7{bottom:920.307000px;}
.y6{bottom:927.732000px;}
.yb6{bottom:938.239500px;}
.y5{bottom:947.851500px;}
.yb5{bottom:956.172000px;}
.y4{bottom:970.044000px;}
.yb4{bottom:974.104500px;}
.ycd{bottom:992.037000px;}
.yb3{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.ycc{bottom:1009.969500px;}
.yb2{bottom:1009.971000px;}
.yb1{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.yb0{bottom:1045.836000px;}
.yaf{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.yae{bottom:1081.701000px;}
.ycb{bottom:1099.633500px;}
.yad{bottom:1099.635000px;}
.hc{height:22.517151px;}
.h1a{height:24.871000px;}
.hd{height:25.260769px;}
.h11{height:27.065110px;}
.ha{height:28.869451px;}
.h10{height:29.439975px;}
.hb{height:32.478132px;}
.h20{height:32.804932px;}
.h12{height:32.900573px;}
.h14{height:33.187496px;}
.h15{height:35.865450px;}
.he{height:36.086813px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h8{height:41.006062px;}
.h5{height:41.125613px;}
.h1f{height:41.419613px;}
.h4{height:41.425613px;}
.h13{height:41.484266px;}
.h18{height:41.743000px;}
.h16{height:41.749000px;}
.h3{height:45.238339px;}
.h2{height:45.568339px;}
.h1b{height:48.392573px;}
.h1c{height:48.633280px;}
.h17{height:48.679496px;}
.h1e{height:48.685496px;}
.h19{height:57.241000px;}
.hf{height:57.460597px;}
.h1d{height:64.125280px;}
.h1{height:98.701718px;}
.h9{height:286.758629px;}
.h0{height:1188.000000px;}
.w1{width:599.645608px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:8.372042px;}
.x28{left:25.997992px;}
.x23{left:43.401298px;}
.x19{left:72.252195px;}
.x12{left:73.446000px;}
.x1a{left:75.740278px;}
.x1b{left:79.515945px;}
.x2{left:88.314000px;}
.x3{left:119.529000px;}
.x4{left:133.239000px;}
.x1{left:143.995500px;}
.x27{left:145.158693px;}
.x17{left:156.557718px;}
.x8{left:200.164500px;}
.x13{left:203.428500px;}
.x5{left:215.965500px;}
.x24{left:221.970727px;}
.x9{left:233.944500px;}
.x1c{left:248.335438px;}
.x18{left:253.586115px;}
.x7{left:297.580500px;}
.x10{left:303.096000px;}
.xa{left:322.176000px;}
.xe{left:340.546500px;}
.xc{left:341.686500px;}
.x2c{left:350.436000px;}
.x1d{left:361.818722px;}
.x1e{left:367.755884px;}
.x1f{left:373.080776px;}
.x11{left:389.598000px;}
.x2b{left:398.443590px;}
.x26{left:415.893283px;}
.x2a{left:451.154457px;}
.xb{left:465.936000px;}
.x15{left:467.967000px;}
.x2d{left:473.011500px;}
.x22{left:477.166648px;}
.x20{left:480.497028px;}
.x21{left:481.703014px;}
.x14{left:482.910000px;}
.xf{left:488.818500px;}
.xd{left:517.800000px;}
.x6{left:538.192500px;}
.x25{left:548.004413px;}
.x36{left:563.496000px;}
.x16{left:565.432500px;}
.x38{left:583.380000px;}
.x3a{left:587.092500px;}
.x37{left:596.089500px;}
.x3b{left:614.418000px;}
.x2e{left:662.563500px;}
.x33{left:682.575000px;}
.x35{left:690.505500px;}
.x34{left:705.397500px;}
.x2f{left:714.679500px;}
.x31{left:732.555000px;}
.x32{left:751.753500px;}
.x30{left:778.068000px;}
.x39{left:824.634000px;}
@media print{
.v1{vertical-align:-2.110991pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.110991pt;}
.v5{vertical-align:13.770667pt;}
.v4{vertical-align:15.002667pt;}
.v2{vertical-align:18.998919pt;}
.v6{vertical-align:28.773333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000452pt;}
.ls18{letter-spacing:0.000495pt;}
.ls14{letter-spacing:0.002731pt;}
.ls1b{letter-spacing:0.741348pt;}
.lsa{letter-spacing:1.519918pt;}
.lse{letter-spacing:1.525251pt;}
.ls11{letter-spacing:1.528295pt;}
.ls5{letter-spacing:1.905975pt;}
.ls3{letter-spacing:1.911309pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1c{letter-spacing:2.655711pt;}
.ls1{letter-spacing:2.656015pt;}
.ls1a{letter-spacing:2.656693pt;}
.lsf{letter-spacing:2.658034pt;}
.ls8{letter-spacing:7.523774pt;}
.ls13{letter-spacing:12.545146pt;}
.ls7{letter-spacing:12.550479pt;}
.ls16{letter-spacing:14.877200pt;}
.ls9{letter-spacing:14.877258pt;}
.ls10{letter-spacing:14.957200pt;}
.ls15{letter-spacing:15.623368pt;}
.ls12{letter-spacing:17.735368pt;}
.ls4{letter-spacing:21.778865pt;}
.lsd{letter-spacing:21.959368pt;}
.lsb{letter-spacing:23.490034pt;}
.ls6{letter-spacing:28.681678pt;}
.ls17{letter-spacing:32.028701pt;}
.ls19{letter-spacing:36.338034pt;}
.ws79{word-spacing:-37.045025pt;}
.ws7c{word-spacing:-29.521250pt;}
.ws1{word-spacing:-14.611867pt;}
.wsc2{word-spacing:-13.283467pt;}
.ws12{word-spacing:-13.262246pt;}
.ws4c{word-spacing:-11.874324pt;}
.ws73{word-spacing:-10.626800pt;}
.wsbb{word-spacing:-1.062677pt;}
.ws15{word-spacing:-0.903276pt;}
.ws23{word-spacing:-0.850142pt;}
.ws16{word-spacing:-0.743874pt;}
.ws60{word-spacing:-0.637606pt;}
.ws10{word-spacing:-0.621670pt;}
.ws1d{word-spacing:-0.478205pt;}
.ws3f{word-spacing:-0.425071pt;}
.ws44{word-spacing:-0.318803pt;}
.ws9e{word-spacing:-0.265669pt;}
.wsa1{word-spacing:-0.212535pt;}
.wsac{word-spacing:-0.159402pt;}
.ws63{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws78{word-spacing:-0.042507pt;}
.ws84{word-spacing:-0.031881pt;}
.ws4b{word-spacing:0.000000pt;}
.ws27{word-spacing:0.106268pt;}
.wsd4{word-spacing:0.127522pt;}
.ws2a{word-spacing:0.265669pt;}
.ws1c{word-spacing:0.425071pt;}
.ws1a{word-spacing:0.444563pt;}
.ws1b{word-spacing:0.448267pt;}
.ws64{word-spacing:0.478205pt;}
.ws95{word-spacing:0.637606pt;}
.wsab{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.797008pt;}
.ws42{word-spacing:0.956410pt;}
.ws52{word-spacing:1.009543pt;}
.ws7{word-spacing:1.147699pt;}
.ws66{word-spacing:1.168945pt;}
.ws69{word-spacing:1.487748pt;}
.ws2e{word-spacing:1.594016pt;}
.wsd5{word-spacing:1.727281pt;}
.wsd6{word-spacing:1.742795pt;}
.ws17{word-spacing:1.859685pt;}
.ws57{word-spacing:1.912819pt;}
.ws92{word-spacing:1.965953pt;}
.ws6d{word-spacing:2.019087pt;}
.ws99{word-spacing:2.284756pt;}
.ws9a{word-spacing:2.391024pt;}
.ws58{word-spacing:2.444158pt;}
.wsaf{word-spacing:2.497292pt;}
.ws1e{word-spacing:2.550426pt;}
.ws5d{word-spacing:2.656693pt;}
.wsce{word-spacing:2.847982pt;}
.wscf{word-spacing:2.890490pt;}
.ws9b{word-spacing:2.975497pt;}
.ws35{word-spacing:3.028630pt;}
.wsae{word-spacing:3.081764pt;}
.ws51{word-spacing:3.188032pt;}
.ws3e{word-spacing:3.241166pt;}
.ws9{word-spacing:3.538739pt;}
.ws47{word-spacing:3.559969pt;}
.wsbe{word-spacing:3.613103pt;}
.wsbd{word-spacing:3.636583pt;}
.wsbc{word-spacing:3.640022pt;}
.ws33{word-spacing:3.719371pt;}
.wsb5{word-spacing:3.825638pt;}
.ws48{word-spacing:3.878772pt;}
.ws59{word-spacing:4.038174pt;}
.ws43{word-spacing:4.091308pt;}
.ws45{word-spacing:4.144442pt;}
.ws76{word-spacing:4.244190pt;}
.ws7e{word-spacing:4.249301pt;}
.ws83{word-spacing:4.249524pt;}
.ws82{word-spacing:4.250186pt;}
.ws7a{word-spacing:4.250252pt;}
.ws4f{word-spacing:4.250720pt;}
.ws87{word-spacing:4.252293pt;}
.ws75{word-spacing:4.255519pt;}
.ws8b{word-spacing:4.303843pt;}
.ws7b{word-spacing:4.335734pt;}
.wsc6{word-spacing:4.516379pt;}
.ws3a{word-spacing:4.569513pt;}
.wsd0{word-spacing:4.590778pt;}
.ws6a{word-spacing:4.622646pt;}
.ws91{word-spacing:4.675780pt;}
.wsaa{word-spacing:4.835182pt;}
.ws22{word-spacing:4.888316pt;}
.ws8{word-spacing:4.925542pt;}
.ws14{word-spacing:4.994583pt;}
.ws6c{word-spacing:5.047717pt;}
.ws46{word-spacing:5.153985pt;}
.ws8d{word-spacing:5.267447pt;}
.ws6f{word-spacing:5.308163pt;}
.ws37{word-spacing:5.312861pt;}
.ws3{word-spacing:5.313387pt;}
.ws5{word-spacing:5.499392pt;}
.ws29{word-spacing:5.525922pt;}
.wsd1{word-spacing:5.525936pt;}
.ws8e{word-spacing:5.579056pt;}
.ws2d{word-spacing:5.632190pt;}
.wse{word-spacing:5.690675pt;}
.wsa5{word-spacing:5.738458pt;}
.ws2{word-spacing:5.844747pt;}
.ws3c{word-spacing:5.950993pt;}
.ws88{word-spacing:6.004127pt;}
.ws3b{word-spacing:6.110395pt;}
.wsbf{word-spacing:6.163529pt;}
.wsba{word-spacing:6.269796pt;}
.wscc{word-spacing:6.291066pt;}
.wsb9{word-spacing:6.292059pt;}
.wsb0{word-spacing:6.322930pt;}
.ws40{word-spacing:6.482332pt;}
.ws85{word-spacing:6.546109pt;}
.wsc{word-spacing:6.551450pt;}
.wsad{word-spacing:6.588599pt;}
.wscb{word-spacing:6.588616pt;}
.ws65{word-spacing:6.960537pt;}
.wsa7{word-spacing:7.013670pt;}
.wsd2{word-spacing:7.056195pt;}
.ws30{word-spacing:7.119938pt;}
.wsc3{word-spacing:7.268731pt;}
.ws96{word-spacing:7.438741pt;}
.ws90{word-spacing:7.545009pt;}
.wsd8{word-spacing:7.608789pt;}
.wsd7{word-spacing:7.625810pt;}
.wsc1{word-spacing:7.810678pt;}
.wsd3{word-spacing:7.906339pt;}
.wsb2{word-spacing:7.916946pt;}
.ws13{word-spacing:7.970080pt;}
.ws41{word-spacing:8.076348pt;}
.ws9c{word-spacing:8.182615pt;}
.ws94{word-spacing:8.235749pt;}
.ws5e{word-spacing:8.395151pt;}
.ws9d{word-spacing:8.448285pt;}
.ws68{word-spacing:8.497897pt;}
.ws67{word-spacing:8.501419pt;}
.ws5f{word-spacing:8.660820pt;}
.ws6{word-spacing:8.751206pt;}
.wsb8{word-spacing:8.873356pt;}
.ws89{word-spacing:8.926490pt;}
.ws4a{word-spacing:8.979623pt;}
.wsc8{word-spacing:9.085891pt;}
.wsc0{word-spacing:9.139025pt;}
.wsf{word-spacing:9.181594pt;}
.ws21{word-spacing:9.245293pt;}
.ws38{word-spacing:9.457828pt;}
.ws61{word-spacing:9.510962pt;}
.ws53{word-spacing:9.564096pt;}
.ws2c{word-spacing:9.617230pt;}
.wsd{word-spacing:9.755443pt;}
.wsa4{word-spacing:9.882899pt;}
.wsa2{word-spacing:9.936033pt;}
.wsca{word-spacing:10.074206pt;}
.wsb1{word-spacing:10.148569pt;}
.wsa9{word-spacing:10.201702pt;}
.ws18{word-spacing:10.361104pt;}
.ws93{word-spacing:10.520506pt;}
.ws86{word-spacing:10.622332pt;}
.ws70{word-spacing:10.623302pt;}
.ws8c{word-spacing:10.626773pt;}
.ws72{word-spacing:10.627932pt;}
.ws36{word-spacing:10.839309pt;}
.ws80{word-spacing:11.349422pt;}
.ws54{word-spacing:11.530049pt;}
.wsb6{word-spacing:11.742585pt;}
.wsc5{word-spacing:11.795718pt;}
.ws26{word-spacing:11.848852pt;}
.ws24{word-spacing:11.901986pt;}
.ws50{word-spacing:11.955120pt;}
.ws56{word-spacing:12.008254pt;}
.ws8a{word-spacing:12.061388pt;}
.wscd{word-spacing:12.157059pt;}
.ws8f{word-spacing:12.486459pt;}
.ws77{word-spacing:12.497117pt;}
.ws28{word-spacing:12.539593pt;}
.wsb7{word-spacing:12.645860pt;}
.ws0{word-spacing:12.752160pt;}
.ws2f{word-spacing:12.911530pt;}
.ws9f{word-spacing:12.952946pt;}
.ws5c{word-spacing:13.177199pt;}
.wsa0{word-spacing:13.230333pt;}
.ws62{word-spacing:13.336601pt;}
.ws25{word-spacing:13.442868pt;}
.ws71{word-spacing:13.517290pt;}
.ws3d{word-spacing:13.867939pt;}
.wsc9{word-spacing:13.921073pt;}
.ws6e{word-spacing:13.974207pt;}
.wsb{word-spacing:14.107136pt;}
.wsa3{word-spacing:14.186742pt;}
.ws55{word-spacing:14.239876pt;}
.ws32{word-spacing:14.452412pt;}
.ws5b{word-spacing:15.036884pt;}
.ws5a{word-spacing:15.053850pt;}
.wsb4{word-spacing:15.196286pt;}
.ws34{word-spacing:15.515089pt;}
.ws19{word-spacing:15.674491pt;}
.wsa8{word-spacing:15.780758pt;}
.ws11{word-spacing:15.940160pt;}
.wsa{word-spacing:16.019968pt;}
.wsc4{word-spacing:16.258963pt;}
.ws39{word-spacing:16.843436pt;}
.wsb3{word-spacing:16.949703pt;}
.wsc7{word-spacing:18.171782pt;}
.ws1f{word-spacing:18.437452pt;}
.wsa6{word-spacing:18.490586pt;}
.ws31{word-spacing:18.596853pt;}
.ws2b{word-spacing:18.649987pt;}
.ws20{word-spacing:18.915657pt;}
.ws49{word-spacing:19.021924pt;}
.ws97{word-spacing:19.340727pt;}
.ws98{word-spacing:32.574279pt;}
.ws4d{word-spacing:37.663872pt;}
.ws7f{word-spacing:63.758332pt;}
.ws74{word-spacing:63.758598pt;}
.wsd9{word-spacing:93.090768pt;}
.ws81{word-spacing:116.894332pt;}
.ws7d{word-spacing:116.894598pt;}
.ws4e{word-spacing:351.599552pt;}
._1d{margin-left:-20.297124pt;}
._6{margin-left:-6.487669pt;}
._2{margin-left:-4.463256pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-1.912824pt;}
._b{margin-left:-0.908595pt;}
._18{width:0.902223pt;}
._c{width:2.072272pt;}
._3{width:3.244146pt;}
._1e{width:7.366234pt;}
._20{width:12.615875pt;}
._f{width:13.974207pt;}
._19{width:16.118724pt;}
._e{width:17.906113pt;}
._10{width:19.340740pt;}
._17{width:20.775342pt;}
._a{width:27.066573pt;}
._15{width:29.755040pt;}
._16{width:31.242714pt;}
._d{width:32.624199pt;}
._1c{width:35.748555pt;}
._1f{width:42.507078pt;}
._9{width:49.815482pt;}
._7{width:65.023353pt;}
._8{width:78.895046pt;}
._5{width:108.249292pt;}
._12{width:118.165925pt;}
._13{width:126.057496pt;}
._1a{width:127.521600pt;}
._11{width:137.523639pt;}
._4{width:153.562814pt;}
._1b{width:180.655600pt;}
._14{width:333.403603pt;}
.fsb{font-size:26.566933pt;}
.fs7{font-size:29.553873pt;}
.fs9{font-size:31.664864pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:33.775855pt;}
.fs6{font-size:37.997837pt;}
.fs8{font-size:42.219819pt;}
.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;}
.y6b{bottom:12.871366pt;}
.y6c{bottom:13.399114pt;}
.y66{bottom:39.258753pt;}
.y5c{bottom:44.536230pt;}
.y5b{bottom:55.091185pt;}
.y61{bottom:65.646140pt;}
.y58{bottom:66.701635pt;}
.y64{bottom:75.673347pt;}
.y59{bottom:77.256590pt;}
.y62{bottom:85.700554pt;}
.y57{bottom:86.756049pt;}
.y63{bottom:96.783257pt;}
.y5a{bottom:97.311004pt;}
.y33{bottom:100.740000pt;}
.y69{bottom:102.060734pt;}
.yf3{bottom:102.124000pt;}
.y68{bottom:105.227220pt;}
.y65{bottom:113.143436pt;}
.yf2{bottom:114.080000pt;}
.y67{bottom:114.726680pt;}
.y32{bottom:116.680000pt;}
.yf1{bottom:126.034667pt;}
.y54{bottom:132.620000pt;}
.y31{bottom:132.621333pt;}
.yf0{bottom:137.990667pt;}
.y30{bottom:148.561333pt;}
.y53{bottom:149.228000pt;}
.yef{bottom:149.945333pt;}
.yee{bottom:161.900000pt;}
.y2f{bottom:164.501333pt;}
.y52{bottom:165.168000pt;}
.yed{bottom:173.856000pt;}
.y2e{bottom:180.441333pt;}
.y51{bottom:181.109333pt;}
.yec{bottom:185.810667pt;}
.y56{bottom:194.944336pt;}
.y2d{bottom:196.381333pt;}
.y50{bottom:197.049333pt;}
.yeb{bottom:197.765333pt;}
.yea{bottom:209.721333pt;}
.y2c{bottom:212.321333pt;}
.y4f{bottom:212.989333pt;}
.yac{bottom:220.552000pt;}
.ye9{bottom:221.676000pt;}
.y6a{bottom:226.081453pt;}
.y60{bottom:227.136948pt;}
.yca{bottom:228.261333pt;}
.y2b{bottom:228.262667pt;}
.y4e{bottom:228.929333pt;}
.y5d{bottom:230.831182pt;}
.y5f{bottom:232.414426pt;}
.ye8{bottom:233.632000pt;}
.y5e{bottom:237.691903pt;}
.yab{bottom:243.630667pt;}
.y2a{bottom:244.202667pt;}
.y4d{bottom:244.869333pt;}
.ye7{bottom:245.586667pt;}
.ye6{bottom:257.541333pt;}
.yaa{bottom:259.570667pt;}
.y29{bottom:260.142667pt;}
.y4c{bottom:260.810667pt;}
.ye5{bottom:269.497333pt;}
.ya9{bottom:275.510667pt;}
.y28{bottom:276.082667pt;}
.y4b{bottom:276.750667pt;}
.ye4{bottom:281.452000pt;}
.ya8{bottom:291.450667pt;}
.y27{bottom:291.516000pt;}
.y86{bottom:292.022667pt;}
.y4a{bottom:292.690667pt;}
.ye3{bottom:293.406667pt;}
.ye2{bottom:305.362667pt;}
.ya7{bottom:307.390667pt;}
.y26{bottom:307.456000pt;}
.yc9{bottom:307.962667pt;}
.y49{bottom:308.630667pt;}
.y85{bottom:308.921333pt;}
.ye1{bottom:317.317333pt;}
.ya6{bottom:323.332000pt;}
.y25{bottom:323.396000pt;}
.yc8{bottom:323.904000pt;}
.y48{bottom:324.570667pt;}
.y84{bottom:324.862667pt;}
.ye0{bottom:329.272000pt;}
.y24{bottom:339.336000pt;}
.yc7{bottom:339.844000pt;}
.y47{bottom:340.510667pt;}
.y83{bottom:340.802667pt;}
.ydf{bottom:341.228000pt;}
.y23{bottom:355.277333pt;}
.yc6{bottom:355.784000pt;}
.y46{bottom:356.452000pt;}
.y82{bottom:356.742667pt;}
.yde{bottom:359.808000pt;}
.y22{bottom:371.217333pt;}
.yc5{bottom:371.724000pt;}
.y45{bottom:372.392000pt;}
.y81{bottom:372.682667pt;}
.ya5{bottom:373.390667pt;}
.ydd{bottom:381.278667pt;}
.ya4{bottom:385.346667pt;}
.y21{bottom:387.157333pt;}
.yc4{bottom:387.664000pt;}
.y44{bottom:388.332000pt;}
.y80{bottom:388.622667pt;}
.ydc{bottom:397.218667pt;}
.ya3{bottom:397.301333pt;}
.y20{bottom:403.097333pt;}
.yc3{bottom:403.604000pt;}
.y43{bottom:404.272000pt;}
.y7f{bottom:404.562667pt;}
.ya2{bottom:409.256000pt;}
.ydb{bottom:413.160000pt;}
.y1f{bottom:419.037333pt;}
.yc2{bottom:419.545333pt;}
.y42{bottom:420.212000pt;}
.y7e{bottom:420.504000pt;}
.ya1{bottom:421.212000pt;}
.yda{bottom:432.710667pt;}
.ya0{bottom:433.166667pt;}
.y1e{bottom:434.978667pt;}
.yc1{bottom:435.485333pt;}
.y41{bottom:436.152000pt;}
.y7d{bottom:436.444000pt;}
.y9f{bottom:441.678667pt;}
.y9e{bottom:445.122667pt;}
.yd9{bottom:446.622667pt;}
.y1d{bottom:450.918667pt;}
.yc0{bottom:451.425333pt;}
.y7c{bottom:452.384000pt;}
.y40{bottom:456.504000pt;}
.y9d{bottom:458.208000pt;}
.yd8{bottom:462.562667pt;}
.y9c{bottom:466.720000pt;}
.y1c{bottom:466.858667pt;}
.ybf{bottom:467.365333pt;}
.y7b{bottom:469.282667pt;}
.y9b{bottom:470.162667pt;}
.yd7{bottom:478.502667pt;}
.y3f{bottom:483.305333pt;}
.y9a{bottom:483.604000pt;}
.y7a{bottom:485.222667pt;}
.y1b{bottom:486.476000pt;}
.yd6{bottom:494.444000pt;}
.y99{bottom:495.560000pt;}
.y3e{bottom:499.245333pt;}
.y79{bottom:501.162667pt;}
.y1a{bottom:504.560000pt;}
.y98{bottom:507.514667pt;}
.yd5{bottom:510.384000pt;}
.y3d{bottom:515.186667pt;}
.y78{bottom:517.104000pt;}
.y19{bottom:517.842667pt;}
.y97{bottom:519.469333pt;}
.yd4{bottom:526.324000pt;}
.y18{bottom:531.126667pt;}
.y96{bottom:531.425333pt;}
.y77{bottom:533.044000pt;}
.yd3{bottom:542.264000pt;}
.y95{bottom:543.380000pt;}
.y17{bottom:544.410667pt;}
.y3c{bottom:547.066667pt;}
.y76{bottom:548.984000pt;}
.y94{bottom:555.334667pt;}
.y16{bottom:557.693333pt;}
.yd2{bottom:558.204000pt;}
.y3b{bottom:563.006667pt;}
.y75{bottom:564.924000pt;}
.y93{bottom:567.290667pt;}
.y15{bottom:570.977333pt;}
.yd1{bottom:574.144000pt;}
.y3a{bottom:578.946667pt;}
.y92{bottom:579.245333pt;}
.y74{bottom:580.864000pt;}
.y14{bottom:584.260000pt;}
.y91{bottom:587.757333pt;}
.y90{bottom:591.201333pt;}
.yd0{bottom:593.696000pt;}
.y39{bottom:594.886667pt;}
.y73{bottom:596.804000pt;}
.y13{bottom:597.544000pt;}
.y8f{bottom:600.485333pt;}
.y8e{bottom:603.929333pt;}
.ycf{bottom:609.485333pt;}
.y12{bottom:610.828000pt;}
.y8d{bottom:612.441333pt;}
.y72{bottom:612.745333pt;}
.y8c{bottom:615.884000pt;}
.yce{bottom:621.440000pt;}
.y11{bottom:624.110667pt;}
.y38{bottom:626.768000pt;}
.y8b{bottom:627.838667pt;}
.y71{bottom:628.685333pt;}
.y10{bottom:637.394667pt;}
.y8a{bottom:639.794667pt;}
.y37{bottom:642.708000pt;}
.y70{bottom:644.625333pt;}
.yf{bottom:650.678667pt;}
.y89{bottom:651.749333pt;}
.y36{bottom:658.648000pt;}
.y6f{bottom:660.565333pt;}
.y88{bottom:663.704000pt;}
.ye{bottom:663.961333pt;}
.y35{bottom:674.588000pt;}
.y6e{bottom:676.505333pt;}
.yd{bottom:677.245333pt;}
.y87{bottom:679.574667pt;}
.y34{bottom:690.528000pt;}
.yc{bottom:690.529333pt;}
.ybe{bottom:706.469333pt;}
.y6d{bottom:708.114667pt;}
.ybd{bottom:722.409333pt;}
.y55{bottom:727.329077pt;}
.yb{bottom:736.284000pt;}
.ybc{bottom:738.349333pt;}
.ya{bottom:753.170667pt;}
.ybb{bottom:754.289333pt;}
.yba{bottom:770.229333pt;}
.y9{bottom:771.102667pt;}
.yb9{bottom:786.170667pt;}
.y8{bottom:789.036000pt;}
.yb8{bottom:802.110667pt;}
.y7{bottom:806.968000pt;}
.yb7{bottom:818.050667pt;}
.y6{bottom:824.650667pt;}
.yb6{bottom:833.990667pt;}
.y5{bottom:842.534667pt;}
.yb5{bottom:849.930667pt;}
.y4{bottom:862.261333pt;}
.yb4{bottom:865.870667pt;}
.ycd{bottom:881.810667pt;}
.yb3{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.ycc{bottom:897.750667pt;}
.yb2{bottom:897.752000pt;}
.yb1{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.yb0{bottom:929.632000pt;}
.yaf{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.yae{bottom:961.512000pt;}
.ycb{bottom:977.452000pt;}
.yad{bottom:977.453333pt;}
.hc{height:20.015245pt;}
.h1a{height:22.107556pt;}
.hd{height:22.454017pt;}
.h11{height:24.057875pt;}
.ha{height:25.661734pt;}
.h10{height:26.168866pt;}
.hb{height:28.869451pt;}
.h20{height:29.159939pt;}
.h12{height:29.244954pt;}
.h14{height:29.499997pt;}
.h15{height:31.880400pt;}
.he{height:32.077167pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h8{height:36.449833pt;}
.h5{height:36.556100pt;}
.h1f{height:36.817434pt;}
.h4{height:36.822767pt;}
.h13{height:36.874903pt;}
.h18{height:37.104889pt;}
.h16{height:37.110223pt;}
.h3{height:40.211857pt;}
.h2{height:40.505190pt;}
.h1b{height:43.015620pt;}
.h1c{height:43.229582pt;}
.h17{height:43.270663pt;}
.h1e{height:43.275997pt;}
.h19{height:50.880889pt;}
.hf{height:51.076086pt;}
.h1d{height:57.000249pt;}
.h1{height:87.734861pt;}
.h9{height:254.896559pt;}
.h0{height:1056.000000pt;}
.w1{width:533.018318pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:7.441815pt;}
.x28{left:23.109326pt;}
.x23{left:38.578932pt;}
.x19{left:64.224173pt;}
.x12{left:65.285333pt;}
.x1a{left:67.324691pt;}
.x1b{left:70.680840pt;}
.x2{left:78.501333pt;}
.x3{left:106.248000pt;}
.x4{left:118.434667pt;}
.x1{left:127.996000pt;}
.x27{left:129.029949pt;}
.x17{left:139.162416pt;}
.x8{left:177.924000pt;}
.x13{left:180.825333pt;}
.x5{left:191.969333pt;}
.x24{left:197.307313pt;}
.x9{left:207.950667pt;}
.x1c{left:220.742611pt;}
.x18{left:225.409880pt;}
.x7{left:264.516000pt;}
.x10{left:269.418667pt;}
.xa{left:286.378667pt;}
.xe{left:302.708000pt;}
.xc{left:303.721333pt;}
.x2c{left:311.498667pt;}
.x1d{left:321.616641pt;}
.x1e{left:326.894119pt;}
.x1f{left:331.627356pt;}
.x11{left:346.309333pt;}
.x2b{left:354.172080pt;}
.x26{left:369.682919pt;}
.x2a{left:401.026184pt;}
.xb{left:414.165333pt;}
.x15{left:415.970667pt;}
.x2d{left:420.454667pt;}
.x22{left:424.148132pt;}
.x20{left:427.108470pt;}
.x21{left:428.180457pt;}
.x14{left:429.253333pt;}
.xf{left:434.505333pt;}
.xd{left:460.266667pt;}
.x6{left:478.393333pt;}
.x25{left:487.115034pt;}
.x36{left:500.885333pt;}
.x16{left:502.606667pt;}
.x38{left:518.560000pt;}
.x3a{left:521.860000pt;}
.x37{left:529.857333pt;}
.x3b{left:546.149333pt;}
.x2e{left:588.945333pt;}
.x33{left:606.733333pt;}
.x35{left:613.782667pt;}
.x34{left:627.020000pt;}
.x2f{left:635.270667pt;}
.x31{left:651.160000pt;}
.x32{left:668.225333pt;}
.x30{left:691.616000pt;}
.x39{left:733.008000pt;}
}




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