
    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_6f4b53c6a95ee61fdbd87e57.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_3c8b763f6e206d4a64ade45f.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_246f5a058c915cf898d3f4a9.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_0a290f4077ea4a695c8018b3.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_e436b5bab317f5fc2ad83a95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff6acc915df14cecaf82fdf1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e17c9acc04fb07c69aca2315.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8aadcabe505cbc6371683925.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_0967dda38dbf555f77a3a72c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740000;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_ba241c8f31ccd9c117f3ce0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948043;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_f38cb86c733d8b5e37a48c1a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_c4f601f67ba09a3f528ee3c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853000;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_6ba668d61dd5743672692ff9.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ee8201f7b479f24365070fa3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_effaf5a9463b54a74662f404.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4c70c6465e45dc991c2257f8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f4d5dc3a0ceff2c91d4e2f41.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v6{vertical-align:3.402000px;}
.v7{vertical-align:18.000000px;}
.v4{vertical-align:23.433497px;}
.v2{vertical-align:26.399780px;}
.v5{vertical-align:54.000000px;}
.ls3{letter-spacing:-1.050000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000002px;}
.lsa{letter-spacing:0.150130px;}
.lsb{letter-spacing:0.225194px;}
.ls5{letter-spacing:0.282336px;}
.ls4{letter-spacing:0.357619px;}
.ls8{letter-spacing:0.823192px;}
.ls6{letter-spacing:0.823200px;}
.ls7{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.125972px;}
.ls9{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-30.528000px;}
.ws5{word-spacing:-13.818000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.wsdc{word-spacing:-12.310630px;}
.wsdb{word-spacing:-11.559982px;}
.wsda{word-spacing:-10.659204px;}
.wsd9{word-spacing:-10.584140px;}
.ws9d{word-spacing:-10.512000px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws8b{word-spacing:-9.936000px;}
.ws46{word-spacing:-9.672600px;}
.wsac{word-spacing:-9.315000px;}
.ws8{word-spacing:-8.148000px;}
.wsdd{word-spacing:-6.898500px;}
.ws55{word-spacing:-6.468000px;}
.wsde{word-spacing:-1.876621px;}
.ws97{word-spacing:-1.234800px;}
.ws59{word-spacing:-0.940800px;}
.wsca{word-spacing:-0.823200px;}
.ws7{word-spacing:-0.780000px;}
.wsb0{word-spacing:-0.588000px;}
.ws24{word-spacing:-0.470400px;}
.ws78{word-spacing:-0.411600px;}
.ws1c{word-spacing:-0.294000px;}
.ws31{word-spacing:-0.117600px;}
.ws15{word-spacing:-0.058800px;}
.ws5c{word-spacing:-0.035292px;}
.ws6{word-spacing:0.000000px;}
.ws99{word-spacing:0.235200px;}
.ws5a{word-spacing:0.411600px;}
.ws20{word-spacing:0.470400px;}
.ws66{word-spacing:0.646800px;}
.ws26{word-spacing:0.764400px;}
.wsb2{word-spacing:0.823200px;}
.ws18{word-spacing:0.882000px;}
.ws73{word-spacing:0.940800px;}
.ws98{word-spacing:0.999600px;}
.wsd0{word-spacing:1.058400px;}
.ws4b{word-spacing:1.117200px;}
.ws79{word-spacing:1.176000px;}
.ws72{word-spacing:1.234800px;}
.ws75{word-spacing:1.293600px;}
.ws90{word-spacing:1.352400px;}
.ws7d{word-spacing:1.411200px;}
.wsd3{word-spacing:1.470000px;}
.ws8f{word-spacing:1.528800px;}
.wsa{word-spacing:1.646400px;}
.ws1b{word-spacing:1.705200px;}
.ws81{word-spacing:1.881600px;}
.ws65{word-spacing:1.940400px;}
.wsbd{word-spacing:1.999200px;}
.ws33{word-spacing:2.234400px;}
.ws6b{word-spacing:2.293200px;}
.ws17{word-spacing:2.410800px;}
.ws77{word-spacing:2.528400px;}
.ws9f{word-spacing:2.587200px;}
.ws8e{word-spacing:2.822400px;}
.ws62{word-spacing:2.881200px;}
.ws96{word-spacing:2.998800px;}
.ws68{word-spacing:3.116400px;}
.wsc5{word-spacing:3.234000px;}
.ws4e{word-spacing:3.292800px;}
.ws38{word-spacing:3.469200px;}
.ws21{word-spacing:3.528000px;}
.wsc1{word-spacing:3.704400px;}
.wsd2{word-spacing:3.763200px;}
.wsb9{word-spacing:3.939600px;}
.ws7c{word-spacing:3.998400px;}
.ws9e{word-spacing:4.174800px;}
.ws70{word-spacing:4.292400px;}
.ws25{word-spacing:4.351200px;}
.wsa7{word-spacing:4.410000px;}
.ws11{word-spacing:4.468800px;}
.ws6f{word-spacing:4.527600px;}
.ws4d{word-spacing:4.586400px;}
.wsb7{word-spacing:4.645200px;}
.ws9a{word-spacing:4.821600px;}
.ws4c{word-spacing:4.880400px;}
.ws82{word-spacing:4.998000px;}
.ws86{word-spacing:5.056800px;}
.ws83{word-spacing:5.115600px;}
.wsa9{word-spacing:5.174400px;}
.ws14{word-spacing:5.233200px;}
.ws28{word-spacing:5.292000px;}
.wsc7{word-spacing:5.350800px;}
.wsae{word-spacing:5.468400px;}
.wsb4{word-spacing:5.644800px;}
.wsf{word-spacing:5.703600px;}
.ws41{word-spacing:5.762400px;}
.wsaf{word-spacing:5.880000px;}
.ws4f{word-spacing:6.056400px;}
.ws48{word-spacing:6.115200px;}
.ws3b{word-spacing:6.174000px;}
.ws1a{word-spacing:6.291600px;}
.wsc6{word-spacing:6.350400px;}
.wsb8{word-spacing:6.409200px;}
.ws12{word-spacing:6.468000px;}
.ws80{word-spacing:6.585600px;}
.ws3f{word-spacing:6.644400px;}
.wsc8{word-spacing:6.703200px;}
.ws6a{word-spacing:6.762000px;}
.ws30{word-spacing:6.997200px;}
.ws44{word-spacing:7.056000px;}
.ws22{word-spacing:7.173600px;}
.ws23{word-spacing:7.232400px;}
.wscc{word-spacing:7.291200px;}
.wsa0{word-spacing:7.350000px;}
.ws76{word-spacing:7.467600px;}
.ws27{word-spacing:7.585200px;}
.ws19{word-spacing:7.644000px;}
.ws2f{word-spacing:7.820400px;}
.ws57{word-spacing:7.996800px;}
.wsb1{word-spacing:8.055600px;}
.wsad{word-spacing:8.114400px;}
.ws49{word-spacing:8.173200px;}
.wscd{word-spacing:8.290800px;}
.wscf{word-spacing:8.408400px;}
.wsd{word-spacing:8.526000px;}
.ws29{word-spacing:8.643600px;}
.wse{word-spacing:8.820000px;}
.ws67{word-spacing:8.878800px;}
.wsa3{word-spacing:8.937600px;}
.wsbf{word-spacing:8.996400px;}
.wsa6{word-spacing:9.114000px;}
.ws63{word-spacing:9.172800px;}
.wsa5{word-spacing:9.231600px;}
.wsa8{word-spacing:9.349200px;}
.ws91{word-spacing:9.408000px;}
.wsd4{word-spacing:9.584400px;}
.wsa4{word-spacing:9.643200px;}
.ws5d{word-spacing:9.702000px;}
.ws2e{word-spacing:9.878400px;}
.ws39{word-spacing:9.996000px;}
.wsaa{word-spacing:10.113600px;}
.wsd1{word-spacing:10.172400px;}
.wsb5{word-spacing:10.290000px;}
.ws61{word-spacing:10.348800px;}
.ws5f{word-spacing:10.466400px;}
.ws3e{word-spacing:10.584000px;}
.ws74{word-spacing:10.642800px;}
.ws34{word-spacing:10.760400px;}
.wsbb{word-spacing:10.878000px;}
.wsa1{word-spacing:11.054400px;}
.ws5e{word-spacing:11.113200px;}
.wsc{word-spacing:11.407200px;}
.wsd8{word-spacing:11.466000px;}
.wsc4{word-spacing:11.583600px;}
.ws87{word-spacing:11.701200px;}
.wsb{word-spacing:11.760000px;}
.ws42{word-spacing:11.818800px;}
.wsc2{word-spacing:11.995200px;}
.ws45{word-spacing:12.054000px;}
.ws3a{word-spacing:12.348000px;}
.ws50{word-spacing:12.465600px;}
.ws43{word-spacing:12.642000px;}
.ws7a{word-spacing:12.700800px;}
.ws7e{word-spacing:12.818400px;}
.wsce{word-spacing:12.877200px;}
.ws7f{word-spacing:13.053600px;}
.ws6d{word-spacing:13.112400px;}
.wsb6{word-spacing:13.171200px;}
.ws84{word-spacing:13.347600px;}
.ws94{word-spacing:13.406400px;}
.ws52{word-spacing:13.524000px;}
.ws9b{word-spacing:13.876800px;}
.wsd5{word-spacing:13.935600px;}
.ws35{word-spacing:14.053200px;}
.ws10{word-spacing:14.112000px;}
.ws6c{word-spacing:14.347200px;}
.ws88{word-spacing:14.935200px;}
.ws6e{word-spacing:15.229200px;}
.ws9c{word-spacing:15.582000px;}
.ws2b{word-spacing:15.640800px;}
.ws69{word-spacing:15.758400px;}
.ws60{word-spacing:15.934800px;}
.wsd6{word-spacing:16.111200px;}
.wsd7{word-spacing:16.170000px;}
.ws56{word-spacing:16.287600px;}
.wsbe{word-spacing:16.346400px;}
.wsba{word-spacing:16.581600px;}
.ws3c{word-spacing:16.699200px;}
.wsc0{word-spacing:16.758000px;}
.ws5b{word-spacing:17.234201px;}
.ws95{word-spacing:17.346000px;}
.wsb3{word-spacing:17.463600px;}
.wsc9{word-spacing:17.698800px;}
.ws3d{word-spacing:17.934000px;}
.ws47{word-spacing:18.051600px;}
.ws13{word-spacing:18.110400px;}
.ws9{word-spacing:18.345600px;}
.ws71{word-spacing:18.698400px;}
.wsc3{word-spacing:18.933600px;}
.ws93{word-spacing:19.639200px;}
.ws32{word-spacing:19.933200px;}
.ws58{word-spacing:20.168400px;}
.ws64{word-spacing:20.403600px;}
.ws53{word-spacing:20.638800px;}
.ws2a{word-spacing:20.756400px;}
.ws1e{word-spacing:21.285600px;}
.wsab{word-spacing:21.991200px;}
.ws1d{word-spacing:22.050000px;}
.ws16{word-spacing:22.814400px;}
.ws92{word-spacing:23.402400px;}
.wsbc{word-spacing:23.461200px;}
.ws2c{word-spacing:24.754800px;}
.ws2d{word-spacing:25.225200px;}
.ws54{word-spacing:25.284000px;}
.wscb{word-spacing:25.519200px;}
.ws36{word-spacing:27.400800px;}
.ws4a{word-spacing:27.518400px;}
.wsa2{word-spacing:29.223600px;}
.ws37{word-spacing:31.458000px;}
.ws40{word-spacing:32.457600px;}
.ws7b{word-spacing:35.103600px;}
.ws89{word-spacing:35.221200px;}
.ws1f{word-spacing:41.630400px;}
.ws51{word-spacing:50.626800px;}
.ws85{word-spacing:66.796800px;}
.ws8c{word-spacing:264.720000px;}
.ws8d{word-spacing:287.040000px;}
.ws8a{word-spacing:510.912000px;}
._e{margin-left:-32.371256px;}
._b{margin-left:-16.107680px;}
._29{margin-left:-13.392203px;}
._15{margin-left:-10.580439px;}
._a{margin-left:-7.298158px;}
._17{margin-left:-5.810038px;}
._d{margin-left:-4.704000px;}
._8{margin-left:-3.504078px;}
._2{margin-left:-2.270400px;}
._0{margin-left:-1.200000px;}
._5{width:1.290039px;}
._1{width:2.851200px;}
._3{width:4.435200px;}
._16{width:5.707152px;}
._9{width:7.126202px;}
._11{width:8.561760px;}
._14{width:9.856122px;}
._c{width:12.353880px;}
._12{width:13.436398px;}
._6{width:14.520000px;}
._7{width:16.320000px;}
._13{width:21.058722px;}
._2b{width:23.244000px;}
._f{width:25.254600px;}
._10{width:31.722600px;}
._4{width:38.126974px;}
._2a{width:45.204000px;}
._18{width:67.600761px;}
._1d{width:274.986039px;}
._22{width:278.784000px;}
._1b{width:297.797961px;}
._25{width:302.160000px;}
._26{width:305.045961px;}
._1c{width:322.512000px;}
._1f{width:327.840000px;}
._21{width:341.525961px;}
._24{width:381.947922px;}
._19{width:422.449759px;}
._28{width:594.101923px;}
._1e{width:617.328000px;}
._1a{width:632.880000px;}
._23{width:666.539922px;}
._20{width:695.952000px;}
._27{width:1386.548323px;}
.fc4{color:transparent;}
.fc3{color:rgb(78,78,77);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:14.074549px;}
.fsa{font-size:31.500000px;}
.fsf{font-size:35.292000px;}
.fs11{font-size:36.000000px;}
.fs13{font-size:37.532410px;}
.fs12{font-size:39.900000px;}
.fsc{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fse{font-size:44.702399px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fsb{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fsd{font-size:58.819800px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:0.120152px;}
.yd7{bottom:12.344994px;}
.yde{bottom:12.351002px;}
.yd9{bottom:18.851852px;}
.y24{bottom:81.133650px;}
.y23{bottom:93.135150px;}
.y1b3{bottom:99.461998px;}
.ye3{bottom:100.682103px;}
.yb9{bottom:100.683603px;}
.y19b{bottom:103.237953px;}
.y22{bottom:105.136650px;}
.y16d{bottom:107.773953px;}
.y112{bottom:108.694496px;}
.y7a{bottom:108.754498px;}
.yea{bottom:108.814648px;}
.y138{bottom:109.174496px;}
.y98{bottom:109.714497px;}
.y1b1{bottom:115.974000px;}
.y19a{bottom:116.737953px;}
.y21{bottom:117.138150px;}
.ye2{bottom:118.674903px;}
.yb8{bottom:118.676403px;}
.y111{bottom:123.694496px;}
.y79{bottom:123.754498px;}
.y97{bottom:124.714497px;}
.y16c{bottom:125.766753px;}
.y20{bottom:129.139650px;}
.y199{bottom:130.237953px;}
.y1af{bottom:133.764149px;}
.ye1{bottom:136.667703px;}
.yb7{bottom:136.669203px;}
.y110{bottom:138.694496px;}
.y96{bottom:139.714497px;}
.y1b0{bottom:139.914000px;}
.y1f{bottom:141.141150px;}
.y198{bottom:143.737953px;}
.y16b{bottom:143.759553px;}
.y1ac{bottom:151.773148px;}
.y1e{bottom:153.142650px;}
.ye0{bottom:154.660503px;}
.yb6{bottom:154.662003px;}
.y197{bottom:157.237953px;}
.y16a{bottom:161.752353px;}
.y1d{bottom:165.144150px;}
.yd6{bottom:167.412003px;}
.y1ae{bottom:167.479649px;}
.y1ad{bottom:168.058205px;}
.y1aa{bottom:168.927749px;}
.y196{bottom:170.737953px;}
.yb5{bottom:172.662003px;}
.ydb{bottom:176.502148px;}
.ydf{bottom:179.724003px;}
.y169{bottom:179.745153px;}
.yd8{bottom:179.756996px;}
.ydd{bottom:179.763004px;}
.y1b4{bottom:182.881943px;}
.y1a9{bottom:184.824749px;}
.y1ab{bottom:185.888248px;}
.yda{bottom:186.263855px;}
.y1a7{bottom:187.776139px;}
.yb4{bottom:190.676403px;}
.y168{bottom:197.737953px;}
.yd5{bottom:197.774391px;}
.y1a6{bottom:202.539139px;}
.y35{bottom:203.019150px;}
.y1a8{bottom:204.131400px;}
.y1a4{bottom:205.759204px;}
.yb3{bottom:208.669203px;}
.y195{bottom:215.737953px;}
.yd4{bottom:215.767191px;}
.y167{bottom:215.853130px;}
.y34{bottom:216.519150px;}
.y1a3{bottom:220.060204px;}
.y1a5{bottom:221.440041px;}
.y30{bottom:221.829308px;}
.y1a1{bottom:223.765945px;}
.yb2{bottom:226.662003px;}
.y194{bottom:233.737953px;}
.yd3{bottom:233.759991px;}
.y166{bottom:233.845930px;}
.y33{bottom:234.519150px;}
.y1a0{bottom:237.636445px;}
.y1a2{bottom:238.801346px;}
.y2f{bottom:239.822108px;}
.y19d{bottom:241.768497px;}
.y19f{bottom:241.773445px;}
.y32{bottom:243.519150px;}
.yb1{bottom:244.669203px;}
.yd2{bottom:251.752791px;}
.y193{bottom:251.795530px;}
.y165{bottom:251.838730px;}
.y19c{bottom:255.859497px;}
.y19e{bottom:256.813042px;}
.y2e{bottom:257.814908px;}
.yb0{bottom:262.662003px;}
.yd1{bottom:269.745591px;}
.y192{bottom:269.788330px;}
.y164{bottom:269.831530px;}
.y2d{bottom:275.807708px;}
.yaf{bottom:280.662003px;}
.y1b2{bottom:282.343941px;}
.yd0{bottom:287.738391px;}
.y191{bottom:287.781130px;}
.y163{bottom:287.824330px;}
.y28{bottom:292.992008px;}
.y2c{bottom:293.800508px;}
.yae{bottom:298.705203px;}
.ycf{bottom:305.731191px;}
.y190{bottom:305.773930px;}
.y162{bottom:305.817130px;}
.y27{bottom:310.984808px;}
.y2b{bottom:311.793308px;}
.yad{bottom:316.698003px;}
.yce{bottom:323.723991px;}
.y18f{bottom:323.766730px;}
.y161{bottom:323.809930px;}
.y26{bottom:328.977608px;}
.y2a{bottom:329.786108px;}
.yac{bottom:334.690803px;}
.ycd{bottom:341.731191px;}
.y18e{bottom:341.759530px;}
.y160{bottom:341.802730px;}
.y1dd{bottom:342.342728px;}
.y25{bottom:346.977608px;}
.y29{bottom:347.778908px;}
.yab{bottom:352.683603px;}
.y1dc{bottom:355.842728px;}
.ycc{bottom:359.723991px;}
.y18d{bottom:359.752330px;}
.y15f{bottom:359.795530px;}
.y20f{bottom:361.842750px;}
.y1db{bottom:369.342728px;}
.yaa{bottom:370.676403px;}
.y20e{bottom:375.342750px;}
.ycb{bottom:377.723991px;}
.y18c{bottom:377.745130px;}
.y15e{bottom:377.788330px;}
.y1da{bottom:382.842728px;}
.ya9{bottom:388.669203px;}
.y20d{bottom:388.842728px;}
.y18b{bottom:395.737930px;}
.y15d{bottom:395.781130px;}
.y1d9{bottom:396.342728px;}
.y1c{bottom:398.315094px;}
.ya8{bottom:406.662003px;}
.y15c{bottom:413.773930px;}
.y18a{bottom:413.788330px;}
.y1b{bottom:416.315094px;}
.yca{bottom:418.197019px;}
.ya7{bottom:424.676403px;}
.y20c{bottom:424.838978px;}
.y15b{bottom:431.766730px;}
.y189{bottom:431.781130px;}
.yc9{bottom:436.189819px;}
.y20b{bottom:438.338978px;}
.y1a{bottom:438.815094px;}
.ya6{bottom:442.669203px;}
.y15a{bottom:449.759530px;}
.y188{bottom:449.773930px;}
.y20a{bottom:451.838978px;}
.yc8{bottom:454.254619px;}
.y19{bottom:456.815094px;}
.ya5{bottom:460.662003px;}
.y209{bottom:465.338978px;}
.y1d8{bottom:465.342728px;}
.y58{bottom:466.620895px;}
.y78{bottom:466.642495px;}
.y159{bottom:467.752330px;}
.y187{bottom:467.766730px;}
.yc7{bottom:472.247419px;}
.y18{bottom:474.815094px;}
.ya4{bottom:478.676403px;}
.y208{bottom:478.838978px;}
.y95{bottom:484.574982px;}
.y57{bottom:484.620895px;}
.y77{bottom:484.635295px;}
.y158{bottom:485.745130px;}
.y186{bottom:485.759530px;}
.yc6{bottom:490.240219px;}
.y207{bottom:492.338978px;}
.y1d7{bottom:492.342728px;}
.y17{bottom:492.815094px;}
.ya3{bottom:496.669203px;}
.y94{bottom:499.574982px;}
.y76{bottom:502.628095px;}
.y56{bottom:502.642495px;}
.y157{bottom:503.737930px;}
.y185{bottom:503.752330px;}
.y206{bottom:505.838978px;}
.y1d6{bottom:505.842728px;}
.yc5{bottom:508.233019px;}
.y93{bottom:514.574982px;}
.ya2{bottom:514.662003px;}
.y16{bottom:515.315094px;}
.y205{bottom:519.338978px;}
.y1d5{bottom:519.342728px;}
.y75{bottom:520.620895px;}
.y55{bottom:520.635295px;}
.y156{bottom:521.737930px;}
.y184{bottom:521.745130px;}
.yc4{bottom:526.225819px;}
.ya1{bottom:532.662003px;}
.y204{bottom:532.838978px;}
.y1d4{bottom:532.842728px;}
.y15{bottom:533.315094px;}
.y54{bottom:538.628095px;}
.y74{bottom:538.642495px;}
.y183{bottom:539.737930px;}
.y155{bottom:539.759530px;}
.yc3{bottom:544.218619px;}
.y203{bottom:546.338978px;}
.y1d3{bottom:546.342728px;}
.y14{bottom:551.315094px;}
.ye9{bottom:553.767746px;}
.y53{bottom:556.620895px;}
.y73{bottom:556.635295px;}
.y154{bottom:557.752330px;}
.y202{bottom:559.838978px;}
.y1d2{bottom:559.842728px;}
.yc2{bottom:562.211419px;}
.yf6{bottom:564.627319px;}
.ye8{bottom:568.767746px;}
.y13{bottom:569.315094px;}
.y201{bottom:573.338978px;}
.y1d1{bottom:573.342728px;}
.y52{bottom:574.620895px;}
.y72{bottom:574.628095px;}
.y153{bottom:575.745130px;}
.yc1{bottom:580.204219px;}
.ya0{bottom:580.218619px;}
.y101{bottom:582.684919px;}
.yf5{bottom:582.699319px;}
.ye7{bottom:583.767746px;}
.y200{bottom:586.838978px;}
.y12{bottom:587.315094px;}
.y1d0{bottom:591.342728px;}
.y71{bottom:592.620895px;}
.y51{bottom:592.628095px;}
.y131{bottom:593.155780px;}
.y152{bottom:593.737930px;}
.y117{bottom:596.711419px;}
.yc0{bottom:598.197019px;}
.y9f{bottom:598.211419px;}
.y1ff{bottom:600.338978px;}
.y1cf{bottom:600.342773px;}
.y100{bottom:600.677719px;}
.yf4{bottom:600.692119px;}
.y11{bottom:605.315094px;}
.y50{bottom:610.620895px;}
.y70{bottom:610.642495px;}
.y130{bottom:611.148580px;}
.y182{bottom:611.766730px;}
.y151{bottom:611.788330px;}
.y1fe{bottom:613.838978px;}
.y116{bottom:614.704219px;}
.ybf{bottom:616.189819px;}
.y9e{bottom:616.204219px;}
.yff{bottom:618.670519px;}
.yf3{bottom:618.684919px;}
.y10{bottom:623.315094px;}
.y1fd{bottom:627.338978px;}
.y1ce{bottom:627.342773px;}
.y6f{bottom:628.635295px;}
.y4f{bottom:628.772141px;}
.y12f{bottom:629.141380px;}
.y181{bottom:629.759530px;}
.y150{bottom:629.781130px;}
.y115{bottom:632.697019px;}
.y9d{bottom:634.197019px;}
.ybe{bottom:634.211419px;}
.yfe{bottom:636.663319px;}
.yf2{bottom:636.677719px;}
.y1fc{bottom:640.838978px;}
.y1cd{bottom:640.842773px;}
.yf{bottom:641.315094px;}
.y6e{bottom:646.628095px;}
.y4e{bottom:646.764941px;}
.y12e{bottom:647.134180px;}
.y180{bottom:647.752330px;}
.y14f{bottom:647.773930px;}
.y114{bottom:650.689819px;}
.y9c{bottom:652.189819px;}
.ybd{bottom:652.204219px;}
.y1fb{bottom:654.338978px;}
.yfd{bottom:654.656119px;}
.yf1{bottom:654.670519px;}
.ye{bottom:663.815094px;}
.y6d{bottom:664.620895px;}
.y4d{bottom:664.757741px;}
.y12d{bottom:665.126980px;}
.y17f{bottom:665.745130px;}
.y14e{bottom:665.766730px;}
.y1fa{bottom:667.838978px;}
.y1cc{bottom:667.842773px;}
.y113{bottom:668.689819px;}
.ybc{bottom:670.197019px;}
.y9b{bottom:670.204219px;}
.yfc{bottom:672.648919px;}
.yf0{bottom:672.663319px;}
.y1f9{bottom:681.338978px;}
.y1cb{bottom:681.342773px;}
.yd{bottom:681.815094px;}
.y6c{bottom:682.628095px;}
.y4c{bottom:682.750541px;}
.y12c{bottom:683.119780px;}
.y17e{bottom:683.737930px;}
.y14d{bottom:683.759530px;}
.ybb{bottom:688.189819px;}
.y9a{bottom:688.197019px;}
.yfb{bottom:690.641719px;}
.yef{bottom:690.656119px;}
.y1f8{bottom:694.838978px;}
.y1ca{bottom:694.842773px;}
.yc{bottom:699.815094px;}
.y6b{bottom:700.620895px;}
.y4b{bottom:700.743341px;}
.y12b{bottom:701.112580px;}
.y14c{bottom:701.752330px;}
.y17d{bottom:701.766776px;}
.y99{bottom:706.189819px;}
.yba{bottom:706.206022px;}
.y1f7{bottom:708.338978px;}
.y1c9{bottom:708.342773px;}
.yfa{bottom:708.634519px;}
.yee{bottom:708.648919px;}
.yb{bottom:717.815094px;}
.y6a{bottom:718.671341px;}
.y4a{bottom:718.736141px;}
.y12a{bottom:719.105380px;}
.y137{bottom:719.727722px;}
.y14b{bottom:719.745130px;}
.y17c{bottom:719.759576px;}
.y1f6{bottom:721.838978px;}
.yf9{bottom:726.627319px;}
.yed{bottom:726.641719px;}
.y136{bottom:734.727722px;}
.y1f5{bottom:735.338978px;}
.y1c8{bottom:735.342773px;}
.y69{bottom:736.664141px;}
.y49{bottom:736.728941px;}
.y129{bottom:737.098180px;}
.y14a{bottom:737.737930px;}
.y17b{bottom:737.752376px;}
.ya{bottom:740.315094px;}
.yf8{bottom:744.628817px;}
.yec{bottom:744.634519px;}
.y1f4{bottom:748.838978px;}
.y1c7{bottom:748.842773px;}
.y135{bottom:749.727722px;}
.y68{bottom:754.656941px;}
.y48{bottom:754.721741px;}
.y128{bottom:755.090980px;}
.y17a{bottom:755.745176px;}
.y149{bottom:755.752376px;}
.y1f3{bottom:762.338978px;}
.yf7{bottom:762.621617px;}
.yeb{bottom:762.627319px;}
.y134{bottom:764.727722px;}
.ye6{bottom:766.527740px;}
.y67{bottom:772.649741px;}
.y47{bottom:772.714541px;}
.y127{bottom:773.083780px;}
.y179{bottom:773.737976px;}
.y148{bottom:773.745176px;}
.y1f2{bottom:775.838978px;}
.y1c6{bottom:775.842773px;}
.y133{bottom:779.727722px;}
.ye5{bottom:781.527740px;}
.y1f1{bottom:789.338978px;}
.y1c5{bottom:789.342773px;}
.y66{bottom:790.642541px;}
.y46{bottom:790.707341px;}
.y126{bottom:791.076580px;}
.y147{bottom:791.737976px;}
.y178{bottom:791.766776px;}
.y132{bottom:794.727722px;}
.ye4{bottom:796.527740px;}
.y1f0{bottom:802.838978px;}
.y1c4{bottom:802.842773px;}
.y9{bottom:804.548112px;}
.y65{bottom:808.635341px;}
.y45{bottom:808.700141px;}
.y125{bottom:809.069380px;}
.y146{bottom:809.737976px;}
.y177{bottom:809.759576px;}
.y103{bottom:816.086975px;}
.y1ef{bottom:816.338978px;}
.y8{bottom:825.552612px;}
.y64{bottom:826.628141px;}
.y44{bottom:826.692941px;}
.y124{bottom:827.062180px;}
.y145{bottom:827.752376px;}
.y1ee{bottom:829.838978px;}
.y1c3{bottom:829.842773px;}
.y10f{bottom:837.967518px;}
.y1ed{bottom:843.338978px;}
.y1c2{bottom:843.342773px;}
.y63{bottom:844.620941px;}
.y86{bottom:844.628141px;}
.y43{bottom:844.685741px;}
.y123{bottom:845.054980px;}
.y92{bottom:845.082334px;}
.y144{bottom:845.745176px;}
.y10e{bottom:856.195518px;}
.y1ec{bottom:856.838978px;}
.y7{bottom:861.589528px;}
.y85{bottom:862.620941px;}
.y62{bottom:862.642541px;}
.y42{bottom:862.678541px;}
.y122{bottom:863.047780px;}
.y91{bottom:863.075134px;}
.y143{bottom:863.737976px;}
.y1eb{bottom:870.338978px;}
.y1c1{bottom:870.342773px;}
.y10d{bottom:874.351518px;}
.y84{bottom:880.620941px;}
.y61{bottom:880.635341px;}
.y41{bottom:880.671341px;}
.y121{bottom:881.040580px;}
.y90{bottom:881.089534px;}
.y142{bottom:881.752376px;}
.y176{bottom:881.759576px;}
.y1ea{bottom:883.838978px;}
.y1c0{bottom:883.842773px;}
.y10c{bottom:892.495518px;}
.y1e9{bottom:897.338978px;}
.y1bf{bottom:897.342773px;}
.y60{bottom:898.628141px;}
.y83{bottom:898.642541px;}
.y40{bottom:898.664141px;}
.y120{bottom:899.033380px;}
.y8f{bottom:899.082334px;}
.y141{bottom:899.745176px;}
.y175{bottom:899.752376px;}
.y6{bottom:900.577528px;}
.y10b{bottom:910.639518px;}
.y1e8{bottom:910.838978px;}
.y1be{bottom:910.842773px;}
.y5f{bottom:916.620941px;}
.y82{bottom:916.635341px;}
.y3f{bottom:916.656941px;}
.y11f{bottom:917.026180px;}
.y8e{bottom:917.096734px;}
.y140{bottom:917.737976px;}
.y174{bottom:917.745176px;}
.y1e7{bottom:924.338978px;}
.y1bd{bottom:924.342773px;}
.y10a{bottom:928.795518px;}
.y81{bottom:934.628141px;}
.y5e{bottom:934.635341px;}
.y3e{bottom:934.649741px;}
.y11e{bottom:935.018980px;}
.y8d{bottom:935.089534px;}
.y13f{bottom:935.737976px;}
.y1e6{bottom:937.838978px;}
.y1bc{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y109{bottom:946.939518px;}
.y1e5{bottom:951.338978px;}
.y1bb{bottom:951.342773px;}
.y80{bottom:952.620941px;}
.y5d{bottom:952.628141px;}
.y3d{bottom:952.642541px;}
.y11d{bottom:953.011780px;}
.y8c{bottom:953.082334px;}
.y173{bottom:953.737976px;}
.y13e{bottom:953.773976px;}
.y1e4{bottom:964.838978px;}
.y1ba{bottom:964.842773px;}
.y108{bottom:965.095518px;}
.y5c{bottom:970.620941px;}
.y3c{bottom:970.635341px;}
.y11c{bottom:971.026180px;}
.y8b{bottom:971.075134px;}
.y13d{bottom:971.766776px;}
.y172{bottom:971.795853px;}
.y1e3{bottom:978.338978px;}
.y4{bottom:978.553528px;}
.y5b{bottom:988.620941px;}
.y3b{bottom:988.628141px;}
.y7f{bottom:988.642541px;}
.y11b{bottom:989.018980px;}
.y8a{bottom:989.082334px;}
.y13c{bottom:989.759576px;}
.y171{bottom:989.788653px;}
.y1e2{bottom:991.838978px;}
.y1b9{bottom:991.842773px;}
.y106{bottom:991.987518px;}
.y107{bottom:995.131518px;}
.y1e1{bottom:1005.338978px;}
.y1b8{bottom:1005.342773px;}
.y105{bottom:1005.487518px;}
.y3a{bottom:1006.620941px;}
.y7e{bottom:1006.635341px;}
.y11a{bottom:1007.011780px;}
.y89{bottom:1007.075134px;}
.y13b{bottom:1007.752376px;}
.y170{bottom:1007.781453px;}
.y1e0{bottom:1018.838978px;}
.y1b7{bottom:1018.842773px;}
.y104{bottom:1018.987518px;}
.y39{bottom:1024.628141px;}
.y5a{bottom:1024.632868px;}
.y119{bottom:1025.011780px;}
.y88{bottom:1025.075134px;}
.y13a{bottom:1025.745176px;}
.y16f{bottom:1025.774253px;}
.y1df{bottom:1032.338978px;}
.y1b6{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y31{bottom:1035.750183px;}
.y38{bottom:1042.620941px;}
.y59{bottom:1042.625668px;}
.y118{bottom:1043.011780px;}
.y87{bottom:1043.075134px;}
.y102{bottom:1043.300079px;}
.y139{bottom:1043.737976px;}
.y16e{bottom:1043.767053px;}
.y1de{bottom:1045.838978px;}
.y1b5{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.y7b{bottom:1126.524628px;}
.y36{bottom:1126.524719px;}
.y7d{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y7c{bottom:1127.300079px;}
.y37{bottom:1127.304719px;}
.h2a{height:10.640359px;}
.h1c{height:24.704400px;}
.h1b{height:25.022028px;}
.h1a{height:26.061499px;}
.h16{height:26.400000px;}
.h24{height:27.540000px;}
.hf{height:27.814500px;}
.h28{height:28.374502px;}
.h22{height:29.988000px;}
.h26{height:30.324000px;}
.h27{height:30.523500px;}
.h19{height:31.694001px;}
.h23{height:32.130000px;}
.h1d{height:34.291943px;}
.h25{height:35.532000px;}
.hc{height:37.086000px;}
.he{height:39.735000px;}
.h1f{height:40.026000px;}
.h17{height:41.173860px;}
.hb{height:41.538000px;}
.h18{height:41.703238px;}
.h12{height:42.384000px;}
.h2c{height:42.840000px;}
.h21{height:43.785000px;}
.h3{height:45.696000px;}
.h10{height:45.744000px;}
.h2b{height:45.814500px;}
.h15{height:46.704000px;}
.h2{height:47.232000px;}
.h11{height:47.472000px;}
.ha{height:52.980000px;}
.h1e{height:53.406000px;}
.h13{height:53.709599px;}
.hd{height:55.860000px;}
.h9{height:58.380000px;}
.h8{height:61.120200px;}
.h14{height:62.535497px;}
.h6{height:67.194379px;}
.h7{height:67.212379px;}
.h4{height:77.142000px;}
.h20{height:100.704000px;}
.h5{height:137.088000px;}
.h29{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:165.105000px;}
.w3{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.x9{left:97.039352px;}
.xd{left:105.572113px;}
.x21{left:107.539352px;}
.xb{left:112.496704px;}
.x1e{left:139.550400px;}
.x20{left:140.704651px;}
.xf{left:143.371948px;}
.x13{left:248.167792px;}
.x4{left:270.817497px;}
.x5{left:457.092894px;}
.x1b{left:463.109985px;}
.x6{left:469.088094px;}
.x1a{left:475.906036px;}
.x19{left:476.938660px;}
.x22{left:479.588093px;}
.x14{left:483.529633px;}
.x18{left:487.660338px;}
.x15{left:490.386133px;}
.x16{left:493.103989px;}
.x11{left:513.391792px;}
.xc{left:552.440094px;}
.xa{left:560.863220px;}
.xe{left:585.663437px;}
.x1d{left:602.660385px;}
.x1f{left:603.814636px;}
.x10{left:622.191605px;}
.x17{left:660.952332px;}
.x12{left:693.235792px;}
.x7{left:694.929886px;}
.x8{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v6{vertical-align:3.024000pt;}
.v7{vertical-align:16.000000pt;}
.v4{vertical-align:20.829776pt;}
.v2{vertical-align:23.466471pt;}
.v5{vertical-align:48.000000pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000001pt;}
.lsa{letter-spacing:0.133449pt;}
.lsb{letter-spacing:0.200173pt;}
.ls5{letter-spacing:0.250965pt;}
.ls4{letter-spacing:0.317884pt;}
.ls8{letter-spacing:0.731727pt;}
.ls6{letter-spacing:0.731733pt;}
.ls7{letter-spacing:0.853333pt;}
.lsc{letter-spacing:1.000864pt;}
.ls9{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ws1{word-spacing:-27.136000pt;}
.ws5{word-spacing:-12.282667pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.wsdc{word-spacing:-10.942783pt;}
.wsdb{word-spacing:-10.275540pt;}
.wsda{word-spacing:-9.474848pt;}
.wsd9{word-spacing:-9.408124pt;}
.ws9d{word-spacing:-9.344000pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws8b{word-spacing:-8.832000pt;}
.ws46{word-spacing:-8.597867pt;}
.wsac{word-spacing:-8.280000pt;}
.ws8{word-spacing:-7.242667pt;}
.wsdd{word-spacing:-6.132000pt;}
.ws55{word-spacing:-5.749333pt;}
.wsde{word-spacing:-1.668107pt;}
.ws97{word-spacing:-1.097600pt;}
.ws59{word-spacing:-0.836267pt;}
.wsca{word-spacing:-0.731733pt;}
.ws7{word-spacing:-0.693333pt;}
.wsb0{word-spacing:-0.522667pt;}
.ws24{word-spacing:-0.418133pt;}
.ws78{word-spacing:-0.365867pt;}
.ws1c{word-spacing:-0.261333pt;}
.ws31{word-spacing:-0.104533pt;}
.ws15{word-spacing:-0.052267pt;}
.ws5c{word-spacing:-0.031371pt;}
.ws6{word-spacing:0.000000pt;}
.ws99{word-spacing:0.209067pt;}
.ws5a{word-spacing:0.365867pt;}
.ws20{word-spacing:0.418133pt;}
.ws66{word-spacing:0.574933pt;}
.ws26{word-spacing:0.679467pt;}
.wsb2{word-spacing:0.731733pt;}
.ws18{word-spacing:0.784000pt;}
.ws73{word-spacing:0.836267pt;}
.ws98{word-spacing:0.888533pt;}
.wsd0{word-spacing:0.940800pt;}
.ws4b{word-spacing:0.993067pt;}
.ws79{word-spacing:1.045333pt;}
.ws72{word-spacing:1.097600pt;}
.ws75{word-spacing:1.149867pt;}
.ws90{word-spacing:1.202133pt;}
.ws7d{word-spacing:1.254400pt;}
.wsd3{word-spacing:1.306667pt;}
.ws8f{word-spacing:1.358933pt;}
.wsa{word-spacing:1.463467pt;}
.ws1b{word-spacing:1.515733pt;}
.ws81{word-spacing:1.672533pt;}
.ws65{word-spacing:1.724800pt;}
.wsbd{word-spacing:1.777067pt;}
.ws33{word-spacing:1.986133pt;}
.ws6b{word-spacing:2.038400pt;}
.ws17{word-spacing:2.142933pt;}
.ws77{word-spacing:2.247467pt;}
.ws9f{word-spacing:2.299733pt;}
.ws8e{word-spacing:2.508800pt;}
.ws62{word-spacing:2.561067pt;}
.ws96{word-spacing:2.665600pt;}
.ws68{word-spacing:2.770133pt;}
.wsc5{word-spacing:2.874667pt;}
.ws4e{word-spacing:2.926933pt;}
.ws38{word-spacing:3.083733pt;}
.ws21{word-spacing:3.136000pt;}
.wsc1{word-spacing:3.292800pt;}
.wsd2{word-spacing:3.345067pt;}
.wsb9{word-spacing:3.501867pt;}
.ws7c{word-spacing:3.554133pt;}
.ws9e{word-spacing:3.710933pt;}
.ws70{word-spacing:3.815467pt;}
.ws25{word-spacing:3.867733pt;}
.wsa7{word-spacing:3.920000pt;}
.ws11{word-spacing:3.972267pt;}
.ws6f{word-spacing:4.024533pt;}
.ws4d{word-spacing:4.076800pt;}
.wsb7{word-spacing:4.129067pt;}
.ws9a{word-spacing:4.285867pt;}
.ws4c{word-spacing:4.338133pt;}
.ws82{word-spacing:4.442667pt;}
.ws86{word-spacing:4.494933pt;}
.ws83{word-spacing:4.547200pt;}
.wsa9{word-spacing:4.599467pt;}
.ws14{word-spacing:4.651733pt;}
.ws28{word-spacing:4.704000pt;}
.wsc7{word-spacing:4.756267pt;}
.wsae{word-spacing:4.860800pt;}
.wsb4{word-spacing:5.017600pt;}
.wsf{word-spacing:5.069867pt;}
.ws41{word-spacing:5.122133pt;}
.wsaf{word-spacing:5.226667pt;}
.ws4f{word-spacing:5.383467pt;}
.ws48{word-spacing:5.435733pt;}
.ws3b{word-spacing:5.488000pt;}
.ws1a{word-spacing:5.592533pt;}
.wsc6{word-spacing:5.644800pt;}
.wsb8{word-spacing:5.697067pt;}
.ws12{word-spacing:5.749333pt;}
.ws80{word-spacing:5.853867pt;}
.ws3f{word-spacing:5.906133pt;}
.wsc8{word-spacing:5.958400pt;}
.ws6a{word-spacing:6.010667pt;}
.ws30{word-spacing:6.219733pt;}
.ws44{word-spacing:6.272000pt;}
.ws22{word-spacing:6.376533pt;}
.ws23{word-spacing:6.428800pt;}
.wscc{word-spacing:6.481067pt;}
.wsa0{word-spacing:6.533333pt;}
.ws76{word-spacing:6.637867pt;}
.ws27{word-spacing:6.742400pt;}
.ws19{word-spacing:6.794667pt;}
.ws2f{word-spacing:6.951467pt;}
.ws57{word-spacing:7.108267pt;}
.wsb1{word-spacing:7.160533pt;}
.wsad{word-spacing:7.212800pt;}
.ws49{word-spacing:7.265067pt;}
.wscd{word-spacing:7.369600pt;}
.wscf{word-spacing:7.474133pt;}
.wsd{word-spacing:7.578667pt;}
.ws29{word-spacing:7.683200pt;}
.wse{word-spacing:7.840000pt;}
.ws67{word-spacing:7.892267pt;}
.wsa3{word-spacing:7.944533pt;}
.wsbf{word-spacing:7.996800pt;}
.wsa6{word-spacing:8.101333pt;}
.ws63{word-spacing:8.153600pt;}
.wsa5{word-spacing:8.205867pt;}
.wsa8{word-spacing:8.310400pt;}
.ws91{word-spacing:8.362667pt;}
.wsd4{word-spacing:8.519467pt;}
.wsa4{word-spacing:8.571733pt;}
.ws5d{word-spacing:8.624000pt;}
.ws2e{word-spacing:8.780800pt;}
.ws39{word-spacing:8.885333pt;}
.wsaa{word-spacing:8.989867pt;}
.wsd1{word-spacing:9.042133pt;}
.wsb5{word-spacing:9.146667pt;}
.ws61{word-spacing:9.198933pt;}
.ws5f{word-spacing:9.303467pt;}
.ws3e{word-spacing:9.408000pt;}
.ws74{word-spacing:9.460267pt;}
.ws34{word-spacing:9.564800pt;}
.wsbb{word-spacing:9.669333pt;}
.wsa1{word-spacing:9.826133pt;}
.ws5e{word-spacing:9.878400pt;}
.wsc{word-spacing:10.139733pt;}
.wsd8{word-spacing:10.192000pt;}
.wsc4{word-spacing:10.296533pt;}
.ws87{word-spacing:10.401067pt;}
.wsb{word-spacing:10.453333pt;}
.ws42{word-spacing:10.505600pt;}
.wsc2{word-spacing:10.662400pt;}
.ws45{word-spacing:10.714667pt;}
.ws3a{word-spacing:10.976000pt;}
.ws50{word-spacing:11.080533pt;}
.ws43{word-spacing:11.237333pt;}
.ws7a{word-spacing:11.289600pt;}
.ws7e{word-spacing:11.394133pt;}
.wsce{word-spacing:11.446400pt;}
.ws7f{word-spacing:11.603200pt;}
.ws6d{word-spacing:11.655467pt;}
.wsb6{word-spacing:11.707733pt;}
.ws84{word-spacing:11.864533pt;}
.ws94{word-spacing:11.916800pt;}
.ws52{word-spacing:12.021333pt;}
.ws9b{word-spacing:12.334933pt;}
.wsd5{word-spacing:12.387200pt;}
.ws35{word-spacing:12.491733pt;}
.ws10{word-spacing:12.544000pt;}
.ws6c{word-spacing:12.753067pt;}
.ws88{word-spacing:13.275733pt;}
.ws6e{word-spacing:13.537067pt;}
.ws9c{word-spacing:13.850667pt;}
.ws2b{word-spacing:13.902933pt;}
.ws69{word-spacing:14.007467pt;}
.ws60{word-spacing:14.164267pt;}
.wsd6{word-spacing:14.321067pt;}
.wsd7{word-spacing:14.373333pt;}
.ws56{word-spacing:14.477867pt;}
.wsbe{word-spacing:14.530133pt;}
.wsba{word-spacing:14.739200pt;}
.ws3c{word-spacing:14.843733pt;}
.wsc0{word-spacing:14.896000pt;}
.ws5b{word-spacing:15.319290pt;}
.ws95{word-spacing:15.418667pt;}
.wsb3{word-spacing:15.523200pt;}
.wsc9{word-spacing:15.732267pt;}
.ws3d{word-spacing:15.941333pt;}
.ws47{word-spacing:16.045867pt;}
.ws13{word-spacing:16.098133pt;}
.ws9{word-spacing:16.307200pt;}
.ws71{word-spacing:16.620800pt;}
.wsc3{word-spacing:16.829867pt;}
.ws93{word-spacing:17.457067pt;}
.ws32{word-spacing:17.718400pt;}
.ws58{word-spacing:17.927467pt;}
.ws64{word-spacing:18.136533pt;}
.ws53{word-spacing:18.345600pt;}
.ws2a{word-spacing:18.450133pt;}
.ws1e{word-spacing:18.920533pt;}
.wsab{word-spacing:19.547733pt;}
.ws1d{word-spacing:19.600000pt;}
.ws16{word-spacing:20.279467pt;}
.ws92{word-spacing:20.802133pt;}
.wsbc{word-spacing:20.854400pt;}
.ws2c{word-spacing:22.004267pt;}
.ws2d{word-spacing:22.422400pt;}
.ws54{word-spacing:22.474667pt;}
.wscb{word-spacing:22.683733pt;}
.ws36{word-spacing:24.356267pt;}
.ws4a{word-spacing:24.460800pt;}
.wsa2{word-spacing:25.976533pt;}
.ws37{word-spacing:27.962667pt;}
.ws40{word-spacing:28.851200pt;}
.ws7b{word-spacing:31.203200pt;}
.ws89{word-spacing:31.307733pt;}
.ws1f{word-spacing:37.004800pt;}
.ws51{word-spacing:45.001600pt;}
.ws85{word-spacing:59.374933pt;}
.ws8c{word-spacing:235.306667pt;}
.ws8d{word-spacing:255.146667pt;}
.ws8a{word-spacing:454.144000pt;}
._e{margin-left:-28.774450pt;}
._b{margin-left:-14.317937pt;}
._29{margin-left:-11.904180pt;}
._15{margin-left:-9.404835pt;}
._a{margin-left:-6.487251pt;}
._17{margin-left:-5.164478pt;}
._d{margin-left:-4.181333pt;}
._8{margin-left:-3.114736pt;}
._2{margin-left:-2.018133pt;}
._0{margin-left:-1.066667pt;}
._5{width:1.146702pt;}
._1{width:2.534400pt;}
._3{width:3.942400pt;}
._16{width:5.073024pt;}
._9{width:6.334402pt;}
._11{width:7.610453pt;}
._14{width:8.760997pt;}
._c{width:10.981227pt;}
._12{width:11.943465pt;}
._6{width:12.906667pt;}
._7{width:14.506667pt;}
._13{width:18.718864pt;}
._2b{width:20.661333pt;}
._f{width:22.448533pt;}
._10{width:28.197867pt;}
._4{width:33.890644pt;}
._2a{width:40.181333pt;}
._18{width:60.089565pt;}
._1d{width:244.432035pt;}
._22{width:247.808000pt;}
._1b{width:264.709298pt;}
._25{width:268.586667pt;}
._26{width:271.151965pt;}
._1c{width:286.677333pt;}
._1f{width:291.413333pt;}
._21{width:303.578632pt;}
._24{width:339.509264pt;}
._19{width:375.510897pt;}
._28{width:528.090598pt;}
._1e{width:548.736000pt;}
._1a{width:562.560000pt;}
._23{width:592.479930pt;}
._20{width:618.624000pt;}
._27{width:1232.487398pt;}
.fs14{font-size:12.510710pt;}
.fsa{font-size:28.000000pt;}
.fsf{font-size:31.370667pt;}
.fs11{font-size:32.000000pt;}
.fs13{font-size:33.362142pt;}
.fs12{font-size:35.466667pt;}
.fsc{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fse{font-size:39.735466pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fsb{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fsd{font-size:52.284267pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:0.106801pt;}
.yd7{bottom:10.973328pt;}
.yde{bottom:10.978668pt;}
.yd9{bottom:16.757202pt;}
.y24{bottom:72.118800pt;}
.y23{bottom:82.786800pt;}
.y1b3{bottom:88.410665pt;}
.ye3{bottom:89.495203pt;}
.yb9{bottom:89.496536pt;}
.y19b{bottom:91.767069pt;}
.y22{bottom:93.454800pt;}
.y16d{bottom:95.799069pt;}
.y112{bottom:96.617330pt;}
.y7a{bottom:96.670664pt;}
.yea{bottom:96.724131pt;}
.y138{bottom:97.043996pt;}
.y98{bottom:97.523997pt;}
.y1b1{bottom:103.088000pt;}
.y19a{bottom:103.767069pt;}
.y21{bottom:104.122800pt;}
.ye2{bottom:105.488803pt;}
.yb8{bottom:105.490136pt;}
.y111{bottom:109.950663pt;}
.y79{bottom:110.003998pt;}
.y97{bottom:110.857330pt;}
.y16c{bottom:111.792669pt;}
.y20{bottom:114.790800pt;}
.y199{bottom:115.767069pt;}
.y1af{bottom:118.901465pt;}
.ye1{bottom:121.482403pt;}
.yb7{bottom:121.483736pt;}
.y110{bottom:123.283997pt;}
.y96{bottom:124.190664pt;}
.y1b0{bottom:124.368000pt;}
.y1f{bottom:125.458800pt;}
.y198{bottom:127.767069pt;}
.y16b{bottom:127.786269pt;}
.y1ac{bottom:134.909465pt;}
.y1e{bottom:136.126800pt;}
.ye0{bottom:137.476003pt;}
.yb6{bottom:137.477336pt;}
.y197{bottom:139.767069pt;}
.y16a{bottom:143.779869pt;}
.y1d{bottom:146.794800pt;}
.yd6{bottom:148.810669pt;}
.y1ae{bottom:148.870799pt;}
.y1ad{bottom:149.385071pt;}
.y1aa{bottom:150.157999pt;}
.y196{bottom:151.767069pt;}
.yb5{bottom:153.477336pt;}
.ydb{bottom:156.890798pt;}
.ydf{bottom:159.754669pt;}
.y169{bottom:159.773469pt;}
.yd8{bottom:159.783997pt;}
.ydd{bottom:159.789337pt;}
.y1b4{bottom:162.561727pt;}
.y1a9{bottom:164.288666pt;}
.y1ab{bottom:165.233999pt;}
.yda{bottom:165.567871pt;}
.y1a7{bottom:166.912123pt;}
.yb4{bottom:169.490136pt;}
.y168{bottom:175.767069pt;}
.yd5{bottom:175.799459pt;}
.y1a6{bottom:180.034790pt;}
.y35{bottom:180.461466pt;}
.y1a8{bottom:181.450133pt;}
.y1a4{bottom:182.897070pt;}
.yb3{bottom:185.483736pt;}
.y195{bottom:191.767069pt;}
.yd4{bottom:191.793059pt;}
.y167{bottom:191.869449pt;}
.y34{bottom:192.461466pt;}
.y1a3{bottom:195.609070pt;}
.y1a5{bottom:196.835592pt;}
.y30{bottom:197.181607pt;}
.y1a1{bottom:198.903062pt;}
.yb2{bottom:201.477336pt;}
.y194{bottom:207.767069pt;}
.yd3{bottom:207.786659pt;}
.y166{bottom:207.863049pt;}
.y33{bottom:208.461466pt;}
.y1a0{bottom:211.232396pt;}
.y1a2{bottom:212.267863pt;}
.y2f{bottom:213.175207pt;}
.y19d{bottom:214.905331pt;}
.y19f{bottom:214.909729pt;}
.y32{bottom:216.461466pt;}
.yb1{bottom:217.483736pt;}
.yd2{bottom:223.780259pt;}
.y193{bottom:223.818249pt;}
.y165{bottom:223.856649pt;}
.y19c{bottom:227.430664pt;}
.y19e{bottom:228.278259pt;}
.y2e{bottom:229.168807pt;}
.yb0{bottom:233.477336pt;}
.yd1{bottom:239.773859pt;}
.y192{bottom:239.811849pt;}
.y164{bottom:239.850249pt;}
.y2d{bottom:245.162407pt;}
.yaf{bottom:249.477336pt;}
.y1b2{bottom:250.972392pt;}
.yd0{bottom:255.767459pt;}
.y191{bottom:255.805449pt;}
.y163{bottom:255.843849pt;}
.y28{bottom:260.437340pt;}
.y2c{bottom:261.156007pt;}
.yae{bottom:265.515736pt;}
.ycf{bottom:271.761059pt;}
.y190{bottom:271.799049pt;}
.y162{bottom:271.837449pt;}
.y27{bottom:276.430940pt;}
.y2b{bottom:277.149607pt;}
.yad{bottom:281.509336pt;}
.yce{bottom:287.754659pt;}
.y18f{bottom:287.792649pt;}
.y161{bottom:287.831049pt;}
.y26{bottom:292.424540pt;}
.y2a{bottom:293.143207pt;}
.yac{bottom:297.502936pt;}
.ycd{bottom:303.761059pt;}
.y18e{bottom:303.786249pt;}
.y160{bottom:303.824649pt;}
.y1dd{bottom:304.304647pt;}
.y25{bottom:308.424540pt;}
.y29{bottom:309.136807pt;}
.yab{bottom:313.496536pt;}
.y1dc{bottom:316.304647pt;}
.ycc{bottom:319.754659pt;}
.y18d{bottom:319.779849pt;}
.y15f{bottom:319.818249pt;}
.y20f{bottom:321.638000pt;}
.y1db{bottom:328.304647pt;}
.yaa{bottom:329.490136pt;}
.y20e{bottom:333.638000pt;}
.ycb{bottom:335.754659pt;}
.y18c{bottom:335.773449pt;}
.y15e{bottom:335.811849pt;}
.y1da{bottom:340.304647pt;}
.ya9{bottom:345.483736pt;}
.y20d{bottom:345.637980pt;}
.y18b{bottom:351.767049pt;}
.y15d{bottom:351.805449pt;}
.y1d9{bottom:352.304647pt;}
.y1c{bottom:354.057861pt;}
.ya8{bottom:361.477336pt;}
.y15c{bottom:367.799049pt;}
.y18a{bottom:367.811849pt;}
.y1b{bottom:370.057861pt;}
.yca{bottom:371.730684pt;}
.ya7{bottom:377.490136pt;}
.y20c{bottom:377.634647pt;}
.y15b{bottom:383.792649pt;}
.y189{bottom:383.805449pt;}
.yc9{bottom:387.724284pt;}
.y20b{bottom:389.634647pt;}
.y1a{bottom:390.057861pt;}
.ya6{bottom:393.483736pt;}
.y15a{bottom:399.786249pt;}
.y188{bottom:399.799049pt;}
.y20a{bottom:401.634647pt;}
.yc8{bottom:403.781884pt;}
.y19{bottom:406.057861pt;}
.ya5{bottom:409.477336pt;}
.y209{bottom:413.634647pt;}
.y1d8{bottom:413.637980pt;}
.y58{bottom:414.774129pt;}
.y78{bottom:414.793329pt;}
.y159{bottom:415.779849pt;}
.y187{bottom:415.792649pt;}
.yc7{bottom:419.775484pt;}
.y18{bottom:422.057861pt;}
.ya4{bottom:425.490136pt;}
.y208{bottom:425.634647pt;}
.y95{bottom:430.733317pt;}
.y57{bottom:430.774129pt;}
.y77{bottom:430.786929pt;}
.y158{bottom:431.773449pt;}
.y186{bottom:431.786249pt;}
.yc6{bottom:435.769084pt;}
.y207{bottom:437.634647pt;}
.y1d7{bottom:437.637980pt;}
.y17{bottom:438.057861pt;}
.ya3{bottom:441.483736pt;}
.y94{bottom:444.066650pt;}
.y76{bottom:446.780529pt;}
.y56{bottom:446.793329pt;}
.y157{bottom:447.767049pt;}
.y185{bottom:447.779849pt;}
.y206{bottom:449.634647pt;}
.y1d6{bottom:449.637980pt;}
.yc5{bottom:451.762684pt;}
.y93{bottom:457.399984pt;}
.ya2{bottom:457.477336pt;}
.y16{bottom:458.057861pt;}
.y205{bottom:461.634647pt;}
.y1d5{bottom:461.637980pt;}
.y75{bottom:462.774129pt;}
.y55{bottom:462.786929pt;}
.y156{bottom:463.767049pt;}
.y184{bottom:463.773449pt;}
.yc4{bottom:467.756284pt;}
.ya1{bottom:473.477336pt;}
.y204{bottom:473.634647pt;}
.y1d4{bottom:473.637980pt;}
.y15{bottom:474.057861pt;}
.y54{bottom:478.780529pt;}
.y74{bottom:478.793329pt;}
.y183{bottom:479.767049pt;}
.y155{bottom:479.786249pt;}
.yc3{bottom:483.749884pt;}
.y203{bottom:485.634647pt;}
.y1d3{bottom:485.637980pt;}
.y14{bottom:490.057861pt;}
.ye9{bottom:492.237996pt;}
.y53{bottom:494.774129pt;}
.y73{bottom:494.786929pt;}
.y154{bottom:495.779849pt;}
.y202{bottom:497.634647pt;}
.y1d2{bottom:497.637980pt;}
.yc2{bottom:499.743484pt;}
.yf6{bottom:501.890951pt;}
.ye8{bottom:505.571330pt;}
.y13{bottom:506.057861pt;}
.y201{bottom:509.634647pt;}
.y1d1{bottom:509.637980pt;}
.y52{bottom:510.774129pt;}
.y72{bottom:510.780529pt;}
.y153{bottom:511.773449pt;}
.yc1{bottom:515.737084pt;}
.ya0{bottom:515.749884pt;}
.y101{bottom:517.942151pt;}
.yf5{bottom:517.954951pt;}
.ye7{bottom:518.904663pt;}
.y200{bottom:521.634647pt;}
.y12{bottom:522.057861pt;}
.y1d0{bottom:525.637980pt;}
.y71{bottom:526.774129pt;}
.y51{bottom:526.780529pt;}
.y131{bottom:527.249582pt;}
.y152{bottom:527.767049pt;}
.y117{bottom:530.410151pt;}
.yc0{bottom:531.730684pt;}
.y9f{bottom:531.743484pt;}
.y1ff{bottom:533.634647pt;}
.y1cf{bottom:533.638021pt;}
.y100{bottom:533.935751pt;}
.yf4{bottom:533.948551pt;}
.y11{bottom:538.057861pt;}
.y50{bottom:542.774129pt;}
.y70{bottom:542.793329pt;}
.y130{bottom:543.243182pt;}
.y182{bottom:543.792649pt;}
.y151{bottom:543.811849pt;}
.y1fe{bottom:545.634647pt;}
.y116{bottom:546.403751pt;}
.ybf{bottom:547.724284pt;}
.y9e{bottom:547.737084pt;}
.yff{bottom:549.929351pt;}
.yf3{bottom:549.942151pt;}
.y10{bottom:554.057861pt;}
.y1fd{bottom:557.634647pt;}
.y1ce{bottom:557.638021pt;}
.y6f{bottom:558.786929pt;}
.y4f{bottom:558.908570pt;}
.y12f{bottom:559.236782pt;}
.y181{bottom:559.786249pt;}
.y150{bottom:559.805449pt;}
.y115{bottom:562.397351pt;}
.y9d{bottom:563.730684pt;}
.ybe{bottom:563.743484pt;}
.yfe{bottom:565.922951pt;}
.yf2{bottom:565.935751pt;}
.y1fc{bottom:569.634647pt;}
.y1cd{bottom:569.638021pt;}
.yf{bottom:570.057861pt;}
.y6e{bottom:574.780529pt;}
.y4e{bottom:574.902170pt;}
.y12e{bottom:575.230382pt;}
.y180{bottom:575.779849pt;}
.y14f{bottom:575.799049pt;}
.y114{bottom:578.390951pt;}
.y9c{bottom:579.724284pt;}
.ybd{bottom:579.737084pt;}
.y1fb{bottom:581.634647pt;}
.yfd{bottom:581.916551pt;}
.yf1{bottom:581.929351pt;}
.ye{bottom:590.057861pt;}
.y6d{bottom:590.774129pt;}
.y4d{bottom:590.895770pt;}
.y12d{bottom:591.223982pt;}
.y17f{bottom:591.773449pt;}
.y14e{bottom:591.792649pt;}
.y1fa{bottom:593.634647pt;}
.y1cc{bottom:593.638021pt;}
.y113{bottom:594.390951pt;}
.ybc{bottom:595.730684pt;}
.y9b{bottom:595.737084pt;}
.yfc{bottom:597.910151pt;}
.yf0{bottom:597.922951pt;}
.y1f9{bottom:605.634647pt;}
.y1cb{bottom:605.638021pt;}
.yd{bottom:606.057861pt;}
.y6c{bottom:606.780529pt;}
.y4c{bottom:606.889370pt;}
.y12c{bottom:607.217582pt;}
.y17e{bottom:607.767049pt;}
.y14d{bottom:607.786249pt;}
.ybb{bottom:611.724284pt;}
.y9a{bottom:611.730684pt;}
.yfb{bottom:613.903751pt;}
.yef{bottom:613.916551pt;}
.y1f8{bottom:617.634647pt;}
.y1ca{bottom:617.638021pt;}
.yc{bottom:622.057861pt;}
.y6b{bottom:622.774129pt;}
.y4b{bottom:622.882970pt;}
.y12b{bottom:623.211182pt;}
.y14c{bottom:623.779849pt;}
.y17d{bottom:623.792690pt;}
.y99{bottom:627.724284pt;}
.yba{bottom:627.738686pt;}
.y1f7{bottom:629.634647pt;}
.y1c9{bottom:629.638021pt;}
.yfa{bottom:629.897351pt;}
.yee{bottom:629.910151pt;}
.yb{bottom:638.057861pt;}
.y6a{bottom:638.818970pt;}
.y4a{bottom:638.876570pt;}
.y12a{bottom:639.204782pt;}
.y137{bottom:639.757975pt;}
.y14b{bottom:639.773449pt;}
.y17c{bottom:639.786290pt;}
.y1f6{bottom:641.634647pt;}
.yf9{bottom:645.890951pt;}
.yed{bottom:645.903751pt;}
.y136{bottom:653.091309pt;}
.y1f5{bottom:653.634647pt;}
.y1c8{bottom:653.638021pt;}
.y69{bottom:654.812570pt;}
.y49{bottom:654.870170pt;}
.y129{bottom:655.198382pt;}
.y14a{bottom:655.767049pt;}
.y17b{bottom:655.779890pt;}
.ya{bottom:658.057861pt;}
.yf8{bottom:661.892282pt;}
.yec{bottom:661.897351pt;}
.y1f4{bottom:665.634647pt;}
.y1c7{bottom:665.638021pt;}
.y135{bottom:666.424642pt;}
.y68{bottom:670.806170pt;}
.y48{bottom:670.863770pt;}
.y128{bottom:671.191982pt;}
.y17a{bottom:671.773490pt;}
.y149{bottom:671.779890pt;}
.y1f3{bottom:677.634647pt;}
.yf7{bottom:677.885882pt;}
.yeb{bottom:677.890951pt;}
.y134{bottom:679.757975pt;}
.ye6{bottom:681.357992pt;}
.y67{bottom:686.799770pt;}
.y47{bottom:686.857370pt;}
.y127{bottom:687.185582pt;}
.y179{bottom:687.767090pt;}
.y148{bottom:687.773490pt;}
.y1f2{bottom:689.634647pt;}
.y1c6{bottom:689.638021pt;}
.y133{bottom:693.091309pt;}
.ye5{bottom:694.691325pt;}
.y1f1{bottom:701.634647pt;}
.y1c5{bottom:701.638021pt;}
.y66{bottom:702.793370pt;}
.y46{bottom:702.850970pt;}
.y126{bottom:703.179182pt;}
.y147{bottom:703.767090pt;}
.y178{bottom:703.792690pt;}
.y132{bottom:706.424642pt;}
.ye4{bottom:708.024658pt;}
.y1f0{bottom:713.634647pt;}
.y1c4{bottom:713.638021pt;}
.y9{bottom:715.153878pt;}
.y65{bottom:718.786970pt;}
.y45{bottom:718.844570pt;}
.y125{bottom:719.172782pt;}
.y146{bottom:719.767090pt;}
.y177{bottom:719.786290pt;}
.y103{bottom:725.410645pt;}
.y1ef{bottom:725.634647pt;}
.y8{bottom:733.824544pt;}
.y64{bottom:734.780570pt;}
.y44{bottom:734.838170pt;}
.y124{bottom:735.166382pt;}
.y145{bottom:735.779890pt;}
.y1ee{bottom:737.634647pt;}
.y1c3{bottom:737.638021pt;}
.y10f{bottom:744.860016pt;}
.y1ed{bottom:749.634647pt;}
.y1c2{bottom:749.638021pt;}
.y63{bottom:750.774170pt;}
.y86{bottom:750.780570pt;}
.y43{bottom:750.831770pt;}
.y123{bottom:751.159982pt;}
.y92{bottom:751.184297pt;}
.y144{bottom:751.773490pt;}
.y10e{bottom:761.062683pt;}
.y1ec{bottom:761.634647pt;}
.y7{bottom:765.857358pt;}
.y85{bottom:766.774170pt;}
.y62{bottom:766.793370pt;}
.y42{bottom:766.825370pt;}
.y122{bottom:767.153582pt;}
.y91{bottom:767.177897pt;}
.y143{bottom:767.767090pt;}
.y1eb{bottom:773.634647pt;}
.y1c1{bottom:773.638021pt;}
.y10d{bottom:777.201350pt;}
.y84{bottom:782.774170pt;}
.y61{bottom:782.786970pt;}
.y41{bottom:782.818970pt;}
.y121{bottom:783.147182pt;}
.y90{bottom:783.190697pt;}
.y142{bottom:783.779890pt;}
.y176{bottom:783.786290pt;}
.y1ea{bottom:785.634647pt;}
.y1c0{bottom:785.638021pt;}
.y10c{bottom:793.329350pt;}
.y1e9{bottom:797.634647pt;}
.y1bf{bottom:797.638021pt;}
.y60{bottom:798.780570pt;}
.y83{bottom:798.793370pt;}
.y40{bottom:798.812570pt;}
.y120{bottom:799.140782pt;}
.y8f{bottom:799.184297pt;}
.y141{bottom:799.773490pt;}
.y175{bottom:799.779890pt;}
.y6{bottom:800.513358pt;}
.y10b{bottom:809.457350pt;}
.y1e8{bottom:809.634647pt;}
.y1be{bottom:809.638021pt;}
.y5f{bottom:814.774170pt;}
.y82{bottom:814.786970pt;}
.y3f{bottom:814.806170pt;}
.y11f{bottom:815.134382pt;}
.y8e{bottom:815.197097pt;}
.y140{bottom:815.767090pt;}
.y174{bottom:815.773490pt;}
.y1e7{bottom:821.634647pt;}
.y1bd{bottom:821.638021pt;}
.y10a{bottom:825.596016pt;}
.y81{bottom:830.780570pt;}
.y5e{bottom:830.786970pt;}
.y3e{bottom:830.799770pt;}
.y11e{bottom:831.127982pt;}
.y8d{bottom:831.190697pt;}
.y13f{bottom:831.767090pt;}
.y1e6{bottom:833.634647pt;}
.y1bc{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y109{bottom:841.724016pt;}
.y1e5{bottom:845.634647pt;}
.y1bb{bottom:845.638021pt;}
.y80{bottom:846.774170pt;}
.y5d{bottom:846.780570pt;}
.y3d{bottom:846.793370pt;}
.y11d{bottom:847.121582pt;}
.y8c{bottom:847.184297pt;}
.y173{bottom:847.767090pt;}
.y13e{bottom:847.799090pt;}
.y1e4{bottom:857.634647pt;}
.y1ba{bottom:857.638021pt;}
.y108{bottom:857.862683pt;}
.y5c{bottom:862.774170pt;}
.y3c{bottom:862.786970pt;}
.y11c{bottom:863.134382pt;}
.y8b{bottom:863.177897pt;}
.y13d{bottom:863.792690pt;}
.y172{bottom:863.818536pt;}
.y1e3{bottom:869.634647pt;}
.y4{bottom:869.825358pt;}
.y5b{bottom:878.774170pt;}
.y3b{bottom:878.780570pt;}
.y7f{bottom:878.793370pt;}
.y11b{bottom:879.127982pt;}
.y8a{bottom:879.184297pt;}
.y13c{bottom:879.786290pt;}
.y171{bottom:879.812136pt;}
.y1e2{bottom:881.634647pt;}
.y1b9{bottom:881.638021pt;}
.y106{bottom:881.766683pt;}
.y107{bottom:884.561350pt;}
.y1e1{bottom:893.634647pt;}
.y1b8{bottom:893.638021pt;}
.y105{bottom:893.766683pt;}
.y3a{bottom:894.774170pt;}
.y7e{bottom:894.786970pt;}
.y11a{bottom:895.121582pt;}
.y89{bottom:895.177897pt;}
.y13b{bottom:895.779890pt;}
.y170{bottom:895.805736pt;}
.y1e0{bottom:905.634647pt;}
.y1b7{bottom:905.638021pt;}
.y104{bottom:905.766683pt;}
.y39{bottom:910.780570pt;}
.y5a{bottom:910.784771pt;}
.y119{bottom:911.121582pt;}
.y88{bottom:911.177897pt;}
.y13a{bottom:911.773490pt;}
.y16f{bottom:911.799336pt;}
.y1df{bottom:917.634647pt;}
.y1b6{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y31{bottom:920.666829pt;}
.y38{bottom:926.774170pt;}
.y59{bottom:926.778371pt;}
.y118{bottom:927.121582pt;}
.y87{bottom:927.177897pt;}
.y102{bottom:927.377848pt;}
.y139{bottom:927.767090pt;}
.y16e{bottom:927.792936pt;}
.y1de{bottom:929.634647pt;}
.y1b5{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.y7b{bottom:1001.355225pt;}
.y36{bottom:1001.355306pt;}
.y7d{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y7c{bottom:1002.044515pt;}
.y37{bottom:1002.048639pt;}
.h2a{height:9.458097pt;}
.h1c{height:21.959467pt;}
.h1b{height:22.241803pt;}
.h1a{height:23.165777pt;}
.h16{height:23.466667pt;}
.h24{height:24.480000pt;}
.hf{height:24.724000pt;}
.h28{height:25.221780pt;}
.h22{height:26.656000pt;}
.h26{height:26.954667pt;}
.h27{height:27.132000pt;}
.h19{height:28.172445pt;}
.h23{height:28.560000pt;}
.h1d{height:30.481727pt;}
.h25{height:31.584000pt;}
.hc{height:32.965333pt;}
.he{height:35.320000pt;}
.h1f{height:35.578667pt;}
.h17{height:36.598987pt;}
.hb{height:36.922667pt;}
.h18{height:37.069545pt;}
.h12{height:37.674667pt;}
.h2c{height:38.080000pt;}
.h21{height:38.920000pt;}
.h3{height:40.618667pt;}
.h10{height:40.661333pt;}
.h2b{height:40.724000pt;}
.h15{height:41.514667pt;}
.h2{height:41.984000pt;}
.h11{height:42.197333pt;}
.ha{height:47.093333pt;}
.h1e{height:47.472000pt;}
.h13{height:47.741866pt;}
.hd{height:49.653333pt;}
.h9{height:51.893333pt;}
.h8{height:54.329067pt;}
.h14{height:55.587109pt;}
.h6{height:59.728337pt;}
.h7{height:59.744337pt;}
.h4{height:68.570667pt;}
.h20{height:89.514667pt;}
.h5{height:121.856000pt;}
.h29{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:146.760000pt;}
.w3{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.x9{left:86.257202pt;}
.xd{left:93.841878pt;}
.x21{left:95.590535pt;}
.xb{left:99.997070pt;}
.x1e{left:124.044800pt;}
.x20{left:125.070801pt;}
.xf{left:127.441732pt;}
.x13{left:220.593593pt;}
.x4{left:240.726664pt;}
.x5{left:406.304795pt;}
.x1b{left:411.653320pt;}
.x6{left:416.967195pt;}
.x1a{left:423.027588pt;}
.x19{left:423.945475pt;}
.x22{left:426.300527pt;}
.x14{left:429.804118pt;}
.x18{left:433.475856pt;}
.x15{left:435.898785pt;}
.x16{left:438.314657pt;}
.x11{left:456.348260pt;}
.xc{left:491.057861pt;}
.xa{left:498.545085pt;}
.xe{left:520.589722pt;}
.x1d{left:535.698120pt;}
.x1f{left:536.724121pt;}
.x10{left:553.059204pt;}
.x17{left:587.513184pt;}
.x12{left:616.209593pt;}
.x7{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; }
  