
    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_9b05f6bb65a29ab997ee2f34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_47377d9c1dc5c54302c64ba2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.592000;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_feb89b176acde7c26c72cfa8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_69e58b6b3eee1da105712cbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_eb3b53ead10520d1a3b52489.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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);}
.v2{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.750000px;}
.ls19{letter-spacing:-12.480000px;}
.ls1c{letter-spacing:-7.920000px;}
.lsc{letter-spacing:-4.674000px;}
.ls1a{letter-spacing:-2.592000px;}
.ls14{letter-spacing:-1.716000px;}
.ls13{letter-spacing:-1.650000px;}
.ls39{letter-spacing:-1.518000px;}
.ls55{letter-spacing:-1.452000px;}
.ls57{letter-spacing:-1.386000px;}
.ls1d{letter-spacing:-1.368000px;}
.ls3a{letter-spacing:-1.350000px;}
.ls15{letter-spacing:-1.320000px;}
.ls3b{letter-spacing:-1.296000px;}
.ls37{letter-spacing:-1.254000px;}
.ls2f{letter-spacing:-1.188000px;}
.ls2c{letter-spacing:-1.122000px;}
.lse{letter-spacing:-1.083000px;}
.ls44{letter-spacing:-1.056000px;}
.ls17{letter-spacing:-0.990000px;}
.ls40{letter-spacing:-0.924000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls2a{letter-spacing:-0.858000px;}
.ls10{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.768000px;}
.ls45{letter-spacing:-0.756000px;}
.ls41{letter-spacing:-0.726000px;}
.ls46{letter-spacing:-0.702000px;}
.ls29{letter-spacing:-0.660000px;}
.ls62{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.627000px;}
.ls12{letter-spacing:-0.594000px;}
.ls43{letter-spacing:-0.528000px;}
.lsb{letter-spacing:-0.513000px;}
.ls28{letter-spacing:-0.462000px;}
.ls61{letter-spacing:-0.432000px;}
.ls5d{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.399000px;}
.ls11{letter-spacing:-0.396000px;}
.ls5c{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.342000px;}
.ls5e{letter-spacing:-0.336000px;}
.ls16{letter-spacing:-0.330000px;}
.ls63{letter-spacing:-0.324000px;}
.ls30{letter-spacing:-0.270000px;}
.ls36{letter-spacing:-0.264000px;}
.ls5b{letter-spacing:-0.240000px;}
.ls2e{letter-spacing:-0.198000px;}
.ls2d{letter-spacing:-0.132000px;}
.ls5a{letter-spacing:-0.092400px;}
.ls38{letter-spacing:-0.066000px;}
.ls1e{letter-spacing:-0.057000px;}
.ls3c{letter-spacing:-0.054000px;}
.ls18{letter-spacing:-0.048000px;}
.ls42{letter-spacing:-0.046200px;}
.ls8{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.057000px;}
.ls58{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.066000px;}
.ls59{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.132000px;}
.ls5f{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.171000px;}
.ls56{letter-spacing:0.192000px;}
.ls23{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.264000px;}
.ls27{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.330000px;}
.ls4b{letter-spacing:0.378000px;}
.ls5{letter-spacing:0.396000px;}
.ls47{letter-spacing:0.420000px;}
.ls26{letter-spacing:0.462000px;}
.ls25{letter-spacing:0.528000px;}
.ls54{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.570000px;}
.ls22{letter-spacing:0.594000px;}
.ls35{letter-spacing:0.648000px;}
.ls34{letter-spacing:0.660000px;}
.ls48{letter-spacing:0.726000px;}
.ls20{letter-spacing:0.792000px;}
.ls3{letter-spacing:0.855000px;}
.ls4d{letter-spacing:0.858000px;}
.ls53{letter-spacing:0.864000px;}
.ls52{letter-spacing:0.918000px;}
.ls33{letter-spacing:0.924000px;}
.ls3e{letter-spacing:0.990000px;}
.ls3f{letter-spacing:1.026000px;}
.ls4e{letter-spacing:1.056000px;}
.ls4f{letter-spacing:1.122000px;}
.ls60{letter-spacing:1.350000px;}
.ls4c{letter-spacing:1.452000px;}
.ls31{letter-spacing:1.650000px;}
.ls32{letter-spacing:1.716000px;}
.ls50{letter-spacing:1.782000px;}
.ls0{letter-spacing:13.395000px;}
.ls49{letter-spacing:17.640000px;}
.ls51{letter-spacing:18.720000px;}
.ls6{letter-spacing:47.952000px;}
.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;}
}
.ws47{word-spacing:-18.216000px;}
.ws6e{word-spacing:-17.952000px;}
.ws56{word-spacing:-17.490000px;}
.ws48{word-spacing:-17.424000px;}
.ws6f{word-spacing:-17.358000px;}
.ws76{word-spacing:-17.292000px;}
.ws75{word-spacing:-17.226000px;}
.ws66{word-spacing:-17.160000px;}
.ws10{word-spacing:-17.136000px;}
.ws83{word-spacing:-17.094000px;}
.ws58{word-spacing:-17.028000px;}
.ws72{word-spacing:-16.962000px;}
.ws68{word-spacing:-16.896000px;}
.ws43{word-spacing:-16.830000px;}
.ws67{word-spacing:-16.764000px;}
.ws71{word-spacing:-16.698000px;}
.ws77{word-spacing:-16.632000px;}
.ws59{word-spacing:-16.566000px;}
.ws25{word-spacing:-16.500000px;}
.ws46{word-spacing:-16.434000px;}
.ws70{word-spacing:-16.302000px;}
.ws42{word-spacing:-16.236000px;}
.wsc{word-spacing:-16.170000px;}
.wsb{word-spacing:-16.104000px;}
.ws6{word-spacing:-16.038000px;}
.ws45{word-spacing:-15.906000px;}
.ws81{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.708000px;}
.wsd{word-spacing:-15.510000px;}
.wsf{word-spacing:-15.408000px;}
.ws41{word-spacing:-15.378000px;}
.ws44{word-spacing:-15.246000px;}
.wsa{word-spacing:-15.180000px;}
.ws84{word-spacing:-15.114000px;}
.ws80{word-spacing:-15.048000px;}
.ws87{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.850000px;}
.ws9{word-spacing:-14.784000px;}
.ws1{word-spacing:-14.535000px;}
.ws79{word-spacing:-14.418000px;}
.ws78{word-spacing:-14.364000px;}
.ws5{word-spacing:-14.250000px;}
.ws0{word-spacing:-13.908000px;}
.ws6a{word-spacing:-13.878000px;}
.ws2{word-spacing:-13.851000px;}
.ws69{word-spacing:-13.554000px;}
.ws2b{word-spacing:-13.500000px;}
.ws5c{word-spacing:-13.446000px;}
.ws2a{word-spacing:-13.230000px;}
.ws4{word-spacing:-13.167000px;}
.ws5b{word-spacing:-12.798000px;}
.ws5a{word-spacing:-12.744000px;}
.ws73{word-spacing:-12.528000px;}
.ws49{word-spacing:-12.204000px;}
.ws82{word-spacing:-12.192000px;}
.ws28{word-spacing:-12.000000px;}
.ws88{word-spacing:-11.664000px;}
.ws24{word-spacing:-11.550000px;}
.wse{word-spacing:-11.520000px;}
.ws57{word-spacing:-11.503800px;}
.ws86{word-spacing:-11.457600px;}
.ws8e{word-spacing:-11.088000px;}
.ws11{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.576000px;}
.ws23{word-spacing:-7.872000px;}
.ws22{word-spacing:-0.792000px;}
.ws36{word-spacing:-0.726000px;}
.ws34{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.594000px;}
.ws8f{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.528000px;}
.ws8b{word-spacing:-0.480000px;}
.ws1c{word-spacing:-0.462000px;}
.ws40{word-spacing:-0.432000px;}
.ws18{word-spacing:-0.399000px;}
.ws2c{word-spacing:-0.396000px;}
.ws3f{word-spacing:-0.378000px;}
.ws8d{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.330000px;}
.ws92{word-spacing:-0.270000px;}
.ws1e{word-spacing:-0.264000px;}
.ws15{word-spacing:-0.228000px;}
.ws2d{word-spacing:-0.198000px;}
.ws5e{word-spacing:-0.132000px;}
.ws7a{word-spacing:-0.092400px;}
.ws5d{word-spacing:-0.066000px;}
.ws90{word-spacing:-0.054000px;}
.ws16{word-spacing:0.000000px;}
.ws62{word-spacing:0.054000px;}
.ws2f{word-spacing:0.066000px;}
.ws63{word-spacing:0.108000px;}
.ws61{word-spacing:0.132000px;}
.ws91{word-spacing:0.162000px;}
.ws3b{word-spacing:0.198000px;}
.ws53{word-spacing:0.216000px;}
.ws33{word-spacing:0.264000px;}
.ws64{word-spacing:0.324000px;}
.ws3c{word-spacing:0.330000px;}
.ws65{word-spacing:0.378000px;}
.ws1d{word-spacing:0.396000px;}
.ws7d{word-spacing:0.432000px;}
.ws4d{word-spacing:0.462000px;}
.ws30{word-spacing:0.528000px;}
.ws7c{word-spacing:0.554400px;}
.ws17{word-spacing:0.570000px;}
.ws5f{word-spacing:0.594000px;}
.ws4b{word-spacing:0.660000px;}
.ws52{word-spacing:0.702000px;}
.ws4f{word-spacing:0.726000px;}
.ws6b{word-spacing:0.739200px;}
.ws55{word-spacing:0.756000px;}
.ws60{word-spacing:0.792000px;}
.ws1a{word-spacing:0.798000px;}
.ws7e{word-spacing:0.810000px;}
.ws2e{word-spacing:0.858000px;}
.ws7f{word-spacing:0.864000px;}
.ws1b{word-spacing:0.924000px;}
.ws6d{word-spacing:0.972000px;}
.ws50{word-spacing:0.990000px;}
.ws38{word-spacing:1.016400px;}
.ws35{word-spacing:1.056000px;}
.ws3d{word-spacing:1.080000px;}
.ws3a{word-spacing:1.122000px;}
.ws3e{word-spacing:1.134000px;}
.ws51{word-spacing:1.188000px;}
.ws14{word-spacing:1.197000px;}
.ws6c{word-spacing:1.242000px;}
.ws21{word-spacing:1.254000px;}
.ws93{word-spacing:1.296000px;}
.ws31{word-spacing:1.320000px;}
.ws19{word-spacing:1.368000px;}
.ws1f{word-spacing:1.386000px;}
.ws13{word-spacing:1.425000px;}
.ws8c{word-spacing:1.440000px;}
.ws37{word-spacing:1.452000px;}
.ws32{word-spacing:1.518000px;}
.ws20{word-spacing:1.584000px;}
.ws4c{word-spacing:1.650000px;}
.ws74{word-spacing:1.914000px;}
.ws4e{word-spacing:3.498000px;}
.ws12{word-spacing:5.637300px;}
.ws8a{word-spacing:6.864000px;}
.ws89{word-spacing:9.018000px;}
.ws85{word-spacing:9.372000px;}
.ws7b{word-spacing:10.956000px;}
.ws27{word-spacing:35.712000px;}
.ws29{word-spacing:36.018000px;}
._c{margin-left:-8.316000px;}
._9{margin-left:-6.600690px;}
._0{margin-left:-5.586000px;}
._3{margin-left:-4.158000px;}
._4{margin-left:-2.970000px;}
._2{margin-left:-1.253310px;}
._1{width:1.305300px;}
._8{width:2.442000px;}
._b{width:13.241310px;}
._e{width:15.510000px;}
._d{width:17.028000px;}
._7{width:47.712000px;}
._6{width:571.266000px;}
._a{width:572.280690px;}
._5{width:1159.776000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:2.658000px;}
.y1c{bottom:3.408000px;}
.y13{bottom:54.295500px;}
.y99{bottom:54.993000px;}
.yc9{bottom:55.182000px;}
.yf3{bottom:55.215000px;}
.y4a{bottom:55.257000px;}
.ye6{bottom:55.356000px;}
.y72{bottom:55.470000px;}
.yaf{bottom:55.527000px;}
.y98{bottom:69.249000px;}
.y128{bottom:69.390000px;}
.y49{bottom:69.513000px;}
.ye5{bottom:69.612000px;}
.y71{bottom:69.726000px;}
.yae{bottom:69.783000px;}
.y12{bottom:71.538000px;}
.yc8{bottom:72.424500px;}
.yf2{bottom:72.457500px;}
.y97{bottom:83.505000px;}
.y127{bottom:83.646000px;}
.y48{bottom:83.769000px;}
.ye4{bottom:83.868000px;}
.y70{bottom:83.982000px;}
.yad{bottom:84.039000px;}
.y11{bottom:88.780500px;}
.yc7{bottom:89.667000px;}
.yf1{bottom:89.700000px;}
.y126{bottom:97.902000px;}
.y47{bottom:98.025000px;}
.ye3{bottom:98.124000px;}
.y6f{bottom:98.238000px;}
.yac{bottom:98.295000px;}
.y10{bottom:106.023000px;}
.yc6{bottom:106.909500px;}
.yf0{bottom:106.942500px;}
.y125{bottom:112.158000px;}
.ye2{bottom:112.380000px;}
.y6e{bottom:112.494000px;}
.yf{bottom:123.265500px;}
.y96{bottom:123.997500px;}
.yc5{bottom:124.152000px;}
.yef{bottom:124.185000px;}
.y124{bottom:126.414000px;}
.y6d{bottom:126.750000px;}
.y109{bottom:129.885000px;}
.ye{bottom:140.508000px;}
.y123{bottom:140.670000px;}
.y46{bottom:141.180000px;}
.yab{bottom:141.214500px;}
.y95{bottom:141.240000px;}
.yc4{bottom:141.394500px;}
.yee{bottom:141.427500px;}
.y108{bottom:145.635000px;}
.y122{bottom:154.926000px;}
.yd{bottom:157.750500px;}
.y45{bottom:158.422500px;}
.yaa{bottom:158.457000px;}
.y94{bottom:158.482500px;}
.ye1{bottom:158.535000px;}
.yc3{bottom:158.637000px;}
.yed{bottom:158.670000px;}
.y107{bottom:161.385000px;}
.y121{bottom:169.182000px;}
.yc{bottom:174.993000px;}
.y44{bottom:175.665000px;}
.ya9{bottom:175.699500px;}
.y93{bottom:175.725000px;}
.ye0{bottom:175.777500px;}
.y6c{bottom:175.879500px;}
.yec{bottom:175.912500px;}
.y106{bottom:177.135000px;}
.y120{bottom:183.438000px;}
.y43{bottom:192.907500px;}
.ya8{bottom:192.942000px;}
.y92{bottom:192.967500px;}
.ydf{bottom:193.020000px;}
.y6b{bottom:193.122000px;}
.yeb{bottom:193.155000px;}
.y11f{bottom:197.694000px;}
.yb{bottom:200.865000px;}
.y42{bottom:210.150000px;}
.ya7{bottom:210.184500px;}
.y91{bottom:210.210000px;}
.yde{bottom:210.262500px;}
.y105{bottom:210.282000px;}
.y6a{bottom:210.364500px;}
.yea{bottom:210.397500px;}
.y11e{bottom:211.950000px;}
.y41{bottom:227.392500px;}
.ya6{bottom:227.427000px;}
.y90{bottom:227.452500px;}
.ydd{bottom:227.505000px;}
.y104{bottom:227.524500px;}
.y69{bottom:227.607000px;}
.ye9{bottom:227.640000px;}
.yc2{bottom:236.236500px;}
.y40{bottom:244.635000px;}
.y8f{bottom:244.695000px;}
.ydc{bottom:244.747500px;}
.y103{bottom:244.767000px;}
.y68{bottom:244.849500px;}
.ye8{bottom:244.882500px;}
.ya5{bottom:253.299000px;}
.y8e{bottom:261.937500px;}
.y3f{bottom:261.945000px;}
.ydb{bottom:261.990000px;}
.y102{bottom:262.009500px;}
.y67{bottom:262.092000px;}
.ye7{bottom:262.125000px;}
.y8d{bottom:279.180000px;}
.y3e{bottom:279.187500px;}
.yda{bottom:279.232500px;}
.y101{bottom:279.252000px;}
.y66{bottom:279.334500px;}
.yc1{bottom:279.367500px;}
.y1e{bottom:283.500000px;}
.y8c{bottom:296.422500px;}
.y3d{bottom:296.430000px;}
.yd9{bottom:296.475000px;}
.y100{bottom:296.494500px;}
.y65{bottom:296.577000px;}
.yc0{bottom:296.610000px;}
.y1d{bottom:301.500000px;}
.y8b{bottom:313.665000px;}
.y3c{bottom:313.672500px;}
.yd8{bottom:313.717500px;}
.yff{bottom:313.737000px;}
.y64{bottom:313.819500px;}
.ybf{bottom:313.852500px;}
.y1b{bottom:316.500000px;}
.yf4{bottom:322.449000px;}
.y8a{bottom:330.907500px;}
.y3b{bottom:330.915000px;}
.yd7{bottom:330.960000px;}
.y63{bottom:331.062000px;}
.ybe{bottom:331.095000px;}
.y19{bottom:336.000000px;}
.yfe{bottom:339.609000px;}
.y89{bottom:348.150000px;}
.y3a{bottom:348.157500px;}
.yd6{bottom:348.202500px;}
.y62{bottom:348.304500px;}
.ybd{bottom:348.337500px;}
.y17{bottom:362.895000px;}
.y88{bottom:365.392500px;}
.y39{bottom:365.400000px;}
.yd5{bottom:365.445000px;}
.y61{bottom:365.547000px;}
.ybc{bottom:365.580000px;}
.y38{bottom:382.642500px;}
.yd4{bottom:382.687500px;}
.yfd{bottom:382.740000px;}
.y87{bottom:382.774500px;}
.y60{bottom:382.789500px;}
.ybb{bottom:382.822500px;}
.yd3{bottom:399.930000px;}
.ya4{bottom:399.949500px;}
.yfc{bottom:399.982500px;}
.y86{bottom:400.017000px;}
.y5f{bottom:400.032000px;}
.y37{bottom:400.057500px;}
.yba{bottom:400.065000px;}
.yd2{bottom:417.172500px;}
.ya3{bottom:417.192000px;}
.yfb{bottom:417.225000px;}
.y85{bottom:417.259500px;}
.y5e{bottom:417.274500px;}
.y36{bottom:417.300000px;}
.yb9{bottom:417.307500px;}
.ya{bottom:433.740000px;}
.yd1{bottom:434.415000px;}
.ya2{bottom:434.434500px;}
.yfa{bottom:434.467500px;}
.y84{bottom:434.502000px;}
.y5d{bottom:434.517000px;}
.y35{bottom:434.542500px;}
.yb8{bottom:434.550000px;}
.y9{bottom:448.702725px;}
.yd0{bottom:451.657500px;}
.ya1{bottom:451.677000px;}
.yf9{bottom:451.710000px;}
.y83{bottom:451.744500px;}
.y5c{bottom:451.759500px;}
.y34{bottom:451.785000px;}
.yb7{bottom:451.792500px;}
.y11d{bottom:453.232500px;}
.y8{bottom:463.707975px;}
.ycf{bottom:468.900000px;}
.ya0{bottom:468.919500px;}
.yf8{bottom:468.952500px;}
.y82{bottom:468.987000px;}
.y5b{bottom:469.002000px;}
.y33{bottom:469.027500px;}
.yb6{bottom:469.035000px;}
.y11c{bottom:470.475000px;}
.y7{bottom:478.713225px;}
.yce{bottom:486.142500px;}
.yf7{bottom:486.195000px;}
.y5a{bottom:486.244500px;}
.y32{bottom:486.270000px;}
.yb5{bottom:486.277500px;}
.y11b{bottom:487.717500px;}
.y6{bottom:493.718475px;}
.y9f{bottom:494.791500px;}
.y81{bottom:494.859000px;}
.yf6{bottom:503.437500px;}
.y59{bottom:503.487000px;}
.y31{bottom:503.512500px;}
.yb4{bottom:503.520000px;}
.y11a{bottom:504.960000px;}
.y5{bottom:508.723725px;}
.yf5{bottom:520.680000px;}
.y58{bottom:520.729500px;}
.y30{bottom:520.755000px;}
.yb3{bottom:520.762500px;}
.y119{bottom:522.202500px;}
.y4{bottom:523.728975px;}
.y9e{bottom:537.922500px;}
.ycd{bottom:537.972000px;}
.y80{bottom:537.990000px;}
.y2f{bottom:537.997500px;}
.yb2{bottom:538.005000px;}
.y3{bottom:538.734225px;}
.y118{bottom:539.445000px;}
.y57{bottom:546.601500px;}
.y2{bottom:553.739475px;}
.y9d{bottom:555.165000px;}
.ycc{bottom:555.214500px;}
.y7f{bottom:555.232500px;}
.y2e{bottom:555.240000px;}
.yb1{bottom:555.247500px;}
.y117{bottom:556.687500px;}
.y9c{bottom:572.407500px;}
.ycb{bottom:572.457000px;}
.y7e{bottom:572.475000px;}
.y2d{bottom:572.482500px;}
.yb0{bottom:572.490000px;}
.y116{bottom:573.930000px;}
.y1{bottom:583.740000px;}
.y9b{bottom:589.650000px;}
.y7d{bottom:589.717500px;}
.y2c{bottom:589.725000px;}
.y56{bottom:589.732500px;}
.y115{bottom:591.172500px;}
.yca{bottom:598.329000px;}
.y9a{bottom:606.892500px;}
.y7c{bottom:606.960000px;}
.y2b{bottom:606.967500px;}
.y55{bottom:606.975000px;}
.y114{bottom:608.415000px;}
.y7b{bottom:624.202500px;}
.y2a{bottom:624.210000px;}
.y54{bottom:624.217500px;}
.y113{bottom:625.657500px;}
.y7a{bottom:641.445000px;}
.y29{bottom:641.452500px;}
.y53{bottom:641.460000px;}
.y112{bottom:642.900000px;}
.y79{bottom:658.687500px;}
.y28{bottom:658.695000px;}
.y52{bottom:658.702500px;}
.y111{bottom:660.142500px;}
.y78{bottom:675.930000px;}
.y27{bottom:675.937500px;}
.y51{bottom:675.945000px;}
.y110{bottom:677.422500px;}
.y77{bottom:693.172500px;}
.y26{bottom:693.180000px;}
.y50{bottom:693.187500px;}
.y10f{bottom:694.665000px;}
.y76{bottom:710.415000px;}
.y25{bottom:710.422500px;}
.y4f{bottom:710.430000px;}
.y10e{bottom:711.907500px;}
.y75{bottom:727.657500px;}
.y24{bottom:727.665000px;}
.y4e{bottom:727.672500px;}
.y10d{bottom:729.150000px;}
.y74{bottom:744.900000px;}
.y23{bottom:744.907500px;}
.y4d{bottom:744.915000px;}
.y10c{bottom:746.392500px;}
.y73{bottom:762.142500px;}
.y22{bottom:762.150000px;}
.y4c{bottom:762.157500px;}
.y10b{bottom:763.635000px;}
.y16{bottom:765.105000px;}
.y21{bottom:779.392500px;}
.y4b{bottom:779.400000px;}
.y20{bottom:796.642500px;}
.y10a{bottom:798.135000px;}
.y15{bottom:810.105000px;}
.y1f{bottom:813.885000px;}
.y14{bottom:861.105000px;}
.y18{bottom:924.000000px;}
.h8{height:13.500000px;}
.ha{height:15.000000px;}
.h7{height:47.085938px;}
.h9{height:47.109375px;}
.h4{height:51.216000px;}
.he{height:57.618000px;}
.hd{height:58.536000px;}
.h2{height:60.819000px;}
.h1{height:61.788000px;}
.h15{height:64.020000px;}
.h3{height:70.422000px;}
.h10{height:70.517400px;}
.h14{height:70.667400px;}
.h11{height:70.745400px;}
.h12{height:70.817400px;}
.h16{height:70.925400px;}
.hf{height:71.015400px;}
.hb{height:71.045400px;}
.h13{height:71.075400px;}
.hc{height:71.544000px;}
.h6{height:76.824000px;}
.h5{height:102.432000px;}
.h0{height:892.500000px;}
.w4{width:162.000000px;}
.w3{width:195.000000px;}
.w7{width:205.500000px;}
.w5{width:207.000000px;}
.w2{width:213.000000px;}
.w1{width:222.000000px;}
.w6{width:228.000000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x5{left:4.500000px;}
.x9{left:33.540000px;}
.xc{left:62.016150px;}
.x1{left:74.700000px;}
.xf{left:75.915000px;}
.x6{left:81.000000px;}
.x8{left:90.000000px;}
.x2{left:97.199325px;}
.x10{left:98.407500px;}
.xa{left:108.000000px;}
.xb{left:139.500000px;}
.x7{left:159.180150px;}
.x4{left:294.030000px;}
.xd{left:333.000000px;}
.xe{left:334.500000px;}
.x3{left:441.315000px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.333333pt;}
.ls19{letter-spacing:-11.093333pt;}
.ls1c{letter-spacing:-7.040000pt;}
.lsc{letter-spacing:-4.154667pt;}
.ls1a{letter-spacing:-2.304000pt;}
.ls14{letter-spacing:-1.525333pt;}
.ls13{letter-spacing:-1.466667pt;}
.ls39{letter-spacing:-1.349333pt;}
.ls55{letter-spacing:-1.290667pt;}
.ls57{letter-spacing:-1.232000pt;}
.ls1d{letter-spacing:-1.216000pt;}
.ls3a{letter-spacing:-1.200000pt;}
.ls15{letter-spacing:-1.173333pt;}
.ls3b{letter-spacing:-1.152000pt;}
.ls37{letter-spacing:-1.114667pt;}
.ls2f{letter-spacing:-1.056000pt;}
.ls2c{letter-spacing:-0.997333pt;}
.lse{letter-spacing:-0.962667pt;}
.ls44{letter-spacing:-0.938667pt;}
.ls17{letter-spacing:-0.880000pt;}
.ls40{letter-spacing:-0.821333pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls2a{letter-spacing:-0.762667pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.682667pt;}
.ls45{letter-spacing:-0.672000pt;}
.ls41{letter-spacing:-0.645333pt;}
.ls46{letter-spacing:-0.624000pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls62{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.557333pt;}
.ls12{letter-spacing:-0.528000pt;}
.ls43{letter-spacing:-0.469333pt;}
.lsb{letter-spacing:-0.456000pt;}
.ls28{letter-spacing:-0.410667pt;}
.ls61{letter-spacing:-0.384000pt;}
.ls5d{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.354667pt;}
.ls11{letter-spacing:-0.352000pt;}
.ls5c{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.304000pt;}
.ls5e{letter-spacing:-0.298667pt;}
.ls16{letter-spacing:-0.293333pt;}
.ls63{letter-spacing:-0.288000pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls36{letter-spacing:-0.234667pt;}
.ls5b{letter-spacing:-0.213333pt;}
.ls2e{letter-spacing:-0.176000pt;}
.ls2d{letter-spacing:-0.117333pt;}
.ls5a{letter-spacing:-0.082133pt;}
.ls38{letter-spacing:-0.058667pt;}
.ls1e{letter-spacing:-0.050667pt;}
.ls3c{letter-spacing:-0.048000pt;}
.ls18{letter-spacing:-0.042667pt;}
.ls42{letter-spacing:-0.041067pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.050667pt;}
.ls58{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.058667pt;}
.ls59{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.117333pt;}
.ls5f{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.152000pt;}
.ls56{letter-spacing:0.170667pt;}
.ls23{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.234667pt;}
.ls27{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.293333pt;}
.ls4b{letter-spacing:0.336000pt;}
.ls5{letter-spacing:0.352000pt;}
.ls47{letter-spacing:0.373333pt;}
.ls26{letter-spacing:0.410667pt;}
.ls25{letter-spacing:0.469333pt;}
.ls54{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.506667pt;}
.ls22{letter-spacing:0.528000pt;}
.ls35{letter-spacing:0.576000pt;}
.ls34{letter-spacing:0.586667pt;}
.ls48{letter-spacing:0.645333pt;}
.ls20{letter-spacing:0.704000pt;}
.ls3{letter-spacing:0.760000pt;}
.ls4d{letter-spacing:0.762667pt;}
.ls53{letter-spacing:0.768000pt;}
.ls52{letter-spacing:0.816000pt;}
.ls33{letter-spacing:0.821333pt;}
.ls3e{letter-spacing:0.880000pt;}
.ls3f{letter-spacing:0.912000pt;}
.ls4e{letter-spacing:0.938667pt;}
.ls4f{letter-spacing:0.997333pt;}
.ls60{letter-spacing:1.200000pt;}
.ls4c{letter-spacing:1.290667pt;}
.ls31{letter-spacing:1.466667pt;}
.ls32{letter-spacing:1.525333pt;}
.ls50{letter-spacing:1.584000pt;}
.ls0{letter-spacing:11.906667pt;}
.ls49{letter-spacing:15.680000pt;}
.ls51{letter-spacing:16.640000pt;}
.ls6{letter-spacing:42.624000pt;}
.ws47{word-spacing:-16.192000pt;}
.ws6e{word-spacing:-15.957333pt;}
.ws56{word-spacing:-15.546667pt;}
.ws48{word-spacing:-15.488000pt;}
.ws6f{word-spacing:-15.429333pt;}
.ws76{word-spacing:-15.370667pt;}
.ws75{word-spacing:-15.312000pt;}
.ws66{word-spacing:-15.253333pt;}
.ws10{word-spacing:-15.232000pt;}
.ws83{word-spacing:-15.194667pt;}
.ws58{word-spacing:-15.136000pt;}
.ws72{word-spacing:-15.077333pt;}
.ws68{word-spacing:-15.018667pt;}
.ws43{word-spacing:-14.960000pt;}
.ws67{word-spacing:-14.901333pt;}
.ws71{word-spacing:-14.842667pt;}
.ws77{word-spacing:-14.784000pt;}
.ws59{word-spacing:-14.725333pt;}
.ws25{word-spacing:-14.666667pt;}
.ws46{word-spacing:-14.608000pt;}
.ws70{word-spacing:-14.490667pt;}
.ws42{word-spacing:-14.432000pt;}
.wsc{word-spacing:-14.373333pt;}
.wsb{word-spacing:-14.314667pt;}
.ws6{word-spacing:-14.256000pt;}
.ws45{word-spacing:-14.138667pt;}
.ws81{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.962667pt;}
.wsd{word-spacing:-13.786667pt;}
.wsf{word-spacing:-13.696000pt;}
.ws41{word-spacing:-13.669333pt;}
.ws44{word-spacing:-13.552000pt;}
.wsa{word-spacing:-13.493333pt;}
.ws84{word-spacing:-13.434667pt;}
.ws80{word-spacing:-13.376000pt;}
.ws87{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.200000pt;}
.ws9{word-spacing:-13.141333pt;}
.ws1{word-spacing:-12.920000pt;}
.ws79{word-spacing:-12.816000pt;}
.ws78{word-spacing:-12.768000pt;}
.ws5{word-spacing:-12.666667pt;}
.ws0{word-spacing:-12.362667pt;}
.ws6a{word-spacing:-12.336000pt;}
.ws2{word-spacing:-12.312000pt;}
.ws69{word-spacing:-12.048000pt;}
.ws2b{word-spacing:-12.000000pt;}
.ws5c{word-spacing:-11.952000pt;}
.ws2a{word-spacing:-11.760000pt;}
.ws4{word-spacing:-11.704000pt;}
.ws5b{word-spacing:-11.376000pt;}
.ws5a{word-spacing:-11.328000pt;}
.ws73{word-spacing:-11.136000pt;}
.ws49{word-spacing:-10.848000pt;}
.ws82{word-spacing:-10.837333pt;}
.ws28{word-spacing:-10.666667pt;}
.ws88{word-spacing:-10.368000pt;}
.ws24{word-spacing:-10.266667pt;}
.wse{word-spacing:-10.240000pt;}
.ws57{word-spacing:-10.225600pt;}
.ws86{word-spacing:-10.184533pt;}
.ws8e{word-spacing:-9.856000pt;}
.ws11{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.512000pt;}
.ws23{word-spacing:-6.997333pt;}
.ws22{word-spacing:-0.704000pt;}
.ws36{word-spacing:-0.645333pt;}
.ws34{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.528000pt;}
.ws8f{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.469333pt;}
.ws8b{word-spacing:-0.426667pt;}
.ws1c{word-spacing:-0.410667pt;}
.ws40{word-spacing:-0.384000pt;}
.ws18{word-spacing:-0.354667pt;}
.ws2c{word-spacing:-0.352000pt;}
.ws3f{word-spacing:-0.336000pt;}
.ws8d{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.293333pt;}
.ws92{word-spacing:-0.240000pt;}
.ws1e{word-spacing:-0.234667pt;}
.ws15{word-spacing:-0.202667pt;}
.ws2d{word-spacing:-0.176000pt;}
.ws5e{word-spacing:-0.117333pt;}
.ws7a{word-spacing:-0.082133pt;}
.ws5d{word-spacing:-0.058667pt;}
.ws90{word-spacing:-0.048000pt;}
.ws16{word-spacing:0.000000pt;}
.ws62{word-spacing:0.048000pt;}
.ws2f{word-spacing:0.058667pt;}
.ws63{word-spacing:0.096000pt;}
.ws61{word-spacing:0.117333pt;}
.ws91{word-spacing:0.144000pt;}
.ws3b{word-spacing:0.176000pt;}
.ws53{word-spacing:0.192000pt;}
.ws33{word-spacing:0.234667pt;}
.ws64{word-spacing:0.288000pt;}
.ws3c{word-spacing:0.293333pt;}
.ws65{word-spacing:0.336000pt;}
.ws1d{word-spacing:0.352000pt;}
.ws7d{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.410667pt;}
.ws30{word-spacing:0.469333pt;}
.ws7c{word-spacing:0.492800pt;}
.ws17{word-spacing:0.506667pt;}
.ws5f{word-spacing:0.528000pt;}
.ws4b{word-spacing:0.586667pt;}
.ws52{word-spacing:0.624000pt;}
.ws4f{word-spacing:0.645333pt;}
.ws6b{word-spacing:0.657067pt;}
.ws55{word-spacing:0.672000pt;}
.ws60{word-spacing:0.704000pt;}
.ws1a{word-spacing:0.709333pt;}
.ws7e{word-spacing:0.720000pt;}
.ws2e{word-spacing:0.762667pt;}
.ws7f{word-spacing:0.768000pt;}
.ws1b{word-spacing:0.821333pt;}
.ws6d{word-spacing:0.864000pt;}
.ws50{word-spacing:0.880000pt;}
.ws38{word-spacing:0.903467pt;}
.ws35{word-spacing:0.938667pt;}
.ws3d{word-spacing:0.960000pt;}
.ws3a{word-spacing:0.997333pt;}
.ws3e{word-spacing:1.008000pt;}
.ws51{word-spacing:1.056000pt;}
.ws14{word-spacing:1.064000pt;}
.ws6c{word-spacing:1.104000pt;}
.ws21{word-spacing:1.114667pt;}
.ws93{word-spacing:1.152000pt;}
.ws31{word-spacing:1.173333pt;}
.ws19{word-spacing:1.216000pt;}
.ws1f{word-spacing:1.232000pt;}
.ws13{word-spacing:1.266667pt;}
.ws8c{word-spacing:1.280000pt;}
.ws37{word-spacing:1.290667pt;}
.ws32{word-spacing:1.349333pt;}
.ws20{word-spacing:1.408000pt;}
.ws4c{word-spacing:1.466667pt;}
.ws74{word-spacing:1.701333pt;}
.ws4e{word-spacing:3.109333pt;}
.ws12{word-spacing:5.010933pt;}
.ws8a{word-spacing:6.101333pt;}
.ws89{word-spacing:8.016000pt;}
.ws85{word-spacing:8.330667pt;}
.ws7b{word-spacing:9.738667pt;}
.ws27{word-spacing:31.744000pt;}
.ws29{word-spacing:32.016000pt;}
._c{margin-left:-7.392000pt;}
._9{margin-left:-5.867280pt;}
._0{margin-left:-4.965333pt;}
._3{margin-left:-3.696000pt;}
._4{margin-left:-2.640000pt;}
._2{margin-left:-1.114054pt;}
._1{width:1.160267pt;}
._8{width:2.170667pt;}
._b{width:11.770054pt;}
._e{width:13.786667pt;}
._d{width:15.136000pt;}
._7{width:42.410667pt;}
._6{width:507.792000pt;}
._a{width:508.693946pt;}
._5{width:1030.912000pt;}
.fs5{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.362667pt;}
.y1c{bottom:3.029333pt;}
.y13{bottom:48.262667pt;}
.y99{bottom:48.882667pt;}
.yc9{bottom:49.050667pt;}
.yf3{bottom:49.080000pt;}
.y4a{bottom:49.117333pt;}
.ye6{bottom:49.205333pt;}
.y72{bottom:49.306667pt;}
.yaf{bottom:49.357333pt;}
.y98{bottom:61.554667pt;}
.y128{bottom:61.680000pt;}
.y49{bottom:61.789333pt;}
.ye5{bottom:61.877333pt;}
.y71{bottom:61.978667pt;}
.yae{bottom:62.029333pt;}
.y12{bottom:63.589333pt;}
.yc8{bottom:64.377333pt;}
.yf2{bottom:64.406667pt;}
.y97{bottom:74.226667pt;}
.y127{bottom:74.352000pt;}
.y48{bottom:74.461333pt;}
.ye4{bottom:74.549333pt;}
.y70{bottom:74.650667pt;}
.yad{bottom:74.701333pt;}
.y11{bottom:78.916000pt;}
.yc7{bottom:79.704000pt;}
.yf1{bottom:79.733333pt;}
.y126{bottom:87.024000pt;}
.y47{bottom:87.133333pt;}
.ye3{bottom:87.221333pt;}
.y6f{bottom:87.322667pt;}
.yac{bottom:87.373333pt;}
.y10{bottom:94.242667pt;}
.yc6{bottom:95.030667pt;}
.yf0{bottom:95.060000pt;}
.y125{bottom:99.696000pt;}
.ye2{bottom:99.893333pt;}
.y6e{bottom:99.994667pt;}
.yf{bottom:109.569333pt;}
.y96{bottom:110.220000pt;}
.yc5{bottom:110.357333pt;}
.yef{bottom:110.386667pt;}
.y124{bottom:112.368000pt;}
.y6d{bottom:112.666667pt;}
.y109{bottom:115.453333pt;}
.ye{bottom:124.896000pt;}
.y123{bottom:125.040000pt;}
.y46{bottom:125.493333pt;}
.yab{bottom:125.524000pt;}
.y95{bottom:125.546667pt;}
.yc4{bottom:125.684000pt;}
.yee{bottom:125.713333pt;}
.y108{bottom:129.453333pt;}
.y122{bottom:137.712000pt;}
.yd{bottom:140.222667pt;}
.y45{bottom:140.820000pt;}
.yaa{bottom:140.850667pt;}
.y94{bottom:140.873333pt;}
.ye1{bottom:140.920000pt;}
.yc3{bottom:141.010667pt;}
.yed{bottom:141.040000pt;}
.y107{bottom:143.453333pt;}
.y121{bottom:150.384000pt;}
.yc{bottom:155.549333pt;}
.y44{bottom:156.146667pt;}
.ya9{bottom:156.177333pt;}
.y93{bottom:156.200000pt;}
.ye0{bottom:156.246667pt;}
.y6c{bottom:156.337333pt;}
.yec{bottom:156.366667pt;}
.y106{bottom:157.453333pt;}
.y120{bottom:163.056000pt;}
.y43{bottom:171.473333pt;}
.ya8{bottom:171.504000pt;}
.y92{bottom:171.526667pt;}
.ydf{bottom:171.573333pt;}
.y6b{bottom:171.664000pt;}
.yeb{bottom:171.693333pt;}
.y11f{bottom:175.728000pt;}
.yb{bottom:178.546667pt;}
.y42{bottom:186.800000pt;}
.ya7{bottom:186.830667pt;}
.y91{bottom:186.853333pt;}
.yde{bottom:186.900000pt;}
.y105{bottom:186.917333pt;}
.y6a{bottom:186.990667pt;}
.yea{bottom:187.020000pt;}
.y11e{bottom:188.400000pt;}
.y41{bottom:202.126667pt;}
.ya6{bottom:202.157333pt;}
.y90{bottom:202.180000pt;}
.ydd{bottom:202.226667pt;}
.y104{bottom:202.244000pt;}
.y69{bottom:202.317333pt;}
.ye9{bottom:202.346667pt;}
.yc2{bottom:209.988000pt;}
.y40{bottom:217.453333pt;}
.y8f{bottom:217.506667pt;}
.ydc{bottom:217.553333pt;}
.y103{bottom:217.570667pt;}
.y68{bottom:217.644000pt;}
.ye8{bottom:217.673333pt;}
.ya5{bottom:225.154667pt;}
.y8e{bottom:232.833333pt;}
.y3f{bottom:232.840000pt;}
.ydb{bottom:232.880000pt;}
.y102{bottom:232.897333pt;}
.y67{bottom:232.970667pt;}
.ye7{bottom:233.000000pt;}
.y8d{bottom:248.160000pt;}
.y3e{bottom:248.166667pt;}
.yda{bottom:248.206667pt;}
.y101{bottom:248.224000pt;}
.y66{bottom:248.297333pt;}
.yc1{bottom:248.326667pt;}
.y1e{bottom:252.000000pt;}
.y8c{bottom:263.486667pt;}
.y3d{bottom:263.493333pt;}
.yd9{bottom:263.533333pt;}
.y100{bottom:263.550667pt;}
.y65{bottom:263.624000pt;}
.yc0{bottom:263.653333pt;}
.y1d{bottom:268.000000pt;}
.y8b{bottom:278.813333pt;}
.y3c{bottom:278.820000pt;}
.yd8{bottom:278.860000pt;}
.yff{bottom:278.877333pt;}
.y64{bottom:278.950667pt;}
.ybf{bottom:278.980000pt;}
.y1b{bottom:281.333333pt;}
.yf4{bottom:286.621333pt;}
.y8a{bottom:294.140000pt;}
.y3b{bottom:294.146667pt;}
.yd7{bottom:294.186667pt;}
.y63{bottom:294.277333pt;}
.ybe{bottom:294.306667pt;}
.y19{bottom:298.666667pt;}
.yfe{bottom:301.874667pt;}
.y89{bottom:309.466667pt;}
.y3a{bottom:309.473333pt;}
.yd6{bottom:309.513333pt;}
.y62{bottom:309.604000pt;}
.ybd{bottom:309.633333pt;}
.y17{bottom:322.573333pt;}
.y88{bottom:324.793333pt;}
.y39{bottom:324.800000pt;}
.yd5{bottom:324.840000pt;}
.y61{bottom:324.930667pt;}
.ybc{bottom:324.960000pt;}
.y38{bottom:340.126667pt;}
.yd4{bottom:340.166667pt;}
.yfd{bottom:340.213333pt;}
.y87{bottom:340.244000pt;}
.y60{bottom:340.257333pt;}
.ybb{bottom:340.286667pt;}
.yd3{bottom:355.493333pt;}
.ya4{bottom:355.510667pt;}
.yfc{bottom:355.540000pt;}
.y86{bottom:355.570667pt;}
.y5f{bottom:355.584000pt;}
.y37{bottom:355.606667pt;}
.yba{bottom:355.613333pt;}
.yd2{bottom:370.820000pt;}
.ya3{bottom:370.837333pt;}
.yfb{bottom:370.866667pt;}
.y85{bottom:370.897333pt;}
.y5e{bottom:370.910667pt;}
.y36{bottom:370.933333pt;}
.yb9{bottom:370.940000pt;}
.ya{bottom:385.546667pt;}
.yd1{bottom:386.146667pt;}
.ya2{bottom:386.164000pt;}
.yfa{bottom:386.193333pt;}
.y84{bottom:386.224000pt;}
.y5d{bottom:386.237333pt;}
.y35{bottom:386.260000pt;}
.yb8{bottom:386.266667pt;}
.y9{bottom:398.846867pt;}
.yd0{bottom:401.473333pt;}
.ya1{bottom:401.490667pt;}
.yf9{bottom:401.520000pt;}
.y83{bottom:401.550667pt;}
.y5c{bottom:401.564000pt;}
.y34{bottom:401.586667pt;}
.yb7{bottom:401.593333pt;}
.y11d{bottom:402.873333pt;}
.y8{bottom:412.184867pt;}
.ycf{bottom:416.800000pt;}
.ya0{bottom:416.817333pt;}
.yf8{bottom:416.846667pt;}
.y82{bottom:416.877333pt;}
.y5b{bottom:416.890667pt;}
.y33{bottom:416.913333pt;}
.yb6{bottom:416.920000pt;}
.y11c{bottom:418.200000pt;}
.y7{bottom:425.522867pt;}
.yce{bottom:432.126667pt;}
.yf7{bottom:432.173333pt;}
.y5a{bottom:432.217333pt;}
.y32{bottom:432.240000pt;}
.yb5{bottom:432.246667pt;}
.y11b{bottom:433.526667pt;}
.y6{bottom:438.860867pt;}
.y9f{bottom:439.814667pt;}
.y81{bottom:439.874667pt;}
.yf6{bottom:447.500000pt;}
.y59{bottom:447.544000pt;}
.y31{bottom:447.566667pt;}
.yb4{bottom:447.573333pt;}
.y11a{bottom:448.853333pt;}
.y5{bottom:452.198867pt;}
.yf5{bottom:462.826667pt;}
.y58{bottom:462.870667pt;}
.y30{bottom:462.893333pt;}
.yb3{bottom:462.900000pt;}
.y119{bottom:464.180000pt;}
.y4{bottom:465.536867pt;}
.y9e{bottom:478.153333pt;}
.ycd{bottom:478.197333pt;}
.y80{bottom:478.213333pt;}
.y2f{bottom:478.220000pt;}
.yb2{bottom:478.226667pt;}
.y3{bottom:478.874867pt;}
.y118{bottom:479.506667pt;}
.y57{bottom:485.868000pt;}
.y2{bottom:492.212867pt;}
.y9d{bottom:493.480000pt;}
.ycc{bottom:493.524000pt;}
.y7f{bottom:493.540000pt;}
.y2e{bottom:493.546667pt;}
.yb1{bottom:493.553333pt;}
.y117{bottom:494.833333pt;}
.y9c{bottom:508.806667pt;}
.ycb{bottom:508.850667pt;}
.y7e{bottom:508.866667pt;}
.y2d{bottom:508.873333pt;}
.yb0{bottom:508.880000pt;}
.y116{bottom:510.160000pt;}
.y1{bottom:518.880000pt;}
.y9b{bottom:524.133333pt;}
.y7d{bottom:524.193333pt;}
.y2c{bottom:524.200000pt;}
.y56{bottom:524.206667pt;}
.y115{bottom:525.486667pt;}
.yca{bottom:531.848000pt;}
.y9a{bottom:539.460000pt;}
.y7c{bottom:539.520000pt;}
.y2b{bottom:539.526667pt;}
.y55{bottom:539.533333pt;}
.y114{bottom:540.813333pt;}
.y7b{bottom:554.846667pt;}
.y2a{bottom:554.853333pt;}
.y54{bottom:554.860000pt;}
.y113{bottom:556.140000pt;}
.y7a{bottom:570.173333pt;}
.y29{bottom:570.180000pt;}
.y53{bottom:570.186667pt;}
.y112{bottom:571.466667pt;}
.y79{bottom:585.500000pt;}
.y28{bottom:585.506667pt;}
.y52{bottom:585.513333pt;}
.y111{bottom:586.793333pt;}
.y78{bottom:600.826667pt;}
.y27{bottom:600.833333pt;}
.y51{bottom:600.840000pt;}
.y110{bottom:602.153333pt;}
.y77{bottom:616.153333pt;}
.y26{bottom:616.160000pt;}
.y50{bottom:616.166667pt;}
.y10f{bottom:617.480000pt;}
.y76{bottom:631.480000pt;}
.y25{bottom:631.486667pt;}
.y4f{bottom:631.493333pt;}
.y10e{bottom:632.806667pt;}
.y75{bottom:646.806667pt;}
.y24{bottom:646.813333pt;}
.y4e{bottom:646.820000pt;}
.y10d{bottom:648.133333pt;}
.y74{bottom:662.133333pt;}
.y23{bottom:662.140000pt;}
.y4d{bottom:662.146667pt;}
.y10c{bottom:663.460000pt;}
.y73{bottom:677.460000pt;}
.y22{bottom:677.466667pt;}
.y4c{bottom:677.473333pt;}
.y10b{bottom:678.786667pt;}
.y16{bottom:680.093333pt;}
.y21{bottom:692.793333pt;}
.y4b{bottom:692.800000pt;}
.y20{bottom:708.126667pt;}
.y10a{bottom:709.453333pt;}
.y15{bottom:720.093333pt;}
.y1f{bottom:723.453333pt;}
.y14{bottom:765.426667pt;}
.y18{bottom:821.333333pt;}
.h8{height:12.000000pt;}
.ha{height:13.333333pt;}
.h7{height:41.854167pt;}
.h9{height:41.875000pt;}
.h4{height:45.525333pt;}
.he{height:51.216000pt;}
.hd{height:52.032000pt;}
.h2{height:54.061333pt;}
.h1{height:54.922667pt;}
.h15{height:56.906667pt;}
.h3{height:62.597333pt;}
.h10{height:62.682133pt;}
.h14{height:62.815467pt;}
.h11{height:62.884800pt;}
.h12{height:62.948800pt;}
.h16{height:63.044800pt;}
.hf{height:63.124800pt;}
.hb{height:63.151467pt;}
.h13{height:63.178133pt;}
.hc{height:63.594667pt;}
.h6{height:68.288000pt;}
.h5{height:91.050667pt;}
.h0{height:793.333333pt;}
.w4{width:144.000000pt;}
.w3{width:173.333333pt;}
.w7{width:182.666667pt;}
.w5{width:184.000000pt;}
.w2{width:189.333333pt;}
.w1{width:197.333333pt;}
.w6{width:202.666667pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x5{left:4.000000pt;}
.x9{left:29.813333pt;}
.xc{left:55.125467pt;}
.x1{left:66.400000pt;}
.xf{left:67.480000pt;}
.x6{left:72.000000pt;}
.x8{left:80.000000pt;}
.x2{left:86.399400pt;}
.x10{left:87.473333pt;}
.xa{left:96.000000pt;}
.xb{left:124.000000pt;}
.x7{left:141.493467pt;}
.x4{left:261.360000pt;}
.xd{left:296.000000pt;}
.xe{left:297.333333pt;}
.x3{left:392.280000pt;}
}




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