
    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_919218cb2a11e71ba8ec6cf9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_324be316a6ac6b136296d8e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_baae7cc9229e3deba6b7b6dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_7c87959541c1fe7e33503a7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8de1aca943c5611f65f06fcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_f3ed15d4fb801864022b1677.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912109;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_ae292c272864ae09c5691155.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912109;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_5d241b60c11df7873e36e909.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_c1febfd923b90b084dd23922.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e588ec0e15738afa7e012f14.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.731445;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_a76bc0430499563f9ad11cc8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_3425ec2d1f544ad8c643d987.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.024902;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_a7322fcd466ebbbf050d0ef1.woff2')format("woff");}.fff{font-family:fff;line-height:0.953613;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_a4fff9cffa62409d427bdd67.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.877930;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:ff11;src:url('chunks/assets/font_fb915b7a747f881155b37449.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.769043;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:ff12;src:url('chunks/assets/font_9dd58a793825c573041fa782.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919434;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:ff13;src:url('chunks/assets/font_1a005a5e6099570cfa1456b1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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:ff14;src:url('chunks/assets/font_e78e26ebf66bf20202540be5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.673340;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-30.240000px;}
.v5{vertical-align:-15.840000px;}
.v3{vertical-align:-9.221760px;}
.v6{vertical-align:-6.702000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v1{vertical-align:30.240000px;}
.ls36{letter-spacing:-0.993600px;}
.ls2d{letter-spacing:-0.927360px;}
.ls2c{letter-spacing:-0.861120px;}
.ls23{letter-spacing:-0.794880px;}
.ls27{letter-spacing:-0.728640px;}
.ls24{letter-spacing:-0.662400px;}
.ls3e{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.596160px;}
.ls2e{letter-spacing:-0.529920px;}
.ls3c{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.463680px;}
.ls2b{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.264960px;}
.ls1b{letter-spacing:-0.239040px;}
.ls14{letter-spacing:-0.198720px;}
.ls3d{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.126252px;}
.ls31{letter-spacing:-0.119520px;}
.lsc{letter-spacing:-0.114228px;}
.ls13{letter-spacing:-0.084240px;}
.lsf{letter-spacing:-0.081000px;}
.ls5{letter-spacing:-0.078156px;}
.ls16{letter-spacing:-0.066240px;}
.lsd{letter-spacing:-0.066132px;}
.lse{letter-spacing:-0.064800px;}
.ls25{letter-spacing:-0.059760px;}
.ls7{letter-spacing:-0.036072px;}
.ls6{letter-spacing:-0.018036px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024048px;}
.ls26{letter-spacing:0.059760px;}
.ls15{letter-spacing:0.066240px;}
.ls3b{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.074880px;}
.ls2{letter-spacing:0.078156px;}
.ls3{letter-spacing:0.090180px;}
.ls8{letter-spacing:0.096192px;}
.lsa{letter-spacing:0.102204px;}
.ls4{letter-spacing:0.108216px;}
.ls29{letter-spacing:0.118080px;}
.ls10{letter-spacing:0.132480px;}
.ls2a{letter-spacing:0.141120px;}
.ls1{letter-spacing:0.162324px;}
.ls12{letter-spacing:0.179280px;}
.ls1f{letter-spacing:0.198720px;}
.ls39{letter-spacing:0.216000px;}
.ls2f{letter-spacing:0.259200px;}
.ls1e{letter-spacing:0.264960px;}
.ls3a{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.331200px;}
.ls32{letter-spacing:0.358560px;}
.ls34{letter-spacing:0.397440px;}
.ls38{letter-spacing:0.529920px;}
.ls35{letter-spacing:0.596160px;}
.ls1c{letter-spacing:0.776880px;}
.ls33{letter-spacing:2.813760px;}
.ls1d{letter-spacing:148.178880px;}
.ls28{letter-spacing:201.038400px;}
.ls11{letter-spacing:848.998080px;}
.ls37{letter-spacing:892.981440px;}
.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;}
}
.ws4f{word-spacing:-16.971840px;}
.ws4e{word-spacing:-16.673040px;}
.ws50{word-spacing:-16.493760px;}
.ws54{word-spacing:-16.488000px;}
.ws53{word-spacing:-16.272000px;}
.ws3e{word-spacing:-15.367680px;}
.ws11{word-spacing:-15.301440px;}
.ws3d{word-spacing:-15.235200px;}
.ws48{word-spacing:-15.168960px;}
.ws1{word-spacing:-15.108156px;}
.ws10{word-spacing:-15.102720px;}
.ws31{word-spacing:-15.036480px;}
.ws23{word-spacing:-14.970240px;}
.ws22{word-spacing:-14.904000px;}
.ws45{word-spacing:-14.837760px;}
.ws3c{word-spacing:-14.771520px;}
.wsf{word-spacing:-14.705280px;}
.wse{word-spacing:-14.639040px;}
.ws46{word-spacing:-14.572800px;}
.ws41{word-spacing:-14.506560px;}
.ws4b{word-spacing:-14.440320px;}
.ws40{word-spacing:-14.374080px;}
.ws24{word-spacing:-14.307840px;}
.ws13{word-spacing:-14.282640px;}
.ws38{word-spacing:-14.241600px;}
.ws2f{word-spacing:-14.175360px;}
.ws4d{word-spacing:-14.109120px;}
.ws30{word-spacing:-14.042880px;}
.ws47{word-spacing:-13.976640px;}
.ws3a{word-spacing:-13.864320px;}
.ws14{word-spacing:-13.804560px;}
.ws15{word-spacing:-13.505760px;}
.ws39{word-spacing:-13.386240px;}
.ws32{word-spacing:-9.437760px;}
.ws12{word-spacing:-8.786880px;}
.ws4c{word-spacing:-1.059840px;}
.ws49{word-spacing:-0.927360px;}
.ws27{word-spacing:-0.861120px;}
.ws26{word-spacing:-0.728640px;}
.ws52{word-spacing:-0.662400px;}
.ws43{word-spacing:-0.596160px;}
.ws19{word-spacing:-0.529920px;}
.ws58{word-spacing:-0.504000px;}
.ws42{word-spacing:-0.463680px;}
.ws16{word-spacing:-0.421200px;}
.ws36{word-spacing:-0.397440px;}
.ws1d{word-spacing:-0.331200px;}
.ws2a{word-spacing:-0.264960px;}
.ws34{word-spacing:-0.198720px;}
.ws1c{word-spacing:-0.132480px;}
.ws20{word-spacing:-0.119520px;}
.ws3b{word-spacing:-0.066240px;}
.ws2c{word-spacing:-0.059760px;}
.wsa{word-spacing:-0.018036px;}
.ws8{word-spacing:-0.012024px;}
.ws6{word-spacing:-0.006012px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.012024px;}
.ws1a{word-spacing:0.066240px;}
.ws3{word-spacing:0.108216px;}
.ws4{word-spacing:0.126252px;}
.ws1f{word-spacing:0.132480px;}
.ws57{word-spacing:0.144000px;}
.wsb{word-spacing:0.156312px;}
.ws2{word-spacing:0.168336px;}
.wsc{word-spacing:0.183600px;}
.ws18{word-spacing:0.198720px;}
.wsd{word-spacing:0.199800px;}
.ws9{word-spacing:0.204408px;}
.ws55{word-spacing:0.216000px;}
.ws7{word-spacing:0.216432px;}
.ws2b{word-spacing:0.239040px;}
.ws25{word-spacing:0.264960px;}
.ws17{word-spacing:0.331200px;}
.ws1b{word-spacing:0.397440px;}
.ws21{word-spacing:0.418320px;}
.ws5a{word-spacing:0.432000px;}
.ws29{word-spacing:0.463680px;}
.ws33{word-spacing:0.529920px;}
.ws1e{word-spacing:0.596160px;}
.ws59{word-spacing:0.648000px;}
.ws37{word-spacing:0.662400px;}
.ws35{word-spacing:0.728640px;}
.ws51{word-spacing:0.776880px;}
.ws56{word-spacing:0.792000px;}
.ws2d{word-spacing:0.794880px;}
.ws2e{word-spacing:0.861120px;}
.ws28{word-spacing:0.927360px;}
.ws3f{word-spacing:0.993600px;}
.ws44{word-spacing:1.059840px;}
.ws4a{word-spacing:1.126080px;}
._5{margin-left:-12.960000px;}
._8{margin-left:-11.957760px;}
._0{margin-left:-6.600000px;}
._1{margin-left:-4.440000px;}
._2{margin-left:-3.132000px;}
._3{margin-left:-1.752000px;}
._6{width:1.022040px;}
._9{width:2.114640px;}
._7{width:4.257720px;}
._4{width:5.760000px;}
._a{width:147.980160px;}
._c{width:162.221760px;}
._b{width:236.895840px;}
._d{width:818.587200px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(51,51,154);}
.fc3{color:rgb(99,96,97);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:43.920000px;}
.fs9{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.fs6{font-size:174.000000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:57.786480px;}
.y42{bottom:77.940000px;}
.y4{bottom:97.125005px;}
.y59{bottom:112.136760px;}
.y6f{bottom:112.138020px;}
.yf4{bottom:114.636960px;}
.ybb{bottom:119.700000px;}
.y58{bottom:130.318740px;}
.yba{bottom:131.040000px;}
.y6e{bottom:137.880000px;}
.yca{bottom:138.003120px;}
.yc7{bottom:138.026880px;}
.y1f{bottom:139.264499px;}
.yd7{bottom:139.626000px;}
.y6d{bottom:149.220000px;}
.y114{bottom:149.760000px;}
.yd2{bottom:152.774640px;}
.y8b{bottom:152.816400px;}
.yf3{bottom:154.960560px;}
.y14e{bottom:155.340000px;}
.y57{bottom:156.240000px;}
.y163{bottom:158.223600px;}
.ya1{bottom:166.627440px;}
.y56{bottom:167.580000px;}
.yc9{bottom:178.144560px;}
.yc6{bottom:178.168320px;}
.yb8{bottom:178.196400px;}
.yd6{bottom:179.767440px;}
.y74{bottom:179.805600px;}
.y113{bottom:179.833680px;}
.y14d{bottom:185.585760px;}
.y162{bottom:188.280000px;}
.y132{bottom:188.282880px;}
.yd1{bottom:193.098240px;}
.ye2{bottom:193.116960px;}
.y8a{bottom:193.136400px;}
.yf2{bottom:195.102000px;}
.y16{bottom:196.933500px;}
.ya0{bottom:206.951040px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y112{bottom:210.072240px;}
.y14c{bottom:215.824320px;}
.yc8{bottom:218.468160px;}
.yc5{bottom:218.491920px;}
.yb7{bottom:218.520000px;}
.y131{bottom:218.521440px;}
.y161{bottom:218.524320px;}
.yd5{bottom:220.091040px;}
.y73{bottom:220.129200px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.yd0{bottom:233.421840px;}
.ye1{bottom:233.440560px;}
.y89{bottom:233.456400px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.yf1{bottom:235.425600px;}
.y111{bottom:240.310800px;}
.y14b{bottom:246.062880px;}
.y9f{bottom:247.092480px;}
.y130{bottom:248.760000px;}
.y160{bottom:248.762880px;}
.yb6{bottom:258.791760px;}
.yc4{bottom:258.815520px;}
.yb9{bottom:258.843600px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.yd4{bottom:260.414640px;}
.y72{bottom:260.452800px;}
.y110{bottom:270.549360px;}
.ye6{bottom:271.940400px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y88{bottom:273.745440px;}
.ye0{bottom:273.764160px;}
.yf0{bottom:273.944160px;}
.y14a{bottom:276.301440px;}
.y15f{bottom:279.001440px;}
.y12f{bottom:279.002880px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y9e{bottom:287.416080px;}
.yb5{bottom:299.115360px;}
.yc3{bottom:299.139120px;}
.yd3{bottom:300.738240px;}
.y71{bottom:300.776400px;}
.y10f{bottom:300.787920px;}
.y149{bottom:306.540000px;}
.y15e{bottom:309.240000px;}
.y12e{bottom:309.241440px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y87{bottom:314.069040px;}
.ydf{bottom:314.087760px;}
.y55{bottom:322.336800px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y9d{bottom:327.739680px;}
.y10e{bottom:331.026480px;}
.y148{bottom:336.604320px;}
.yb4{bottom:339.438960px;}
.yc2{bottom:339.462720px;}
.y12d{bottom:339.480000px;}
.y12c{bottom:339.486630px;}
.y15d{bottom:339.489360px;}
.y6c{bottom:341.061840px;}
.y70{bottom:341.100000px;}
.yef{bottom:341.442720px;}
.yd{bottom:348.133500px;}
.y86{bottom:354.210480px;}
.yde{bottom:354.229200px;}
.y10d{bottom:361.082880px;}
.y54{bottom:362.842560px;}
.y147{bottom:366.842880px;}
.y9c{bottom:368.063280px;}
.y12b{bottom:369.725190px;}
.y15c{bottom:369.727920px;}
.yb3{bottom:379.580400px;}
.yc1{bottom:379.604160px;}
.y6b{bottom:381.203280px;}
.yee{bottom:381.766320px;}
.yc{bottom:386.785499px;}
.y10c{bottom:391.321440px;}
.y85{bottom:394.534080px;}
.ydd{bottom:394.552800px;}
.y146{bottom:397.081440px;}
.y12a{bottom:399.781590px;}
.y15b{bottom:399.784320px;}
.y53{bottom:403.166160px;}
.yb{bottom:408.044999px;}
.y9b{bottom:408.386880px;}
.yb2{bottom:419.904000px;}
.yc0{bottom:419.927760px;}
.y6a{bottom:421.526880px;}
.y10b{bottom:421.565910px;}
.yed{bottom:422.089920px;}
.y145{bottom:427.320000px;}
.y129{bottom:430.022880px;}
.y84{bottom:434.857680px;}
.ydc{bottom:434.876400px;}
.y52{bottom:443.489760px;}
.y9a{bottom:448.528320px;}
.y10a{bottom:451.804470px;}
.y144{bottom:457.562880px;}
.yb1{bottom:460.227600px;}
.ybf{bottom:460.251360px;}
.y128{bottom:460.261440px;}
.y69{bottom:461.850480px;}
.yec{bottom:462.231360px;}
.y83{bottom:475.181280px;}
.ydb{bottom:475.200000px;}
.y109{bottom:482.043030px;}
.y51{bottom:483.813360px;}
.y143{bottom:487.801440px;}
.y99{bottom:488.851920px;}
.y127{bottom:490.500000px;}
.yb0{bottom:500.551200px;}
.ybe{bottom:500.574960px;}
.y68{bottom:502.174080px;}
.yeb{bottom:502.554960px;}
.y108{bottom:512.281590px;}
.ye4{bottom:515.490480px;}
.y82{bottom:515.504880px;}
.y142{bottom:518.045040px;}
.y126{bottom:520.745040px;}
.ya{bottom:520.864502px;}
.y50{bottom:523.954800px;}
.y98{bottom:529.175520px;}
.y9{bottom:538.864499px;}
.yaf{bottom:540.874800px;}
.ybd{bottom:540.898560px;}
.y67{bottom:542.497680px;}
.y107{bottom:542.520150px;}
.yea{bottom:542.878560px;}
.y141{bottom:548.101440px;}
.y125{bottom:550.983600px;}
.ye3{bottom:555.631920px;}
.y81{bottom:555.646320px;}
.y8{bottom:556.864499px;}
.y4f{bottom:564.278400px;}
.y97{bottom:569.499120px;}
.y106{bottom:572.587350px;}
.y140{bottom:578.340000px;}
.yae{bottom:581.016240px;}
.ybc{bottom:581.040000px;}
.y124{bottom:581.043030px;}
.y167{bottom:581.044320px;}
.y66{bottom:582.639120px;}
.ye9{bottom:583.202160px;}
.y80{bottom:595.969920px;}
.y105{bottom:602.825910px;}
.y4e{bottom:604.602000px;}
.y13f{bottom:608.588070px;}
.y96{bottom:609.822720px;}
.y15a{bottom:611.280150px;}
.y123{bottom:611.281590px;}
.y166{bottom:611.282880px;}
.yf7{bottom:621.157680px;}
.yad{bottom:621.339840px;}
.y65{bottom:622.962720px;}
.ye8{bottom:623.525760px;}
.y104{bottom:633.064470px;}
.y7f{bottom:636.293520px;}
.y13e{bottom:638.826630px;}
.y159{bottom:641.520150px;}
.y122{bottom:641.521440px;}
.y4d{bottom:644.925600px;}
.y7{bottom:645.510000px;}
.y41{bottom:647.589450px;}
.y95{bottom:649.964160px;}
.yac{bottom:661.663440px;}
.y40{bottom:663.154950px;}
.y64{bottom:663.286320px;}
.y103{bottom:663.303030px;}
.ye7{bottom:663.667200px;}
.y6{bottom:666.771000px;}
.y13d{bottom:669.065190px;}
.y121{bottom:671.760000px;}
.y158{bottom:671.769360px;}
.ye5{bottom:674.812080px;}
.y7e{bottom:676.617120px;}
.y3f{bottom:678.639450px;}
.y4c{bottom:685.249200px;}
.y94{bottom:690.287760px;}
.y102{bottom:693.541590px;}
.y3e{bottom:694.445190px;}
.y13c{bottom:699.303750px;}
.yab{bottom:701.987040px;}
.y120{bottom:702.001440px;}
.y165{bottom:702.002880px;}
.y157{bottom:702.007920px;}
.y63{bottom:703.609920px;}
.y3d{bottom:711.729690px;}
.yf6{bottom:713.878560px;}
.y7d{bottom:715.135680px;}
.ycf{bottom:716.758560px;}
.y101{bottom:723.780000px;}
.y4b{bottom:725.390640px;}
.y5{bottom:726.298500px;}
.y3c{bottom:728.924010px;}
.y13b{bottom:729.360150px;}
.y93{bottom:730.611360px;}
.y11f{bottom:732.241440px;}
.y156{bottom:732.246480px;}
.yaa{bottom:742.310640px;}
.y62{bottom:743.751360px;}
.ya9{bottom:744.660720px;}
.y3b{bottom:746.208510px;}
.yf5{bottom:749.880000px;}
.y3{bottom:752.599495px;}
.y100{bottom:753.869520px;}
.yce{bottom:757.082160px;}
.y13a{bottom:760.862160px;}
.y155{bottom:762.485040px;}
.y11e{bottom:762.494400px;}
.y3a{bottom:763.493010px;}
.ya8{bottom:763.920000px;}
.y4a{bottom:765.714240px;}
.y92{bottom:770.934960px;}
.y39{bottom:780.687330px;}
.y7c{bottom:782.452080px;}
.y61{bottom:784.074960px;}
.yff{bottom:784.108080px;}
.y139{bottom:792.541440px;}
.y11d{bottom:792.550800px;}
.ycd{bottom:797.405760px;}
.y38{bottom:797.971830px;}
.y49{bottom:806.037840px;}
.ya3{bottom:809.212500px;}
.yfe{bottom:814.346640px;}
.y37{bottom:815.256330px;}
.y91{bottom:822.767760px;}
.y7b{bottom:822.775680px;}
.y138{bottom:822.780000px;}
.y11c{bottom:822.789360px;}
.y60{bottom:824.398560px;}
.y36{bottom:832.450650px;}
.ycc{bottom:837.729360px;}
.ya4{bottom:840.720750px;}
.yfd{bottom:844.585200px;}
.y48{bottom:846.361440px;}
.y35{bottom:849.735150px;}
.y137{bottom:853.020000px;}
.y154{bottom:853.022880px;}
.y11b{bottom:853.027920px;}
.y22{bottom:854.903550px;}
.y90{bottom:863.091360px;}
.y7a{bottom:863.099280px;}
.y5f{bottom:864.722160px;}
.y34{bottom:866.929470px;}
.yfc{bottom:874.823760px;}
.ycb{bottom:876.247920px;}
.yda{bottom:878.052960px;}
.y2{bottom:879.369000px;}
.y136{bottom:883.261440px;}
.y11a{bottom:883.266480px;}
.y33{bottom:884.213970px;}
.y46{bottom:884.880000px;}
.y21{bottom:896.767950px;}
.y32{bottom:901.408290px;}
.y8f{bottom:903.414960px;}
.y79{bottom:903.422880px;}
.ya7{bottom:903.559500px;}
.y5e{bottom:905.045760px;}
.yfb{bottom:905.062320px;}
.y135{bottom:913.500000px;}
.y119{bottom:913.505040px;}
.y164{bottom:913.506480px;}
.yd9{bottom:918.194400px;}
.y31{bottom:918.692790px;}
.ya2{bottom:931.581150px;}
.yfa{bottom:935.300880px;}
.ya6{bottom:935.550000px;}
.y30{bottom:935.977290px;}
.y8e{bottom:943.738560px;}
.y118{bottom:943.743600px;}
.y134{bottom:943.745040px;}
.y78{bottom:943.746480px;}
.y5d{bottom:945.187200px;}
.y47{bottom:952.196400px;}
.y45{bottom:952.200000px;}
.y2f{bottom:953.171610px;}
.yd8{bottom:956.712960px;}
.yf9{bottom:965.357280px;}
.y1{bottom:966.726000px;}
.y2e{bottom:970.456110px;}
.y153{bottom:973.800000px;}
.y133{bottom:973.801440px;}
.y117{bottom:973.819440px;}
.y23{bottom:975.293250px;}
.y8d{bottom:983.872800px;}
.y77{bottom:983.887920px;}
.y5c{bottom:985.510800px;}
.y2d{bottom:987.740610px;}
.ya5{bottom:991.532550px;}
.yf8{bottom:995.595840px;}
.y151{bottom:1004.040000px;}
.y116{bottom:1004.058000px;}
.y2c{bottom:1004.934930px;}
.y2b{bottom:1022.219430px;}
.y8c{bottom:1024.196400px;}
.y44{bottom:1024.200000px;}
.y76{bottom:1024.211520px;}
.y5b{bottom:1025.834400px;}
.y152{bottom:1034.278560px;}
.y150{bottom:1034.280000px;}
.y115{bottom:1034.296560px;}
.y2a{bottom:1039.503930px;}
.y29{bottom:1056.698310px;}
.y5a{bottom:1064.352960px;}
.y14f{bottom:1064.520000px;}
.y75{bottom:1064.535120px;}
.y28{bottom:1073.982810px;}
.y27{bottom:1091.177130px;}
.y26{bottom:1108.461630px;}
.y25{bottom:1125.746130px;}
.y24{bottom:1142.940450px;}
.y20{bottom:1168.334700px;}
.h8{height:32.130000px;}
.h18{height:32.918906px;}
.h9{height:34.188000px;}
.h10{height:39.313477px;}
.h1f{height:40.851562px;}
.hf{height:41.860898px;}
.h17{height:46.348594px;}
.h21{height:46.445625px;}
.h3{height:48.195000px;}
.h16{height:48.677344px;}
.h7{height:48.840000px;}
.hd{height:49.992188px;}
.h19{height:50.597578px;}
.h1a{height:50.610538px;}
.h6{height:51.282000px;}
.h13{height:56.084062px;}
.h25{height:56.084662px;}
.h1d{height:56.098462px;}
.h1e{height:56.112862px;}
.h1c{height:56.222303px;}
.h11{height:56.320312px;}
.h2{height:58.608000px;}
.h15{height:59.459766px;}
.h28{height:60.952897px;}
.h14{height:61.904883px;}
.h26{height:62.322052px;}
.h27{height:62.327813px;}
.h23{height:62.408453px;}
.h20{height:65.222063px;}
.h24{height:65.652064px;}
.h1b{height:65.749984px;}
.h22{height:65.790304px;}
.h5{height:83.028000px;}
.hb{height:83.320312px;}
.h4{height:119.055004px;}
.hc{height:120.814453px;}
.he{height:212.256000px;}
.h12{height:1188.000000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w6{width:891.000000px;}
.w5{width:892.500000px;}
.w4{width:892.830000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:57.826800px;}
.x7{left:60.590550px;}
.x6{left:63.247350px;}
.x5{left:65.196750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:114.120000px;}
.xa{left:168.126480px;}
.x4{left:203.484001px;}
.x17{left:216.162720px;}
.x15{left:239.742000px;}
.x19{left:307.616400px;}
.x3{left:454.959000px;}
.x16{left:473.940000px;}
.x9{left:478.080000px;}
.xe{left:509.970000px;}
.x11{left:526.050900px;}
.x12{left:527.173950px;}
.x14{left:531.000000px;}
.x10{left:581.176200px;}
.x1a{left:603.534240px;}
.xf{left:608.152500px;}
.x18{left:679.140000px;}
.xc{left:688.487040px;}
.xd{left:708.660000px;}
.x13{left:721.800450px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v5{vertical-align:-14.080000pt;}
.v3{vertical-align:-8.197120pt;}
.v6{vertical-align:-5.957333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls36{letter-spacing:-0.883200pt;}
.ls2d{letter-spacing:-0.824320pt;}
.ls2c{letter-spacing:-0.765440pt;}
.ls23{letter-spacing:-0.706560pt;}
.ls27{letter-spacing:-0.647680pt;}
.ls24{letter-spacing:-0.588800pt;}
.ls3e{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.529920pt;}
.ls2e{letter-spacing:-0.471040pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.412160pt;}
.ls2b{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.235520pt;}
.ls1b{letter-spacing:-0.212480pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls3d{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.112224pt;}
.ls31{letter-spacing:-0.106240pt;}
.lsc{letter-spacing:-0.101536pt;}
.ls13{letter-spacing:-0.074880pt;}
.lsf{letter-spacing:-0.072000pt;}
.ls5{letter-spacing:-0.069472pt;}
.ls16{letter-spacing:-0.058880pt;}
.lsd{letter-spacing:-0.058784pt;}
.lse{letter-spacing:-0.057600pt;}
.ls25{letter-spacing:-0.053120pt;}
.ls7{letter-spacing:-0.032064pt;}
.ls6{letter-spacing:-0.016032pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021376pt;}
.ls26{letter-spacing:0.053120pt;}
.ls15{letter-spacing:0.058880pt;}
.ls3b{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.066560pt;}
.ls2{letter-spacing:0.069472pt;}
.ls3{letter-spacing:0.080160pt;}
.ls8{letter-spacing:0.085504pt;}
.lsa{letter-spacing:0.090848pt;}
.ls4{letter-spacing:0.096192pt;}
.ls29{letter-spacing:0.104960pt;}
.ls10{letter-spacing:0.117760pt;}
.ls2a{letter-spacing:0.125440pt;}
.ls1{letter-spacing:0.144288pt;}
.ls12{letter-spacing:0.159360pt;}
.ls1f{letter-spacing:0.176640pt;}
.ls39{letter-spacing:0.192000pt;}
.ls2f{letter-spacing:0.230400pt;}
.ls1e{letter-spacing:0.235520pt;}
.ls3a{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.294400pt;}
.ls32{letter-spacing:0.318720pt;}
.ls34{letter-spacing:0.353280pt;}
.ls38{letter-spacing:0.471040pt;}
.ls35{letter-spacing:0.529920pt;}
.ls1c{letter-spacing:0.690560pt;}
.ls33{letter-spacing:2.501120pt;}
.ls1d{letter-spacing:131.714560pt;}
.ls28{letter-spacing:178.700800pt;}
.ls11{letter-spacing:754.664960pt;}
.ls37{letter-spacing:793.761280pt;}
.ws4f{word-spacing:-15.086080pt;}
.ws4e{word-spacing:-14.820480pt;}
.ws50{word-spacing:-14.661120pt;}
.ws54{word-spacing:-14.656000pt;}
.ws53{word-spacing:-14.464000pt;}
.ws3e{word-spacing:-13.660160pt;}
.ws11{word-spacing:-13.601280pt;}
.ws3d{word-spacing:-13.542400pt;}
.ws48{word-spacing:-13.483520pt;}
.ws1{word-spacing:-13.429472pt;}
.ws10{word-spacing:-13.424640pt;}
.ws31{word-spacing:-13.365760pt;}
.ws23{word-spacing:-13.306880pt;}
.ws22{word-spacing:-13.248000pt;}
.ws45{word-spacing:-13.189120pt;}
.ws3c{word-spacing:-13.130240pt;}
.wsf{word-spacing:-13.071360pt;}
.wse{word-spacing:-13.012480pt;}
.ws46{word-spacing:-12.953600pt;}
.ws41{word-spacing:-12.894720pt;}
.ws4b{word-spacing:-12.835840pt;}
.ws40{word-spacing:-12.776960pt;}
.ws24{word-spacing:-12.718080pt;}
.ws13{word-spacing:-12.695680pt;}
.ws38{word-spacing:-12.659200pt;}
.ws2f{word-spacing:-12.600320pt;}
.ws4d{word-spacing:-12.541440pt;}
.ws30{word-spacing:-12.482560pt;}
.ws47{word-spacing:-12.423680pt;}
.ws3a{word-spacing:-12.323840pt;}
.ws14{word-spacing:-12.270720pt;}
.ws15{word-spacing:-12.005120pt;}
.ws39{word-spacing:-11.898880pt;}
.ws32{word-spacing:-8.389120pt;}
.ws12{word-spacing:-7.810560pt;}
.ws4c{word-spacing:-0.942080pt;}
.ws49{word-spacing:-0.824320pt;}
.ws27{word-spacing:-0.765440pt;}
.ws26{word-spacing:-0.647680pt;}
.ws52{word-spacing:-0.588800pt;}
.ws43{word-spacing:-0.529920pt;}
.ws19{word-spacing:-0.471040pt;}
.ws58{word-spacing:-0.448000pt;}
.ws42{word-spacing:-0.412160pt;}
.ws16{word-spacing:-0.374400pt;}
.ws36{word-spacing:-0.353280pt;}
.ws1d{word-spacing:-0.294400pt;}
.ws2a{word-spacing:-0.235520pt;}
.ws34{word-spacing:-0.176640pt;}
.ws1c{word-spacing:-0.117760pt;}
.ws20{word-spacing:-0.106240pt;}
.ws3b{word-spacing:-0.058880pt;}
.ws2c{word-spacing:-0.053120pt;}
.wsa{word-spacing:-0.016032pt;}
.ws8{word-spacing:-0.010688pt;}
.ws6{word-spacing:-0.005344pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.010688pt;}
.ws1a{word-spacing:0.058880pt;}
.ws3{word-spacing:0.096192pt;}
.ws4{word-spacing:0.112224pt;}
.ws1f{word-spacing:0.117760pt;}
.ws57{word-spacing:0.128000pt;}
.wsb{word-spacing:0.138944pt;}
.ws2{word-spacing:0.149632pt;}
.wsc{word-spacing:0.163200pt;}
.ws18{word-spacing:0.176640pt;}
.wsd{word-spacing:0.177600pt;}
.ws9{word-spacing:0.181696pt;}
.ws55{word-spacing:0.192000pt;}
.ws7{word-spacing:0.192384pt;}
.ws2b{word-spacing:0.212480pt;}
.ws25{word-spacing:0.235520pt;}
.ws17{word-spacing:0.294400pt;}
.ws1b{word-spacing:0.353280pt;}
.ws21{word-spacing:0.371840pt;}
.ws5a{word-spacing:0.384000pt;}
.ws29{word-spacing:0.412160pt;}
.ws33{word-spacing:0.471040pt;}
.ws1e{word-spacing:0.529920pt;}
.ws59{word-spacing:0.576000pt;}
.ws37{word-spacing:0.588800pt;}
.ws35{word-spacing:0.647680pt;}
.ws51{word-spacing:0.690560pt;}
.ws56{word-spacing:0.704000pt;}
.ws2d{word-spacing:0.706560pt;}
.ws2e{word-spacing:0.765440pt;}
.ws28{word-spacing:0.824320pt;}
.ws3f{word-spacing:0.883200pt;}
.ws44{word-spacing:0.942080pt;}
.ws4a{word-spacing:1.000960pt;}
._5{margin-left:-11.520000pt;}
._8{margin-left:-10.629120pt;}
._0{margin-left:-5.866667pt;}
._1{margin-left:-3.946667pt;}
._2{margin-left:-2.784000pt;}
._3{margin-left:-1.557333pt;}
._6{width:0.908480pt;}
._9{width:1.879680pt;}
._7{width:3.784640pt;}
._4{width:5.120000pt;}
._a{width:131.537920pt;}
._c{width:144.197120pt;}
._b{width:210.574080pt;}
._d{width:727.633067pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:39.040000pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.fs6{font-size:154.666667pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:51.365760pt;}
.y42{bottom:69.280000pt;}
.y4{bottom:86.333337pt;}
.y59{bottom:99.677120pt;}
.y6f{bottom:99.678240pt;}
.yf4{bottom:101.899520pt;}
.ybb{bottom:106.400000pt;}
.y58{bottom:115.838880pt;}
.yba{bottom:116.480000pt;}
.y6e{bottom:122.560000pt;}
.yca{bottom:122.669440pt;}
.yc7{bottom:122.690560pt;}
.y1f{bottom:123.790666pt;}
.yd7{bottom:124.112000pt;}
.y6d{bottom:132.640000pt;}
.y114{bottom:133.120000pt;}
.yd2{bottom:135.799680pt;}
.y8b{bottom:135.836800pt;}
.yf3{bottom:137.742720pt;}
.y14e{bottom:138.080000pt;}
.y57{bottom:138.880000pt;}
.y163{bottom:140.643200pt;}
.ya1{bottom:148.113280pt;}
.y56{bottom:148.960000pt;}
.yc9{bottom:158.350720pt;}
.yc6{bottom:158.371840pt;}
.yb8{bottom:158.396800pt;}
.yd6{bottom:159.793280pt;}
.y74{bottom:159.827200pt;}
.y113{bottom:159.852160pt;}
.y14d{bottom:164.965120pt;}
.y162{bottom:167.360000pt;}
.y132{bottom:167.362560pt;}
.yd1{bottom:171.642880pt;}
.ye2{bottom:171.659520pt;}
.y8a{bottom:171.676800pt;}
.yf2{bottom:173.424000pt;}
.y16{bottom:175.052000pt;}
.ya0{bottom:183.956480pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y112{bottom:186.730880pt;}
.y14c{bottom:191.843840pt;}
.yc8{bottom:194.193920pt;}
.yc5{bottom:194.215040pt;}
.yb7{bottom:194.240000pt;}
.y131{bottom:194.241280pt;}
.y161{bottom:194.243840pt;}
.yd5{bottom:195.636480pt;}
.y73{bottom:195.670400pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.yd0{bottom:207.486080pt;}
.ye1{bottom:207.502720pt;}
.y89{bottom:207.516800pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.yf1{bottom:209.267200pt;}
.y111{bottom:213.609600pt;}
.y14b{bottom:218.722560pt;}
.y9f{bottom:219.637760pt;}
.y130{bottom:221.120000pt;}
.y160{bottom:221.122560pt;}
.yb6{bottom:230.037120pt;}
.yc4{bottom:230.058240pt;}
.yb9{bottom:230.083200pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.yd4{bottom:231.479680pt;}
.y72{bottom:231.513600pt;}
.y110{bottom:240.488320pt;}
.ye6{bottom:241.724800pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y88{bottom:243.329280pt;}
.ye0{bottom:243.345920pt;}
.yf0{bottom:243.505920pt;}
.y14a{bottom:245.601280pt;}
.y15f{bottom:248.001280pt;}
.y12f{bottom:248.002560pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y9e{bottom:255.480960pt;}
.yb5{bottom:265.880320pt;}
.yc3{bottom:265.901440pt;}
.yd3{bottom:267.322880pt;}
.y71{bottom:267.356800pt;}
.y10f{bottom:267.367040pt;}
.y149{bottom:272.480000pt;}
.y15e{bottom:274.880000pt;}
.y12e{bottom:274.881280pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y87{bottom:279.172480pt;}
.ydf{bottom:279.189120pt;}
.y55{bottom:286.521600pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y9d{bottom:291.324160pt;}
.y10e{bottom:294.245760pt;}
.y148{bottom:299.203840pt;}
.yb4{bottom:301.723520pt;}
.yc2{bottom:301.744640pt;}
.y12d{bottom:301.760000pt;}
.y12c{bottom:301.765893pt;}
.y15d{bottom:301.768320pt;}
.y6c{bottom:303.166080pt;}
.y70{bottom:303.200000pt;}
.yef{bottom:303.504640pt;}
.yd{bottom:309.452000pt;}
.y86{bottom:314.853760pt;}
.yde{bottom:314.870400pt;}
.y10d{bottom:320.962560pt;}
.y54{bottom:322.526720pt;}
.y147{bottom:326.082560pt;}
.y9c{bottom:327.167360pt;}
.y12b{bottom:328.644613pt;}
.y15c{bottom:328.647040pt;}
.yb3{bottom:337.404800pt;}
.yc1{bottom:337.425920pt;}
.y6b{bottom:338.847360pt;}
.yee{bottom:339.347840pt;}
.yc{bottom:343.809333pt;}
.y10c{bottom:347.841280pt;}
.y85{bottom:350.696960pt;}
.ydd{bottom:350.713600pt;}
.y146{bottom:352.961280pt;}
.y12a{bottom:355.361413pt;}
.y15b{bottom:355.363840pt;}
.y53{bottom:358.369920pt;}
.yb{bottom:362.706666pt;}
.y9b{bottom:363.010560pt;}
.yb2{bottom:373.248000pt;}
.yc0{bottom:373.269120pt;}
.y6a{bottom:374.690560pt;}
.y10b{bottom:374.725253pt;}
.yed{bottom:375.191040pt;}
.y145{bottom:379.840000pt;}
.y129{bottom:382.242560pt;}
.y84{bottom:386.540160pt;}
.ydc{bottom:386.556800pt;}
.y52{bottom:394.213120pt;}
.y9a{bottom:398.691840pt;}
.y10a{bottom:401.603973pt;}
.y144{bottom:406.722560pt;}
.yb1{bottom:409.091200pt;}
.ybf{bottom:409.112320pt;}
.y128{bottom:409.121280pt;}
.y69{bottom:410.533760pt;}
.yec{bottom:410.872320pt;}
.y83{bottom:422.383360pt;}
.ydb{bottom:422.400000pt;}
.y109{bottom:428.482693pt;}
.y51{bottom:430.056320pt;}
.y143{bottom:433.601280pt;}
.y99{bottom:434.535040pt;}
.y127{bottom:436.000000pt;}
.yb0{bottom:444.934400pt;}
.ybe{bottom:444.955520pt;}
.y68{bottom:446.376960pt;}
.yeb{bottom:446.715520pt;}
.y108{bottom:455.361413pt;}
.ye4{bottom:458.213760pt;}
.y82{bottom:458.226560pt;}
.y142{bottom:460.484480pt;}
.y126{bottom:462.884480pt;}
.ya{bottom:462.990669pt;}
.y50{bottom:465.737600pt;}
.y98{bottom:470.378240pt;}
.y9{bottom:478.990666pt;}
.yaf{bottom:480.777600pt;}
.ybd{bottom:480.798720pt;}
.y67{bottom:482.220160pt;}
.y107{bottom:482.240133pt;}
.yea{bottom:482.558720pt;}
.y141{bottom:487.201280pt;}
.y125{bottom:489.763200pt;}
.ye3{bottom:493.895040pt;}
.y81{bottom:493.907840pt;}
.y8{bottom:494.990666pt;}
.y4f{bottom:501.580800pt;}
.y97{bottom:506.221440pt;}
.y106{bottom:508.966533pt;}
.y140{bottom:514.080000pt;}
.yae{bottom:516.458880pt;}
.ybc{bottom:516.480000pt;}
.y124{bottom:516.482693pt;}
.y167{bottom:516.483840pt;}
.y66{bottom:517.901440pt;}
.ye9{bottom:518.401920pt;}
.y80{bottom:529.751040pt;}
.y105{bottom:535.845253pt;}
.y4e{bottom:537.424000pt;}
.y13f{bottom:540.967173pt;}
.y96{bottom:542.064640pt;}
.y15a{bottom:543.360133pt;}
.y123{bottom:543.361413pt;}
.y166{bottom:543.362560pt;}
.yf7{bottom:552.140160pt;}
.yad{bottom:552.302080pt;}
.y65{bottom:553.744640pt;}
.ye8{bottom:554.245120pt;}
.y104{bottom:562.723973pt;}
.y7f{bottom:565.594240pt;}
.y13e{bottom:567.845893pt;}
.y159{bottom:570.240133pt;}
.y122{bottom:570.241280pt;}
.y4d{bottom:573.267200pt;}
.y7{bottom:573.786667pt;}
.y41{bottom:575.635067pt;}
.y95{bottom:577.745920pt;}
.yac{bottom:588.145280pt;}
.y40{bottom:589.471067pt;}
.y64{bottom:589.587840pt;}
.y103{bottom:589.602693pt;}
.ye7{bottom:589.926400pt;}
.y6{bottom:592.685334pt;}
.y13d{bottom:594.724613pt;}
.y121{bottom:597.120000pt;}
.y158{bottom:597.128320pt;}
.ye5{bottom:599.832960pt;}
.y7e{bottom:601.437440pt;}
.y3f{bottom:603.235067pt;}
.y4c{bottom:609.110400pt;}
.y94{bottom:613.589120pt;}
.y102{bottom:616.481413pt;}
.y3e{bottom:617.284613pt;}
.y13c{bottom:621.603333pt;}
.yab{bottom:623.988480pt;}
.y120{bottom:624.001280pt;}
.y165{bottom:624.002560pt;}
.y157{bottom:624.007040pt;}
.y63{bottom:625.431040pt;}
.y3d{bottom:632.648613pt;}
.yf6{bottom:634.558720pt;}
.y7d{bottom:635.676160pt;}
.ycf{bottom:637.118720pt;}
.y101{bottom:643.360000pt;}
.y4b{bottom:644.791680pt;}
.y5{bottom:645.598667pt;}
.y3c{bottom:647.932453pt;}
.y13b{bottom:648.320133pt;}
.y93{bottom:649.432320pt;}
.y11f{bottom:650.881280pt;}
.y156{bottom:650.885760pt;}
.yaa{bottom:659.831680pt;}
.y62{bottom:661.112320pt;}
.ya9{bottom:661.920640pt;}
.y3b{bottom:663.296453pt;}
.yf5{bottom:666.560000pt;}
.y3{bottom:668.977329pt;}
.y100{bottom:670.106240pt;}
.yce{bottom:672.961920pt;}
.y13a{bottom:676.321920pt;}
.y155{bottom:677.764480pt;}
.y11e{bottom:677.772800pt;}
.y3a{bottom:678.660453pt;}
.ya8{bottom:679.040000pt;}
.y4a{bottom:680.634880pt;}
.y92{bottom:685.275520pt;}
.y39{bottom:693.944293pt;}
.y7c{bottom:695.512960pt;}
.y61{bottom:696.955520pt;}
.yff{bottom:696.984960pt;}
.y139{bottom:704.481280pt;}
.y11d{bottom:704.489600pt;}
.ycd{bottom:708.805120pt;}
.y38{bottom:709.308293pt;}
.y49{bottom:716.478080pt;}
.ya3{bottom:719.300000pt;}
.yfe{bottom:723.863680pt;}
.y37{bottom:724.672293pt;}
.y91{bottom:731.349120pt;}
.y7b{bottom:731.356160pt;}
.y138{bottom:731.360000pt;}
.y11c{bottom:731.368320pt;}
.y60{bottom:732.798720pt;}
.y36{bottom:739.956133pt;}
.ycc{bottom:744.648320pt;}
.ya4{bottom:747.307333pt;}
.yfd{bottom:750.742400pt;}
.y48{bottom:752.321280pt;}
.y35{bottom:755.320133pt;}
.y137{bottom:758.240000pt;}
.y154{bottom:758.242560pt;}
.y11b{bottom:758.247040pt;}
.y22{bottom:759.914267pt;}
.y90{bottom:767.192320pt;}
.y7a{bottom:767.199360pt;}
.y5f{bottom:768.641920pt;}
.y34{bottom:770.603973pt;}
.yfc{bottom:777.621120pt;}
.ycb{bottom:778.887040pt;}
.yda{bottom:780.491520pt;}
.y2{bottom:781.661334pt;}
.y136{bottom:785.121280pt;}
.y11a{bottom:785.125760pt;}
.y33{bottom:785.967973pt;}
.y46{bottom:786.560000pt;}
.y21{bottom:797.127067pt;}
.y32{bottom:801.251813pt;}
.y8f{bottom:803.035520pt;}
.y79{bottom:803.042560pt;}
.ya7{bottom:803.164000pt;}
.y5e{bottom:804.485120pt;}
.yfb{bottom:804.499840pt;}
.y135{bottom:812.000000pt;}
.y119{bottom:812.004480pt;}
.y164{bottom:812.005760pt;}
.yd9{bottom:816.172800pt;}
.y31{bottom:816.615813pt;}
.ya2{bottom:828.072133pt;}
.yfa{bottom:831.378560pt;}
.ya6{bottom:831.600000pt;}
.y30{bottom:831.979813pt;}
.y8e{bottom:838.878720pt;}
.y118{bottom:838.883200pt;}
.y134{bottom:838.884480pt;}
.y78{bottom:838.885760pt;}
.y5d{bottom:840.166400pt;}
.y47{bottom:846.396800pt;}
.y45{bottom:846.400000pt;}
.y2f{bottom:847.263653pt;}
.yd8{bottom:850.411520pt;}
.yf9{bottom:858.095360pt;}
.y1{bottom:859.312000pt;}
.y2e{bottom:862.627653pt;}
.y153{bottom:865.600000pt;}
.y133{bottom:865.601280pt;}
.y117{bottom:865.617280pt;}
.y23{bottom:866.927333pt;}
.y8d{bottom:874.553600pt;}
.y77{bottom:874.567040pt;}
.y5c{bottom:876.009600pt;}
.y2d{bottom:877.991653pt;}
.ya5{bottom:881.362267pt;}
.yf8{bottom:884.974080pt;}
.y151{bottom:892.480000pt;}
.y116{bottom:892.496000pt;}
.y2c{bottom:893.275493pt;}
.y2b{bottom:908.639493pt;}
.y8c{bottom:910.396800pt;}
.y44{bottom:910.400000pt;}
.y76{bottom:910.410240pt;}
.y5b{bottom:911.852800pt;}
.y152{bottom:919.358720pt;}
.y150{bottom:919.360000pt;}
.y115{bottom:919.374720pt;}
.y2a{bottom:924.003493pt;}
.y29{bottom:939.287387pt;}
.y5a{bottom:946.091520pt;}
.y14f{bottom:946.240000pt;}
.y75{bottom:946.253440pt;}
.y28{bottom:954.651387pt;}
.y27{bottom:969.935227pt;}
.y26{bottom:985.299227pt;}
.y25{bottom:1000.663227pt;}
.y24{bottom:1015.947067pt;}
.y20{bottom:1038.519733pt;}
.h8{height:28.560000pt;}
.h18{height:29.261250pt;}
.h9{height:30.389333pt;}
.h10{height:34.945312pt;}
.h1f{height:36.312500pt;}
.hf{height:37.209687pt;}
.h17{height:41.198750pt;}
.h21{height:41.285000pt;}
.h3{height:42.840000pt;}
.h16{height:43.268750pt;}
.h7{height:43.413333pt;}
.hd{height:44.437500pt;}
.h19{height:44.975625pt;}
.h1a{height:44.987145pt;}
.h6{height:45.584000pt;}
.h13{height:49.852500pt;}
.h25{height:49.853033pt;}
.h1d{height:49.865300pt;}
.h1e{height:49.878100pt;}
.h1c{height:49.975380pt;}
.h11{height:50.062500pt;}
.h2{height:52.096000pt;}
.h15{height:52.853125pt;}
.h28{height:54.180353pt;}
.h14{height:55.026562pt;}
.h26{height:55.397380pt;}
.h27{height:55.402500pt;}
.h23{height:55.474180pt;}
.h20{height:57.975167pt;}
.h24{height:58.357390pt;}
.h1b{height:58.444430pt;}
.h22{height:58.480270pt;}
.h5{height:73.802667pt;}
.hb{height:74.062500pt;}
.h4{height:105.826671pt;}
.hc{height:107.390625pt;}
.he{height:188.672000pt;}
.h12{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w6{width:792.000000pt;}
.w5{width:793.333333pt;}
.w4{width:793.626667pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:51.401600pt;}
.x7{left:53.858267pt;}
.x6{left:56.219867pt;}
.x5{left:57.952667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:101.440000pt;}
.xa{left:149.445760pt;}
.x4{left:180.874667pt;}
.x17{left:192.144640pt;}
.x15{left:213.104000pt;}
.x19{left:273.436800pt;}
.x3{left:404.408000pt;}
.x16{left:421.280000pt;}
.x9{left:424.960000pt;}
.xe{left:453.306667pt;}
.x11{left:467.600800pt;}
.x12{left:468.599067pt;}
.x14{left:472.000000pt;}
.x10{left:516.601067pt;}
.x1a{left:536.474880pt;}
.xf{left:540.580000pt;}
.x18{left:603.680000pt;}
.xc{left:611.988480pt;}
.xd{left:629.920000pt;}
.x13{left:641.600400pt;}
}




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