
    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_d008efeb49a7998956fab4d2.woff2')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_100d941cab53dc306c98163e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_4869eb037486bef6026e2ac4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_fd861a63bf3bac1f82398f75.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2f34b0dacc87d2e027cd344f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_16255672b25bff8371008e9f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e867c930d88c6860d699dfc1.woff2')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_d008efeb49a7998956fab4d2.woff2')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_100d941cab53dc306c98163e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_953a53e0e0e9cc8fd4ac660a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_100d941cab53dc306c98163e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_85714f1319471d0519f02551.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.105957;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_cf65c757686ae0fe3ce6d546.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ecf2c88918013d3b3c438c4f.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:20.579400px;}
.v1{vertical-align:27.971400px;}
.lse{letter-spacing:-1.998000px;}
.ls4{letter-spacing:-1.680000px;}
.lsa{letter-spacing:-1.236000px;}
.ls8{letter-spacing:-0.618000px;}
.ls3{letter-spacing:-0.420000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.618000px;}
.ls1{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.092000px;}
.ls2{letter-spacing:1.755000px;}
.ls7{letter-spacing:1.932000px;}
.ls9{letter-spacing:1.980000px;}
.ls0{letter-spacing:2.160000px;}
.lsd{letter-spacing:23.612400px;}
.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;}
}
.ws0{word-spacing:-15.450000px;}
.ws64{word-spacing:-13.500000px;}
.wse3{word-spacing:-11.502000px;}
.wsf6{word-spacing:-9.331800px;}
.ws40{word-spacing:-9.007350px;}
.ws65{word-spacing:-7.870500px;}
.ws67{word-spacing:-7.786800px;}
.ws1a{word-spacing:-5.685600px;}
.ws1f{word-spacing:-5.314800px;}
.ws10b{word-spacing:-5.253000px;}
.ws89{word-spacing:-5.129400px;}
.wsd0{word-spacing:-5.067600px;}
.wsf9{word-spacing:-5.005800px;}
.ws85{word-spacing:-4.758600px;}
.wscf{word-spacing:-4.511400px;}
.wsed{word-spacing:-4.449600px;}
.ws8d{word-spacing:-4.387800px;}
.ws49{word-spacing:-4.320000px;}
.wsde{word-spacing:-4.212000px;}
.ws4a{word-spacing:-4.158000px;}
.ws17{word-spacing:-3.893400px;}
.ws29{word-spacing:-3.672000px;}
.ws43{word-spacing:-3.522600px;}
.ws2d{word-spacing:-3.399000px;}
.ws38{word-spacing:-3.337200px;}
.ws21{word-spacing:-3.151800px;}
.wsd4{word-spacing:-3.028200px;}
.wsdb{word-spacing:-2.966400px;}
.ws36{word-spacing:-2.904600px;}
.wsf4{word-spacing:-2.842800px;}
.ws4b{word-spacing:-2.808000px;}
.wsbe{word-spacing:-2.719200px;}
.ws10{word-spacing:-2.657400px;}
.wsc{word-spacing:-2.592000px;}
.wscc{word-spacing:-2.533800px;}
.ws1b{word-spacing:-2.472000px;}
.ws51{word-spacing:-2.430000px;}
.ws10d{word-spacing:-2.410200px;}
.ws24{word-spacing:-2.348400px;}
.wsee{word-spacing:-2.286600px;}
.ws8c{word-spacing:-2.224800px;}
.ws3{word-spacing:-2.160000px;}
.wsfe{word-spacing:-2.101200px;}
.wsd5{word-spacing:-2.039400px;}
.ws37{word-spacing:-1.915800px;}
.ws6{word-spacing:-1.860000px;}
.wsc8{word-spacing:-1.854000px;}
.ws9a{word-spacing:-1.836000px;}
.ws66{word-spacing:-1.730400px;}
.wse8{word-spacing:-1.668600px;}
.wsa1{word-spacing:-1.620000px;}
.ws79{word-spacing:-1.545000px;}
.ws45{word-spacing:-1.421400px;}
.ws32{word-spacing:-1.359600px;}
.wsa0{word-spacing:-1.350000px;}
.ws7a{word-spacing:-1.236000px;}
.ws7c{word-spacing:-1.174200px;}
.ws5e{word-spacing:-1.112400px;}
.ws22{word-spacing:-1.050600px;}
.ws99{word-spacing:-0.918000px;}
.ws103{word-spacing:-0.865200px;}
.ws52{word-spacing:-0.756000px;}
.ws70{word-spacing:-0.741600px;}
.ws12{word-spacing:-0.679800px;}
.ws34{word-spacing:-0.618000px;}
.ws2{word-spacing:-0.588000px;}
.ws98{word-spacing:-0.486000px;}
.wsfb{word-spacing:-0.247200px;}
.ws91{word-spacing:-0.123600px;}
.ws9{word-spacing:-0.120000px;}
.ws50{word-spacing:-0.108000px;}
.wsc5{word-spacing:-0.061800px;}
.ws1{word-spacing:0.000000px;}
.ws7d{word-spacing:0.123600px;}
.ws55{word-spacing:0.185400px;}
.ws81{word-spacing:0.309000px;}
.ws4c{word-spacing:0.324000px;}
.ws6e{word-spacing:0.370800px;}
.ws96{word-spacing:0.432600px;}
.ws92{word-spacing:0.494400px;}
.wsbf{word-spacing:0.556200px;}
.wsa{word-spacing:0.618000px;}
.ws28{word-spacing:0.702000px;}
.wsb6{word-spacing:0.741600px;}
.wsc4{word-spacing:0.803400px;}
.wsd{word-spacing:0.864000px;}
.wsef{word-spacing:0.988800px;}
.wsf5{word-spacing:1.050600px;}
.ws14{word-spacing:1.112400px;}
.wsb1{word-spacing:1.174200px;}
.ws15{word-spacing:1.236000px;}
.wsa8{word-spacing:1.242000px;}
.ws4d{word-spacing:1.296000px;}
.ws82{word-spacing:1.359600px;}
.ws3e{word-spacing:1.404000px;}
.ws1c{word-spacing:1.421400px;}
.ws10e{word-spacing:1.545000px;}
.wsc7{word-spacing:1.668600px;}
.ws60{word-spacing:1.674000px;}
.ws5{word-spacing:1.680000px;}
.ws3c{word-spacing:1.728000px;}
.ws73{word-spacing:1.782000px;}
.ws95{word-spacing:1.915800px;}
.ws7{word-spacing:1.920000px;}
.ws74{word-spacing:1.998000px;}
.wsc2{word-spacing:2.101200px;}
.ws3d{word-spacing:2.106000px;}
.wsc1{word-spacing:2.163000px;}
.wsf1{word-spacing:2.224800px;}
.ws6d{word-spacing:2.268000px;}
.wsb8{word-spacing:2.348400px;}
.ws61{word-spacing:2.376000px;}
.wsd2{word-spacing:2.533800px;}
.wsd7{word-spacing:2.595600px;}
.ws102{word-spacing:2.657400px;}
.ws13{word-spacing:2.781000px;}
.ws2f{word-spacing:2.842800px;}
.ws5c{word-spacing:2.904600px;}
.wsc0{word-spacing:2.966400px;}
.ws48{word-spacing:3.024000px;}
.wsab{word-spacing:3.028200px;}
.wsdf{word-spacing:3.078000px;}
.wsb7{word-spacing:3.090000px;}
.ws19{word-spacing:3.151800px;}
.ws26{word-spacing:3.213600px;}
.ws2c{word-spacing:3.294000px;}
.ws3b{word-spacing:3.337200px;}
.wsfd{word-spacing:3.399000px;}
.wsb0{word-spacing:3.522600px;}
.ws59{word-spacing:3.584400px;}
.ws7f{word-spacing:3.646200px;}
.ws108{word-spacing:3.769800px;}
.ws8f{word-spacing:3.831600px;}
.ws33{word-spacing:3.893400px;}
.wsa7{word-spacing:3.942000px;}
.ws10a{word-spacing:3.955200px;}
.ws4e{word-spacing:4.017000px;}
.ws111{word-spacing:4.078800px;}
.ws5d{word-spacing:4.202400px;}
.ws113{word-spacing:4.264200px;}
.ws83{word-spacing:4.326000px;}
.ws93{word-spacing:4.387800px;}
.ws46{word-spacing:4.449600px;}
.wse0{word-spacing:4.511400px;}
.ws53{word-spacing:4.806000px;}
.ws56{word-spacing:4.820400px;}
.ws71{word-spacing:4.914000px;}
.ws5b{word-spacing:4.944000px;}
.ws5f{word-spacing:5.076000px;}
.wsbc{word-spacing:5.129400px;}
.ws7e{word-spacing:5.191200px;}
.ws8{word-spacing:5.280000px;}
.wsd3{word-spacing:5.314800px;}
.ws4f{word-spacing:5.346000px;}
.ws63{word-spacing:5.562000px;}
.wsec{word-spacing:5.685600px;}
.ws90{word-spacing:5.809200px;}
.ws47{word-spacing:5.832000px;}
.wseb{word-spacing:5.871000px;}
.ws2e{word-spacing:5.932800px;}
.wsaa{word-spacing:5.994600px;}
.ws9e{word-spacing:6.048000px;}
.ws11{word-spacing:6.180000px;}
.ws9b{word-spacing:6.427200px;}
.ws1d{word-spacing:6.489000px;}
.wsf0{word-spacing:6.550800px;}
.ws10f{word-spacing:6.612600px;}
.ws9f{word-spacing:6.642000px;}
.wsa5{word-spacing:6.750000px;}
.ws8e{word-spacing:6.798000px;}
.wsb9{word-spacing:6.859800px;}
.ws31{word-spacing:6.996000px;}
.wse5{word-spacing:7.045200px;}
.wsda{word-spacing:7.107000px;}
.ws72{word-spacing:7.128000px;}
.wsdc{word-spacing:7.168800px;}
.wsb5{word-spacing:7.230600px;}
.wsf2{word-spacing:7.292400px;}
.wsfc{word-spacing:7.354200px;}
.ws104{word-spacing:7.416000px;}
.wse2{word-spacing:7.477800px;}
.ws23{word-spacing:7.539600px;}
.ws44{word-spacing:7.663200px;}
.wsa3{word-spacing:7.725000px;}
.wsd1{word-spacing:7.848600px;}
.ws42{word-spacing:8.034000px;}
.wsdd{word-spacing:8.100000px;}
.wsba{word-spacing:8.219400px;}
.ws97{word-spacing:8.424000px;}
.wsa9{word-spacing:8.586000px;}
.ws80{word-spacing:8.590200px;}
.ws87{word-spacing:8.775600px;}
.ws78{word-spacing:8.899200px;}
.ws5a{word-spacing:8.961000px;}
.ws9c{word-spacing:9.146400px;}
.ws8a{word-spacing:9.270000px;}
.ws2b{word-spacing:9.288000px;}
.wsc3{word-spacing:9.331800px;}
.wsc9{word-spacing:9.393600px;}
.ws8b{word-spacing:9.396000px;}
.wsf7{word-spacing:9.517200px;}
.ws110{word-spacing:9.579000px;}
.ws20{word-spacing:9.826200px;}
.wsd6{word-spacing:9.888000px;}
.ws9d{word-spacing:10.044000px;}
.ws25{word-spacing:10.135200px;}
.wsd8{word-spacing:10.197000px;}
.ws106{word-spacing:10.320600px;}
.wsea{word-spacing:10.506000px;}
.ws7b{word-spacing:10.567800px;}
.ws54{word-spacing:10.629600px;}
.wsc6{word-spacing:10.691400px;}
.ws3f{word-spacing:11.124000px;}
.wsbb{word-spacing:11.185800px;}
.ws100{word-spacing:11.247600px;}
.ws57{word-spacing:11.680200px;}
.ws41{word-spacing:11.989200px;}
.ws68{word-spacing:12.051000px;}
.ws109{word-spacing:12.360000px;}
.wsbd{word-spacing:12.421800px;}
.ws69{word-spacing:12.792600px;}
.ws18{word-spacing:12.978000px;}
.ws6f{word-spacing:13.163400px;}
.wsce{word-spacing:13.225200px;}
.ws75{word-spacing:13.348800px;}
.ws27{word-spacing:13.410600px;}
.ws16{word-spacing:13.534200px;}
.wse{word-spacing:13.536000px;}
.ws2a{word-spacing:13.554000px;}
.ws101{word-spacing:13.596000px;}
.ws58{word-spacing:13.781400px;}
.wsf8{word-spacing:14.028600px;}
.wse1{word-spacing:14.090400px;}
.wsb2{word-spacing:14.152200px;}
.ws6c{word-spacing:14.202000px;}
.wsca{word-spacing:14.337600px;}
.wscd{word-spacing:14.399400px;}
.ws88{word-spacing:15.079200px;}
.ws30{word-spacing:15.450000px;}
.wse6{word-spacing:15.944400px;}
.ws39{word-spacing:16.068000px;}
.wse9{word-spacing:16.253400px;}
.ws1e{word-spacing:16.315200px;}
.wsfa{word-spacing:16.500600px;}
.wse4{word-spacing:16.624200px;}
.wsb{word-spacing:16.752000px;}
.wsa4{word-spacing:17.172000px;}
.wsa2{word-spacing:17.304000px;}
.wscb{word-spacing:17.489400px;}
.wsd9{word-spacing:17.551200px;}
.ws6b{word-spacing:17.604000px;}
.ws76{word-spacing:17.736600px;}
.ws77{word-spacing:17.860200px;}
.wsa6{word-spacing:17.874000px;}
.wsb3{word-spacing:18.045600px;}
.wsff{word-spacing:18.601800px;}
.wse7{word-spacing:18.725400px;}
.ws6a{word-spacing:19.219800px;}
.ws10c{word-spacing:19.405200px;}
.ws112{word-spacing:19.528800px;}
.ws4{word-spacing:19.680000px;}
.ws107{word-spacing:19.714200px;}
.wsae{word-spacing:19.837800px;}
.wsaf{word-spacing:19.961400px;}
.ws62{word-spacing:20.641200px;}
.ws35{word-spacing:21.012000px;}
.ws86{word-spacing:21.073800px;}
.ws3a{word-spacing:21.382800px;}
.wsad{word-spacing:22.989600px;}
.wsb4{word-spacing:23.978400px;}
.ws105{word-spacing:26.141400px;}
.ws94{word-spacing:28.489800px;}
.wsf3{word-spacing:33.001200px;}
.ws84{word-spacing:37.203600px;}
.wsac{word-spacing:37.636200px;}
.wsf{word-spacing:314.283000px;}
._8{margin-left:-13.810800px;}
._10{margin-left:-7.916580px;}
._14{margin-left:-6.666180px;}
._e{margin-left:-5.020200px;}
._4{margin-left:-3.948000px;}
._7{margin-left:-2.707200px;}
._0{margin-left:-1.549800px;}
._6{width:1.105500px;}
._3{width:2.424000px;}
._5{width:4.146000px;}
._2{width:5.718000px;}
._f{width:6.740820px;}
._b{width:7.853760px;}
._c{width:8.857260px;}
._a{width:10.017720px;}
._d{width:11.508360px;}
._1{width:13.158000px;}
._9{width:14.277600px;}
._13{width:16.772520px;}
._15{width:18.156840px;}
._16{width:19.794540px;}
._12{width:21.271560px;}
._11{width:22.550820px;}
._17{width:23.613780px;}
._1a{width:24.806520px;}
._1c{width:25.858080px;}
._18{width:27.018960px;}
._19{width:28.193160px;}
._1b{width:42.246480px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fsa{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{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;}
.y1f{bottom:76.500000px;}
.yf0{bottom:78.956100px;}
.ycd{bottom:83.456100px;}
.y45{bottom:84.869100px;}
.y90{bottom:86.336100px;}
.y6d{bottom:87.416100px;}
.y131{bottom:88.676100px;}
.y117{bottom:88.723500px;}
.yb2{bottom:89.216100px;}
.y1e{bottom:90.000000px;}
.yc2{bottom:91.376100px;}
.y118{bottom:92.636100px;}
.y81{bottom:93.996000px;}
.yef{bottom:95.156100px;}
.ycc{bottom:99.656100px;}
.y44{bottom:103.409100px;}
.y1d{bottom:103.500000px;}
.y6c{bottom:103.616100px;}
.y8f{bottom:104.876100px;}
.y130{bottom:107.216100px;}
.y116{bottom:107.263500px;}
.y119{bottom:107.496000px;}
.yb1{bottom:107.756100px;}
.yc1{bottom:109.916100px;}
.yd0{bottom:111.176100px;}
.ycb{bottom:115.856100px;}
.y1c{bottom:117.000000px;}
.y6b{bottom:119.816100px;}
.ya5{bottom:120.996000px;}
.y43{bottom:121.949100px;}
.y8e{bottom:123.416100px;}
.y12f{bottom:125.756100px;}
.y115{bottom:125.803500px;}
.yb0{bottom:126.296100px;}
.y80{bottom:128.456100px;}
.y155{bottom:128.981100px;}
.yee{bottom:129.356100px;}
.ycf{bottom:129.716100px;}
.y1b{bottom:130.500000px;}
.yca{bottom:132.056100px;}
.y6a{bottom:136.016100px;}
.y42{bottom:140.489100px;}
.y8d{bottom:141.956100px;}
.y1a{bottom:144.000000px;}
.y12e{bottom:144.296100px;}
.y114{bottom:144.343500px;}
.yaf{bottom:144.836100px;}
.y7f{bottom:146.996100px;}
.y154{bottom:147.521100px;}
.ya4{bottom:147.896100px;}
.yce{bottom:148.256100px;}
.y69{bottom:152.216100px;}
.y41{bottom:159.029100px;}
.y8c{bottom:160.496100px;}
.y19{bottom:161.496000px;}
.ybf{bottom:161.756100px;}
.y12d{bottom:162.836100px;}
.y113{bottom:162.883500px;}
.yae{bottom:163.376100px;}
.ya3{bottom:164.096100px;}
.y7e{bottom:165.536100px;}
.y153{bottom:166.061100px;}
.yed{bottom:166.436100px;}
.yc9{bottom:166.796100px;}
.y68{bottom:168.416100px;}
.y40{bottom:177.569100px;}
.ybe{bottom:177.956100px;}
.y8b{bottom:179.036100px;}
.ya2{bottom:180.296100px;}
.y12c{bottom:181.376100px;}
.y112{bottom:181.423500px;}
.yad{bottom:181.916100px;}
.y7d{bottom:184.076100px;}
.y152{bottom:184.601100px;}
.yec{bottom:184.976100px;}
.yc8{bottom:185.336100px;}
.ybd{bottom:194.156100px;}
.y3f{bottom:196.109100px;}
.ya1{bottom:196.496100px;}
.y12b{bottom:199.916100px;}
.y111{bottom:199.963500px;}
.yac{bottom:200.456100px;}
.y67{bottom:202.616100px;}
.y151{bottom:203.141100px;}
.yeb{bottom:203.516100px;}
.yc7{bottom:203.876100px;}
.ybc{bottom:210.356100px;}
.ya0{bottom:212.696100px;}
.y3e{bottom:214.649100px;}
.y8a{bottom:215.576100px;}
.y12a{bottom:218.456100px;}
.y110{bottom:218.503500px;}
.y66{bottom:221.156100px;}
.y150{bottom:221.681100px;}
.yea{bottom:222.056100px;}
.yc6{bottom:222.416100px;}
.ybb{bottom:226.556100px;}
.y9f{bottom:228.896100px;}
.y89{bottom:231.776100px;}
.y3d{bottom:233.189100px;}
.y18{bottom:235.647750px;}
.yab{bottom:236.996100px;}
.y10f{bottom:237.043500px;}
.y65{bottom:239.696100px;}
.y14f{bottom:240.221100px;}
.ye9{bottom:240.596100px;}
.yc5{bottom:240.956100px;}
.yba{bottom:242.756100px;}
.y88{bottom:247.976100px;}
.y3c{bottom:251.729100px;}
.yaa{bottom:253.196100px;}
.y17{bottom:254.187900px;}
.y129{bottom:255.536100px;}
.y10e{bottom:255.583500px;}
.y64{bottom:258.236100px;}
.y14e{bottom:258.761100px;}
.yb9{bottom:258.956100px;}
.ye8{bottom:259.136100px;}
.yc4{bottom:259.496100px;}
.y9e{bottom:263.096100px;}
.y87{bottom:264.176100px;}
.ya9{bottom:269.396100px;}
.y3b{bottom:270.269100px;}
.y128{bottom:274.076100px;}
.y10d{bottom:274.123500px;}
.y63{bottom:276.776100px;}
.yc3{bottom:278.036100px;}
.y86{bottom:280.376100px;}
.y9d{bottom:281.636100px;}
.ya8{bottom:285.596100px;}
.y3a{bottom:288.809100px;}
.y16{bottom:290.727750px;}
.y127{bottom:292.616100px;}
.y10c{bottom:292.663500px;}
.yb8{bottom:293.156100px;}
.y14d{bottom:295.301100px;}
.y62{bottom:295.316100px;}
.ye7{bottom:295.676100px;}
.yc0{bottom:296.576100px;}
.y9c{bottom:300.176100px;}
.ya7{bottom:301.796100px;}
.y39{bottom:307.349100px;}
.y15{bottom:308.727750px;}
.y10b{bottom:311.203500px;}
.yb7{bottom:311.696100px;}
.ye6{bottom:311.876100px;}
.y61{bottom:313.856100px;}
.y85{bottom:315.116100px;}
.ya6{bottom:317.996100px;}
.y9b{bottom:318.716100px;}
.y38{bottom:325.889100px;}
.y14{bottom:326.727750px;}
.ye5{bottom:328.076100px;}
.y126{bottom:329.696100px;}
.y10a{bottom:329.743500px;}
.yb6{bottom:330.236100px;}
.y60{bottom:332.396100px;}
.y84{bottom:333.656100px;}
.y9a{bottom:337.256100px;}
.ye4{bottom:344.276100px;}
.y37{bottom:344.429100px;}
.y13{bottom:344.727750px;}
.y125{bottom:345.896100px;}
.y109{bottom:348.283500px;}
.yb5{bottom:348.776100px;}
.y5f{bottom:350.936100px;}
.y14c{bottom:352.181100px;}
.y83{bottom:352.196100px;}
.ye3{bottom:360.476100px;}
.y124{bottom:362.096100px;}
.y12{bottom:362.727750px;}
.y36{bottom:362.969100px;}
.y108{bottom:366.823500px;}
.yb4{bottom:367.316100px;}
.y5e{bottom:369.476100px;}
.y14b{bottom:370.721100px;}
.y82{bottom:370.736100px;}
.y99{bottom:373.796100px;}
.ye2{bottom:376.676100px;}
.y123{bottom:378.296100px;}
.y11{bottom:380.727750px;}
.y35{bottom:381.509100px;}
.y107{bottom:385.363500px;}
.yb3{bottom:385.856100px;}
.y5d{bottom:388.016100px;}
.y14a{bottom:389.261100px;}
.y7c{bottom:389.276100px;}
.y98{bottom:389.996100px;}
.ye1{bottom:392.876100px;}
.y122{bottom:394.496100px;}
.y10{bottom:398.727750px;}
.y34{bottom:400.049100px;}
.y106{bottom:403.903500px;}
.y97{bottom:406.196100px;}
.y5c{bottom:406.556100px;}
.y149{bottom:407.801100px;}
.y7b{bottom:407.816100px;}
.ye0{bottom:409.076100px;}
.y121{bottom:410.696100px;}
.yf{bottom:416.727750px;}
.y33{bottom:418.589100px;}
.y96{bottom:422.396100px;}
.y105{bottom:422.443500px;}
.y5b{bottom:425.096100px;}
.y148{bottom:426.341100px;}
.y7a{bottom:426.356100px;}
.ye{bottom:434.727750px;}
.y32{bottom:437.129100px;}
.y95{bottom:438.596100px;}
.y104{bottom:440.983500px;}
.ydf{bottom:443.276100px;}
.y5a{bottom:443.636100px;}
.y147{bottom:444.881100px;}
.y79{bottom:444.896100px;}
.yd{bottom:452.727750px;}
.y94{bottom:454.796100px;}
.y31{bottom:455.669100px;}
.y103{bottom:459.523500px;}
.yde{bottom:461.816100px;}
.y59{bottom:462.176100px;}
.y146{bottom:463.421100px;}
.y78{bottom:463.436100px;}
.y93{bottom:470.996100px;}
.y30{bottom:474.208950px;}
.y102{bottom:478.063500px;}
.yc{bottom:478.227750px;}
.ydd{bottom:480.356100px;}
.y58{bottom:480.716100px;}
.y145{bottom:481.961100px;}
.y77{bottom:481.976100px;}
.y92{bottom:487.196100px;}
.y2f{bottom:492.749100px;}
.y101{bottom:496.603500px;}
.ydc{bottom:498.896100px;}
.y57{bottom:499.256100px;}
.y144{bottom:500.501100px;}
.y76{bottom:500.516100px;}
.y91{bottom:503.396100px;}
.y100{bottom:515.143500px;}
.ydb{bottom:517.436100px;}
.y56{bottom:517.796100px;}
.y143{bottom:519.041100px;}
.y75{bottom:519.056100px;}
.y2e{bottom:529.829100px;}
.yff{bottom:533.683500px;}
.yda{bottom:535.976100px;}
.y55{bottom:536.336100px;}
.yb{bottom:537.027900px;}
.y142{bottom:537.581100px;}
.y74{bottom:537.596100px;}
.yfe{bottom:552.223500px;}
.yd9{bottom:554.516100px;}
.y54{bottom:554.876100px;}
.y141{bottom:556.121100px;}
.y73{bottom:556.136100px;}
.ya{bottom:558.627750px;}
.yfd{bottom:570.763500px;}
.yd8{bottom:573.056100px;}
.y53{bottom:573.416100px;}
.y140{bottom:574.661100px;}
.y72{bottom:574.676100px;}
.y2d{bottom:585.629100px;}
.yfc{bottom:589.303500px;}
.y120{bottom:591.956100px;}
.y13f{bottom:593.201100px;}
.y71{bottom:593.216100px;}
.y9{bottom:594.327750px;}
.y2c{bottom:604.169100px;}
.yfb{bottom:607.843500px;}
.yd7{bottom:609.596100px;}
.y52{bottom:610.496100px;}
.y13e{bottom:611.741100px;}
.y70{bottom:611.756100px;}
.y8{bottom:621.027900px;}
.yd6{bottom:625.796100px;}
.y11f{bottom:629.036100px;}
.y13d{bottom:630.281100px;}
.y6f{bottom:630.296100px;}
.y2b{bottom:641.249100px;}
.yd5{bottom:641.996100px;}
.yfa{bottom:644.923500px;}
.y11e{bottom:647.576100px;}
.y13c{bottom:648.821100px;}
.y6e{bottom:648.836100px;}
.yd4{bottom:658.196100px;}
.y2a{bottom:659.789100px;}
.yf9{bottom:661.123500px;}
.y11d{bottom:666.116100px;}
.y13b{bottom:667.361100px;}
.y51{bottom:667.376100px;}
.yd3{bottom:674.396100px;}
.yf8{bottom:677.323500px;}
.y29{bottom:678.329100px;}
.y7{bottom:682.227750px;}
.y11c{bottom:684.656100px;}
.y13a{bottom:685.901100px;}
.y50{bottom:685.916100px;}
.yd2{bottom:690.596100px;}
.yf7{bottom:693.523500px;}
.y28{bottom:696.869100px;}
.y11b{bottom:703.196100px;}
.y139{bottom:704.441100px;}
.y4f{bottom:704.456100px;}
.yd1{bottom:706.796100px;}
.y6{bottom:709.227750px;}
.y27{bottom:715.409100px;}
.y138{bottom:722.981100px;}
.y4e{bottom:722.996100px;}
.yf6{bottom:728.263500px;}
.y26{bottom:733.949100px;}
.y11a{bottom:740.276100px;}
.y137{bottom:741.521100px;}
.y4d{bottom:741.536100px;}
.yf5{bottom:746.803500px;}
.y25{bottom:752.489100px;}
.y136{bottom:760.061100px;}
.y4c{bottom:760.076100px;}
.yf4{bottom:765.343500px;}
.y24{bottom:771.028950px;}
.y5{bottom:772.227750px;}
.y135{bottom:778.601100px;}
.y4b{bottom:778.616100px;}
.y23{bottom:789.569100px;}
.y134{bottom:797.141100px;}
.y4a{bottom:797.156100px;}
.y4{bottom:799.227750px;}
.yf3{bottom:802.423500px;}
.y22{bottom:808.109100px;}
.y133{bottom:815.681100px;}
.y49{bottom:815.696100px;}
.yf2{bottom:818.623500px;}
.y3{bottom:826.227750px;}
.y21{bottom:834.149100px;}
.y132{bottom:834.220950px;}
.y48{bottom:834.236100px;}
.yf1{bottom:834.823500px;}
.y47{bottom:893.470500px;}
.y46{bottom:905.470500px;}
.y20{bottom:906.525150px;}
.ha{height:19.443961px;}
.h2{height:29.182617px;}
.hb{height:33.351562px;}
.hf{height:37.019531px;}
.h6{height:37.520508px;}
.hc{height:41.660156px;}
.h8{height:41.689453px;}
.h11{height:42.909961px;}
.h9{height:42.940137px;}
.h7{height:45.181641px;}
.he{height:45.595907px;}
.h10{height:45.613500px;}
.hd{height:47.671875px;}
.h5{height:58.365234px;}
.h4{height:61.998332px;}
.h3{height:75.041016px;}
.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;}
.xb{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.xc{left:99.373050px;}
.x3{left:106.663050px;}
.x9{left:114.945750px;}
.xa{left:258.925200px;}
.x8{left:541.222350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:18.292800pt;}
.v1{vertical-align:24.863467pt;}
.lse{letter-spacing:-1.776000pt;}
.ls4{letter-spacing:-1.493333pt;}
.lsa{letter-spacing:-1.098667pt;}
.ls8{letter-spacing:-0.549333pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.549333pt;}
.ls1{letter-spacing:0.960000pt;}
.ls5{letter-spacing:0.970667pt;}
.ls2{letter-spacing:1.560000pt;}
.ls7{letter-spacing:1.717333pt;}
.ls9{letter-spacing:1.760000pt;}
.ls0{letter-spacing:1.920000pt;}
.lsd{letter-spacing:20.988800pt;}
.ws0{word-spacing:-13.733333pt;}
.ws64{word-spacing:-12.000000pt;}
.wse3{word-spacing:-10.224000pt;}
.wsf6{word-spacing:-8.294933pt;}
.ws40{word-spacing:-8.006533pt;}
.ws65{word-spacing:-6.996000pt;}
.ws67{word-spacing:-6.921600pt;}
.ws1a{word-spacing:-5.053867pt;}
.ws1f{word-spacing:-4.724267pt;}
.ws10b{word-spacing:-4.669333pt;}
.ws89{word-spacing:-4.559467pt;}
.wsd0{word-spacing:-4.504533pt;}
.wsf9{word-spacing:-4.449600pt;}
.ws85{word-spacing:-4.229867pt;}
.wscf{word-spacing:-4.010133pt;}
.wsed{word-spacing:-3.955200pt;}
.ws8d{word-spacing:-3.900267pt;}
.ws49{word-spacing:-3.840000pt;}
.wsde{word-spacing:-3.744000pt;}
.ws4a{word-spacing:-3.696000pt;}
.ws17{word-spacing:-3.460800pt;}
.ws29{word-spacing:-3.264000pt;}
.ws43{word-spacing:-3.131200pt;}
.ws2d{word-spacing:-3.021333pt;}
.ws38{word-spacing:-2.966400pt;}
.ws21{word-spacing:-2.801600pt;}
.wsd4{word-spacing:-2.691733pt;}
.wsdb{word-spacing:-2.636800pt;}
.ws36{word-spacing:-2.581867pt;}
.wsf4{word-spacing:-2.526933pt;}
.ws4b{word-spacing:-2.496000pt;}
.wsbe{word-spacing:-2.417067pt;}
.ws10{word-spacing:-2.362133pt;}
.wsc{word-spacing:-2.304000pt;}
.wscc{word-spacing:-2.252267pt;}
.ws1b{word-spacing:-2.197333pt;}
.ws51{word-spacing:-2.160000pt;}
.ws10d{word-spacing:-2.142400pt;}
.ws24{word-spacing:-2.087467pt;}
.wsee{word-spacing:-2.032533pt;}
.ws8c{word-spacing:-1.977600pt;}
.ws3{word-spacing:-1.920000pt;}
.wsfe{word-spacing:-1.867733pt;}
.wsd5{word-spacing:-1.812800pt;}
.ws37{word-spacing:-1.702933pt;}
.ws6{word-spacing:-1.653333pt;}
.wsc8{word-spacing:-1.648000pt;}
.ws9a{word-spacing:-1.632000pt;}
.ws66{word-spacing:-1.538133pt;}
.wse8{word-spacing:-1.483200pt;}
.wsa1{word-spacing:-1.440000pt;}
.ws79{word-spacing:-1.373333pt;}
.ws45{word-spacing:-1.263467pt;}
.ws32{word-spacing:-1.208533pt;}
.wsa0{word-spacing:-1.200000pt;}
.ws7a{word-spacing:-1.098667pt;}
.ws7c{word-spacing:-1.043733pt;}
.ws5e{word-spacing:-0.988800pt;}
.ws22{word-spacing:-0.933867pt;}
.ws99{word-spacing:-0.816000pt;}
.ws103{word-spacing:-0.769067pt;}
.ws52{word-spacing:-0.672000pt;}
.ws70{word-spacing:-0.659200pt;}
.ws12{word-spacing:-0.604267pt;}
.ws34{word-spacing:-0.549333pt;}
.ws2{word-spacing:-0.522667pt;}
.ws98{word-spacing:-0.432000pt;}
.wsfb{word-spacing:-0.219733pt;}
.ws91{word-spacing:-0.109867pt;}
.ws9{word-spacing:-0.106667pt;}
.ws50{word-spacing:-0.096000pt;}
.wsc5{word-spacing:-0.054933pt;}
.ws1{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.109867pt;}
.ws55{word-spacing:0.164800pt;}
.ws81{word-spacing:0.274667pt;}
.ws4c{word-spacing:0.288000pt;}
.ws6e{word-spacing:0.329600pt;}
.ws96{word-spacing:0.384533pt;}
.ws92{word-spacing:0.439467pt;}
.wsbf{word-spacing:0.494400pt;}
.wsa{word-spacing:0.549333pt;}
.ws28{word-spacing:0.624000pt;}
.wsb6{word-spacing:0.659200pt;}
.wsc4{word-spacing:0.714133pt;}
.wsd{word-spacing:0.768000pt;}
.wsef{word-spacing:0.878933pt;}
.wsf5{word-spacing:0.933867pt;}
.ws14{word-spacing:0.988800pt;}
.wsb1{word-spacing:1.043733pt;}
.ws15{word-spacing:1.098667pt;}
.wsa8{word-spacing:1.104000pt;}
.ws4d{word-spacing:1.152000pt;}
.ws82{word-spacing:1.208533pt;}
.ws3e{word-spacing:1.248000pt;}
.ws1c{word-spacing:1.263467pt;}
.ws10e{word-spacing:1.373333pt;}
.wsc7{word-spacing:1.483200pt;}
.ws60{word-spacing:1.488000pt;}
.ws5{word-spacing:1.493333pt;}
.ws3c{word-spacing:1.536000pt;}
.ws73{word-spacing:1.584000pt;}
.ws95{word-spacing:1.702933pt;}
.ws7{word-spacing:1.706667pt;}
.ws74{word-spacing:1.776000pt;}
.wsc2{word-spacing:1.867733pt;}
.ws3d{word-spacing:1.872000pt;}
.wsc1{word-spacing:1.922667pt;}
.wsf1{word-spacing:1.977600pt;}
.ws6d{word-spacing:2.016000pt;}
.wsb8{word-spacing:2.087467pt;}
.ws61{word-spacing:2.112000pt;}
.wsd2{word-spacing:2.252267pt;}
.wsd7{word-spacing:2.307200pt;}
.ws102{word-spacing:2.362133pt;}
.ws13{word-spacing:2.472000pt;}
.ws2f{word-spacing:2.526933pt;}
.ws5c{word-spacing:2.581867pt;}
.wsc0{word-spacing:2.636800pt;}
.ws48{word-spacing:2.688000pt;}
.wsab{word-spacing:2.691733pt;}
.wsdf{word-spacing:2.736000pt;}
.wsb7{word-spacing:2.746667pt;}
.ws19{word-spacing:2.801600pt;}
.ws26{word-spacing:2.856533pt;}
.ws2c{word-spacing:2.928000pt;}
.ws3b{word-spacing:2.966400pt;}
.wsfd{word-spacing:3.021333pt;}
.wsb0{word-spacing:3.131200pt;}
.ws59{word-spacing:3.186133pt;}
.ws7f{word-spacing:3.241067pt;}
.ws108{word-spacing:3.350933pt;}
.ws8f{word-spacing:3.405867pt;}
.ws33{word-spacing:3.460800pt;}
.wsa7{word-spacing:3.504000pt;}
.ws10a{word-spacing:3.515733pt;}
.ws4e{word-spacing:3.570667pt;}
.ws111{word-spacing:3.625600pt;}
.ws5d{word-spacing:3.735467pt;}
.ws113{word-spacing:3.790400pt;}
.ws83{word-spacing:3.845333pt;}
.ws93{word-spacing:3.900267pt;}
.ws46{word-spacing:3.955200pt;}
.wse0{word-spacing:4.010133pt;}
.ws53{word-spacing:4.272000pt;}
.ws56{word-spacing:4.284800pt;}
.ws71{word-spacing:4.368000pt;}
.ws5b{word-spacing:4.394667pt;}
.ws5f{word-spacing:4.512000pt;}
.wsbc{word-spacing:4.559467pt;}
.ws7e{word-spacing:4.614400pt;}
.ws8{word-spacing:4.693333pt;}
.wsd3{word-spacing:4.724267pt;}
.ws4f{word-spacing:4.752000pt;}
.ws63{word-spacing:4.944000pt;}
.wsec{word-spacing:5.053867pt;}
.ws90{word-spacing:5.163733pt;}
.ws47{word-spacing:5.184000pt;}
.wseb{word-spacing:5.218667pt;}
.ws2e{word-spacing:5.273600pt;}
.wsaa{word-spacing:5.328533pt;}
.ws9e{word-spacing:5.376000pt;}
.ws11{word-spacing:5.493333pt;}
.ws9b{word-spacing:5.713067pt;}
.ws1d{word-spacing:5.768000pt;}
.wsf0{word-spacing:5.822933pt;}
.ws10f{word-spacing:5.877867pt;}
.ws9f{word-spacing:5.904000pt;}
.wsa5{word-spacing:6.000000pt;}
.ws8e{word-spacing:6.042667pt;}
.wsb9{word-spacing:6.097600pt;}
.ws31{word-spacing:6.218667pt;}
.wse5{word-spacing:6.262400pt;}
.wsda{word-spacing:6.317333pt;}
.ws72{word-spacing:6.336000pt;}
.wsdc{word-spacing:6.372267pt;}
.wsb5{word-spacing:6.427200pt;}
.wsf2{word-spacing:6.482133pt;}
.wsfc{word-spacing:6.537067pt;}
.ws104{word-spacing:6.592000pt;}
.wse2{word-spacing:6.646933pt;}
.ws23{word-spacing:6.701867pt;}
.ws44{word-spacing:6.811733pt;}
.wsa3{word-spacing:6.866667pt;}
.wsd1{word-spacing:6.976533pt;}
.ws42{word-spacing:7.141333pt;}
.wsdd{word-spacing:7.200000pt;}
.wsba{word-spacing:7.306133pt;}
.ws97{word-spacing:7.488000pt;}
.wsa9{word-spacing:7.632000pt;}
.ws80{word-spacing:7.635733pt;}
.ws87{word-spacing:7.800533pt;}
.ws78{word-spacing:7.910400pt;}
.ws5a{word-spacing:7.965333pt;}
.ws9c{word-spacing:8.130133pt;}
.ws8a{word-spacing:8.240000pt;}
.ws2b{word-spacing:8.256000pt;}
.wsc3{word-spacing:8.294933pt;}
.wsc9{word-spacing:8.349867pt;}
.ws8b{word-spacing:8.352000pt;}
.wsf7{word-spacing:8.459733pt;}
.ws110{word-spacing:8.514667pt;}
.ws20{word-spacing:8.734400pt;}
.wsd6{word-spacing:8.789333pt;}
.ws9d{word-spacing:8.928000pt;}
.ws25{word-spacing:9.009067pt;}
.wsd8{word-spacing:9.064000pt;}
.ws106{word-spacing:9.173867pt;}
.wsea{word-spacing:9.338667pt;}
.ws7b{word-spacing:9.393600pt;}
.ws54{word-spacing:9.448533pt;}
.wsc6{word-spacing:9.503467pt;}
.ws3f{word-spacing:9.888000pt;}
.wsbb{word-spacing:9.942933pt;}
.ws100{word-spacing:9.997867pt;}
.ws57{word-spacing:10.382400pt;}
.ws41{word-spacing:10.657067pt;}
.ws68{word-spacing:10.712000pt;}
.ws109{word-spacing:10.986667pt;}
.wsbd{word-spacing:11.041600pt;}
.ws69{word-spacing:11.371200pt;}
.ws18{word-spacing:11.536000pt;}
.ws6f{word-spacing:11.700800pt;}
.wsce{word-spacing:11.755733pt;}
.ws75{word-spacing:11.865600pt;}
.ws27{word-spacing:11.920533pt;}
.ws16{word-spacing:12.030400pt;}
.wse{word-spacing:12.032000pt;}
.ws2a{word-spacing:12.048000pt;}
.ws101{word-spacing:12.085333pt;}
.ws58{word-spacing:12.250133pt;}
.wsf8{word-spacing:12.469867pt;}
.wse1{word-spacing:12.524800pt;}
.wsb2{word-spacing:12.579733pt;}
.ws6c{word-spacing:12.624000pt;}
.wsca{word-spacing:12.744533pt;}
.wscd{word-spacing:12.799467pt;}
.ws88{word-spacing:13.403733pt;}
.ws30{word-spacing:13.733333pt;}
.wse6{word-spacing:14.172800pt;}
.ws39{word-spacing:14.282667pt;}
.wse9{word-spacing:14.447467pt;}
.ws1e{word-spacing:14.502400pt;}
.wsfa{word-spacing:14.667200pt;}
.wse4{word-spacing:14.777067pt;}
.wsb{word-spacing:14.890667pt;}
.wsa4{word-spacing:15.264000pt;}
.wsa2{word-spacing:15.381333pt;}
.wscb{word-spacing:15.546133pt;}
.wsd9{word-spacing:15.601067pt;}
.ws6b{word-spacing:15.648000pt;}
.ws76{word-spacing:15.765867pt;}
.ws77{word-spacing:15.875733pt;}
.wsa6{word-spacing:15.888000pt;}
.wsb3{word-spacing:16.040533pt;}
.wsff{word-spacing:16.534933pt;}
.wse7{word-spacing:16.644800pt;}
.ws6a{word-spacing:17.084267pt;}
.ws10c{word-spacing:17.249067pt;}
.ws112{word-spacing:17.358933pt;}
.ws4{word-spacing:17.493333pt;}
.ws107{word-spacing:17.523733pt;}
.wsae{word-spacing:17.633600pt;}
.wsaf{word-spacing:17.743467pt;}
.ws62{word-spacing:18.347733pt;}
.ws35{word-spacing:18.677333pt;}
.ws86{word-spacing:18.732267pt;}
.ws3a{word-spacing:19.006933pt;}
.wsad{word-spacing:20.435200pt;}
.wsb4{word-spacing:21.314133pt;}
.ws105{word-spacing:23.236800pt;}
.ws94{word-spacing:25.324267pt;}
.wsf3{word-spacing:29.334400pt;}
.ws84{word-spacing:33.069867pt;}
.wsac{word-spacing:33.454400pt;}
.wsf{word-spacing:279.362667pt;}
._8{margin-left:-12.276267pt;}
._10{margin-left:-7.036960pt;}
._14{margin-left:-5.925493pt;}
._e{margin-left:-4.462400pt;}
._4{margin-left:-3.509333pt;}
._7{margin-left:-2.406400pt;}
._0{margin-left:-1.377600pt;}
._6{width:0.982667pt;}
._3{width:2.154667pt;}
._5{width:3.685333pt;}
._2{width:5.082667pt;}
._f{width:5.991840pt;}
._b{width:6.981120pt;}
._c{width:7.873120pt;}
._a{width:8.904640pt;}
._d{width:10.229653pt;}
._1{width:11.696000pt;}
._9{width:12.691200pt;}
._13{width:14.908907pt;}
._15{width:16.139413pt;}
._16{width:17.595147pt;}
._12{width:18.908053pt;}
._11{width:20.045173pt;}
._17{width:20.990027pt;}
._1a{width:22.050240pt;}
._1c{width:22.984960pt;}
._18{width:24.016853pt;}
._19{width:25.060587pt;}
._1b{width:37.552427pt;}
.fs8{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{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;}
.y1f{bottom:68.000000pt;}
.yf0{bottom:70.183200pt;}
.ycd{bottom:74.183200pt;}
.y45{bottom:75.439200pt;}
.y90{bottom:76.743200pt;}
.y6d{bottom:77.703200pt;}
.y131{bottom:78.823200pt;}
.y117{bottom:78.865333pt;}
.yb2{bottom:79.303200pt;}
.y1e{bottom:80.000000pt;}
.yc2{bottom:81.223200pt;}
.y118{bottom:82.343200pt;}
.y81{bottom:83.552000pt;}
.yef{bottom:84.583200pt;}
.ycc{bottom:88.583200pt;}
.y44{bottom:91.919200pt;}
.y1d{bottom:92.000000pt;}
.y6c{bottom:92.103200pt;}
.y8f{bottom:93.223200pt;}
.y130{bottom:95.303200pt;}
.y116{bottom:95.345333pt;}
.y119{bottom:95.552000pt;}
.yb1{bottom:95.783200pt;}
.yc1{bottom:97.703200pt;}
.yd0{bottom:98.823200pt;}
.ycb{bottom:102.983200pt;}
.y1c{bottom:104.000000pt;}
.y6b{bottom:106.503200pt;}
.ya5{bottom:107.552000pt;}
.y43{bottom:108.399200pt;}
.y8e{bottom:109.703200pt;}
.y12f{bottom:111.783200pt;}
.y115{bottom:111.825333pt;}
.yb0{bottom:112.263200pt;}
.y80{bottom:114.183200pt;}
.y155{bottom:114.649867pt;}
.yee{bottom:114.983200pt;}
.ycf{bottom:115.303200pt;}
.y1b{bottom:116.000000pt;}
.yca{bottom:117.383200pt;}
.y6a{bottom:120.903200pt;}
.y42{bottom:124.879200pt;}
.y8d{bottom:126.183200pt;}
.y1a{bottom:128.000000pt;}
.y12e{bottom:128.263200pt;}
.y114{bottom:128.305333pt;}
.yaf{bottom:128.743200pt;}
.y7f{bottom:130.663200pt;}
.y154{bottom:131.129867pt;}
.ya4{bottom:131.463200pt;}
.yce{bottom:131.783200pt;}
.y69{bottom:135.303200pt;}
.y41{bottom:141.359200pt;}
.y8c{bottom:142.663200pt;}
.y19{bottom:143.552000pt;}
.ybf{bottom:143.783200pt;}
.y12d{bottom:144.743200pt;}
.y113{bottom:144.785333pt;}
.yae{bottom:145.223200pt;}
.ya3{bottom:145.863200pt;}
.y7e{bottom:147.143200pt;}
.y153{bottom:147.609867pt;}
.yed{bottom:147.943200pt;}
.yc9{bottom:148.263200pt;}
.y68{bottom:149.703200pt;}
.y40{bottom:157.839200pt;}
.ybe{bottom:158.183200pt;}
.y8b{bottom:159.143200pt;}
.ya2{bottom:160.263200pt;}
.y12c{bottom:161.223200pt;}
.y112{bottom:161.265333pt;}
.yad{bottom:161.703200pt;}
.y7d{bottom:163.623200pt;}
.y152{bottom:164.089867pt;}
.yec{bottom:164.423200pt;}
.yc8{bottom:164.743200pt;}
.ybd{bottom:172.583200pt;}
.y3f{bottom:174.319200pt;}
.ya1{bottom:174.663200pt;}
.y12b{bottom:177.703200pt;}
.y111{bottom:177.745333pt;}
.yac{bottom:178.183200pt;}
.y67{bottom:180.103200pt;}
.y151{bottom:180.569867pt;}
.yeb{bottom:180.903200pt;}
.yc7{bottom:181.223200pt;}
.ybc{bottom:186.983200pt;}
.ya0{bottom:189.063200pt;}
.y3e{bottom:190.799200pt;}
.y8a{bottom:191.623200pt;}
.y12a{bottom:194.183200pt;}
.y110{bottom:194.225333pt;}
.y66{bottom:196.583200pt;}
.y150{bottom:197.049867pt;}
.yea{bottom:197.383200pt;}
.yc6{bottom:197.703200pt;}
.ybb{bottom:201.383200pt;}
.y9f{bottom:203.463200pt;}
.y89{bottom:206.023200pt;}
.y3d{bottom:207.279200pt;}
.y18{bottom:209.464667pt;}
.yab{bottom:210.663200pt;}
.y10f{bottom:210.705333pt;}
.y65{bottom:213.063200pt;}
.y14f{bottom:213.529867pt;}
.ye9{bottom:213.863200pt;}
.yc5{bottom:214.183200pt;}
.yba{bottom:215.783200pt;}
.y88{bottom:220.423200pt;}
.y3c{bottom:223.759200pt;}
.yaa{bottom:225.063200pt;}
.y17{bottom:225.944800pt;}
.y129{bottom:227.143200pt;}
.y10e{bottom:227.185333pt;}
.y64{bottom:229.543200pt;}
.y14e{bottom:230.009867pt;}
.yb9{bottom:230.183200pt;}
.ye8{bottom:230.343200pt;}
.yc4{bottom:230.663200pt;}
.y9e{bottom:233.863200pt;}
.y87{bottom:234.823200pt;}
.ya9{bottom:239.463200pt;}
.y3b{bottom:240.239200pt;}
.y128{bottom:243.623200pt;}
.y10d{bottom:243.665333pt;}
.y63{bottom:246.023200pt;}
.yc3{bottom:247.143200pt;}
.y86{bottom:249.223200pt;}
.y9d{bottom:250.343200pt;}
.ya8{bottom:253.863200pt;}
.y3a{bottom:256.719200pt;}
.y16{bottom:258.424667pt;}
.y127{bottom:260.103200pt;}
.y10c{bottom:260.145333pt;}
.yb8{bottom:260.583200pt;}
.y14d{bottom:262.489867pt;}
.y62{bottom:262.503200pt;}
.ye7{bottom:262.823200pt;}
.yc0{bottom:263.623200pt;}
.y9c{bottom:266.823200pt;}
.ya7{bottom:268.263200pt;}
.y39{bottom:273.199200pt;}
.y15{bottom:274.424667pt;}
.y10b{bottom:276.625333pt;}
.yb7{bottom:277.063200pt;}
.ye6{bottom:277.223200pt;}
.y61{bottom:278.983200pt;}
.y85{bottom:280.103200pt;}
.ya6{bottom:282.663200pt;}
.y9b{bottom:283.303200pt;}
.y38{bottom:289.679200pt;}
.y14{bottom:290.424667pt;}
.ye5{bottom:291.623200pt;}
.y126{bottom:293.063200pt;}
.y10a{bottom:293.105333pt;}
.yb6{bottom:293.543200pt;}
.y60{bottom:295.463200pt;}
.y84{bottom:296.583200pt;}
.y9a{bottom:299.783200pt;}
.ye4{bottom:306.023200pt;}
.y37{bottom:306.159200pt;}
.y13{bottom:306.424667pt;}
.y125{bottom:307.463200pt;}
.y109{bottom:309.585333pt;}
.yb5{bottom:310.023200pt;}
.y5f{bottom:311.943200pt;}
.y14c{bottom:313.049867pt;}
.y83{bottom:313.063200pt;}
.ye3{bottom:320.423200pt;}
.y124{bottom:321.863200pt;}
.y12{bottom:322.424667pt;}
.y36{bottom:322.639200pt;}
.y108{bottom:326.065333pt;}
.yb4{bottom:326.503200pt;}
.y5e{bottom:328.423200pt;}
.y14b{bottom:329.529867pt;}
.y82{bottom:329.543200pt;}
.y99{bottom:332.263200pt;}
.ye2{bottom:334.823200pt;}
.y123{bottom:336.263200pt;}
.y11{bottom:338.424667pt;}
.y35{bottom:339.119200pt;}
.y107{bottom:342.545333pt;}
.yb3{bottom:342.983200pt;}
.y5d{bottom:344.903200pt;}
.y14a{bottom:346.009867pt;}
.y7c{bottom:346.023200pt;}
.y98{bottom:346.663200pt;}
.ye1{bottom:349.223200pt;}
.y122{bottom:350.663200pt;}
.y10{bottom:354.424667pt;}
.y34{bottom:355.599200pt;}
.y106{bottom:359.025333pt;}
.y97{bottom:361.063200pt;}
.y5c{bottom:361.383200pt;}
.y149{bottom:362.489867pt;}
.y7b{bottom:362.503200pt;}
.ye0{bottom:363.623200pt;}
.y121{bottom:365.063200pt;}
.yf{bottom:370.424667pt;}
.y33{bottom:372.079200pt;}
.y96{bottom:375.463200pt;}
.y105{bottom:375.505333pt;}
.y5b{bottom:377.863200pt;}
.y148{bottom:378.969867pt;}
.y7a{bottom:378.983200pt;}
.ye{bottom:386.424667pt;}
.y32{bottom:388.559200pt;}
.y95{bottom:389.863200pt;}
.y104{bottom:391.985333pt;}
.ydf{bottom:394.023200pt;}
.y5a{bottom:394.343200pt;}
.y147{bottom:395.449867pt;}
.y79{bottom:395.463200pt;}
.yd{bottom:402.424667pt;}
.y94{bottom:404.263200pt;}
.y31{bottom:405.039200pt;}
.y103{bottom:408.465333pt;}
.yde{bottom:410.503200pt;}
.y59{bottom:410.823200pt;}
.y146{bottom:411.929867pt;}
.y78{bottom:411.943200pt;}
.y93{bottom:418.663200pt;}
.y30{bottom:421.519067pt;}
.y102{bottom:424.945333pt;}
.yc{bottom:425.091333pt;}
.ydd{bottom:426.983200pt;}
.y58{bottom:427.303200pt;}
.y145{bottom:428.409867pt;}
.y77{bottom:428.423200pt;}
.y92{bottom:433.063200pt;}
.y2f{bottom:437.999200pt;}
.y101{bottom:441.425333pt;}
.ydc{bottom:443.463200pt;}
.y57{bottom:443.783200pt;}
.y144{bottom:444.889867pt;}
.y76{bottom:444.903200pt;}
.y91{bottom:447.463200pt;}
.y100{bottom:457.905333pt;}
.ydb{bottom:459.943200pt;}
.y56{bottom:460.263200pt;}
.y143{bottom:461.369867pt;}
.y75{bottom:461.383200pt;}
.y2e{bottom:470.959200pt;}
.yff{bottom:474.385333pt;}
.yda{bottom:476.423200pt;}
.y55{bottom:476.743200pt;}
.yb{bottom:477.358133pt;}
.y142{bottom:477.849867pt;}
.y74{bottom:477.863200pt;}
.yfe{bottom:490.865333pt;}
.yd9{bottom:492.903200pt;}
.y54{bottom:493.223200pt;}
.y141{bottom:494.329867pt;}
.y73{bottom:494.343200pt;}
.ya{bottom:496.558000pt;}
.yfd{bottom:507.345333pt;}
.yd8{bottom:509.383200pt;}
.y53{bottom:509.703200pt;}
.y140{bottom:510.809867pt;}
.y72{bottom:510.823200pt;}
.y2d{bottom:520.559200pt;}
.yfc{bottom:523.825333pt;}
.y120{bottom:526.183200pt;}
.y13f{bottom:527.289867pt;}
.y71{bottom:527.303200pt;}
.y9{bottom:528.291333pt;}
.y2c{bottom:537.039200pt;}
.yfb{bottom:540.305333pt;}
.yd7{bottom:541.863200pt;}
.y52{bottom:542.663200pt;}
.y13e{bottom:543.769867pt;}
.y70{bottom:543.783200pt;}
.y8{bottom:552.024800pt;}
.yd6{bottom:556.263200pt;}
.y11f{bottom:559.143200pt;}
.y13d{bottom:560.249867pt;}
.y6f{bottom:560.263200pt;}
.y2b{bottom:569.999200pt;}
.yd5{bottom:570.663200pt;}
.yfa{bottom:573.265333pt;}
.y11e{bottom:575.623200pt;}
.y13c{bottom:576.729867pt;}
.y6e{bottom:576.743200pt;}
.yd4{bottom:585.063200pt;}
.y2a{bottom:586.479200pt;}
.yf9{bottom:587.665333pt;}
.y11d{bottom:592.103200pt;}
.y13b{bottom:593.209867pt;}
.y51{bottom:593.223200pt;}
.yd3{bottom:599.463200pt;}
.yf8{bottom:602.065333pt;}
.y29{bottom:602.959200pt;}
.y7{bottom:606.424667pt;}
.y11c{bottom:608.583200pt;}
.y13a{bottom:609.689867pt;}
.y50{bottom:609.703200pt;}
.yd2{bottom:613.863200pt;}
.yf7{bottom:616.465333pt;}
.y28{bottom:619.439200pt;}
.y11b{bottom:625.063200pt;}
.y139{bottom:626.169867pt;}
.y4f{bottom:626.183200pt;}
.yd1{bottom:628.263200pt;}
.y6{bottom:630.424667pt;}
.y27{bottom:635.919200pt;}
.y138{bottom:642.649867pt;}
.y4e{bottom:642.663200pt;}
.yf6{bottom:647.345333pt;}
.y26{bottom:652.399200pt;}
.y11a{bottom:658.023200pt;}
.y137{bottom:659.129867pt;}
.y4d{bottom:659.143200pt;}
.yf5{bottom:663.825333pt;}
.y25{bottom:668.879200pt;}
.y136{bottom:675.609867pt;}
.y4c{bottom:675.623200pt;}
.yf4{bottom:680.305333pt;}
.y24{bottom:685.359067pt;}
.y5{bottom:686.424667pt;}
.y135{bottom:692.089867pt;}
.y4b{bottom:692.103200pt;}
.y23{bottom:701.839200pt;}
.y134{bottom:708.569867pt;}
.y4a{bottom:708.583200pt;}
.y4{bottom:710.424667pt;}
.yf3{bottom:713.265333pt;}
.y22{bottom:718.319200pt;}
.y133{bottom:725.049867pt;}
.y49{bottom:725.063200pt;}
.yf2{bottom:727.665333pt;}
.y3{bottom:734.424667pt;}
.y21{bottom:741.465867pt;}
.y132{bottom:741.529733pt;}
.y48{bottom:741.543200pt;}
.yf1{bottom:742.065333pt;}
.y47{bottom:794.196000pt;}
.y46{bottom:804.862667pt;}
.y20{bottom:805.800133pt;}
.ha{height:17.283521pt;}
.h2{height:25.940104pt;}
.hb{height:29.645833pt;}
.hf{height:32.906250pt;}
.h6{height:33.351562pt;}
.hc{height:37.031250pt;}
.h8{height:37.057292pt;}
.h11{height:38.142187pt;}
.h9{height:38.169010pt;}
.h7{height:40.161458pt;}
.he{height:40.529695pt;}
.h10{height:40.545333pt;}
.hd{height:42.375000pt;}
.h5{height:51.880208pt;}
.h4{height:55.109628pt;}
.h3{height:66.703125pt;}
.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;}
.xb{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.xc{left:88.331600pt;}
.x3{left:94.811600pt;}
.x9{left:102.174000pt;}
.xa{left:230.155733pt;}
.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; }
  