
    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_06b4fa7788f3fe84969a1f4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f2bcbcdec80a30b0d4cea7ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_a62690fb53f3cc07741251a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_7c6540140c1663241cb62f24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;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_e01e99246196485e93e339c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_f05416077f0f6970ff7e3694.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.669434;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_a8067d69f8db7b144a55df38.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_e017d1f272623ba57427203a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_46f6513eff525f6b49059710.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_845583aed3879653bce4b204.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_00840263d03c3872d3f6b540.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_e3e076225ee2eae208c1bf02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_bbf495736fa063c242acaa94.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.669434;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_1b882cad706c6d168eff8f16.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_ad41cf26ae490c16d4dab01a.woff2')format("woff");}.fff{font-family:fff;line-height:0.675781;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_9abf2857026084b53306f996.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_afac443ac19f29f23471a3a7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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_9877c49064bbc0c746257782.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677734;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_733429cb0f32244e8221f5a0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_eb7a1bf9e92e39225a64c9b8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_4b4f2b9ba45fe514d294eb5c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.669434;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_3ffd508a2f54f27f2e91e492.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.675781;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_e8033e010e633d0a89e601e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.669434;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_e8655d1781f1119aa442879f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.675781;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.012281px;}
.lsf{letter-spacing:0.024000px;}
.lse{letter-spacing:0.030000px;}
.ls7{letter-spacing:16.128125px;}
.lsa{letter-spacing:16.160376px;}
.ls5{letter-spacing:16.189752px;}
.ls6{letter-spacing:16.249290px;}
.lsc{letter-spacing:16.275656px;}
.lsd{letter-spacing:20.646145px;}
.ls8{letter-spacing:29.562353px;}
.ls3{letter-spacing:29.772973px;}
.ls4{letter-spacing:29.776500px;}
.ls9{letter-spacing:106.078122px;}
.lsb{letter-spacing:115.061864px;}
.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;}
}
.ws0{word-spacing:-39.718093px;}
.wsb{word-spacing:-35.520165px;}
.wsc{word-spacing:-30.445312px;}
.ws1c{word-spacing:-30.269532px;}
.wsb2{word-spacing:-25.370459px;}
.wsf{word-spacing:-16.895100px;}
.ws6{word-spacing:-16.603601px;}
.ws2{word-spacing:-16.599163px;}
.ws8{word-spacing:-16.598995px;}
.ws1{word-spacing:-16.596811px;}
.ws25{word-spacing:-16.572955px;}
.ws3{word-spacing:-16.572619px;}
.ws11{word-spacing:-16.571100px;}
.wsd{word-spacing:-16.516048px;}
.ws4{word-spacing:-16.434304px;}
.ws5{word-spacing:-16.395762px;}
.ws7{word-spacing:-16.357458px;}
.ws1b{word-spacing:-16.052944px;}
.ws15{word-spacing:-15.853764px;}
.ws13{word-spacing:-15.075732px;}
.ws17{word-spacing:-14.807532px;}
.wsce{word-spacing:-14.390492px;}
.ws107{word-spacing:-14.331478px;}
.wsa8{word-spacing:-14.319112px;}
.ws82{word-spacing:-14.285848px;}
.ws1a{word-spacing:-14.281312px;}
.wsb5{word-spacing:-14.273680px;}
.ws18{word-spacing:-14.254744px;}
.ws59{word-spacing:-14.244880px;}
.ws136{word-spacing:-14.235880px;}
.ws63{word-spacing:-14.224144px;}
.ws74{word-spacing:-14.221480px;}
.ws6b{word-spacing:-14.207080px;}
.ws56{word-spacing:-14.197144px;}
.ws14{word-spacing:-14.196712px;}
.ws26{word-spacing:-14.193544px;}
.wsdc{word-spacing:-14.192680px;}
.wsff{word-spacing:-14.191312px;}
.ws8e{word-spacing:-14.178712px;}
.ws19{word-spacing:-14.173312px;}
.wsa0{word-spacing:-14.164744px;}
.ws109{word-spacing:-14.132245px;}
.ws10b{word-spacing:-14.109888px;}
.ws3a{word-spacing:-14.071332px;}
.wsfc{word-spacing:-14.066364px;}
.ws81{word-spacing:-14.062764px;}
.ws104{word-spacing:-14.057144px;}
.ws10c{word-spacing:-14.051964px;}
.wsc5{word-spacing:-14.051100px;}
.wsa5{word-spacing:-14.050164px;}
.wsc2{word-spacing:-14.049732px;}
.ws62{word-spacing:-14.042100px;}
.ws30{word-spacing:-14.041915px;}
.ws2f{word-spacing:-14.036268px;}
.ws31{word-spacing:-14.035764px;}
.ws8a{word-spacing:-14.034900px;}
.ws102{word-spacing:-14.030868px;}
.wsd7{word-spacing:-14.030364px;}
.ws73{word-spacing:-14.028132px;}
.ws46{word-spacing:-14.027700px;}
.ws75{word-spacing:-14.027268px;}
.ws70{word-spacing:-14.025900px;}
.wsf0{word-spacing:-14.025468px;}
.ws3b{word-spacing:-14.024100px;}
.ws41{word-spacing:-14.023668px;}
.ws39{word-spacing:-14.021214px;}
.wsfe{word-spacing:-14.018700px;}
.ws2e{word-spacing:-14.018268px;}
.ws10a{word-spacing:-14.016900px;}
.ws7b{word-spacing:-14.015964px;}
.ws65{word-spacing:-14.015532px;}
.ws10{word-spacing:-14.014164px;}
.wscd{word-spacing:-14.013732px;}
.wsb6{word-spacing:-14.011932px;}
.ws106{word-spacing:-14.006964px;}
.ws51{word-spacing:-14.005164px;}
.ws103{word-spacing:-14.003364px;}
.ws8d{word-spacing:-14.002500px;}
.ws7d{word-spacing:-13.999332px;}
.wsc0{word-spacing:-13.997964px;}
.wse{word-spacing:-13.996164px;}
.ws12{word-spacing:-13.995732px;}
.ws67{word-spacing:-13.993500px;}
.ws112{word-spacing:-13.993033px;}
.ws76{word-spacing:-13.992132px;}
.ws118{word-spacing:-13.991908px;}
.ws44{word-spacing:-13.991700px;}
.ws7c{word-spacing:-13.988532px;}
.ws71{word-spacing:-13.984068px;}
.ws10d{word-spacing:-13.983564px;}
.wsf1{word-spacing:-13.980900px;}
.ws48{word-spacing:-13.979964px;}
.ws61{word-spacing:-13.970532px;}
.wsf3{word-spacing:-13.968732px;}
.ws91{word-spacing:-13.967868px;}
.ws3e{word-spacing:-13.967364px;}
.ws105{word-spacing:-13.966068px;}
.ws87{word-spacing:-13.963764px;}
.wsa4{word-spacing:-13.963332px;}
.ws128{word-spacing:-13.960596px;}
.ws101{word-spacing:-13.960164px;}
.wsbd{word-spacing:-13.959732px;}
.ws119{word-spacing:-13.956564px;}
.ws9e{word-spacing:-13.956132px;}
.ws16{word-spacing:-13.952100px;}
.ws121{word-spacing:-13.948932px;}
.ws42{word-spacing:-13.942968px;}
.wsc1{word-spacing:-13.940364px;}
.wsb4{word-spacing:-13.928268px;}
.wscf{word-spacing:-13.923732px;}
.wsf6{word-spacing:-13.914300px;}
.ws32{word-spacing:-13.913868px;}
.wsf9{word-spacing:-13.817964px;}
.wsb7{word-spacing:-11.848417px;}
.ws9{word-spacing:-11.847937px;}
.wsb3{word-spacing:-11.846497px;}
.wsad{word-spacing:-11.843917px;}
.wsae{word-spacing:-11.841218px;}
.wsb8{word-spacing:-11.703257px;}
.wsb0{word-spacing:-11.686637px;}
.wsb1{word-spacing:-11.676258px;}
.wsaf{word-spacing:-11.675838px;}
.wsa{word-spacing:-11.653758px;}
.wse5{word-spacing:-9.692680px;}
.ws120{word-spacing:-9.587574px;}
.ws84{word-spacing:-9.542100px;}
.wsdb{word-spacing:-9.539364px;}
.ws66{word-spacing:-9.536196px;}
.ws2d{word-spacing:-9.535764px;}
.ws80{word-spacing:-9.527700px;}
.ws3f{word-spacing:-9.527268px;}
.ws100{word-spacing:-9.525900px;}
.ws3c{word-spacing:-9.524100px;}
.ws60{word-spacing:-9.523668px;}
.ws36{word-spacing:-9.522300px;}
.wse7{word-spacing:-9.520932px;}
.ws92{word-spacing:-9.520500px;}
.ws7e{word-spacing:-9.518700px;}
.ws49{word-spacing:-9.518268px;}
.wsc7{word-spacing:-9.515964px;}
.wsa9{word-spacing:-9.515532px;}
.wsaa{word-spacing:-9.512364px;}
.wsc8{word-spacing:-9.511932px;}
.ws6f{word-spacing:-9.506100px;}
.wsda{word-spacing:-9.503796px;}
.wsea{word-spacing:-9.501132px;}
.ws113{word-spacing:-9.496668px;}
.ws7f{word-spacing:-9.496164px;}
.ws35{word-spacing:-9.495732px;}
.wsed{word-spacing:-9.493932px;}
.wsa6{word-spacing:-9.492132px;}
.ws37{word-spacing:-9.491700px;}
.wse9{word-spacing:-9.489900px;}
.ws9d{word-spacing:-9.488532px;}
.ws9f{word-spacing:-9.488100px;}
.ws6d{word-spacing:-9.484068px;}
.ws5e{word-spacing:-9.483564px;}
.wsbb{word-spacing:-9.482268px;}
.ws7a{word-spacing:-9.467796px;}
.ws64{word-spacing:-9.467364px;}
.ws12b{word-spacing:-9.466500px;}
.wsf7{word-spacing:-9.464196px;}
.wsd0{word-spacing:-9.458796px;}
.wse2{word-spacing:-9.456564px;}
.ws110{word-spacing:-9.456186px;}
.wsa2{word-spacing:-9.456132px;}
.wse8{word-spacing:-9.444900px;}
.ws28{word-spacing:-9.443964px;}
.wsa7{word-spacing:-9.439500px;}
.ws90{word-spacing:-9.435900px;}
.ws5a{word-spacing:-9.430932px;}
.ws12c{word-spacing:-9.419268px;}
.wsac{word-spacing:-5.273680px;}
.wscb{word-spacing:-5.231108px;}
.wsc6{word-spacing:-5.192680px;}
.wseb{word-spacing:-5.139977px;}
.ws47{word-spacing:-5.065932px;}
.ws88{word-spacing:-5.062764px;}
.ws9a{word-spacing:-5.059164px;}
.wsfb{word-spacing:-5.036196px;}
.ws4d{word-spacing:-5.035764px;}
.wsba{word-spacing:-5.027700px;}
.wsd9{word-spacing:-5.027268px;}
.ws4c{word-spacing:-5.025900px;}
.ws40{word-spacing:-5.024100px;}
.wsfa{word-spacing:-5.018700px;}
.ws58{word-spacing:-5.018268px;}
.ws4a{word-spacing:-5.015964px;}
.ws2b{word-spacing:-5.015532px;}
.ws10f{word-spacing:-5.014464px;}
.wsbe{word-spacing:-5.003796px;}
.wsc3{word-spacing:-4.997532px;}
.ws6c{word-spacing:-4.996164px;}
.ws29{word-spacing:-4.995732px;}
.wsd6{word-spacing:-4.993932px;}
.ws8c{word-spacing:-4.991700px;}
.ws53{word-spacing:-4.988532px;}
.wscc{word-spacing:-4.982268px;}
.ws9c{word-spacing:-4.967796px;}
.ws3d{word-spacing:-4.967364px;}
.wsee{word-spacing:-4.962468px;}
.ws9b{word-spacing:-4.956564px;}
.ws96{word-spacing:-4.956132px;}
.wsd5{word-spacing:-4.954764px;}
.wsec{word-spacing:-4.945332px;}
.ws98{word-spacing:-4.935900px;}
.wsca{word-spacing:-0.692680px;}
.ws122{word-spacing:-0.648497px;}
.ws21{word-spacing:-0.564000px;}
.wsc4{word-spacing:-0.562764px;}
.ws57{word-spacing:-0.562332px;}
.ws5d{word-spacing:-0.561468px;}
.wsd4{word-spacing:-0.559164px;}
.ws116{word-spacing:-0.553715px;}
.ws6e{word-spacing:-0.532668px;}
.ws68{word-spacing:-0.527268px;}
.ws79{word-spacing:-0.524100px;}
.ws34{word-spacing:-0.523668px;}
.wsf8{word-spacing:-0.518700px;}
.wsa1{word-spacing:-0.518268px;}
.wse6{word-spacing:-0.515532px;}
.ws111{word-spacing:-0.514164px;}
.wsef{word-spacing:-0.513732px;}
.wsd8{word-spacing:-0.503796px;}
.ws4e{word-spacing:-0.495732px;}
.ws38{word-spacing:-0.492132px;}
.ws2a{word-spacing:-0.491700px;}
.wsd3{word-spacing:-0.488532px;}
.ws123{word-spacing:-0.480468px;}
.ws78{word-spacing:-0.467796px;}
.ws4f{word-spacing:-0.467364px;}
.ws8b{word-spacing:-0.463332px;}
.ws5b{word-spacing:-0.459300px;}
.ws50{word-spacing:-0.456564px;}
.wsb9{word-spacing:-0.448500px;}
.ws77{word-spacing:-0.435900px;}
.ws8f{word-spacing:-0.435468px;}
.wsde{word-spacing:-0.423732px;}
.ws117{word-spacing:-0.419268px;}
.wsc9{word-spacing:-0.418764px;}
.ws138{word-spacing:-0.108000px;}
.ws137{word-spacing:-0.066000px;}
.ws131{word-spacing:-0.060000px;}
.ws132{word-spacing:-0.054000px;}
.ws12f{word-spacing:-0.030000px;}
.ws133{word-spacing:-0.024000px;}
.ws130{word-spacing:-0.006000px;}
.ws1d{word-spacing:0.000000px;}
.ws135{word-spacing:0.006000px;}
.ws134{word-spacing:0.012000px;}
.ws20{word-spacing:0.072000px;}
.ws1f{word-spacing:0.078000px;}
.ws23{word-spacing:0.276000px;}
.ws1e{word-spacing:0.378000px;}
.ws22{word-spacing:0.402000px;}
.ws24{word-spacing:2.118000px;}
.wsdd{word-spacing:3.807320px;}
.ws12d{word-spacing:3.873010px;}
.ws11c{word-spacing:3.972732px;}
.ws55{word-spacing:3.975900px;}
.ws2c{word-spacing:3.981300px;}
.wsfd{word-spacing:3.981732px;}
.ws45{word-spacing:3.984036px;}
.ws11b{word-spacing:3.986268px;}
.ws52{word-spacing:4.003836px;}
.wsf5{word-spacing:4.004268px;}
.ws43{word-spacing:4.009668px;}
.wsd2{word-spacing:4.011468px;}
.wsa3{word-spacing:4.030404px;}
.ws4b{word-spacing:4.032204px;}
.wsdf{word-spacing:4.032636px;}
.ws12e{word-spacing:4.033932px;}
.wsab{word-spacing:4.051500px;}
.ws11a{word-spacing:8.304525px;}
.ws89{word-spacing:8.446236px;}
.ws54{word-spacing:8.464236px;}
.ws97{word-spacing:8.472804px;}
.ws85{word-spacing:8.481732px;}
.ws94{word-spacing:8.484468px;}
.wsf2{word-spacing:8.497500px;}
.ws93{word-spacing:8.504268px;}
.wsbc{word-spacing:8.511468px;}
.ws69{word-spacing:8.532636px;}
.ws99{word-spacing:8.560932px;}
.wse0{word-spacing:8.576268px;}
.wse1{word-spacing:12.941700px;}
.ws83{word-spacing:12.975900px;}
.ws6a{word-spacing:12.981732px;}
.ws27{word-spacing:13.004268px;}
.wsd1{word-spacing:13.045236px;}
.ws126{word-spacing:17.274894px;}
.ws125{word-spacing:17.347662px;}
.ws5c{word-spacing:17.437236px;}
.ws72{word-spacing:17.496132px;}
.wse4{word-spacing:17.504268px;}
.ws127{word-spacing:17.556900px;}
.wse3{word-spacing:21.807320px;}
.wsf4{word-spacing:21.826688px;}
.ws5f{word-spacing:22.008300px;}
.ws86{word-spacing:26.474100px;}
.ws33{word-spacing:26.511900px;}
.wsbf{word-spacing:26.532636px;}
.ws115{word-spacing:30.981300px;}
.ws95{word-spacing:35.440836px;}
.ws10e{word-spacing:49.004268px;}
.ws11f{word-spacing:71.493036px;}
.ws11d{word-spacing:75.929005px;}
.ws11e{word-spacing:76.024068px;}
.ws12a{word-spacing:84.985836px;}
.ws129{word-spacing:89.470346px;}
.ws108{word-spacing:710.506125px;}
.ws124{word-spacing:836.506686px;}
.ws114{word-spacing:859.006125px;}
._3{margin-left:-7.102999px;}
._13{margin-left:-6.011081px;}
._0{margin-left:-4.676868px;}
._2{margin-left:-2.926444px;}
._1{margin-left:-1.043551px;}
._1f{width:1.046592px;}
._4{width:2.068687px;}
._6{width:4.114549px;}
._7{width:8.682716px;}
._1b{width:15.271111px;}
._5{width:16.272000px;}
._19{width:17.284334px;}
._10{width:19.809829px;}
._f{width:20.821032px;}
._18{width:21.847591px;}
._9{width:24.485023px;}
._a{width:26.122409px;}
._b{width:29.058768px;}
._c{width:30.500568px;}
._1a{width:31.704594px;}
._17{width:33.300521px;}
._d{width:34.338583px;}
._1e{width:35.340576px;}
._e{width:38.177568px;}
._12{width:39.564000px;}
._1c{width:43.345800px;}
._1d{width:46.823455px;}
._8{width:47.833200px;}
._15{width:52.272000px;}
._14{width:53.352000px;}
._16{width:56.544319px;}
._11{width:60.864319px;}
._21{width:83.147887px;}
._22{width:84.470723px;}
._24{width:119.292395px;}
._20{width:744.821998px;}
._23{width:893.778749px;}
.fc2{color:rgb(11,87,208);}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(6,6,6);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.998500px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.001500px;}
.y0{bottom:0.000000px;}
.y2{bottom:10.781850px;}
.yf9{bottom:20.780250px;}
.y108{bottom:20.780400px;}
.yfb{bottom:20.780850px;}
.yfe{bottom:20.781000px;}
.yf7{bottom:20.781150px;}
.y10d{bottom:20.781600px;}
.y100{bottom:20.781750px;}
.y62{bottom:27.630750px;}
.y12d{bottom:27.631875px;}
.yc{bottom:27.632250px;}
.y103{bottom:48.246600px;}
.y1c4{bottom:51.597000px;}
.y61{bottom:51.600000px;}
.yb{bottom:51.601500px;}
.y102{bottom:75.712350px;}
.y191{bottom:112.510650px;}
.y143{bottom:114.805650px;}
.y7e{bottom:115.467150px;}
.y178{bottom:121.324350px;}
.y12c{bottom:122.450100px;}
.y44{bottom:125.396625px;}
.y1a0{bottom:127.510275px;}
.ycb{bottom:130.469550px;}
.yaf{bottom:142.511025px;}
.ye1{bottom:142.511550px;}
.y190{bottom:145.469775px;}
.y11a{bottom:147.030150px;}
.y43{bottom:147.369000px;}
.y142{bottom:147.764775px;}
.y7d{bottom:148.426275px;}
.yfa{bottom:149.035500px;}
.y177{bottom:154.283475px;}
.y12b{bottom:155.409225px;}
.y19f{bottom:160.469400px;}
.y1be{bottom:163.425900px;}
.yca{bottom:163.428675px;}
.y42{bottom:169.341375px;}
.y13d{bottom:173.368350px;}
.yae{bottom:175.470150px;}
.ye0{bottom:175.470675px;}
.ya4{bottom:178.428900px;}
.y5f{bottom:178.429725px;}
.y141{bottom:180.723900px;}
.y1b3{bottom:181.387650px;}
.y176{bottom:187.242600px;}
.y12a{bottom:188.368350px;}
.y41{bottom:191.313750px;}
.yf8{bottom:193.377000px;}
.y18f{bottom:193.428525px;}
.y1bd{bottom:196.385025px;}
.y7c{bottom:196.386150px;}
.yc9{bottom:196.387800px;}
.y13c{bottom:206.327475px;}
.y97{bottom:208.429275px;}
.ydf{bottom:208.429800px;}
.ya3{bottom:211.388025px;}
.y5e{bottom:211.388850px;}
.y40{bottom:213.286125px;}
.y1b2{bottom:214.346775px;}
.y175{bottom:220.201725px;}
.y15c{bottom:220.202100px;}
.y129{bottom:221.327475px;}
.y18e{bottom:226.387650px;}
.y140{bottom:228.681525px;}
.y1bc{bottom:229.344150px;}
.yc8{bottom:229.346925px;}
.y9{bottom:234.802425px;}
.y114{bottom:235.185825px;}
.y3f{bottom:235.258500px;}
.y13b{bottom:239.286600px;}
.y96{bottom:241.388400px;}
.yde{bottom:241.388925px;}
.yf6{bottom:243.210000px;}
.y7b{bottom:244.344900px;}
.ya2{bottom:244.347150px;}
.y5d{bottom:244.347975px;}
.y1b1{bottom:247.305900px;}
.y15b{bottom:253.161225px;}
.y128{bottom:254.286600px;}
.y3e{bottom:257.230875px;}
.y18d{bottom:259.346775px;}
.y13f{bottom:261.640650px;}
.y1bb{bottom:262.303275px;}
.yc7{bottom:262.306050px;}
.y113{bottom:268.144950px;}
.y174{bottom:268.158225px;}
.y13a{bottom:272.245725px;}
.y95{bottom:274.347525px;}
.ydd{bottom:274.348050px;}
.y7a{bottom:277.304025px;}
.ya1{bottom:277.306275px;}
.y3d{bottom:279.203250px;}
.y1b0{bottom:280.265025px;}
.y22{bottom:285.273000px;}
.y15a{bottom:286.120350px;}
.y127{bottom:287.245725px;}
.y18c{bottom:292.305900px;}
.y5c{bottom:292.306725px;}
.ye7{bottom:293.369025px;}
.yc6{bottom:295.265175px;}
.y112{bottom:301.104075px;}
.y173{bottom:301.117350px;}
.y139{bottom:305.204850px;}
.y94{bottom:307.306650px;}
.y79{bottom:310.263150px;}
.y1ba{bottom:310.265400px;}
.yf5{bottom:318.038100px;}
.y159{bottom:319.079475px;}
.y126{bottom:320.204850px;}
.ydc{bottom:322.306800px;}
.y21{bottom:322.732500px;}
.y14d{bottom:323.702400px;}
.ya0{bottom:325.265025px;}
.ye6{bottom:326.328150px;}
.y3c{bottom:327.162000px;}
.y1af{bottom:328.221525px;}
.yc5{bottom:328.224300px;}
.y111{bottom:334.063200px;}
.y172{bottom:334.076475px;}
.y138{bottom:338.163975px;}
.y19e{bottom:340.262400px;}
.y93{bottom:340.265775px;}
.y5b{bottom:340.266600px;}
.y78{bottom:343.222275px;}
.y1b9{bottom:343.224525px;}
.yf4{bottom:350.997225px;}
.y158{bottom:352.038600px;}
.y125{bottom:353.163975px;}
.ydb{bottom:355.265925px;}
.y14c{bottom:356.661525px;}
.y18b{bottom:358.224150px;}
.ye5{bottom:359.287275px;}
.y20{bottom:360.190500px;}
.y1ae{bottom:361.180650px;}
.y110{bottom:367.022325px;}
.y171{bottom:367.035600px;}
.y137{bottom:371.123100px;}
.y92{bottom:373.224900px;}
.y5a{bottom:373.225725px;}
.y3b{bottom:375.120750px;}
.y77{bottom:376.181400px;}
.yc4{bottom:376.183050px;}
.y1b8{bottom:376.183650px;}
.y8{bottom:377.242050px;}
.y166{bottom:383.872500px;}
.y157{bottom:384.997725px;}
.y124{bottom:386.123100px;}
.yad{bottom:388.224525px;}
.yda{bottom:388.225050px;}
.y18a{bottom:391.183275px;}
.ye4{bottom:392.246400px;}
.y1f{bottom:397.650000px;}
.yf3{bottom:398.955975px;}
.y10f{bottom:399.981450px;}
.y170{bottom:399.994725px;}
.y119{bottom:403.225275px;}
.y136{bottom:404.082225px;}
.y91{bottom:406.184025px;}
.y59{bottom:406.184850px;}
.y3a{bottom:408.079875px;}
.y76{bottom:409.140525px;}
.y1ad{bottom:409.142775px;}
.y165{bottom:416.831625px;}
.y156{bottom:417.956850px;}
.y123{bottom:419.082225px;}
.y19d{bottom:421.183650px;}
.yd9{bottom:421.184175px;}
.y1c7{bottom:422.390700px;}
.y189{bottom:424.142400px;}
.yc3{bottom:424.142925px;}
.y7{bottom:424.721550px;}
.ye3{bottom:425.205525px;}
.yf2{bottom:431.915100px;}
.y16f{bottom:432.953850px;}
.yac{bottom:436.184400px;}
.y135{bottom:437.041350px;}
.y90{bottom:439.143150px;}
.y58{bottom:439.143975px;}
.y1ac{bottom:442.101900px;}
.y39{bottom:445.053000px;}
.y164{bottom:449.790750px;}
.y155{bottom:450.915975px;}
.y122{bottom:452.041350px;}
.yd8{bottom:454.142175px;}
.y19c{bottom:454.142775px;}
.y75{bottom:457.099275px;}
.y1b7{bottom:457.101525px;}
.yc2{bottom:457.102050px;}
.yf1{bottom:464.874225px;}
.y16e{bottom:465.912975px;}
.y10e{bottom:466.537500px;}
.y38{bottom:467.025375px;}
.yab{bottom:469.143525px;}
.y188{bottom:472.098900px;}
.y1e{bottom:472.568250px;}
.ye2{bottom:473.164275px;}
.y1ab{bottom:475.061025px;}
.y163{bottom:482.749875px;}
.y154{bottom:483.875100px;}
.y134{bottom:485.000100px;}
.y121{bottom:485.000475px;}
.yd7{bottom:487.101300px;}
.y8f{bottom:487.101900px;}
.y57{bottom:487.102725px;}
.y37{bottom:488.997750px;}
.y74{bottom:490.058400px;}
.y1b6{bottom:490.060650px;}
.yc1{bottom:490.061175px;}
.yf0{bottom:497.833350px;}
.y16d{bottom:498.872100px;}
.yaa{bottom:502.102650px;}
.y187{bottom:505.058025px;}
.y1aa{bottom:508.020150px;}
.y1d{bottom:510.027375px;}
.y10c{bottom:510.877500px;}
.y36{bottom:510.970125px;}
.y162{bottom:515.709000px;}
.y153{bottom:516.834225px;}
.y133{bottom:517.959225px;}
.y120{bottom:517.959600px;}
.yd6{bottom:520.060425px;}
.y8e{bottom:520.061025px;}
.y56{bottom:520.061850px;}
.y73{bottom:523.017525px;}
.y1b5{bottom:523.019775px;}
.y16c{bottom:531.831225px;}
.y35{bottom:532.942500px;}
.y19b{bottom:535.060650px;}
.ya9{bottom:535.061775px;}
.y186{bottom:538.017150px;}
.yc0{bottom:538.019925px;}
.yef{bottom:545.792100px;}
.y1c{bottom:547.486500px;}
.y161{bottom:548.668125px;}
.y152{bottom:549.793350px;}
.y132{bottom:550.918350px;}
.y11f{bottom:550.918725px;}
.yd5{bottom:553.019550px;}
.y8d{bottom:553.020150px;}
.y55{bottom:553.020975px;}
.y34{bottom:554.914875px;}
.y10b{bottom:555.219000px;}
.y72{bottom:555.976650px;}
.y1a9{bottom:555.978900px;}
.y16b{bottom:564.790350px;}
.y19a{bottom:568.019775px;}
.ya8{bottom:568.020900px;}
.y185{bottom:570.976275px;}
.y33{bottom:576.887250px;}
.yee{bottom:578.751225px;}
.y160{bottom:581.627250px;}
.y151{bottom:582.752475px;}
.y131{bottom:583.877475px;}
.y11e{bottom:583.877850px;}
.y1b{bottom:584.945625px;}
.ybf{bottom:585.978675px;}
.y8c{bottom:585.979275px;}
.y54{bottom:585.980100px;}
.y71{bottom:588.935775px;}
.y1a8{bottom:588.938025px;}
.y16a{bottom:597.749475px;}
.y10a{bottom:599.560500px;}
.y199{bottom:600.978900px;}
.ya7{bottom:600.980025px;}
.y184{bottom:603.935400px;}
.y32{bottom:613.860375px;}
.y15f{bottom:614.586375px;}
.y6{bottom:614.641800px;}
.y150{bottom:615.711600px;}
.y130{bottom:616.836600px;}
.y11d{bottom:616.836975px;}
.yd4{bottom:618.937800px;}
.y8b{bottom:618.938400px;}
.y53{bottom:618.939225px;}
.y70{bottom:621.894900px;}
.y1a{bottom:622.404750px;}
.yed{bottom:626.709975px;}
.y169{bottom:630.708600px;}
.y9f{bottom:633.938025px;}
.ybe{bottom:633.938550px;}
.ya6{bottom:633.939150px;}
.y1a7{bottom:636.894525px;}
.y109{bottom:643.900500px;}
.y5{bottom:644.121300px;}
.y183{bottom:651.897525px;}
.y52{bottom:651.898350px;}
.y6f{bottom:654.854025px;}
.y19{bottom:659.863875px;}
.y31{bottom:661.819125px;}
.y15e{bottom:662.542875px;}
.y14f{bottom:663.669225px;}
.y12f{bottom:664.794225px;}
.y11c{bottom:664.795725px;}
.y8a{bottom:666.897150px;}
.ybd{bottom:666.897675px;}
.y118{bottom:666.898275px;}
.y1a6{bottom:669.853650px;}
.yec{bottom:674.668725px;}
.y168{bottom:678.670725px;}
.ya5{bottom:681.897900px;}
.y182{bottom:684.856650px;}
.y51{bottom:684.857475px;}
.y6e{bottom:687.813150px;}
.y107{bottom:688.242000px;}
.y30{bottom:694.778250px;}
.y15d{bottom:695.502000px;}
.y14e{bottom:696.628350px;}
.y18{bottom:697.323000px;}
.y12e{bottom:697.753350px;}
.y11b{bottom:697.754850px;}
.y9e{bottom:699.856275px;}
.ybc{bottom:699.856800px;}
.y117{bottom:699.857400px;}
.y1a5{bottom:702.812775px;}
.yeb{bottom:707.627850px;}
.y167{bottom:711.629850px;}
.y89{bottom:714.857025px;}
.y181{bottom:717.815775px;}
.y50{bottom:717.816600px;}
.y14b{bottom:729.856650px;}
.y13e{bottom:730.461900px;}
.y2f{bottom:731.751375px;}
.y9d{bottom:732.815400px;}
.yd3{bottom:732.815925px;}
.y116{bottom:732.816525px;}
.y17{bottom:734.782125px;}
.y1a4{bottom:735.771900px;}
.y6d{bottom:735.773025px;}
.yea{bottom:740.586975px;}
.y198{bottom:747.812775px;}
.ybb{bottom:747.815550px;}
.y88{bottom:747.816150px;}
.y180{bottom:750.774900px;}
.y2e{bottom:753.723750px;}
.y14a{bottom:762.815775px;}
.y106{bottom:763.069425px;}
.y9c{bottom:765.774525px;}
.yd2{bottom:765.775050px;}
.y4f{bottom:765.775350px;}
.y115{bottom:765.775650px;}
.y4{bottom:768.560925px;}
.y1a3{bottom:768.731025px;}
.y16{bottom:772.241250px;}
.y2d{bottom:775.696125px;}
.y197{bottom:780.771900px;}
.yba{bottom:780.774675px;}
.y87{bottom:780.775275px;}
.y6c{bottom:783.732900px;}
.y17f{bottom:783.734025px;}
.ye9{bottom:788.545725px;}
.y149{bottom:795.774900px;}
.y2c{bottom:797.668500px;}
.yd1{bottom:798.734175px;}
.y4e{bottom:798.734475px;}
.y15{bottom:809.700375px;}
.y105{bottom:811.028175px;}
.y196{bottom:813.731025px;}
.yb9{bottom:813.733800px;}
.y86{bottom:813.734400px;}
.y6b{bottom:816.692025px;}
.y1a2{bottom:816.693150px;}
.y2b{bottom:819.640875px;}
.ye8{bottom:821.504850px;}
.y148{bottom:828.734025px;}
.y17e{bottom:831.692775px;}
.yd0{bottom:831.693300px;}
.y4d{bottom:831.693600px;}
.y2a{bottom:841.613250px;}
.y104{bottom:843.987300px;}
.y195{bottom:846.690150px;}
.yb8{bottom:846.692925px;}
.y85{bottom:846.693525px;}
.y14{bottom:847.159500px;}
.y6a{bottom:849.651150px;}
.y1a1{bottom:849.652275px;}
.y147{bottom:861.693150px;}
.y3{bottom:863.521050px;}
.y29{bottom:863.585625px;}
.y17d{bottom:864.651900px;}
.y4c{bottom:864.652725px;}
.y194{bottom:879.649275px;}
.yb7{bottom:879.652050px;}
.y84{bottom:879.652650px;}
.y69{bottom:882.610275px;}
.y13{bottom:884.618625px;}
.y28{bottom:885.558000px;}
.y146{bottom:894.652275px;}
.y17c{bottom:897.611025px;}
.y4b{bottom:897.611850px;}
.y27{bottom:907.530375px;}
.y101{bottom:910.543500px;}
.y193{bottom:912.608400px;}
.yb6{bottom:912.611175px;}
.y83{bottom:912.611775px;}
.y12{bottom:922.077750px;}
.y145{bottom:927.611400px;}
.y68{bottom:930.569025px;}
.y17b{bottom:930.570150px;}
.y4a{bottom:930.570975px;}
.y192{bottom:945.567525px;}
.ycf{bottom:945.570300px;}
.y82{bottom:945.570900px;}
.y26{bottom:955.489125px;}
.y11{bottom:959.536875px;}
.yb5{bottom:960.569925px;}
.y144{bottom:960.570525px;}
.y17a{bottom:963.529275px;}
.y49{bottom:963.530100px;}
.y1b4{bottom:978.526650px;}
.y67{bottom:978.528900px;}
.yce{bottom:978.529425px;}
.y9b{bottom:978.530025px;}
.yb4{bottom:993.529050px;}
.y81{bottom:993.529650px;}
.y48{bottom:996.489225px;}
.y10{bottom:996.996000px;}
.y25{bottom:1003.447875px;}
.yff{bottom:1009.815000px;}
.y179{bottom:1011.485775px;}
.y66{bottom:1011.488025px;}
.ycd{bottom:1011.488550px;}
.y9a{bottom:1011.489150px;}
.yb3{bottom:1026.488175px;}
.y80{bottom:1026.488775px;}
.yf{bottom:1034.455125px;}
.y1bf{bottom:1044.444900px;}
.y65{bottom:1044.447150px;}
.ycc{bottom:1044.447675px;}
.y47{bottom:1044.447975px;}
.y99{bottom:1044.448275px;}
.y24{bottom:1051.406625px;}
.yfd{bottom:1054.156500px;}
.yb2{bottom:1059.447300px;}
.y7f{bottom:1059.447900px;}
.ye{bottom:1071.914250px;}
.y98{bottom:1077.407400px;}
.yb1{bottom:1092.406425px;}
.y46{bottom:1092.406725px;}
.y64{bottom:1092.407025px;}
.y23{bottom:1092.974250px;}
.yfc{bottom:1098.498000px;}
.yd{bottom:1122.453750px;}
.yb0{bottom:1125.365550px;}
.y45{bottom:1125.365850px;}
.y1c1{bottom:1125.366000px;}
.y63{bottom:1125.366150px;}
.y1c6{bottom:1125.369000px;}
.ya{bottom:1142.838000px;}
.y60{bottom:1142.839500px;}
.y1c3{bottom:1142.842500px;}
.y1{bottom:1156.701000px;}
.y1c2{bottom:1160.822700px;}
.y1c5{bottom:1170.469500px;}
.y1c0{bottom:1170.471000px;}
.h8{height:43.216500px;}
.hd{height:47.988281px;}
.h5{height:49.481185px;}
.ha{height:51.679688px;}
.h6{height:59.378906px;}
.hb{height:59.379506px;}
.h2{height:61.155389px;}
.h3{height:69.276628px;}
.h9{height:98.148000px;}
.h1{height:106.299000px;}
.hc{height:120.157500px;}
.h7{height:120.160500px;}
.h4{height:120.162000px;}
.h0{height:1263.000000px;}
.w3{width:133.875000px;}
.w5{width:145.125000px;}
.w4{width:489.375000px;}
.w2{width:500.625000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:6.750600px;}
.x6{left:127.558650px;}
.x16{left:128.683500px;}
.x1a{left:134.743350px;}
.x1c{left:136.830900px;}
.x9{left:154.559100px;}
.x4{left:168.219525px;}
.x12{left:173.082225px;}
.xa{left:181.559100px;}
.x10{left:191.657400px;}
.x18{left:200.336475px;}
.xd{left:206.572650px;}
.x2{left:253.488900px;}
.x14{left:263.683500px;}
.x17{left:274.933500px;}
.x19{left:309.237600px;}
.x5{left:351.712650px;}
.x13{left:368.484900px;}
.x3{left:373.705275px;}
.xe{left:406.413150px;}
.x1b{left:407.951850px;}
.xf{left:435.821775px;}
.x7{left:507.457650px;}
.x1{left:555.441450px;}
.xb{left:589.089525px;}
.xc{left:696.808275px;}
.x11{left:747.108975px;}
.x8{left:756.231600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.010916pt;}
.lsf{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.026667pt;}
.ls7{letter-spacing:14.336111pt;}
.lsa{letter-spacing:14.364778pt;}
.ls5{letter-spacing:14.390890pt;}
.ls6{letter-spacing:14.443814pt;}
.lsc{letter-spacing:14.467250pt;}
.lsd{letter-spacing:18.352129pt;}
.ls8{letter-spacing:26.277647pt;}
.ls3{letter-spacing:26.464865pt;}
.ls4{letter-spacing:26.468000pt;}
.ls9{letter-spacing:94.291664pt;}
.lsb{letter-spacing:102.277213pt;}
.ws0{word-spacing:-35.304972pt;}
.wsb{word-spacing:-31.573480pt;}
.wsc{word-spacing:-27.062500pt;}
.ws1c{word-spacing:-26.906250pt;}
.wsb2{word-spacing:-22.551519pt;}
.wsf{word-spacing:-15.017866pt;}
.ws6{word-spacing:-14.758757pt;}
.ws2{word-spacing:-14.754812pt;}
.ws8{word-spacing:-14.754663pt;}
.ws1{word-spacing:-14.752721pt;}
.ws25{word-spacing:-14.731516pt;}
.ws3{word-spacing:-14.731217pt;}
.ws11{word-spacing:-14.729866pt;}
.wsd{word-spacing:-14.680932pt;}
.ws4{word-spacing:-14.608270pt;}
.ws5{word-spacing:-14.574011pt;}
.ws7{word-spacing:-14.539962pt;}
.ws1b{word-spacing:-14.269284pt;}
.ws15{word-spacing:-14.092234pt;}
.ws13{word-spacing:-13.400650pt;}
.ws17{word-spacing:-13.162250pt;}
.wsce{word-spacing:-12.791549pt;}
.ws107{word-spacing:-12.739091pt;}
.wsa8{word-spacing:-12.728100pt;}
.ws82{word-spacing:-12.698532pt;}
.ws1a{word-spacing:-12.694500pt;}
.wsb5{word-spacing:-12.687716pt;}
.ws18{word-spacing:-12.670884pt;}
.ws59{word-spacing:-12.662116pt;}
.ws136{word-spacing:-12.654116pt;}
.ws63{word-spacing:-12.643684pt;}
.ws74{word-spacing:-12.641316pt;}
.ws6b{word-spacing:-12.628516pt;}
.ws56{word-spacing:-12.619684pt;}
.ws14{word-spacing:-12.619300pt;}
.ws26{word-spacing:-12.616484pt;}
.wsdc{word-spacing:-12.615716pt;}
.wsff{word-spacing:-12.614500pt;}
.ws8e{word-spacing:-12.603300pt;}
.ws19{word-spacing:-12.598500pt;}
.wsa0{word-spacing:-12.590884pt;}
.ws109{word-spacing:-12.561996pt;}
.ws10b{word-spacing:-12.542123pt;}
.ws3a{word-spacing:-12.507850pt;}
.wsfc{word-spacing:-12.503434pt;}
.ws81{word-spacing:-12.500234pt;}
.ws104{word-spacing:-12.495239pt;}
.ws10c{word-spacing:-12.490634pt;}
.wsc5{word-spacing:-12.489866pt;}
.wsa5{word-spacing:-12.489034pt;}
.wsc2{word-spacing:-12.488650pt;}
.ws62{word-spacing:-12.481866pt;}
.ws30{word-spacing:-12.481702pt;}
.ws2f{word-spacing:-12.476682pt;}
.ws31{word-spacing:-12.476234pt;}
.ws8a{word-spacing:-12.475466pt;}
.ws102{word-spacing:-12.471882pt;}
.wsd7{word-spacing:-12.471434pt;}
.ws73{word-spacing:-12.469450pt;}
.ws46{word-spacing:-12.469066pt;}
.ws75{word-spacing:-12.468682pt;}
.ws70{word-spacing:-12.467466pt;}
.wsf0{word-spacing:-12.467082pt;}
.ws3b{word-spacing:-12.465866pt;}
.ws41{word-spacing:-12.465482pt;}
.ws39{word-spacing:-12.463301pt;}
.wsfe{word-spacing:-12.461066pt;}
.ws2e{word-spacing:-12.460682pt;}
.ws10a{word-spacing:-12.459466pt;}
.ws7b{word-spacing:-12.458634pt;}
.ws65{word-spacing:-12.458250pt;}
.ws10{word-spacing:-12.457034pt;}
.wscd{word-spacing:-12.456650pt;}
.wsb6{word-spacing:-12.455050pt;}
.ws106{word-spacing:-12.450634pt;}
.ws51{word-spacing:-12.449034pt;}
.ws103{word-spacing:-12.447434pt;}
.ws8d{word-spacing:-12.446666pt;}
.ws7d{word-spacing:-12.443850pt;}
.wsc0{word-spacing:-12.442634pt;}
.wse{word-spacing:-12.441034pt;}
.ws12{word-spacing:-12.440650pt;}
.ws67{word-spacing:-12.438666pt;}
.ws112{word-spacing:-12.438252pt;}
.ws76{word-spacing:-12.437450pt;}
.ws118{word-spacing:-12.437251pt;}
.ws44{word-spacing:-12.437066pt;}
.ws7c{word-spacing:-12.434250pt;}
.ws71{word-spacing:-12.430282pt;}
.ws10d{word-spacing:-12.429834pt;}
.wsf1{word-spacing:-12.427466pt;}
.ws48{word-spacing:-12.426634pt;}
.ws61{word-spacing:-12.418250pt;}
.wsf3{word-spacing:-12.416650pt;}
.ws91{word-spacing:-12.415882pt;}
.ws3e{word-spacing:-12.415434pt;}
.ws105{word-spacing:-12.414282pt;}
.ws87{word-spacing:-12.412234pt;}
.wsa4{word-spacing:-12.411850pt;}
.ws128{word-spacing:-12.409418pt;}
.ws101{word-spacing:-12.409034pt;}
.wsbd{word-spacing:-12.408650pt;}
.ws119{word-spacing:-12.405834pt;}
.ws9e{word-spacing:-12.405450pt;}
.ws16{word-spacing:-12.401866pt;}
.ws121{word-spacing:-12.399050pt;}
.ws42{word-spacing:-12.393749pt;}
.wsc1{word-spacing:-12.391434pt;}
.wsb4{word-spacing:-12.380682pt;}
.wscf{word-spacing:-12.376650pt;}
.wsf6{word-spacing:-12.368266pt;}
.ws32{word-spacing:-12.367882pt;}
.wsf9{word-spacing:-12.282634pt;}
.wsb7{word-spacing:-10.531927pt;}
.ws9{word-spacing:-10.531500pt;}
.wsb3{word-spacing:-10.530220pt;}
.wsad{word-spacing:-10.527927pt;}
.wsae{word-spacing:-10.525527pt;}
.wsb8{word-spacing:-10.402895pt;}
.wsb0{word-spacing:-10.388122pt;}
.wsb1{word-spacing:-10.378896pt;}
.wsaf{word-spacing:-10.378522pt;}
.wsa{word-spacing:-10.358896pt;}
.wse5{word-spacing:-8.615716pt;}
.ws120{word-spacing:-8.522288pt;}
.ws84{word-spacing:-8.481866pt;}
.wsdb{word-spacing:-8.479434pt;}
.ws66{word-spacing:-8.476618pt;}
.ws2d{word-spacing:-8.476234pt;}
.ws80{word-spacing:-8.469066pt;}
.ws3f{word-spacing:-8.468682pt;}
.ws100{word-spacing:-8.467466pt;}
.ws3c{word-spacing:-8.465866pt;}
.ws60{word-spacing:-8.465482pt;}
.ws36{word-spacing:-8.464266pt;}
.wse7{word-spacing:-8.463050pt;}
.ws92{word-spacing:-8.462666pt;}
.ws7e{word-spacing:-8.461066pt;}
.ws49{word-spacing:-8.460682pt;}
.wsc7{word-spacing:-8.458634pt;}
.wsa9{word-spacing:-8.458250pt;}
.wsaa{word-spacing:-8.455434pt;}
.wsc8{word-spacing:-8.455050pt;}
.ws6f{word-spacing:-8.449866pt;}
.wsda{word-spacing:-8.447818pt;}
.wsea{word-spacing:-8.445450pt;}
.ws113{word-spacing:-8.441482pt;}
.ws7f{word-spacing:-8.441034pt;}
.ws35{word-spacing:-8.440650pt;}
.wsed{word-spacing:-8.439050pt;}
.wsa6{word-spacing:-8.437450pt;}
.ws37{word-spacing:-8.437066pt;}
.wse9{word-spacing:-8.435466pt;}
.ws9d{word-spacing:-8.434250pt;}
.ws9f{word-spacing:-8.433866pt;}
.ws6d{word-spacing:-8.430282pt;}
.ws5e{word-spacing:-8.429834pt;}
.wsbb{word-spacing:-8.428682pt;}
.ws7a{word-spacing:-8.415818pt;}
.ws64{word-spacing:-8.415434pt;}
.ws12b{word-spacing:-8.414666pt;}
.wsf7{word-spacing:-8.412618pt;}
.wsd0{word-spacing:-8.407818pt;}
.wse2{word-spacing:-8.405834pt;}
.ws110{word-spacing:-8.405499pt;}
.wsa2{word-spacing:-8.405450pt;}
.wse8{word-spacing:-8.395466pt;}
.ws28{word-spacing:-8.394634pt;}
.wsa7{word-spacing:-8.390666pt;}
.ws90{word-spacing:-8.387466pt;}
.ws5a{word-spacing:-8.383050pt;}
.ws12c{word-spacing:-8.372682pt;}
.wsac{word-spacing:-4.687716pt;}
.wscb{word-spacing:-4.649874pt;}
.wsc6{word-spacing:-4.615716pt;}
.wseb{word-spacing:-4.568868pt;}
.ws47{word-spacing:-4.503050pt;}
.ws88{word-spacing:-4.500234pt;}
.ws9a{word-spacing:-4.497034pt;}
.wsfb{word-spacing:-4.476618pt;}
.ws4d{word-spacing:-4.476234pt;}
.wsba{word-spacing:-4.469066pt;}
.wsd9{word-spacing:-4.468682pt;}
.ws4c{word-spacing:-4.467466pt;}
.ws40{word-spacing:-4.465866pt;}
.wsfa{word-spacing:-4.461066pt;}
.ws58{word-spacing:-4.460682pt;}
.ws4a{word-spacing:-4.458634pt;}
.ws2b{word-spacing:-4.458250pt;}
.ws10f{word-spacing:-4.457301pt;}
.wsbe{word-spacing:-4.447818pt;}
.wsc3{word-spacing:-4.442250pt;}
.ws6c{word-spacing:-4.441034pt;}
.ws29{word-spacing:-4.440650pt;}
.wsd6{word-spacing:-4.439050pt;}
.ws8c{word-spacing:-4.437066pt;}
.ws53{word-spacing:-4.434250pt;}
.wscc{word-spacing:-4.428682pt;}
.ws9c{word-spacing:-4.415818pt;}
.ws3d{word-spacing:-4.415434pt;}
.wsee{word-spacing:-4.411082pt;}
.ws9b{word-spacing:-4.405834pt;}
.ws96{word-spacing:-4.405450pt;}
.wsd5{word-spacing:-4.404234pt;}
.wsec{word-spacing:-4.395850pt;}
.ws98{word-spacing:-4.387466pt;}
.wsca{word-spacing:-0.615716pt;}
.ws122{word-spacing:-0.576442pt;}
.ws21{word-spacing:-0.501333pt;}
.wsc4{word-spacing:-0.500234pt;}
.ws57{word-spacing:-0.499850pt;}
.ws5d{word-spacing:-0.499082pt;}
.wsd4{word-spacing:-0.497034pt;}
.ws116{word-spacing:-0.492191pt;}
.ws6e{word-spacing:-0.473482pt;}
.ws68{word-spacing:-0.468682pt;}
.ws79{word-spacing:-0.465866pt;}
.ws34{word-spacing:-0.465482pt;}
.wsf8{word-spacing:-0.461066pt;}
.wsa1{word-spacing:-0.460682pt;}
.wse6{word-spacing:-0.458250pt;}
.ws111{word-spacing:-0.457034pt;}
.wsef{word-spacing:-0.456650pt;}
.wsd8{word-spacing:-0.447818pt;}
.ws4e{word-spacing:-0.440650pt;}
.ws38{word-spacing:-0.437450pt;}
.ws2a{word-spacing:-0.437066pt;}
.wsd3{word-spacing:-0.434250pt;}
.ws123{word-spacing:-0.427082pt;}
.ws78{word-spacing:-0.415818pt;}
.ws4f{word-spacing:-0.415434pt;}
.ws8b{word-spacing:-0.411850pt;}
.ws5b{word-spacing:-0.408266pt;}
.ws50{word-spacing:-0.405834pt;}
.wsb9{word-spacing:-0.398666pt;}
.ws77{word-spacing:-0.387466pt;}
.ws8f{word-spacing:-0.387082pt;}
.wsde{word-spacing:-0.376650pt;}
.ws117{word-spacing:-0.372682pt;}
.wsc9{word-spacing:-0.372234pt;}
.ws138{word-spacing:-0.096000pt;}
.ws137{word-spacing:-0.058667pt;}
.ws131{word-spacing:-0.053333pt;}
.ws132{word-spacing:-0.048000pt;}
.ws12f{word-spacing:-0.026667pt;}
.ws133{word-spacing:-0.021333pt;}
.ws130{word-spacing:-0.005333pt;}
.ws1d{word-spacing:0.000000pt;}
.ws135{word-spacing:0.005333pt;}
.ws134{word-spacing:0.010667pt;}
.ws20{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.069333pt;}
.ws23{word-spacing:0.245333pt;}
.ws1e{word-spacing:0.336000pt;}
.ws22{word-spacing:0.357333pt;}
.ws24{word-spacing:1.882667pt;}
.wsdd{word-spacing:3.384284pt;}
.ws12d{word-spacing:3.442676pt;}
.ws11c{word-spacing:3.531318pt;}
.ws55{word-spacing:3.534134pt;}
.ws2c{word-spacing:3.538934pt;}
.wsfd{word-spacing:3.539318pt;}
.ws45{word-spacing:3.541366pt;}
.ws11b{word-spacing:3.543350pt;}
.ws52{word-spacing:3.558966pt;}
.wsf5{word-spacing:3.559350pt;}
.ws43{word-spacing:3.564150pt;}
.wsd2{word-spacing:3.565750pt;}
.wsa3{word-spacing:3.582582pt;}
.ws4b{word-spacing:3.584182pt;}
.wsdf{word-spacing:3.584566pt;}
.ws12e{word-spacing:3.585718pt;}
.wsab{word-spacing:3.601334pt;}
.ws11a{word-spacing:7.381800pt;}
.ws89{word-spacing:7.507766pt;}
.ws54{word-spacing:7.523766pt;}
.ws97{word-spacing:7.531382pt;}
.ws85{word-spacing:7.539318pt;}
.ws94{word-spacing:7.541750pt;}
.wsf2{word-spacing:7.553334pt;}
.ws93{word-spacing:7.559350pt;}
.wsbc{word-spacing:7.565750pt;}
.ws69{word-spacing:7.584566pt;}
.ws99{word-spacing:7.609718pt;}
.wse0{word-spacing:7.623350pt;}
.wse1{word-spacing:11.503734pt;}
.ws83{word-spacing:11.534134pt;}
.ws6a{word-spacing:11.539318pt;}
.ws27{word-spacing:11.559350pt;}
.wsd1{word-spacing:11.595766pt;}
.ws126{word-spacing:15.355462pt;}
.ws125{word-spacing:15.420144pt;}
.ws5c{word-spacing:15.499766pt;}
.ws72{word-spacing:15.552118pt;}
.wse4{word-spacing:15.559350pt;}
.ws127{word-spacing:15.606134pt;}
.wse3{word-spacing:19.384284pt;}
.wsf4{word-spacing:19.401500pt;}
.ws5f{word-spacing:19.562934pt;}
.ws86{word-spacing:23.532534pt;}
.ws33{word-spacing:23.566134pt;}
.wsbf{word-spacing:23.584566pt;}
.ws115{word-spacing:27.538934pt;}
.ws95{word-spacing:31.502966pt;}
.ws10e{word-spacing:43.559350pt;}
.ws11f{word-spacing:63.549366pt;}
.ws11d{word-spacing:67.492449pt;}
.ws11e{word-spacing:67.576950pt;}
.ws12a{word-spacing:75.542966pt;}
.ws129{word-spacing:79.529197pt;}
.ws108{word-spacing:631.561000pt;}
.ws124{word-spacing:743.561499pt;}
.ws114{word-spacing:763.561000pt;}
._3{margin-left:-6.313777pt;}
._13{margin-left:-5.343183pt;}
._0{margin-left:-4.157216pt;}
._2{margin-left:-2.601284pt;}
._1{margin-left:-0.927601pt;}
._1f{width:0.930304pt;}
._4{width:1.838833pt;}
._6{width:3.657377pt;}
._7{width:7.717970pt;}
._1b{width:13.574321pt;}
._5{width:14.464000pt;}
._19{width:15.363852pt;}
._10{width:17.608737pt;}
._f{width:18.507584pt;}
._18{width:19.420081pt;}
._9{width:21.764465pt;}
._a{width:23.219919pt;}
._b{width:25.830016pt;}
._c{width:27.111616pt;}
._1a{width:28.181861pt;}
._17{width:29.600463pt;}
._d{width:30.523185pt;}
._1e{width:31.413846pt;}
._e{width:33.935616pt;}
._12{width:35.168000pt;}
._1c{width:38.529600pt;}
._1d{width:41.620849pt;}
._8{width:42.518400pt;}
._15{width:46.464000pt;}
._14{width:47.424000pt;}
._16{width:50.261617pt;}
._11{width:54.101617pt;}
._21{width:73.909233pt;}
._22{width:75.085087pt;}
._24{width:106.037684pt;}
._20{width:662.063998pt;}
._23{width:794.469999pt;}
.fs1{font-size:53.332000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.668000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:9.583867pt;}
.yf9{bottom:18.471333pt;}
.y108{bottom:18.471467pt;}
.yfb{bottom:18.471867pt;}
.yfe{bottom:18.472000pt;}
.yf7{bottom:18.472133pt;}
.y10d{bottom:18.472533pt;}
.y100{bottom:18.472667pt;}
.y62{bottom:24.560667pt;}
.y12d{bottom:24.561667pt;}
.yc{bottom:24.562000pt;}
.y103{bottom:42.885867pt;}
.y1c4{bottom:45.864000pt;}
.y61{bottom:45.866667pt;}
.yb{bottom:45.868000pt;}
.y102{bottom:67.299867pt;}
.y191{bottom:100.009467pt;}
.y143{bottom:102.049467pt;}
.y7e{bottom:102.637467pt;}
.y178{bottom:107.843867pt;}
.y12c{bottom:108.844533pt;}
.y44{bottom:111.463667pt;}
.y1a0{bottom:113.342467pt;}
.ycb{bottom:115.972933pt;}
.yaf{bottom:126.676467pt;}
.ye1{bottom:126.676933pt;}
.y190{bottom:129.306467pt;}
.y11a{bottom:130.693467pt;}
.y43{bottom:130.994667pt;}
.y142{bottom:131.346467pt;}
.y7d{bottom:131.934467pt;}
.yfa{bottom:132.476000pt;}
.y177{bottom:137.140867pt;}
.y12b{bottom:138.141533pt;}
.y19f{bottom:142.639467pt;}
.y1be{bottom:145.267467pt;}
.yca{bottom:145.269933pt;}
.y42{bottom:150.525667pt;}
.y13d{bottom:154.105200pt;}
.yae{bottom:155.973467pt;}
.ye0{bottom:155.973933pt;}
.ya4{bottom:158.603467pt;}
.y5f{bottom:158.604200pt;}
.y141{bottom:160.643467pt;}
.y1b3{bottom:161.233467pt;}
.y176{bottom:166.437867pt;}
.y12a{bottom:167.438533pt;}
.y41{bottom:170.056667pt;}
.yf8{bottom:171.890667pt;}
.y18f{bottom:171.936467pt;}
.y1bd{bottom:174.564467pt;}
.y7c{bottom:174.565467pt;}
.yc9{bottom:174.566933pt;}
.y13c{bottom:183.402200pt;}
.y97{bottom:185.270467pt;}
.ydf{bottom:185.270933pt;}
.ya3{bottom:187.900467pt;}
.y5e{bottom:187.901200pt;}
.y40{bottom:189.587667pt;}
.y1b2{bottom:190.530467pt;}
.y175{bottom:195.734867pt;}
.y15c{bottom:195.735200pt;}
.y129{bottom:196.735533pt;}
.y18e{bottom:201.233467pt;}
.y140{bottom:203.272467pt;}
.y1bc{bottom:203.861467pt;}
.yc8{bottom:203.863933pt;}
.y9{bottom:208.713267pt;}
.y114{bottom:209.054067pt;}
.y3f{bottom:209.118667pt;}
.y13b{bottom:212.699200pt;}
.y96{bottom:214.567467pt;}
.yde{bottom:214.567933pt;}
.yf6{bottom:216.186667pt;}
.y7b{bottom:217.195467pt;}
.ya2{bottom:217.197467pt;}
.y5d{bottom:217.198200pt;}
.y1b1{bottom:219.827467pt;}
.y15b{bottom:225.032200pt;}
.y128{bottom:226.032533pt;}
.y3e{bottom:228.649667pt;}
.y18d{bottom:230.530467pt;}
.y13f{bottom:232.569467pt;}
.y1bb{bottom:233.158467pt;}
.yc7{bottom:233.160933pt;}
.y113{bottom:238.351067pt;}
.y174{bottom:238.362867pt;}
.y13a{bottom:241.996200pt;}
.y95{bottom:243.864467pt;}
.ydd{bottom:243.864933pt;}
.y7a{bottom:246.492467pt;}
.ya1{bottom:246.494467pt;}
.y3d{bottom:248.180667pt;}
.y1b0{bottom:249.124467pt;}
.y22{bottom:253.576000pt;}
.y15a{bottom:254.329200pt;}
.y127{bottom:255.329533pt;}
.y18c{bottom:259.827467pt;}
.y5c{bottom:259.828200pt;}
.ye7{bottom:260.772467pt;}
.yc6{bottom:262.457933pt;}
.y112{bottom:267.648067pt;}
.y173{bottom:267.659867pt;}
.y139{bottom:271.293200pt;}
.y94{bottom:273.161467pt;}
.y79{bottom:275.789467pt;}
.y1ba{bottom:275.791467pt;}
.yf5{bottom:282.700533pt;}
.y159{bottom:283.626200pt;}
.y126{bottom:284.626533pt;}
.ydc{bottom:286.494933pt;}
.y21{bottom:286.873333pt;}
.y14d{bottom:287.735467pt;}
.ya0{bottom:289.124467pt;}
.ye6{bottom:290.069467pt;}
.y3c{bottom:290.810667pt;}
.y1af{bottom:291.752467pt;}
.yc5{bottom:291.754933pt;}
.y111{bottom:296.945067pt;}
.y172{bottom:296.956867pt;}
.y138{bottom:300.590200pt;}
.y19e{bottom:302.455467pt;}
.y93{bottom:302.458467pt;}
.y5b{bottom:302.459200pt;}
.y78{bottom:305.086467pt;}
.y1b9{bottom:305.088467pt;}
.yf4{bottom:311.997533pt;}
.y158{bottom:312.923200pt;}
.y125{bottom:313.923533pt;}
.ydb{bottom:315.791933pt;}
.y14c{bottom:317.032467pt;}
.y18b{bottom:318.421467pt;}
.ye5{bottom:319.366467pt;}
.y20{bottom:320.169333pt;}
.y1ae{bottom:321.049467pt;}
.y110{bottom:326.242067pt;}
.y171{bottom:326.253867pt;}
.y137{bottom:329.887200pt;}
.y92{bottom:331.755467pt;}
.y5a{bottom:331.756200pt;}
.y3b{bottom:333.440667pt;}
.y77{bottom:334.383467pt;}
.yc4{bottom:334.384933pt;}
.y1b8{bottom:334.385467pt;}
.y8{bottom:335.326267pt;}
.y166{bottom:341.220000pt;}
.y157{bottom:342.220200pt;}
.y124{bottom:343.220533pt;}
.yad{bottom:345.088467pt;}
.yda{bottom:345.088933pt;}
.y18a{bottom:347.718467pt;}
.ye4{bottom:348.663467pt;}
.y1f{bottom:353.466667pt;}
.yf3{bottom:354.627533pt;}
.y10f{bottom:355.539067pt;}
.y170{bottom:355.550867pt;}
.y119{bottom:358.422467pt;}
.y136{bottom:359.184200pt;}
.y91{bottom:361.052467pt;}
.y59{bottom:361.053200pt;}
.y3a{bottom:362.737667pt;}
.y76{bottom:363.680467pt;}
.y1ad{bottom:363.682467pt;}
.y165{bottom:370.517000pt;}
.y156{bottom:371.517200pt;}
.y123{bottom:372.517533pt;}
.y19d{bottom:374.385467pt;}
.yd9{bottom:374.385933pt;}
.y1c7{bottom:375.458400pt;}
.y189{bottom:377.015467pt;}
.yc3{bottom:377.015933pt;}
.y7{bottom:377.530267pt;}
.ye3{bottom:377.960467pt;}
.yf2{bottom:383.924533pt;}
.y16f{bottom:384.847867pt;}
.yac{bottom:387.719467pt;}
.y135{bottom:388.481200pt;}
.y90{bottom:390.349467pt;}
.y58{bottom:390.350200pt;}
.y1ac{bottom:392.979467pt;}
.y39{bottom:395.602667pt;}
.y164{bottom:399.814000pt;}
.y155{bottom:400.814200pt;}
.y122{bottom:401.814533pt;}
.yd8{bottom:403.681933pt;}
.y19c{bottom:403.682467pt;}
.y75{bottom:406.310467pt;}
.y1b7{bottom:406.312467pt;}
.yc2{bottom:406.312933pt;}
.yf1{bottom:413.221533pt;}
.y16e{bottom:414.144867pt;}
.y10e{bottom:414.700000pt;}
.y38{bottom:415.133667pt;}
.yab{bottom:417.016467pt;}
.y188{bottom:419.643467pt;}
.y1e{bottom:420.060667pt;}
.ye2{bottom:420.590467pt;}
.y1ab{bottom:422.276467pt;}
.y163{bottom:429.111000pt;}
.y154{bottom:430.111200pt;}
.y134{bottom:431.111200pt;}
.y121{bottom:431.111533pt;}
.yd7{bottom:432.978933pt;}
.y8f{bottom:432.979467pt;}
.y57{bottom:432.980200pt;}
.y37{bottom:434.664667pt;}
.y74{bottom:435.607467pt;}
.y1b6{bottom:435.609467pt;}
.yc1{bottom:435.609933pt;}
.yf0{bottom:442.518533pt;}
.y16d{bottom:443.441867pt;}
.yaa{bottom:446.313467pt;}
.y187{bottom:448.940467pt;}
.y1aa{bottom:451.573467pt;}
.y1d{bottom:453.357667pt;}
.y10c{bottom:454.113333pt;}
.y36{bottom:454.195667pt;}
.y162{bottom:458.408000pt;}
.y153{bottom:459.408200pt;}
.y133{bottom:460.408200pt;}
.y120{bottom:460.408533pt;}
.yd6{bottom:462.275933pt;}
.y8e{bottom:462.276467pt;}
.y56{bottom:462.277200pt;}
.y73{bottom:464.904467pt;}
.y1b5{bottom:464.906467pt;}
.y16c{bottom:472.738867pt;}
.y35{bottom:473.726667pt;}
.y19b{bottom:475.609467pt;}
.ya9{bottom:475.610467pt;}
.y186{bottom:478.237467pt;}
.yc0{bottom:478.239933pt;}
.yef{bottom:485.148533pt;}
.y1c{bottom:486.654667pt;}
.y161{bottom:487.705000pt;}
.y152{bottom:488.705200pt;}
.y132{bottom:489.705200pt;}
.y11f{bottom:489.705533pt;}
.yd5{bottom:491.572933pt;}
.y8d{bottom:491.573467pt;}
.y55{bottom:491.574200pt;}
.y34{bottom:493.257667pt;}
.y10b{bottom:493.528000pt;}
.y72{bottom:494.201467pt;}
.y1a9{bottom:494.203467pt;}
.y16b{bottom:502.035867pt;}
.y19a{bottom:504.906467pt;}
.ya8{bottom:504.907467pt;}
.y185{bottom:507.534467pt;}
.y33{bottom:512.788667pt;}
.yee{bottom:514.445533pt;}
.y160{bottom:517.002000pt;}
.y151{bottom:518.002200pt;}
.y131{bottom:519.002200pt;}
.y11e{bottom:519.002533pt;}
.y1b{bottom:519.951667pt;}
.ybf{bottom:520.869933pt;}
.y8c{bottom:520.870467pt;}
.y54{bottom:520.871200pt;}
.y71{bottom:523.498467pt;}
.y1a8{bottom:523.500467pt;}
.y16a{bottom:531.332867pt;}
.y10a{bottom:532.942667pt;}
.y199{bottom:534.203467pt;}
.ya7{bottom:534.204467pt;}
.y184{bottom:536.831467pt;}
.y32{bottom:545.653667pt;}
.y15f{bottom:546.299000pt;}
.y6{bottom:546.348267pt;}
.y150{bottom:547.299200pt;}
.y130{bottom:548.299200pt;}
.y11d{bottom:548.299533pt;}
.yd4{bottom:550.166933pt;}
.y8b{bottom:550.167467pt;}
.y53{bottom:550.168200pt;}
.y70{bottom:552.795467pt;}
.y1a{bottom:553.248667pt;}
.yed{bottom:557.075533pt;}
.y169{bottom:560.629867pt;}
.y9f{bottom:563.500467pt;}
.ybe{bottom:563.500933pt;}
.ya6{bottom:563.501467pt;}
.y1a7{bottom:566.128467pt;}
.y109{bottom:572.356000pt;}
.y5{bottom:572.552267pt;}
.y183{bottom:579.464467pt;}
.y52{bottom:579.465200pt;}
.y6f{bottom:582.092467pt;}
.y19{bottom:586.545667pt;}
.y31{bottom:588.283667pt;}
.y15e{bottom:588.927000pt;}
.y14f{bottom:589.928200pt;}
.y12f{bottom:590.928200pt;}
.y11c{bottom:590.929533pt;}
.y8a{bottom:592.797467pt;}
.ybd{bottom:592.797933pt;}
.y118{bottom:592.798467pt;}
.y1a6{bottom:595.425467pt;}
.yec{bottom:599.705533pt;}
.y168{bottom:603.262867pt;}
.ya5{bottom:606.131467pt;}
.y182{bottom:608.761467pt;}
.y51{bottom:608.762200pt;}
.y6e{bottom:611.389467pt;}
.y107{bottom:611.770667pt;}
.y30{bottom:617.580667pt;}
.y15d{bottom:618.224000pt;}
.y14e{bottom:619.225200pt;}
.y18{bottom:619.842667pt;}
.y12e{bottom:620.225200pt;}
.y11b{bottom:620.226533pt;}
.y9e{bottom:622.094467pt;}
.ybc{bottom:622.094933pt;}
.y117{bottom:622.095467pt;}
.y1a5{bottom:624.722467pt;}
.yeb{bottom:629.002533pt;}
.y167{bottom:632.559867pt;}
.y89{bottom:635.428467pt;}
.y181{bottom:638.058467pt;}
.y50{bottom:638.059200pt;}
.y14b{bottom:648.761467pt;}
.y13e{bottom:649.299467pt;}
.y2f{bottom:650.445667pt;}
.y9d{bottom:651.391467pt;}
.yd3{bottom:651.391933pt;}
.y116{bottom:651.392467pt;}
.y17{bottom:653.139667pt;}
.y1a4{bottom:654.019467pt;}
.y6d{bottom:654.020467pt;}
.yea{bottom:658.299533pt;}
.y198{bottom:664.722467pt;}
.ybb{bottom:664.724933pt;}
.y88{bottom:664.725467pt;}
.y180{bottom:667.355467pt;}
.y2e{bottom:669.976667pt;}
.y14a{bottom:678.058467pt;}
.y106{bottom:678.283933pt;}
.y9c{bottom:680.688467pt;}
.yd2{bottom:680.688933pt;}
.y4f{bottom:680.689200pt;}
.y115{bottom:680.689467pt;}
.y4{bottom:683.165267pt;}
.y1a3{bottom:683.316467pt;}
.y16{bottom:686.436667pt;}
.y2d{bottom:689.507667pt;}
.y197{bottom:694.019467pt;}
.yba{bottom:694.021933pt;}
.y87{bottom:694.022467pt;}
.y6c{bottom:696.651467pt;}
.y17f{bottom:696.652467pt;}
.ye9{bottom:700.929533pt;}
.y149{bottom:707.355467pt;}
.y2c{bottom:709.038667pt;}
.yd1{bottom:709.985933pt;}
.y4e{bottom:709.986200pt;}
.y15{bottom:719.733667pt;}
.y105{bottom:720.913933pt;}
.y196{bottom:723.316467pt;}
.yb9{bottom:723.318933pt;}
.y86{bottom:723.319467pt;}
.y6b{bottom:725.948467pt;}
.y1a2{bottom:725.949467pt;}
.y2b{bottom:728.569667pt;}
.ye8{bottom:730.226533pt;}
.y148{bottom:736.652467pt;}
.y17e{bottom:739.282467pt;}
.yd0{bottom:739.282933pt;}
.y4d{bottom:739.283200pt;}
.y2a{bottom:748.100667pt;}
.y104{bottom:750.210933pt;}
.y195{bottom:752.613467pt;}
.yb8{bottom:752.615933pt;}
.y85{bottom:752.616467pt;}
.y14{bottom:753.030667pt;}
.y6a{bottom:755.245467pt;}
.y1a1{bottom:755.246467pt;}
.y147{bottom:765.949467pt;}
.y3{bottom:767.574267pt;}
.y29{bottom:767.631667pt;}
.y17d{bottom:768.579467pt;}
.y4c{bottom:768.580200pt;}
.y194{bottom:781.910467pt;}
.yb7{bottom:781.912933pt;}
.y84{bottom:781.913467pt;}
.y69{bottom:784.542467pt;}
.y13{bottom:786.327667pt;}
.y28{bottom:787.162667pt;}
.y146{bottom:795.246467pt;}
.y17c{bottom:797.876467pt;}
.y4b{bottom:797.877200pt;}
.y27{bottom:806.693667pt;}
.y101{bottom:809.372000pt;}
.y193{bottom:811.207467pt;}
.yb6{bottom:811.209933pt;}
.y83{bottom:811.210467pt;}
.y12{bottom:819.624667pt;}
.y145{bottom:824.543467pt;}
.y68{bottom:827.172467pt;}
.y17b{bottom:827.173467pt;}
.y4a{bottom:827.174200pt;}
.y192{bottom:840.504467pt;}
.ycf{bottom:840.506933pt;}
.y82{bottom:840.507467pt;}
.y26{bottom:849.323667pt;}
.y11{bottom:852.921667pt;}
.yb5{bottom:853.839933pt;}
.y144{bottom:853.840467pt;}
.y17a{bottom:856.470467pt;}
.y49{bottom:856.471200pt;}
.y1b4{bottom:869.801467pt;}
.y67{bottom:869.803467pt;}
.yce{bottom:869.803933pt;}
.y9b{bottom:869.804467pt;}
.yb4{bottom:883.136933pt;}
.y81{bottom:883.137467pt;}
.y48{bottom:885.768200pt;}
.y10{bottom:886.218667pt;}
.y25{bottom:891.953667pt;}
.yff{bottom:897.613333pt;}
.y179{bottom:899.098467pt;}
.y66{bottom:899.100467pt;}
.ycd{bottom:899.100933pt;}
.y9a{bottom:899.101467pt;}
.yb3{bottom:912.433933pt;}
.y80{bottom:912.434467pt;}
.yf{bottom:919.515667pt;}
.y1bf{bottom:928.395467pt;}
.y65{bottom:928.397467pt;}
.ycc{bottom:928.397933pt;}
.y47{bottom:928.398200pt;}
.y99{bottom:928.398467pt;}
.y24{bottom:934.583667pt;}
.yfd{bottom:937.028000pt;}
.yb2{bottom:941.730933pt;}
.y7f{bottom:941.731467pt;}
.ye{bottom:952.812667pt;}
.y98{bottom:957.695467pt;}
.yb1{bottom:971.027933pt;}
.y46{bottom:971.028200pt;}
.y64{bottom:971.028467pt;}
.y23{bottom:971.532667pt;}
.yfc{bottom:976.442667pt;}
.yd{bottom:997.736667pt;}
.yb0{bottom:1000.324933pt;}
.y45{bottom:1000.325200pt;}
.y1c1{bottom:1000.325333pt;}
.y63{bottom:1000.325467pt;}
.y1c6{bottom:1000.328000pt;}
.ya{bottom:1015.856000pt;}
.y60{bottom:1015.857333pt;}
.y1c3{bottom:1015.860000pt;}
.y1{bottom:1028.178667pt;}
.y1c2{bottom:1031.842400pt;}
.y1c5{bottom:1040.417333pt;}
.y1c0{bottom:1040.418667pt;}
.h8{height:38.414667pt;}
.hd{height:42.656250pt;}
.h5{height:43.983275pt;}
.ha{height:45.937500pt;}
.h6{height:52.781250pt;}
.hb{height:52.781783pt;}
.h2{height:54.360346pt;}
.h3{height:61.579225pt;}
.h9{height:87.242667pt;}
.h1{height:94.488000pt;}
.hc{height:106.806667pt;}
.h7{height:106.809333pt;}
.h4{height:106.810667pt;}
.h0{height:1122.666667pt;}
.w3{width:119.000000pt;}
.w5{width:129.000000pt;}
.w4{width:435.000000pt;}
.w2{width:445.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.000533pt;}
.x6{left:113.385467pt;}
.x16{left:114.385333pt;}
.x1a{left:119.771867pt;}
.x1c{left:121.627467pt;}
.x9{left:137.385867pt;}
.x4{left:149.528467pt;}
.x12{left:153.850867pt;}
.xa{left:161.385867pt;}
.x10{left:170.362133pt;}
.x18{left:178.076867pt;}
.xd{left:183.620133pt;}
.x2{left:225.323467pt;}
.x14{left:234.385333pt;}
.x17{left:244.385333pt;}
.x19{left:274.877867pt;}
.x5{left:312.633467pt;}
.x13{left:327.542133pt;}
.x3{left:332.182467pt;}
.xe{left:361.256133pt;}
.x1b{left:362.623867pt;}
.xf{left:387.397133pt;}
.x7{left:451.073467pt;}
.x1{left:493.725733pt;}
.xb{left:523.635133pt;}
.xc{left:619.385133pt;}
.x11{left:664.096867pt;}
.x8{left:672.205867pt;}
}




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