
    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_4ae3e23f086ebba90857f49b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_92b4d17e56dea1c0fe843771.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_a0cec2a5fea01ee9cf03d8cb.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_5c48f209f1907dcb6c3064fd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_e5d6013d5ee931b83fba0b23.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_01755c01d503677113bfb7f4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4ae3e23f086ebba90857f49b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_92b4d17e56dea1c0fe843771.woff')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_f2de21a26d2d34fb2c495c49.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_b9d8ba18c27650bc77191cca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_c1b927ed6a458f8418ca56e8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.093262;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_e5174a5bdd2930582fd5cfda.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_92b4d17e56dea1c0fe843771.woff')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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);}
.v3{vertical-align:-15.984000px;}
.v4{vertical-align:-7.218000px;}
.v2{vertical-align:-3.996000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.972000px;}
.ls4{letter-spacing:-2.520000px;}
.ls23{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-0.618000px;}
.ls9{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.494400px;}
.ls3{letter-spacing:-0.420000px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.185400px;}
.ls14{letter-spacing:0.247200px;}
.ls8{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.309000px;}
.ls1a{letter-spacing:0.370800px;}
.ls15{letter-spacing:0.494400px;}
.ls1{letter-spacing:0.618000px;}
.ls13{letter-spacing:0.741600px;}
.lsf{letter-spacing:0.803400px;}
.lsd{letter-spacing:0.988800px;}
.lse{letter-spacing:1.050600px;}
.ls17{letter-spacing:1.112400px;}
.ls2{letter-spacing:1.131600px;}
.ls20{letter-spacing:1.174200px;}
.lsb{letter-spacing:1.236000px;}
.ls11{letter-spacing:1.297800px;}
.ls16{letter-spacing:1.606800px;}
.ls0{letter-spacing:1.755000px;}
.ls1b{letter-spacing:1.792200px;}
.ls18{letter-spacing:1.854000px;}
.lsa{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.224800px;}
.ls10{letter-spacing:2.348400px;}
.ls1c{letter-spacing:2.657400px;}
.ls6{letter-spacing:2.772000px;}
.ls1e{letter-spacing:3.522600px;}
.ls1f{letter-spacing:3.769800px;}
.ls21{letter-spacing:5.253000px;}
.lsc{letter-spacing:7.220400px;}
.ls22{letter-spacing:9.208200px;}
.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;}
}
.wsb3{word-spacing:-24.658200px;}
.wsb2{word-spacing:-20.703000px;}
.ws9c{word-spacing:-18.107400px;}
.ws90{word-spacing:-17.304000px;}
.ws9b{word-spacing:-17.242200px;}
.wsa5{word-spacing:-16.624200px;}
.ws89{word-spacing:-16.500600px;}
.ws88{word-spacing:-16.438800px;}
.wsa4{word-spacing:-16.253400px;}
.ws8e{word-spacing:-16.191600px;}
.ws9a{word-spacing:-15.820800px;}
.ws9d{word-spacing:-15.759000px;}
.ws8f{word-spacing:-15.697200px;}
.ws95{word-spacing:-15.635400px;}
.ws87{word-spacing:-15.450000px;}
.wsb0{word-spacing:-14.955600px;}
.wsb1{word-spacing:-14.832000px;}
.wsaf{word-spacing:-14.214000px;}
.wsa9{word-spacing:-7.725000px;}
.ws1{word-spacing:-6.996000px;}
.wsb{word-spacing:-6.365400px;}
.ws70{word-spacing:-5.932800px;}
.ws30{word-spacing:-5.005800px;}
.ws26{word-spacing:-4.140600px;}
.ws73{word-spacing:-4.017000px;}
.ws98{word-spacing:-3.893400px;}
.wsa2{word-spacing:-3.769800px;}
.ws8b{word-spacing:-3.584400px;}
.ws63{word-spacing:-3.399000px;}
.ws48{word-spacing:-3.275400px;}
.ws96{word-spacing:-2.966400px;}
.ws4f{word-spacing:-2.719200px;}
.ws58{word-spacing:-2.657400px;}
.ws7f{word-spacing:-2.348400px;}
.ws4c{word-spacing:-2.224800px;}
.ws46{word-spacing:-2.163000px;}
.ws3a{word-spacing:-2.101200px;}
.ws7c{word-spacing:-1.730400px;}
.ws91{word-spacing:-1.668600px;}
.wsa8{word-spacing:-1.606800px;}
.ws5b{word-spacing:-1.545000px;}
.ws2f{word-spacing:-1.421400px;}
.ws51{word-spacing:-1.297800px;}
.wsf{word-spacing:-1.236000px;}
.ws4b{word-spacing:-1.174200px;}
.wse{word-spacing:-1.112400px;}
.wsac{word-spacing:-1.050600px;}
.ws74{word-spacing:-0.988800px;}
.ws39{word-spacing:-0.865200px;}
.ws8c{word-spacing:-0.803400px;}
.ws9f{word-spacing:-0.679800px;}
.ws5{word-spacing:-0.618000px;}
.ws84{word-spacing:-0.556200px;}
.ws93{word-spacing:-0.494400px;}
.ws47{word-spacing:-0.370800px;}
.ws10{word-spacing:-0.185400px;}
.ws2e{word-spacing:-0.123600px;}
.ws0{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws4e{word-spacing:0.123600px;}
.ws13{word-spacing:0.432600px;}
.ws3{word-spacing:0.600000px;}
.ws6c{word-spacing:0.679800px;}
.ws38{word-spacing:0.803400px;}
.ws3e{word-spacing:0.988800px;}
.ws34{word-spacing:1.050600px;}
.ws1a{word-spacing:1.112400px;}
.ws41{word-spacing:1.236000px;}
.ws16{word-spacing:1.359600px;}
.ws18{word-spacing:1.421400px;}
.ws50{word-spacing:1.483200px;}
.ws1e{word-spacing:1.545000px;}
.ws4a{word-spacing:1.606800px;}
.ws45{word-spacing:1.854000px;}
.ws5d{word-spacing:1.915800px;}
.ws3c{word-spacing:2.163000px;}
.ws31{word-spacing:2.224800px;}
.ws78{word-spacing:2.472000px;}
.ws27{word-spacing:2.533800px;}
.ws7{word-spacing:2.592000px;}
.ws59{word-spacing:2.595600px;}
.ws22{word-spacing:2.781000px;}
.ws5f{word-spacing:2.904600px;}
.ws55{word-spacing:2.966400px;}
.ws25{word-spacing:3.090000px;}
.ws4d{word-spacing:3.151800px;}
.ws6{word-spacing:3.213600px;}
.ws43{word-spacing:3.275400px;}
.ws28{word-spacing:3.399000px;}
.ws69{word-spacing:3.460800px;}
.ws2c{word-spacing:3.584400px;}
.ws44{word-spacing:3.708000px;}
.wsae{word-spacing:3.769800px;}
.ws42{word-spacing:3.831600px;}
.ws99{word-spacing:3.955200px;}
.ws3d{word-spacing:4.078800px;}
.ws4{word-spacing:4.080000px;}
.ws53{word-spacing:4.140600px;}
.ws49{word-spacing:4.202400px;}
.ws23{word-spacing:4.264200px;}
.ws24{word-spacing:4.387800px;}
.ws36{word-spacing:4.449600px;}
.ws56{word-spacing:4.758600px;}
.ws85{word-spacing:4.820400px;}
.ws52{word-spacing:4.882200px;}
.ws20{word-spacing:4.944000px;}
.ws35{word-spacing:5.005800px;}
.ws75{word-spacing:5.253000px;}
.ws21{word-spacing:5.314800px;}
.ws1c{word-spacing:5.376600px;}
.ws8{word-spacing:5.424000px;}
.ws1f{word-spacing:5.562000px;}
.ws72{word-spacing:5.623800px;}
.ws29{word-spacing:5.685600px;}
.ws6a{word-spacing:5.747400px;}
.ws33{word-spacing:5.809200px;}
.ws60{word-spacing:5.871000px;}
.ws77{word-spacing:5.932800px;}
.ws17{word-spacing:5.994600px;}
.ws71{word-spacing:6.118200px;}
.ws7a{word-spacing:6.365400px;}
.ws1d{word-spacing:6.427200px;}
.ws76{word-spacing:6.489000px;}
.ws3b{word-spacing:6.550800px;}
.ws32{word-spacing:6.736200px;}
.ws5e{word-spacing:6.859800px;}
.ws11{word-spacing:7.045200px;}
.ws81{word-spacing:7.168800px;}
.ws2d{word-spacing:7.230600px;}
.ws64{word-spacing:7.292400px;}
.ws3f{word-spacing:7.354200px;}
.ws80{word-spacing:7.539600px;}
.wsaa{word-spacing:7.601400px;}
.ws54{word-spacing:7.786800px;}
.ws6e{word-spacing:7.910400px;}
.ws12{word-spacing:7.972200px;}
.ws40{word-spacing:8.034000px;}
.ws6d{word-spacing:8.095800px;}
.ws5a{word-spacing:8.157600px;}
.ws86{word-spacing:8.281200px;}
.wsa{word-spacing:8.343000px;}
.ws83{word-spacing:8.404800px;}
.wsc{word-spacing:8.528400px;}
.ws7d{word-spacing:8.713800px;}
.wsad{word-spacing:9.208200px;}
.ws7b{word-spacing:9.270000px;}
.ws9e{word-spacing:9.331800px;}
.ws79{word-spacing:9.517200px;}
.ws65{word-spacing:9.579000px;}
.wsa6{word-spacing:9.826200px;}
.ws6b{word-spacing:9.888000px;}
.ws37{word-spacing:10.011600px;}
.ws66{word-spacing:10.320600px;}
.ws19{word-spacing:10.506000px;}
.ws82{word-spacing:11.371200px;}
.ws6f{word-spacing:11.618400px;}
.wsd{word-spacing:11.680200px;}
.ws1b{word-spacing:12.360000px;}
.ws94{word-spacing:12.730800px;}
.ws61{word-spacing:13.039800px;}
.wsa7{word-spacing:13.287000px;}
.ws7e{word-spacing:13.410600px;}
.ws14{word-spacing:14.399400px;}
.ws2b{word-spacing:16.129800px;}
.wsa0{word-spacing:16.438800px;}
.ws5c{word-spacing:17.860200px;}
.ws15{word-spacing:18.354600px;}
.ws2a{word-spacing:20.950200px;}
.ws67{word-spacing:21.012000px;}
.wsa3{word-spacing:21.568200px;}
.ws92{word-spacing:22.618800px;}
.ws68{word-spacing:23.422200px;}
.ws57{word-spacing:24.596400px;}
.ws97{word-spacing:25.708800px;}
.ws62{word-spacing:28.057200px;}
.ws8d{word-spacing:34.422600px;}
.wsa1{word-spacing:36.462000px;}
.ws8a{word-spacing:36.894600px;}
.wsab{word-spacing:55.372800px;}
.ws9{word-spacing:519.777600px;}
._17{margin-left:-9.319440px;}
._c{margin-left:-7.959840px;}
._13{margin-left:-6.167640px;}
._8{margin-left:-4.665900px;}
._7{margin-left:-2.733720px;}
._0{margin-left:-1.549800px;}
._3{width:1.158000px;}
._4{width:2.346000px;}
._1{width:4.002000px;}
._2{width:5.148000px;}
._6{width:6.264000px;}
._5{width:7.740000px;}
._e{width:9.257640px;}
._b{width:10.314420px;}
._11{width:11.439180px;}
._d{width:12.835860px;}
._10{width:14.096580px;}
._12{width:16.564800px;}
._9{width:17.694600px;}
._f{width:19.522620px;}
._14{width:20.591760px;}
._a{width:22.334520px;}
._15{width:24.448080px;}
._18{width:25.455420px;}
._19{width:27.457740px;}
._1a{width:117.286200px;}
._16{width:251.719200px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:20.988000px;}
.fs8{font-size:27.984000px;}
.fs0{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y20{bottom:76.500000px;}
.y1f{bottom:90.000000px;}
.ya9{bottom:90.913950px;}
.y46{bottom:91.236150px;}
.y6d{bottom:91.916100px;}
.y7f{bottom:92.636100px;}
.y1e{bottom:107.496000px;}
.ya8{bottom:109.453950px;}
.y45{bottom:109.776150px;}
.y6c{bottom:110.456100px;}
.y7e{bottom:111.176100px;}
.ya7{bottom:127.993950px;}
.y44{bottom:128.316150px;}
.y6b{bottom:128.996100px;}
.y7d{bottom:129.716100px;}
.ya6{bottom:146.533950px;}
.y43{bottom:146.856150px;}
.y6a{bottom:147.536100px;}
.y7c{bottom:148.256100px;}
.ycd{bottom:148.333950px;}
.y1d{bottom:155.586600px;}
.ya5{bottom:165.073950px;}
.y42{bottom:165.396150px;}
.y80{bottom:165.536100px;}
.y69{bottom:166.076100px;}
.y7b{bottom:166.796100px;}
.ycc{bottom:166.873800px;}
.y1c{bottom:174.126600px;}
.ya4{bottom:183.613950px;}
.y41{bottom:183.936150px;}
.y68{bottom:184.616100px;}
.y7a{bottom:185.336100px;}
.ycb{bottom:185.413950px;}
.y1b{bottom:192.666600px;}
.ya3{bottom:202.153950px;}
.y40{bottom:202.476150px;}
.y67{bottom:203.156100px;}
.y79{bottom:203.876100px;}
.yca{bottom:203.953800px;}
.y1a{bottom:211.206600px;}
.ya2{bottom:220.693950px;}
.y3f{bottom:221.016150px;}
.y66{bottom:221.696100px;}
.y78{bottom:222.416100px;}
.yc9{bottom:222.493950px;}
.y19{bottom:229.746600px;}
.ya1{bottom:239.233950px;}
.y3e{bottom:239.556150px;}
.y65{bottom:240.236100px;}
.y77{bottom:240.956100px;}
.yc8{bottom:241.033800px;}
.y18{bottom:248.286600px;}
.ya0{bottom:257.773950px;}
.y3d{bottom:258.096150px;}
.y64{bottom:258.776100px;}
.y76{bottom:259.496100px;}
.yc7{bottom:259.573950px;}
.y17{bottom:266.826600px;}
.y9f{bottom:276.313950px;}
.y3c{bottom:276.636150px;}
.y63{bottom:277.316100px;}
.y75{bottom:278.036100px;}
.yc6{bottom:278.113800px;}
.y16{bottom:292.866600px;}
.y9e{bottom:294.853950px;}
.y3b{bottom:295.176150px;}
.y62{bottom:295.856100px;}
.y74{bottom:296.576100px;}
.yc5{bottom:296.653950px;}
.y9d{bottom:313.393950px;}
.y3a{bottom:313.716150px;}
.y61{bottom:314.396100px;}
.y73{bottom:315.116100px;}
.yc4{bottom:315.193800px;}
.y15{bottom:330.666600px;}
.y9c{bottom:331.933950px;}
.y39{bottom:332.256150px;}
.y60{bottom:332.936100px;}
.y72{bottom:333.656100px;}
.yc3{bottom:333.733950px;}
.y14{bottom:349.206600px;}
.y9b{bottom:350.473950px;}
.y38{bottom:350.796150px;}
.y81{bottom:350.936100px;}
.y71{bottom:352.196100px;}
.yc2{bottom:352.273800px;}
.y9a{bottom:369.013950px;}
.y37{bottom:369.336150px;}
.y5f{bottom:369.476100px;}
.y70{bottom:370.736100px;}
.yc1{bottom:370.813800px;}
.y13{bottom:385.746600px;}
.y99{bottom:387.553950px;}
.y36{bottom:387.876150px;}
.y6f{bottom:389.276100px;}
.yc0{bottom:389.353800px;}
.y12{bottom:403.746600px;}
.y98{bottom:406.093950px;}
.y35{bottom:406.416150px;}
.y6e{bottom:407.816100px;}
.ybf{bottom:407.893800px;}
.y11{bottom:421.746600px;}
.y97{bottom:424.633950px;}
.y34{bottom:424.956150px;}
.y5e{bottom:426.356100px;}
.ybe{bottom:426.433800px;}
.y10{bottom:439.746600px;}
.y96{bottom:443.173950px;}
.y33{bottom:443.496150px;}
.y5d{bottom:444.896100px;}
.ybd{bottom:444.973800px;}
.yf{bottom:457.746600px;}
.y95{bottom:461.713950px;}
.y32{bottom:462.036150px;}
.y5c{bottom:463.436100px;}
.ybc{bottom:463.513800px;}
.ye{bottom:475.746600px;}
.y94{bottom:480.253950px;}
.y31{bottom:480.576300px;}
.y5b{bottom:481.976100px;}
.ybb{bottom:482.053950px;}
.yd{bottom:493.746600px;}
.y93{bottom:498.793950px;}
.y30{bottom:499.116150px;}
.y5a{bottom:500.516100px;}
.yba{bottom:500.593800px;}
.yc{bottom:511.746600px;}
.y92{bottom:517.333950px;}
.y2f{bottom:517.656150px;}
.y59{bottom:519.056100px;}
.yb9{bottom:519.133800px;}
.yb{bottom:529.746600px;}
.y91{bottom:535.873950px;}
.y2e{bottom:536.196150px;}
.y58{bottom:537.596100px;}
.yb8{bottom:537.673800px;}
.y90{bottom:554.413950px;}
.y2d{bottom:554.736150px;}
.ya{bottom:555.246600px;}
.y57{bottom:556.136100px;}
.yb7{bottom:556.213950px;}
.y8f{bottom:572.953950px;}
.y2c{bottom:573.276150px;}
.y56{bottom:574.676100px;}
.yb6{bottom:574.753950px;}
.y8e{bottom:591.493950px;}
.y2b{bottom:591.816150px;}
.y55{bottom:593.216100px;}
.yb5{bottom:593.293800px;}
.y8d{bottom:610.033950px;}
.y2a{bottom:610.356150px;}
.y54{bottom:611.756100px;}
.yb4{bottom:611.833800px;}
.y9{bottom:614.046600px;}
.y8c{bottom:628.573950px;}
.y29{bottom:628.896150px;}
.y53{bottom:630.296100px;}
.yb3{bottom:630.373800px;}
.y8{bottom:635.646450px;}
.y8b{bottom:647.113950px;}
.y28{bottom:647.436150px;}
.y52{bottom:648.836100px;}
.yb2{bottom:648.913950px;}
.y8a{bottom:665.653950px;}
.y27{bottom:665.976150px;}
.y51{bottom:667.376100px;}
.yb1{bottom:667.453800px;}
.y7{bottom:675.598500px;}
.y89{bottom:684.193950px;}
.y50{bottom:685.916100px;}
.yb0{bottom:685.993950px;}
.y6{bottom:700.798500px;}
.y26{bottom:702.516150px;}
.y88{bottom:702.733950px;}
.y4f{bottom:704.456100px;}
.yaf{bottom:704.533800px;}
.y87{bottom:721.273950px;}
.y25{bottom:722.316150px;}
.y4e{bottom:722.996100px;}
.yae{bottom:723.073950px;}
.y5{bottom:727.498500px;}
.y86{bottom:739.813950px;}
.y4d{bottom:741.536100px;}
.yad{bottom:741.613800px;}
.y85{bottom:758.353950px;}
.y4c{bottom:760.076100px;}
.yac{bottom:760.153800px;}
.y4{bottom:770.698500px;}
.y84{bottom:776.893950px;}
.y24{bottom:778.116150px;}
.y4b{bottom:778.616100px;}
.yab{bottom:778.693950px;}
.y83{bottom:795.433950px;}
.y4a{bottom:797.156100px;}
.yaa{bottom:797.233950px;}
.y23{bottom:815.196150px;}
.y49{bottom:815.696100px;}
.y3{bottom:824.698500px;}
.y22{bottom:833.736300px;}
.y82{bottom:833.773950px;}
.y48{bottom:834.236100px;}
.y47{bottom:905.470500px;}
.y21{bottom:906.525150px;}
.hd{height:26.133187px;}
.h2{height:36.852539px;}
.h6{height:37.098633px;}
.h8{height:41.132812px;}
.h9{height:41.220703px;}
.h13{height:41.660156px;}
.he{height:42.117188px;}
.h14{height:42.306445px;}
.hc{height:42.366797px;}
.hb{height:42.457324px;}
.ha{height:42.608203px;}
.h11{height:44.730469px;}
.h10{height:45.181641px;}
.h7{height:45.503906px;}
.hf{height:47.381836px;}
.h12{height:54.225879px;}
.h5{height:57.708984px;}
.h4{height:61.616338px;}
.h3{height:74.197266px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.x3{left:106.662900px;}
.x9{left:187.700850px;}
.x8{left:541.222350px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v4{vertical-align:-6.416000pt;}
.v2{vertical-align:-3.552000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.864000pt;}
.ls4{letter-spacing:-2.240000pt;}
.ls23{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.549333pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.439467pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.164800pt;}
.ls14{letter-spacing:0.219733pt;}
.ls8{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.274667pt;}
.ls1a{letter-spacing:0.329600pt;}
.ls15{letter-spacing:0.439467pt;}
.ls1{letter-spacing:0.549333pt;}
.ls13{letter-spacing:0.659200pt;}
.lsf{letter-spacing:0.714133pt;}
.lsd{letter-spacing:0.878933pt;}
.lse{letter-spacing:0.933867pt;}
.ls17{letter-spacing:0.988800pt;}
.ls2{letter-spacing:1.005867pt;}
.ls20{letter-spacing:1.043733pt;}
.lsb{letter-spacing:1.098667pt;}
.ls11{letter-spacing:1.153600pt;}
.ls16{letter-spacing:1.428267pt;}
.ls0{letter-spacing:1.560000pt;}
.ls1b{letter-spacing:1.593067pt;}
.ls18{letter-spacing:1.648000pt;}
.lsa{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.977600pt;}
.ls10{letter-spacing:2.087467pt;}
.ls1c{letter-spacing:2.362133pt;}
.ls6{letter-spacing:2.464000pt;}
.ls1e{letter-spacing:3.131200pt;}
.ls1f{letter-spacing:3.350933pt;}
.ls21{letter-spacing:4.669333pt;}
.lsc{letter-spacing:6.418133pt;}
.ls22{letter-spacing:8.185067pt;}
.wsb3{word-spacing:-21.918400pt;}
.wsb2{word-spacing:-18.402667pt;}
.ws9c{word-spacing:-16.095467pt;}
.ws90{word-spacing:-15.381333pt;}
.ws9b{word-spacing:-15.326400pt;}
.wsa5{word-spacing:-14.777067pt;}
.ws89{word-spacing:-14.667200pt;}
.ws88{word-spacing:-14.612267pt;}
.wsa4{word-spacing:-14.447467pt;}
.ws8e{word-spacing:-14.392533pt;}
.ws9a{word-spacing:-14.062933pt;}
.ws9d{word-spacing:-14.008000pt;}
.ws8f{word-spacing:-13.953067pt;}
.ws95{word-spacing:-13.898133pt;}
.ws87{word-spacing:-13.733333pt;}
.wsb0{word-spacing:-13.293867pt;}
.wsb1{word-spacing:-13.184000pt;}
.wsaf{word-spacing:-12.634667pt;}
.wsa9{word-spacing:-6.866667pt;}
.ws1{word-spacing:-6.218667pt;}
.wsb{word-spacing:-5.658133pt;}
.ws70{word-spacing:-5.273600pt;}
.ws30{word-spacing:-4.449600pt;}
.ws26{word-spacing:-3.680533pt;}
.ws73{word-spacing:-3.570667pt;}
.ws98{word-spacing:-3.460800pt;}
.wsa2{word-spacing:-3.350933pt;}
.ws8b{word-spacing:-3.186133pt;}
.ws63{word-spacing:-3.021333pt;}
.ws48{word-spacing:-2.911467pt;}
.ws96{word-spacing:-2.636800pt;}
.ws4f{word-spacing:-2.417067pt;}
.ws58{word-spacing:-2.362133pt;}
.ws7f{word-spacing:-2.087467pt;}
.ws4c{word-spacing:-1.977600pt;}
.ws46{word-spacing:-1.922667pt;}
.ws3a{word-spacing:-1.867733pt;}
.ws7c{word-spacing:-1.538133pt;}
.ws91{word-spacing:-1.483200pt;}
.wsa8{word-spacing:-1.428267pt;}
.ws5b{word-spacing:-1.373333pt;}
.ws2f{word-spacing:-1.263467pt;}
.ws51{word-spacing:-1.153600pt;}
.wsf{word-spacing:-1.098667pt;}
.ws4b{word-spacing:-1.043733pt;}
.wse{word-spacing:-0.988800pt;}
.wsac{word-spacing:-0.933867pt;}
.ws74{word-spacing:-0.878933pt;}
.ws39{word-spacing:-0.769067pt;}
.ws8c{word-spacing:-0.714133pt;}
.ws9f{word-spacing:-0.604267pt;}
.ws5{word-spacing:-0.549333pt;}
.ws84{word-spacing:-0.494400pt;}
.ws93{word-spacing:-0.439467pt;}
.ws47{word-spacing:-0.329600pt;}
.ws10{word-spacing:-0.164800pt;}
.ws2e{word-spacing:-0.109867pt;}
.ws0{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.109867pt;}
.ws13{word-spacing:0.384533pt;}
.ws3{word-spacing:0.533333pt;}
.ws6c{word-spacing:0.604267pt;}
.ws38{word-spacing:0.714133pt;}
.ws3e{word-spacing:0.878933pt;}
.ws34{word-spacing:0.933867pt;}
.ws1a{word-spacing:0.988800pt;}
.ws41{word-spacing:1.098667pt;}
.ws16{word-spacing:1.208533pt;}
.ws18{word-spacing:1.263467pt;}
.ws50{word-spacing:1.318400pt;}
.ws1e{word-spacing:1.373333pt;}
.ws4a{word-spacing:1.428267pt;}
.ws45{word-spacing:1.648000pt;}
.ws5d{word-spacing:1.702933pt;}
.ws3c{word-spacing:1.922667pt;}
.ws31{word-spacing:1.977600pt;}
.ws78{word-spacing:2.197333pt;}
.ws27{word-spacing:2.252267pt;}
.ws7{word-spacing:2.304000pt;}
.ws59{word-spacing:2.307200pt;}
.ws22{word-spacing:2.472000pt;}
.ws5f{word-spacing:2.581867pt;}
.ws55{word-spacing:2.636800pt;}
.ws25{word-spacing:2.746667pt;}
.ws4d{word-spacing:2.801600pt;}
.ws6{word-spacing:2.856533pt;}
.ws43{word-spacing:2.911467pt;}
.ws28{word-spacing:3.021333pt;}
.ws69{word-spacing:3.076267pt;}
.ws2c{word-spacing:3.186133pt;}
.ws44{word-spacing:3.296000pt;}
.wsae{word-spacing:3.350933pt;}
.ws42{word-spacing:3.405867pt;}
.ws99{word-spacing:3.515733pt;}
.ws3d{word-spacing:3.625600pt;}
.ws4{word-spacing:3.626667pt;}
.ws53{word-spacing:3.680533pt;}
.ws49{word-spacing:3.735467pt;}
.ws23{word-spacing:3.790400pt;}
.ws24{word-spacing:3.900267pt;}
.ws36{word-spacing:3.955200pt;}
.ws56{word-spacing:4.229867pt;}
.ws85{word-spacing:4.284800pt;}
.ws52{word-spacing:4.339733pt;}
.ws20{word-spacing:4.394667pt;}
.ws35{word-spacing:4.449600pt;}
.ws75{word-spacing:4.669333pt;}
.ws21{word-spacing:4.724267pt;}
.ws1c{word-spacing:4.779200pt;}
.ws8{word-spacing:4.821333pt;}
.ws1f{word-spacing:4.944000pt;}
.ws72{word-spacing:4.998933pt;}
.ws29{word-spacing:5.053867pt;}
.ws6a{word-spacing:5.108800pt;}
.ws33{word-spacing:5.163733pt;}
.ws60{word-spacing:5.218667pt;}
.ws77{word-spacing:5.273600pt;}
.ws17{word-spacing:5.328533pt;}
.ws71{word-spacing:5.438400pt;}
.ws7a{word-spacing:5.658133pt;}
.ws1d{word-spacing:5.713067pt;}
.ws76{word-spacing:5.768000pt;}
.ws3b{word-spacing:5.822933pt;}
.ws32{word-spacing:5.987733pt;}
.ws5e{word-spacing:6.097600pt;}
.ws11{word-spacing:6.262400pt;}
.ws81{word-spacing:6.372267pt;}
.ws2d{word-spacing:6.427200pt;}
.ws64{word-spacing:6.482133pt;}
.ws3f{word-spacing:6.537067pt;}
.ws80{word-spacing:6.701867pt;}
.wsaa{word-spacing:6.756800pt;}
.ws54{word-spacing:6.921600pt;}
.ws6e{word-spacing:7.031467pt;}
.ws12{word-spacing:7.086400pt;}
.ws40{word-spacing:7.141333pt;}
.ws6d{word-spacing:7.196267pt;}
.ws5a{word-spacing:7.251200pt;}
.ws86{word-spacing:7.361067pt;}
.wsa{word-spacing:7.416000pt;}
.ws83{word-spacing:7.470933pt;}
.wsc{word-spacing:7.580800pt;}
.ws7d{word-spacing:7.745600pt;}
.wsad{word-spacing:8.185067pt;}
.ws7b{word-spacing:8.240000pt;}
.ws9e{word-spacing:8.294933pt;}
.ws79{word-spacing:8.459733pt;}
.ws65{word-spacing:8.514667pt;}
.wsa6{word-spacing:8.734400pt;}
.ws6b{word-spacing:8.789333pt;}
.ws37{word-spacing:8.899200pt;}
.ws66{word-spacing:9.173867pt;}
.ws19{word-spacing:9.338667pt;}
.ws82{word-spacing:10.107733pt;}
.ws6f{word-spacing:10.327467pt;}
.wsd{word-spacing:10.382400pt;}
.ws1b{word-spacing:10.986667pt;}
.ws94{word-spacing:11.316267pt;}
.ws61{word-spacing:11.590933pt;}
.wsa7{word-spacing:11.810667pt;}
.ws7e{word-spacing:11.920533pt;}
.ws14{word-spacing:12.799467pt;}
.ws2b{word-spacing:14.337600pt;}
.wsa0{word-spacing:14.612267pt;}
.ws5c{word-spacing:15.875733pt;}
.ws15{word-spacing:16.315200pt;}
.ws2a{word-spacing:18.622400pt;}
.ws67{word-spacing:18.677333pt;}
.wsa3{word-spacing:19.171733pt;}
.ws92{word-spacing:20.105600pt;}
.ws68{word-spacing:20.819733pt;}
.ws57{word-spacing:21.863467pt;}
.ws97{word-spacing:22.852267pt;}
.ws62{word-spacing:24.939733pt;}
.ws8d{word-spacing:30.597867pt;}
.wsa1{word-spacing:32.410667pt;}
.ws8a{word-spacing:32.795200pt;}
.wsab{word-spacing:49.220267pt;}
.ws9{word-spacing:462.024533pt;}
._17{margin-left:-8.283947pt;}
._c{margin-left:-7.075413pt;}
._13{margin-left:-5.482347pt;}
._8{margin-left:-4.147467pt;}
._7{margin-left:-2.429973pt;}
._0{margin-left:-1.377600pt;}
._3{width:1.029333pt;}
._4{width:2.085333pt;}
._1{width:3.557333pt;}
._2{width:4.576000pt;}
._6{width:5.568000pt;}
._5{width:6.880000pt;}
._e{width:8.229013pt;}
._b{width:9.168373pt;}
._11{width:10.168160pt;}
._d{width:11.409653pt;}
._10{width:12.530293pt;}
._12{width:14.724267pt;}
._9{width:15.728533pt;}
._f{width:17.353440pt;}
._14{width:18.303787pt;}
._a{width:19.852907pt;}
._15{width:21.731627pt;}
._18{width:22.627040pt;}
._19{width:24.406880pt;}
._1a{width:104.254400pt;}
._16{width:223.750400pt;}
.fs9{font-size:18.656000pt;}
.fs8{font-size:24.874667pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y20{bottom:68.000000pt;}
.y1f{bottom:80.000000pt;}
.ya9{bottom:80.812400pt;}
.y46{bottom:81.098800pt;}
.y6d{bottom:81.703200pt;}
.y7f{bottom:82.343200pt;}
.y1e{bottom:95.552000pt;}
.ya8{bottom:97.292400pt;}
.y45{bottom:97.578800pt;}
.y6c{bottom:98.183200pt;}
.y7e{bottom:98.823200pt;}
.ya7{bottom:113.772400pt;}
.y44{bottom:114.058800pt;}
.y6b{bottom:114.663200pt;}
.y7d{bottom:115.303200pt;}
.ya6{bottom:130.252400pt;}
.y43{bottom:130.538800pt;}
.y6a{bottom:131.143200pt;}
.y7c{bottom:131.783200pt;}
.ycd{bottom:131.852400pt;}
.y1d{bottom:138.299200pt;}
.ya5{bottom:146.732400pt;}
.y42{bottom:147.018800pt;}
.y80{bottom:147.143200pt;}
.y69{bottom:147.623200pt;}
.y7b{bottom:148.263200pt;}
.ycc{bottom:148.332267pt;}
.y1c{bottom:154.779200pt;}
.ya4{bottom:163.212400pt;}
.y41{bottom:163.498800pt;}
.y68{bottom:164.103200pt;}
.y7a{bottom:164.743200pt;}
.ycb{bottom:164.812400pt;}
.y1b{bottom:171.259200pt;}
.ya3{bottom:179.692400pt;}
.y40{bottom:179.978800pt;}
.y67{bottom:180.583200pt;}
.y79{bottom:181.223200pt;}
.yca{bottom:181.292267pt;}
.y1a{bottom:187.739200pt;}
.ya2{bottom:196.172400pt;}
.y3f{bottom:196.458800pt;}
.y66{bottom:197.063200pt;}
.y78{bottom:197.703200pt;}
.yc9{bottom:197.772400pt;}
.y19{bottom:204.219200pt;}
.ya1{bottom:212.652400pt;}
.y3e{bottom:212.938800pt;}
.y65{bottom:213.543200pt;}
.y77{bottom:214.183200pt;}
.yc8{bottom:214.252267pt;}
.y18{bottom:220.699200pt;}
.ya0{bottom:229.132400pt;}
.y3d{bottom:229.418800pt;}
.y64{bottom:230.023200pt;}
.y76{bottom:230.663200pt;}
.yc7{bottom:230.732400pt;}
.y17{bottom:237.179200pt;}
.y9f{bottom:245.612400pt;}
.y3c{bottom:245.898800pt;}
.y63{bottom:246.503200pt;}
.y75{bottom:247.143200pt;}
.yc6{bottom:247.212267pt;}
.y16{bottom:260.325867pt;}
.y9e{bottom:262.092400pt;}
.y3b{bottom:262.378800pt;}
.y62{bottom:262.983200pt;}
.y74{bottom:263.623200pt;}
.yc5{bottom:263.692400pt;}
.y9d{bottom:278.572400pt;}
.y3a{bottom:278.858800pt;}
.y61{bottom:279.463200pt;}
.y73{bottom:280.103200pt;}
.yc4{bottom:280.172267pt;}
.y15{bottom:293.925867pt;}
.y9c{bottom:295.052400pt;}
.y39{bottom:295.338800pt;}
.y60{bottom:295.943200pt;}
.y72{bottom:296.583200pt;}
.yc3{bottom:296.652400pt;}
.y14{bottom:310.405867pt;}
.y9b{bottom:311.532400pt;}
.y38{bottom:311.818800pt;}
.y81{bottom:311.943200pt;}
.y71{bottom:313.063200pt;}
.yc2{bottom:313.132267pt;}
.y9a{bottom:328.012400pt;}
.y37{bottom:328.298800pt;}
.y5f{bottom:328.423200pt;}
.y70{bottom:329.543200pt;}
.yc1{bottom:329.612267pt;}
.y13{bottom:342.885867pt;}
.y99{bottom:344.492400pt;}
.y36{bottom:344.778800pt;}
.y6f{bottom:346.023200pt;}
.yc0{bottom:346.092267pt;}
.y12{bottom:358.885867pt;}
.y98{bottom:360.972400pt;}
.y35{bottom:361.258800pt;}
.y6e{bottom:362.503200pt;}
.ybf{bottom:362.572267pt;}
.y11{bottom:374.885867pt;}
.y97{bottom:377.452400pt;}
.y34{bottom:377.738800pt;}
.y5e{bottom:378.983200pt;}
.ybe{bottom:379.052267pt;}
.y10{bottom:390.885867pt;}
.y96{bottom:393.932400pt;}
.y33{bottom:394.218800pt;}
.y5d{bottom:395.463200pt;}
.ybd{bottom:395.532267pt;}
.yf{bottom:406.885867pt;}
.y95{bottom:410.412400pt;}
.y32{bottom:410.698800pt;}
.y5c{bottom:411.943200pt;}
.ybc{bottom:412.012267pt;}
.ye{bottom:422.885867pt;}
.y94{bottom:426.892400pt;}
.y31{bottom:427.178933pt;}
.y5b{bottom:428.423200pt;}
.ybb{bottom:428.492400pt;}
.yd{bottom:438.885867pt;}
.y93{bottom:443.372400pt;}
.y30{bottom:443.658800pt;}
.y5a{bottom:444.903200pt;}
.yba{bottom:444.972267pt;}
.yc{bottom:454.885867pt;}
.y92{bottom:459.852400pt;}
.y2f{bottom:460.138800pt;}
.y59{bottom:461.383200pt;}
.yb9{bottom:461.452267pt;}
.yb{bottom:470.885867pt;}
.y91{bottom:476.332400pt;}
.y2e{bottom:476.618800pt;}
.y58{bottom:477.863200pt;}
.yb8{bottom:477.932267pt;}
.y90{bottom:492.812400pt;}
.y2d{bottom:493.098800pt;}
.ya{bottom:493.552533pt;}
.y57{bottom:494.343200pt;}
.yb7{bottom:494.412400pt;}
.y8f{bottom:509.292400pt;}
.y2c{bottom:509.578800pt;}
.y56{bottom:510.823200pt;}
.yb6{bottom:510.892400pt;}
.y8e{bottom:525.772400pt;}
.y2b{bottom:526.058800pt;}
.y55{bottom:527.303200pt;}
.yb5{bottom:527.372267pt;}
.y8d{bottom:542.252400pt;}
.y2a{bottom:542.538800pt;}
.y54{bottom:543.783200pt;}
.yb4{bottom:543.852267pt;}
.y9{bottom:545.819200pt;}
.y8c{bottom:558.732400pt;}
.y29{bottom:559.018800pt;}
.y53{bottom:560.263200pt;}
.yb3{bottom:560.332267pt;}
.y8{bottom:565.019067pt;}
.y8b{bottom:575.212400pt;}
.y28{bottom:575.498800pt;}
.y52{bottom:576.743200pt;}
.yb2{bottom:576.812400pt;}
.y8a{bottom:591.692400pt;}
.y27{bottom:591.978800pt;}
.y51{bottom:593.223200pt;}
.yb1{bottom:593.292267pt;}
.y7{bottom:600.532000pt;}
.y89{bottom:608.172400pt;}
.y50{bottom:609.703200pt;}
.yb0{bottom:609.772400pt;}
.y6{bottom:622.932000pt;}
.y26{bottom:624.458800pt;}
.y88{bottom:624.652400pt;}
.y4f{bottom:626.183200pt;}
.yaf{bottom:626.252267pt;}
.y87{bottom:641.132400pt;}
.y25{bottom:642.058800pt;}
.y4e{bottom:642.663200pt;}
.yae{bottom:642.732400pt;}
.y5{bottom:646.665333pt;}
.y86{bottom:657.612400pt;}
.y4d{bottom:659.143200pt;}
.yad{bottom:659.212267pt;}
.y85{bottom:674.092400pt;}
.y4c{bottom:675.623200pt;}
.yac{bottom:675.692267pt;}
.y4{bottom:685.065333pt;}
.y84{bottom:690.572400pt;}
.y24{bottom:691.658800pt;}
.y4b{bottom:692.103200pt;}
.yab{bottom:692.172400pt;}
.y83{bottom:707.052400pt;}
.y4a{bottom:708.583200pt;}
.yaa{bottom:708.652400pt;}
.y23{bottom:724.618800pt;}
.y49{bottom:725.063200pt;}
.y3{bottom:733.065333pt;}
.y22{bottom:741.098933pt;}
.y82{bottom:741.132400pt;}
.y48{bottom:741.543200pt;}
.y47{bottom:804.862667pt;}
.y21{bottom:805.800133pt;}
.hd{height:23.229500pt;}
.h2{height:32.757812pt;}
.h6{height:32.976562pt;}
.h8{height:36.562500pt;}
.h9{height:36.640625pt;}
.h13{height:37.031250pt;}
.he{height:37.437500pt;}
.h14{height:37.605729pt;}
.hc{height:37.659375pt;}
.hb{height:37.739844pt;}
.ha{height:37.873958pt;}
.h11{height:39.760417pt;}
.h10{height:40.161458pt;}
.h7{height:40.447917pt;}
.hf{height:42.117188pt;}
.h12{height:48.200781pt;}
.h5{height:51.296875pt;}
.h4{height:54.770078pt;}
.h3{height:65.953125pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.x3{left:94.811467pt;}
.x9{left:166.845200pt;}
.x8{left:481.086533pt;}
}




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