
    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_27e84fecc3cf94a2e9088efe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896000;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_4f951f2f9ad2bc3d293229e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_92d87264206f93944129a639.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d01ad768fb2fd359835b89eb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eaa3d6c410aa7733552856c5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b50709393374c807941644c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.004000;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_791eab89edd1b975596f646e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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_84f8bdc02f7d3e3df25e0e84.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_55c52181fc3c0c5d0bb874ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.004000;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_a2a833b49f5bb1c8edea9187.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_167a5594f7e14891f34b2395.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_daf09c2ef9578dab32955f7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.698000;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_653d51c16aae87d0aea5e3ca.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3cc5e27a2de17ec71c8978fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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_04bc8b4da580fb2aca2e1513.woff2')format("woff");}.fff{font-family:fff;line-height:0.700000;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_a92823eae917238ea8737215.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.021000;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_d404c00e862dfaadf4b7371e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.980000;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_b12b49b61d72510958104cb2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.431000;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.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000564px;}
.ls18{letter-spacing:0.002246px;}
.ls5{letter-spacing:2.986894px;}
.ls6{letter-spacing:2.992894px;}
.ls8{letter-spacing:17.932894px;}
.ls3{letter-spacing:18.425937px;}
.ls1{letter-spacing:18.671937px;}
.ls2{letter-spacing:18.677937px;}
.ls7{letter-spacing:21.412118px;}
.ls9{letter-spacing:23.044894px;}
.lsa{letter-spacing:23.050894px;}
.ls11{letter-spacing:25.114178px;}
.ls12{letter-spacing:25.262338px;}
.ls13{letter-spacing:29.883008px;}
.lse{letter-spacing:32.155363px;}
.lsb{letter-spacing:59.680341px;}
.ls15{letter-spacing:59.686341px;}
.lsc{letter-spacing:59.692341px;}
.ls14{letter-spacing:59.722341px;}
.ls17{letter-spacing:188.818341px;}
.lsf{letter-spacing:188.824341px;}
.ls16{letter-spacing:188.836341px;}
.lsd{letter-spacing:188.842341px;}
.ls10{letter-spacing:317.938341px;}
.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;}
}
.ws73{word-spacing:-34.364992px;}
.ws38{word-spacing:-29.881822px;}
.ws1a{word-spacing:-27.641618px;}
.ws7c{word-spacing:-17.508273px;}
.ws6a{word-spacing:-16.970293px;}
.ws64{word-spacing:-16.910517px;}
.wsb1{word-spacing:-16.492088px;}
.ws66{word-spacing:-16.432312px;}
.wsbc{word-spacing:-16.252986px;}
.ws67{word-spacing:-16.133434px;}
.wsa6{word-spacing:-16.013883px;}
.ws7{word-spacing:-15.375583px;}
.wsb3{word-spacing:-15.296576px;}
.ws7d{word-spacing:-15.236800px;}
.wsdf{word-spacing:-15.052792px;}
.ws55{word-spacing:-14.937922px;}
.ws6b{word-spacing:-14.758596px;}
.ws65{word-spacing:-14.698820px;}
.ws40{word-spacing:-14.639044px;}
.wsc0{word-spacing:-14.459718px;}
.ws35{word-spacing:-14.340166px;}
.wsa2{word-spacing:-14.220615px;}
.wsbf{word-spacing:-14.160840px;}
.ws68{word-spacing:-14.041288px;}
.ws2f{word-spacing:-13.981513px;}
.ws6e{word-spacing:-13.921737px;}
.ws42{word-spacing:-13.503308px;}
.ws26{word-spacing:-13.443532px;}
.ws15{word-spacing:-13.385042px;}
.ws54{word-spacing:-13.383757px;}
.wse{word-spacing:-13.169848px;}
.wsb0{word-spacing:-13.144654px;}
.ws31{word-spacing:-13.025103px;}
.ws1d{word-spacing:-12.845776px;}
.ws9e{word-spacing:-12.726225px;}
.ws34{word-spacing:-12.546898px;}
.ws5b{word-spacing:-12.487123px;}
.ws47{word-spacing:-12.427347px;}
.wsb4{word-spacing:-12.248020px;}
.ws6d{word-spacing:-12.188245px;}
.ws1c{word-spacing:-12.008918px;}
.wsc{word-spacing:-11.986284px;}
.ws89{word-spacing:-11.829591px;}
.wsd5{word-spacing:-11.824888px;}
.ws3a{word-spacing:-11.710040px;}
.ws5d{word-spacing:-11.650264px;}
.ws3d{word-spacing:-11.530713px;}
.ws4d{word-spacing:-11.470938px;}
.wsb8{word-spacing:-11.411162px;}
.ws36{word-spacing:-11.351386px;}
.wsad{word-spacing:-11.291611px;}
.ws62{word-spacing:-11.231835px;}
.wsae{word-spacing:-11.172060px;}
.ws27{word-spacing:-11.112284px;}
.wsc4{word-spacing:-11.017912px;}
.wsbe{word-spacing:-10.992733px;}
.ws53{word-spacing:-10.932957px;}
.ws6f{word-spacing:-10.813406px;}
.ws4b{word-spacing:-10.753630px;}
.wsd8{word-spacing:-10.695122px;}
.wsbd{word-spacing:-10.693855px;}
.ws5c{word-spacing:-10.634079px;}
.ws10{word-spacing:-10.587525px;}
.ws39{word-spacing:-10.514528px;}
.wse1{word-spacing:-10.479928px;}
.ws25{word-spacing:-10.454752px;}
.ws5e{word-spacing:-10.394977px;}
.wsa4{word-spacing:-10.335201px;}
.ws51{word-spacing:-10.096099px;}
.wsde{word-spacing:-9.995743px;}
.ws24{word-spacing:-9.976548px;}
.ws3{word-spacing:-9.916772px;}
.ws61{word-spacing:-9.856996px;}
.ws30{word-spacing:-9.797221px;}
.ws92{word-spacing:-9.677670px;}
.wsc3{word-spacing:-9.672952px;}
.wsb{word-spacing:-9.619154px;}
.wscc{word-spacing:-9.565356px;}
.ws41{word-spacing:-9.558118px;}
.ws3b{word-spacing:-9.498343px;}
.wsba{word-spacing:-9.378792px;}
.ws52{word-spacing:-9.319016px;}
.ws5{word-spacing:-9.242565px;}
.ws46{word-spacing:-9.199465px;}
.ws2a{word-spacing:-9.188767px;}
.wsaf{word-spacing:-9.020138px;}
.ws18{word-spacing:-8.985170px;}
.ws17{word-spacing:-8.973573px;}
.ws19{word-spacing:-8.945860px;}
.wsb9{word-spacing:-8.900587px;}
.ws4f{word-spacing:-8.781036px;}
.wsa0{word-spacing:-8.721260px;}
.ws6c{word-spacing:-8.661484px;}
.wsa8{word-spacing:-8.601709px;}
.ws9f{word-spacing:-8.541933px;}
.ws28{word-spacing:-8.362606px;}
.wsb7{word-spacing:-8.302831px;}
.wsb6{word-spacing:-8.243055px;}
.ws9a{word-spacing:-8.063728px;}
.ws56{word-spacing:-8.003953px;}
.wsf{word-spacing:-7.951404px;}
.ws99{word-spacing:-7.884402px;}
.ws9b{word-spacing:-7.824626px;}
.wsd4{word-spacing:-7.790008px;}
.wsac{word-spacing:-7.764850px;}
.wsd{word-spacing:-7.736210px;}
.wsab{word-spacing:-7.705075px;}
.ws50{word-spacing:-7.645299px;}
.wsca{word-spacing:-7.628613px;}
.ws71{word-spacing:-7.465972px;}
.wsa3{word-spacing:-7.346421px;}
.ws60{word-spacing:-7.286646px;}
.ws5f{word-spacing:-7.226870px;}
.ws3f{word-spacing:-7.167094px;}
.ws57{word-spacing:-6.927992px;}
.ws8c{word-spacing:-6.868216px;}
.ws8{word-spacing:-6.821637px;}
.ws23{word-spacing:-6.808441px;}
.wsa9{word-spacing:-6.688890px;}
.ws59{word-spacing:-6.629114px;}
.ws20{word-spacing:-6.509563px;}
.wsb2{word-spacing:-6.449787px;}
.ws70{word-spacing:-6.330236px;}
.ws69{word-spacing:-6.270460px;}
.ws45{word-spacing:-6.210685px;}
.ws43{word-spacing:-6.091134px;}
.ws9c{word-spacing:-5.852031px;}
.wsaa{word-spacing:-5.792256px;}
.ws1e{word-spacing:-5.612929px;}
.wscb{word-spacing:-5.315282px;}
.ws9{word-spacing:-5.261484px;}
.ws5a{word-spacing:-5.254275px;}
.ws1f{word-spacing:-5.134724px;}
.ws14{word-spacing:-5.100088px;}
.ws9d{word-spacing:-5.074948px;}
.ws33{word-spacing:-5.015173px;}
.ws2b{word-spacing:-4.955397px;}
.ws49{word-spacing:-4.895622px;}
.ws3c{word-spacing:-4.835846px;}
.ws85{word-spacing:-4.776070px;}
.ws2c{word-spacing:-4.536968px;}
.ws63{word-spacing:-4.477192px;}
.wsc6{word-spacing:-4.293112px;}
.wsc2{word-spacing:-4.239314px;}
.ws58{word-spacing:-4.238090px;}
.ws22{word-spacing:-3.998988px;}
.ws11{word-spacing:-3.970322px;}
.ws8b{word-spacing:-3.879436px;}
.ws48{word-spacing:-3.640334px;}
.ws13{word-spacing:-3.593733px;}
.wsd9{word-spacing:-3.539935px;}
.ws3e{word-spacing:-3.461007px;}
.wsa{word-spacing:-3.378540px;}
.ws2e{word-spacing:-3.341456px;}
.ws4a{word-spacing:-3.221905px;}
.ws83{word-spacing:-2.982802px;}
.ws81{word-spacing:-2.975473px;}
.wsce{word-spacing:-2.948152px;}
.ws21{word-spacing:-2.923027px;}
.ws94{word-spacing:-2.743700px;}
.wsa7{word-spacing:-2.564373px;}
.ws98{word-spacing:-2.385046px;}
.wsd3{word-spacing:-2.302572px;}
.wsa5{word-spacing:-2.265495px;}
.ws32{word-spacing:-2.086168px;}
.ws37{word-spacing:-2.026393px;}
.wsc9{word-spacing:-1.818386px;}
.ws2d{word-spacing:-1.309086px;}
.wsb5{word-spacing:-1.129759px;}
.wsdd{word-spacing:-1.065208px;}
.ws12{word-spacing:-0.903813px;}
.wse0{word-spacing:-0.850015px;}
.ws44{word-spacing:-0.771105px;}
.ws4e{word-spacing:-0.711330px;}
.ws93{word-spacing:-0.532003px;}
.ws0{word-spacing:-0.086077px;}
.ws88{word-spacing:-0.059776px;}
.ws78{word-spacing:-0.053798px;}
.ws4{word-spacing:-0.041843px;}
.ws29{word-spacing:0.000000px;}
.wsc7{word-spacing:0.441147px;}
.wse3{word-spacing:0.602542px;}
.wsc8{word-spacing:0.656340px;}
.wsd7{word-spacing:2.646881px;}
.wse4{word-spacing:4.045640px;}
.ws80{word-spacing:4.732956px;}
.wscd{word-spacing:4.798817px;}
.wsd0{word-spacing:7.972923px;}
.wscf{word-spacing:9.694472px;}
.wsd6{word-spacing:10.447649px;}
.wsdc{word-spacing:12.760980px;}
.ws84{word-spacing:13.210408px;}
.wsdb{word-spacing:16.096481px;}
.ws8a{word-spacing:18.023091px;}
.ws72{word-spacing:19.877091px;}
.wsda{word-spacing:21.153531px;}
.wsa1{word-spacing:21.196570px;}
.wsbb{word-spacing:21.374371px;}
.wsc1{word-spacing:22.050584px;}
.ws86{word-spacing:25.200722px;}
.ws87{word-spacing:25.225176px;}
.wsc5{word-spacing:26.791603px;}
.ws4c{word-spacing:26.827469px;}
.ws82{word-spacing:26.861091px;}
.ws16{word-spacing:27.606115px;}
.ws6{word-spacing:29.834008px;}
.ws7f{word-spacing:30.858663px;}
.ws2{word-spacing:31.418178px;}
.ws1{word-spacing:31.504255px;}
.ws8f{word-spacing:32.010048px;}
.ws8d{word-spacing:32.017728px;}
.ws74{word-spacing:32.023728px;}
.ws7e{word-spacing:32.029728px;}
.ws77{word-spacing:32.035728px;}
.ws75{word-spacing:32.063846px;}
.ws76{word-spacing:32.117645px;}
.ws97{word-spacing:59.654794px;}
.ws96{word-spacing:59.690794px;}
.wsd2{word-spacing:67.742945px;}
.wsd1{word-spacing:79.363400px;}
.ws1b{word-spacing:80.625869px;}
.wse2{word-spacing:81.353940px;}
.ws95{word-spacing:188.768794px;}
.ws90{word-spacing:188.786794px;}
.ws7b{word-spacing:188.792794px;}
.ws8e{word-spacing:188.804794px;}
.ws7a{word-spacing:188.810794px;}
.ws79{word-spacing:317.906794px;}
.ws91{word-spacing:317.924794px;}
._3{margin-left:-8.005180px;}
._c{margin-left:-5.845945px;}
._5{margin-left:-4.411469px;}
._a{margin-left:-3.287658px;}
._2{margin-left:-2.223761px;}
._4{margin-left:-1.123673px;}
._6{width:1.542408px;}
._1{width:2.754470px;}
._29{width:3.783915px;}
._16{width:4.793805px;}
._0{width:7.058330px;}
._13{width:9.982525px;}
._7{width:13.467627px;}
._b{width:15.804579px;}
._18{width:17.473335px;}
._8{width:20.467076px;}
._14{width:21.734121px;}
._19{width:23.683201px;}
._11{width:25.308900px;}
._15{width:26.444636px;}
._17{width:27.469857px;}
._12{width:29.052292px;}
._10{width:30.663909px;}
._27{width:31.815777px;}
._f{width:32.974691px;}
._28{width:34.624160px;}
._26{width:36.063127px;}
._2a{width:62.461596px;}
._e{width:68.741940px;}
._d{width:80.697600px;}
._1e{width:121.760467px;}
._25{width:143.049946px;}
._20{width:157.249577px;}
._9{width:170.648525px;}
._1d{width:201.788548px;}
._1f{width:217.255112px;}
._1a{width:221.058232px;}
._23{width:228.737800px;}
._1c{width:237.982779px;}
._24{width:241.441008px;}
._22{width:250.933847px;}
._21{width:271.376953px;}
._1b{width:314.402634px;}
.fc4{color:rgb(255,128,0);}
.fc3{color:rgb(0,153,0);}
.fc2{color:rgb(0,0,229);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y26{bottom:213.841500px;}
.y81{bottom:219.222000px;}
.y51{bottom:219.555000px;}
.y169{bottom:230.280000px;}
.y25{bottom:231.775500px;}
.y50{bottom:235.993500px;}
.y80{bottom:246.718500px;}
.y119{bottom:247.926000px;}
.y6c{bottom:248.421000px;}
.y24{bottom:249.708000px;}
.y4f{bottom:252.432000px;}
.yaa{bottom:255.021000px;}
.y168{bottom:263.157000px;}
.y72{bottom:264.112500px;}
.y118{bottom:265.860000px;}
.y6b{bottom:266.355000px;}
.y23{bottom:267.640500px;}
.y146{bottom:268.870500px;}
.ya9{bottom:271.459500px;}
.y4e{bottom:276.517500px;}
.yf8{bottom:279.261000px;}
.y167{bottom:280.065000px;}
.y71{bottom:282.046500px;}
.y117{bottom:283.792500px;}
.y6a{bottom:284.287500px;}
.y22{bottom:285.573000px;}
.ya8{bottom:287.898000px;}
.y145{bottom:293.107500px;}
.y4d{bottom:294.450000px;}
.yf7{bottom:295.699500px;}
.y166{bottom:296.503500px;}
.y70{bottom:299.979000px;}
.y116{bottom:301.725000px;}
.y69{bottom:302.220000px;}
.yca{bottom:303.505500px;}
.y21{bottom:304.167000px;}
.ya7{bottom:304.336500px;}
.y144{bottom:311.040000px;}
.yf6{bottom:312.138000px;}
.y4c{bottom:312.867000px;}
.y165{bottom:312.942000px;}
.y6f{bottom:317.911500px;}
.ya6{bottom:320.775000px;}
.yc9{bottom:321.438000px;}
.y20{bottom:322.099500px;}
.yf5{bottom:328.576500px;}
.y143{bottom:328.972500px;}
.y164{bottom:329.848500px;}
.y4b{bottom:330.799500px;}
.ya5{bottom:337.213500px;}
.y1f{bottom:340.032000px;}
.yf4{bottom:345.015000px;}
.y115{bottom:345.369000px;}
.y163{bottom:346.287000px;}
.y142{bottom:346.905000px;}
.y4a{bottom:348.732000px;}
.ya4{bottom:353.650500px;}
.yc8{bottom:353.907000px;}
.y68{bottom:355.449000px;}
.y127{bottom:357.327000px;}
.y1e{bottom:357.964500px;}
.y6e{bottom:358.894500px;}
.yf3{bottom:361.453500px;}
.y162{bottom:362.725500px;}
.y141{bottom:364.839000px;}
.y49{bottom:366.664500px;}
.ya3{bottom:370.089000px;}
.y67{bottom:373.383000px;}
.y126{bottom:375.259500px;}
.y1d{bottom:375.897000px;}
.yf2{bottom:377.892000px;}
.y161{bottom:379.164000px;}
.y140{bottom:382.771500px;}
.y48{bottom:384.598500px;}
.ya2{bottom:386.527500px;}
.y66{bottom:391.315500px;}
.y1c{bottom:393.829500px;}
.yf1{bottom:394.330500px;}
.y160{bottom:396.072000px;}
.y13f{bottom:401.226000px;}
.y47{bottom:402.531000px;}
.ya1{bottom:402.966000px;}
.y65{bottom:409.248000px;}
.yf0{bottom:410.769000px;}
.y1b{bottom:411.763500px;}
.y15f{bottom:412.510500px;}
.y125{bottom:414.136500px;}
.y13e{bottom:419.158500px;}
.ya0{bottom:419.404500px;}
.y46{bottom:420.463500px;}
.y64{bottom:427.180500px;}
.yef{bottom:427.207500px;}
.y15e{bottom:429.417000px;}
.y1a{bottom:429.696000px;}
.y9f{bottom:435.843000px;}
.y13d{bottom:437.091000px;}
.y45{bottom:438.880500px;}
.y114{bottom:439.164000px;}
.yee{bottom:443.646000px;}
.yc7{bottom:444.178500px;}
.y63{bottom:445.113000px;}
.y15d{bottom:445.855500px;}
.y19{bottom:447.628500px;}
.y6d{bottom:453.531000px;}
.y13c{bottom:455.025000px;}
.y113{bottom:455.602500px;}
.y44{bottom:456.813000px;}
.yed{bottom:460.083000px;}
.y9e{bottom:460.542000px;}
.yc6{bottom:460.617000px;}
.y15c{bottom:462.763500px;}
.y62{bottom:463.047000px;}
.y124{bottom:467.958000px;}
.y112{bottom:472.041000px;}
.y13b{bottom:472.957500px;}
.y43{bottom:474.745500px;}
.yec{bottom:476.521500px;}
.yc5{bottom:477.055500px;}
.y9d{bottom:478.474500px;}
.y15b{bottom:479.202000px;}
.y61{bottom:480.979500px;}
.y123{bottom:485.890500px;}
.y18{bottom:486.796500px;}
.y111{bottom:488.479500px;}
.y13a{bottom:490.890000px;}
.y42{bottom:492.678000px;}
.yeb{bottom:492.960000px;}
.yc4{bottom:493.494000px;}
.y15a{bottom:495.640500px;}
.y122{bottom:503.823000px;}
.y110{bottom:505.515000px;}
.y139{bottom:508.822500px;}
.yea{bottom:509.398500px;}
.yc3{bottom:509.932500px;}
.y41{bottom:510.612000px;}
.y159{bottom:512.077500px;}
.y121{bottom:521.755500px;}
.y10f{bottom:522.999000px;}
.ye9{bottom:525.837000px;}
.yc2{bottom:526.371000px;}
.y158{bottom:528.516000px;}
.y40{bottom:528.544500px;}
.y60{bottom:534.208500px;}
.y120{bottom:539.688000px;}
.y17{bottom:540.184500px;}
.ye8{bottom:542.275500px;}
.yc1{bottom:542.809500px;}
.y157{bottom:545.424000px;}
.y3f{bottom:546.477000px;}
.y138{bottom:547.299000px;}
.y5f{bottom:552.141000px;}
.y9c{bottom:554.107500px;}
.y16{bottom:556.623000px;}
.y11f{bottom:557.620500px;}
.ye7{bottom:558.714000px;}
.yc0{bottom:559.246500px;}
.y156{bottom:561.862500px;}
.y3e{bottom:564.894000px;}
.y5e{bottom:570.075000px;}
.y9b{bottom:570.546000px;}
.ye6{bottom:575.152500px;}
.y11e{bottom:575.554500px;}
.ybf{bottom:575.685000px;}
.y155{bottom:578.770500px;}
.y3d{bottom:582.826500px;}
.y9a{bottom:586.984500px;}
.y5d{bottom:588.007500px;}
.y15{bottom:590.160000px;}
.y10e{bottom:590.529000px;}
.ye5{bottom:591.591000px;}
.ybe{bottom:592.123500px;}
.y154{bottom:595.209000px;}
.y137{bottom:597.730500px;}
.y3c{bottom:600.759000px;}
.y99{bottom:603.423000px;}
.y5c{bottom:605.940000px;}
.y14{bottom:606.598500px;}
.ye4{bottom:608.029500px;}
.y10d{bottom:608.461500px;}
.ybd{bottom:608.562000px;}
.y153{bottom:611.646000px;}
.y11d{bottom:614.431500px;}
.y136{bottom:615.663000px;}
.y3b{bottom:618.691500px;}
.y98{bottom:619.860000px;}
.y13{bottom:623.037000px;}
.ye3{bottom:624.466500px;}
.ybc{bottom:625.000500px;}
.y10c{bottom:626.394000px;}
.y152{bottom:628.084500px;}
.y135{bottom:633.597000px;}
.y97{bottom:636.298500px;}
.y3a{bottom:636.625500px;}
.y12{bottom:639.475500px;}
.ye2{bottom:640.905000px;}
.ybb{bottom:641.439000px;}
.y10b{bottom:644.326500px;}
.y151{bottom:644.523000px;}
.y134{bottom:651.529500px;}
.y96{bottom:652.737000px;}
.y39{bottom:654.558000px;}
.y11{bottom:655.914000px;}
.ye1{bottom:657.343500px;}
.yba{bottom:657.877500px;}
.y5b{bottom:659.169000px;}
.y150{bottom:660.961500px;}
.y10a{bottom:662.259000px;}
.y95{bottom:669.175500px;}
.y133{bottom:669.462000px;}
.y10{bottom:672.352500px;}
.y11c{bottom:672.366000px;}
.y38{bottom:672.490500px;}
.ye0{bottom:673.782000px;}
.yb9{bottom:674.316000px;}
.y5a{bottom:677.103000px;}
.y14f{bottom:677.400000px;}
.y109{bottom:680.193000px;}
.y94{bottom:685.614000px;}
.y132{bottom:687.394500px;}
.yf{bottom:688.791000px;}
.ydf{bottom:690.220500px;}
.y11b{bottom:690.298500px;}
.y37{bottom:690.423000px;}
.yb8{bottom:690.754500px;}
.y59{bottom:695.035500px;}
.y108{bottom:698.125500px;}
.y93{bottom:702.052500px;}
.ye{bottom:705.229500px;}
.y131{bottom:705.327000px;}
.yde{bottom:706.659000px;}
.yb7{bottom:707.193000px;}
.y11a{bottom:708.231000px;}
.y58{bottom:712.968000px;}
.y14e{bottom:714.117000px;}
.y107{bottom:716.058000px;}
.y92{bottom:718.491000px;}
.yd{bottom:721.668000px;}
.ydd{bottom:723.097500px;}
.yb6{bottom:723.631500px;}
.y130{bottom:723.783000px;}
.y36{bottom:728.710500px;}
.y106{bottom:733.990500px;}
.y91{bottom:734.929500px;}
.yc{bottom:738.106500px;}
.y7f{bottom:739.264500px;}
.ydc{bottom:739.536000px;}
.yb5{bottom:740.068500px;}
.y12f{bottom:741.715500px;}
.y17a{bottom:751.042500px;}
.y90{bottom:751.368000px;}
.y105{bottom:751.923000px;}
.yb{bottom:754.543500px;}
.ydb{bottom:755.974500px;}
.yb4{bottom:756.507000px;}
.y7e{bottom:757.197000px;}
.y12e{bottom:759.648000px;}
.y14d{bottom:764.283000px;}
.y57{bottom:766.197000px;}
.y179{bottom:767.481000px;}
.y8f{bottom:767.806500px;}
.y104{bottom:769.855500px;}
.ya{bottom:770.982000px;}
.yda{bottom:772.413000px;}
.yb3{bottom:772.945500px;}
.y7d{bottom:775.129500px;}
.y12d{bottom:777.580500px;}
.y35{bottom:778.951500px;}
.y14c{bottom:782.217000px;}
.y178{bottom:783.919500px;}
.y56{bottom:784.131000px;}
.y8e{bottom:784.245000px;}
.y9{bottom:787.420500px;}
.y103{bottom:787.789500px;}
.yd9{bottom:788.851500px;}
.yb2{bottom:789.384000px;}
.y34{bottom:796.884000px;}
.y177{bottom:800.358000px;}
.y8d{bottom:800.682000px;}
.y8{bottom:803.859000px;}
.yd8{bottom:805.288500px;}
.y102{bottom:805.722000px;}
.yb1{bottom:805.822500px;}
.y12c{bottom:810.079500px;}
.y7c{bottom:812.175000px;}
.y33{bottom:814.816500px;}
.y176{bottom:816.796500px;}
.y8c{bottom:817.120500px;}
.y7{bottom:820.297500px;}
.y14b{bottom:820.428000px;}
.yd7{bottom:821.727000px;}
.y55{bottom:822.415500px;}
.y101{bottom:823.654500px;}
.y7b{bottom:830.107500px;}
.y32{bottom:832.750500px;}
.y175{bottom:833.235000px;}
.y8b{bottom:833.559000px;}
.y6{bottom:836.736000px;}
.y14a{bottom:836.866500px;}
.yd6{bottom:838.165500px;}
.y100{bottom:841.587000px;}
.y7a{bottom:849.082500px;}
.y174{bottom:849.672000px;}
.y8a{bottom:849.997500px;}
.yb0{bottom:850.543500px;}
.y31{bottom:850.683000px;}
.y149{bottom:853.305000px;}
.yd5{bottom:854.604000px;}
.y12b{bottom:857.523000px;}
.yff{bottom:859.519500px;}
.y173{bottom:866.110500px;}
.y89{bottom:866.436000px;}
.y54{bottom:866.679000px;}
.y79{bottom:867.015000px;}
.yaf{bottom:868.477500px;}
.y30{bottom:868.615500px;}
.y148{bottom:869.742000px;}
.yd4{bottom:871.042500px;}
.y12a{bottom:875.455500px;}
.yfe{bottom:877.452000px;}
.y88{bottom:880.848000px;}
.y172{bottom:882.549000px;}
.y78{bottom:884.947500px;}
.y147{bottom:886.180500px;}
.y2f{bottom:886.548000px;}
.yae{bottom:886.926000px;}
.yd3{bottom:887.481000px;}
.y129{bottom:893.388000px;}
.yfd{bottom:895.386000px;}
.y171{bottom:898.987500px;}
.y5{bottom:903.228000px;}
.yd2{bottom:903.919500px;}
.y77{bottom:903.922500px;}
.y2e{bottom:904.480500px;}
.yad{bottom:904.858500px;}
.y128{bottom:911.320500px;}
.yfc{bottom:913.318500px;}
.y170{bottom:915.426000px;}
.y87{bottom:915.940500px;}
.y4{bottom:919.666500px;}
.yd1{bottom:920.358000px;}
.y76{bottom:921.856500px;}
.y2d{bottom:922.414500px;}
.y53{bottom:922.897500px;}
.yac{bottom:923.307000px;}
.yfb{bottom:931.251000px;}
.y16f{bottom:931.864500px;}
.y86{bottom:933.873000px;}
.yd0{bottom:936.796500px;}
.y75{bottom:939.789000px;}
.y2c{bottom:940.347000px;}
.y52{bottom:940.830000px;}
.yab{bottom:941.239500px;}
.y16e{bottom:948.303000px;}
.yfa{bottom:949.183500px;}
.y3{bottom:950.986500px;}
.y85{bottom:951.807000px;}
.ycf{bottom:953.235000px;}
.y74{bottom:957.721500px;}
.y2b{bottom:958.764000px;}
.y16d{bottom:964.741500px;}
.yce{bottom:969.672000px;}
.y84{bottom:969.739500px;}
.y73{bottom:975.654000px;}
.y2a{bottom:976.696500px;}
.y16c{bottom:981.180000px;}
.ycd{bottom:986.110500px;}
.yf9{bottom:986.850000px;}
.y83{bottom:987.672000px;}
.y29{bottom:994.629000px;}
.y16b{bottom:997.618500px;}
.ycc{bottom:1002.549000px;}
.y2{bottom:1003.596000px;}
.y82{bottom:1005.604500px;}
.y28{bottom:1012.561500px;}
.y16a{bottom:1014.055500px;}
.ycb{bottom:1018.987500px;}
.y1{bottom:1030.494000px;}
.y27{bottom:1069.348500px;}
.hc{height:20.263928px;}
.h9{height:24.281011px;}
.hd{height:37.712678px;}
.h3{height:40.402598px;}
.h4{height:41.155776px;}
.ha{height:41.902696px;}
.hb{height:43.738099px;}
.h6{height:44.891476px;}
.h8{height:50.017576px;}
.h7{height:50.023576px;}
.h5{height:50.283571px;}
.h2{height:53.072100px;}
.h1{height:60.426194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:85.050000px;}
.x15{left:90.133500px;}
.x1a{left:108.795000px;}
.x7{left:110.161500px;}
.xd{left:114.273000px;}
.x1d{left:117.070500px;}
.xf{left:119.503500px;}
.x11{left:123.699000px;}
.x19{left:125.104500px;}
.x2{left:129.828000px;}
.x8{left:132.577500px;}
.x10{left:135.565500px;}
.x13{left:140.130000px;}
.x12{left:145.213500px;}
.x6{left:152.680500px;}
.x1{left:154.054500px;}
.x9{left:165.241500px;}
.xb{left:169.354500px;}
.x1b{left:172.152000px;}
.x17{left:177.433500px;}
.xa{left:187.657500px;}
.x1c{left:190.372500px;}
.x14{left:195.105000px;}
.x18{left:227.287500px;}
.x4{left:232.120500px;}
.xe{left:268.816500px;}
.x3{left:317.160000px;}
.x5{left:330.252000px;}
.xc{left:448.102500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000501pt;}
.ls18{letter-spacing:0.001997pt;}
.ls5{letter-spacing:2.655017pt;}
.ls6{letter-spacing:2.660350pt;}
.ls8{letter-spacing:15.940350pt;}
.ls3{letter-spacing:16.378610pt;}
.ls1{letter-spacing:16.597277pt;}
.ls2{letter-spacing:16.602610pt;}
.ls7{letter-spacing:19.032994pt;}
.ls9{letter-spacing:20.484350pt;}
.lsa{letter-spacing:20.489684pt;}
.ls11{letter-spacing:22.323713pt;}
.ls12{letter-spacing:22.455412pt;}
.ls13{letter-spacing:26.562673pt;}
.lse{letter-spacing:28.582545pt;}
.lsb{letter-spacing:53.049192pt;}
.ls15{letter-spacing:53.054525pt;}
.lsc{letter-spacing:53.059859pt;}
.ls14{letter-spacing:53.086525pt;}
.ls17{letter-spacing:167.838525pt;}
.lsf{letter-spacing:167.843859pt;}
.ls16{letter-spacing:167.854525pt;}
.lsd{letter-spacing:167.859859pt;}
.ls10{letter-spacing:282.611859pt;}
.ws73{word-spacing:-30.546660pt;}
.ws38{word-spacing:-26.561620pt;}
.ws1a{word-spacing:-24.570327pt;}
.ws7c{word-spacing:-15.562910pt;}
.ws6a{word-spacing:-15.084705pt;}
.ws64{word-spacing:-15.031571pt;}
.wsb1{word-spacing:-14.659634pt;}
.ws66{word-spacing:-14.606500pt;}
.wsbc{word-spacing:-14.447098pt;}
.ws67{word-spacing:-14.340831pt;}
.wsa6{word-spacing:-14.234563pt;}
.ws7{word-spacing:-13.667185pt;}
.wsb3{word-spacing:-13.596956pt;}
.ws7d{word-spacing:-13.543823pt;}
.wsdf{word-spacing:-13.380260pt;}
.ws55{word-spacing:-13.278153pt;}
.ws6b{word-spacing:-13.118752pt;}
.ws65{word-spacing:-13.065618pt;}
.ws40{word-spacing:-13.012484pt;}
.wsc0{word-spacing:-12.853082pt;}
.ws35{word-spacing:-12.746815pt;}
.wsa2{word-spacing:-12.640547pt;}
.wsbf{word-spacing:-12.587413pt;}
.ws68{word-spacing:-12.481145pt;}
.ws2f{word-spacing:-12.428011pt;}
.ws6e{word-spacing:-12.374878pt;}
.ws42{word-spacing:-12.002940pt;}
.ws26{word-spacing:-11.949807pt;}
.ws15{word-spacing:-11.897815pt;}
.ws54{word-spacing:-11.896673pt;}
.wse{word-spacing:-11.706532pt;}
.wsb0{word-spacing:-11.684137pt;}
.ws31{word-spacing:-11.577870pt;}
.ws1d{word-spacing:-11.418468pt;}
.ws9e{word-spacing:-11.312200pt;}
.ws34{word-spacing:-11.152799pt;}
.ws5b{word-spacing:-11.099665pt;}
.ws47{word-spacing:-11.046531pt;}
.wsb4{word-spacing:-10.887129pt;}
.ws6d{word-spacing:-10.833995pt;}
.ws1c{word-spacing:-10.674594pt;}
.wsc{word-spacing:-10.654474pt;}
.ws89{word-spacing:-10.515192pt;}
.wsd5{word-spacing:-10.511012pt;}
.ws3a{word-spacing:-10.408924pt;}
.ws5d{word-spacing:-10.355791pt;}
.ws3d{word-spacing:-10.249523pt;}
.ws4d{word-spacing:-10.196389pt;}
.wsb8{word-spacing:-10.143255pt;}
.ws36{word-spacing:-10.090121pt;}
.wsad{word-spacing:-10.036987pt;}
.ws62{word-spacing:-9.983854pt;}
.wsae{word-spacing:-9.930720pt;}
.ws27{word-spacing:-9.877586pt;}
.wsc4{word-spacing:-9.793700pt;}
.wsbe{word-spacing:-9.771318pt;}
.ws53{word-spacing:-9.718184pt;}
.ws6f{word-spacing:-9.611916pt;}
.ws4b{word-spacing:-9.558783pt;}
.wsd8{word-spacing:-9.506775pt;}
.wsbd{word-spacing:-9.505649pt;}
.ws5c{word-spacing:-9.452515pt;}
.ws10{word-spacing:-9.411133pt;}
.ws39{word-spacing:-9.346247pt;}
.wse1{word-spacing:-9.315492pt;}
.ws25{word-spacing:-9.293113pt;}
.ws5e{word-spacing:-9.239979pt;}
.wsa4{word-spacing:-9.186846pt;}
.ws51{word-spacing:-8.974310pt;}
.wsde{word-spacing:-8.885105pt;}
.ws24{word-spacing:-8.868042pt;}
.ws3{word-spacing:-8.814908pt;}
.ws61{word-spacing:-8.761775pt;}
.ws30{word-spacing:-8.708641pt;}
.ws92{word-spacing:-8.602373pt;}
.wsc3{word-spacing:-8.598180pt;}
.wsb{word-spacing:-8.550359pt;}
.wscc{word-spacing:-8.502538pt;}
.ws41{word-spacing:-8.496105pt;}
.ws3b{word-spacing:-8.442971pt;}
.wsba{word-spacing:-8.336704pt;}
.ws52{word-spacing:-8.283570pt;}
.ws5{word-spacing:-8.215613pt;}
.ws46{word-spacing:-8.177302pt;}
.ws2a{word-spacing:-8.167793pt;}
.wsaf{word-spacing:-8.017900pt;}
.ws18{word-spacing:-7.986818pt;}
.ws17{word-spacing:-7.976509pt;}
.ws19{word-spacing:-7.951875pt;}
.wsb9{word-spacing:-7.911633pt;}
.ws4f{word-spacing:-7.805365pt;}
.wsa0{word-spacing:-7.752231pt;}
.ws6c{word-spacing:-7.699097pt;}
.wsa8{word-spacing:-7.645963pt;}
.ws9f{word-spacing:-7.592830pt;}
.ws28{word-spacing:-7.433428pt;}
.wsb7{word-spacing:-7.380294pt;}
.wsb6{word-spacing:-7.327160pt;}
.ws9a{word-spacing:-7.167759pt;}
.ws56{word-spacing:-7.114625pt;}
.wsf{word-spacing:-7.067914pt;}
.ws99{word-spacing:-7.008357pt;}
.ws9b{word-spacing:-6.955223pt;}
.wsd4{word-spacing:-6.924452pt;}
.wsac{word-spacing:-6.902089pt;}
.wsd{word-spacing:-6.876631pt;}
.wsab{word-spacing:-6.848955pt;}
.ws50{word-spacing:-6.795822pt;}
.wsca{word-spacing:-6.780989pt;}
.ws71{word-spacing:-6.636420pt;}
.wsa3{word-spacing:-6.530152pt;}
.ws60{word-spacing:-6.477018pt;}
.ws5f{word-spacing:-6.423884pt;}
.ws3f{word-spacing:-6.370751pt;}
.ws57{word-spacing:-6.158215pt;}
.ws8c{word-spacing:-6.105081pt;}
.ws8{word-spacing:-6.063677pt;}
.ws23{word-spacing:-6.051947pt;}
.wsa9{word-spacing:-5.945680pt;}
.ws59{word-spacing:-5.892546pt;}
.ws20{word-spacing:-5.786278pt;}
.wsb2{word-spacing:-5.733144pt;}
.ws70{word-spacing:-5.626876pt;}
.ws69{word-spacing:-5.573743pt;}
.ws45{word-spacing:-5.520609pt;}
.ws43{word-spacing:-5.414341pt;}
.ws9c{word-spacing:-5.201806pt;}
.wsaa{word-spacing:-5.148672pt;}
.ws1e{word-spacing:-4.989270pt;}
.wscb{word-spacing:-4.724695pt;}
.ws9{word-spacing:-4.676874pt;}
.ws5a{word-spacing:-4.670467pt;}
.ws1f{word-spacing:-4.564199pt;}
.ws14{word-spacing:-4.533412pt;}
.ws9d{word-spacing:-4.511065pt;}
.ws33{word-spacing:-4.457931pt;}
.ws2b{word-spacing:-4.404798pt;}
.ws49{word-spacing:-4.351664pt;}
.ws3c{word-spacing:-4.298530pt;}
.ws85{word-spacing:-4.245396pt;}
.ws2c{word-spacing:-4.032860pt;}
.ws63{word-spacing:-3.979727pt;}
.wsc6{word-spacing:-3.816100pt;}
.wsc2{word-spacing:-3.768279pt;}
.ws58{word-spacing:-3.767191pt;}
.ws22{word-spacing:-3.554656pt;}
.ws11{word-spacing:-3.529175pt;}
.ws8b{word-spacing:-3.448388pt;}
.ws48{word-spacing:-3.235852pt;}
.ws13{word-spacing:-3.194429pt;}
.wsd9{word-spacing:-3.146609pt;}
.ws3e{word-spacing:-3.076451pt;}
.wsa{word-spacing:-3.003146pt;}
.ws2e{word-spacing:-2.970183pt;}
.ws4a{word-spacing:-2.863915pt;}
.ws83{word-spacing:-2.651380pt;}
.ws81{word-spacing:-2.644865pt;}
.wsce{word-spacing:-2.620580pt;}
.ws21{word-spacing:-2.598246pt;}
.ws94{word-spacing:-2.438844pt;}
.wsa7{word-spacing:-2.279443pt;}
.ws98{word-spacing:-2.120041pt;}
.wsd3{word-spacing:-2.046730pt;}
.wsa5{word-spacing:-2.013774pt;}
.ws32{word-spacing:-1.854372pt;}
.ws37{word-spacing:-1.801238pt;}
.wsc9{word-spacing:-1.616343pt;}
.ws2d{word-spacing:-1.163632pt;}
.wsb5{word-spacing:-1.004230pt;}
.wsdd{word-spacing:-0.946852pt;}
.ws12{word-spacing:-0.803389pt;}
.wse0{word-spacing:-0.755569pt;}
.ws44{word-spacing:-0.685427pt;}
.ws4e{word-spacing:-0.632293pt;}
.ws93{word-spacing:-0.472891pt;}
.ws0{word-spacing:-0.076513pt;}
.ws88{word-spacing:-0.053134pt;}
.ws78{word-spacing:-0.047821pt;}
.ws4{word-spacing:-0.037194pt;}
.ws29{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.392131pt;}
.wse3{word-spacing:0.535593pt;}
.wsc8{word-spacing:0.583414pt;}
.wsd7{word-spacing:2.352783pt;}
.wse4{word-spacing:3.596124pt;}
.ws80{word-spacing:4.207072pt;}
.wscd{word-spacing:4.265615pt;}
.wsd0{word-spacing:7.087043pt;}
.wscf{word-spacing:8.617308pt;}
.wsd6{word-spacing:9.286799pt;}
.wsdc{word-spacing:11.343094pt;}
.ws84{word-spacing:11.742585pt;}
.wsdb{word-spacing:14.307983pt;}
.ws8a{word-spacing:16.020525pt;}
.ws72{word-spacing:17.668525pt;}
.wsda{word-spacing:18.803139pt;}
.wsa1{word-spacing:18.841395pt;}
.wsbb{word-spacing:18.999441pt;}
.wsc1{word-spacing:19.600519pt;}
.ws86{word-spacing:22.400642pt;}
.ws87{word-spacing:22.422378pt;}
.wsc5{word-spacing:23.814758pt;}
.ws4c{word-spacing:23.846639pt;}
.ws82{word-spacing:23.876525pt;}
.ws16{word-spacing:24.538769pt;}
.ws6{word-spacing:26.519119pt;}
.ws7f{word-spacing:27.429923pt;}
.ws2{word-spacing:27.927269pt;}
.ws1{word-spacing:28.003782pt;}
.ws8f{word-spacing:28.453376pt;}
.ws8d{word-spacing:28.460203pt;}
.ws74{word-spacing:28.465536pt;}
.ws7e{word-spacing:28.470869pt;}
.ws77{word-spacing:28.476203pt;}
.ws75{word-spacing:28.501197pt;}
.ws76{word-spacing:28.549018pt;}
.ws97{word-spacing:53.026484pt;}
.ws96{word-spacing:53.058484pt;}
.wsd2{word-spacing:60.215951pt;}
.wsd1{word-spacing:70.545244pt;}
.ws1b{word-spacing:71.667439pt;}
.wse2{word-spacing:72.314614pt;}
.ws95{word-spacing:167.794484pt;}
.ws90{word-spacing:167.810484pt;}
.ws7b{word-spacing:167.815817pt;}
.ws8e{word-spacing:167.826484pt;}
.ws7a{word-spacing:167.831817pt;}
.ws79{word-spacing:282.583817pt;}
.ws91{word-spacing:282.599817pt;}
._3{margin-left:-7.115715pt;}
._c{margin-left:-5.196396pt;}
._5{margin-left:-3.921306pt;}
._a{margin-left:-2.922363pt;}
._2{margin-left:-1.976676pt;}
._4{margin-left:-0.998820pt;}
._6{width:1.371030pt;}
._1{width:2.448418pt;}
._29{width:3.363480pt;}
._16{width:4.261160pt;}
._0{width:6.274071pt;}
._13{width:8.873356pt;}
._7{width:11.971224pt;}
._b{width:14.048515pt;}
._18{width:15.531853pt;}
._8{width:18.192957pt;}
._14{width:19.319219pt;}
._19{width:21.051735pt;}
._11{width:22.496800pt;}
._15{width:23.506343pt;}
._17{width:24.417651pt;}
._12{width:25.824260pt;}
._10{width:27.256808pt;}
._27{width:28.280691pt;}
._f{width:29.310837pt;}
._28{width:30.777031pt;}
._26{width:32.056113pt;}
._2a{width:55.521419pt;}
._e{width:61.103947pt;}
._d{width:71.731200pt;}
._1e{width:108.231526pt;}
._25{width:127.155507pt;}
._20{width:139.777402pt;}
._9{width:151.687578pt;}
._1d{width:179.367598pt;}
._1f{width:193.115655pt;}
._1a{width:196.496207pt;}
._23{width:203.322489pt;}
._1c{width:211.540248pt;}
._24{width:214.614229pt;}
._22{width:223.052308pt;}
._21{width:241.223958pt;}
._1b{width:279.469008pt;}
.fs6{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:190.081333pt;}
.y81{bottom:194.864000pt;}
.y51{bottom:195.160000pt;}
.y169{bottom:204.693333pt;}
.y25{bottom:206.022667pt;}
.y50{bottom:209.772000pt;}
.y80{bottom:219.305333pt;}
.y119{bottom:220.378667pt;}
.y6c{bottom:220.818667pt;}
.y24{bottom:221.962667pt;}
.y4f{bottom:224.384000pt;}
.yaa{bottom:226.685333pt;}
.y168{bottom:233.917333pt;}
.y72{bottom:234.766667pt;}
.y118{bottom:236.320000pt;}
.y6b{bottom:236.760000pt;}
.y23{bottom:237.902667pt;}
.y146{bottom:238.996000pt;}
.ya9{bottom:241.297333pt;}
.y4e{bottom:245.793333pt;}
.yf8{bottom:248.232000pt;}
.y167{bottom:248.946667pt;}
.y71{bottom:250.708000pt;}
.y117{bottom:252.260000pt;}
.y6a{bottom:252.700000pt;}
.y22{bottom:253.842667pt;}
.ya8{bottom:255.909333pt;}
.y145{bottom:260.540000pt;}
.y4d{bottom:261.733333pt;}
.yf7{bottom:262.844000pt;}
.y166{bottom:263.558667pt;}
.y70{bottom:266.648000pt;}
.y116{bottom:268.200000pt;}
.y69{bottom:268.640000pt;}
.yca{bottom:269.782667pt;}
.y21{bottom:270.370667pt;}
.ya7{bottom:270.521333pt;}
.y144{bottom:276.480000pt;}
.yf6{bottom:277.456000pt;}
.y4c{bottom:278.104000pt;}
.y165{bottom:278.170667pt;}
.y6f{bottom:282.588000pt;}
.ya6{bottom:285.133333pt;}
.yc9{bottom:285.722667pt;}
.y20{bottom:286.310667pt;}
.yf5{bottom:292.068000pt;}
.y143{bottom:292.420000pt;}
.y164{bottom:293.198667pt;}
.y4b{bottom:294.044000pt;}
.ya5{bottom:299.745333pt;}
.y1f{bottom:302.250667pt;}
.yf4{bottom:306.680000pt;}
.y115{bottom:306.994667pt;}
.y163{bottom:307.810667pt;}
.y142{bottom:308.360000pt;}
.y4a{bottom:309.984000pt;}
.ya4{bottom:314.356000pt;}
.yc8{bottom:314.584000pt;}
.y68{bottom:315.954667pt;}
.y127{bottom:317.624000pt;}
.y1e{bottom:318.190667pt;}
.y6e{bottom:319.017333pt;}
.yf3{bottom:321.292000pt;}
.y162{bottom:322.422667pt;}
.y141{bottom:324.301333pt;}
.y49{bottom:325.924000pt;}
.ya3{bottom:328.968000pt;}
.y67{bottom:331.896000pt;}
.y126{bottom:333.564000pt;}
.y1d{bottom:334.130667pt;}
.yf2{bottom:335.904000pt;}
.y161{bottom:337.034667pt;}
.y140{bottom:340.241333pt;}
.y48{bottom:341.865333pt;}
.ya2{bottom:343.580000pt;}
.y66{bottom:347.836000pt;}
.y1c{bottom:350.070667pt;}
.yf1{bottom:350.516000pt;}
.y160{bottom:352.064000pt;}
.y13f{bottom:356.645333pt;}
.y47{bottom:357.805333pt;}
.ya1{bottom:358.192000pt;}
.y65{bottom:363.776000pt;}
.yf0{bottom:365.128000pt;}
.y1b{bottom:366.012000pt;}
.y15f{bottom:366.676000pt;}
.y125{bottom:368.121333pt;}
.y13e{bottom:372.585333pt;}
.ya0{bottom:372.804000pt;}
.y46{bottom:373.745333pt;}
.y64{bottom:379.716000pt;}
.yef{bottom:379.740000pt;}
.y15e{bottom:381.704000pt;}
.y1a{bottom:381.952000pt;}
.y9f{bottom:387.416000pt;}
.y13d{bottom:388.525333pt;}
.y45{bottom:390.116000pt;}
.y114{bottom:390.368000pt;}
.yee{bottom:394.352000pt;}
.yc7{bottom:394.825333pt;}
.y63{bottom:395.656000pt;}
.y15d{bottom:396.316000pt;}
.y19{bottom:397.892000pt;}
.y6d{bottom:403.138667pt;}
.y13c{bottom:404.466667pt;}
.y113{bottom:404.980000pt;}
.y44{bottom:406.056000pt;}
.yed{bottom:408.962667pt;}
.y9e{bottom:409.370667pt;}
.yc6{bottom:409.437333pt;}
.y15c{bottom:411.345333pt;}
.y62{bottom:411.597333pt;}
.y124{bottom:415.962667pt;}
.y112{bottom:419.592000pt;}
.y13b{bottom:420.406667pt;}
.y43{bottom:421.996000pt;}
.yec{bottom:423.574667pt;}
.yc5{bottom:424.049333pt;}
.y9d{bottom:425.310667pt;}
.y15b{bottom:425.957333pt;}
.y61{bottom:427.537333pt;}
.y123{bottom:431.902667pt;}
.y18{bottom:432.708000pt;}
.y111{bottom:434.204000pt;}
.y13a{bottom:436.346667pt;}
.y42{bottom:437.936000pt;}
.yeb{bottom:438.186667pt;}
.yc4{bottom:438.661333pt;}
.y15a{bottom:440.569333pt;}
.y122{bottom:447.842667pt;}
.y110{bottom:449.346667pt;}
.y139{bottom:452.286667pt;}
.yea{bottom:452.798667pt;}
.yc3{bottom:453.273333pt;}
.y41{bottom:453.877333pt;}
.y159{bottom:455.180000pt;}
.y121{bottom:463.782667pt;}
.y10f{bottom:464.888000pt;}
.ye9{bottom:467.410667pt;}
.yc2{bottom:467.885333pt;}
.y158{bottom:469.792000pt;}
.y40{bottom:469.817333pt;}
.y60{bottom:474.852000pt;}
.y120{bottom:479.722667pt;}
.y17{bottom:480.164000pt;}
.ye8{bottom:482.022667pt;}
.yc1{bottom:482.497333pt;}
.y157{bottom:484.821333pt;}
.y3f{bottom:485.757333pt;}
.y138{bottom:486.488000pt;}
.y5f{bottom:490.792000pt;}
.y9c{bottom:492.540000pt;}
.y16{bottom:494.776000pt;}
.y11f{bottom:495.662667pt;}
.ye7{bottom:496.634667pt;}
.yc0{bottom:497.108000pt;}
.y156{bottom:499.433333pt;}
.y3e{bottom:502.128000pt;}
.y5e{bottom:506.733333pt;}
.y9b{bottom:507.152000pt;}
.ye6{bottom:511.246667pt;}
.y11e{bottom:511.604000pt;}
.ybf{bottom:511.720000pt;}
.y155{bottom:514.462667pt;}
.y3d{bottom:518.068000pt;}
.y9a{bottom:521.764000pt;}
.y5d{bottom:522.673333pt;}
.y15{bottom:524.586667pt;}
.y10e{bottom:524.914667pt;}
.ye5{bottom:525.858667pt;}
.ybe{bottom:526.332000pt;}
.y154{bottom:529.074667pt;}
.y137{bottom:531.316000pt;}
.y3c{bottom:534.008000pt;}
.y99{bottom:536.376000pt;}
.y5c{bottom:538.613333pt;}
.y14{bottom:539.198667pt;}
.ye4{bottom:540.470667pt;}
.y10d{bottom:540.854667pt;}
.ybd{bottom:540.944000pt;}
.y153{bottom:543.685333pt;}
.y11d{bottom:546.161333pt;}
.y136{bottom:547.256000pt;}
.y3b{bottom:549.948000pt;}
.y98{bottom:550.986667pt;}
.y13{bottom:553.810667pt;}
.ye3{bottom:555.081333pt;}
.ybc{bottom:555.556000pt;}
.y10c{bottom:556.794667pt;}
.y152{bottom:558.297333pt;}
.y135{bottom:563.197333pt;}
.y97{bottom:565.598667pt;}
.y3a{bottom:565.889333pt;}
.y12{bottom:568.422667pt;}
.ye2{bottom:569.693333pt;}
.ybb{bottom:570.168000pt;}
.y10b{bottom:572.734667pt;}
.y151{bottom:572.909333pt;}
.y134{bottom:579.137333pt;}
.y96{bottom:580.210667pt;}
.y39{bottom:581.829333pt;}
.y11{bottom:583.034667pt;}
.ye1{bottom:584.305333pt;}
.yba{bottom:584.780000pt;}
.y5b{bottom:585.928000pt;}
.y150{bottom:587.521333pt;}
.y10a{bottom:588.674667pt;}
.y95{bottom:594.822667pt;}
.y133{bottom:595.077333pt;}
.y10{bottom:597.646667pt;}
.y11c{bottom:597.658667pt;}
.y38{bottom:597.769333pt;}
.ye0{bottom:598.917333pt;}
.yb9{bottom:599.392000pt;}
.y5a{bottom:601.869333pt;}
.y14f{bottom:602.133333pt;}
.y109{bottom:604.616000pt;}
.y94{bottom:609.434667pt;}
.y132{bottom:611.017333pt;}
.yf{bottom:612.258667pt;}
.ydf{bottom:613.529333pt;}
.y11b{bottom:613.598667pt;}
.y37{bottom:613.709333pt;}
.yb8{bottom:614.004000pt;}
.y59{bottom:617.809333pt;}
.y108{bottom:620.556000pt;}
.y93{bottom:624.046667pt;}
.ye{bottom:626.870667pt;}
.y131{bottom:626.957333pt;}
.yde{bottom:628.141333pt;}
.yb7{bottom:628.616000pt;}
.y11a{bottom:629.538667pt;}
.y58{bottom:633.749333pt;}
.y14e{bottom:634.770667pt;}
.y107{bottom:636.496000pt;}
.y92{bottom:638.658667pt;}
.yd{bottom:641.482667pt;}
.ydd{bottom:642.753333pt;}
.yb6{bottom:643.228000pt;}
.y130{bottom:643.362667pt;}
.y36{bottom:647.742667pt;}
.y106{bottom:652.436000pt;}
.y91{bottom:653.270667pt;}
.yc{bottom:656.094667pt;}
.y7f{bottom:657.124000pt;}
.ydc{bottom:657.365333pt;}
.yb5{bottom:657.838667pt;}
.y12f{bottom:659.302667pt;}
.y17a{bottom:667.593333pt;}
.y90{bottom:667.882667pt;}
.y105{bottom:668.376000pt;}
.yb{bottom:670.705333pt;}
.ydb{bottom:671.977333pt;}
.yb4{bottom:672.450667pt;}
.y7e{bottom:673.064000pt;}
.y12e{bottom:675.242667pt;}
.y14d{bottom:679.362667pt;}
.y57{bottom:681.064000pt;}
.y179{bottom:682.205333pt;}
.y8f{bottom:682.494667pt;}
.y104{bottom:684.316000pt;}
.ya{bottom:685.317333pt;}
.yda{bottom:686.589333pt;}
.yb3{bottom:687.062667pt;}
.y7d{bottom:689.004000pt;}
.y12d{bottom:691.182667pt;}
.y35{bottom:692.401333pt;}
.y14c{bottom:695.304000pt;}
.y178{bottom:696.817333pt;}
.y56{bottom:697.005333pt;}
.y8e{bottom:697.106667pt;}
.y9{bottom:699.929333pt;}
.y103{bottom:700.257333pt;}
.yd9{bottom:701.201333pt;}
.yb2{bottom:701.674667pt;}
.y34{bottom:708.341333pt;}
.y177{bottom:711.429333pt;}
.y8d{bottom:711.717333pt;}
.y8{bottom:714.541333pt;}
.yd8{bottom:715.812000pt;}
.y102{bottom:716.197333pt;}
.yb1{bottom:716.286667pt;}
.y12c{bottom:720.070667pt;}
.y7c{bottom:721.933333pt;}
.y33{bottom:724.281333pt;}
.y176{bottom:726.041333pt;}
.y8c{bottom:726.329333pt;}
.y7{bottom:729.153333pt;}
.y14b{bottom:729.269333pt;}
.yd7{bottom:730.424000pt;}
.y55{bottom:731.036000pt;}
.y101{bottom:732.137333pt;}
.y7b{bottom:737.873333pt;}
.y32{bottom:740.222667pt;}
.y175{bottom:740.653333pt;}
.y8b{bottom:740.941333pt;}
.y6{bottom:743.765333pt;}
.y14a{bottom:743.881333pt;}
.yd6{bottom:745.036000pt;}
.y100{bottom:748.077333pt;}
.y7a{bottom:754.740000pt;}
.y174{bottom:755.264000pt;}
.y8a{bottom:755.553333pt;}
.yb0{bottom:756.038667pt;}
.y31{bottom:756.162667pt;}
.y149{bottom:758.493333pt;}
.yd5{bottom:759.648000pt;}
.y12b{bottom:762.242667pt;}
.yff{bottom:764.017333pt;}
.y173{bottom:769.876000pt;}
.y89{bottom:770.165333pt;}
.y54{bottom:770.381333pt;}
.y79{bottom:770.680000pt;}
.yaf{bottom:771.980000pt;}
.y30{bottom:772.102667pt;}
.y148{bottom:773.104000pt;}
.yd4{bottom:774.260000pt;}
.y12a{bottom:778.182667pt;}
.yfe{bottom:779.957333pt;}
.y88{bottom:782.976000pt;}
.y172{bottom:784.488000pt;}
.y78{bottom:786.620000pt;}
.y147{bottom:787.716000pt;}
.y2f{bottom:788.042667pt;}
.yae{bottom:788.378667pt;}
.yd3{bottom:788.872000pt;}
.y129{bottom:794.122667pt;}
.yfd{bottom:795.898667pt;}
.y171{bottom:799.100000pt;}
.y5{bottom:802.869333pt;}
.yd2{bottom:803.484000pt;}
.y77{bottom:803.486667pt;}
.y2e{bottom:803.982667pt;}
.yad{bottom:804.318667pt;}
.y128{bottom:810.062667pt;}
.yfc{bottom:811.838667pt;}
.y170{bottom:813.712000pt;}
.y87{bottom:814.169333pt;}
.y4{bottom:817.481333pt;}
.yd1{bottom:818.096000pt;}
.y76{bottom:819.428000pt;}
.y2d{bottom:819.924000pt;}
.y53{bottom:820.353333pt;}
.yac{bottom:820.717333pt;}
.yfb{bottom:827.778667pt;}
.y16f{bottom:828.324000pt;}
.y86{bottom:830.109333pt;}
.yd0{bottom:832.708000pt;}
.y75{bottom:835.368000pt;}
.y2c{bottom:835.864000pt;}
.y52{bottom:836.293333pt;}
.yab{bottom:836.657333pt;}
.y16e{bottom:842.936000pt;}
.yfa{bottom:843.718667pt;}
.y3{bottom:845.321333pt;}
.y85{bottom:846.050667pt;}
.ycf{bottom:847.320000pt;}
.y74{bottom:851.308000pt;}
.y2b{bottom:852.234667pt;}
.y16d{bottom:857.548000pt;}
.yce{bottom:861.930667pt;}
.y84{bottom:861.990667pt;}
.y73{bottom:867.248000pt;}
.y2a{bottom:868.174667pt;}
.y16c{bottom:872.160000pt;}
.ycd{bottom:876.542667pt;}
.yf9{bottom:877.200000pt;}
.y83{bottom:877.930667pt;}
.y29{bottom:884.114667pt;}
.y16b{bottom:886.772000pt;}
.ycc{bottom:891.154667pt;}
.y2{bottom:892.085333pt;}
.y82{bottom:893.870667pt;}
.y28{bottom:900.054667pt;}
.y16a{bottom:901.382667pt;}
.ycb{bottom:905.766667pt;}
.y1{bottom:915.994667pt;}
.y27{bottom:950.532000pt;}
.hc{height:18.012381pt;}
.h9{height:21.583121pt;}
.hd{height:33.522381pt;}
.h3{height:35.913421pt;}
.h4{height:36.582912pt;}
.ha{height:37.246841pt;}
.hb{height:38.878310pt;}
.h6{height:39.903534pt;}
.h8{height:44.460067pt;}
.h7{height:44.465401pt;}
.h5{height:44.696508pt;}
.h2{height:47.175200pt;}
.h1{height:53.712173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:75.600000pt;}
.x15{left:80.118667pt;}
.x1a{left:96.706667pt;}
.x7{left:97.921333pt;}
.xd{left:101.576000pt;}
.x1d{left:104.062667pt;}
.xf{left:106.225333pt;}
.x11{left:109.954667pt;}
.x19{left:111.204000pt;}
.x2{left:115.402667pt;}
.x8{left:117.846667pt;}
.x10{left:120.502667pt;}
.x13{left:124.560000pt;}
.x12{left:129.078667pt;}
.x6{left:135.716000pt;}
.x1{left:136.937333pt;}
.x9{left:146.881333pt;}
.xb{left:150.537333pt;}
.x1b{left:153.024000pt;}
.x17{left:157.718667pt;}
.xa{left:166.806667pt;}
.x1c{left:169.220000pt;}
.x14{left:173.426667pt;}
.x18{left:202.033333pt;}
.x4{left:206.329333pt;}
.xe{left:238.948000pt;}
.x3{left:281.920000pt;}
.x5{left:293.557333pt;}
.xc{left:398.313333pt;}
}




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