
    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_cd3a75105525706f060be282.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_115e6c6f4ba033402d4943fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766000;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_a3f7a61d530511a760305d35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8ccc0fb14a57d07c9c38704.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.751000;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_e72ad939c4d8dd5d6b47841d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dce9a7724be868c685850971.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_bf40d3686e7adc28186941f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:2.400000;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_8ab6c21aea591f66ed628937.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-34.188000px;}
.v4{vertical-align:-17.358000px;}
.v5{vertical-align:-10.998000px;}
.v7{vertical-align:-8.964000px;}
.v13{vertical-align:-7.176000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:7.176000px;}
.vb{vertical-align:8.574000px;}
.v11{vertical-align:18.030000px;}
.v6{vertical-align:21.702000px;}
.ve{vertical-align:24.150000px;}
.v1{vertical-align:28.212000px;}
.v2{vertical-align:34.188000px;}
.v9{vertical-align:41.904000px;}
.vf{vertical-align:45.372000px;}
.vc{vertical-align:46.374000px;}
.vd{vertical-align:48.060000px;}
.v12{vertical-align:66.714000px;}
.v10{vertical-align:69.282000px;}
.v8{vertical-align:83.928000px;}
.va{vertical-align:126.366000px;}
.lsa{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000017px;}
.ls3{letter-spacing:0.000600px;}
.ls50{letter-spacing:0.000925px;}
.ls1{letter-spacing:0.001500px;}
.ls31{letter-spacing:0.001710px;}
.ls3b{letter-spacing:0.004200px;}
.ls2d{letter-spacing:1.197634px;}
.ls41{letter-spacing:1.311468px;}
.ls44{letter-spacing:2.686200px;}
.ls7{letter-spacing:2.983200px;}
.ls0{letter-spacing:2.985797px;}
.ls2{letter-spacing:2.988600px;}
.lsc{letter-spacing:2.989151px;}
.ls8{letter-spacing:2.989200px;}
.lsb{letter-spacing:2.989702px;}
.ls4{letter-spacing:2.991797px;}
.ls2c{letter-spacing:4.486200px;}
.ls2f{letter-spacing:5.859468px;}
.ls1e{letter-spacing:6.991470px;}
.ls19{letter-spacing:6.997470px;}
.ls34{letter-spacing:7.044433px;}
.ls3a{letter-spacing:7.170600px;}
.ls15{letter-spacing:7.174200px;}
.ls2a{letter-spacing:9.961032px;}
.ls16{letter-spacing:9.961470px;}
.ls4b{letter-spacing:9.962276px;}
.ls1d{letter-spacing:9.967032px;}
.ls25{letter-spacing:9.967470px;}
.ls6{letter-spacing:10.957200px;}
.ls5{letter-spacing:10.961674px;}
.ls21{letter-spacing:13.279032px;}
.ls32{letter-spacing:13.282200px;}
.ls10{letter-spacing:13.285032px;}
.ls33{letter-spacing:13.285930px;}
.ls3c{letter-spacing:14.476200px;}
.ls3d{letter-spacing:14.481634px;}
.ls48{letter-spacing:14.653930px;}
.ls4a{letter-spacing:14.953930px;}
.ls11{letter-spacing:16.150200px;}
.ls22{letter-spacing:16.156200px;}
.ls47{letter-spacing:16.217108px;}
.lsf{letter-spacing:16.269797px;}
.ls2b{letter-spacing:16.272600px;}
.ls20{letter-spacing:16.275797px;}
.ls42{letter-spacing:16.601701px;}
.ls26{letter-spacing:16.602017px;}
.ls27{letter-spacing:16.602616px;}
.ls3e{letter-spacing:17.764200px;}
.ls52{letter-spacing:17.919468px;}
.ls46{letter-spacing:18.121930px;}
.ls49{letter-spacing:18.185108px;}
.ls57{letter-spacing:18.379032px;}
.ls58{letter-spacing:18.382200px;}
.ls45{letter-spacing:19.261200px;}
.ls38{letter-spacing:20.454600px;}
.ls12{letter-spacing:20.455032px;}
.ls23{letter-spacing:20.458200px;}
.ls29{letter-spacing:20.461032px;}
.ls5b{letter-spacing:20.647032px;}
.ls5d{letter-spacing:20.716200px;}
.ls5c{letter-spacing:20.719032px;}
.ls53{letter-spacing:20.846383px;}
.ls5a{letter-spacing:20.851032px;}
.ls51{letter-spacing:20.852383px;}
.ls36{letter-spacing:20.880600px;}
.ls17{letter-spacing:20.922017px;}
.ls18{letter-spacing:20.922616px;}
.ls13{letter-spacing:21.052200px;}
.ls1b{letter-spacing:21.058200px;}
.ls40{letter-spacing:21.153797px;}
.ls37{letter-spacing:21.205032px;}
.ls35{letter-spacing:21.396600px;}
.ls1c{letter-spacing:21.529032px;}
.ls54{letter-spacing:21.530725px;}
.ls14{letter-spacing:21.535032px;}
.ls28{letter-spacing:21.796200px;}
.ls1a{letter-spacing:21.802200px;}
.ls4c{letter-spacing:22.579200px;}
.ls5e{letter-spacing:22.909200px;}
.ls43{letter-spacing:23.779032px;}
.lsd{letter-spacing:25.446600px;}
.ls59{letter-spacing:26.454600px;}
.ls9{letter-spacing:26.900600px;}
.ls5f{letter-spacing:29.329200px;}
.ls4e{letter-spacing:30.252433px;}
.ls39{letter-spacing:32.490600px;}
.ls24{letter-spacing:37.642200px;}
.ls4d{letter-spacing:55.237032px;}
.ls55{letter-spacing:127.375363px;}
.ls56{letter-spacing:127.378282px;}
.ls30{letter-spacing:314.755032px;}
.ls4f{letter-spacing:823.008433px;}
.ls1f{letter-spacing:1206.972600px;}
.ls3f{letter-spacing:1209.855634px;}
.ls2e{letter-spacing:1395.432600px;}
.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;}
}
.ws8{word-spacing:-64.904742px;}
.ws45{word-spacing:-14.943900px;}
.wsa{word-spacing:-14.764500px;}
.ws16{word-spacing:-13.449600px;}
.ws4{word-spacing:-11.955150px;}
.ws9{word-spacing:-10.460700px;}
.ws6{word-spacing:-5.487426px;}
.ws15{word-spacing:-5.057050px;}
.ws17{word-spacing:-3.586545px;}
.ws5a{word-spacing:-0.836858px;}
.ws2{word-spacing:-0.095641px;}
.ws46{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053200px;}
.ws50{word-spacing:-0.041843px;}
.ws7{word-spacing:0.000000px;}
.ws6b{word-spacing:0.059776px;}
.ws68{word-spacing:0.239102px;}
.ws40{word-spacing:0.597756px;}
.ws39{word-spacing:0.657532px;}
.ws5c{word-spacing:0.777083px;}
.ws80{word-spacing:0.956410px;}
.ws29{word-spacing:1.135736px;}
.ws83{word-spacing:1.374839px;}
.ws35{word-spacing:1.494390px;}
.ws78{word-spacing:1.613941px;}
.ws4c{word-spacing:1.673717px;}
.ws5{word-spacing:2.008474px;}
.wsd{word-spacing:2.098138px;}
.ws1e{word-spacing:2.331248px;}
.ws2a{word-spacing:2.391024px;}
.ws3b{word-spacing:2.450800px;}
.ws2d{word-spacing:2.630126px;}
.ws31{word-spacing:2.809453px;}
.ws3c{word-spacing:2.988780px;}
.ws25{word-spacing:3.048556px;}
.ws51{word-spacing:3.227882px;}
.ws5b{word-spacing:3.407209px;}
.ws64{word-spacing:3.436500px;}
.ws22{word-spacing:3.443083px;}
.ws65{word-spacing:3.466985px;}
.ws2f{word-spacing:3.526760px;}
.ws23{word-spacing:3.538724px;}
.ws6d{word-spacing:3.586536px;}
.ws7a{word-spacing:3.706087px;}
.ws2b{word-spacing:3.765863px;}
.ws77{word-spacing:3.885414px;}
.ws66{word-spacing:3.945190px;}
.ws67{word-spacing:4.004965px;}
.wsf{word-spacing:4.034880px;}
.ws75{word-spacing:4.064741px;}
.ws62{word-spacing:4.124516px;}
.ws6c{word-spacing:4.303843px;}
.ws44{word-spacing:4.423394px;}
.ws9c{word-spacing:4.495136px;}
.ws74{word-spacing:4.662497px;}
.ws79{word-spacing:4.722272px;}
.ws3d{word-spacing:4.782048px;}
.ws9e{word-spacing:4.877701px;}
.ws1f{word-spacing:4.961375px;}
.ws55{word-spacing:4.978500px;}
.ws49{word-spacing:5.021150px;}
.ws63{word-spacing:5.140702px;}
.ws42{word-spacing:5.200477px;}
.ws8b{word-spacing:5.308109px;}
.ws2c{word-spacing:5.379804px;}
.ws41{word-spacing:5.439580px;}
.ws3a{word-spacing:5.618906px;}
.ws73{word-spacing:5.678682px;}
.ws7c{word-spacing:5.772600px;}
.ws7d{word-spacing:5.798233px;}
.ws11{word-spacing:5.864026px;}
.ws71{word-spacing:5.908800px;}
.ws72{word-spacing:5.917784px;}
.ws26{word-spacing:5.977560px;}
.ws38{word-spacing:6.037336px;}
.ws12{word-spacing:6.079219px;}
.ws52{word-spacing:6.192734px;}
.ws84{word-spacing:6.336214px;}
.ws47{word-spacing:6.395989px;}
.ws48{word-spacing:6.455765px;}
.ws14{word-spacing:6.455808px;}
.ws7b{word-spacing:6.515540px;}
.ws93{word-spacing:6.635092px;}
.ws76{word-spacing:6.694867px;}
.ws37{word-spacing:6.754643px;}
.ws34{word-spacing:6.814418px;}
.ws85{word-spacing:6.874194px;}
.ws13{word-spacing:6.886195px;}
.ws86{word-spacing:6.933970px;}
.ws98{word-spacing:6.981808px;}
.ws5d{word-spacing:7.113296px;}
.ws27{word-spacing:7.173072px;}
.ws3f{word-spacing:7.232848px;}
.ws1d{word-spacing:7.292623px;}
.ws20{word-spacing:7.460014px;}
.ws2e{word-spacing:7.531726px;}
.ws6e{word-spacing:7.651277px;}
.ws30{word-spacing:7.890379px;}
.ws8d{word-spacing:7.938220px;}
.ws3{word-spacing:7.986040px;}
.ws91{word-spacing:8.069706px;}
.ws1b{word-spacing:8.129482px;}
.ws97{word-spacing:8.225143px;}
.ws89{word-spacing:8.272964px;}
.ws95{word-spacing:8.320784px;}
.ws5f{word-spacing:8.512067px;}
.ws69{word-spacing:8.547911px;}
.ws54{word-spacing:8.846789px;}
.ws9b{word-spacing:8.846811px;}
.ws32{word-spacing:9.026116px;}
.ws10{word-spacing:9.091930px;}
.ws7f{word-spacing:9.145667px;}
.ws7e{word-spacing:9.205442px;}
.wsa1{word-spacing:9.325017px;}
.ws1c{word-spacing:9.803198px;}
.ws3e{word-spacing:9.862974px;}
.ws57{word-spacing:9.902866px;}
.ws70{word-spacing:10.042301px;}
.ws56{word-spacing:10.101503px;}
.ws4a{word-spacing:10.341179px;}
.ws6f{word-spacing:10.819384px;}
.ws96{word-spacing:10.855276px;}
.ws4f{word-spacing:11.118262px;}
.wsc{word-spacing:11.142200px;}
.ws4e{word-spacing:11.178037px;}
.ws6a{word-spacing:11.656242px;}
.ws18{word-spacing:11.907221px;}
.wsb{word-spacing:11.907329px;}
.ws87{word-spacing:11.955120px;}
.ws4d{word-spacing:12.074671px;}
.ws43{word-spacing:12.313774px;}
.ws99{word-spacing:12.385535px;}
.ws33{word-spacing:12.672427px;}
.wse{word-spacing:13.126810px;}
.ws9d{word-spacing:13.485409px;}
.ws8f{word-spacing:14.047266px;}
.ws8a{word-spacing:14.274509px;}
.ws9f{word-spacing:14.298359px;}
.ws9a{word-spacing:14.394001px;}
.ws1a{word-spacing:15.123227px;}
.ws58{word-spacing:16.498066px;}
.ws4b{word-spacing:16.536536px;}
.ws53{word-spacing:16.557841px;}
.ws94{word-spacing:17.932725px;}
.ws28{word-spacing:18.709763px;}
.wsa0{word-spacing:19.319522px;}
.ws21{word-spacing:19.367343px;}
.ws36{word-spacing:19.845499px;}
.ws24{word-spacing:19.893370px;}
.ws0{word-spacing:19.896875px;}
.ws5e{word-spacing:20.419396px;}
.ws92{word-spacing:22.953830px;}
.ws90{word-spacing:27.197898px;}
.ws8e{word-spacing:28.871615px;}
.ws19{word-spacing:29.828024px;}
.ws61{word-spacing:112.426231px;}
.ws60{word-spacing:158.907854px;}
.ws8c{word-spacing:198.359849px;}
.ws82{word-spacing:295.674770px;}
.ws88{word-spacing:318.007447px;}
.ws81{word-spacing:344.834347px;}
.ws59{word-spacing:799.737752px;}
._e{margin-left:-7.388243px;}
._f{margin-left:-6.180800px;}
._4{margin-left:-5.045082px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.004250px;}
._12{width:1.321801px;}
._14{width:2.468725px;}
._3{width:3.538724px;}
._11{width:4.959283px;}
._20{width:6.168857px;}
._10{width:7.711052px;}
._5{width:12.665240px;}
._13{width:14.406215px;}
._9{width:16.498090px;}
._b{width:17.693578px;}
._28{width:19.351747px;}
._7{width:20.365666px;}
._29{width:21.643108px;}
._d{width:23.177396px;}
._6{width:24.815282px;}
._27{width:26.255773px;}
._c{width:29.887800px;}
._8{width:39.223025px;}
._15{width:123.664072px;}
._1a{width:130.693700px;}
._1b{width:134.662810px;}
._18{width:144.322571px;}
._17{width:149.582837px;}
._16{width:176.157210px;}
._22{width:210.328766px;}
._1f{width:220.201007px;}
._25{width:227.578235px;}
._19{width:252.444947px;}
._1c{width:257.753034px;}
._23{width:316.476731px;}
._1d{width:327.571110px;}
._1e{width:359.467450px;}
._26{width:367.070926px;}
._21{width:536.756607px;}
._24{width:672.596739px;}
._a{width:1265.524341px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fsc{font-size:40.647600px;}
.fs6{font-size:41.842800px;}
.fsa{font-size:45.429600px;}
.fs2{font-size:47.820600px;}
.fs0{font-size:53.200200px;}
.fs9{font-size:53.798400px;}
.fs7{font-size:59.058000px;}
.fsb{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs5{font-size:77.708400px;}
.fs1{font-size:95.641200px;}
.fs4{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:53.050500px;}
.y50{bottom:64.857000px;}
.y2b{bottom:67.995000px;}
.y7a{bottom:83.782500px;}
.y2a{bottom:87.421500px;}
.y4f{bottom:88.170000px;}
.y79{bottom:94.393500px;}
.y29{bottom:102.366000px;}
.yc6{bottom:105.561000px;}
.y98{bottom:105.892500px;}
.y4e{bottom:106.404000px;}
.y28{bottom:117.310500px;}
.yc5{bottom:122.952000px;}
.y97{bottom:123.615000px;}
.y4d{bottom:124.639500px;}
.y78{bottom:128.845500px;}
.yc4{bottom:140.343000px;}
.y96{bottom:141.337500px;}
.y4c{bottom:142.875000px;}
.y27{bottom:144.957000px;}
.y77{bottom:149.704500px;}
.y76{bottom:155.010000px;}
.y75{bottom:155.772000px;}
.yc3{bottom:157.734000px;}
.y95{bottom:159.060000px;}
.yf4{bottom:162.085500px;}
.y26{bottom:163.717500px;}
.y74{bottom:166.383000px;}
.y4b{bottom:167.935500px;}
.yc2{bottom:175.125000px;}
.y94{bottom:176.782500px;}
.yf3{bottom:177.028500px;}
.y25{bottom:188.662500px;}
.yf2{bottom:191.973000px;}
.yc1{bottom:192.516000px;}
.y93{bottom:194.505000px;}
.y73{bottom:200.790000px;}
.y24{bottom:206.433000px;}
.yf1{bottom:206.917500px;}
.yc0{bottom:209.907000px;}
.y92{bottom:219.052500px;}
.y72{bottom:219.496500px;}
.yf0{bottom:221.860500px;}
.y23{bottom:224.202000px;}
.ybf{bottom:235.182000px;}
.yef{bottom:236.805000px;}
.y71{bottom:238.201500px;}
.y22{bottom:241.972500px;}
.yee{bottom:251.749500px;}
.y70{bottom:256.906500px;}
.y21{bottom:259.743000px;}
.yed{bottom:266.692500px;}
.y6f{bottom:275.626500px;}
.y20{bottom:277.512000px;}
.yec{bottom:281.637000px;}
.ybe{bottom:282.751500px;}
.y1f{bottom:295.282500px;}
.yeb{bottom:296.581500px;}
.ybd{bottom:297.696000px;}
.yea{bottom:311.524500px;}
.ybc{bottom:312.640500px;}
.y6e{bottom:314.203500px;}
.y1e{bottom:321.693000px;}
.y6c{bottom:324.813000px;}
.ye9{bottom:326.469000px;}
.y6d{bottom:331.101000px;}
.ybb{bottom:333.651000px;}
.ye8{bottom:341.413500px;}
.yba{bottom:352.765500px;}
.ye7{bottom:356.356500px;}
.y6b{bottom:357.079500px;}
.ye6{bottom:371.301000px;}
.yb9{bottom:373.860000px;}
.y1d{bottom:380.224500px;}
.ye5{bottom:386.244000px;}
.y91{bottom:386.251500px;}
.y6a{bottom:386.296500px;}
.yb8{bottom:391.251000px;}
.y1c{bottom:395.169000px;}
.ye4{bottom:401.188500px;}
.y90{bottom:403.974000px;}
.yb7{bottom:408.642000px;}
.y69{bottom:410.586000px;}
.ye3{bottom:416.133000px;}
.y68{bottom:421.197000px;}
.y8f{bottom:421.696500px;}
.yb6{bottom:426.033000px;}
.ye2{bottom:431.076000px;}
.y1b{bottom:438.987000px;}
.y8e{bottom:439.419000px;}
.y4a{bottom:442.846500px;}
.yb5{bottom:443.424000px;}
.ye1{bottom:446.020500px;}
.y67{bottom:450.934500px;}
.y8d{bottom:457.141500px;}
.yb4{bottom:460.815000px;}
.ye0{bottom:460.965000px;}
.y49{bottom:461.082000px;}
.y66{bottom:461.545500px;}
.y1a{bottom:464.392500px;}
.y8c{bottom:474.864000px;}
.ydf{bottom:475.908000px;}
.y48{bottom:479.317500px;}
.y19{bottom:480.831000px;}
.yb3{bottom:490.098000px;}
.yde{bottom:490.852500px;}
.y8b{bottom:492.586500px;}
.y65{bottom:496.960500px;}
.y18{bottom:497.269500px;}
.y47{bottom:497.553000px;}
.ydd{bottom:505.797000px;}
.yb2{bottom:511.108500px;}
.y17{bottom:513.706500px;}
.y64{bottom:515.667000px;}
.y8a{bottom:517.135500px;}
.ydc{bottom:520.740000px;}
.y16{bottom:530.145000px;}
.yb1{bottom:530.224500px;}
.y46{bottom:535.536000px;}
.ydb{bottom:535.684500px;}
.y63{bottom:539.956500px;}
.y15{bottom:546.583500px;}
.y62{bottom:550.566000px;}
.yda{bottom:550.629000px;}
.yb0{bottom:554.380500px;}
.y14{bottom:563.022000px;}
.y45{bottom:564.250500px;}
.yd9{bottom:565.572000px;}
.yaf{bottom:571.771500px;}
.y13{bottom:579.460500px;}
.y61{bottom:580.305000px;}
.yd8{bottom:580.516500px;}
.y60{bottom:590.914500px;}
.yd7{bottom:595.461000px;}
.y12{bottom:595.899000px;}
.y44{bottom:603.747000px;}
.yae{bottom:606.012000px;}
.yd6{bottom:610.404000px;}
.y11{bottom:612.337500px;}
.y43{bottom:621.982500px;}
.yd5{bottom:625.348500px;}
.y5f{bottom:626.331000px;}
.y10{bottom:637.741500px;}
.yad{bottom:639.711000px;}
.y42{bottom:640.218000px;}
.yd4{bottom:640.291500px;}
.y5e{bottom:645.036000px;}
.yac{bottom:657.102000px;}
.y41{bottom:658.453500px;}
.y5d{bottom:663.756000px;}
.yd3{bottom:664.203000px;}
.yab{bottom:674.493000px;}
.y40{bottom:676.689000px;}
.y89{bottom:683.487000px;}
.yaa{bottom:691.884000px;}
.yf{bottom:693.993000px;}
.y3f{bottom:694.924500px;}
.yd2{bottom:700.068000px;}
.y88{bottom:701.209500px;}
.y5c{bottom:708.892500px;}
.ye{bottom:708.936000px;}
.ya9{bottom:709.276500px;}
.y3e{bottom:713.160000px;}
.y87{bottom:718.932000px;}
.ya8{bottom:726.667500px;}
.yd1{bottom:726.967500px;}
.y5b{bottom:727.597500px;}
.yd{bottom:729.858000px;}
.y3d{bottom:731.394000px;}
.y86{bottom:736.654500px;}
.ya7{bottom:744.058500px;}
.y5a{bottom:746.304000px;}
.yc{bottom:749.142000px;}
.y3c{bottom:749.629500px;}
.ya6{bottom:761.449500px;}
.yd0{bottom:762.832500px;}
.yb{bottom:764.085000px;}
.y3b{bottom:767.865000px;}
.y85{bottom:771.889500px;}
.ya{bottom:774.690000px;}
.ya5{bottom:778.840500px;}
.ycf{bottom:780.765000px;}
.y3a{bottom:786.100500px;}
.y59{bottom:787.576500px;}
.y9{bottom:793.974000px;}
.ya4{bottom:796.231500px;}
.y39{bottom:804.336000px;}
.yce{bottom:807.664500px;}
.ya3{bottom:813.622500px;}
.y8{bottom:815.337000px;}
.y84{bottom:818.806500px;}
.y38{bottom:822.571500px;}
.ya2{bottom:831.013500px;}
.y58{bottom:832.713000px;}
.y83{bottom:833.751000px;}
.y37{bottom:840.807000px;}
.ycd{bottom:843.529500px;}
.ya1{bottom:848.404500px;}
.y57{bottom:851.419500px;}
.y7{bottom:852.268500px;}
.y82{bottom:854.761500px;}
.y36{bottom:859.042500px;}
.ycc{bottom:861.463500px;}
.ya0{bottom:865.795500px;}
.y56{bottom:870.124500px;}
.y81{bottom:873.877500px;}
.y35{bottom:877.278000px;}
.y9f{bottom:883.186500px;}
.y6{bottom:888.319500px;}
.ycb{bottom:888.361500px;}
.y80{bottom:888.820500px;}
.y55{bottom:888.829500px;}
.y34{bottom:895.513500px;}
.y9e{bottom:900.577500px;}
.y5{bottom:906.252000px;}
.y54{bottom:907.534500px;}
.y7f{bottom:907.765500px;}
.y33{bottom:913.747500px;}
.y9d{bottom:917.970000px;}
.yca{bottom:924.228000px;}
.y7e{bottom:925.488000px;}
.y53{bottom:926.241000px;}
.y32{bottom:931.983000px;}
.y9c{bottom:935.361000px;}
.y4{bottom:941.785500px;}
.yc9{bottom:942.160500px;}
.y7d{bottom:943.210500px;}
.y52{bottom:944.946000px;}
.y31{bottom:950.218500px;}
.y9b{bottom:952.752000px;}
.y3{bottom:956.730000px;}
.yc8{bottom:960.093000px;}
.y7c{bottom:960.933000px;}
.y51{bottom:963.651000px;}
.y30{bottom:968.454000px;}
.y9a{bottom:970.143000px;}
.yc7{bottom:978.025500px;}
.y7b{bottom:978.655500px;}
.y2f{bottom:986.689500px;}
.y99{bottom:987.534000px;}
.y2e{bottom:1004.925000px;}
.y2{bottom:1009.407000px;}
.y1{bottom:1035.426000px;}
.y2d{bottom:1037.802000px;}
.h8{height:24.675533px;}
.he{height:27.152597px;}
.h9{height:32.661470px;}
.h4{height:32.900573px;}
.h10{height:33.091855px;}
.hb{height:37.013299px;}
.ha{height:37.228493px;}
.h2{height:38.782946px;}
.hf{height:40.826735px;}
.hd{height:41.125613px;}
.h27{height:41.322221px;}
.hc{height:41.364715px;}
.h26{height:41.425613px;}
.h28{height:42.033533px;}
.h25{height:42.084715px;}
.h5{height:49.351066px;}
.h23{height:49.646990px;}
.h24{height:49.652990px;}
.h11{height:50.489846px;}
.h1f{height:56.100632px;}
.h6{height:69.913872px;}
.h1b{height:72.031678px;}
.h3{height:72.113465px;}
.h7{height:73.638744px;}
.h19{height:73.950632px;}
.h1a{height:74.159846px;}
.h1e{height:82.724735px;}
.h21{height:83.029613px;}
.h1d{height:83.420735px;}
.h1c{height:83.563613px;}
.h22{height:83.569613px;}
.h17{height:86.671678px;}
.h12{height:86.677678px;}
.h18{height:99.102632px;}
.h20{height:107.839613px;}
.h13{height:125.168735px;}
.h15{height:125.174735px;}
.h16{height:125.473613px;}
.h14{height:129.115678px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.xb{left:58.468500px;}
.x40{left:60.453000px;}
.x9{left:62.704500px;}
.x3e{left:66.430500px;}
.x11{left:68.865000px;}
.x5{left:72.781500px;}
.x10{left:76.401000px;}
.x12{left:80.884500px;}
.x3f{left:87.841500px;}
.x8{left:91.489500px;}
.x15{left:94.333500px;}
.x2c{left:95.469000px;}
.x30{left:111.934500px;}
.x27{left:120.697500px;}
.xc{left:123.865500px;}
.x36{left:128.412000px;}
.x37{left:135.211500px;}
.x28{left:150.540000px;}
.x3b{left:165.276000px;}
.x7{left:178.044000px;}
.x29{left:180.045000px;}
.x39{left:189.226500px;}
.x16{left:199.411500px;}
.x38{left:201.730500px;}
.x2a{left:213.697500px;}
.x13{left:220.693500px;}
.x17{left:228.916500px;}
.x2d{left:237.612000px;}
.x35{left:242.908500px;}
.x2b{left:247.350000px;}
.x1{left:257.418000px;}
.x1f{left:259.384500px;}
.x3d{left:261.007500px;}
.x2e{left:265.066500px;}
.xe{left:274.137000px;}
.xa{left:290.461500px;}
.x20{left:293.037000px;}
.x3{left:298.098000px;}
.x31{left:301.899000px;}
.x1b{left:305.200500px;}
.x2{left:314.139000px;}
.x18{left:317.418000px;}
.x2f{left:322.408500px;}
.xd{left:323.661000px;}
.x21{left:326.689500px;}
.x1c{left:331.564500px;}
.x19{left:347.259000px;}
.xf{left:352.663500px;}
.x1d{left:361.407000px;}
.x6{left:369.840000px;}
.x3a{left:371.101500px;}
.x1a{left:376.765500px;}
.x32{left:384.279000px;}
.x1e{left:390.912000px;}
.x14{left:399.222000px;}
.x22{left:413.032500px;}
.x23{left:442.873500px;}
.x24{left:472.380000px;}
.x33{left:482.241000px;}
.x25{left:506.032500px;}
.x34{left:509.982000px;}
.x26{left:539.685000px;}
.x4{left:615.985500px;}
.x3c{left:721.248000px;}
@media print{
.v3{vertical-align:-30.389333pt;}
.v4{vertical-align:-15.429333pt;}
.v5{vertical-align:-9.776000pt;}
.v7{vertical-align:-7.968000pt;}
.v13{vertical-align:-6.378667pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:6.378667pt;}
.vb{vertical-align:7.621333pt;}
.v11{vertical-align:16.026667pt;}
.v6{vertical-align:19.290667pt;}
.ve{vertical-align:21.466667pt;}
.v1{vertical-align:25.077333pt;}
.v2{vertical-align:30.389333pt;}
.v9{vertical-align:37.248000pt;}
.vf{vertical-align:40.330667pt;}
.vc{vertical-align:41.221333pt;}
.vd{vertical-align:42.720000pt;}
.v12{vertical-align:59.301333pt;}
.v10{vertical-align:61.584000pt;}
.v8{vertical-align:74.602667pt;}
.va{vertical-align:112.325333pt;}
.lsa{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000015pt;}
.ls3{letter-spacing:0.000533pt;}
.ls50{letter-spacing:0.000822pt;}
.ls1{letter-spacing:0.001333pt;}
.ls31{letter-spacing:0.001520pt;}
.ls3b{letter-spacing:0.003733pt;}
.ls2d{letter-spacing:1.064563pt;}
.ls41{letter-spacing:1.165749pt;}
.ls44{letter-spacing:2.387733pt;}
.ls7{letter-spacing:2.651733pt;}
.ls0{letter-spacing:2.654042pt;}
.ls2{letter-spacing:2.656533pt;}
.lsc{letter-spacing:2.657023pt;}
.ls8{letter-spacing:2.657067pt;}
.lsb{letter-spacing:2.657513pt;}
.ls4{letter-spacing:2.659375pt;}
.ls2c{letter-spacing:3.987733pt;}
.ls2f{letter-spacing:5.208416pt;}
.ls1e{letter-spacing:6.214640pt;}
.ls19{letter-spacing:6.219973pt;}
.ls34{letter-spacing:6.261718pt;}
.ls3a{letter-spacing:6.373867pt;}
.ls15{letter-spacing:6.377067pt;}
.ls2a{letter-spacing:8.854251pt;}
.ls16{letter-spacing:8.854640pt;}
.ls4b{letter-spacing:8.855357pt;}
.ls1d{letter-spacing:8.859584pt;}
.ls25{letter-spacing:8.859973pt;}
.ls6{letter-spacing:9.739733pt;}
.ls5{letter-spacing:9.743710pt;}
.ls21{letter-spacing:11.803584pt;}
.ls32{letter-spacing:11.806400pt;}
.ls10{letter-spacing:11.808917pt;}
.ls33{letter-spacing:11.809715pt;}
.ls3c{letter-spacing:12.867733pt;}
.ls3d{letter-spacing:12.872563pt;}
.ls48{letter-spacing:13.025715pt;}
.ls4a{letter-spacing:13.292382pt;}
.ls11{letter-spacing:14.355733pt;}
.ls22{letter-spacing:14.361067pt;}
.ls47{letter-spacing:14.415207pt;}
.lsf{letter-spacing:14.462042pt;}
.ls2b{letter-spacing:14.464533pt;}
.ls20{letter-spacing:14.467375pt;}
.ls42{letter-spacing:14.757068pt;}
.ls26{letter-spacing:14.757348pt;}
.ls27{letter-spacing:14.757881pt;}
.ls3e{letter-spacing:15.790400pt;}
.ls52{letter-spacing:15.928416pt;}
.ls46{letter-spacing:16.108382pt;}
.ls49{letter-spacing:16.164541pt;}
.ls57{letter-spacing:16.336917pt;}
.ls58{letter-spacing:16.339733pt;}
.ls45{letter-spacing:17.121067pt;}
.ls38{letter-spacing:18.181867pt;}
.ls12{letter-spacing:18.182251pt;}
.ls23{letter-spacing:18.185067pt;}
.ls29{letter-spacing:18.187584pt;}
.ls5b{letter-spacing:18.352917pt;}
.ls5d{letter-spacing:18.414400pt;}
.ls5c{letter-spacing:18.416917pt;}
.ls53{letter-spacing:18.530118pt;}
.ls5a{letter-spacing:18.534251pt;}
.ls51{letter-spacing:18.535452pt;}
.ls36{letter-spacing:18.560533pt;}
.ls17{letter-spacing:18.597348pt;}
.ls18{letter-spacing:18.597881pt;}
.ls13{letter-spacing:18.713067pt;}
.ls1b{letter-spacing:18.718400pt;}
.ls40{letter-spacing:18.803375pt;}
.ls37{letter-spacing:18.848917pt;}
.ls35{letter-spacing:19.019200pt;}
.ls1c{letter-spacing:19.136917pt;}
.ls54{letter-spacing:19.138422pt;}
.ls14{letter-spacing:19.142251pt;}
.ls28{letter-spacing:19.374400pt;}
.ls1a{letter-spacing:19.379733pt;}
.ls4c{letter-spacing:20.070400pt;}
.ls5e{letter-spacing:20.363733pt;}
.ls43{letter-spacing:21.136917pt;}
.lsd{letter-spacing:22.619200pt;}
.ls59{letter-spacing:23.515200pt;}
.ls9{letter-spacing:23.911645pt;}
.ls5f{letter-spacing:26.070400pt;}
.ls4e{letter-spacing:26.891052pt;}
.ls39{letter-spacing:28.880533pt;}
.ls24{letter-spacing:33.459733pt;}
.ls4d{letter-spacing:49.099584pt;}
.ls55{letter-spacing:113.222545pt;}
.ls56{letter-spacing:113.225139pt;}
.ls30{letter-spacing:279.782251pt;}
.ls4f{letter-spacing:731.563052pt;}
.ls1f{letter-spacing:1072.864533pt;}
.ls3f{letter-spacing:1075.427230pt;}
.ls2e{letter-spacing:1240.384533pt;}
.ws8{word-spacing:-57.693104pt;}
.ws45{word-spacing:-13.283467pt;}
.wsa{word-spacing:-13.124000pt;}
.ws16{word-spacing:-11.955200pt;}
.ws4{word-spacing:-10.626800pt;}
.ws9{word-spacing:-9.298400pt;}
.ws6{word-spacing:-4.877712pt;}
.ws15{word-spacing:-4.495155pt;}
.ws17{word-spacing:-3.188040pt;}
.ws5a{word-spacing:-0.743874pt;}
.ws2{word-spacing:-0.085014pt;}
.ws46{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047289pt;}
.ws50{word-spacing:-0.037194pt;}
.ws7{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.053134pt;}
.ws68{word-spacing:0.212535pt;}
.ws40{word-spacing:0.531339pt;}
.ws39{word-spacing:0.584473pt;}
.ws5c{word-spacing:0.690740pt;}
.ws80{word-spacing:0.850142pt;}
.ws29{word-spacing:1.009543pt;}
.ws83{word-spacing:1.222079pt;}
.ws35{word-spacing:1.328347pt;}
.ws78{word-spacing:1.434614pt;}
.ws4c{word-spacing:1.487748pt;}
.ws5{word-spacing:1.785310pt;}
.wsd{word-spacing:1.865011pt;}
.ws1e{word-spacing:2.072221pt;}
.ws2a{word-spacing:2.125355pt;}
.ws3b{word-spacing:2.178489pt;}
.ws2d{word-spacing:2.337890pt;}
.ws31{word-spacing:2.497292pt;}
.ws3c{word-spacing:2.656693pt;}
.ws25{word-spacing:2.709827pt;}
.ws51{word-spacing:2.869229pt;}
.ws5b{word-spacing:3.028630pt;}
.ws64{word-spacing:3.054667pt;}
.ws22{word-spacing:3.060518pt;}
.ws65{word-spacing:3.081764pt;}
.ws2f{word-spacing:3.134898pt;}
.ws23{word-spacing:3.145533pt;}
.ws6d{word-spacing:3.188032pt;}
.ws7a{word-spacing:3.294300pt;}
.ws2b{word-spacing:3.347434pt;}
.ws77{word-spacing:3.453701pt;}
.ws66{word-spacing:3.506835pt;}
.ws67{word-spacing:3.559969pt;}
.wsf{word-spacing:3.586560pt;}
.ws75{word-spacing:3.613103pt;}
.ws62{word-spacing:3.666237pt;}
.ws6c{word-spacing:3.825638pt;}
.ws44{word-spacing:3.931906pt;}
.ws9c{word-spacing:3.995677pt;}
.ws74{word-spacing:4.144442pt;}
.ws79{word-spacing:4.197575pt;}
.ws3d{word-spacing:4.250709pt;}
.ws9e{word-spacing:4.335734pt;}
.ws1f{word-spacing:4.410111pt;}
.ws55{word-spacing:4.425333pt;}
.ws49{word-spacing:4.463245pt;}
.ws63{word-spacing:4.569513pt;}
.ws42{word-spacing:4.622646pt;}
.ws8b{word-spacing:4.718319pt;}
.ws2c{word-spacing:4.782048pt;}
.ws41{word-spacing:4.835182pt;}
.ws3a{word-spacing:4.994583pt;}
.ws73{word-spacing:5.047717pt;}
.ws7c{word-spacing:5.131200pt;}
.ws7d{word-spacing:5.153985pt;}
.ws11{word-spacing:5.212467pt;}
.ws71{word-spacing:5.252267pt;}
.ws72{word-spacing:5.260253pt;}
.ws26{word-spacing:5.313387pt;}
.ws38{word-spacing:5.366521pt;}
.ws12{word-spacing:5.403750pt;}
.ws52{word-spacing:5.504653pt;}
.ws84{word-spacing:5.632190pt;}
.ws47{word-spacing:5.685324pt;}
.ws48{word-spacing:5.738458pt;}
.ws14{word-spacing:5.738496pt;}
.ws7b{word-spacing:5.791591pt;}
.ws93{word-spacing:5.897859pt;}
.ws76{word-spacing:5.950993pt;}
.ws37{word-spacing:6.004127pt;}
.ws34{word-spacing:6.057261pt;}
.ws85{word-spacing:6.110395pt;}
.ws13{word-spacing:6.121062pt;}
.ws86{word-spacing:6.163529pt;}
.ws98{word-spacing:6.206051pt;}
.ws5d{word-spacing:6.322930pt;}
.ws27{word-spacing:6.376064pt;}
.ws3f{word-spacing:6.429198pt;}
.ws1d{word-spacing:6.482332pt;}
.ws20{word-spacing:6.631123pt;}
.ws2e{word-spacing:6.694867pt;}
.ws6e{word-spacing:6.801135pt;}
.ws30{word-spacing:7.013670pt;}
.ws8d{word-spacing:7.056195pt;}
.ws3{word-spacing:7.098702pt;}
.ws91{word-spacing:7.173072pt;}
.ws1b{word-spacing:7.226206pt;}
.ws97{word-spacing:7.311238pt;}
.ws89{word-spacing:7.353746pt;}
.ws95{word-spacing:7.396253pt;}
.ws5f{word-spacing:7.566282pt;}
.ws69{word-spacing:7.598143pt;}
.ws54{word-spacing:7.863812pt;}
.ws9b{word-spacing:7.863832pt;}
.ws32{word-spacing:8.023214pt;}
.ws10{word-spacing:8.081715pt;}
.ws7f{word-spacing:8.129482pt;}
.ws7e{word-spacing:8.182615pt;}
.wsa1{word-spacing:8.288904pt;}
.ws1c{word-spacing:8.713954pt;}
.ws3e{word-spacing:8.767088pt;}
.ws57{word-spacing:8.802547pt;}
.ws70{word-spacing:8.926490pt;}
.ws56{word-spacing:8.979114pt;}
.ws4a{word-spacing:9.192159pt;}
.ws6f{word-spacing:9.617230pt;}
.ws96{word-spacing:9.649134pt;}
.ws4f{word-spacing:9.882899pt;}
.wsc{word-spacing:9.904178pt;}
.ws4e{word-spacing:9.936033pt;}
.ws6a{word-spacing:10.361104pt;}
.ws18{word-spacing:10.584196pt;}
.wsb{word-spacing:10.584293pt;}
.ws87{word-spacing:10.626773pt;}
.ws4d{word-spacing:10.733041pt;}
.ws43{word-spacing:10.945577pt;}
.ws99{word-spacing:11.009365pt;}
.ws33{word-spacing:11.264380pt;}
.wse{word-spacing:11.668275pt;}
.ws9d{word-spacing:11.987030pt;}
.ws8f{word-spacing:12.486459pt;}
.ws8a{word-spacing:12.688452pt;}
.ws9f{word-spacing:12.709653pt;}
.ws9a{word-spacing:12.794667pt;}
.ws1a{word-spacing:13.442868pt;}
.ws58{word-spacing:14.664947pt;}
.ws4b{word-spacing:14.699143pt;}
.ws53{word-spacing:14.718081pt;}
.ws94{word-spacing:15.940200pt;}
.ws28{word-spacing:16.630900pt;}
.wsa0{word-spacing:17.172909pt;}
.ws21{word-spacing:17.215416pt;}
.ws36{word-spacing:17.640444pt;}
.ws24{word-spacing:17.682995pt;}
.ws0{word-spacing:17.686111pt;}
.ws5e{word-spacing:18.150574pt;}
.ws92{word-spacing:20.403405pt;}
.ws90{word-spacing:24.175909pt;}
.ws8e{word-spacing:25.663658pt;}
.ws19{word-spacing:26.513799pt;}
.ws61{word-spacing:99.934427pt;}
.ws60{word-spacing:141.251426pt;}
.ws8c{word-spacing:176.319866pt;}
.ws82{word-spacing:262.822018pt;}
.ws88{word-spacing:282.673286pt;}
.ws81{word-spacing:306.519419pt;}
.ws59{word-spacing:710.878002pt;}
._e{margin-left:-6.567327pt;}
._f{margin-left:-5.494045pt;}
._4{margin-left:-4.484517pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.892667pt;}
._12{width:1.174934pt;}
._14{width:2.194422pt;}
._3{width:3.145533pt;}
._11{width:4.408252pt;}
._20{width:5.483429pt;}
._10{width:6.854269pt;}
._5{width:11.257991pt;}
._13{width:12.805525pt;}
._9{width:14.664969pt;}
._b{width:15.727625pt;}
._28{width:17.201553pt;}
._7{width:18.102814pt;}
._29{width:19.238318pt;}
._d{width:20.602130pt;}
._6{width:22.058028pt;}
._27{width:23.338465pt;}
._c{width:26.566933pt;}
._8{width:34.864911pt;}
._15{width:109.923619pt;}
._1a{width:116.172178pt;}
._1b{width:119.700275pt;}
._18{width:128.286730pt;}
._17{width:132.962522pt;}
._16{width:156.584187pt;}
._22{width:186.958903pt;}
._1f{width:195.734228pt;}
._25{width:202.291765pt;}
._19{width:224.395509pt;}
._1c{width:229.113808pt;}
._23{width:281.312650pt;}
._1d{width:291.174320pt;}
._1e{width:319.526622pt;}
._26{width:326.285267pt;}
._21{width:477.116984pt;}
._24{width:597.863768pt;}
._a{width:1124.910525pt;}
.fs8{font-size:31.880533pt;}
.fsc{font-size:36.131200pt;}
.fs6{font-size:37.193600pt;}
.fsa{font-size:40.381867pt;}
.fs2{font-size:42.507200pt;}
.fs0{font-size:47.289067pt;}
.fs9{font-size:47.820800pt;}
.fs7{font-size:52.496000pt;}
.fsb{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs5{font-size:69.074133pt;}
.fs1{font-size:85.014400pt;}
.fs4{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:47.156000pt;}
.y50{bottom:57.650667pt;}
.y2b{bottom:60.440000pt;}
.y7a{bottom:74.473333pt;}
.y2a{bottom:77.708000pt;}
.y4f{bottom:78.373333pt;}
.y79{bottom:83.905333pt;}
.y29{bottom:90.992000pt;}
.yc6{bottom:93.832000pt;}
.y98{bottom:94.126667pt;}
.y4e{bottom:94.581333pt;}
.y28{bottom:104.276000pt;}
.yc5{bottom:109.290667pt;}
.y97{bottom:109.880000pt;}
.y4d{bottom:110.790667pt;}
.y78{bottom:114.529333pt;}
.yc4{bottom:124.749333pt;}
.y96{bottom:125.633333pt;}
.y4c{bottom:127.000000pt;}
.y27{bottom:128.850667pt;}
.y77{bottom:133.070667pt;}
.y76{bottom:137.786667pt;}
.y75{bottom:138.464000pt;}
.yc3{bottom:140.208000pt;}
.y95{bottom:141.386667pt;}
.yf4{bottom:144.076000pt;}
.y26{bottom:145.526667pt;}
.y74{bottom:147.896000pt;}
.y4b{bottom:149.276000pt;}
.yc2{bottom:155.666667pt;}
.y94{bottom:157.140000pt;}
.yf3{bottom:157.358667pt;}
.y25{bottom:167.700000pt;}
.yf2{bottom:170.642667pt;}
.yc1{bottom:171.125333pt;}
.y93{bottom:172.893333pt;}
.y73{bottom:178.480000pt;}
.y24{bottom:183.496000pt;}
.yf1{bottom:183.926667pt;}
.yc0{bottom:186.584000pt;}
.y92{bottom:194.713333pt;}
.y72{bottom:195.108000pt;}
.yf0{bottom:197.209333pt;}
.y23{bottom:199.290667pt;}
.ybf{bottom:209.050667pt;}
.yef{bottom:210.493333pt;}
.y71{bottom:211.734667pt;}
.y22{bottom:215.086667pt;}
.yee{bottom:223.777333pt;}
.y70{bottom:228.361333pt;}
.y21{bottom:230.882667pt;}
.yed{bottom:237.060000pt;}
.y6f{bottom:245.001333pt;}
.y20{bottom:246.677333pt;}
.yec{bottom:250.344000pt;}
.ybe{bottom:251.334667pt;}
.y1f{bottom:262.473333pt;}
.yeb{bottom:263.628000pt;}
.ybd{bottom:264.618667pt;}
.yea{bottom:276.910667pt;}
.ybc{bottom:277.902667pt;}
.y6e{bottom:279.292000pt;}
.y1e{bottom:285.949333pt;}
.y6c{bottom:288.722667pt;}
.ye9{bottom:290.194667pt;}
.y6d{bottom:294.312000pt;}
.ybb{bottom:296.578667pt;}
.ye8{bottom:303.478667pt;}
.yba{bottom:313.569333pt;}
.ye7{bottom:316.761333pt;}
.y6b{bottom:317.404000pt;}
.ye6{bottom:330.045333pt;}
.yb9{bottom:332.320000pt;}
.y1d{bottom:337.977333pt;}
.ye5{bottom:343.328000pt;}
.y91{bottom:343.334667pt;}
.y6a{bottom:343.374667pt;}
.yb8{bottom:347.778667pt;}
.y1c{bottom:351.261333pt;}
.ye4{bottom:356.612000pt;}
.y90{bottom:359.088000pt;}
.yb7{bottom:363.237333pt;}
.y69{bottom:364.965333pt;}
.ye3{bottom:369.896000pt;}
.y68{bottom:374.397333pt;}
.y8f{bottom:374.841333pt;}
.yb6{bottom:378.696000pt;}
.ye2{bottom:383.178667pt;}
.y1b{bottom:390.210667pt;}
.y8e{bottom:390.594667pt;}
.y4a{bottom:393.641333pt;}
.yb5{bottom:394.154667pt;}
.ye1{bottom:396.462667pt;}
.y67{bottom:400.830667pt;}
.y8d{bottom:406.348000pt;}
.yb4{bottom:409.613333pt;}
.ye0{bottom:409.746667pt;}
.y49{bottom:409.850667pt;}
.y66{bottom:410.262667pt;}
.y1a{bottom:412.793333pt;}
.y8c{bottom:422.101333pt;}
.ydf{bottom:423.029333pt;}
.y48{bottom:426.060000pt;}
.y19{bottom:427.405333pt;}
.yb3{bottom:435.642667pt;}
.yde{bottom:436.313333pt;}
.y8b{bottom:437.854667pt;}
.y65{bottom:441.742667pt;}
.y18{bottom:442.017333pt;}
.y47{bottom:442.269333pt;}
.ydd{bottom:449.597333pt;}
.yb2{bottom:454.318667pt;}
.y17{bottom:456.628000pt;}
.y64{bottom:458.370667pt;}
.y8a{bottom:459.676000pt;}
.ydc{bottom:462.880000pt;}
.y16{bottom:471.240000pt;}
.yb1{bottom:471.310667pt;}
.y46{bottom:476.032000pt;}
.ydb{bottom:476.164000pt;}
.y63{bottom:479.961333pt;}
.y15{bottom:485.852000pt;}
.y62{bottom:489.392000pt;}
.yda{bottom:489.448000pt;}
.yb0{bottom:492.782667pt;}
.y14{bottom:500.464000pt;}
.y45{bottom:501.556000pt;}
.yd9{bottom:502.730667pt;}
.yaf{bottom:508.241333pt;}
.y13{bottom:515.076000pt;}
.y61{bottom:515.826667pt;}
.yd8{bottom:516.014667pt;}
.y60{bottom:525.257333pt;}
.yd7{bottom:529.298667pt;}
.y12{bottom:529.688000pt;}
.y44{bottom:536.664000pt;}
.yae{bottom:538.677333pt;}
.yd6{bottom:542.581333pt;}
.y11{bottom:544.300000pt;}
.y43{bottom:552.873333pt;}
.yd5{bottom:555.865333pt;}
.y5f{bottom:556.738667pt;}
.y10{bottom:566.881333pt;}
.yad{bottom:568.632000pt;}
.y42{bottom:569.082667pt;}
.yd4{bottom:569.148000pt;}
.y5e{bottom:573.365333pt;}
.yac{bottom:584.090667pt;}
.y41{bottom:585.292000pt;}
.y5d{bottom:590.005333pt;}
.yd3{bottom:590.402667pt;}
.yab{bottom:599.549333pt;}
.y40{bottom:601.501333pt;}
.y89{bottom:607.544000pt;}
.yaa{bottom:615.008000pt;}
.yf{bottom:616.882667pt;}
.y3f{bottom:617.710667pt;}
.yd2{bottom:622.282667pt;}
.y88{bottom:623.297333pt;}
.y5c{bottom:630.126667pt;}
.ye{bottom:630.165333pt;}
.ya9{bottom:630.468000pt;}
.y3e{bottom:633.920000pt;}
.y87{bottom:639.050667pt;}
.ya8{bottom:645.926667pt;}
.yd1{bottom:646.193333pt;}
.y5b{bottom:646.753333pt;}
.yd{bottom:648.762667pt;}
.y3d{bottom:650.128000pt;}
.y86{bottom:654.804000pt;}
.ya7{bottom:661.385333pt;}
.y5a{bottom:663.381333pt;}
.yc{bottom:665.904000pt;}
.y3c{bottom:666.337333pt;}
.ya6{bottom:676.844000pt;}
.yd0{bottom:678.073333pt;}
.yb{bottom:679.186667pt;}
.y3b{bottom:682.546667pt;}
.y85{bottom:686.124000pt;}
.ya{bottom:688.613333pt;}
.ya5{bottom:692.302667pt;}
.ycf{bottom:694.013333pt;}
.y3a{bottom:698.756000pt;}
.y59{bottom:700.068000pt;}
.y9{bottom:705.754667pt;}
.ya4{bottom:707.761333pt;}
.y39{bottom:714.965333pt;}
.yce{bottom:717.924000pt;}
.ya3{bottom:723.220000pt;}
.y8{bottom:724.744000pt;}
.y84{bottom:727.828000pt;}
.y38{bottom:731.174667pt;}
.ya2{bottom:738.678667pt;}
.y58{bottom:740.189333pt;}
.y83{bottom:741.112000pt;}
.y37{bottom:747.384000pt;}
.ycd{bottom:749.804000pt;}
.ya1{bottom:754.137333pt;}
.y57{bottom:756.817333pt;}
.y7{bottom:757.572000pt;}
.y82{bottom:759.788000pt;}
.y36{bottom:763.593333pt;}
.ycc{bottom:765.745333pt;}
.ya0{bottom:769.596000pt;}
.y56{bottom:773.444000pt;}
.y81{bottom:776.780000pt;}
.y35{bottom:779.802667pt;}
.y9f{bottom:785.054667pt;}
.y6{bottom:789.617333pt;}
.ycb{bottom:789.654667pt;}
.y80{bottom:790.062667pt;}
.y55{bottom:790.070667pt;}
.y34{bottom:796.012000pt;}
.y9e{bottom:800.513333pt;}
.y5{bottom:805.557333pt;}
.y54{bottom:806.697333pt;}
.y7f{bottom:806.902667pt;}
.y33{bottom:812.220000pt;}
.y9d{bottom:815.973333pt;}
.yca{bottom:821.536000pt;}
.y7e{bottom:822.656000pt;}
.y53{bottom:823.325333pt;}
.y32{bottom:828.429333pt;}
.y9c{bottom:831.432000pt;}
.y4{bottom:837.142667pt;}
.yc9{bottom:837.476000pt;}
.y7d{bottom:838.409333pt;}
.y52{bottom:839.952000pt;}
.y31{bottom:844.638667pt;}
.y9b{bottom:846.890667pt;}
.y3{bottom:850.426667pt;}
.yc8{bottom:853.416000pt;}
.y7c{bottom:854.162667pt;}
.y51{bottom:856.578667pt;}
.y30{bottom:860.848000pt;}
.y9a{bottom:862.349333pt;}
.yc7{bottom:869.356000pt;}
.y7b{bottom:869.916000pt;}
.y2f{bottom:877.057333pt;}
.y99{bottom:877.808000pt;}
.y2e{bottom:893.266667pt;}
.y2{bottom:897.250667pt;}
.y1{bottom:920.378667pt;}
.y2d{bottom:922.490667pt;}
.h8{height:21.933807pt;}
.he{height:24.135642pt;}
.h9{height:29.032418pt;}
.h4{height:29.244954pt;}
.h10{height:29.414982pt;}
.hb{height:32.900710pt;}
.ha{height:33.091994pt;}
.h2{height:34.473730pt;}
.hf{height:36.290431pt;}
.hd{height:36.556100pt;}
.h27{height:36.730863pt;}
.hc{height:36.768636pt;}
.h26{height:36.822767pt;}
.h28{height:37.363140pt;}
.h25{height:37.408636pt;}
.h5{height:43.867614pt;}
.h23{height:44.130658pt;}
.h24{height:44.135991pt;}
.h11{height:44.879863pt;}
.h1f{height:49.867229pt;}
.h6{height:62.145664pt;}
.h1b{height:64.028158pt;}
.h3{height:64.100858pt;}
.h7{height:65.456661pt;}
.h19{height:65.733895pt;}
.h1a{height:65.919863pt;}
.h1e{height:73.533098pt;}
.h21{height:73.804100pt;}
.h1d{height:74.151764pt;}
.h1c{height:74.278767pt;}
.h22{height:74.284100pt;}
.h17{height:77.041491pt;}
.h12{height:77.046825pt;}
.h18{height:88.091229pt;}
.h20{height:95.857434pt;}
.h13{height:111.261098pt;}
.h15{height:111.266431pt;}
.h16{height:111.532100pt;}
.h14{height:114.769491pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.xb{left:51.972000pt;}
.x40{left:53.736000pt;}
.x9{left:55.737333pt;}
.x3e{left:59.049333pt;}
.x11{left:61.213333pt;}
.x5{left:64.694667pt;}
.x10{left:67.912000pt;}
.x12{left:71.897333pt;}
.x3f{left:78.081333pt;}
.x8{left:81.324000pt;}
.x15{left:83.852000pt;}
.x2c{left:84.861333pt;}
.x30{left:99.497333pt;}
.x27{left:107.286667pt;}
.xc{left:110.102667pt;}
.x36{left:114.144000pt;}
.x37{left:120.188000pt;}
.x28{left:133.813333pt;}
.x3b{left:146.912000pt;}
.x7{left:158.261333pt;}
.x29{left:160.040000pt;}
.x39{left:168.201333pt;}
.x16{left:177.254667pt;}
.x38{left:179.316000pt;}
.x2a{left:189.953333pt;}
.x13{left:196.172000pt;}
.x17{left:203.481333pt;}
.x2d{left:211.210667pt;}
.x35{left:215.918667pt;}
.x2b{left:219.866667pt;}
.x1{left:228.816000pt;}
.x1f{left:230.564000pt;}
.x3d{left:232.006667pt;}
.x2e{left:235.614667pt;}
.xe{left:243.677333pt;}
.xa{left:258.188000pt;}
.x20{left:260.477333pt;}
.x3{left:264.976000pt;}
.x31{left:268.354667pt;}
.x1b{left:271.289333pt;}
.x2{left:279.234667pt;}
.x18{left:282.149333pt;}
.x2f{left:286.585333pt;}
.xd{left:287.698667pt;}
.x21{left:290.390667pt;}
.x1c{left:294.724000pt;}
.x19{left:308.674667pt;}
.xf{left:313.478667pt;}
.x1d{left:321.250667pt;}
.x6{left:328.746667pt;}
.x3a{left:329.868000pt;}
.x1a{left:334.902667pt;}
.x32{left:341.581333pt;}
.x1e{left:347.477333pt;}
.x14{left:354.864000pt;}
.x22{left:367.140000pt;}
.x23{left:393.665333pt;}
.x24{left:419.893333pt;}
.x33{left:428.658667pt;}
.x25{left:449.806667pt;}
.x34{left:453.317333pt;}
.x26{left:479.720000pt;}
.x4{left:547.542667pt;}
.x3c{left:641.109333pt;}
}




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