
    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_d32180467aaa2931c9d334b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_a75d0ead5b1c454188a10789.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_10ec1be8cc458f05fe8e34b3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66195d32a9f5b3972a33d92e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.523000;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_cfb0d8579ca4d4e2dbede3ab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d02ef795d51bc0f70eaeebde.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3b38ce20e7fef454bec1fbf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_6b0a3063c945406e6c730e27.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_439d571e045abf65959d652d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_3d4775b44f8de16ee704d42c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;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_74c301191a914bd1d2e3298b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_7a9538d11e2b9e66a61fd9fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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_8e52fd2b115b38dd21f3b1f3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.697000;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_f947b3867709f855249773f6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f3bc2f5da9b9c264f78166ef.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000564px;}
.ls1{letter-spacing:0.001002px;}
.ls19{letter-spacing:0.001409px;}
.lsf{letter-spacing:0.002245px;}
.ls7{letter-spacing:0.002338px;}
.lsc{letter-spacing:0.003269px;}
.ls12{letter-spacing:1.655249px;}
.ls18{letter-spacing:1.661249px;}
.ls1a{letter-spacing:2.984525px;}
.ls13{letter-spacing:2.986982px;}
.ls10{letter-spacing:2.988615px;}
.ls9{letter-spacing:2.990525px;}
.lsd{letter-spacing:2.993251px;}
.ls4{letter-spacing:11.220538px;}
.ls17{letter-spacing:14.634538px;}
.ls16{letter-spacing:14.636338px;}
.ls15{letter-spacing:14.637199px;}
.ls1b{letter-spacing:16.899199px;}
.ls11{letter-spacing:18.719249px;}
.ls1c{letter-spacing:20.703199px;}
.lsa{letter-spacing:21.420532px;}
.ls8{letter-spacing:22.910525px;}
.lse{letter-spacing:22.919251px;}
.ls14{letter-spacing:22.984982px;}
.lsb{letter-spacing:25.616525px;}
.ls1d{letter-spacing:25.651409px;}
.ls5{letter-spacing:27.608525px;}
.ls6{letter-spacing:27.728525px;}
.ls3{letter-spacing:29.889030px;}
.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;}
}
.ws3{word-spacing:-47.654765px;}
.ws6f{word-spacing:-38.937826px;}
.ws6e{word-spacing:-28.955301px;}
.ws8b{word-spacing:-8.754883px;}
.ws43{word-spacing:-5.393956px;}
.ws79{word-spacing:-2.797498px;}
.wsb0{word-spacing:-2.716819px;}
.wsbd{word-spacing:-2.609222px;}
.ws3b{word-spacing:-2.379069px;}
.wsae{word-spacing:-2.340230px;}
.ws73{word-spacing:-1.964193px;}
.ws72{word-spacing:-1.960640px;}
.ws6c{word-spacing:-1.661762px;}
.ws98{word-spacing:-1.533254px;}
.ws5a{word-spacing:-1.482435px;}
.wsac{word-spacing:-1.425658px;}
.ws3f{word-spacing:-1.422659px;}
.wsb7{word-spacing:-1.264262px;}
.ws6a{word-spacing:-1.064006px;}
.wsc{word-spacing:-0.995270px;}
.ws7a{word-spacing:-0.645576px;}
.ws86{word-spacing:-0.346698px;}
.ws7b{word-spacing:-0.286923px;}
.ws30{word-spacing:-0.107596px;}
.ws5c{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047820px;}
.ws2{word-spacing:-0.041843px;}
.ws27{word-spacing:0.000000px;}
.ws4f{word-spacing:0.011955px;}
.wsba{word-spacing:0.026899px;}
.ws87{word-spacing:0.071731px;}
.ws5e{word-spacing:0.131506px;}
.wsb3{word-spacing:0.134496px;}
.wsb9{word-spacing:0.188294px;}
.ws54{word-spacing:0.191282px;}
.ws48{word-spacing:0.251058px;}
.ws74{word-spacing:0.292918px;}
.ws9c{word-spacing:0.295891px;}
.ws75{word-spacing:0.310833px;}
.ws4e{word-spacing:0.430384px;}
.ws2a{word-spacing:0.490160px;}
.ws6d{word-spacing:0.549936px;}
.ws33{word-spacing:0.669487px;}
.wsa0{word-spacing:0.672480px;}
.ws70{word-spacing:0.729262px;}
.ws3c{word-spacing:0.789038px;}
.ws9{word-spacing:0.833875px;}
.wsb8{word-spacing:0.887674px;}
.wsa6{word-spacing:1.156666px;}
.wsbc{word-spacing:1.425658px;}
.ws37{word-spacing:1.566121px;}
.ws4a{word-spacing:1.625896px;}
.wsbf{word-spacing:1.640851px;}
.ws50{word-spacing:1.805223px;}
.wse{word-spacing:1.856045px;}
.ws2c{word-spacing:1.864999px;}
.wsa1{word-spacing:2.125037px;}
.ws63{word-spacing:2.223652px;}
.ws44{word-spacing:2.283428px;}
.ws90{word-spacing:2.343204px;}
.ws31{word-spacing:2.402979px;}
.ws13{word-spacing:2.447827px;}
.wsa3{word-spacing:2.501626px;}
.ws2d{word-spacing:2.522530px;}
.ws21{word-spacing:2.582306px;}
.ws23{word-spacing:2.701857px;}
.ws88{word-spacing:2.761633px;}
.ws10{word-spacing:2.878214px;}
.ws80{word-spacing:2.881184px;}
.ws6b{word-spacing:3.000735px;}
.ws28{word-spacing:3.039610px;}
.ws26{word-spacing:3.060511px;}
.ws5{word-spacing:3.093408px;}
.ws51{word-spacing:3.120286px;}
.wsd{word-spacing:3.147206px;}
.ws1f{word-spacing:3.180062px;}
.ws1{word-spacing:3.299613px;}
.ws38{word-spacing:3.359389px;}
.ws24{word-spacing:3.598491px;}
.ws69{word-spacing:3.658267px;}
.ws8{word-spacing:3.685190px;}
.ws1e{word-spacing:3.718042px;}
.ws83{word-spacing:3.957145px;}
.ws9b{word-spacing:4.007981px;}
.ws66{word-spacing:4.016920px;}
.ws76{word-spacing:4.076696px;}
.ws58{word-spacing:4.136472px;}
.wsf{word-spacing:4.169376px;}
.ws1c{word-spacing:4.196247px;}
.ws34{word-spacing:4.256023px;}
.ws85{word-spacing:4.315798px;}
.ws1a{word-spacing:4.375574px;}
.wsa8{word-spacing:4.384570px;}
.wsaf{word-spacing:4.492166px;}
.ws18{word-spacing:4.495125px;}
.ws59{word-spacing:4.794003px;}
.ws81{word-spacing:4.853779px;}
.ws97{word-spacing:4.868755px;}
.ws8f{word-spacing:4.913554px;}
.ws8d{word-spacing:4.973330px;}
.ws7f{word-spacing:5.152657px;}
.ws68{word-spacing:5.331984px;}
.ws15{word-spacing:5.352941px;}
.ws2b{word-spacing:5.391759px;}
.ws12{word-spacing:5.460538px;}
.ws3a{word-spacing:5.571086px;}
.ws4b{word-spacing:5.630862px;}
.ws46{word-spacing:5.750413px;}
.ws1d{word-spacing:5.929740px;}
.ws95{word-spacing:5.944723px;}
.ws65{word-spacing:6.049291px;}
.ws9d{word-spacing:6.106118px;}
.ws89{word-spacing:6.109066px;}
.ws9a{word-spacing:6.159917px;}
.ws3e{word-spacing:6.168842px;}
.ws64{word-spacing:6.348169px;}
.ws93{word-spacing:6.467720px;}
.wsbe{word-spacing:6.482707px;}
.ws2e{word-spacing:6.647047px;}
.ws56{word-spacing:6.706822px;}
.ws67{word-spacing:6.766598px;}
.ws9e{word-spacing:6.805498px;}
.ws40{word-spacing:6.826374px;}
.wsb{word-spacing:6.913094px;}
.ws22{word-spacing:6.945925px;}
.ws55{word-spacing:7.005700px;}
.wsaa{word-spacing:7.020691px;}
.ws35{word-spacing:7.125252px;}
.ws1b{word-spacing:7.185027px;}
.wsa{word-spacing:7.235885px;}
.ws45{word-spacing:7.424130px;}
.ws25{word-spacing:7.483905px;}
.wsa9{word-spacing:7.504877px;}
.ws36{word-spacing:7.663232px;}
.wsa7{word-spacing:7.666272px;}
.ws4c{word-spacing:7.723008px;}
.ws29{word-spacing:7.782783px;}
.wsbb{word-spacing:7.881466px;}
.ws53{word-spacing:8.021886px;}
.wsb5{word-spacing:8.096659px;}
.ws57{word-spacing:8.141437px;}
.ws7c{word-spacing:8.201212px;}
.ws14{word-spacing:8.258054px;}
.ws7d{word-spacing:8.440315px;}
.ws78{word-spacing:8.500090px;}
.wsa4{word-spacing:8.527046px;}
.ws3d{word-spacing:8.619642px;}
.ws49{word-spacing:8.679417px;}
.ws84{word-spacing:8.739193px;}
.ws11{word-spacing:8.903635px;}
.ws8e{word-spacing:8.918520px;}
.ws82{word-spacing:9.038071px;}
.ws19{word-spacing:9.157622px;}
.ws2f{word-spacing:9.217398px;}
.ws7e{word-spacing:9.277173px;}
.ws4d{word-spacing:9.755378px;}
.ws47{word-spacing:9.874929px;}
.wsb6{word-spacing:10.194797px;}
.wsa5{word-spacing:10.248595px;}
.ws71{word-spacing:10.293358px;}
.ws99{word-spacing:10.356192px;}
.ws77{word-spacing:10.532461px;}
.wsb1{word-spacing:10.840378px;}
.ws41{word-spacing:11.010666px;}
.ws96{word-spacing:11.539757px;}
.wsad{word-spacing:11.647354px;}
.wsb4{word-spacing:11.754950px;}
.ws32{word-spacing:12.086626px;}
.ws5b{word-spacing:12.325729px;}
.wsa2{word-spacing:12.561926px;}
.ws52{word-spacing:12.684382px;}
.ws42{word-spacing:12.803934px;}
.ws92{word-spacing:14.656977px;}
.wsb2{word-spacing:14.982854px;}
.wsab{word-spacing:17.242387px;}
.ws9f{word-spacing:21.922848px;}
.ws4{word-spacing:22.868297px;}
.ws94{word-spacing:23.970016px;}
.ws39{word-spacing:26.827469px;}
.ws16{word-spacing:27.592038px;}
.ws7{word-spacing:29.829450px;}
.ws5d{word-spacing:31.453662px;}
.ws0{word-spacing:32.192873px;}
.ws91{word-spacing:37.386581px;}
.ws8c{word-spacing:78.448752px;}
.ws17{word-spacing:80.625869px;}
.ws60{word-spacing:114.240902px;}
.ws8a{word-spacing:145.089433px;}
.ws62{word-spacing:227.863123px;}
.ws5f{word-spacing:336.643488px;}
.ws61{word-spacing:341.539142px;}
._1e{margin-left:-34.711723px;}
._1a{margin-left:-31.187067px;}
._1d{margin-left:-28.927534px;}
._1c{margin-left:-26.681423px;}
._0{margin-left:-8.091257px;}
._c{margin-left:-6.742733px;}
._2{margin-left:-4.985777px;}
._7{margin-left:-3.733616px;}
._1{margin-left:-2.668393px;}
._3{margin-left:-1.560154px;}
._6{width:1.299267px;}
._4{width:2.377874px;}
._19{width:3.466985px;}
._13{width:5.259771px;}
._e{width:9.862974px;}
._11{width:18.090498px;}
._5{width:19.787066px;}
._9{width:21.802573px;}
._d{width:23.231200px;}
._8{width:24.845141px;}
._10{width:27.415492px;}
._f{width:28.670779px;}
._12{width:29.887800px;}
._1f{width:30.934867px;}
._1b{width:32.021184px;}
._b{width:80.697600px;}
._a{width:170.648525px;}
._17{width:259.200691px;}
._16{width:326.502490px;}
._18{width:335.917210px;}
._14{width:366.151910px;}
._15{width:394.396070px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.665088px;}
.fs5{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y47{bottom:193.615500px;}
.y27{bottom:193.617000px;}
.y68{bottom:199.330500px;}
.yfd{bottom:210.055500px;}
.y26{bottom:211.549500px;}
.y67{bottom:215.769000px;}
.yb8{bottom:220.098000px;}
.y91{bottom:221.806500px;}
.yfc{bottom:226.422000px;}
.y25{bottom:229.482000px;}
.y66{bottom:232.207500px;}
.yb7{bottom:238.030500px;}
.y90{bottom:239.739000px;}
.yfb{bottom:242.860500px;}
.y65{bottom:242.931000px;}
.y24{bottom:247.414500px;}
.yce{bottom:254.349000px;}
.yb6{bottom:255.963000px;}
.y8f{bottom:257.671500px;}
.yfa{bottom:259.227000px;}
.y64{bottom:265.083000px;}
.y23{bottom:265.347000px;}
.ycd{bottom:272.281500px;}
.yb5{bottom:273.895500px;}
.y8e{bottom:275.605500px;}
.yf9{bottom:275.665500px;}
.y63{bottom:281.521500px;}
.y22{bottom:283.279500px;}
.ycc{bottom:290.215500px;}
.yb4{bottom:291.828000px;}
.yf8{bottom:292.104000px;}
.y8d{bottom:293.538000px;}
.y21{bottom:301.213500px;}
.y62{bottom:305.635500px;}
.ycb{bottom:308.148000px;}
.yf7{bottom:308.542500px;}
.yb3{bottom:309.762000px;}
.y8c{bottom:311.470500px;}
.y20{bottom:319.146000px;}
.y61{bottom:323.568000px;}
.yf6{bottom:324.909000px;}
.yca{bottom:326.080500px;}
.yb2{bottom:327.694500px;}
.y8b{bottom:329.403000px;}
.y1f{bottom:337.078500px;}
.yf5{bottom:341.347500px;}
.y60{bottom:341.785500px;}
.yb1{bottom:345.627000px;}
.y8a{bottom:347.335500px;}
.y1e{bottom:355.011000px;}
.yf4{bottom:357.714000px;}
.y5f{bottom:359.718000px;}
.yb0{bottom:363.559500px;}
.y89{bottom:365.268000px;}
.yc9{bottom:368.880000px;}
.y1d{bottom:372.943500px;}
.y46{bottom:373.701000px;}
.yf3{bottom:374.152500px;}
.y5e{bottom:377.650500px;}
.yaf{bottom:381.492000px;}
.y88{bottom:383.202000px;}
.yc8{bottom:386.814000px;}
.yf2{bottom:390.591000px;}
.y1c{bottom:390.877500px;}
.y45{bottom:391.633500px;}
.y5d{bottom:395.583000px;}
.yae{bottom:399.424500px;}
.y87{bottom:401.134500px;}
.yc7{bottom:404.746500px;}
.yf1{bottom:407.029500px;}
.y1b{bottom:408.810000px;}
.y44{bottom:409.566000px;}
.yad{bottom:417.358500px;}
.y86{bottom:419.067000px;}
.yc6{bottom:422.679000px;}
.yf0{bottom:423.396000px;}
.y1a{bottom:426.742500px;}
.y43{bottom:428.254500px;}
.y5c{bottom:429.595500px;}
.yac{bottom:435.291000px;}
.yef{bottom:439.834500px;}
.yc5{bottom:440.611500px;}
.y19{bottom:444.675000px;}
.y42{bottom:446.188500px;}
.y5b{bottom:447.528000px;}
.y85{bottom:447.951000px;}
.yab{bottom:453.223500px;}
.yee{bottom:456.273000px;}
.yc4{bottom:458.544000px;}
.y18{bottom:462.607500px;}
.y41{bottom:464.121000px;}
.y84{bottom:465.633000px;}
.y5a{bottom:465.745500px;}
.yaa{bottom:471.156000px;}
.yed{bottom:472.639500px;}
.yc3{bottom:476.476500px;}
.y17{bottom:480.540000px;}
.y40{bottom:482.053500px;}
.y83{bottom:483.313500px;}
.y59{bottom:483.678000px;}
.yec{bottom:489.078000px;}
.ya9{bottom:489.088500px;}
.y3f{bottom:499.986000px;}
.y82{bottom:500.995500px;}
.y58{bottom:501.610500px;}
.yeb{bottom:505.516500px;}
.ya8{bottom:507.022500px;}
.yc2{bottom:510.310500px;}
.y16{bottom:512.848500px;}
.y3e{bottom:517.918500px;}
.y81{bottom:518.928000px;}
.y57{bottom:519.543000px;}
.yea{bottom:521.883000px;}
.ya7{bottom:524.955000px;}
.y56{bottom:537.475500px;}
.ye9{bottom:538.321500px;}
.ya6{bottom:542.887500px;}
.y80{bottom:547.561500px;}
.ye8{bottom:554.760000px;}
.y55{bottom:555.409500px;}
.y3d{bottom:557.568000px;}
.y15{bottom:559.147500px;}
.ya5{bottom:560.820000px;}
.yc1{bottom:562.618500px;}
.y7f{bottom:565.494000px;}
.ye7{bottom:571.198500px;}
.y54{bottom:573.342000px;}
.ya4{bottom:578.752500px;}
.y7e{bottom:583.426500px;}
.ye6{bottom:587.565000px;}
.y14{bottom:591.135000px;}
.y53{bottom:591.558000px;}
.ya3{bottom:596.685000px;}
.y7d{bottom:601.359000px;}
.ye5{bottom:604.003500px;}
.y13{bottom:607.573500px;}
.y3c{bottom:609.171000px;}
.y52{bottom:609.490500px;}
.ya2{bottom:614.619000px;}
.y7c{bottom:619.291500px;}
.ye4{bottom:620.442000px;}
.y114{bottom:621.220500px;}
.y12{bottom:624.012000px;}
.y3b{bottom:627.103500px;}
.y51{bottom:627.423000px;}
.ya1{bottom:632.551500px;}
.ye3{bottom:636.808500px;}
.y7b{bottom:637.225500px;}
.y113{bottom:637.659000px;}
.y11{bottom:640.450500px;}
.y3a{bottom:645.036000px;}
.ya0{bottom:650.484000px;}
.ye2{bottom:653.247000px;}
.y112{bottom:654.097500px;}
.y7a{bottom:655.158000px;}
.y10{bottom:656.889000px;}
.y50{bottom:661.719000px;}
.y39{bottom:662.970000px;}
.ye1{bottom:669.685500px;}
.y111{bottom:670.536000px;}
.y79{bottom:673.090500px;}
.yf{bottom:673.327500px;}
.y4f{bottom:679.653000px;}
.y9f{bottom:683.587500px;}
.ye0{bottom:686.124000px;}
.y110{bottom:686.974500px;}
.ye{bottom:689.766000px;}
.y78{bottom:691.023000px;}
.y38{bottom:695.127000px;}
.y4e{bottom:697.585500px;}
.ydf{bottom:702.490500px;}
.y10f{bottom:703.411500px;}
.yd{bottom:706.204500px;}
.y77{bottom:708.955500px;}
.y37{bottom:713.059500px;}
.y4d{bottom:715.518000px;}
.yde{bottom:718.929000px;}
.y10e{bottom:719.850000px;}
.yc{bottom:722.641500px;}
.y76{bottom:726.889500px;}
.y9e{bottom:728.646000px;}
.y36{bottom:730.992000px;}
.y4c{bottom:733.450500px;}
.ydd{bottom:735.367500px;}
.y10d{bottom:736.288500px;}
.yb{bottom:739.080000px;}
.y75{bottom:744.822000px;}
.y9d{bottom:746.578500px;}
.y35{bottom:749.682000px;}
.y4b{bottom:751.383000px;}
.ydc{bottom:751.804500px;}
.y10c{bottom:752.727000px;}
.ya{bottom:755.518500px;}
.y74{bottom:762.754500px;}
.y9c{bottom:764.512500px;}
.y34{bottom:767.614500px;}
.ydb{bottom:768.172500px;}
.y10b{bottom:769.165500px;}
.y4a{bottom:769.315500px;}
.y9{bottom:771.957000px;}
.y73{bottom:780.687000px;}
.y9b{bottom:782.445000px;}
.yda{bottom:784.611000px;}
.y33{bottom:785.547000px;}
.y10a{bottom:785.604000px;}
.y49{bottom:787.249500px;}
.y8{bottom:788.395500px;}
.y72{bottom:798.619500px;}
.y9a{bottom:800.377500px;}
.yd9{bottom:800.977500px;}
.y109{bottom:802.042500px;}
.y32{bottom:804.237000px;}
.y7{bottom:804.834000px;}
.y71{bottom:816.552000px;}
.yd8{bottom:817.416000px;}
.y108{bottom:818.481000px;}
.y6{bottom:821.272500px;}
.y31{bottom:822.169500px;}
.y48{bottom:824.533500px;}
.yc0{bottom:825.735000px;}
.yd7{bottom:833.854500px;}
.y107{bottom:834.919500px;}
.yd6{bottom:850.291500px;}
.y106{bottom:851.358000px;}
.y99{bottom:852.105000px;}
.y30{bottom:855.084000px;}
.yd5{bottom:866.730000px;}
.y105{bottom:867.796500px;}
.y98{bottom:868.543500px;}
.ybf{bottom:868.917330px;}
.y70{bottom:870.037500px;}
.y5{bottom:872.695500px;}
.y2f{bottom:873.774000px;}
.yd4{bottom:883.168500px;}
.y104{bottom:884.233500px;}
.y97{bottom:884.982000px;}
.y6f{bottom:886.476000px;}
.y4{bottom:889.134000px;}
.y2e{bottom:891.706500px;}
.ybe{bottom:892.812870px;}
.yd3{bottom:899.536500px;}
.y103{bottom:900.672000px;}
.y96{bottom:901.419000px;}
.y6e{bottom:902.914500px;}
.y2d{bottom:909.639000px;}
.yd2{bottom:915.973500px;}
.y102{bottom:917.110500px;}
.y95{bottom:917.857500px;}
.y6d{bottom:919.353000px;}
.y3{bottom:920.455500px;}
.y2c{bottom:927.571500px;}
.yba{bottom:929.677905px;}
.yd1{bottom:932.412000px;}
.y101{bottom:933.549000px;}
.y94{bottom:934.296000px;}
.y6c{bottom:935.791500px;}
.ybd{bottom:941.625675px;}
.y2b{bottom:945.504000px;}
.yd0{bottom:948.850500px;}
.y100{bottom:949.987500px;}
.y93{bottom:951.333000px;}
.y6b{bottom:952.228500px;}
.ybb{bottom:954.084735px;}
.y2a{bottom:963.436500px;}
.ycf{bottom:965.289000px;}
.yff{bottom:966.426000px;}
.y92{bottom:968.817000px;}
.y6a{bottom:969.265500px;}
.y2{bottom:972.403500px;}
.yb9{bottom:979.279020px;}
.y29{bottom:981.370500px;}
.yfe{bottom:982.864500px;}
.y69{bottom:986.749500px;}
.ybc{bottom:990.438480px;}
.y1{bottom:999.303000px;}
.y28{bottom:1038.157500px;}
.ha{height:22.998816px;}
.hb{height:23.169816px;}
.h7{height:24.245146px;}
.h8{height:37.336090px;}
.h3{height:40.348800px;}
.h5{height:44.831700px;}
.h9{height:45.080125px;}
.h4{height:50.211840px;}
.h2{height:53.072100px;}
.h6{height:53.078100px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:202.147500px;}
.xd{left:206.256000px;}
.xc{left:208.456500px;}
.x9{left:211.486500px;}
.xe{left:217.090500px;}
.x8{left:224.563500px;}
.x3{left:226.273500px;}
.xa{left:227.551500px;}
.x6{left:244.666500px;}
.x2{left:245.802000px;}
.x17{left:256.639500px;}
.x1{left:260.412000px;}
.x4{left:296.835000px;}
.xf{left:332.280000px;}
.x15{left:334.593585px;}
.x16{left:343.210500px;}
.x10{left:346.651650px;}
.x5{left:348.691500px;}
.xb{left:364.690500px;}
.x11{left:421.878825px;}
.x12{left:542.468880px;}
.x13{left:550.429785px;}
.x14{left:553.533435px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000501pt;}
.ls1{letter-spacing:0.000891pt;}
.ls19{letter-spacing:0.001253pt;}
.lsf{letter-spacing:0.001995pt;}
.ls7{letter-spacing:0.002079pt;}
.lsc{letter-spacing:0.002906pt;}
.ls12{letter-spacing:1.471333pt;}
.ls18{letter-spacing:1.476666pt;}
.ls1a{letter-spacing:2.652911pt;}
.ls13{letter-spacing:2.655095pt;}
.ls10{letter-spacing:2.656546pt;}
.ls9{letter-spacing:2.658245pt;}
.lsd{letter-spacing:2.660667pt;}
.ls4{letter-spacing:9.973812pt;}
.ls17{letter-spacing:13.008479pt;}
.ls16{letter-spacing:13.010079pt;}
.ls15{letter-spacing:13.010843pt;}
.ls1b{letter-spacing:15.021510pt;}
.ls11{letter-spacing:16.639333pt;}
.ls1c{letter-spacing:18.402843pt;}
.lsa{letter-spacing:19.040473pt;}
.ls8{letter-spacing:20.364911pt;}
.lse{letter-spacing:20.372667pt;}
.ls14{letter-spacing:20.431095pt;}
.lsb{letter-spacing:22.770245pt;}
.ls1d{letter-spacing:22.801253pt;}
.ls5{letter-spacing:24.540911pt;}
.ls6{letter-spacing:24.647578pt;}
.ls3{letter-spacing:26.568027pt;}
.ws3{word-spacing:-42.359791pt;}
.ws6f{word-spacing:-34.611401pt;}
.ws6e{word-spacing:-25.738045pt;}
.ws8b{word-spacing:-7.782118pt;}
.ws43{word-spacing:-4.794628pt;}
.ws79{word-spacing:-2.486665pt;}
.wsb0{word-spacing:-2.414950pt;}
.wsbd{word-spacing:-2.319309pt;}
.ws3b{word-spacing:-2.114728pt;}
.wsae{word-spacing:-2.080205pt;}
.ws73{word-spacing:-1.745949pt;}
.ws72{word-spacing:-1.742791pt;}
.ws6c{word-spacing:-1.477121pt;}
.ws98{word-spacing:-1.362893pt;}
.ws5a{word-spacing:-1.317720pt;}
.wsac{word-spacing:-1.267251pt;}
.ws3f{word-spacing:-1.264586pt;}
.wsb7{word-spacing:-1.123789pt;}
.ws6a{word-spacing:-0.945783pt;}
.wsc{word-spacing:-0.884685pt;}
.ws7a{word-spacing:-0.573846pt;}
.ws86{word-spacing:-0.308176pt;}
.ws7b{word-spacing:-0.255043pt;}
.ws30{word-spacing:-0.095641pt;}
.ws5c{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.ws27{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.010627pt;}
.wsba{word-spacing:0.023910pt;}
.ws87{word-spacing:0.063761pt;}
.ws5e{word-spacing:0.116895pt;}
.wsb3{word-spacing:0.119552pt;}
.wsb9{word-spacing:0.167373pt;}
.ws54{word-spacing:0.170028pt;}
.ws48{word-spacing:0.223162pt;}
.ws74{word-spacing:0.260372pt;}
.ws9c{word-spacing:0.263014pt;}
.ws75{word-spacing:0.276296pt;}
.ws4e{word-spacing:0.382564pt;}
.ws2a{word-spacing:0.435698pt;}
.ws6d{word-spacing:0.488832pt;}
.ws33{word-spacing:0.595099pt;}
.wsa0{word-spacing:0.597760pt;}
.ws70{word-spacing:0.648233pt;}
.ws3c{word-spacing:0.701367pt;}
.ws9{word-spacing:0.741222pt;}
.wsb8{word-spacing:0.789043pt;}
.wsa6{word-spacing:1.028147pt;}
.wsbc{word-spacing:1.267251pt;}
.ws37{word-spacing:1.392107pt;}
.ws4a{word-spacing:1.445241pt;}
.wsbf{word-spacing:1.458534pt;}
.ws50{word-spacing:1.604643pt;}
.wse{word-spacing:1.649818pt;}
.ws2c{word-spacing:1.657777pt;}
.wsa1{word-spacing:1.888922pt;}
.ws63{word-spacing:1.976580pt;}
.ws44{word-spacing:2.029714pt;}
.ws90{word-spacing:2.082848pt;}
.ws31{word-spacing:2.135981pt;}
.ws13{word-spacing:2.175846pt;}
.wsa3{word-spacing:2.223667pt;}
.ws2d{word-spacing:2.242249pt;}
.ws21{word-spacing:2.295383pt;}
.ws23{word-spacing:2.401651pt;}
.ws88{word-spacing:2.454785pt;}
.ws10{word-spacing:2.558413pt;}
.ws80{word-spacing:2.561052pt;}
.ws6b{word-spacing:2.667320pt;}
.ws28{word-spacing:2.701875pt;}
.ws26{word-spacing:2.720454pt;}
.ws5{word-spacing:2.749696pt;}
.ws51{word-spacing:2.773588pt;}
.wsd{word-spacing:2.797517pt;}
.ws1f{word-spacing:2.826722pt;}
.ws1{word-spacing:2.932989pt;}
.ws38{word-spacing:2.986123pt;}
.ws24{word-spacing:3.198659pt;}
.ws69{word-spacing:3.251793pt;}
.ws8{word-spacing:3.275725pt;}
.ws1e{word-spacing:3.304927pt;}
.ws83{word-spacing:3.517462pt;}
.ws9b{word-spacing:3.562650pt;}
.ws66{word-spacing:3.570596pt;}
.ws76{word-spacing:3.623730pt;}
.ws58{word-spacing:3.676864pt;}
.wsf{word-spacing:3.706112pt;}
.ws1c{word-spacing:3.729997pt;}
.ws34{word-spacing:3.783131pt;}
.ws85{word-spacing:3.836265pt;}
.ws1a{word-spacing:3.889399pt;}
.wsa8{word-spacing:3.897395pt;}
.wsaf{word-spacing:3.993037pt;}
.ws18{word-spacing:3.995667pt;}
.ws59{word-spacing:4.261336pt;}
.ws81{word-spacing:4.314470pt;}
.ws97{word-spacing:4.327782pt;}
.ws8f{word-spacing:4.367604pt;}
.ws8d{word-spacing:4.420738pt;}
.ws7f{word-spacing:4.580139pt;}
.ws68{word-spacing:4.739541pt;}
.ws15{word-spacing:4.758170pt;}
.ws2b{word-spacing:4.792675pt;}
.ws12{word-spacing:4.853811pt;}
.ws3a{word-spacing:4.952076pt;}
.ws4b{word-spacing:5.005210pt;}
.ws46{word-spacing:5.111478pt;}
.ws1d{word-spacing:5.270880pt;}
.ws95{word-spacing:5.284198pt;}
.ws65{word-spacing:5.377147pt;}
.ws9d{word-spacing:5.427661pt;}
.ws89{word-spacing:5.430281pt;}
.ws9a{word-spacing:5.475482pt;}
.ws3e{word-spacing:5.483415pt;}
.ws64{word-spacing:5.642817pt;}
.ws93{word-spacing:5.749084pt;}
.wsbe{word-spacing:5.762406pt;}
.ws2e{word-spacing:5.908486pt;}
.ws56{word-spacing:5.961620pt;}
.ws67{word-spacing:6.014754pt;}
.ws9e{word-spacing:6.049331pt;}
.ws40{word-spacing:6.067888pt;}
.wsb{word-spacing:6.144973pt;}
.ws22{word-spacing:6.174155pt;}
.ws55{word-spacing:6.227289pt;}
.wsaa{word-spacing:6.240614pt;}
.ws35{word-spacing:6.333557pt;}
.ws1b{word-spacing:6.386691pt;}
.wsa{word-spacing:6.431898pt;}
.ws45{word-spacing:6.599226pt;}
.ws25{word-spacing:6.652360pt;}
.wsa9{word-spacing:6.671002pt;}
.ws36{word-spacing:6.811762pt;}
.wsa7{word-spacing:6.814464pt;}
.ws4c{word-spacing:6.864896pt;}
.ws29{word-spacing:6.918029pt;}
.wsbb{word-spacing:7.005747pt;}
.ws53{word-spacing:7.130565pt;}
.wsb5{word-spacing:7.197030pt;}
.ws57{word-spacing:7.236833pt;}
.ws7c{word-spacing:7.289967pt;}
.ws14{word-spacing:7.340493pt;}
.ws7d{word-spacing:7.502502pt;}
.ws78{word-spacing:7.555636pt;}
.wsa4{word-spacing:7.579597pt;}
.ws3d{word-spacing:7.661904pt;}
.ws49{word-spacing:7.715037pt;}
.ws84{word-spacing:7.768171pt;}
.ws11{word-spacing:7.914342pt;}
.ws8e{word-spacing:7.927573pt;}
.ws82{word-spacing:8.033841pt;}
.ws19{word-spacing:8.140108pt;}
.ws2f{word-spacing:8.193242pt;}
.ws7e{word-spacing:8.246376pt;}
.ws4d{word-spacing:8.671447pt;}
.ws47{word-spacing:8.777715pt;}
.wsb6{word-spacing:9.062042pt;}
.wsa5{word-spacing:9.109862pt;}
.ws71{word-spacing:9.149652pt;}
.ws99{word-spacing:9.205504pt;}
.ws77{word-spacing:9.362187pt;}
.wsb1{word-spacing:9.635891pt;}
.ws41{word-spacing:9.787258pt;}
.ws96{word-spacing:10.257562pt;}
.wsad{word-spacing:10.353203pt;}
.wsb4{word-spacing:10.448845pt;}
.ws32{word-spacing:10.743668pt;}
.ws5b{word-spacing:10.956203pt;}
.wsa2{word-spacing:11.166157pt;}
.ws52{word-spacing:11.275007pt;}
.ws42{word-spacing:11.381274pt;}
.ws92{word-spacing:13.028424pt;}
.wsb2{word-spacing:13.318093pt;}
.wsab{word-spacing:15.326566pt;}
.ws9f{word-spacing:19.486976pt;}
.ws4{word-spacing:20.327375pt;}
.ws94{word-spacing:21.306681pt;}
.ws39{word-spacing:23.846639pt;}
.ws16{word-spacing:24.526256pt;}
.ws7{word-spacing:26.515067pt;}
.ws5d{word-spacing:27.958811pt;}
.ws0{word-spacing:28.615887pt;}
.ws91{word-spacing:33.232517pt;}
.ws8c{word-spacing:69.732224pt;}
.ws17{word-spacing:71.667439pt;}
.ws60{word-spacing:101.547469pt;}
.ws8a{word-spacing:128.968385pt;}
.ws62{word-spacing:202.544998pt;}
.ws5f{word-spacing:299.238656pt;}
.ws61{word-spacing:303.590349pt;}
._1e{margin-left:-30.854865pt;}
._1a{margin-left:-27.721837pt;}
._1d{margin-left:-25.713364pt;}
._1c{margin-left:-23.716820pt;}
._0{margin-left:-7.192228pt;}
._c{margin-left:-5.993540pt;}
._2{margin-left:-4.431802pt;}
._7{margin-left:-3.318770pt;}
._1{margin-left:-2.371905pt;}
._3{margin-left:-1.386803pt;}
._6{width:1.154904pt;}
._4{width:2.113666pt;}
._19{width:3.081764pt;}
._13{width:4.675352pt;}
._e{width:8.767088pt;}
._11{width:16.080443pt;}
._5{width:17.588503pt;}
._9{width:19.380065pt;}
._d{width:20.649955pt;}
._8{width:22.084570pt;}
._10{width:24.369326pt;}
._f{width:25.485137pt;}
._12{width:26.566933pt;}
._1f{width:27.497660pt;}
._1b{width:28.463274pt;}
._b{width:71.731200pt;}
._a{width:151.687578pt;}
._17{width:230.400614pt;}
._16{width:290.224435pt;}
._18{width:298.593075pt;}
._14{width:325.468365pt;}
._15{width:350.574285pt;}
.fs6{font-size:27.257856pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:172.102667pt;}
.y27{bottom:172.104000pt;}
.y68{bottom:177.182667pt;}
.yfd{bottom:186.716000pt;}
.y26{bottom:188.044000pt;}
.y67{bottom:191.794667pt;}
.yb8{bottom:195.642667pt;}
.y91{bottom:197.161333pt;}
.yfc{bottom:201.264000pt;}
.y25{bottom:203.984000pt;}
.y66{bottom:206.406667pt;}
.yb7{bottom:211.582667pt;}
.y90{bottom:213.101333pt;}
.yfb{bottom:215.876000pt;}
.y65{bottom:215.938667pt;}
.y24{bottom:219.924000pt;}
.yce{bottom:226.088000pt;}
.yb6{bottom:227.522667pt;}
.y8f{bottom:229.041333pt;}
.yfa{bottom:230.424000pt;}
.y64{bottom:235.629333pt;}
.y23{bottom:235.864000pt;}
.ycd{bottom:242.028000pt;}
.yb5{bottom:243.462667pt;}
.y8e{bottom:244.982667pt;}
.yf9{bottom:245.036000pt;}
.y63{bottom:250.241333pt;}
.y22{bottom:251.804000pt;}
.ycc{bottom:257.969333pt;}
.yb4{bottom:259.402667pt;}
.yf8{bottom:259.648000pt;}
.y8d{bottom:260.922667pt;}
.y21{bottom:267.745333pt;}
.y62{bottom:271.676000pt;}
.ycb{bottom:273.909333pt;}
.yf7{bottom:274.260000pt;}
.yb3{bottom:275.344000pt;}
.y8c{bottom:276.862667pt;}
.y20{bottom:283.685333pt;}
.y61{bottom:287.616000pt;}
.yf6{bottom:288.808000pt;}
.yca{bottom:289.849333pt;}
.yb2{bottom:291.284000pt;}
.y8b{bottom:292.802667pt;}
.y1f{bottom:299.625333pt;}
.yf5{bottom:303.420000pt;}
.y60{bottom:303.809333pt;}
.yb1{bottom:307.224000pt;}
.y8a{bottom:308.742667pt;}
.y1e{bottom:315.565333pt;}
.yf4{bottom:317.968000pt;}
.y5f{bottom:319.749333pt;}
.yb0{bottom:323.164000pt;}
.y89{bottom:324.682667pt;}
.yc9{bottom:327.893333pt;}
.y1d{bottom:331.505333pt;}
.y46{bottom:332.178667pt;}
.yf3{bottom:332.580000pt;}
.y5e{bottom:335.689333pt;}
.yaf{bottom:339.104000pt;}
.y88{bottom:340.624000pt;}
.yc8{bottom:343.834667pt;}
.yf2{bottom:347.192000pt;}
.y1c{bottom:347.446667pt;}
.y45{bottom:348.118667pt;}
.y5d{bottom:351.629333pt;}
.yae{bottom:355.044000pt;}
.y87{bottom:356.564000pt;}
.yc7{bottom:359.774667pt;}
.yf1{bottom:361.804000pt;}
.y1b{bottom:363.386667pt;}
.y44{bottom:364.058667pt;}
.yad{bottom:370.985333pt;}
.y86{bottom:372.504000pt;}
.yc6{bottom:375.714667pt;}
.yf0{bottom:376.352000pt;}
.y1a{bottom:379.326667pt;}
.y43{bottom:380.670667pt;}
.y5c{bottom:381.862667pt;}
.yac{bottom:386.925333pt;}
.yef{bottom:390.964000pt;}
.yc5{bottom:391.654667pt;}
.y19{bottom:395.266667pt;}
.y42{bottom:396.612000pt;}
.y5b{bottom:397.802667pt;}
.y85{bottom:398.178667pt;}
.yab{bottom:402.865333pt;}
.yee{bottom:405.576000pt;}
.yc4{bottom:407.594667pt;}
.y18{bottom:411.206667pt;}
.y41{bottom:412.552000pt;}
.y84{bottom:413.896000pt;}
.y5a{bottom:413.996000pt;}
.yaa{bottom:418.805333pt;}
.yed{bottom:420.124000pt;}
.yc3{bottom:423.534667pt;}
.y17{bottom:427.146667pt;}
.y40{bottom:428.492000pt;}
.y83{bottom:429.612000pt;}
.y59{bottom:429.936000pt;}
.yec{bottom:434.736000pt;}
.ya9{bottom:434.745333pt;}
.y3f{bottom:444.432000pt;}
.y82{bottom:445.329333pt;}
.y58{bottom:445.876000pt;}
.yeb{bottom:449.348000pt;}
.ya8{bottom:450.686667pt;}
.yc2{bottom:453.609333pt;}
.y16{bottom:455.865333pt;}
.y3e{bottom:460.372000pt;}
.y81{bottom:461.269333pt;}
.y57{bottom:461.816000pt;}
.yea{bottom:463.896000pt;}
.ya7{bottom:466.626667pt;}
.y56{bottom:477.756000pt;}
.ye9{bottom:478.508000pt;}
.ya6{bottom:482.566667pt;}
.y80{bottom:486.721333pt;}
.ye8{bottom:493.120000pt;}
.y55{bottom:493.697333pt;}
.y3d{bottom:495.616000pt;}
.y15{bottom:497.020000pt;}
.ya5{bottom:498.506667pt;}
.yc1{bottom:500.105333pt;}
.y7f{bottom:502.661333pt;}
.ye7{bottom:507.732000pt;}
.y54{bottom:509.637333pt;}
.ya4{bottom:514.446667pt;}
.y7e{bottom:518.601333pt;}
.ye6{bottom:522.280000pt;}
.y14{bottom:525.453333pt;}
.y53{bottom:525.829333pt;}
.ya3{bottom:530.386667pt;}
.y7d{bottom:534.541333pt;}
.ye5{bottom:536.892000pt;}
.y13{bottom:540.065333pt;}
.y3c{bottom:541.485333pt;}
.y52{bottom:541.769333pt;}
.ya2{bottom:546.328000pt;}
.y7c{bottom:550.481333pt;}
.ye4{bottom:551.504000pt;}
.y114{bottom:552.196000pt;}
.y12{bottom:554.677333pt;}
.y3b{bottom:557.425333pt;}
.y51{bottom:557.709333pt;}
.ya1{bottom:562.268000pt;}
.ye3{bottom:566.052000pt;}
.y7b{bottom:566.422667pt;}
.y113{bottom:566.808000pt;}
.y11{bottom:569.289333pt;}
.y3a{bottom:573.365333pt;}
.ya0{bottom:578.208000pt;}
.ye2{bottom:580.664000pt;}
.y112{bottom:581.420000pt;}
.y7a{bottom:582.362667pt;}
.y10{bottom:583.901333pt;}
.y50{bottom:588.194667pt;}
.y39{bottom:589.306667pt;}
.ye1{bottom:595.276000pt;}
.y111{bottom:596.032000pt;}
.y79{bottom:598.302667pt;}
.yf{bottom:598.513333pt;}
.y4f{bottom:604.136000pt;}
.y9f{bottom:607.633333pt;}
.ye0{bottom:609.888000pt;}
.y110{bottom:610.644000pt;}
.ye{bottom:613.125333pt;}
.y78{bottom:614.242667pt;}
.y38{bottom:617.890667pt;}
.y4e{bottom:620.076000pt;}
.ydf{bottom:624.436000pt;}
.y10f{bottom:625.254667pt;}
.yd{bottom:627.737333pt;}
.y77{bottom:630.182667pt;}
.y37{bottom:633.830667pt;}
.y4d{bottom:636.016000pt;}
.yde{bottom:639.048000pt;}
.y10e{bottom:639.866667pt;}
.yc{bottom:642.348000pt;}
.y76{bottom:646.124000pt;}
.y9e{bottom:647.685333pt;}
.y36{bottom:649.770667pt;}
.y4c{bottom:651.956000pt;}
.ydd{bottom:653.660000pt;}
.y10d{bottom:654.478667pt;}
.yb{bottom:656.960000pt;}
.y75{bottom:662.064000pt;}
.y9d{bottom:663.625333pt;}
.y35{bottom:666.384000pt;}
.y4b{bottom:667.896000pt;}
.ydc{bottom:668.270667pt;}
.y10c{bottom:669.090667pt;}
.ya{bottom:671.572000pt;}
.y74{bottom:678.004000pt;}
.y9c{bottom:679.566667pt;}
.y34{bottom:682.324000pt;}
.ydb{bottom:682.820000pt;}
.y10b{bottom:683.702667pt;}
.y4a{bottom:683.836000pt;}
.y9{bottom:686.184000pt;}
.y73{bottom:693.944000pt;}
.y9b{bottom:695.506667pt;}
.yda{bottom:697.432000pt;}
.y33{bottom:698.264000pt;}
.y10a{bottom:698.314667pt;}
.y49{bottom:699.777333pt;}
.y8{bottom:700.796000pt;}
.y72{bottom:709.884000pt;}
.y9a{bottom:711.446667pt;}
.yd9{bottom:711.980000pt;}
.y109{bottom:712.926667pt;}
.y32{bottom:714.877333pt;}
.y7{bottom:715.408000pt;}
.y71{bottom:725.824000pt;}
.yd8{bottom:726.592000pt;}
.y108{bottom:727.538667pt;}
.y6{bottom:730.020000pt;}
.y31{bottom:730.817333pt;}
.y48{bottom:732.918667pt;}
.yc0{bottom:733.986667pt;}
.yd7{bottom:741.204000pt;}
.y107{bottom:742.150667pt;}
.yd6{bottom:755.814667pt;}
.y106{bottom:756.762667pt;}
.y99{bottom:757.426667pt;}
.y30{bottom:760.074667pt;}
.yd5{bottom:770.426667pt;}
.y105{bottom:771.374667pt;}
.y98{bottom:772.038667pt;}
.ybf{bottom:772.370960pt;}
.y70{bottom:773.366667pt;}
.y5{bottom:775.729333pt;}
.y2f{bottom:776.688000pt;}
.yd4{bottom:785.038667pt;}
.y104{bottom:785.985333pt;}
.y97{bottom:786.650667pt;}
.y6f{bottom:787.978667pt;}
.y4{bottom:790.341333pt;}
.y2e{bottom:792.628000pt;}
.ybe{bottom:793.611440pt;}
.yd3{bottom:799.588000pt;}
.y103{bottom:800.597333pt;}
.y96{bottom:801.261333pt;}
.y6e{bottom:802.590667pt;}
.y2d{bottom:808.568000pt;}
.yd2{bottom:814.198667pt;}
.y102{bottom:815.209333pt;}
.y95{bottom:815.873333pt;}
.y6d{bottom:817.202667pt;}
.y3{bottom:818.182667pt;}
.y2c{bottom:824.508000pt;}
.yba{bottom:826.380360pt;}
.yd1{bottom:828.810667pt;}
.y101{bottom:829.821333pt;}
.y94{bottom:830.485333pt;}
.y6c{bottom:831.814667pt;}
.ybd{bottom:837.000600pt;}
.y2b{bottom:840.448000pt;}
.yd0{bottom:843.422667pt;}
.y100{bottom:844.433333pt;}
.y93{bottom:845.629333pt;}
.y6b{bottom:846.425333pt;}
.ybb{bottom:848.075320pt;}
.y2a{bottom:856.388000pt;}
.ycf{bottom:858.034667pt;}
.yff{bottom:859.045333pt;}
.y92{bottom:861.170667pt;}
.y6a{bottom:861.569333pt;}
.y2{bottom:864.358667pt;}
.yb9{bottom:870.470240pt;}
.y29{bottom:872.329333pt;}
.yfe{bottom:873.657333pt;}
.y69{bottom:877.110667pt;}
.ybc{bottom:880.389760pt;}
.y1{bottom:888.269333pt;}
.y28{bottom:922.806667pt;}
.ha{height:20.443392pt;}
.hb{height:20.595392pt;}
.h7{height:21.551241pt;}
.h8{height:33.187635pt;}
.h3{height:35.865600pt;}
.h5{height:39.850400pt;}
.h9{height:40.071222pt;}
.h4{height:44.632747pt;}
.h2{height:47.175200pt;}
.h6{height:47.180533pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:179.686667pt;}
.xd{left:183.338667pt;}
.xc{left:185.294667pt;}
.x9{left:187.988000pt;}
.xe{left:192.969333pt;}
.x8{left:199.612000pt;}
.x3{left:201.132000pt;}
.xa{left:202.268000pt;}
.x6{left:217.481333pt;}
.x2{left:218.490667pt;}
.x17{left:228.124000pt;}
.x1{left:231.477333pt;}
.x4{left:263.853333pt;}
.xf{left:295.360000pt;}
.x15{left:297.416520pt;}
.x16{left:305.076000pt;}
.x10{left:308.134800pt;}
.x5{left:309.948000pt;}
.xb{left:324.169333pt;}
.x11{left:375.003400pt;}
.x12{left:482.194560pt;}
.x13{left:489.270920pt;}
.x14{left:492.029720pt;}
}




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