
    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_be2832b0263f8b36e9222aa0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b0cc77f7aeffbdf40bb40021.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_e60cb0d931bcba48f654e7a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_e60cb0d931bcba48f654e7a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_ceded259a16ed37980ea3f21.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_740de09ff032360c62f8712f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.744000;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_f7e89a5261ffea66041c05b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927000;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_b0cc77f7aeffbdf40bb40021.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_949c7893f57d7897559b3794.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e60cb0d931bcba48f654e7a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_6c2fdc60a33c5b5f89bbb5f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.935000;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_b0cc77f7aeffbdf40bb40021.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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_949c7893f57d7897559b3794.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cc5648f8d7381a2165b589c3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936000;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_e0025ebe0faa5341ce47f61a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941000;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;}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-3.234000px;}
.ls19{letter-spacing:-2.520000px;}
.ls1a{letter-spacing:-1.596000px;}
.ls16{letter-spacing:-0.420000px;}
.ls15{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.210000px;}
.ls8{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.294000px;}
.lsf{letter-spacing:0.324000px;}
.ls1e{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.384000px;}
.ls1f{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.546000px;}
.ls9{letter-spacing:0.594000px;}
.ls4{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.714000px;}
.ls1{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.756000px;}
.lsb{letter-spacing:0.810000px;}
.ls2{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.882000px;}
.lse{letter-spacing:0.918000px;}
.ls22{letter-spacing:0.924000px;}
.ls11{letter-spacing:0.966000px;}
.ls5{letter-spacing:0.972000px;}
.lsd{letter-spacing:1.026000px;}
.ls6{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.134000px;}
.ls13{letter-spacing:1.176000px;}
.ls21{letter-spacing:1.386000px;}
.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;}
}
.ws96{word-spacing:-15.984000px;}
.ws2{word-spacing:-15.930000px;}
.wsd6{word-spacing:-13.062000px;}
.ws97{word-spacing:-12.852000px;}
.wsd4{word-spacing:-12.810000px;}
.ws98{word-spacing:-12.558000px;}
.wsd3{word-spacing:-12.306000px;}
.wsd5{word-spacing:-12.222000px;}
.wsbe{word-spacing:-4.320000px;}
.ws6{word-spacing:-3.240000px;}
.wsae{word-spacing:-3.132000px;}
.wsdc{word-spacing:-3.024000px;}
.ws18{word-spacing:-2.970000px;}
.wsdb{word-spacing:-2.856000px;}
.ws5c{word-spacing:-2.754000px;}
.ws78{word-spacing:-2.700000px;}
.ws92{word-spacing:-2.592000px;}
.ws2f{word-spacing:-2.538000px;}
.ws84{word-spacing:-2.484000px;}
.ws28{word-spacing:-2.430000px;}
.ws35{word-spacing:-2.376000px;}
.ws85{word-spacing:-2.322000px;}
.wseb{word-spacing:-2.268000px;}
.wsf1{word-spacing:-2.226000px;}
.ws66{word-spacing:-2.214000px;}
.wse7{word-spacing:-2.184000px;}
.ws32{word-spacing:-2.160000px;}
.wsca{word-spacing:-2.142000px;}
.wsc4{word-spacing:-2.106000px;}
.wsf4{word-spacing:-2.100000px;}
.ws3c{word-spacing:-2.052000px;}
.ws3{word-spacing:-2.016000px;}
.ws4c{word-spacing:-1.944000px;}
.wsb{word-spacing:-1.890000px;}
.ws5{word-spacing:-1.848000px;}
.ws4f{word-spacing:-1.836000px;}
.ws9{word-spacing:-1.806000px;}
.wsc2{word-spacing:-1.728000px;}
.ws6f{word-spacing:-1.674000px;}
.wsee{word-spacing:-1.638000px;}
.wsa0{word-spacing:-1.620000px;}
.ws15{word-spacing:-1.512000px;}
.wsc8{word-spacing:-1.344000px;}
.wsf9{word-spacing:-1.248000px;}
.ws1b{word-spacing:-1.242000px;}
.wsb5{word-spacing:-1.188000px;}
.ws4{word-spacing:-1.176000px;}
.ws14{word-spacing:-1.134000px;}
.wsc1{word-spacing:-1.080000px;}
.wsac{word-spacing:-1.026000px;}
.wsc9{word-spacing:-0.966000px;}
.wsf5{word-spacing:-0.912000px;}
.wscc{word-spacing:-0.840000px;}
.wsd1{word-spacing:-0.798000px;}
.ws1{word-spacing:-0.780000px;}
.wsf7{word-spacing:-0.768000px;}
.wsf0{word-spacing:-0.756000px;}
.wsf8{word-spacing:-0.624000px;}
.ws22{word-spacing:-0.594000px;}
.ws2a{word-spacing:-0.540000px;}
.wsd8{word-spacing:-0.432000px;}
.ws7a{word-spacing:-0.378000px;}
.wsd7{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.270000px;}
.ws50{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.108000px;}
.ws5f{word-spacing:-0.054000px;}
.wsdd{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws77{word-spacing:0.108000px;}
.wsc0{word-spacing:0.216000px;}
.ws33{word-spacing:0.270000px;}
.wsd2{word-spacing:0.300000px;}
.ws34{word-spacing:0.378000px;}
.wse2{word-spacing:0.420000px;}
.ws25{word-spacing:0.432000px;}
.wsed{word-spacing:0.462000px;}
.wsa6{word-spacing:0.486000px;}
.ws86{word-spacing:0.540000px;}
.ws80{word-spacing:0.648000px;}
.ws2d{word-spacing:0.756000px;}
.ws6c{word-spacing:0.810000px;}
.ws94{word-spacing:0.864000px;}
.ws1a{word-spacing:0.972000px;}
.wscd{word-spacing:1.008000px;}
.wsdf{word-spacing:1.050000px;}
.wse1{word-spacing:1.092000px;}
.ws6a{word-spacing:1.134000px;}
.ws26{word-spacing:1.188000px;}
.wsa9{word-spacing:1.242000px;}
.wsa1{word-spacing:1.296000px;}
.ws67{word-spacing:1.350000px;}
.wsaf{word-spacing:1.404000px;}
.wsda{word-spacing:1.512000px;}
.wsbb{word-spacing:1.620000px;}
.ws93{word-spacing:1.674000px;}
.ws44{word-spacing:1.728000px;}
.wsf3{word-spacing:1.764000px;}
.ws2b{word-spacing:1.782000px;}
.wsbd{word-spacing:1.998000px;}
.ws4b{word-spacing:2.052000px;}
.wscb{word-spacing:2.058000px;}
.ws88{word-spacing:2.106000px;}
.wsf6{word-spacing:2.208000px;}
.wsb7{word-spacing:2.214000px;}
.wsea{word-spacing:2.226000px;}
.ws58{word-spacing:2.268000px;}
.ws90{word-spacing:2.376000px;}
.wsb3{word-spacing:2.538000px;}
.wsbf{word-spacing:2.700000px;}
.wsc6{word-spacing:2.808000px;}
.wsb1{word-spacing:2.862000px;}
.ws3b{word-spacing:2.970000px;}
.ws27{word-spacing:3.024000px;}
.wsef{word-spacing:3.066000px;}
.ws6d{word-spacing:3.078000px;}
.ws4a{word-spacing:3.186000px;}
.ws8a{word-spacing:3.240000px;}
.wsaa{word-spacing:3.348000px;}
.ws36{word-spacing:3.402000px;}
.ws76{word-spacing:3.618000px;}
.wse0{word-spacing:3.654000px;}
.ws23{word-spacing:3.834000px;}
.ws47{word-spacing:3.888000px;}
.ws49{word-spacing:3.942000px;}
.ws2c{word-spacing:3.996000px;}
.ws89{word-spacing:4.050000px;}
.wsce{word-spacing:4.074000px;}
.ws3d{word-spacing:4.104000px;}
.ws41{word-spacing:4.212000px;}
.ws31{word-spacing:4.266000px;}
.wsec{word-spacing:4.410000px;}
.wsbc{word-spacing:4.482000px;}
.wsc7{word-spacing:4.494000px;}
.ws70{word-spacing:4.590000px;}
.ws68{word-spacing:4.752000px;}
.ws3e{word-spacing:4.806000px;}
.ws20{word-spacing:4.860000px;}
.wsa2{word-spacing:4.914000px;}
.ws7c{word-spacing:5.076000px;}
.ws64{word-spacing:5.130000px;}
.ws8{word-spacing:5.292000px;}
.ws7b{word-spacing:5.346000px;}
.wsa8{word-spacing:5.400000px;}
.ws3a{word-spacing:5.508000px;}
.ws1f{word-spacing:5.562000px;}
.ws65{word-spacing:5.616000px;}
.wsde{word-spacing:5.628000px;}
.wsad{word-spacing:5.670000px;}
.ws8c{word-spacing:5.724000px;}
.wse3{word-spacing:5.754000px;}
.ws39{word-spacing:5.886000px;}
.wse{word-spacing:5.940000px;}
.wsab{word-spacing:5.994000px;}
.ws75{word-spacing:6.048000px;}
.wsa3{word-spacing:6.210000px;}
.wsb8{word-spacing:6.264000px;}
.ws83{word-spacing:6.588000px;}
.ws5e{word-spacing:6.642000px;}
.wsb2{word-spacing:6.858000px;}
.wsba{word-spacing:6.912000px;}
.ws8b{word-spacing:6.966000px;}
.ws73{word-spacing:7.020000px;}
.ws71{word-spacing:7.128000px;}
.wse4{word-spacing:7.224000px;}
.wsa5{word-spacing:7.290000px;}
.ws29{word-spacing:7.344000px;}
.ws9c{word-spacing:7.398000px;}
.ws7f{word-spacing:7.452000px;}
.ws9e{word-spacing:7.560000px;}
.ws4d{word-spacing:7.776000px;}
.ws1d{word-spacing:7.884000px;}
.wsd0{word-spacing:7.896000px;}
.wsf2{word-spacing:7.980000px;}
.ws69{word-spacing:8.154000px;}
.ws82{word-spacing:8.208000px;}
.ws48{word-spacing:8.262000px;}
.ws21{word-spacing:8.316000px;}
.wsd9{word-spacing:8.400000px;}
.wsc3{word-spacing:8.532000px;}
.ws1c{word-spacing:8.586000px;}
.ws7{word-spacing:8.694000px;}
.ws91{word-spacing:8.748000px;}
.wsb0{word-spacing:8.964000px;}
.ws74{word-spacing:9.234000px;}
.ws9b{word-spacing:9.396000px;}
.wsd{word-spacing:9.504000px;}
.wsb6{word-spacing:9.612000px;}
.ws16{word-spacing:9.720000px;}
.ws8f{word-spacing:9.828000px;}
.ws1e{word-spacing:9.936000px;}
.ws12{word-spacing:9.990000px;}
.ws38{word-spacing:10.044000px;}
.ws87{word-spacing:10.206000px;}
.ws5d{word-spacing:10.476000px;}
.ws3f{word-spacing:10.692000px;}
.ws46{word-spacing:10.854000px;}
.ws63{word-spacing:10.908000px;}
.wsb9{word-spacing:10.962000px;}
.ws52{word-spacing:11.070000px;}
.ws53{word-spacing:11.232000px;}
.ws6e{word-spacing:11.286000px;}
.wsa{word-spacing:11.298000px;}
.ws9a{word-spacing:11.394000px;}
.ws2e{word-spacing:11.502000px;}
.ws37{word-spacing:11.934000px;}
.ws60{word-spacing:12.366000px;}
.wsf{word-spacing:12.744000px;}
.ws61{word-spacing:12.798000px;}
.wse5{word-spacing:12.852000px;}
.ws9d{word-spacing:12.906000px;}
.wsc{word-spacing:13.014000px;}
.ws72{word-spacing:13.230000px;}
.wsb4{word-spacing:13.500000px;}
.ws99{word-spacing:13.554000px;}
.wsc5{word-spacing:13.662000px;}
.ws62{word-spacing:13.770000px;}
.ws9f{word-spacing:13.878000px;}
.ws45{word-spacing:14.310000px;}
.ws5a{word-spacing:14.364000px;}
.wse9{word-spacing:14.448000px;}
.ws55{word-spacing:14.526000px;}
.ws5b{word-spacing:14.580000px;}
.wsa7{word-spacing:14.634000px;}
.ws8e{word-spacing:14.796000px;}
.ws81{word-spacing:14.958000px;}
.wscf{word-spacing:15.330000px;}
.ws51{word-spacing:15.390000px;}
.ws56{word-spacing:15.444000px;}
.ws8d{word-spacing:15.606000px;}
.ws79{word-spacing:16.092000px;}
.ws4e{word-spacing:16.146000px;}
.ws17{word-spacing:16.308000px;}
.ws24{word-spacing:16.632000px;}
.wsa4{word-spacing:18.144000px;}
.ws59{word-spacing:18.252000px;}
.ws7d{word-spacing:18.846000px;}
.ws43{word-spacing:19.332000px;}
.ws13{word-spacing:19.494000px;}
.ws11{word-spacing:19.926000px;}
.ws30{word-spacing:20.358000px;}
.ws10{word-spacing:21.546000px;}
.ws7e{word-spacing:24.138000px;}
.ws95{word-spacing:30.348000px;}
.ws42{word-spacing:31.752000px;}
.ws6b{word-spacing:32.670000px;}
.ws54{word-spacing:34.506000px;}
.wse6{word-spacing:40.740000px;}
.ws57{word-spacing:41.850000px;}
.wse8{word-spacing:81.648000px;}
._3{margin-left:-9.870000px;}
._8{margin-left:-5.815800px;}
._7{margin-left:-3.936600px;}
._2{margin-left:-2.925000px;}
._0{margin-left:-1.900800px;}
._1{width:1.296000px;}
._6{width:2.354400px;}
._4{width:3.570000px;}
._5{width:45.066000px;}
.fc3{color:rgb(23,111,192);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:16.110300px;}
.y7c{bottom:16.511850px;}
.y1e{bottom:29.763750px;}
.y16b{bottom:95.244000px;}
.ydf{bottom:95.244150px;}
.y10b{bottom:95.334150px;}
.yad{bottom:95.370150px;}
.y4{bottom:97.125005px;}
.y29{bottom:99.362850px;}
.y13c{bottom:110.267250px;}
.y28{bottom:112.865850px;}
.y16a{bottom:113.244000px;}
.yde{bottom:113.253150px;}
.y10a{bottom:113.329650px;}
.yac{bottom:113.365650px;}
.y13b{bottom:123.770250px;}
.y169{bottom:131.244000px;}
.ydd{bottom:131.248650px;}
.y109{bottom:131.325150px;}
.yab{bottom:131.361150px;}
.y27{bottom:133.802850px;}
.y7b{bottom:135.435750px;}
.y13a{bottom:137.273250px;}
.y1d{bottom:139.264499px;}
.y26{bottom:147.305850px;}
.y168{bottom:149.244000px;}
.ydc{bottom:149.244150px;}
.y108{bottom:149.320650px;}
.yaa{bottom:149.356650px;}
.y139{bottom:150.776250px;}
.y7a{bottom:156.441750px;}
.y25{bottom:160.808850px;}
.y138{bottom:164.279250px;}
.y167{bottom:167.244000px;}
.ydb{bottom:167.257650px;}
.y107{bottom:167.316150px;}
.ya9{bottom:167.352150px;}
.y79{bottom:177.447750px;}
.y137{bottom:177.782250px;}
.y166{bottom:185.244000px;}
.yda{bottom:185.253150px;}
.y106{bottom:185.311650px;}
.ya8{bottom:185.347650px;}
.y54{bottom:185.410500px;}
.y136{bottom:191.285250px;}
.y14{bottom:196.933500px;}
.y165{bottom:203.244000px;}
.yd9{bottom:203.248650px;}
.y105{bottom:203.307150px;}
.y53{bottom:203.406000px;}
.y135{bottom:204.788250px;}
.y1c{bottom:209.518500px;}
.y13{bottom:209.533503px;}
.y134{bottom:218.291250px;}
.yd8{bottom:221.244150px;}
.y104{bottom:221.302650px;}
.ya7{bottom:221.352150px;}
.y52{bottom:221.401500px;}
.y1b{bottom:222.118502px;}
.y12{bottom:222.133505px;}
.y133{bottom:231.794250px;}
.y1a{bottom:234.718504px;}
.y11{bottom:234.733496px;}
.yd7{bottom:239.248650px;}
.y103{bottom:239.298150px;}
.ya6{bottom:239.347650px;}
.y51{bottom:239.397000px;}
.y132{bottom:245.297250px;}
.yd6{bottom:257.244150px;}
.y78{bottom:257.248650px;}
.y102{bottom:257.293650px;}
.ya5{bottom:257.343150px;}
.y50{bottom:257.392500px;}
.y131{bottom:258.800250px;}
.y19{bottom:259.918497px;}
.y10{bottom:259.933500px;}
.y130{bottom:272.303250px;}
.y18{bottom:272.518500px;}
.yf{bottom:272.533503px;}
.y77{bottom:275.244150px;}
.y101{bottom:275.289150px;}
.ya4{bottom:275.338650px;}
.y4f{bottom:275.388000px;}
.y17{bottom:285.118502px;}
.ye{bottom:285.133499px;}
.y100{bottom:293.284650px;}
.ya3{bottom:293.334150px;}
.y12f{bottom:293.379150px;}
.y4e{bottom:293.383500px;}
.yd5{bottom:293.523150px;}
.y16{bottom:310.318501px;}
.yd{bottom:310.333501px;}
.yff{bottom:311.280150px;}
.y76{bottom:311.316150px;}
.ya2{bottom:311.329650px;}
.y4d{bottom:311.379000px;}
.yd4{bottom:311.518650px;}
.y15{bottom:322.918500px;}
.yc{bottom:322.933500px;}
.yfe{bottom:329.275650px;}
.y75{bottom:329.311650px;}
.ya1{bottom:329.325150px;}
.y4c{bottom:329.374500px;}
.yd3{bottom:329.514150px;}
.yfd{bottom:347.271150px;}
.y74{bottom:347.307150px;}
.ya0{bottom:347.320650px;}
.y4b{bottom:347.370000px;}
.y12e{bottom:347.379150px;}
.yd2{bottom:347.509650px;}
.yb{bottom:348.133500px;}
.y73{bottom:365.302650px;}
.y9f{bottom:365.316150px;}
.y4a{bottom:365.365500px;}
.y12d{bottom:365.374650px;}
.yd1{bottom:365.505150px;}
.yfc{bottom:383.275650px;}
.y72{bottom:383.298150px;}
.y9e{bottom:383.311650px;}
.y49{bottom:383.361000px;}
.y12c{bottom:383.370150px;}
.yd0{bottom:383.500650px;}
.ya{bottom:386.785499px;}
.yfb{bottom:401.271150px;}
.y71{bottom:401.293650px;}
.y9d{bottom:401.307150px;}
.y12b{bottom:401.365650px;}
.ycf{bottom:401.496150px;}
.y9{bottom:408.044999px;}
.yfa{bottom:419.266650px;}
.y70{bottom:419.289150px;}
.y9c{bottom:419.302650px;}
.y12a{bottom:419.361150px;}
.y48{bottom:419.365500px;}
.yce{bottom:419.491650px;}
.yf9{bottom:437.262150px;}
.y6f{bottom:437.284650px;}
.y9b{bottom:437.298150px;}
.y129{bottom:437.356650px;}
.y47{bottom:437.361000px;}
.ycd{bottom:437.487150px;}
.yf8{bottom:455.257650px;}
.y6e{bottom:455.280150px;}
.y9a{bottom:455.293650px;}
.y128{bottom:455.352150px;}
.y46{bottom:455.356500px;}
.ycc{bottom:455.482650px;}
.yf7{bottom:473.253150px;}
.y6d{bottom:473.275650px;}
.y99{bottom:473.289150px;}
.y127{bottom:473.347650px;}
.y45{bottom:473.352000px;}
.ycb{bottom:473.478150px;}
.yf6{bottom:491.248650px;}
.y6c{bottom:491.271150px;}
.y98{bottom:491.284650px;}
.y126{bottom:491.343150px;}
.y44{bottom:491.347500px;}
.yca{bottom:491.473650px;}
.yf5{bottom:509.244150px;}
.y6b{bottom:509.266650px;}
.y97{bottom:509.280150px;}
.y125{bottom:509.338650px;}
.y43{bottom:509.343000px;}
.yc9{bottom:509.469150px;}
.y8{bottom:520.864502px;}
.y6a{bottom:527.262150px;}
.y96{bottom:527.275650px;}
.y42{bottom:527.338500px;}
.yc8{bottom:527.464650px;}
.y7{bottom:538.864499px;}
.yf4{bottom:545.244150px;}
.y69{bottom:545.257650px;}
.y41{bottom:545.334000px;}
.y124{bottom:545.343150px;}
.yc7{bottom:545.460150px;}
.y6{bottom:556.864499px;}
.y68{bottom:563.253150px;}
.yf3{bottom:563.257650px;}
.y95{bottom:563.280150px;}
.y40{bottom:563.329500px;}
.y123{bottom:563.338650px;}
.yc6{bottom:563.455650px;}
.y67{bottom:581.248650px;}
.yf2{bottom:581.253150px;}
.y94{bottom:581.275650px;}
.y3f{bottom:581.325000px;}
.y122{bottom:581.334150px;}
.yc5{bottom:581.451150px;}
.y66{bottom:599.244150px;}
.yf1{bottom:599.248650px;}
.y93{bottom:599.271150px;}
.y3e{bottom:599.320500px;}
.y121{bottom:599.329650px;}
.yc4{bottom:599.446650px;}
.yf0{bottom:617.244150px;}
.y92{bottom:617.266650px;}
.y3d{bottom:617.316000px;}
.y120{bottom:617.325150px;}
.yc3{bottom:617.442150px;}
.y65{bottom:635.248650px;}
.yef{bottom:635.253150px;}
.y91{bottom:635.262150px;}
.y3c{bottom:635.311500px;}
.y11f{bottom:635.320650px;}
.yc2{bottom:635.437650px;}
.y64{bottom:653.244150px;}
.yee{bottom:653.248650px;}
.y90{bottom:653.257650px;}
.y3b{bottom:653.307000px;}
.y11e{bottom:653.316150px;}
.yc1{bottom:653.433150px;}
.yed{bottom:671.244150px;}
.y8f{bottom:671.253150px;}
.y3a{bottom:671.302500px;}
.y11d{bottom:671.311650px;}
.y63{bottom:689.244150px;}
.y8e{bottom:689.248650px;}
.y39{bottom:689.298000px;}
.y11c{bottom:689.307150px;}
.yc0{bottom:689.437650px;}
.y62{bottom:707.244150px;}
.y38{bottom:707.293500px;}
.y11b{bottom:707.302650px;}
.yec{bottom:725.244150px;}
.y61{bottom:725.253150px;}
.y37{bottom:725.289000px;}
.y11a{bottom:725.298150px;}
.ybf{bottom:725.442150px;}
.y5{bottom:726.298500px;}
.yeb{bottom:743.244150px;}
.y60{bottom:743.248650px;}
.y8d{bottom:743.253150px;}
.y36{bottom:743.284500px;}
.y119{bottom:743.293650px;}
.ybe{bottom:743.437650px;}
.y3{bottom:752.599495px;}
.y5f{bottom:761.244150px;}
.y8c{bottom:761.248650px;}
.y35{bottom:761.280000px;}
.y118{bottom:761.289150px;}
.ybd{bottom:761.433150px;}
.y8b{bottom:779.244150px;}
.y117{bottom:779.284650px;}
.ybc{bottom:779.428650px;}
.yea{bottom:797.244150px;}
.y8a{bottom:797.253150px;}
.y116{bottom:797.280150px;}
.y34{bottom:797.284500px;}
.ybb{bottom:797.424150px;}
.y5e{bottom:797.446500px;}
.y164{bottom:803.211300px;}
.y150{bottom:803.238300px;}
.y89{bottom:815.248650px;}
.ye9{bottom:815.262150px;}
.y33{bottom:815.280000px;}
.yba{bottom:815.419650px;}
.y5d{bottom:815.442000px;}
.y163{bottom:816.714300px;}
.y14f{bottom:816.741300px;}
.y162{bottom:830.217300px;}
.y14e{bottom:830.244300px;}
.y88{bottom:833.244150px;}
.ye8{bottom:833.257650px;}
.y32{bottom:833.275500px;}
.y115{bottom:833.284650px;}
.yb9{bottom:833.415150px;}
.y5c{bottom:833.437500px;}
.y161{bottom:843.720300px;}
.y14d{bottom:843.747300px;}
.y87{bottom:851.244150px;}
.ye7{bottom:851.253150px;}
.y31{bottom:851.271000px;}
.y114{bottom:851.280150px;}
.yb8{bottom:851.410650px;}
.y5b{bottom:851.433000px;}
.y14c{bottom:857.202300px;}
.y160{bottom:857.223300px;}
.ye6{bottom:869.248650px;}
.y86{bottom:869.253150px;}
.y30{bottom:869.266500px;}
.y113{bottom:869.275650px;}
.yb7{bottom:869.406150px;}
.y5a{bottom:869.428500px;}
.y14b{bottom:870.705300px;}
.y15f{bottom:870.726300px;}
.y2{bottom:879.369000px;}
.y14a{bottom:884.208300px;}
.y15e{bottom:884.229300px;}
.ye5{bottom:887.244150px;}
.y85{bottom:887.248650px;}
.y2f{bottom:887.262000px;}
.y112{bottom:887.271150px;}
.yb6{bottom:887.401650px;}
.y59{bottom:887.424000px;}
.y149{bottom:897.711300px;}
.y15d{bottom:897.732300px;}
.y84{bottom:905.244150px;}
.y2e{bottom:905.257500px;}
.ye4{bottom:905.257650px;}
.y111{bottom:905.266650px;}
.yb5{bottom:905.397150px;}
.y58{bottom:905.419500px;}
.y148{bottom:911.214300px;}
.y15c{bottom:911.235300px;}
.y2d{bottom:923.253000px;}
.ye3{bottom:923.253150px;}
.y110{bottom:923.262150px;}
.y83{bottom:923.275650px;}
.yb4{bottom:923.392650px;}
.y57{bottom:923.415000px;}
.y147{bottom:924.717300px;}
.y15b{bottom:924.738300px;}
.y146{bottom:938.220300px;}
.y15a{bottom:938.241300px;}
.y2c{bottom:941.248500px;}
.ye2{bottom:941.248650px;}
.y10f{bottom:941.257650px;}
.y82{bottom:941.271150px;}
.yb3{bottom:941.388150px;}
.y56{bottom:941.410500px;}
.y145{bottom:951.723300px;}
.y159{bottom:951.744300px;}
.y2b{bottom:959.244000px;}
.ye1{bottom:959.244150px;}
.y10e{bottom:959.253150px;}
.y81{bottom:959.266650px;}
.yb2{bottom:959.383650px;}
.y55{bottom:959.406000px;}
.y144{bottom:965.226300px;}
.y158{bottom:965.247300px;}
.y1{bottom:966.726000px;}
.ye0{bottom:977.244150px;}
.y10d{bottom:977.248650px;}
.y80{bottom:977.262150px;}
.yb1{bottom:977.379150px;}
.y143{bottom:978.729300px;}
.y157{bottom:978.744300px;}
.y142{bottom:992.232300px;}
.y156{bottom:992.247300px;}
.y10c{bottom:995.244150px;}
.y7f{bottom:995.257650px;}
.yb0{bottom:995.374650px;}
.y141{bottom:1005.735300px;}
.y155{bottom:1005.741300px;}
.y7e{bottom:1013.253150px;}
.y24{bottom:1016.492100px;}
.y140{bottom:1019.238300px;}
.y154{bottom:1019.244300px;}
.y7d{bottom:1031.248650px;}
.yaf{bottom:1031.379150px;}
.y13f{bottom:1032.741300px;}
.y153{bottom:1032.747300px;}
.y13e{bottom:1046.244300px;}
.y152{bottom:1046.247300px;}
.y23{bottom:1049.244150px;}
.yae{bottom:1049.374650px;}
.y151{bottom:1059.742800px;}
.y13d{bottom:1059.747300px;}
.y22{bottom:1098.234450px;}
.y2a{bottom:1116.749850px;}
.y20{bottom:1143.779550px;}
.y21{bottom:1144.287450px;}
.h13{height:30.618000px;}
.h7{height:32.130000px;}
.hc{height:33.012000px;}
.h11{height:33.030000px;}
.h12{height:33.036000px;}
.h14{height:35.088000px;}
.ha{height:38.772000px;}
.h10{height:39.474000px;}
.hf{height:42.444000px;}
.hb{height:43.080000px;}
.h6{height:45.900000px;}
.hd{height:48.114000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.he{height:65.790000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1177.500000px;}
.h8{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:34.015800px;}
.x5{left:63.779550px;}
.x9{left:80.744850px;}
.xf{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:114.805200px;}
.x4{left:203.484001px;}
.xb{left:446.464050px;}
.x3{left:454.959000px;}
.x10{left:463.466700px;}
.xc{left:480.472500px;}
.x12{left:497.480250px;}
.xa{left:605.681850px;}
.xd{left:667.999650px;}
.x7{left:693.918150px;}
.x8{left:710.107050px;}
.x6{left:833.876100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.874667pt;}
.ls19{letter-spacing:-2.240000pt;}
.ls1a{letter-spacing:-1.418667pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.186667pt;}
.ls8{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.261333pt;}
.lsf{letter-spacing:0.288000pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.341333pt;}
.ls1f{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.485333pt;}
.ls9{letter-spacing:0.528000pt;}
.ls4{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.634667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.672000pt;}
.lsb{letter-spacing:0.720000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.784000pt;}
.lse{letter-spacing:0.816000pt;}
.ls22{letter-spacing:0.821333pt;}
.ls11{letter-spacing:0.858667pt;}
.ls5{letter-spacing:0.864000pt;}
.lsd{letter-spacing:0.912000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.008000pt;}
.ls13{letter-spacing:1.045333pt;}
.ls21{letter-spacing:1.232000pt;}
.ws96{word-spacing:-14.208000pt;}
.ws2{word-spacing:-14.160000pt;}
.wsd6{word-spacing:-11.610667pt;}
.ws97{word-spacing:-11.424000pt;}
.wsd4{word-spacing:-11.386667pt;}
.ws98{word-spacing:-11.162667pt;}
.wsd3{word-spacing:-10.938667pt;}
.wsd5{word-spacing:-10.864000pt;}
.wsbe{word-spacing:-3.840000pt;}
.ws6{word-spacing:-2.880000pt;}
.wsae{word-spacing:-2.784000pt;}
.wsdc{word-spacing:-2.688000pt;}
.ws18{word-spacing:-2.640000pt;}
.wsdb{word-spacing:-2.538667pt;}
.ws5c{word-spacing:-2.448000pt;}
.ws78{word-spacing:-2.400000pt;}
.ws92{word-spacing:-2.304000pt;}
.ws2f{word-spacing:-2.256000pt;}
.ws84{word-spacing:-2.208000pt;}
.ws28{word-spacing:-2.160000pt;}
.ws35{word-spacing:-2.112000pt;}
.ws85{word-spacing:-2.064000pt;}
.wseb{word-spacing:-2.016000pt;}
.wsf1{word-spacing:-1.978667pt;}
.ws66{word-spacing:-1.968000pt;}
.wse7{word-spacing:-1.941333pt;}
.ws32{word-spacing:-1.920000pt;}
.wsca{word-spacing:-1.904000pt;}
.wsc4{word-spacing:-1.872000pt;}
.wsf4{word-spacing:-1.866667pt;}
.ws3c{word-spacing:-1.824000pt;}
.ws3{word-spacing:-1.792000pt;}
.ws4c{word-spacing:-1.728000pt;}
.wsb{word-spacing:-1.680000pt;}
.ws5{word-spacing:-1.642667pt;}
.ws4f{word-spacing:-1.632000pt;}
.ws9{word-spacing:-1.605333pt;}
.wsc2{word-spacing:-1.536000pt;}
.ws6f{word-spacing:-1.488000pt;}
.wsee{word-spacing:-1.456000pt;}
.wsa0{word-spacing:-1.440000pt;}
.ws15{word-spacing:-1.344000pt;}
.wsc8{word-spacing:-1.194667pt;}
.wsf9{word-spacing:-1.109333pt;}
.ws1b{word-spacing:-1.104000pt;}
.wsb5{word-spacing:-1.056000pt;}
.ws4{word-spacing:-1.045333pt;}
.ws14{word-spacing:-1.008000pt;}
.wsc1{word-spacing:-0.960000pt;}
.wsac{word-spacing:-0.912000pt;}
.wsc9{word-spacing:-0.858667pt;}
.wsf5{word-spacing:-0.810667pt;}
.wscc{word-spacing:-0.746667pt;}
.wsd1{word-spacing:-0.709333pt;}
.ws1{word-spacing:-0.693333pt;}
.wsf7{word-spacing:-0.682667pt;}
.wsf0{word-spacing:-0.672000pt;}
.wsf8{word-spacing:-0.554667pt;}
.ws22{word-spacing:-0.528000pt;}
.ws2a{word-spacing:-0.480000pt;}
.wsd8{word-spacing:-0.384000pt;}
.ws7a{word-spacing:-0.336000pt;}
.wsd7{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.240000pt;}
.ws50{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.096000pt;}
.ws5f{word-spacing:-0.048000pt;}
.wsdd{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws77{word-spacing:0.096000pt;}
.wsc0{word-spacing:0.192000pt;}
.ws33{word-spacing:0.240000pt;}
.wsd2{word-spacing:0.266667pt;}
.ws34{word-spacing:0.336000pt;}
.wse2{word-spacing:0.373333pt;}
.ws25{word-spacing:0.384000pt;}
.wsed{word-spacing:0.410667pt;}
.wsa6{word-spacing:0.432000pt;}
.ws86{word-spacing:0.480000pt;}
.ws80{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.672000pt;}
.ws6c{word-spacing:0.720000pt;}
.ws94{word-spacing:0.768000pt;}
.ws1a{word-spacing:0.864000pt;}
.wscd{word-spacing:0.896000pt;}
.wsdf{word-spacing:0.933333pt;}
.wse1{word-spacing:0.970667pt;}
.ws6a{word-spacing:1.008000pt;}
.ws26{word-spacing:1.056000pt;}
.wsa9{word-spacing:1.104000pt;}
.wsa1{word-spacing:1.152000pt;}
.ws67{word-spacing:1.200000pt;}
.wsaf{word-spacing:1.248000pt;}
.wsda{word-spacing:1.344000pt;}
.wsbb{word-spacing:1.440000pt;}
.ws93{word-spacing:1.488000pt;}
.ws44{word-spacing:1.536000pt;}
.wsf3{word-spacing:1.568000pt;}
.ws2b{word-spacing:1.584000pt;}
.wsbd{word-spacing:1.776000pt;}
.ws4b{word-spacing:1.824000pt;}
.wscb{word-spacing:1.829333pt;}
.ws88{word-spacing:1.872000pt;}
.wsf6{word-spacing:1.962667pt;}
.wsb7{word-spacing:1.968000pt;}
.wsea{word-spacing:1.978667pt;}
.ws58{word-spacing:2.016000pt;}
.ws90{word-spacing:2.112000pt;}
.wsb3{word-spacing:2.256000pt;}
.wsbf{word-spacing:2.400000pt;}
.wsc6{word-spacing:2.496000pt;}
.wsb1{word-spacing:2.544000pt;}
.ws3b{word-spacing:2.640000pt;}
.ws27{word-spacing:2.688000pt;}
.wsef{word-spacing:2.725333pt;}
.ws6d{word-spacing:2.736000pt;}
.ws4a{word-spacing:2.832000pt;}
.ws8a{word-spacing:2.880000pt;}
.wsaa{word-spacing:2.976000pt;}
.ws36{word-spacing:3.024000pt;}
.ws76{word-spacing:3.216000pt;}
.wse0{word-spacing:3.248000pt;}
.ws23{word-spacing:3.408000pt;}
.ws47{word-spacing:3.456000pt;}
.ws49{word-spacing:3.504000pt;}
.ws2c{word-spacing:3.552000pt;}
.ws89{word-spacing:3.600000pt;}
.wsce{word-spacing:3.621333pt;}
.ws3d{word-spacing:3.648000pt;}
.ws41{word-spacing:3.744000pt;}
.ws31{word-spacing:3.792000pt;}
.wsec{word-spacing:3.920000pt;}
.wsbc{word-spacing:3.984000pt;}
.wsc7{word-spacing:3.994667pt;}
.ws70{word-spacing:4.080000pt;}
.ws68{word-spacing:4.224000pt;}
.ws3e{word-spacing:4.272000pt;}
.ws20{word-spacing:4.320000pt;}
.wsa2{word-spacing:4.368000pt;}
.ws7c{word-spacing:4.512000pt;}
.ws64{word-spacing:4.560000pt;}
.ws8{word-spacing:4.704000pt;}
.ws7b{word-spacing:4.752000pt;}
.wsa8{word-spacing:4.800000pt;}
.ws3a{word-spacing:4.896000pt;}
.ws1f{word-spacing:4.944000pt;}
.ws65{word-spacing:4.992000pt;}
.wsde{word-spacing:5.002667pt;}
.wsad{word-spacing:5.040000pt;}
.ws8c{word-spacing:5.088000pt;}
.wse3{word-spacing:5.114667pt;}
.ws39{word-spacing:5.232000pt;}
.wse{word-spacing:5.280000pt;}
.wsab{word-spacing:5.328000pt;}
.ws75{word-spacing:5.376000pt;}
.wsa3{word-spacing:5.520000pt;}
.wsb8{word-spacing:5.568000pt;}
.ws83{word-spacing:5.856000pt;}
.ws5e{word-spacing:5.904000pt;}
.wsb2{word-spacing:6.096000pt;}
.wsba{word-spacing:6.144000pt;}
.ws8b{word-spacing:6.192000pt;}
.ws73{word-spacing:6.240000pt;}
.ws71{word-spacing:6.336000pt;}
.wse4{word-spacing:6.421333pt;}
.wsa5{word-spacing:6.480000pt;}
.ws29{word-spacing:6.528000pt;}
.ws9c{word-spacing:6.576000pt;}
.ws7f{word-spacing:6.624000pt;}
.ws9e{word-spacing:6.720000pt;}
.ws4d{word-spacing:6.912000pt;}
.ws1d{word-spacing:7.008000pt;}
.wsd0{word-spacing:7.018667pt;}
.wsf2{word-spacing:7.093333pt;}
.ws69{word-spacing:7.248000pt;}
.ws82{word-spacing:7.296000pt;}
.ws48{word-spacing:7.344000pt;}
.ws21{word-spacing:7.392000pt;}
.wsd9{word-spacing:7.466667pt;}
.wsc3{word-spacing:7.584000pt;}
.ws1c{word-spacing:7.632000pt;}
.ws7{word-spacing:7.728000pt;}
.ws91{word-spacing:7.776000pt;}
.wsb0{word-spacing:7.968000pt;}
.ws74{word-spacing:8.208000pt;}
.ws9b{word-spacing:8.352000pt;}
.wsd{word-spacing:8.448000pt;}
.wsb6{word-spacing:8.544000pt;}
.ws16{word-spacing:8.640000pt;}
.ws8f{word-spacing:8.736000pt;}
.ws1e{word-spacing:8.832000pt;}
.ws12{word-spacing:8.880000pt;}
.ws38{word-spacing:8.928000pt;}
.ws87{word-spacing:9.072000pt;}
.ws5d{word-spacing:9.312000pt;}
.ws3f{word-spacing:9.504000pt;}
.ws46{word-spacing:9.648000pt;}
.ws63{word-spacing:9.696000pt;}
.wsb9{word-spacing:9.744000pt;}
.ws52{word-spacing:9.840000pt;}
.ws53{word-spacing:9.984000pt;}
.ws6e{word-spacing:10.032000pt;}
.wsa{word-spacing:10.042667pt;}
.ws9a{word-spacing:10.128000pt;}
.ws2e{word-spacing:10.224000pt;}
.ws37{word-spacing:10.608000pt;}
.ws60{word-spacing:10.992000pt;}
.wsf{word-spacing:11.328000pt;}
.ws61{word-spacing:11.376000pt;}
.wse5{word-spacing:11.424000pt;}
.ws9d{word-spacing:11.472000pt;}
.wsc{word-spacing:11.568000pt;}
.ws72{word-spacing:11.760000pt;}
.wsb4{word-spacing:12.000000pt;}
.ws99{word-spacing:12.048000pt;}
.wsc5{word-spacing:12.144000pt;}
.ws62{word-spacing:12.240000pt;}
.ws9f{word-spacing:12.336000pt;}
.ws45{word-spacing:12.720000pt;}
.ws5a{word-spacing:12.768000pt;}
.wse9{word-spacing:12.842667pt;}
.ws55{word-spacing:12.912000pt;}
.ws5b{word-spacing:12.960000pt;}
.wsa7{word-spacing:13.008000pt;}
.ws8e{word-spacing:13.152000pt;}
.ws81{word-spacing:13.296000pt;}
.wscf{word-spacing:13.626667pt;}
.ws51{word-spacing:13.680000pt;}
.ws56{word-spacing:13.728000pt;}
.ws8d{word-spacing:13.872000pt;}
.ws79{word-spacing:14.304000pt;}
.ws4e{word-spacing:14.352000pt;}
.ws17{word-spacing:14.496000pt;}
.ws24{word-spacing:14.784000pt;}
.wsa4{word-spacing:16.128000pt;}
.ws59{word-spacing:16.224000pt;}
.ws7d{word-spacing:16.752000pt;}
.ws43{word-spacing:17.184000pt;}
.ws13{word-spacing:17.328000pt;}
.ws11{word-spacing:17.712000pt;}
.ws30{word-spacing:18.096000pt;}
.ws10{word-spacing:19.152000pt;}
.ws7e{word-spacing:21.456000pt;}
.ws95{word-spacing:26.976000pt;}
.ws42{word-spacing:28.224000pt;}
.ws6b{word-spacing:29.040000pt;}
.ws54{word-spacing:30.672000pt;}
.wse6{word-spacing:36.213333pt;}
.ws57{word-spacing:37.200000pt;}
.wse8{word-spacing:72.576000pt;}
._3{margin-left:-8.773333pt;}
._8{margin-left:-5.169600pt;}
._7{margin-left:-3.499200pt;}
._2{margin-left:-2.600000pt;}
._0{margin-left:-1.689600pt;}
._1{width:1.152000pt;}
._6{width:2.092800pt;}
._4{width:3.173333pt;}
._5{width:40.058667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:14.320267pt;}
.y7c{bottom:14.677200pt;}
.y1e{bottom:26.456667pt;}
.y16b{bottom:84.661333pt;}
.ydf{bottom:84.661467pt;}
.y10b{bottom:84.741467pt;}
.yad{bottom:84.773467pt;}
.y4{bottom:86.333337pt;}
.y29{bottom:88.322533pt;}
.y13c{bottom:98.015333pt;}
.y28{bottom:100.325200pt;}
.y16a{bottom:100.661333pt;}
.yde{bottom:100.669467pt;}
.y10a{bottom:100.737467pt;}
.yac{bottom:100.769467pt;}
.y13b{bottom:110.018000pt;}
.y169{bottom:116.661333pt;}
.ydd{bottom:116.665467pt;}
.y109{bottom:116.733467pt;}
.yab{bottom:116.765467pt;}
.y27{bottom:118.935867pt;}
.y7b{bottom:120.387333pt;}
.y13a{bottom:122.020667pt;}
.y1d{bottom:123.790666pt;}
.y26{bottom:130.938533pt;}
.y168{bottom:132.661333pt;}
.ydc{bottom:132.661467pt;}
.y108{bottom:132.729467pt;}
.yaa{bottom:132.761467pt;}
.y139{bottom:134.023333pt;}
.y7a{bottom:139.059333pt;}
.y25{bottom:142.941200pt;}
.y138{bottom:146.026000pt;}
.y167{bottom:148.661333pt;}
.ydb{bottom:148.673467pt;}
.y107{bottom:148.725467pt;}
.ya9{bottom:148.757467pt;}
.y79{bottom:157.731333pt;}
.y137{bottom:158.028667pt;}
.y166{bottom:164.661333pt;}
.yda{bottom:164.669467pt;}
.y106{bottom:164.721467pt;}
.ya8{bottom:164.753467pt;}
.y54{bottom:164.809333pt;}
.y136{bottom:170.031333pt;}
.y14{bottom:175.052000pt;}
.y165{bottom:180.661333pt;}
.yd9{bottom:180.665467pt;}
.y105{bottom:180.717467pt;}
.y53{bottom:180.805333pt;}
.y135{bottom:182.034000pt;}
.y1c{bottom:186.238666pt;}
.y13{bottom:186.252002pt;}
.y134{bottom:194.036667pt;}
.yd8{bottom:196.661467pt;}
.y104{bottom:196.713467pt;}
.ya7{bottom:196.757467pt;}
.y52{bottom:196.801333pt;}
.y1b{bottom:197.438668pt;}
.y12{bottom:197.452004pt;}
.y133{bottom:206.039333pt;}
.y1a{bottom:208.638670pt;}
.y11{bottom:208.651996pt;}
.yd7{bottom:212.665467pt;}
.y103{bottom:212.709467pt;}
.ya6{bottom:212.753467pt;}
.y51{bottom:212.797333pt;}
.y132{bottom:218.042000pt;}
.yd6{bottom:228.661467pt;}
.y78{bottom:228.665467pt;}
.y102{bottom:228.705467pt;}
.ya5{bottom:228.749467pt;}
.y50{bottom:228.793333pt;}
.y131{bottom:230.044667pt;}
.y19{bottom:231.038664pt;}
.y10{bottom:231.052000pt;}
.y130{bottom:242.047333pt;}
.y18{bottom:242.238666pt;}
.yf{bottom:242.252002pt;}
.y77{bottom:244.661467pt;}
.y101{bottom:244.701467pt;}
.ya4{bottom:244.745467pt;}
.y4f{bottom:244.789333pt;}
.y17{bottom:253.438668pt;}
.ye{bottom:253.451999pt;}
.y100{bottom:260.697467pt;}
.ya3{bottom:260.741467pt;}
.y12f{bottom:260.781467pt;}
.y4e{bottom:260.785333pt;}
.yd5{bottom:260.909467pt;}
.y16{bottom:275.838667pt;}
.yd{bottom:275.852001pt;}
.yff{bottom:276.693467pt;}
.y76{bottom:276.725467pt;}
.ya2{bottom:276.737467pt;}
.y4d{bottom:276.781333pt;}
.yd4{bottom:276.905467pt;}
.y15{bottom:287.038667pt;}
.yc{bottom:287.052000pt;}
.yfe{bottom:292.689467pt;}
.y75{bottom:292.721467pt;}
.ya1{bottom:292.733467pt;}
.y4c{bottom:292.777333pt;}
.yd3{bottom:292.901467pt;}
.yfd{bottom:308.685467pt;}
.y74{bottom:308.717467pt;}
.ya0{bottom:308.729467pt;}
.y4b{bottom:308.773333pt;}
.y12e{bottom:308.781467pt;}
.yd2{bottom:308.897467pt;}
.yb{bottom:309.452000pt;}
.y73{bottom:324.713467pt;}
.y9f{bottom:324.725467pt;}
.y4a{bottom:324.769333pt;}
.y12d{bottom:324.777467pt;}
.yd1{bottom:324.893467pt;}
.yfc{bottom:340.689467pt;}
.y72{bottom:340.709467pt;}
.y9e{bottom:340.721467pt;}
.y49{bottom:340.765333pt;}
.y12c{bottom:340.773467pt;}
.yd0{bottom:340.889467pt;}
.ya{bottom:343.809333pt;}
.yfb{bottom:356.685467pt;}
.y71{bottom:356.705467pt;}
.y9d{bottom:356.717467pt;}
.y12b{bottom:356.769467pt;}
.ycf{bottom:356.885467pt;}
.y9{bottom:362.706666pt;}
.yfa{bottom:372.681467pt;}
.y70{bottom:372.701467pt;}
.y9c{bottom:372.713467pt;}
.y12a{bottom:372.765467pt;}
.y48{bottom:372.769333pt;}
.yce{bottom:372.881467pt;}
.yf9{bottom:388.677467pt;}
.y6f{bottom:388.697467pt;}
.y9b{bottom:388.709467pt;}
.y129{bottom:388.761467pt;}
.y47{bottom:388.765333pt;}
.ycd{bottom:388.877467pt;}
.yf8{bottom:404.673467pt;}
.y6e{bottom:404.693467pt;}
.y9a{bottom:404.705467pt;}
.y128{bottom:404.757467pt;}
.y46{bottom:404.761333pt;}
.ycc{bottom:404.873467pt;}
.yf7{bottom:420.669467pt;}
.y6d{bottom:420.689467pt;}
.y99{bottom:420.701467pt;}
.y127{bottom:420.753467pt;}
.y45{bottom:420.757333pt;}
.ycb{bottom:420.869467pt;}
.yf6{bottom:436.665467pt;}
.y6c{bottom:436.685467pt;}
.y98{bottom:436.697467pt;}
.y126{bottom:436.749467pt;}
.y44{bottom:436.753333pt;}
.yca{bottom:436.865467pt;}
.yf5{bottom:452.661467pt;}
.y6b{bottom:452.681467pt;}
.y97{bottom:452.693467pt;}
.y125{bottom:452.745467pt;}
.y43{bottom:452.749333pt;}
.yc9{bottom:452.861467pt;}
.y8{bottom:462.990669pt;}
.y6a{bottom:468.677467pt;}
.y96{bottom:468.689467pt;}
.y42{bottom:468.745333pt;}
.yc8{bottom:468.857467pt;}
.y7{bottom:478.990666pt;}
.yf4{bottom:484.661467pt;}
.y69{bottom:484.673467pt;}
.y41{bottom:484.741333pt;}
.y124{bottom:484.749467pt;}
.yc7{bottom:484.853467pt;}
.y6{bottom:494.990666pt;}
.y68{bottom:500.669467pt;}
.yf3{bottom:500.673467pt;}
.y95{bottom:500.693467pt;}
.y40{bottom:500.737333pt;}
.y123{bottom:500.745467pt;}
.yc6{bottom:500.849467pt;}
.y67{bottom:516.665467pt;}
.yf2{bottom:516.669467pt;}
.y94{bottom:516.689467pt;}
.y3f{bottom:516.733333pt;}
.y122{bottom:516.741467pt;}
.yc5{bottom:516.845467pt;}
.y66{bottom:532.661467pt;}
.yf1{bottom:532.665467pt;}
.y93{bottom:532.685467pt;}
.y3e{bottom:532.729333pt;}
.y121{bottom:532.737467pt;}
.yc4{bottom:532.841467pt;}
.yf0{bottom:548.661467pt;}
.y92{bottom:548.681467pt;}
.y3d{bottom:548.725333pt;}
.y120{bottom:548.733467pt;}
.yc3{bottom:548.837467pt;}
.y65{bottom:564.665467pt;}
.yef{bottom:564.669467pt;}
.y91{bottom:564.677467pt;}
.y3c{bottom:564.721333pt;}
.y11f{bottom:564.729467pt;}
.yc2{bottom:564.833467pt;}
.y64{bottom:580.661467pt;}
.yee{bottom:580.665467pt;}
.y90{bottom:580.673467pt;}
.y3b{bottom:580.717333pt;}
.y11e{bottom:580.725467pt;}
.yc1{bottom:580.829467pt;}
.yed{bottom:596.661467pt;}
.y8f{bottom:596.669467pt;}
.y3a{bottom:596.713333pt;}
.y11d{bottom:596.721467pt;}
.y63{bottom:612.661467pt;}
.y8e{bottom:612.665467pt;}
.y39{bottom:612.709333pt;}
.y11c{bottom:612.717467pt;}
.yc0{bottom:612.833467pt;}
.y62{bottom:628.661467pt;}
.y38{bottom:628.705333pt;}
.y11b{bottom:628.713467pt;}
.yec{bottom:644.661467pt;}
.y61{bottom:644.669467pt;}
.y37{bottom:644.701333pt;}
.y11a{bottom:644.709467pt;}
.ybf{bottom:644.837467pt;}
.y5{bottom:645.598667pt;}
.yeb{bottom:660.661467pt;}
.y60{bottom:660.665467pt;}
.y8d{bottom:660.669467pt;}
.y36{bottom:660.697333pt;}
.y119{bottom:660.705467pt;}
.ybe{bottom:660.833467pt;}
.y3{bottom:668.977329pt;}
.y5f{bottom:676.661467pt;}
.y8c{bottom:676.665467pt;}
.y35{bottom:676.693333pt;}
.y118{bottom:676.701467pt;}
.ybd{bottom:676.829467pt;}
.y8b{bottom:692.661467pt;}
.y117{bottom:692.697467pt;}
.ybc{bottom:692.825467pt;}
.yea{bottom:708.661467pt;}
.y8a{bottom:708.669467pt;}
.y116{bottom:708.693467pt;}
.y34{bottom:708.697333pt;}
.ybb{bottom:708.821467pt;}
.y5e{bottom:708.841333pt;}
.y164{bottom:713.965600pt;}
.y150{bottom:713.989600pt;}
.y89{bottom:724.665467pt;}
.ye9{bottom:724.677467pt;}
.y33{bottom:724.693333pt;}
.yba{bottom:724.817467pt;}
.y5d{bottom:724.837333pt;}
.y163{bottom:725.968267pt;}
.y14f{bottom:725.992267pt;}
.y162{bottom:737.970933pt;}
.y14e{bottom:737.994933pt;}
.y88{bottom:740.661467pt;}
.ye8{bottom:740.673467pt;}
.y32{bottom:740.689333pt;}
.y115{bottom:740.697467pt;}
.yb9{bottom:740.813467pt;}
.y5c{bottom:740.833333pt;}
.y161{bottom:749.973600pt;}
.y14d{bottom:749.997600pt;}
.y87{bottom:756.661467pt;}
.ye7{bottom:756.669467pt;}
.y31{bottom:756.685333pt;}
.y114{bottom:756.693467pt;}
.yb8{bottom:756.809467pt;}
.y5b{bottom:756.829333pt;}
.y14c{bottom:761.957600pt;}
.y160{bottom:761.976267pt;}
.ye6{bottom:772.665467pt;}
.y86{bottom:772.669467pt;}
.y30{bottom:772.681333pt;}
.y113{bottom:772.689467pt;}
.yb7{bottom:772.805467pt;}
.y5a{bottom:772.825333pt;}
.y14b{bottom:773.960267pt;}
.y15f{bottom:773.978933pt;}
.y2{bottom:781.661334pt;}
.y14a{bottom:785.962933pt;}
.y15e{bottom:785.981600pt;}
.ye5{bottom:788.661467pt;}
.y85{bottom:788.665467pt;}
.y2f{bottom:788.677333pt;}
.y112{bottom:788.685467pt;}
.yb6{bottom:788.801467pt;}
.y59{bottom:788.821333pt;}
.y149{bottom:797.965600pt;}
.y15d{bottom:797.984267pt;}
.y84{bottom:804.661467pt;}
.y2e{bottom:804.673333pt;}
.ye4{bottom:804.673467pt;}
.y111{bottom:804.681467pt;}
.yb5{bottom:804.797467pt;}
.y58{bottom:804.817333pt;}
.y148{bottom:809.968267pt;}
.y15c{bottom:809.986933pt;}
.y2d{bottom:820.669333pt;}
.ye3{bottom:820.669467pt;}
.y110{bottom:820.677467pt;}
.y83{bottom:820.689467pt;}
.yb4{bottom:820.793467pt;}
.y57{bottom:820.813333pt;}
.y147{bottom:821.970933pt;}
.y15b{bottom:821.989600pt;}
.y146{bottom:833.973600pt;}
.y15a{bottom:833.992267pt;}
.y2c{bottom:836.665333pt;}
.ye2{bottom:836.665467pt;}
.y10f{bottom:836.673467pt;}
.y82{bottom:836.685467pt;}
.yb3{bottom:836.789467pt;}
.y56{bottom:836.809333pt;}
.y145{bottom:845.976267pt;}
.y159{bottom:845.994933pt;}
.y2b{bottom:852.661333pt;}
.ye1{bottom:852.661467pt;}
.y10e{bottom:852.669467pt;}
.y81{bottom:852.681467pt;}
.yb2{bottom:852.785467pt;}
.y55{bottom:852.805333pt;}
.y144{bottom:857.978933pt;}
.y158{bottom:857.997600pt;}
.y1{bottom:859.312000pt;}
.ye0{bottom:868.661467pt;}
.y10d{bottom:868.665467pt;}
.y80{bottom:868.677467pt;}
.yb1{bottom:868.781467pt;}
.y143{bottom:869.981600pt;}
.y157{bottom:869.994933pt;}
.y142{bottom:881.984267pt;}
.y156{bottom:881.997600pt;}
.y10c{bottom:884.661467pt;}
.y7f{bottom:884.673467pt;}
.yb0{bottom:884.777467pt;}
.y141{bottom:893.986933pt;}
.y155{bottom:893.992267pt;}
.y7e{bottom:900.669467pt;}
.y24{bottom:903.548533pt;}
.y140{bottom:905.989600pt;}
.y154{bottom:905.994933pt;}
.y7d{bottom:916.665467pt;}
.yaf{bottom:916.781467pt;}
.y13f{bottom:917.992267pt;}
.y153{bottom:917.997600pt;}
.y13e{bottom:929.994933pt;}
.y152{bottom:929.997600pt;}
.y23{bottom:932.661467pt;}
.yae{bottom:932.777467pt;}
.y151{bottom:941.993600pt;}
.y13d{bottom:941.997600pt;}
.y22{bottom:976.208400pt;}
.y2a{bottom:992.666533pt;}
.y20{bottom:1016.692933pt;}
.y21{bottom:1017.144400pt;}
.h13{height:27.216000pt;}
.h7{height:28.560000pt;}
.hc{height:29.344000pt;}
.h11{height:29.360000pt;}
.h12{height:29.365333pt;}
.h14{height:31.189333pt;}
.ha{height:34.464000pt;}
.h10{height:35.088000pt;}
.hf{height:37.728000pt;}
.hb{height:38.293333pt;}
.h6{height:40.800000pt;}
.hd{height:42.768000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.he{height:58.480000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1046.666667pt;}
.h8{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:30.236267pt;}
.x5{left:56.692933pt;}
.x9{left:71.773200pt;}
.xf{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:102.049067pt;}
.x4{left:180.874667pt;}
.xb{left:396.856933pt;}
.x3{left:404.408000pt;}
.x10{left:411.970400pt;}
.xc{left:427.086667pt;}
.x12{left:442.204667pt;}
.xa{left:538.383867pt;}
.xd{left:593.777467pt;}
.x7{left:616.816133pt;}
.x8{left:631.206267pt;}
.x6{left:741.223200pt;}
}




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