
    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_c3f761dd87425faedab553c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_12e66ef5669fc83e0536fe46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_e4983c1a5b08b928664b272e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fbd37d6ea6f4dccf77b62cfe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_28dba356daa6beee8be774c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072000;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_d1b746a9cfcfff8d12b1b63e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_67987e050e1074f345e6723c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f3f866e63c800e080c4be093.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_e77f819065cbab4cf7ea6ee8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_7e08fc3f3a5c9e11c5c67589.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;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_efaef3df8d0e3ae17011c771.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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_57e28b7339fb33fb21fbbb9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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_310baaf7adefffd6c3d71002.woff2')format("woff");}.fff{font-family:fff;line-height:0.711000;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_982feaa7387993c8b02845e9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_6d9903e3d6172dbb23222d03.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f4eae3eb21ee129ac71367b8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.721000;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:ff13;src:url('chunks/assets/font_b8c2fe6b9c22931dadc7ffc6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_314f407227eb3e9254b41a53.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.934000;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.190985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190985,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);}
.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);}
.v6{vertical-align:-15.840000px;}
.v3{vertical-align:-13.500000px;}
.v1{vertical-align:-1.904400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.890456px;}
.v5{vertical-align:15.840000px;}
.v4{vertical-align:19.799400px;}
.ls11{letter-spacing:-2.496000px;}
.ls1f{letter-spacing:-0.702000px;}
.lsa{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.480000px;}
.ls14{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005640px;}
.lsb{letter-spacing:0.047531px;}
.ls1{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.630000px;}
.ls1b{letter-spacing:0.672000px;}
.ls3{letter-spacing:0.840000px;}
.ls1e{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.900000px;}
.ls1d{letter-spacing:9.157200px;}
.ls18{letter-spacing:56.313180px;}
.ls7{letter-spacing:67.526400px;}
.ls6{letter-spacing:67.602600px;}
.lsf{letter-spacing:83.460000px;}
.lse{letter-spacing:132.060000px;}
.ls10{letter-spacing:153.213362px;}
.ls15{letter-spacing:177.780000px;}
.ls17{letter-spacing:186.427800px;}
.ls1c{letter-spacing:200.349000px;}
.ls19{letter-spacing:223.860000px;}
.ls1a{letter-spacing:241.388225px;}
.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;}
}
.wsc4{word-spacing:-256.800000px;}
.wsd7{word-spacing:-241.388225px;}
.ws9a{word-spacing:-153.588000px;}
.wsa3{word-spacing:-153.213362px;}
.wsc5{word-spacing:-123.900000px;}
.ws9b{word-spacing:-67.794000px;}
.wsd6{word-spacing:-56.313180px;}
.ws1{word-spacing:-13.986000px;}
.wsc2{word-spacing:-13.620000px;}
.ws7f{word-spacing:-13.332000px;}
.ws7c{word-spacing:-13.200000px;}
.ws3{word-spacing:-12.720000px;}
.ws60{word-spacing:-12.120000px;}
.ws61{word-spacing:-11.882700px;}
.ws7d{word-spacing:-11.448000px;}
.wsfe{word-spacing:-10.746000px;}
.wsfd{word-spacing:-10.692000px;}
.ws8{word-spacing:-10.176000px;}
.wsfc{word-spacing:-9.828000px;}
.ws7{word-spacing:-9.810000px;}
.ws4{word-spacing:-9.696000px;}
.wsd9{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws5{word-spacing:-8.820000px;}
.wsc3{word-spacing:-8.268000px;}
.ws6{word-spacing:-8.232000px;}
.ws7e{word-spacing:-7.441200px;}
.ws9f{word-spacing:-6.912000px;}
.wscc{word-spacing:-6.115200px;}
.wsbf{word-spacing:-3.408000px;}
.ws62{word-spacing:-0.450000px;}
.wsd5{word-spacing:-0.420000px;}
.ws79{word-spacing:-0.047531px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:2.940000px;}
.ws11d{word-spacing:3.294000px;}
.ws113{word-spacing:3.402000px;}
.ws11c{word-spacing:3.834000px;}
.ws112{word-spacing:3.942000px;}
.ws12b{word-spacing:4.050000px;}
.ws12a{word-spacing:4.698000px;}
.wsf1{word-spacing:4.920000px;}
.ws6f{word-spacing:5.160000px;}
.ws133{word-spacing:5.238000px;}
.ws3d{word-spacing:5.400000px;}
.ws18{word-spacing:5.454000px;}
.wsff{word-spacing:5.580000px;}
.wsc1{word-spacing:5.664000px;}
.wsb6{word-spacing:6.000000px;}
.ws135{word-spacing:6.102000px;}
.ws132{word-spacing:6.156000px;}
.ws66{word-spacing:6.240000px;}
.ws119{word-spacing:6.372000px;}
.ws13a{word-spacing:6.426000px;}
.ws89{word-spacing:6.540000px;}
.ws35{word-spacing:6.594000px;}
.ws6b{word-spacing:6.600000px;}
.wsa{word-spacing:6.615000px;}
.ws1e{word-spacing:6.660000px;}
.ws64{word-spacing:6.720000px;}
.wse5{word-spacing:6.780000px;}
.ws31{word-spacing:6.840000px;}
.ws69{word-spacing:6.900000px;}
.ws108{word-spacing:6.912000px;}
.wsf5{word-spacing:6.960000px;}
.ws11b{word-spacing:6.966000px;}
.wsc0{word-spacing:7.008000px;}
.ws3f{word-spacing:7.020000px;}
.wsb{word-spacing:7.065000px;}
.ws10b{word-spacing:7.074000px;}
.ws3a{word-spacing:7.080000px;}
.ws43{word-spacing:7.140000px;}
.ws118{word-spacing:7.182000px;}
.ws120{word-spacing:7.236000px;}
.ws56{word-spacing:7.260000px;}
.ws45{word-spacing:7.320000px;}
.ws20{word-spacing:7.344000px;}
.ws30{word-spacing:7.440000px;}
.ws10e{word-spacing:7.452000px;}
.wsb5{word-spacing:7.500000px;}
.ws36{word-spacing:7.536000px;}
.wsb3{word-spacing:7.560000px;}
.wse1{word-spacing:7.620000px;}
.ws15{word-spacing:7.668000px;}
.ws54{word-spacing:7.680000px;}
.ws114{word-spacing:7.722000px;}
.ws2c{word-spacing:7.740000px;}
.ws2b{word-spacing:7.800000px;}
.ws102{word-spacing:7.830000px;}
.wse4{word-spacing:7.860000px;}
.ws101{word-spacing:7.884000px;}
.ws44{word-spacing:7.920000px;}
.ws5a{word-spacing:7.980000px;}
.ws10a{word-spacing:7.992000px;}
.ws6c{word-spacing:8.040000px;}
.ws95{word-spacing:8.100000px;}
.ws39{word-spacing:8.160000px;}
.ws53{word-spacing:8.220000px;}
.ws19{word-spacing:8.262000px;}
.ws67{word-spacing:8.280000px;}
.ws107{word-spacing:8.316000px;}
.ws87{word-spacing:8.340000px;}
.wsde{word-spacing:8.460000px;}
.wse{word-spacing:8.478000px;}
.ws38{word-spacing:8.484000px;}
.ws4d{word-spacing:8.520000px;}
.ws129{word-spacing:8.532000px;}
.wsbd{word-spacing:8.580000px;}
.ws12f{word-spacing:8.586000px;}
.wsd1{word-spacing:8.640000px;}
.wsf2{word-spacing:8.700000px;}
.ws136{word-spacing:8.748000px;}
.ws3b{word-spacing:8.760000px;}
.ws7a{word-spacing:8.778000px;}
.ws14{word-spacing:8.856000px;}
.ws42{word-spacing:8.880000px;}
.ws7b{word-spacing:8.949000px;}
.wsb2{word-spacing:9.000000px;}
.ws92{word-spacing:9.060000px;}
.ws103{word-spacing:9.072000px;}
.wsa1{word-spacing:9.120000px;}
.ws11a{word-spacing:9.126000px;}
.ws11{word-spacing:9.180000px;}
.ws55{word-spacing:9.261000px;}
.ws8c{word-spacing:9.300000px;}
.ws52{word-spacing:9.360000px;}
.wsd3{word-spacing:9.420000px;}
.ws104{word-spacing:9.504000px;}
.ws122{word-spacing:9.558000px;}
.ws9{word-spacing:9.600000px;}
.ws126{word-spacing:9.666000px;}
.ws90{word-spacing:9.720000px;}
.ws5e{word-spacing:9.780000px;}
.wsbb{word-spacing:9.840000px;}
.ws13{word-spacing:9.882000px;}
.ws81{word-spacing:9.960000px;}
.ws111{word-spacing:9.990000px;}
.ws75{word-spacing:10.020000px;}
.ws12e{word-spacing:10.044000px;}
.ws57{word-spacing:10.080000px;}
.ws1a{word-spacing:10.098000px;}
.wse8{word-spacing:10.140000px;}
.ws137{word-spacing:10.152000px;}
.ws33{word-spacing:10.200000px;}
.ws2e{word-spacing:10.260000px;}
.ws51{word-spacing:10.320000px;}
.wsf8{word-spacing:10.380000px;}
.ws109{word-spacing:10.422000px;}
.ws93{word-spacing:10.440000px;}
.ws86{word-spacing:10.500000px;}
.ws11e{word-spacing:10.530000px;}
.wsd0{word-spacing:10.620000px;}
.ws16{word-spacing:10.638000px;}
.ws83{word-spacing:10.680000px;}
.ws1f{word-spacing:10.692000px;}
.wsd{word-spacing:10.710000px;}
.ws97{word-spacing:10.740000px;}
.ws63{word-spacing:10.800000px;}
.ws65{word-spacing:10.920000px;}
.wsb4{word-spacing:10.980000px;}
.ws115{word-spacing:11.016000px;}
.ws94{word-spacing:11.040000px;}
.ws5c{word-spacing:11.100000px;}
.ws121{word-spacing:11.124000px;}
.ws80{word-spacing:11.160000px;}
.ws123{word-spacing:11.178000px;}
.wsa7{word-spacing:11.220000px;}
.wsbe{word-spacing:11.280000px;}
.ws37{word-spacing:11.298000px;}
.ws4c{word-spacing:11.340000px;}
.wse7{word-spacing:11.400000px;}
.ws1b{word-spacing:11.448000px;}
.ws74{word-spacing:11.460000px;}
.ws134{word-spacing:11.556000px;}
.ws27{word-spacing:11.610000px;}
.wsf6{word-spacing:11.640000px;}
.ws8f{word-spacing:11.760000px;}
.ws73{word-spacing:11.820000px;}
.ws130{word-spacing:11.826000px;}
.ws28{word-spacing:11.934000px;}
.ws2f{word-spacing:11.940000px;}
.wsf7{word-spacing:12.000000px;}
.wsbc{word-spacing:12.060000px;}
.wsa2{word-spacing:12.120000px;}
.wse3{word-spacing:12.240000px;}
.ws46{word-spacing:12.360000px;}
.ws40{word-spacing:12.420000px;}
.ws5b{word-spacing:12.480000px;}
.ws34{word-spacing:12.540000px;}
.ws4f{word-spacing:12.600000px;}
.ws72{word-spacing:12.660000px;}
.ws48{word-spacing:12.780000px;}
.ws139{word-spacing:12.798000px;}
.ws23{word-spacing:12.852000px;}
.ws85{word-spacing:12.900000px;}
.ws2d{word-spacing:12.960000px;}
.ws131{word-spacing:13.068000px;}
.wsa6{word-spacing:13.080000px;}
.wse6{word-spacing:13.140000px;}
.ws100{word-spacing:13.200000px;}
.wsf3{word-spacing:13.260000px;}
.wsb9{word-spacing:13.380000px;}
.ws12d{word-spacing:13.446000px;}
.ws10{word-spacing:13.500000px;}
.ws50{word-spacing:13.620000px;}
.ws11f{word-spacing:13.662000px;}
.wsed{word-spacing:13.740000px;}
.ws106{word-spacing:13.770000px;}
.ws82{word-spacing:13.800000px;}
.wsd4{word-spacing:13.860000px;}
.wsf4{word-spacing:13.920000px;}
.wsc{word-spacing:13.944000px;}
.ws76{word-spacing:14.040000px;}
.wsb8{word-spacing:14.160000px;}
.ws47{word-spacing:14.220000px;}
.ws25{word-spacing:14.256000px;}
.wsb7{word-spacing:14.340000px;}
.ws2a{word-spacing:14.400000px;}
.wsa9{word-spacing:14.460000px;}
.ws13b{word-spacing:14.472000px;}
.ws88{word-spacing:14.640000px;}
.ws84{word-spacing:14.700000px;}
.wsf0{word-spacing:14.760000px;}
.ws4b{word-spacing:14.880000px;}
.ws138{word-spacing:14.904000px;}
.ws117{word-spacing:14.958000px;}
.ws59{word-spacing:15.000000px;}
.wsd2{word-spacing:15.180000px;}
.ws10d{word-spacing:15.228000px;}
.ws8a{word-spacing:15.300000px;}
.wsa4{word-spacing:15.360000px;}
.wsec{word-spacing:15.480000px;}
.wsee{word-spacing:15.540000px;}
.ws12c{word-spacing:15.606000px;}
.wsa5{word-spacing:15.660000px;}
.ws8b{word-spacing:15.720000px;}
.wsa8{word-spacing:15.900000px;}
.ws41{word-spacing:15.960000px;}
.ws4a{word-spacing:16.020000px;}
.ws105{word-spacing:16.038000px;}
.ws1d{word-spacing:16.254000px;}
.ws26{word-spacing:16.362000px;}
.ws4e{word-spacing:16.380000px;}
.ws70{word-spacing:16.440000px;}
.ws8e{word-spacing:16.560000px;}
.wsdf{word-spacing:16.620000px;}
.wse9{word-spacing:16.920000px;}
.ws125{word-spacing:16.956000px;}
.ws21{word-spacing:17.010000px;}
.ws5d{word-spacing:17.040000px;}
.wse2{word-spacing:17.100000px;}
.wsf{word-spacing:17.172000px;}
.ws6a{word-spacing:17.220000px;}
.wsd8{word-spacing:17.328000px;}
.ws116{word-spacing:17.388000px;}
.ws68{word-spacing:17.460000px;}
.ws24{word-spacing:17.496000px;}
.ws32{word-spacing:17.520000px;}
.ws10c{word-spacing:17.766000px;}
.ws91{word-spacing:17.880000px;}
.ws8d{word-spacing:17.940000px;}
.wseb{word-spacing:18.000000px;}
.wsfa{word-spacing:18.900000px;}
.ws128{word-spacing:18.954000px;}
.ws6e{word-spacing:18.960000px;}
.ws5f{word-spacing:19.140000px;}
.ws12{word-spacing:19.332000px;}
.wse0{word-spacing:19.560000px;}
.ws124{word-spacing:19.764000px;}
.ws71{word-spacing:20.220000px;}
.wsba{word-spacing:20.340000px;}
.ws96{word-spacing:20.460000px;}
.ws127{word-spacing:22.086000px;}
.ws49{word-spacing:22.200000px;}
.ws58{word-spacing:22.380000px;}
.ws110{word-spacing:22.896000px;}
.ws78{word-spacing:22.920000px;}
.wsea{word-spacing:23.340000px;}
.wsf9{word-spacing:23.640000px;}
.ws77{word-spacing:24.060000px;}
.wsef{word-spacing:24.360000px;}
.ws13d{word-spacing:25.110000px;}
.ws17{word-spacing:25.488000px;}
.ws6d{word-spacing:26.280000px;}
.ws1c{word-spacing:26.298000px;}
.wsfb{word-spacing:26.340000px;}
.ws10f{word-spacing:26.676000px;}
.ws22{word-spacing:27.162000px;}
.ws29{word-spacing:28.350000px;}
.ws13c{word-spacing:29.268000px;}
.ws98{word-spacing:30.540000px;}
.ws3c{word-spacing:31.020000px;}
.wsc6{word-spacing:40.260000px;}
.wsdc{word-spacing:65.445600px;}
.wsdd{word-spacing:75.790200px;}
.ws99{word-spacing:104.040000px;}
.wsda{word-spacing:126.046800px;}
.wsca{word-spacing:147.543000px;}
.wscd{word-spacing:157.441200px;}
.wsa0{word-spacing:160.255800px;}
.ws9e{word-spacing:178.591800px;}
.wsc9{word-spacing:217.521000px;}
.wsce{word-spacing:217.765200px;}
.wsc8{word-spacing:222.904200px;}
.wscb{word-spacing:281.769000px;}
.wscf{word-spacing:281.912400px;}
.ws9c{word-spacing:355.564200px;}
.wsc7{word-spacing:382.897200px;}
.ws9d{word-spacing:384.586800px;}
.wsaa{word-spacing:460.015200px;}
.wsb0{word-spacing:497.021400px;}
.wsab{word-spacing:554.045400px;}
.wsac{word-spacing:582.605400px;}
.wsdb{word-spacing:596.822400px;}
.wsb1{word-spacing:605.405400px;}
.wsae{word-spacing:605.406000px;}
.wsad{word-spacing:620.957400px;}
.wsaf{word-spacing:864.476400px;}
._3d{margin-left:-629.412000px;}
._18{margin-left:-580.824000px;}
._16{margin-left:-420.480000px;}
._3c{margin-left:-79.188000px;}
._17{margin-left:-47.988000px;}
._12{margin-left:-19.680600px;}
._37{margin-left:-16.300485px;}
._13{margin-left:-15.180015px;}
._22{margin-left:-11.340029px;}
._1{margin-left:-8.640000px;}
._5{margin-left:-6.597615px;}
._7{margin-left:-5.469600px;}
._2{margin-left:-4.140000px;}
._a{margin-left:-2.959529px;}
._0{margin-left:-1.919985px;}
._9{width:1.080571px;}
._6{width:2.297985px;}
._5e{width:4.345785px;}
._3{width:6.299985px;}
._4{width:7.799985px;}
._c{width:9.479985px;}
._b{width:10.745985px;}
._4d{width:13.164959px;}
._11{width:14.286000px;}
._60{width:15.787156px;}
._e{width:16.937971px;}
._14{width:18.151515px;}
._5f{width:22.156829px;}
._10{width:23.591971px;}
._5d{width:26.335529px;}
._38{width:27.407356px;}
._61{width:28.548571px;}
._5c{width:59.803815px;}
._8{width:61.343400px;}
._50{width:68.031585px;}
._4e{width:74.504985px;}
._39{width:76.920000px;}
._4b{width:84.296385px;}
._1a{width:87.334800px;}
._19{width:94.972800px;}
._4a{width:108.973200px;}
._3b{width:115.800000px;}
._f{width:131.698171px;}
._d{width:133.679400px;}
._5b{width:140.536200px;}
._54{width:147.246015px;}
._56{width:161.415000px;}
._59{width:169.143600px;}
._49{width:175.045800px;}
._1d{width:186.469259px;}
._3a{width:192.600000px;}
._40{width:194.484600px;}
._15{width:201.720000px;}
._45{width:204.787800px;}
._55{width:211.239600px;}
._5a{width:213.975000px;}
._3f{width:217.294800px;}
._52{width:222.060000px;}
._3e{width:226.200000px;}
._51{width:234.183585px;}
._58{width:273.718800px;}
._41{width:275.721600px;}
._4f{width:277.040985px;}
._44{width:284.722800px;}
._1e{width:289.387800px;}
._1f{width:295.058400px;}
._2e{width:325.289400px;}
._57{width:327.685800px;}
._47{width:330.321000px;}
._43{width:336.777000px;}
._1b{width:375.255600px;}
._24{width:389.965815px;}
._29{width:397.020929px;}
._4c{width:399.957600px;}
._20{width:406.891800px;}
._42{width:414.064200px;}
._1c{width:427.815600px;}
._46{width:437.296800px;}
._21{width:459.355800px;}
._48{width:503.884800px;}
._35{width:624.093000px;}
._23{width:678.261600px;}
._53{width:679.548000px;}
._2a{width:695.421000px;}
._2b{width:724.989000px;}
._2c{width:726.141000px;}
._32{width:751.197000px;}
._2d{width:760.941000px;}
._31{width:804.093000px;}
._2f{width:810.435000px;}
._34{width:844.748385px;}
._28{width:877.100385px;}
._26{width:901.196985px;}
._33{width:926.685000px;}
._27{width:928.797000px;}
._36{width:933.692400px;}
._25{width:944.157000px;}
._30{width:973.917000px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:31.200000px;}
.fsd{font-size:31.608000px;}
.fs10{font-size:34.687200px;}
.fsf{font-size:35.100000px;}
.fs13{font-size:37.050000px;}
.fs11{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fsc{font-size:47.530800px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs12{font-size:78.540000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y109{bottom:3.599700px;}
.y175{bottom:5.099400px;}
.y108{bottom:7.499700px;}
.y174{bottom:7.949400px;}
.y173{bottom:8.999400px;}
.y5{bottom:66.525004px;}
.y37{bottom:67.597501px;}
.y6e{bottom:71.940600px;}
.y6d{bottom:83.940600px;}
.y36{bottom:84.097501px;}
.yb6{bottom:84.749850px;}
.ye5{bottom:85.275000px;}
.yfe{bottom:85.426200px;}
.y1a4{bottom:85.614150px;}
.y139{bottom:85.988700px;}
.y1d5{bottom:88.426200px;}
.y121{bottom:90.525000px;}
.y213{bottom:94.051200px;}
.y172{bottom:94.567500px;}
.y6c{bottom:95.940600px;}
.y4{bottom:97.125005px;}
.ye4{bottom:98.775000px;}
.y171{bottom:103.566900px;}
.y120{bottom:104.025000px;}
.yb5{bottom:104.249850px;}
.yfd{bottom:104.926200px;}
.y1a3{bottom:105.114150px;}
.y138{bottom:105.488700px;}
.y69{bottom:108.315600px;}
.y212{bottom:110.551200px;}
.y11f{bottom:117.525000px;}
.y6a{bottom:119.190600px;}
.y1d4{bottom:121.426200px;}
.yb4{bottom:123.749850px;}
.y1ba{bottom:124.426200px;}
.y1a2{bottom:124.614150px;}
.y137{bottom:124.988700px;}
.y211{bottom:127.051200px;}
.yfc{bottom:134.926200px;}
.y11e{bottom:135.525000px;}
.y1d3{bottom:137.926200px;}
.y170{bottom:138.066900px;}
.y21{bottom:139.264499px;}
.ye1{bottom:140.058150px;}
.yb3{bottom:143.249850px;}
.y210{bottom:143.551200px;}
.y1b9{bottom:143.926200px;}
.y1a1{bottom:144.114150px;}
.y136{bottom:144.488700px;}
.y11d{bottom:154.275000px;}
.y1d2{bottom:154.426200px;}
.y16f{bottom:157.566900px;}
.y20f{bottom:160.051200px;}
.yb2{bottom:162.749850px;}
.y68{bottom:163.426200px;}
.y135{bottom:163.988700px;}
.yfb{bottom:164.926200px;}
.ydf{bottom:167.807286px;}
.y1d1{bottom:170.926200px;}
.y1a0{bottom:174.114150px;}
.y20e{bottom:176.551200px;}
.y16e{bottom:177.066900px;}
.yb1{bottom:182.249850px;}
.y67{bottom:182.926200px;}
.y1d0{bottom:187.426200px;}
.y35{bottom:190.576501px;}
.y20d{bottom:193.051200px;}
.y134{bottom:193.988700px;}
.y16d{bottom:196.566900px;}
.y18{bottom:196.933500px;}
.ye3{bottom:198.874276px;}
.yb0{bottom:201.749850px;}
.y66{bottom:202.426200px;}
.y1cf{bottom:203.926200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y20c{bottom:209.551200px;}
.ye2{bottom:212.800800px;}
.yfa{bottom:212.926200px;}
.y11c{bottom:214.801200px;}
.y16c{bottom:216.066900px;}
.y1ce{bottom:220.426200px;}
.yaf{bottom:221.249850px;}
.y65{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y20b{bottom:226.051200px;}
.y11b{bottom:228.301200px;}
.y19f{bottom:228.863700px;}
.yde{bottom:231.159600px;}
.ye0{bottom:231.813000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y16b{bottom:235.566900px;}
.y1cd{bottom:236.926200px;}
.yae{bottom:240.749850px;}
.y64{bottom:241.426200px;}
.y11a{bottom:241.801200px;}
.yf9{bottom:242.176200px;}
.y20a{bottom:242.551200px;}
.y19e{bottom:248.363700px;}
.y133{bottom:252.488700px;}
.y1cc{bottom:253.426200px;}
.y34{bottom:254.926501px;}
.y16a{bottom:255.066900px;}
.y209{bottom:259.051200px;}
.y119{bottom:259.801200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yad{bottom:260.249850px;}
.y63{bottom:260.926200px;}
.yf8{bottom:261.676200px;}
.y19d{bottom:267.863700px;}
.y132{bottom:271.988700px;}
.ydd{bottom:272.363700px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y169{bottom:274.566900px;}
.y208{bottom:275.551200px;}
.y118{bottom:278.551200px;}
.yac{bottom:279.749850px;}
.y62{bottom:280.426200px;}
.yf7{bottom:281.176200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y19c{bottom:287.363700px;}
.ydc{bottom:291.863700px;}
.y207{bottom:292.051200px;}
.yab{bottom:299.249850px;}
.y61{bottom:299.926200px;}
.yf6{bottom:300.676200px;}
.y131{bottom:301.988700px;}
.y168{bottom:304.566900px;}
.y19b{bottom:306.863700px;}
.y206{bottom:308.551200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ydb{bottom:311.363700px;}
.y117{bottom:316.426200px;}
.yaa{bottom:318.749850px;}
.y33{bottom:319.276501px;}
.y60{bottom:319.426200px;}
.yf5{bottom:320.176200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y205{bottom:325.051200px;}
.y19a{bottom:326.363700px;}
.yda{bottom:330.863700px;}
.y1cb{bottom:331.426200px;}
.y116{bottom:335.926200px;}
.ya9{bottom:338.249850px;}
.y5f{bottom:338.926200px;}
.yf4{bottom:339.676200px;}
.y204{bottom:341.551200px;}
.y199{bottom:345.863700px;}
.yf{bottom:348.133500px;}
.yd9{bottom:350.363700px;}
.y115{bottom:355.426200px;}
.y167{bottom:355.566900px;}
.ya8{bottom:357.749850px;}
.y203{bottom:358.051200px;}
.y5e{bottom:358.426200px;}
.yf3{bottom:359.176200px;}
.y198{bottom:365.363700px;}
.y130{bottom:366.488700px;}
.yd8{bottom:369.863700px;}
.y202{bottom:374.551200px;}
.y114{bottom:374.926200px;}
.y166{bottom:375.066900px;}
.ya7{bottom:377.249850px;}
.y5d{bottom:377.926200px;}
.yf2{bottom:378.676200px;}
.y197{bottom:384.863700px;}
.y12f{bottom:385.988700px;}
.y32{bottom:386.557500px;}
.ye{bottom:386.785499px;}
.y201{bottom:391.051200px;}
.y113{bottom:394.426200px;}
.y165{bottom:394.566900px;}
.ya6{bottom:396.749850px;}
.y1b8{bottom:397.426200px;}
.yf1{bottom:398.176200px;}
.yd7{bottom:399.863700px;}
.y196{bottom:404.363700px;}
.y12e{bottom:405.488700px;}
.y200{bottom:407.551200px;}
.yd{bottom:408.044999px;}
.y1ca{bottom:409.426200px;}
.y112{bottom:413.926200px;}
.y164{bottom:414.066900px;}
.y1b7{bottom:416.926200px;}
.yf0{bottom:417.676200px;}
.y195{bottom:423.863700px;}
.y1ff{bottom:424.051200px;}
.y12d{bottom:424.988700px;}
.ya5{bottom:426.749850px;}
.yd6{bottom:429.863700px;}
.y5c{bottom:433.426200px;}
.y1b6{bottom:436.426200px;}
.yef{bottom:437.176200px;}
.y1fe{bottom:440.551200px;}
.y194{bottom:443.363700px;}
.y163{bottom:444.066900px;}
.y12c{bottom:444.488700px;}
.y31{bottom:447.976501px;}
.y5b{bottom:448.426200px;}
.y111{bottom:452.926200px;}
.y1b5{bottom:455.926200px;}
.yee{bottom:456.676200px;}
.ya4{bottom:456.749850px;}
.y1fd{bottom:457.051200px;}
.y193{bottom:462.863700px;}
.y5a{bottom:463.426200px;}
.y12b{bottom:463.988700px;}
.y110{bottom:472.426200px;}
.y1fc{bottom:473.551200px;}
.y1b4{bottom:475.426200px;}
.yed{bottom:476.176200px;}
.y59{bottom:478.426200px;}
.yd5{bottom:480.863700px;}
.y192{bottom:482.363700px;}
.y12a{bottom:483.488700px;}
.y1c9{bottom:487.426200px;}
.y1fb{bottom:490.051200px;}
.y58{bottom:493.426200px;}
.y162{bottom:495.066900px;}
.yec{bottom:495.676200px;}
.yd4{bottom:500.363700px;}
.y191{bottom:501.863700px;}
.y10f{bottom:502.426200px;}
.yc{bottom:502.864502px;}
.y129{bottom:502.988700px;}
.y1c8{bottom:503.926200px;}
.y1b3{bottom:505.426200px;}
.y1fa{bottom:506.551200px;}
.y57{bottom:508.426200px;}
.ya3{bottom:514.426200px;}
.y161{bottom:514.566900px;}
.yeb{bottom:515.176200px;}
.y30{bottom:515.257500px;}
.yd3{bottom:519.863700px;}
.y1c7{bottom:520.426200px;}
.yb{bottom:520.864502px;}
.y190{bottom:521.363700px;}
.y128{bottom:522.488700px;}
.y1f9{bottom:523.051200px;}
.y56{bottom:523.426200px;}
.ya2{bottom:533.926200px;}
.y160{bottom:534.066900px;}
.yea{bottom:534.676200px;}
.y55{bottom:538.426200px;}
.ya{bottom:538.864499px;}
.yd2{bottom:539.363700px;}
.y1f8{bottom:539.551200px;}
.y18f{bottom:540.863700px;}
.y127{bottom:541.988700px;}
.y1c6{bottom:545.926200px;}
.y54{bottom:553.426200px;}
.y15f{bottom:553.566900px;}
.ye9{bottom:554.176200px;}
.y10e{bottom:554.926200px;}
.y1f7{bottom:556.051200px;}
.y9{bottom:556.864499px;}
.y85{bottom:557.332800px;}
.y1b2{bottom:559.426200px;}
.y18e{bottom:560.363700px;}
.y126{bottom:561.488700px;}
.y1c5{bottom:562.426200px;}
.y53{bottom:568.426200px;}
.yd1{bottom:569.363700px;}
.y84{bottom:570.832800px;}
.y1f6{bottom:572.551200px;}
.ya1{bottom:572.926200px;}
.y15e{bottom:573.066900px;}
.ye8{bottom:573.676200px;}
.y10d{bottom:574.426200px;}
.y2f{bottom:576.676501px;}
.y1b1{bottom:578.926200px;}
.y18d{bottom:579.863700px;}
.y52{bottom:583.426200px;}
.y83{bottom:584.332800px;}
.y1f5{bottom:589.051200px;}
.y125{bottom:591.488700px;}
.ya0{bottom:592.426200px;}
.y10c{bottom:593.926200px;}
.y1c4{bottom:595.426200px;}
.y82{bottom:597.832800px;}
.y51{bottom:598.426200px;}
.y15d{bottom:603.066900px;}
.ye7{bottom:603.676200px;}
.y1f4{bottom:605.551200px;}
.y18c{bottom:609.863700px;}
.y81{bottom:611.332800px;}
.y9f{bottom:611.926200px;}
.y50{bottom:613.426200px;}
.y2e{bottom:613.957501px;}
.y1b0{bottom:617.926200px;}
.yd0{bottom:620.363700px;}
.y1f3{bottom:622.051200px;}
.y80{bottom:624.832800px;}
.y2d{bottom:628.957501px;}
.y9e{bottom:631.426200px;}
.y10b{bottom:632.926200px;}
.y1af{bottom:637.426200px;}
.y7f{bottom:638.332800px;}
.y1f2{bottom:638.551200px;}
.ycf{bottom:639.863700px;}
.y4f{bottom:640.426200px;}
.ye6{bottom:641.176200px;}
.y2c{bottom:643.957500px;}
.y8{bottom:645.510000px;}
.y9d{bottom:650.926200px;}
.y7e{bottom:651.832800px;}
.y10a{bottom:652.426200px;}
.y15c{bottom:654.066900px;}
.y1f1{bottom:655.051200px;}
.y124{bottom:655.988700px;}
.y4e{bottom:656.926200px;}
.yce{bottom:659.363700px;}
.y7{bottom:666.771000px;}
.y9c{bottom:670.426200px;}
.y1f0{bottom:671.551200px;}
.y4d{bottom:671.926200px;}
.y15b{bottom:673.566900px;}
.y123{bottom:675.488700px;}
.y1ae{bottom:676.426200px;}
.y7d{bottom:677.145300px;}
.ycd{bottom:678.863700px;}
.y1c3{bottom:682.426200px;}
.y4c{bottom:686.926200px;}
.y1ef{bottom:688.051200px;}
.y9b{bottom:689.926200px;}
.y7c{bottom:690.645300px;}
.y18b{bottom:690.863700px;}
.y15a{bottom:693.066900px;}
.y122{bottom:694.988700px;}
.y1ad{bottom:695.926200px;}
.ycc{bottom:698.363700px;}
.y4b{bottom:701.926200px;}
.y7b{bottom:704.145300px;}
.y1ee{bottom:704.551200px;}
.y9a{bottom:709.426200px;}
.y18a{bottom:710.363700px;}
.y159{bottom:712.566900px;}
.y1ac{bottom:715.426200px;}
.y4a{bottom:716.926200px;}
.y7a{bottom:717.645300px;}
.ycb{bottom:717.863700px;}
.y1ed{bottom:721.051200px;}
.y2b{bottom:725.317498px;}
.y6{bottom:726.298500px;}
.y99{bottom:728.926200px;}
.y189{bottom:729.863700px;}
.y79{bottom:731.145300px;}
.y49{bottom:731.926200px;}
.y158{bottom:732.066900px;}
.y1ab{bottom:734.926200px;}
.yca{bottom:737.363700px;}
.y1ec{bottom:737.551200px;}
.y107{bottom:739.426500px;}
.y48{bottom:746.926200px;}
.y153{bottom:748.238700px;}
.y98{bottom:748.426200px;}
.y188{bottom:749.363700px;}
.y78{bottom:752.476200px;}
.y3{bottom:752.599495px;}
.y1eb{bottom:754.051200px;}
.y2a{bottom:755.317498px;}
.yc9{bottom:756.863700px;}
.y1c2{bottom:760.426200px;}
.y47{bottom:761.926200px;}
.y157{bottom:762.066900px;}
.y1aa{bottom:764.926200px;}
.y77{bottom:765.976200px;}
.y152{bottom:766.238700px;}
.y97{bottom:767.926200px;}
.y187{bottom:768.863700px;}
.y1ea{bottom:770.551200px;}
.y29{bottom:773.317498px;}
.yc8{bottom:776.363700px;}
.y46{bottom:776.926200px;}
.y76{bottom:779.476200px;}
.y151{bottom:779.738700px;}
.y1c1{bottom:779.926200px;}
.y106{bottom:781.426200px;}
.y1e9{bottom:787.051200px;}
.y96{bottom:787.426200px;}
.y186{bottom:788.363700px;}
.y28{bottom:791.317498px;}
.y45{bottom:791.926200px;}
.y75{bottom:792.976200px;}
.y150{bottom:793.238700px;}
.yc7{bottom:795.863700px;}
.y1c0{bottom:799.426200px;}
.y105{bottom:800.926200px;}
.y1e8{bottom:803.551200px;}
.y74{bottom:806.476200px;}
.y14f{bottom:806.738700px;}
.y44{bottom:806.926200px;}
.y185{bottom:807.863700px;}
.y156{bottom:813.066900px;}
.yc6{bottom:815.363700px;}
.y1bf{bottom:818.926200px;}
.y1e7{bottom:820.051200px;}
.y14e{bottom:820.238700px;}
.y104{bottom:820.426200px;}
.y43{bottom:821.926200px;}
.y95{bottom:826.426200px;}
.y184{bottom:827.363700px;}
.y73{bottom:829.238700px;}
.y155{bottom:832.566900px;}
.y14d{bottom:833.738700px;}
.yc5{bottom:834.863700px;}
.y1e6{bottom:836.551200px;}
.y42{bottom:836.926200px;}
.y1be{bottom:838.426200px;}
.y103{bottom:839.926200px;}
.y72{bottom:842.738700px;}
.y27{bottom:843.789002px;}
.y94{bottom:845.926200px;}
.y183{bottom:846.863700px;}
.y14c{bottom:847.238700px;}
.y41{bottom:851.926200px;}
.y154{bottom:852.066900px;}
.y1e5{bottom:853.051200px;}
.yc4{bottom:854.363700px;}
.y71{bottom:856.238700px;}
.y1bd{bottom:857.926200px;}
.y102{bottom:859.426200px;}
.y14b{bottom:860.738700px;}
.y93{bottom:865.426200px;}
.y182{bottom:866.363700px;}
.y40{bottom:866.926200px;}
.y1e4{bottom:869.551200px;}
.y70{bottom:869.738700px;}
.yc3{bottom:873.863700px;}
.y14a{bottom:874.238700px;}
.y1bc{bottom:877.426200px;}
.y101{bottom:878.926200px;}
.y2{bottom:879.369000px;}
.y3f{bottom:881.926200px;}
.y6f{bottom:883.238700px;}
.y92{bottom:884.926200px;}
.y181{bottom:885.863700px;}
.y1e3{bottom:886.051200px;}
.y149{bottom:887.738700px;}
.yc2{bottom:893.363700px;}
.y17d{bottom:894.276900px;}
.y100{bottom:898.426200px;}
.y148{bottom:901.238700px;}
.y1e2{bottom:902.551200px;}
.y91{bottom:904.426200px;}
.y180{bottom:905.363700px;}
.y1bb{bottom:907.426200px;}
.y26{bottom:907.440000px;}
.y17c{bottom:908.316900px;}
.yc1{bottom:912.863700px;}
.y147{bottom:914.738700px;}
.y1e1{bottom:919.051200px;}
.y90{bottom:923.926200px;}
.y17f{bottom:924.863700px;}
.y17b{bottom:927.066900px;}
.y146{bottom:928.238700px;}
.yff{bottom:928.426200px;}
.y3e{bottom:928.801200px;}
.yc0{bottom:932.363700px;}
.y1e0{bottom:935.551200px;}
.y25{bottom:938.940000px;}
.y145{bottom:941.738700px;}
.y8f{bottom:943.426200px;}
.y17e{bottom:944.363700px;}
.y17a{bottom:945.816900px;}
.ybf{bottom:951.863700px;}
.y1df{bottom:952.051200px;}
.y144{bottom:955.238700px;}
.y3d{bottom:955.801200px;}
.y8e{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y1de{bottom:968.551200px;}
.y143{bottom:968.738700px;}
.y24{bottom:970.440000px;}
.ybe{bottom:971.363700px;}
.y142{bottom:982.238700px;}
.y8d{bottom:982.426200px;}
.y1dd{bottom:985.051200px;}
.ybd{bottom:990.863700px;}
.y3c{bottom:994.801200px;}
.y141{bottom:995.738700px;}
.y1dc{bottom:1001.551200px;}
.y8c{bottom:1001.926200px;}
.y1a9{bottom:1003.073700px;}
.y179{bottom:1008.698700px;}
.y140{bottom:1009.238700px;}
.ybc{bottom:1010.363700px;}
.y1a8{bottom:1017.113700px;}
.y1db{bottom:1018.051200px;}
.y3b{bottom:1018.801200px;}
.y8b{bottom:1021.426200px;}
.y178{bottom:1021.823700px;}
.y13f{bottom:1022.738700px;}
.ybb{bottom:1029.863700px;}
.y1a7{bottom:1030.613700px;}
.y1da{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.y177{bottom:1035.863700px;}
.y13e{bottom:1036.238700px;}
.y8a{bottom:1040.926200px;}
.y1a6{bottom:1044.113700px;}
.y38{bottom:1047.511200px;}
.yba{bottom:1049.363700px;}
.y13d{bottom:1049.738700px;}
.y1d9{bottom:1051.051200px;}
.y89{bottom:1060.426200px;}
.y1a5{bottom:1062.488700px;}
.y176{bottom:1062.863700px;}
.y13c{bottom:1063.238700px;}
.y1d8{bottom:1067.551200px;}
.yb9{bottom:1068.863700px;}
.y88{bottom:1079.926200px;}
.y13b{bottom:1081.238700px;}
.y6b{bottom:1083.782250px;}
.y1d7{bottom:1084.051200px;}
.y3a{bottom:1097.407950px;}
.yb8{bottom:1098.863700px;}
.y87{bottom:1099.426200px;}
.y13a{bottom:1099.988700px;}
.y1d6{bottom:1100.551200px;}
.y39{bottom:1110.907950px;}
.yb7{bottom:1141.238100px;}
.y86{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h2d{height:22.308000px;}
.h23{height:22.500000px;}
.h25{height:24.281040px;}
.h2a{height:24.627912px;}
.h27{height:25.498500px;}
.h19{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1f{height:33.033906px;}
.h22{height:34.320000px;}
.h1a{height:34.608000px;}
.h20{height:34.924362px;}
.hb{height:36.726562px;}
.h1c{height:36.990000px;}
.h2c{height:38.148000px;}
.h16{height:38.610000px;}
.h1b{height:39.456000px;}
.h21{height:40.755000px;}
.hf{height:41.317383px;}
.h24{height:42.000000px;}
.h28{height:42.600000px;}
.h18{height:44.388000px;}
.h2b{height:45.300750px;}
.h1e{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1d{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:49.320000px;}
.h15{height:51.786000px;}
.h26{height:51.857400px;}
.h29{height:54.533145px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:143.073000px;}
.w7{width:328.998000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x1e{left:-1.062000px;}
.x0{left:0.000000px;}
.x16{left:74.514000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x2e{left:123.000000px;}
.xb{left:126.112500px;}
.x28{left:127.875000px;}
.x2c{left:129.211650px;}
.x1f{left:135.588000px;}
.x24{left:138.206700px;}
.x6{left:145.650000px;}
.x2d{left:153.625050px;}
.x20{left:159.288000px;}
.x29{left:164.739600px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x26{left:213.266850px;}
.x25{left:217.371300px;}
.x9{left:228.743990px;}
.x27{left:232.500000px;}
.x1a{left:241.707150px;}
.x18{left:243.000000px;}
.x22{left:260.238000px;}
.x1b{left:264.000000px;}
.x2b{left:272.307750px;}
.x1d{left:281.958000px;}
.x1c{left:283.603350px;}
.x8{left:293.590494px;}
.x10{left:296.883600px;}
.x11{left:309.003750px;}
.x19{left:365.744700px;}
.x14{left:374.920500px;}
.x15{left:405.334500px;}
.xe{left:430.345500px;}
.xf{left:433.550646px;}
.x3{left:454.959000px;}
.x21{left:459.696000px;}
.x12{left:488.926800px;}
.x13{left:516.851145px;}
.x17{left:517.993500px;}
.x2a{left:539.926650px;}
.x2f{left:565.175550px;}
.xd{left:570.946500px;}
.x23{left:610.956000px;}
.xc{left:650.025750px;}
@media print{
.v6{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.000000pt;}
.v1{vertical-align:-1.692800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.680405pt;}
.v5{vertical-align:14.080000pt;}
.v4{vertical-align:17.599467pt;}
.ls11{letter-spacing:-2.218667pt;}
.ls1f{letter-spacing:-0.624000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls14{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005013pt;}
.lsb{letter-spacing:0.042250pt;}
.ls1{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.560000pt;}
.ls1b{letter-spacing:0.597333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:8.139733pt;}
.ls18{letter-spacing:50.056160pt;}
.ls7{letter-spacing:60.023467pt;}
.ls6{letter-spacing:60.091200pt;}
.lsf{letter-spacing:74.186667pt;}
.lse{letter-spacing:117.386667pt;}
.ls10{letter-spacing:136.189655pt;}
.ls15{letter-spacing:158.026667pt;}
.ls17{letter-spacing:165.713600pt;}
.ls1c{letter-spacing:178.088000pt;}
.ls19{letter-spacing:198.986667pt;}
.ls1a{letter-spacing:214.567311pt;}
.wsc4{word-spacing:-228.266667pt;}
.wsd7{word-spacing:-214.567311pt;}
.ws9a{word-spacing:-136.522667pt;}
.wsa3{word-spacing:-136.189655pt;}
.wsc5{word-spacing:-110.133333pt;}
.ws9b{word-spacing:-60.261333pt;}
.wsd6{word-spacing:-50.056160pt;}
.ws1{word-spacing:-12.432000pt;}
.wsc2{word-spacing:-12.106667pt;}
.ws7f{word-spacing:-11.850667pt;}
.ws7c{word-spacing:-11.733333pt;}
.ws3{word-spacing:-11.306667pt;}
.ws60{word-spacing:-10.773333pt;}
.ws61{word-spacing:-10.562400pt;}
.ws7d{word-spacing:-10.176000pt;}
.wsfe{word-spacing:-9.552000pt;}
.wsfd{word-spacing:-9.504000pt;}
.ws8{word-spacing:-9.045333pt;}
.wsfc{word-spacing:-8.736000pt;}
.ws7{word-spacing:-8.720000pt;}
.ws4{word-spacing:-8.618667pt;}
.wsd9{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws5{word-spacing:-7.840000pt;}
.wsc3{word-spacing:-7.349333pt;}
.ws6{word-spacing:-7.317333pt;}
.ws7e{word-spacing:-6.614400pt;}
.ws9f{word-spacing:-6.144000pt;}
.wscc{word-spacing:-5.435733pt;}
.wsbf{word-spacing:-3.029333pt;}
.ws62{word-spacing:-0.400000pt;}
.wsd5{word-spacing:-0.373333pt;}
.ws79{word-spacing:-0.042250pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:2.613333pt;}
.ws11d{word-spacing:2.928000pt;}
.ws113{word-spacing:3.024000pt;}
.ws11c{word-spacing:3.408000pt;}
.ws112{word-spacing:3.504000pt;}
.ws12b{word-spacing:3.600000pt;}
.ws12a{word-spacing:4.176000pt;}
.wsf1{word-spacing:4.373333pt;}
.ws6f{word-spacing:4.586667pt;}
.ws133{word-spacing:4.656000pt;}
.ws3d{word-spacing:4.800000pt;}
.ws18{word-spacing:4.848000pt;}
.wsff{word-spacing:4.960000pt;}
.wsc1{word-spacing:5.034667pt;}
.wsb6{word-spacing:5.333333pt;}
.ws135{word-spacing:5.424000pt;}
.ws132{word-spacing:5.472000pt;}
.ws66{word-spacing:5.546667pt;}
.ws119{word-spacing:5.664000pt;}
.ws13a{word-spacing:5.712000pt;}
.ws89{word-spacing:5.813333pt;}
.ws35{word-spacing:5.861333pt;}
.ws6b{word-spacing:5.866667pt;}
.wsa{word-spacing:5.880000pt;}
.ws1e{word-spacing:5.920000pt;}
.ws64{word-spacing:5.973333pt;}
.wse5{word-spacing:6.026667pt;}
.ws31{word-spacing:6.080000pt;}
.ws69{word-spacing:6.133333pt;}
.ws108{word-spacing:6.144000pt;}
.wsf5{word-spacing:6.186667pt;}
.ws11b{word-spacing:6.192000pt;}
.wsc0{word-spacing:6.229333pt;}
.ws3f{word-spacing:6.240000pt;}
.wsb{word-spacing:6.280000pt;}
.ws10b{word-spacing:6.288000pt;}
.ws3a{word-spacing:6.293333pt;}
.ws43{word-spacing:6.346667pt;}
.ws118{word-spacing:6.384000pt;}
.ws120{word-spacing:6.432000pt;}
.ws56{word-spacing:6.453333pt;}
.ws45{word-spacing:6.506667pt;}
.ws20{word-spacing:6.528000pt;}
.ws30{word-spacing:6.613333pt;}
.ws10e{word-spacing:6.624000pt;}
.wsb5{word-spacing:6.666667pt;}
.ws36{word-spacing:6.698667pt;}
.wsb3{word-spacing:6.720000pt;}
.wse1{word-spacing:6.773333pt;}
.ws15{word-spacing:6.816000pt;}
.ws54{word-spacing:6.826667pt;}
.ws114{word-spacing:6.864000pt;}
.ws2c{word-spacing:6.880000pt;}
.ws2b{word-spacing:6.933333pt;}
.ws102{word-spacing:6.960000pt;}
.wse4{word-spacing:6.986667pt;}
.ws101{word-spacing:7.008000pt;}
.ws44{word-spacing:7.040000pt;}
.ws5a{word-spacing:7.093333pt;}
.ws10a{word-spacing:7.104000pt;}
.ws6c{word-spacing:7.146667pt;}
.ws95{word-spacing:7.200000pt;}
.ws39{word-spacing:7.253333pt;}
.ws53{word-spacing:7.306667pt;}
.ws19{word-spacing:7.344000pt;}
.ws67{word-spacing:7.360000pt;}
.ws107{word-spacing:7.392000pt;}
.ws87{word-spacing:7.413333pt;}
.wsde{word-spacing:7.520000pt;}
.wse{word-spacing:7.536000pt;}
.ws38{word-spacing:7.541333pt;}
.ws4d{word-spacing:7.573333pt;}
.ws129{word-spacing:7.584000pt;}
.wsbd{word-spacing:7.626667pt;}
.ws12f{word-spacing:7.632000pt;}
.wsd1{word-spacing:7.680000pt;}
.wsf2{word-spacing:7.733333pt;}
.ws136{word-spacing:7.776000pt;}
.ws3b{word-spacing:7.786667pt;}
.ws7a{word-spacing:7.802667pt;}
.ws14{word-spacing:7.872000pt;}
.ws42{word-spacing:7.893333pt;}
.ws7b{word-spacing:7.954667pt;}
.wsb2{word-spacing:8.000000pt;}
.ws92{word-spacing:8.053333pt;}
.ws103{word-spacing:8.064000pt;}
.wsa1{word-spacing:8.106667pt;}
.ws11a{word-spacing:8.112000pt;}
.ws11{word-spacing:8.160000pt;}
.ws55{word-spacing:8.232000pt;}
.ws8c{word-spacing:8.266667pt;}
.ws52{word-spacing:8.320000pt;}
.wsd3{word-spacing:8.373333pt;}
.ws104{word-spacing:8.448000pt;}
.ws122{word-spacing:8.496000pt;}
.ws9{word-spacing:8.533333pt;}
.ws126{word-spacing:8.592000pt;}
.ws90{word-spacing:8.640000pt;}
.ws5e{word-spacing:8.693333pt;}
.wsbb{word-spacing:8.746667pt;}
.ws13{word-spacing:8.784000pt;}
.ws81{word-spacing:8.853333pt;}
.ws111{word-spacing:8.880000pt;}
.ws75{word-spacing:8.906667pt;}
.ws12e{word-spacing:8.928000pt;}
.ws57{word-spacing:8.960000pt;}
.ws1a{word-spacing:8.976000pt;}
.wse8{word-spacing:9.013333pt;}
.ws137{word-spacing:9.024000pt;}
.ws33{word-spacing:9.066667pt;}
.ws2e{word-spacing:9.120000pt;}
.ws51{word-spacing:9.173333pt;}
.wsf8{word-spacing:9.226667pt;}
.ws109{word-spacing:9.264000pt;}
.ws93{word-spacing:9.280000pt;}
.ws86{word-spacing:9.333333pt;}
.ws11e{word-spacing:9.360000pt;}
.wsd0{word-spacing:9.440000pt;}
.ws16{word-spacing:9.456000pt;}
.ws83{word-spacing:9.493333pt;}
.ws1f{word-spacing:9.504000pt;}
.wsd{word-spacing:9.520000pt;}
.ws97{word-spacing:9.546667pt;}
.ws63{word-spacing:9.600000pt;}
.ws65{word-spacing:9.706667pt;}
.wsb4{word-spacing:9.760000pt;}
.ws115{word-spacing:9.792000pt;}
.ws94{word-spacing:9.813333pt;}
.ws5c{word-spacing:9.866667pt;}
.ws121{word-spacing:9.888000pt;}
.ws80{word-spacing:9.920000pt;}
.ws123{word-spacing:9.936000pt;}
.wsa7{word-spacing:9.973333pt;}
.wsbe{word-spacing:10.026667pt;}
.ws37{word-spacing:10.042667pt;}
.ws4c{word-spacing:10.080000pt;}
.wse7{word-spacing:10.133333pt;}
.ws1b{word-spacing:10.176000pt;}
.ws74{word-spacing:10.186667pt;}
.ws134{word-spacing:10.272000pt;}
.ws27{word-spacing:10.320000pt;}
.wsf6{word-spacing:10.346667pt;}
.ws8f{word-spacing:10.453333pt;}
.ws73{word-spacing:10.506667pt;}
.ws130{word-spacing:10.512000pt;}
.ws28{word-spacing:10.608000pt;}
.ws2f{word-spacing:10.613333pt;}
.wsf7{word-spacing:10.666667pt;}
.wsbc{word-spacing:10.720000pt;}
.wsa2{word-spacing:10.773333pt;}
.wse3{word-spacing:10.880000pt;}
.ws46{word-spacing:10.986667pt;}
.ws40{word-spacing:11.040000pt;}
.ws5b{word-spacing:11.093333pt;}
.ws34{word-spacing:11.146667pt;}
.ws4f{word-spacing:11.200000pt;}
.ws72{word-spacing:11.253333pt;}
.ws48{word-spacing:11.360000pt;}
.ws139{word-spacing:11.376000pt;}
.ws23{word-spacing:11.424000pt;}
.ws85{word-spacing:11.466667pt;}
.ws2d{word-spacing:11.520000pt;}
.ws131{word-spacing:11.616000pt;}
.wsa6{word-spacing:11.626667pt;}
.wse6{word-spacing:11.680000pt;}
.ws100{word-spacing:11.733333pt;}
.wsf3{word-spacing:11.786667pt;}
.wsb9{word-spacing:11.893333pt;}
.ws12d{word-spacing:11.952000pt;}
.ws10{word-spacing:12.000000pt;}
.ws50{word-spacing:12.106667pt;}
.ws11f{word-spacing:12.144000pt;}
.wsed{word-spacing:12.213333pt;}
.ws106{word-spacing:12.240000pt;}
.ws82{word-spacing:12.266667pt;}
.wsd4{word-spacing:12.320000pt;}
.wsf4{word-spacing:12.373333pt;}
.wsc{word-spacing:12.394667pt;}
.ws76{word-spacing:12.480000pt;}
.wsb8{word-spacing:12.586667pt;}
.ws47{word-spacing:12.640000pt;}
.ws25{word-spacing:12.672000pt;}
.wsb7{word-spacing:12.746667pt;}
.ws2a{word-spacing:12.800000pt;}
.wsa9{word-spacing:12.853333pt;}
.ws13b{word-spacing:12.864000pt;}
.ws88{word-spacing:13.013333pt;}
.ws84{word-spacing:13.066667pt;}
.wsf0{word-spacing:13.120000pt;}
.ws4b{word-spacing:13.226667pt;}
.ws138{word-spacing:13.248000pt;}
.ws117{word-spacing:13.296000pt;}
.ws59{word-spacing:13.333333pt;}
.wsd2{word-spacing:13.493333pt;}
.ws10d{word-spacing:13.536000pt;}
.ws8a{word-spacing:13.600000pt;}
.wsa4{word-spacing:13.653333pt;}
.wsec{word-spacing:13.760000pt;}
.wsee{word-spacing:13.813333pt;}
.ws12c{word-spacing:13.872000pt;}
.wsa5{word-spacing:13.920000pt;}
.ws8b{word-spacing:13.973333pt;}
.wsa8{word-spacing:14.133333pt;}
.ws41{word-spacing:14.186667pt;}
.ws4a{word-spacing:14.240000pt;}
.ws105{word-spacing:14.256000pt;}
.ws1d{word-spacing:14.448000pt;}
.ws26{word-spacing:14.544000pt;}
.ws4e{word-spacing:14.560000pt;}
.ws70{word-spacing:14.613333pt;}
.ws8e{word-spacing:14.720000pt;}
.wsdf{word-spacing:14.773333pt;}
.wse9{word-spacing:15.040000pt;}
.ws125{word-spacing:15.072000pt;}
.ws21{word-spacing:15.120000pt;}
.ws5d{word-spacing:15.146667pt;}
.wse2{word-spacing:15.200000pt;}
.wsf{word-spacing:15.264000pt;}
.ws6a{word-spacing:15.306667pt;}
.wsd8{word-spacing:15.402667pt;}
.ws116{word-spacing:15.456000pt;}
.ws68{word-spacing:15.520000pt;}
.ws24{word-spacing:15.552000pt;}
.ws32{word-spacing:15.573333pt;}
.ws10c{word-spacing:15.792000pt;}
.ws91{word-spacing:15.893333pt;}
.ws8d{word-spacing:15.946667pt;}
.wseb{word-spacing:16.000000pt;}
.wsfa{word-spacing:16.800000pt;}
.ws128{word-spacing:16.848000pt;}
.ws6e{word-spacing:16.853333pt;}
.ws5f{word-spacing:17.013333pt;}
.ws12{word-spacing:17.184000pt;}
.wse0{word-spacing:17.386667pt;}
.ws124{word-spacing:17.568000pt;}
.ws71{word-spacing:17.973333pt;}
.wsba{word-spacing:18.080000pt;}
.ws96{word-spacing:18.186667pt;}
.ws127{word-spacing:19.632000pt;}
.ws49{word-spacing:19.733333pt;}
.ws58{word-spacing:19.893333pt;}
.ws110{word-spacing:20.352000pt;}
.ws78{word-spacing:20.373333pt;}
.wsea{word-spacing:20.746667pt;}
.wsf9{word-spacing:21.013333pt;}
.ws77{word-spacing:21.386667pt;}
.wsef{word-spacing:21.653333pt;}
.ws13d{word-spacing:22.320000pt;}
.ws17{word-spacing:22.656000pt;}
.ws6d{word-spacing:23.360000pt;}
.ws1c{word-spacing:23.376000pt;}
.wsfb{word-spacing:23.413333pt;}
.ws10f{word-spacing:23.712000pt;}
.ws22{word-spacing:24.144000pt;}
.ws29{word-spacing:25.200000pt;}
.ws13c{word-spacing:26.016000pt;}
.ws98{word-spacing:27.146667pt;}
.ws3c{word-spacing:27.573333pt;}
.wsc6{word-spacing:35.786667pt;}
.wsdc{word-spacing:58.173867pt;}
.wsdd{word-spacing:67.369067pt;}
.ws99{word-spacing:92.480000pt;}
.wsda{word-spacing:112.041600pt;}
.wsca{word-spacing:131.149333pt;}
.wscd{word-spacing:139.947733pt;}
.wsa0{word-spacing:142.449600pt;}
.ws9e{word-spacing:158.748267pt;}
.wsc9{word-spacing:193.352000pt;}
.wsce{word-spacing:193.569067pt;}
.wsc8{word-spacing:198.137067pt;}
.wscb{word-spacing:250.461333pt;}
.wscf{word-spacing:250.588800pt;}
.ws9c{word-spacing:316.057067pt;}
.wsc7{word-spacing:340.353067pt;}
.ws9d{word-spacing:341.854933pt;}
.wsaa{word-spacing:408.902400pt;}
.wsb0{word-spacing:441.796800pt;}
.wsab{word-spacing:492.484800pt;}
.wsac{word-spacing:517.871467pt;}
.wsdb{word-spacing:530.508800pt;}
.wsb1{word-spacing:538.138133pt;}
.wsae{word-spacing:538.138667pt;}
.wsad{word-spacing:551.962133pt;}
.wsaf{word-spacing:768.423467pt;}
._3d{margin-left:-559.477333pt;}
._18{margin-left:-516.288000pt;}
._16{margin-left:-373.760000pt;}
._3c{margin-left:-70.389333pt;}
._17{margin-left:-42.656000pt;}
._12{margin-left:-17.493867pt;}
._37{margin-left:-14.489320pt;}
._13{margin-left:-13.493346pt;}
._22{margin-left:-10.080026pt;}
._1{margin-left:-7.680000pt;}
._5{margin-left:-5.864546pt;}
._7{margin-left:-4.861867pt;}
._2{margin-left:-3.680000pt;}
._a{margin-left:-2.630693pt;}
._0{margin-left:-1.706654pt;}
._9{width:0.960507pt;}
._6{width:2.042654pt;}
._5e{width:3.862920pt;}
._3{width:5.599987pt;}
._4{width:6.933320pt;}
._c{width:8.426654pt;}
._b{width:9.551987pt;}
._4d{width:11.702185pt;}
._11{width:12.698667pt;}
._60{width:14.033028pt;}
._e{width:15.055974pt;}
._14{width:16.134680pt;}
._5f{width:19.694959pt;}
._10{width:20.970641pt;}
._5d{width:23.409359pt;}
._38{width:24.362094pt;}
._61{width:25.376507pt;}
._5c{width:53.158946pt;}
._8{width:54.527467pt;}
._50{width:60.472520pt;}
._4e{width:66.226654pt;}
._39{width:68.373333pt;}
._4b{width:74.930120pt;}
._1a{width:77.630933pt;}
._19{width:84.420267pt;}
._4a{width:96.865067pt;}
._3b{width:102.933333pt;}
._f{width:117.065041pt;}
._d{width:118.826133pt;}
._5b{width:124.921067pt;}
._54{width:130.885346pt;}
._56{width:143.480000pt;}
._59{width:150.349867pt;}
._49{width:155.596267pt;}
._1d{width:165.750452pt;}
._3a{width:171.200000pt;}
._40{width:172.875200pt;}
._15{width:179.306667pt;}
._45{width:182.033600pt;}
._55{width:187.768533pt;}
._5a{width:190.200000pt;}
._3f{width:193.150933pt;}
._52{width:197.386667pt;}
._3e{width:201.066667pt;}
._51{width:208.163187pt;}
._58{width:243.305600pt;}
._41{width:245.085867pt;}
._4f{width:246.258654pt;}
._44{width:253.086933pt;}
._1e{width:257.233600pt;}
._1f{width:262.274133pt;}
._2e{width:289.146133pt;}
._57{width:291.276267pt;}
._47{width:293.618667pt;}
._43{width:299.357333pt;}
._1b{width:333.560533pt;}
._24{width:346.636280pt;}
._29{width:352.907493pt;}
._4c{width:355.517867pt;}
._20{width:361.681600pt;}
._42{width:368.057067pt;}
._1c{width:380.280533pt;}
._46{width:388.708267pt;}
._21{width:408.316267pt;}
._48{width:447.897600pt;}
._35{width:554.749333pt;}
._23{width:602.899200pt;}
._53{width:604.042667pt;}
._2a{width:618.152000pt;}
._2b{width:644.434667pt;}
._2c{width:645.458667pt;}
._32{width:667.730667pt;}
._2d{width:676.392000pt;}
._31{width:714.749333pt;}
._2f{width:720.386667pt;}
._34{width:750.887454pt;}
._28{width:779.644787pt;}
._26{width:801.063987pt;}
._33{width:823.720000pt;}
._27{width:825.597333pt;}
._36{width:829.948800pt;}
._25{width:839.250667pt;}
._30{width:865.704000pt;}
.fs14{font-size:27.733333pt;}
.fsd{font-size:28.096000pt;}
.fs10{font-size:30.833067pt;}
.fsf{font-size:31.200000pt;}
.fs13{font-size:32.933333pt;}
.fs11{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fsc{font-size:42.249600pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs12{font-size:69.813333pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:3.199733pt;}
.y175{bottom:4.532800pt;}
.y108{bottom:6.666400pt;}
.y174{bottom:7.066133pt;}
.y173{bottom:7.999467pt;}
.y5{bottom:59.133337pt;}
.y37{bottom:60.086668pt;}
.y6e{bottom:63.947200pt;}
.y6d{bottom:74.613867pt;}
.y36{bottom:74.753335pt;}
.yb6{bottom:75.333200pt;}
.ye5{bottom:75.800000pt;}
.yfe{bottom:75.934400pt;}
.y1a4{bottom:76.101467pt;}
.y139{bottom:76.434400pt;}
.y1d5{bottom:78.601067pt;}
.y121{bottom:80.466667pt;}
.y213{bottom:83.601067pt;}
.y172{bottom:84.060000pt;}
.y6c{bottom:85.280533pt;}
.y4{bottom:86.333337pt;}
.ye4{bottom:87.800000pt;}
.y171{bottom:92.059467pt;}
.y120{bottom:92.466667pt;}
.yb5{bottom:92.666533pt;}
.yfd{bottom:93.267733pt;}
.y1a3{bottom:93.434800pt;}
.y138{bottom:93.767733pt;}
.y69{bottom:96.280533pt;}
.y212{bottom:98.267733pt;}
.y11f{bottom:104.466667pt;}
.y6a{bottom:105.947200pt;}
.y1d4{bottom:107.934400pt;}
.yb4{bottom:109.999867pt;}
.y1ba{bottom:110.601067pt;}
.y1a2{bottom:110.768133pt;}
.y137{bottom:111.101067pt;}
.y211{bottom:112.934400pt;}
.yfc{bottom:119.934400pt;}
.y11e{bottom:120.466667pt;}
.y1d3{bottom:122.601067pt;}
.y170{bottom:122.726133pt;}
.y21{bottom:123.790666pt;}
.ye1{bottom:124.496133pt;}
.yb3{bottom:127.333200pt;}
.y210{bottom:127.601067pt;}
.y1b9{bottom:127.934400pt;}
.y1a1{bottom:128.101467pt;}
.y136{bottom:128.434400pt;}
.y11d{bottom:137.133333pt;}
.y1d2{bottom:137.267733pt;}
.y16f{bottom:140.059467pt;}
.y20f{bottom:142.267733pt;}
.yb2{bottom:144.666533pt;}
.y68{bottom:145.267733pt;}
.y135{bottom:145.767733pt;}
.yfb{bottom:146.601067pt;}
.ydf{bottom:149.162032pt;}
.y1d1{bottom:151.934400pt;}
.y1a0{bottom:154.768133pt;}
.y20e{bottom:156.934400pt;}
.y16e{bottom:157.392800pt;}
.yb1{bottom:161.999867pt;}
.y67{bottom:162.601067pt;}
.y1d0{bottom:166.601067pt;}
.y35{bottom:169.401334pt;}
.y20d{bottom:171.601067pt;}
.y134{bottom:172.434400pt;}
.y16d{bottom:174.726133pt;}
.y18{bottom:175.052000pt;}
.ye3{bottom:176.777134pt;}
.yb0{bottom:179.333200pt;}
.y66{bottom:179.934400pt;}
.y1cf{bottom:181.267733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y20c{bottom:186.267733pt;}
.ye2{bottom:189.156267pt;}
.yfa{bottom:189.267733pt;}
.y11c{bottom:190.934400pt;}
.y16c{bottom:192.059467pt;}
.y1ce{bottom:195.934400pt;}
.yaf{bottom:196.666533pt;}
.y65{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y20b{bottom:200.934400pt;}
.y11b{bottom:202.934400pt;}
.y19f{bottom:203.434400pt;}
.yde{bottom:205.475200pt;}
.ye0{bottom:206.056000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y16b{bottom:209.392800pt;}
.y1cd{bottom:210.601067pt;}
.yae{bottom:213.999867pt;}
.y64{bottom:214.601067pt;}
.y11a{bottom:214.934400pt;}
.yf9{bottom:215.267733pt;}
.y20a{bottom:215.601067pt;}
.y19e{bottom:220.767733pt;}
.y133{bottom:224.434400pt;}
.y1cc{bottom:225.267733pt;}
.y34{bottom:226.601334pt;}
.y16a{bottom:226.726133pt;}
.y209{bottom:230.267733pt;}
.y119{bottom:230.934400pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yad{bottom:231.333200pt;}
.y63{bottom:231.934400pt;}
.yf8{bottom:232.601067pt;}
.y19d{bottom:238.101067pt;}
.y132{bottom:241.767733pt;}
.ydd{bottom:242.101067pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y169{bottom:244.059467pt;}
.y208{bottom:244.934400pt;}
.y118{bottom:247.601067pt;}
.yac{bottom:248.666533pt;}
.y62{bottom:249.267733pt;}
.yf7{bottom:249.934400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y19c{bottom:255.434400pt;}
.ydc{bottom:259.434400pt;}
.y207{bottom:259.601067pt;}
.yab{bottom:265.999867pt;}
.y61{bottom:266.601067pt;}
.yf6{bottom:267.267733pt;}
.y131{bottom:268.434400pt;}
.y168{bottom:270.726133pt;}
.y19b{bottom:272.767733pt;}
.y206{bottom:274.267733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ydb{bottom:276.767733pt;}
.y117{bottom:281.267733pt;}
.yaa{bottom:283.333200pt;}
.y33{bottom:283.801334pt;}
.y60{bottom:283.934400pt;}
.yf5{bottom:284.601067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y205{bottom:288.934400pt;}
.y19a{bottom:290.101067pt;}
.yda{bottom:294.101067pt;}
.y1cb{bottom:294.601067pt;}
.y116{bottom:298.601067pt;}
.ya9{bottom:300.666533pt;}
.y5f{bottom:301.267733pt;}
.yf4{bottom:301.934400pt;}
.y204{bottom:303.601067pt;}
.y199{bottom:307.434400pt;}
.yf{bottom:309.452000pt;}
.yd9{bottom:311.434400pt;}
.y115{bottom:315.934400pt;}
.y167{bottom:316.059467pt;}
.ya8{bottom:317.999867pt;}
.y203{bottom:318.267733pt;}
.y5e{bottom:318.601067pt;}
.yf3{bottom:319.267733pt;}
.y198{bottom:324.767733pt;}
.y130{bottom:325.767733pt;}
.yd8{bottom:328.767733pt;}
.y202{bottom:332.934400pt;}
.y114{bottom:333.267733pt;}
.y166{bottom:333.392800pt;}
.ya7{bottom:335.333200pt;}
.y5d{bottom:335.934400pt;}
.yf2{bottom:336.601067pt;}
.y197{bottom:342.101067pt;}
.y12f{bottom:343.101067pt;}
.y32{bottom:343.606667pt;}
.ye{bottom:343.809333pt;}
.y201{bottom:347.601067pt;}
.y113{bottom:350.601067pt;}
.y165{bottom:350.726133pt;}
.ya6{bottom:352.666533pt;}
.y1b8{bottom:353.267733pt;}
.yf1{bottom:353.934400pt;}
.yd7{bottom:355.434400pt;}
.y196{bottom:359.434400pt;}
.y12e{bottom:360.434400pt;}
.y200{bottom:362.267733pt;}
.yd{bottom:362.706666pt;}
.y1ca{bottom:363.934400pt;}
.y112{bottom:367.934400pt;}
.y164{bottom:368.059467pt;}
.y1b7{bottom:370.601067pt;}
.yf0{bottom:371.267733pt;}
.y195{bottom:376.767733pt;}
.y1ff{bottom:376.934400pt;}
.y12d{bottom:377.767733pt;}
.ya5{bottom:379.333200pt;}
.yd6{bottom:382.101067pt;}
.y5c{bottom:385.267733pt;}
.y1b6{bottom:387.934400pt;}
.yef{bottom:388.601067pt;}
.y1fe{bottom:391.601067pt;}
.y194{bottom:394.101067pt;}
.y163{bottom:394.726133pt;}
.y12c{bottom:395.101067pt;}
.y31{bottom:398.201334pt;}
.y5b{bottom:398.601067pt;}
.y111{bottom:402.601067pt;}
.y1b5{bottom:405.267733pt;}
.yee{bottom:405.934400pt;}
.ya4{bottom:405.999867pt;}
.y1fd{bottom:406.267733pt;}
.y193{bottom:411.434400pt;}
.y5a{bottom:411.934400pt;}
.y12b{bottom:412.434400pt;}
.y110{bottom:419.934400pt;}
.y1fc{bottom:420.934400pt;}
.y1b4{bottom:422.601067pt;}
.yed{bottom:423.267733pt;}
.y59{bottom:425.267733pt;}
.yd5{bottom:427.434400pt;}
.y192{bottom:428.767733pt;}
.y12a{bottom:429.767733pt;}
.y1c9{bottom:433.267733pt;}
.y1fb{bottom:435.601067pt;}
.y58{bottom:438.601067pt;}
.y162{bottom:440.059467pt;}
.yec{bottom:440.601067pt;}
.yd4{bottom:444.767733pt;}
.y191{bottom:446.101067pt;}
.y10f{bottom:446.601067pt;}
.yc{bottom:446.990669pt;}
.y129{bottom:447.101067pt;}
.y1c8{bottom:447.934400pt;}
.y1b3{bottom:449.267733pt;}
.y1fa{bottom:450.267733pt;}
.y57{bottom:451.934400pt;}
.ya3{bottom:457.267733pt;}
.y161{bottom:457.392800pt;}
.yeb{bottom:457.934400pt;}
.y30{bottom:458.006667pt;}
.yd3{bottom:462.101067pt;}
.y1c7{bottom:462.601067pt;}
.yb{bottom:462.990669pt;}
.y190{bottom:463.434400pt;}
.y128{bottom:464.434400pt;}
.y1f9{bottom:464.934400pt;}
.y56{bottom:465.267733pt;}
.ya2{bottom:474.601067pt;}
.y160{bottom:474.726133pt;}
.yea{bottom:475.267733pt;}
.y55{bottom:478.601067pt;}
.ya{bottom:478.990666pt;}
.yd2{bottom:479.434400pt;}
.y1f8{bottom:479.601067pt;}
.y18f{bottom:480.767733pt;}
.y127{bottom:481.767733pt;}
.y1c6{bottom:485.267733pt;}
.y54{bottom:491.934400pt;}
.y15f{bottom:492.059467pt;}
.ye9{bottom:492.601067pt;}
.y10e{bottom:493.267733pt;}
.y1f7{bottom:494.267733pt;}
.y9{bottom:494.990666pt;}
.y85{bottom:495.406933pt;}
.y1b2{bottom:497.267733pt;}
.y18e{bottom:498.101067pt;}
.y126{bottom:499.101067pt;}
.y1c5{bottom:499.934400pt;}
.y53{bottom:505.267733pt;}
.yd1{bottom:506.101067pt;}
.y84{bottom:507.406933pt;}
.y1f6{bottom:508.934400pt;}
.ya1{bottom:509.267733pt;}
.y15e{bottom:509.392800pt;}
.ye8{bottom:509.934400pt;}
.y10d{bottom:510.601067pt;}
.y2f{bottom:512.601334pt;}
.y1b1{bottom:514.601067pt;}
.y18d{bottom:515.434400pt;}
.y52{bottom:518.601067pt;}
.y83{bottom:519.406933pt;}
.y1f5{bottom:523.601067pt;}
.y125{bottom:525.767733pt;}
.ya0{bottom:526.601067pt;}
.y10c{bottom:527.934400pt;}
.y1c4{bottom:529.267733pt;}
.y82{bottom:531.406933pt;}
.y51{bottom:531.934400pt;}
.y15d{bottom:536.059467pt;}
.ye7{bottom:536.601067pt;}
.y1f4{bottom:538.267733pt;}
.y18c{bottom:542.101067pt;}
.y81{bottom:543.406933pt;}
.y9f{bottom:543.934400pt;}
.y50{bottom:545.267733pt;}
.y2e{bottom:545.740001pt;}
.y1b0{bottom:549.267733pt;}
.yd0{bottom:551.434400pt;}
.y1f3{bottom:552.934400pt;}
.y80{bottom:555.406933pt;}
.y2d{bottom:559.073335pt;}
.y9e{bottom:561.267733pt;}
.y10b{bottom:562.601067pt;}
.y1af{bottom:566.601067pt;}
.y7f{bottom:567.406933pt;}
.y1f2{bottom:567.601067pt;}
.ycf{bottom:568.767733pt;}
.y4f{bottom:569.267733pt;}
.ye6{bottom:569.934400pt;}
.y2c{bottom:572.406667pt;}
.y8{bottom:573.786667pt;}
.y9d{bottom:578.601067pt;}
.y7e{bottom:579.406933pt;}
.y10a{bottom:579.934400pt;}
.y15c{bottom:581.392800pt;}
.y1f1{bottom:582.267733pt;}
.y124{bottom:583.101067pt;}
.y4e{bottom:583.934400pt;}
.yce{bottom:586.101067pt;}
.y7{bottom:592.685334pt;}
.y9c{bottom:595.934400pt;}
.y1f0{bottom:596.934400pt;}
.y4d{bottom:597.267733pt;}
.y15b{bottom:598.726133pt;}
.y123{bottom:600.434400pt;}
.y1ae{bottom:601.267733pt;}
.y7d{bottom:601.906933pt;}
.ycd{bottom:603.434400pt;}
.y1c3{bottom:606.601067pt;}
.y4c{bottom:610.601067pt;}
.y1ef{bottom:611.601067pt;}
.y9b{bottom:613.267733pt;}
.y7c{bottom:613.906933pt;}
.y18b{bottom:614.101067pt;}
.y15a{bottom:616.059467pt;}
.y122{bottom:617.767733pt;}
.y1ad{bottom:618.601067pt;}
.ycc{bottom:620.767733pt;}
.y4b{bottom:623.934400pt;}
.y7b{bottom:625.906933pt;}
.y1ee{bottom:626.267733pt;}
.y9a{bottom:630.601067pt;}
.y18a{bottom:631.434400pt;}
.y159{bottom:633.392800pt;}
.y1ac{bottom:635.934400pt;}
.y4a{bottom:637.267733pt;}
.y7a{bottom:637.906933pt;}
.ycb{bottom:638.101067pt;}
.y1ed{bottom:640.934400pt;}
.y2b{bottom:644.726665pt;}
.y6{bottom:645.598667pt;}
.y99{bottom:647.934400pt;}
.y189{bottom:648.767733pt;}
.y79{bottom:649.906933pt;}
.y49{bottom:650.601067pt;}
.y158{bottom:650.726133pt;}
.y1ab{bottom:653.267733pt;}
.yca{bottom:655.434400pt;}
.y1ec{bottom:655.601067pt;}
.y107{bottom:657.268000pt;}
.y48{bottom:663.934400pt;}
.y153{bottom:665.101067pt;}
.y98{bottom:665.267733pt;}
.y188{bottom:666.101067pt;}
.y78{bottom:668.867733pt;}
.y3{bottom:668.977329pt;}
.y1eb{bottom:670.267733pt;}
.y2a{bottom:671.393332pt;}
.yc9{bottom:672.767733pt;}
.y1c2{bottom:675.934400pt;}
.y47{bottom:677.267733pt;}
.y157{bottom:677.392800pt;}
.y1aa{bottom:679.934400pt;}
.y77{bottom:680.867733pt;}
.y152{bottom:681.101067pt;}
.y97{bottom:682.601067pt;}
.y187{bottom:683.434400pt;}
.y1ea{bottom:684.934400pt;}
.y29{bottom:687.393332pt;}
.yc8{bottom:690.101067pt;}
.y46{bottom:690.601067pt;}
.y76{bottom:692.867733pt;}
.y151{bottom:693.101067pt;}
.y1c1{bottom:693.267733pt;}
.y106{bottom:694.601067pt;}
.y1e9{bottom:699.601067pt;}
.y96{bottom:699.934400pt;}
.y186{bottom:700.767733pt;}
.y28{bottom:703.393332pt;}
.y45{bottom:703.934400pt;}
.y75{bottom:704.867733pt;}
.y150{bottom:705.101067pt;}
.yc7{bottom:707.434400pt;}
.y1c0{bottom:710.601067pt;}
.y105{bottom:711.934400pt;}
.y1e8{bottom:714.267733pt;}
.y74{bottom:716.867733pt;}
.y14f{bottom:717.101067pt;}
.y44{bottom:717.267733pt;}
.y185{bottom:718.101067pt;}
.y156{bottom:722.726133pt;}
.yc6{bottom:724.767733pt;}
.y1bf{bottom:727.934400pt;}
.y1e7{bottom:728.934400pt;}
.y14e{bottom:729.101067pt;}
.y104{bottom:729.267733pt;}
.y43{bottom:730.601067pt;}
.y95{bottom:734.601067pt;}
.y184{bottom:735.434400pt;}
.y73{bottom:737.101067pt;}
.y155{bottom:740.059467pt;}
.y14d{bottom:741.101067pt;}
.yc5{bottom:742.101067pt;}
.y1e6{bottom:743.601067pt;}
.y42{bottom:743.934400pt;}
.y1be{bottom:745.267733pt;}
.y103{bottom:746.601067pt;}
.y72{bottom:749.101067pt;}
.y27{bottom:750.034669pt;}
.y94{bottom:751.934400pt;}
.y183{bottom:752.767733pt;}
.y14c{bottom:753.101067pt;}
.y41{bottom:757.267733pt;}
.y154{bottom:757.392800pt;}
.y1e5{bottom:758.267733pt;}
.yc4{bottom:759.434400pt;}
.y71{bottom:761.101067pt;}
.y1bd{bottom:762.601067pt;}
.y102{bottom:763.934400pt;}
.y14b{bottom:765.101067pt;}
.y93{bottom:769.267733pt;}
.y182{bottom:770.101067pt;}
.y40{bottom:770.601067pt;}
.y1e4{bottom:772.934400pt;}
.y70{bottom:773.101067pt;}
.yc3{bottom:776.767733pt;}
.y14a{bottom:777.101067pt;}
.y1bc{bottom:779.934400pt;}
.y101{bottom:781.267733pt;}
.y2{bottom:781.661334pt;}
.y3f{bottom:783.934400pt;}
.y6f{bottom:785.101067pt;}
.y92{bottom:786.601067pt;}
.y181{bottom:787.434400pt;}
.y1e3{bottom:787.601067pt;}
.y149{bottom:789.101067pt;}
.yc2{bottom:794.101067pt;}
.y17d{bottom:794.912800pt;}
.y100{bottom:798.601067pt;}
.y148{bottom:801.101067pt;}
.y1e2{bottom:802.267733pt;}
.y91{bottom:803.934400pt;}
.y180{bottom:804.767733pt;}
.y1bb{bottom:806.601067pt;}
.y26{bottom:806.613333pt;}
.y17c{bottom:807.392800pt;}
.yc1{bottom:811.434400pt;}
.y147{bottom:813.101067pt;}
.y1e1{bottom:816.934400pt;}
.y90{bottom:821.267733pt;}
.y17f{bottom:822.101067pt;}
.y17b{bottom:824.059467pt;}
.y146{bottom:825.101067pt;}
.yff{bottom:825.267733pt;}
.y3e{bottom:825.601067pt;}
.yc0{bottom:828.767733pt;}
.y1e0{bottom:831.601067pt;}
.y25{bottom:834.613333pt;}
.y145{bottom:837.101067pt;}
.y8f{bottom:838.601067pt;}
.y17e{bottom:839.434400pt;}
.y17a{bottom:840.726133pt;}
.ybf{bottom:846.101067pt;}
.y1df{bottom:846.267733pt;}
.y144{bottom:849.101067pt;}
.y3d{bottom:849.601067pt;}
.y8e{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y1de{bottom:860.934400pt;}
.y143{bottom:861.101067pt;}
.y24{bottom:862.613333pt;}
.ybe{bottom:863.434400pt;}
.y142{bottom:873.101067pt;}
.y8d{bottom:873.267733pt;}
.y1dd{bottom:875.601067pt;}
.ybd{bottom:880.767733pt;}
.y3c{bottom:884.267733pt;}
.y141{bottom:885.101067pt;}
.y1dc{bottom:890.267733pt;}
.y8c{bottom:890.601067pt;}
.y1a9{bottom:891.621067pt;}
.y179{bottom:896.621067pt;}
.y140{bottom:897.101067pt;}
.ybc{bottom:898.101067pt;}
.y1a8{bottom:904.101067pt;}
.y1db{bottom:904.934400pt;}
.y3b{bottom:905.601067pt;}
.y8b{bottom:907.934400pt;}
.y178{bottom:908.287733pt;}
.y13f{bottom:909.101067pt;}
.ybb{bottom:915.434400pt;}
.y1a7{bottom:916.101067pt;}
.y1da{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.y177{bottom:920.767733pt;}
.y13e{bottom:921.101067pt;}
.y8a{bottom:925.267733pt;}
.y1a6{bottom:928.101067pt;}
.y38{bottom:931.121067pt;}
.yba{bottom:932.767733pt;}
.y13d{bottom:933.101067pt;}
.y1d9{bottom:934.267733pt;}
.y89{bottom:942.601067pt;}
.y1a5{bottom:944.434400pt;}
.y176{bottom:944.767733pt;}
.y13c{bottom:945.101067pt;}
.y1d8{bottom:948.934400pt;}
.yb9{bottom:950.101067pt;}
.y88{bottom:959.934400pt;}
.y13b{bottom:961.101067pt;}
.y6b{bottom:963.362000pt;}
.y1d7{bottom:963.601067pt;}
.y3a{bottom:975.473733pt;}
.yb8{bottom:976.767733pt;}
.y87{bottom:977.267733pt;}
.y13a{bottom:977.767733pt;}
.y1d6{bottom:978.267733pt;}
.y39{bottom:987.473733pt;}
.yb7{bottom:1014.433867pt;}
.y86{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h2d{height:19.829333pt;}
.h23{height:20.000000pt;}
.h25{height:21.583147pt;}
.h2a{height:21.891477pt;}
.h27{height:22.665333pt;}
.h19{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1f{height:29.363472pt;}
.h22{height:30.506667pt;}
.h1a{height:30.762667pt;}
.h20{height:31.043877pt;}
.hb{height:32.645833pt;}
.h1c{height:32.880000pt;}
.h2c{height:33.909333pt;}
.h16{height:34.320000pt;}
.h1b{height:35.072000pt;}
.h21{height:36.226667pt;}
.hf{height:36.726562pt;}
.h24{height:37.333333pt;}
.h28{height:37.866667pt;}
.h18{height:39.456000pt;}
.h2b{height:40.267333pt;}
.h1e{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1d{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:43.840000pt;}
.h15{height:46.032000pt;}
.h26{height:46.095467pt;}
.h29{height:48.473906pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:127.176000pt;}
.w7{width:292.442667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x1e{left:-0.944000pt;}
.x0{left:0.000000pt;}
.x16{left:66.234667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x2e{left:109.333333pt;}
.xb{left:112.100000pt;}
.x28{left:113.666667pt;}
.x2c{left:114.854800pt;}
.x1f{left:120.522667pt;}
.x24{left:122.850400pt;}
.x6{left:129.466667pt;}
.x2d{left:136.555600pt;}
.x20{left:141.589333pt;}
.x29{left:146.435200pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x26{left:189.570533pt;}
.x25{left:193.218933pt;}
.x9{left:203.327991pt;}
.x27{left:206.666667pt;}
.x1a{left:214.850800pt;}
.x18{left:216.000000pt;}
.x22{left:231.322667pt;}
.x1b{left:234.666667pt;}
.x2b{left:242.051333pt;}
.x1d{left:250.629333pt;}
.x1c{left:252.091867pt;}
.x8{left:260.969328pt;}
.x10{left:263.896533pt;}
.x11{left:274.670000pt;}
.x19{left:325.106400pt;}
.x14{left:333.262667pt;}
.x15{left:360.297333pt;}
.xe{left:382.529333pt;}
.xf{left:385.378352pt;}
.x3{left:404.408000pt;}
.x21{left:408.618667pt;}
.x12{left:434.601600pt;}
.x13{left:459.423240pt;}
.x17{left:460.438667pt;}
.x2a{left:479.934800pt;}
.x2f{left:502.378267pt;}
.xd{left:507.508000pt;}
.x23{left:543.072000pt;}
.xc{left:577.800667pt;}
}




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