
    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_aa912941ad57d0e72f35f0e4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_80d3dfe62fd0c276f139c38c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a1e9624461427cf031a32f86.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722000;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_ce1348d424a27879f599370c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_e6bed97afe58df9e9d0a4390.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_380353518c2860912ef8e657.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.383000;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_89798e517dc0908150f93d9b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3b1dbf3d0e16a4207746f82f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.392000;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_9018636051d452a29471388b.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_06ee6bac40e86672800cd0f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_d84a2e3b75eb244292b9efd6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_59979a5f0896ecb686ea3e7c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_b1813748edcce5f297a3cb79.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.726000;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_463cd06c843b7dc7f468f199.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.071000;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_a00c00c70c5eaa280de26986.woff2')format("woff");}.fff{font-family:fff;line-height:0.515000;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_0bfe87d1a44c77ecdc222218.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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_94aaed39f44c20f9fc86f79d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.705000;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_886d9db3d218c8c7afd3ea77.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.847000;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_7ec79b16a58e2f1b8918b6bb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.166000;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_a28b7ada9cf93ef5b877a2ff.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.869000;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:ff15;src:url('chunks/assets/font_b0bb510caa067e25faa64563.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.355000;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:ff16;src:url('chunks/assets/font_cbcf1a53c92e9827159f84d4.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_7bae4440693c9c28f1efcfa5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.948000;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:ff18;src:url('chunks/assets/font_a767ed2083579a92300a36d1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715000;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:ff19;src:url('chunks/assets/font_7464dee7d1b5d82595b5b218.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.073000;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:ff1a;src:url('chunks/assets/font_3eb700b27f347d2409c3f6db.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.896000;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;}
.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.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.870009px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.017100px;}
.ls3{letter-spacing:0.038400px;}
.ls9{letter-spacing:0.043194px;}
.ls17{letter-spacing:0.051995px;}
.ls1b{letter-spacing:0.072001px;}
.lsd{letter-spacing:0.108001px;}
.ls0{letter-spacing:0.124200px;}
.ls22{letter-spacing:0.144001px;}
.ls1f{letter-spacing:0.168002px;}
.lsa{letter-spacing:0.174002px;}
.ls11{letter-spacing:0.186002px;}
.ls1a{letter-spacing:0.249597px;}
.ls16{letter-spacing:0.252003px;}
.ls1{letter-spacing:0.264600px;}
.ls19{letter-spacing:0.307196px;}
.ls20{letter-spacing:0.354004px;}
.ls5{letter-spacing:10.243072px;}
.ls18{letter-spacing:10.430270px;}
.ls7{letter-spacing:10.550268px;}
.ls1c{letter-spacing:10.771065px;}
.ls13{letter-spacing:12.996130px;}
.ls1e{letter-spacing:13.038130px;}
.ls14{letter-spacing:13.110131px;}
.ls15{letter-spacing:13.230132px;}
.ls21{letter-spacing:13.302133px;}
.ls12{letter-spacing:13.338133px;}
.lse{letter-spacing:13.374134px;}
.lsf{letter-spacing:13.380134px;}
.lsb{letter-spacing:13.452135px;}
.ls10{letter-spacing:13.476135px;}
.ls4{letter-spacing:20.788540px;}
.ls2{letter-spacing:21.124536px;}
.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;}
}
.ws7f{word-spacing:-13.398134px;}
.ws8b{word-spacing:-13.290133px;}
.ws28{word-spacing:-10.598268px;}
.ws147{word-spacing:-0.071999px;}
.ws4c{word-spacing:-0.060001px;}
.ws5{word-spacing:-0.054000px;}
.wsd{word-spacing:-0.047999px;}
.ws8f{word-spacing:-0.039996px;}
.wsa{word-spacing:-0.035995px;}
.wsdb{word-spacing:-0.031995px;}
.ws47{word-spacing:0.000000px;}
.ws46{word-spacing:8.668692px;}
.ws3f{word-spacing:9.647879px;}
.ws35{word-spacing:9.657479px;}
.ws112{word-spacing:9.667079px;}
.ws44{word-spacing:9.676679px;}
.ws160{word-spacing:9.700679px;}
.ws40{word-spacing:9.710279px;}
.ws3d{word-spacing:9.715079px;}
.ws165{word-spacing:9.748678px;}
.ws43{word-spacing:9.753478px;}
.ws153{word-spacing:9.767878px;}
.ws2e{word-spacing:9.777478px;}
.ws67{word-spacing:9.787078px;}
.ws41{word-spacing:9.796678px;}
.ws12c{word-spacing:9.811077px;}
.ws10f{word-spacing:9.815877px;}
.ws2c{word-spacing:9.820677px;}
.ws2a{word-spacing:9.825477px;}
.ws101{word-spacing:9.830277px;}
.ws171{word-spacing:9.835077px;}
.ws3e{word-spacing:9.844677px;}
.ws39{word-spacing:9.849477px;}
.ws114{word-spacing:9.859077px;}
.ws10c{word-spacing:9.863877px;}
.ws34{word-spacing:9.873477px;}
.ws32{word-spacing:9.883076px;}
.ws172{word-spacing:9.892676px;}
.ws12b{word-spacing:9.897476px;}
.ws12a{word-spacing:9.902276px;}
.ws6a{word-spacing:9.916676px;}
.ws2f{word-spacing:9.921476px;}
.ws6b{word-spacing:9.926276px;}
.wsda{word-spacing:9.931076px;}
.ws155{word-spacing:9.935876px;}
.ws167{word-spacing:9.955076px;}
.ws104{word-spacing:9.964675px;}
.ws161{word-spacing:9.969475px;}
.ws126{word-spacing:9.974275px;}
.ws3c{word-spacing:9.979075px;}
.ws158{word-spacing:9.988675px;}
.ws166{word-spacing:9.998275px;}
.wsc9{word-spacing:10.003075px;}
.ws15b{word-spacing:10.007875px;}
.ws14b{word-spacing:10.012675px;}
.ws10{word-spacing:10.017475px;}
.ws69{word-spacing:10.036675px;}
.wsd8{word-spacing:10.041474px;}
.ws3a{word-spacing:10.046274px;}
.ws45{word-spacing:10.051074px;}
.ws15f{word-spacing:10.055874px;}
.ws16e{word-spacing:10.065474px;}
.ws30{word-spacing:10.079874px;}
.wsce{word-spacing:10.084674px;}
.ws127{word-spacing:10.089474px;}
.ws12e{word-spacing:10.099074px;}
.ws14c{word-spacing:10.108674px;}
.ws68{word-spacing:10.113474px;}
.ws16f{word-spacing:10.123073px;}
.ws150{word-spacing:10.127873px;}
.ws10b{word-spacing:10.132673px;}
.ws33{word-spacing:10.137473px;}
.ws15e{word-spacing:10.156673px;}
.ws111{word-spacing:10.161473px;}
.ws16c{word-spacing:10.166273px;}
.ws27{word-spacing:10.175873px;}
.ws29{word-spacing:10.180673px;}
.ws37{word-spacing:10.185473px;}
.ws12d{word-spacing:10.190273px;}
.wsc{word-spacing:10.195073px;}
.wscc{word-spacing:10.199873px;}
.ws169{word-spacing:10.204672px;}
.ws103{word-spacing:10.214272px;}
.ws151{word-spacing:10.219072px;}
.wsb{word-spacing:10.228672px;}
.ws10d{word-spacing:10.233472px;}
.ws164{word-spacing:10.238272px;}
.ws152{word-spacing:10.247872px;}
.ws159{word-spacing:10.252672px;}
.ws15d{word-spacing:10.262272px;}
.wsf{word-spacing:10.267072px;}
.ws106{word-spacing:10.271872px;}
.ws113{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws16b{word-spacing:10.286271px;}
.ws15c{word-spacing:10.300671px;}
.ws100{word-spacing:10.305471px;}
.ws105{word-spacing:10.315071px;}
.ws14d{word-spacing:10.329471px;}
.ws16d{word-spacing:10.334271px;}
.ws14f{word-spacing:10.339071px;}
.ws128{word-spacing:10.353471px;}
.ws14e{word-spacing:10.358271px;}
.wse{word-spacing:10.363070px;}
.ws2b{word-spacing:10.372670px;}
.ws102{word-spacing:10.377470px;}
.wsca{word-spacing:10.387070px;}
.wsd9{word-spacing:10.391870px;}
.ws91{word-spacing:10.415870px;}
.wsdc{word-spacing:10.420670px;}
.ws38{word-spacing:10.425470px;}
.ws115{word-spacing:10.430270px;}
.ws3b{word-spacing:10.444669px;}
.ws173{word-spacing:10.454269px;}
.ws36{word-spacing:10.463869px;}
.ws42{word-spacing:10.468669px;}
.ws2d{word-spacing:10.478269px;}
.wscb{word-spacing:10.497469px;}
.ws110{word-spacing:10.502269px;}
.ws16a{word-spacing:10.526268px;}
.ws157{word-spacing:10.535868px;}
.wscd{word-spacing:10.540668px;}
.ws163{word-spacing:10.564668px;}
.ws154{word-spacing:10.569468px;}
.ws168{word-spacing:10.574268px;}
.ws31{word-spacing:10.579068px;}
.ws170{word-spacing:10.607867px;}
.ws15a{word-spacing:10.612667px;}
.ws162{word-spacing:10.646267px;}
.ws10e{word-spacing:10.655867px;}
.ws6{word-spacing:11.550600px;}
.ws7{word-spacing:11.556000px;}
.ws8{word-spacing:11.637000px;}
.ws9{word-spacing:11.766600px;}
.ws11f{word-spacing:11.850118px;}
.ws11d{word-spacing:11.868119px;}
.ws11e{word-spacing:11.928119px;}
.ws11a{word-spacing:12.030120px;}
.ws116{word-spacing:12.090121px;}
.ws11c{word-spacing:12.174122px;}
.ws119{word-spacing:12.252123px;}
.ws1c{word-spacing:12.340500px;}
.ws138{word-spacing:12.348123px;}
.ws11{word-spacing:12.357600px;}
.ws5e{word-spacing:12.390124px;}
.ws12f{word-spacing:12.396124px;}
.ws1e{word-spacing:12.420300px;}
.ws19{word-spacing:12.431700px;}
.ws12{word-spacing:12.443100px;}
.ws1d{word-spacing:12.448800px;}
.ws11b{word-spacing:12.498125px;}
.ws20{word-spacing:12.511500px;}
.ws139{word-spacing:12.516125px;}
.ws1b{word-spacing:12.517200px;}
.ws18{word-spacing:12.528600px;}
.ws21{word-spacing:12.597000px;}
.ws121{word-spacing:12.600126px;}
.ws14{word-spacing:12.602700px;}
.ws1f{word-spacing:12.614100px;}
.ws118{word-spacing:12.618126px;}
.ws146{word-spacing:12.666127px;}
.ws78{word-spacing:12.696127px;}
.ws16{word-spacing:12.699600px;}
.ws17{word-spacing:12.728100px;}
.ws141{word-spacing:12.738127px;}
.ws6d{word-spacing:12.762128px;}
.ws13{word-spacing:12.768000px;}
.ws15{word-spacing:12.779400px;}
.ws117{word-spacing:12.798128px;}
.ws8d{word-spacing:12.834128px;}
.ws13f{word-spacing:12.840128px;}
.ws93{word-spacing:12.844639px;}
.ws140{word-spacing:12.846128px;}
.ws92{word-spacing:12.916639px;}
.ws52{word-spacing:12.936129px;}
.ws144{word-spacing:12.948129px;}
.ws5a{word-spacing:12.960130px;}
.ws7b{word-spacing:12.966130px;}
.ws4f{word-spacing:12.972130px;}
.ws4b{word-spacing:12.978130px;}
.ws143{word-spacing:12.984130px;}
.ws73{word-spacing:12.996130px;}
.ws13e{word-spacing:13.002130px;}
.wsbe{word-spacing:13.008130px;}
.ws136{word-spacing:13.014130px;}
.wsbf{word-spacing:13.020130px;}
.ws4a{word-spacing:13.026130px;}
.ws137{word-spacing:13.032130px;}
.ws88{word-spacing:13.038130px;}
.ws77{word-spacing:13.044130px;}
.ws50{word-spacing:13.050130px;}
.wsd2{word-spacing:13.056131px;}
.ws132{word-spacing:13.062131px;}
.ws72{word-spacing:13.068131px;}
.ws1a{word-spacing:13.070100px;}
.ws134{word-spacing:13.074131px;}
.wsdd{word-spacing:13.075037px;}
.ws6e{word-spacing:13.080131px;}
.ws76{word-spacing:13.086131px;}
.ws107{word-spacing:13.092131px;}
.wsc0{word-spacing:13.098131px;}
.ws22{word-spacing:13.104131px;}
.ws4e{word-spacing:13.110131px;}
.ws62{word-spacing:13.116131px;}
.wsc3{word-spacing:13.122131px;}
.ws6f{word-spacing:13.128131px;}
.ws60{word-spacing:13.134131px;}
.ws51{word-spacing:13.140131px;}
.ws49{word-spacing:13.146131px;}
.ws89{word-spacing:13.152132px;}
.ws130{word-spacing:13.158132px;}
.ws81{word-spacing:13.164132px;}
.ws75{word-spacing:13.170132px;}
.ws59{word-spacing:13.176132px;}
.ws54{word-spacing:13.182132px;}
.ws8c{word-spacing:13.188132px;}
.ws148{word-spacing:13.194132px;}
.ws8e{word-spacing:13.200132px;}
.ws135{word-spacing:13.206132px;}
.ws26{word-spacing:13.212132px;}
.ws4d{word-spacing:13.224132px;}
.wsd0{word-spacing:13.230132px;}
.ws108{word-spacing:13.236132px;}
.wsc7{word-spacing:13.242132px;}
.ws23{word-spacing:13.248132px;}
.ws87{word-spacing:13.254133px;}
.ws85{word-spacing:13.266133px;}
.ws123{word-spacing:13.272133px;}
.ws71{word-spacing:13.278133px;}
.ws133{word-spacing:13.284133px;}
.ws5d{word-spacing:13.290133px;}
.ws13b{word-spacing:13.296133px;}
.ws5c{word-spacing:13.302133px;}
.ws7a{word-spacing:13.308133px;}
.ws57{word-spacing:13.314133px;}
.ws131{word-spacing:13.320133px;}
.ws84{word-spacing:13.326133px;}
.ws8a{word-spacing:13.332133px;}
.ws124{word-spacing:13.338133px;}
.wsd3{word-spacing:13.344133px;}
.ws58{word-spacing:13.350134px;}
.ws25{word-spacing:13.356134px;}
.ws142{word-spacing:13.362134px;}
.ws5f{word-spacing:13.368134px;}
.ws66{word-spacing:13.374134px;}
.ws80{word-spacing:13.380134px;}
.ws7e{word-spacing:13.386134px;}
.wsc4{word-spacing:13.398134px;}
.wsd5{word-spacing:13.410134px;}
.wsd7{word-spacing:13.416134px;}
.ws65{word-spacing:13.422134px;}
.ws5b{word-spacing:13.428134px;}
.wsc5{word-spacing:13.434134px;}
.ws56{word-spacing:13.440134px;}
.ws55{word-spacing:13.446134px;}
.ws48{word-spacing:13.452135px;}
.ws13a{word-spacing:13.458135px;}
.ws86{word-spacing:13.464135px;}
.ws24{word-spacing:13.470135px;}
.ws82{word-spacing:13.476135px;}
.wsd6{word-spacing:13.488135px;}
.wsc2{word-spacing:13.500135px;}
.ws53{word-spacing:13.506135px;}
.ws6c{word-spacing:13.512135px;}
.ws125{word-spacing:13.518135px;}
.wsd4{word-spacing:13.530135px;}
.ws7c{word-spacing:13.536135px;}
.wsd1{word-spacing:13.542135px;}
.ws145{word-spacing:13.554136px;}
.ws122{word-spacing:13.560136px;}
.ws79{word-spacing:13.572136px;}
.wsc8{word-spacing:13.602136px;}
.ws109{word-spacing:13.632136px;}
.ws61{word-spacing:13.638136px;}
.ws10a{word-spacing:13.644136px;}
.ws13c{word-spacing:13.692137px;}
.ws13d{word-spacing:13.716137px;}
.ws63{word-spacing:13.722137px;}
.ws120{word-spacing:14.424144px;}
.ws74{word-spacing:15.400672px;}
.ws149{word-spacing:15.523071px;}
.ws83{word-spacing:15.580670px;}
.ws7d{word-spacing:15.602270px;}
.ws90{word-spacing:15.710269px;}
.wsc6{word-spacing:15.717469px;}
.ws70{word-spacing:15.724669px;}
.ws64{word-spacing:15.731869px;}
.ws129{word-spacing:15.753469px;}
.wsc1{word-spacing:15.854268px;}
.ws2{word-spacing:26.304132px;}
.ws4{word-spacing:26.364132px;}
.ws3{word-spacing:26.472132px;}
.ws1{word-spacing:26.520133px;}
.wscf{word-spacing:48.036480px;}
.ws14a{word-spacing:59.821652px;}
.ws156{word-spacing:59.860052px;}
.wsf0{word-spacing:501.526531px;}
.wsed{word-spacing:501.531331px;}
.wsf7{word-spacing:502.016125px;}
.wsdf{word-spacing:514.798365px;}
.wsff{word-spacing:516.727941px;}
.wsde{word-spacing:522.439869px;}
.wsf5{word-spacing:531.713353px;}
.wse1{word-spacing:534.521318px;}
.wse0{word-spacing:542.167623px;}
.wsfb{word-spacing:560.719391px;}
.wse3{word-spacing:561.016987px;}
.wse9{word-spacing:561.324183px;}
.wse4{word-spacing:562.629767px;}
.wsf8{word-spacing:567.180110px;}
.wsf9{word-spacing:571.864852px;}
.wseb{word-spacing:574.245622px;}
.wse2{word-spacing:578.085574px;}
.wse5{word-spacing:580.749541px;}
.wsf6{word-spacing:593.978175px;}
.wsee{word-spacing:596.392545px;}
.wsef{word-spacing:606.150823px;}
.wsfe{word-spacing:607.245209px;}
.wsf4{word-spacing:607.278809px;}
.wsec{word-spacing:612.918738px;}
.wse7{word-spacing:613.701129px;}
.wse8{word-spacing:617.896276px;}
.wsf2{word-spacing:626.968163px;}
.wsfc{word-spacing:630.116923px;}
.wsf1{word-spacing:632.104099px;}
.wsfa{word-spacing:639.414407px;}
.wsf3{word-spacing:641.060787px;}
.wsfd{word-spacing:643.383958px;}
.wsea{word-spacing:645.831927px;}
.wse6{word-spacing:653.079836px;}
.wsb4{word-spacing:780.158248px;}
.wsb5{word-spacing:798.604417px;}
.wsaf{word-spacing:809.337083px;}
.wsb1{word-spacing:810.777065px;}
.wsa7{word-spacing:818.068174px;}
.wsa5{word-spacing:818.144973px;}
.wsab{word-spacing:829.540031px;}
.ws9d{word-spacing:831.292009px;}
.wsb7{word-spacing:837.133536px;}
.wsa9{word-spacing:839.557505px;}
.wsae{word-spacing:840.575093px;}
.ws9f{word-spacing:840.642292px;}
.wsbd{word-spacing:841.098286px;}
.wsb0{word-spacing:841.151085px;}
.wsa3{word-spacing:843.032662px;}
.wsb9{word-spacing:844.496644px;}
.wsa1{word-spacing:846.440619px;}
.ws99{word-spacing:848.739791px;}
.wsb3{word-spacing:851.307759px;}
.ws9b{word-spacing:855.728503px;}
.wsbb{word-spacing:859.784453px;}
.ws97{word-spacing:865.371583px;}
.wsbc{word-spacing:880.356995px;}
.wsad{word-spacing:881.720178px;}
.ws96{word-spacing:891.507256px;}
.ws95{word-spacing:895.620805px;}
.wsb2{word-spacing:903.857502px;}
.wsa6{word-spacing:911.038212px;}
.ws9c{word-spacing:914.014175px;}
.ws98{word-spacing:922.121273px;}
.ws9a{word-spacing:926.748415px;}
.wsaa{word-spacing:953.892076px;}
.wsa0{word-spacing:956.690441px;}
.wsa2{word-spacing:966.938313px;}
.ws9e{word-spacing:967.043912px;}
.wsa8{word-spacing:970.120673px;}
.wsa4{word-spacing:979.264559px;}
.wsba{word-spacing:981.160535px;}
.wsb8{word-spacing:983.200510px;}
.wsac{word-spacing:999.928301px;}
.ws94{word-spacing:1003.686654px;}
.wsb6{word-spacing:1017.668879px;}
._d{margin-left:-13.203911px;}
._8{margin-left:-10.550268px;}
._2d{margin-left:-5.150379px;}
._9{margin-left:-4.079949px;}
._0{margin-left:-2.496012px;}
._2{margin-left:-1.214385px;}
._3{width:1.385100px;}
._a{width:9.307127px;}
._1{width:11.476700px;}
._b{width:12.528125px;}
._4{width:13.571700px;}
._5{width:14.634146px;}
._c{width:16.682261px;}
._e{width:20.716541px;}
._6{width:46.545018px;}
._2c{width:48.073830px;}
._10{width:49.200928px;}
._13{width:481.803577px;}
._22{width:507.022462px;}
._12{width:509.782428px;}
._20{width:540.012450px;}
._11{width:558.727416px;}
._14{width:585.899876px;}
._16{width:599.162110px;}
._1e{width:612.731541px;}
._21{width:622.336221px;}
._18{width:632.464094px;}
._23{width:642.097574px;}
._1a{width:652.187048px;}
._1c{width:665.454082px;}
._26{width:670.825215px;}
._24{width:678.682716px;}
._15{width:688.623392px;}
._2a{width:691.949751px;}
._17{width:701.852027px;}
._1f{width:714.778265px;}
._28{width:720.835789px;}
._1b{width:734.506019px;}
._19{width:740.971538px;}
._29{width:754.233772px;}
._1d{width:767.467207px;}
._27{width:773.231934px;}
._25{width:780.729441px;}
._2b{width:807.225110px;}
._f{width:1154.011175px;}
._2e{width:1750.979712px;}
._7{width:1777.513781px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y25{bottom:54.000000px;}
.y154{bottom:89.374602px;}
.y16f{bottom:99.153310px;}
.y153{bottom:112.590712px;}
.y16e{bottom:122.369419px;}
.y24{bottom:124.495920px;}
.y9f{bottom:124.496325px;}
.yb8{bottom:124.496565px;}
.y73{bottom:124.496955px;}
.y1a4{bottom:124.497994px;}
.y44{bottom:124.504170px;}
.y17b{bottom:125.075490px;}
.y179{bottom:125.091120px;}
.y175{bottom:125.092155px;}
.yea{bottom:125.092847px;}
.y152{bottom:126.877734px;}
.y216{bottom:127.813623px;}
.y130{bottom:128.658375px;}
.y101{bottom:134.185004px;}
.y16d{bottom:136.656441px;}
.y1a3{bottom:138.785015px;}
.y43{bottom:141.001564px;}
.y151{bottom:141.079556px;}
.y215{bottom:142.100644px;}
.y23{bottom:143.970615px;}
.y9e{bottom:143.971019px;}
.yb7{bottom:143.971260px;}
.y72{bottom:143.971650px;}
.y120{bottom:144.311625px;}
.y17a{bottom:144.550184px;}
.y178{bottom:144.565815px;}
.y174{bottom:144.566850px;}
.y12f{bottom:148.133070px;}
.ye9{bottom:148.392956px;}
.y16c{bottom:150.943462px;}
.y1dc{bottom:151.112184px;}
.y100{bottom:153.659699px;}
.y150{bottom:155.366578px;}
.y214{bottom:156.302466px;}
.y42{bottom:157.498958px;}
.y1a2{bottom:158.258372px;}
.ye8{bottom:162.594779px;}
.y22{bottom:163.529311px;}
.y9d{bottom:163.529715px;}
.yb6{bottom:163.529955px;}
.y173{bottom:164.108880px;}
.y177{bottom:164.124511px;}
.y16b{bottom:165.145285px;}
.y1db{bottom:165.314007px;}
.y12e{bottom:167.607765px;}
.y11f{bottom:167.611734px;}
.y71{bottom:169.482975px;}
.y14f{bottom:169.568400px;}
.y1a1{bottom:172.460194px;}
.yff{bottom:173.218395px;}
.y41{bottom:173.996351px;}
.y213{bottom:175.861022px;}
.ye7{bottom:176.881800px;}
.y16a{bottom:179.432306px;}
.y1da{bottom:179.601028px;}
.y11e{bottom:181.813556px;}
.y21{bottom:183.004005px;}
.y9c{bottom:183.004410px;}
.yb5{bottom:183.004650px;}
.y172{bottom:183.583575px;}
.y176{bottom:183.599205px;}
.y12d{bottom:187.082460px;}
.y212{bottom:190.062844px;}
.y40{bottom:190.493745px;}
.y1a0{bottom:192.018750px;}
.yfe{bottom:192.693090px;}
.y169{bottom:193.634129px;}
.y11d{bottom:196.100578px;}
.y70{bottom:196.525950px;}
.y1d9{bottom:199.075585px;}
.y20{bottom:202.478700px;}
.y9b{bottom:202.479104px;}
.y171{bottom:203.058269px;}
.y211{bottom:204.349866px;}
.y19f{bottom:206.220572px;}
.y12c{bottom:206.641155px;}
.y3f{bottom:206.991139px;}
.y168{bottom:207.921150px;}
.yb4{bottom:208.516500px;}
.y11c{bottom:210.302400px;}
.yfd{bottom:212.167784px;}
.y1d8{bottom:213.362606px;}
.y19e{bottom:220.507594px;}
.y9a{bottom:222.037800px;}
.y170{bottom:222.616965px;}
.y3e{bottom:223.488533px;}
.y210{bottom:223.823222px;}
.y12b{bottom:226.115850px;}
.y1f{bottom:227.990550px;}
.yfc{bottom:231.726480px;}
.y1d7{bottom:232.835963px;}
.y20f{bottom:238.110244px;}
.y19d{bottom:239.980950px;}
.y3d{bottom:239.985927px;}
.y6f{bottom:242.091660px;}
.y12a{bottom:245.590545px;}
.y1d6{bottom:247.037785px;}
.y99{bottom:247.464450px;}
.yfb{bottom:251.201175px;}
.y19c{bottom:254.267972px;}
.yb3{bottom:255.202455px;}
.y3c{bottom:256.483320px;}
.y20e{bottom:257.583600px;}
.y1d5{bottom:261.324807px;}
.y6e{bottom:261.566355px;}
.y129{bottom:265.149240px;}
.y19b{bottom:268.469794px;}
.yfa{bottom:270.675869px;}
.y20d{bottom:271.870622px;}
.y3b{bottom:272.980714px;}
.yb0{bottom:274.675080px;}
.yb2{bottom:274.677150px;}
.y1d4{bottom:275.611828px;}
.y6d{bottom:281.125050px;}
.yb1{bottom:281.395200px;}
.y128{bottom:284.623935px;}
.y19a{bottom:288.028350px;}
.y3a{bottom:289.478108px;}
.yf9{bottom:290.234565px;}
.y20c{bottom:291.343978px;}
.y96{bottom:293.718840px;}
.y98{bottom:293.725950px;}
.yaf{bottom:294.233775px;}
.y1d3{bottom:295.085185px;}
.y97{bottom:300.358950px;}
.y6c{bottom:300.599745px;}
.y199{bottom:302.230172px;}
.y127{bottom:304.098630px;}
.y20b{bottom:305.545801px;}
.y1d2{bottom:309.287007px;}
.yf8{bottom:309.709260px;}
.y95{bottom:313.193535px;}
.yae{bottom:313.708470px;}
.y39{bottom:314.989789px;}
.y20a{bottom:319.832822px;}
.y6b{bottom:320.074440px;}
.y198{bottom:321.788728px;}
.y1d1{bottom:323.574028px;}
.y126{bottom:323.657325px;}
.y1e{bottom:324.939750px;}
.yf7{bottom:329.183954px;}
.y38{bottom:331.487183px;}
.y94{bottom:332.668230px;}
.yad{bottom:333.183165px;}
.y209{bottom:334.119844px;}
.y197{bottom:335.990550px;}
.y6a{bottom:339.549134px;}
.y1d0{bottom:343.047385px;}
.y125{bottom:343.132020px;}
.y1d{bottom:345.944250px;}
.yf6{bottom:348.658649px;}
.y93{bottom:352.226925px;}
.yac{bottom:352.741861px;}
.y208{bottom:353.593200px;}
.y196{bottom:356.229900px;}
.y37{bottom:356.998864px;}
.y1cf{bottom:357.334406px;}
.y69{bottom:359.107830px;}
.y124{bottom:362.606715px;}
.y1c{bottom:366.948750px;}
.y207{bottom:367.795023px;}
.yf5{bottom:368.217345px;}
.y1ce{bottom:371.536229px;}
.y92{bottom:371.701620px;}
.yab{bottom:372.216555px;}
.y36{bottom:373.496258px;}
.y68{bottom:378.582525px;}
.y206{bottom:382.082044px;}
.y123{bottom:382.165411px;}
.yf4{bottom:387.692040px;}
.y1b{bottom:387.953250px;}
.ya9{bottom:389.225100px;}
.y35{bottom:389.993651px;}
.y1cd{bottom:391.094784px;}
.y91{bottom:391.176315px;}
.ya8{bottom:391.689825px;}
.yaa{bottom:391.691250px;}
.y205{bottom:396.369066px;}
.y67{bottom:398.057219px;}
.y195{bottom:401.215260px;}
.y122{bottom:401.640105px;}
.y1cc{bottom:405.296607px;}
.y34{bottom:406.491045px;}
.yf3{bottom:407.166734px;}
.y1a{bottom:408.957750px;}
.y90{bottom:410.735011px;}
.ya7{bottom:411.248520px;}
.y204{bottom:415.842422px;}
.y66{bottom:417.615915px;}
.y1cb{bottom:419.583628px;}
.y194{bottom:420.689954px;}
.y121{bottom:421.114800px;}
.y148{bottom:422.894880px;}
.y33{bottom:422.988439px;}
.ye6{bottom:426.299925px;}
.yf2{bottom:426.725430px;}
.y19{bottom:429.962250px;}
.y203{bottom:430.044245px;}
.y8f{bottom:430.209705px;}
.ya6{bottom:430.723215px;}
.y1ca{bottom:433.870650px;}
.y65{bottom:437.090610px;}
.y32{bottom:439.485833px;}
.y193{bottom:440.248650px;}
.y147{bottom:442.369575px;}
.y202{bottom:444.331266px;}
.ye5{bottom:445.774620px;}
.yf1{bottom:446.200125px;}
.y8e{bottom:449.684400px;}
.ya5{bottom:450.197910px;}
.y18{bottom:450.966750px;}
.y137{bottom:453.172631px;}
.y1c9{bottom:453.344006px;}
.y64{bottom:456.565305px;}
.y161{bottom:457.255515px;}
.y201{bottom:458.618287px;}
.y146{bottom:461.928270px;}
.y31{bottom:464.997514px;}
.ye4{bottom:465.249315px;}
.yf0{bottom:465.674819px;}
.y192{bottom:465.675450px;}
.y1c8{bottom:467.545829px;}
.y8d{bottom:469.159095px;}
.ya4{bottom:469.756605px;}
.y17{bottom:471.971250px;}
.y63{bottom:476.124000px;}
.y136{bottom:476.388741px;}
.y160{bottom:476.814211px;}
.y200{bottom:478.091644px;}
.y145{bottom:481.402965px;}
.y1c7{bottom:481.832850px;}
.ye3{bottom:484.724010px;}
.yef{bottom:485.233515px;}
.y8c{bottom:488.717790px;}
.ya3{bottom:489.231300px;}
.y30{bottom:490.509195px;}
.y135{bottom:490.675762px;}
.y1ff{bottom:492.293466px;}
.y16{bottom:492.975750px;}
.y62{bottom:495.598695px;}
.y1c6{bottom:496.119872px;}
.y15f{bottom:496.288905px;}
.y144{bottom:500.877660px;}
.ye2{bottom:504.282705px;}
.yee{bottom:504.708210px;}
.y134{bottom:504.877585px;}
.y1fe{bottom:506.580488px;}
.y8b{bottom:508.192485px;}
.y191{bottom:510.658635px;}
.y15{bottom:513.980250px;}
.ya2{bottom:514.743150px;}
.y61{bottom:515.073390px;}
.y1c5{bottom:515.593228px;}
.y15e{bottom:515.763600px;}
.y2f{bottom:516.020876px;}
.y133{bottom:519.164606px;}
.y143{bottom:520.352354px;}
.ye1{bottom:523.757400px;}
.yed{bottom:524.182904px;}
.y1fd{bottom:526.053844px;}
.y8a{bottom:527.667180px;}
.y1c4{bottom:529.795051px;}
.y190{bottom:530.133330px;}
.y132{bottom:533.366429px;}
.y60{bottom:534.632085px;}
.y14{bottom:534.984750px;}
.y142{bottom:539.911050px;}
.y15d{bottom:541.275450px;}
.y2e{bottom:541.532557px;}
.yec{bottom:543.741600px;}
.y1c3{bottom:544.082072px;}
.y1fc{bottom:545.612400px;}
.y89{bottom:547.225875px;}
.y131{bottom:547.653450px;}
.ye0{bottom:549.269100px;}
.y18f{bottom:549.692025px;}
.y5f{bottom:554.106780px;}
.y13{bottom:555.989250px;}
.y2d{bottom:558.029951px;}
.y1c2{bottom:558.369093px;}
.y141{bottom:559.385745px;}
.y1fb{bottom:559.807941px;}
.ya1{bottom:561.429105px;}
.y88{bottom:566.700570px;}
.y18e{bottom:569.166720px;}
.yeb{bottom:569.168400px;}
.y5e{bottom:573.581475px;}
.y1fa{bottom:574.094962px;}
.y12{bottom:576.993750px;}
.y1c1{bottom:577.842450px;}
.y140{bottom:578.860440px;}
.ya0{bottom:580.903800px;}
.y2c{bottom:583.541632px;}
.y87{bottom:586.175265px;}
.y1f9{bottom:588.296785px;}
.y18d{bottom:588.641415px;}
.y15c{bottom:591.276630px;}
.y1c0{bottom:592.040738px;}
.y5d{bottom:593.056169px;}
.ydf{bottom:596.378880px;}
.y11{bottom:597.998250px;}
.y13f{bottom:598.419135px;}
.y2b{bottom:600.039026px;}
.y86{bottom:605.733961px;}
.y1bf{bottom:606.327759px;}
.y1f8{bottom:607.855340px;}
.y11b{bottom:608.107759px;}
.y18c{bottom:608.200111px;}
.y15b{bottom:610.835325px;}
.y5c{bottom:612.614865px;}
.yde{bottom:615.853575px;}
.y2a{bottom:616.536420px;}
.yd0{bottom:617.804416px;}
.y13e{bottom:617.893830px;}
.y10{bottom:619.002750px;}
.y1f7{bottom:622.057163px;}
.y85{bottom:625.208655px;}
.y1be{bottom:625.801116px;}
.y18b{bottom:627.674805px;}
.y15a{bottom:630.310020px;}
.y11a{bottom:631.323868px;}
.y5b{bottom:632.089560px;}
.y29{bottom:633.033813px;}
.ydd{bottom:635.412270px;}
.y1f6{bottom:636.344184px;}
.y13d{bottom:637.368525px;}
.yf{bottom:639.921750px;}
.y1bd{bottom:640.088137px;}
.ycf{bottom:641.105725px;}
.y84{bottom:644.683350px;}
.y18a{bottom:647.149500px;}
.y28{bottom:649.531207px;}
.y159{bottom:649.784715px;}
.y119{bottom:650.118033px;}
.y5a{bottom:651.564254px;}
.ydc{bottom:654.886965px;}
.y1f5{bottom:655.817541px;}
.y13c{bottom:656.927220px;}
.y1bc{bottom:659.562694px;}
.yce{bottom:659.814691px;}
.ye{bottom:660.926250px;}
.y118{bottom:668.827000px;}
.y158{bottom:669.343411px;}
.y1f4{bottom:670.104562px;}
.y83{bottom:670.195050px;}
.y59{bottom:671.122950px;}
.y189{bottom:672.661200px;}
.y1bb{bottom:673.849715px;}
.y27{bottom:674.106900px;}
.ydb{bottom:674.361660px;}
.y13b{bottom:676.401915px;}
.ycd{bottom:678.608856px;}
.yd{bottom:681.930750px;}
.y1f3{bottom:684.306385px;}
.y117{bottom:687.535966px;}
.y1ba{bottom:688.051538px;}
.y157{bottom:688.818105px;}
.y58{bottom:690.597645px;}
.yda{bottom:693.836354px;}
.y13a{bottom:695.876610px;}
.ycc{bottom:697.317822px;}
.y1f2{bottom:698.593406px;}
.y1b9{bottom:702.338559px;}
.yc{bottom:702.935250px;}
.y116{bottom:706.330131px;}
.y156{bottom:708.292800px;}
.y57{bottom:710.072340px;}
.yd9{bottom:713.395050px;}
.y139{bottom:715.435305px;}
.ycb{bottom:716.111987px;}
.y82{bottom:716.368785px;}
.y188{bottom:717.642705px;}
.y1f1{bottom:718.066763px;}
.y1b8{bottom:721.813116px;}
.y115{bottom:725.039097px;}
.y56{bottom:729.631035px;}
.y1f0{bottom:732.353784px;}
.y155{bottom:733.804500px;}
.yca{bottom:734.820953px;}
.y138{bottom:734.910000px;}
.y81{bottom:735.927481px;}
.yb{bottom:735.930450px;}
.y1b7{bottom:736.100137px;}
.y187{bottom:737.117400px;}
.yd8{bottom:738.905925px;}
.y114{bottom:743.833262px;}
.y1ef{bottom:746.555607px;}
.y55{bottom:749.105730px;}
.y1b6{bottom:750.301960px;}
.yc9{bottom:753.615118px;}
.y80{bottom:755.402175px;}
.y186{bottom:756.592095px;}
.y113{bottom:762.542228px;}
.yd7{bottom:765.864300px;}
.y1ee{bottom:766.114162px;}
.y14e{bottom:766.884253px;}
.y167{bottom:767.818454px;}
.y54{bottom:768.580425px;}
.y1b5{bottom:769.860515px;}
.yc8{bottom:772.324084px;}
.y7f{bottom:774.876870px;}
.y185{bottom:776.150790px;}
.y1ed{bottom:780.315985px;}
.y112{bottom:781.336393px;}
.y1b4{bottom:784.062338px;}
.y53{bottom:788.055119px;}
.y14d{bottom:790.184362px;}
.y166{bottom:791.034563px;}
.yc7{bottom:791.118250px;}
.y7e{bottom:794.435566px;}
.y1ec{bottom:794.603006px;}
.y184{bottom:795.625485px;}
.ya{bottom:798.944850px;}
.y111{bottom:800.045359px;}
.y26{bottom:802.091100px;}
.y1b3{bottom:803.620893px;}
.y14c{bottom:804.386185px;}
.y165{bottom:805.321585px;}
.y52{bottom:807.613815px;}
.yc6{bottom:809.827216px;}
.yd6{bottom:812.974470px;}
.y7d{bottom:813.910261px;}
.y1eb{bottom:814.077563px;}
.y183{bottom:815.100180px;}
.y1b2{bottom:817.822716px;}
.y14b{bottom:818.673206px;}
.y110{bottom:818.839524px;}
.y164{bottom:819.608606px;}
.y51{bottom:827.088510px;}
.y1ea{bottom:828.364584px;}
.yc5{bottom:828.620181px;}
.y9{bottom:828.963675px;}
.yd5{bottom:832.449165px;}
.y14a{bottom:832.960228px;}
.y7c{bottom:833.384955px;}
.y163{bottom:833.810429px;}
.y182{bottom:834.658875px;}
.y1b1{bottom:837.296072px;}
.y10f{bottom:837.548491px;}
.y1e9{bottom:842.566406px;}
.y8{bottom:843.931088px;}
.y50{bottom:846.563204px;}
.y149{bottom:847.162050px;}
.yc4{bottom:847.329147px;}
.y162{bottom:848.097450px;}
.y1b0{bottom:851.583094px;}
.yd4{bottom:852.007861px;}
.y7b{bottom:852.859650px;}
.y181{bottom:854.133570px;}
.y10e{bottom:856.342656px;}
.y7{bottom:858.982500px;}
.y1e8{bottom:862.039763px;}
.y4f{bottom:866.121900px;}
.yc3{bottom:866.123312px;}
.y1af{bottom:871.057650px;}
.yd3{bottom:871.482555px;}
.y180{bottom:873.608265px;}
.y10d{bottom:875.051622px;}
.y1e7{bottom:876.326784px;}
.y7a{bottom:878.371350px;}
.yc2{bottom:884.832278px;}
.y1ae{bottom:885.344672px;}
.y4e{bottom:885.596595px;}
.y5{bottom:885.939900px;}
.y1e6{bottom:890.613806px;}
.yd2{bottom:890.957250px;}
.y6{bottom:891.977850px;}
.y17f{bottom:893.166961px;}
.y10c{bottom:893.845787px;}
.y1ad{bottom:899.546494px;}
.yc1{bottom:903.541244px;}
.y1e5{bottom:904.815628px;}
.y218{bottom:904.818028px;}
.y4d{bottom:905.071290px;}
.y10b{bottom:912.554753px;}
.y17e{bottom:912.641655px;}
.yd1{bottom:916.469100px;}
.y1ac{bottom:919.105050px;}
.yc0{bottom:922.335409px;}
.y4{bottom:923.440575px;}
.y1e4{bottom:924.290185px;}
.y4c{bottom:924.629985px;}
.y10a{bottom:931.348918px;}
.y17d{bottom:932.116350px;}
.y1ab{bottom:933.306872px;}
.y1e3{bottom:938.577206px;}
.ybf{bottom:941.044375px;}
.y4b{bottom:944.104680px;}
.y1aa{bottom:947.593894px;}
.y109{bottom:950.057884px;}
.y1e2{bottom:952.864228px;}
.y217{bottom:952.865428px;}
.y17c{bottom:957.628050px;}
.ybe{bottom:959.838540px;}
.y3{bottom:960.943762px;}
.y4a{bottom:963.579375px;}
.y1a9{bottom:967.067250px;}
.y108{bottom:968.852049px;}
.y1e1{bottom:972.338784px;}
.ybd{bottom:978.547507px;}
.y1a8{bottom:981.354272px;}
.y49{bottom:983.138070px;}
.y1e0{bottom:986.540607px;}
.y107{bottom:987.561015px;}
.y79{bottom:988.068324px;}
.y1a7{bottom:995.556094px;}
.ybc{bottom:997.340472px;}
.y2{bottom:998.446950px;}
.y1df{bottom:1000.827628px;}
.y48{bottom:1002.612765px;}
.y78{bottom:1004.565718px;}
.y106{bottom:1010.096734px;}
.y1a6{bottom:1015.114650px;}
.ybb{bottom:1016.049438px;}
.y1de{bottom:1020.300985px;}
.y47{bottom:1022.087460px;}
.y1a5{bottom:1029.316472px;}
.y77{bottom:1030.077399px;}
.y1dd{bottom:1034.588006px;}
.y105{bottom:1034.588428px;}
.y1{bottom:1035.949350px;}
.yba{bottom:1038.585156px;}
.y46{bottom:1041.562154px;}
.y76{bottom:1046.574793px;}
.y102{bottom:1048.789829px;}
.y104{bottom:1048.790250px;}
.y103{bottom:1054.147650px;}
.y45{bottom:1061.120850px;}
.y75{bottom:1063.072186px;}
.yb9{bottom:1063.076850px;}
.y74{bottom:1118.692500px;}
.hf{height:24.796125px;}
.h4{height:26.528462px;}
.hc{height:28.477152px;}
.h9{height:34.943563px;}
.hd{height:35.375558px;}
.h1{height:37.199535px;}
.h3{height:39.798000px;}
.he{height:42.180422px;}
.h8{height:42.720427px;}
.h10{height:42.782949px;}
.h11{height:42.790269px;}
.ha{height:42.960430px;}
.h6{height:44.175000px;}
.h7{height:53.063558px;}
.hb{height:55.799535px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:54.000000px;}
.xb{left:71.433000px;}
.xa{left:84.018900px;}
.x1b{left:233.265912px;}
.x1{left:300.018750px;}
.x1c{left:306.651900px;}
.xc{left:317.958929px;}
.x1d{left:331.484390px;}
.x18{left:355.293434px;}
.x2{left:389.225100px;}
.x3{left:403.171500px;}
.xe{left:503.347950px;}
.xf{left:512.787300px;}
.x4{left:518.484900px;}
.x10{left:531.240750px;}
.x5{left:532.431300px;}
.x11{left:540.595050px;}
.x19{left:567.467550px;}
.x1a{left:594.255000px;}
.x6{left:643.577700px;}
.x7{left:657.524250px;}
.xd{left:693.070650px;}
.x16{left:700.979400px;}
.x17{left:736.015500px;}
.x8{left:803.026650px;}
.x12{left:816.717900px;}
.x13{left:828.368250px;}
.x14{left:839.848500px;}
.x15{left:845.206050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.773341pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.015200pt;}
.ls3{letter-spacing:0.034133pt;}
.ls9{letter-spacing:0.038395pt;}
.ls17{letter-spacing:0.046218pt;}
.ls1b{letter-spacing:0.064001pt;}
.lsd{letter-spacing:0.096001pt;}
.ls0{letter-spacing:0.110400pt;}
.ls22{letter-spacing:0.128001pt;}
.ls1f{letter-spacing:0.149335pt;}
.lsa{letter-spacing:0.154668pt;}
.ls11{letter-spacing:0.165335pt;}
.ls1a{letter-spacing:0.221864pt;}
.ls16{letter-spacing:0.224002pt;}
.ls1{letter-spacing:0.235200pt;}
.ls19{letter-spacing:0.273063pt;}
.ls20{letter-spacing:0.314670pt;}
.ls5{letter-spacing:9.104953pt;}
.ls18{letter-spacing:9.271351pt;}
.ls7{letter-spacing:9.378016pt;}
.ls1c{letter-spacing:9.574280pt;}
.ls13{letter-spacing:11.552116pt;}
.ls1e{letter-spacing:11.589449pt;}
.ls14{letter-spacing:11.653450pt;}
.ls15{letter-spacing:11.760118pt;}
.ls21{letter-spacing:11.824118pt;}
.ls12{letter-spacing:11.856119pt;}
.lse{letter-spacing:11.888119pt;}
.lsf{letter-spacing:11.893452pt;}
.lsb{letter-spacing:11.957453pt;}
.ls10{letter-spacing:11.978786pt;}
.ls4{letter-spacing:18.478702pt;}
.ls2{letter-spacing:18.777365pt;}
.ws7f{word-spacing:-11.909452pt;}
.ws8b{word-spacing:-11.813451pt;}
.ws28{word-spacing:-9.420682pt;}
.ws147{word-spacing:-0.063999pt;}
.ws4c{word-spacing:-0.053334pt;}
.ws5{word-spacing:-0.048000pt;}
.wsd{word-spacing:-0.042666pt;}
.ws8f{word-spacing:-0.035552pt;}
.wsa{word-spacing:-0.031996pt;}
.wsdb{word-spacing:-0.028440pt;}
.ws47{word-spacing:0.000000pt;}
.ws46{word-spacing:7.705504pt;}
.ws3f{word-spacing:8.575893pt;}
.ws35{word-spacing:8.584426pt;}
.ws112{word-spacing:8.592959pt;}
.ws44{word-spacing:8.601492pt;}
.ws160{word-spacing:8.622826pt;}
.ws40{word-spacing:8.631359pt;}
.ws3d{word-spacing:8.635625pt;}
.ws165{word-spacing:8.665492pt;}
.ws43{word-spacing:8.669758pt;}
.ws153{word-spacing:8.682558pt;}
.ws2e{word-spacing:8.691091pt;}
.ws67{word-spacing:8.699625pt;}
.ws41{word-spacing:8.708158pt;}
.ws12c{word-spacing:8.720958pt;}
.ws10f{word-spacing:8.725224pt;}
.ws2c{word-spacing:8.729491pt;}
.ws2a{word-spacing:8.733757pt;}
.ws101{word-spacing:8.738024pt;}
.ws171{word-spacing:8.742291pt;}
.ws3e{word-spacing:8.750824pt;}
.ws39{word-spacing:8.755091pt;}
.ws114{word-spacing:8.763624pt;}
.ws10c{word-spacing:8.767890pt;}
.ws34{word-spacing:8.776424pt;}
.ws32{word-spacing:8.784957pt;}
.ws172{word-spacing:8.793490pt;}
.ws12b{word-spacing:8.797757pt;}
.ws12a{word-spacing:8.802023pt;}
.ws6a{word-spacing:8.814823pt;}
.ws2f{word-spacing:8.819090pt;}
.ws6b{word-spacing:8.823356pt;}
.wsda{word-spacing:8.827623pt;}
.ws155{word-spacing:8.831890pt;}
.ws167{word-spacing:8.848956pt;}
.ws104{word-spacing:8.857489pt;}
.ws161{word-spacing:8.861756pt;}
.ws126{word-spacing:8.866023pt;}
.ws3c{word-spacing:8.870289pt;}
.ws158{word-spacing:8.878822pt;}
.ws166{word-spacing:8.887356pt;}
.wsc9{word-spacing:8.891622pt;}
.ws15b{word-spacing:8.895889pt;}
.ws14b{word-spacing:8.900155pt;}
.ws10{word-spacing:8.904422pt;}
.ws69{word-spacing:8.921488pt;}
.wsd8{word-spacing:8.925755pt;}
.ws3a{word-spacing:8.930022pt;}
.ws45{word-spacing:8.934288pt;}
.ws15f{word-spacing:8.938555pt;}
.ws16e{word-spacing:8.947088pt;}
.ws30{word-spacing:8.959888pt;}
.wsce{word-spacing:8.964155pt;}
.ws127{word-spacing:8.968421pt;}
.ws12e{word-spacing:8.976954pt;}
.ws14c{word-spacing:8.985488pt;}
.ws68{word-spacing:8.989754pt;}
.ws16f{word-spacing:8.998288pt;}
.ws150{word-spacing:9.002554pt;}
.ws10b{word-spacing:9.006821pt;}
.ws33{word-spacing:9.011087pt;}
.ws15e{word-spacing:9.028154pt;}
.ws111{word-spacing:9.032420pt;}
.ws16c{word-spacing:9.036687pt;}
.ws27{word-spacing:9.045220pt;}
.ws29{word-spacing:9.049487pt;}
.ws37{word-spacing:9.053753pt;}
.ws12d{word-spacing:9.058020pt;}
.wsc{word-spacing:9.062287pt;}
.wscc{word-spacing:9.066553pt;}
.ws169{word-spacing:9.070820pt;}
.ws103{word-spacing:9.079353pt;}
.ws151{word-spacing:9.083620pt;}
.wsb{word-spacing:9.092153pt;}
.ws10d{word-spacing:9.096420pt;}
.ws164{word-spacing:9.100686pt;}
.ws152{word-spacing:9.109219pt;}
.ws159{word-spacing:9.113486pt;}
.ws15d{word-spacing:9.122019pt;}
.wsf{word-spacing:9.126286pt;}
.ws106{word-spacing:9.130553pt;}
.ws113{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws16b{word-spacing:9.143352pt;}
.ws15c{word-spacing:9.156152pt;}
.ws100{word-spacing:9.160419pt;}
.ws105{word-spacing:9.168952pt;}
.ws14d{word-spacing:9.181752pt;}
.ws16d{word-spacing:9.186019pt;}
.ws14f{word-spacing:9.190285pt;}
.ws128{word-spacing:9.203085pt;}
.ws14e{word-spacing:9.207352pt;}
.wse{word-spacing:9.211618pt;}
.ws2b{word-spacing:9.220151pt;}
.ws102{word-spacing:9.224418pt;}
.wsca{word-spacing:9.232951pt;}
.wsd9{word-spacing:9.237218pt;}
.ws91{word-spacing:9.258551pt;}
.wsdc{word-spacing:9.262818pt;}
.ws38{word-spacing:9.267084pt;}
.ws115{word-spacing:9.271351pt;}
.ws3b{word-spacing:9.284151pt;}
.ws173{word-spacing:9.292684pt;}
.ws36{word-spacing:9.301217pt;}
.ws42{word-spacing:9.305484pt;}
.ws2d{word-spacing:9.314017pt;}
.wscb{word-spacing:9.331083pt;}
.ws110{word-spacing:9.335350pt;}
.ws16a{word-spacing:9.356683pt;}
.ws157{word-spacing:9.365216pt;}
.wscd{word-spacing:9.369483pt;}
.ws163{word-spacing:9.390816pt;}
.ws154{word-spacing:9.395083pt;}
.ws168{word-spacing:9.399349pt;}
.ws31{word-spacing:9.403616pt;}
.ws170{word-spacing:9.429215pt;}
.ws15a{word-spacing:9.433482pt;}
.ws162{word-spacing:9.463348pt;}
.ws10e{word-spacing:9.471882pt;}
.ws6{word-spacing:10.267200pt;}
.ws7{word-spacing:10.272000pt;}
.ws8{word-spacing:10.344000pt;}
.ws9{word-spacing:10.459200pt;}
.ws11f{word-spacing:10.533439pt;}
.ws11d{word-spacing:10.549439pt;}
.ws11e{word-spacing:10.602773pt;}
.ws11a{word-spacing:10.693440pt;}
.ws116{word-spacing:10.746774pt;}
.ws11c{word-spacing:10.821442pt;}
.ws119{word-spacing:10.890776pt;}
.ws1c{word-spacing:10.969333pt;}
.ws138{word-spacing:10.976110pt;}
.ws11{word-spacing:10.984533pt;}
.ws5e{word-spacing:11.013443pt;}
.ws12f{word-spacing:11.018777pt;}
.ws1e{word-spacing:11.040267pt;}
.ws19{word-spacing:11.050400pt;}
.ws12{word-spacing:11.060533pt;}
.ws1d{word-spacing:11.065600pt;}
.ws11b{word-spacing:11.109444pt;}
.ws20{word-spacing:11.121333pt;}
.ws139{word-spacing:11.125445pt;}
.ws1b{word-spacing:11.126400pt;}
.ws18{word-spacing:11.136533pt;}
.ws21{word-spacing:11.197333pt;}
.ws121{word-spacing:11.200112pt;}
.ws14{word-spacing:11.202400pt;}
.ws1f{word-spacing:11.212533pt;}
.ws118{word-spacing:11.216112pt;}
.ws146{word-spacing:11.258779pt;}
.ws78{word-spacing:11.285446pt;}
.ws16{word-spacing:11.288533pt;}
.ws17{word-spacing:11.313867pt;}
.ws141{word-spacing:11.322780pt;}
.ws6d{word-spacing:11.344113pt;}
.ws13{word-spacing:11.349333pt;}
.ws15{word-spacing:11.359467pt;}
.ws117{word-spacing:11.376114pt;}
.ws8d{word-spacing:11.408114pt;}
.ws13f{word-spacing:11.413447pt;}
.ws93{word-spacing:11.417457pt;}
.ws140{word-spacing:11.418781pt;}
.ws92{word-spacing:11.481456pt;}
.ws52{word-spacing:11.498782pt;}
.ws144{word-spacing:11.509448pt;}
.ws5a{word-spacing:11.520115pt;}
.ws7b{word-spacing:11.525449pt;}
.ws4f{word-spacing:11.530782pt;}
.ws4b{word-spacing:11.536115pt;}
.ws143{word-spacing:11.541449pt;}
.ws73{word-spacing:11.552116pt;}
.ws13e{word-spacing:11.557449pt;}
.wsbe{word-spacing:11.562782pt;}
.ws136{word-spacing:11.568116pt;}
.wsbf{word-spacing:11.573449pt;}
.ws4a{word-spacing:11.578782pt;}
.ws137{word-spacing:11.584116pt;}
.ws88{word-spacing:11.589449pt;}
.ws77{word-spacing:11.594783pt;}
.ws50{word-spacing:11.600116pt;}
.wsd2{word-spacing:11.605449pt;}
.ws132{word-spacing:11.610783pt;}
.ws72{word-spacing:11.616116pt;}
.ws1a{word-spacing:11.617867pt;}
.ws134{word-spacing:11.621450pt;}
.wsdd{word-spacing:11.622255pt;}
.ws6e{word-spacing:11.626783pt;}
.ws76{word-spacing:11.632116pt;}
.ws107{word-spacing:11.637450pt;}
.wsc0{word-spacing:11.642783pt;}
.ws22{word-spacing:11.648116pt;}
.ws4e{word-spacing:11.653450pt;}
.ws62{word-spacing:11.658783pt;}
.wsc3{word-spacing:11.664117pt;}
.ws6f{word-spacing:11.669450pt;}
.ws60{word-spacing:11.674783pt;}
.ws51{word-spacing:11.680117pt;}
.ws49{word-spacing:11.685450pt;}
.ws89{word-spacing:11.690784pt;}
.ws130{word-spacing:11.696117pt;}
.ws81{word-spacing:11.701450pt;}
.ws75{word-spacing:11.706784pt;}
.ws59{word-spacing:11.712117pt;}
.ws54{word-spacing:11.717451pt;}
.ws8c{word-spacing:11.722784pt;}
.ws148{word-spacing:11.728117pt;}
.ws8e{word-spacing:11.733451pt;}
.ws135{word-spacing:11.738784pt;}
.ws26{word-spacing:11.744117pt;}
.ws4d{word-spacing:11.754784pt;}
.wsd0{word-spacing:11.760118pt;}
.ws108{word-spacing:11.765451pt;}
.wsc7{word-spacing:11.770784pt;}
.ws23{word-spacing:11.776118pt;}
.ws87{word-spacing:11.781451pt;}
.ws85{word-spacing:11.792118pt;}
.ws123{word-spacing:11.797451pt;}
.ws71{word-spacing:11.802785pt;}
.ws133{word-spacing:11.808118pt;}
.ws5d{word-spacing:11.813451pt;}
.ws13b{word-spacing:11.818785pt;}
.ws5c{word-spacing:11.824118pt;}
.ws7a{word-spacing:11.829452pt;}
.ws57{word-spacing:11.834785pt;}
.ws131{word-spacing:11.840118pt;}
.ws84{word-spacing:11.845452pt;}
.ws8a{word-spacing:11.850785pt;}
.ws124{word-spacing:11.856119pt;}
.wsd3{word-spacing:11.861452pt;}
.ws58{word-spacing:11.866785pt;}
.ws25{word-spacing:11.872119pt;}
.ws142{word-spacing:11.877452pt;}
.ws5f{word-spacing:11.882785pt;}
.ws66{word-spacing:11.888119pt;}
.ws80{word-spacing:11.893452pt;}
.ws7e{word-spacing:11.898786pt;}
.wsc4{word-spacing:11.909452pt;}
.wsd5{word-spacing:11.920119pt;}
.wsd7{word-spacing:11.925453pt;}
.ws65{word-spacing:11.930786pt;}
.ws5b{word-spacing:11.936119pt;}
.wsc5{word-spacing:11.941453pt;}
.ws56{word-spacing:11.946786pt;}
.ws55{word-spacing:11.952120pt;}
.ws48{word-spacing:11.957453pt;}
.ws13a{word-spacing:11.962786pt;}
.ws86{word-spacing:11.968120pt;}
.ws24{word-spacing:11.973453pt;}
.ws82{word-spacing:11.978786pt;}
.wsd6{word-spacing:11.989453pt;}
.wsc2{word-spacing:12.000120pt;}
.ws53{word-spacing:12.005453pt;}
.ws6c{word-spacing:12.010787pt;}
.ws125{word-spacing:12.016120pt;}
.wsd4{word-spacing:12.026787pt;}
.ws7c{word-spacing:12.032120pt;}
.wsd1{word-spacing:12.037454pt;}
.ws145{word-spacing:12.048120pt;}
.ws122{word-spacing:12.053454pt;}
.ws79{word-spacing:12.064121pt;}
.wsc8{word-spacing:12.090788pt;}
.ws109{word-spacing:12.117455pt;}
.ws61{word-spacing:12.122788pt;}
.ws10a{word-spacing:12.128121pt;}
.ws13c{word-spacing:12.170788pt;}
.ws13d{word-spacing:12.192122pt;}
.ws63{word-spacing:12.197455pt;}
.ws120{word-spacing:12.821462pt;}
.ws74{word-spacing:13.689486pt;}
.ws149{word-spacing:13.798285pt;}
.ws83{word-spacing:13.849485pt;}
.ws7d{word-spacing:13.868684pt;}
.ws90{word-spacing:13.964684pt;}
.wsc6{word-spacing:13.971084pt;}
.ws70{word-spacing:13.977484pt;}
.ws64{word-spacing:13.983883pt;}
.ws129{word-spacing:14.003083pt;}
.wsc1{word-spacing:14.092683pt;}
.ws2{word-spacing:23.381450pt;}
.ws4{word-spacing:23.434784pt;}
.ws3{word-spacing:23.530784pt;}
.ws1{word-spacing:23.573451pt;}
.wscf{word-spacing:42.699094pt;}
.ws14a{word-spacing:53.174802pt;}
.ws156{word-spacing:53.208935pt;}
.wsf0{word-spacing:445.801361pt;}
.wsed{word-spacing:445.805627pt;}
.wsf7{word-spacing:446.236555pt;}
.wsdf{word-spacing:457.598547pt;}
.wsff{word-spacing:459.313725pt;}
.wsde{word-spacing:464.390995pt;}
.wsf5{word-spacing:472.634092pt;}
.wse1{word-spacing:475.130061pt;}
.wse0{word-spacing:481.926776pt;}
.wsfb{word-spacing:498.417236pt;}
.wse3{word-spacing:498.681766pt;}
.wse9{word-spacing:498.954830pt;}
.wse4{word-spacing:500.115348pt;}
.wsf8{word-spacing:504.160098pt;}
.wsf9{word-spacing:508.324313pt;}
.wseb{word-spacing:510.440553pt;}
.wse2{word-spacing:513.853843pt;}
.wse5{word-spacing:516.221814pt;}
.wsf6{word-spacing:527.980600pt;}
.wsee{word-spacing:530.126707pt;}
.wsef{word-spacing:538.800732pt;}
.wsfe{word-spacing:539.773519pt;}
.wsf4{word-spacing:539.803386pt;}
.wsec{word-spacing:544.816656pt;}
.wse7{word-spacing:545.512114pt;}
.wse8{word-spacing:549.241134pt;}
.wsf2{word-spacing:557.305034pt;}
.wsfc{word-spacing:560.103932pt;}
.wsf1{word-spacing:561.870310pt;}
.wsfa{word-spacing:568.368362pt;}
.wsf3{word-spacing:569.831810pt;}
.wsfd{word-spacing:571.896851pt;}
.wsea{word-spacing:574.072824pt;}
.wse6{word-spacing:580.515410pt;}
.wsb4{word-spacing:693.473998pt;}
.wsb5{word-spacing:709.870593pt;}
.wsaf{word-spacing:719.410741pt;}
.wsb1{word-spacing:720.690725pt;}
.wsa7{word-spacing:727.171710pt;}
.wsa5{word-spacing:727.239976pt;}
.wsab{word-spacing:737.368916pt;}
.ws9d{word-spacing:738.926230pt;}
.wsb7{word-spacing:744.118698pt;}
.wsa9{word-spacing:746.273338pt;}
.wsae{word-spacing:747.177860pt;}
.ws9f{word-spacing:747.237593pt;}
.wsbd{word-spacing:747.642921pt;}
.wsb0{word-spacing:747.689854pt;}
.wsa3{word-spacing:749.362366pt;}
.wsb9{word-spacing:750.663683pt;}
.wsa1{word-spacing:752.391662pt;}
.ws99{word-spacing:754.435369pt;}
.wsb3{word-spacing:756.718008pt;}
.ws9b{word-spacing:760.647558pt;}
.wsbb{word-spacing:764.252847pt;}
.ws97{word-spacing:769.219185pt;}
.wsbc{word-spacing:782.539551pt;}
.wsad{word-spacing:783.751270pt;}
.ws96{word-spacing:792.450894pt;}
.ws95{word-spacing:796.107382pt;}
.wsb2{word-spacing:803.428890pt;}
.wsa6{word-spacing:809.811744pt;}
.ws9c{word-spacing:812.457044pt;}
.ws98{word-spacing:819.663354pt;}
.ws9a{word-spacing:823.776369pt;}
.wsaa{word-spacing:847.904068pt;}
.wsa0{word-spacing:850.391503pt;}
.wsa2{word-spacing:859.500723pt;}
.ws9e{word-spacing:859.594588pt;}
.wsa8{word-spacing:862.329487pt;}
.wsa4{word-spacing:870.457386pt;}
.wsba{word-spacing:872.142698pt;}
.wsb8{word-spacing:873.956009pt;}
.wsac{word-spacing:888.825156pt;}
.ws94{word-spacing:892.165914pt;}
.wsb6{word-spacing:904.594559pt;}
._d{margin-left:-11.736810pt;}
._8{margin-left:-9.378016pt;}
._2d{margin-left:-4.578115pt;}
._9{margin-left:-3.626621pt;}
._0{margin-left:-2.218678pt;}
._2{margin-left:-1.079453pt;}
._3{width:1.231200pt;}
._a{width:8.273002pt;}
._1{width:10.201511pt;}
._b{width:11.136111pt;}
._4{width:12.063733pt;}
._5{width:13.008130pt;}
._c{width:14.828676pt;}
._e{width:18.414703pt;}
._6{width:41.373349pt;}
._2c{width:42.732294pt;}
._10{width:43.734158pt;}
._13{width:428.269847pt;}
._22{width:450.686633pt;}
._12{width:453.139936pt;}
._20{width:480.011066pt;}
._11{width:496.646592pt;}
._14{width:520.799890pt;}
._16{width:532.588543pt;}
._1e{width:544.650258pt;}
._21{width:553.187752pt;}
._18{width:562.190306pt;}
._23{width:570.753399pt;}
._1a{width:579.721820pt;}
._1c{width:591.514739pt;}
._26{width:596.289080pt;}
._24{width:603.273526pt;}
._15{width:612.109682pt;}
._2a{width:615.066445pt;}
._17{width:623.868468pt;}
._1f{width:635.358458pt;}
._28{width:640.742924pt;}
._1b{width:652.894239pt;}
._19{width:658.641367pt;}
._29{width:670.430020pt;}
._1d{width:682.193072pt;}
._27{width:687.317275pt;}
._25{width:693.981725pt;}
._2b{width:717.533431pt;}
._f{width:1025.787711pt;}
._2e{width:1556.426411pt;}
._7{width:1580.012250pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:48.000000pt;}
.y154{bottom:79.444091pt;}
.y16f{bottom:88.136275pt;}
.y153{bottom:100.080633pt;}
.y16e{bottom:108.772817pt;}
.y24{bottom:110.663040pt;}
.y9f{bottom:110.663400pt;}
.yb8{bottom:110.663613pt;}
.y73{bottom:110.663960pt;}
.y1a4{bottom:110.664883pt;}
.y44{bottom:110.670373pt;}
.y17b{bottom:111.178213pt;}
.y179{bottom:111.192107pt;}
.y175{bottom:111.193027pt;}
.yea{bottom:111.193642pt;}
.y152{bottom:112.780208pt;}
.y216{bottom:113.612109pt;}
.y130{bottom:114.363000pt;}
.y101{bottom:119.275560pt;}
.y16d{bottom:121.472392pt;}
.y1a3{bottom:123.364458pt;}
.y43{bottom:125.334723pt;}
.y151{bottom:125.404050pt;}
.y215{bottom:126.311684pt;}
.y23{bottom:127.973880pt;}
.y9e{bottom:127.974239pt;}
.yb7{bottom:127.974453pt;}
.y72{bottom:127.974800pt;}
.y120{bottom:128.277000pt;}
.y17a{bottom:128.489053pt;}
.y178{bottom:128.502947pt;}
.y174{bottom:128.503867pt;}
.y12f{bottom:131.673840pt;}
.ye9{bottom:131.904850pt;}
.y16c{bottom:134.171966pt;}
.y1dc{bottom:134.321942pt;}
.y100{bottom:136.586399pt;}
.y150{bottom:138.103624pt;}
.y214{bottom:138.935526pt;}
.y42{bottom:139.999073pt;}
.y1a2{bottom:140.674108pt;}
.ye8{bottom:144.528692pt;}
.y22{bottom:145.359387pt;}
.y9d{bottom:145.359747pt;}
.yb6{bottom:145.359960pt;}
.y173{bottom:145.874560pt;}
.y177{bottom:145.888454pt;}
.y16b{bottom:146.795809pt;}
.y1db{bottom:146.945784pt;}
.y12e{bottom:148.984680pt;}
.y11f{bottom:148.988208pt;}
.y71{bottom:150.651534pt;}
.y14f{bottom:150.727467pt;}
.y1a1{bottom:153.297950pt;}
.yff{bottom:153.971906pt;}
.y41{bottom:154.663424pt;}
.y213{bottom:156.320908pt;}
.ye7{bottom:157.228267pt;}
.y16a{bottom:159.495383pt;}
.y1da{bottom:159.645358pt;}
.y11e{bottom:161.612050pt;}
.y21{bottom:162.670227pt;}
.y9c{bottom:162.670586pt;}
.yb5{bottom:162.670800pt;}
.y172{bottom:163.185400pt;}
.y176{bottom:163.199294pt;}
.y12d{bottom:166.295520pt;}
.y212{bottom:168.944751pt;}
.y40{bottom:169.327774pt;}
.y1a0{bottom:170.683333pt;}
.yfe{bottom:171.282746pt;}
.y169{bottom:172.119225pt;}
.y11d{bottom:174.311624pt;}
.y70{bottom:174.689733pt;}
.y1d9{bottom:176.956075pt;}
.y20{bottom:179.981067pt;}
.y9b{bottom:179.981426pt;}
.y171{bottom:180.496240pt;}
.y211{bottom:181.644325pt;}
.y19f{bottom:183.307175pt;}
.y12c{bottom:183.681027pt;}
.y3f{bottom:183.992124pt;}
.y168{bottom:184.818800pt;}
.yb4{bottom:185.348000pt;}
.y11c{bottom:186.935467pt;}
.yfd{bottom:188.593586pt;}
.y1d8{bottom:189.655650pt;}
.y19e{bottom:196.006750pt;}
.y9a{bottom:197.366933pt;}
.y170{bottom:197.881747pt;}
.y3e{bottom:198.656474pt;}
.y210{bottom:198.953975pt;}
.y12b{bottom:200.991867pt;}
.y1f{bottom:202.658267pt;}
.yfc{bottom:205.979093pt;}
.y1d7{bottom:206.965300pt;}
.y20f{bottom:211.653550pt;}
.y19d{bottom:213.316400pt;}
.y3d{bottom:213.320824pt;}
.y6f{bottom:215.192586pt;}
.y12a{bottom:218.302706pt;}
.y1d6{bottom:219.589142pt;}
.y99{bottom:219.968400pt;}
.yfb{bottom:223.289933pt;}
.y19c{bottom:226.015975pt;}
.yb3{bottom:226.846627pt;}
.y3c{bottom:227.985174pt;}
.y20e{bottom:228.963200pt;}
.y1d5{bottom:232.288717pt;}
.y6e{bottom:232.503426pt;}
.y129{bottom:235.688214pt;}
.y19b{bottom:238.639817pt;}
.yfa{bottom:240.600773pt;}
.y20d{bottom:241.662775pt;}
.y3b{bottom:242.649524pt;}
.yb0{bottom:244.155627pt;}
.yb2{bottom:244.157467pt;}
.y1d4{bottom:244.988291pt;}
.y6d{bottom:249.888933pt;}
.yb1{bottom:250.129067pt;}
.y128{bottom:252.999053pt;}
.y19a{bottom:256.025200pt;}
.y3a{bottom:257.313874pt;}
.yf9{bottom:257.986280pt;}
.y20c{bottom:258.972425pt;}
.y96{bottom:261.083414pt;}
.y98{bottom:261.089733pt;}
.yaf{bottom:261.541134pt;}
.y1d3{bottom:262.297942pt;}
.y97{bottom:266.985733pt;}
.y6c{bottom:267.199773pt;}
.y199{bottom:268.649042pt;}
.y127{bottom:270.309893pt;}
.y20b{bottom:271.596267pt;}
.y1d2{bottom:274.921784pt;}
.yf8{bottom:275.297120pt;}
.y95{bottom:278.394253pt;}
.yae{bottom:278.851973pt;}
.y39{bottom:279.990924pt;}
.y20a{bottom:284.295842pt;}
.y6b{bottom:284.510613pt;}
.y198{bottom:286.034424pt;}
.y1d1{bottom:287.621359pt;}
.y126{bottom:287.695400pt;}
.y1e{bottom:288.835333pt;}
.yf7{bottom:292.607960pt;}
.y38{bottom:294.655274pt;}
.y94{bottom:295.705093pt;}
.yad{bottom:296.162813pt;}
.y209{bottom:296.995417pt;}
.y197{bottom:298.658267pt;}
.y6a{bottom:301.821453pt;}
.y1d0{bottom:304.931009pt;}
.y125{bottom:305.006240pt;}
.y1d{bottom:307.506000pt;}
.yf6{bottom:309.918799pt;}
.y93{bottom:313.090600pt;}
.yac{bottom:313.548320pt;}
.y208{bottom:314.305067pt;}
.y196{bottom:316.648800pt;}
.y37{bottom:317.332323pt;}
.y1cf{bottom:317.630583pt;}
.y69{bottom:319.206960pt;}
.y124{bottom:322.317080pt;}
.y1c{bottom:326.176667pt;}
.y207{bottom:326.928909pt;}
.yf5{bottom:327.304306pt;}
.y1ce{bottom:330.254426pt;}
.y92{bottom:330.401440pt;}
.yab{bottom:330.859160pt;}
.y36{bottom:331.996673pt;}
.y68{bottom:336.517800pt;}
.y206{bottom:339.628484pt;}
.y123{bottom:339.702587pt;}
.yf4{bottom:344.615146pt;}
.y1b{bottom:344.847333pt;}
.ya9{bottom:345.977867pt;}
.y35{bottom:346.661024pt;}
.y1cd{bottom:347.639808pt;}
.y91{bottom:347.712280pt;}
.ya8{bottom:348.168733pt;}
.yaa{bottom:348.170000pt;}
.y205{bottom:352.328058pt;}
.y67{bottom:353.828639pt;}
.y195{bottom:356.635786pt;}
.y122{bottom:357.013427pt;}
.y1cc{bottom:360.263651pt;}
.y34{bottom:361.325374pt;}
.yf3{bottom:361.925986pt;}
.y1a{bottom:363.518000pt;}
.y90{bottom:365.097787pt;}
.ya7{bottom:365.554240pt;}
.y204{bottom:369.637709pt;}
.y66{bottom:371.214147pt;}
.y1cb{bottom:372.963225pt;}
.y194{bottom:373.946626pt;}
.y121{bottom:374.324267pt;}
.y148{bottom:375.906560pt;}
.y33{bottom:375.989724pt;}
.ye6{bottom:378.933267pt;}
.yf2{bottom:379.311493pt;}
.y19{bottom:382.188667pt;}
.y203{bottom:382.261551pt;}
.y8f{bottom:382.408627pt;}
.ya6{bottom:382.865080pt;}
.y1ca{bottom:385.662800pt;}
.y65{bottom:388.524986pt;}
.y32{bottom:390.654074pt;}
.y193{bottom:391.332133pt;}
.y147{bottom:393.217400pt;}
.y202{bottom:394.961125pt;}
.ye5{bottom:396.244107pt;}
.yf1{bottom:396.622333pt;}
.y8e{bottom:399.719467pt;}
.ya5{bottom:400.175920pt;}
.y18{bottom:400.859333pt;}
.y137{bottom:402.820116pt;}
.y1c9{bottom:402.972450pt;}
.y64{bottom:405.835826pt;}
.y161{bottom:406.449347pt;}
.y201{bottom:407.660700pt;}
.y146{bottom:410.602907pt;}
.y31{bottom:413.331123pt;}
.ye4{bottom:413.554947pt;}
.yf0{bottom:413.933173pt;}
.y192{bottom:413.933733pt;}
.y1c8{bottom:415.596292pt;}
.y8d{bottom:417.030306pt;}
.ya4{bottom:417.561427pt;}
.y17{bottom:419.530000pt;}
.y63{bottom:423.221333pt;}
.y136{bottom:423.456659pt;}
.y160{bottom:423.834854pt;}
.y200{bottom:424.970350pt;}
.y145{bottom:427.913747pt;}
.y1c7{bottom:428.295867pt;}
.ye3{bottom:430.865786pt;}
.yef{bottom:431.318680pt;}
.y8c{bottom:434.415814pt;}
.ya3{bottom:434.872267pt;}
.y30{bottom:436.008173pt;}
.y135{bottom:436.156233pt;}
.y1ff{bottom:437.594192pt;}
.y16{bottom:438.200667pt;}
.y62{bottom:440.532173pt;}
.y1c6{bottom:440.995441pt;}
.y15f{bottom:441.145694pt;}
.y144{bottom:445.224586pt;}
.ye2{bottom:448.251294pt;}
.yee{bottom:448.629520pt;}
.y134{bottom:448.780075pt;}
.y1fe{bottom:450.293767pt;}
.y8b{bottom:451.726653pt;}
.y191{bottom:453.918787pt;}
.y15{bottom:456.871333pt;}
.ya2{bottom:457.549467pt;}
.y61{bottom:457.843013pt;}
.y1c5{bottom:458.305092pt;}
.y15e{bottom:458.456533pt;}
.y2f{bottom:458.685223pt;}
.y133{bottom:461.479650pt;}
.y143{bottom:462.535426pt;}
.ye1{bottom:465.562133pt;}
.yed{bottom:465.940359pt;}
.y1fd{bottom:467.603417pt;}
.y8a{bottom:469.037493pt;}
.y1c4{bottom:470.928934pt;}
.y190{bottom:471.229627pt;}
.y132{bottom:474.103492pt;}
.y60{bottom:475.228520pt;}
.y14{bottom:475.542000pt;}
.y142{bottom:479.920933pt;}
.y15d{bottom:481.133733pt;}
.y2e{bottom:481.362273pt;}
.yec{bottom:483.325867pt;}
.y1c3{bottom:483.628508pt;}
.y1fc{bottom:484.988800pt;}
.y89{bottom:486.423000pt;}
.y131{bottom:486.803067pt;}
.ye0{bottom:488.239200pt;}
.y18f{bottom:488.615134pt;}
.y5f{bottom:492.539360pt;}
.y13{bottom:494.212667pt;}
.y2d{bottom:496.026623pt;}
.y1c2{bottom:496.328083pt;}
.y141{bottom:497.231773pt;}
.y1fb{bottom:497.607059pt;}
.ya1{bottom:499.048094pt;}
.y88{bottom:503.733840pt;}
.y18e{bottom:505.925973pt;}
.yeb{bottom:505.927467pt;}
.y5e{bottom:509.850200pt;}
.y1fa{bottom:510.306633pt;}
.y12{bottom:512.883333pt;}
.y1c1{bottom:513.637733pt;}
.y140{bottom:514.542613pt;}
.ya0{bottom:516.358933pt;}
.y2c{bottom:518.703673pt;}
.y87{bottom:521.044680pt;}
.y1f9{bottom:522.930475pt;}
.y18d{bottom:523.236813pt;}
.y15c{bottom:525.579227pt;}
.y1c0{bottom:526.258434pt;}
.y5d{bottom:527.161039pt;}
.ydf{bottom:530.114560pt;}
.y11{bottom:531.554000pt;}
.y13f{bottom:531.928120pt;}
.y2b{bottom:533.368023pt;}
.y86{bottom:538.430187pt;}
.y1bf{bottom:538.958008pt;}
.y1f8{bottom:540.315858pt;}
.y11b{bottom:540.540230pt;}
.y18c{bottom:540.622320pt;}
.y15b{bottom:542.964734pt;}
.y5c{bottom:544.546547pt;}
.yde{bottom:547.425400pt;}
.y2a{bottom:548.032373pt;}
.yd0{bottom:549.159481pt;}
.y13e{bottom:549.238960pt;}
.y10{bottom:550.224667pt;}
.y1f7{bottom:552.939700pt;}
.y85{bottom:555.741027pt;}
.y1be{bottom:556.267659pt;}
.y18b{bottom:557.933160pt;}
.y15a{bottom:560.275573pt;}
.y11a{bottom:561.176772pt;}
.y5b{bottom:561.857386pt;}
.y29{bottom:562.696723pt;}
.ydd{bottom:564.810907pt;}
.y1f6{bottom:565.639275pt;}
.y13d{bottom:566.549800pt;}
.yf{bottom:568.819333pt;}
.y1bd{bottom:568.967233pt;}
.ycf{bottom:569.871755pt;}
.y84{bottom:573.051867pt;}
.y18a{bottom:575.244000pt;}
.y28{bottom:577.361073pt;}
.y159{bottom:577.586413pt;}
.y119{bottom:577.882696pt;}
.y5a{bottom:579.168226pt;}
.ydc{bottom:582.121747pt;}
.y1f5{bottom:582.948925pt;}
.y13c{bottom:583.935307pt;}
.y1bc{bottom:586.277950pt;}
.yce{bottom:586.501947pt;}
.ye{bottom:587.490000pt;}
.y118{bottom:594.512889pt;}
.y158{bottom:594.971920pt;}
.y1f4{bottom:595.648500pt;}
.y83{bottom:595.728933pt;}
.y59{bottom:596.553733pt;}
.y189{bottom:597.921067pt;}
.y1bb{bottom:598.977525pt;}
.y27{bottom:599.206133pt;}
.ydb{bottom:599.432586pt;}
.y13b{bottom:601.246147pt;}
.ycd{bottom:603.207872pt;}
.yd{bottom:606.160667pt;}
.y1f3{bottom:608.272342pt;}
.y117{bottom:611.143081pt;}
.y1ba{bottom:611.601367pt;}
.y157{bottom:612.282760pt;}
.y58{bottom:613.864573pt;}
.yda{bottom:616.743426pt;}
.y13a{bottom:618.556986pt;}
.ycc{bottom:619.838064pt;}
.y1f2{bottom:620.971917pt;}
.y1b9{bottom:624.300942pt;}
.yc{bottom:624.831333pt;}
.y116{bottom:627.849005pt;}
.y156{bottom:629.593600pt;}
.y57{bottom:631.175413pt;}
.yd9{bottom:634.128933pt;}
.y139{bottom:635.942494pt;}
.ycb{bottom:636.543989pt;}
.y82{bottom:636.772253pt;}
.y188{bottom:637.904627pt;}
.y1f1{bottom:638.281567pt;}
.y1b8{bottom:641.611659pt;}
.y115{bottom:644.479197pt;}
.y56{bottom:648.560920pt;}
.y1f0{bottom:650.981141pt;}
.y155{bottom:652.270667pt;}
.yca{bottom:653.174181pt;}
.y138{bottom:653.253333pt;}
.y81{bottom:654.157761pt;}
.yb{bottom:654.160400pt;}
.y1b7{bottom:654.311233pt;}
.y187{bottom:655.215467pt;}
.yd8{bottom:656.805266pt;}
.y114{bottom:661.185122pt;}
.y1ef{bottom:663.604984pt;}
.y55{bottom:665.871760pt;}
.y1b6{bottom:666.935075pt;}
.yc9{bottom:669.880105pt;}
.y80{bottom:671.468600pt;}
.y186{bottom:672.526306pt;}
.y113{bottom:677.815314pt;}
.yd7{bottom:680.768267pt;}
.y1ee{bottom:680.990366pt;}
.y14e{bottom:681.674892pt;}
.y167{bottom:682.505292pt;}
.y54{bottom:683.182600pt;}
.y1b5{bottom:684.320458pt;}
.yc8{bottom:686.510297pt;}
.y7f{bottom:688.779440pt;}
.y185{bottom:689.911814pt;}
.y1ed{bottom:693.614208pt;}
.y112{bottom:694.521238pt;}
.y1b4{bottom:696.944300pt;}
.y53{bottom:700.493439pt;}
.y14d{bottom:702.386100pt;}
.y166{bottom:703.141834pt;}
.yc7{bottom:703.216222pt;}
.y7e{bottom:706.164947pt;}
.y1ec{bottom:706.313783pt;}
.y184{bottom:707.222653pt;}
.ya{bottom:710.173200pt;}
.y111{bottom:711.151431pt;}
.y26{bottom:712.969867pt;}
.y1b3{bottom:714.329683pt;}
.y14c{bottom:715.009942pt;}
.y165{bottom:715.841409pt;}
.y52{bottom:717.878947pt;}
.yc6{bottom:719.846414pt;}
.yd6{bottom:722.643973pt;}
.y7d{bottom:723.475787pt;}
.y1eb{bottom:723.624500pt;}
.y183{bottom:724.533493pt;}
.y1b2{bottom:726.953525pt;}
.y14b{bottom:727.709517pt;}
.y110{bottom:727.857355pt;}
.y164{bottom:728.540983pt;}
.y51{bottom:735.189786pt;}
.y1ea{bottom:736.324075pt;}
.yc5{bottom:736.551272pt;}
.y9{bottom:736.856600pt;}
.yd5{bottom:739.954813pt;}
.y14a{bottom:740.409091pt;}
.y7c{bottom:740.786627pt;}
.y163{bottom:741.164825pt;}
.y182{bottom:741.919000pt;}
.y1b1{bottom:744.263175pt;}
.y10f{bottom:744.487547pt;}
.y1e9{bottom:748.947917pt;}
.y8{bottom:750.160967pt;}
.y50{bottom:752.500626pt;}
.y149{bottom:753.032933pt;}
.yc4{bottom:753.181464pt;}
.y162{bottom:753.864400pt;}
.y1b0{bottom:756.962750pt;}
.yd4{bottom:757.340320pt;}
.y7b{bottom:758.097467pt;}
.y181{bottom:759.229840pt;}
.y10e{bottom:761.193472pt;}
.y7{bottom:763.540000pt;}
.y1e8{bottom:766.257567pt;}
.y4f{bottom:769.886133pt;}
.yc3{bottom:769.887388pt;}
.y1af{bottom:774.273467pt;}
.yd3{bottom:774.651160pt;}
.y180{bottom:776.540680pt;}
.y10d{bottom:777.823664pt;}
.y1e7{bottom:778.957142pt;}
.y7a{bottom:780.774533pt;}
.yc2{bottom:786.517581pt;}
.y1ae{bottom:786.973041pt;}
.y4e{bottom:787.196973pt;}
.y5{bottom:787.502133pt;}
.y1e6{bottom:791.656716pt;}
.yd2{bottom:791.962000pt;}
.y6{bottom:792.869200pt;}
.y17f{bottom:793.926187pt;}
.y10c{bottom:794.529588pt;}
.y1ad{bottom:799.596884pt;}
.yc1{bottom:803.147773pt;}
.y1e5{bottom:804.280558pt;}
.y218{bottom:804.282692pt;}
.y4d{bottom:804.507813pt;}
.y10b{bottom:811.159780pt;}
.y17e{bottom:811.237027pt;}
.yd1{bottom:814.639200pt;}
.y1ac{bottom:816.982266pt;}
.yc0{bottom:819.853697pt;}
.y4{bottom:820.836067pt;}
.y1e4{bottom:821.591275pt;}
.y4c{bottom:821.893320pt;}
.y10a{bottom:827.865705pt;}
.y17d{bottom:828.547867pt;}
.y1ab{bottom:829.606109pt;}
.y1e3{bottom:834.290850pt;}
.ybf{bottom:836.483889pt;}
.y4b{bottom:839.204160pt;}
.y1aa{bottom:842.305683pt;}
.y109{bottom:844.495897pt;}
.y1e2{bottom:846.990425pt;}
.y217{bottom:846.991491pt;}
.y17c{bottom:851.224933pt;}
.ybe{bottom:853.189814pt;}
.y3{bottom:854.172233pt;}
.y4a{bottom:856.515000pt;}
.y1a9{bottom:859.615333pt;}
.y108{bottom:861.201822pt;}
.y1e1{bottom:864.301142pt;}
.ybd{bottom:869.820006pt;}
.y1a8{bottom:872.314908pt;}
.y49{bottom:873.900507pt;}
.y1e0{bottom:876.924984pt;}
.y107{bottom:877.832014pt;}
.y79{bottom:878.282955pt;}
.y1a7{bottom:884.938750pt;}
.ybc{bottom:886.524864pt;}
.y2{bottom:887.508400pt;}
.y1df{bottom:889.624558pt;}
.y48{bottom:891.211347pt;}
.y78{bottom:892.947305pt;}
.y106{bottom:897.863763pt;}
.y1a6{bottom:902.324133pt;}
.ybb{bottom:903.155056pt;}
.y1de{bottom:906.934209pt;}
.y47{bottom:908.522186pt;}
.y1a5{bottom:914.947975pt;}
.y77{bottom:915.624355pt;}
.y1dd{bottom:919.633783pt;}
.y105{bottom:919.634158pt;}
.y1{bottom:920.843867pt;}
.yba{bottom:923.186805pt;}
.y46{bottom:925.833026pt;}
.y76{bottom:930.288705pt;}
.y102{bottom:932.257625pt;}
.y104{bottom:932.258000pt;}
.y103{bottom:937.020133pt;}
.y45{bottom:943.218533pt;}
.y75{bottom:944.953055pt;}
.yb9{bottom:944.957200pt;}
.y74{bottom:994.393333pt;}
.hf{height:22.041000pt;}
.h4{height:23.580855pt;}
.hc{height:25.313024pt;}
.h9{height:31.060945pt;}
.hd{height:31.444940pt;}
.h1{height:33.066253pt;}
.h3{height:35.376000pt;}
.he{height:37.493708pt;}
.h8{height:37.973713pt;}
.h10{height:38.029288pt;}
.h11{height:38.035794pt;}
.ha{height:38.187049pt;}
.h6{height:39.266667pt;}
.h7{height:47.167607pt;}
.hb{height:49.599587pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:48.000000pt;}
.xb{left:63.496000pt;}
.xa{left:74.683467pt;}
.x1b{left:207.347478pt;}
.x1{left:266.683333pt;}
.x1c{left:272.579467pt;}
.xc{left:282.630159pt;}
.x1d{left:294.652791pt;}
.x18{left:315.816386pt;}
.x2{left:345.977867pt;}
.x3{left:358.374667pt;}
.xe{left:447.420400pt;}
.xf{left:455.810933pt;}
.x4{left:460.875467pt;}
.x10{left:472.214000pt;}
.x5{left:473.272267pt;}
.x11{left:480.528933pt;}
.x19{left:504.415600pt;}
.x1a{left:528.226667pt;}
.x6{left:572.069067pt;}
.x7{left:584.466000pt;}
.xd{left:616.062800pt;}
.x16{left:623.092800pt;}
.x17{left:654.236000pt;}
.x8{left:713.801467pt;}
.x12{left:725.971467pt;}
.x13{left:736.327333pt;}
.x14{left:746.532000pt;}
.x15{left:751.294267pt;}
}




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