
    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_6e11db5b6677c4f3c9f761a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_7d64ec2a22b887d8a1742014.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956000;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_3fb564eef8e1336bcc6055a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c4b42bbdafcf4c5683a827f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.915000;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_27c40eb035b5333064fef1a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084000;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_662e6ffedac9a6ec0dd3ee10.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_b9ccbbd72b08c1182f81526b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_8fee77f8cd883fede5d9057b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_e94a61242b48655062d15310.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.450000;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_b1f0982b57a6acf7e9d6d265.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956000;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_2541a8c1dda5d95bd8324921.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956000;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_d75ad374c4e689085ca02f27.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.956000;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_e61d4e43963495f44b665ba5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.956000;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_0211cb9c39ea869b7adfce20.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v6{vertical-align:-17.100000px;}
.v5{vertical-align:-12.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.500000px;}
.v1{vertical-align:17.100000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:40.500000px;}
.lsc{letter-spacing:-1.653000px;}
.ls16{letter-spacing:-1.125000px;}
.ls14{letter-spacing:-0.675000px;}
.ls1{letter-spacing:-0.570000px;}
.lsb{letter-spacing:-0.456000px;}
.ls12{letter-spacing:-0.450000px;}
.ls2{letter-spacing:-0.285000px;}
.lsf{letter-spacing:-0.228000px;}
.ls15{letter-spacing:-0.189000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.225000px;}
.ls17{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.570000px;}
.lse{letter-spacing:0.570300px;}
.ls8{letter-spacing:0.813900px;}
.ls10{letter-spacing:2.039100px;}
.ls3{letter-spacing:2.167500px;}
.ls7{letter-spacing:2.973900px;}
.ls11{letter-spacing:3.005700px;}
.lsd{letter-spacing:3.774900px;}
.ls4{letter-spacing:3.937500px;}
.ls6{letter-spacing:4.868100px;}
.ls9{letter-spacing:280.947600px;}
.lsa{letter-spacing:498.324900px;}
.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;}
}
.ws66{word-spacing:-13.395000px;}
.wsa2{word-spacing:-13.167000px;}
.ws1{word-spacing:-13.110000px;}
.ws67{word-spacing:-12.939000px;}
.ws68{word-spacing:-11.742000px;}
.ws2{word-spacing:-11.556000px;}
.ws0{word-spacing:-10.914000px;}
.wse0{word-spacing:-10.800000px;}
.wse1{word-spacing:-10.575000px;}
.ws69{word-spacing:-9.630000px;}
.wse2{word-spacing:-7.213500px;}
.ws75{word-spacing:-6.291600px;}
.wse4{word-spacing:-1.782000px;}
.ws92{word-spacing:-1.311000px;}
.ws2a{word-spacing:-1.254000px;}
.ws5d{word-spacing:-1.197000px;}
.ws4a{word-spacing:-1.140000px;}
.ws52{word-spacing:-1.083000px;}
.ws4f{word-spacing:-1.026000px;}
.ws28{word-spacing:-0.969000px;}
.ws3a{word-spacing:-0.912000px;}
.wsde{word-spacing:-0.810000px;}
.wsaa{word-spacing:-0.741000px;}
.ws36{word-spacing:-0.702000px;}
.wsbf{word-spacing:-0.684000px;}
.wse5{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.627000px;}
.ws9{word-spacing:-0.456000px;}
.wsae{word-spacing:-0.399000px;}
.ws20{word-spacing:-0.285000px;}
.ws77{word-spacing:-0.228000px;}
.ws23{word-spacing:-0.171000px;}
.ws31{word-spacing:-0.162000px;}
.ws2c{word-spacing:-0.114000px;}
.ws97{word-spacing:-0.057000px;}
.wse7{word-spacing:-0.054000px;}
.ws65{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws87{word-spacing:0.057000px;}
.ws41{word-spacing:0.114000px;}
.ws8a{word-spacing:0.171000px;}
.ws9f{word-spacing:0.225000px;}
.ws50{word-spacing:0.228000px;}
.ws1a{word-spacing:0.285000px;}
.ws34{word-spacing:0.324000px;}
.wsb3{word-spacing:0.342000px;}
.ws5e{word-spacing:0.399000px;}
.ws9a{word-spacing:0.456000px;}
.ws90{word-spacing:0.513000px;}
.ws24{word-spacing:0.570000px;}
.ws7b{word-spacing:0.627000px;}
.ws82{word-spacing:0.684000px;}
.wsd{word-spacing:0.741000px;}
.ws6{word-spacing:0.798000px;}
.wsb1{word-spacing:0.855000px;}
.wsac{word-spacing:0.912000px;}
.wsf{word-spacing:0.969000px;}
.ws48{word-spacing:1.026000px;}
.ws42{word-spacing:1.083000px;}
.ws98{word-spacing:1.140000px;}
.ws29{word-spacing:1.197000px;}
.ws33{word-spacing:1.242000px;}
.ws10{word-spacing:1.254000px;}
.wsc0{word-spacing:1.311000px;}
.ws35{word-spacing:1.350000px;}
.ws7c{word-spacing:1.368000px;}
.ws30{word-spacing:1.404000px;}
.wsd8{word-spacing:1.425000px;}
.ws3c{word-spacing:1.482000px;}
.ws46{word-spacing:1.539000px;}
.ws7d{word-spacing:1.596000px;}
.ws84{word-spacing:1.653000px;}
.ws58{word-spacing:1.767000px;}
.ws8d{word-spacing:1.824000px;}
.wsa0{word-spacing:1.890000px;}
.ws63{word-spacing:1.995000px;}
.ws5f{word-spacing:2.052000px;}
.ws2f{word-spacing:2.106000px;}
.ws22{word-spacing:2.109000px;}
.ws13{word-spacing:2.166000px;}
.wscf{word-spacing:2.223000px;}
.ws15{word-spacing:2.280000px;}
.ws7{word-spacing:2.337000px;}
.wse{word-spacing:2.394000px;}
.ws32{word-spacing:2.430000px;}
.ws40{word-spacing:2.451000px;}
.ws4{word-spacing:2.679000px;}
.ws59{word-spacing:2.736000px;}
.ws1d{word-spacing:2.907000px;}
.wsc3{word-spacing:2.964000px;}
.ws5{word-spacing:3.021000px;}
.ws21{word-spacing:3.078000px;}
.ws99{word-spacing:3.192000px;}
.ws5a{word-spacing:3.249000px;}
.ws61{word-spacing:3.306000px;}
.wscc{word-spacing:3.363000px;}
.wsb9{word-spacing:3.420000px;}
.ws1b{word-spacing:3.477000px;}
.wscd{word-spacing:3.534000px;}
.ws78{word-spacing:3.591000px;}
.wsb7{word-spacing:3.648000px;}
.ws47{word-spacing:3.705000px;}
.ws3d{word-spacing:3.762000px;}
.wsa9{word-spacing:3.819000px;}
.ws54{word-spacing:3.876000px;}
.wsdb{word-spacing:3.990000px;}
.ws5c{word-spacing:4.047000px;}
.wsb0{word-spacing:4.104000px;}
.ws64{word-spacing:4.161000px;}
.wsbe{word-spacing:4.218000px;}
.ws91{word-spacing:4.275000px;}
.wsab{word-spacing:4.332000px;}
.wse3{word-spacing:4.374000px;}
.ws27{word-spacing:4.389000px;}
.wse6{word-spacing:4.482000px;}
.wsc1{word-spacing:4.560000px;}
.ws2b{word-spacing:4.845000px;}
.ws7a{word-spacing:4.902000px;}
.wse8{word-spacing:4.914000px;}
.ws12{word-spacing:5.073000px;}
.ws25{word-spacing:5.130000px;}
.ws8f{word-spacing:5.187000px;}
.ws1f{word-spacing:5.244000px;}
.wsb{word-spacing:5.301000px;}
.ws94{word-spacing:5.358000px;}
.wsad{word-spacing:5.415000px;}
.ws51{word-spacing:5.529000px;}
.ws4e{word-spacing:5.586000px;}
.ws2d{word-spacing:5.643000px;}
.wsbb{word-spacing:5.700000px;}
.ws39{word-spacing:5.814000px;}
.wsbc{word-spacing:5.928000px;}
.wsb8{word-spacing:6.042000px;}
.wsb5{word-spacing:6.156000px;}
.ws88{word-spacing:6.270000px;}
.ws45{word-spacing:6.327000px;}
.ws8{word-spacing:6.384000px;}
.ws86{word-spacing:6.441000px;}
.wsaf{word-spacing:6.498000px;}
.ws5b{word-spacing:6.612000px;}
.ws38{word-spacing:6.669000px;}
.ws53{word-spacing:6.726000px;}
.ws95{word-spacing:6.840000px;}
.ws3f{word-spacing:6.954000px;}
.ws62{word-spacing:7.011000px;}
.ws8c{word-spacing:7.068000px;}
.ws11{word-spacing:7.125000px;}
.ws89{word-spacing:7.296000px;}
.ws79{word-spacing:7.353000px;}
.wsb2{word-spacing:7.410000px;}
.wsd5{word-spacing:7.581000px;}
.wsdc{word-spacing:7.809000px;}
.ws1e{word-spacing:7.866000px;}
.ws2e{word-spacing:7.923000px;}
.ws9e{word-spacing:8.037000px;}
.ws4c{word-spacing:8.094000px;}
.wsd9{word-spacing:8.208000px;}
.wsce{word-spacing:8.322000px;}
.wsd1{word-spacing:8.379000px;}
.ws85{word-spacing:8.436000px;}
.wsc2{word-spacing:8.493000px;}
.ws16{word-spacing:8.607000px;}
.wsdd{word-spacing:8.721000px;}
.ws3b{word-spacing:8.778000px;}
.ws56{word-spacing:8.892000px;}
.ws4d{word-spacing:9.063000px;}
.ws7e{word-spacing:9.234000px;}
.ws7f{word-spacing:9.291000px;}
.ws8b{word-spacing:9.348000px;}
.ws93{word-spacing:9.405000px;}
.ws55{word-spacing:9.462000px;}
.wsd0{word-spacing:9.804000px;}
.wsba{word-spacing:9.975000px;}
.ws4b{word-spacing:10.032000px;}
.ws76{word-spacing:10.203000px;}
.wsd2{word-spacing:10.317000px;}
.ws9d{word-spacing:10.431000px;}
.wse9{word-spacing:10.746000px;}
.wscb{word-spacing:10.773000px;}
.wsda{word-spacing:10.830000px;}
.ws9b{word-spacing:10.887000px;}
.ws44{word-spacing:11.172000px;}
.ws26{word-spacing:11.457000px;}
.ws3e{word-spacing:11.514000px;}
.ws9c{word-spacing:11.799000px;}
.ws83{word-spacing:12.027000px;}
.ws81{word-spacing:12.198000px;}
.wsd6{word-spacing:12.255000px;}
.ws19{word-spacing:12.711000px;}
.wsc4{word-spacing:12.996000px;}
.ws17{word-spacing:13.224000px;}
.ws96{word-spacing:13.338000px;}
.wsb4{word-spacing:13.452000px;}
.ws14{word-spacing:13.623000px;}
.ws57{word-spacing:14.079000px;}
.ws60{word-spacing:14.136000px;}
.ws49{word-spacing:14.307000px;}
.ws8e{word-spacing:14.763000px;}
.wsbd{word-spacing:15.162000px;}
.ws18{word-spacing:15.219000px;}
.wsd3{word-spacing:15.618000px;}
.wsb6{word-spacing:15.846000px;}
.wsa{word-spacing:17.043000px;}
.wsd7{word-spacing:18.297000px;}
.ws1c{word-spacing:18.924000px;}
.wsd4{word-spacing:20.976000px;}
.ws43{word-spacing:21.546000px;}
.ws80{word-spacing:24.738000px;}
.wsa3{word-spacing:111.409200px;}
.wsa4{word-spacing:113.262000px;}
.wsa7{word-spacing:123.627000px;}
.wsa5{word-spacing:127.092000px;}
.ws72{word-spacing:226.126800px;}
.ws74{word-spacing:234.294600px;}
.wsc5{word-spacing:240.027000px;}
.ws6a{word-spacing:243.190200px;}
.wsc6{word-spacing:250.444800px;}
.ws6b{word-spacing:252.730200px;}
.ws6f{word-spacing:257.266800px;}
.ws6d{word-spacing:258.310200px;}
.wsc8{word-spacing:259.848600px;}
.ws71{word-spacing:260.762400px;}
.ws6e{word-spacing:260.965800px;}
.wsc9{word-spacing:264.394200px;}
.wsca{word-spacing:264.596400px;}
.ws73{word-spacing:264.737400px;}
.wsc7{word-spacing:265.677600px;}
.ws70{word-spacing:308.571600px;}
.ws6c{word-spacing:309.831600px;}
.wsa8{word-spacing:424.747800px;}
.wsa6{word-spacing:492.879000px;}
.ws37{word-spacing:1931.970000px;}
.wsa1{word-spacing:1934.571000px;}
.wsdf{word-spacing:1937.478000px;}
._0{margin-left:-3078.426000px;}
._5{margin-left:-5.558100px;}
._6{margin-left:-4.526400px;}
._4{margin-left:-2.548500px;}
._3{margin-left:-1.086300px;}
._2{width:1.693200px;}
._8{width:2.847000px;}
._46{width:5.166000px;}
._7{width:7.181700px;}
._48{width:19.024200px;}
._1{width:40.086000px;}
._47{width:41.625000px;}
._2e{width:96.429000px;}
._29{width:119.333400px;}
._2d{width:120.504000px;}
._22{width:123.022800px;}
._27{width:125.269200px;}
._2f{width:129.812400px;}
._23{width:131.329800px;}
._2a{width:133.347600px;}
._25{width:134.458800px;}
._28{width:135.593400px;}
._24{width:138.486000px;}
._33{width:140.187000px;}
._3f{width:149.422800px;}
._3b{width:159.727800px;}
._3d{width:160.897800px;}
._1e{width:250.411200px;}
._37{width:251.974200px;}
._1f{width:254.082000px;}
._38{width:256.002600px;}
._1a{width:258.225600px;}
._21{width:261.925800px;}
._3a{width:264.359400px;}
._e{width:265.480200px;}
._11{width:266.545200px;}
._42{width:269.478600px;}
._17{width:270.752400px;}
._d{width:271.945800px;}
._15{width:273.475200px;}
._41{width:274.661400px;}
._b{width:275.807400px;}
._16{width:278.084400px;}
._a{width:280.046400px;}
._12{width:281.937000px;}
._43{width:287.164800px;}
._f{width:288.326400px;}
._18{width:291.499200px;}
._32{width:296.049000px;}
._10{width:297.613800px;}
._1c{width:298.877400px;}
._13{width:299.935800px;}
._1d{width:302.929200px;}
._31{width:312.654000px;}
._2c{width:336.009000px;}
._40{width:353.047800px;}
._3c{width:376.402800px;}
._9{width:415.986600px;}
._2b{width:430.578600px;}
._30{width:443.913600px;}
._20{width:448.666800px;}
._14{width:463.551600px;}
._1b{width:473.361600px;}
._19{width:477.928800px;}
._36{width:489.060600px;}
._35{width:504.309000px;}
._34{width:505.704000px;}
._c{width:532.064400px;}
._3e{width:542.902800px;}
._45{width:544.702800px;}
._44{width:546.097800px;}
._26{width:563.506800px;}
._39{width:603.900600px;}
.fc1{color:rgb(0,159,221);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:29.400000px;}
.fs9{font-size:31.500000px;}
.fs6{font-size:39.000000px;}
.fs8{font-size:39.900000px;}
.fsb{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:69.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.650500px;}
.y4c{bottom:44.650650px;}
.y1b{bottom:107.180550px;}
.y12f{bottom:117.073500px;}
.ye7{bottom:117.199200px;}
.y1a{bottom:124.430550px;}
.y12e{bottom:129.823500px;}
.ye6{bottom:129.949200px;}
.y22{bottom:141.680550px;}
.y12d{bottom:142.573500px;}
.ye5{bottom:142.699200px;}
.y12c{bottom:155.323500px;}
.ye4{bottom:155.449200px;}
.y19{bottom:155.930550px;}
.y21{bottom:158.930550px;}
.y12b{bottom:168.073500px;}
.ye3{bottom:168.199200px;}
.y97{bottom:173.180550px;}
.y20{bottom:176.180550px;}
.y12a{bottom:180.823500px;}
.ye2{bottom:180.949200px;}
.y1f{bottom:193.430550px;}
.y129{bottom:193.573500px;}
.ye1{bottom:193.699200px;}
.y165{bottom:205.954950px;}
.y128{bottom:206.323500px;}
.ye0{bottom:206.449200px;}
.y18{bottom:210.680550px;}
.y127{bottom:219.073500px;}
.ydf{bottom:219.199200px;}
.y96{bottom:224.930550px;}
.y164{bottom:227.456850px;}
.y17{bottom:227.930550px;}
.y126{bottom:231.823500px;}
.yde{bottom:231.949200px;}
.y125{bottom:244.573500px;}
.ydd{bottom:244.699200px;}
.y163{bottom:244.706850px;}
.y16{bottom:245.180550px;}
.y124{bottom:257.323500px;}
.ydc{bottom:257.449200px;}
.y162{bottom:261.956850px;}
.y15{bottom:262.430550px;}
.y123{bottom:270.073500px;}
.ydb{bottom:270.199200px;}
.y1e{bottom:276.680550px;}
.y14{bottom:279.680550px;}
.y122{bottom:282.823500px;}
.yda{bottom:282.949200px;}
.y161{bottom:283.458900px;}
.y6a{bottom:293.930550px;}
.y121{bottom:295.573500px;}
.yd9{bottom:295.699200px;}
.y13{bottom:296.930550px;}
.y160{bottom:300.708900px;}
.y120{bottom:308.323500px;}
.yd8{bottom:308.449200px;}
.y12{bottom:314.180550px;}
.y15f{bottom:317.958900px;}
.y11f{bottom:321.073500px;}
.yd7{bottom:321.199200px;}
.y11{bottom:331.430550px;}
.y11e{bottom:333.823500px;}
.yd6{bottom:333.949200px;}
.y15e{bottom:339.460800px;}
.y11d{bottom:346.573500px;}
.yd5{bottom:346.699200px;}
.y10{bottom:348.680550px;}
.y15d{bottom:356.710800px;}
.y11c{bottom:359.323500px;}
.yd4{bottom:359.449200px;}
.y95{bottom:362.930550px;}
.yf{bottom:365.930550px;}
.y11b{bottom:372.073500px;}
.yd3{bottom:372.199200px;}
.y15c{bottom:373.960800px;}
.ye{bottom:383.180550px;}
.y11a{bottom:384.823500px;}
.yd2{bottom:384.949200px;}
.y15b{bottom:395.462700px;}
.y66{bottom:397.430550px;}
.y119{bottom:397.573500px;}
.yd1{bottom:397.699200px;}
.yd{bottom:400.430550px;}
.y118{bottom:410.323500px;}
.yd0{bottom:410.449200px;}
.y15a{bottom:412.712700px;}
.y80{bottom:414.680550px;}
.yc{bottom:417.680550px;}
.y117{bottom:423.073500px;}
.ycf{bottom:423.199200px;}
.y159{bottom:429.962700px;}
.yb{bottom:434.930550px;}
.y116{bottom:435.823500px;}
.yce{bottom:435.949200px;}
.y115{bottom:448.573500px;}
.ycd{bottom:448.699200px;}
.ya{bottom:452.180550px;}
.y158{bottom:461.220600px;}
.y114{bottom:461.323500px;}
.ycc{bottom:461.449200px;}
.y9{bottom:469.430550px;}
.y113{bottom:474.073500px;}
.ycb{bottom:474.199200px;}
.y8{bottom:486.680550px;}
.y112{bottom:486.823500px;}
.yca{bottom:486.949200px;}
.y111{bottom:499.573500px;}
.yc9{bottom:499.699200px;}
.y94{bottom:500.930550px;}
.y7{bottom:503.930550px;}
.y110{bottom:512.323500px;}
.yc8{bottom:512.449200px;}
.y7f{bottom:519.220950px;}
.y4b{bottom:520.956150px;}
.y6{bottom:521.180550px;}
.y157{bottom:522.947550px;}
.y10f{bottom:525.073500px;}
.yc7{bottom:525.199200px;}
.y7e{bottom:535.120950px;}
.y156{bottom:535.697550px;}
.y10e{bottom:537.823500px;}
.yc6{bottom:537.949200px;}
.y5{bottom:538.430550px;}
.y4a{bottom:544.956150px;}
.y155{bottom:548.447550px;}
.y10d{bottom:550.573500px;}
.yc5{bottom:550.699200px;}
.y91{bottom:553.748550px;}
.y4{bottom:555.680550px;}
.y49{bottom:556.956150px;}
.y7d{bottom:559.949550px;}
.y154{bottom:561.197550px;}
.y10c{bottom:563.323500px;}
.yc4{bottom:563.449200px;}
.y48{bottom:568.956150px;}
.y1d{bottom:572.930550px;}
.y153{bottom:573.947550px;}
.y10b{bottom:576.073500px;}
.yc3{bottom:576.199200px;}
.y47{bottom:580.956150px;}
.y69{bottom:581.967750px;}
.y90{bottom:583.512450px;}
.y152{bottom:586.697550px;}
.y3{bottom:587.180550px;}
.y10a{bottom:588.823500px;}
.yc2{bottom:588.949200px;}
.y1c{bottom:590.180550px;}
.y7c{bottom:590.988900px;}
.y46{bottom:592.956150px;}
.ya6{bottom:595.028250px;}
.y68{bottom:595.467750px;}
.y151{bottom:599.447550px;}
.y109{bottom:601.573500px;}
.yc1{bottom:601.699200px;}
.y45{bottom:604.956150px;}
.y65{bottom:607.430550px;}
.y150{bottom:612.197550px;}
.y8f{bottom:613.276200px;}
.y108{bottom:614.323500px;}
.yc0{bottom:614.449200px;}
.y44{bottom:616.956150px;}
.y83{bottom:621.680550px;}
.y7b{bottom:622.028250px;}
.y64{bottom:624.680550px;}
.ya5{bottom:624.792000px;}
.y14f{bottom:624.947550px;}
.y107{bottom:627.073500px;}
.ybf{bottom:627.199200px;}
.y33{bottom:628.099800px;}
.y43{bottom:628.956150px;}
.y14e{bottom:637.697550px;}
.y82{bottom:638.930550px;}
.y106{bottom:639.823500px;}
.ybe{bottom:639.949200px;}
.y63{bottom:641.930550px;}
.y8e{bottom:643.039950px;}
.y32{bottom:649.601700px;}
.y14d{bottom:650.447550px;}
.y7a{bottom:652.429800px;}
.y105{bottom:652.573500px;}
.ybd{bottom:652.699200px;}
.y42{bottom:652.956150px;}
.ya4{bottom:654.555900px;}
.y62{bottom:659.180550px;}
.y14c{bottom:663.197550px;}
.y41{bottom:664.956150px;}
.y104{bottom:665.323500px;}
.ybc{bottom:665.449200px;}
.y31{bottom:666.851700px;}
.y8d{bottom:672.803700px;}
.y14b{bottom:675.947550px;}
.y61{bottom:676.430550px;}
.y40{bottom:676.956150px;}
.y103{bottom:678.073500px;}
.ybb{bottom:678.199200px;}
.y79{bottom:682.884600px;}
.y30{bottom:684.101700px;}
.ya3{bottom:684.319650px;}
.y14a{bottom:688.697550px;}
.y102{bottom:690.823500px;}
.yba{bottom:690.949200px;}
.y60{bottom:693.680550px;}
.y78{bottom:696.384600px;}
.y3f{bottom:700.956150px;}
.y149{bottom:701.447550px;}
.y8c{bottom:702.567600px;}
.y101{bottom:703.573500px;}
.yb9{bottom:703.699200px;}
.y2f{bottom:705.603750px;}
.y5f{bottom:710.930550px;}
.y3e{bottom:712.956150px;}
.ya2{bottom:714.083400px;}
.y148{bottom:714.197550px;}
.y100{bottom:716.323500px;}
.yb8{bottom:716.449200px;}
.y2e{bottom:722.853750px;}
.y77{bottom:726.839250px;}
.y147{bottom:726.947550px;}
.y5e{bottom:728.180550px;}
.yff{bottom:729.073500px;}
.yb7{bottom:729.199200px;}
.y8b{bottom:731.959200px;}
.y3d{bottom:736.956150px;}
.y146{bottom:739.697550px;}
.y2d{bottom:740.103750px;}
.yfe{bottom:741.823500px;}
.yb6{bottom:741.949200px;}
.ya1{bottom:743.847150px;}
.y5d{bottom:745.430550px;}
.y8a{bottom:745.459200px;}
.y3c{bottom:748.956150px;}
.y145{bottom:752.447550px;}
.yfd{bottom:754.573500px;}
.yb5{bottom:754.699200px;}
.y76{bottom:755.859000px;}
.y2c{bottom:757.353750px;}
.y5c{bottom:762.680550px;}
.y144{bottom:765.197550px;}
.yfc{bottom:767.323500px;}
.yb4{bottom:767.449200px;}
.y75{bottom:769.359000px;}
.y3b{bottom:772.956150px;}
.ya0{bottom:773.238900px;}
.y89{bottom:774.850950px;}
.y143{bottom:777.947550px;}
.y2b{bottom:778.855650px;}
.y5b{bottom:779.930550px;}
.yfb{bottom:780.073500px;}
.yb3{bottom:780.199200px;}
.y74{bottom:782.859000px;}
.y3a{bottom:784.956150px;}
.y9f{bottom:786.738900px;}
.y142{bottom:790.697550px;}
.yfa{bottom:792.823500px;}
.yb2{bottom:792.949200px;}
.y93{bottom:794.180550px;}
.y2a{bottom:796.105650px;}
.y39{bottom:796.956150px;}
.y5a{bottom:797.180550px;}
.y141{bottom:803.447550px;}
.y88{bottom:804.614850px;}
.yf9{bottom:805.573500px;}
.yb1{bottom:805.699200px;}
.y38{bottom:808.956150px;}
.y73{bottom:811.878600px;}
.y29{bottom:813.355650px;}
.y59{bottom:814.430550px;}
.y9e{bottom:816.130650px;}
.y140{bottom:816.197550px;}
.yf8{bottom:818.323500px;}
.yb0{bottom:818.449200px;}
.y37{bottom:820.956150px;}
.y13f{bottom:828.947550px;}
.yf7{bottom:831.073500px;}
.yaf{bottom:831.199200px;}
.y58{bottom:831.680550px;}
.y87{bottom:834.378600px;}
.y28{bottom:834.857700px;}
.y13e{bottom:841.697550px;}
.y72{bottom:842.333400px;}
.yf6{bottom:843.823500px;}
.yae{bottom:843.949200px;}
.y36{bottom:844.956150px;}
.y9d{bottom:845.894400px;}
.y57{bottom:848.930550px;}
.y27{bottom:852.107700px;}
.y13d{bottom:854.447550px;}
.y71{bottom:855.833400px;}
.yf5{bottom:856.573500px;}
.yad{bottom:856.699200px;}
.y35{bottom:856.956150px;}
.y86{bottom:864.142350px;}
.y56{bottom:866.180550px;}
.y13c{bottom:867.197550px;}
.y34{bottom:868.956150px;}
.yf4{bottom:869.323500px;}
.y26{bottom:869.357700px;}
.yac{bottom:869.449200px;}
.y9c{bottom:875.658300px;}
.y13b{bottom:879.947550px;}
.yf3{bottom:882.073500px;}
.yab{bottom:882.199200px;}
.y55{bottom:883.430550px;}
.y70{bottom:886.288200px;}
.y85{bottom:889.476900px;}
.y13a{bottom:892.697550px;}
.yf2{bottom:894.823500px;}
.yaa{bottom:894.949200px;}
.y54{bottom:900.680550px;}
.y9b{bottom:905.422050px;}
.y139{bottom:905.447550px;}
.yf1{bottom:907.573500px;}
.ya9{bottom:907.699200px;}
.y6f{bottom:916.051950px;}
.y53{bottom:917.930550px;}
.y138{bottom:918.197550px;}
.yf0{bottom:920.323500px;}
.ya8{bottom:920.449200px;}
.y25{bottom:928.854150px;}
.y137{bottom:930.947550px;}
.yef{bottom:933.073500px;}
.y9a{bottom:934.441650px;}
.y52{bottom:935.180550px;}
.ya7{bottom:943.324200px;}
.y136{bottom:943.697550px;}
.yee{bottom:945.823500px;}
.y6e{bottom:946.506600px;}
.y99{bottom:947.941650px;}
.y92{bottom:949.430550px;}
.y51{bottom:952.430550px;}
.y135{bottom:956.447550px;}
.yed{bottom:958.573500px;}
.y6d{bottom:960.006600px;}
.y98{bottom:961.441650px;}
.y81{bottom:966.680550px;}
.y134{bottom:969.197550px;}
.y50{bottom:969.680550px;}
.yec{bottom:971.323500px;}
.y24{bottom:978.354750px;}
.y133{bottom:981.947550px;}
.yeb{bottom:984.073500px;}
.y4f{bottom:986.930550px;}
.y6c{bottom:992.835450px;}
.y132{bottom:994.697550px;}
.yea{bottom:996.823500px;}
.y4e{bottom:1004.180550px;}
.y84{bottom:1004.457300px;}
.y6b{bottom:1006.335450px;}
.y67{bottom:1006.335600px;}
.y131{bottom:1007.447550px;}
.ye9{bottom:1009.573500px;}
.y23{bottom:1010.754600px;}
.y130{bottom:1020.197550px;}
.y4d{bottom:1021.430550px;}
.ye8{bottom:1022.323500px;}
.y2{bottom:1124.930550px;}
.h11{height:23.520000px;}
.ha{height:28.509000px;}
.h9{height:31.200000px;}
.h14{height:33.600000px;}
.hc{height:36.000000px;}
.h12{height:36.120000px;}
.h15{height:37.755000px;}
.h10{height:38.700000px;}
.hb{height:38.964000px;}
.h16{height:39.928500px;}
.h2{height:40.800000px;}
.h8{height:43.200000px;}
.h3{height:43.860000px;}
.h5{height:47.823000px;}
.h7{height:48.000000px;}
.h4{height:50.439000px;}
.h13{height:50.575500px;}
.hd{height:50.576100px;}
.he{height:63.000000px;}
.hf{height:65.700000px;}
.h6{height:78.948000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:59.527500px;}
.x3{left:63.779550px;}
.x2c{left:85.039350px;}
.x8{left:204.094500px;}
.x9{left:221.102400px;}
.x15{left:222.679050px;}
.x2a{left:225.354300px;}
.x16{left:236.179050px;}
.x17{left:268.334550px;}
.x18{left:304.783950px;}
.x19{left:341.882250px;}
.x1a{left:373.954200px;}
.x4{left:384.803100px;}
.x1b{left:387.454350px;}
.x5{left:401.811000px;}
.x2d{left:406.062900px;}
.x1c{left:418.239300px;}
.x1d{left:449.969550px;}
.x1e{left:463.469550px;}
.x1f{left:495.199800px;}
.xd{left:519.163800px;}
.xb{left:525.118050px;}
.x21{left:536.065500px;}
.x14{left:538.676550px;}
.xa{left:542.125950px;}
.x22{left:544.919100px;}
.x2b{left:546.873900px;}
.xc{left:551.604150px;}
.xe{left:587.544000px;}
.xf{left:599.238150px;}
.x24{left:602.412000px;}
.x23{left:606.619350px;}
.x25{left:622.942800px;}
.x11{left:674.008950px;}
.x10{left:681.360600px;}
.x26{left:692.112600px;}
.x6{left:705.826800px;}
.x28{left:758.459250px;}
.x27{left:762.666600px;}
.x13{left:768.779250px;}
.x29{left:770.850750px;}
.x2{left:778.651950px;}
.x12{left:785.080050px;}
.x1{left:821.018550px;}
.x20{left:823.300800px;}
@media print{
.v6{vertical-align:-15.200000pt;}
.v5{vertical-align:-11.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.000000pt;}
.v1{vertical-align:15.200000pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:36.000000pt;}
.lsc{letter-spacing:-1.469333pt;}
.ls16{letter-spacing:-1.000000pt;}
.ls14{letter-spacing:-0.600000pt;}
.ls1{letter-spacing:-0.506667pt;}
.lsb{letter-spacing:-0.405333pt;}
.ls12{letter-spacing:-0.400000pt;}
.ls2{letter-spacing:-0.253333pt;}
.lsf{letter-spacing:-0.202667pt;}
.ls15{letter-spacing:-0.168000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.200000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.506667pt;}
.lse{letter-spacing:0.506933pt;}
.ls8{letter-spacing:0.723467pt;}
.ls10{letter-spacing:1.812533pt;}
.ls3{letter-spacing:1.926667pt;}
.ls7{letter-spacing:2.643467pt;}
.ls11{letter-spacing:2.671733pt;}
.lsd{letter-spacing:3.355467pt;}
.ls4{letter-spacing:3.500000pt;}
.ls6{letter-spacing:4.327200pt;}
.ls9{letter-spacing:249.731200pt;}
.lsa{letter-spacing:442.955467pt;}
.ws66{word-spacing:-11.906667pt;}
.wsa2{word-spacing:-11.704000pt;}
.ws1{word-spacing:-11.653333pt;}
.ws67{word-spacing:-11.501333pt;}
.ws68{word-spacing:-10.437333pt;}
.ws2{word-spacing:-10.272000pt;}
.ws0{word-spacing:-9.701333pt;}
.wse0{word-spacing:-9.600000pt;}
.wse1{word-spacing:-9.400000pt;}
.ws69{word-spacing:-8.560000pt;}
.wse2{word-spacing:-6.412000pt;}
.ws75{word-spacing:-5.592533pt;}
.wse4{word-spacing:-1.584000pt;}
.ws92{word-spacing:-1.165333pt;}
.ws2a{word-spacing:-1.114667pt;}
.ws5d{word-spacing:-1.064000pt;}
.ws4a{word-spacing:-1.013333pt;}
.ws52{word-spacing:-0.962667pt;}
.ws4f{word-spacing:-0.912000pt;}
.ws28{word-spacing:-0.861333pt;}
.ws3a{word-spacing:-0.810667pt;}
.wsde{word-spacing:-0.720000pt;}
.wsaa{word-spacing:-0.658667pt;}
.ws36{word-spacing:-0.624000pt;}
.wsbf{word-spacing:-0.608000pt;}
.wse5{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.557333pt;}
.ws9{word-spacing:-0.405333pt;}
.wsae{word-spacing:-0.354667pt;}
.ws20{word-spacing:-0.253333pt;}
.ws77{word-spacing:-0.202667pt;}
.ws23{word-spacing:-0.152000pt;}
.ws31{word-spacing:-0.144000pt;}
.ws2c{word-spacing:-0.101333pt;}
.ws97{word-spacing:-0.050667pt;}
.wse7{word-spacing:-0.048000pt;}
.ws65{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws87{word-spacing:0.050667pt;}
.ws41{word-spacing:0.101333pt;}
.ws8a{word-spacing:0.152000pt;}
.ws9f{word-spacing:0.200000pt;}
.ws50{word-spacing:0.202667pt;}
.ws1a{word-spacing:0.253333pt;}
.ws34{word-spacing:0.288000pt;}
.wsb3{word-spacing:0.304000pt;}
.ws5e{word-spacing:0.354667pt;}
.ws9a{word-spacing:0.405333pt;}
.ws90{word-spacing:0.456000pt;}
.ws24{word-spacing:0.506667pt;}
.ws7b{word-spacing:0.557333pt;}
.ws82{word-spacing:0.608000pt;}
.wsd{word-spacing:0.658667pt;}
.ws6{word-spacing:0.709333pt;}
.wsb1{word-spacing:0.760000pt;}
.wsac{word-spacing:0.810667pt;}
.wsf{word-spacing:0.861333pt;}
.ws48{word-spacing:0.912000pt;}
.ws42{word-spacing:0.962667pt;}
.ws98{word-spacing:1.013333pt;}
.ws29{word-spacing:1.064000pt;}
.ws33{word-spacing:1.104000pt;}
.ws10{word-spacing:1.114667pt;}
.wsc0{word-spacing:1.165333pt;}
.ws35{word-spacing:1.200000pt;}
.ws7c{word-spacing:1.216000pt;}
.ws30{word-spacing:1.248000pt;}
.wsd8{word-spacing:1.266667pt;}
.ws3c{word-spacing:1.317333pt;}
.ws46{word-spacing:1.368000pt;}
.ws7d{word-spacing:1.418667pt;}
.ws84{word-spacing:1.469333pt;}
.ws58{word-spacing:1.570667pt;}
.ws8d{word-spacing:1.621333pt;}
.wsa0{word-spacing:1.680000pt;}
.ws63{word-spacing:1.773333pt;}
.ws5f{word-spacing:1.824000pt;}
.ws2f{word-spacing:1.872000pt;}
.ws22{word-spacing:1.874667pt;}
.ws13{word-spacing:1.925333pt;}
.wscf{word-spacing:1.976000pt;}
.ws15{word-spacing:2.026667pt;}
.ws7{word-spacing:2.077333pt;}
.wse{word-spacing:2.128000pt;}
.ws32{word-spacing:2.160000pt;}
.ws40{word-spacing:2.178667pt;}
.ws4{word-spacing:2.381333pt;}
.ws59{word-spacing:2.432000pt;}
.ws1d{word-spacing:2.584000pt;}
.wsc3{word-spacing:2.634667pt;}
.ws5{word-spacing:2.685333pt;}
.ws21{word-spacing:2.736000pt;}
.ws99{word-spacing:2.837333pt;}
.ws5a{word-spacing:2.888000pt;}
.ws61{word-spacing:2.938667pt;}
.wscc{word-spacing:2.989333pt;}
.wsb9{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.090667pt;}
.wscd{word-spacing:3.141333pt;}
.ws78{word-spacing:3.192000pt;}
.wsb7{word-spacing:3.242667pt;}
.ws47{word-spacing:3.293333pt;}
.ws3d{word-spacing:3.344000pt;}
.wsa9{word-spacing:3.394667pt;}
.ws54{word-spacing:3.445333pt;}
.wsdb{word-spacing:3.546667pt;}
.ws5c{word-spacing:3.597333pt;}
.wsb0{word-spacing:3.648000pt;}
.ws64{word-spacing:3.698667pt;}
.wsbe{word-spacing:3.749333pt;}
.ws91{word-spacing:3.800000pt;}
.wsab{word-spacing:3.850667pt;}
.wse3{word-spacing:3.888000pt;}
.ws27{word-spacing:3.901333pt;}
.wse6{word-spacing:3.984000pt;}
.wsc1{word-spacing:4.053333pt;}
.ws2b{word-spacing:4.306667pt;}
.ws7a{word-spacing:4.357333pt;}
.wse8{word-spacing:4.368000pt;}
.ws12{word-spacing:4.509333pt;}
.ws25{word-spacing:4.560000pt;}
.ws8f{word-spacing:4.610667pt;}
.ws1f{word-spacing:4.661333pt;}
.wsb{word-spacing:4.712000pt;}
.ws94{word-spacing:4.762667pt;}
.wsad{word-spacing:4.813333pt;}
.ws51{word-spacing:4.914667pt;}
.ws4e{word-spacing:4.965333pt;}
.ws2d{word-spacing:5.016000pt;}
.wsbb{word-spacing:5.066667pt;}
.ws39{word-spacing:5.168000pt;}
.wsbc{word-spacing:5.269333pt;}
.wsb8{word-spacing:5.370667pt;}
.wsb5{word-spacing:5.472000pt;}
.ws88{word-spacing:5.573333pt;}
.ws45{word-spacing:5.624000pt;}
.ws8{word-spacing:5.674667pt;}
.ws86{word-spacing:5.725333pt;}
.wsaf{word-spacing:5.776000pt;}
.ws5b{word-spacing:5.877333pt;}
.ws38{word-spacing:5.928000pt;}
.ws53{word-spacing:5.978667pt;}
.ws95{word-spacing:6.080000pt;}
.ws3f{word-spacing:6.181333pt;}
.ws62{word-spacing:6.232000pt;}
.ws8c{word-spacing:6.282667pt;}
.ws11{word-spacing:6.333333pt;}
.ws89{word-spacing:6.485333pt;}
.ws79{word-spacing:6.536000pt;}
.wsb2{word-spacing:6.586667pt;}
.wsd5{word-spacing:6.738667pt;}
.wsdc{word-spacing:6.941333pt;}
.ws1e{word-spacing:6.992000pt;}
.ws2e{word-spacing:7.042667pt;}
.ws9e{word-spacing:7.144000pt;}
.ws4c{word-spacing:7.194667pt;}
.wsd9{word-spacing:7.296000pt;}
.wsce{word-spacing:7.397333pt;}
.wsd1{word-spacing:7.448000pt;}
.ws85{word-spacing:7.498667pt;}
.wsc2{word-spacing:7.549333pt;}
.ws16{word-spacing:7.650667pt;}
.wsdd{word-spacing:7.752000pt;}
.ws3b{word-spacing:7.802667pt;}
.ws56{word-spacing:7.904000pt;}
.ws4d{word-spacing:8.056000pt;}
.ws7e{word-spacing:8.208000pt;}
.ws7f{word-spacing:8.258667pt;}
.ws8b{word-spacing:8.309333pt;}
.ws93{word-spacing:8.360000pt;}
.ws55{word-spacing:8.410667pt;}
.wsd0{word-spacing:8.714667pt;}
.wsba{word-spacing:8.866667pt;}
.ws4b{word-spacing:8.917333pt;}
.ws76{word-spacing:9.069333pt;}
.wsd2{word-spacing:9.170667pt;}
.ws9d{word-spacing:9.272000pt;}
.wse9{word-spacing:9.552000pt;}
.wscb{word-spacing:9.576000pt;}
.wsda{word-spacing:9.626667pt;}
.ws9b{word-spacing:9.677333pt;}
.ws44{word-spacing:9.930667pt;}
.ws26{word-spacing:10.184000pt;}
.ws3e{word-spacing:10.234667pt;}
.ws9c{word-spacing:10.488000pt;}
.ws83{word-spacing:10.690667pt;}
.ws81{word-spacing:10.842667pt;}
.wsd6{word-spacing:10.893333pt;}
.ws19{word-spacing:11.298667pt;}
.wsc4{word-spacing:11.552000pt;}
.ws17{word-spacing:11.754667pt;}
.ws96{word-spacing:11.856000pt;}
.wsb4{word-spacing:11.957333pt;}
.ws14{word-spacing:12.109333pt;}
.ws57{word-spacing:12.514667pt;}
.ws60{word-spacing:12.565333pt;}
.ws49{word-spacing:12.717333pt;}
.ws8e{word-spacing:13.122667pt;}
.wsbd{word-spacing:13.477333pt;}
.ws18{word-spacing:13.528000pt;}
.wsd3{word-spacing:13.882667pt;}
.wsb6{word-spacing:14.085333pt;}
.wsa{word-spacing:15.149333pt;}
.wsd7{word-spacing:16.264000pt;}
.ws1c{word-spacing:16.821333pt;}
.wsd4{word-spacing:18.645333pt;}
.ws43{word-spacing:19.152000pt;}
.ws80{word-spacing:21.989333pt;}
.wsa3{word-spacing:99.030400pt;}
.wsa4{word-spacing:100.677333pt;}
.wsa7{word-spacing:109.890667pt;}
.wsa5{word-spacing:112.970667pt;}
.ws72{word-spacing:201.001600pt;}
.ws74{word-spacing:208.261867pt;}
.wsc5{word-spacing:213.357333pt;}
.ws6a{word-spacing:216.169067pt;}
.wsc6{word-spacing:222.617600pt;}
.ws6b{word-spacing:224.649067pt;}
.ws6f{word-spacing:228.681600pt;}
.ws6d{word-spacing:229.609067pt;}
.wsc8{word-spacing:230.976533pt;}
.ws71{word-spacing:231.788800pt;}
.ws6e{word-spacing:231.969600pt;}
.wsc9{word-spacing:235.017067pt;}
.wsca{word-spacing:235.196800pt;}
.ws73{word-spacing:235.322133pt;}
.wsc7{word-spacing:236.157867pt;}
.ws70{word-spacing:274.285867pt;}
.ws6c{word-spacing:275.405867pt;}
.wsa8{word-spacing:377.553600pt;}
.wsa6{word-spacing:438.114667pt;}
.ws37{word-spacing:1717.306667pt;}
.wsa1{word-spacing:1719.618667pt;}
.wsdf{word-spacing:1722.202667pt;}
._0{margin-left:-2736.378667pt;}
._5{margin-left:-4.940533pt;}
._6{margin-left:-4.023467pt;}
._4{margin-left:-2.265333pt;}
._3{margin-left:-0.965600pt;}
._2{width:1.505067pt;}
._8{width:2.530667pt;}
._46{width:4.592000pt;}
._7{width:6.383733pt;}
._48{width:16.910400pt;}
._1{width:35.632000pt;}
._47{width:37.000000pt;}
._2e{width:85.714667pt;}
._29{width:106.074133pt;}
._2d{width:107.114667pt;}
._22{width:109.353600pt;}
._27{width:111.350400pt;}
._2f{width:115.388800pt;}
._23{width:116.737600pt;}
._2a{width:118.531200pt;}
._25{width:119.518933pt;}
._28{width:120.527467pt;}
._24{width:123.098667pt;}
._33{width:124.610667pt;}
._3f{width:132.820267pt;}
._3b{width:141.980267pt;}
._3d{width:143.020267pt;}
._1e{width:222.587733pt;}
._37{width:223.977067pt;}
._1f{width:225.850667pt;}
._38{width:227.557867pt;}
._1a{width:229.533867pt;}
._21{width:232.822933pt;}
._3a{width:234.986133pt;}
._e{width:235.982400pt;}
._11{width:236.929067pt;}
._42{width:239.536533pt;}
._17{width:240.668800pt;}
._d{width:241.729600pt;}
._15{width:243.089067pt;}
._41{width:244.143467pt;}
._b{width:245.162133pt;}
._16{width:247.186133pt;}
._a{width:248.930133pt;}
._12{width:250.610667pt;}
._43{width:255.257600pt;}
._f{width:256.290133pt;}
._18{width:259.110400pt;}
._32{width:263.154667pt;}
._10{width:264.545600pt;}
._1c{width:265.668800pt;}
._13{width:266.609600pt;}
._1d{width:269.270400pt;}
._31{width:277.914667pt;}
._2c{width:298.674667pt;}
._40{width:313.820267pt;}
._3c{width:334.580267pt;}
._9{width:369.765867pt;}
._2b{width:382.736533pt;}
._30{width:394.589867pt;}
._20{width:398.814933pt;}
._14{width:412.045867pt;}
._1b{width:420.765867pt;}
._19{width:424.825600pt;}
._36{width:434.720533pt;}
._35{width:448.274667pt;}
._34{width:449.514667pt;}
._c{width:472.946133pt;}
._3e{width:482.580267pt;}
._45{width:484.180267pt;}
._44{width:485.420267pt;}
._26{width:500.894933pt;}
._39{width:536.800533pt;}
.fsa{font-size:26.133333pt;}
.fs9{font-size:28.000000pt;}
.fs6{font-size:34.666667pt;}
.fs8{font-size:35.466667pt;}
.fsb{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:61.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.689333pt;}
.y4c{bottom:39.689467pt;}
.y1b{bottom:95.271600pt;}
.y12f{bottom:104.065333pt;}
.ye7{bottom:104.177067pt;}
.y1a{bottom:110.604933pt;}
.y12e{bottom:115.398667pt;}
.ye6{bottom:115.510400pt;}
.y22{bottom:125.938267pt;}
.y12d{bottom:126.732000pt;}
.ye5{bottom:126.843733pt;}
.y12c{bottom:138.065333pt;}
.ye4{bottom:138.177067pt;}
.y19{bottom:138.604933pt;}
.y21{bottom:141.271600pt;}
.y12b{bottom:149.398667pt;}
.ye3{bottom:149.510400pt;}
.y97{bottom:153.938267pt;}
.y20{bottom:156.604933pt;}
.y12a{bottom:160.732000pt;}
.ye2{bottom:160.843733pt;}
.y1f{bottom:171.938267pt;}
.y129{bottom:172.065333pt;}
.ye1{bottom:172.177067pt;}
.y165{bottom:183.071067pt;}
.y128{bottom:183.398667pt;}
.ye0{bottom:183.510400pt;}
.y18{bottom:187.271600pt;}
.y127{bottom:194.732000pt;}
.ydf{bottom:194.843733pt;}
.y96{bottom:199.938267pt;}
.y164{bottom:202.183867pt;}
.y17{bottom:202.604933pt;}
.y126{bottom:206.065333pt;}
.yde{bottom:206.177067pt;}
.y125{bottom:217.398667pt;}
.ydd{bottom:217.510400pt;}
.y163{bottom:217.517200pt;}
.y16{bottom:217.938267pt;}
.y124{bottom:228.732000pt;}
.ydc{bottom:228.843733pt;}
.y162{bottom:232.850533pt;}
.y15{bottom:233.271600pt;}
.y123{bottom:240.065333pt;}
.ydb{bottom:240.177067pt;}
.y1e{bottom:245.938267pt;}
.y14{bottom:248.604933pt;}
.y122{bottom:251.398667pt;}
.yda{bottom:251.510400pt;}
.y161{bottom:251.963467pt;}
.y6a{bottom:261.271600pt;}
.y121{bottom:262.732000pt;}
.yd9{bottom:262.843733pt;}
.y13{bottom:263.938267pt;}
.y160{bottom:267.296800pt;}
.y120{bottom:274.065333pt;}
.yd8{bottom:274.177067pt;}
.y12{bottom:279.271600pt;}
.y15f{bottom:282.630133pt;}
.y11f{bottom:285.398667pt;}
.yd7{bottom:285.510400pt;}
.y11{bottom:294.604933pt;}
.y11e{bottom:296.732000pt;}
.yd6{bottom:296.843733pt;}
.y15e{bottom:301.742933pt;}
.y11d{bottom:308.065333pt;}
.yd5{bottom:308.177067pt;}
.y10{bottom:309.938267pt;}
.y15d{bottom:317.076267pt;}
.y11c{bottom:319.398667pt;}
.yd4{bottom:319.510400pt;}
.y95{bottom:322.604933pt;}
.yf{bottom:325.271600pt;}
.y11b{bottom:330.732000pt;}
.yd3{bottom:330.843733pt;}
.y15c{bottom:332.409600pt;}
.ye{bottom:340.604933pt;}
.y11a{bottom:342.065333pt;}
.yd2{bottom:342.177067pt;}
.y15b{bottom:351.522400pt;}
.y66{bottom:353.271600pt;}
.y119{bottom:353.398667pt;}
.yd1{bottom:353.510400pt;}
.yd{bottom:355.938267pt;}
.y118{bottom:364.732000pt;}
.yd0{bottom:364.843733pt;}
.y15a{bottom:366.855733pt;}
.y80{bottom:368.604933pt;}
.yc{bottom:371.271600pt;}
.y117{bottom:376.065333pt;}
.ycf{bottom:376.177067pt;}
.y159{bottom:382.189067pt;}
.yb{bottom:386.604933pt;}
.y116{bottom:387.398667pt;}
.yce{bottom:387.510400pt;}
.y115{bottom:398.732000pt;}
.ycd{bottom:398.843733pt;}
.ya{bottom:401.938267pt;}
.y158{bottom:409.973867pt;}
.y114{bottom:410.065333pt;}
.ycc{bottom:410.177067pt;}
.y9{bottom:417.271600pt;}
.y113{bottom:421.398667pt;}
.ycb{bottom:421.510400pt;}
.y8{bottom:432.604933pt;}
.y112{bottom:432.732000pt;}
.yca{bottom:432.843733pt;}
.y111{bottom:444.065333pt;}
.yc9{bottom:444.177067pt;}
.y94{bottom:445.271600pt;}
.y7{bottom:447.938267pt;}
.y110{bottom:455.398667pt;}
.yc8{bottom:455.510400pt;}
.y7f{bottom:461.529733pt;}
.y4b{bottom:463.072133pt;}
.y6{bottom:463.271600pt;}
.y157{bottom:464.842267pt;}
.y10f{bottom:466.732000pt;}
.yc7{bottom:466.843733pt;}
.y7e{bottom:475.663067pt;}
.y156{bottom:476.175600pt;}
.y10e{bottom:478.065333pt;}
.yc6{bottom:478.177067pt;}
.y5{bottom:478.604933pt;}
.y4a{bottom:484.405467pt;}
.y155{bottom:487.508933pt;}
.y10d{bottom:489.398667pt;}
.yc5{bottom:489.510400pt;}
.y91{bottom:492.220933pt;}
.y4{bottom:493.938267pt;}
.y49{bottom:495.072133pt;}
.y7d{bottom:497.732933pt;}
.y154{bottom:498.842267pt;}
.y10c{bottom:500.732000pt;}
.yc4{bottom:500.843733pt;}
.y48{bottom:505.738800pt;}
.y1d{bottom:509.271600pt;}
.y153{bottom:510.175600pt;}
.y10b{bottom:512.065333pt;}
.yc3{bottom:512.177067pt;}
.y47{bottom:516.405467pt;}
.y69{bottom:517.304667pt;}
.y90{bottom:518.677733pt;}
.y152{bottom:521.508933pt;}
.y3{bottom:521.938267pt;}
.y10a{bottom:523.398667pt;}
.yc2{bottom:523.510400pt;}
.y1c{bottom:524.604933pt;}
.y7c{bottom:525.323467pt;}
.y46{bottom:527.072133pt;}
.ya6{bottom:528.914000pt;}
.y68{bottom:529.304667pt;}
.y151{bottom:532.842267pt;}
.y109{bottom:534.732000pt;}
.yc1{bottom:534.843733pt;}
.y45{bottom:537.738800pt;}
.y65{bottom:539.938267pt;}
.y150{bottom:544.175600pt;}
.y8f{bottom:545.134400pt;}
.y108{bottom:546.065333pt;}
.yc0{bottom:546.177067pt;}
.y44{bottom:548.405467pt;}
.y83{bottom:552.604933pt;}
.y7b{bottom:552.914000pt;}
.y64{bottom:555.271600pt;}
.ya5{bottom:555.370667pt;}
.y14f{bottom:555.508933pt;}
.y107{bottom:557.398667pt;}
.ybf{bottom:557.510400pt;}
.y33{bottom:558.310933pt;}
.y43{bottom:559.072133pt;}
.y14e{bottom:566.842267pt;}
.y82{bottom:567.938267pt;}
.y106{bottom:568.732000pt;}
.ybe{bottom:568.843733pt;}
.y63{bottom:570.604933pt;}
.y8e{bottom:571.591067pt;}
.y32{bottom:577.423733pt;}
.y14d{bottom:578.175600pt;}
.y7a{bottom:579.937600pt;}
.y105{bottom:580.065333pt;}
.ybd{bottom:580.177067pt;}
.y42{bottom:580.405467pt;}
.ya4{bottom:581.827467pt;}
.y62{bottom:585.938267pt;}
.y14c{bottom:589.508933pt;}
.y41{bottom:591.072133pt;}
.y104{bottom:591.398667pt;}
.ybc{bottom:591.510400pt;}
.y31{bottom:592.757067pt;}
.y8d{bottom:598.047733pt;}
.y14b{bottom:600.842267pt;}
.y61{bottom:601.271600pt;}
.y40{bottom:601.738800pt;}
.y103{bottom:602.732000pt;}
.ybb{bottom:602.843733pt;}
.y79{bottom:607.008533pt;}
.y30{bottom:608.090400pt;}
.ya3{bottom:608.284133pt;}
.y14a{bottom:612.175600pt;}
.y102{bottom:614.065333pt;}
.yba{bottom:614.177067pt;}
.y60{bottom:616.604933pt;}
.y78{bottom:619.008533pt;}
.y3f{bottom:623.072133pt;}
.y149{bottom:623.508933pt;}
.y8c{bottom:624.504533pt;}
.y101{bottom:625.398667pt;}
.yb9{bottom:625.510400pt;}
.y2f{bottom:627.203333pt;}
.y5f{bottom:631.938267pt;}
.y3e{bottom:633.738800pt;}
.ya2{bottom:634.740800pt;}
.y148{bottom:634.842267pt;}
.y100{bottom:636.732000pt;}
.yb8{bottom:636.843733pt;}
.y2e{bottom:642.536667pt;}
.y77{bottom:646.079333pt;}
.y147{bottom:646.175600pt;}
.y5e{bottom:647.271600pt;}
.yff{bottom:648.065333pt;}
.yb7{bottom:648.177067pt;}
.y8b{bottom:650.630400pt;}
.y3d{bottom:655.072133pt;}
.y146{bottom:657.508933pt;}
.y2d{bottom:657.870000pt;}
.yfe{bottom:659.398667pt;}
.yb6{bottom:659.510400pt;}
.ya1{bottom:661.197467pt;}
.y5d{bottom:662.604933pt;}
.y8a{bottom:662.630400pt;}
.y3c{bottom:665.738800pt;}
.y145{bottom:668.842267pt;}
.yfd{bottom:670.732000pt;}
.yb5{bottom:670.843733pt;}
.y76{bottom:671.874667pt;}
.y2c{bottom:673.203333pt;}
.y5c{bottom:677.938267pt;}
.y144{bottom:680.175600pt;}
.yfc{bottom:682.065333pt;}
.yb4{bottom:682.177067pt;}
.y75{bottom:683.874667pt;}
.y3b{bottom:687.072133pt;}
.ya0{bottom:687.323467pt;}
.y89{bottom:688.756400pt;}
.y143{bottom:691.508933pt;}
.y2b{bottom:692.316133pt;}
.y5b{bottom:693.271600pt;}
.yfb{bottom:693.398667pt;}
.yb3{bottom:693.510400pt;}
.y74{bottom:695.874667pt;}
.y3a{bottom:697.738800pt;}
.y9f{bottom:699.323467pt;}
.y142{bottom:702.842267pt;}
.yfa{bottom:704.732000pt;}
.yb2{bottom:704.843733pt;}
.y93{bottom:705.938267pt;}
.y2a{bottom:707.649467pt;}
.y39{bottom:708.405467pt;}
.y5a{bottom:708.604933pt;}
.y141{bottom:714.175600pt;}
.y88{bottom:715.213200pt;}
.yf9{bottom:716.065333pt;}
.yb1{bottom:716.177067pt;}
.y38{bottom:719.072133pt;}
.y73{bottom:721.669867pt;}
.y29{bottom:722.982800pt;}
.y59{bottom:723.938267pt;}
.y9e{bottom:725.449467pt;}
.y140{bottom:725.508933pt;}
.yf8{bottom:727.398667pt;}
.yb0{bottom:727.510400pt;}
.y37{bottom:729.738800pt;}
.y13f{bottom:736.842267pt;}
.yf7{bottom:738.732000pt;}
.yaf{bottom:738.843733pt;}
.y58{bottom:739.271600pt;}
.y87{bottom:741.669867pt;}
.y28{bottom:742.095733pt;}
.y13e{bottom:748.175600pt;}
.y72{bottom:748.740800pt;}
.yf6{bottom:750.065333pt;}
.yae{bottom:750.177067pt;}
.y36{bottom:751.072133pt;}
.y9d{bottom:751.906133pt;}
.y57{bottom:754.604933pt;}
.y27{bottom:757.429067pt;}
.y13d{bottom:759.508933pt;}
.y71{bottom:760.740800pt;}
.yf5{bottom:761.398667pt;}
.yad{bottom:761.510400pt;}
.y35{bottom:761.738800pt;}
.y86{bottom:768.126533pt;}
.y56{bottom:769.938267pt;}
.y13c{bottom:770.842267pt;}
.y34{bottom:772.405467pt;}
.yf4{bottom:772.732000pt;}
.y26{bottom:772.762400pt;}
.yac{bottom:772.843733pt;}
.y9c{bottom:778.362933pt;}
.y13b{bottom:782.175600pt;}
.yf3{bottom:784.065333pt;}
.yab{bottom:784.177067pt;}
.y55{bottom:785.271600pt;}
.y70{bottom:787.811733pt;}
.y85{bottom:790.646133pt;}
.y13a{bottom:793.508933pt;}
.yf2{bottom:795.398667pt;}
.yaa{bottom:795.510400pt;}
.y54{bottom:800.604933pt;}
.y9b{bottom:804.819600pt;}
.y139{bottom:804.842267pt;}
.yf1{bottom:806.732000pt;}
.ya9{bottom:806.843733pt;}
.y6f{bottom:814.268400pt;}
.y53{bottom:815.938267pt;}
.y138{bottom:816.175600pt;}
.yf0{bottom:818.065333pt;}
.ya8{bottom:818.177067pt;}
.y25{bottom:825.648133pt;}
.y137{bottom:827.508933pt;}
.yef{bottom:829.398667pt;}
.y9a{bottom:830.614800pt;}
.y52{bottom:831.271600pt;}
.ya7{bottom:838.510400pt;}
.y136{bottom:838.842267pt;}
.yee{bottom:840.732000pt;}
.y6e{bottom:841.339200pt;}
.y99{bottom:842.614800pt;}
.y92{bottom:843.938267pt;}
.y51{bottom:846.604933pt;}
.y135{bottom:850.175600pt;}
.yed{bottom:852.065333pt;}
.y6d{bottom:853.339200pt;}
.y98{bottom:854.614800pt;}
.y81{bottom:859.271600pt;}
.y134{bottom:861.508933pt;}
.y50{bottom:861.938267pt;}
.yec{bottom:863.398667pt;}
.y24{bottom:869.648667pt;}
.y133{bottom:872.842267pt;}
.yeb{bottom:874.732000pt;}
.y4f{bottom:877.271600pt;}
.y6c{bottom:882.520400pt;}
.y132{bottom:884.175600pt;}
.yea{bottom:886.065333pt;}
.y4e{bottom:892.604933pt;}
.y84{bottom:892.850933pt;}
.y6b{bottom:894.520400pt;}
.y67{bottom:894.520533pt;}
.y131{bottom:895.508933pt;}
.ye9{bottom:897.398667pt;}
.y23{bottom:898.448533pt;}
.y130{bottom:906.842267pt;}
.y4d{bottom:907.938267pt;}
.ye8{bottom:908.732000pt;}
.y2{bottom:999.938267pt;}
.h11{height:20.906667pt;}
.ha{height:25.341333pt;}
.h9{height:27.733333pt;}
.h14{height:29.866667pt;}
.hc{height:32.000000pt;}
.h12{height:32.106667pt;}
.h15{height:33.560000pt;}
.h10{height:34.400000pt;}
.hb{height:34.634667pt;}
.h16{height:35.492000pt;}
.h2{height:36.266667pt;}
.h8{height:38.400000pt;}
.h3{height:38.986667pt;}
.h5{height:42.509333pt;}
.h7{height:42.666667pt;}
.h4{height:44.834667pt;}
.h13{height:44.956000pt;}
.hd{height:44.956533pt;}
.he{height:56.000000pt;}
.hf{height:58.400000pt;}
.h6{height:70.176000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:52.913333pt;}
.x3{left:56.692933pt;}
.x2c{left:75.590533pt;}
.x8{left:181.417333pt;}
.x9{left:196.535467pt;}
.x15{left:197.936933pt;}
.x2a{left:200.314933pt;}
.x16{left:209.936933pt;}
.x17{left:238.519600pt;}
.x18{left:270.919067pt;}
.x19{left:303.895333pt;}
.x1a{left:332.403733pt;}
.x4{left:342.047200pt;}
.x1b{left:344.403867pt;}
.x5{left:357.165333pt;}
.x2d{left:360.944800pt;}
.x1c{left:371.768267pt;}
.x1d{left:399.972933pt;}
.x1e{left:411.972933pt;}
.x1f{left:440.177600pt;}
.xd{left:461.478933pt;}
.xb{left:466.771600pt;}
.x21{left:476.502667pt;}
.x14{left:478.823600pt;}
.xa{left:481.889733pt;}
.x22{left:484.372533pt;}
.x2b{left:486.110133pt;}
.xc{left:490.314800pt;}
.xe{left:522.261333pt;}
.xf{left:532.656133pt;}
.x24{left:535.477333pt;}
.x23{left:539.217200pt;}
.x25{left:553.726933pt;}
.x11{left:599.119067pt;}
.x10{left:605.653867pt;}
.x26{left:615.211200pt;}
.x6{left:627.401600pt;}
.x28{left:674.186000pt;}
.x27{left:677.925867pt;}
.x13{left:683.359333pt;}
.x29{left:685.200667pt;}
.x2{left:692.135067pt;}
.x12{left:697.848933pt;}
.x1{left:729.794267pt;}
.x20{left:731.822933pt;}
}




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