
    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_a817e2dd61d4d64481a65a0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_5d270a6298e0a6c7ca64dfce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.687000;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_46d37e0cbd5a22b954c9d2bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687000;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_ca535487d5c1d422830f54d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_eeae1af72ff9c116b50308c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889000;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_185209600d79021530acb697.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f9227945b115dd181c28eaf7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_beb3c6e4c0b47dffbc856342.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_636222d1a3e92df01f927f54.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_1520b167693cbbe5ea921eb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999000;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_b03a0589b8f54cfaac26d6c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.674000;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_aee221a10213e9433feecce0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_61b76a9c16accbd377d652e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_981b65dd215c6af2fe434439.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887000;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_6ea77d38e07443b81387a352.woff2')format("woff");}.fff{font-family:fff;line-height:0.872000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_78042fded204c1a38f646994.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0b596d79875aae3c606bddae.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6f1ece6091488232381b5aed.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.820000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ced58c465deb722f1b59f03c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_559741e932ebae5f6a1f5f39.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.705000;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:ff15;src:url('chunks/assets/font_39e7ba53bdee44a86b9d7cdf.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.719000;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:ff16;src:url('chunks/assets/font_baa5059bebd28a5677bdf7cf.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.686000;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:ff17;src:url('chunks/assets/font_24abd41a151ecc031803ceaa.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.683000;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:ff18;src:url('chunks/assets/font_c988f23fbc4c1c6b5bf01373.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-22.855143px;}
.v7{vertical-align:-12.552628px;}
.v3{vertical-align:-8.970449px;}
.v4{vertical-align:-5.976299px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:24.679234px;}
.v1{vertical-align:26.035302px;}
.v8{vertical-align:40.442022px;}
.v6{vertical-align:120.156007px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.002383px;}
.ls3{letter-spacing:0.004200px;}
.lse{letter-spacing:0.008984px;}
.ls10{letter-spacing:0.014641px;}
.ls9{letter-spacing:0.026689px;}
.ls17{letter-spacing:0.032224px;}
.ls19{letter-spacing:0.032690px;}
.lsb{letter-spacing:0.034111px;}
.ls13{letter-spacing:0.034485px;}
.lsd{letter-spacing:0.038224px;}
.ls15{letter-spacing:0.040111px;}
.lsf{letter-spacing:0.044161px;}
.ls8{letter-spacing:0.050161px;}
.ls2{letter-spacing:2.986268px;}
.ls1{letter-spacing:2.987411px;}
.ls0{letter-spacing:2.993411px;}
.ls1b{letter-spacing:3.005597px;}
.ls16{letter-spacing:3.011066px;}
.ls1e{letter-spacing:3.011597px;}
.ls1d{letter-spacing:3.026585px;}
.ls14{letter-spacing:3.032585px;}
.lsc{letter-spacing:4.758211px;}
.ls1a{letter-spacing:5.432470px;}
.lsa{letter-spacing:5.438470px;}
.ls23{letter-spacing:13.333025px;}
.ls7{letter-spacing:19.907195px;}
.ls12{letter-spacing:20.079232px;}
.ls25{letter-spacing:20.125483px;}
.ls26{letter-spacing:21.799283px;}
.ls21{letter-spacing:23.821550px;}
.ls20{letter-spacing:25.099448px;}
.ls22{letter-spacing:27.001543px;}
.ls27{letter-spacing:28.301615px;}
.ls6{letter-spacing:29.894078px;}
.ls11{letter-spacing:62.786586px;}
.ls1c{letter-spacing:69.739837px;}
.ls1f{letter-spacing:793.124004px;}
.ls18{letter-spacing:885.391714px;}
.ls24{letter-spacing:1003.732343px;}
.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;}
}
.ws4{word-spacing:-20.085740px;}
.ws1c{word-spacing:-16.738005px;}
.ws6{word-spacing:-15.064305px;}
.wsb9{word-spacing:-3.407380px;}
.ws26{word-spacing:-3.108487px;}
.ws64{word-spacing:-3.048708px;}
.wsb5{word-spacing:-2.809594px;}
.ws70{word-spacing:-2.391144px;}
.wsa0{word-spacing:-2.331365px;}
.wsb0{word-spacing:-2.211808px;}
.ws6e{word-spacing:-1.972693px;}
.ws76{word-spacing:-1.912915px;}
.ws9f{word-spacing:-1.793358px;}
.ws46{word-spacing:-1.733579px;}
.ws77{word-spacing:-1.614022px;}
.ws75{word-spacing:-1.494465px;}
.ws7f{word-spacing:-1.478570px;}
.ws78{word-spacing:-1.255350px;}
.ws2a{word-spacing:-1.076015px;}
.ws29{word-spacing:-1.016236px;}
.ws6c{word-spacing:-0.836900px;}
.ws2c{word-spacing:-0.717343px;}
.ws2b{word-spacing:-0.657564px;}
.ws23{word-spacing:-0.538007px;}
.ws79{word-spacing:-0.298893px;}
.ws50{word-spacing:-0.179336px;}
.ws1e{word-spacing:-0.059779px;}
.ws32{word-spacing:0.000000px;}
.wscd{word-spacing:0.239114px;}
.ws9{word-spacing:0.322807px;}
.ws90{word-spacing:0.478229px;}
.ws8f{word-spacing:0.536289px;}
.ws8e{word-spacing:0.538007px;}
.wsd{word-spacing:0.591812px;}
.ws2d{word-spacing:0.597786px;}
.ws2e{word-spacing:0.657564px;}
.wsa9{word-spacing:0.717343px;}
.wsa{word-spacing:0.753215px;}
.ws5c{word-spacing:0.896679px;}
.ws24{word-spacing:1.016236px;}
.ws1b{word-spacing:1.076015px;}
.wsae{word-spacing:1.135793px;}
.wsc1{word-spacing:1.195572px;}
.ws2f{word-spacing:1.255350px;}
.ws30{word-spacing:1.315129px;}
.ws3f{word-spacing:1.374908px;}
.ws3b{word-spacing:1.614022px;}
.ws6b{word-spacing:1.793358px;}
.ws39{word-spacing:1.853136px;}
.ws31{word-spacing:1.912915px;}
.ws34{word-spacing:1.972693px;}
.wsd2{word-spacing:2.032472px;}
.wsbb{word-spacing:2.152029px;}
.ws9e{word-spacing:2.211808px;}
.ws51{word-spacing:2.271586px;}
.ws87{word-spacing:2.331365px;}
.wsaf{word-spacing:2.391144px;}
.ws72{word-spacing:2.570479px;}
.ws73{word-spacing:2.575821px;}
.ws21{word-spacing:2.630258px;}
.ws42{word-spacing:2.690036px;}
.ws9a{word-spacing:2.988929px;}
.ws54{word-spacing:3.108487px;}
.wsc2{word-spacing:3.109825px;}
.wsf{word-spacing:3.120463px;}
.ws1d{word-spacing:3.168265px;}
.ws55{word-spacing:3.168472px;}
.wsc6{word-spacing:3.171166px;}
.wsc4{word-spacing:3.171565px;}
.wscb{word-spacing:3.172102px;}
.ws35{word-spacing:3.228044px;}
.ws4a{word-spacing:3.228851px;}
.ws4b{word-spacing:3.229407px;}
.ws53{word-spacing:3.282236px;}
.ws52{word-spacing:3.287822px;}
.ws17{word-spacing:3.335668px;}
.ws27{word-spacing:3.347601px;}
.ws14{word-spacing:3.389469px;}
.ws9b{word-spacing:3.407380px;}
.ws57{word-spacing:3.467158px;}
.wsc5{word-spacing:3.586715px;}
.ws4d{word-spacing:3.646494px;}
.ws10{word-spacing:3.658474px;}
.ws85{word-spacing:3.766051px;}
.ws44{word-spacing:3.825830px;}
.ws13{word-spacing:3.873678px;}
.ws63{word-spacing:3.885608px;}
.wsb{word-spacing:4.035082px;}
.ws33{word-spacing:4.064944px;}
.ws28{word-spacing:4.124723px;}
.ws94{word-spacing:4.184501px;}
.ws65{word-spacing:4.244280px;}
.ws5a{word-spacing:4.363837px;}
.ws37{word-spacing:4.423616px;}
.ws36{word-spacing:4.483394px;}
.ws20{word-spacing:4.543173px;}
.wsbc{word-spacing:4.602951px;}
.wsba{word-spacing:4.662730px;}
.ws22{word-spacing:4.722509px;}
.wsa1{word-spacing:4.782287px;}
.ws6f{word-spacing:4.842066px;}
.ws38{word-spacing:4.961623px;}
.ws8b{word-spacing:4.967680px;}
.ws12{word-spacing:5.003501px;}
.ws8d{word-spacing:5.021401px;}
.ws8c{word-spacing:5.028782px;}
.wsc{word-spacing:5.057302px;}
.ws3c{word-spacing:5.081180px;}
.wsbe{word-spacing:5.200737px;}
.ws74{word-spacing:5.260516px;}
.ws3e{word-spacing:5.320294px;}
.ws4c{word-spacing:5.439852px;}
.ws6d{word-spacing:5.499630px;}
.wsb8{word-spacing:5.559409px;}
.wsbd{word-spacing:5.619187px;}
.ws1f{word-spacing:5.858302px;}
.ws97{word-spacing:5.887588px;}
.ws7d{word-spacing:5.984302px;}
.ws41{word-spacing:6.097416px;}
.ws66{word-spacing:6.276752px;}
.ws56{word-spacing:6.336530px;}
.wsc3{word-spacing:6.396309px;}
.ws7e{word-spacing:6.402268px;}
.ws40{word-spacing:6.635423px;}
.ws67{word-spacing:6.695202px;}
.ws2{word-spacing:6.743070px;}
.wsbf{word-spacing:6.754981px;}
.ws3{word-spacing:6.814805px;}
.ws95{word-spacing:6.874538px;}
.wse{word-spacing:6.994142px;}
.ws11{word-spacing:7.101744px;}
.wsd1{word-spacing:7.113652px;}
.ws7{word-spacing:7.155545px;}
.ws5{word-spacing:7.209346px;}
.ws5b{word-spacing:7.352766px;}
.ws59{word-spacing:7.472324px;}
.ws7a{word-spacing:7.591881px;}
.ws7b{word-spacing:7.642264px;}
.ws7c{word-spacing:7.651659px;}
.ws4f{word-spacing:7.890774px;}
.ws8a{word-spacing:8.010331px;}
.ws81{word-spacing:8.091661px;}
.wsa7{word-spacing:8.129888px;}
.ws47{word-spacing:8.177743px;}
.ws9d{word-spacing:8.309224px;}
.ws25{word-spacing:8.369002px;}
.ws3d{word-spacing:8.608117px;}
.ws3a{word-spacing:8.727674px;}
.wsa8{word-spacing:8.740641px;}
.ws83{word-spacing:8.847231px;}
.wsa6{word-spacing:9.325460px;}
.wsa2{word-spacing:9.377676px;}
.wsa3{word-spacing:9.378999px;}
.wsa4{word-spacing:9.385238px;}
.ws0{word-spacing:9.709971px;}
.ws43{word-spacing:9.743910px;}
.ws1{word-spacing:9.813269px;}
.wsb4{word-spacing:9.863467px;}
.ws5f{word-spacing:9.923246px;}
.wscc{word-spacing:9.983024px;}
.ws91{word-spacing:10.042803px;}
.wsb6{word-spacing:10.162360px;}
.ws4e{word-spacing:10.222139px;}
.wsc8{word-spacing:10.281917px;}
.wsd0{word-spacing:10.341696px;}
.wsc7{word-spacing:10.461253px;}
.ws1a{word-spacing:10.521032px;}
.ws89{word-spacing:10.580810px;}
.ws6a{word-spacing:10.640589px;}
.ws62{word-spacing:10.819925px;}
.ws16{word-spacing:10.867820px;}
.ws60{word-spacing:10.908388px;}
.ws88{word-spacing:10.939482px;}
.ws69{word-spacing:11.477489px;}
.ws86{word-spacing:11.502006px;}
.ws45{word-spacing:11.537268px;}
.ws19{word-spacing:11.895939px;}
.wsb3{word-spacing:11.955718px;}
.wscf{word-spacing:12.075275px;}
.wsb7{word-spacing:12.254611px;}
.wsca{word-spacing:12.314389px;}
.ws84{word-spacing:12.613282px;}
.wsc9{word-spacing:12.912175px;}
.ws58{word-spacing:13.156073px;}
.ws8{word-spacing:13.181267px;}
.wsc0{word-spacing:13.689297px;}
.ws49{word-spacing:13.808854px;}
.ws61{word-spacing:15.004426px;}
.ws9c{word-spacing:15.580983px;}
.ws5d{word-spacing:16.498891px;}
.wsa5{word-spacing:17.387073px;}
.wsce{word-spacing:17.455348px;}
.ws68{word-spacing:20.444277px;}
.ws71{word-spacing:20.881334px;}
.ws80{word-spacing:23.074535px;}
.ws15{word-spacing:24.418389px;}
.ws5e{word-spacing:43.041815px;}
.ws48{word-spacing:51.650650px;}
.wsb1{word-spacing:54.936523px;}
.wsac{word-spacing:54.996302px;}
.ws18{word-spacing:61.978019px;}
.wsad{word-spacing:71.673868px;}
.ws96{word-spacing:71.674528px;}
.wsab{word-spacing:71.783178px;}
.ws99{word-spacing:71.973421px;}
.ws82{word-spacing:78.549995px;}
.ws98{word-spacing:80.291298px;}
.ws93{word-spacing:154.587431px;}
.wsb2{word-spacing:170.163540px;}
.wsaa{word-spacing:173.477465px;}
.ws92{word-spacing:260.900076px;}
._1{margin-left:-9.606674px;}
._11{margin-left:-8.341223px;}
._3{margin-left:-6.671335px;}
._17{margin-left:-5.643594px;}
._6{margin-left:-4.489212px;}
._2{margin-left:-3.202225px;}
._5{margin-left:-1.949089px;}
._f{width:1.138035px;}
._4{width:2.149787px;}
._0{width:3.202225px;}
._39{width:4.616784px;}
._2f{width:7.503620px;}
._16{width:15.279715px;}
._26{width:16.595422px;}
._10{width:18.087067px;}
._14{width:19.215308px;}
._b{width:21.170585px;}
._22{width:22.237903px;}
._7{width:23.726281px;}
._e{width:24.901291px;}
._9{width:26.108035px;}
._d{width:27.345460px;}
._28{width:28.930595px;}
._c{width:30.033258px;}
._18{width:31.981545px;}
._1c{width:33.057560px;}
._8{width:35.509635px;}
._a{width:36.716844px;}
._12{width:38.928458px;}
._13{width:40.679857px;}
._15{width:42.158717px;}
._19{width:43.399255px;}
._1b{width:45.284014px;}
._38{width:47.096736px;}
._23{width:48.433228px;}
._1a{width:49.771158px;}
._20{width:51.864211px;}
._37{width:52.904051px;}
._1d{width:55.115859px;}
._1f{width:58.606271px;}
._1e{width:60.106684px;}
._24{width:71.736390px;}
._32{width:78.907737px;}
._30{width:80.207772px;}
._21{width:86.080840px;}
._2d{width:156.297406px;}
._31{width:182.504471px;}
._2e{width:209.171666px;}
._29{width:232.564963px;}
._33{width:237.028503px;}
._34{width:261.173258px;}
._2b{width:262.727336px;}
._2c{width:305.805000px;}
._2a{width:315.014786px;}
._36{width:335.031456px;}
._35{width:350.274996px;}
._27{width:546.825099px;}
._25{width:641.065810px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.889294px;}
.fs3{font-size:35.867393px;}
.fs8{font-size:41.844892px;}
.fs2{font-size:47.822991px;}
.fs4{font-size:53.801090px;}
.fs6{font-size:59.778589px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.734787px;}
.fs5{font-size:86.081504px;}
.fs0{font-size:103.297565px;}
.y0{bottom:0.000000px;}
.y33{bottom:22.740000px;}
.y97{bottom:107.977657px;}
.yb4{bottom:111.594338px;}
.y32{bottom:115.836550px;}
.y10d{bottom:120.359276px;}
.y96{bottom:125.911054px;}
.yb3{bottom:129.527734px;}
.y31{bottom:133.769946px;}
.y63{bottom:135.433530px;}
.y10c{bottom:138.292673px;}
.y95{bottom:143.845950px;}
.ye1{bottom:150.845300px;}
.y30{bottom:151.703343px;}
.y62{bottom:153.366926px;}
.yb2{bottom:157.123114px;}
.y94{bottom:161.779347px;}
.y10b{bottom:168.183167px;}
.ye0{bottom:168.778697px;}
.y2f{bottom:169.636740px;}
.y93{bottom:179.712743px;}
.y61{bottom:183.255921px;}
.y10a{bottom:186.116564px;}
.ydf{bottom:186.712093px;}
.y2e{bottom:187.571636px;}
.yb1{bottom:187.708143px;}
.y92{bottom:197.646140px;}
.y60{bottom:201.190817px;}
.y109{bottom:204.049960px;}
.yde{bottom:204.645490px;}
.y2d{bottom:205.505033px;}
.y91{bottom:215.579537px;}
.y5f{bottom:219.124214px;}
.ydd{bottom:222.578887px;}
.y2c{bottom:223.438430px;}
.yb0{bottom:229.564736px;}
.y90{bottom:233.512933px;}
.y108{bottom:233.938955px;}
.y5e{bottom:237.057611px;}
.ydc{bottom:240.512283px;}
.y2b{bottom:241.371826px;}
.yaf{bottom:247.498133px;}
.y8f{bottom:251.447830px;}
.y107{bottom:251.872351px;}
.y5d{bottom:254.991007px;}
.ydb{bottom:258.447180px;}
.y2a{bottom:259.305223px;}
.yae{bottom:265.431529px;}
.y8e{bottom:269.381227px;}
.yda{bottom:276.380577px;}
.y29{bottom:277.238620px;}
.y106{bottom:281.762846px;}
.y5c{bottom:282.586387px;}
.yad{bottom:283.364926px;}
.y8d{bottom:287.314623px;}
.y28{bottom:295.173516px;}
.y105{bottom:299.696242px;}
.yac{bottom:301.298322px;}
.y8c{bottom:305.248020px;}
.y27{bottom:313.106913px;}
.yd9{bottom:315.147015px;}
.yab{bottom:319.233219px;}
.y8b{bottom:323.181417px;}
.y5b{bottom:324.442980px;}
.y104{bottom:329.585237px;}
.y26{bottom:331.040309px;}
.yd8{bottom:333.678941px;}
.yaa{bottom:337.166616px;}
.y8a{bottom:341.114813px;}
.y5a{bottom:342.376376px;}
.y103{bottom:347.518633px;}
.y25{bottom:348.973706px;}
.yd7{bottom:352.209368px;}
.ya9{bottom:355.100012px;}
.y89{bottom:359.049710px;}
.y59{bottom:360.309773px;}
.y24{bottom:366.907103px;}
.yd6{bottom:370.741294px;}
.ya8{bottom:373.033409px;}
.y88{bottom:376.983106px;}
.y102{bottom:377.409128px;}
.y58{bottom:378.243169px;}
.y23{bottom:384.840499px;}
.yd5{bottom:389.273221px;}
.ya7{bottom:390.966806px;}
.y87{bottom:394.916503px;}
.y101{bottom:395.342524px;}
.y57{bottom:396.178066px;}
.y22{bottom:402.775396px;}
.yd4{bottom:407.803647px;}
.y86{bottom:412.849900px;}
.y56{bottom:414.111463px;}
.ya6{bottom:418.562185px;}
.y21{bottom:420.708793px;}
.y100{bottom:425.231519px;}
.yd3{bottom:426.335574px;}
.y85{bottom:430.783296px;}
.y55{bottom:432.044859px;}
.y20{bottom:438.642189px;}
.yff{bottom:443.164915px;}
.yd2{bottom:444.867501px;}
.y84{bottom:448.716693px;}
.y54{bottom:449.978256px;}
.y1f{bottom:456.575586px;}
.ya5{bottom:460.418778px;}
.yfe{bottom:461.098312px;}
.yd1{bottom:463.397927px;}
.y83{bottom:466.651590px;}
.y1e{bottom:474.508983px;}
.ya4{bottom:478.352175px;}
.y53{bottom:479.867250px;}
.yd0{bottom:481.779846px;}
.y120{bottom:482.352875px;}
.y82{bottom:484.584986px;}
.yfd{bottom:490.988806px;}
.y1d{bottom:492.442379px;}
.ya3{bottom:496.285571px;}
.y81{bottom:502.518383px;}
.yfc{bottom:508.922203px;}
.y52{bottom:509.757745px;}
.y1c{bottom:510.377276px;}
.y11f{bottom:512.241869px;}
.ya2{bottom:514.220468px;}
.y80{bottom:520.451780px;}
.ycf{bottom:528.945204px;}
.ya1{bottom:532.153865px;}
.y7f{bottom:538.385176px;}
.yfb{bottom:538.811197px;}
.y51{bottom:539.646739px;}
.y11e{bottom:542.132364px;}
.y1b{bottom:545.456530px;}
.yce{bottom:546.880101px;}
.y7e{bottom:556.318573px;}
.yfa{bottom:556.744594px;}
.y50{bottom:557.580136px;}
.ya0{bottom:559.749244px;}
.y11d{bottom:560.065760px;}
.ycd{bottom:564.813498px;}
.y7d{bottom:574.253470px;}
.ycc{bottom:582.746894px;}
.y4f{bottom:585.175516px;}
.yf9{bottom:586.635089px;}
.y11c{bottom:589.954755px;}
.y1a{bottom:594.900502px;}
.y9f{bottom:598.773695px;}
.ycb{bottom:600.680291px;}
.y7c{bottom:601.848849px;}
.yf8{bottom:604.568485px;}
.y11b{bottom:607.888151px;}
.y19{bottom:611.339824px;}
.yca{bottom:618.613687px;}
.y4e{bottom:624.201467px;}
.yf7{bottom:634.457480px;}
.y18{bottom:636.283071px;}
.yc9{bottom:636.547084px;}
.y11a{bottom:637.778646px;}
.y7b{bottom:643.366425px;}
.y9e{bottom:648.219168px;}
.yf6{bottom:652.390876px;}
.y17{bottom:652.722393px;}
.yc8{bottom:654.481981px;}
.y119{bottom:655.712042px;}
.y7a{bottom:661.299822px;}
.y9d{bottom:666.152564px;}
.y16{bottom:669.161715px;}
.yc7{bottom:672.415377px;}
.y4d{bottom:673.645439px;}
.y15{bottom:685.601037px;}
.yf5{bottom:687.978655px;}
.yc6{bottom:690.348774px;}
.y4c{bottom:691.578835px;}
.y79{bottom:693.090911px;}
.y9c{bottom:693.126913px;}
.y14{bottom:702.040359px;}
.y9b{bottom:703.378425px;}
.y118{bottom:703.534433px;}
.yc5{bottom:708.282171px;}
.y4b{bottom:709.512232px;}
.y75{bottom:710.542784px;}
.y76{bottom:713.680941px;}
.y13{bottom:718.479680px;}
.y117{bottom:721.467830px;}
.y78{bottom:724.740994px;}
.yc4{bottom:726.215567px;}
.y4a{bottom:727.445629px;}
.y77{bottom:730.843299px;}
.y12{bottom:734.919002px;}
.yf4{bottom:737.424128px;}
.y9a{bottom:743.875950px;}
.yc3{bottom:744.148964px;}
.y49{bottom:745.380525px;}
.y11{bottom:751.358324px;}
.yf3{bottom:755.357524px;}
.y74{bottom:761.369825px;}
.yc2{bottom:762.083861px;}
.y48{bottom:763.313922px;}
.y10{bottom:767.797646px;}
.y116{bottom:769.291721px;}
.y99{bottom:771.471330px;}
.yf2{bottom:773.290921px;}
.y70{bottom:778.823197px;}
.y47{bottom:781.247319px;}
.y71{bottom:781.961354px;}
.yf{bottom:784.236968px;}
.yc1{bottom:789.679240px;}
.yf1{bottom:791.224318px;}
.y73{bottom:793.019907px;}
.y72{bottom:799.122212px;}
.y46{bottom:799.180715px;}
.ye{bottom:800.674790px;}
.yf0{bottom:809.157714px;}
.yd{bottom:817.114112px;}
.y98{bottom:819.385225px;}
.yef{bottom:827.091111px;}
.y6f{bottom:827.658139px;}
.yc{bottom:833.553434px;}
.y45{bottom:835.047509px;}
.yee{bottom:845.026007px;}
.y115{bottom:847.004606px;}
.y44{bottom:852.982405px;}
.y6e{bottom:855.231018px;}
.yc0{bottom:855.282020px;}
.yb{bottom:858.213167px;}
.yed{bottom:862.959404px;}
.y114{bottom:864.938003px;}
.y43{bottom:870.915802px;}
.y6b{bottom:872.682890px;}
.ybf{bottom:873.813947px;}
.yec{bottom:880.892801px;}
.y6d{bottom:886.881100px;}
.y42{bottom:888.849199px;}
.ybe{bottom:892.195866px;}
.y6c{bottom:892.983405px;}
.y113{bottom:894.826997px;}
.ya{bottom:896.321072px;}
.yeb{bottom:898.826197px;}
.y41{bottom:906.782595px;}
.y9{bottom:912.760394px;}
.yea{bottom:916.759594px;}
.y6a{bottom:917.598136px;}
.y40{bottom:924.715992px;}
.ye9{bottom:934.692991px;}
.y8{bottom:934.913502px;}
.y67{bottom:935.051509px;}
.ybd{bottom:936.446578px;}
.y3f{bottom:942.650888px;}
.y69{bottom:949.248218px;}
.y7{bottom:951.352824px;}
.ybc{bottom:954.379975px;}
.y68{bottom:955.350523px;}
.y3e{bottom:960.584285px;}
.y6{bottom:962.078360px;}
.ye8{bottom:969.608736px;}
.ybb{bottom:972.313372px;}
.y3d{bottom:978.517682px;}
.y66{bottom:981.370824px;}
.y5{bottom:984.231467px;}
.y112{bottom:990.473279px;}
.y3c{bottom:996.451078px;}
.y111{bottom:1008.406676px;}
.y4{bottom:1009.900751px;}
.y3b{bottom:1014.384475px;}
.yba{bottom:1026.299571px;}
.y110{bottom:1026.340073px;}
.ye7{bottom:1027.481630px;}
.y65{bottom:1028.372674px;}
.y3{bottom:1030.823797px;}
.y3a{bottom:1032.317872px;}
.yb9{bottom:1044.234467px;}
.ye6{bottom:1045.415026px;}
.y64{bottom:1046.306071px;}
.y39{bottom:1050.252768px;}
.y10f{bottom:1056.230567px;}
.y2{bottom:1059.218717px;}
.yb8{bottom:1062.167864px;}
.ye5{bottom:1063.348423px;}
.y38{bottom:1068.186165px;}
.y10e{bottom:1074.163964px;}
.y37{bottom:1086.119562px;}
.yb7{bottom:1087.612136px;}
.ye4{bottom:1088.792695px;}
.y1{bottom:1092.097360px;}
.y36{bottom:1104.052958px;}
.yb6{bottom:1110.777794px;}
.ye3{bottom:1111.286320px;}
.y35{bottom:1121.986355px;}
.yb5{bottom:1128.711191px;}
.ye2{bottom:1129.219716px;}
.y34{bottom:1139.919751px;}
.hf{height:2.988929px;}
.h4{height:23.887684px;}
.he{height:28.580061px;}
.h13{height:32.281314px;}
.h6{height:35.831526px;}
.h7{height:37.660763px;}
.h5{height:38.252575px;}
.h8{height:40.350817px;}
.h16{height:41.486341px;}
.ha{height:44.833942px;}
.hc{height:44.839942px;}
.hb{height:49.090950px;}
.hd{height:50.214351px;}
.h10{height:52.464242px;}
.h11{height:52.470243px;}
.h3{height:57.885414px;}
.h9{height:60.257053px;}
.h2{height:72.308295px;}
.h14{height:83.243492px;}
.h15{height:85.839992px;}
.h12{height:123.144937px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:107.983499px;}
.x3{left:109.098055px;}
.x2f{left:115.455372px;}
.x24{left:117.508975px;}
.x28{left:119.303065px;}
.x7{left:123.423771px;}
.x10{left:126.245412px;}
.x2{left:129.694084px;}
.x5{left:131.036651px;}
.x1{left:138.075003px;}
.xd{left:145.345867px;}
.x8{left:156.323416px;}
.xc{left:165.520376px;}
.x9{left:180.368118px;}
.x2c{left:222.461723px;}
.x2d{left:224.260312px;}
.x27{left:238.605530px;}
.xa{left:245.207360px;}
.x2a{left:262.428221px;}
.x29{left:278.905045px;}
.x2b{left:280.810140px;}
.x2e{left:283.567278px;}
.x19{left:301.094154px;}
.x4{left:310.562627px;}
.x11{left:324.654332px;}
.x1e{left:362.726235px;}
.x25{left:378.004499px;}
.x15{left:385.041351px;}
.x1a{left:398.414520px;}
.x12{left:403.498274px;}
.x13{left:407.878493px;}
.x1b{left:411.490673px;}
.xb{left:416.019400px;}
.x6{left:422.031701px;}
.xf{left:434.184000px;}
.x14{left:436.336416px;}
.x1c{left:444.328815px;}
.x26{left:454.644831px;}
.x1f{left:460.780138px;}
.x16{left:464.617330px;}
.x17{left:469.344066px;}
.x20{left:473.856292px;}
.x21{left:478.581528px;}
.x1d{left:490.684133px;}
.x18{left:498.147006px;}
.x22{left:507.384468px;}
.x23{left:554.473322px;}
@media print{
.v2{vertical-align:-20.315682pt;}
.v7{vertical-align:-11.157891pt;}
.v3{vertical-align:-7.973732pt;}
.v4{vertical-align:-5.312266pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.937097pt;}
.v1{vertical-align:23.142490pt;}
.v8{vertical-align:35.948464pt;}
.v6{vertical-align:106.805340pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002119pt;}
.ls3{letter-spacing:0.003734pt;}
.lse{letter-spacing:0.007985pt;}
.ls10{letter-spacing:0.013014pt;}
.ls9{letter-spacing:0.023724pt;}
.ls17{letter-spacing:0.028644pt;}
.ls19{letter-spacing:0.029057pt;}
.lsb{letter-spacing:0.030320pt;}
.ls13{letter-spacing:0.030653pt;}
.lsd{letter-spacing:0.033977pt;}
.ls15{letter-spacing:0.035654pt;}
.lsf{letter-spacing:0.039254pt;}
.ls8{letter-spacing:0.044588pt;}
.ls2{letter-spacing:2.654460pt;}
.ls1{letter-spacing:2.655476pt;}
.ls0{letter-spacing:2.660810pt;}
.ls1b{letter-spacing:2.671642pt;}
.ls16{letter-spacing:2.676503pt;}
.ls1e{letter-spacing:2.676975pt;}
.ls1d{letter-spacing:2.690298pt;}
.ls14{letter-spacing:2.695631pt;}
.lsc{letter-spacing:4.229521pt;}
.ls1a{letter-spacing:4.828862pt;}
.lsa{letter-spacing:4.834196pt;}
.ls23{letter-spacing:11.851578pt;}
.ls7{letter-spacing:17.695285pt;}
.ls12{letter-spacing:17.848206pt;}
.ls25{letter-spacing:17.889318pt;}
.ls26{letter-spacing:19.377141pt;}
.ls21{letter-spacing:21.174711pt;}
.ls20{letter-spacing:22.310621pt;}
.ls22{letter-spacing:24.001372pt;}
.ls27{letter-spacing:25.156991pt;}
.ls6{letter-spacing:26.572514pt;}
.ls11{letter-spacing:55.810299pt;}
.ls1c{letter-spacing:61.990966pt;}
.ls1f{letter-spacing:704.999115pt;}
.ls18{letter-spacing:787.014857pt;}
.ls24{letter-spacing:892.206527pt;}
.ws4{word-spacing:-17.853991pt;}
.ws1c{word-spacing:-14.878227pt;}
.ws6{word-spacing:-13.390493pt;}
.wsb9{word-spacing:-3.028782pt;}
.ws26{word-spacing:-2.763099pt;}
.ws64{word-spacing:-2.709963pt;}
.wsb5{word-spacing:-2.497417pt;}
.ws70{word-spacing:-2.125461pt;}
.wsa0{word-spacing:-2.072324pt;}
.wsb0{word-spacing:-1.966051pt;}
.ws6e{word-spacing:-1.753505pt;}
.ws76{word-spacing:-1.700369pt;}
.ws9f{word-spacing:-1.594096pt;}
.ws46{word-spacing:-1.540959pt;}
.ws77{word-spacing:-1.434686pt;}
.ws75{word-spacing:-1.328413pt;}
.ws7f{word-spacing:-1.314284pt;}
.ws78{word-spacing:-1.115867pt;}
.ws2a{word-spacing:-0.956457pt;}
.ws29{word-spacing:-0.903321pt;}
.ws6c{word-spacing:-0.743911pt;}
.ws2c{word-spacing:-0.637638pt;}
.ws2b{word-spacing:-0.584502pt;}
.ws23{word-spacing:-0.478229pt;}
.ws79{word-spacing:-0.265683pt;}
.ws50{word-spacing:-0.159410pt;}
.ws1e{word-spacing:-0.053137pt;}
.ws32{word-spacing:0.000000pt;}
.wscd{word-spacing:0.212546pt;}
.ws9{word-spacing:0.286939pt;}
.ws90{word-spacing:0.425092pt;}
.ws8f{word-spacing:0.476701pt;}
.ws8e{word-spacing:0.478229pt;}
.wsd{word-spacing:0.526055pt;}
.ws2d{word-spacing:0.531365pt;}
.ws2e{word-spacing:0.584502pt;}
.wsa9{word-spacing:0.637638pt;}
.wsa{word-spacing:0.669525pt;}
.ws5c{word-spacing:0.797048pt;}
.ws24{word-spacing:0.903321pt;}
.ws1b{word-spacing:0.956457pt;}
.wsae{word-spacing:1.009594pt;}
.wsc1{word-spacing:1.062730pt;}
.ws2f{word-spacing:1.115867pt;}
.ws30{word-spacing:1.169004pt;}
.ws3f{word-spacing:1.222140pt;}
.ws3b{word-spacing:1.434686pt;}
.ws6b{word-spacing:1.594096pt;}
.ws39{word-spacing:1.647232pt;}
.ws31{word-spacing:1.700369pt;}
.ws34{word-spacing:1.753505pt;}
.wsd2{word-spacing:1.806642pt;}
.wsbb{word-spacing:1.912915pt;}
.ws9e{word-spacing:1.966051pt;}
.ws51{word-spacing:2.019188pt;}
.ws87{word-spacing:2.072324pt;}
.wsaf{word-spacing:2.125461pt;}
.ws72{word-spacing:2.284871pt;}
.ws73{word-spacing:2.289618pt;}
.ws21{word-spacing:2.338007pt;}
.ws42{word-spacing:2.391144pt;}
.ws9a{word-spacing:2.656826pt;}
.ws54{word-spacing:2.763099pt;}
.wsc2{word-spacing:2.764289pt;}
.wsf{word-spacing:2.773745pt;}
.ws1d{word-spacing:2.816236pt;}
.ws55{word-spacing:2.816419pt;}
.wsc6{word-spacing:2.818814pt;}
.wsc4{word-spacing:2.819169pt;}
.wscb{word-spacing:2.819646pt;}
.ws35{word-spacing:2.869372pt;}
.ws4a{word-spacing:2.870090pt;}
.ws4b{word-spacing:2.870584pt;}
.ws53{word-spacing:2.917543pt;}
.ws52{word-spacing:2.922509pt;}
.ws17{word-spacing:2.965038pt;}
.ws27{word-spacing:2.975645pt;}
.ws14{word-spacing:3.012861pt;}
.ws9b{word-spacing:3.028782pt;}
.ws57{word-spacing:3.081918pt;}
.wsc5{word-spacing:3.188191pt;}
.ws4d{word-spacing:3.241328pt;}
.ws10{word-spacing:3.251977pt;}
.ws85{word-spacing:3.347601pt;}
.ws44{word-spacing:3.400737pt;}
.ws13{word-spacing:3.443270pt;}
.ws63{word-spacing:3.453874pt;}
.wsb{word-spacing:3.586739pt;}
.ws33{word-spacing:3.613284pt;}
.ws28{word-spacing:3.666420pt;}
.ws94{word-spacing:3.719557pt;}
.ws65{word-spacing:3.772693pt;}
.ws5a{word-spacing:3.878966pt;}
.ws37{word-spacing:3.932103pt;}
.ws36{word-spacing:3.985239pt;}
.ws20{word-spacing:4.038376pt;}
.wsbc{word-spacing:4.091512pt;}
.wsba{word-spacing:4.144649pt;}
.ws22{word-spacing:4.197785pt;}
.wsa1{word-spacing:4.250922pt;}
.ws6f{word-spacing:4.304058pt;}
.ws38{word-spacing:4.410331pt;}
.ws8b{word-spacing:4.415715pt;}
.ws12{word-spacing:4.447557pt;}
.ws8d{word-spacing:4.463468pt;}
.ws8c{word-spacing:4.470028pt;}
.wsc{word-spacing:4.495380pt;}
.ws3c{word-spacing:4.516604pt;}
.wsbe{word-spacing:4.622878pt;}
.ws74{word-spacing:4.676014pt;}
.ws3e{word-spacing:4.729151pt;}
.ws4c{word-spacing:4.835424pt;}
.ws6d{word-spacing:4.888560pt;}
.wsb8{word-spacing:4.941697pt;}
.wsbd{word-spacing:4.994833pt;}
.ws1f{word-spacing:5.207379pt;}
.ws97{word-spacing:5.233412pt;}
.ws7d{word-spacing:5.319380pt;}
.ws41{word-spacing:5.419925pt;}
.ws66{word-spacing:5.579335pt;}
.ws56{word-spacing:5.632471pt;}
.wsc3{word-spacing:5.685608pt;}
.ws7e{word-spacing:5.690905pt;}
.ws40{word-spacing:5.898154pt;}
.ws67{word-spacing:5.951291pt;}
.ws2{word-spacing:5.993840pt;}
.wsbf{word-spacing:6.004427pt;}
.ws3{word-spacing:6.057604pt;}
.ws95{word-spacing:6.110700pt;}
.wse{word-spacing:6.217015pt;}
.ws11{word-spacing:6.312661pt;}
.wsd1{word-spacing:6.323246pt;}
.ws7{word-spacing:6.360484pt;}
.ws5{word-spacing:6.408308pt;}
.ws5b{word-spacing:6.535792pt;}
.ws59{word-spacing:6.642065pt;}
.ws7a{word-spacing:6.748338pt;}
.ws7b{word-spacing:6.793124pt;}
.ws7c{word-spacing:6.801475pt;}
.ws4f{word-spacing:7.014021pt;}
.ws8a{word-spacing:7.120294pt;}
.ws81{word-spacing:7.192588pt;}
.wsa7{word-spacing:7.226567pt;}
.ws47{word-spacing:7.269105pt;}
.ws9d{word-spacing:7.385977pt;}
.ws25{word-spacing:7.439113pt;}
.ws3d{word-spacing:7.651659pt;}
.ws3a{word-spacing:7.757932pt;}
.wsa8{word-spacing:7.769458pt;}
.ws83{word-spacing:7.864205pt;}
.wsa6{word-spacing:8.289298pt;}
.wsa2{word-spacing:8.335712pt;}
.wsa3{word-spacing:8.336888pt;}
.wsa4{word-spacing:8.342434pt;}
.ws0{word-spacing:8.631085pt;}
.ws43{word-spacing:8.661253pt;}
.ws1{word-spacing:8.722905pt;}
.wsb4{word-spacing:8.767526pt;}
.ws5f{word-spacing:8.820663pt;}
.wscc{word-spacing:8.873799pt;}
.ws91{word-spacing:8.926936pt;}
.wsb6{word-spacing:9.033209pt;}
.ws4e{word-spacing:9.086345pt;}
.wsc8{word-spacing:9.139482pt;}
.wsd0{word-spacing:9.192619pt;}
.wsc7{word-spacing:9.298892pt;}
.ws1a{word-spacing:9.352028pt;}
.ws89{word-spacing:9.405165pt;}
.ws6a{word-spacing:9.458301pt;}
.ws62{word-spacing:9.617711pt;}
.ws16{word-spacing:9.660285pt;}
.ws60{word-spacing:9.696345pt;}
.ws88{word-spacing:9.723984pt;}
.ws69{word-spacing:10.202212pt;}
.ws86{word-spacing:10.224006pt;}
.ws45{word-spacing:10.255349pt;}
.ws19{word-spacing:10.574168pt;}
.wsb3{word-spacing:10.627305pt;}
.wscf{word-spacing:10.733578pt;}
.wsb7{word-spacing:10.892987pt;}
.wsca{word-spacing:10.946124pt;}
.ws84{word-spacing:11.211806pt;}
.wsc9{word-spacing:11.477489pt;}
.ws58{word-spacing:11.694287pt;}
.ws8{word-spacing:11.716682pt;}
.wsc0{word-spacing:12.168264pt;}
.ws49{word-spacing:12.274537pt;}
.ws61{word-spacing:13.337267pt;}
.ws9c{word-spacing:13.849762pt;}
.ws5d{word-spacing:14.665680pt;}
.wsa5{word-spacing:15.455176pt;}
.wsce{word-spacing:15.515865pt;}
.ws68{word-spacing:18.172691pt;}
.ws71{word-spacing:18.561186pt;}
.ws80{word-spacing:20.510698pt;}
.ws15{word-spacing:21.705235pt;}
.ws5e{word-spacing:38.259391pt;}
.ws48{word-spacing:45.911689pt;}
.wsb1{word-spacing:48.832465pt;}
.wsac{word-spacing:48.885601pt;}
.ws18{word-spacing:55.091573pt;}
.wsad{word-spacing:63.710105pt;}
.ws96{word-spacing:63.710692pt;}
.wsab{word-spacing:63.807269pt;}
.ws99{word-spacing:63.976374pt;}
.ws82{word-spacing:69.822217pt;}
.ws98{word-spacing:71.370043pt;}
.ws93{word-spacing:137.411049pt;}
.wsb2{word-spacing:151.256480pt;}
.wsaa{word-spacing:154.202191pt;}
.ws92{word-spacing:231.911179pt;}
._1{margin-left:-8.539265pt;}
._11{margin-left:-7.414421pt;}
._3{margin-left:-5.930076pt;}
._17{margin-left:-5.016528pt;}
._6{margin-left:-3.990411pt;}
._2{margin-left:-2.846422pt;}
._5{margin-left:-1.732524pt;}
._f{width:1.011587pt;}
._4{width:1.910922pt;}
._0{width:2.846422pt;}
._39{width:4.103808pt;}
._2f{width:6.669884pt;}
._16{width:13.581969pt;}
._26{width:14.751486pt;}
._10{width:16.077393pt;}
._14{width:17.080274pt;}
._b{width:18.818298pt;}
._22{width:19.767025pt;}
._7{width:21.090027pt;}
._e{width:22.134481pt;}
._9{width:23.207142pt;}
._d{width:24.307076pt;}
._28{width:25.716085pt;}
._c{width:26.696230pt;}
._18{width:28.428040pt;}
._1c{width:29.384497pt;}
._8{width:31.564120pt;}
._a{width:32.637194pt;}
._12{width:34.603074pt;}
._13{width:36.159873pt;}
._15{width:37.474415pt;}
._19{width:38.577116pt;}
._1b{width:40.252457pt;}
._38{width:41.863766pt;}
._23{width:43.051758pt;}
._1a{width:44.241029pt;}
._20{width:46.101521pt;}
._37{width:47.025823pt;}
._1d{width:48.991875pt;}
._1f{width:52.094463pt;}
._1e{width:53.428164pt;}
._24{width:63.765680pt;}
._32{width:70.140211pt;}
._30{width:71.295797pt;}
._21{width:76.516302pt;}
._2d{width:138.931027pt;}
._31{width:162.226196pt;}
._2e{width:185.930370pt;}
._29{width:206.724411pt;}
._33{width:210.692003pt;}
._34{width:232.154007pt;}
._2b{width:233.535410pt;}
._2c{width:271.826667pt;}
._2a{width:280.013143pt;}
._36{width:297.805739pt;}
._35{width:311.355552pt;}
._27{width:486.066754pt;}
._25{width:569.836276pt;}
.fs9{font-size:26.568262pt;}
.fs3{font-size:31.882127pt;}
.fs8{font-size:37.195460pt;}
.fs2{font-size:42.509325pt;}
.fs4{font-size:47.823191pt;}
.fs6{font-size:53.136523pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.764255pt;}
.fs5{font-size:76.516892pt;}
.fs0{font-size:91.820057pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:20.213333pt;}
.y97{bottom:95.980139pt;}
.yb4{bottom:99.194967pt;}
.y32{bottom:102.965822pt;}
.y10d{bottom:106.986023pt;}
.y96{bottom:111.920936pt;}
.yb3{bottom:115.135764pt;}
.y31{bottom:118.906619pt;}
.y63{bottom:120.385360pt;}
.y10c{bottom:122.926820pt;}
.y95{bottom:127.863067pt;}
.ye1{bottom:134.084711pt;}
.y30{bottom:134.847416pt;}
.y62{bottom:136.326157pt;}
.yb2{bottom:139.664990pt;}
.y94{bottom:143.803864pt;}
.y10b{bottom:149.496148pt;}
.ye0{bottom:150.025508pt;}
.y2f{bottom:150.788213pt;}
.y93{bottom:159.744661pt;}
.y61{bottom:162.894152pt;}
.y10a{bottom:165.436945pt;}
.ydf{bottom:165.966305pt;}
.y2e{bottom:166.730343pt;}
.yb1{bottom:166.851683pt;}
.y92{bottom:175.685458pt;}
.y60{bottom:178.836282pt;}
.y109{bottom:181.377742pt;}
.yde{bottom:181.907102pt;}
.y2d{bottom:182.671140pt;}
.y91{bottom:191.626255pt;}
.y5f{bottom:194.777079pt;}
.ydd{bottom:197.847899pt;}
.y2c{bottom:198.611937pt;}
.yb0{bottom:204.057543pt;}
.y90{bottom:207.567052pt;}
.y108{bottom:207.945737pt;}
.y5e{bottom:210.717876pt;}
.ydc{bottom:213.788696pt;}
.y2b{bottom:214.552734pt;}
.yaf{bottom:219.998340pt;}
.y8f{bottom:223.509182pt;}
.y107{bottom:223.886534pt;}
.y5d{bottom:226.658673pt;}
.ydb{bottom:229.730827pt;}
.y2a{bottom:230.493531pt;}
.yae{bottom:235.939137pt;}
.y8e{bottom:239.449979pt;}
.yda{bottom:245.671624pt;}
.y29{bottom:246.434328pt;}
.y106{bottom:250.455863pt;}
.y5c{bottom:251.187899pt;}
.yad{bottom:251.879934pt;}
.y8d{bottom:255.390776pt;}
.y28{bottom:262.376459pt;}
.y105{bottom:266.396660pt;}
.yac{bottom:267.820731pt;}
.y8c{bottom:271.331573pt;}
.y27{bottom:278.317256pt;}
.yd9{bottom:280.130680pt;}
.yab{bottom:283.762861pt;}
.y8b{bottom:287.272370pt;}
.y5b{bottom:288.393760pt;}
.y104{bottom:292.964655pt;}
.y26{bottom:294.258053pt;}
.yd8{bottom:296.603503pt;}
.yaa{bottom:299.703658pt;}
.y8a{bottom:303.213167pt;}
.y5a{bottom:304.334557pt;}
.y103{bottom:308.905452pt;}
.y25{bottom:310.198850pt;}
.yd7{bottom:313.074994pt;}
.ya9{bottom:315.644455pt;}
.y89{bottom:319.155298pt;}
.y59{bottom:320.275354pt;}
.y24{bottom:326.139647pt;}
.yd6{bottom:329.547817pt;}
.ya8{bottom:331.585252pt;}
.y88{bottom:335.096095pt;}
.y102{bottom:335.474780pt;}
.y58{bottom:336.216151pt;}
.y23{bottom:342.080444pt;}
.yd5{bottom:346.020641pt;}
.ya7{bottom:347.526049pt;}
.y87{bottom:351.036892pt;}
.y101{bottom:351.415577pt;}
.y57{bottom:352.158281pt;}
.y22{bottom:358.022574pt;}
.yd4{bottom:362.492131pt;}
.y86{bottom:366.977689pt;}
.y56{bottom:368.099078pt;}
.ya6{bottom:372.055276pt;}
.y21{bottom:373.963371pt;}
.y100{bottom:377.983572pt;}
.yd3{bottom:378.964955pt;}
.y85{bottom:382.918486pt;}
.y55{bottom:384.039875pt;}
.y20{bottom:389.904168pt;}
.yff{bottom:393.924369pt;}
.yd2{bottom:395.437778pt;}
.y84{bottom:398.859283pt;}
.y54{bottom:399.980672pt;}
.y1f{bottom:405.844965pt;}
.ya5{bottom:409.261136pt;}
.yfe{bottom:409.865166pt;}
.yd1{bottom:411.909268pt;}
.y83{bottom:414.801413pt;}
.y1e{bottom:421.785762pt;}
.ya4{bottom:425.201933pt;}
.y53{bottom:426.548667pt;}
.yd0{bottom:428.248752pt;}
.y120{bottom:428.758111pt;}
.y82{bottom:430.742210pt;}
.yfd{bottom:436.434495pt;}
.y1d{bottom:437.726559pt;}
.ya3{bottom:441.142730pt;}
.y81{bottom:446.683007pt;}
.yfc{bottom:452.375292pt;}
.y52{bottom:453.117995pt;}
.y1c{bottom:453.668690pt;}
.y11f{bottom:455.326106pt;}
.ya2{bottom:457.084860pt;}
.y80{bottom:462.623804pt;}
.ycf{bottom:470.173515pt;}
.ya1{bottom:473.025657pt;}
.y7f{bottom:478.564601pt;}
.yfb{bottom:478.943287pt;}
.y51{bottom:479.685990pt;}
.y11e{bottom:481.895434pt;}
.y1b{bottom:484.850249pt;}
.yce{bottom:486.115645pt;}
.y7e{bottom:494.505398pt;}
.yfa{bottom:494.884084pt;}
.y50{bottom:495.626787pt;}
.ya0{bottom:497.554884pt;}
.y11d{bottom:497.836231pt;}
.ycd{bottom:502.056442pt;}
.y7d{bottom:510.447528pt;}
.ycc{bottom:517.997239pt;}
.y4f{bottom:520.156014pt;}
.yf9{bottom:521.453412pt;}
.y11c{bottom:524.404226pt;}
.y1a{bottom:528.800446pt;}
.y9f{bottom:532.243285pt;}
.ycb{bottom:533.938036pt;}
.y7c{bottom:534.976755pt;}
.yf8{bottom:537.394209pt;}
.y11b{bottom:540.345023pt;}
.y19{bottom:543.413177pt;}
.yca{bottom:549.878833pt;}
.y4e{bottom:554.845748pt;}
.yf7{bottom:563.962204pt;}
.y18{bottom:565.584952pt;}
.yc9{bottom:565.819630pt;}
.y11a{bottom:566.914352pt;}
.y7b{bottom:571.881267pt;}
.y9e{bottom:576.194816pt;}
.yf6{bottom:579.903001pt;}
.y17{bottom:580.197682pt;}
.yc8{bottom:581.761761pt;}
.y119{bottom:582.855149pt;}
.y7a{bottom:587.822064pt;}
.y9d{bottom:592.135613pt;}
.y16{bottom:594.810413pt;}
.yc7{bottom:597.702558pt;}
.y4d{bottom:598.795946pt;}
.y15{bottom:609.423144pt;}
.yf5{bottom:611.536583pt;}
.yc6{bottom:613.643355pt;}
.y4c{bottom:614.736743pt;}
.y79{bottom:616.080810pt;}
.y9c{bottom:616.112811pt;}
.y14{bottom:624.035874pt;}
.y9b{bottom:625.225267pt;}
.y118{bottom:625.363941pt;}
.yc5{bottom:629.584152pt;}
.y4b{bottom:630.677540pt;}
.y75{bottom:631.593585pt;}
.y76{bottom:634.383058pt;}
.y13{bottom:638.648605pt;}
.y117{bottom:641.304738pt;}
.y78{bottom:644.214216pt;}
.yc4{bottom:645.524949pt;}
.y4a{bottom:646.618337pt;}
.y77{bottom:649.638488pt;}
.y12{bottom:653.261335pt;}
.yf4{bottom:655.488113pt;}
.y9a{bottom:661.223067pt;}
.yc3{bottom:661.465746pt;}
.y49{bottom:662.560467pt;}
.y11{bottom:667.874066pt;}
.yf3{bottom:671.428910pt;}
.y74{bottom:676.773178pt;}
.yc2{bottom:677.407876pt;}
.y48{bottom:678.501264pt;}
.y10{bottom:682.486797pt;}
.y116{bottom:683.814863pt;}
.y99{bottom:685.752293pt;}
.yf2{bottom:687.369707pt;}
.y70{bottom:692.287287pt;}
.y47{bottom:694.442061pt;}
.y71{bottom:695.076759pt;}
.yf{bottom:697.099527pt;}
.yc1{bottom:701.937102pt;}
.yf1{bottom:703.310504pt;}
.y73{bottom:704.906584pt;}
.y72{bottom:710.330855pt;}
.y46{bottom:710.382858pt;}
.ye{bottom:711.710924pt;}
.yf0{bottom:719.251301pt;}
.yd{bottom:726.323655pt;}
.y98{bottom:728.342423pt;}
.yef{bottom:735.192098pt;}
.y6f{bottom:735.696124pt;}
.yc{bottom:740.936386pt;}
.y45{bottom:742.264452pt;}
.yee{bottom:751.134229pt;}
.y115{bottom:752.892983pt;}
.y44{bottom:758.206582pt;}
.y6e{bottom:760.205349pt;}
.yc0{bottom:760.250685pt;}
.yb{bottom:762.856148pt;}
.yed{bottom:767.075026pt;}
.y114{bottom:768.833780pt;}
.y43{bottom:774.147379pt;}
.y6b{bottom:775.718125pt;}
.ybf{bottom:776.723508pt;}
.yec{bottom:783.015823pt;}
.y6d{bottom:788.338756pt;}
.y42{bottom:790.088176pt;}
.ybe{bottom:793.062992pt;}
.y6c{bottom:793.763027pt;}
.y113{bottom:795.401775pt;}
.ya{bottom:796.729842pt;}
.yeb{bottom:798.956620pt;}
.y41{bottom:806.028973pt;}
.y9{bottom:811.342572pt;}
.yea{bottom:814.897417pt;}
.y6a{bottom:815.642787pt;}
.y40{bottom:821.969770pt;}
.ye9{bottom:830.838214pt;}
.y8{bottom:831.034224pt;}
.y67{bottom:831.156896pt;}
.ybd{bottom:832.396958pt;}
.y3f{bottom:837.911901pt;}
.y69{bottom:843.776194pt;}
.y7{bottom:845.646954pt;}
.ybc{bottom:848.337755pt;}
.y68{bottom:849.200465pt;}
.y3e{bottom:853.852698pt;}
.y6{bottom:855.180764pt;}
.ye8{bottom:861.874432pt;}
.ybb{bottom:864.278552pt;}
.y3d{bottom:869.793495pt;}
.y66{bottom:872.329622pt;}
.y5{bottom:874.872415pt;}
.y112{bottom:880.420693pt;}
.y3c{bottom:885.734292pt;}
.y111{bottom:896.361490pt;}
.y4{bottom:897.689556pt;}
.y3b{bottom:901.675089pt;}
.yba{bottom:912.266285pt;}
.y110{bottom:912.302287pt;}
.ye7{bottom:913.317004pt;}
.y65{bottom:914.109044pt;}
.y3{bottom:916.287819pt;}
.y3a{bottom:917.615886pt;}
.yb9{bottom:928.208415pt;}
.ye6{bottom:929.257801pt;}
.y64{bottom:930.049841pt;}
.y39{bottom:933.558016pt;}
.y10f{bottom:938.871615pt;}
.y2{bottom:941.527748pt;}
.yb8{bottom:944.149212pt;}
.ye5{bottom:945.198598pt;}
.y38{bottom:949.498813pt;}
.y10e{bottom:954.812412pt;}
.y37{bottom:965.439610pt;}
.yb7{bottom:966.766343pt;}
.ye4{bottom:967.815729pt;}
.y1{bottom:970.753209pt;}
.y36{bottom:981.380407pt;}
.yb6{bottom:987.358039pt;}
.ye3{bottom:987.810062pt;}
.y35{bottom:997.321204pt;}
.yb5{bottom:1003.298836pt;}
.ye2{bottom:1003.750859pt;}
.y34{bottom:1013.262001pt;}
.hf{height:2.656826pt;}
.h4{height:21.233497pt;}
.he{height:25.404499pt;}
.h13{height:28.694501pt;}
.h6{height:31.850245pt;}
.h7{height:33.476234pt;}
.h5{height:34.002289pt;}
.h8{height:35.867393pt;}
.h16{height:36.876747pt;}
.ha{height:39.852393pt;}
.hc{height:39.857726pt;}
.hb{height:43.636400pt;}
.hd{height:44.634978pt;}
.h10{height:46.634882pt;}
.h11{height:46.640216pt;}
.h3{height:51.453701pt;}
.h9{height:53.561825pt;}
.h2{height:64.274040pt;}
.h14{height:73.994215pt;}
.h15{height:76.302215pt;}
.h12{height:109.462166pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:95.985332pt;}
.x3{left:96.976049pt;}
.x2f{left:102.626998pt;}
.x24{left:104.452422pt;}
.x28{left:106.047169pt;}
.x7{left:109.710019pt;}
.x10{left:112.218144pt;}
.x2{left:115.283631pt;}
.x5{left:116.477024pt;}
.x1{left:122.733336pt;}
.xd{left:129.196326pt;}
.x8{left:138.954147pt;}
.xc{left:147.129223pt;}
.x9{left:160.327216pt;}
.x2c{left:197.743753pt;}
.x2d{left:199.342500pt;}
.x27{left:212.093804pt;}
.xa{left:217.962098pt;}
.x2a{left:233.269530pt;}
.x29{left:247.915595pt;}
.x2b{left:249.609013pt;}
.x2e{left:252.059802pt;}
.x19{left:267.639248pt;}
.x4{left:276.055669pt;}
.x11{left:288.581628pt;}
.x1e{left:322.423320pt;}
.x25{left:336.003999pt;}
.x15{left:342.258979pt;}
.x1a{left:354.146240pt;}
.x12{left:358.665132pt;}
.x13{left:362.558660pt;}
.x1b{left:365.769488pt;}
.xb{left:369.795022pt;}
.x6{left:375.139289pt;}
.xf{left:385.941333pt;}
.x14{left:387.854592pt;}
.x1c{left:394.958947pt;}
.x26{left:404.128739pt;}
.x1f{left:409.582345pt;}
.x16{left:412.993182pt;}
.x17{left:417.194725pt;}
.x20{left:421.205593pt;}
.x21{left:425.405803pt;}
.x1d{left:436.163674pt;}
.x18{left:442.797339pt;}
.x22{left:451.008416pt;}
.x23{left:492.865175pt;}
}




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