
    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_200ef06e2badf6cebb37d247.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b356145cd3e44c6cab62c948.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_edba081db6b2c04d49ec1f0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cef0e369ed795174bb5c9b29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ebdca4d306e3d7730e7b8596.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ac9966bd0326468c4dc896d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_77bf88f3910a4153a404aba7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_cededa68a97c4b52bc2168d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3198f246d46d24dfb6a8cca7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.429000;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_94de08e7d403719cd69357b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.021484;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_a0f28d84a18f60539b3d4359.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fba5b7c994f34a4d6793c34c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.635000;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_aee67d45d3550b125b83d94b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666000;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_23a167cca0142539781013fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_277110d4540f988fea9e2df0.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;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:ff10;src:url('chunks/assets/font_9df2b8f64b408a9c815cd421.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.021484;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:-16.878000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008663px;}
.lse{letter-spacing:0.013003px;}
.ls10{letter-spacing:0.014663px;}
.ls16{letter-spacing:0.017372px;}
.ls19{letter-spacing:0.019504px;}
.ls1e{letter-spacing:0.027404px;}
.ls3{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.984915px;}
.ls13{letter-spacing:2.987251px;}
.ls4{letter-spacing:2.988532px;}
.ls8{letter-spacing:2.988775px;}
.ls20{letter-spacing:2.988780px;}
.ls1{letter-spacing:2.990915px;}
.ls9{letter-spacing:2.993251px;}
.ls7{letter-spacing:4.278579px;}
.lsc{letter-spacing:13.270183px;}
.ls1d{letter-spacing:13.329959px;}
.ls17{letter-spacing:16.267202px;}
.ls1c{letter-spacing:16.268525px;}
.lsf{letter-spacing:16.271251px;}
.ls11{letter-spacing:16.272775px;}
.ls1a{letter-spacing:16.274017px;}
.lsa{letter-spacing:16.617617px;}
.ls18{letter-spacing:16.737168px;}
.lsb{letter-spacing:17.562579px;}
.ls15{letter-spacing:17.574026px;}
.ls14{letter-spacing:19.590775px;}
.ls2{letter-spacing:26.000915px;}
.ls5{letter-spacing:35.865360px;}
.ls1f{letter-spacing:101.012525px;}
.ls12{letter-spacing:201.498775px;}
.ls1b{letter-spacing:285.607817px;}
.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;}
}
.ws14{word-spacing:-14.920027px;}
.ws2e{word-spacing:-11.955150px;}
.ws3a{word-spacing:-1.135736px;}
.ws20{word-spacing:-0.896634px;}
.ws30{word-spacing:-0.777083px;}
.ws23{word-spacing:-0.418429px;}
.ws46{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053798px;}
.ws73{word-spacing:-0.047821px;}
.ws45{word-spacing:0.000000px;}
.ws50{word-spacing:0.059776px;}
.ws54{word-spacing:0.119551px;}
.ws21{word-spacing:0.478205px;}
.ws28{word-spacing:0.597756px;}
.ws77{word-spacing:0.717309px;}
.ws8e{word-spacing:1.099874px;}
.ws3c{word-spacing:1.195512px;}
.ws3b{word-spacing:1.255288px;}
.ws40{word-spacing:1.554166px;}
.ws5b{word-spacing:1.853044px;}
.ws84{word-spacing:2.104106px;}
.ws26{word-spacing:2.151922px;}
.ws49{word-spacing:2.211697px;}
.wsad{word-spacing:2.295389px;}
.ws69{word-spacing:2.510575px;}
.ws75{word-spacing:2.582312px;}
.ws6e{word-spacing:3.108331px;}
.ws3f{word-spacing:3.227882px;}
.ws6c{word-spacing:3.347434px;}
.ws65{word-spacing:3.466985px;}
.ws1d{word-spacing:3.646312px;}
.ws64{word-spacing:4.363619px;}
.wsaa{word-spacing:4.590778px;}
.ws2c{word-spacing:4.782060px;}
.wsa3{word-spacing:4.925522px;}
.wsa6{word-spacing:5.068984px;}
.ws1a{word-spacing:5.080926px;}
.ws4d{word-spacing:5.439580px;}
.ws9f{word-spacing:5.451548px;}
.ws4c{word-spacing:5.499355px;}
.ws35{word-spacing:5.559131px;}
.ws43{word-spacing:5.798233px;}
.ws2a{word-spacing:5.977560px;}
.ws7c{word-spacing:6.073216px;}
.ws78{word-spacing:6.407960px;}
.ws70{word-spacing:6.515540px;}
.ws76{word-spacing:6.551422px;}
.ws53{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws39{word-spacing:6.694867px;}
.ws55{word-spacing:7.173072px;}
.ws51{word-spacing:7.232848px;}
.ws41{word-spacing:7.352399px;}
.ws33{word-spacing:7.531726px;}
.ws88{word-spacing:7.746937px;}
.ws42{word-spacing:8.069706px;}
.ws2d{word-spacing:8.081681px;}
.ws4b{word-spacing:8.129482px;}
.ws4a{word-spacing:8.249033px;}
.ws5a{word-spacing:8.308808px;}
.ws52{word-spacing:8.488135px;}
.ws18{word-spacing:8.607686px;}
.ws2b{word-spacing:8.655529px;}
.ws27{word-spacing:8.846789px;}
.ws5f{word-spacing:8.966340px;}
.ws89{word-spacing:9.229376px;}
.ws5c{word-spacing:9.384769px;}
.ws63{word-spacing:9.444545px;}
.ws38{word-spacing:9.623872px;}
.ws3e{word-spacing:9.743423px;}
.ws90{word-spacing:10.090147px;}
.ws15{word-spacing:10.102076px;}
.ws1e{word-spacing:10.161852px;}
.ws37{word-spacing:10.281403px;}
.ws1b{word-spacing:10.341179px;}
.ws66{word-spacing:10.580281px;}
.ws83{word-spacing:10.903097px;}
.ws60{word-spacing:11.058486px;}
.ws98{word-spacing:11.094379px;}
.ws32{word-spacing:11.178037px;}
.ws99{word-spacing:11.237841px;}
.ws58{word-spacing:11.297588px;}
.ws47{word-spacing:11.417140px;}
.ws71{word-spacing:11.476915px;}
.wsa2{word-spacing:11.572585px;}
.ws6f{word-spacing:11.596466px;}
.wsa0{word-spacing:11.620406px;}
.ws29{word-spacing:11.716018px;}
.wsa5{word-spacing:11.811688px;}
.ws5d{word-spacing:11.955120px;}
.ws44{word-spacing:12.014896px;}
.ws1f{word-spacing:12.194222px;}
.ws96{word-spacing:12.194253px;}
.wsac{word-spacing:12.337715px;}
.ws12{word-spacing:12.535027px;}
.ws8d{word-spacing:12.624638px;}
.ws61{word-spacing:12.851754px;}
.ws2f{word-spacing:13.210408px;}
.wsa7{word-spacing:13.676692px;}
.ws6a{word-spacing:13.808164px;}
.ws3d{word-spacing:13.987490px;}
.wsa9{word-spacing:14.202718px;}
.ws0{word-spacing:14.346180px;}
.ws74{word-spacing:14.489642px;}
.ws59{word-spacing:14.585246px;}
.ws34{word-spacing:14.645022px;}
.ws7b{word-spacing:14.872207px;}
.ws6d{word-spacing:14.884124px;}
.ws31{word-spacing:14.943900px;}
.ws4f{word-spacing:15.183002px;}
.ws82{word-spacing:15.254771px;}
.ws57{word-spacing:15.362329px;}
.ws72{word-spacing:15.493874px;}
.ws87{word-spacing:15.828619px;}
.ws4e{word-spacing:15.960085px;}
.ws22{word-spacing:16.019861px;}
.ws9b{word-spacing:16.019901px;}
.wsaf{word-spacing:16.115542px;}
.wsa1{word-spacing:16.211183px;}
.ws25{word-spacing:16.318739px;}
.ws56{word-spacing:16.557841px;}
.ws62{word-spacing:16.737168px;}
.ws68{word-spacing:16.916495px;}
.wsab{word-spacing:16.976313px;}
.wsb2{word-spacing:17.167595px;}
.ws1c{word-spacing:17.693578px;}
.ws6b{word-spacing:17.753353px;}
.ws13{word-spacing:17.932680px;}
.ws8b{word-spacing:17.932725px;}
.ws4{word-spacing:18.076262px;}
.ws79{word-spacing:18.315290px;}
.ws17{word-spacing:18.351109px;}
.ws93{word-spacing:18.506572px;}
.ws85{word-spacing:18.650034px;}
.ws48{word-spacing:18.709763px;}
.ws67{word-spacing:18.889090px;}
.ws11{word-spacing:20.120602px;}
.ws24{word-spacing:20.204153px;}
.ws19{word-spacing:20.323704px;}
.ws36{word-spacing:20.861684px;}
.ws9c{word-spacing:20.993243px;}
.ws7{word-spacing:21.680755px;}
.ws6{word-spacing:21.895949px;}
.ws8f{word-spacing:21.949655px;}
.ws8a{word-spacing:22.475682px;}
.ws7e{word-spacing:22.619144px;}
.ws97{word-spacing:23.001709px;}
.ws9{word-spacing:23.025715px;}
.wsa4{word-spacing:23.719018px;}
.ws9a{word-spacing:24.436327px;}
.ws91{word-spacing:24.818891px;}
.wsb0{word-spacing:25.488380px;}
.ws9d{word-spacing:25.631842px;}
.wsa{word-spacing:26.092224px;}
.wsa8{word-spacing:26.110048px;}
.wsd{word-spacing:26.146022px;}
.ws10{word-spacing:26.576410px;}
.ws7a{word-spacing:26.779536px;}
.ws92{word-spacing:27.257742px;}
.ws16{word-spacing:27.317449px;}
.ws7d{word-spacing:27.688127px;}
.ws86{word-spacing:27.735948px;}
.wsae{word-spacing:28.022872px;}
.wsc{word-spacing:28.028966px;}
.wse{word-spacing:29.427725px;}
.ws8c{word-spacing:29.840054px;}
.ws95{word-spacing:30.031337px;}
.ws94{word-spacing:30.413902px;}
.ws81{word-spacing:31.322493px;}
.ws3{word-spacing:31.741056px;}
.wsb{word-spacing:31.848653px;}
.ws5{word-spacing:32.978419px;}
.wsf{word-spacing:33.193613px;}
.ws8{word-spacing:34.646170px;}
.ws9e{word-spacing:37.539171px;}
.wsb1{word-spacing:38.686865px;}
.ws7f{word-spacing:38.782507px;}
.ws80{word-spacing:43.229822px;}
.ws5e{word-spacing:55.292430px;}
._3{margin-left:-9.325017px;}
._1{margin-left:-7.173090px;}
._0{margin-left:-5.738472px;}
._5{margin-left:-4.680461px;}
._4{margin-left:-3.586545px;}
._2{margin-left:-2.151927px;}
._6{margin-left:-1.075968px;}
._b{width:1.635879px;}
._9{width:2.988780px;}
._a{width:16.019875px;}
._f{width:23.109176px;}
._10{width:24.591614px;}
._8{width:27.060595px;}
._7{width:30.880282px;}
._e{width:35.733814px;}
._11{width:41.328824px;}
._c{width:47.820600px;}
._d{width:55.376255px;}
._12{width:58.149850px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:26.632632px;}
.fs5{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:45.655941px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y40{bottom:22.521888px;}
.y61{bottom:36.000000px;}
.y3f{bottom:36.313787px;}
.y41{bottom:78.165067px;}
.y3c{bottom:79.591815px;}
.y45{bottom:106.700030px;}
.y31{bottom:113.332500px;}
.y46{bottom:116.211684px;}
.y3e{bottom:117.638432px;}
.y44{bottom:121.918677px;}
.y30{bottom:126.783000px;}
.y94{bottom:131.265000px;}
.y5c{bottom:131.266500px;}
.y3d{bottom:131.430331px;}
.y43{bottom:135.234993px;}
.y2f{bottom:144.451500px;}
.y47{bottom:144.746647px;}
.y42{bottom:148.551309px;}
.y93{bottom:149.197500px;}
.y5b{bottom:149.199000px;}
.ydb{bottom:149.422500px;}
.y2e{bottom:154.264500px;}
.yda{bottom:162.873000px;}
.y92{bottom:167.131500px;}
.y2d{bottom:167.713500px;}
.y5a{bottom:173.043000px;}
.yd9{bottom:176.322000px;}
.y91{bottom:185.064000px;}
.yd8{bottom:189.771000px;}
.y90{bottom:202.996500px;}
.yd7{bottom:203.221500px;}
.y59{bottom:203.989500px;}
.y2c{bottom:210.147000px;}
.yd6{bottom:216.670500px;}
.y8f{bottom:220.929000px;}
.y58{bottom:221.923500px;}
.y2b{bottom:228.079500px;}
.yd5{bottom:230.121000px;}
.y8e{bottom:238.861500px;}
.y57{bottom:239.856000px;}
.yd4{bottom:243.570000px;}
.y2a{bottom:246.013500px;}
.y8d{bottom:256.795500px;}
.yd3{bottom:257.019000px;}
.y56{bottom:257.788500px;}
.y29{bottom:263.946000px;}
.yd2{bottom:270.469500px;}
.y8c{bottom:274.728000px;}
.y55{bottom:275.721000px;}
.y28{bottom:281.878500px;}
.yd1{bottom:283.918500px;}
.y8b{bottom:292.660500px;}
.y54{bottom:293.653500px;}
.yd0{bottom:297.367500px;}
.y27{bottom:299.811000px;}
.ycf{bottom:310.818000px;}
.y8a{bottom:314.772000px;}
.y53{bottom:315.303000px;}
.y26{bottom:317.743500px;}
.yce{bottom:324.267000px;}
.y52{bottom:333.235500px;}
.y25{bottom:335.676000px;}
.ycd{bottom:337.716000px;}
.y89{bottom:339.619500px;}
.ycc{bottom:351.166500px;}
.y51{bottom:351.168000px;}
.y24{bottom:353.610000px;}
.y88{bottom:357.552000px;}
.ycb{bottom:364.615500px;}
.y50{bottom:369.100500px;}
.y23{bottom:371.542500px;}
.y87{bottom:375.484500px;}
.yca{bottom:378.066000px;}
.y4f{bottom:387.033000px;}
.y22{bottom:389.475000px;}
.yc9{bottom:391.515000px;}
.y86{bottom:393.417000px;}
.yc8{bottom:404.964000px;}
.y4e{bottom:404.965500px;}
.y21{bottom:407.407500px;}
.y85{bottom:411.349500px;}
.yc7{bottom:418.414500px;}
.y4d{bottom:422.899500px;}
.y20{bottom:425.340000px;}
.y84{bottom:429.283500px;}
.yc6{bottom:431.863500px;}
.y4c{bottom:440.832000px;}
.y1f{bottom:443.274000px;}
.yc5{bottom:445.312500px;}
.y83{bottom:447.216000px;}
.yc4{bottom:458.763000px;}
.y4b{bottom:458.764500px;}
.y1e{bottom:461.206500px;}
.y82{bottom:465.148500px;}
.yc3{bottom:472.212000px;}
.y4a{bottom:476.697000px;}
.y1d{bottom:479.139000px;}
.y81{bottom:483.081000px;}
.yc2{bottom:485.662500px;}
.y1c{bottom:497.071500px;}
.yc1{bottom:499.111500px;}
.y49{bottom:500.542500px;}
.y80{bottom:501.013500px;}
.yc0{bottom:512.560500px;}
.y1b{bottom:515.004000px;}
.y7f{bottom:518.946000px;}
.ybf{bottom:526.011000px;}
.y1a{bottom:532.936500px;}
.y7e{bottom:536.880000px;}
.ybe{bottom:539.460000px;}
.y48{bottom:549.795000px;}
.y19{bottom:550.870500px;}
.ybd{bottom:552.909000px;}
.y7d{bottom:554.812500px;}
.ybc{bottom:566.359500px;}
.y18{bottom:568.803000px;}
.y7c{bottom:576.924000px;}
.y3b{bottom:577.126259px;}
.ybb{bottom:579.808500px;}
.y17{bottom:586.735500px;}
.yba{bottom:593.259000px;}
.y7b{bottom:601.771500px;}
.y16{bottom:604.668000px;}
.yb9{bottom:606.708000px;}
.y7a{bottom:619.704000px;}
.yb8{bottom:620.157000px;}
.yb7{bottom:633.607500px;}
.y79{bottom:637.636500px;}
.y15{bottom:642.658500px;}
.yb6{bottom:647.056500px;}
.y78{bottom:655.569000px;}
.yb5{bottom:660.505500px;}
.y77{bottom:673.501500px;}
.yb4{bottom:673.956000px;}
.yb3{bottom:687.405000px;}
.y76{bottom:691.435500px;}
.y14{bottom:696.577500px;}
.yb2{bottom:700.854000px;}
.y13{bottom:711.522000px;}
.yb1{bottom:714.304500px;}
.y75{bottom:717.105000px;}
.yb0{bottom:727.753500px;}
.y12{bottom:729.024000px;}
.yaf{bottom:741.204000px;}
.y74{bottom:742.774500px;}
.y11{bottom:743.968500px;}
.yae{bottom:754.653000px;}
.y10{bottom:758.911500px;}
.y73{bottom:760.707000px;}
.yad{bottom:768.102000px;}
.y3a{bottom:769.726500px;}
.yf{bottom:773.856000px;}
.y72{bottom:778.641000px;}
.yac{bottom:781.552500px;}
.y39{bottom:787.660500px;}
.ye{bottom:788.800500px;}
.yab{bottom:795.001500px;}
.y71{bottom:796.573500px;}
.yd{bottom:803.743500px;}
.y38{bottom:805.593000px;}
.yaa{bottom:808.450500px;}
.y70{bottom:818.685000px;}
.yc{bottom:818.688000px;}
.ya9{bottom:821.901000px;}
.y37{bottom:823.869000px;}
.yb{bottom:833.632500px;}
.ya8{bottom:835.350000px;}
.y36{bottom:841.803000px;}
.y6f{bottom:843.825000px;}
.ya{bottom:848.575500px;}
.ya7{bottom:848.800500px;}
.y35{bottom:859.735500px;}
.ya6{bottom:862.249500px;}
.y9{bottom:863.520000px;}
.y6e{bottom:869.496000px;}
.ya5{bottom:875.698500px;}
.y34{bottom:877.668000px;}
.y8{bottom:878.464500px;}
.y6d{bottom:887.428500px;}
.ya4{bottom:889.149000px;}
.y7{bottom:893.407500px;}
.y33{bottom:895.600500px;}
.ya3{bottom:902.598000px;}
.y6c{bottom:905.361000px;}
.y6{bottom:908.352000px;}
.y32{bottom:913.533000px;}
.ya2{bottom:916.047000px;}
.y6b{bottom:923.293500px;}
.y5{bottom:923.295000px;}
.ya1{bottom:929.497500px;}
.y4{bottom:938.239500px;}
.y6a{bottom:941.226000px;}
.ya0{bottom:942.946500px;}
.y9f{bottom:956.397000px;}
.y69{bottom:959.160000px;}
.y9e{bottom:969.846000px;}
.y68{bottom:977.092500px;}
.y9d{bottom:983.295000px;}
.y3{bottom:992.235000px;}
.y67{bottom:995.025000px;}
.y9c{bottom:996.745500px;}
.y9b{bottom:1010.194500px;}
.y66{bottom:1012.957500px;}
.y9a{bottom:1023.643500px;}
.y65{bottom:1030.890000px;}
.y99{bottom:1037.094000px;}
.y2{bottom:1039.309500px;}
.y98{bottom:1050.543000px;}
.y64{bottom:1056.031500px;}
.y97{bottom:1063.992000px;}
.y96{bottom:1077.442500px;}
.y1{bottom:1081.152000px;}
.y63{bottom:1081.701000px;}
.y95{bottom:1099.633500px;}
.y62{bottom:1099.635000px;}
.y60{bottom:1125.000000px;}
.y5f{bottom:1140.000000px;}
.y5e{bottom:1155.000000px;}
.y5d{bottom:1170.000000px;}
.h9{height:19.389285px;}
.h7{height:23.850624px;}
.he{height:32.661470px;}
.h6{height:32.900573px;}
.hf{height:33.140573px;}
.ha{height:33.238774px;}
.h4{height:37.336090px;}
.h3{height:37.605082px;}
.hb{height:40.826735px;}
.h5{height:41.125613px;}
.hc{height:41.660156px;}
.hd{height:42.799330px;}
.h2{height:55.554699px;}
.h1{height:98.701718px;}
.h8{height:161.928241px;}
.h0{height:1188.000000px;}
.w1{width:338.869696px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:2.142012px;}
.x18{left:34.500000px;}
.xc{left:43.718348px;}
.x5{left:73.446000px;}
.xd{left:77.261791px;}
.xe{left:81.066453px;}
.x7{left:85.401000px;}
.x4{left:88.389000px;}
.x1b{left:97.953000px;}
.x1{left:113.187000px;}
.x3{left:141.123000px;}
.xf{left:148.435718px;}
.x1a{left:162.264000px;}
.x2{left:173.082000px;}
.x6{left:203.428500px;}
.x1c{left:205.260000px;}
.x12{left:212.639385px;}
.x11{left:218.346378px;}
.x10{left:243.775191px;}
.x14{left:294.788869px;}
.x15{left:302.004350px;}
.x19{left:459.000000px;}
.xa{left:467.967000px;}
.x1e{left:473.944500px;}
.x9{left:482.910000px;}
.xb{left:487.019156px;}
.x1f{left:495.355500px;}
.x17{left:498.000000px;}
.x16{left:564.871500px;}
.x8{left:593.062500px;}
.x20{left:601.950000px;}
.x1d{left:614.418000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007700pt;}
.lse{letter-spacing:0.011558pt;}
.ls10{letter-spacing:0.013034pt;}
.ls16{letter-spacing:0.015442pt;}
.ls19{letter-spacing:0.017337pt;}
.ls1e{letter-spacing:0.024359pt;}
.ls3{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653258pt;}
.ls13{letter-spacing:2.655334pt;}
.ls4{letter-spacing:2.656473pt;}
.ls8{letter-spacing:2.656689pt;}
.ls20{letter-spacing:2.656693pt;}
.ls1{letter-spacing:2.658591pt;}
.ls9{letter-spacing:2.660667pt;}
.ls7{letter-spacing:3.803181pt;}
.lsc{letter-spacing:11.795718pt;}
.ls1d{letter-spacing:11.848852pt;}
.ls17{letter-spacing:14.459735pt;}
.ls1c{letter-spacing:14.460911pt;}
.lsf{letter-spacing:14.463334pt;}
.ls11{letter-spacing:14.464689pt;}
.ls1a{letter-spacing:14.465793pt;}
.lsa{letter-spacing:14.771215pt;}
.ls18{letter-spacing:14.877483pt;}
.lsb{letter-spacing:15.611181pt;}
.ls15{letter-spacing:15.621357pt;}
.ls14{letter-spacing:17.414022pt;}
.ls2{letter-spacing:23.111925pt;}
.ls5{letter-spacing:31.880320pt;}
.ls1f{letter-spacing:89.788911pt;}
.ls12{letter-spacing:179.110022pt;}
.ls1b{letter-spacing:253.873615pt;}
.ws14{word-spacing:-13.262246pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws3a{word-spacing:-1.009543pt;}
.ws20{word-spacing:-0.797008pt;}
.ws30{word-spacing:-0.690740pt;}
.ws23{word-spacing:-0.371937pt;}
.ws46{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047821pt;}
.ws73{word-spacing:-0.042507pt;}
.ws45{word-spacing:0.000000pt;}
.ws50{word-spacing:0.053134pt;}
.ws54{word-spacing:0.106268pt;}
.ws21{word-spacing:0.425071pt;}
.ws28{word-spacing:0.531339pt;}
.ws77{word-spacing:0.637608pt;}
.ws8e{word-spacing:0.977666pt;}
.ws3c{word-spacing:1.062677pt;}
.ws3b{word-spacing:1.115811pt;}
.ws40{word-spacing:1.381481pt;}
.ws5b{word-spacing:1.647150pt;}
.ws84{word-spacing:1.870317pt;}
.ws26{word-spacing:1.912819pt;}
.ws49{word-spacing:1.965953pt;}
.wsad{word-spacing:2.040346pt;}
.ws69{word-spacing:2.231622pt;}
.ws75{word-spacing:2.295389pt;}
.ws6e{word-spacing:2.762961pt;}
.ws3f{word-spacing:2.869229pt;}
.ws6c{word-spacing:2.975497pt;}
.ws65{word-spacing:3.081764pt;}
.ws1d{word-spacing:3.241166pt;}
.ws64{word-spacing:3.878772pt;}
.wsaa{word-spacing:4.080691pt;}
.ws2c{word-spacing:4.250720pt;}
.wsa3{word-spacing:4.378242pt;}
.wsa6{word-spacing:4.505763pt;}
.ws1a{word-spacing:4.516379pt;}
.ws4d{word-spacing:4.835182pt;}
.ws9f{word-spacing:4.845821pt;}
.ws4c{word-spacing:4.888316pt;}
.ws35{word-spacing:4.941450pt;}
.ws43{word-spacing:5.153985pt;}
.ws2a{word-spacing:5.313387pt;}
.ws7c{word-spacing:5.398414pt;}
.ws78{word-spacing:5.695965pt;}
.ws70{word-spacing:5.791591pt;}
.ws76{word-spacing:5.823486pt;}
.ws53{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws39{word-spacing:5.950993pt;}
.ws55{word-spacing:6.376064pt;}
.ws51{word-spacing:6.429198pt;}
.ws41{word-spacing:6.535466pt;}
.ws33{word-spacing:6.694867pt;}
.ws88{word-spacing:6.886166pt;}
.ws42{word-spacing:7.173072pt;}
.ws2d{word-spacing:7.183717pt;}
.ws4b{word-spacing:7.226206pt;}
.ws4a{word-spacing:7.332474pt;}
.ws5a{word-spacing:7.385607pt;}
.ws52{word-spacing:7.545009pt;}
.ws18{word-spacing:7.651277pt;}
.ws2b{word-spacing:7.693803pt;}
.ws27{word-spacing:7.863812pt;}
.ws5f{word-spacing:7.970080pt;}
.ws89{word-spacing:8.203890pt;}
.ws5c{word-spacing:8.342017pt;}
.ws63{word-spacing:8.395151pt;}
.ws38{word-spacing:8.554553pt;}
.ws3e{word-spacing:8.660820pt;}
.ws90{word-spacing:8.969019pt;}
.ws15{word-spacing:8.979623pt;}
.ws1e{word-spacing:9.032757pt;}
.ws37{word-spacing:9.139025pt;}
.ws1b{word-spacing:9.192159pt;}
.ws66{word-spacing:9.404694pt;}
.ws83{word-spacing:9.691642pt;}
.ws60{word-spacing:9.829765pt;}
.ws98{word-spacing:9.861670pt;}
.ws32{word-spacing:9.936033pt;}
.ws99{word-spacing:9.989192pt;}
.ws58{word-spacing:10.042301pt;}
.ws47{word-spacing:10.148569pt;}
.ws71{word-spacing:10.201702pt;}
.wsa2{word-spacing:10.286742pt;}
.ws6f{word-spacing:10.307970pt;}
.wsa0{word-spacing:10.329250pt;}
.ws29{word-spacing:10.414238pt;}
.wsa5{word-spacing:10.499278pt;}
.ws5d{word-spacing:10.626773pt;}
.ws44{word-spacing:10.679907pt;}
.ws1f{word-spacing:10.839309pt;}
.ws96{word-spacing:10.839336pt;}
.wsac{word-spacing:10.966858pt;}
.ws12{word-spacing:11.142246pt;}
.ws8d{word-spacing:11.221901pt;}
.ws61{word-spacing:11.423781pt;}
.ws2f{word-spacing:11.742585pt;}
.wsa7{word-spacing:12.157059pt;}
.ws6a{word-spacing:12.273923pt;}
.ws3d{word-spacing:12.433325pt;}
.wsa9{word-spacing:12.624638pt;}
.ws0{word-spacing:12.752160pt;}
.ws74{word-spacing:12.879682pt;}
.ws59{word-spacing:12.964663pt;}
.ws34{word-spacing:13.017797pt;}
.ws7b{word-spacing:13.219739pt;}
.ws6d{word-spacing:13.230333pt;}
.ws31{word-spacing:13.283467pt;}
.ws4f{word-spacing:13.496002pt;}
.ws82{word-spacing:13.559797pt;}
.ws57{word-spacing:13.655404pt;}
.ws72{word-spacing:13.772333pt;}
.ws87{word-spacing:14.069883pt;}
.ws4e{word-spacing:14.186742pt;}
.ws22{word-spacing:14.239876pt;}
.ws9b{word-spacing:14.239912pt;}
.wsaf{word-spacing:14.324926pt;}
.wsa1{word-spacing:14.409941pt;}
.ws25{word-spacing:14.505546pt;}
.ws56{word-spacing:14.718081pt;}
.ws62{word-spacing:14.877483pt;}
.ws68{word-spacing:15.036884pt;}
.wsab{word-spacing:15.090056pt;}
.wsb2{word-spacing:15.260085pt;}
.ws1c{word-spacing:15.727625pt;}
.ws6b{word-spacing:15.780758pt;}
.ws13{word-spacing:15.940160pt;}
.ws8b{word-spacing:15.940200pt;}
.ws4{word-spacing:16.067789pt;}
.ws79{word-spacing:16.280258pt;}
.ws17{word-spacing:16.312097pt;}
.ws93{word-spacing:16.450286pt;}
.ws85{word-spacing:16.577808pt;}
.ws48{word-spacing:16.630900pt;}
.ws67{word-spacing:16.790302pt;}
.ws11{word-spacing:17.884979pt;}
.ws24{word-spacing:17.959247pt;}
.ws19{word-spacing:18.065515pt;}
.ws36{word-spacing:18.543719pt;}
.ws9c{word-spacing:18.660661pt;}
.ws7{word-spacing:19.271782pt;}
.ws6{word-spacing:19.463066pt;}
.ws8f{word-spacing:19.510805pt;}
.ws8a{word-spacing:19.978384pt;}
.ws7e{word-spacing:20.105906pt;}
.ws97{word-spacing:20.445963pt;}
.ws9{word-spacing:20.467302pt;}
.wsa4{word-spacing:21.083571pt;}
.ws9a{word-spacing:21.721179pt;}
.ws91{word-spacing:22.061237pt;}
.wsb0{word-spacing:22.656338pt;}
.ws9d{word-spacing:22.783859pt;}
.wsa{word-spacing:23.193088pt;}
.wsa8{word-spacing:23.208931pt;}
.wsd{word-spacing:23.240909pt;}
.ws10{word-spacing:23.623475pt;}
.ws7a{word-spacing:23.804032pt;}
.ws92{word-spacing:24.229104pt;}
.ws16{word-spacing:24.282177pt;}
.ws7d{word-spacing:24.611669pt;}
.ws86{word-spacing:24.654176pt;}
.wsae{word-spacing:24.909219pt;}
.wsc{word-spacing:24.914637pt;}
.wse{word-spacing:26.157978pt;}
.ws8c{word-spacing:26.524493pt;}
.ws95{word-spacing:26.694522pt;}
.ws94{word-spacing:27.034579pt;}
.ws81{word-spacing:27.842216pt;}
.ws3{word-spacing:28.214272pt;}
.wsb{word-spacing:28.309914pt;}
.ws5{word-spacing:29.314150pt;}
.wsf{word-spacing:29.505434pt;}
.ws8{word-spacing:30.796595pt;}
.ws9e{word-spacing:33.368152pt;}
.wsb1{word-spacing:34.388325pt;}
.ws7f{word-spacing:34.473339pt;}
.ws80{word-spacing:38.426509pt;}
.ws5e{word-spacing:49.148827pt;}
._3{margin-left:-8.288904pt;}
._1{margin-left:-6.376080pt;}
._0{margin-left:-5.100864pt;}
._5{margin-left:-4.160410pt;}
._4{margin-left:-3.188040pt;}
._2{margin-left:-1.912824pt;}
._6{margin-left:-0.956416pt;}
._b{width:1.454115pt;}
._9{width:2.656693pt;}
._a{width:14.239889pt;}
._f{width:20.541490pt;}
._10{width:21.859213pt;}
._8{width:24.053862pt;}
._7{width:27.449139pt;}
._e{width:31.763390pt;}
._11{width:36.736733pt;}
._c{width:42.507200pt;}
._d{width:49.223338pt;}
._12{width:51.688755pt;}
.fs6{font-size:23.673451pt;}
.fs5{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:40.583059pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:20.019456pt;}
.y61{bottom:32.000000pt;}
.y3f{bottom:32.278922pt;}
.y41{bottom:69.480059pt;}
.y3c{bottom:70.748280pt;}
.y45{bottom:94.844471pt;}
.y31{bottom:100.740000pt;}
.y46{bottom:103.299275pt;}
.y3e{bottom:104.567495pt;}
.y44{bottom:108.372157pt;}
.y30{bottom:112.696000pt;}
.y94{bottom:116.680000pt;}
.y5c{bottom:116.681333pt;}
.y3d{bottom:116.826961pt;}
.y43{bottom:120.208883pt;}
.y2f{bottom:128.401333pt;}
.y47{bottom:128.663687pt;}
.y42{bottom:132.045608pt;}
.y93{bottom:132.620000pt;}
.y5b{bottom:132.621333pt;}
.ydb{bottom:132.820000pt;}
.y2e{bottom:137.124000pt;}
.yda{bottom:144.776000pt;}
.y92{bottom:148.561333pt;}
.y2d{bottom:149.078667pt;}
.y5a{bottom:153.816000pt;}
.yd9{bottom:156.730667pt;}
.y91{bottom:164.501333pt;}
.yd8{bottom:168.685333pt;}
.y90{bottom:180.441333pt;}
.yd7{bottom:180.641333pt;}
.y59{bottom:181.324000pt;}
.y2c{bottom:186.797333pt;}
.yd6{bottom:192.596000pt;}
.y8f{bottom:196.381333pt;}
.y58{bottom:197.265333pt;}
.y2b{bottom:202.737333pt;}
.yd5{bottom:204.552000pt;}
.y8e{bottom:212.321333pt;}
.y57{bottom:213.205333pt;}
.yd4{bottom:216.506667pt;}
.y2a{bottom:218.678667pt;}
.y8d{bottom:228.262667pt;}
.yd3{bottom:228.461333pt;}
.y56{bottom:229.145333pt;}
.y29{bottom:234.618667pt;}
.yd2{bottom:240.417333pt;}
.y8c{bottom:244.202667pt;}
.y55{bottom:245.085333pt;}
.y28{bottom:250.558667pt;}
.yd1{bottom:252.372000pt;}
.y8b{bottom:260.142667pt;}
.y54{bottom:261.025333pt;}
.yd0{bottom:264.326667pt;}
.y27{bottom:266.498667pt;}
.ycf{bottom:276.282667pt;}
.y8a{bottom:279.797333pt;}
.y53{bottom:280.269333pt;}
.y26{bottom:282.438667pt;}
.yce{bottom:288.237333pt;}
.y52{bottom:296.209333pt;}
.y25{bottom:298.378667pt;}
.ycd{bottom:300.192000pt;}
.y89{bottom:301.884000pt;}
.ycc{bottom:312.148000pt;}
.y51{bottom:312.149333pt;}
.y24{bottom:314.320000pt;}
.y88{bottom:317.824000pt;}
.ycb{bottom:324.102667pt;}
.y50{bottom:328.089333pt;}
.y23{bottom:330.260000pt;}
.y87{bottom:333.764000pt;}
.yca{bottom:336.058667pt;}
.y4f{bottom:344.029333pt;}
.y22{bottom:346.200000pt;}
.yc9{bottom:348.013333pt;}
.y86{bottom:349.704000pt;}
.yc8{bottom:359.968000pt;}
.y4e{bottom:359.969333pt;}
.y21{bottom:362.140000pt;}
.y85{bottom:365.644000pt;}
.yc7{bottom:371.924000pt;}
.y4d{bottom:375.910667pt;}
.y20{bottom:378.080000pt;}
.y84{bottom:381.585333pt;}
.yc6{bottom:383.878667pt;}
.y4c{bottom:391.850667pt;}
.y1f{bottom:394.021333pt;}
.yc5{bottom:395.833333pt;}
.y83{bottom:397.525333pt;}
.yc4{bottom:407.789333pt;}
.y4b{bottom:407.790667pt;}
.y1e{bottom:409.961333pt;}
.y82{bottom:413.465333pt;}
.yc3{bottom:419.744000pt;}
.y4a{bottom:423.730667pt;}
.y1d{bottom:425.901333pt;}
.y81{bottom:429.405333pt;}
.yc2{bottom:431.700000pt;}
.y1c{bottom:441.841333pt;}
.yc1{bottom:443.654667pt;}
.y49{bottom:444.926667pt;}
.y80{bottom:445.345333pt;}
.yc0{bottom:455.609333pt;}
.y1b{bottom:457.781333pt;}
.y7f{bottom:461.285333pt;}
.ybf{bottom:467.565333pt;}
.y1a{bottom:473.721333pt;}
.y7e{bottom:477.226667pt;}
.ybe{bottom:479.520000pt;}
.y48{bottom:488.706667pt;}
.y19{bottom:489.662667pt;}
.ybd{bottom:491.474667pt;}
.y7d{bottom:493.166667pt;}
.ybc{bottom:503.430667pt;}
.y18{bottom:505.602667pt;}
.y7c{bottom:512.821333pt;}
.y3b{bottom:513.001119pt;}
.ybb{bottom:515.385333pt;}
.y17{bottom:521.542667pt;}
.yba{bottom:527.341333pt;}
.y7b{bottom:534.908000pt;}
.y16{bottom:537.482667pt;}
.yb9{bottom:539.296000pt;}
.y7a{bottom:550.848000pt;}
.yb8{bottom:551.250667pt;}
.yb7{bottom:563.206667pt;}
.y79{bottom:566.788000pt;}
.y15{bottom:571.252000pt;}
.yb6{bottom:575.161333pt;}
.y78{bottom:582.728000pt;}
.yb5{bottom:587.116000pt;}
.y77{bottom:598.668000pt;}
.yb4{bottom:599.072000pt;}
.yb3{bottom:611.026667pt;}
.y76{bottom:614.609333pt;}
.y14{bottom:619.180000pt;}
.yb2{bottom:622.981333pt;}
.y13{bottom:632.464000pt;}
.yb1{bottom:634.937333pt;}
.y75{bottom:637.426667pt;}
.yb0{bottom:646.892000pt;}
.y12{bottom:648.021333pt;}
.yaf{bottom:658.848000pt;}
.y74{bottom:660.244000pt;}
.y11{bottom:661.305333pt;}
.yae{bottom:670.802667pt;}
.y10{bottom:674.588000pt;}
.y73{bottom:676.184000pt;}
.yad{bottom:682.757333pt;}
.y3a{bottom:684.201333pt;}
.yf{bottom:687.872000pt;}
.y72{bottom:692.125333pt;}
.yac{bottom:694.713333pt;}
.y39{bottom:700.142667pt;}
.ye{bottom:701.156000pt;}
.yab{bottom:706.668000pt;}
.y71{bottom:708.065333pt;}
.yd{bottom:714.438667pt;}
.y38{bottom:716.082667pt;}
.yaa{bottom:718.622667pt;}
.y70{bottom:727.720000pt;}
.yc{bottom:727.722667pt;}
.ya9{bottom:730.578667pt;}
.y37{bottom:732.328000pt;}
.yb{bottom:741.006667pt;}
.ya8{bottom:742.533333pt;}
.y36{bottom:748.269333pt;}
.y6f{bottom:750.066667pt;}
.ya{bottom:754.289333pt;}
.ya7{bottom:754.489333pt;}
.y35{bottom:764.209333pt;}
.ya6{bottom:766.444000pt;}
.y9{bottom:767.573333pt;}
.y6e{bottom:772.885333pt;}
.ya5{bottom:778.398667pt;}
.y34{bottom:780.149333pt;}
.y8{bottom:780.857333pt;}
.y6d{bottom:788.825333pt;}
.ya4{bottom:790.354667pt;}
.y7{bottom:794.140000pt;}
.y33{bottom:796.089333pt;}
.ya3{bottom:802.309333pt;}
.y6c{bottom:804.765333pt;}
.y6{bottom:807.424000pt;}
.y32{bottom:812.029333pt;}
.ya2{bottom:814.264000pt;}
.y6b{bottom:820.705333pt;}
.y5{bottom:820.706667pt;}
.ya1{bottom:826.220000pt;}
.y4{bottom:833.990667pt;}
.y6a{bottom:836.645333pt;}
.ya0{bottom:838.174667pt;}
.y9f{bottom:850.130667pt;}
.y69{bottom:852.586667pt;}
.y9e{bottom:862.085333pt;}
.y68{bottom:868.526667pt;}
.y9d{bottom:874.040000pt;}
.y3{bottom:881.986667pt;}
.y67{bottom:884.466667pt;}
.y9c{bottom:885.996000pt;}
.y9b{bottom:897.950667pt;}
.y66{bottom:900.406667pt;}
.y9a{bottom:909.905333pt;}
.y65{bottom:916.346667pt;}
.y99{bottom:921.861333pt;}
.y2{bottom:923.830667pt;}
.y98{bottom:933.816000pt;}
.y64{bottom:938.694667pt;}
.y97{bottom:945.770667pt;}
.y96{bottom:957.726667pt;}
.y1{bottom:961.024000pt;}
.y63{bottom:961.512000pt;}
.y95{bottom:977.452000pt;}
.y62{bottom:977.453333pt;}
.y60{bottom:1000.000000pt;}
.y5f{bottom:1013.333333pt;}
.y5e{bottom:1026.666667pt;}
.y5d{bottom:1040.000000pt;}
.h9{height:17.234920pt;}
.h7{height:21.200555pt;}
.he{height:29.032418pt;}
.h6{height:29.244954pt;}
.hf{height:29.458287pt;}
.ha{height:29.545576pt;}
.h4{height:33.187635pt;}
.h3{height:33.426739pt;}
.hb{height:36.290431pt;}
.h5{height:36.556100pt;}
.hc{height:37.031250pt;}
.hd{height:38.043849pt;}
.h2{height:49.381955pt;}
.h1{height:87.734861pt;}
.h8{height:143.936214pt;}
.h0{height:1056.000000pt;}
.w1{width:301.217507pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.904011pt;}
.x18{left:30.666667pt;}
.xc{left:38.860754pt;}
.x5{left:65.285333pt;}
.xd{left:68.677148pt;}
.xe{left:72.059069pt;}
.x7{left:75.912000pt;}
.x4{left:78.568000pt;}
.x1b{left:87.069333pt;}
.x1{left:100.610667pt;}
.x3{left:125.442667pt;}
.xf{left:131.942860pt;}
.x1a{left:144.234667pt;}
.x2{left:153.850667pt;}
.x6{left:180.825333pt;}
.x1c{left:182.453333pt;}
.x12{left:189.012787pt;}
.x11{left:194.085669pt;}
.x10{left:216.689059pt;}
.x14{left:262.034550pt;}
.x15{left:268.448311pt;}
.x19{left:408.000000pt;}
.xa{left:415.970667pt;}
.x1e{left:421.284000pt;}
.x9{left:429.253333pt;}
.xb{left:432.905916pt;}
.x1f{left:440.316000pt;}
.x17{left:442.666667pt;}
.x16{left:502.108000pt;}
.x8{left:527.166667pt;}
.x20{left:535.066667pt;}
.x1d{left:546.149333pt;}
}




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