
    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_d0f179d2b3124cd49b37488b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979004;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_7bf75f6f831dbd2a8fadeb6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137217;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_84ccb9b42f14f7851340a42f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137217;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_95635e338a48899750481ee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_785986296a29ec01cdfedae3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979004;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_cc70dfd3fe25bced1c8acd63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929688;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_f79fa025e61bb8863ab8a114.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_7bf75f6f831dbd2a8fadeb6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.137217;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_2d28579b835da082dceeafea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979004;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_a146533b902cf28721c1feee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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_2d28579b835da082dceeafea.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.979004;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_7bf75f6f831dbd2a8fadeb6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.137217;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_e2b2d6ee458db7e01267a06e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.918945;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_e00b2eaecd92170f77c82b39.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_2d73dbea419e85a687d25344.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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;}
.m1{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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.ls19{letter-spacing:-2.907000px;}
.ls1b{letter-spacing:-1.425000px;}
.ls17{letter-spacing:-0.456000px;}
.ls1c{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.285000px;}
.ls1e{letter-spacing:-0.192000px;}
.ls1d{letter-spacing:-0.096000px;}
.lse{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.057000px;}
.lsb{letter-spacing:0.097461px;}
.ls4{letter-spacing:0.114000px;}
.ls11{letter-spacing:0.117600px;}
.lsa{letter-spacing:0.171000px;}
.ls0{letter-spacing:0.228000px;}
.lsc{letter-spacing:0.285000px;}
.ls3{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.399000px;}
.ls8{letter-spacing:0.456000px;}
.ls1f{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.513000px;}
.ls12{letter-spacing:0.570000px;}
.ls7{letter-spacing:0.627000px;}
.ls2{letter-spacing:0.684000px;}
.ls18{letter-spacing:1.675200px;}
.lsf{letter-spacing:4.029600px;}
.ls10{letter-spacing:4.225200px;}
.ls1a{letter-spacing:5.051400px;}
.ls15{letter-spacing:7.179000px;}
.ls9{letter-spacing:7.245600px;}
.ls14{letter-spacing:7.336200px;}
.ls13{letter-spacing:9.279600px;}
.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;}
}
.ws1{word-spacing:-15.846000px;}
.ws0{word-spacing:-15.012000px;}
.ws81{word-spacing:-15.000000px;}
.ws92{word-spacing:-14.649000px;}
.ws39{word-spacing:-14.592000px;}
.ws80{word-spacing:-14.535000px;}
.ws7f{word-spacing:-14.307000px;}
.ws1c{word-spacing:-14.250000px;}
.ws90{word-spacing:-13.794000px;}
.wsac{word-spacing:-12.825000px;}
.wsb1{word-spacing:-12.000000px;}
.wsb3{word-spacing:-11.664000px;}
.wsa0{word-spacing:-11.343000px;}
.ws3{word-spacing:-8.379000px;}
.wsb8{word-spacing:-2.976000px;}
.wsbc{word-spacing:-2.832000px;}
.wsb7{word-spacing:-2.592000px;}
.wsbf{word-spacing:-1.872000px;}
.wsb6{word-spacing:-0.912000px;}
.ws10{word-spacing:-0.756000px;}
.wsbe{word-spacing:-0.720000px;}
.wsc3{word-spacing:-0.672000px;}
.ws9a{word-spacing:-0.513000px;}
.wsc5{word-spacing:-0.480000px;}
.ws91{word-spacing:-0.456000px;}
.wsa9{word-spacing:-0.399000px;}
.ws3a{word-spacing:-0.342000px;}
.ws40{word-spacing:-0.285000px;}
.ws6b{word-spacing:-0.228000px;}
.ws42{word-spacing:-0.171000px;}
.wsb5{word-spacing:-0.144000px;}
.ws68{word-spacing:-0.114000px;}
.ws22{word-spacing:-0.057000px;}
.wsb2{word-spacing:-0.048000px;}
.wsa1{word-spacing:-0.033231px;}
.ws2{word-spacing:0.000000px;}
.ws4c{word-spacing:0.057000px;}
.wsa4{word-spacing:0.114000px;}
.ws8f{word-spacing:0.171000px;}
.wsc0{word-spacing:0.192000px;}
.ws9{word-spacing:0.216000px;}
.ws23{word-spacing:0.228000px;}
.ws89{word-spacing:0.285000px;}
.wsb9{word-spacing:0.336000px;}
.ws45{word-spacing:0.342000px;}
.ws34{word-spacing:0.399000px;}
.ws4b{word-spacing:0.513000px;}
.ws37{word-spacing:0.570000px;}
.wsba{word-spacing:0.624000px;}
.ws93{word-spacing:0.627000px;}
.ws88{word-spacing:0.741000px;}
.ws60{word-spacing:0.798000px;}
.wsf{word-spacing:0.810000px;}
.ws36{word-spacing:0.855000px;}
.ws7e{word-spacing:0.969000px;}
.ws1e{word-spacing:1.026000px;}
.wsae{word-spacing:1.140000px;}
.ws86{word-spacing:1.197000px;}
.ws4e{word-spacing:1.200000px;}
.ws3d{word-spacing:1.254000px;}
.ws4f{word-spacing:1.311000px;}
.ws59{word-spacing:1.368000px;}
.ws1a{word-spacing:1.425000px;}
.ws76{word-spacing:1.482000px;}
.ws5{word-spacing:1.512000px;}
.ws3b{word-spacing:1.539000px;}
.ws4{word-spacing:1.596000px;}
.ws1f{word-spacing:1.653000px;}
.ws41{word-spacing:1.710000px;}
.ws4a{word-spacing:1.767000px;}
.ws18{word-spacing:1.824000px;}
.wsc2{word-spacing:1.872000px;}
.ws48{word-spacing:1.881000px;}
.ws19{word-spacing:1.938000px;}
.ws17{word-spacing:1.995000px;}
.ws25{word-spacing:2.052000px;}
.ws35{word-spacing:2.109000px;}
.ws26{word-spacing:2.166000px;}
.wsa6{word-spacing:2.223000px;}
.ws44{word-spacing:2.280000px;}
.ws95{word-spacing:2.337000px;}
.ws7c{word-spacing:2.394000px;}
.ws94{word-spacing:2.451000px;}
.wsd{word-spacing:2.484000px;}
.ws46{word-spacing:2.508000px;}
.wsc{word-spacing:2.538000px;}
.ws79{word-spacing:2.565000px;}
.ws61{word-spacing:2.622000px;}
.ws8d{word-spacing:2.679000px;}
.ws16{word-spacing:2.736000px;}
.wsad{word-spacing:2.793000px;}
.ws6f{word-spacing:2.850000px;}
.ws2f{word-spacing:2.907000px;}
.ws9f{word-spacing:2.964000px;}
.ws7a{word-spacing:3.021000px;}
.ws2b{word-spacing:3.078000px;}
.ws3e{word-spacing:3.135000px;}
.wsaa{word-spacing:3.192000px;}
.ws3f{word-spacing:3.249000px;}
.ws2c{word-spacing:3.306000px;}
.wse{word-spacing:3.348000px;}
.ws14{word-spacing:3.363000px;}
.ws55{word-spacing:3.420000px;}
.ws43{word-spacing:3.477000px;}
.ws28{word-spacing:3.534000px;}
.wsa8{word-spacing:3.591000px;}
.ws29{word-spacing:3.648000px;}
.ws30{word-spacing:3.705000px;}
.ws74{word-spacing:3.762000px;}
.ws57{word-spacing:3.819000px;}
.ws67{word-spacing:3.876000px;}
.ws73{word-spacing:3.933000px;}
.ws3c{word-spacing:3.990000px;}
.ws50{word-spacing:4.047000px;}
.ws6{word-spacing:4.050000px;}
.ws9b{word-spacing:4.104000px;}
.ws8e{word-spacing:4.161000px;}
.ws5a{word-spacing:4.218000px;}
.wsbd{word-spacing:4.224000px;}
.wsc1{word-spacing:4.272000px;}
.ws6c{word-spacing:4.275000px;}
.ws7{word-spacing:4.320000px;}
.ws20{word-spacing:4.332000px;}
.ws33{word-spacing:4.389000px;}
.ws52{word-spacing:4.446000px;}
.wsb{word-spacing:4.482000px;}
.ws78{word-spacing:4.503000px;}
.ws47{word-spacing:4.560000px;}
.ws96{word-spacing:4.617000px;}
.ws12{word-spacing:4.674000px;}
.ws4d{word-spacing:4.731000px;}
.ws82{word-spacing:4.788000px;}
.ws8b{word-spacing:4.845000px;}
.ws85{word-spacing:4.902000px;}
.ws24{word-spacing:4.959000px;}
.ws2d{word-spacing:5.016000px;}
.ws2a{word-spacing:5.073000px;}
.ws21{word-spacing:5.130000px;}
.ws15{word-spacing:5.187000px;}
.wsbb{word-spacing:5.232000px;}
.ws5f{word-spacing:5.244000px;}
.ws5d{word-spacing:5.301000px;}
.ws87{word-spacing:5.358000px;}
.wsc6{word-spacing:5.376000px;}
.ws7d{word-spacing:5.415000px;}
.ws77{word-spacing:5.472000px;}
.ws1b{word-spacing:5.529000px;}
.ws65{word-spacing:5.586000px;}
.ws27{word-spacing:5.643000px;}
.wsa{word-spacing:5.670000px;}
.ws97{word-spacing:5.700000px;}
.ws58{word-spacing:5.757000px;}
.ws70{word-spacing:5.814000px;}
.ws62{word-spacing:5.871000px;}
.ws38{word-spacing:5.928000px;}
.ws8c{word-spacing:5.985000px;}
.ws8{word-spacing:5.994000px;}
.wsc4{word-spacing:6.000000px;}
.ws53{word-spacing:6.042000px;}
.ws72{word-spacing:6.099000px;}
.ws32{word-spacing:6.156000px;}
.ws64{word-spacing:6.213000px;}
.ws9e{word-spacing:6.270000px;}
.ws11{word-spacing:6.327000px;}
.ws66{word-spacing:6.441000px;}
.ws5c{word-spacing:6.498000px;}
.ws84{word-spacing:6.555000px;}
.ws49{word-spacing:6.612000px;}
.wsaf{word-spacing:6.669000px;}
.ws9c{word-spacing:6.897000px;}
.ws51{word-spacing:6.954000px;}
.ws98{word-spacing:7.011000px;}
.ws56{word-spacing:7.068000px;}
.ws13{word-spacing:7.125000px;}
.ws6d{word-spacing:7.182000px;}
.ws5e{word-spacing:7.239000px;}
.ws6e{word-spacing:7.296000px;}
.ws5b{word-spacing:7.353000px;}
.ws31{word-spacing:7.410000px;}
.ws7b{word-spacing:7.467000px;}
.ws54{word-spacing:7.524000px;}
.wsab{word-spacing:7.638000px;}
.ws83{word-spacing:7.752000px;}
.wsa3{word-spacing:7.923000px;}
.wsb4{word-spacing:8.037000px;}
.wsa5{word-spacing:8.208000px;}
.ws99{word-spacing:8.322000px;}
.ws8a{word-spacing:8.664000px;}
.ws71{word-spacing:8.721000px;}
.wsb0{word-spacing:9.063000px;}
.wsa7{word-spacing:9.177000px;}
.ws75{word-spacing:9.348000px;}
.wsa2{word-spacing:9.405000px;}
.ws63{word-spacing:9.690000px;}
.ws2e{word-spacing:10.032000px;}
.ws1d{word-spacing:10.488000px;}
.ws9d{word-spacing:10.602000px;}
.ws69{word-spacing:10.716000px;}
.ws6a{word-spacing:10.830000px;}
._7{margin-left:-7.837200px;}
._3{margin-left:-6.739200px;}
._5{margin-left:-5.186700px;}
._4{margin-left:-3.964500px;}
._8{margin-left:-2.830500px;}
._1{margin-left:-1.727100px;}
._6{width:1.801800px;}
._2{width:2.995200px;}
._b{width:4.645500px;}
._a{width:5.654400px;}
._9{width:7.028100px;}
._c{width:8.441100px;}
._0{width:9.952200px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(145,143,143);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:33.231000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.639800px;}
.y23{bottom:56.014800px;}
.y5c{bottom:81.445650px;}
.yb0{bottom:86.550450px;}
.y7d{bottom:89.848500px;}
.y59{bottom:89.850450px;}
.y22{bottom:89.949600px;}
.yaf{bottom:100.950450px;}
.y7c{bottom:106.348500px;}
.y58{bottom:106.350450px;}
.yae{bottom:115.350450px;}
.y7f{bottom:122.848500px;}
.y57{bottom:122.850450px;}
.y21{bottom:125.733150px;}
.yad{bottom:129.750300px;}
.y7b{bottom:139.348500px;}
.y56{bottom:139.350450px;}
.y20{bottom:142.233150px;}
.yac{bottom:144.150450px;}
.y7e{bottom:155.848500px;}
.y55{bottom:155.850450px;}
.yab{bottom:158.550450px;}
.y1f{bottom:158.733150px;}
.y7a{bottom:172.348500px;}
.y54{bottom:172.350450px;}
.yaa{bottom:172.950450px;}
.y1e{bottom:175.233150px;}
.ya9{bottom:187.350450px;}
.y79{bottom:188.848500px;}
.y53{bottom:188.850450px;}
.y1d{bottom:191.733150px;}
.ya8{bottom:201.750300px;}
.y78{bottom:205.348500px;}
.y52{bottom:205.350450px;}
.y1c{bottom:208.233150px;}
.ya7{bottom:216.150450px;}
.y77{bottom:221.848500px;}
.y51{bottom:221.850450px;}
.y1b{bottom:224.733150px;}
.ya6{bottom:230.550450px;}
.y76{bottom:238.348500px;}
.y50{bottom:238.350450px;}
.y1a{bottom:241.233150px;}
.ya5{bottom:244.950450px;}
.y75{bottom:254.848500px;}
.y5b{bottom:254.850450px;}
.y19{bottom:257.733150px;}
.ya4{bottom:259.350450px;}
.y74{bottom:271.348500px;}
.y4f{bottom:271.350450px;}
.ya3{bottom:273.750450px;}
.y18{bottom:274.233150px;}
.y73{bottom:287.848500px;}
.y5a{bottom:287.850450px;}
.ya2{bottom:288.150450px;}
.y17{bottom:290.733150px;}
.ya1{bottom:302.550450px;}
.y72{bottom:304.348500px;}
.y4e{bottom:304.350450px;}
.y16{bottom:307.233150px;}
.ya0{bottom:316.950450px;}
.y71{bottom:320.848500px;}
.y4d{bottom:320.850450px;}
.y9f{bottom:331.350450px;}
.y70{bottom:337.348500px;}
.y4c{bottom:337.350450px;}
.y15{bottom:340.233150px;}
.y9e{bottom:345.750450px;}
.y6f{bottom:353.848500px;}
.y4b{bottom:353.850450px;}
.y9d{bottom:360.150450px;}
.y6e{bottom:370.348500px;}
.y4a{bottom:370.350450px;}
.y9c{bottom:374.550450px;}
.y14{bottom:385.679250px;}
.y6d{bottom:386.848500px;}
.y49{bottom:386.850450px;}
.y9b{bottom:388.950450px;}
.y6c{bottom:403.348500px;}
.y48{bottom:403.350450px;}
.y13{bottom:414.935250px;}
.y9a{bottom:417.750450px;}
.y6b{bottom:419.848500px;}
.y47{bottom:419.850450px;}
.y12{bottom:431.435250px;}
.y99{bottom:432.150450px;}
.y6a{bottom:436.348500px;}
.y46{bottom:436.350450px;}
.y98{bottom:446.550450px;}
.y11{bottom:447.935250px;}
.y69{bottom:452.848500px;}
.y45{bottom:452.850450px;}
.y97{bottom:460.950450px;}
.y10{bottom:464.435250px;}
.y68{bottom:469.348500px;}
.y44{bottom:469.350450px;}
.y96{bottom:475.350450px;}
.yf{bottom:480.935250px;}
.y67{bottom:485.848500px;}
.y43{bottom:485.850450px;}
.y95{bottom:489.750450px;}
.ye{bottom:497.435250px;}
.y66{bottom:502.348500px;}
.y42{bottom:502.350450px;}
.y94{bottom:504.150450px;}
.yd{bottom:513.935250px;}
.y93{bottom:518.550450px;}
.y65{bottom:518.848500px;}
.y41{bottom:518.850450px;}
.yc{bottom:530.435250px;}
.y92{bottom:532.950450px;}
.y64{bottom:535.348500px;}
.y40{bottom:535.350450px;}
.yb{bottom:546.935250px;}
.y91{bottom:547.350450px;}
.y63{bottom:551.848500px;}
.y3f{bottom:551.850450px;}
.y90{bottom:561.750450px;}
.ya{bottom:563.435250px;}
.y62{bottom:568.348500px;}
.y3e{bottom:568.350450px;}
.y8f{bottom:576.150450px;}
.y9{bottom:579.935250px;}
.y61{bottom:584.848500px;}
.y3d{bottom:584.850450px;}
.y8e{bottom:590.550450px;}
.y8{bottom:596.435250px;}
.y60{bottom:601.348500px;}
.y3c{bottom:601.350450px;}
.y8d{bottom:604.950450px;}
.y7{bottom:612.935250px;}
.y5f{bottom:617.848500px;}
.y3b{bottom:617.850450px;}
.y8c{bottom:619.350450px;}
.y8b{bottom:633.750450px;}
.y5e{bottom:634.348500px;}
.y3a{bottom:634.350450px;}
.yc8{bottom:634.621500px;}
.y6{bottom:642.191100px;}
.y8a{bottom:648.150450px;}
.yc7{bottom:649.021500px;}
.y5d{bottom:650.848500px;}
.y39{bottom:650.850450px;}
.y89{bottom:662.550450px;}
.yc6{bottom:663.421500px;}
.y38{bottom:667.350450px;}
.y88{bottom:676.950450px;}
.yc5{bottom:677.821500px;}
.y37{bottom:683.850450px;}
.y87{bottom:691.350450px;}
.yc4{bottom:692.221500px;}
.y36{bottom:700.350450px;}
.y5{bottom:704.974950px;}
.y86{bottom:705.750450px;}
.yc3{bottom:706.621500px;}
.y35{bottom:716.850450px;}
.y85{bottom:720.150450px;}
.yc2{bottom:721.021500px;}
.y34{bottom:733.350450px;}
.y84{bottom:734.550450px;}
.y4{bottom:734.974950px;}
.yc1{bottom:735.421500px;}
.y83{bottom:748.950450px;}
.yc0{bottom:749.821500px;}
.y33{bottom:749.850450px;}
.y82{bottom:763.350450px;}
.ybf{bottom:764.221500px;}
.y32{bottom:766.350450px;}
.y3{bottom:777.004800px;}
.ybe{bottom:778.621500px;}
.y31{bottom:782.850450px;}
.ybd{bottom:793.021500px;}
.y81{bottom:794.250300px;}
.y30{bottom:799.350450px;}
.ybc{bottom:807.421500px;}
.y2f{bottom:815.850450px;}
.ybb{bottom:821.821500px;}
.y80{bottom:827.250300px;}
.y2e{bottom:832.350450px;}
.yba{bottom:836.221500px;}
.y2d{bottom:848.850450px;}
.y24{bottom:850.075650px;}
.yb9{bottom:850.621500px;}
.yb8{bottom:865.021500px;}
.y2c{bottom:865.350450px;}
.yb7{bottom:879.421500px;}
.y2b{bottom:881.850450px;}
.yb6{bottom:893.821500px;}
.y2a{bottom:898.350450px;}
.yb5{bottom:908.221500px;}
.y29{bottom:914.850450px;}
.yb4{bottom:922.621500px;}
.y28{bottom:931.350450px;}
.yb3{bottom:937.021500px;}
.y27{bottom:947.850450px;}
.yb2{bottom:951.421500px;}
.y26{bottom:964.350450px;}
.yb1{bottom:965.821500px;}
.y2{bottom:1001.717100px;}
.y25{bottom:1003.898850px;}
.h8{height:27.000000px;}
.hb{height:31.992188px;}
.h7{height:33.421875px;}
.h6{height:37.990723px;}
.h9{height:39.688477px;}
.hd{height:39.990234px;}
.h2{height:40.500000px;}
.ha{height:41.129591px;}
.hc{height:42.750000px;}
.h5{height:48.990772px;}
.h3{height:51.712482px;}
.h4{height:130.642060px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x5{left:36.150000px;}
.x6{left:45.245550px;}
.x7{left:53.175000px;}
.x3{left:85.051800px;}
.x8{left:89.325000px;}
.x4{left:102.078600px;}
.x9{left:106.350000px;}
.xa{left:621.387900px;}
.x1{left:705.078600px;}
.x2{left:709.107900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.ls19{letter-spacing:-2.584000pt;}
.ls1b{letter-spacing:-1.266667pt;}
.ls17{letter-spacing:-0.405333pt;}
.ls1c{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.253333pt;}
.ls1e{letter-spacing:-0.170667pt;}
.ls1d{letter-spacing:-0.085333pt;}
.lse{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.050667pt;}
.lsb{letter-spacing:0.086632pt;}
.ls4{letter-spacing:0.101333pt;}
.ls11{letter-spacing:0.104533pt;}
.lsa{letter-spacing:0.152000pt;}
.ls0{letter-spacing:0.202667pt;}
.lsc{letter-spacing:0.253333pt;}
.ls3{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.354667pt;}
.ls8{letter-spacing:0.405333pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.456000pt;}
.ls12{letter-spacing:0.506667pt;}
.ls7{letter-spacing:0.557333pt;}
.ls2{letter-spacing:0.608000pt;}
.ls18{letter-spacing:1.489067pt;}
.lsf{letter-spacing:3.581867pt;}
.ls10{letter-spacing:3.755733pt;}
.ls1a{letter-spacing:4.490133pt;}
.ls15{letter-spacing:6.381333pt;}
.ls9{letter-spacing:6.440533pt;}
.ls14{letter-spacing:6.521067pt;}
.ls13{letter-spacing:8.248533pt;}
.ws1{word-spacing:-14.085333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws81{word-spacing:-13.333333pt;}
.ws92{word-spacing:-13.021333pt;}
.ws39{word-spacing:-12.970667pt;}
.ws80{word-spacing:-12.920000pt;}
.ws7f{word-spacing:-12.717333pt;}
.ws1c{word-spacing:-12.666667pt;}
.ws90{word-spacing:-12.261333pt;}
.wsac{word-spacing:-11.400000pt;}
.wsb1{word-spacing:-10.666667pt;}
.wsb3{word-spacing:-10.368000pt;}
.wsa0{word-spacing:-10.082667pt;}
.ws3{word-spacing:-7.448000pt;}
.wsb8{word-spacing:-2.645333pt;}
.wsbc{word-spacing:-2.517333pt;}
.wsb7{word-spacing:-2.304000pt;}
.wsbf{word-spacing:-1.664000pt;}
.wsb6{word-spacing:-0.810667pt;}
.ws10{word-spacing:-0.672000pt;}
.wsbe{word-spacing:-0.640000pt;}
.wsc3{word-spacing:-0.597333pt;}
.ws9a{word-spacing:-0.456000pt;}
.wsc5{word-spacing:-0.426667pt;}
.ws91{word-spacing:-0.405333pt;}
.wsa9{word-spacing:-0.354667pt;}
.ws3a{word-spacing:-0.304000pt;}
.ws40{word-spacing:-0.253333pt;}
.ws6b{word-spacing:-0.202667pt;}
.ws42{word-spacing:-0.152000pt;}
.wsb5{word-spacing:-0.128000pt;}
.ws68{word-spacing:-0.101333pt;}
.ws22{word-spacing:-0.050667pt;}
.wsb2{word-spacing:-0.042667pt;}
.wsa1{word-spacing:-0.029539pt;}
.ws2{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.050667pt;}
.wsa4{word-spacing:0.101333pt;}
.ws8f{word-spacing:0.152000pt;}
.wsc0{word-spacing:0.170667pt;}
.ws9{word-spacing:0.192000pt;}
.ws23{word-spacing:0.202667pt;}
.ws89{word-spacing:0.253333pt;}
.wsb9{word-spacing:0.298667pt;}
.ws45{word-spacing:0.304000pt;}
.ws34{word-spacing:0.354667pt;}
.ws4b{word-spacing:0.456000pt;}
.ws37{word-spacing:0.506667pt;}
.wsba{word-spacing:0.554667pt;}
.ws93{word-spacing:0.557333pt;}
.ws88{word-spacing:0.658667pt;}
.ws60{word-spacing:0.709333pt;}
.wsf{word-spacing:0.720000pt;}
.ws36{word-spacing:0.760000pt;}
.ws7e{word-spacing:0.861333pt;}
.ws1e{word-spacing:0.912000pt;}
.wsae{word-spacing:1.013333pt;}
.ws86{word-spacing:1.064000pt;}
.ws4e{word-spacing:1.066667pt;}
.ws3d{word-spacing:1.114667pt;}
.ws4f{word-spacing:1.165333pt;}
.ws59{word-spacing:1.216000pt;}
.ws1a{word-spacing:1.266667pt;}
.ws76{word-spacing:1.317333pt;}
.ws5{word-spacing:1.344000pt;}
.ws3b{word-spacing:1.368000pt;}
.ws4{word-spacing:1.418667pt;}
.ws1f{word-spacing:1.469333pt;}
.ws41{word-spacing:1.520000pt;}
.ws4a{word-spacing:1.570667pt;}
.ws18{word-spacing:1.621333pt;}
.wsc2{word-spacing:1.664000pt;}
.ws48{word-spacing:1.672000pt;}
.ws19{word-spacing:1.722667pt;}
.ws17{word-spacing:1.773333pt;}
.ws25{word-spacing:1.824000pt;}
.ws35{word-spacing:1.874667pt;}
.ws26{word-spacing:1.925333pt;}
.wsa6{word-spacing:1.976000pt;}
.ws44{word-spacing:2.026667pt;}
.ws95{word-spacing:2.077333pt;}
.ws7c{word-spacing:2.128000pt;}
.ws94{word-spacing:2.178667pt;}
.wsd{word-spacing:2.208000pt;}
.ws46{word-spacing:2.229333pt;}
.wsc{word-spacing:2.256000pt;}
.ws79{word-spacing:2.280000pt;}
.ws61{word-spacing:2.330667pt;}
.ws8d{word-spacing:2.381333pt;}
.ws16{word-spacing:2.432000pt;}
.wsad{word-spacing:2.482667pt;}
.ws6f{word-spacing:2.533333pt;}
.ws2f{word-spacing:2.584000pt;}
.ws9f{word-spacing:2.634667pt;}
.ws7a{word-spacing:2.685333pt;}
.ws2b{word-spacing:2.736000pt;}
.ws3e{word-spacing:2.786667pt;}
.wsaa{word-spacing:2.837333pt;}
.ws3f{word-spacing:2.888000pt;}
.ws2c{word-spacing:2.938667pt;}
.wse{word-spacing:2.976000pt;}
.ws14{word-spacing:2.989333pt;}
.ws55{word-spacing:3.040000pt;}
.ws43{word-spacing:3.090667pt;}
.ws28{word-spacing:3.141333pt;}
.wsa8{word-spacing:3.192000pt;}
.ws29{word-spacing:3.242667pt;}
.ws30{word-spacing:3.293333pt;}
.ws74{word-spacing:3.344000pt;}
.ws57{word-spacing:3.394667pt;}
.ws67{word-spacing:3.445333pt;}
.ws73{word-spacing:3.496000pt;}
.ws3c{word-spacing:3.546667pt;}
.ws50{word-spacing:3.597333pt;}
.ws6{word-spacing:3.600000pt;}
.ws9b{word-spacing:3.648000pt;}
.ws8e{word-spacing:3.698667pt;}
.ws5a{word-spacing:3.749333pt;}
.wsbd{word-spacing:3.754667pt;}
.wsc1{word-spacing:3.797333pt;}
.ws6c{word-spacing:3.800000pt;}
.ws7{word-spacing:3.840000pt;}
.ws20{word-spacing:3.850667pt;}
.ws33{word-spacing:3.901333pt;}
.ws52{word-spacing:3.952000pt;}
.wsb{word-spacing:3.984000pt;}
.ws78{word-spacing:4.002667pt;}
.ws47{word-spacing:4.053333pt;}
.ws96{word-spacing:4.104000pt;}
.ws12{word-spacing:4.154667pt;}
.ws4d{word-spacing:4.205333pt;}
.ws82{word-spacing:4.256000pt;}
.ws8b{word-spacing:4.306667pt;}
.ws85{word-spacing:4.357333pt;}
.ws24{word-spacing:4.408000pt;}
.ws2d{word-spacing:4.458667pt;}
.ws2a{word-spacing:4.509333pt;}
.ws21{word-spacing:4.560000pt;}
.ws15{word-spacing:4.610667pt;}
.wsbb{word-spacing:4.650667pt;}
.ws5f{word-spacing:4.661333pt;}
.ws5d{word-spacing:4.712000pt;}
.ws87{word-spacing:4.762667pt;}
.wsc6{word-spacing:4.778667pt;}
.ws7d{word-spacing:4.813333pt;}
.ws77{word-spacing:4.864000pt;}
.ws1b{word-spacing:4.914667pt;}
.ws65{word-spacing:4.965333pt;}
.ws27{word-spacing:5.016000pt;}
.wsa{word-spacing:5.040000pt;}
.ws97{word-spacing:5.066667pt;}
.ws58{word-spacing:5.117333pt;}
.ws70{word-spacing:5.168000pt;}
.ws62{word-spacing:5.218667pt;}
.ws38{word-spacing:5.269333pt;}
.ws8c{word-spacing:5.320000pt;}
.ws8{word-spacing:5.328000pt;}
.wsc4{word-spacing:5.333333pt;}
.ws53{word-spacing:5.370667pt;}
.ws72{word-spacing:5.421333pt;}
.ws32{word-spacing:5.472000pt;}
.ws64{word-spacing:5.522667pt;}
.ws9e{word-spacing:5.573333pt;}
.ws11{word-spacing:5.624000pt;}
.ws66{word-spacing:5.725333pt;}
.ws5c{word-spacing:5.776000pt;}
.ws84{word-spacing:5.826667pt;}
.ws49{word-spacing:5.877333pt;}
.wsaf{word-spacing:5.928000pt;}
.ws9c{word-spacing:6.130667pt;}
.ws51{word-spacing:6.181333pt;}
.ws98{word-spacing:6.232000pt;}
.ws56{word-spacing:6.282667pt;}
.ws13{word-spacing:6.333333pt;}
.ws6d{word-spacing:6.384000pt;}
.ws5e{word-spacing:6.434667pt;}
.ws6e{word-spacing:6.485333pt;}
.ws5b{word-spacing:6.536000pt;}
.ws31{word-spacing:6.586667pt;}
.ws7b{word-spacing:6.637333pt;}
.ws54{word-spacing:6.688000pt;}
.wsab{word-spacing:6.789333pt;}
.ws83{word-spacing:6.890667pt;}
.wsa3{word-spacing:7.042667pt;}
.wsb4{word-spacing:7.144000pt;}
.wsa5{word-spacing:7.296000pt;}
.ws99{word-spacing:7.397333pt;}
.ws8a{word-spacing:7.701333pt;}
.ws71{word-spacing:7.752000pt;}
.wsb0{word-spacing:8.056000pt;}
.wsa7{word-spacing:8.157333pt;}
.ws75{word-spacing:8.309333pt;}
.wsa2{word-spacing:8.360000pt;}
.ws63{word-spacing:8.613333pt;}
.ws2e{word-spacing:8.917333pt;}
.ws1d{word-spacing:9.322667pt;}
.ws9d{word-spacing:9.424000pt;}
.ws69{word-spacing:9.525333pt;}
.ws6a{word-spacing:9.626667pt;}
._7{margin-left:-6.966400pt;}
._3{margin-left:-5.990400pt;}
._5{margin-left:-4.610400pt;}
._4{margin-left:-3.524000pt;}
._8{margin-left:-2.516000pt;}
._1{margin-left:-1.535200pt;}
._6{width:1.601600pt;}
._2{width:2.662400pt;}
._b{width:4.129333pt;}
._a{width:5.026133pt;}
._9{width:6.247200pt;}
._c{width:7.503200pt;}
._0{width:8.846400pt;}
.fs2{font-size:29.538667pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.457600pt;}
.y23{bottom:49.790933pt;}
.y5c{bottom:72.396133pt;}
.yb0{bottom:76.933733pt;}
.y7d{bottom:79.865333pt;}
.y59{bottom:79.867067pt;}
.y22{bottom:79.955200pt;}
.yaf{bottom:89.733733pt;}
.y7c{bottom:94.532000pt;}
.y58{bottom:94.533733pt;}
.yae{bottom:102.533733pt;}
.y7f{bottom:109.198667pt;}
.y57{bottom:109.200400pt;}
.y21{bottom:111.762800pt;}
.yad{bottom:115.333600pt;}
.y7b{bottom:123.865333pt;}
.y56{bottom:123.867067pt;}
.y20{bottom:126.429467pt;}
.yac{bottom:128.133733pt;}
.y7e{bottom:138.532000pt;}
.y55{bottom:138.533733pt;}
.yab{bottom:140.933733pt;}
.y1f{bottom:141.096133pt;}
.y7a{bottom:153.198667pt;}
.y54{bottom:153.200400pt;}
.yaa{bottom:153.733733pt;}
.y1e{bottom:155.762800pt;}
.ya9{bottom:166.533733pt;}
.y79{bottom:167.865333pt;}
.y53{bottom:167.867067pt;}
.y1d{bottom:170.429467pt;}
.ya8{bottom:179.333600pt;}
.y78{bottom:182.532000pt;}
.y52{bottom:182.533733pt;}
.y1c{bottom:185.096133pt;}
.ya7{bottom:192.133733pt;}
.y77{bottom:197.198667pt;}
.y51{bottom:197.200400pt;}
.y1b{bottom:199.762800pt;}
.ya6{bottom:204.933733pt;}
.y76{bottom:211.865333pt;}
.y50{bottom:211.867067pt;}
.y1a{bottom:214.429467pt;}
.ya5{bottom:217.733733pt;}
.y75{bottom:226.532000pt;}
.y5b{bottom:226.533733pt;}
.y19{bottom:229.096133pt;}
.ya4{bottom:230.533733pt;}
.y74{bottom:241.198667pt;}
.y4f{bottom:241.200400pt;}
.ya3{bottom:243.333733pt;}
.y18{bottom:243.762800pt;}
.y73{bottom:255.865333pt;}
.y5a{bottom:255.867067pt;}
.ya2{bottom:256.133733pt;}
.y17{bottom:258.429467pt;}
.ya1{bottom:268.933733pt;}
.y72{bottom:270.532000pt;}
.y4e{bottom:270.533733pt;}
.y16{bottom:273.096133pt;}
.ya0{bottom:281.733733pt;}
.y71{bottom:285.198667pt;}
.y4d{bottom:285.200400pt;}
.y9f{bottom:294.533733pt;}
.y70{bottom:299.865333pt;}
.y4c{bottom:299.867067pt;}
.y15{bottom:302.429467pt;}
.y9e{bottom:307.333733pt;}
.y6f{bottom:314.532000pt;}
.y4b{bottom:314.533733pt;}
.y9d{bottom:320.133733pt;}
.y6e{bottom:329.198667pt;}
.y4a{bottom:329.200400pt;}
.y9c{bottom:332.933733pt;}
.y14{bottom:342.826000pt;}
.y6d{bottom:343.865333pt;}
.y49{bottom:343.867067pt;}
.y9b{bottom:345.733733pt;}
.y6c{bottom:358.532000pt;}
.y48{bottom:358.533733pt;}
.y13{bottom:368.831333pt;}
.y9a{bottom:371.333733pt;}
.y6b{bottom:373.198667pt;}
.y47{bottom:373.200400pt;}
.y12{bottom:383.498000pt;}
.y99{bottom:384.133733pt;}
.y6a{bottom:387.865333pt;}
.y46{bottom:387.867067pt;}
.y98{bottom:396.933733pt;}
.y11{bottom:398.164667pt;}
.y69{bottom:402.532000pt;}
.y45{bottom:402.533733pt;}
.y97{bottom:409.733733pt;}
.y10{bottom:412.831333pt;}
.y68{bottom:417.198667pt;}
.y44{bottom:417.200400pt;}
.y96{bottom:422.533733pt;}
.yf{bottom:427.498000pt;}
.y67{bottom:431.865333pt;}
.y43{bottom:431.867067pt;}
.y95{bottom:435.333733pt;}
.ye{bottom:442.164667pt;}
.y66{bottom:446.532000pt;}
.y42{bottom:446.533733pt;}
.y94{bottom:448.133733pt;}
.yd{bottom:456.831333pt;}
.y93{bottom:460.933733pt;}
.y65{bottom:461.198667pt;}
.y41{bottom:461.200400pt;}
.yc{bottom:471.498000pt;}
.y92{bottom:473.733733pt;}
.y64{bottom:475.865333pt;}
.y40{bottom:475.867067pt;}
.yb{bottom:486.164667pt;}
.y91{bottom:486.533733pt;}
.y63{bottom:490.532000pt;}
.y3f{bottom:490.533733pt;}
.y90{bottom:499.333733pt;}
.ya{bottom:500.831333pt;}
.y62{bottom:505.198667pt;}
.y3e{bottom:505.200400pt;}
.y8f{bottom:512.133733pt;}
.y9{bottom:515.498000pt;}
.y61{bottom:519.865333pt;}
.y3d{bottom:519.867067pt;}
.y8e{bottom:524.933733pt;}
.y8{bottom:530.164667pt;}
.y60{bottom:534.532000pt;}
.y3c{bottom:534.533733pt;}
.y8d{bottom:537.733733pt;}
.y7{bottom:544.831333pt;}
.y5f{bottom:549.198667pt;}
.y3b{bottom:549.200400pt;}
.y8c{bottom:550.533733pt;}
.y8b{bottom:563.333733pt;}
.y5e{bottom:563.865333pt;}
.y3a{bottom:563.867067pt;}
.yc8{bottom:564.108000pt;}
.y6{bottom:570.836533pt;}
.y8a{bottom:576.133733pt;}
.yc7{bottom:576.908000pt;}
.y5d{bottom:578.532000pt;}
.y39{bottom:578.533733pt;}
.y89{bottom:588.933733pt;}
.yc6{bottom:589.708000pt;}
.y38{bottom:593.200400pt;}
.y88{bottom:601.733733pt;}
.yc5{bottom:602.508000pt;}
.y37{bottom:607.867067pt;}
.y87{bottom:614.533733pt;}
.yc4{bottom:615.308000pt;}
.y36{bottom:622.533733pt;}
.y5{bottom:626.644400pt;}
.y86{bottom:627.333733pt;}
.yc3{bottom:628.108000pt;}
.y35{bottom:637.200400pt;}
.y85{bottom:640.133733pt;}
.yc2{bottom:640.908000pt;}
.y34{bottom:651.867067pt;}
.y84{bottom:652.933733pt;}
.y4{bottom:653.311067pt;}
.yc1{bottom:653.708000pt;}
.y83{bottom:665.733733pt;}
.yc0{bottom:666.508000pt;}
.y33{bottom:666.533733pt;}
.y82{bottom:678.533733pt;}
.ybf{bottom:679.308000pt;}
.y32{bottom:681.200400pt;}
.y3{bottom:690.670933pt;}
.ybe{bottom:692.108000pt;}
.y31{bottom:695.867067pt;}
.ybd{bottom:704.908000pt;}
.y81{bottom:706.000267pt;}
.y30{bottom:710.533733pt;}
.ybc{bottom:717.708000pt;}
.y2f{bottom:725.200400pt;}
.ybb{bottom:730.508000pt;}
.y80{bottom:735.333600pt;}
.y2e{bottom:739.867067pt;}
.yba{bottom:743.308000pt;}
.y2d{bottom:754.533733pt;}
.y24{bottom:755.622800pt;}
.yb9{bottom:756.108000pt;}
.yb8{bottom:768.908000pt;}
.y2c{bottom:769.200400pt;}
.yb7{bottom:781.708000pt;}
.y2b{bottom:783.867067pt;}
.yb6{bottom:794.508000pt;}
.y2a{bottom:798.533733pt;}
.yb5{bottom:807.308000pt;}
.y29{bottom:813.200400pt;}
.yb4{bottom:820.108000pt;}
.y28{bottom:827.867067pt;}
.yb3{bottom:832.908000pt;}
.y27{bottom:842.533733pt;}
.yb2{bottom:845.708000pt;}
.y26{bottom:857.200400pt;}
.yb1{bottom:858.508000pt;}
.y2{bottom:890.415200pt;}
.y25{bottom:892.354533pt;}
.h8{height:24.000000pt;}
.hb{height:28.437500pt;}
.h7{height:29.708333pt;}
.h6{height:33.769531pt;}
.h9{height:35.278646pt;}
.hd{height:35.546875pt;}
.h2{height:36.000000pt;}
.ha{height:36.559637pt;}
.hc{height:38.000000pt;}
.h5{height:43.547353pt;}
.h3{height:45.966651pt;}
.h4{height:116.126276pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x5{left:32.133333pt;}
.x6{left:40.218267pt;}
.x7{left:47.266667pt;}
.x3{left:75.601600pt;}
.x8{left:79.400000pt;}
.x4{left:90.736533pt;}
.x9{left:94.533333pt;}
.xa{left:552.344800pt;}
.x1{left:626.736533pt;}
.x2{left:630.318133pt;}
}




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