
    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_4205f692176ae951c6735a06.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_27ecabc9bdd7001b9ea062a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_29f0971043ef73a2774265bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_bc4a820eb6d5530da0e7200d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_341bdc3619d19baf96da4539.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_78bce835dfd7f96f565953d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_ebf092f3ae9a157c57b4ae91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_6d98288417858ce7acd09612.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_2a1e6ad618b90c5d1264958d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dcf774d10d53a96ac9be99cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.801000;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_3be57e1edd3457ceaa731f4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.386786;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_1d3ba84de15c303c9312d5a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690000;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_a979ca29804c2c88b4034fd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202000;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.224958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224958,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);}
.m2{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);}
.v4{vertical-align:-23.520081px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:23.462481px;}
.v2{vertical-align:26.399780px;}
.ls4{letter-spacing:-1.050000px;}
.ls3{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.675000px;}
.ls5{letter-spacing:-0.470400px;}
.ls15{letter-spacing:-0.450000px;}
.ls7{letter-spacing:-0.411600px;}
.ls13{letter-spacing:-0.270000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.ls12{letter-spacing:0.000070px;}
.ls11{letter-spacing:0.000491px;}
.lsf{letter-spacing:0.352800px;}
.ls10{letter-spacing:0.411600px;}
.lse{letter-spacing:0.529200px;}
.lsa{letter-spacing:0.670264px;}
.ls6{letter-spacing:0.705600px;}
.ls8{letter-spacing:0.823200px;}
.ls9{letter-spacing:0.829080px;}
.lsd{letter-spacing:0.882000px;}
.lsb{letter-spacing:0.887880px;}
.lsc{letter-spacing:0.893747px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.ws27{word-spacing:-14.641200px;}
.ws7{word-spacing:-14.523600px;}
.ws25{word-spacing:-14.347200px;}
.ws26{word-spacing:-14.170800px;}
.ws6{word-spacing:-13.818000px;}
.ws81{word-spacing:-13.406400px;}
.ws2a{word-spacing:-13.347600px;}
.ws5{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.wsed{word-spacing:-11.426400px;}
.ws3{word-spacing:-10.800000px;}
.ws0{word-spacing:-10.176000px;}
.ws1{word-spacing:-10.117800px;}
.ws29{word-spacing:-9.672600px;}
.wsc6{word-spacing:-9.315000px;}
.wsbb{word-spacing:-8.640000px;}
.wse{word-spacing:-8.148000px;}
.wsee{word-spacing:-8.100000px;}
.ws8{word-spacing:-6.898500px;}
.ws5e{word-spacing:-6.468000px;}
.wsbc{word-spacing:-4.512000px;}
.wsd{word-spacing:-2.520000px;}
.ws44{word-spacing:-1.058400px;}
.ws91{word-spacing:-0.999600px;}
.ws31{word-spacing:-0.823200px;}
.wsa{word-spacing:-0.780000px;}
.wse6{word-spacing:-0.646800px;}
.ws10{word-spacing:-0.470400px;}
.wsa0{word-spacing:-0.294000px;}
.ws8c{word-spacing:-0.235200px;}
.ws28{word-spacing:-0.041160px;}
.ws9{word-spacing:0.000000px;}
.ws9b{word-spacing:0.058800px;}
.wsba{word-spacing:0.235200px;}
.wsef{word-spacing:0.270000px;}
.ws11{word-spacing:0.294000px;}
.ws9d{word-spacing:0.352800px;}
.wsf{word-spacing:0.470400px;}
.ws64{word-spacing:0.529200px;}
.ws4c{word-spacing:0.588000px;}
.ws63{word-spacing:0.646800px;}
.wsf0{word-spacing:0.675000px;}
.ws6e{word-spacing:0.705600px;}
.wsb{word-spacing:0.900000px;}
.ws9c{word-spacing:0.940800px;}
.ws15{word-spacing:0.999600px;}
.ws4d{word-spacing:1.058400px;}
.ws99{word-spacing:1.117200px;}
.wsa1{word-spacing:1.176000px;}
.wsaa{word-spacing:1.293600px;}
.ws14{word-spacing:1.470000px;}
.wsa2{word-spacing:1.587600px;}
.ws4b{word-spacing:1.646400px;}
.ws45{word-spacing:1.705200px;}
.ws2c{word-spacing:1.822800px;}
.wsa6{word-spacing:1.940400px;}
.wsec{word-spacing:1.999200px;}
.ws4e{word-spacing:2.058000px;}
.ws49{word-spacing:2.116800px;}
.wscc{word-spacing:2.234400px;}
.wsdc{word-spacing:2.293200px;}
.ws3f{word-spacing:2.410800px;}
.ws92{word-spacing:2.469600px;}
.ws37{word-spacing:2.587200px;}
.wsc0{word-spacing:2.646000px;}
.ws40{word-spacing:2.822400px;}
.ws41{word-spacing:2.881200px;}
.ws8d{word-spacing:3.116400px;}
.wsaf{word-spacing:3.175200px;}
.ws13{word-spacing:3.234000px;}
.wsb6{word-spacing:3.292800px;}
.wsc7{word-spacing:3.351600px;}
.ws6a{word-spacing:3.469200px;}
.ws5b{word-spacing:3.528000px;}
.ws97{word-spacing:3.586800px;}
.ws2d{word-spacing:3.704400px;}
.wsb0{word-spacing:3.763200px;}
.ws51{word-spacing:3.822000px;}
.ws6b{word-spacing:3.880800px;}
.ws20{word-spacing:3.939600px;}
.ws98{word-spacing:3.998400px;}
.ws21{word-spacing:4.174800px;}
.ws50{word-spacing:4.233600px;}
.wsbf{word-spacing:4.292400px;}
.ws69{word-spacing:4.351200px;}
.ws1f{word-spacing:4.468800px;}
.ws1e{word-spacing:4.527600px;}
.wsb7{word-spacing:4.645200px;}
.wsda{word-spacing:4.880400px;}
.ws2b{word-spacing:4.939200px;}
.ws4f{word-spacing:5.056800px;}
.wsb8{word-spacing:5.115600px;}
.ws96{word-spacing:5.174400px;}
.ws57{word-spacing:5.233200px;}
.ws3b{word-spacing:5.350800px;}
.ws86{word-spacing:5.527200px;}
.ws8a{word-spacing:5.586000px;}
.ws59{word-spacing:5.644800px;}
.ws58{word-spacing:5.703600px;}
.ws71{word-spacing:5.762400px;}
.wsd0{word-spacing:5.938800px;}
.wse4{word-spacing:5.997600px;}
.wsc4{word-spacing:6.056400px;}
.wsbd{word-spacing:6.115200px;}
.ws67{word-spacing:6.174000px;}
.ws35{word-spacing:6.232800px;}
.ws30{word-spacing:6.291600px;}
.ws7c{word-spacing:6.350400px;}
.wsd1{word-spacing:6.409200px;}
.ws62{word-spacing:6.468000px;}
.wsc5{word-spacing:6.644400px;}
.ws6f{word-spacing:6.762000px;}
.ws7e{word-spacing:6.820800px;}
.ws95{word-spacing:6.879600px;}
.wsd9{word-spacing:6.938400px;}
.ws66{word-spacing:7.056000px;}
.ws87{word-spacing:7.114800px;}
.ws33{word-spacing:7.232400px;}
.ws22{word-spacing:7.350000px;}
.wsd5{word-spacing:7.408800px;}
.wsb4{word-spacing:7.467600px;}
.wsad{word-spacing:7.526400px;}
.wse0{word-spacing:7.585200px;}
.wsce{word-spacing:7.702800px;}
.wsc9{word-spacing:7.761600px;}
.ws79{word-spacing:7.820400px;}
.wsa7{word-spacing:7.879200px;}
.wsdf{word-spacing:7.938000px;}
.wsde{word-spacing:7.996800px;}
.ws9f{word-spacing:8.055600px;}
.ws23{word-spacing:8.173200px;}
.ws3e{word-spacing:8.232000px;}
.ws36{word-spacing:8.290800px;}
.ws89{word-spacing:8.349600px;}
.ws32{word-spacing:8.526000px;}
.wsbe{word-spacing:8.643600px;}
.wsc2{word-spacing:8.702400px;}
.ws52{word-spacing:8.761200px;}
.ws42{word-spacing:8.820000px;}
.wsc8{word-spacing:8.937600px;}
.ws4a{word-spacing:8.996400px;}
.ws8b{word-spacing:9.055200px;}
.ws12{word-spacing:9.114000px;}
.ws5f{word-spacing:9.231600px;}
.ws43{word-spacing:9.290400px;}
.wsae{word-spacing:9.349200px;}
.wsd2{word-spacing:9.408000px;}
.ws47{word-spacing:9.466800px;}
.ws90{word-spacing:9.525600px;}
.ws7b{word-spacing:9.643200px;}
.wsdb{word-spacing:9.702000px;}
.ws73{word-spacing:9.760800px;}
.ws5a{word-spacing:9.878400px;}
.wsb2{word-spacing:9.937200px;}
.ws18{word-spacing:9.996000px;}
.wse3{word-spacing:10.054800px;}
.ws48{word-spacing:10.113600px;}
.ws75{word-spacing:10.172400px;}
.ws74{word-spacing:10.231200px;}
.ws19{word-spacing:10.466400px;}
.wsd3{word-spacing:10.584000px;}
.wsd4{word-spacing:10.642800px;}
.ws8f{word-spacing:10.701600px;}
.ws39{word-spacing:10.760400px;}
.wseb{word-spacing:10.819200px;}
.ws24{word-spacing:11.054400px;}
.wsa5{word-spacing:11.113200px;}
.ws16{word-spacing:11.172000px;}
.ws38{word-spacing:11.289600px;}
.ws72{word-spacing:11.466000px;}
.ws1c{word-spacing:11.583600px;}
.ws17{word-spacing:11.642400px;}
.ws80{word-spacing:11.760000px;}
.ws34{word-spacing:11.818800px;}
.wsb3{word-spacing:11.877600px;}
.wsd7{word-spacing:12.054000px;}
.wsa9{word-spacing:12.112800px;}
.ws60{word-spacing:12.230400px;}
.wsb1{word-spacing:12.406800px;}
.wsa8{word-spacing:12.583200px;}
.ws68{word-spacing:12.642000px;}
.ws5c{word-spacing:12.759600px;}
.ws3a{word-spacing:12.818400px;}
.wsea{word-spacing:13.112400px;}
.ws56{word-spacing:13.230000px;}
.wsab{word-spacing:13.347600px;}
.wsac{word-spacing:13.406400px;}
.ws65{word-spacing:13.465200px;}
.ws1d{word-spacing:13.524000px;}
.ws7f{word-spacing:13.641600px;}
.wse5{word-spacing:13.700400px;}
.ws9a{word-spacing:13.759200px;}
.ws8e{word-spacing:13.818000px;}
.wsb9{word-spacing:13.935600px;}
.wscd{word-spacing:13.994400px;}
.ws46{word-spacing:14.229600px;}
.wsdd{word-spacing:14.288400px;}
.ws83{word-spacing:14.347200px;}
.wsd6{word-spacing:14.406000px;}
.ws3d{word-spacing:14.582400px;}
.wse9{word-spacing:14.641200px;}
.ws2f{word-spacing:14.700000px;}
.wsa4{word-spacing:14.758800px;}
.ws84{word-spacing:14.876400px;}
.ws1a{word-spacing:14.994000px;}
.wsa3{word-spacing:15.288000px;}
.ws1b{word-spacing:15.405600px;}
.ws85{word-spacing:15.523200px;}
.ws78{word-spacing:15.934800px;}
.wsc3{word-spacing:15.993600px;}
.wsd8{word-spacing:16.170000px;}
.wse2{word-spacing:16.228800px;}
.ws61{word-spacing:16.346400px;}
.ws76{word-spacing:16.522800px;}
.ws88{word-spacing:16.640400px;}
.wsb5{word-spacing:16.816800px;}
.wsc{word-spacing:16.860000px;}
.ws82{word-spacing:17.346000px;}
.wse7{word-spacing:17.581200px;}
.wscf{word-spacing:17.875200px;}
.ws7d{word-spacing:18.110400px;}
.wscb{word-spacing:18.169200px;}
.wsca{word-spacing:18.874800px;}
.ws7a{word-spacing:19.521600px;}
.ws3c{word-spacing:19.815600px;}
.ws9e{word-spacing:19.874400px;}
.ws93{word-spacing:20.344800px;}
.ws6d{word-spacing:20.638800px;}
.ws53{word-spacing:20.815200px;}
.ws70{word-spacing:21.579600px;}
.ws54{word-spacing:22.285200px;}
.ws5d{word-spacing:22.579200px;}
.ws94{word-spacing:23.049600px;}
.ws77{word-spacing:23.461200px;}
.wsc1{word-spacing:24.460800px;}
.ws55{word-spacing:25.460400px;}
.ws6c{word-spacing:27.518400px;}
.wse8{word-spacing:29.282400px;}
.ws2e{word-spacing:34.221600px;}
.wse1{word-spacing:35.632800px;}
._d{margin-left:-29.475607px;}
._15{margin-left:-22.108819px;}
._14{margin-left:-20.403600px;}
._19{margin-left:-18.132000px;}
._4{margin-left:-16.154400px;}
._17{margin-left:-13.606800px;}
._18{margin-left:-8.467213px;}
._a{margin-left:-6.444000px;}
._5{margin-left:-5.180160px;}
._3{margin-left:-3.888000px;}
._b{margin-left:-2.770800px;}
._1{margin-left:-1.732800px;}
._0{width:1.152000px;}
._2{width:2.289600px;}
._1b{width:3.368376px;}
._8{width:4.472389px;}
._1c{width:5.585994px;}
._9{width:6.595178px;}
._13{width:8.685720px;}
._7{width:9.930480px;}
._6{width:11.690400px;}
._10{width:13.365720px;}
._12{width:14.986800px;}
._f{width:16.346400px;}
._16{width:17.541726px;}
._1a{width:19.773961px;}
._11{width:21.579600px;}
._c{width:25.107600px;}
._e{width:29.875790px;}
._1d{width:44.388000px;}
.fc3{color:rgb(86,86,85);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fsc{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:96.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:6.504364px;}
.y21{bottom:79.008299px;}
.y20{bottom:91.009799px;}
.y1f{bottom:103.011299px;}
.yfc{bottom:104.420254px;}
.yaa{bottom:106.620895px;}
.y75{bottom:106.628095px;}
.yd2{bottom:106.635295px;}
.y14d{bottom:107.773953px;}
.y109{bottom:115.002445px;}
.y1e{bottom:115.012799px;}
.y116{bottom:115.090645px;}
.yfb{bottom:119.420254px;}
.y74{bottom:124.620895px;}
.ya9{bottom:124.628095px;}
.y14c{bottom:125.766753px;}
.y1d{bottom:127.014299px;}
.y1b7{bottom:130.842728px;}
.y1fa{bottom:132.342750px;}
.y108{bottom:133.038457px;}
.y115{bottom:133.083445px;}
.yfa{bottom:134.420254px;}
.y17d{bottom:134.737930px;}
.y1c{bottom:139.015799px;}
.ya8{bottom:142.620895px;}
.y73{bottom:142.628095px;}
.yf8{bottom:142.649695px;}
.y14b{bottom:143.759553px;}
.y1b6{bottom:144.342728px;}
.y1f9{bottom:145.842750px;}
.y17c{bottom:148.237930px;}
.yf9{bottom:149.420254px;}
.y1b{bottom:151.017299px;}
.y107{bottom:151.031257px;}
.y114{bottom:151.076245px;}
.y1b5{bottom:157.842728px;}
.y1f8{bottom:159.342750px;}
.y72{bottom:160.620895px;}
.yd1{bottom:160.628095px;}
.yf7{bottom:160.642495px;}
.y17b{bottom:161.737930px;}
.y14a{bottom:161.752353px;}
.y1a{bottom:163.018799px;}
.y106{bottom:169.024057px;}
.y113{bottom:169.069045px;}
.y1b4{bottom:171.342728px;}
.y17a{bottom:175.237930px;}
.yd0{bottom:178.620895px;}
.y71{bottom:178.635295px;}
.ya7{bottom:178.743295px;}
.y149{bottom:179.745153px;}
.y1b3{bottom:184.842728px;}
.y105{bottom:187.016857px;}
.y112{bottom:187.061845px;}
.y179{bottom:188.737930px;}
.y1f7{bottom:195.338978px;}
.y70{bottom:196.628095px;}
.ycf{bottom:196.649695px;}
.ya6{bottom:196.736095px;}
.y148{bottom:197.737953px;}
.y1b2{bottom:198.342728px;}
.y3e{bottom:200.893799px;}
.y178{bottom:202.237930px;}
.y104{bottom:205.009657px;}
.y111{bottom:205.054645px;}
.y1f6{bottom:208.838978px;}
.y33{bottom:209.543096px;}
.y1b1{bottom:211.842728px;}
.y3d{bottom:214.393799px;}
.y6f{bottom:214.620895px;}
.yce{bottom:214.642495px;}
.ya5{bottom:214.728895px;}
.y147{bottom:215.766753px;}
.y1f5{bottom:222.338978px;}
.y103{bottom:223.002457px;}
.y110{bottom:223.047445px;}
.y1b0{bottom:225.342728px;}
.y32{bottom:227.535896px;}
.y177{bottom:229.237930px;}
.y3c{bottom:232.393799px;}
.ycd{bottom:232.635295px;}
.y6e{bottom:232.642495px;}
.yf6{bottom:232.649695px;}
.ya4{bottom:232.721695px;}
.y146{bottom:233.759553px;}
.y1f4{bottom:235.838978px;}
.y1af{bottom:238.842728px;}
.y102{bottom:241.023896px;}
.y10f{bottom:241.040245px;}
.y3b{bottom:241.393799px;}
.y176{bottom:242.737930px;}
.y31{bottom:245.571896px;}
.y1f3{bottom:249.338978px;}
.ycc{bottom:250.628095px;}
.y6d{bottom:250.635295px;}
.yf5{bottom:250.642495px;}
.ya3{bottom:250.714495px;}
.y145{bottom:251.752353px;}
.y1ae{bottom:252.342728px;}
.y175{bottom:256.237930px;}
.y101{bottom:259.016696px;}
.y10e{bottom:259.033045px;}
.y3a{bottom:259.393799px;}
.y1f2{bottom:262.838978px;}
.y30{bottom:263.564696px;}
.y1ad{bottom:265.842728px;}
.y39{bottom:268.393799px;}
.ycb{bottom:268.620895px;}
.y6c{bottom:268.628095px;}
.yf4{bottom:268.635295px;}
.ya2{bottom:268.707295px;}
.y174{bottom:269.737930px;}
.y144{bottom:269.745153px;}
.y1f1{bottom:276.338978px;}
.y100{bottom:277.009496px;}
.y10d{bottom:277.025845px;}
.y1ac{bottom:279.342728px;}
.y2f{bottom:281.557496px;}
.y173{bottom:283.237930px;}
.y38{bottom:286.393799px;}
.y6b{bottom:286.620895px;}
.yf3{bottom:286.628095px;}
.ya1{bottom:286.700095px;}
.y143{bottom:287.737953px;}
.y1f0{bottom:289.838978px;}
.y1ab{bottom:292.842728px;}
.yff{bottom:295.002296px;}
.y10c{bottom:295.018645px;}
.y37{bottom:295.393799px;}
.y172{bottom:296.737930px;}
.y2e{bottom:299.550296px;}
.y1ef{bottom:303.338978px;}
.yf2{bottom:304.620895px;}
.yca{bottom:304.671295px;}
.ya0{bottom:304.692895px;}
.y6a{bottom:304.714495px;}
.y142{bottom:305.745153px;}
.y1aa{bottom:306.342728px;}
.y171{bottom:310.237930px;}
.yfe{bottom:313.009496px;}
.y10b{bottom:313.011445px;}
.y1ee{bottom:316.838978px;}
.y2d{bottom:317.543096px;}
.y1a9{bottom:319.842728px;}
.yc9{bottom:322.664095px;}
.y9f{bottom:322.685695px;}
.yf1{bottom:322.692895px;}
.y69{bottom:322.707295px;}
.y170{bottom:323.737930px;}
.y141{bottom:323.737953px;}
.y1ed{bottom:330.338978px;}
.yfd{bottom:331.002296px;}
.y10a{bottom:331.004245px;}
.y1a8{bottom:333.342728px;}
.y27{bottom:335.535896px;}
.yc8{bottom:340.656895px;}
.y9e{bottom:340.678495px;}
.yf0{bottom:340.685695px;}
.y68{bottom:340.700095px;}
.y140{bottom:341.824330px;}
.y1ec{bottom:343.838978px;}
.y1a7{bottom:346.842728px;}
.y16f{bottom:350.737930px;}
.y2c{bottom:353.543096px;}
.y26{bottom:353.550319px;}
.y1eb{bottom:357.338978px;}
.yc7{bottom:358.649695px;}
.y9d{bottom:358.671295px;}
.yef{bottom:358.678495px;}
.y67{bottom:358.692895px;}
.y13f{bottom:359.817130px;}
.y1a6{bottom:360.342728px;}
.y16e{bottom:364.237930px;}
.y1ea{bottom:370.838978px;}
.y2b{bottom:371.535896px;}
.y25{bottom:371.543119px;}
.y1a5{bottom:373.842728px;}
.yc6{bottom:376.642495px;}
.y9c{bottom:376.664095px;}
.yee{bottom:376.671295px;}
.y66{bottom:376.685695px;}
.y16d{bottom:377.737930px;}
.y13e{bottom:377.809930px;}
.y118{bottom:382.100235px;}
.y1e9{bottom:384.338978px;}
.y1a4{bottom:387.342728px;}
.y24{bottom:389.535919px;}
.y2a{bottom:389.543696px;}
.y16c{bottom:391.237930px;}
.yc5{bottom:394.635295px;}
.y9b{bottom:394.656895px;}
.yed{bottom:394.664095px;}
.y65{bottom:394.678495px;}
.y13d{bottom:395.802730px;}
.y117{bottom:397.100235px;}
.y1e8{bottom:397.838978px;}
.y1a3{bottom:400.842728px;}
.y16b{bottom:404.737930px;}
.y29{bottom:407.536496px;}
.y23{bottom:407.543119px;}
.y1e7{bottom:411.338978px;}
.yc4{bottom:412.628095px;}
.y9a{bottom:412.649695px;}
.yec{bottom:412.656895px;}
.y64{bottom:412.671295px;}
.y13c{bottom:413.795530px;}
.y1a2{bottom:414.342728px;}
.y1e6{bottom:424.838978px;}
.y28{bottom:425.529296px;}
.y22{bottom:425.535919px;}
.y1a1{bottom:427.842728px;}
.yc3{bottom:430.620895px;}
.y99{bottom:430.642495px;}
.yeb{bottom:430.649695px;}
.y63{bottom:430.664095px;}
.y16a{bottom:431.737930px;}
.y13b{bottom:431.788330px;}
.y1e5{bottom:438.338978px;}
.y1a0{bottom:441.342728px;}
.yc2{bottom:448.628095px;}
.y98{bottom:448.635295px;}
.yea{bottom:448.642495px;}
.y62{bottom:448.656895px;}
.y169{bottom:449.759530px;}
.y13a{bottom:449.781130px;}
.y1e4{bottom:451.838978px;}
.y19f{bottom:454.842728px;}
.y1e3{bottom:465.338978px;}
.yc1{bottom:466.620895px;}
.y97{bottom:466.628095px;}
.ye9{bottom:466.635295px;}
.y61{bottom:466.649695px;}
.y168{bottom:467.752330px;}
.y139{bottom:467.773930px;}
.y19e{bottom:468.342728px;}
.y19{bottom:477.215057px;}
.y1e2{bottom:478.838978px;}
.y19d{bottom:481.842728px;}
.y96{bottom:484.620895px;}
.ye8{bottom:484.628095px;}
.y60{bottom:484.642495px;}
.y167{bottom:485.745130px;}
.y138{bottom:485.766730px;}
.y1e1{bottom:492.338978px;}
.y18{bottom:495.215057px;}
.y19c{bottom:495.342728px;}
.ye7{bottom:502.620895px;}
.yc0{bottom:502.628095px;}
.y5f{bottom:502.635295px;}
.y95{bottom:502.664095px;}
.y166{bottom:503.737930px;}
.y137{bottom:503.759530px;}
.y1e0{bottom:505.838978px;}
.y19b{bottom:508.842728px;}
.y17{bottom:517.715057px;}
.y1df{bottom:519.338978px;}
.ybf{bottom:520.620895px;}
.y5e{bottom:520.628095px;}
.y94{bottom:520.656895px;}
.y136{bottom:521.752330px;}
.y165{bottom:521.759530px;}
.y19a{bottom:522.342728px;}
.y1de{bottom:532.838978px;}
.y16{bottom:535.715057px;}
.y199{bottom:535.842728px;}
.y5d{bottom:538.620895px;}
.ybe{bottom:538.642495px;}
.y93{bottom:538.649695px;}
.y135{bottom:539.745130px;}
.y164{bottom:539.752330px;}
.y1dd{bottom:546.338978px;}
.y198{bottom:549.342728px;}
.y15{bottom:553.715057px;}
.y5c{bottom:556.620895px;}
.ybd{bottom:556.635295px;}
.y92{bottom:556.642495px;}
.ye6{bottom:556.656895px;}
.y134{bottom:557.737930px;}
.y163{bottom:557.745130px;}
.y1dc{bottom:559.838978px;}
.y197{bottom:562.842728px;}
.y14{bottom:571.715057px;}
.y1db{bottom:573.338978px;}
.ybc{bottom:574.628095px;}
.y91{bottom:574.635295px;}
.ye5{bottom:574.649695px;}
.y5b{bottom:574.671295px;}
.y133{bottom:575.737930px;}
.y196{bottom:576.342728px;}
.y1da{bottom:586.838978px;}
.y13{bottom:589.715057px;}
.y195{bottom:589.842728px;}
.ybb{bottom:592.620895px;}
.y90{bottom:592.628095px;}
.ye4{bottom:592.642495px;}
.y5a{bottom:592.664095px;}
.y162{bottom:593.752330px;}
.y132{bottom:593.788330px;}
.y1d9{bottom:600.338978px;}
.y194{bottom:603.342728px;}
.y12{bottom:607.715057px;}
.yba{bottom:610.628095px;}
.y8f{bottom:610.635295px;}
.y59{bottom:610.656895px;}
.y161{bottom:611.745130px;}
.y131{bottom:611.781130px;}
.y1d8{bottom:613.838978px;}
.y11{bottom:625.715057px;}
.y1d7{bottom:627.338978px;}
.yb9{bottom:628.620895px;}
.y8e{bottom:628.628095px;}
.y58{bottom:628.649695px;}
.y160{bottom:629.737930px;}
.y130{bottom:629.773930px;}
.y1d6{bottom:640.838978px;}
.y10{bottom:643.715057px;}
.ye3{bottom:646.620895px;}
.yb8{bottom:646.628095px;}
.y57{bottom:646.642495px;}
.y8c{bottom:646.649695px;}
.y12f{bottom:647.766730px;}
.y15f{bottom:647.802776px;}
.y8d{bottom:652.500916px;}
.y1d5{bottom:654.338978px;}
.yf{bottom:661.715057px;}
.yb7{bottom:664.620895px;}
.ye2{bottom:664.628095px;}
.y56{bottom:664.635295px;}
.y8b{bottom:664.642495px;}
.y12e{bottom:665.759530px;}
.y15e{bottom:665.795576px;}
.y1d4{bottom:667.838978px;}
.y193{bottom:672.342728px;}
.ye{bottom:679.715057px;}
.y1d3{bottom:681.338978px;}
.ye1{bottom:682.620895px;}
.y55{bottom:682.628095px;}
.y8a{bottom:682.635295px;}
.y12d{bottom:683.752330px;}
.y15d{bottom:683.788376px;}
.y1d2{bottom:694.838978px;}
.yd{bottom:697.715057px;}
.y192{bottom:699.342728px;}
.y54{bottom:700.620895px;}
.y89{bottom:700.628095px;}
.ye0{bottom:700.692941px;}
.y12c{bottom:701.745130px;}
.y15c{bottom:701.781176px;}
.y1d1{bottom:708.338978px;}
.y191{bottom:712.842728px;}
.yc{bottom:715.715057px;}
.y88{bottom:718.620895px;}
.y53{bottom:718.635295px;}
.yb6{bottom:718.642541px;}
.ydf{bottom:718.685741px;}
.y12b{bottom:719.737930px;}
.y15b{bottom:719.773976px;}
.y1d0{bottom:721.838978px;}
.y190{bottom:726.342728px;}
.yb{bottom:733.715057px;}
.y1cf{bottom:735.338978px;}
.y87{bottom:736.620895px;}
.y52{bottom:736.628095px;}
.yb5{bottom:736.635341px;}
.yde{bottom:736.678541px;}
.y12a{bottom:737.766776px;}
.y18f{bottom:739.842728px;}
.y1ce{bottom:748.838978px;}
.ya{bottom:751.715057px;}
.y18e{bottom:753.342728px;}
.y51{bottom:754.620895px;}
.yb4{bottom:754.628141px;}
.ydd{bottom:754.671341px;}
.y86{bottom:754.700141px;}
.y129{bottom:755.759576px;}
.y1cd{bottom:762.338978px;}
.y18d{bottom:766.842773px;}
.y9{bottom:769.715057px;}
.yb3{bottom:772.620941px;}
.y50{bottom:772.642541px;}
.ydc{bottom:772.664141px;}
.y85{bottom:772.692941px;}
.y128{bottom:773.752376px;}
.y1cc{bottom:775.838978px;}
.y18c{bottom:784.842773px;}
.y1cb{bottom:789.338978px;}
.yb2{bottom:790.628141px;}
.y4f{bottom:790.635341px;}
.ydb{bottom:790.656941px;}
.y84{bottom:790.685741px;}
.y127{bottom:791.745176px;}
.y8{bottom:792.215057px;}
.y18b{bottom:793.842773px;}
.y1ca{bottom:802.838978px;}
.y4e{bottom:808.628141px;}
.yda{bottom:808.649741px;}
.y83{bottom:808.678541px;}
.y126{bottom:809.737976px;}
.y1c9{bottom:816.338978px;}
.y18a{bottom:820.842773px;}
.y4d{bottom:826.620941px;}
.yd9{bottom:826.642541px;}
.y82{bottom:826.671341px;}
.y125{bottom:827.737976px;}
.y15a{bottom:827.809976px;}
.y1c8{bottom:829.838978px;}
.y189{bottom:834.342773px;}
.y1c7{bottom:843.338978px;}
.y4c{bottom:844.620941px;}
.yb1{bottom:844.635341px;}
.y81{bottom:844.664141px;}
.y124{bottom:845.745176px;}
.y159{bottom:845.802776px;}
.y1c6{bottom:856.838978px;}
.y188{bottom:861.342773px;}
.y4b{bottom:862.628141px;}
.y80{bottom:862.656941px;}
.y123{bottom:863.737976px;}
.y158{bottom:863.795576px;}
.y7{bottom:864.552612px;}
.y1c5{bottom:870.338978px;}
.y187{bottom:874.842773px;}
.y4a{bottom:880.620941px;}
.y7f{bottom:880.649741px;}
.y122{bottom:881.737976px;}
.y157{bottom:881.788376px;}
.y1c4{bottom:883.838978px;}
.y1c3{bottom:897.338978px;}
.y49{bottom:898.635341px;}
.y7e{bottom:898.642541px;}
.y121{bottom:899.745176px;}
.y156{bottom:899.781176px;}
.y6{bottom:900.577528px;}
.y186{bottom:901.842773px;}
.y1c2{bottom:910.838978px;}
.y185{bottom:915.342773px;}
.y48{bottom:916.628141px;}
.y7d{bottom:916.635341px;}
.y120{bottom:917.737976px;}
.y155{bottom:917.773976px;}
.y1c1{bottom:924.338978px;}
.y184{bottom:928.842773px;}
.y47{bottom:934.620941px;}
.y7c{bottom:934.628141px;}
.y11f{bottom:935.752376px;}
.y154{bottom:935.766776px;}
.y1c0{bottom:937.838978px;}
.y5{bottom:939.565528px;}
.y183{bottom:942.342773px;}
.y1bf{bottom:951.338978px;}
.y7b{bottom:952.620941px;}
.yd8{bottom:952.635341px;}
.y46{bottom:952.642541px;}
.y11e{bottom:953.745176px;}
.y153{bottom:953.759576px;}
.y182{bottom:955.842773px;}
.y1be{bottom:964.838978px;}
.yd7{bottom:970.628141px;}
.y45{bottom:970.635341px;}
.yb0{bottom:970.649741px;}
.y7a{bottom:970.649995px;}
.y11d{bottom:971.737976px;}
.y152{bottom:971.752376px;}
.y1bd{bottom:978.338978px;}
.y4{bottom:978.553528px;}
.y181{bottom:982.842773px;}
.yd6{bottom:988.620941px;}
.y44{bottom:988.628141px;}
.yaf{bottom:988.642541px;}
.y79{bottom:988.642795px;}
.y151{bottom:989.745176px;}
.y11c{bottom:989.759576px;}
.y1bc{bottom:991.838978px;}
.y1bb{bottom:1005.338978px;}
.y43{bottom:1006.620941px;}
.yd5{bottom:1006.628141px;}
.yae{bottom:1006.635341px;}
.y78{bottom:1006.635595px;}
.y150{bottom:1007.737976px;}
.y11b{bottom:1007.752376px;}
.y1ba{bottom:1018.838978px;}
.y180{bottom:1018.842773px;}
.yd4{bottom:1024.620941px;}
.y42{bottom:1024.628141px;}
.y77{bottom:1024.628395px;}
.y14f{bottom:1025.737976px;}
.y11a{bottom:1025.745176px;}
.y1b9{bottom:1032.338978px;}
.y17f{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y34{bottom:1035.750183px;}
.y41{bottom:1042.620941px;}
.y76{bottom:1042.621195px;}
.yd3{bottom:1042.628395px;}
.y119{bottom:1043.737976px;}
.y14e{bottom:1043.767053px;}
.y1b8{bottom:1045.838978px;}
.y17e{bottom:1045.842773px;}
.y35{bottom:1112.256042px;}
.y2{bottom:1112.297079px;}
.yab{bottom:1126.524628px;}
.y3f{bottom:1126.524719px;}
.yad{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.yac{bottom:1127.300079px;}
.y40{bottom:1127.304719px;}
.hd{height:27.072000px;}
.h10{height:27.814500px;}
.h12{height:32.339919px;}
.hb{height:37.086000px;}
.hf{height:39.735000px;}
.ha{height:41.538000px;}
.h17{height:42.384000px;}
.h1b{height:42.840000px;}
.h18{height:43.785000px;}
.h3{height:45.696000px;}
.h11{height:45.744000px;}
.h1a{height:45.814500px;}
.h16{height:46.704000px;}
.h2{height:47.232000px;}
.h15{height:47.472000px;}
.h8{height:52.980000px;}
.h19{height:53.709599px;}
.hc{height:55.860000px;}
.h9{height:58.380000px;}
.h7{height:61.120200px;}
.h13{height:62.564481px;}
.h14{height:62.592365px;}
.h6{height:67.194379px;}
.he{height:70.464000px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:193.666489px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.x9{left:97.034552px;}
.xc{left:107.539352px;}
.x4{left:270.817497px;}
.x5{left:457.092894px;}
.xa{left:469.091544px;}
.xd{left:479.588093px;}
.xb{left:501.054016px;}
.x7{left:614.101500px;}
.x6{left:694.929886px;}
.x8{left:753.380081px;}
@media print{
.v4{vertical-align:-20.906738pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:20.855538pt;}
.v2{vertical-align:23.466471pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.600000pt;}
.ls5{letter-spacing:-0.418133pt;}
.ls15{letter-spacing:-0.400000pt;}
.ls7{letter-spacing:-0.365867pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.ls12{letter-spacing:0.000063pt;}
.ls11{letter-spacing:0.000437pt;}
.lsf{letter-spacing:0.313600pt;}
.ls10{letter-spacing:0.365867pt;}
.lse{letter-spacing:0.470400pt;}
.lsa{letter-spacing:0.595791pt;}
.ls6{letter-spacing:0.627200pt;}
.ls8{letter-spacing:0.731733pt;}
.ls9{letter-spacing:0.736960pt;}
.lsd{letter-spacing:0.784000pt;}
.lsb{letter-spacing:0.789227pt;}
.lsc{letter-spacing:0.794441pt;}
.ls0{letter-spacing:4.853333pt;}
.ws27{word-spacing:-13.014400pt;}
.ws7{word-spacing:-12.909867pt;}
.ws25{word-spacing:-12.753067pt;}
.ws26{word-spacing:-12.596267pt;}
.ws6{word-spacing:-12.282667pt;}
.ws81{word-spacing:-11.916800pt;}
.ws2a{word-spacing:-11.864533pt;}
.ws5{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.wsed{word-spacing:-10.156800pt;}
.ws3{word-spacing:-9.600000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.993600pt;}
.ws29{word-spacing:-8.597867pt;}
.wsc6{word-spacing:-8.280000pt;}
.wsbb{word-spacing:-7.680000pt;}
.wse{word-spacing:-7.242667pt;}
.wsee{word-spacing:-7.200000pt;}
.ws8{word-spacing:-6.132000pt;}
.ws5e{word-spacing:-5.749333pt;}
.wsbc{word-spacing:-4.010667pt;}
.wsd{word-spacing:-2.240000pt;}
.ws44{word-spacing:-0.940800pt;}
.ws91{word-spacing:-0.888533pt;}
.ws31{word-spacing:-0.731733pt;}
.wsa{word-spacing:-0.693333pt;}
.wse6{word-spacing:-0.574933pt;}
.ws10{word-spacing:-0.418133pt;}
.wsa0{word-spacing:-0.261333pt;}
.ws8c{word-spacing:-0.209067pt;}
.ws28{word-spacing:-0.036587pt;}
.ws9{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.052267pt;}
.wsba{word-spacing:0.209067pt;}
.wsef{word-spacing:0.240000pt;}
.ws11{word-spacing:0.261333pt;}
.ws9d{word-spacing:0.313600pt;}
.wsf{word-spacing:0.418133pt;}
.ws64{word-spacing:0.470400pt;}
.ws4c{word-spacing:0.522667pt;}
.ws63{word-spacing:0.574933pt;}
.wsf0{word-spacing:0.600000pt;}
.ws6e{word-spacing:0.627200pt;}
.wsb{word-spacing:0.800000pt;}
.ws9c{word-spacing:0.836267pt;}
.ws15{word-spacing:0.888533pt;}
.ws4d{word-spacing:0.940800pt;}
.ws99{word-spacing:0.993067pt;}
.wsa1{word-spacing:1.045333pt;}
.wsaa{word-spacing:1.149867pt;}
.ws14{word-spacing:1.306667pt;}
.wsa2{word-spacing:1.411200pt;}
.ws4b{word-spacing:1.463467pt;}
.ws45{word-spacing:1.515733pt;}
.ws2c{word-spacing:1.620267pt;}
.wsa6{word-spacing:1.724800pt;}
.wsec{word-spacing:1.777067pt;}
.ws4e{word-spacing:1.829333pt;}
.ws49{word-spacing:1.881600pt;}
.wscc{word-spacing:1.986133pt;}
.wsdc{word-spacing:2.038400pt;}
.ws3f{word-spacing:2.142933pt;}
.ws92{word-spacing:2.195200pt;}
.ws37{word-spacing:2.299733pt;}
.wsc0{word-spacing:2.352000pt;}
.ws40{word-spacing:2.508800pt;}
.ws41{word-spacing:2.561067pt;}
.ws8d{word-spacing:2.770133pt;}
.wsaf{word-spacing:2.822400pt;}
.ws13{word-spacing:2.874667pt;}
.wsb6{word-spacing:2.926933pt;}
.wsc7{word-spacing:2.979200pt;}
.ws6a{word-spacing:3.083733pt;}
.ws5b{word-spacing:3.136000pt;}
.ws97{word-spacing:3.188267pt;}
.ws2d{word-spacing:3.292800pt;}
.wsb0{word-spacing:3.345067pt;}
.ws51{word-spacing:3.397333pt;}
.ws6b{word-spacing:3.449600pt;}
.ws20{word-spacing:3.501867pt;}
.ws98{word-spacing:3.554133pt;}
.ws21{word-spacing:3.710933pt;}
.ws50{word-spacing:3.763200pt;}
.wsbf{word-spacing:3.815467pt;}
.ws69{word-spacing:3.867733pt;}
.ws1f{word-spacing:3.972267pt;}
.ws1e{word-spacing:4.024533pt;}
.wsb7{word-spacing:4.129067pt;}
.wsda{word-spacing:4.338133pt;}
.ws2b{word-spacing:4.390400pt;}
.ws4f{word-spacing:4.494933pt;}
.wsb8{word-spacing:4.547200pt;}
.ws96{word-spacing:4.599467pt;}
.ws57{word-spacing:4.651733pt;}
.ws3b{word-spacing:4.756267pt;}
.ws86{word-spacing:4.913067pt;}
.ws8a{word-spacing:4.965333pt;}
.ws59{word-spacing:5.017600pt;}
.ws58{word-spacing:5.069867pt;}
.ws71{word-spacing:5.122133pt;}
.wsd0{word-spacing:5.278933pt;}
.wse4{word-spacing:5.331200pt;}
.wsc4{word-spacing:5.383467pt;}
.wsbd{word-spacing:5.435733pt;}
.ws67{word-spacing:5.488000pt;}
.ws35{word-spacing:5.540267pt;}
.ws30{word-spacing:5.592533pt;}
.ws7c{word-spacing:5.644800pt;}
.wsd1{word-spacing:5.697067pt;}
.ws62{word-spacing:5.749333pt;}
.wsc5{word-spacing:5.906133pt;}
.ws6f{word-spacing:6.010667pt;}
.ws7e{word-spacing:6.062933pt;}
.ws95{word-spacing:6.115200pt;}
.wsd9{word-spacing:6.167467pt;}
.ws66{word-spacing:6.272000pt;}
.ws87{word-spacing:6.324267pt;}
.ws33{word-spacing:6.428800pt;}
.ws22{word-spacing:6.533333pt;}
.wsd5{word-spacing:6.585600pt;}
.wsb4{word-spacing:6.637867pt;}
.wsad{word-spacing:6.690133pt;}
.wse0{word-spacing:6.742400pt;}
.wsce{word-spacing:6.846933pt;}
.wsc9{word-spacing:6.899200pt;}
.ws79{word-spacing:6.951467pt;}
.wsa7{word-spacing:7.003733pt;}
.wsdf{word-spacing:7.056000pt;}
.wsde{word-spacing:7.108267pt;}
.ws9f{word-spacing:7.160533pt;}
.ws23{word-spacing:7.265067pt;}
.ws3e{word-spacing:7.317333pt;}
.ws36{word-spacing:7.369600pt;}
.ws89{word-spacing:7.421867pt;}
.ws32{word-spacing:7.578667pt;}
.wsbe{word-spacing:7.683200pt;}
.wsc2{word-spacing:7.735467pt;}
.ws52{word-spacing:7.787733pt;}
.ws42{word-spacing:7.840000pt;}
.wsc8{word-spacing:7.944533pt;}
.ws4a{word-spacing:7.996800pt;}
.ws8b{word-spacing:8.049067pt;}
.ws12{word-spacing:8.101333pt;}
.ws5f{word-spacing:8.205867pt;}
.ws43{word-spacing:8.258133pt;}
.wsae{word-spacing:8.310400pt;}
.wsd2{word-spacing:8.362667pt;}
.ws47{word-spacing:8.414933pt;}
.ws90{word-spacing:8.467200pt;}
.ws7b{word-spacing:8.571733pt;}
.wsdb{word-spacing:8.624000pt;}
.ws73{word-spacing:8.676267pt;}
.ws5a{word-spacing:8.780800pt;}
.wsb2{word-spacing:8.833067pt;}
.ws18{word-spacing:8.885333pt;}
.wse3{word-spacing:8.937600pt;}
.ws48{word-spacing:8.989867pt;}
.ws75{word-spacing:9.042133pt;}
.ws74{word-spacing:9.094400pt;}
.ws19{word-spacing:9.303467pt;}
.wsd3{word-spacing:9.408000pt;}
.wsd4{word-spacing:9.460267pt;}
.ws8f{word-spacing:9.512533pt;}
.ws39{word-spacing:9.564800pt;}
.wseb{word-spacing:9.617067pt;}
.ws24{word-spacing:9.826133pt;}
.wsa5{word-spacing:9.878400pt;}
.ws16{word-spacing:9.930667pt;}
.ws38{word-spacing:10.035200pt;}
.ws72{word-spacing:10.192000pt;}
.ws1c{word-spacing:10.296533pt;}
.ws17{word-spacing:10.348800pt;}
.ws80{word-spacing:10.453333pt;}
.ws34{word-spacing:10.505600pt;}
.wsb3{word-spacing:10.557867pt;}
.wsd7{word-spacing:10.714667pt;}
.wsa9{word-spacing:10.766933pt;}
.ws60{word-spacing:10.871467pt;}
.wsb1{word-spacing:11.028267pt;}
.wsa8{word-spacing:11.185067pt;}
.ws68{word-spacing:11.237333pt;}
.ws5c{word-spacing:11.341867pt;}
.ws3a{word-spacing:11.394133pt;}
.wsea{word-spacing:11.655467pt;}
.ws56{word-spacing:11.760000pt;}
.wsab{word-spacing:11.864533pt;}
.wsac{word-spacing:11.916800pt;}
.ws65{word-spacing:11.969067pt;}
.ws1d{word-spacing:12.021333pt;}
.ws7f{word-spacing:12.125867pt;}
.wse5{word-spacing:12.178133pt;}
.ws9a{word-spacing:12.230400pt;}
.ws8e{word-spacing:12.282667pt;}
.wsb9{word-spacing:12.387200pt;}
.wscd{word-spacing:12.439467pt;}
.ws46{word-spacing:12.648533pt;}
.wsdd{word-spacing:12.700800pt;}
.ws83{word-spacing:12.753067pt;}
.wsd6{word-spacing:12.805333pt;}
.ws3d{word-spacing:12.962133pt;}
.wse9{word-spacing:13.014400pt;}
.ws2f{word-spacing:13.066667pt;}
.wsa4{word-spacing:13.118933pt;}
.ws84{word-spacing:13.223467pt;}
.ws1a{word-spacing:13.328000pt;}
.wsa3{word-spacing:13.589333pt;}
.ws1b{word-spacing:13.693867pt;}
.ws85{word-spacing:13.798400pt;}
.ws78{word-spacing:14.164267pt;}
.wsc3{word-spacing:14.216533pt;}
.wsd8{word-spacing:14.373333pt;}
.wse2{word-spacing:14.425600pt;}
.ws61{word-spacing:14.530133pt;}
.ws76{word-spacing:14.686933pt;}
.ws88{word-spacing:14.791467pt;}
.wsb5{word-spacing:14.948267pt;}
.wsc{word-spacing:14.986667pt;}
.ws82{word-spacing:15.418667pt;}
.wse7{word-spacing:15.627733pt;}
.wscf{word-spacing:15.889067pt;}
.ws7d{word-spacing:16.098133pt;}
.wscb{word-spacing:16.150400pt;}
.wsca{word-spacing:16.777600pt;}
.ws7a{word-spacing:17.352533pt;}
.ws3c{word-spacing:17.613867pt;}
.ws9e{word-spacing:17.666133pt;}
.ws93{word-spacing:18.084267pt;}
.ws6d{word-spacing:18.345600pt;}
.ws53{word-spacing:18.502400pt;}
.ws70{word-spacing:19.181867pt;}
.ws54{word-spacing:19.809067pt;}
.ws5d{word-spacing:20.070400pt;}
.ws94{word-spacing:20.488533pt;}
.ws77{word-spacing:20.854400pt;}
.wsc1{word-spacing:21.742933pt;}
.ws55{word-spacing:22.631467pt;}
.ws6c{word-spacing:24.460800pt;}
.wse8{word-spacing:26.028800pt;}
.ws2e{word-spacing:30.419200pt;}
.wse1{word-spacing:31.673600pt;}
._d{margin-left:-26.200539pt;}
._15{margin-left:-19.652284pt;}
._14{margin-left:-18.136533pt;}
._19{margin-left:-16.117333pt;}
._4{margin-left:-14.359467pt;}
._17{margin-left:-12.094933pt;}
._18{margin-left:-7.526411pt;}
._a{margin-left:-5.728000pt;}
._5{margin-left:-4.604587pt;}
._3{margin-left:-3.456000pt;}
._b{margin-left:-2.462933pt;}
._1{margin-left:-1.540267pt;}
._0{width:1.024000pt;}
._2{width:2.035200pt;}
._1b{width:2.994112pt;}
._8{width:3.975457pt;}
._1c{width:4.965328pt;}
._9{width:5.862380pt;}
._13{width:7.720640pt;}
._7{width:8.827093pt;}
._6{width:10.391467pt;}
._10{width:11.880640pt;}
._12{width:13.321600pt;}
._f{width:14.530133pt;}
._16{width:15.592645pt;}
._1a{width:17.576854pt;}
._11{width:19.181867pt;}
._c{width:22.317867pt;}
._e{width:26.556258pt;}
._1d{width:39.456000pt;}
.fsb{font-size:28.000000pt;}
.fsc{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:85.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:5.781657pt;}
.y21{bottom:70.229599pt;}
.y20{bottom:80.897599pt;}
.y1f{bottom:91.565599pt;}
.yfc{bottom:92.818003pt;}
.yaa{bottom:94.774129pt;}
.y75{bottom:94.780529pt;}
.yd2{bottom:94.786929pt;}
.y14d{bottom:95.799069pt;}
.y109{bottom:102.224396pt;}
.y1e{bottom:102.233599pt;}
.y116{bottom:102.302796pt;}
.yfb{bottom:106.151337pt;}
.y74{bottom:110.774129pt;}
.ya9{bottom:110.780529pt;}
.y14c{bottom:111.792669pt;}
.y1d{bottom:112.901599pt;}
.y1b7{bottom:116.304647pt;}
.y1fa{bottom:117.638000pt;}
.y108{bottom:118.256406pt;}
.y115{bottom:118.296396pt;}
.yfa{bottom:119.484670pt;}
.y17d{bottom:119.767049pt;}
.y1c{bottom:123.569599pt;}
.ya8{bottom:126.774129pt;}
.y73{bottom:126.780529pt;}
.yf8{bottom:126.799729pt;}
.y14b{bottom:127.786269pt;}
.y1b6{bottom:128.304647pt;}
.y1f9{bottom:129.638000pt;}
.y17c{bottom:131.767049pt;}
.yf9{bottom:132.818003pt;}
.y1b{bottom:134.237599pt;}
.y107{bottom:134.250006pt;}
.y114{bottom:134.289996pt;}
.y1b5{bottom:140.304647pt;}
.y1f8{bottom:141.638000pt;}
.y72{bottom:142.774129pt;}
.yd1{bottom:142.780529pt;}
.yf7{bottom:142.793329pt;}
.y17b{bottom:143.767049pt;}
.y14a{bottom:143.779869pt;}
.y1a{bottom:144.905599pt;}
.y106{bottom:150.243606pt;}
.y113{bottom:150.283596pt;}
.y1b4{bottom:152.304647pt;}
.y17a{bottom:155.767049pt;}
.yd0{bottom:158.774129pt;}
.y71{bottom:158.786929pt;}
.ya7{bottom:158.882929pt;}
.y149{bottom:159.773469pt;}
.y1b3{bottom:164.304647pt;}
.y105{bottom:166.237206pt;}
.y112{bottom:166.277196pt;}
.y179{bottom:167.767049pt;}
.y1f7{bottom:173.634647pt;}
.y70{bottom:174.780529pt;}
.ycf{bottom:174.799729pt;}
.ya6{bottom:174.876529pt;}
.y148{bottom:175.767069pt;}
.y1b2{bottom:176.304647pt;}
.y3e{bottom:178.572266pt;}
.y178{bottom:179.767049pt;}
.y104{bottom:182.230806pt;}
.y111{bottom:182.270796pt;}
.y1f6{bottom:185.634647pt;}
.y33{bottom:186.260530pt;}
.y1b1{bottom:188.304647pt;}
.y3d{bottom:190.572266pt;}
.y6f{bottom:190.774129pt;}
.yce{bottom:190.793329pt;}
.ya5{bottom:190.870129pt;}
.y147{bottom:191.792669pt;}
.y1f5{bottom:197.634647pt;}
.y103{bottom:198.224406pt;}
.y110{bottom:198.264396pt;}
.y1b0{bottom:200.304647pt;}
.y32{bottom:202.254130pt;}
.y177{bottom:203.767049pt;}
.y3c{bottom:206.572266pt;}
.ycd{bottom:206.786929pt;}
.y6e{bottom:206.793329pt;}
.yf6{bottom:206.799729pt;}
.ya4{bottom:206.863729pt;}
.y146{bottom:207.786269pt;}
.y1f4{bottom:209.634647pt;}
.y1af{bottom:212.304647pt;}
.y102{bottom:214.243464pt;}
.y10f{bottom:214.257996pt;}
.y3b{bottom:214.572266pt;}
.y176{bottom:215.767049pt;}
.y31{bottom:218.286130pt;}
.y1f3{bottom:221.634647pt;}
.ycc{bottom:222.780529pt;}
.y6d{bottom:222.786929pt;}
.yf5{bottom:222.793329pt;}
.ya3{bottom:222.857329pt;}
.y145{bottom:223.779869pt;}
.y1ae{bottom:224.304647pt;}
.y175{bottom:227.767049pt;}
.y101{bottom:230.237064pt;}
.y10e{bottom:230.251596pt;}
.y3a{bottom:230.572266pt;}
.y1f2{bottom:233.634647pt;}
.y30{bottom:234.279730pt;}
.y1ad{bottom:236.304647pt;}
.y39{bottom:238.572266pt;}
.ycb{bottom:238.774129pt;}
.y6c{bottom:238.780529pt;}
.yf4{bottom:238.786929pt;}
.ya2{bottom:238.850929pt;}
.y174{bottom:239.767049pt;}
.y144{bottom:239.773469pt;}
.y1f1{bottom:245.634647pt;}
.y100{bottom:246.230664pt;}
.y10d{bottom:246.245196pt;}
.y1ac{bottom:248.304647pt;}
.y2f{bottom:250.273330pt;}
.y173{bottom:251.767049pt;}
.y38{bottom:254.572266pt;}
.y6b{bottom:254.774129pt;}
.yf3{bottom:254.780529pt;}
.ya1{bottom:254.844529pt;}
.y143{bottom:255.767069pt;}
.y1f0{bottom:257.634647pt;}
.y1ab{bottom:260.304647pt;}
.yff{bottom:262.224264pt;}
.y10c{bottom:262.238796pt;}
.y37{bottom:262.572266pt;}
.y172{bottom:263.767049pt;}
.y2e{bottom:266.266930pt;}
.y1ef{bottom:269.634647pt;}
.yf2{bottom:270.774129pt;}
.yca{bottom:270.818929pt;}
.ya0{bottom:270.838129pt;}
.y6a{bottom:270.857329pt;}
.y142{bottom:271.773469pt;}
.y1aa{bottom:272.304647pt;}
.y171{bottom:275.767049pt;}
.yfe{bottom:278.230664pt;}
.y10b{bottom:278.232396pt;}
.y1ee{bottom:281.634647pt;}
.y2d{bottom:282.260530pt;}
.y1a9{bottom:284.304647pt;}
.yc9{bottom:286.812529pt;}
.y9f{bottom:286.831729pt;}
.yf1{bottom:286.838129pt;}
.y69{bottom:286.850929pt;}
.y170{bottom:287.767049pt;}
.y141{bottom:287.767069pt;}
.y1ed{bottom:293.634647pt;}
.yfd{bottom:294.224264pt;}
.y10a{bottom:294.225996pt;}
.y1a8{bottom:296.304647pt;}
.y27{bottom:298.254130pt;}
.yc8{bottom:302.806129pt;}
.y9e{bottom:302.825329pt;}
.yf0{bottom:302.831729pt;}
.y68{bottom:302.844529pt;}
.y140{bottom:303.843849pt;}
.y1ec{bottom:305.634647pt;}
.y1a7{bottom:308.304647pt;}
.y16f{bottom:311.767049pt;}
.y2c{bottom:314.260530pt;}
.y26{bottom:314.266950pt;}
.y1eb{bottom:317.634647pt;}
.yc7{bottom:318.799729pt;}
.y9d{bottom:318.818929pt;}
.yef{bottom:318.825329pt;}
.y67{bottom:318.838129pt;}
.y13f{bottom:319.837449pt;}
.y1a6{bottom:320.304647pt;}
.y16e{bottom:323.767049pt;}
.y1ea{bottom:329.634647pt;}
.y2b{bottom:330.254130pt;}
.y25{bottom:330.260550pt;}
.y1a5{bottom:332.304647pt;}
.yc6{bottom:334.793329pt;}
.y9c{bottom:334.812529pt;}
.yee{bottom:334.818929pt;}
.y66{bottom:334.831729pt;}
.y16d{bottom:335.767049pt;}
.y13e{bottom:335.831049pt;}
.y118{bottom:339.644653pt;}
.y1e9{bottom:341.634647pt;}
.y1a4{bottom:344.304647pt;}
.y24{bottom:346.254150pt;}
.y2a{bottom:346.261063pt;}
.y16c{bottom:347.767049pt;}
.yc5{bottom:350.786929pt;}
.y9b{bottom:350.806129pt;}
.yed{bottom:350.812529pt;}
.y65{bottom:350.825329pt;}
.y13d{bottom:351.824649pt;}
.y117{bottom:352.977987pt;}
.y1e8{bottom:353.634647pt;}
.y1a3{bottom:356.304647pt;}
.y16b{bottom:359.767049pt;}
.y29{bottom:362.254663pt;}
.y23{bottom:362.260550pt;}
.y1e7{bottom:365.634647pt;}
.yc4{bottom:366.780529pt;}
.y9a{bottom:366.799729pt;}
.yec{bottom:366.806129pt;}
.y64{bottom:366.818929pt;}
.y13c{bottom:367.818249pt;}
.y1a2{bottom:368.304647pt;}
.y1e6{bottom:377.634647pt;}
.y28{bottom:378.248263pt;}
.y22{bottom:378.254150pt;}
.y1a1{bottom:380.304647pt;}
.yc3{bottom:382.774129pt;}
.y99{bottom:382.793329pt;}
.yeb{bottom:382.799729pt;}
.y63{bottom:382.812529pt;}
.y16a{bottom:383.767049pt;}
.y13b{bottom:383.811849pt;}
.y1e5{bottom:389.634647pt;}
.y1a0{bottom:392.304647pt;}
.yc2{bottom:398.780529pt;}
.y98{bottom:398.786929pt;}
.yea{bottom:398.793329pt;}
.y62{bottom:398.806129pt;}
.y169{bottom:399.786249pt;}
.y13a{bottom:399.805449pt;}
.y1e4{bottom:401.634647pt;}
.y19f{bottom:404.304647pt;}
.y1e3{bottom:413.634647pt;}
.yc1{bottom:414.774129pt;}
.y97{bottom:414.780529pt;}
.ye9{bottom:414.786929pt;}
.y61{bottom:414.799729pt;}
.y168{bottom:415.779849pt;}
.y139{bottom:415.799049pt;}
.y19e{bottom:416.304647pt;}
.y19{bottom:424.191162pt;}
.y1e2{bottom:425.634647pt;}
.y19d{bottom:428.304647pt;}
.y96{bottom:430.774129pt;}
.ye8{bottom:430.780529pt;}
.y60{bottom:430.793329pt;}
.y167{bottom:431.773449pt;}
.y138{bottom:431.792649pt;}
.y1e1{bottom:437.634647pt;}
.y18{bottom:440.191162pt;}
.y19c{bottom:440.304647pt;}
.ye7{bottom:446.774129pt;}
.yc0{bottom:446.780529pt;}
.y5f{bottom:446.786929pt;}
.y95{bottom:446.812529pt;}
.y166{bottom:447.767049pt;}
.y137{bottom:447.786249pt;}
.y1e0{bottom:449.634647pt;}
.y19b{bottom:452.304647pt;}
.y17{bottom:460.191162pt;}
.y1df{bottom:461.634647pt;}
.ybf{bottom:462.774129pt;}
.y5e{bottom:462.780529pt;}
.y94{bottom:462.806129pt;}
.y136{bottom:463.779849pt;}
.y165{bottom:463.786249pt;}
.y19a{bottom:464.304647pt;}
.y1de{bottom:473.634647pt;}
.y16{bottom:476.191162pt;}
.y199{bottom:476.304647pt;}
.y5d{bottom:478.774129pt;}
.ybe{bottom:478.793329pt;}
.y93{bottom:478.799729pt;}
.y135{bottom:479.773449pt;}
.y164{bottom:479.779849pt;}
.y1dd{bottom:485.634647pt;}
.y198{bottom:488.304647pt;}
.y15{bottom:492.191162pt;}
.y5c{bottom:494.774129pt;}
.ybd{bottom:494.786929pt;}
.y92{bottom:494.793329pt;}
.ye6{bottom:494.806129pt;}
.y134{bottom:495.767049pt;}
.y163{bottom:495.773449pt;}
.y1dc{bottom:497.634647pt;}
.y197{bottom:500.304647pt;}
.y14{bottom:508.191162pt;}
.y1db{bottom:509.634647pt;}
.ybc{bottom:510.780529pt;}
.y91{bottom:510.786929pt;}
.ye5{bottom:510.799729pt;}
.y5b{bottom:510.818929pt;}
.y133{bottom:511.767049pt;}
.y196{bottom:512.304647pt;}
.y1da{bottom:521.634647pt;}
.y13{bottom:524.191162pt;}
.y195{bottom:524.304647pt;}
.ybb{bottom:526.774129pt;}
.y90{bottom:526.780529pt;}
.ye4{bottom:526.793329pt;}
.y5a{bottom:526.812529pt;}
.y162{bottom:527.779849pt;}
.y132{bottom:527.811849pt;}
.y1d9{bottom:533.634647pt;}
.y194{bottom:536.304647pt;}
.y12{bottom:540.191162pt;}
.yba{bottom:542.780529pt;}
.y8f{bottom:542.786929pt;}
.y59{bottom:542.806129pt;}
.y161{bottom:543.773449pt;}
.y131{bottom:543.805449pt;}
.y1d8{bottom:545.634647pt;}
.y11{bottom:556.191162pt;}
.y1d7{bottom:557.634647pt;}
.yb9{bottom:558.774129pt;}
.y8e{bottom:558.780529pt;}
.y58{bottom:558.799729pt;}
.y160{bottom:559.767049pt;}
.y130{bottom:559.799049pt;}
.y1d6{bottom:569.634647pt;}
.y10{bottom:572.191162pt;}
.ye3{bottom:574.774129pt;}
.yb8{bottom:574.780529pt;}
.y57{bottom:574.793329pt;}
.y8c{bottom:574.799729pt;}
.y12f{bottom:575.792649pt;}
.y15f{bottom:575.824690pt;}
.y8d{bottom:580.000814pt;}
.y1d5{bottom:581.634647pt;}
.yf{bottom:588.191162pt;}
.yb7{bottom:590.774129pt;}
.ye2{bottom:590.780529pt;}
.y56{bottom:590.786929pt;}
.y8b{bottom:590.793329pt;}
.y12e{bottom:591.786249pt;}
.y15e{bottom:591.818290pt;}
.y1d4{bottom:593.634647pt;}
.y193{bottom:597.637980pt;}
.ye{bottom:604.191162pt;}
.y1d3{bottom:605.634647pt;}
.ye1{bottom:606.774129pt;}
.y55{bottom:606.780529pt;}
.y8a{bottom:606.786929pt;}
.y12d{bottom:607.779849pt;}
.y15d{bottom:607.811890pt;}
.y1d2{bottom:617.634647pt;}
.yd{bottom:620.191162pt;}
.y192{bottom:621.637980pt;}
.y54{bottom:622.774129pt;}
.y89{bottom:622.780529pt;}
.ye0{bottom:622.838170pt;}
.y12c{bottom:623.773449pt;}
.y15c{bottom:623.805490pt;}
.y1d1{bottom:629.634647pt;}
.y191{bottom:633.637980pt;}
.yc{bottom:636.191162pt;}
.y88{bottom:638.774129pt;}
.y53{bottom:638.786929pt;}
.yb6{bottom:638.793370pt;}
.ydf{bottom:638.831770pt;}
.y12b{bottom:639.767049pt;}
.y15b{bottom:639.799090pt;}
.y1d0{bottom:641.634647pt;}
.y190{bottom:645.637980pt;}
.yb{bottom:652.191162pt;}
.y1cf{bottom:653.634647pt;}
.y87{bottom:654.774129pt;}
.y52{bottom:654.780529pt;}
.yb5{bottom:654.786970pt;}
.yde{bottom:654.825370pt;}
.y12a{bottom:655.792690pt;}
.y18f{bottom:657.637980pt;}
.y1ce{bottom:665.634647pt;}
.ya{bottom:668.191162pt;}
.y18e{bottom:669.637980pt;}
.y51{bottom:670.774129pt;}
.yb4{bottom:670.780570pt;}
.ydd{bottom:670.818970pt;}
.y86{bottom:670.844570pt;}
.y129{bottom:671.786290pt;}
.y1cd{bottom:677.634647pt;}
.y18d{bottom:681.638021pt;}
.y9{bottom:684.191162pt;}
.yb3{bottom:686.774170pt;}
.y50{bottom:686.793370pt;}
.ydc{bottom:686.812570pt;}
.y85{bottom:686.838170pt;}
.y128{bottom:687.779890pt;}
.y1cc{bottom:689.634647pt;}
.y18c{bottom:697.638021pt;}
.y1cb{bottom:701.634647pt;}
.yb2{bottom:702.780570pt;}
.y4f{bottom:702.786970pt;}
.ydb{bottom:702.806170pt;}
.y84{bottom:702.831770pt;}
.y127{bottom:703.773490pt;}
.y8{bottom:704.191162pt;}
.y18b{bottom:705.638021pt;}
.y1ca{bottom:713.634647pt;}
.y4e{bottom:718.780570pt;}
.yda{bottom:718.799770pt;}
.y83{bottom:718.825370pt;}
.y126{bottom:719.767090pt;}
.y1c9{bottom:725.634647pt;}
.y18a{bottom:729.638021pt;}
.y4d{bottom:734.774170pt;}
.yd9{bottom:734.793370pt;}
.y82{bottom:734.818970pt;}
.y125{bottom:735.767090pt;}
.y15a{bottom:735.831090pt;}
.y1c8{bottom:737.634647pt;}
.y189{bottom:741.638021pt;}
.y1c7{bottom:749.634647pt;}
.y4c{bottom:750.774170pt;}
.yb1{bottom:750.786970pt;}
.y81{bottom:750.812570pt;}
.y124{bottom:751.773490pt;}
.y159{bottom:751.824690pt;}
.y1c6{bottom:761.634647pt;}
.y188{bottom:765.638021pt;}
.y4b{bottom:766.780570pt;}
.y80{bottom:766.806170pt;}
.y123{bottom:767.767090pt;}
.y158{bottom:767.818290pt;}
.y7{bottom:768.491211pt;}
.y1c5{bottom:773.634647pt;}
.y187{bottom:777.638021pt;}
.y4a{bottom:782.774170pt;}
.y7f{bottom:782.799770pt;}
.y122{bottom:783.767090pt;}
.y157{bottom:783.811890pt;}
.y1c4{bottom:785.634647pt;}
.y1c3{bottom:797.634647pt;}
.y49{bottom:798.786970pt;}
.y7e{bottom:798.793370pt;}
.y121{bottom:799.773490pt;}
.y156{bottom:799.805490pt;}
.y6{bottom:800.513358pt;}
.y186{bottom:801.638021pt;}
.y1c2{bottom:809.634647pt;}
.y185{bottom:813.638021pt;}
.y48{bottom:814.780570pt;}
.y7d{bottom:814.786970pt;}
.y120{bottom:815.767090pt;}
.y155{bottom:815.799090pt;}
.y1c1{bottom:821.634647pt;}
.y184{bottom:825.638021pt;}
.y47{bottom:830.774170pt;}
.y7c{bottom:830.780570pt;}
.y11f{bottom:831.779890pt;}
.y154{bottom:831.792690pt;}
.y1c0{bottom:833.634647pt;}
.y5{bottom:835.169358pt;}
.y183{bottom:837.638021pt;}
.y1bf{bottom:845.634647pt;}
.y7b{bottom:846.774170pt;}
.yd8{bottom:846.786970pt;}
.y46{bottom:846.793370pt;}
.y11e{bottom:847.773490pt;}
.y153{bottom:847.786290pt;}
.y182{bottom:849.638021pt;}
.y1be{bottom:857.634647pt;}
.yd7{bottom:862.780570pt;}
.y45{bottom:862.786970pt;}
.yb0{bottom:862.799770pt;}
.y7a{bottom:862.799996pt;}
.y11d{bottom:863.767090pt;}
.y152{bottom:863.779890pt;}
.y1bd{bottom:869.634647pt;}
.y4{bottom:869.825358pt;}
.y181{bottom:873.638021pt;}
.yd6{bottom:878.774170pt;}
.y44{bottom:878.780570pt;}
.yaf{bottom:878.793370pt;}
.y79{bottom:878.793596pt;}
.y151{bottom:879.773490pt;}
.y11c{bottom:879.786290pt;}
.y1bc{bottom:881.634647pt;}
.y1bb{bottom:893.634647pt;}
.y43{bottom:894.774170pt;}
.yd5{bottom:894.780570pt;}
.yae{bottom:894.786970pt;}
.y78{bottom:894.787196pt;}
.y150{bottom:895.767090pt;}
.y11b{bottom:895.779890pt;}
.y1ba{bottom:905.634647pt;}
.y180{bottom:905.638021pt;}
.yd4{bottom:910.774170pt;}
.y42{bottom:910.780570pt;}
.y77{bottom:910.780796pt;}
.y14f{bottom:911.767090pt;}
.y11a{bottom:911.773490pt;}
.y1b9{bottom:917.634647pt;}
.y17f{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y34{bottom:920.666829pt;}
.y41{bottom:926.774170pt;}
.y76{bottom:926.774396pt;}
.yd3{bottom:926.780796pt;}
.y119{bottom:927.767090pt;}
.y14e{bottom:927.792936pt;}
.y1b8{bottom:929.634647pt;}
.y17e{bottom:929.638021pt;}
.y35{bottom:988.672038pt;}
.y2{bottom:988.708515pt;}
.yab{bottom:1001.355225pt;}
.y3f{bottom:1001.355306pt;}
.yad{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.yac{bottom:1002.044515pt;}
.y40{bottom:1002.048639pt;}
.hd{height:24.064000pt;}
.h10{height:24.724000pt;}
.h12{height:28.746595pt;}
.hb{height:32.965333pt;}
.hf{height:35.320000pt;}
.ha{height:36.922667pt;}
.h17{height:37.674667pt;}
.h1b{height:38.080000pt;}
.h18{height:38.920000pt;}
.h3{height:40.618667pt;}
.h11{height:40.661333pt;}
.h1a{height:40.724000pt;}
.h16{height:41.514667pt;}
.h2{height:41.984000pt;}
.h15{height:42.197333pt;}
.h8{height:47.093333pt;}
.h19{height:47.741866pt;}
.hc{height:49.653333pt;}
.h9{height:51.893333pt;}
.h7{height:54.329067pt;}
.h13{height:55.612872pt;}
.h14{height:55.637658pt;}
.h6{height:59.728337pt;}
.he{height:62.634667pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:172.147990pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.x9{left:86.252935pt;}
.xc{left:95.590535pt;}
.x4{left:240.726664pt;}
.x5{left:406.304795pt;}
.xa{left:416.970262pt;}
.xd{left:426.300527pt;}
.xb{left:445.381348pt;}
.x7{left:545.868000pt;}
.x6{left:617.715454pt;}
.x8{left:669.671183pt;}
}




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