
    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_9691840a4c9125b84ee1b6f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738000;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_ac10a2d3f6a00dc803349b2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_927d91e270a29358b6476648.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_c598f60db609609109f7bfef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_d3596bc85bc72ec7bd93dee2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e3214ce21a120f69cc9cb903.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_e42fd68530fc6b0de6ae58af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ef5e3d8516b24282f59df70f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_fca8b12e609f6a2fe590fcdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_af06c2ac01c5eb177bc9ce25.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_09ac15c64ff15f3f6399b7f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862000;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_1587ae3447f27738a59eb5d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_5962d657670d11960ba997ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9a527801f9d91965bc74e7ab.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_2d5d3be7f202348d0577c589.woff2')format("woff");}.fff{font-family:fff;line-height:0.907000;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_bdd365fc444731f328549e11.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.706000;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_790176d37da2528f006f4d14.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.684000;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_5fc16ace01ca960013f1f3ef.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.453000;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_004bc7feb1569d7d0cbb6eb0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_363e2fb961b73e340cd5e5c6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_126bf6428c8d143740b58bcc.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_c642822a65d859cb3da522e9.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_2d89bb2ec117c0364a83c9e5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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);}
.va{vertical-align:-48.420000px;}
.vd{vertical-align:-14.946000px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.696000px;}
.vc{vertical-align:31.470000px;}
.v3{vertical-align:35.268000px;}
.v2{vertical-align:36.462000px;}
.vb{vertical-align:40.434000px;}
.v6{vertical-align:56.790000px;}
.v8{vertical-align:68.742000px;}
.v1{vertical-align:84.282000px;}
.v9{vertical-align:93.426000px;}
.v7{vertical-align:117.162000px;}
.ls31{letter-spacing:-0.011523px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000065px;}
.lsc{letter-spacing:0.000843px;}
.lsf{letter-spacing:0.002245px;}
.ls20{letter-spacing:0.002387px;}
.ls5{letter-spacing:0.003269px;}
.ls1f{letter-spacing:0.004583px;}
.lsb{letter-spacing:0.005023px;}
.ls2c{letter-spacing:0.005732px;}
.ls2d{letter-spacing:1.665333px;}
.ls11{letter-spacing:2.144023px;}
.ls12{letter-spacing:2.989140px;}
.ls27{letter-spacing:5.279276px;}
.ls2{letter-spacing:8.470613px;}
.ls21{letter-spacing:9.419732px;}
.ls13{letter-spacing:9.960843px;}
.ls24{letter-spacing:13.278538px;}
.lse{letter-spacing:13.280338px;}
.ls1d{letter-spacing:13.284538px;}
.ls26{letter-spacing:13.286338px;}
.lsd{letter-spacing:13.287269px;}
.ls2e{letter-spacing:14.949333px;}
.ls1b{letter-spacing:16.601607px;}
.ls7{letter-spacing:16.602538px;}
.ls17{letter-spacing:16.604245px;}
.ls6{letter-spacing:16.605269px;}
.ls25{letter-spacing:16.727602px;}
.ls23{letter-spacing:16.733602px;}
.ls1{letter-spacing:16.932141px;}
.ls0{letter-spacing:16.938141px;}
.ls10{letter-spacing:18.692908px;}
.lsa{letter-spacing:19.917269px;}
.ls16{letter-spacing:19.923269px;}
.ls1c{letter-spacing:21.582065px;}
.ls1e{letter-spacing:21.588065px;}
.ls18{letter-spacing:23.778538px;}
.ls30{letter-spacing:24.771333px;}
.ls9{letter-spacing:26.265269px;}
.ls15{letter-spacing:27.411269px;}
.ls2b{letter-spacing:29.010065px;}
.ls32{letter-spacing:29.884200px;}
.ls4{letter-spacing:29.892300px;}
.ls2a{letter-spacing:29.915276px;}
.ls29{letter-spacing:33.557732px;}
.ls33{letter-spacing:34.866493px;}
.ls22{letter-spacing:194.756338px;}
.ls28{letter-spacing:205.346338px;}
.ls14{letter-spacing:206.762338px;}
.ls19{letter-spacing:370.004338px;}
.ls8{letter-spacing:375.086338px;}
.ls2f{letter-spacing:384.332338px;}
.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;}
}
.wsb2{word-spacing:-38.937826px;}
.ws106{word-spacing:-30.545332px;}
.ws98{word-spacing:-28.997974px;}
.ws9b{word-spacing:-28.991974px;}
.ws9f{word-spacing:-28.980796px;}
.wsb1{word-spacing:-28.979243px;}
.ws93{word-spacing:-28.974796px;}
.ws95{word-spacing:-28.955301px;}
.wsae{word-spacing:-26.807726px;}
.wsb3{word-spacing:-20.191803px;}
.ws104{word-spacing:-16.492088px;}
.wsa5{word-spacing:-16.312761px;}
.wsd1{word-spacing:-16.193210px;}
.wse3{word-spacing:-16.133434px;}
.ws128{word-spacing:-16.013883px;}
.ws67{word-spacing:-15.894332px;}
.wsd9{word-spacing:-15.834556px;}
.ws166{word-spacing:-15.774781px;}
.ws1a{word-spacing:-15.715005px;}
.wse0{word-spacing:-15.655230px;}
.wsbf{word-spacing:-15.535678px;}
.ws5f{word-spacing:-15.475903px;}
.wsde{word-spacing:-15.356352px;}
.wsda{word-spacing:-15.177025px;}
.ws100{word-spacing:-15.117249px;}
.ws137{word-spacing:-14.997698px;}
.ws26{word-spacing:-14.937922px;}
.ws11{word-spacing:-14.764573px;}
.ws1b{word-spacing:-14.698820px;}
.ws57{word-spacing:-14.639044px;}
.ws8d{word-spacing:-14.579269px;}
.ws20{word-spacing:-14.519493px;}
.wsa4{word-spacing:-14.459718px;}
.wsce{word-spacing:-14.399942px;}
.ws53{word-spacing:-14.280391px;}
.ws54{word-spacing:-14.160840px;}
.wsa1{word-spacing:-14.101064px;}
.ws3b{word-spacing:-14.041288px;}
.ws102{word-spacing:-13.981513px;}
.wsf9{word-spacing:-13.872756px;}
.ws176{word-spacing:-13.861962px;}
.ws138{word-spacing:-13.808164px;}
.ws6c{word-spacing:-13.802186px;}
.ws8{word-spacing:-13.748388px;}
.ws13b{word-spacing:-13.742410px;}
.ws52{word-spacing:-13.682635px;}
.ws4d{word-spacing:-13.563084px;}
.ws7c{word-spacing:-13.503308px;}
.wseb{word-spacing:-13.443532px;}
.ws72{word-spacing:-13.204430px;}
.ws60{word-spacing:-13.144654px;}
.wsa7{word-spacing:-13.084879px;}
.ws87{word-spacing:-13.021342px;}
.ws136{word-spacing:-12.971305px;}
.ws7b{word-spacing:-12.965328px;}
.ws31{word-spacing:-12.905552px;}
.ws84{word-spacing:-12.845776px;}
.ws62{word-spacing:-12.786001px;}
.ws171{word-spacing:-12.726225px;}
.ws129{word-spacing:-12.666450px;}
.ws2d{word-spacing:-12.606674px;}
.ws4c{word-spacing:-12.546898px;}
.ws4a{word-spacing:-12.487123px;}
.ws174{word-spacing:-12.427347px;}
.ws43{word-spacing:-12.367572px;}
.wse1{word-spacing:-12.307796px;}
.ws2a{word-spacing:-12.188245px;}
.ws83{word-spacing:-12.128469px;}
.wsed{word-spacing:-12.008918px;}
.wsa8{word-spacing:-11.829591px;}
.wsd7{word-spacing:-11.769816px;}
.wse{word-spacing:-11.716018px;}
.ws2e{word-spacing:-11.650264px;}
.ws12c{word-spacing:-11.596466px;}
.ws7f{word-spacing:-11.590489px;}
.ws10{word-spacing:-11.476915px;}
.ws13a{word-spacing:-11.417140px;}
.ws56{word-spacing:-11.411162px;}
.wsec{word-spacing:-11.351386px;}
.ws28{word-spacing:-11.291611px;}
.wsea{word-spacing:-11.172060px;}
.ws5e{word-spacing:-11.112284px;}
.ws76{word-spacing:-11.052508px;}
.ws5b{word-spacing:-10.813406px;}
.wsee{word-spacing:-10.753630px;}
.wse7{word-spacing:-10.693855px;}
.wsd4{word-spacing:-10.634079px;}
.ws19{word-spacing:-10.394977px;}
.ws6f{word-spacing:-10.335201px;}
.ws117{word-spacing:-10.275426px;}
.ws64{word-spacing:-10.155874px;}
.ws78{word-spacing:-10.096099px;}
.wsc8{word-spacing:-10.036323px;}
.ws4{word-spacing:-9.976548px;}
.ws9e{word-spacing:-9.960381px;}
.ws97{word-spacing:-9.940668px;}
.ws6a{word-spacing:-9.916772px;}
.ws8e{word-spacing:-9.856996px;}
.ws55{word-spacing:-9.797221px;}
.wse2{word-spacing:-9.737445px;}
.ws34{word-spacing:-9.677670px;}
.wsdf{word-spacing:-9.617894px;}
.ws3e{word-spacing:-9.558118px;}
.ws2c{word-spacing:-9.498343px;}
.ws90{word-spacing:-9.378792px;}
.wsab{word-spacing:-9.319016px;}
.ws9{word-spacing:-9.265218px;}
.ws65{word-spacing:-9.259240px;}
.ws133{word-spacing:-9.205442px;}
.wsa0{word-spacing:-9.199465px;}
.ws14{word-spacing:-9.145667px;}
.wsf1{word-spacing:-9.139689px;}
.wsf8{word-spacing:-9.042875px;}
.ws14f{word-spacing:-9.020138px;}
.wsbe{word-spacing:-8.995483px;}
.ws3d{word-spacing:-8.960362px;}
.wsd{word-spacing:-8.846789px;}
.wsa9{word-spacing:-8.840811px;}
.ws109{word-spacing:-8.804774px;}
.ws4f{word-spacing:-8.781036px;}
.ws58{word-spacing:-8.721260px;}
.ws50{word-spacing:-8.661484px;}
.ws63{word-spacing:-8.482158px;}
.ws6e{word-spacing:-8.469028px;}
.ws101{word-spacing:-8.422382px;}
.wsff{word-spacing:-8.362606px;}
.ws14e{word-spacing:-8.308808px;}
.wsf6{word-spacing:-8.302831px;}
.wsb{word-spacing:-8.249033px;}
.ws59{word-spacing:-8.243055px;}
.ws30{word-spacing:-8.183280px;}
.ws10a{word-spacing:-8.129482px;}
.ws2b{word-spacing:-8.063728px;}
.ws4e{word-spacing:-8.003953px;}
.ws21{word-spacing:-7.944177px;}
.ws103{word-spacing:-7.884402px;}
.ws131{word-spacing:-7.824626px;}
.ws2f{word-spacing:-7.764850px;}
.wsc4{word-spacing:-7.705075px;}
.wsf0{word-spacing:-7.645299px;}
.ws35{word-spacing:-7.585524px;}
.ws7e{word-spacing:-7.525748px;}
.ws8f{word-spacing:-7.465972px;}
.wsd3{word-spacing:-7.406197px;}
.ws33{word-spacing:-7.346421px;}
.ws130{word-spacing:-7.232848px;}
.ws162{word-spacing:-7.226870px;}
.wsc{word-spacing:-7.173072px;}
.ws152{word-spacing:-7.167094px;}
.wsa3{word-spacing:-7.107319px;}
.ws8b{word-spacing:-7.047543px;}
.ws163{word-spacing:-6.987768px;}
.ws32{word-spacing:-6.808441px;}
.wsc6{word-spacing:-6.765897px;}
.ws132{word-spacing:-6.754643px;}
.wsc7{word-spacing:-6.748665px;}
.ws6b{word-spacing:-6.688890px;}
.wsd2{word-spacing:-6.629114px;}
.ws66{word-spacing:-6.569338px;}
.ws89{word-spacing:-6.509563px;}
.wsfe{word-spacing:-6.449787px;}
.wsa{word-spacing:-6.395989px;}
.ws51{word-spacing:-6.390012px;}
.wsdc{word-spacing:-6.330236px;}
.ws8a{word-spacing:-6.031358px;}
.ws73{word-spacing:-5.971582px;}
.ws5c{word-spacing:-5.911807px;}
.ws14b{word-spacing:-5.858009px;}
.ws41{word-spacing:-5.852031px;}
.wsef{word-spacing:-5.792256px;}
.wsbb{word-spacing:-5.739897px;}
.ws22{word-spacing:-5.732480px;}
.ws61{word-spacing:-5.672704px;}
.wse4{word-spacing:-5.612929px;}
.ws3a{word-spacing:-5.553153px;}
.ws16f{word-spacing:-5.433602px;}
.wsbd{word-spacing:-5.254275px;}
.ws80{word-spacing:-5.194500px;}
.ws13c{word-spacing:-5.080926px;}
.ws149{word-spacing:-4.895622px;}
.wsc2{word-spacing:-4.835846px;}
.ws16d{word-spacing:-4.776070px;}
.wsa2{word-spacing:-4.596744px;}
.ws165{word-spacing:-4.483170px;}
.wsa6{word-spacing:-4.477192px;}
.ws14c{word-spacing:-4.417417px;}
.ws5d{word-spacing:-4.357641px;}
.ws29{word-spacing:-4.297866px;}
.ws159{word-spacing:-4.244068px;}
.wsdb{word-spacing:-4.238090px;}
.wsf5{word-spacing:-4.178314px;}
.wsc9{word-spacing:-4.118539px;}
.wsbc{word-spacing:-4.075483px;}
.ws14d{word-spacing:-4.064741px;}
.wsf4{word-spacing:-4.058763px;}
.ws3f{word-spacing:-3.998988px;}
.wse8{word-spacing:-3.879436px;}
.wsd8{word-spacing:-3.819661px;}
.ws77{word-spacing:-3.759885px;}
.ws9c{word-spacing:-3.640334px;}
.ws9a{word-spacing:-3.609897px;}
.ws1c{word-spacing:-3.580558px;}
.ws48{word-spacing:-3.520783px;}
.ws70{word-spacing:-3.401232px;}
.wscb{word-spacing:-3.341456px;}
.ws81{word-spacing:-3.281680px;}
.ws38{word-spacing:-3.221905px;}
.ws39{word-spacing:-3.162129px;}
.wsfb{word-spacing:-2.982802px;}
.ws91{word-spacing:-2.923027px;}
.ws1e{word-spacing:-2.863251px;}
.ws37{word-spacing:-2.803476px;}
.ws27{word-spacing:-2.743700px;}
.ws4b{word-spacing:-2.624149px;}
.ws164{word-spacing:-2.570351px;}
.ws16c{word-spacing:-2.564373px;}
.wsaf{word-spacing:-2.457897px;}
.wsb0{word-spacing:-2.444822px;}
.ws7d{word-spacing:-2.385046px;}
.ws75{word-spacing:-2.265495px;}
.ws12b{word-spacing:-2.211697px;}
.wse5{word-spacing:-2.205720px;}
.wsd0{word-spacing:-2.145944px;}
.ws8c{word-spacing:-2.086168px;}
.ws9d{word-spacing:-2.026393px;}
.ws92{word-spacing:-1.966617px;}
.ws45{word-spacing:-1.906842px;}
.ws13{word-spacing:-1.853044px;}
.ws68{word-spacing:-1.847066px;}
.ws126{word-spacing:-1.727515px;}
.ws79{word-spacing:-1.667739px;}
.ws82{word-spacing:-1.607964px;}
.ws17e{word-spacing:-1.548188px;}
.wsca{word-spacing:-1.488412px;}
.ws5a{word-spacing:-1.428637px;}
.ws47{word-spacing:-1.368861px;}
.ws116{word-spacing:-1.309086px;}
.ws3c{word-spacing:-1.249310px;}
.wsd5{word-spacing:-1.189534px;}
.wse9{word-spacing:-1.010208px;}
.ws25{word-spacing:-0.950432px;}
.ws7a{word-spacing:-0.890656px;}
.ws74{word-spacing:-0.830881px;}
.ws1d{word-spacing:-0.771105px;}
.wsfa{word-spacing:-0.722091px;}
.ws1f{word-spacing:-0.711330px;}
.ws127{word-spacing:-0.657532px;}
.wsf{word-spacing:-0.597756px;}
.ws85{word-spacing:-0.472227px;}
.ws23{word-spacing:-0.412452px;}
.ws139{word-spacing:-0.298878px;}
.ws71{word-spacing:-0.292900px;}
.ws12{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.086077px;}
.ws94{word-spacing:-0.059776px;}
.wsb6{word-spacing:-0.041843px;}
.ws42{word-spacing:0.000000px;}
.ws86{word-spacing:0.023047px;}
.ws44{word-spacing:0.065753px;}
.ws49{word-spacing:0.125529px;}
.ws11b{word-spacing:0.179327px;}
.ws40{word-spacing:0.185304px;}
.ws12f{word-spacing:0.239102px;}
.ws134{word-spacing:0.245080px;}
.ws108{word-spacing:0.304856px;}
.ws24{word-spacing:0.543958px;}
.ws15a{word-spacing:0.657532px;}
.wscf{word-spacing:0.663509px;}
.ws15b{word-spacing:0.723285px;}
.ws148{word-spacing:0.783060px;}
.ws7{word-spacing:0.836858px;}
.ws69{word-spacing:1.081938px;}
.ws141{word-spacing:1.195512px;}
.ws36{word-spacing:1.261265px;}
.ws88{word-spacing:1.321041px;}
.ws6{word-spacing:1.434614px;}
.wsdd{word-spacing:1.560143px;}
.ws12e{word-spacing:1.978572px;}
.ws105{word-spacing:2.157899px;}
.ws158{word-spacing:2.456777px;}
.wsfc{word-spacing:2.815431px;}
.ws107{word-spacing:2.988780px;}
.wse6{word-spacing:3.054533px;}
.wsd6{word-spacing:3.293636px;}
.ws150{word-spacing:3.466985px;}
.ws10f{word-spacing:3.532738px;}
.ws12d{word-spacing:3.592514px;}
.ws14a{word-spacing:3.812134px;}
.ws151{word-spacing:3.831616px;}
.ws11f{word-spacing:4.244068px;}
.ws10c{word-spacing:4.542946px;}
.ws155{word-spacing:4.728250px;}
.ws11c{word-spacing:4.788026px;}
.wsfd{word-spacing:4.907577px;}
.ws10d{word-spacing:4.967352px;}
.ws177{word-spacing:5.385782px;}
.ws11a{word-spacing:6.216662px;}
.ws16e{word-spacing:6.521518px;}
.ws119{word-spacing:6.820396px;}
.wsb9{word-spacing:6.973739px;}
.wsb7{word-spacing:6.997627px;}
.wsc5{word-spacing:7.119274px;}
.ws12a{word-spacing:7.238825px;}
.ws142{word-spacing:7.418152px;}
.ws170{word-spacing:7.477928px;}
.ws120{word-spacing:7.651277px;}
.wsf3{word-spacing:7.717030px;}
.ws135{word-spacing:7.836581px;}
.ws179{word-spacing:8.075684px;}
.ws156{word-spacing:8.195235px;}
.ws121{word-spacing:8.374562px;}
.ws115{word-spacing:8.733215px;}
.wsb4{word-spacing:8.792991px;}
.ws13e{word-spacing:9.988503px;}
.ws125{word-spacing:10.048278px;}
.ws153{word-spacing:10.161852px;}
.wsf2{word-spacing:10.646034px;}
.ws154{word-spacing:11.004688px;}
.ws157{word-spacing:11.961098px;}
.ws118{word-spacing:12.319751px;}
.wscd{word-spacing:12.439302px;}
.ws160{word-spacing:12.493100px;}
.ws122{word-spacing:12.917507px;}
.ws11d{word-spacing:13.216385px;}
.wsba{word-spacing:13.218763px;}
.wsb8{word-spacing:13.224763px;}
.ws161{word-spacing:13.634814px;}
.ws16a{word-spacing:14.232570px;}
.ws17d{word-spacing:15.069429px;}
.ws140{word-spacing:15.780758px;}
.ws16b{word-spacing:15.906287px;}
.ws96{word-spacing:16.524415px;}
.ws10e{word-spacing:16.683370px;}
.ws0{word-spacing:16.880672px;}
.ws1{word-spacing:16.886097px;}
.ws13f{word-spacing:17.161575px;}
.ws17a{word-spacing:17.580004px;}
.ws173{word-spacing:18.476638px;}
.ws13d{word-spacing:18.775516px;}
.ws175{word-spacing:19.134170px;}
.ws6d{word-spacing:19.462984px;}
.wsac{word-spacing:19.543323px;}
.ws110{word-spacing:19.911252px;}
.wsb5{word-spacing:20.566264px;}
.ws15d{word-spacing:20.688335px;}
.wsad{word-spacing:21.069411px;}
.ws113{word-spacing:21.758318px;}
.ws15f{word-spacing:23.192933px;}
.ws114{word-spacing:23.677115px;}
.ws17c{word-spacing:23.736891px;}
.wsaa{word-spacing:23.961696px;}
.ws17{word-spacing:24.687323px;}
.ws3{word-spacing:25.034189px;}
.ws15e{word-spacing:25.231281px;}
.ws123{word-spacing:25.763284px;}
.ws11e{word-spacing:25.838134px;}
.ws15c{word-spacing:26.247466px;}
.wsc1{word-spacing:26.380264px;}
.ws16{word-spacing:26.540366px;}
.ws124{word-spacing:28.040734px;}
.ws146{word-spacing:28.273859px;}
.ws168{word-spacing:28.333634px;}
.wsc0{word-spacing:29.419627px;}
.ws145{word-spacing:30.703923px;}
.ws147{word-spacing:30.730636px;}
.ws167{word-spacing:30.790412px;}
.wscc{word-spacing:31.418178px;}
.ws10b{word-spacing:31.447943px;}
.ws46{word-spacing:31.504255px;}
.ws5{word-spacing:31.926369px;}
.wsc3{word-spacing:32.059627px;}
.ws112{word-spacing:32.996131px;}
.ws144{word-spacing:33.958518px;}
.ws111{word-spacing:35.931113px;}
.ws2{word-spacing:39.974159px;}
.ws143{word-spacing:40.354508px;}
.ws178{word-spacing:43.576412px;}
.ws169{word-spacing:45.120140px;}
.ws172{word-spacing:55.531532px;}
.ws17b{word-spacing:61.628644px;}
.ws18{word-spacing:136.604516px;}
.ws99{word-spacing:215.730140px;}
.wsf7{word-spacing:258.297132px;}
._4{margin-left:-12.808258px;}
._1a{margin-left:-7.919102px;}
._5{margin-left:-6.912053px;}
._7{margin-left:-5.439572px;}
._1{margin-left:-4.208213px;}
._3{margin-left:-3.202064px;}
._0{margin-left:-1.434618px;}
._6{width:1.673717px;}
._9{width:3.108331px;}
._24{width:5.178067px;}
._1e{width:15.183002px;}
._14{width:16.199198px;}
._b{width:18.094328px;}
._22{width:19.427074px;}
._27{width:21.160559px;}
._16{width:23.312470px;}
._e{width:24.677784px;}
._8{width:26.361043px;}
._10{width:27.708163px;}
._1f{width:29.222129px;}
._d{width:30.679268px;}
._15{width:32.278824px;}
._a{width:34.046274px;}
._c{width:35.745809px;}
._1b{width:37.299974px;}
._20{width:38.674813px;}
._12{width:39.760313px;}
._23{width:41.185392px;}
._1d{width:43.277534px;}
._11{width:45.457178px;}
._25{width:46.565192px;}
._17{width:47.999807px;}
._f{width:49.894948px;}
._1c{width:52.243874px;}
._13{width:53.678489px;}
._2b{width:56.189064px;}
._2{width:57.384720px;}
._21{width:60.433132px;}
._26{width:70.834093px;}
._28{width:72.276840px;}
._2a{width:78.903792px;}
._29{width:80.612885px;}
._2c{width:127.836493px;}
._19{width:136.690594px;}
._18{width:1203.740143px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.432600px;}
.fs7{font-size:29.887800px;}
.fs8{font-size:38.405640px;}
.fs6{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs5{font-size:57.616560px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y12b{bottom:3.543469px;}
.y121{bottom:13.716300px;}
.y122{bottom:21.031751px;}
.y12d{bottom:22.117534px;}
.y96{bottom:23.338891px;}
.y131{bottom:33.147634px;}
.y123{bottom:51.264671px;}
.y132{bottom:57.322612px;}
.y43{bottom:58.093500px;}
.y42{bottom:58.453500px;}
.y95{bottom:60.767904px;}
.y124{bottom:81.440531px;}
.y94{bottom:98.196917px;}
.y13f{bottom:99.957536px;}
.y12c{bottom:101.100790px;}
.y133{bottom:105.615510px;}
.y125{bottom:111.673314px;}
.y139{bottom:112.016221px;}
.y28{bottom:121.180500px;}
.y41{bottom:123.276000px;}
.y11e{bottom:124.324500px;}
.y134{bottom:129.790489px;}
.y92{bottom:135.626050px;}
.y27{bottom:139.113000px;}
.ydb{bottom:139.114500px;}
.y40{bottom:141.208500px;}
.y126{bottom:141.849174px;}
.y11d{bottom:142.257000px;}
.y142{bottom:142.939500px;}
.y135{bottom:153.908545px;}
.y6f{bottom:157.045500px;}
.y26{bottom:157.047000px;}
.y3f{bottom:159.141000px;}
.y11c{bottom:160.191000px;}
.y98{bottom:169.414085px;}
.y127{bottom:172.025034px;}
.y197{bottom:174.978000px;}
.y25{bottom:174.979500px;}
.y141{bottom:175.293000px;}
.y3e{bottom:177.073500px;}
.y136{bottom:178.083524px;}
.y11b{bottom:178.123500px;}
.yda{bottom:180.345000px;}
.y16b{bottom:186.979500px;}
.y140{bottom:189.490500px;}
.y24{bottom:192.912000px;}
.y3d{bottom:195.006000px;}
.y11a{bottom:196.056000px;}
.y128{bottom:202.258502px;}
.y16a{bottom:204.913500px;}
.y13e{bottom:207.765907px;}
.y23{bottom:210.844500px;}
.y3c{bottom:212.940000px;}
.y119{bottom:213.988500px;}
.y93{bottom:217.684994px;}
.y169{bottom:222.846000px;}
.y1c0{bottom:223.276500px;}
.y137{bottom:226.375873px;}
.y196{bottom:227.760000px;}
.y22{bottom:228.777000px;}
.y13c{bottom:229.233664px;}
.y118{bottom:231.921000px;}
.y129{bottom:232.434362px;}
.yd9{bottom:237.964500px;}
.y3b{bottom:239.376000px;}
.y168{bottom:240.778500px;}
.y13b{bottom:240.835596px;}
.y1bf{bottom:241.210500px;}
.y195{bottom:245.692500px;}
.y21{bottom:246.709500px;}
.yf0{bottom:246.711000px;}
.y97{bottom:246.764386px;}
.y138{bottom:250.550851px;}
.y12f{bottom:252.322997px;}
.y13a{bottom:252.436843px;}
.yd8{bottom:255.897000px;}
.y3a{bottom:257.308500px;}
.y117{bottom:258.358500px;}
.y167{bottom:258.711000px;}
.y1be{bottom:259.143000px;}
.y12a{bottom:262.610222px;}
.y194{bottom:263.625000px;}
.y12e{bottom:263.752790px;}
.y6e{bottom:264.642000px;}
.y20{bottom:264.643500px;}
.y8f{bottom:273.147000px;}
.yd7{bottom:273.829500px;}
.y91{bottom:273.946942px;}
.y39{bottom:275.241000px;}
.y116{bottom:276.291000px;}
.y1bd{bottom:277.075500px;}
.y193{bottom:281.559000px;}
.y1d8{bottom:282.574500px;}
.y1f{bottom:282.576000px;}
.y166{bottom:288.645000px;}
.y8e{bottom:291.079500px;}
.yd6{bottom:291.762000px;}
.y38{bottom:293.175000px;}
.y115{bottom:294.223500px;}
.y1bc{bottom:295.008000px;}
.y192{bottom:299.491500px;}
.y1e{bottom:300.508500px;}
.y165{bottom:306.577500px;}
.y8d{bottom:309.012000px;}
.yd5{bottom:309.696000px;}
.y37{bottom:311.107500px;}
.y114{bottom:312.156000px;}
.y191{bottom:317.424000px;}
.y1d{bottom:318.441000px;}
.y164{bottom:324.510000px;}
.y1bb{bottom:325.374000px;}
.y8c{bottom:326.944500px;}
.yd4{bottom:327.628500px;}
.y36{bottom:329.040000px;}
.y113{bottom:330.088500px;}
.y6d{bottom:336.373500px;}
.y163{bottom:342.444000px;}
.y1ba{bottom:343.306500px;}
.y8b{bottom:344.878500px;}
.yd3{bottom:345.561000px;}
.y35{bottom:346.972500px;}
.y112{bottom:348.022500px;}
.y190{bottom:352.272000px;}
.y6c{bottom:354.306000px;}
.y1c{bottom:359.683500px;}
.yef{bottom:360.270000px;}
.y162{bottom:360.376500px;}
.y1b9{bottom:361.239000px;}
.yb0{bottom:362.755500px;}
.y8a{bottom:362.811000px;}
.yd2{bottom:363.493500px;}
.y34{bottom:364.905000px;}
.y111{bottom:365.955000px;}
.y18f{bottom:370.206000px;}
.yaf{bottom:371.572500px;}
.y1d7{bottom:372.238500px;}
.y6b{bottom:372.240000px;}
.y161{bottom:378.309000px;}
.y1b8{bottom:379.171500px;}
.y89{bottom:380.743500px;}
.y33{bottom:382.837500px;}
.y110{bottom:383.887500px;}
.yee{bottom:387.169500px;}
.y18e{bottom:388.138500px;}
.yd1{bottom:389.931000px;}
.y1d6{bottom:390.171000px;}
.y6a{bottom:390.172500px;}
.y1b7{bottom:397.105500px;}
.y32{bottom:400.771500px;}
.y10f{bottom:401.820000px;}
.y18d{bottom:406.071000px;}
.y88{bottom:407.179500px;}
.yd0{bottom:407.863500px;}
.y69{bottom:408.105000px;}
.y160{bottom:408.243000px;}
.yae{bottom:412.464000px;}
.y1b{bottom:417.657000px;}
.y31{bottom:418.704000px;}
.y10e{bottom:419.752500px;}
.y18c{bottom:424.003500px;}
.y87{bottom:425.113500px;}
.y68{bottom:426.037500px;}
.y15f{bottom:426.175500px;}
.y1b6{bottom:427.470000px;}
.yad{bottom:430.396500px;}
.y1a{bottom:435.589500px;}
.y30{bottom:436.636500px;}
.y10d{bottom:437.686500px;}
.ycf{bottom:439.006500px;}
.y18b{bottom:441.936000px;}
.y86{bottom:443.046000px;}
.y67{bottom:443.970000px;}
.y15e{bottom:444.108000px;}
.y1b5{bottom:445.402500px;}
.yed{bottom:448.069500px;}
.yac{bottom:448.329000px;}
.y2f{bottom:454.569000px;}
.y10c{bottom:455.619000px;}
.y18a{bottom:459.868500px;}
.y85{bottom:460.978500px;}
.y66{bottom:461.902500px;}
.y15d{bottom:462.040500px;}
.y1b4{bottom:463.336500px;}
.yec{bottom:466.002000px;}
.yab{bottom:466.261500px;}
.yce{bottom:470.149500px;}
.y19{bottom:476.832000px;}
.y84{bottom:478.911000px;}
.y1d5{bottom:479.835000px;}
.y65{bottom:479.836500px;}
.y2e{bottom:481.006500px;}
.y1b3{bottom:481.269000px;}
.y10b{bottom:482.055000px;}
.yeb{bottom:483.934500px;}
.yaa{bottom:484.195500px;}
.ycd{bottom:488.082000px;}
.y189{bottom:494.718000px;}
.y83{bottom:496.843500px;}
.y1d4{bottom:497.767500px;}
.y64{bottom:497.769000px;}
.y13d{bottom:498.189000px;}
.y2d{bottom:498.939000px;}
.y1b2{bottom:499.201500px;}
.y10a{bottom:499.987500px;}
.yea{bottom:501.867000px;}
.ya9{bottom:502.128000px;}
.y15c{bottom:503.283000px;}
.ycc{bottom:506.014500px;}
.y130{bottom:512.385000px;}
.y188{bottom:512.650500px;}
.y82{bottom:514.776000px;}
.y63{bottom:515.701500px;}
.y2c{bottom:516.871500px;}
.y1b1{bottom:517.134000px;}
.y109{bottom:517.920000px;}
.ye9{bottom:519.801000px;}
.ycb{bottom:523.947000px;}
.ya8{bottom:528.564000px;}
.y187{bottom:530.583000px;}
.y120{bottom:530.661907px;}
.y81{bottom:532.710000px;}
.y62{bottom:533.634000px;}
.y18{bottom:534.804000px;}
.y108{bottom:535.854000px;}
.ye8{bottom:537.733500px;}
.ya7{bottom:546.496500px;}
.y1b0{bottom:547.500000px;}
.y186{bottom:548.515500px;}
.yca{bottom:550.384500px;}
.y61{bottom:551.566500px;}
.y17{bottom:552.736500px;}
.y107{bottom:553.786500px;}
.ye7{bottom:555.666000px;}
.y80{bottom:559.146000px;}
.y15b{bottom:561.249000px;}
.ya6{bottom:564.429000px;}
.y1af{bottom:565.432500px;}
.y185{bottom:566.449500px;}
.yc9{bottom:568.317000px;}
.y60{bottom:569.499000px;}
.y2b{bottom:570.669000px;}
.y16{bottom:570.670500px;}
.y106{bottom:571.719000px;}
.y7f{bottom:577.078500px;}
.y15a{bottom:579.181500px;}
.ya5{bottom:582.363000px;}
.y1ae{bottom:583.365000px;}
.y184{bottom:584.382000px;}
.yc8{bottom:586.249500px;}
.y1d3{bottom:587.431500px;}
.y5f{bottom:587.433000px;}
.y15{bottom:588.603000px;}
.y105{bottom:589.651500px;}
.y7e{bottom:595.011000px;}
.ye6{bottom:595.444500px;}
.y159{bottom:597.115500px;}
.ya4{bottom:600.295500px;}
.y1ad{bottom:601.297500px;}
.y183{bottom:602.314500px;}
.yc7{bottom:604.182000px;}
.y5e{bottom:605.365500px;}
.y14{bottom:606.535500px;}
.y104{bottom:607.584000px;}
.y7d{bottom:612.945000px;}
.y158{bottom:615.048000px;}
.ya3{bottom:618.228000px;}
.y1ac{bottom:619.230000px;}
.yc6{bottom:622.116000px;}
.y5d{bottom:623.298000px;}
.y13{bottom:624.468000px;}
.y103{bottom:625.518000px;}
.ye5{bottom:628.104000px;}
.y7c{bottom:630.877500px;}
.y157{bottom:632.980500px;}
.ya2{bottom:636.160500px;}
.y182{bottom:637.162500px;}
.y1ab{bottom:637.164000px;}
.yc5{bottom:640.048500px;}
.y5c{bottom:641.230500px;}
.y12{bottom:642.400500px;}
.y102{bottom:643.450500px;}
.y7b{bottom:648.810000px;}
.y156{bottom:650.913000px;}
.ya1{bottom:654.093000px;}
.y181{bottom:655.096500px;}
.yc4{bottom:657.981000px;}
.y5b{bottom:659.163000px;}
.y11{bottom:660.333000px;}
.ye4{bottom:660.765000px;}
.y101{bottom:661.383000px;}
.y7a{bottom:666.742500px;}
.y1aa{bottom:667.528500px;}
.y155{bottom:668.845500px;}
.ya0{bottom:672.027000px;}
.y180{bottom:673.029000px;}
.y5a{bottom:677.095500px;}
.y2a{bottom:678.265500px;}
.y10{bottom:678.267000px;}
.y100{bottom:679.315500px;}
.yc3{bottom:683.839500px;}
.y79{bottom:684.675000px;}
.y1a9{bottom:685.461000px;}
.y154{bottom:686.779500px;}
.y9f{bottom:689.959500px;}
.y17f{bottom:690.961500px;}
.ye3{bottom:693.424500px;}
.y59{bottom:695.029500px;}
.yf{bottom:696.199500px;}
.yff{bottom:697.248000px;}
.y1a8{bottom:703.395000px;}
.y153{bottom:704.712000px;}
.y9e{bottom:707.892000px;}
.y17e{bottom:708.894000px;}
.y58{bottom:712.962000px;}
.ye{bottom:714.132000px;}
.yc2{bottom:714.984000px;}
.y1d2{bottom:718.344000px;}
.y1a7{bottom:721.327500px;}
.y152{bottom:722.644500px;}
.yfe{bottom:723.685500px;}
.y9d{bottom:725.824500px;}
.ye2{bottom:726.084000px;}
.y78{bottom:726.582000px;}
.y17d{bottom:726.826500px;}
.y57{bottom:730.894500px;}
.yd{bottom:732.064500px;}
.y1a6{bottom:739.260000px;}
.y151{bottom:740.577000px;}
.yfd{bottom:741.618000px;}
.y9c{bottom:743.757000px;}
.yc1{bottom:746.127000px;}
.y56{bottom:748.827000px;}
.yc{bottom:749.997000px;}
.y77{bottom:753.480000px;}
.y1a5{bottom:757.192500px;}
.y150{bottom:758.509500px;}
.ye1{bottom:758.745000px;}
.yfc{bottom:759.550500px;}
.y17c{bottom:761.676000px;}
.y9b{bottom:761.689500px;}
.yc0{bottom:764.059500px;}
.y55{bottom:766.759500px;}
.yb{bottom:767.929500px;}
.y1a4{bottom:775.125000px;}
.y1d1{bottom:776.338500px;}
.y14f{bottom:776.442000px;}
.yfb{bottom:777.483000px;}
.y17b{bottom:779.608500px;}
.y9a{bottom:779.623500px;}
.ybf{bottom:781.992000px;}
.y54{bottom:784.693500px;}
.y29{bottom:785.862000px;}
.ya{bottom:785.863500px;}
.y1d0{bottom:794.272500px;}
.y14e{bottom:794.376000px;}
.yfa{bottom:795.415500px;}
.y17a{bottom:797.541000px;}
.ye0{bottom:798.523500px;}
.y53{bottom:802.626000px;}
.y1a3{bottom:805.491000px;}
.y1cf{bottom:812.205000px;}
.y14d{bottom:812.308500px;}
.yf9{bottom:813.349500px;}
.y76{bottom:814.770000px;}
.ydf{bottom:816.456000px;}
.ybe{bottom:817.735500px;}
.y52{bottom:820.558500px;}
.y1a2{bottom:823.423500px;}
.ybd{bottom:827.986500px;}
.y1ce{bottom:830.137500px;}
.y14c{bottom:830.241000px;}
.yf8{bottom:831.282000px;}
.y99{bottom:831.498000px;}
.y179{bottom:832.390500px;}
.y75{bottom:832.702500px;}
.yde{bottom:834.388500px;}
.y51{bottom:838.491000px;}
.y1a1{bottom:841.356000px;}
.y9{bottom:841.896000px;}
.y1cd{bottom:848.070000px;}
.y14b{bottom:848.173500px;}
.yf7{bottom:849.214500px;}
.y178{bottom:850.323000px;}
.y74{bottom:850.635000px;}
.ydd{bottom:852.321000px;}
.y90{bottom:856.380000px;}
.y50{bottom:856.423500px;}
.y1a0{bottom:859.290000px;}
.ybc{bottom:862.969500px;}
.y11f{bottom:863.331000px;}
.y14a{bottom:866.106000px;}
.yf6{bottom:867.147000px;}
.y177{bottom:868.255500px;}
.y73{bottom:868.569000px;}
.y4f{bottom:874.356000px;}
.y19f{bottom:877.222500px;}
.y8{bottom:877.762500px;}
.y1cc{bottom:878.031000px;}
.ybb{bottom:880.903500px;}
.yf5{bottom:885.079500px;}
.y176{bottom:886.188000px;}
.y72{bottom:886.501500px;}
.y4e{bottom:892.290000px;}
.y149{bottom:892.543500px;}
.y19e{bottom:895.155000px;}
.y1cb{bottom:895.963500px;}
.ydc{bottom:902.797500px;}
.yf4{bottom:903.012000px;}
.y175{bottom:904.120500px;}
.y71{bottom:904.434000px;}
.y4d{bottom:910.222500px;}
.yba{bottom:910.344000px;}
.y148{bottom:910.476000px;}
.y7{bottom:913.627500px;}
.y1ca{bottom:913.896000px;}
.y174{bottom:922.053000px;}
.y19d{bottom:925.521000px;}
.yb9{bottom:927.529500px;}
.y4c{bottom:928.155000px;}
.y147{bottom:928.408500px;}
.yf3{bottom:929.449500px;}
.y6{bottom:931.560000px;}
.y1c9{bottom:931.830000px;}
.y19c{bottom:943.453500px;}
.y4b{bottom:946.087500px;}
.y146{bottom:946.341000px;}
.yf2{bottom:947.382000px;}
.y1c8{bottom:949.762500px;}
.y70{bottom:955.092000px;}
.y173{bottom:956.902500px;}
.y19b{bottom:961.386000px;}
.y145{bottom:964.273500px;}
.yb8{bottom:965.314500px;}
.y1c7{bottom:967.695000px;}
.y172{bottom:974.835000px;}
.y5{bottom:979.257000px;}
.y19a{bottom:979.318500px;}
.y144{bottom:982.207500px;}
.yb7{bottom:983.247000px;}
.y4a{bottom:987.372000px;}
.y171{bottom:992.767500px;}
.y199{bottom:997.251000px;}
.y1c6{bottom:997.656000px;}
.yb6{bottom:1001.179500px;}
.yf1{bottom:1001.181000px;}
.y170{bottom:1010.700000px;}
.y1c5{bottom:1015.588500px;}
.yb5{bottom:1019.113500px;}
.y143{bottom:1023.448500px;}
.y198{bottom:1027.617000px;}
.y16f{bottom:1028.634000px;}
.y1c4{bottom:1033.521000px;}
.yb4{bottom:1037.046000px;}
.y4{bottom:1045.206000px;}
.y49{bottom:1045.549500px;}
.y16e{bottom:1046.566500px;}
.y1c3{bottom:1051.453500px;}
.yb3{bottom:1054.978500px;}
.y48{bottom:1063.482000px;}
.y16d{bottom:1064.499000px;}
.y1c2{bottom:1069.386000px;}
.yb2{bottom:1072.911000px;}
.y3{bottom:1078.083000px;}
.y47{bottom:1081.416000px;}
.y1c1{bottom:1087.320000px;}
.yb1{bottom:1090.843500px;}
.y16c{bottom:1099.347000px;}
.y46{bottom:1099.348500px;}
.y2{bottom:1110.960000px;}
.y45{bottom:1117.281000px;}
.y44{bottom:1135.213500px;}
.y1{bottom:1189.350000px;}
.h16{height:28.611345px;}
.h8{height:34.287370px;}
.h2{height:35.865450px;}
.h9{height:35.913271px;}
.hb{height:39.409727px;}
.h15{height:40.055882px;}
.h13{height:42.141798px;}
.h7{height:42.201574px;}
.h5{height:44.891476px;}
.h11{height:44.897476px;}
.he{height:51.111488px;}
.h4{height:51.287808px;}
.hf{height:59.181024px;}
.h6{height:60.426194px;}
.h3{height:72.511265px;}
.hd{height:80.159476px;}
.h12{height:82.575798px;}
.hc{height:86.673024px;}
.h10{height:122.841488px;}
.h14{height:273.983092px;}
.ha{height:293.779778px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:255.130703px;}
.w3{width:339.649879px;}
.w4{width:339.684170px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.493782px;}
.x29{left:10.378576px;}
.x27{left:15.602291px;}
.x26{left:20.917358px;}
.x25{left:25.603669px;}
.x2a{left:27.295437px;}
.x10{left:33.859938px;}
.x14{left:50.931671px;}
.x11{left:73.631002px;}
.x13{left:77.695712px;}
.x12{left:79.497809px;}
.x1{left:85.039500px;}
.x3{left:86.607000px;}
.xd{left:88.569000px;}
.xa{left:92.928000px;}
.x17{left:99.984000px;}
.x18{left:103.042500px;}
.x24{left:104.323361px;}
.x5{left:105.352500px;}
.x33{left:115.752000px;}
.x16{left:118.923792px;}
.x2{left:123.546000px;}
.x2d{left:130.441500px;}
.x8{left:135.034500px;}
.x6{left:139.516500px;}
.x23{left:145.518000px;}
.x28{left:147.884346px;}
.x2c{left:195.091736px;}
.x19{left:198.987000px;}
.x7{left:216.376500px;}
.x31{left:236.133000px;}
.x2f{left:247.956413px;}
.x2b{left:333.797819px;}
.x9{left:345.714000px;}
.x4{left:393.931500px;}
.x2e{left:449.461361px;}
.xb{left:453.928500px;}
.xe{left:461.817000px;}
.xc{left:468.873000px;}
.x34{left:484.641000px;}
.xf{left:514.407000px;}
.x21{left:521.707500px;}
.x1a{left:524.709000px;}
.x1c{left:565.519500px;}
.x22{left:569.101500px;}
.x1b{left:570.693000px;}
.x32{left:581.976000px;}
.x1d{left:595.779000px;}
.x30{left:613.342500px;}
.x1e{left:623.353500px;}
.x1f{left:664.557000px;}
.x20{left:692.131500px;}
@media print{
.va{vertical-align:-43.040000pt;}
.vd{vertical-align:-13.285333pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.285333pt;}
.vc{vertical-align:27.973333pt;}
.v3{vertical-align:31.349333pt;}
.v2{vertical-align:32.410667pt;}
.vb{vertical-align:35.941333pt;}
.v6{vertical-align:50.480000pt;}
.v8{vertical-align:61.104000pt;}
.v1{vertical-align:74.917333pt;}
.v9{vertical-align:83.045333pt;}
.v7{vertical-align:104.144000pt;}
.ls31{letter-spacing:-0.010243pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000058pt;}
.lsc{letter-spacing:0.000749pt;}
.lsf{letter-spacing:0.001995pt;}
.ls20{letter-spacing:0.002122pt;}
.ls5{letter-spacing:0.002906pt;}
.ls1f{letter-spacing:0.004074pt;}
.lsb{letter-spacing:0.004465pt;}
.ls2c{letter-spacing:0.005095pt;}
.ls2d{letter-spacing:1.480296pt;}
.ls11{letter-spacing:1.905799pt;}
.ls12{letter-spacing:2.657014pt;}
.ls27{letter-spacing:4.692690pt;}
.ls2{letter-spacing:7.529433pt;}
.ls21{letter-spacing:8.373095pt;}
.ls13{letter-spacing:8.854082pt;}
.ls24{letter-spacing:11.803145pt;}
.lse{letter-spacing:11.804745pt;}
.ls1d{letter-spacing:11.808479pt;}
.ls26{letter-spacing:11.810079pt;}
.lsd{letter-spacing:11.810906pt;}
.ls2e{letter-spacing:13.288296pt;}
.ls1b{letter-spacing:14.756984pt;}
.ls7{letter-spacing:14.757812pt;}
.ls17{letter-spacing:14.759329pt;}
.ls6{letter-spacing:14.760239pt;}
.ls25{letter-spacing:14.868980pt;}
.ls23{letter-spacing:14.874313pt;}
.ls1{letter-spacing:15.050792pt;}
.ls0{letter-spacing:15.056125pt;}
.ls10{letter-spacing:16.615919pt;}
.lsa{letter-spacing:17.704239pt;}
.ls16{letter-spacing:17.709573pt;}
.ls1c{letter-spacing:19.184058pt;}
.ls1e{letter-spacing:19.189391pt;}
.ls18{letter-spacing:21.136479pt;}
.ls30{letter-spacing:22.018963pt;}
.ls9{letter-spacing:23.346906pt;}
.ls15{letter-spacing:24.365573pt;}
.ls2b{letter-spacing:25.786724pt;}
.ls32{letter-spacing:26.563733pt;}
.ls4{letter-spacing:26.570933pt;}
.ls2a{letter-spacing:26.591356pt;}
.ls29{letter-spacing:29.829095pt;}
.ls33{letter-spacing:30.992439pt;}
.ls22{letter-spacing:173.116745pt;}
.ls28{letter-spacing:182.530079pt;}
.ls14{letter-spacing:183.788745pt;}
.ls19{letter-spacing:328.892745pt;}
.ls8{letter-spacing:333.410079pt;}
.ls2f{letter-spacing:341.628745pt;}
.wsb2{word-spacing:-34.611401pt;}
.ws106{word-spacing:-27.151406pt;}
.ws98{word-spacing:-25.775977pt;}
.ws9b{word-spacing:-25.770644pt;}
.ws9f{word-spacing:-25.760708pt;}
.wsb1{word-spacing:-25.759327pt;}
.ws93{word-spacing:-25.755374pt;}
.ws95{word-spacing:-25.738045pt;}
.wsae{word-spacing:-23.829090pt;}
.wsb3{word-spacing:-17.948269pt;}
.ws104{word-spacing:-14.659634pt;}
.wsa5{word-spacing:-14.500232pt;}
.wsd1{word-spacing:-14.393964pt;}
.wse3{word-spacing:-14.340831pt;}
.ws128{word-spacing:-14.234563pt;}
.ws67{word-spacing:-14.128295pt;}
.wsd9{word-spacing:-14.075161pt;}
.ws166{word-spacing:-14.022027pt;}
.ws1a{word-spacing:-13.968894pt;}
.wse0{word-spacing:-13.915760pt;}
.wsbf{word-spacing:-13.809492pt;}
.ws5f{word-spacing:-13.756358pt;}
.wsde{word-spacing:-13.650090pt;}
.wsda{word-spacing:-13.490689pt;}
.ws100{word-spacing:-13.437555pt;}
.ws137{word-spacing:-13.331287pt;}
.ws26{word-spacing:-13.278153pt;}
.ws11{word-spacing:-13.124065pt;}
.ws1b{word-spacing:-13.065618pt;}
.ws57{word-spacing:-13.012484pt;}
.ws8d{word-spacing:-12.959350pt;}
.ws20{word-spacing:-12.906216pt;}
.wsa4{word-spacing:-12.853082pt;}
.wsce{word-spacing:-12.799948pt;}
.ws53{word-spacing:-12.693681pt;}
.ws54{word-spacing:-12.587413pt;}
.wsa1{word-spacing:-12.534279pt;}
.ws3b{word-spacing:-12.481145pt;}
.ws102{word-spacing:-12.428011pt;}
.wsf9{word-spacing:-12.331339pt;}
.ws176{word-spacing:-12.321744pt;}
.ws138{word-spacing:-12.273923pt;}
.ws6c{word-spacing:-12.268610pt;}
.ws8{word-spacing:-12.220789pt;}
.ws13b{word-spacing:-12.215476pt;}
.ws52{word-spacing:-12.162342pt;}
.ws4d{word-spacing:-12.056074pt;}
.ws7c{word-spacing:-12.002940pt;}
.wseb{word-spacing:-11.949807pt;}
.ws72{word-spacing:-11.737271pt;}
.ws60{word-spacing:-11.684137pt;}
.wsa7{word-spacing:-11.631003pt;}
.ws87{word-spacing:-11.574527pt;}
.ws136{word-spacing:-11.530049pt;}
.ws7b{word-spacing:-11.524736pt;}
.ws31{word-spacing:-11.471602pt;}
.ws84{word-spacing:-11.418468pt;}
.ws62{word-spacing:-11.365334pt;}
.ws171{word-spacing:-11.312200pt;}
.ws129{word-spacing:-11.259066pt;}
.ws2d{word-spacing:-11.205932pt;}
.ws4c{word-spacing:-11.152799pt;}
.ws4a{word-spacing:-11.099665pt;}
.ws174{word-spacing:-11.046531pt;}
.ws43{word-spacing:-10.993397pt;}
.wse1{word-spacing:-10.940263pt;}
.ws2a{word-spacing:-10.833995pt;}
.ws83{word-spacing:-10.780862pt;}
.wsed{word-spacing:-10.674594pt;}
.wsa8{word-spacing:-10.515192pt;}
.wsd7{word-spacing:-10.462058pt;}
.wse{word-spacing:-10.414238pt;}
.ws2e{word-spacing:-10.355791pt;}
.ws12c{word-spacing:-10.307970pt;}
.ws7f{word-spacing:-10.302657pt;}
.ws10{word-spacing:-10.201702pt;}
.ws13a{word-spacing:-10.148569pt;}
.ws56{word-spacing:-10.143255pt;}
.wsec{word-spacing:-10.090121pt;}
.ws28{word-spacing:-10.036987pt;}
.wsea{word-spacing:-9.930720pt;}
.ws5e{word-spacing:-9.877586pt;}
.ws76{word-spacing:-9.824452pt;}
.ws5b{word-spacing:-9.611916pt;}
.wsee{word-spacing:-9.558783pt;}
.wse7{word-spacing:-9.505649pt;}
.wsd4{word-spacing:-9.452515pt;}
.ws19{word-spacing:-9.239979pt;}
.ws6f{word-spacing:-9.186846pt;}
.ws117{word-spacing:-9.133712pt;}
.ws64{word-spacing:-9.027444pt;}
.ws78{word-spacing:-8.974310pt;}
.wsc8{word-spacing:-8.921176pt;}
.ws4{word-spacing:-8.868042pt;}
.ws9e{word-spacing:-8.853672pt;}
.ws97{word-spacing:-8.836150pt;}
.ws6a{word-spacing:-8.814908pt;}
.ws8e{word-spacing:-8.761775pt;}
.ws55{word-spacing:-8.708641pt;}
.wse2{word-spacing:-8.655507pt;}
.ws34{word-spacing:-8.602373pt;}
.wsdf{word-spacing:-8.549239pt;}
.ws3e{word-spacing:-8.496105pt;}
.ws2c{word-spacing:-8.442971pt;}
.ws90{word-spacing:-8.336704pt;}
.wsab{word-spacing:-8.283570pt;}
.ws9{word-spacing:-8.235749pt;}
.ws65{word-spacing:-8.230436pt;}
.ws133{word-spacing:-8.182615pt;}
.wsa0{word-spacing:-8.177302pt;}
.ws14{word-spacing:-8.129482pt;}
.wsf1{word-spacing:-8.124168pt;}
.wsf8{word-spacing:-8.038112pt;}
.ws14f{word-spacing:-8.017900pt;}
.wsbe{word-spacing:-7.995985pt;}
.ws3d{word-spacing:-7.964767pt;}
.wsd{word-spacing:-7.863812pt;}
.wsa9{word-spacing:-7.858499pt;}
.ws109{word-spacing:-7.826466pt;}
.ws4f{word-spacing:-7.805365pt;}
.ws58{word-spacing:-7.752231pt;}
.ws50{word-spacing:-7.699097pt;}
.ws63{word-spacing:-7.539696pt;}
.ws6e{word-spacing:-7.528025pt;}
.ws101{word-spacing:-7.486562pt;}
.wsff{word-spacing:-7.433428pt;}
.ws14e{word-spacing:-7.385607pt;}
.wsf6{word-spacing:-7.380294pt;}
.wsb{word-spacing:-7.332474pt;}
.ws59{word-spacing:-7.327160pt;}
.ws30{word-spacing:-7.274026pt;}
.ws10a{word-spacing:-7.226206pt;}
.ws2b{word-spacing:-7.167759pt;}
.ws4e{word-spacing:-7.114625pt;}
.ws21{word-spacing:-7.061491pt;}
.ws103{word-spacing:-7.008357pt;}
.ws131{word-spacing:-6.955223pt;}
.ws2f{word-spacing:-6.902089pt;}
.wsc4{word-spacing:-6.848955pt;}
.wsf0{word-spacing:-6.795822pt;}
.ws35{word-spacing:-6.742688pt;}
.ws7e{word-spacing:-6.689554pt;}
.ws8f{word-spacing:-6.636420pt;}
.wsd3{word-spacing:-6.583286pt;}
.ws33{word-spacing:-6.530152pt;}
.ws130{word-spacing:-6.429198pt;}
.ws162{word-spacing:-6.423884pt;}
.wsc{word-spacing:-6.376064pt;}
.ws152{word-spacing:-6.370751pt;}
.wsa3{word-spacing:-6.317617pt;}
.ws8b{word-spacing:-6.264483pt;}
.ws163{word-spacing:-6.211349pt;}
.ws32{word-spacing:-6.051947pt;}
.wsc6{word-spacing:-6.014131pt;}
.ws132{word-spacing:-6.004127pt;}
.wsc7{word-spacing:-5.998814pt;}
.ws6b{word-spacing:-5.945680pt;}
.wsd2{word-spacing:-5.892546pt;}
.ws66{word-spacing:-5.839412pt;}
.ws89{word-spacing:-5.786278pt;}
.wsfe{word-spacing:-5.733144pt;}
.wsa{word-spacing:-5.685324pt;}
.ws51{word-spacing:-5.680010pt;}
.wsdc{word-spacing:-5.626876pt;}
.ws8a{word-spacing:-5.361207pt;}
.ws73{word-spacing:-5.308073pt;}
.ws5c{word-spacing:-5.254939pt;}
.ws14b{word-spacing:-5.207119pt;}
.ws41{word-spacing:-5.201806pt;}
.wsef{word-spacing:-5.148672pt;}
.wsbb{word-spacing:-5.102131pt;}
.ws22{word-spacing:-5.095538pt;}
.ws61{word-spacing:-5.042404pt;}
.wse4{word-spacing:-4.989270pt;}
.ws3a{word-spacing:-4.936136pt;}
.ws16f{word-spacing:-4.829868pt;}
.wsbd{word-spacing:-4.670467pt;}
.ws80{word-spacing:-4.617333pt;}
.ws13c{word-spacing:-4.516379pt;}
.ws149{word-spacing:-4.351664pt;}
.wsc2{word-spacing:-4.298530pt;}
.ws16d{word-spacing:-4.245396pt;}
.wsa2{word-spacing:-4.085994pt;}
.ws165{word-spacing:-3.985040pt;}
.wsa6{word-spacing:-3.979727pt;}
.ws14c{word-spacing:-3.926593pt;}
.ws5d{word-spacing:-3.873459pt;}
.ws29{word-spacing:-3.820325pt;}
.ws159{word-spacing:-3.772505pt;}
.wsdb{word-spacing:-3.767191pt;}
.wsf5{word-spacing:-3.714057pt;}
.wsc9{word-spacing:-3.660923pt;}
.wsbc{word-spacing:-3.622651pt;}
.ws14d{word-spacing:-3.613103pt;}
.wsf4{word-spacing:-3.607790pt;}
.ws3f{word-spacing:-3.554656pt;}
.wse8{word-spacing:-3.448388pt;}
.wsd8{word-spacing:-3.395254pt;}
.ws77{word-spacing:-3.342120pt;}
.ws9c{word-spacing:-3.235852pt;}
.ws9a{word-spacing:-3.208797pt;}
.ws1c{word-spacing:-3.182719pt;}
.ws48{word-spacing:-3.129585pt;}
.ws70{word-spacing:-3.023317pt;}
.wscb{word-spacing:-2.970183pt;}
.ws81{word-spacing:-2.917049pt;}
.ws38{word-spacing:-2.863915pt;}
.ws39{word-spacing:-2.810782pt;}
.wsfb{word-spacing:-2.651380pt;}
.ws91{word-spacing:-2.598246pt;}
.ws1e{word-spacing:-2.545112pt;}
.ws37{word-spacing:-2.491978pt;}
.ws27{word-spacing:-2.438844pt;}
.ws4b{word-spacing:-2.332577pt;}
.ws164{word-spacing:-2.284756pt;}
.ws16c{word-spacing:-2.279443pt;}
.wsaf{word-spacing:-2.184797pt;}
.wsb0{word-spacing:-2.173175pt;}
.ws7d{word-spacing:-2.120041pt;}
.ws75{word-spacing:-2.013774pt;}
.ws12b{word-spacing:-1.965953pt;}
.wse5{word-spacing:-1.960640pt;}
.wsd0{word-spacing:-1.907506pt;}
.ws8c{word-spacing:-1.854372pt;}
.ws9d{word-spacing:-1.801238pt;}
.ws92{word-spacing:-1.748104pt;}
.ws45{word-spacing:-1.694970pt;}
.ws13{word-spacing:-1.647150pt;}
.ws68{word-spacing:-1.641836pt;}
.ws126{word-spacing:-1.535569pt;}
.ws79{word-spacing:-1.482435pt;}
.ws82{word-spacing:-1.429301pt;}
.ws17e{word-spacing:-1.376167pt;}
.wsca{word-spacing:-1.323033pt;}
.ws5a{word-spacing:-1.269899pt;}
.ws47{word-spacing:-1.216766pt;}
.ws116{word-spacing:-1.163632pt;}
.ws3c{word-spacing:-1.110498pt;}
.wsd5{word-spacing:-1.057364pt;}
.wse9{word-spacing:-0.897962pt;}
.ws25{word-spacing:-0.844828pt;}
.ws7a{word-spacing:-0.791695pt;}
.ws74{word-spacing:-0.738561pt;}
.ws1d{word-spacing:-0.685427pt;}
.wsfa{word-spacing:-0.641859pt;}
.ws1f{word-spacing:-0.632293pt;}
.ws127{word-spacing:-0.584473pt;}
.wsf{word-spacing:-0.531339pt;}
.ws85{word-spacing:-0.419758pt;}
.ws23{word-spacing:-0.366624pt;}
.ws139{word-spacing:-0.265669pt;}
.ws71{word-spacing:-0.260356pt;}
.ws12{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.076513pt;}
.ws94{word-spacing:-0.053134pt;}
.wsb6{word-spacing:-0.037194pt;}
.ws42{word-spacing:0.000000pt;}
.ws86{word-spacing:0.020486pt;}
.ws44{word-spacing:0.058447pt;}
.ws49{word-spacing:0.111581pt;}
.ws11b{word-spacing:0.159402pt;}
.ws40{word-spacing:0.164715pt;}
.ws12f{word-spacing:0.212535pt;}
.ws134{word-spacing:0.217849pt;}
.ws108{word-spacing:0.270983pt;}
.ws24{word-spacing:0.483518pt;}
.ws15a{word-spacing:0.584473pt;}
.wscf{word-spacing:0.589786pt;}
.ws15b{word-spacing:0.642920pt;}
.ws148{word-spacing:0.696054pt;}
.ws7{word-spacing:0.743874pt;}
.ws69{word-spacing:0.961723pt;}
.ws141{word-spacing:1.062677pt;}
.ws36{word-spacing:1.121125pt;}
.ws88{word-spacing:1.174258pt;}
.ws6{word-spacing:1.275213pt;}
.wsdd{word-spacing:1.386794pt;}
.ws12e{word-spacing:1.758731pt;}
.ws105{word-spacing:1.918133pt;}
.ws158{word-spacing:2.183802pt;}
.wsfc{word-spacing:2.502605pt;}
.ws107{word-spacing:2.656693pt;}
.wse6{word-spacing:2.715141pt;}
.wsd6{word-spacing:2.927676pt;}
.ws150{word-spacing:3.081764pt;}
.ws10f{word-spacing:3.140212pt;}
.ws12d{word-spacing:3.193345pt;}
.ws14a{word-spacing:3.388563pt;}
.ws151{word-spacing:3.405881pt;}
.ws11f{word-spacing:3.772505pt;}
.ws10c{word-spacing:4.038174pt;}
.ws155{word-spacing:4.202889pt;}
.ws11c{word-spacing:4.256023pt;}
.wsfd{word-spacing:4.362290pt;}
.ws10d{word-spacing:4.415424pt;}
.ws177{word-spacing:4.787361pt;}
.ws11a{word-spacing:5.525922pt;}
.ws16e{word-spacing:5.796905pt;}
.ws119{word-spacing:6.062574pt;}
.wsb9{word-spacing:6.198879pt;}
.wsb7{word-spacing:6.220113pt;}
.wsc5{word-spacing:6.328244pt;}
.ws12a{word-spacing:6.434511pt;}
.ws142{word-spacing:6.593913pt;}
.ws170{word-spacing:6.647047pt;}
.ws120{word-spacing:6.801135pt;}
.wsf3{word-spacing:6.859582pt;}
.ws135{word-spacing:6.965850pt;}
.ws179{word-spacing:7.178385pt;}
.ws156{word-spacing:7.284653pt;}
.ws121{word-spacing:7.444055pt;}
.ws115{word-spacing:7.762858pt;}
.wsb4{word-spacing:7.815992pt;}
.ws13e{word-spacing:8.878669pt;}
.ws125{word-spacing:8.931803pt;}
.ws153{word-spacing:9.032757pt;}
.wsf2{word-spacing:9.463142pt;}
.ws154{word-spacing:9.781945pt;}
.ws157{word-spacing:10.632087pt;}
.ws118{word-spacing:10.950890pt;}
.wscd{word-spacing:11.057158pt;}
.ws160{word-spacing:11.104978pt;}
.ws122{word-spacing:11.482229pt;}
.ws11d{word-spacing:11.747898pt;}
.wsba{word-spacing:11.750011pt;}
.wsb8{word-spacing:11.755345pt;}
.ws161{word-spacing:12.119835pt;}
.ws16a{word-spacing:12.651174pt;}
.ws17d{word-spacing:13.395048pt;}
.ws140{word-spacing:14.027341pt;}
.ws16b{word-spacing:14.138922pt;}
.ws96{word-spacing:14.688369pt;}
.ws10e{word-spacing:14.829662pt;}
.ws0{word-spacing:15.005042pt;}
.ws1{word-spacing:15.009864pt;}
.ws13f{word-spacing:15.254733pt;}
.ws17a{word-spacing:15.626670pt;}
.ws173{word-spacing:16.423678pt;}
.ws13d{word-spacing:16.689348pt;}
.ws175{word-spacing:17.008151pt;}
.ws6d{word-spacing:17.300430pt;}
.wsac{word-spacing:17.371843pt;}
.ws110{word-spacing:17.698891pt;}
.wsb5{word-spacing:18.281123pt;}
.ws15d{word-spacing:18.389631pt;}
.wsad{word-spacing:18.728365pt;}
.ws113{word-spacing:19.340727pt;}
.ws15f{word-spacing:20.615940pt;}
.ws114{word-spacing:21.046325pt;}
.ws17c{word-spacing:21.099458pt;}
.wsaa{word-spacing:21.299285pt;}
.ws17{word-spacing:21.944287pt;}
.ws3{word-spacing:22.252612pt;}
.ws15e{word-spacing:22.427805pt;}
.ws123{word-spacing:22.900697pt;}
.ws11e{word-spacing:22.967230pt;}
.ws15c{word-spacing:23.331081pt;}
.wsc1{word-spacing:23.449123pt;}
.ws16{word-spacing:23.591437pt;}
.ws124{word-spacing:24.925097pt;}
.ws146{word-spacing:25.132319pt;}
.ws168{word-spacing:25.185453pt;}
.wsc0{word-spacing:26.150780pt;}
.ws145{word-spacing:27.292376pt;}
.ws147{word-spacing:27.316121pt;}
.ws167{word-spacing:27.369255pt;}
.wscc{word-spacing:27.927269pt;}
.ws10b{word-spacing:27.953727pt;}
.ws46{word-spacing:28.003782pt;}
.ws5{word-spacing:28.378995pt;}
.wsc3{word-spacing:28.497446pt;}
.ws112{word-spacing:29.329894pt;}
.ws144{word-spacing:30.185350pt;}
.ws111{word-spacing:31.938767pt;}
.ws2{word-spacing:35.532586pt;}
.ws143{word-spacing:35.870673pt;}
.ws178{word-spacing:38.734589pt;}
.ws169{word-spacing:40.106791pt;}
.ws172{word-spacing:49.361362pt;}
.ws17b{word-spacing:54.781017pt;}
.ws18{word-spacing:121.426237pt;}
.ws99{word-spacing:191.760125pt;}
.wsf7{word-spacing:229.597451pt;}
._4{margin-left:-11.385118pt;}
._1a{margin-left:-7.039202pt;}
._5{margin-left:-6.144047pt;}
._7{margin-left:-4.835175pt;}
._1{margin-left:-3.740634pt;}
._3{margin-left:-2.846279pt;}
._0{margin-left:-1.275216pt;}
._6{width:1.487748pt;}
._9{width:2.762961pt;}
._24{width:4.602727pt;}
._1e{width:13.496002pt;}
._14{width:14.399287pt;}
._b{width:16.083847pt;}
._22{width:17.268510pt;}
._27{width:18.809386pt;}
._16{width:20.722195pt;}
._e{width:21.935808pt;}
._8{width:23.432038pt;}
._10{width:24.629478pt;}
._1f{width:25.975226pt;}
._d{width:27.270461pt;}
._15{width:28.692288pt;}
._a{width:30.263355pt;}
._c{width:31.774052pt;}
._1b{width:33.155533pt;}
._20{width:34.377612pt;}
._12{width:35.342500pt;}
._23{width:36.609237pt;}
._1d{width:38.468919pt;}
._11{width:40.406381pt;}
._25{width:41.391282pt;}
._17{width:42.666495pt;}
._f{width:44.351065pt;}
._1c{width:46.438999pt;}
._13{width:47.714212pt;}
._2b{width:49.945835pt;}
._2{width:51.008640pt;}
._21{width:53.718339pt;}
._26{width:62.963638pt;}
._28{width:64.246080pt;}
._2a{width:70.136704pt;}
._29{width:71.655897pt;}
._2c{width:113.632439pt;}
._19{width:121.502750pt;}
._18{width:1069.991238pt;}
.fs9{font-size:24.384533pt;}
.fs7{font-size:26.566933pt;}
.fs8{font-size:34.138347pt;}
.fs6{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs5{font-size:51.214720pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:3.149750pt;}
.y121{bottom:12.192267pt;}
.y122{bottom:18.694890pt;}
.y12d{bottom:19.660030pt;}
.y96{bottom:20.745681pt;}
.y131{bottom:29.464563pt;}
.y123{bottom:45.568597pt;}
.y132{bottom:50.953433pt;}
.y43{bottom:51.638667pt;}
.y42{bottom:51.958667pt;}
.y95{bottom:54.015915pt;}
.y124{bottom:72.391583pt;}
.y94{bottom:87.286148pt;}
.y13f{bottom:88.851143pt;}
.y12c{bottom:89.867369pt;}
.y133{bottom:93.880453pt;}
.y125{bottom:99.265168pt;}
.y139{bottom:99.569975pt;}
.y28{bottom:107.716000pt;}
.y41{bottom:109.578667pt;}
.y11e{bottom:110.510667pt;}
.y134{bottom:115.369323pt;}
.y92{bottom:120.556489pt;}
.y27{bottom:123.656000pt;}
.ydb{bottom:123.657333pt;}
.y40{bottom:125.518667pt;}
.y126{bottom:126.088155pt;}
.y11d{bottom:126.450667pt;}
.y142{bottom:127.057333pt;}
.y135{bottom:136.807595pt;}
.y6f{bottom:139.596000pt;}
.y26{bottom:139.597333pt;}
.y3f{bottom:141.458667pt;}
.y11c{bottom:142.392000pt;}
.y98{bottom:150.590298pt;}
.y127{bottom:152.911141pt;}
.y197{bottom:155.536000pt;}
.y25{bottom:155.537333pt;}
.y141{bottom:155.816000pt;}
.y3e{bottom:157.398667pt;}
.y136{bottom:158.296465pt;}
.y11b{bottom:158.332000pt;}
.yda{bottom:160.306667pt;}
.y16b{bottom:166.204000pt;}
.y140{bottom:168.436000pt;}
.y24{bottom:171.477333pt;}
.y3d{bottom:173.338667pt;}
.y11a{bottom:174.272000pt;}
.y128{bottom:179.785335pt;}
.y16a{bottom:182.145333pt;}
.y13e{bottom:184.680807pt;}
.y23{bottom:187.417333pt;}
.y3c{bottom:189.280000pt;}
.y119{bottom:190.212000pt;}
.y93{bottom:193.497773pt;}
.y169{bottom:198.085333pt;}
.y1c0{bottom:198.468000pt;}
.y137{bottom:201.222998pt;}
.y196{bottom:202.453333pt;}
.y22{bottom:203.357333pt;}
.y13c{bottom:203.763257pt;}
.y118{bottom:206.152000pt;}
.y129{bottom:206.608322pt;}
.yd9{bottom:211.524000pt;}
.y3b{bottom:212.778667pt;}
.y168{bottom:214.025333pt;}
.y13b{bottom:214.076085pt;}
.y1bf{bottom:214.409333pt;}
.y195{bottom:218.393333pt;}
.y21{bottom:219.297333pt;}
.yf0{bottom:219.298667pt;}
.y97{bottom:219.346121pt;}
.y138{bottom:222.711868pt;}
.y12f{bottom:224.287109pt;}
.y13a{bottom:224.388305pt;}
.yd8{bottom:227.464000pt;}
.y3a{bottom:228.718667pt;}
.y117{bottom:229.652000pt;}
.y167{bottom:229.965333pt;}
.y1be{bottom:230.349333pt;}
.y12a{bottom:233.431309pt;}
.y194{bottom:234.333333pt;}
.y12e{bottom:234.446925pt;}
.y6e{bottom:235.237333pt;}
.y20{bottom:235.238667pt;}
.y8f{bottom:242.797333pt;}
.yd7{bottom:243.404000pt;}
.y91{bottom:243.508393pt;}
.y39{bottom:244.658667pt;}
.y116{bottom:245.592000pt;}
.y1bd{bottom:246.289333pt;}
.y193{bottom:250.274667pt;}
.y1d8{bottom:251.177333pt;}
.y1f{bottom:251.178667pt;}
.y166{bottom:256.573333pt;}
.y8e{bottom:258.737333pt;}
.yd6{bottom:259.344000pt;}
.y38{bottom:260.600000pt;}
.y115{bottom:261.532000pt;}
.y1bc{bottom:262.229333pt;}
.y192{bottom:266.214667pt;}
.y1e{bottom:267.118667pt;}
.y165{bottom:272.513333pt;}
.y8d{bottom:274.677333pt;}
.yd5{bottom:275.285333pt;}
.y37{bottom:276.540000pt;}
.y114{bottom:277.472000pt;}
.y191{bottom:282.154667pt;}
.y1d{bottom:283.058667pt;}
.y164{bottom:288.453333pt;}
.y1bb{bottom:289.221333pt;}
.y8c{bottom:290.617333pt;}
.yd4{bottom:291.225333pt;}
.y36{bottom:292.480000pt;}
.y113{bottom:293.412000pt;}
.y6d{bottom:298.998667pt;}
.y163{bottom:304.394667pt;}
.y1ba{bottom:305.161333pt;}
.y8b{bottom:306.558667pt;}
.yd3{bottom:307.165333pt;}
.y35{bottom:308.420000pt;}
.y112{bottom:309.353333pt;}
.y190{bottom:313.130667pt;}
.y6c{bottom:314.938667pt;}
.y1c{bottom:319.718667pt;}
.yef{bottom:320.240000pt;}
.y162{bottom:320.334667pt;}
.y1b9{bottom:321.101333pt;}
.yb0{bottom:322.449333pt;}
.y8a{bottom:322.498667pt;}
.yd2{bottom:323.105333pt;}
.y34{bottom:324.360000pt;}
.y111{bottom:325.293333pt;}
.y18f{bottom:329.072000pt;}
.yaf{bottom:330.286667pt;}
.y1d7{bottom:330.878667pt;}
.y6b{bottom:330.880000pt;}
.y161{bottom:336.274667pt;}
.y1b8{bottom:337.041333pt;}
.y89{bottom:338.438667pt;}
.y33{bottom:340.300000pt;}
.y110{bottom:341.233333pt;}
.yee{bottom:344.150667pt;}
.y18e{bottom:345.012000pt;}
.yd1{bottom:346.605333pt;}
.y1d6{bottom:346.818667pt;}
.y6a{bottom:346.820000pt;}
.y1b7{bottom:352.982667pt;}
.y32{bottom:356.241333pt;}
.y10f{bottom:357.173333pt;}
.y18d{bottom:360.952000pt;}
.y88{bottom:361.937333pt;}
.yd0{bottom:362.545333pt;}
.y69{bottom:362.760000pt;}
.y160{bottom:362.882667pt;}
.yae{bottom:366.634667pt;}
.y1b{bottom:371.250667pt;}
.y31{bottom:372.181333pt;}
.y10e{bottom:373.113333pt;}
.y18c{bottom:376.892000pt;}
.y87{bottom:377.878667pt;}
.y68{bottom:378.700000pt;}
.y15f{bottom:378.822667pt;}
.y1b6{bottom:379.973333pt;}
.yad{bottom:382.574667pt;}
.y1a{bottom:387.190667pt;}
.y30{bottom:388.121333pt;}
.y10d{bottom:389.054667pt;}
.ycf{bottom:390.228000pt;}
.y18b{bottom:392.832000pt;}
.y86{bottom:393.818667pt;}
.y67{bottom:394.640000pt;}
.y15e{bottom:394.762667pt;}
.y1b5{bottom:395.913333pt;}
.yed{bottom:398.284000pt;}
.yac{bottom:398.514667pt;}
.y2f{bottom:404.061333pt;}
.y10c{bottom:404.994667pt;}
.y18a{bottom:408.772000pt;}
.y85{bottom:409.758667pt;}
.y66{bottom:410.580000pt;}
.y15d{bottom:410.702667pt;}
.y1b4{bottom:411.854667pt;}
.yec{bottom:414.224000pt;}
.yab{bottom:414.454667pt;}
.yce{bottom:417.910667pt;}
.y19{bottom:423.850667pt;}
.y84{bottom:425.698667pt;}
.y1d5{bottom:426.520000pt;}
.y65{bottom:426.521333pt;}
.y2e{bottom:427.561333pt;}
.y1b3{bottom:427.794667pt;}
.y10b{bottom:428.493333pt;}
.yeb{bottom:430.164000pt;}
.yaa{bottom:430.396000pt;}
.ycd{bottom:433.850667pt;}
.y189{bottom:439.749333pt;}
.y83{bottom:441.638667pt;}
.y1d4{bottom:442.460000pt;}
.y64{bottom:442.461333pt;}
.y13d{bottom:442.834667pt;}
.y2d{bottom:443.501333pt;}
.y1b2{bottom:443.734667pt;}
.y10a{bottom:444.433333pt;}
.yea{bottom:446.104000pt;}
.ya9{bottom:446.336000pt;}
.y15c{bottom:447.362667pt;}
.ycc{bottom:449.790667pt;}
.y130{bottom:455.453333pt;}
.y188{bottom:455.689333pt;}
.y82{bottom:457.578667pt;}
.y63{bottom:458.401333pt;}
.y2c{bottom:459.441333pt;}
.y1b1{bottom:459.674667pt;}
.y109{bottom:460.373333pt;}
.ye9{bottom:462.045333pt;}
.ycb{bottom:465.730667pt;}
.ya8{bottom:469.834667pt;}
.y187{bottom:471.629333pt;}
.y120{bottom:471.699473pt;}
.y81{bottom:473.520000pt;}
.y62{bottom:474.341333pt;}
.y18{bottom:475.381333pt;}
.y108{bottom:476.314667pt;}
.ye8{bottom:477.985333pt;}
.ya7{bottom:485.774667pt;}
.y1b0{bottom:486.666667pt;}
.y186{bottom:487.569333pt;}
.yca{bottom:489.230667pt;}
.y61{bottom:490.281333pt;}
.y17{bottom:491.321333pt;}
.y107{bottom:492.254667pt;}
.ye7{bottom:493.925333pt;}
.y80{bottom:497.018667pt;}
.y15b{bottom:498.888000pt;}
.ya6{bottom:501.714667pt;}
.y1af{bottom:502.606667pt;}
.y185{bottom:503.510667pt;}
.yc9{bottom:505.170667pt;}
.y60{bottom:506.221333pt;}
.y2b{bottom:507.261333pt;}
.y16{bottom:507.262667pt;}
.y106{bottom:508.194667pt;}
.y7f{bottom:512.958667pt;}
.y15a{bottom:514.828000pt;}
.ya5{bottom:517.656000pt;}
.y1ae{bottom:518.546667pt;}
.y184{bottom:519.450667pt;}
.yc8{bottom:521.110667pt;}
.y1d3{bottom:522.161333pt;}
.y5f{bottom:522.162667pt;}
.y15{bottom:523.202667pt;}
.y105{bottom:524.134667pt;}
.y7e{bottom:528.898667pt;}
.ye6{bottom:529.284000pt;}
.y159{bottom:530.769333pt;}
.ya4{bottom:533.596000pt;}
.y1ad{bottom:534.486667pt;}
.y183{bottom:535.390667pt;}
.yc7{bottom:537.050667pt;}
.y5e{bottom:538.102667pt;}
.y14{bottom:539.142667pt;}
.y104{bottom:540.074667pt;}
.y7d{bottom:544.840000pt;}
.y158{bottom:546.709333pt;}
.ya3{bottom:549.536000pt;}
.y1ac{bottom:550.426667pt;}
.yc6{bottom:552.992000pt;}
.y5d{bottom:554.042667pt;}
.y13{bottom:555.082667pt;}
.y103{bottom:556.016000pt;}
.ye5{bottom:558.314667pt;}
.y7c{bottom:560.780000pt;}
.y157{bottom:562.649333pt;}
.ya2{bottom:565.476000pt;}
.y182{bottom:566.366667pt;}
.y1ab{bottom:566.368000pt;}
.yc5{bottom:568.932000pt;}
.y5c{bottom:569.982667pt;}
.y12{bottom:571.022667pt;}
.y102{bottom:571.956000pt;}
.y7b{bottom:576.720000pt;}
.y156{bottom:578.589333pt;}
.ya1{bottom:581.416000pt;}
.y181{bottom:582.308000pt;}
.yc4{bottom:584.872000pt;}
.y5b{bottom:585.922667pt;}
.y11{bottom:586.962667pt;}
.ye4{bottom:587.346667pt;}
.y101{bottom:587.896000pt;}
.y7a{bottom:592.660000pt;}
.y1aa{bottom:593.358667pt;}
.y155{bottom:594.529333pt;}
.ya0{bottom:597.357333pt;}
.y180{bottom:598.248000pt;}
.y5a{bottom:601.862667pt;}
.y2a{bottom:602.902667pt;}
.y10{bottom:602.904000pt;}
.y100{bottom:603.836000pt;}
.yc3{bottom:607.857333pt;}
.y79{bottom:608.600000pt;}
.y1a9{bottom:609.298667pt;}
.y154{bottom:610.470667pt;}
.y9f{bottom:613.297333pt;}
.y17f{bottom:614.188000pt;}
.ye3{bottom:616.377333pt;}
.y59{bottom:617.804000pt;}
.yf{bottom:618.844000pt;}
.yff{bottom:619.776000pt;}
.y1a8{bottom:625.240000pt;}
.y153{bottom:626.410667pt;}
.y9e{bottom:629.237333pt;}
.y17e{bottom:630.128000pt;}
.y58{bottom:633.744000pt;}
.ye{bottom:634.784000pt;}
.yc2{bottom:635.541333pt;}
.y1d2{bottom:638.528000pt;}
.y1a7{bottom:641.180000pt;}
.y152{bottom:642.350667pt;}
.yfe{bottom:643.276000pt;}
.y9d{bottom:645.177333pt;}
.ye2{bottom:645.408000pt;}
.y78{bottom:645.850667pt;}
.y17d{bottom:646.068000pt;}
.y57{bottom:649.684000pt;}
.yd{bottom:650.724000pt;}
.y1a6{bottom:657.120000pt;}
.y151{bottom:658.290667pt;}
.yfd{bottom:659.216000pt;}
.y9c{bottom:661.117333pt;}
.yc1{bottom:663.224000pt;}
.y56{bottom:665.624000pt;}
.yc{bottom:666.664000pt;}
.y77{bottom:669.760000pt;}
.y1a5{bottom:673.060000pt;}
.y150{bottom:674.230667pt;}
.ye1{bottom:674.440000pt;}
.yfc{bottom:675.156000pt;}
.y17c{bottom:677.045333pt;}
.y9b{bottom:677.057333pt;}
.yc0{bottom:679.164000pt;}
.y55{bottom:681.564000pt;}
.yb{bottom:682.604000pt;}
.y1a4{bottom:689.000000pt;}
.y1d1{bottom:690.078667pt;}
.y14f{bottom:690.170667pt;}
.yfb{bottom:691.096000pt;}
.y17b{bottom:692.985333pt;}
.y9a{bottom:692.998667pt;}
.ybf{bottom:695.104000pt;}
.y54{bottom:697.505333pt;}
.y29{bottom:698.544000pt;}
.ya{bottom:698.545333pt;}
.y1d0{bottom:706.020000pt;}
.y14e{bottom:706.112000pt;}
.yfa{bottom:707.036000pt;}
.y17a{bottom:708.925333pt;}
.ye0{bottom:709.798667pt;}
.y53{bottom:713.445333pt;}
.y1a3{bottom:715.992000pt;}
.y1cf{bottom:721.960000pt;}
.y14d{bottom:722.052000pt;}
.yf9{bottom:722.977333pt;}
.y76{bottom:724.240000pt;}
.ydf{bottom:725.738667pt;}
.ybe{bottom:726.876000pt;}
.y52{bottom:729.385333pt;}
.y1a2{bottom:731.932000pt;}
.ybd{bottom:735.988000pt;}
.y1ce{bottom:737.900000pt;}
.y14c{bottom:737.992000pt;}
.yf8{bottom:738.917333pt;}
.y99{bottom:739.109333pt;}
.y179{bottom:739.902667pt;}
.y75{bottom:740.180000pt;}
.yde{bottom:741.678667pt;}
.y51{bottom:745.325333pt;}
.y1a1{bottom:747.872000pt;}
.y9{bottom:748.352000pt;}
.y1cd{bottom:753.840000pt;}
.y14b{bottom:753.932000pt;}
.yf7{bottom:754.857333pt;}
.y178{bottom:755.842667pt;}
.y74{bottom:756.120000pt;}
.ydd{bottom:757.618667pt;}
.y90{bottom:761.226667pt;}
.y50{bottom:761.265333pt;}
.y1a0{bottom:763.813333pt;}
.ybc{bottom:767.084000pt;}
.y11f{bottom:767.405333pt;}
.y14a{bottom:769.872000pt;}
.yf6{bottom:770.797333pt;}
.y177{bottom:771.782667pt;}
.y73{bottom:772.061333pt;}
.y4f{bottom:777.205333pt;}
.y19f{bottom:779.753333pt;}
.y8{bottom:780.233333pt;}
.y1cc{bottom:780.472000pt;}
.ybb{bottom:783.025333pt;}
.yf5{bottom:786.737333pt;}
.y176{bottom:787.722667pt;}
.y72{bottom:788.001333pt;}
.y4e{bottom:793.146667pt;}
.y149{bottom:793.372000pt;}
.y19e{bottom:795.693333pt;}
.y1cb{bottom:796.412000pt;}
.ydc{bottom:802.486667pt;}
.yf4{bottom:802.677333pt;}
.y175{bottom:803.662667pt;}
.y71{bottom:803.941333pt;}
.y4d{bottom:809.086667pt;}
.yba{bottom:809.194667pt;}
.y148{bottom:809.312000pt;}
.y7{bottom:812.113333pt;}
.y1ca{bottom:812.352000pt;}
.y174{bottom:819.602667pt;}
.y19d{bottom:822.685333pt;}
.yb9{bottom:824.470667pt;}
.y4c{bottom:825.026667pt;}
.y147{bottom:825.252000pt;}
.yf3{bottom:826.177333pt;}
.y6{bottom:828.053333pt;}
.y1c9{bottom:828.293333pt;}
.y19c{bottom:838.625333pt;}
.y4b{bottom:840.966667pt;}
.y146{bottom:841.192000pt;}
.yf2{bottom:842.117333pt;}
.y1c8{bottom:844.233333pt;}
.y70{bottom:848.970667pt;}
.y173{bottom:850.580000pt;}
.y19b{bottom:854.565333pt;}
.y145{bottom:857.132000pt;}
.yb8{bottom:858.057333pt;}
.y1c7{bottom:860.173333pt;}
.y172{bottom:866.520000pt;}
.y5{bottom:870.450667pt;}
.y19a{bottom:870.505333pt;}
.y144{bottom:873.073333pt;}
.yb7{bottom:873.997333pt;}
.y4a{bottom:877.664000pt;}
.y171{bottom:882.460000pt;}
.y199{bottom:886.445333pt;}
.y1c6{bottom:886.805333pt;}
.yb6{bottom:889.937333pt;}
.yf1{bottom:889.938667pt;}
.y170{bottom:898.400000pt;}
.y1c5{bottom:902.745333pt;}
.yb5{bottom:905.878667pt;}
.y143{bottom:909.732000pt;}
.y198{bottom:913.437333pt;}
.y16f{bottom:914.341333pt;}
.y1c4{bottom:918.685333pt;}
.yb4{bottom:921.818667pt;}
.y4{bottom:929.072000pt;}
.y49{bottom:929.377333pt;}
.y16e{bottom:930.281333pt;}
.y1c3{bottom:934.625333pt;}
.yb3{bottom:937.758667pt;}
.y48{bottom:945.317333pt;}
.y16d{bottom:946.221333pt;}
.y1c2{bottom:950.565333pt;}
.yb2{bottom:953.698667pt;}
.y3{bottom:958.296000pt;}
.y47{bottom:961.258667pt;}
.y1c1{bottom:966.506667pt;}
.yb1{bottom:969.638667pt;}
.y16c{bottom:977.197333pt;}
.y46{bottom:977.198667pt;}
.y2{bottom:987.520000pt;}
.y45{bottom:993.138667pt;}
.y44{bottom:1009.078667pt;}
.y1{bottom:1057.200000pt;}
.h16{height:25.432306pt;}
.h8{height:30.477662pt;}
.h2{height:31.880400pt;}
.h9{height:31.922907pt;}
.hb{height:35.030868pt;}
.h15{height:35.605229pt;}
.h13{height:37.459376pt;}
.h7{height:37.512510pt;}
.h5{height:39.903534pt;}
.h11{height:39.908867pt;}
.he{height:45.432434pt;}
.h4{height:45.589163pt;}
.hf{height:52.605355pt;}
.h6{height:53.712173pt;}
.h3{height:64.454458pt;}
.hd{height:71.252867pt;}
.h12{height:73.400709pt;}
.hc{height:77.042688pt;}
.h10{height:109.192434pt;}
.h14{height:243.540527pt;}
.ha{height:261.137580pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:226.782847pt;}
.w3{width:301.911003pt;}
.w4{width:301.941484pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.327806pt;}
.x29{left:9.225400pt;}
.x27{left:13.868703pt;}
.x26{left:18.593207pt;}
.x25{left:22.758816pt;}
.x2a{left:24.262611pt;}
.x10{left:30.097723pt;}
.x14{left:45.272597pt;}
.x11{left:65.449780pt;}
.x13{left:69.062855pt;}
.x12{left:70.664719pt;}
.x1{left:75.590667pt;}
.x3{left:76.984000pt;}
.xd{left:78.728000pt;}
.xa{left:82.602667pt;}
.x17{left:88.874667pt;}
.x18{left:91.593333pt;}
.x24{left:92.731877pt;}
.x5{left:93.646667pt;}
.x33{left:102.890667pt;}
.x16{left:105.710037pt;}
.x2{left:109.818667pt;}
.x2d{left:115.948000pt;}
.x8{left:120.030667pt;}
.x6{left:124.014667pt;}
.x23{left:129.349333pt;}
.x28{left:131.452752pt;}
.x2c{left:173.414876pt;}
.x19{left:176.877333pt;}
.x7{left:192.334667pt;}
.x31{left:209.896000pt;}
.x2f{left:220.405701pt;}
.x2b{left:296.709173pt;}
.x9{left:307.301333pt;}
.x4{left:350.161333pt;}
.x2e{left:399.521210pt;}
.xb{left:403.492000pt;}
.xe{left:410.504000pt;}
.xc{left:416.776000pt;}
.x34{left:430.792000pt;}
.xf{left:457.250667pt;}
.x21{left:463.740000pt;}
.x1a{left:466.408000pt;}
.x1c{left:502.684000pt;}
.x22{left:505.868000pt;}
.x1b{left:507.282667pt;}
.x32{left:517.312000pt;}
.x1d{left:529.581333pt;}
.x30{left:545.193333pt;}
.x1e{left:554.092000pt;}
.x1f{left:590.717333pt;}
.x20{left:615.228000pt;}
}




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