
    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_ef56b6b11dcd899d49ee379a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;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_65d47cb1c7aa25fac1f74fcb.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_23cbfd6e8e9286e0538bf338.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_255783ecc5b5577a8d4891db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111000;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_6e1295b38e90263d01d28006.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107000;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_a5d413ff2f59f9b544b1d3dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936000;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_add3fdaf4e6105fc753882fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107000;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_62e2a02ba01e25a2607b9d7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111000;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_2c75cd882574c69a50c0af71.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.101000;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_23cbfd6e8e9286e0538bf338.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_4df482ba531eb666f5ca2650.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_92589fa8cf313c446fd4571c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.765625;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_4df482ba531eb666f5ca2650.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c268f580f8f271ad40184723.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_23cbfd6e8e9286e0538bf338.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936000;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_255783ecc5b5577a8d4891db.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.111000;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_6e1295b38e90263d01d28006.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.107000;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_ccdb2c5c03240f060893f9bb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.935000;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_3634c2993dd3463ae28ec898.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258970,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);}
.v1{vertical-align:-37.417200px;}
.v3{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.394000px;}
.v5{vertical-align:13.860000px;}
.v2{vertical-align:17.820000px;}
.ls25{letter-spacing:-3.906000px;}
.ls22{letter-spacing:-3.834000px;}
.ls3f{letter-spacing:-2.520000px;}
.ls2a{letter-spacing:-2.394000px;}
.ls2c{letter-spacing:-2.100000px;}
.ls4c{letter-spacing:-1.932000px;}
.ls3e{letter-spacing:-1.890000px;}
.ls3c{letter-spacing:-1.638000px;}
.ls3b{letter-spacing:-1.596000px;}
.ls3d{letter-spacing:-1.428000px;}
.ls43{letter-spacing:-1.176000px;}
.ls40{letter-spacing:-1.008000px;}
.ls4b{letter-spacing:-0.966000px;}
.ls46{letter-spacing:-0.924000px;}
.ls48{letter-spacing:-0.660000px;}
.ls4d{letter-spacing:-0.588000px;}
.ls4a{letter-spacing:-0.546000px;}
.ls4f{letter-spacing:-0.504000px;}
.ls12{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.396000px;}
.ls39{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.336000px;}
.ls4e{letter-spacing:-0.168000px;}
.ls8{letter-spacing:-0.132000px;}
.ls35{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.084000px;}
.ls45{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000240px;}
.ls23{letter-spacing:0.042000px;}
.ls30{letter-spacing:0.097269px;}
.ls2e{letter-spacing:0.097440px;}
.ls33{letter-spacing:0.097881px;}
.ls17{letter-spacing:0.125280px;}
.ls1f{letter-spacing:0.168000px;}
.ls27{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.264000px;}
.ls37{letter-spacing:0.294000px;}
.ls3{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.330000px;}
.ls29{letter-spacing:0.336000px;}
.ls31{letter-spacing:0.378000px;}
.ls11{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.438753px;}
.ls28{letter-spacing:0.462000px;}
.ls41{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.486000px;}
.ls2{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.588000px;}
.ls6{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.630000px;}
.ls16{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.660000px;}
.ls38{letter-spacing:0.672000px;}
.ls36{letter-spacing:0.702000px;}
.ls4{letter-spacing:0.714000px;}
.ls14{letter-spacing:0.756000px;}
.ls1{letter-spacing:0.840000px;}
.ls2b{letter-spacing:0.882000px;}
.ls42{letter-spacing:0.918000px;}
.ls47{letter-spacing:0.924000px;}
.ls49{letter-spacing:0.966000px;}
.lsc{letter-spacing:0.972000px;}
.ls10{letter-spacing:1.026000px;}
.ls24{letter-spacing:1.050000px;}
.ls50{letter-spacing:1.056000px;}
.lsd{letter-spacing:1.080000px;}
.ls44{letter-spacing:1.092000px;}
.lse{letter-spacing:1.134000px;}
.ls13{letter-spacing:1.188000px;}
.ls32{letter-spacing:1.914367px;}
.ls2d{letter-spacing:1.914600px;}
.ls2f{letter-spacing:1.914980px;}
.ls34{letter-spacing:48.931200px;}
.ls1c{letter-spacing:667.968000px;}
.ls1e{letter-spacing:668.629800px;}
.ls20{letter-spacing:669.551400px;}
.ls1b{letter-spacing:682.435200px;}
.ls1d{letter-spacing:682.983000px;}
.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;}
}
.ws1{word-spacing:-17.520000px;}
.wsf2{word-spacing:-17.160000px;}
.ws3e{word-spacing:-16.980000px;}
.wsf3{word-spacing:-16.146000px;}
.ws132{word-spacing:-16.020000px;}
.ws3f{word-spacing:-15.984000px;}
.ws40{word-spacing:-15.660000px;}
.ws3{word-spacing:-15.012000px;}
.ws11a{word-spacing:-14.634000px;}
.ws8a{word-spacing:-12.726000px;}
.ws136{word-spacing:-12.642000px;}
.ws8b{word-spacing:-12.558000px;}
.ws87{word-spacing:-12.516000px;}
.ws86{word-spacing:-12.432000px;}
.ws7f{word-spacing:-12.390000px;}
.wsb9{word-spacing:-12.348000px;}
.ws80{word-spacing:-12.306000px;}
.ws81{word-spacing:-12.264000px;}
.ws84{word-spacing:-12.138000px;}
.wsc1{word-spacing:-12.054000px;}
.ws85{word-spacing:-12.012000px;}
.wsb8{word-spacing:-11.970000px;}
.ws88{word-spacing:-11.844000px;}
.wsf4{word-spacing:-11.718000px;}
.ws41{word-spacing:-11.676000px;}
.ws135{word-spacing:-11.508000px;}
.ws83{word-spacing:-11.340000px;}
.ws133{word-spacing:-11.130000px;}
.wsf6{word-spacing:-11.087029px;}
.ws119{word-spacing:-10.752000px;}
.ws134{word-spacing:-10.710000px;}
.wsbc{word-spacing:-10.080000px;}
.ws8c{word-spacing:-9.576000px;}
.ws89{word-spacing:-9.282000px;}
.ws82{word-spacing:-7.770000px;}
.wsd{word-spacing:-7.392000px;}
.ws148{word-spacing:-3.612000px;}
.wse{word-spacing:-3.564000px;}
.ws94{word-spacing:-3.456000px;}
.wsa5{word-spacing:-3.348000px;}
.ws5f{word-spacing:-3.024000px;}
.ws7e{word-spacing:-2.970000px;}
.wsae{word-spacing:-2.940000px;}
.ws21{word-spacing:-2.862000px;}
.ws44{word-spacing:-2.700000px;}
.ws38{word-spacing:-2.646000px;}
.ws115{word-spacing:-2.592000px;}
.ws3b{word-spacing:-2.538000px;}
.ws69{word-spacing:-2.484000px;}
.wsb7{word-spacing:-2.436000px;}
.wse6{word-spacing:-2.430000px;}
.ws129{word-spacing:-2.376000px;}
.wsd8{word-spacing:-2.322000px;}
.ws11f{word-spacing:-2.268000px;}
.wsb6{word-spacing:-2.226000px;}
.ws1f{word-spacing:-2.214000px;}
.ws60{word-spacing:-2.160000px;}
.ws150{word-spacing:-2.142000px;}
.ws8d{word-spacing:-2.106000px;}
.ws120{word-spacing:-2.100000px;}
.ws48{word-spacing:-2.058000px;}
.ws3c{word-spacing:-2.052000px;}
.ws5{word-spacing:-2.016000px;}
.wsd3{word-spacing:-1.998000px;}
.ws23{word-spacing:-1.944000px;}
.ws47{word-spacing:-1.932000px;}
.wsb{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.848000px;}
.ws39{word-spacing:-1.836000px;}
.ws9{word-spacing:-1.806000px;}
.ws78{word-spacing:-1.782000px;}
.ws11d{word-spacing:-1.764000px;}
.ws2f{word-spacing:-1.728000px;}
.ws104{word-spacing:-1.674000px;}
.ws90{word-spacing:-1.566000px;}
.ws11c{word-spacing:-1.554000px;}
.ws3a{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.458000px;}
.wsb2{word-spacing:-1.428000px;}
.ws12c{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.344000px;}
.wsac{word-spacing:-1.296000px;}
.wscb{word-spacing:-1.260000px;}
.ws52{word-spacing:-1.188000px;}
.ws6{word-spacing:-1.176000px;}
.ws45{word-spacing:-1.134000px;}
.ws3d{word-spacing:-1.080000px;}
.wsb1{word-spacing:-1.050000px;}
.wsa4{word-spacing:-0.972000px;}
.ws142{word-spacing:-0.966000px;}
.wsf8{word-spacing:-0.918000px;}
.ws11b{word-spacing:-0.882000px;}
.wsf1{word-spacing:-0.840000px;}
.wsa8{word-spacing:-0.810000px;}
.wsdb{word-spacing:-0.756000px;}
.wsaf{word-spacing:-0.714000px;}
.ws16f{word-spacing:-0.672000px;}
.ws5c{word-spacing:-0.648000px;}
.ws14f{word-spacing:-0.630000px;}
.wsd7{word-spacing:-0.594000px;}
.ws15d{word-spacing:-0.588000px;}
.ws4{word-spacing:-0.540000px;}
.wsd2{word-spacing:-0.504000px;}
.wsd0{word-spacing:-0.462000px;}
.ws101{word-spacing:-0.432000px;}
.ws46{word-spacing:-0.420000px;}
.wsd1{word-spacing:-0.378000px;}
.wscf{word-spacing:-0.336000px;}
.ws2d{word-spacing:-0.324000px;}
.ws147{word-spacing:-0.168000px;}
.wsa9{word-spacing:-0.162000px;}
.ws106{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.054000px;}
.wsb0{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws130{word-spacing:0.054000px;}
.ws149{word-spacing:0.084000px;}
.ws96{word-spacing:0.108000px;}
.ws5e{word-spacing:0.162000px;}
.wsa7{word-spacing:0.216000px;}
.ws158{word-spacing:0.252000px;}
.ws111{word-spacing:0.270000px;}
.wsb3{word-spacing:0.336000px;}
.wsf9{word-spacing:0.378000px;}
.ws143{word-spacing:0.420000px;}
.ws91{word-spacing:0.432000px;}
.ws175{word-spacing:0.480000px;}
.ws37{word-spacing:0.486000px;}
.ws1d{word-spacing:0.540000px;}
.ws165{word-spacing:0.588000px;}
.ws4a{word-spacing:0.594000px;}
.ws68{word-spacing:0.648000px;}
.ws15c{word-spacing:0.672000px;}
.ws77{word-spacing:0.702000px;}
.ws153{word-spacing:0.714000px;}
.ws9a{word-spacing:0.756000px;}
.ws16a{word-spacing:0.798000px;}
.wse7{word-spacing:0.810000px;}
.wsd9{word-spacing:0.864000px;}
.ws167{word-spacing:0.882000px;}
.ws112{word-spacing:0.918000px;}
.ws6e{word-spacing:0.972000px;}
.ws154{word-spacing:1.008000px;}
.ws173{word-spacing:1.056000px;}
.ws9b{word-spacing:1.080000px;}
.ws12d{word-spacing:1.134000px;}
.ws11e{word-spacing:1.176000px;}
.ws11{word-spacing:1.188000px;}
.ws98{word-spacing:1.242000px;}
.ws146{word-spacing:1.302000px;}
.wsfc{word-spacing:1.458000px;}
.ws109{word-spacing:1.512000px;}
.ws10{word-spacing:1.518000px;}
.ws31{word-spacing:1.566000px;}
.wsf{word-spacing:1.584000px;}
.ws36{word-spacing:1.620000px;}
.ws2e{word-spacing:1.728000px;}
.ws14a{word-spacing:1.764000px;}
.ws172{word-spacing:1.776000px;}
.wsd5{word-spacing:1.782000px;}
.ws12{word-spacing:1.848000px;}
.wsd6{word-spacing:1.890000px;}
.ws155{word-spacing:1.932000px;}
.ws131{word-spacing:1.944000px;}
.ws16b{word-spacing:2.100000px;}
.ws1a{word-spacing:2.106000px;}
.ws169{word-spacing:2.184000px;}
.ws6c{word-spacing:2.268000px;}
.wsad{word-spacing:2.322000px;}
.ws151{word-spacing:2.352000px;}
.ws9f{word-spacing:2.376000px;}
.wsb5{word-spacing:2.394000px;}
.ws18{word-spacing:2.430000px;}
.ws164{word-spacing:2.478000px;}
.ws13a{word-spacing:2.484000px;}
.ws7c{word-spacing:2.646000px;}
.ws1e{word-spacing:2.754000px;}
.wsce{word-spacing:2.772000px;}
.ws66{word-spacing:2.808000px;}
.ws174{word-spacing:2.832000px;}
.ws5a{word-spacing:2.862000px;}
.ws53{word-spacing:2.916000px;}
.ws159{word-spacing:2.940000px;}
.ws1c{word-spacing:3.024000px;}
.wse0{word-spacing:3.078000px;}
.ws97{word-spacing:3.132000px;}
.ws22{word-spacing:3.186000px;}
.ws8e{word-spacing:3.240000px;}
.ws139{word-spacing:3.294000px;}
.ws163{word-spacing:3.318000px;}
.wse5{word-spacing:3.348000px;}
.ws14e{word-spacing:3.360000px;}
.ws55{word-spacing:3.402000px;}
.ws161{word-spacing:3.444000px;}
.wsaa{word-spacing:3.456000px;}
.ws123{word-spacing:3.510000px;}
.ws170{word-spacing:3.570000px;}
.wsfb{word-spacing:3.618000px;}
.wsed{word-spacing:3.672000px;}
.ws160{word-spacing:3.696000px;}
.ws4b{word-spacing:3.726000px;}
.ws54{word-spacing:3.780000px;}
.ws157{word-spacing:3.822000px;}
.ws13c{word-spacing:3.834000px;}
.ws61{word-spacing:3.888000px;}
.ws15e{word-spacing:3.906000px;}
.ws50{word-spacing:3.942000px;}
.ws16e{word-spacing:3.948000px;}
.ws93{word-spacing:4.050000px;}
.ws13{word-spacing:4.104000px;}
.ws162{word-spacing:4.200000px;}
.ws126{word-spacing:4.212000px;}
.ws105{word-spacing:4.320000px;}
.ws14d{word-spacing:4.326000px;}
.ws108{word-spacing:4.374000px;}
.ws51{word-spacing:4.482000px;}
.ws4c{word-spacing:4.536000px;}
.ws49{word-spacing:4.590000px;}
.ws7d{word-spacing:4.644000px;}
.ws14b{word-spacing:4.662000px;}
.ws12b{word-spacing:4.698000px;}
.ws15b{word-spacing:4.746000px;}
.ws102{word-spacing:4.752000px;}
.ws116{word-spacing:4.788000px;}
.ws6d{word-spacing:4.806000px;}
.wsca{word-spacing:4.872000px;}
.ws16d{word-spacing:4.914000px;}
.wse4{word-spacing:4.968000px;}
.ws8f{word-spacing:5.022000px;}
.ws113{word-spacing:5.076000px;}
.ws152{word-spacing:5.124000px;}
.ws145{word-spacing:5.166000px;}
.ws20{word-spacing:5.184000px;}
.wsea{word-spacing:5.238000px;}
.ws8{word-spacing:5.292000px;}
.ws25{word-spacing:5.346000px;}
.ws9c{word-spacing:5.454000px;}
.ws56{word-spacing:5.562000px;}
.ws171{word-spacing:5.568000px;}
.wsdd{word-spacing:5.670000px;}
.ws9d{word-spacing:5.724000px;}
.ws10f{word-spacing:5.832000px;}
.ws7a{word-spacing:5.886000px;}
.ws62{word-spacing:5.994000px;}
.ws16c{word-spacing:6.006000px;}
.ws79{word-spacing:6.102000px;}
.ws144{word-spacing:6.132000px;}
.wsef{word-spacing:6.318000px;}
.wsa2{word-spacing:6.372000px;}
.wscc{word-spacing:6.384000px;}
.ws19{word-spacing:6.426000px;}
.ws15f{word-spacing:6.510000px;}
.wsdc{word-spacing:6.534000px;}
.ws35{word-spacing:6.588000px;}
.wsee{word-spacing:6.696000px;}
.ws10e{word-spacing:6.750000px;}
.ws4d{word-spacing:6.804000px;}
.ws29{word-spacing:6.858000px;}
.wsda{word-spacing:6.912000px;}
.ws1b{word-spacing:6.966000px;}
.ws140{word-spacing:6.972000px;}
.ws58{word-spacing:7.020000px;}
.wsde{word-spacing:7.074000px;}
.wsfe{word-spacing:7.182000px;}
.ws71{word-spacing:7.290000px;}
.ws100{word-spacing:7.398000px;}
.wsa1{word-spacing:7.506000px;}
.ws110{word-spacing:7.560000px;}
.wscd{word-spacing:7.686000px;}
.ws15{word-spacing:7.722000px;}
.ws166{word-spacing:7.812000px;}
.ws4e{word-spacing:7.884000px;}
.wsa0{word-spacing:7.938000px;}
.ws2c{word-spacing:7.992000px;}
.ws2a{word-spacing:8.046000px;}
.ws15a{word-spacing:8.064000px;}
.ws10a{word-spacing:8.100000px;}
.ws156{word-spacing:8.232000px;}
.ws13d{word-spacing:8.262000px;}
.ws16{word-spacing:8.316000px;}
.ws10b{word-spacing:8.370000px;}
.ws103{word-spacing:8.532000px;}
.ws67{word-spacing:8.586000px;}
.wsfa{word-spacing:8.694000px;}
.ws76{word-spacing:8.748000px;}
.ws7{word-spacing:8.820000px;}
.ws65{word-spacing:8.856000px;}
.ws7b{word-spacing:8.910000px;}
.ws114{word-spacing:9.018000px;}
.wsf7{word-spacing:9.126000px;}
.ws75{word-spacing:9.180000px;}
.ws10d{word-spacing:9.288000px;}
.ws10c{word-spacing:9.450000px;}
.ws33{word-spacing:9.666000px;}
.ws12e{word-spacing:9.720000px;}
.ws28{word-spacing:9.774000px;}
.wse2{word-spacing:9.828000px;}
.ws70{word-spacing:9.990000px;}
.ws30{word-spacing:10.098000px;}
.wsa6{word-spacing:10.260000px;}
.ws12a{word-spacing:10.368000px;}
.ws6f{word-spacing:10.476000px;}
.wse1{word-spacing:10.530000px;}
.wsfd{word-spacing:10.584000px;}
.ws168{word-spacing:10.668000px;}
.ws12f{word-spacing:10.746000px;}
.ws9e{word-spacing:10.908000px;}
.ws13e{word-spacing:11.016000px;}
.ws5b{word-spacing:11.070000px;}
.wsa{word-spacing:11.256000px;}
.wsf0{word-spacing:11.448000px;}
.ws74{word-spacing:11.610000px;}
.ws59{word-spacing:11.826000px;}
.ws14{word-spacing:11.988000px;}
.ws14c{word-spacing:12.012000px;}
.ws64{word-spacing:12.204000px;}
.wse8{word-spacing:12.258000px;}
.ws72{word-spacing:12.528000px;}
.ws6b{word-spacing:12.582000px;}
.ws95{word-spacing:12.798000px;}
.wsec{word-spacing:13.554000px;}
.ws34{word-spacing:13.608000px;}
.wsa3{word-spacing:13.824000px;}
.ws13f{word-spacing:13.902000px;}
.ws4f{word-spacing:13.932000px;}
.ws125{word-spacing:14.040000px;}
.ws127{word-spacing:14.310000px;}
.wsdf{word-spacing:14.526000px;}
.ws107{word-spacing:14.580000px;}
.ws2b{word-spacing:14.796000px;}
.ws17{word-spacing:14.904000px;}
.ws27{word-spacing:15.012000px;}
.wsff{word-spacing:15.228000px;}
.wse3{word-spacing:15.390000px;}
.ws6a{word-spacing:15.660000px;}
.ws32{word-spacing:15.714000px;}
.ws13b{word-spacing:16.146000px;}
.ws99{word-spacing:16.200000px;}
.ws137{word-spacing:16.794000px;}
.ws73{word-spacing:17.064000px;}
.wsd4{word-spacing:17.280000px;}
.wsab{word-spacing:17.604000px;}
.ws124{word-spacing:17.712000px;}
.ws122{word-spacing:17.982000px;}
.ws121{word-spacing:18.360000px;}
.ws57{word-spacing:19.170000px;}
.ws92{word-spacing:19.548000px;}
.wse9{word-spacing:20.682000px;}
.ws24{word-spacing:23.274000px;}
.ws26{word-spacing:23.544000px;}
.ws138{word-spacing:25.002000px;}
.ws128{word-spacing:25.056000px;}
.wsc8{word-spacing:32.458200px;}
.ws141{word-spacing:38.472000px;}
.wseb{word-spacing:41.958000px;}
.wsf5{word-spacing:113.502464px;}
.ws43{word-spacing:118.524000px;}
.ws42{word-spacing:130.872000px;}
.wsc9{word-spacing:141.208800px;}
.wsc7{word-spacing:446.931600px;}
.wsbe{word-spacing:460.537800px;}
.wsc5{word-spacing:461.067000px;}
.wsc3{word-spacing:464.624400px;}
.wsc0{word-spacing:464.981400px;}
.wsbb{word-spacing:465.829800px;}
.wsba{word-spacing:508.536600px;}
.wsc6{word-spacing:610.680600px;}
.wsbd{word-spacing:615.346800px;}
.wsc4{word-spacing:617.001600px;}
.wsbf{word-spacing:619.492200px;}
.wsc2{word-spacing:622.528800px;}
.ws118{word-spacing:981.195000px;}
.ws117{word-spacing:1067.152200px;}
.ws2{word-spacing:1577.058000px;}
._9{margin-left:-29.065800px;}
._11{margin-left:-19.656000px;}
._10{margin-left:-17.334000px;}
._c{margin-left:-15.498000px;}
._12{margin-left:-14.447400px;}
._a{margin-left:-12.858000px;}
._15{margin-left:-11.299800px;}
._4{margin-left:-9.996000px;}
._d{margin-left:-7.938000px;}
._7{margin-left:-5.856600px;}
._f{margin-left:-4.090200px;}
._3{margin-left:-3.087000px;}
._b{margin-left:-2.052600px;}
._2{margin-left:-1.032000px;}
._0{width:1.296000px;}
._8{width:2.371200px;}
._5{width:3.444000px;}
._16{width:4.444200px;}
._22{width:7.995600px;}
._1{width:43.780200px;}
._6{width:45.108000px;}
._1a{width:88.504266px;}
._1b{width:91.056604px;}
._1f{width:106.729800px;}
._19{width:110.648455px;}
._1d{width:116.054874px;}
._1c{width:138.189051px;}
._13{width:146.832000px;}
._18{width:165.295800px;}
._14{width:167.832000px;}
._17{width:543.132600px;}
._1e{width:700.110600px;}
._20{width:929.775000px;}
._21{width:950.937000px;}
._e{width:1900.925400px;}
.fc4{color:rgb(237,28,36);}
.fc3{color:rgb(23,111,192);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:24.360000px;}
.fs8{font-size:31.320000px;}
.fsa{font-size:39.881400px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:19.984200px;}
.y20{bottom:29.763750px;}
.y5{bottom:66.525004px;}
.yaf{bottom:95.244000px;}
.y55{bottom:95.244150px;}
.y4{bottom:97.125005px;}
.yae{bottom:113.244000px;}
.y54{bottom:113.244150px;}
.y62{bottom:131.242950px;}
.yad{bottom:131.244000px;}
.y53{bottom:131.244150px;}
.y1f{bottom:139.264499px;}
.yac{bottom:149.244000px;}
.y52{bottom:149.244150px;}
.y61{bottom:152.242950px;}
.yab{bottom:167.244000px;}
.y51{bottom:167.244150px;}
.y60{bottom:173.242950px;}
.yaa{bottom:185.244000px;}
.y50{bottom:185.244150px;}
.y16{bottom:196.933500px;}
.ya9{bottom:203.244000px;}
.y4f{bottom:203.244150px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y5f{bottom:211.250850px;}
.ya8{bottom:221.244000px;}
.y4e{bottom:221.244150px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y5e{bottom:232.250850px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.ya7{bottom:239.244000px;}
.y4d{bottom:239.244150px;}
.y5d{bottom:253.250850px;}
.ya6{bottom:257.244000px;}
.y4c{bottom:257.244150px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y5c{bottom:274.250850px;}
.ya5{bottom:275.244000px;}
.y4b{bottom:275.244150px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.ya4{bottom:293.244000px;}
.y4a{bottom:293.244150px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.ya3{bottom:311.244000px;}
.y49{bottom:311.244150px;}
.y5b{bottom:312.258750px;}
.y118{bottom:322.135800px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y48{bottom:329.244000px;}
.y79{bottom:329.244150px;}
.y178{bottom:330.747300px;}
.y5a{bottom:333.258750px;}
.y141{bottom:339.803250px;}
.y177{bottom:344.247300px;}
.y47{bottom:347.244000px;}
.y78{bottom:347.244150px;}
.yd{bottom:348.133500px;}
.y140{bottom:353.303250px;}
.y176{bottom:357.747300px;}
.y46{bottom:365.244000px;}
.y77{bottom:365.244150px;}
.y13f{bottom:366.803250px;}
.y175{bottom:371.247300px;}
.y59{bottom:371.266650px;}
.y13e{bottom:380.303250px;}
.y45{bottom:383.244000px;}
.y76{bottom:383.244150px;}
.y174{bottom:384.747300px;}
.yc{bottom:386.785499px;}
.y58{bottom:392.266650px;}
.y13d{bottom:393.803250px;}
.y173{bottom:398.247300px;}
.y44{bottom:401.244000px;}
.y75{bottom:401.244150px;}
.y13c{bottom:407.303250px;}
.yb{bottom:408.044999px;}
.y172{bottom:411.747300px;}
.y43{bottom:419.244000px;}
.y74{bottom:419.244150px;}
.y13b{bottom:420.803250px;}
.y171{bottom:425.247300px;}
.y57{bottom:430.274550px;}
.y13a{bottom:434.303250px;}
.y42{bottom:437.244000px;}
.y73{bottom:437.244150px;}
.y170{bottom:438.747300px;}
.y139{bottom:447.803250px;}
.y56{bottom:451.274550px;}
.y16f{bottom:452.247300px;}
.y41{bottom:455.244000px;}
.y72{bottom:455.244150px;}
.y138{bottom:461.303250px;}
.y16e{bottom:465.747300px;}
.ya2{bottom:473.244000px;}
.y8c{bottom:473.244150px;}
.y137{bottom:474.803250px;}
.y16d{bottom:479.247300px;}
.y136{bottom:488.303250px;}
.y40{bottom:491.244000px;}
.y71{bottom:491.244150px;}
.y16c{bottom:492.747300px;}
.y135{bottom:501.803250px;}
.ya{bottom:502.864502px;}
.y16b{bottom:506.247300px;}
.y3f{bottom:509.244000px;}
.y70{bottom:509.244150px;}
.y134{bottom:515.303250px;}
.y16a{bottom:519.747300px;}
.y9{bottom:520.864502px;}
.y29{bottom:526.148850px;}
.y3e{bottom:527.244000px;}
.y8b{bottom:527.244150px;}
.y133{bottom:528.803250px;}
.y169{bottom:533.247300px;}
.y8{bottom:538.864499px;}
.y28{bottom:539.648850px;}
.y132{bottom:542.303250px;}
.y3d{bottom:545.244000px;}
.y6f{bottom:545.244150px;}
.y168{bottom:546.747300px;}
.y131{bottom:555.803250px;}
.y7{bottom:556.864499px;}
.y167{bottom:560.247300px;}
.y27{bottom:560.589750px;}
.y3c{bottom:563.244000px;}
.y6e{bottom:563.244150px;}
.y130{bottom:569.303250px;}
.y166{bottom:573.747300px;}
.y26{bottom:574.089750px;}
.y3b{bottom:581.244000px;}
.y6d{bottom:581.244150px;}
.y12f{bottom:582.803250px;}
.y165{bottom:587.247300px;}
.y25{bottom:587.589750px;}
.yde{bottom:589.562250px;}
.y12e{bottom:596.303250px;}
.yb4{bottom:597.499200px;}
.y3a{bottom:599.244000px;}
.y6c{bottom:599.244150px;}
.y164{bottom:600.747300px;}
.ydd{bottom:603.062250px;}
.y103{bottom:605.424300px;}
.y163{bottom:614.247300px;}
.y39{bottom:617.244000px;}
.y6b{bottom:617.244150px;}
.yb3{bottom:619.503150px;}
.ydc{bottom:625.066200px;}
.y102{bottom:627.428250px;}
.y162{bottom:627.747300px;}
.yb2{bottom:633.003150px;}
.y38{bottom:635.244000px;}
.y6a{bottom:635.244150px;}
.ydb{bottom:638.566200px;}
.y101{bottom:640.928250px;}
.y161{bottom:641.247300px;}
.y12d{bottom:642.806250px;}
.yb1{bottom:646.503150px;}
.yda{bottom:652.066200px;}
.y37{bottom:653.244000px;}
.y69{bottom:653.244150px;}
.y100{bottom:654.428250px;}
.y160{bottom:654.747300px;}
.yb0{bottom:663.468150px;}
.y12c{bottom:664.810200px;}
.yd9{bottom:665.566200px;}
.y15f{bottom:668.247300px;}
.y36{bottom:671.244000px;}
.y8a{bottom:671.244150px;}
.y117{bottom:673.236000px;}
.y104{bottom:677.533950px;}
.yd8{bottom:679.066200px;}
.y15e{bottom:681.747300px;}
.yd5{bottom:685.816950px;}
.y12b{bottom:688.801500px;}
.y35{bottom:689.244150px;}
.yd3{bottom:690.069000px;}
.yd7{bottom:692.566200px;}
.y15d{bottom:695.247300px;}
.y105{bottom:695.498700px;}
.y12a{bottom:702.301500px;}
.yd4{bottom:702.970350px;}
.yd2{bottom:703.569000px;}
.yd6{bottom:706.066200px;}
.y89{bottom:707.244150px;}
.y15c{bottom:708.747300px;}
.y115{bottom:712.667643px;}
.y68{bottom:717.357450px;}
.y15b{bottom:722.247300px;}
.y129{bottom:722.554350px;}
.yd1{bottom:723.821850px;}
.y88{bottom:725.244150px;}
.y6{bottom:726.298500px;}
.ye7{bottom:727.762950px;}
.yf6{bottom:730.053000px;}
.y114{bottom:730.544480px;}
.y15a{bottom:735.747300px;}
.y128{bottom:736.054350px;}
.yd0{bottom:737.321850px;}
.y67{bottom:739.361400px;}
.ye6{bottom:741.262950px;}
.y87{bottom:743.244150px;}
.ycf{bottom:746.569800px;}
.y113{bottom:748.411347px;}
.y159{bottom:749.247300px;}
.yf5{bottom:750.305850px;}
.ycd{bottom:750.821850px;}
.y3{bottom:752.599495px;}
.y66{bottom:752.861400px;}
.y127{bottom:756.751500px;}
.y86{bottom:761.244150px;}
.y158{bottom:762.747300px;}
.ye5{bottom:763.266900px;}
.yce{bottom:763.723200px;}
.yf4{bottom:763.805850px;}
.ycc{bottom:764.321850px;}
.y112{bottom:766.278215px;}
.y65{bottom:766.361400px;}
.y34{bottom:771.354450px;}
.y157{bottom:776.247300px;}
.ye4{bottom:776.766900px;}
.y126{bottom:777.004350px;}
.y85{bottom:779.244150px;}
.y111{bottom:781.303532px;}
.yf3{bottom:784.058550px;}
.ycb{bottom:784.574550px;}
.y96{bottom:787.517400px;}
.y156{bottom:789.747300px;}
.ye3{bottom:790.266900px;}
.y116{bottom:790.565987px;}
.y33{bottom:792.354450px;}
.y84{bottom:797.244150px;}
.y125{bottom:797.257200px;}
.yca{bottom:798.074550px;}
.y110{bottom:802.031890px;}
.y155{bottom:803.247300px;}
.ye2{bottom:803.766900px;}
.yf2{bottom:804.311400px;}
.yc9{bottom:807.322500px;}
.y8d{bottom:807.992400px;}
.y97{bottom:808.380900px;}
.y124{bottom:810.757200px;}
.yc7{bottom:811.574550px;}
.y32{bottom:813.354450px;}
.y83{bottom:815.244150px;}
.y154{bottom:816.747300px;}
.ye1{bottom:817.266900px;}
.ya0{bottom:818.213400px;}
.y10f{bottom:819.898757px;}
.yc8{bottom:824.475900px;}
.yf1{bottom:824.564250px;}
.yc6{bottom:825.074550px;}
.y8e{bottom:828.068400px;}
.y98{bottom:828.446400px;}
.y153{bottom:830.247300px;}
.ye0{bottom:830.766900px;}
.y123{bottom:831.010050px;}
.y82{bottom:833.244150px;}
.y31{bottom:834.354450px;}
.y10e{bottom:837.765624px;}
.y152{bottom:843.747300px;}
.ydf{bottom:844.266900px;}
.y122{bottom:844.510050px;}
.yf0{bottom:844.817100px;}
.yc5{bottom:845.327400px;}
.y8f{bottom:848.144400px;}
.y99{bottom:848.511900px;}
.y81{bottom:851.244150px;}
.yc4{bottom:854.575350px;}
.y30{bottom:855.354450px;}
.y10d{bottom:855.642462px;}
.y151{bottom:857.247300px;}
.y121{bottom:858.010050px;}
.yc2{bottom:858.827400px;}
.yef{bottom:865.069800px;}
.y90{bottom:868.220400px;}
.yfe{bottom:868.324050px;}
.y9a{bottom:868.587900px;}
.y80{bottom:869.244150px;}
.y150{bottom:870.747300px;}
.yc3{bottom:871.728750px;}
.yc1{bottom:872.327400px;}
.y10c{bottom:873.519299px;}
.y2f{bottom:876.354450px;}
.y120{bottom:878.262750px;}
.y2{bottom:879.369000px;}
.y14f{bottom:884.247300px;}
.yee{bottom:885.322650px;}
.y7f{bottom:887.244150px;}
.y91{bottom:888.296400px;}
.yfd{bottom:888.576900px;}
.y9b{bottom:888.663900px;}
.y10b{bottom:891.386166px;}
.yc0{bottom:892.580100px;}
.ybe{bottom:896.832150px;}
.y2e{bottom:897.354450px;}
.y14e{bottom:897.747300px;}
.y11f{bottom:898.515600px;}
.yed{bottom:898.822650px;}
.y7e{bottom:905.244150px;}
.y9c{bottom:907.689900px;}
.y92{bottom:908.372400px;}
.yfc{bottom:908.829600px;}
.y10a{bottom:909.253034px;}
.ybf{bottom:909.733500px;}
.ybd{bottom:910.332150px;}
.y14d{bottom:911.247300px;}
.y11e{bottom:912.015600px;}
.y2d{bottom:918.354450px;}
.yec{bottom:919.075350px;}
.y7d{bottom:923.244150px;}
.y14c{bottom:924.747300px;}
.y109{bottom:927.129871px;}
.y93{bottom:928.437900px;}
.y9d{bottom:928.794900px;}
.yfb{bottom:929.082450px;}
.ybc{bottom:930.584850px;}
.y11d{bottom:932.268300px;}
.yba{bottom:934.836750px;}
.y14b{bottom:938.247300px;}
.yeb{bottom:939.328200px;}
.y7c{bottom:941.244150px;}
.y108{bottom:944.996738px;}
.y11c{bottom:945.768300px;}
.ybb{bottom:947.738250px;}
.yb9{bottom:948.336750px;}
.y94{bottom:948.513900px;}
.y9e{bottom:948.881400px;}
.yfa{bottom:949.335150px;}
.y14a{bottom:951.747300px;}
.y7b{bottom:959.244150px;}
.yea{bottom:959.580900px;}
.y2c{bottom:962.740200px;}
.y107{bottom:962.863606px;}
.y149{bottom:965.247300px;}
.y11b{bottom:966.021150px;}
.y1{bottom:966.726000px;}
.yb5{bottom:968.589600px;}
.y95{bottom:968.589900px;}
.y9f{bottom:968.946900px;}
.yf9{bottom:969.588000px;}
.ye9{bottom:973.080900px;}
.y7a{bottom:977.244150px;}
.y148{bottom:978.747300px;}
.y106{bottom:980.730473px;}
.yb8{bottom:982.089600px;}
.y11a{bottom:986.273850px;}
.yf8{bottom:989.840850px;}
.ya1{bottom:991.324950px;}
.y147{bottom:992.247300px;}
.ye8{bottom:993.333750px;}
.yff{bottom:995.244150px;}
.yb7{bottom:995.589600px;}
.y2b{bottom:1001.740200px;}
.y146{bottom:1005.747300px;}
.y119{bottom:1006.526700px;}
.yb6{bottom:1009.089600px;}
.yf7{bottom:1010.093700px;}
.y64{bottom:1013.244150px;}
.y145{bottom:1019.247300px;}
.y63{bottom:1031.244150px;}
.y144{bottom:1032.747300px;}
.y143{bottom:1046.247300px;}
.y2a{bottom:1049.244150px;}
.y142{bottom:1059.747300px;}
.y23{bottom:1098.236250px;}
.y24{bottom:1116.756000px;}
.y22{bottom:1143.779550px;}
.h18{height:23.814000px;}
.h1b{height:29.153303px;}
.h1d{height:30.618000px;}
.h16{height:30.702000px;}
.h17{height:30.744000px;}
.h8{height:32.130000px;}
.h1e{height:35.088000px;}
.hf{height:37.674000px;}
.h9{height:37.968000px;}
.h15{height:39.474000px;}
.h19{height:40.068000px;}
.h1a{height:40.068600px;}
.hd{height:43.860000px;}
.h3{height:48.195000px;}
.h12{height:48.246000px;}
.h13{height:48.438000px;}
.hc{height:48.654000px;}
.h14{height:48.870000px;}
.he{height:54.060000px;}
.h7{height:54.240000px;}
.h6{height:56.952000px;}
.h10{height:59.466000px;}
.h2{height:65.088000px;}
.h5{height:92.208000px;}
.h11{height:96.492000px;}
.h4{height:119.055004px;}
.h1c{height:331.539000px;}
.hb{height:1177.500000px;}
.ha{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:347.881500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.xd{left:63.779550px;}
.xc{left:67.287450px;}
.x1c{left:75.929700px;}
.x1a{left:83.626950px;}
.x1b{left:96.762450px;}
.x9{left:97.795200px;}
.x38{left:99.960838px;}
.x1{left:102.045000px;}
.x3f{left:103.587150px;}
.x2{left:106.297500px;}
.x34{left:113.760750px;}
.xa{left:114.803100px;}
.x36{left:122.775611px;}
.x37{left:126.545368px;}
.x3e{left:131.172356px;}
.x3c{left:135.282940px;}
.x30{left:138.444900px;}
.x2f{left:140.976600px;}
.x3d{left:149.267188px;}
.x3a{left:152.324305px;}
.x2d{left:153.693900px;}
.x19{left:155.614950px;}
.x39{left:159.192492px;}
.x1d{left:160.434300px;}
.x31{left:162.849150px;}
.x3b{left:168.983531px;}
.x1e{left:175.132500px;}
.x1f{left:178.401150px;}
.x20{left:179.757600px;}
.x21{left:183.280200px;}
.x35{left:200.949000px;}
.x4{left:203.484001px;}
.x26{left:213.576150px;}
.x15{left:215.065950px;}
.x13{left:216.189450px;}
.x2c{left:222.158850px;}
.x2e{left:234.762750px;}
.x14{left:237.640950px;}
.x22{left:274.374300px;}
.x23{left:278.073450px;}
.x18{left:283.840950px;}
.x16{left:285.027450px;}
.x12{left:303.570450px;}
.x10{left:305.176950px;}
.x17{left:314.427450px;}
.x24{left:340.808550px;}
.x11{left:349.182450px;}
.x27{left:382.519800px;}
.x2b{left:383.559900px;}
.x2a{left:386.219550px;}
.x40{left:433.700700px;}
.xf{left:446.456700px;}
.x32{left:448.576200px;}
.x3{left:454.959000px;}
.xb{left:480.472350px;}
.x41{left:497.480250px;}
.x33{left:512.362200px;}
.x28{left:530.645550px;}
.xe{left:598.467000px;}
.x8{left:639.699150px;}
.x5{left:667.999650px;}
.x7{left:746.934000px;}
.x25{left:757.602150px;}
.x29{left:770.343150px;}
@media print{
.v1{vertical-align:-33.259733pt;}
.v3{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.128000pt;}
.v5{vertical-align:12.320000pt;}
.v2{vertical-align:15.840000pt;}
.ls25{letter-spacing:-3.472000pt;}
.ls22{letter-spacing:-3.408000pt;}
.ls3f{letter-spacing:-2.240000pt;}
.ls2a{letter-spacing:-2.128000pt;}
.ls2c{letter-spacing:-1.866667pt;}
.ls4c{letter-spacing:-1.717333pt;}
.ls3e{letter-spacing:-1.680000pt;}
.ls3c{letter-spacing:-1.456000pt;}
.ls3b{letter-spacing:-1.418667pt;}
.ls3d{letter-spacing:-1.269333pt;}
.ls43{letter-spacing:-1.045333pt;}
.ls40{letter-spacing:-0.896000pt;}
.ls4b{letter-spacing:-0.858667pt;}
.ls46{letter-spacing:-0.821333pt;}
.ls48{letter-spacing:-0.586667pt;}
.ls4d{letter-spacing:-0.522667pt;}
.ls4a{letter-spacing:-0.485333pt;}
.ls4f{letter-spacing:-0.448000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.352000pt;}
.ls39{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.298667pt;}
.ls4e{letter-spacing:-0.149333pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls35{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.074667pt;}
.ls45{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000213pt;}
.ls23{letter-spacing:0.037333pt;}
.ls30{letter-spacing:0.086461pt;}
.ls2e{letter-spacing:0.086613pt;}
.ls33{letter-spacing:0.087005pt;}
.ls17{letter-spacing:0.111360pt;}
.ls1f{letter-spacing:0.149333pt;}
.ls27{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.234667pt;}
.ls37{letter-spacing:0.261333pt;}
.ls3{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.293333pt;}
.ls29{letter-spacing:0.298667pt;}
.ls31{letter-spacing:0.336000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.390003pt;}
.ls28{letter-spacing:0.410667pt;}
.ls41{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.432000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.522667pt;}
.ls6{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.560000pt;}
.ls16{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.586667pt;}
.ls38{letter-spacing:0.597333pt;}
.ls36{letter-spacing:0.624000pt;}
.ls4{letter-spacing:0.634667pt;}
.ls14{letter-spacing:0.672000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls2b{letter-spacing:0.784000pt;}
.ls42{letter-spacing:0.816000pt;}
.ls47{letter-spacing:0.821333pt;}
.ls49{letter-spacing:0.858667pt;}
.lsc{letter-spacing:0.864000pt;}
.ls10{letter-spacing:0.912000pt;}
.ls24{letter-spacing:0.933333pt;}
.ls50{letter-spacing:0.938667pt;}
.lsd{letter-spacing:0.960000pt;}
.ls44{letter-spacing:0.970667pt;}
.lse{letter-spacing:1.008000pt;}
.ls13{letter-spacing:1.056000pt;}
.ls32{letter-spacing:1.701660pt;}
.ls2d{letter-spacing:1.701867pt;}
.ls2f{letter-spacing:1.702204pt;}
.ls34{letter-spacing:43.494400pt;}
.ls1c{letter-spacing:593.749333pt;}
.ls1e{letter-spacing:594.337600pt;}
.ls20{letter-spacing:595.156800pt;}
.ls1b{letter-spacing:606.609067pt;}
.ls1d{letter-spacing:607.096000pt;}
.ws1{word-spacing:-15.573333pt;}
.wsf2{word-spacing:-15.253333pt;}
.ws3e{word-spacing:-15.093333pt;}
.wsf3{word-spacing:-14.352000pt;}
.ws132{word-spacing:-14.240000pt;}
.ws3f{word-spacing:-14.208000pt;}
.ws40{word-spacing:-13.920000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws11a{word-spacing:-13.008000pt;}
.ws8a{word-spacing:-11.312000pt;}
.ws136{word-spacing:-11.237333pt;}
.ws8b{word-spacing:-11.162667pt;}
.ws87{word-spacing:-11.125333pt;}
.ws86{word-spacing:-11.050667pt;}
.ws7f{word-spacing:-11.013333pt;}
.wsb9{word-spacing:-10.976000pt;}
.ws80{word-spacing:-10.938667pt;}
.ws81{word-spacing:-10.901333pt;}
.ws84{word-spacing:-10.789333pt;}
.wsc1{word-spacing:-10.714667pt;}
.ws85{word-spacing:-10.677333pt;}
.wsb8{word-spacing:-10.640000pt;}
.ws88{word-spacing:-10.528000pt;}
.wsf4{word-spacing:-10.416000pt;}
.ws41{word-spacing:-10.378667pt;}
.ws135{word-spacing:-10.229333pt;}
.ws83{word-spacing:-10.080000pt;}
.ws133{word-spacing:-9.893333pt;}
.wsf6{word-spacing:-9.855137pt;}
.ws119{word-spacing:-9.557333pt;}
.ws134{word-spacing:-9.520000pt;}
.wsbc{word-spacing:-8.960000pt;}
.ws8c{word-spacing:-8.512000pt;}
.ws89{word-spacing:-8.250667pt;}
.ws82{word-spacing:-6.906667pt;}
.wsd{word-spacing:-6.570667pt;}
.ws148{word-spacing:-3.210667pt;}
.wse{word-spacing:-3.168000pt;}
.ws94{word-spacing:-3.072000pt;}
.wsa5{word-spacing:-2.976000pt;}
.ws5f{word-spacing:-2.688000pt;}
.ws7e{word-spacing:-2.640000pt;}
.wsae{word-spacing:-2.613333pt;}
.ws21{word-spacing:-2.544000pt;}
.ws44{word-spacing:-2.400000pt;}
.ws38{word-spacing:-2.352000pt;}
.ws115{word-spacing:-2.304000pt;}
.ws3b{word-spacing:-2.256000pt;}
.ws69{word-spacing:-2.208000pt;}
.wsb7{word-spacing:-2.165333pt;}
.wse6{word-spacing:-2.160000pt;}
.ws129{word-spacing:-2.112000pt;}
.wsd8{word-spacing:-2.064000pt;}
.ws11f{word-spacing:-2.016000pt;}
.wsb6{word-spacing:-1.978667pt;}
.ws1f{word-spacing:-1.968000pt;}
.ws60{word-spacing:-1.920000pt;}
.ws150{word-spacing:-1.904000pt;}
.ws8d{word-spacing:-1.872000pt;}
.ws120{word-spacing:-1.866667pt;}
.ws48{word-spacing:-1.829333pt;}
.ws3c{word-spacing:-1.824000pt;}
.ws5{word-spacing:-1.792000pt;}
.wsd3{word-spacing:-1.776000pt;}
.ws23{word-spacing:-1.728000pt;}
.ws47{word-spacing:-1.717333pt;}
.wsb{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.642667pt;}
.ws39{word-spacing:-1.632000pt;}
.ws9{word-spacing:-1.605333pt;}
.ws78{word-spacing:-1.584000pt;}
.ws11d{word-spacing:-1.568000pt;}
.ws2f{word-spacing:-1.536000pt;}
.ws104{word-spacing:-1.488000pt;}
.ws90{word-spacing:-1.392000pt;}
.ws11c{word-spacing:-1.381333pt;}
.ws3a{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.296000pt;}
.wsb2{word-spacing:-1.269333pt;}
.ws12c{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.194667pt;}
.wsac{word-spacing:-1.152000pt;}
.wscb{word-spacing:-1.120000pt;}
.ws52{word-spacing:-1.056000pt;}
.ws6{word-spacing:-1.045333pt;}
.ws45{word-spacing:-1.008000pt;}
.ws3d{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.933333pt;}
.wsa4{word-spacing:-0.864000pt;}
.ws142{word-spacing:-0.858667pt;}
.wsf8{word-spacing:-0.816000pt;}
.ws11b{word-spacing:-0.784000pt;}
.wsf1{word-spacing:-0.746667pt;}
.wsa8{word-spacing:-0.720000pt;}
.wsdb{word-spacing:-0.672000pt;}
.wsaf{word-spacing:-0.634667pt;}
.ws16f{word-spacing:-0.597333pt;}
.ws5c{word-spacing:-0.576000pt;}
.ws14f{word-spacing:-0.560000pt;}
.wsd7{word-spacing:-0.528000pt;}
.ws15d{word-spacing:-0.522667pt;}
.ws4{word-spacing:-0.480000pt;}
.wsd2{word-spacing:-0.448000pt;}
.wsd0{word-spacing:-0.410667pt;}
.ws101{word-spacing:-0.384000pt;}
.ws46{word-spacing:-0.373333pt;}
.wsd1{word-spacing:-0.336000pt;}
.wscf{word-spacing:-0.298667pt;}
.ws2d{word-spacing:-0.288000pt;}
.ws147{word-spacing:-0.149333pt;}
.wsa9{word-spacing:-0.144000pt;}
.ws106{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.048000pt;}
.wsb0{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws130{word-spacing:0.048000pt;}
.ws149{word-spacing:0.074667pt;}
.ws96{word-spacing:0.096000pt;}
.ws5e{word-spacing:0.144000pt;}
.wsa7{word-spacing:0.192000pt;}
.ws158{word-spacing:0.224000pt;}
.ws111{word-spacing:0.240000pt;}
.wsb3{word-spacing:0.298667pt;}
.wsf9{word-spacing:0.336000pt;}
.ws143{word-spacing:0.373333pt;}
.ws91{word-spacing:0.384000pt;}
.ws175{word-spacing:0.426667pt;}
.ws37{word-spacing:0.432000pt;}
.ws1d{word-spacing:0.480000pt;}
.ws165{word-spacing:0.522667pt;}
.ws4a{word-spacing:0.528000pt;}
.ws68{word-spacing:0.576000pt;}
.ws15c{word-spacing:0.597333pt;}
.ws77{word-spacing:0.624000pt;}
.ws153{word-spacing:0.634667pt;}
.ws9a{word-spacing:0.672000pt;}
.ws16a{word-spacing:0.709333pt;}
.wse7{word-spacing:0.720000pt;}
.wsd9{word-spacing:0.768000pt;}
.ws167{word-spacing:0.784000pt;}
.ws112{word-spacing:0.816000pt;}
.ws6e{word-spacing:0.864000pt;}
.ws154{word-spacing:0.896000pt;}
.ws173{word-spacing:0.938667pt;}
.ws9b{word-spacing:0.960000pt;}
.ws12d{word-spacing:1.008000pt;}
.ws11e{word-spacing:1.045333pt;}
.ws11{word-spacing:1.056000pt;}
.ws98{word-spacing:1.104000pt;}
.ws146{word-spacing:1.157333pt;}
.wsfc{word-spacing:1.296000pt;}
.ws109{word-spacing:1.344000pt;}
.ws10{word-spacing:1.349333pt;}
.ws31{word-spacing:1.392000pt;}
.wsf{word-spacing:1.408000pt;}
.ws36{word-spacing:1.440000pt;}
.ws2e{word-spacing:1.536000pt;}
.ws14a{word-spacing:1.568000pt;}
.ws172{word-spacing:1.578667pt;}
.wsd5{word-spacing:1.584000pt;}
.ws12{word-spacing:1.642667pt;}
.wsd6{word-spacing:1.680000pt;}
.ws155{word-spacing:1.717333pt;}
.ws131{word-spacing:1.728000pt;}
.ws16b{word-spacing:1.866667pt;}
.ws1a{word-spacing:1.872000pt;}
.ws169{word-spacing:1.941333pt;}
.ws6c{word-spacing:2.016000pt;}
.wsad{word-spacing:2.064000pt;}
.ws151{word-spacing:2.090667pt;}
.ws9f{word-spacing:2.112000pt;}
.wsb5{word-spacing:2.128000pt;}
.ws18{word-spacing:2.160000pt;}
.ws164{word-spacing:2.202667pt;}
.ws13a{word-spacing:2.208000pt;}
.ws7c{word-spacing:2.352000pt;}
.ws1e{word-spacing:2.448000pt;}
.wsce{word-spacing:2.464000pt;}
.ws66{word-spacing:2.496000pt;}
.ws174{word-spacing:2.517333pt;}
.ws5a{word-spacing:2.544000pt;}
.ws53{word-spacing:2.592000pt;}
.ws159{word-spacing:2.613333pt;}
.ws1c{word-spacing:2.688000pt;}
.wse0{word-spacing:2.736000pt;}
.ws97{word-spacing:2.784000pt;}
.ws22{word-spacing:2.832000pt;}
.ws8e{word-spacing:2.880000pt;}
.ws139{word-spacing:2.928000pt;}
.ws163{word-spacing:2.949333pt;}
.wse5{word-spacing:2.976000pt;}
.ws14e{word-spacing:2.986667pt;}
.ws55{word-spacing:3.024000pt;}
.ws161{word-spacing:3.061333pt;}
.wsaa{word-spacing:3.072000pt;}
.ws123{word-spacing:3.120000pt;}
.ws170{word-spacing:3.173333pt;}
.wsfb{word-spacing:3.216000pt;}
.wsed{word-spacing:3.264000pt;}
.ws160{word-spacing:3.285333pt;}
.ws4b{word-spacing:3.312000pt;}
.ws54{word-spacing:3.360000pt;}
.ws157{word-spacing:3.397333pt;}
.ws13c{word-spacing:3.408000pt;}
.ws61{word-spacing:3.456000pt;}
.ws15e{word-spacing:3.472000pt;}
.ws50{word-spacing:3.504000pt;}
.ws16e{word-spacing:3.509333pt;}
.ws93{word-spacing:3.600000pt;}
.ws13{word-spacing:3.648000pt;}
.ws162{word-spacing:3.733333pt;}
.ws126{word-spacing:3.744000pt;}
.ws105{word-spacing:3.840000pt;}
.ws14d{word-spacing:3.845333pt;}
.ws108{word-spacing:3.888000pt;}
.ws51{word-spacing:3.984000pt;}
.ws4c{word-spacing:4.032000pt;}
.ws49{word-spacing:4.080000pt;}
.ws7d{word-spacing:4.128000pt;}
.ws14b{word-spacing:4.144000pt;}
.ws12b{word-spacing:4.176000pt;}
.ws15b{word-spacing:4.218667pt;}
.ws102{word-spacing:4.224000pt;}
.ws116{word-spacing:4.256000pt;}
.ws6d{word-spacing:4.272000pt;}
.wsca{word-spacing:4.330667pt;}
.ws16d{word-spacing:4.368000pt;}
.wse4{word-spacing:4.416000pt;}
.ws8f{word-spacing:4.464000pt;}
.ws113{word-spacing:4.512000pt;}
.ws152{word-spacing:4.554667pt;}
.ws145{word-spacing:4.592000pt;}
.ws20{word-spacing:4.608000pt;}
.wsea{word-spacing:4.656000pt;}
.ws8{word-spacing:4.704000pt;}
.ws25{word-spacing:4.752000pt;}
.ws9c{word-spacing:4.848000pt;}
.ws56{word-spacing:4.944000pt;}
.ws171{word-spacing:4.949333pt;}
.wsdd{word-spacing:5.040000pt;}
.ws9d{word-spacing:5.088000pt;}
.ws10f{word-spacing:5.184000pt;}
.ws7a{word-spacing:5.232000pt;}
.ws62{word-spacing:5.328000pt;}
.ws16c{word-spacing:5.338667pt;}
.ws79{word-spacing:5.424000pt;}
.ws144{word-spacing:5.450667pt;}
.wsef{word-spacing:5.616000pt;}
.wsa2{word-spacing:5.664000pt;}
.wscc{word-spacing:5.674667pt;}
.ws19{word-spacing:5.712000pt;}
.ws15f{word-spacing:5.786667pt;}
.wsdc{word-spacing:5.808000pt;}
.ws35{word-spacing:5.856000pt;}
.wsee{word-spacing:5.952000pt;}
.ws10e{word-spacing:6.000000pt;}
.ws4d{word-spacing:6.048000pt;}
.ws29{word-spacing:6.096000pt;}
.wsda{word-spacing:6.144000pt;}
.ws1b{word-spacing:6.192000pt;}
.ws140{word-spacing:6.197333pt;}
.ws58{word-spacing:6.240000pt;}
.wsde{word-spacing:6.288000pt;}
.wsfe{word-spacing:6.384000pt;}
.ws71{word-spacing:6.480000pt;}
.ws100{word-spacing:6.576000pt;}
.wsa1{word-spacing:6.672000pt;}
.ws110{word-spacing:6.720000pt;}
.wscd{word-spacing:6.832000pt;}
.ws15{word-spacing:6.864000pt;}
.ws166{word-spacing:6.944000pt;}
.ws4e{word-spacing:7.008000pt;}
.wsa0{word-spacing:7.056000pt;}
.ws2c{word-spacing:7.104000pt;}
.ws2a{word-spacing:7.152000pt;}
.ws15a{word-spacing:7.168000pt;}
.ws10a{word-spacing:7.200000pt;}
.ws156{word-spacing:7.317333pt;}
.ws13d{word-spacing:7.344000pt;}
.ws16{word-spacing:7.392000pt;}
.ws10b{word-spacing:7.440000pt;}
.ws103{word-spacing:7.584000pt;}
.ws67{word-spacing:7.632000pt;}
.wsfa{word-spacing:7.728000pt;}
.ws76{word-spacing:7.776000pt;}
.ws7{word-spacing:7.840000pt;}
.ws65{word-spacing:7.872000pt;}
.ws7b{word-spacing:7.920000pt;}
.ws114{word-spacing:8.016000pt;}
.wsf7{word-spacing:8.112000pt;}
.ws75{word-spacing:8.160000pt;}
.ws10d{word-spacing:8.256000pt;}
.ws10c{word-spacing:8.400000pt;}
.ws33{word-spacing:8.592000pt;}
.ws12e{word-spacing:8.640000pt;}
.ws28{word-spacing:8.688000pt;}
.wse2{word-spacing:8.736000pt;}
.ws70{word-spacing:8.880000pt;}
.ws30{word-spacing:8.976000pt;}
.wsa6{word-spacing:9.120000pt;}
.ws12a{word-spacing:9.216000pt;}
.ws6f{word-spacing:9.312000pt;}
.wse1{word-spacing:9.360000pt;}
.wsfd{word-spacing:9.408000pt;}
.ws168{word-spacing:9.482667pt;}
.ws12f{word-spacing:9.552000pt;}
.ws9e{word-spacing:9.696000pt;}
.ws13e{word-spacing:9.792000pt;}
.ws5b{word-spacing:9.840000pt;}
.wsa{word-spacing:10.005333pt;}
.wsf0{word-spacing:10.176000pt;}
.ws74{word-spacing:10.320000pt;}
.ws59{word-spacing:10.512000pt;}
.ws14{word-spacing:10.656000pt;}
.ws14c{word-spacing:10.677333pt;}
.ws64{word-spacing:10.848000pt;}
.wse8{word-spacing:10.896000pt;}
.ws72{word-spacing:11.136000pt;}
.ws6b{word-spacing:11.184000pt;}
.ws95{word-spacing:11.376000pt;}
.wsec{word-spacing:12.048000pt;}
.ws34{word-spacing:12.096000pt;}
.wsa3{word-spacing:12.288000pt;}
.ws13f{word-spacing:12.357333pt;}
.ws4f{word-spacing:12.384000pt;}
.ws125{word-spacing:12.480000pt;}
.ws127{word-spacing:12.720000pt;}
.wsdf{word-spacing:12.912000pt;}
.ws107{word-spacing:12.960000pt;}
.ws2b{word-spacing:13.152000pt;}
.ws17{word-spacing:13.248000pt;}
.ws27{word-spacing:13.344000pt;}
.wsff{word-spacing:13.536000pt;}
.wse3{word-spacing:13.680000pt;}
.ws6a{word-spacing:13.920000pt;}
.ws32{word-spacing:13.968000pt;}
.ws13b{word-spacing:14.352000pt;}
.ws99{word-spacing:14.400000pt;}
.ws137{word-spacing:14.928000pt;}
.ws73{word-spacing:15.168000pt;}
.wsd4{word-spacing:15.360000pt;}
.wsab{word-spacing:15.648000pt;}
.ws124{word-spacing:15.744000pt;}
.ws122{word-spacing:15.984000pt;}
.ws121{word-spacing:16.320000pt;}
.ws57{word-spacing:17.040000pt;}
.ws92{word-spacing:17.376000pt;}
.wse9{word-spacing:18.384000pt;}
.ws24{word-spacing:20.688000pt;}
.ws26{word-spacing:20.928000pt;}
.ws138{word-spacing:22.224000pt;}
.ws128{word-spacing:22.272000pt;}
.wsc8{word-spacing:28.851733pt;}
.ws141{word-spacing:34.197333pt;}
.wseb{word-spacing:37.296000pt;}
.wsf5{word-spacing:100.891079pt;}
.ws43{word-spacing:105.354667pt;}
.ws42{word-spacing:116.330667pt;}
.wsc9{word-spacing:125.518933pt;}
.wsc7{word-spacing:397.272533pt;}
.wsbe{word-spacing:409.366933pt;}
.wsc5{word-spacing:409.837333pt;}
.wsc3{word-spacing:412.999467pt;}
.wsc0{word-spacing:413.316800pt;}
.wsbb{word-spacing:414.070933pt;}
.wsba{word-spacing:452.032533pt;}
.wsc6{word-spacing:542.827200pt;}
.wsbd{word-spacing:546.974933pt;}
.wsc4{word-spacing:548.445867pt;}
.wsbf{word-spacing:550.659733pt;}
.wsc2{word-spacing:553.358933pt;}
.ws118{word-spacing:872.173333pt;}
.ws117{word-spacing:948.579733pt;}
.ws2{word-spacing:1401.829333pt;}
._9{margin-left:-25.836267pt;}
._11{margin-left:-17.472000pt;}
._10{margin-left:-15.408000pt;}
._c{margin-left:-13.776000pt;}
._12{margin-left:-12.842133pt;}
._a{margin-left:-11.429333pt;}
._15{margin-left:-10.044267pt;}
._4{margin-left:-8.885333pt;}
._d{margin-left:-7.056000pt;}
._7{margin-left:-5.205867pt;}
._f{margin-left:-3.635733pt;}
._3{margin-left:-2.744000pt;}
._b{margin-left:-1.824533pt;}
._2{margin-left:-0.917333pt;}
._0{width:1.152000pt;}
._8{width:2.107733pt;}
._5{width:3.061333pt;}
._16{width:3.950400pt;}
._22{width:7.107200pt;}
._1{width:38.915733pt;}
._6{width:40.096000pt;}
._1a{width:78.670459pt;}
._1b{width:80.939203pt;}
._1f{width:94.870933pt;}
._19{width:98.354183pt;}
._1d{width:103.159888pt;}
._1c{width:122.834712pt;}
._13{width:130.517333pt;}
._18{width:146.929600pt;}
._14{width:149.184000pt;}
._17{width:482.784533pt;}
._1e{width:622.320533pt;}
._20{width:826.466667pt;}
._21{width:845.277333pt;}
._e{width:1689.711467pt;}
.fs9{font-size:21.653333pt;}
.fs8{font-size:27.840000pt;}
.fsa{font-size:35.450133pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:17.763733pt;}
.y20{bottom:26.456667pt;}
.y5{bottom:59.133337pt;}
.yaf{bottom:84.661333pt;}
.y55{bottom:84.661467pt;}
.y4{bottom:86.333337pt;}
.yae{bottom:100.661333pt;}
.y54{bottom:100.661467pt;}
.y62{bottom:116.660400pt;}
.yad{bottom:116.661333pt;}
.y53{bottom:116.661467pt;}
.y1f{bottom:123.790666pt;}
.yac{bottom:132.661333pt;}
.y52{bottom:132.661467pt;}
.y61{bottom:135.327067pt;}
.yab{bottom:148.661333pt;}
.y51{bottom:148.661467pt;}
.y60{bottom:153.993733pt;}
.yaa{bottom:164.661333pt;}
.y50{bottom:164.661467pt;}
.y16{bottom:175.052000pt;}
.ya9{bottom:180.661333pt;}
.y4f{bottom:180.661467pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y5f{bottom:187.778533pt;}
.ya8{bottom:196.661333pt;}
.y4e{bottom:196.661467pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y5e{bottom:206.445200pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.ya7{bottom:212.661333pt;}
.y4d{bottom:212.661467pt;}
.y5d{bottom:225.111867pt;}
.ya6{bottom:228.661333pt;}
.y4c{bottom:228.661467pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y5c{bottom:243.778533pt;}
.ya5{bottom:244.661333pt;}
.y4b{bottom:244.661467pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.ya4{bottom:260.661333pt;}
.y4a{bottom:260.661467pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.ya3{bottom:276.661333pt;}
.y49{bottom:276.661467pt;}
.y5b{bottom:277.563333pt;}
.y118{bottom:286.342933pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y48{bottom:292.661333pt;}
.y79{bottom:292.661467pt;}
.y178{bottom:293.997600pt;}
.y5a{bottom:296.230000pt;}
.y141{bottom:302.047333pt;}
.y177{bottom:305.997600pt;}
.y47{bottom:308.661333pt;}
.y78{bottom:308.661467pt;}
.yd{bottom:309.452000pt;}
.y140{bottom:314.047333pt;}
.y176{bottom:317.997600pt;}
.y46{bottom:324.661333pt;}
.y77{bottom:324.661467pt;}
.y13f{bottom:326.047333pt;}
.y175{bottom:329.997600pt;}
.y59{bottom:330.014800pt;}
.y13e{bottom:338.047333pt;}
.y45{bottom:340.661333pt;}
.y76{bottom:340.661467pt;}
.y174{bottom:341.997600pt;}
.yc{bottom:343.809333pt;}
.y58{bottom:348.681467pt;}
.y13d{bottom:350.047333pt;}
.y173{bottom:353.997600pt;}
.y44{bottom:356.661333pt;}
.y75{bottom:356.661467pt;}
.y13c{bottom:362.047333pt;}
.yb{bottom:362.706666pt;}
.y172{bottom:365.997600pt;}
.y43{bottom:372.661333pt;}
.y74{bottom:372.661467pt;}
.y13b{bottom:374.047333pt;}
.y171{bottom:377.997600pt;}
.y57{bottom:382.466267pt;}
.y13a{bottom:386.047333pt;}
.y42{bottom:388.661333pt;}
.y73{bottom:388.661467pt;}
.y170{bottom:389.997600pt;}
.y139{bottom:398.047333pt;}
.y56{bottom:401.132933pt;}
.y16f{bottom:401.997600pt;}
.y41{bottom:404.661333pt;}
.y72{bottom:404.661467pt;}
.y138{bottom:410.047333pt;}
.y16e{bottom:413.997600pt;}
.ya2{bottom:420.661333pt;}
.y8c{bottom:420.661467pt;}
.y137{bottom:422.047333pt;}
.y16d{bottom:425.997600pt;}
.y136{bottom:434.047333pt;}
.y40{bottom:436.661333pt;}
.y71{bottom:436.661467pt;}
.y16c{bottom:437.997600pt;}
.y135{bottom:446.047333pt;}
.ya{bottom:446.990669pt;}
.y16b{bottom:449.997600pt;}
.y3f{bottom:452.661333pt;}
.y70{bottom:452.661467pt;}
.y134{bottom:458.047333pt;}
.y16a{bottom:461.997600pt;}
.y9{bottom:462.990669pt;}
.y29{bottom:467.687867pt;}
.y3e{bottom:468.661333pt;}
.y8b{bottom:468.661467pt;}
.y133{bottom:470.047333pt;}
.y169{bottom:473.997600pt;}
.y8{bottom:478.990666pt;}
.y28{bottom:479.687867pt;}
.y132{bottom:482.047333pt;}
.y3d{bottom:484.661333pt;}
.y6f{bottom:484.661467pt;}
.y168{bottom:485.997600pt;}
.y131{bottom:494.047333pt;}
.y7{bottom:494.990666pt;}
.y167{bottom:497.997600pt;}
.y27{bottom:498.302000pt;}
.y3c{bottom:500.661333pt;}
.y6e{bottom:500.661467pt;}
.y130{bottom:506.047333pt;}
.y166{bottom:509.997600pt;}
.y26{bottom:510.302000pt;}
.y3b{bottom:516.661333pt;}
.y6d{bottom:516.661467pt;}
.y12f{bottom:518.047333pt;}
.y165{bottom:521.997600pt;}
.y25{bottom:522.302000pt;}
.yde{bottom:524.055333pt;}
.y12e{bottom:530.047333pt;}
.yb4{bottom:531.110400pt;}
.y3a{bottom:532.661333pt;}
.y6c{bottom:532.661467pt;}
.y164{bottom:533.997600pt;}
.ydd{bottom:536.055333pt;}
.y103{bottom:538.154933pt;}
.y163{bottom:545.997600pt;}
.y39{bottom:548.661333pt;}
.y6b{bottom:548.661467pt;}
.yb3{bottom:550.669467pt;}
.ydc{bottom:555.614400pt;}
.y102{bottom:557.714000pt;}
.y162{bottom:557.997600pt;}
.yb2{bottom:562.669467pt;}
.y38{bottom:564.661333pt;}
.y6a{bottom:564.661467pt;}
.ydb{bottom:567.614400pt;}
.y101{bottom:569.714000pt;}
.y161{bottom:569.997600pt;}
.y12d{bottom:571.383333pt;}
.yb1{bottom:574.669467pt;}
.yda{bottom:579.614400pt;}
.y37{bottom:580.661333pt;}
.y69{bottom:580.661467pt;}
.y100{bottom:581.714000pt;}
.y160{bottom:581.997600pt;}
.yb0{bottom:589.749467pt;}
.y12c{bottom:590.942400pt;}
.yd9{bottom:591.614400pt;}
.y15f{bottom:593.997600pt;}
.y36{bottom:596.661333pt;}
.y8a{bottom:596.661467pt;}
.y117{bottom:598.432000pt;}
.y104{bottom:602.252400pt;}
.yd8{bottom:603.614400pt;}
.y15e{bottom:605.997600pt;}
.yd5{bottom:609.615067pt;}
.y12b{bottom:612.268000pt;}
.y35{bottom:612.661467pt;}
.yd3{bottom:613.394667pt;}
.yd7{bottom:615.614400pt;}
.y15d{bottom:617.997600pt;}
.y105{bottom:618.221067pt;}
.y12a{bottom:624.268000pt;}
.yd4{bottom:624.862533pt;}
.yd2{bottom:625.394667pt;}
.yd6{bottom:627.614400pt;}
.y89{bottom:628.661467pt;}
.y15c{bottom:629.997600pt;}
.y115{bottom:633.482349pt;}
.y68{bottom:637.651067pt;}
.y15b{bottom:641.997600pt;}
.y129{bottom:642.270533pt;}
.yd1{bottom:643.397200pt;}
.y88{bottom:644.661467pt;}
.y6{bottom:645.598667pt;}
.ye7{bottom:646.900400pt;}
.yf6{bottom:648.936000pt;}
.y114{bottom:649.372871pt;}
.y15a{bottom:653.997600pt;}
.y128{bottom:654.270533pt;}
.yd0{bottom:655.397200pt;}
.y67{bottom:657.210133pt;}
.ye6{bottom:658.900400pt;}
.y87{bottom:660.661467pt;}
.ycf{bottom:663.617600pt;}
.y113{bottom:665.254531pt;}
.y159{bottom:665.997600pt;}
.yf5{bottom:666.938533pt;}
.ycd{bottom:667.397200pt;}
.y3{bottom:668.977329pt;}
.y66{bottom:669.210133pt;}
.y127{bottom:672.668000pt;}
.y86{bottom:676.661467pt;}
.y158{bottom:677.997600pt;}
.ye5{bottom:678.459467pt;}
.yce{bottom:678.865067pt;}
.yf4{bottom:678.938533pt;}
.ycc{bottom:679.397200pt;}
.y112{bottom:681.136191pt;}
.y65{bottom:681.210133pt;}
.y34{bottom:685.648400pt;}
.y157{bottom:689.997600pt;}
.ye4{bottom:690.459467pt;}
.y126{bottom:690.670533pt;}
.y85{bottom:692.661467pt;}
.y111{bottom:694.492029pt;}
.yf3{bottom:696.940933pt;}
.ycb{bottom:697.399600pt;}
.y96{bottom:700.015467pt;}
.y156{bottom:701.997600pt;}
.ye3{bottom:702.459467pt;}
.y116{bottom:702.725322pt;}
.y33{bottom:704.315067pt;}
.y84{bottom:708.661467pt;}
.y125{bottom:708.673067pt;}
.yca{bottom:709.399600pt;}
.y110{bottom:712.917235pt;}
.y155{bottom:713.997600pt;}
.ye2{bottom:714.459467pt;}
.yf2{bottom:714.943467pt;}
.yc9{bottom:717.620000pt;}
.y8d{bottom:718.215467pt;}
.y97{bottom:718.560800pt;}
.y124{bottom:720.673067pt;}
.yc7{bottom:721.399600pt;}
.y32{bottom:722.981733pt;}
.y83{bottom:724.661467pt;}
.y154{bottom:725.997600pt;}
.ye1{bottom:726.459467pt;}
.ya0{bottom:727.300800pt;}
.y10f{bottom:728.798895pt;}
.yc8{bottom:732.867467pt;}
.yf1{bottom:732.946000pt;}
.yc6{bottom:733.399600pt;}
.y8e{bottom:736.060800pt;}
.y98{bottom:736.396800pt;}
.y153{bottom:737.997600pt;}
.ye0{bottom:738.459467pt;}
.y123{bottom:738.675600pt;}
.y82{bottom:740.661467pt;}
.y31{bottom:741.648400pt;}
.y10e{bottom:744.680555pt;}
.y152{bottom:749.997600pt;}
.ydf{bottom:750.459467pt;}
.y122{bottom:750.675600pt;}
.yf0{bottom:750.948533pt;}
.yc5{bottom:751.402133pt;}
.y8f{bottom:753.906133pt;}
.y99{bottom:754.232800pt;}
.y81{bottom:756.661467pt;}
.yc4{bottom:759.622533pt;}
.y30{bottom:760.315067pt;}
.y10d{bottom:760.571077pt;}
.y151{bottom:761.997600pt;}
.y121{bottom:762.675600pt;}
.yc2{bottom:763.402133pt;}
.yef{bottom:768.950933pt;}
.y90{bottom:771.751467pt;}
.yfe{bottom:771.843600pt;}
.y9a{bottom:772.078133pt;}
.y80{bottom:772.661467pt;}
.y150{bottom:773.997600pt;}
.yc3{bottom:774.870000pt;}
.yc1{bottom:775.402133pt;}
.y10c{bottom:776.461599pt;}
.y2f{bottom:778.981733pt;}
.y120{bottom:780.678000pt;}
.y2{bottom:781.661334pt;}
.y14f{bottom:785.997600pt;}
.yee{bottom:786.953467pt;}
.y7f{bottom:788.661467pt;}
.y91{bottom:789.596800pt;}
.yfd{bottom:789.846133pt;}
.y9b{bottom:789.923467pt;}
.y10b{bottom:792.343259pt;}
.yc0{bottom:793.404533pt;}
.ybe{bottom:797.184133pt;}
.y2e{bottom:797.648400pt;}
.y14e{bottom:797.997600pt;}
.y11f{bottom:798.680533pt;}
.yed{bottom:798.953467pt;}
.y7e{bottom:804.661467pt;}
.y9c{bottom:806.835467pt;}
.y92{bottom:807.442133pt;}
.yfc{bottom:807.848533pt;}
.y10a{bottom:808.224919pt;}
.ybf{bottom:808.652000pt;}
.ybd{bottom:809.184133pt;}
.y14d{bottom:809.997600pt;}
.y11e{bottom:810.680533pt;}
.y2d{bottom:816.315067pt;}
.yec{bottom:816.955867pt;}
.y7d{bottom:820.661467pt;}
.y14c{bottom:821.997600pt;}
.y109{bottom:824.115441pt;}
.y93{bottom:825.278133pt;}
.y9d{bottom:825.595467pt;}
.yfb{bottom:825.851067pt;}
.ybc{bottom:827.186533pt;}
.y11d{bottom:828.682933pt;}
.yba{bottom:830.966000pt;}
.y14b{bottom:833.997600pt;}
.yeb{bottom:834.958400pt;}
.y7c{bottom:836.661467pt;}
.y108{bottom:839.997101pt;}
.y11c{bottom:840.682933pt;}
.ybb{bottom:842.434000pt;}
.yb9{bottom:842.966000pt;}
.y94{bottom:843.123467pt;}
.y9e{bottom:843.450133pt;}
.yfa{bottom:843.853467pt;}
.y14a{bottom:845.997600pt;}
.y7b{bottom:852.661467pt;}
.yea{bottom:852.960800pt;}
.y2c{bottom:855.769067pt;}
.y107{bottom:855.878761pt;}
.y149{bottom:857.997600pt;}
.y11b{bottom:858.685467pt;}
.y1{bottom:859.312000pt;}
.yb5{bottom:860.968533pt;}
.y95{bottom:860.968800pt;}
.y9f{bottom:861.286133pt;}
.yf9{bottom:861.856000pt;}
.ye9{bottom:864.960800pt;}
.y7a{bottom:868.661467pt;}
.y148{bottom:869.997600pt;}
.y106{bottom:871.760420pt;}
.yb8{bottom:872.968533pt;}
.y11a{bottom:876.687867pt;}
.yf8{bottom:879.858533pt;}
.ya1{bottom:881.177733pt;}
.y147{bottom:881.997600pt;}
.ye8{bottom:882.963333pt;}
.yff{bottom:884.661467pt;}
.yb7{bottom:884.968533pt;}
.y2b{bottom:890.435733pt;}
.y146{bottom:893.997600pt;}
.y119{bottom:894.690400pt;}
.yb6{bottom:896.968533pt;}
.yf7{bottom:897.861067pt;}
.y64{bottom:900.661467pt;}
.y145{bottom:905.997600pt;}
.y63{bottom:916.661467pt;}
.y144{bottom:917.997600pt;}
.y143{bottom:929.997600pt;}
.y2a{bottom:932.661467pt;}
.y142{bottom:941.997600pt;}
.y23{bottom:976.210000pt;}
.y24{bottom:992.672000pt;}
.y22{bottom:1016.692933pt;}
.h18{height:21.168000pt;}
.h1b{height:25.914047pt;}
.h1d{height:27.216000pt;}
.h16{height:27.290667pt;}
.h17{height:27.328000pt;}
.h8{height:28.560000pt;}
.h1e{height:31.189333pt;}
.hf{height:33.488000pt;}
.h9{height:33.749333pt;}
.h15{height:35.088000pt;}
.h19{height:35.616000pt;}
.h1a{height:35.616533pt;}
.hd{height:38.986667pt;}
.h3{height:42.840000pt;}
.h12{height:42.885333pt;}
.h13{height:43.056000pt;}
.hc{height:43.248000pt;}
.h14{height:43.440000pt;}
.he{height:48.053333pt;}
.h7{height:48.213333pt;}
.h6{height:50.624000pt;}
.h10{height:52.858667pt;}
.h2{height:57.856000pt;}
.h5{height:81.962667pt;}
.h11{height:85.770667pt;}
.h4{height:105.826671pt;}
.h1c{height:294.701333pt;}
.hb{height:1046.666667pt;}
.ha{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:309.228000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.xd{left:56.692933pt;}
.xc{left:59.811067pt;}
.x1c{left:67.493067pt;}
.x1a{left:74.335067pt;}
.x1b{left:86.011067pt;}
.x9{left:86.929067pt;}
.x38{left:88.854078pt;}
.x1{left:90.706667pt;}
.x3f{left:92.077467pt;}
.x2{left:94.486667pt;}
.x34{left:101.120667pt;}
.xa{left:102.047200pt;}
.x36{left:109.133877pt;}
.x37{left:112.484771pt;}
.x3e{left:116.597650pt;}
.x3c{left:120.251502pt;}
.x30{left:123.062133pt;}
.x2f{left:125.312533pt;}
.x3d{left:132.681945pt;}
.x3a{left:135.399382pt;}
.x2d{left:136.616800pt;}
.x19{left:138.324400pt;}
.x39{left:141.504437pt;}
.x1d{left:142.608267pt;}
.x31{left:144.754800pt;}
.x3b{left:150.207583pt;}
.x1e{left:155.673333pt;}
.x1f{left:158.578800pt;}
.x20{left:159.784533pt;}
.x21{left:162.915733pt;}
.x35{left:178.621333pt;}
.x4{left:180.874667pt;}
.x26{left:189.845467pt;}
.x15{left:191.169733pt;}
.x13{left:192.168400pt;}
.x2c{left:197.474533pt;}
.x2e{left:208.678000pt;}
.x14{left:211.236400pt;}
.x22{left:243.888267pt;}
.x23{left:247.176400pt;}
.x18{left:252.303067pt;}
.x16{left:253.357733pt;}
.x12{left:269.840400pt;}
.x10{left:271.268400pt;}
.x17{left:279.491067pt;}
.x24{left:302.940933pt;}
.x11{left:310.384400pt;}
.x27{left:340.017600pt;}
.x2b{left:340.942133pt;}
.x2a{left:343.306267pt;}
.x40{left:385.511733pt;}
.xf{left:396.850400pt;}
.x32{left:398.734400pt;}
.x3{left:404.408000pt;}
.xb{left:427.086533pt;}
.x41{left:442.204667pt;}
.x33{left:455.433067pt;}
.x28{left:471.684933pt;}
.xe{left:531.970667pt;}
.x8{left:568.621467pt;}
.x5{left:593.777467pt;}
.x7{left:663.941333pt;}
.x25{left:673.424133pt;}
.x29{left:684.749467pt;}
}




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