
    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_a30085f9a49d6552bf89fc7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b29a0db2478a1ea4ec1eb3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.218000;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_3d3724a0fa813b72a3222253.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_f762e177e68aa92f74becce0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.261000;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_08631b87f09e784912c17ad3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196000;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_c8e3859fbfbda390f80a25a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_4bff3b29a65e5a6920d1975f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_488d17877a38cc75478e43d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.430000;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_d17e5ef4873626c49a30ff10.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_67a1285747203491f86b1665.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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_d8c5a77bf567eedf84ffccab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.704000;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_25d9a0452046089c12ca4e12.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_04014678000ee3b93add5402.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;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_c3d05f1e6b1be6b4d8c7cbd9.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_885ad4c17be468fe4b1a6d97.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908000;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_a36f6b3f30fd0d18826bad46.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.696000;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_2ff1f30a685bcdd218e79100.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919000;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_b09e1e920812858ec0afd8f3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;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_90118afea17ef3af439b2775.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.877000;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_f7f49a4998aca1679e08354c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.924000;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_19b0eddd8f460f9cdb1dafd4.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_1417369be821bee41d9cd77e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b393c83d597cf9f23393dbb5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.923000;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);}
.v4{vertical-align:-21.690000px;}
.v6{vertical-align:-10.758000px;}
.v7{vertical-align:-5.823736px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:26.028000px;}
.v3{vertical-align:31.236000px;}
.v2{vertical-align:44.988000px;}
.ls3{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000097px;}
.ls1d{letter-spacing:0.000179px;}
.ls1c{letter-spacing:0.000993px;}
.ls19{letter-spacing:0.001227px;}
.lsf{letter-spacing:0.001505px;}
.ls1{letter-spacing:0.122400px;}
.ls2{letter-spacing:0.288000px;}
.ls8{letter-spacing:2.984525px;}
.ls4{letter-spacing:2.985701px;}
.ls6{letter-spacing:2.986226px;}
.ls5{letter-spacing:2.986894px;}
.lsd{letter-spacing:2.990915px;}
.ls2c{letter-spacing:4.130154px;}
.ls2b{letter-spacing:6.209982px;}
.ls13{letter-spacing:15.935518px;}
.ls12{letter-spacing:15.941518px;}
.ls22{letter-spacing:18.182154px;}
.ls16{letter-spacing:18.331021px;}
.ls11{letter-spacing:18.926915px;}
.ls14{letter-spacing:18.929236px;}
.ls1b{letter-spacing:19.919518px;}
.ls24{letter-spacing:19.922400px;}
.ls10{letter-spacing:19.925518px;}
.ls25{letter-spacing:19.928400px;}
.ls1e{letter-spacing:20.336022px;}
.ls21{letter-spacing:22.290179px;}
.lse{letter-spacing:24.770915px;}
.lsb{letter-spacing:26.636915px;}
.lsc{letter-spacing:27.896915px;}
.ls20{letter-spacing:29.246022px;}
.ls1a{letter-spacing:30.636179px;}
.ls17{letter-spacing:31.625779px;}
.ls7{letter-spacing:31.784915px;}
.ls29{letter-spacing:32.672154px;}
.ls2a{letter-spacing:32.678154px;}
.ls26{letter-spacing:32.958179px;}
.lsa{letter-spacing:33.128915px;}
.ls18{letter-spacing:34.613236px;}
.ls23{letter-spacing:35.580179px;}
.ls28{letter-spacing:38.329114px;}
.ls9{letter-spacing:51.752915px;}
.ls1f{letter-spacing:626.521114px;}
.ls15{letter-spacing:743.251114px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wse9{word-spacing:-45.664082px;}
.ws2{word-spacing:-35.443440px;}
.ws11c{word-spacing:-25.722808px;}
.ws123{word-spacing:-24.719794px;}
.ws15e{word-spacing:-22.416000px;}
.ws3{word-spacing:-20.376000px;}
.ws4{word-spacing:-20.304000px;}
.ws1{word-spacing:-19.656000px;}
.ws2f{word-spacing:-19.510886px;}
.ws6{word-spacing:-18.864000px;}
.ws7{word-spacing:-18.792000px;}
.ws183{word-spacing:-16.369732px;}
.ws18d{word-spacing:-15.277176px;}
.ws9{word-spacing:-14.436000px;}
.ws173{word-spacing:-14.313288px;}
.wsa{word-spacing:-14.148000px;}
.ws107{word-spacing:-13.220508px;}
.ws8{word-spacing:-12.638880px;}
.ws122{word-spacing:-12.134677px;}
.wsa1{word-spacing:-3.873485px;}
.ws138{word-spacing:-3.586560px;}
.ws13e{word-spacing:-3.443098px;}
.ws40{word-spacing:-3.371366px;}
.ws9b{word-spacing:-3.335478px;}
.ws117{word-spacing:-3.299635px;}
.wsee{word-spacing:-3.156173px;}
.wsec{word-spacing:-3.135041px;}
.ws55{word-spacing:-3.012710px;}
.ws171{word-spacing:-2.940979px;}
.ws13a{word-spacing:-2.869248px;}
.ws14d{word-spacing:-2.725786px;}
.ws4f{word-spacing:-2.582323px;}
.ws64{word-spacing:-2.510592px;}
.wsd9{word-spacing:-2.438861px;}
.ws15b{word-spacing:-2.295398px;}
.ws140{word-spacing:-2.151936px;}
.ws52{word-spacing:-2.080205px;}
.ws14c{word-spacing:-2.008474px;}
.ws118{word-spacing:-1.936742px;}
.ws2a{word-spacing:-1.865011px;}
.wsdc{word-spacing:-1.793280px;}
.ws51{word-spacing:-1.721549px;}
.ws7a{word-spacing:-1.649818px;}
.ws39{word-spacing:-1.578086px;}
.ws26{word-spacing:-1.506355px;}
.ws57{word-spacing:-1.434624px;}
.wsb0{word-spacing:-1.303108px;}
.ws6d{word-spacing:-1.291162px;}
.ws78{word-spacing:-1.219430px;}
.ws37{word-spacing:-1.147699px;}
.wsa3{word-spacing:-1.075968px;}
.ws112{word-spacing:-1.004237px;}
.ws121{word-spacing:-0.944454px;}
.ws75{word-spacing:-0.932506px;}
.ws154{word-spacing:-0.884679px;}
.ws106{word-spacing:-0.860774px;}
.ws7e{word-spacing:-0.789043px;}
.ws148{word-spacing:-0.772364px;}
.wsbc{word-spacing:-0.645581px;}
.ws18{word-spacing:-0.576000px;}
.ws13c{word-spacing:-0.573850px;}
.wsc0{word-spacing:-0.502118px;}
.ws16e{word-spacing:-0.430387px;}
.ws12b{word-spacing:-0.248727px;}
.wsda{word-spacing:-0.215194px;}
.ws142{word-spacing:-0.143462px;}
.ws82{word-spacing:-0.071731px;}
.wsb3{word-spacing:-0.065455px;}
.ws9c{word-spacing:-0.059776px;}
.wseb{word-spacing:-0.047821px;}
.ws120{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws81{word-spacing:0.071731px;}
.ws139{word-spacing:0.143462px;}
.ws38{word-spacing:0.215194px;}
.ws153{word-spacing:0.251058px;}
.ws45{word-spacing:0.286925px;}
.wse0{word-spacing:0.358656px;}
.ws7d{word-spacing:0.430387px;}
.ws34{word-spacing:0.502118px;}
.wsc6{word-spacing:0.573850px;}
.wsf{word-spacing:0.602182px;}
.ws32{word-spacing:0.645581px;}
.ws84{word-spacing:0.717312px;}
.wsd4{word-spacing:0.789043px;}
.ws1e{word-spacing:0.838368px;}
.ws83{word-spacing:0.860774px;}
.ws19c{word-spacing:0.929455px;}
.wscc{word-spacing:0.932506px;}
.ws2d{word-spacing:1.004237px;}
.wsbb{word-spacing:1.060365px;}
.wsca{word-spacing:1.075968px;}
.ws76{word-spacing:1.147699px;}
.ws2b{word-spacing:1.219430px;}
.ws53{word-spacing:1.291162px;}
.wsce{word-spacing:1.362893px;}
.ws86{word-spacing:1.434624px;}
.ws89{word-spacing:1.506355px;}
.ws88{word-spacing:1.573999px;}
.ws6c{word-spacing:1.578086px;}
.ws11{word-spacing:1.649456px;}
.ws94{word-spacing:1.649818px;}
.ws47{word-spacing:1.685672px;}
.ws3b{word-spacing:1.721549px;}
.wsb2{word-spacing:1.745448px;}
.wsd0{word-spacing:1.793280px;}
.ws19d{word-spacing:1.845820px;}
.ws4e{word-spacing:1.865011px;}
.ws5f{word-spacing:1.936742px;}
.ws198{word-spacing:2.008234px;}
.ws199{word-spacing:2.008474px;}
.ws197{word-spacing:2.009829px;}
.ws59{word-spacing:2.080205px;}
.ws126{word-spacing:2.096872px;}
.wsd1{word-spacing:2.151936px;}
.wscb{word-spacing:2.223667px;}
.wse{word-spacing:2.238547px;}
.ws20{word-spacing:2.283428px;}
.ws109{word-spacing:2.284504px;}
.wsc2{word-spacing:2.295398px;}
.ws10c{word-spacing:2.326809px;}
.ws7f{word-spacing:2.367130px;}
.ws125{word-spacing:2.426935px;}
.ws71{word-spacing:2.438861px;}
.ws177{word-spacing:2.473336px;}
.wsfb{word-spacing:2.510592px;}
.ws178{word-spacing:2.519139px;}
.ws22{word-spacing:2.582306px;}
.ws44{word-spacing:2.582323px;}
.ws8e{word-spacing:2.621015px;}
.ws18f{word-spacing:2.639896px;}
.ws108{word-spacing:2.644102px;}
.ws8f{word-spacing:2.654054px;}
.ws192{word-spacing:2.688783px;}
.wsab{word-spacing:2.725786px;}
.wsac{word-spacing:2.797517px;}
.ws185{word-spacing:2.828690px;}
.ws18c{word-spacing:2.832922px;}
.ws18b{word-spacing:2.834517px;}
.ws174{word-spacing:2.862658px;}
.ws11b{word-spacing:2.869248px;}
.ws1a{word-spacing:2.893093px;}
.ws9e{word-spacing:2.940979px;}
.ws18e{word-spacing:3.055435px;}
.ws65{word-spacing:3.084442px;}
.wsb6{word-spacing:3.154912px;}
.wsbe{word-spacing:3.156173px;}
.wsa7{word-spacing:3.227904px;}
.ws184{word-spacing:3.273946px;}
.ws130{word-spacing:3.285821px;}
.ws24{word-spacing:3.299613px;}
.wsbf{word-spacing:3.299635px;}
.ws31{word-spacing:3.371366px;}
.wse2{word-spacing:3.443098px;}
.ws149{word-spacing:3.482185px;}
.wsd6{word-spacing:3.486136px;}
.ws50{word-spacing:3.514829px;}
.ws17d{word-spacing:3.547639px;}
.wsd7{word-spacing:3.550694px;}
.ws3f{word-spacing:3.586560px;}
.ws1b{word-spacing:3.613094px;}
.wsf9{word-spacing:3.658291px;}
.ws62{word-spacing:3.730022px;}
.ws1f{word-spacing:3.801754px;}
.ws124{word-spacing:3.805419px;}
.ws49{word-spacing:3.837594px;}
.ws1d{word-spacing:3.873485px;}
.ws10e{word-spacing:3.874912px;}
.ws74{word-spacing:3.945216px;}
.ws23{word-spacing:3.957145px;}
.ws33{word-spacing:4.016947px;}
.wsd2{word-spacing:4.088678px;}
.wsb8{word-spacing:4.136731px;}
.wsa6{word-spacing:4.160410px;}
.ws10{word-spacing:4.202185px;}
.ws97{word-spacing:4.232141px;}
.ws182{word-spacing:4.267640px;}
.wsd5{word-spacing:4.303872px;}
.ws3a{word-spacing:4.375603px;}
.ws1c{word-spacing:4.483200px;}
.wsbd{word-spacing:4.519066px;}
.ws158{word-spacing:4.537553px;}
.ws6b{word-spacing:4.590797px;}
.wsb5{word-spacing:4.594913px;}
.wsc{word-spacing:4.648169px;}
.ws61{word-spacing:4.662528px;}
.ws77{word-spacing:4.734259px;}
.wsff{word-spacing:4.772909px;}
.ws101{word-spacing:4.805990px;}
.ws147{word-spacing:4.856731px;}
.ws11d{word-spacing:4.877722px;}
.ws85{word-spacing:4.949453px;}
.ws12c{word-spacing:4.987641px;}
.wsc9{word-spacing:5.021184px;}
.ws12{word-spacing:5.053095px;}
.ws41{word-spacing:5.092915px;}
.ws29{word-spacing:5.164646px;}
.ws99{word-spacing:5.236378px;}
.ws79{word-spacing:5.308109px;}
.ws4a{word-spacing:5.331984px;}
.wse6{word-spacing:5.379825px;}
.ws3c{word-spacing:5.379840px;}
.wsdb{word-spacing:5.451571px;}
.ws19{word-spacing:5.511277px;}
.ws7b{word-spacing:5.523302px;}
.wsb1{word-spacing:5.571086px;}
.ws5c{word-spacing:5.595034px;}
.ws145{word-spacing:5.666765px;}
.ws150{word-spacing:5.738496px;}
.wsaf{word-spacing:5.750413px;}
.wsc8{word-spacing:5.810227px;}
.ws5a{word-spacing:5.881958px;}
.ws19e{word-spacing:5.904005px;}
.ws19f{word-spacing:5.914676px;}
.ws134{word-spacing:5.953690px;}
.ws105{word-spacing:6.025421px;}
.wsba{word-spacing:6.034914px;}
.ws5e{word-spacing:6.097152px;}
.wsaa{word-spacing:6.168883px;}
.ws58{word-spacing:6.240614px;}
.ws3e{word-spacing:6.312346px;}
.ws3d{word-spacing:6.384077px;}
.ws10f{word-spacing:6.427642px;}
.ws96{word-spacing:6.455775px;}
.wsc5{word-spacing:6.455808px;}
.ws12d{word-spacing:6.493096px;}
.ws111{word-spacing:6.527539px;}
.ws156{word-spacing:6.571077px;}
.wsf5{word-spacing:6.599270px;}
.ws87{word-spacing:6.671002px;}
.ws70{word-spacing:6.742733px;}
.ws12f{word-spacing:6.754915px;}
.ws14e{word-spacing:6.814464px;}
.wsb4{word-spacing:6.885824px;}
.ws9a{word-spacing:6.886195px;}
.ws10b{word-spacing:6.895817px;}
.wsb9{word-spacing:6.951279px;}
.wsc7{word-spacing:6.957926px;}
.ws15{word-spacing:7.016733px;}
.ws115{word-spacing:7.029628px;}
.ws30{word-spacing:7.029658px;}
.ws7c{word-spacing:7.101389px;}
.ws15c{word-spacing:7.173120px;}
.ws43{word-spacing:7.244851px;}
.ws4b{word-spacing:7.316582px;}
.ws16{word-spacing:7.344006px;}
.ws5b{word-spacing:7.388314px;}
.wsfa{word-spacing:7.460045px;}
.ws17b{word-spacing:7.465811px;}
.ws48{word-spacing:7.483905px;}
.ws28{word-spacing:7.531776px;}
.wse3{word-spacing:7.603507px;}
.wsae{word-spacing:7.663232px;}
.ws2e{word-spacing:7.675238px;}
.wsd3{word-spacing:7.746970px;}
.ws80{word-spacing:7.818701px;}
.ws36{word-spacing:7.890432px;}
.ws14b{word-spacing:7.962163px;}
.ws12a{word-spacing:7.998552px;}
.ws54{word-spacing:8.033894px;}
.ws13b{word-spacing:8.105626px;}
.ws13{word-spacing:8.129461px;}
.ws15a{word-spacing:8.177357px;}
.wsa5{word-spacing:8.249088px;}
.ws21{word-spacing:8.260988px;}
.ws104{word-spacing:8.320819px;}
.wsb7{word-spacing:8.391280px;}
.ws68{word-spacing:8.392550px;}
.wsc4{word-spacing:8.464282px;}
.ws67{word-spacing:8.536013px;}
.ws132{word-spacing:8.587644px;}
.ws11a{word-spacing:8.607744px;}
.ws14a{word-spacing:8.653098px;}
.wse1{word-spacing:8.679475px;}
.ws8d{word-spacing:8.751206px;}
.wsa2{word-spacing:8.822938px;}
.ws6e{word-spacing:8.966400px;}
.ws93{word-spacing:9.038131px;}
.ws72{word-spacing:9.253325px;}
.ws113{word-spacing:9.325056px;}
.ws152{word-spacing:9.396787px;}
.wsa4{word-spacing:9.468518px;}
.wscf{word-spacing:9.611981px;}
.ws92{word-spacing:9.683712px;}
.ws8c{word-spacing:9.755443px;}
.ws14{word-spacing:9.962190px;}
.wsc1{word-spacing:9.970637px;}
.wsad{word-spacing:9.994480px;}
.ws131{word-spacing:10.027645px;}
.ws73{word-spacing:10.042368px;}
.wsa9{word-spacing:10.114099px;}
.ws91{word-spacing:10.185830px;}
.wscd{word-spacing:10.257562px;}
.ws42{word-spacing:10.329293px;}
.ws13f{word-spacing:10.401024px;}
.ws56{word-spacing:10.472755px;}
.wsa8{word-spacing:10.544486px;}
.ws69{word-spacing:10.616218px;}
.ws6a{word-spacing:10.687949px;}
.ws11e{word-spacing:10.749972px;}
.wsc3{word-spacing:10.759680px;}
.ws90{word-spacing:10.903142px;}
.ws17{word-spacing:10.944009px;}
.wsa0{word-spacing:10.974874px;}
.ws4d{word-spacing:11.046605px;}
.ws168{word-spacing:11.118336px;}
.ws172{word-spacing:11.221501px;}
.ws13d{word-spacing:11.261798px;}
.wse7{word-spacing:11.405261px;}
.ws159{word-spacing:11.429123px;}
.ws35{word-spacing:11.548723px;}
.ws169{word-spacing:11.617413px;}
.ws151{word-spacing:11.620454px;}
.ws98{word-spacing:11.692186px;}
.ws8b{word-spacing:11.907379px;}
.ws60{word-spacing:11.979110px;}
.ws143{word-spacing:12.050842px;}
.wsef{word-spacing:12.087345px;}
.wsf0{word-spacing:12.093145px;}
.wsf1{word-spacing:12.122573px;}
.ws119{word-spacing:12.194304px;}
.ws16d{word-spacing:12.266035px;}
.ws181{word-spacing:12.318556px;}
.ws17e{word-spacing:12.332112px;}
.wsd8{word-spacing:12.337766px;}
.ws180{word-spacing:12.351079px;}
.ws15d{word-spacing:12.409498px;}
.ws66{word-spacing:12.481229px;}
.ws95{word-spacing:12.550027px;}
.ws5d{word-spacing:12.552960px;}
.wse4{word-spacing:12.696422px;}
.wsdf{word-spacing:12.768154px;}
.ws12e{word-spacing:13.104011px;}
.ws6f{word-spacing:13.126810px;}
.ws46{word-spacing:13.198541px;}
.ws162{word-spacing:13.270272px;}
.wsdd{word-spacing:13.342003px;}
.ws114{word-spacing:13.377972px;}
.ws116{word-spacing:13.413734px;}
.ws137{word-spacing:13.485466px;}
.ws144{word-spacing:13.557197px;}
.ws27{word-spacing:13.700659px;}
.wsd{word-spacing:13.824012px;}
.ws166{word-spacing:13.844122px;}
.wse5{word-spacing:13.987584px;}
.ws8a{word-spacing:14.059315px;}
.ws4c{word-spacing:14.131046px;}
.ws9f{word-spacing:14.346240px;}
.ws102{word-spacing:14.417971px;}
.ws135{word-spacing:14.489702px;}
.wsde{word-spacing:14.561434px;}
.ws155{word-spacing:14.633165px;}
.ws141{word-spacing:14.848358px;}
.ws133{word-spacing:14.991821px;}
.ws136{word-spacing:15.063552px;}
.ws2c{word-spacing:15.207014px;}
.ws63{word-spacing:15.422208px;}
.ws157{word-spacing:16.880672px;}
.ws110{word-spacing:18.130924px;}
.wsf6{word-spacing:18.387965px;}
.wsea{word-spacing:18.882704px;}
.wsf3{word-spacing:20.084736px;}
.wsfd{word-spacing:20.294726px;}
.wsed{word-spacing:20.732726px;}
.ws16f{word-spacing:22.093210px;}
.ws16a{word-spacing:22.595328px;}
.ws16c{word-spacing:23.384371px;}
.ws16b{word-spacing:23.456102px;}
.wse8{word-spacing:24.272726px;}
.wsfc{word-spacing:24.278726px;}
.ws15f{word-spacing:25.034189px;}
.ws160{word-spacing:25.608038px;}
.ws167{word-spacing:26.181888px;}
.ws100{word-spacing:27.245505px;}
.ws161{word-spacing:27.329587px;}
.wsf2{word-spacing:27.544781px;}
.wsf8{word-spacing:27.764726px;}
.ws170{word-spacing:27.831706px;}
.wsf7{word-spacing:28.584704px;}
.wsf4{word-spacing:28.704704px;}
.ws14f{word-spacing:30.055373px;}
.ws10a{word-spacing:30.798497px;}
.ws165{word-spacing:31.059610px;}
.ws17f{word-spacing:32.596391px;}
.ws164{word-spacing:33.139814px;}
.ws11f{word-spacing:33.221505px;}
.wsfe{word-spacing:33.401505px;}
.ws163{word-spacing:33.641933px;}
.ws146{word-spacing:35.326235px;}
.wsb{word-spacing:37.316475px;}
.ws193{word-spacing:42.433885px;}
.ws9d{word-spacing:48.071538px;}
.ws18a{word-spacing:48.932220px;}
.ws176{word-spacing:50.978208px;}
.ws127{word-spacing:51.606356px;}
.ws19a{word-spacing:52.220314px;}
.ws195{word-spacing:54.411192px;}
.ws194{word-spacing:54.460079px;}
.ws187{word-spacing:58.302439px;}
.ws129{word-spacing:61.119943px;}
.ws175{word-spacing:63.436495px;}
.ws190{word-spacing:66.388498px;}
.ws103{word-spacing:69.937725px;}
.ws186{word-spacing:71.136309px;}
.ws191{word-spacing:78.365804px;}
.ws25{word-spacing:83.925075px;}
.ws188{word-spacing:83.970179px;}
.ws10d{word-spacing:95.229967px;}
.ws17a{word-spacing:102.048022px;}
.ws128{word-spacing:110.745920px;}
.ws179{word-spacing:136.949544px;}
.ws19b{word-spacing:141.453926px;}
.ws17c{word-spacing:154.354503px;}
.ws189{word-spacing:176.583576px;}
.ws196{word-spacing:176.775264px;}
._79{margin-left:-34.971275px;}
._2a{margin-left:-32.436173px;}
._18{margin-left:-29.828024px;}
._2c{margin-left:-27.329587px;}
._1b{margin-left:-23.252708px;}
._2b{margin-left:-7.746970px;}
._1a{margin-left:-6.635092px;}
._14{margin-left:-5.432732px;}
._3c{margin-left:-4.293135px;}
._4{margin-left:-3.240000px;}
._5{margin-left:-2.184000px;}
._2{margin-left:-1.173120px;}
._0{width:1.581120px;}
._1{width:2.688000px;}
._c{width:4.428000px;}
._3d{width:5.968852px;}
._e{width:7.236000px;}
._d{width:8.262000px;}
._f{width:9.426000px;}
._77{width:10.475796px;}
._2d{width:14.419990px;}
._87{width:15.835720px;}
._8{width:17.928000px;}
._9{width:19.020000px;}
._b{width:20.058000px;}
._a{width:21.276000px;}
._16{width:22.685078px;}
._26{width:23.987174px;}
._37{width:25.058381px;}
._19{width:26.121937px;}
._11{width:28.047293px;}
._10{width:29.089316px;}
._13{width:30.147091px;}
._20{width:31.346534px;}
._3{width:32.760000px;}
._12{width:34.236335px;}
._21{width:35.531405px;}
._1e{width:37.443686px;}
._6{width:39.168000px;}
._7{width:40.253760px;}
._17{width:41.538892px;}
._38{width:42.895258px;}
._1f{width:43.951717px;}
._23{width:45.057408px;}
._27{width:46.297141px;}
._59{width:47.537472px;}
._39{width:48.737549px;}
._25{width:49.993613px;}
._15{width:51.120043px;}
._28{width:52.719398px;}
._3f{width:53.812758px;}
._8f{width:55.094631px;}
._22{width:56.333184px;}
._3a{width:57.600154px;}
._24{width:58.891315px;}
._1c{width:60.469402px;}
._78{width:61.685699px;}
._1d{width:64.530509px;}
._a8{width:67.708446px;}
._30{width:72.334080px;}
._43{width:74.542515px;}
._2e{width:75.795461px;}
._ac{width:79.685753px;}
._9a{width:85.384524px;}
._72{width:89.826978px;}
._61{width:92.054396px;}
._4a{width:95.272272px;}
._3b{width:96.836850px;}
._7f{width:98.292215px;}
._76{width:103.004193px;}
._a7{width:105.359962px;}
._7e{width:109.559635px;}
._94{width:112.414226px;}
._29{width:116.203950px;}
._90{width:117.342122px;}
._6d{width:121.851577px;}
._45{width:124.243680px;}
._9e{width:125.248096px;}
._4f{width:126.449668px;}
._a2{width:128.866039px;}
._74{width:130.588545px;}
._33{width:136.177882px;}
._95{width:138.081966px;}
._a5{width:140.843345px;}
._5b{width:143.370897px;}
._5e{width:151.906746px;}
._51{width:156.114792px;}
._99{width:157.403591px;}
._6a{width:161.420333px;}
._7c{width:162.668752px;}
._88{width:164.343464px;}
._41{width:166.007281px;}
._ab{width:167.331285px;}
._46{width:172.903098px;}
._82{width:175.057243px;}
._6c{width:176.204080px;}
._7b{width:178.721445px;}
._62{width:181.495944px;}
._a3{width:185.036920px;}
._93{width:186.690367px;}
._40{width:187.879290px;}
._b3{width:189.011712px;}
._84{width:190.034668px;}
._48{width:191.306046px;}
._af{width:194.782272px;}
._80{width:197.454677px;}
._92{width:198.667825px;}
._91{width:200.155991px;}
._86{width:201.164682px;}
._aa{width:206.570658px;}
._8a{width:208.676295px;}
._6e{width:211.628775px;}
._a9{width:214.752318px;}
._31{width:220.071322px;}
._ad{width:221.734165px;}
._98{width:225.876114px;}
._58{width:230.438751px;}
._b2{width:232.213708px;}
._32{width:237.573734px;}
._a6{width:238.649425px;}
._44{width:245.414943px;}
._b0{width:250.126694px;}
._96{width:251.491472px;}
._4b{width:255.737516px;}
._97{width:258.388666px;}
._b1{width:260.958106px;}
._5f{width:268.279930px;}
._63{width:275.661040px;}
._6b{width:276.984531px;}
._5c{width:279.081404px;}
._9c{width:282.319425px;}
._a1{width:283.951728px;}
._b4{width:287.559644px;}
._60{width:289.096555px;}
._a0{width:291.302661px;}
._64{width:297.173397px;}
._5d{width:299.658579px;}
._9d{width:301.253175px;}
._b6{width:302.418739px;}
._6f{width:305.793871px;}
._54{width:307.007606px;}
._67{width:315.252401px;}
._65{width:318.646922px;}
._75{width:323.484566px;}
._a4{width:324.746688px;}
._70{width:327.306228px;}
._68{width:336.237350px;}
._b5{width:341.010125px;}
._85{width:347.740203px;}
._71{width:348.779753px;}
._56{width:357.458659px;}
._89{width:365.629589px;}
._34{width:378.023424px;}
._9b{width:383.863675px;}
._5a{width:402.338607px;}
._55{width:409.308582px;}
._36{width:414.175949px;}
._69{width:421.365781px;}
._52{width:446.814290px;}
._50{width:458.134745px;}
._4e{width:459.944927px;}
._49{width:463.763871px;}
._47{width:471.780080px;}
._53{width:476.401816px;}
._35{width:489.278515px;}
._2f{width:490.813901px;}
._81{width:494.515321px;}
._4c{width:528.008585px;}
._73{width:556.564262px;}
._66{width:576.455183px;}
._4d{width:620.496633px;}
._83{width:621.824721px;}
._7d{width:668.200708px;}
._8b{width:674.839855px;}
._8d{width:681.551560px;}
._9f{width:693.335531px;}
._8c{width:733.481605px;}
._ae{width:746.957395px;}
._42{width:799.999409px;}
._3e{width:832.478693px;}
._57{width:834.291739px;}
._7a{width:870.667967px;}
._8e{width:884.297335px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(35,81,163);}
.fc3{color:rgb(52,49,51);}
.fc2{color:rgb(67,65,66);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs17{font-size:25.887204px;}
.fs16{font-size:38.830968px;}
.fs8{font-size:41.760000px;}
.fs11{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:42.305627px;}
.fs18{font-size:45.802523px;}
.fs13{font-size:47.820600px;}
.fsa{font-size:48.240000px;}
.fs1a{font-size:48.886965px;}
.fs19{font-size:52.383143px;}
.fsb{font-size:54.000000px;}
.fse{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs14{font-size:64.558080px;}
.fsf{font-size:65.454600px;}
.fs10{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:86.077200px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs12{font-size:103.292400px;}
.fs6{font-size:108.000000px;}
.fsc{font-size:123.975000px;}
.fs5{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y51{bottom:7.020000px;}
.y63{bottom:14.940000px;}
.y65{bottom:18.000000px;}
.y25{bottom:20.160000px;}
.y33{bottom:25.200000px;}
.y2e{bottom:26.280000px;}
.y40{bottom:26.820000px;}
.y32{bottom:48.240000px;}
.y3f{bottom:49.860000px;}
.y24{bottom:60.345000px;}
.y3b{bottom:60.660000px;}
.y64{bottom:63.720000px;}
.y5{bottom:66.525004px;}
.y31{bottom:71.280000px;}
.y3e{bottom:72.720000px;}
.y62{bottom:75.090000px;}
.y83{bottom:80.794500px;}
.y3a{bottom:91.800000px;}
.y61{bottom:93.270000px;}
.y27{bottom:93.960000px;}
.y30{bottom:94.140000px;}
.y3d{bottom:95.760000px;}
.y4{bottom:97.125005px;}
.y23{bottom:101.025000px;}
.y2c{bottom:104.760000px;}
.y52{bottom:105.840000px;}
.y60{bottom:110.370000px;}
.y1d1{bottom:119.466000px;}
.y39{bottom:122.790000px;}
.y133{bottom:125.626500px;}
.y13b{bottom:127.732500px;}
.y5f{bottom:128.550000px;}
.y82{bottom:131.070000px;}
.y1d4{bottom:132.975000px;}
.y11d{bottom:134.662500px;}
.yf0{bottom:135.267000px;}
.y2b{bottom:135.900000px;}
.yd9{bottom:136.014000px;}
.y1cc{bottom:137.446500px;}
.y194{bottom:138.256500px;}
.y21{bottom:139.264499px;}
.y1d0{bottom:139.789500px;}
.ye6{bottom:141.991500px;}
.y81{bottom:143.712000px;}
.yae{bottom:144.358500px;}
.y1c3{bottom:144.912000px;}
.y11b{bottom:146.175000px;}
.y5e{bottom:146.550000px;}
.y132{bottom:147.295500px;}
.y1f9{bottom:147.396000px;}
.y13a{bottom:149.401500px;}
.y1d3{bottom:150.909000px;}
.y11c{bottom:152.595000px;}
.yef{bottom:153.199500px;}
.yd8{bottom:157.683000px;}
.y11a{bottom:158.685000px;}
.y1cb{bottom:159.115500px;}
.y1cf{bottom:160.113000px;}
.y193{bottom:161.611500px;}
.y80{bottom:161.644500px;}
.yad{bottom:162.291000px;}
.y5d{bottom:164.730000px;}
.ye5{bottom:165.348000px;}
.y1c2{bottom:166.581000px;}
.y2a{bottom:166.860000px;}
.y216{bottom:168.963000px;}
.y131{bottom:168.964500px;}
.y1f8{bottom:169.065000px;}
.y139{bottom:171.070500px;}
.yee{bottom:171.132000px;}
.y1d2{bottom:174.264000px;}
.ye4{bottom:177.858000px;}
.yd7{bottom:179.352000px;}
.y7f{bottom:179.577000px;}
.yac{bottom:180.223500px;}
.y1ce{bottom:180.438000px;}
.y1ca{bottom:180.784500px;}
.yf2{bottom:182.046000px;}
.y5c{bottom:182.910000px;}
.y1c1{bottom:188.250000px;}
.y192{bottom:188.368500px;}
.yed{bottom:189.064500px;}
.y130{bottom:190.632000px;}
.y1f7{bottom:190.734000px;}
.y282{bottom:191.052000px;}
.y119{bottom:191.860500px;}
.y138{bottom:192.739500px;}
.y18{bottom:196.933500px;}
.y7e{bottom:197.511000px;}
.y29{bottom:198.000000px;}
.yab{bottom:198.156000px;}
.y5b{bottom:200.010000px;}
.y1cd{bottom:200.761500px;}
.yd6{bottom:201.021000px;}
.ye3{bottom:201.213000px;}
.y1c9{bottom:202.452000px;}
.yec{bottom:206.998500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1c0{bottom:209.917500px;}
.y191{bottom:210.036000px;}
.y281{bottom:211.375500px;}
.y12f{bottom:212.301000px;}
.y118{bottom:213.529500px;}
.ye2{bottom:213.723000px;}
.y14d{bottom:214.408500px;}
.y5a{bottom:216.930000px;}
.y7d{bottom:220.866000px;}
.yaa{bottom:221.512500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yd5{bottom:222.690000px;}
.y137{bottom:224.121000px;}
.y1f6{bottom:227.347500px;}
.yeb{bottom:230.353500px;}
.y1bf{bottom:231.586500px;}
.y280{bottom:231.699000px;}
.y190{bottom:231.705000px;}
.y4f{bottom:233.310000px;}
.y12e{bottom:233.970000px;}
.y59{bottom:234.030000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y117{bottom:235.197000px;}
.y14c{bottom:236.076000px;}
.ye1{bottom:237.078000px;}
.y2f{bottom:243.390000px;}
.yd4{bottom:244.357500px;}
.y1c8{bottom:245.790000px;}
.y215{bottom:247.663500px;}
.ya9{bottom:248.268000px;}
.yea{bottom:248.286000px;}
.y1f5{bottom:249.015000px;}
.y58{bottom:251.130000px;}
.y27f{bottom:252.022500px;}
.y1be{bottom:253.255500px;}
.y18f{bottom:253.374000px;}
.y3c{bottom:254.190000px;}
.y4e{bottom:255.630000px;}
.y12d{bottom:255.639000px;}
.y116{bottom:256.866000px;}
.y14b{bottom:257.745000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ye0{bottom:263.835000px;}
.yd3{bottom:266.026500px;}
.y136{bottom:267.459000px;}
.y57{bottom:268.230000px;}
.y214{bottom:269.332500px;}
.ya8{bottom:269.937000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1bd{bottom:274.924500px;}
.ye9{bottom:275.043000px;}
.y27e{bottom:275.784000px;}
.y12c{bottom:277.308000px;}
.y4d{bottom:277.590000px;}
.y115{bottom:278.535000px;}
.y14a{bottom:279.414000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ydf{bottom:285.504000px;}
.y1f4{bottom:285.628500px;}
.y56{bottom:286.410000px;}
.yd2{bottom:287.695500px;}
.y135{bottom:289.128000px;}
.ya7{bottom:291.606000px;}
.y1bc{bottom:296.593500px;}
.ye8{bottom:296.712000px;}
.y27d{bottom:297.453000px;}
.y12b{bottom:298.977000px;}
.y4c{bottom:299.595000px;}
.y114{bottom:300.204000px;}
.y149{bottom:301.083000px;}
.y55{bottom:304.455000px;}
.y213{bottom:304.695000px;}
.yde{bottom:307.173000px;}
.yd1{bottom:309.364500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y17a{bottom:310.558500px;}
.y1c7{bottom:310.797000px;}
.ya6{bottom:313.275000px;}
.y1bb{bottom:318.262500px;}
.y18e{bottom:318.381000px;}
.y27c{bottom:319.122000px;}
.y1dc{bottom:320.644500px;}
.y4b{bottom:321.555000px;}
.y113{bottom:321.873000px;}
.y1f3{bottom:322.240500px;}
.y134{bottom:322.378500px;}
.y148{bottom:322.752000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y212{bottom:326.364000px;}
.ydd{bottom:328.840500px;}
.yd0{bottom:331.033500px;}
.y1c6{bottom:332.464500px;}
.ya5{bottom:334.944000px;}
.ye7{bottom:336.139500px;}
.y54{bottom:338.655000px;}
.y1ba{bottom:339.930000px;}
.y18d{bottom:340.048500px;}
.y12a{bottom:340.513500px;}
.y27b{bottom:340.789500px;}
.y112{bottom:343.542000px;}
.y4a{bottom:343.875000px;}
.y1f2{bottom:343.909500px;}
.y147{bottom:344.421000px;}
.yf{bottom:348.133500px;}
.ydc{bottom:350.509500px;}
.ycf{bottom:352.702500px;}
.y1c5{bottom:354.133500px;}
.y53{bottom:355.755000px;}
.ya4{bottom:356.611500px;}
.y1db{bottom:360.072000px;}
.y1b9{bottom:361.599000px;}
.y18c{bottom:361.717500px;}
.y211{bottom:361.726500px;}
.y129{bottom:362.181000px;}
.y27a{bottom:363.057000px;}
.y111{bottom:365.209500px;}
.y49{bottom:366.015000px;}
.y146{bottom:366.088500px;}
.yce{bottom:374.370000px;}
.ya3{bottom:378.280500px;}
.y1f1{bottom:380.523000px;}
.y1b8{bottom:383.268000px;}
.y18b{bottom:383.386500px;}
.y210{bottom:383.395500px;}
.y128{bottom:383.850000px;}
.ye{bottom:386.785499px;}
.y110{bottom:386.878500px;}
.y25b{bottom:387.373500px;}
.y1c4{bottom:387.384000px;}
.y145{bottom:387.757500px;}
.y48{bottom:388.335000px;}
.ydb{bottom:389.937000px;}
.ycd{bottom:396.039000px;}
.y179{bottom:398.505000px;}
.y279{bottom:399.669000px;}
.ya2{bottom:399.949500px;}
.y1f0{bottom:402.190500px;}
.y1b7{bottom:404.937000px;}
.y18a{bottom:405.055500px;}
.yd{bottom:408.044999px;}
.y10f{bottom:408.547500px;}
.y25a{bottom:409.042500px;}
.y144{bottom:409.426500px;}
.y47{bottom:410.295000px;}
.y1da{bottom:410.707500px;}
.y242{bottom:413.923500px;}
.ycc{bottom:417.708000px;}
.y20f{bottom:418.758000px;}
.y178{bottom:418.830000px;}
.y127{bottom:419.529000px;}
.y278{bottom:421.338000px;}
.ya1{bottom:421.618500px;}
.yda{bottom:422.814000px;}
.y28{bottom:425.235000px;}
.y1b6{bottom:426.606000px;}
.y189{bottom:426.724500px;}
.y10e{bottom:430.216500px;}
.y259{bottom:430.711500px;}
.y46{bottom:432.435000px;}
.y7c{bottom:433.404000px;}
.y241{bottom:434.247000px;}
.y1ef{bottom:438.804000px;}
.y177{bottom:439.153500px;}
.ycb{bottom:439.377000px;}
.y20e{bottom:440.427000px;}
.y143{bottom:442.677000px;}
.ya0{bottom:443.287500px;}
.y1b5{bottom:448.275000px;}
.y188{bottom:448.393500px;}
.y10d{bottom:451.885500px;}
.y258{bottom:452.380500px;}
.y240{bottom:454.570500px;}
.y45{bottom:454.755000px;}
.y7b{bottom:455.073000px;}
.y176{bottom:459.477000px;}
.y1ee{bottom:460.473000px;}
.yca{bottom:461.046000px;}
.y9f{bottom:464.956500px;}
.y1b4{bottom:469.942500px;}
.y187{bottom:470.061000px;}
.y10c{bottom:473.554500px;}
.y23f{bottom:474.894000px;}
.y20d{bottom:475.789500px;}
.y44{bottom:476.895000px;}
.y257{bottom:477.071768px;}
.y175{bottom:482.624368px;}
.yc9{bottom:482.713500px;}
.y9e{bottom:486.624000px;}
.y1b3{bottom:491.611500px;}
.y186{bottom:491.730000px;}
.y256{bottom:492.895988px;}
.y50{bottom:493.455000px;}
.y1d9{bottom:494.242500px;}
.y142{bottom:494.670000px;}
.y7a{bottom:494.674500px;}
.y10b{bottom:495.222000px;}
.y174{bottom:495.404311px;}
.y1ed{bottom:497.085000px;}
.y126{bottom:497.631000px;}
.y23e{bottom:498.578134px;}
.y43{bottom:499.215000px;}
.yc{bottom:502.864502px;}
.yc8{bottom:504.382500px;}
.y173{bottom:508.184254px;}
.y9d{bottom:508.293000px;}
.y255{bottom:508.719113px;}
.y79{bottom:510.364500px;}
.y20c{bottom:511.152000px;}
.y38{bottom:511.635000px;}
.y23d{bottom:512.414440px;}
.y1b2{bottom:513.280500px;}
.y185{bottom:513.399000px;}
.y1d8{bottom:515.911500px;}
.y141{bottom:516.337500px;}
.y10a{bottom:516.891000px;}
.y1ec{bottom:518.754000px;}
.yb{bottom:520.864502px;}
.y172{bottom:520.963312px;}
.y42{bottom:521.565000px;}
.y254{bottom:524.543334px;}
.yc7{bottom:526.051500px;}
.y78{bottom:526.056000px;}
.y23c{bottom:526.250747px;}
.y9c{bottom:529.962000px;}
.y20b{bottom:532.819500px;}
.y171{bottom:533.743255px;}
.y1b1{bottom:534.949500px;}
.y184{bottom:535.068000px;}
.y1d7{bottom:537.580500px;}
.y140{bottom:538.006500px;}
.y109{bottom:538.560000px;}
.ya{bottom:538.864499px;}
.y23b{bottom:540.087054px;}
.y253{bottom:540.367555px;}
.y77{bottom:541.747500px;}
.y170{bottom:546.523197px;}
.yc6{bottom:547.720500px;}
.y9b{bottom:551.631000px;}
.y23a{bottom:553.923360px;}
.y1eb{bottom:555.366000px;}
.y252{bottom:556.191775px;}
.y183{bottom:556.737000px;}
.y9{bottom:556.864499px;}
.y76{bottom:557.439000px;}
.y1d6{bottom:559.249500px;}
.y16f{bottom:559.303140px;}
.y13f{bottom:559.675500px;}
.y108{bottom:560.229000px;}
.y277{bottom:561.663000px;}
.y125{bottom:564.861900px;}
.y239{bottom:567.758709px;}
.y20a{bottom:568.182000px;}
.yc5{bottom:569.389500px;}
.y251{bottom:572.015996px;}
.y16e{bottom:572.083083px;}
.y75{bottom:573.129000px;}
.y9a{bottom:573.300000px;}
.y41{bottom:576.255000px;}
.y1ea{bottom:577.035000px;}
.y182{bottom:578.406000px;}
.y13e{bottom:581.344500px;}
.y238{bottom:581.595016px;}
.y107{bottom:581.898000px;}
.y276{bottom:583.332000px;}
.y124{bottom:584.364000px;}
.y16d{bottom:584.863026px;}
.y250{bottom:587.839121px;}
.y74{bottom:588.820500px;}
.y209{bottom:589.851000px;}
.yc4{bottom:591.058500px;}
.y99{bottom:594.967500px;}
.y237{bottom:595.431322px;}
.y16c{bottom:597.642084px;}
.y181{bottom:600.073500px;}
.y1d5{bottom:600.568500px;}
.y13d{bottom:603.013500px;}
.y106{bottom:603.565500px;}
.y24f{bottom:603.663342px;}
.y1b0{bottom:603.811500px;}
.y73{bottom:604.512000px;}
.y275{bottom:605.001000px;}
.y236{bottom:609.267629px;}
.y16b{bottom:610.422027px;}
.yc3{bottom:612.726000px;}
.y1e9{bottom:613.648500px;}
.y98{bottom:616.636500px;}
.y24e{bottom:619.487562px;}
.y72{bottom:620.203500px;}
.y180{bottom:621.742500px;}
.y235{bottom:623.103935px;}
.y16a{bottom:623.201970px;}
.y1af{bottom:624.135000px;}
.y13c{bottom:624.682500px;}
.y208{bottom:625.213500px;}
.y105{bottom:625.234500px;}
.y274{bottom:626.668500px;}
.yc2{bottom:634.395000px;}
.y24d{bottom:635.311783px;}
.y1e8{bottom:635.317500px;}
.y71{bottom:635.895000px;}
.y169{bottom:635.981913px;}
.y234{bottom:636.939284px;}
.y97{bottom:638.305500px;}
.y123{bottom:640.947900px;}
.y17f{bottom:643.411500px;}
.y1ae{bottom:644.458500px;}
.y8{bottom:645.510000px;}
.y168{bottom:648.761855px;}
.y233{bottom:650.775591px;}
.y273{bottom:650.824988px;}
.y24c{bottom:651.136004px;}
.y70{bottom:651.585000px;}
.yc1{bottom:656.064000px;}
.y1e7{bottom:656.985000px;}
.y96{bottom:659.974500px;}
.y122{bottom:660.450000px;}
.y207{bottom:660.576000px;}
.y167{bottom:661.540913px;}
.y232{bottom:664.611897px;}
.y1ad{bottom:664.782000px;}
.y17e{bottom:665.080500px;}
.y272{bottom:665.593061px;}
.y7{bottom:666.771000px;}
.y24b{bottom:666.959129px;}
.y6f{bottom:667.276500px;}
.y26{bottom:671.145000px;}
.y166{bottom:674.320856px;}
.yc0{bottom:677.733000px;}
.y231{bottom:678.448204px;}
.y271{bottom:680.361135px;}
.y95{bottom:681.643500px;}
.y206{bottom:682.245000px;}
.y37{bottom:682.305000px;}
.y24a{bottom:682.783350px;}
.y6e{bottom:682.968000px;}
.y1ac{bottom:685.105500px;}
.y17d{bottom:686.749500px;}
.y165{bottom:687.100799px;}
.y223{bottom:689.688000px;}
.y230{bottom:692.284510px;}
.y1e6{bottom:693.598500px;}
.y104{bottom:694.096500px;}
.y270{bottom:695.129208px;}
.y249{bottom:698.607570px;}
.y6d{bottom:698.659500px;}
.ybf{bottom:699.402000px;}
.y164{bottom:699.880742px;}
.y94{bottom:703.312500px;}
.y205{bottom:703.914000px;}
.y1ab{bottom:705.430500px;}
.y22f{bottom:706.120817px;}
.y17c{bottom:708.417000px;}
.y26f{bottom:709.896260px;}
.y222{bottom:711.357000px;}
.y163{bottom:712.660685px;}
.y6c{bottom:714.349500px;}
.y103{bottom:714.420000px;}
.y248{bottom:714.431791px;}
.y1e5{bottom:715.267500px;}
.y121{bottom:717.482400px;}
.y22e{bottom:719.956166px;}
.ybe{bottom:721.071000px;}
.y26e{bottom:724.664333px;}
.y93{bottom:724.980000px;}
.y162{bottom:725.439743px;}
.y1aa{bottom:725.754000px;}
.y6{bottom:726.298500px;}
.y6b{bottom:730.041000px;}
.y247{bottom:730.256011px;}
.y221{bottom:733.026000px;}
.y22d{bottom:733.792472px;}
.y102{bottom:734.745000px;}
.y120{bottom:736.984500px;}
.y161{bottom:738.219686px;}
.y204{bottom:739.276500px;}
.y26d{bottom:739.432407px;}
.ybd{bottom:742.738500px;}
.y1a9{bottom:746.077500px;}
.y246{bottom:746.079137px;}
.y92{bottom:746.649000px;}
.y22c{bottom:747.628779px;}
.y17b{bottom:747.844500px;}
.y160{bottom:750.999629px;}
.y1e4{bottom:751.879500px;}
.y3{bottom:752.599495px;}
.y26c{bottom:754.200480px;}
.y101{bottom:755.068500px;}
.y203{bottom:760.945500px;}
.y22b{bottom:761.465085px;}
.y15f{bottom:763.779571px;}
.ybc{bottom:764.407500px;}
.y1a8{bottom:766.401000px;}
.y91{bottom:768.318000px;}
.y26b{bottom:768.968554px;}
.y220{bottom:769.638000px;}
.y244{bottom:772.830022px;}
.y1e3{bottom:773.548500px;}
.y22a{bottom:775.301392px;}
.y100{bottom:775.392000px;}
.y15e{bottom:776.559514px;}
.y6a{bottom:777.351000px;}
.y26a{bottom:783.736628px;}
.ybb{bottom:786.076500px;}
.y1a7{bottom:786.724500px;}
.y245{bottom:788.654243px;}
.y229{bottom:789.136741px;}
.y15d{bottom:789.339457px;}
.y90{bottom:789.987000px;}
.y21f{bottom:791.307000px;}
.y11f{bottom:794.466750px;}
.yff{bottom:795.715500px;}
.y202{bottom:796.308000px;}
.y269{bottom:798.503679px;}
.y15c{bottom:802.118515px;}
.y228{bottom:802.973047px;}
.y1a6{bottom:807.049500px;}
.yba{bottom:807.745500px;}
.y1e2{bottom:810.160500px;}
.y22{bottom:810.285000px;}
.y8f{bottom:811.656000px;}
.y21e{bottom:812.976000px;}
.y268{bottom:813.271752px;}
.y11e{bottom:813.967500px;}
.y15b{bottom:814.898458px;}
.yfe{bottom:816.039000px;}
.y227{bottom:816.809354px;}
.y201{bottom:817.977000px;}
.y36{bottom:821.445000px;}
.y1a5{bottom:827.553093px;}
.y15a{bottom:827.678401px;}
.y267{bottom:828.039826px;}
.yb9{bottom:829.414500px;}
.y243{bottom:830.232000px;}
.y1e1{bottom:831.829500px;}
.y8e{bottom:833.325000px;}
.yfd{bottom:836.364000px;}
.y1a4{bottom:839.283390px;}
.y200{bottom:839.644500px;}
.y225{bottom:840.199666px;}
.y159{bottom:840.458344px;}
.y266{bottom:842.807900px;}
.y21d{bottom:849.588000px;}
.y1a3{bottom:851.013686px;}
.yb8{bottom:851.083500px;}
.y158{bottom:853.238286px;}
.y226{bottom:854.035972px;}
.y8d{bottom:854.992500px;}
.yfc{bottom:856.687500px;}
.y265{bottom:857.575973px;}
.y1a2{bottom:862.743171px;}
.y69{bottom:862.867500px;}
.y157{bottom:866.017345px;}
.y1e0{bottom:868.443000px;}
.y21c{bottom:871.257000px;}
.y264{bottom:872.343024px;}
.yb7{bottom:872.751000px;}
.y1a1{bottom:874.473467px;}
.y1ff{bottom:875.007000px;}
.y8c{bottom:876.661500px;}
.y156{bottom:878.797287px;}
.y2{bottom:879.369000px;}
.yfb{bottom:880.447500px;}
.y263{bottom:887.111098px;}
.y1a0{bottom:888.954042px;}
.y1df{bottom:890.112000px;}
.y155{bottom:891.577230px;}
.y224{bottom:893.085000px;}
.yb6{bottom:894.420000px;}
.y1fe{bottom:896.676000px;}
.y8b{bottom:898.330500px;}
.y19f{bottom:900.684338px;}
.y262{bottom:901.879172px;}
.yfa{bottom:902.116500px;}
.y154{bottom:904.357173px;}
.y68{bottom:904.695000px;}
.y21b{bottom:907.870500px;}
.y19e{bottom:912.414634px;}
.yb5{bottom:916.089000px;}
.y261{bottom:916.647245px;}
.y153{bottom:917.137116px;}
.y8a{bottom:919.999500px;}
.yf9{bottom:923.785500px;}
.y19d{bottom:924.144931px;}
.y1de{bottom:926.724000px;}
.y21a{bottom:929.538000px;}
.y152{bottom:929.916174px;}
.y260{bottom:931.415319px;}
.y1fd{bottom:932.038500px;}
.y19c{bottom:935.875227px;}
.yb4{bottom:937.758000px;}
.y89{bottom:941.668500px;}
.y151{bottom:942.696117px;}
.yf8{bottom:946.051500px;}
.y25f{bottom:946.182370px;}
.y1dd{bottom:948.393000px;}
.y219{bottom:951.207000px;}
.y1fc{bottom:953.707500px;}
.y67{bottom:957.933000px;}
.yb3{bottom:959.427000px;}
.y19b{bottom:961.762106px;}
.y88{bottom:963.337500px;}
.y14f{bottom:964.300643px;}
.y1{bottom:966.726000px;}
.yf7{bottom:967.720500px;}
.y25d{bottom:971.147836px;}
.y19a{bottom:973.492403px;}
.y150{bottom:977.080586px;}
.yb2{bottom:981.094500px;}
.y87{bottom:985.005000px;}
.y199{bottom:985.222699px;}
.y25e{bottom:985.915910px;}
.y218{bottom:987.820500px;}
.y1fb{bottom:989.070000px;}
.yf6{bottom:989.389500px;}
.y66{bottom:995.292000px;}
.y198{bottom:996.952184px;}
.yb1{bottom:1002.763500px;}
.y86{bottom:1006.674000px;}
.y197{bottom:1008.682480px;}
.y217{bottom:1009.489500px;}
.y1fa{bottom:1010.739000px;}
.yf5{bottom:1011.058500px;}
.y14e{bottom:1014.786000px;}
.y2d{bottom:1019.490000px;}
.y196{bottom:1023.648636px;}
.yb0{bottom:1024.432500px;}
.y25c{bottom:1026.150000px;}
.y85{bottom:1028.343000px;}
.yf4{bottom:1033.324500px;}
.yf1{bottom:1035.157500px;}
.y195{bottom:1035.378933px;}
.yaf{bottom:1046.101500px;}
.y84{bottom:1067.770500px;}
.yf3{bottom:1070.535000px;}
.y35{bottom:1148.400000px;}
.y34{bottom:1186.560000px;}
.h12{height:5.729063px;}
.h19{height:19.800000px;}
.h28{height:28.285733px;}
.h2d{height:29.123226px;}
.h24{height:29.499174px;}
.h1d{height:30.780000px;}
.h2c{height:31.729220px;}
.h7{height:32.130000px;}
.h2e{height:34.351892px;}
.h30{height:36.665224px;}
.h2f{height:39.287358px;}
.h2a{height:41.484266px;}
.h25{height:44.831700px;}
.h21{height:45.687311px;}
.h6{height:45.900000px;}
.h1a{height:48.095280px;}
.h3{height:48.195000px;}
.h2b{height:48.418560px;}
.h22{height:49.090950px;}
.hf{height:52.560000px;}
.h23{height:53.798400px;}
.h1c{height:53.838000px;}
.h2{height:55.080000px;}
.h27{height:59.693702px;}
.h29{height:59.699702px;}
.h20{height:64.557900px;}
.h18{height:71.784000px;}
.h10{height:73.296000px;}
.h1f{height:73.437574px;}
.h13{height:74.004654px;}
.h17{height:76.248000px;}
.h26{height:77.469300px;}
.h5{height:78.030000px;}
.h1e{height:87.030450px;}
.he{height:97.483680px;}
.hc{height:109.944000px;}
.h11{height:112.500000px;}
.h15{height:114.120000px;}
.h4{height:119.055004px;}
.hb{height:120.600000px;}
.h9{height:133.416000px;}
.ha{height:134.131680px;}
.h14{height:146.736000px;}
.hd{height:221.970000px;}
.h1b{height:369.975000px;}
.h16{height:539.205000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:159.690000px;}
.w2{width:637.794021px;}
.wd{width:684.150000px;}
.wc{width:697.830000px;}
.wa{width:707.190000px;}
.w7{width:761.010000px;}
.w9{width:761.190000px;}
.w6{width:770.190000px;}
.w5{width:773.250000px;}
.w4{width:775.410000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w8{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x7{left:22.499986px;}
.x5{left:56.880000px;}
.x8{left:68.760000px;}
.xa{left:72.720000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:112.281000px;}
.x39{left:117.135196px;}
.x2d{left:126.519000px;}
.xb{left:128.221500px;}
.x3c{left:129.840000px;}
.x13{left:132.478500px;}
.x18{left:137.232000px;}
.x15{left:138.619500px;}
.x3b{left:152.239500px;}
.x11{left:156.178500px;}
.x9{left:158.970000px;}
.xc{left:170.715000px;}
.x3d{left:181.654500px;}
.x17{left:186.532500px;}
.x47{left:187.901331px;}
.x4{left:203.484001px;}
.x46{left:205.573500px;}
.xd{left:220.084500px;}
.x59{left:225.058500px;}
.x25{left:228.100057px;}
.x2e{left:231.360000px;}
.x3a{left:238.233000px;}
.x19{left:245.998500px;}
.x24{left:291.348000px;}
.x30{left:308.136188px;}
.x2f{left:317.464559px;}
.x22{left:320.530500px;}
.x16{left:323.880000px;}
.x1e{left:330.225300px;}
.x20{left:340.357050px;}
.x1d{left:342.090450px;}
.x32{left:352.104905px;}
.x1f{left:354.444300px;}
.x1b{left:357.720750px;}
.x1c{left:359.146350px;}
.x1a{left:362.391750px;}
.x31{left:366.807971px;}
.xe{left:377.521500px;}
.xf{left:383.008500px;}
.x21{left:405.190800px;}
.x4e{left:420.408710px;}
.x10{left:421.687500px;}
.x4f{left:423.614961px;}
.x58{left:426.381844px;}
.x57{left:429.373079px;}
.x48{left:433.792368px;}
.x33{left:438.584782px;}
.x50{left:441.863479px;}
.x23{left:448.909500px;}
.x14{left:453.298500px;}
.x3{left:454.959000px;}
.x45{left:459.797669px;}
.x44{left:462.601135px;}
.x3e{left:471.500008px;}
.x49{left:479.097224px;}
.x2c{left:486.893457px;}
.x52{left:490.128071px;}
.x27{left:492.401412px;}
.x34{left:495.657717px;}
.x26{left:497.702355px;}
.x51{left:507.325117px;}
.x40{left:511.113452px;}
.x3f{left:527.225479px;}
.x29{left:534.525859px;}
.x28{left:545.099435px;}
.x4b{left:555.435998px;}
.x4a{left:561.255885px;}
.x54{left:564.363045px;}
.x53{left:569.795520px;}
.x42{left:577.861227px;}
.x2b{left:581.688502px;}
.x41{left:582.950950px;}
.x36{left:595.819963px;}
.x4d{left:606.560740px;}
.x56{left:615.067854px;}
.x2a{left:623.427232px;}
.x35{left:634.604808px;}
.x4c{left:653.331248px;}
.x55{left:658.716784px;}
.x43{left:663.459366px;}
.x38{left:697.052438px;}
.x37{left:740.676863px;}
@media print{
.v4{vertical-align:-19.280000pt;}
.v6{vertical-align:-9.562667pt;}
.v7{vertical-align:-5.176654pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:23.136000pt;}
.v3{vertical-align:27.765333pt;}
.v2{vertical-align:39.989333pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000086pt;}
.ls1d{letter-spacing:0.000159pt;}
.ls1c{letter-spacing:0.000882pt;}
.ls19{letter-spacing:0.001091pt;}
.lsf{letter-spacing:0.001338pt;}
.ls1{letter-spacing:0.108800pt;}
.ls2{letter-spacing:0.256000pt;}
.ls8{letter-spacing:2.652911pt;}
.ls4{letter-spacing:2.653956pt;}
.ls6{letter-spacing:2.654423pt;}
.ls5{letter-spacing:2.655017pt;}
.lsd{letter-spacing:2.658591pt;}
.ls2c{letter-spacing:3.671248pt;}
.ls2b{letter-spacing:5.519984pt;}
.ls13{letter-spacing:14.164905pt;}
.ls12{letter-spacing:14.170238pt;}
.ls22{letter-spacing:16.161915pt;}
.ls16{letter-spacing:16.294241pt;}
.ls11{letter-spacing:16.823925pt;}
.ls14{letter-spacing:16.825987pt;}
.ls1b{letter-spacing:17.706238pt;}
.ls24{letter-spacing:17.708800pt;}
.ls10{letter-spacing:17.711572pt;}
.ls25{letter-spacing:17.714133pt;}
.ls1e{letter-spacing:18.076464pt;}
.ls21{letter-spacing:19.813492pt;}
.lse{letter-spacing:22.018591pt;}
.lsb{letter-spacing:23.677258pt;}
.lsc{letter-spacing:24.797258pt;}
.ls20{letter-spacing:25.996464pt;}
.ls1a{letter-spacing:27.232159pt;}
.ls17{letter-spacing:28.111804pt;}
.ls7{letter-spacing:28.253258pt;}
.ls29{letter-spacing:29.041915pt;}
.ls2a{letter-spacing:29.047248pt;}
.ls26{letter-spacing:29.296159pt;}
.lsa{letter-spacing:29.447925pt;}
.ls18{letter-spacing:30.767321pt;}
.ls23{letter-spacing:31.626825pt;}
.ls28{letter-spacing:34.070323pt;}
.ls9{letter-spacing:46.002591pt;}
.ls1f{letter-spacing:556.907657pt;}
.ls15{letter-spacing:660.667657pt;}
.ws5{word-spacing:-64.000000pt;}
.wse9{word-spacing:-40.590295pt;}
.ws2{word-spacing:-31.505280pt;}
.ws11c{word-spacing:-22.864719pt;}
.ws123{word-spacing:-21.973150pt;}
.ws15e{word-spacing:-19.925333pt;}
.ws3{word-spacing:-18.112000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.472000pt;}
.ws2f{word-spacing:-17.343010pt;}
.ws6{word-spacing:-16.768000pt;}
.ws7{word-spacing:-16.704000pt;}
.ws183{word-spacing:-14.550873pt;}
.ws18d{word-spacing:-13.579712pt;}
.ws9{word-spacing:-12.832000pt;}
.ws173{word-spacing:-12.722923pt;}
.wsa{word-spacing:-12.576000pt;}
.ws107{word-spacing:-11.751563pt;}
.ws8{word-spacing:-11.234560pt;}
.ws122{word-spacing:-10.786380pt;}
.wsa1{word-spacing:-3.443098pt;}
.ws138{word-spacing:-3.188053pt;}
.ws13e{word-spacing:-3.060531pt;}
.ws40{word-spacing:-2.996770pt;}
.ws9b{word-spacing:-2.964870pt;}
.ws117{word-spacing:-2.933009pt;}
.wsee{word-spacing:-2.805487pt;}
.wsec{word-spacing:-2.786703pt;}
.ws55{word-spacing:-2.677965pt;}
.ws171{word-spacing:-2.614204pt;}
.ws13a{word-spacing:-2.550443pt;}
.ws14d{word-spacing:-2.422921pt;}
.ws4f{word-spacing:-2.295398pt;}
.ws64{word-spacing:-2.231637pt;}
.wsd9{word-spacing:-2.167876pt;}
.ws15b{word-spacing:-2.040354pt;}
.ws140{word-spacing:-1.912832pt;}
.ws52{word-spacing:-1.849071pt;}
.ws14c{word-spacing:-1.785310pt;}
.ws118{word-spacing:-1.721549pt;}
.ws2a{word-spacing:-1.657788pt;}
.wsdc{word-spacing:-1.594027pt;}
.ws51{word-spacing:-1.530266pt;}
.ws7a{word-spacing:-1.466505pt;}
.ws39{word-spacing:-1.402743pt;}
.ws26{word-spacing:-1.338982pt;}
.ws57{word-spacing:-1.275221pt;}
.wsb0{word-spacing:-1.158318pt;}
.ws6d{word-spacing:-1.147699pt;}
.ws78{word-spacing:-1.083938pt;}
.ws37{word-spacing:-1.020177pt;}
.wsa3{word-spacing:-0.956416pt;}
.ws112{word-spacing:-0.892655pt;}
.ws121{word-spacing:-0.839515pt;}
.ws75{word-spacing:-0.828894pt;}
.ws154{word-spacing:-0.786381pt;}
.ws106{word-spacing:-0.765133pt;}
.ws7e{word-spacing:-0.701372pt;}
.ws148{word-spacing:-0.686546pt;}
.wsbc{word-spacing:-0.573850pt;}
.ws18{word-spacing:-0.512000pt;}
.ws13c{word-spacing:-0.510089pt;}
.wsc0{word-spacing:-0.446327pt;}
.ws16e{word-spacing:-0.382566pt;}
.ws12b{word-spacing:-0.221091pt;}
.wsda{word-spacing:-0.191283pt;}
.ws142{word-spacing:-0.127522pt;}
.ws82{word-spacing:-0.063761pt;}
.wsb3{word-spacing:-0.058182pt;}
.ws9c{word-spacing:-0.053134pt;}
.wseb{word-spacing:-0.042507pt;}
.ws120{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws81{word-spacing:0.063761pt;}
.ws139{word-spacing:0.127522pt;}
.ws38{word-spacing:0.191283pt;}
.ws153{word-spacing:0.223162pt;}
.ws45{word-spacing:0.255044pt;}
.wse0{word-spacing:0.318805pt;}
.ws7d{word-spacing:0.382566pt;}
.ws34{word-spacing:0.446327pt;}
.wsc6{word-spacing:0.510089pt;}
.wsf{word-spacing:0.535273pt;}
.ws32{word-spacing:0.573850pt;}
.ws84{word-spacing:0.637611pt;}
.wsd4{word-spacing:0.701372pt;}
.ws1e{word-spacing:0.745216pt;}
.ws83{word-spacing:0.765133pt;}
.ws19c{word-spacing:0.826183pt;}
.wscc{word-spacing:0.828894pt;}
.ws2d{word-spacing:0.892655pt;}
.wsbb{word-spacing:0.942546pt;}
.wsca{word-spacing:0.956416pt;}
.ws76{word-spacing:1.020177pt;}
.ws2b{word-spacing:1.083938pt;}
.ws53{word-spacing:1.147699pt;}
.wsce{word-spacing:1.211460pt;}
.ws86{word-spacing:1.275221pt;}
.ws89{word-spacing:1.338982pt;}
.ws88{word-spacing:1.399110pt;}
.ws6c{word-spacing:1.402743pt;}
.ws11{word-spacing:1.466183pt;}
.ws94{word-spacing:1.466505pt;}
.ws47{word-spacing:1.498375pt;}
.ws3b{word-spacing:1.530266pt;}
.wsb2{word-spacing:1.551509pt;}
.wsd0{word-spacing:1.594027pt;}
.ws19d{word-spacing:1.640729pt;}
.ws4e{word-spacing:1.657788pt;}
.ws5f{word-spacing:1.721549pt;}
.ws198{word-spacing:1.785097pt;}
.ws199{word-spacing:1.785310pt;}
.ws197{word-spacing:1.786515pt;}
.ws59{word-spacing:1.849071pt;}
.ws126{word-spacing:1.863886pt;}
.wsd1{word-spacing:1.912832pt;}
.wscb{word-spacing:1.976593pt;}
.wse{word-spacing:1.989820pt;}
.ws20{word-spacing:2.029714pt;}
.ws109{word-spacing:2.030670pt;}
.wsc2{word-spacing:2.040354pt;}
.ws10c{word-spacing:2.068275pt;}
.ws7f{word-spacing:2.104115pt;}
.ws125{word-spacing:2.157276pt;}
.ws71{word-spacing:2.167876pt;}
.ws177{word-spacing:2.198521pt;}
.wsfb{word-spacing:2.231637pt;}
.ws178{word-spacing:2.239234pt;}
.ws22{word-spacing:2.295383pt;}
.ws44{word-spacing:2.295398pt;}
.ws8e{word-spacing:2.329791pt;}
.ws18f{word-spacing:2.346574pt;}
.ws108{word-spacing:2.350313pt;}
.ws8f{word-spacing:2.359159pt;}
.ws192{word-spacing:2.390029pt;}
.wsab{word-spacing:2.422921pt;}
.wsac{word-spacing:2.486682pt;}
.ws185{word-spacing:2.514391pt;}
.ws18c{word-spacing:2.518153pt;}
.ws18b{word-spacing:2.519571pt;}
.ws174{word-spacing:2.544585pt;}
.ws11b{word-spacing:2.550443pt;}
.ws1a{word-spacing:2.571639pt;}
.ws9e{word-spacing:2.614204pt;}
.ws18e{word-spacing:2.715942pt;}
.ws65{word-spacing:2.741726pt;}
.wsb6{word-spacing:2.804366pt;}
.wsbe{word-spacing:2.805487pt;}
.wsa7{word-spacing:2.869248pt;}
.ws184{word-spacing:2.910175pt;}
.ws130{word-spacing:2.920730pt;}
.ws24{word-spacing:2.932989pt;}
.wsbf{word-spacing:2.933009pt;}
.ws31{word-spacing:2.996770pt;}
.wse2{word-spacing:3.060531pt;}
.ws149{word-spacing:3.095275pt;}
.wsd6{word-spacing:3.098788pt;}
.ws50{word-spacing:3.124292pt;}
.ws17d{word-spacing:3.153457pt;}
.wsd7{word-spacing:3.156173pt;}
.ws3f{word-spacing:3.188053pt;}
.ws1b{word-spacing:3.211639pt;}
.wsf9{word-spacing:3.251814pt;}
.ws62{word-spacing:3.315575pt;}
.ws1f{word-spacing:3.379337pt;}
.ws124{word-spacing:3.382595pt;}
.ws49{word-spacing:3.411194pt;}
.ws1d{word-spacing:3.443098pt;}
.ws10e{word-spacing:3.444367pt;}
.ws74{word-spacing:3.506859pt;}
.ws23{word-spacing:3.517462pt;}
.ws33{word-spacing:3.570620pt;}
.wsd2{word-spacing:3.634381pt;}
.wsb8{word-spacing:3.677094pt;}
.wsa6{word-spacing:3.698142pt;}
.ws10{word-spacing:3.735276pt;}
.ws97{word-spacing:3.761903pt;}
.ws182{word-spacing:3.793458pt;}
.wsd5{word-spacing:3.825664pt;}
.ws3a{word-spacing:3.889425pt;}
.ws1c{word-spacing:3.985067pt;}
.wsbd{word-spacing:4.016947pt;}
.ws158{word-spacing:4.033381pt;}
.ws6b{word-spacing:4.080708pt;}
.wsb5{word-spacing:4.084367pt;}
.wsc{word-spacing:4.131706pt;}
.ws61{word-spacing:4.144469pt;}
.ws77{word-spacing:4.208230pt;}
.wsff{word-spacing:4.242586pt;}
.ws101{word-spacing:4.271991pt;}
.ws147{word-spacing:4.317095pt;}
.ws11d{word-spacing:4.335753pt;}
.ws85{word-spacing:4.399514pt;}
.ws12c{word-spacing:4.433458pt;}
.wsc9{word-spacing:4.463275pt;}
.ws12{word-spacing:4.491640pt;}
.ws41{word-spacing:4.527036pt;}
.ws29{word-spacing:4.590797pt;}
.ws99{word-spacing:4.654558pt;}
.ws79{word-spacing:4.718319pt;}
.ws4a{word-spacing:4.739541pt;}
.wse6{word-spacing:4.782067pt;}
.ws3c{word-spacing:4.782080pt;}
.wsdb{word-spacing:4.845841pt;}
.ws19{word-spacing:4.898913pt;}
.ws7b{word-spacing:4.909602pt;}
.wsb1{word-spacing:4.952076pt;}
.ws5c{word-spacing:4.973363pt;}
.ws145{word-spacing:5.037124pt;}
.ws150{word-spacing:5.100885pt;}
.wsaf{word-spacing:5.111478pt;}
.wsc8{word-spacing:5.164646pt;}
.ws5a{word-spacing:5.228407pt;}
.ws19e{word-spacing:5.248004pt;}
.ws19f{word-spacing:5.257490pt;}
.ws134{word-spacing:5.292169pt;}
.ws105{word-spacing:5.355930pt;}
.wsba{word-spacing:5.364368pt;}
.ws5e{word-spacing:5.419691pt;}
.wsaa{word-spacing:5.483452pt;}
.ws58{word-spacing:5.547213pt;}
.ws3e{word-spacing:5.610974pt;}
.ws3d{word-spacing:5.674735pt;}
.ws10f{word-spacing:5.713459pt;}
.ws96{word-spacing:5.738467pt;}
.wsc5{word-spacing:5.738496pt;}
.ws12d{word-spacing:5.771641pt;}
.ws111{word-spacing:5.802257pt;}
.ws156{word-spacing:5.840957pt;}
.wsf5{word-spacing:5.866018pt;}
.ws87{word-spacing:5.929779pt;}
.ws70{word-spacing:5.993540pt;}
.ws12f{word-spacing:6.004369pt;}
.ws14e{word-spacing:6.057301pt;}
.wsb4{word-spacing:6.120732pt;}
.ws9a{word-spacing:6.121062pt;}
.ws10b{word-spacing:6.129615pt;}
.wsb9{word-spacing:6.178914pt;}
.wsc7{word-spacing:6.184823pt;}
.ws15{word-spacing:6.237096pt;}
.ws115{word-spacing:6.248558pt;}
.ws30{word-spacing:6.248585pt;}
.ws7c{word-spacing:6.312346pt;}
.ws15c{word-spacing:6.376107pt;}
.ws43{word-spacing:6.439868pt;}
.ws4b{word-spacing:6.503629pt;}
.ws16{word-spacing:6.528005pt;}
.ws5b{word-spacing:6.567390pt;}
.wsfa{word-spacing:6.631151pt;}
.ws17b{word-spacing:6.636277pt;}
.ws48{word-spacing:6.652360pt;}
.ws28{word-spacing:6.694912pt;}
.wse3{word-spacing:6.758673pt;}
.wsae{word-spacing:6.811762pt;}
.ws2e{word-spacing:6.822434pt;}
.wsd3{word-spacing:6.886195pt;}
.ws80{word-spacing:6.949956pt;}
.ws36{word-spacing:7.013717pt;}
.ws14b{word-spacing:7.077478pt;}
.ws12a{word-spacing:7.109824pt;}
.ws54{word-spacing:7.141239pt;}
.ws13b{word-spacing:7.205001pt;}
.ws13{word-spacing:7.226188pt;}
.ws15a{word-spacing:7.268762pt;}
.wsa5{word-spacing:7.332523pt;}
.ws21{word-spacing:7.343100pt;}
.ws104{word-spacing:7.396284pt;}
.wsb7{word-spacing:7.458915pt;}
.ws68{word-spacing:7.460045pt;}
.wsc4{word-spacing:7.523806pt;}
.ws67{word-spacing:7.587567pt;}
.ws132{word-spacing:7.633461pt;}
.ws11a{word-spacing:7.651328pt;}
.ws14a{word-spacing:7.691643pt;}
.wse1{word-spacing:7.715089pt;}
.ws8d{word-spacing:7.778850pt;}
.wsa2{word-spacing:7.842611pt;}
.ws6e{word-spacing:7.970133pt;}
.ws93{word-spacing:8.033894pt;}
.ws72{word-spacing:8.225178pt;}
.ws113{word-spacing:8.288939pt;}
.ws152{word-spacing:8.352700pt;}
.wsa4{word-spacing:8.416461pt;}
.wscf{word-spacing:8.543983pt;}
.ws92{word-spacing:8.607744pt;}
.ws8c{word-spacing:8.671505pt;}
.ws14{word-spacing:8.855280pt;}
.wsc1{word-spacing:8.862788pt;}
.wsad{word-spacing:8.883983pt;}
.ws131{word-spacing:8.913462pt;}
.ws73{word-spacing:8.926549pt;}
.wsa9{word-spacing:8.990310pt;}
.ws91{word-spacing:9.054071pt;}
.wscd{word-spacing:9.117833pt;}
.ws42{word-spacing:9.181594pt;}
.ws13f{word-spacing:9.245355pt;}
.ws56{word-spacing:9.309116pt;}
.wsa8{word-spacing:9.372877pt;}
.ws69{word-spacing:9.436638pt;}
.ws6a{word-spacing:9.500399pt;}
.ws11e{word-spacing:9.555531pt;}
.wsc3{word-spacing:9.564160pt;}
.ws90{word-spacing:9.691682pt;}
.ws17{word-spacing:9.728008pt;}
.wsa0{word-spacing:9.755443pt;}
.ws4d{word-spacing:9.819204pt;}
.ws168{word-spacing:9.882965pt;}
.ws172{word-spacing:9.974668pt;}
.ws13d{word-spacing:10.010487pt;}
.wse7{word-spacing:10.138010pt;}
.ws159{word-spacing:10.159221pt;}
.ws35{word-spacing:10.265532pt;}
.ws169{word-spacing:10.326589pt;}
.ws151{word-spacing:10.329293pt;}
.ws98{word-spacing:10.393054pt;}
.ws8b{word-spacing:10.584337pt;}
.ws60{word-spacing:10.648098pt;}
.ws143{word-spacing:10.711859pt;}
.wsef{word-spacing:10.744306pt;}
.wsf0{word-spacing:10.749462pt;}
.wsf1{word-spacing:10.775620pt;}
.ws119{word-spacing:10.839381pt;}
.ws16d{word-spacing:10.903142pt;}
.ws181{word-spacing:10.949827pt;}
.ws17e{word-spacing:10.961877pt;}
.wsd8{word-spacing:10.966903pt;}
.ws180{word-spacing:10.978737pt;}
.ws15d{word-spacing:11.030665pt;}
.ws66{word-spacing:11.094426pt;}
.ws95{word-spacing:11.155579pt;}
.ws5d{word-spacing:11.158187pt;}
.wse4{word-spacing:11.285709pt;}
.wsdf{word-spacing:11.349470pt;}
.ws12e{word-spacing:11.648010pt;}
.ws6f{word-spacing:11.668275pt;}
.ws46{word-spacing:11.732036pt;}
.ws162{word-spacing:11.795797pt;}
.wsdd{word-spacing:11.859558pt;}
.ws114{word-spacing:11.891531pt;}
.ws116{word-spacing:11.923319pt;}
.ws137{word-spacing:11.987081pt;}
.ws144{word-spacing:12.050842pt;}
.ws27{word-spacing:12.178364pt;}
.wsd{word-spacing:12.288010pt;}
.ws166{word-spacing:12.305886pt;}
.wse5{word-spacing:12.433408pt;}
.ws8a{word-spacing:12.497169pt;}
.ws4c{word-spacing:12.560930pt;}
.ws9f{word-spacing:12.752213pt;}
.ws102{word-spacing:12.815974pt;}
.ws135{word-spacing:12.879735pt;}
.wsde{word-spacing:12.943497pt;}
.ws155{word-spacing:13.007258pt;}
.ws141{word-spacing:13.198541pt;}
.ws133{word-spacing:13.326063pt;}
.ws136{word-spacing:13.389824pt;}
.ws2c{word-spacing:13.517346pt;}
.ws63{word-spacing:13.708629pt;}
.ws157{word-spacing:15.005042pt;}
.ws110{word-spacing:16.116377pt;}
.wsf6{word-spacing:16.344858pt;}
.wsea{word-spacing:16.784626pt;}
.wsf3{word-spacing:17.853099pt;}
.wsfd{word-spacing:18.039757pt;}
.wsed{word-spacing:18.429090pt;}
.ws16f{word-spacing:19.638409pt;}
.ws16a{word-spacing:20.084736pt;}
.ws16c{word-spacing:20.786108pt;}
.ws16b{word-spacing:20.849869pt;}
.wse8{word-spacing:21.575757pt;}
.wsfc{word-spacing:21.581090pt;}
.ws15f{word-spacing:22.252612pt;}
.ws160{word-spacing:22.762701pt;}
.ws167{word-spacing:23.272789pt;}
.ws100{word-spacing:24.218227pt;}
.ws161{word-spacing:24.292966pt;}
.wsf2{word-spacing:24.484250pt;}
.wsf8{word-spacing:24.679757pt;}
.ws170{word-spacing:24.739294pt;}
.wsf7{word-spacing:25.408626pt;}
.wsf4{word-spacing:25.515293pt;}
.ws14f{word-spacing:26.715887pt;}
.ws10a{word-spacing:27.376441pt;}
.ws165{word-spacing:27.608542pt;}
.ws17f{word-spacing:28.974570pt;}
.ws164{word-spacing:29.457613pt;}
.ws11f{word-spacing:29.530227pt;}
.wsfe{word-spacing:29.690227pt;}
.ws163{word-spacing:29.903940pt;}
.ws146{word-spacing:31.401098pt;}
.wsb{word-spacing:33.170200pt;}
.ws193{word-spacing:37.719009pt;}
.ws9d{word-spacing:42.730256pt;}
.ws18a{word-spacing:43.495306pt;}
.ws176{word-spacing:45.313963pt;}
.ws127{word-spacing:45.872317pt;}
.ws19a{word-spacing:46.418057pt;}
.ws195{word-spacing:48.365504pt;}
.ws194{word-spacing:48.408959pt;}
.ws187{word-spacing:51.824390pt;}
.ws129{word-spacing:54.328839pt;}
.ws175{word-spacing:56.387995pt;}
.ws190{word-spacing:59.011998pt;}
.ws103{word-spacing:62.166867pt;}
.ws186{word-spacing:63.232274pt;}
.ws191{word-spacing:69.658493pt;}
.ws25{word-spacing:74.600067pt;}
.ws188{word-spacing:74.640159pt;}
.ws10d{word-spacing:84.648859pt;}
.ws17a{word-spacing:90.709352pt;}
.ws128{word-spacing:98.440818pt;}
.ws179{word-spacing:121.732928pt;}
.ws19b{word-spacing:125.736823pt;}
.ws17c{word-spacing:137.204003pt;}
.ws189{word-spacing:156.963179pt;}
.ws196{word-spacing:157.133568pt;}
._79{margin-left:-31.085577pt;}
._2a{margin-left:-28.832154pt;}
._18{margin-left:-26.513799pt;}
._2c{margin-left:-24.292966pt;}
._1b{margin-left:-20.669074pt;}
._2b{margin-left:-6.886195pt;}
._1a{margin-left:-5.897859pt;}
._14{margin-left:-4.829095pt;}
._3c{margin-left:-3.816120pt;}
._4{margin-left:-2.880000pt;}
._5{margin-left:-1.941333pt;}
._2{margin-left:-1.042773pt;}
._0{width:1.405440pt;}
._1{width:2.389333pt;}
._c{width:3.936000pt;}
._3d{width:5.305646pt;}
._e{width:6.432000pt;}
._d{width:7.344000pt;}
._f{width:8.378667pt;}
._77{width:9.311819pt;}
._2d{width:12.817769pt;}
._87{width:14.076196pt;}
._8{width:15.936000pt;}
._9{width:16.906667pt;}
._b{width:17.829333pt;}
._a{width:18.912000pt;}
._16{width:20.164514pt;}
._26{width:21.321933pt;}
._37{width:22.274116pt;}
._19{width:23.219500pt;}
._11{width:24.930927pt;}
._10{width:25.857170pt;}
._13{width:26.797414pt;}
._20{width:27.863586pt;}
._3{width:29.120000pt;}
._12{width:30.432298pt;}
._21{width:31.583471pt;}
._1e{width:33.283277pt;}
._6{width:34.816000pt;}
._7{width:35.781120pt;}
._17{width:36.923459pt;}
._38{width:38.129118pt;}
._1f{width:39.068193pt;}
._23{width:40.051029pt;}
._27{width:41.153015pt;}
._59{width:42.255531pt;}
._39{width:43.322266pt;}
._25{width:44.438767pt;}
._15{width:45.440038pt;}
._28{width:46.861687pt;}
._3f{width:47.833562pt;}
._8f{width:48.973005pt;}
._22{width:50.073941pt;}
._3a{width:51.200137pt;}
._24{width:52.347836pt;}
._1c{width:53.750579pt;}
._78{width:54.831732pt;}
._1d{width:57.360452pt;}
._a8{width:60.185285pt;}
._30{width:64.296960pt;}
._43{width:66.260013pt;}
._2e{width:67.373743pt;}
._ac{width:70.831780pt;}
._9a{width:75.897354pt;}
._72{width:79.846203pt;}
._61{width:81.826130pt;}
._4a{width:84.686464pt;}
._3b{width:86.077200pt;}
._7f{width:87.370857pt;}
._76{width:91.559283pt;}
._a7{width:93.653300pt;}
._7e{width:97.386343pt;}
._94{width:99.923756pt;}
._29{width:103.292400pt;}
._90{width:104.304108pt;}
._6d{width:108.312513pt;}
._45{width:110.438826pt;}
._9e{width:111.331641pt;}
._4f{width:112.399705pt;}
._a2{width:114.547590pt;}
._74{width:116.078706pt;}
._33{width:121.047006pt;}
._95{width:122.739525pt;}
._a5{width:125.194085pt;}
._5b{width:127.440797pt;}
._5e{width:135.028219pt;}
._51{width:138.768704pt;}
._99{width:139.914303pt;}
._6a{width:143.484741pt;}
._7c{width:144.594446pt;}
._88{width:146.083079pt;}
._41{width:147.562027pt;}
._ab{width:148.738920pt;}
._46{width:153.691643pt;}
._82{width:155.606439pt;}
._6c{width:156.625849pt;}
._7b{width:158.863507pt;}
._62{width:161.329728pt;}
._a3{width:164.477262pt;}
._93{width:165.946993pt;}
._40{width:167.003813pt;}
._b3{width:168.010411pt;}
._84{width:168.919705pt;}
._48{width:170.049819pt;}
._af{width:173.139797pt;}
._80{width:175.515269pt;}
._92{width:176.593623pt;}
._91{width:177.916436pt;}
._86{width:178.813050pt;}
._aa{width:183.618363pt;}
._8a{width:185.490040pt;}
._6e{width:188.114466pt;}
._a9{width:190.890950pt;}
._31{width:195.618953pt;}
._ad{width:197.097036pt;}
._98{width:200.778768pt;}
._58{width:204.834445pt;}
._b2{width:206.412185pt;}
._32{width:211.176653pt;}
._a6{width:212.132822pt;}
._44{width:218.146616pt;}
._b0{width:222.334839pt;}
._96{width:223.547975pt;}
._4b{width:227.322236pt;}
._97{width:229.678814pt;}
._b1{width:231.962761pt;}
._5f{width:238.471049pt;}
._63{width:245.032036pt;}
._6b{width:246.208472pt;}
._5c{width:248.072359pt;}
._9c{width:250.950600pt;}
._a1{width:252.401536pt;}
._b4{width:255.608573pt;}
._60{width:256.974716pt;}
._a0{width:258.935698pt;}
._64{width:264.154130pt;}
._5d{width:266.363181pt;}
._9d{width:267.780600pt;}
._b6{width:268.816657pt;}
._6f{width:271.816775pt;}
._54{width:272.895650pt;}
._67{width:280.224356pt;}
._65{width:283.241708pt;}
._75{width:287.541836pt;}
._a4{width:288.663723pt;}
._70{width:290.938869pt;}
._68{width:298.877645pt;}
._b5{width:303.120111pt;}
._85{width:309.102403pt;}
._71{width:310.026447pt;}
._56{width:317.741030pt;}
._89{width:325.004079pt;}
._34{width:336.020821pt;}
._9b{width:341.212156pt;}
._5a{width:357.634317pt;}
._55{width:363.829851pt;}
._36{width:368.156399pt;}
._69{width:374.547361pt;}
._52{width:397.168257pt;}
._50{width:407.230885pt;}
._4e{width:408.839935pt;}
._49{width:412.234552pt;}
._47{width:419.360071pt;}
._53{width:423.468280pt;}
._35{width:434.914236pt;}
._2f{width:436.279023pt;}
._81{width:439.569174pt;}
._4c{width:469.340964pt;}
._73{width:494.723788pt;}
._66{width:512.404607pt;}
._4d{width:551.552563pt;}
._83{width:552.733085pt;}
._7d{width:593.956185pt;}
._8b{width:599.857649pt;}
._8d{width:605.823609pt;}
._9f{width:616.298250pt;}
._8c{width:651.983649pt;}
._ae{width:663.962128pt;}
._42{width:711.110586pt;}
._3e{width:739.981061pt;}
._57{width:741.592657pt;}
._7a{width:773.927082pt;}
._8e{width:786.042076pt;}
.fs9{font-size:5.120000pt;}
.fs17{font-size:23.010848pt;}
.fs16{font-size:34.516416pt;}
.fs8{font-size:37.120000pt;}
.fs11{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:37.605002pt;}
.fs18{font-size:40.713354pt;}
.fs13{font-size:42.507200pt;}
.fsa{font-size:42.880000pt;}
.fs1a{font-size:43.455080pt;}
.fs19{font-size:46.562794pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs14{font-size:57.384960pt;}
.fsf{font-size:58.181867pt;}
.fs10{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:76.513067pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs12{font-size:91.815467pt;}
.fs6{font-size:96.000000pt;}
.fsc{font-size:110.200000pt;}
.fs5{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:6.240000pt;}
.y63{bottom:13.280000pt;}
.y65{bottom:16.000000pt;}
.y25{bottom:17.920000pt;}
.y33{bottom:22.400000pt;}
.y2e{bottom:23.360000pt;}
.y40{bottom:23.840000pt;}
.y32{bottom:42.880000pt;}
.y3f{bottom:44.320000pt;}
.y24{bottom:53.640000pt;}
.y3b{bottom:53.920000pt;}
.y64{bottom:56.640000pt;}
.y5{bottom:59.133337pt;}
.y31{bottom:63.360000pt;}
.y3e{bottom:64.640000pt;}
.y62{bottom:66.746667pt;}
.y83{bottom:71.817333pt;}
.y3a{bottom:81.600000pt;}
.y61{bottom:82.906667pt;}
.y27{bottom:83.520000pt;}
.y30{bottom:83.680000pt;}
.y3d{bottom:85.120000pt;}
.y4{bottom:86.333337pt;}
.y23{bottom:89.800000pt;}
.y2c{bottom:93.120000pt;}
.y52{bottom:94.080000pt;}
.y60{bottom:98.106667pt;}
.y1d1{bottom:106.192000pt;}
.y39{bottom:109.146667pt;}
.y133{bottom:111.668000pt;}
.y13b{bottom:113.540000pt;}
.y5f{bottom:114.266667pt;}
.y82{bottom:116.506667pt;}
.y1d4{bottom:118.200000pt;}
.y11d{bottom:119.700000pt;}
.yf0{bottom:120.237333pt;}
.y2b{bottom:120.800000pt;}
.yd9{bottom:120.901333pt;}
.y1cc{bottom:122.174667pt;}
.y194{bottom:122.894667pt;}
.y21{bottom:123.790666pt;}
.y1d0{bottom:124.257333pt;}
.ye6{bottom:126.214667pt;}
.y81{bottom:127.744000pt;}
.yae{bottom:128.318667pt;}
.y1c3{bottom:128.810667pt;}
.y11b{bottom:129.933333pt;}
.y5e{bottom:130.266667pt;}
.y132{bottom:130.929333pt;}
.y1f9{bottom:131.018667pt;}
.y13a{bottom:132.801333pt;}
.y1d3{bottom:134.141333pt;}
.y11c{bottom:135.640000pt;}
.yef{bottom:136.177333pt;}
.yd8{bottom:140.162667pt;}
.y11a{bottom:141.053333pt;}
.y1cb{bottom:141.436000pt;}
.y1cf{bottom:142.322667pt;}
.y193{bottom:143.654667pt;}
.y80{bottom:143.684000pt;}
.yad{bottom:144.258667pt;}
.y5d{bottom:146.426667pt;}
.ye5{bottom:146.976000pt;}
.y1c2{bottom:148.072000pt;}
.y2a{bottom:148.320000pt;}
.y216{bottom:150.189333pt;}
.y131{bottom:150.190667pt;}
.y1f8{bottom:150.280000pt;}
.y139{bottom:152.062667pt;}
.yee{bottom:152.117333pt;}
.y1d2{bottom:154.901333pt;}
.ye4{bottom:158.096000pt;}
.yd7{bottom:159.424000pt;}
.y7f{bottom:159.624000pt;}
.yac{bottom:160.198667pt;}
.y1ce{bottom:160.389333pt;}
.y1ca{bottom:160.697333pt;}
.yf2{bottom:161.818667pt;}
.y5c{bottom:162.586667pt;}
.y1c1{bottom:167.333333pt;}
.y192{bottom:167.438667pt;}
.yed{bottom:168.057333pt;}
.y130{bottom:169.450667pt;}
.y1f7{bottom:169.541333pt;}
.y282{bottom:169.824000pt;}
.y119{bottom:170.542667pt;}
.y138{bottom:171.324000pt;}
.y18{bottom:175.052000pt;}
.y7e{bottom:175.565333pt;}
.y29{bottom:176.000000pt;}
.yab{bottom:176.138667pt;}
.y5b{bottom:177.786667pt;}
.y1cd{bottom:178.454667pt;}
.yd6{bottom:178.685333pt;}
.ye3{bottom:178.856000pt;}
.y1c9{bottom:179.957333pt;}
.yec{bottom:183.998667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1c0{bottom:186.593333pt;}
.y191{bottom:186.698667pt;}
.y281{bottom:187.889333pt;}
.y12f{bottom:188.712000pt;}
.y118{bottom:189.804000pt;}
.ye2{bottom:189.976000pt;}
.y14d{bottom:190.585333pt;}
.y5a{bottom:192.826667pt;}
.y7d{bottom:196.325333pt;}
.yaa{bottom:196.900000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yd5{bottom:197.946667pt;}
.y137{bottom:199.218667pt;}
.y1f6{bottom:202.086667pt;}
.yeb{bottom:204.758667pt;}
.y1bf{bottom:205.854667pt;}
.y280{bottom:205.954667pt;}
.y190{bottom:205.960000pt;}
.y4f{bottom:207.386667pt;}
.y12e{bottom:207.973333pt;}
.y59{bottom:208.026667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y117{bottom:209.064000pt;}
.y14c{bottom:209.845333pt;}
.ye1{bottom:210.736000pt;}
.y2f{bottom:216.346667pt;}
.yd4{bottom:217.206667pt;}
.y1c8{bottom:218.480000pt;}
.y215{bottom:220.145333pt;}
.ya9{bottom:220.682667pt;}
.yea{bottom:220.698667pt;}
.y1f5{bottom:221.346667pt;}
.y58{bottom:223.226667pt;}
.y27f{bottom:224.020000pt;}
.y1be{bottom:225.116000pt;}
.y18f{bottom:225.221333pt;}
.y3c{bottom:225.946667pt;}
.y4e{bottom:227.226667pt;}
.y12d{bottom:227.234667pt;}
.y116{bottom:228.325333pt;}
.y14b{bottom:229.106667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ye0{bottom:234.520000pt;}
.yd3{bottom:236.468000pt;}
.y136{bottom:237.741333pt;}
.y57{bottom:238.426667pt;}
.y214{bottom:239.406667pt;}
.ya8{bottom:239.944000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1bd{bottom:244.377333pt;}
.ye9{bottom:244.482667pt;}
.y27e{bottom:245.141333pt;}
.y12c{bottom:246.496000pt;}
.y4d{bottom:246.746667pt;}
.y115{bottom:247.586667pt;}
.y14a{bottom:248.368000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ydf{bottom:253.781333pt;}
.y1f4{bottom:253.892000pt;}
.y56{bottom:254.586667pt;}
.yd2{bottom:255.729333pt;}
.y135{bottom:257.002667pt;}
.ya7{bottom:259.205333pt;}
.y1bc{bottom:263.638667pt;}
.ye8{bottom:263.744000pt;}
.y27d{bottom:264.402667pt;}
.y12b{bottom:265.757333pt;}
.y4c{bottom:266.306667pt;}
.y114{bottom:266.848000pt;}
.y149{bottom:267.629333pt;}
.y55{bottom:270.626667pt;}
.y213{bottom:270.840000pt;}
.yde{bottom:273.042667pt;}
.yd1{bottom:274.990667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y17a{bottom:276.052000pt;}
.y1c7{bottom:276.264000pt;}
.ya6{bottom:278.466667pt;}
.y1bb{bottom:282.900000pt;}
.y18e{bottom:283.005333pt;}
.y27c{bottom:283.664000pt;}
.y1dc{bottom:285.017333pt;}
.y4b{bottom:285.826667pt;}
.y113{bottom:286.109333pt;}
.y1f3{bottom:286.436000pt;}
.y134{bottom:286.558667pt;}
.y148{bottom:286.890667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y212{bottom:290.101333pt;}
.ydd{bottom:292.302667pt;}
.yd0{bottom:294.252000pt;}
.y1c6{bottom:295.524000pt;}
.ya5{bottom:297.728000pt;}
.ye7{bottom:298.790667pt;}
.y54{bottom:301.026667pt;}
.y1ba{bottom:302.160000pt;}
.y18d{bottom:302.265333pt;}
.y12a{bottom:302.678667pt;}
.y27b{bottom:302.924000pt;}
.y112{bottom:305.370667pt;}
.y4a{bottom:305.666667pt;}
.y1f2{bottom:305.697333pt;}
.y147{bottom:306.152000pt;}
.yf{bottom:309.452000pt;}
.ydc{bottom:311.564000pt;}
.ycf{bottom:313.513333pt;}
.y1c5{bottom:314.785333pt;}
.y53{bottom:316.226667pt;}
.ya4{bottom:316.988000pt;}
.y1db{bottom:320.064000pt;}
.y1b9{bottom:321.421333pt;}
.y18c{bottom:321.526667pt;}
.y211{bottom:321.534667pt;}
.y129{bottom:321.938667pt;}
.y27a{bottom:322.717333pt;}
.y111{bottom:324.630667pt;}
.y49{bottom:325.346667pt;}
.y146{bottom:325.412000pt;}
.yce{bottom:332.773333pt;}
.ya3{bottom:336.249333pt;}
.y1f1{bottom:338.242667pt;}
.y1b8{bottom:340.682667pt;}
.y18b{bottom:340.788000pt;}
.y210{bottom:340.796000pt;}
.y128{bottom:341.200000pt;}
.ye{bottom:343.809333pt;}
.y110{bottom:343.892000pt;}
.y25b{bottom:344.332000pt;}
.y1c4{bottom:344.341333pt;}
.y145{bottom:344.673333pt;}
.y48{bottom:345.186667pt;}
.ydb{bottom:346.610667pt;}
.ycd{bottom:352.034667pt;}
.y179{bottom:354.226667pt;}
.y279{bottom:355.261333pt;}
.ya2{bottom:355.510667pt;}
.y1f0{bottom:357.502667pt;}
.y1b7{bottom:359.944000pt;}
.y18a{bottom:360.049333pt;}
.yd{bottom:362.706666pt;}
.y10f{bottom:363.153333pt;}
.y25a{bottom:363.593333pt;}
.y144{bottom:363.934667pt;}
.y47{bottom:364.706667pt;}
.y1da{bottom:365.073333pt;}
.y242{bottom:367.932000pt;}
.ycc{bottom:371.296000pt;}
.y20f{bottom:372.229333pt;}
.y178{bottom:372.293333pt;}
.y127{bottom:372.914667pt;}
.y278{bottom:374.522667pt;}
.ya1{bottom:374.772000pt;}
.yda{bottom:375.834667pt;}
.y28{bottom:377.986667pt;}
.y1b6{bottom:379.205333pt;}
.y189{bottom:379.310667pt;}
.y10e{bottom:382.414667pt;}
.y259{bottom:382.854667pt;}
.y46{bottom:384.386667pt;}
.y7c{bottom:385.248000pt;}
.y241{bottom:385.997333pt;}
.y1ef{bottom:390.048000pt;}
.y177{bottom:390.358667pt;}
.ycb{bottom:390.557333pt;}
.y20e{bottom:391.490667pt;}
.y143{bottom:393.490667pt;}
.ya0{bottom:394.033333pt;}
.y1b5{bottom:398.466667pt;}
.y188{bottom:398.572000pt;}
.y10d{bottom:401.676000pt;}
.y258{bottom:402.116000pt;}
.y240{bottom:404.062667pt;}
.y45{bottom:404.226667pt;}
.y7b{bottom:404.509333pt;}
.y176{bottom:408.424000pt;}
.y1ee{bottom:409.309333pt;}
.yca{bottom:409.818667pt;}
.y9f{bottom:413.294667pt;}
.y1b4{bottom:417.726667pt;}
.y187{bottom:417.832000pt;}
.y10c{bottom:420.937333pt;}
.y23f{bottom:422.128000pt;}
.y20d{bottom:422.924000pt;}
.y44{bottom:423.906667pt;}
.y257{bottom:424.063793pt;}
.y175{bottom:428.999438pt;}
.yc9{bottom:429.078667pt;}
.y9e{bottom:432.554667pt;}
.y1b3{bottom:436.988000pt;}
.y186{bottom:437.093333pt;}
.y256{bottom:438.129767pt;}
.y50{bottom:438.626667pt;}
.y1d9{bottom:439.326667pt;}
.y142{bottom:439.706667pt;}
.y7a{bottom:439.710667pt;}
.y10b{bottom:440.197333pt;}
.y174{bottom:440.359387pt;}
.y1ed{bottom:441.853333pt;}
.y126{bottom:442.338667pt;}
.y23e{bottom:443.180563pt;}
.y43{bottom:443.746667pt;}
.yc{bottom:446.990669pt;}
.yc8{bottom:448.340000pt;}
.y173{bottom:451.719337pt;}
.y9d{bottom:451.816000pt;}
.y255{bottom:452.194768pt;}
.y79{bottom:453.657333pt;}
.y20c{bottom:454.357333pt;}
.y38{bottom:454.786667pt;}
.y23d{bottom:455.479503pt;}
.y1b2{bottom:456.249333pt;}
.y185{bottom:456.354667pt;}
.y1d8{bottom:458.588000pt;}
.y141{bottom:458.966667pt;}
.y10a{bottom:459.458667pt;}
.y1ec{bottom:461.114667pt;}
.yb{bottom:462.990669pt;}
.y172{bottom:463.078499pt;}
.y42{bottom:463.613333pt;}
.y254{bottom:466.260741pt;}
.yc7{bottom:467.601333pt;}
.y78{bottom:467.605333pt;}
.y23c{bottom:467.778442pt;}
.y9c{bottom:471.077333pt;}
.y20b{bottom:473.617333pt;}
.y171{bottom:474.438449pt;}
.y1b1{bottom:475.510667pt;}
.y184{bottom:475.616000pt;}
.y1d7{bottom:477.849333pt;}
.y140{bottom:478.228000pt;}
.y109{bottom:478.720000pt;}
.ya{bottom:478.990666pt;}
.y23b{bottom:480.077381pt;}
.y253{bottom:480.326715pt;}
.y77{bottom:481.553333pt;}
.y170{bottom:485.798398pt;}
.yc6{bottom:486.862667pt;}
.y9b{bottom:490.338667pt;}
.y23a{bottom:492.376320pt;}
.y1eb{bottom:493.658667pt;}
.y252{bottom:494.392689pt;}
.y183{bottom:494.877333pt;}
.y9{bottom:494.990666pt;}
.y76{bottom:495.501333pt;}
.y1d6{bottom:497.110667pt;}
.y16f{bottom:497.158347pt;}
.y13f{bottom:497.489333pt;}
.y108{bottom:497.981333pt;}
.y277{bottom:499.256000pt;}
.y125{bottom:502.099467pt;}
.y239{bottom:504.674408pt;}
.y20a{bottom:505.050667pt;}
.yc5{bottom:506.124000pt;}
.y251{bottom:508.458663pt;}
.y16e{bottom:508.518296pt;}
.y75{bottom:509.448000pt;}
.y9a{bottom:509.600000pt;}
.y41{bottom:512.226667pt;}
.y1ea{bottom:512.920000pt;}
.y182{bottom:514.138667pt;}
.y13e{bottom:516.750667pt;}
.y238{bottom:516.973347pt;}
.y107{bottom:517.242667pt;}
.y276{bottom:518.517333pt;}
.y124{bottom:519.434667pt;}
.y16d{bottom:519.878245pt;}
.y250{bottom:522.523663pt;}
.y74{bottom:523.396000pt;}
.y209{bottom:524.312000pt;}
.yc4{bottom:525.385333pt;}
.y99{bottom:528.860000pt;}
.y237{bottom:529.272286pt;}
.y16c{bottom:531.237408pt;}
.y181{bottom:533.398667pt;}
.y1d5{bottom:533.838667pt;}
.y13d{bottom:536.012000pt;}
.y106{bottom:536.502667pt;}
.y24f{bottom:536.589637pt;}
.y1b0{bottom:536.721333pt;}
.y73{bottom:537.344000pt;}
.y275{bottom:537.778667pt;}
.y236{bottom:541.571225pt;}
.y16b{bottom:542.597357pt;}
.yc3{bottom:544.645333pt;}
.y1e9{bottom:545.465333pt;}
.y98{bottom:548.121333pt;}
.y24e{bottom:550.655611pt;}
.y72{bottom:551.292000pt;}
.y180{bottom:552.660000pt;}
.y235{bottom:553.870165pt;}
.y16a{bottom:553.957306pt;}
.y1af{bottom:554.786667pt;}
.y13c{bottom:555.273333pt;}
.y208{bottom:555.745333pt;}
.y105{bottom:555.764000pt;}
.y274{bottom:557.038667pt;}
.yc2{bottom:563.906667pt;}
.y24d{bottom:564.721585pt;}
.y1e8{bottom:564.726667pt;}
.y71{bottom:565.240000pt;}
.y169{bottom:565.317256pt;}
.y234{bottom:566.168252pt;}
.y97{bottom:567.382667pt;}
.y123{bottom:569.731467pt;}
.y17f{bottom:571.921333pt;}
.y1ae{bottom:572.852000pt;}
.y8{bottom:573.786667pt;}
.y168{bottom:576.677205pt;}
.y233{bottom:578.467192pt;}
.y273{bottom:578.511100pt;}
.y24c{bottom:578.787559pt;}
.y70{bottom:579.186667pt;}
.yc1{bottom:583.168000pt;}
.y1e7{bottom:583.986667pt;}
.y96{bottom:586.644000pt;}
.y122{bottom:587.066667pt;}
.y207{bottom:587.178667pt;}
.y167{bottom:588.036368pt;}
.y232{bottom:590.766131pt;}
.y1ad{bottom:590.917333pt;}
.y17e{bottom:591.182667pt;}
.y272{bottom:591.638277pt;}
.y7{bottom:592.685334pt;}
.y24b{bottom:592.852559pt;}
.y6f{bottom:593.134667pt;}
.y26{bottom:596.573333pt;}
.y166{bottom:599.396317pt;}
.yc0{bottom:602.429333pt;}
.y231{bottom:603.065070pt;}
.y271{bottom:604.765453pt;}
.y95{bottom:605.905333pt;}
.y206{bottom:606.440000pt;}
.y37{bottom:606.493333pt;}
.y24a{bottom:606.918533pt;}
.y6e{bottom:607.082667pt;}
.y1ac{bottom:608.982667pt;}
.y17d{bottom:610.444000pt;}
.y165{bottom:610.756266pt;}
.y223{bottom:613.056000pt;}
.y230{bottom:615.364009pt;}
.y1e6{bottom:616.532000pt;}
.y104{bottom:616.974667pt;}
.y270{bottom:617.892630pt;}
.y249{bottom:620.984507pt;}
.y6d{bottom:621.030667pt;}
.ybf{bottom:621.690667pt;}
.y164{bottom:622.116215pt;}
.y94{bottom:625.166667pt;}
.y205{bottom:625.701333pt;}
.y1ab{bottom:627.049333pt;}
.y22f{bottom:627.662948pt;}
.y17c{bottom:629.704000pt;}
.y26f{bottom:631.018898pt;}
.y222{bottom:632.317333pt;}
.y163{bottom:633.476164pt;}
.y6c{bottom:634.977333pt;}
.y103{bottom:635.040000pt;}
.y248{bottom:635.050481pt;}
.y1e5{bottom:635.793333pt;}
.y121{bottom:637.762133pt;}
.y22e{bottom:639.961036pt;}
.ybe{bottom:640.952000pt;}
.y26e{bottom:644.146074pt;}
.y93{bottom:644.426667pt;}
.y162{bottom:644.835327pt;}
.y1aa{bottom:645.114667pt;}
.y6{bottom:645.598667pt;}
.y6b{bottom:648.925333pt;}
.y247{bottom:649.116455pt;}
.y221{bottom:651.578667pt;}
.y22d{bottom:652.259975pt;}
.y102{bottom:653.106667pt;}
.y120{bottom:655.097333pt;}
.y161{bottom:656.195276pt;}
.y204{bottom:657.134667pt;}
.y26d{bottom:657.273251pt;}
.ybd{bottom:660.212000pt;}
.y1a9{bottom:663.180000pt;}
.y246{bottom:663.181455pt;}
.y92{bottom:663.688000pt;}
.y22c{bottom:664.558914pt;}
.y17b{bottom:664.750667pt;}
.y160{bottom:667.555225pt;}
.y1e4{bottom:668.337333pt;}
.y3{bottom:668.977329pt;}
.y26c{bottom:670.400427pt;}
.y101{bottom:671.172000pt;}
.y203{bottom:676.396000pt;}
.y22b{bottom:676.857854pt;}
.y15f{bottom:678.915175pt;}
.ybc{bottom:679.473333pt;}
.y1a8{bottom:681.245333pt;}
.y91{bottom:682.949333pt;}
.y26b{bottom:683.527604pt;}
.y220{bottom:684.122667pt;}
.y244{bottom:686.960020pt;}
.y1e3{bottom:687.598667pt;}
.y22a{bottom:689.156793pt;}
.y100{bottom:689.237333pt;}
.y15e{bottom:690.275124pt;}
.y6a{bottom:690.978667pt;}
.y26a{bottom:696.654780pt;}
.ybb{bottom:698.734667pt;}
.y1a7{bottom:699.310667pt;}
.y245{bottom:701.025994pt;}
.y229{bottom:701.454881pt;}
.y15d{bottom:701.635073pt;}
.y90{bottom:702.210667pt;}
.y21f{bottom:703.384000pt;}
.y11f{bottom:706.192667pt;}
.yff{bottom:707.302667pt;}
.y202{bottom:707.829333pt;}
.y269{bottom:709.781048pt;}
.y15c{bottom:712.994236pt;}
.y228{bottom:713.753820pt;}
.y1a6{bottom:717.377333pt;}
.yba{bottom:717.996000pt;}
.y1e2{bottom:720.142667pt;}
.y22{bottom:720.253333pt;}
.y8f{bottom:721.472000pt;}
.y21e{bottom:722.645333pt;}
.y268{bottom:722.908224pt;}
.y11e{bottom:723.526667pt;}
.y15b{bottom:724.354185pt;}
.yfe{bottom:725.368000pt;}
.y227{bottom:726.052759pt;}
.y201{bottom:727.090667pt;}
.y36{bottom:730.173333pt;}
.y1a5{bottom:735.602750pt;}
.y15a{bottom:735.714134pt;}
.y267{bottom:736.035401pt;}
.yb9{bottom:737.257333pt;}
.y243{bottom:737.984000pt;}
.y1e1{bottom:739.404000pt;}
.y8e{bottom:740.733333pt;}
.yfd{bottom:743.434667pt;}
.y1a4{bottom:746.029680pt;}
.y200{bottom:746.350667pt;}
.y225{bottom:746.844147pt;}
.y159{bottom:747.074083pt;}
.y266{bottom:749.162577pt;}
.y21d{bottom:755.189333pt;}
.y1a3{bottom:756.456610pt;}
.yb8{bottom:756.518667pt;}
.y158{bottom:758.434032pt;}
.y226{bottom:759.143086pt;}
.y8d{bottom:759.993333pt;}
.yfc{bottom:761.500000pt;}
.y265{bottom:762.289754pt;}
.y1a2{bottom:766.882818pt;}
.y69{bottom:766.993333pt;}
.y157{bottom:769.793195pt;}
.y1e0{bottom:771.949333pt;}
.y21c{bottom:774.450667pt;}
.y264{bottom:775.416022pt;}
.yb7{bottom:775.778667pt;}
.y1a1{bottom:777.309749pt;}
.y1ff{bottom:777.784000pt;}
.y8c{bottom:779.254667pt;}
.y156{bottom:781.153144pt;}
.y2{bottom:781.661334pt;}
.yfb{bottom:782.620000pt;}
.y263{bottom:788.543198pt;}
.y1a0{bottom:790.181370pt;}
.y1df{bottom:791.210667pt;}
.y155{bottom:792.513094pt;}
.y224{bottom:793.853333pt;}
.yb6{bottom:795.040000pt;}
.y1fe{bottom:797.045333pt;}
.y8b{bottom:798.516000pt;}
.y19f{bottom:800.608300pt;}
.y262{bottom:801.670375pt;}
.yfa{bottom:801.881333pt;}
.y154{bottom:803.873043pt;}
.y68{bottom:804.173333pt;}
.y21b{bottom:806.996000pt;}
.y19e{bottom:811.035231pt;}
.yb5{bottom:814.301333pt;}
.y261{bottom:814.797551pt;}
.y153{bottom:815.232992pt;}
.y8a{bottom:817.777333pt;}
.yf9{bottom:821.142667pt;}
.y19d{bottom:821.462161pt;}
.y1de{bottom:823.754667pt;}
.y21a{bottom:826.256000pt;}
.y152{bottom:826.592155pt;}
.y260{bottom:827.924728pt;}
.y1fd{bottom:828.478667pt;}
.y19c{bottom:831.889091pt;}
.yb4{bottom:833.562667pt;}
.y89{bottom:837.038667pt;}
.y151{bottom:837.952104pt;}
.yf8{bottom:840.934667pt;}
.y25f{bottom:841.050996pt;}
.y1dd{bottom:843.016000pt;}
.y219{bottom:845.517333pt;}
.y1fc{bottom:847.740000pt;}
.y67{bottom:851.496000pt;}
.yb3{bottom:852.824000pt;}
.y19b{bottom:854.899650pt;}
.y88{bottom:856.300000pt;}
.y14f{bottom:857.156127pt;}
.y1{bottom:859.312000pt;}
.yf7{bottom:860.196000pt;}
.y25d{bottom:863.242521pt;}
.y19a{bottom:865.326580pt;}
.y150{bottom:868.516076pt;}
.yb2{bottom:872.084000pt;}
.y87{bottom:875.560000pt;}
.y199{bottom:875.753510pt;}
.y25e{bottom:876.369698pt;}
.y218{bottom:878.062667pt;}
.y1fb{bottom:879.173333pt;}
.yf6{bottom:879.457333pt;}
.y66{bottom:884.704000pt;}
.y198{bottom:886.179719pt;}
.yb1{bottom:891.345333pt;}
.y86{bottom:894.821333pt;}
.y197{bottom:896.606649pt;}
.y217{bottom:897.324000pt;}
.y1fa{bottom:898.434667pt;}
.yf5{bottom:898.718667pt;}
.y14e{bottom:902.032000pt;}
.y2d{bottom:906.213333pt;}
.y196{bottom:909.909899pt;}
.yb0{bottom:910.606667pt;}
.y25c{bottom:912.133333pt;}
.y85{bottom:914.082667pt;}
.yf4{bottom:918.510667pt;}
.yf1{bottom:920.140000pt;}
.y195{bottom:920.336829pt;}
.yaf{bottom:929.868000pt;}
.y84{bottom:949.129333pt;}
.yf3{bottom:951.586667pt;}
.y35{bottom:1020.800000pt;}
.y34{bottom:1054.720000pt;}
.h12{height:5.092500pt;}
.h19{height:17.600000pt;}
.h28{height:25.142874pt;}
.h2d{height:25.887312pt;}
.h24{height:26.221488pt;}
.h1d{height:27.360000pt;}
.h2c{height:28.203751pt;}
.h7{height:28.560000pt;}
.h2e{height:30.535015pt;}
.h30{height:32.591310pt;}
.h2f{height:34.922096pt;}
.h2a{height:36.874903pt;}
.h25{height:39.850400pt;}
.h21{height:40.610943pt;}
.h6{height:40.800000pt;}
.h1a{height:42.751360pt;}
.h3{height:42.840000pt;}
.h2b{height:43.038720pt;}
.h22{height:43.636400pt;}
.hf{height:46.720000pt;}
.h23{height:47.820800pt;}
.h1c{height:47.856000pt;}
.h2{height:48.960000pt;}
.h27{height:53.061069pt;}
.h29{height:53.066402pt;}
.h20{height:57.384800pt;}
.h18{height:63.808000pt;}
.h10{height:65.152000pt;}
.h1f{height:65.277843pt;}
.h13{height:65.781915pt;}
.h17{height:67.776000pt;}
.h26{height:68.861600pt;}
.h5{height:69.360000pt;}
.h1e{height:77.360400pt;}
.he{height:86.652160pt;}
.hc{height:97.728000pt;}
.h11{height:100.000000pt;}
.h15{height:101.440000pt;}
.h4{height:105.826671pt;}
.hb{height:107.200000pt;}
.h9{height:118.592000pt;}
.ha{height:119.228160pt;}
.h14{height:130.432000pt;}
.hd{height:197.306667pt;}
.h1b{height:328.866667pt;}
.h16{height:479.293333pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:141.946667pt;}
.w2{width:566.928019pt;}
.wd{width:608.133333pt;}
.wc{width:620.293333pt;}
.wa{width:628.613333pt;}
.w7{width:676.453333pt;}
.w9{width:676.613333pt;}
.w6{width:684.613333pt;}
.w5{width:687.333333pt;}
.w4{width:689.253333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w8{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x7{left:19.999988pt;}
.x5{left:50.560000pt;}
.x8{left:61.120000pt;}
.xa{left:64.640000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:99.805333pt;}
.x39{left:104.120174pt;}
.x2d{left:112.461333pt;}
.xb{left:113.974667pt;}
.x3c{left:115.413333pt;}
.x13{left:117.758667pt;}
.x18{left:121.984000pt;}
.x15{left:123.217333pt;}
.x3b{left:135.324000pt;}
.x11{left:138.825333pt;}
.x9{left:141.306667pt;}
.xc{left:151.746667pt;}
.x3d{left:161.470667pt;}
.x17{left:165.806667pt;}
.x47{left:167.023405pt;}
.x4{left:180.874667pt;}
.x46{left:182.732000pt;}
.xd{left:195.630667pt;}
.x59{left:200.052000pt;}
.x25{left:202.755606pt;}
.x2e{left:205.653333pt;}
.x3a{left:211.762667pt;}
.x19{left:218.665333pt;}
.x24{left:258.976000pt;}
.x30{left:273.898834pt;}
.x2f{left:282.190719pt;}
.x22{left:284.916000pt;}
.x16{left:287.893333pt;}
.x1e{left:293.533600pt;}
.x20{left:302.539600pt;}
.x1d{left:304.080400pt;}
.x32{left:312.982138pt;}
.x1f{left:315.061600pt;}
.x1b{left:317.974000pt;}
.x1c{left:319.241200pt;}
.x1a{left:322.126000pt;}
.x31{left:326.051529pt;}
.xe{left:335.574667pt;}
.xf{left:340.452000pt;}
.x21{left:360.169600pt;}
.x4e{left:373.696631pt;}
.x10{left:374.833333pt;}
.x4f{left:376.546632pt;}
.x58{left:379.006084pt;}
.x57{left:381.664959pt;}
.x48{left:385.593216pt;}
.x33{left:389.853140pt;}
.x50{left:392.767537pt;}
.x23{left:399.030667pt;}
.x14{left:402.932000pt;}
.x3{left:404.408000pt;}
.x45{left:408.709039pt;}
.x44{left:411.201009pt;}
.x3e{left:419.111118pt;}
.x49{left:425.864199pt;}
.x2c{left:432.794184pt;}
.x52{left:435.669396pt;}
.x27{left:437.690144pt;}
.x34{left:440.584638pt;}
.x26{left:442.402093pt;}
.x51{left:450.955660pt;}
.x40{left:454.323068pt;}
.x3f{left:468.644870pt;}
.x29{left:475.134097pt;}
.x28{left:484.532831pt;}
.x4b{left:493.720887pt;}
.x4a{left:498.894120pt;}
.x54{left:501.656040pt;}
.x53{left:506.484907pt;}
.x42{left:513.654424pt;}
.x2b{left:517.056446pt;}
.x41{left:518.178622pt;}
.x36{left:529.617745pt;}
.x4d{left:539.165103pt;}
.x56{left:546.726982pt;}
.x2a{left:554.157540pt;}
.x35{left:564.093163pt;}
.x4c{left:580.738887pt;}
.x55{left:585.526030pt;}
.x43{left:589.741659pt;}
.x38{left:619.602167pt;}
.x37{left:658.379434pt;}
}




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