
    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_e7f5c6a459f489dfee115285.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_8fa35c91b6767f9b6c64774d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_deb454e2bbd18e5cae20d1ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ac82d1082c2df9d2604efc1b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e685c7c9303e390c349fbdf6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.697000;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_2b70d7f55c11a18215ef776f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_65fd7162092df1e2bd725927.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a2e3acb85239c09558f2ce24.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_502a2c001dc9d4ab9d5cfd06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_7dce495992e2f6ef6b265e9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_63e22cf270af299d4b9544f2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c71e24d01886dc5bd518b0ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_5ed82855338adc6ac38dda54.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.698000;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_f80c321c6adaa1b0ab08fa49.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e98d9bfbbb2444813aeba3bd.woff2')format("woff");}.fff{font-family:fff;line-height:0.928000;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_22d6172f796fac9404985b4b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0946412658619c13220f8b83.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_899115ba3c269f291d60cef1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8b63877d6f33289f58e639c9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;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_4be4fa2ad073e15999a88ab2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.688000;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_07b86a0ee4bbb76a5db8d2a7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.740234;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_350142c5444487a8f218da4e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a537c992108a9e0f55d9dd5d.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3d3572ddf1b40b6014fb7d7e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_899115ba3c269f291d60cef1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.vb{vertical-align:-10.530000px;}
.v3{vertical-align:-8.964000px;}
.va{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:11.646000px;}
.v12{vertical-align:16.662000px;}
.ve{vertical-align:20.688000px;}
.v1{vertical-align:21.690000px;}
.vd{vertical-align:26.670000px;}
.v11{vertical-align:28.728000px;}
.v8{vertical-align:30.726000px;}
.v5{vertical-align:32.034000px;}
.v7{vertical-align:39.690000px;}
.v4{vertical-align:40.998000px;}
.v9{vertical-align:42.798000px;}
.v10{vertical-align:49.152000px;}
.vc{vertical-align:84.282000px;}
.v6{vertical-align:102.216000px;}
.v15{vertical-align:112.902000px;}
.v14{vertical-align:125.286000px;}
.v13{vertical-align:176.340000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000300px;}
.ls7a{letter-spacing:0.000305px;}
.lsd{letter-spacing:0.000538px;}
.ls6c{letter-spacing:0.000557px;}
.ls2a{letter-spacing:0.000777px;}
.ls3c{letter-spacing:0.000780px;}
.ls4c{letter-spacing:0.000921px;}
.ls84{letter-spacing:0.001052px;}
.ls4f{letter-spacing:0.001185px;}
.ls53{letter-spacing:0.001405px;}
.ls28{letter-spacing:0.002338px;}
.ls6{letter-spacing:0.002387px;}
.ls1{letter-spacing:0.002525px;}
.lsf{letter-spacing:0.002646px;}
.ls73{letter-spacing:0.002823px;}
.ls16{letter-spacing:0.003031px;}
.ls30{letter-spacing:0.003093px;}
.ls7d{letter-spacing:0.003181px;}
.ls1d{letter-spacing:0.003269px;}
.ls6a{letter-spacing:0.003967px;}
.ls63{letter-spacing:0.004200px;}
.ls67{letter-spacing:0.004364px;}
.ls33{letter-spacing:0.004893px;}
.ls4b{letter-spacing:0.004896px;}
.ls39{letter-spacing:0.005549px;}
.ls25{letter-spacing:0.005602px;}
.ls29{letter-spacing:0.221549px;}
.ls51{letter-spacing:1.578476px;}
.ls71{letter-spacing:1.880823px;}
.ls74{letter-spacing:1.886823px;}
.ls85{letter-spacing:1.927250px;}
.ls38{letter-spacing:2.265723px;}
.ls12{letter-spacing:2.414908px;}
.ls19{letter-spacing:2.420908px;}
.ls69{letter-spacing:2.805967px;}
.lse{letter-spacing:2.983140px;}
.ls0{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.988532px;}
.ls4{letter-spacing:2.989140px;}
.ls2f{letter-spacing:2.990525px;}
.ls4a{letter-spacing:3.156921px;}
.ls9{letter-spacing:4.566538px;}
.ls8{letter-spacing:4.572538px;}
.ls5e{letter-spacing:7.167269px;}
.ls79{letter-spacing:7.170300px;}
.ls58{letter-spacing:7.173181px;}
.ls4d{letter-spacing:7.173269px;}
.ls7{letter-spacing:7.561140px;}
.ls3d{letter-spacing:7.647223px;}
.ls37{letter-spacing:8.832538px;}
.ls23{letter-spacing:9.962338px;}
.ls42{letter-spacing:12.944525px;}
.ls11{letter-spacing:13.278538px;}
.ls5b{letter-spacing:13.281269px;}
.ls15{letter-spacing:13.284538px;}
.ls55{letter-spacing:13.609559px;}
.ls47{letter-spacing:14.064538px;}
.ls3b{letter-spacing:14.988538px;}
.ls10{letter-spacing:16.273140px;}
.ls2c{letter-spacing:16.601607px;}
.ls3e{letter-spacing:16.602538px;}
.ls2b{letter-spacing:16.605031px;}
.ls41{letter-spacing:16.605269px;}
.ls75{letter-spacing:16.911269px;}
.ls82{letter-spacing:17.472300px;}
.ls81{letter-spacing:17.478300px;}
.ls6d{letter-spacing:17.604031px;}
.ls31{letter-spacing:17.607223px;}
.ls6f{letter-spacing:17.644994px;}
.ls5d{letter-spacing:17.861991px;}
.ls34{letter-spacing:18.315093px;}
.ls86{letter-spacing:18.433405px;}
.ls14{letter-spacing:18.686908px;}
.ls1a{letter-spacing:18.692908px;}
.ls54{letter-spacing:19.423235px;}
.lsa{letter-spacing:19.591140px;}
.ls6e{letter-spacing:19.627309px;}
.ls60{letter-spacing:19.750896px;}
.ls70{letter-spacing:19.777405px;}
.ls7f{letter-spacing:19.902300px;}
.ls40{letter-spacing:20.048525px;}
.ls45{letter-spacing:20.188896px;}
.ls5c{letter-spacing:20.460538px;}
.ls46{letter-spacing:20.580305px;}
.ls6b{letter-spacing:20.592532px;}
.ls68{letter-spacing:20.634532px;}
.ls43{letter-spacing:20.740896px;}
.ls83{letter-spacing:20.792172px;}
.ls3a{letter-spacing:20.862538px;}
.ls66{letter-spacing:21.220896px;}
.ls72{letter-spacing:21.315269px;}
.ls50{letter-spacing:21.691235px;}
.ls49{letter-spacing:23.082921px;}
.ls80{letter-spacing:23.222172px;}
.ls1f{letter-spacing:23.679223px;}
.ls57{letter-spacing:23.914896px;}
.ls24{letter-spacing:24.226896px;}
.ls36{letter-spacing:24.671607px;}
.ls35{letter-spacing:24.899549px;}
.ls22{letter-spacing:25.649607px;}
.ls21{letter-spacing:25.654896px;}
.ls20{letter-spacing:25.947723px;}
.ls44{letter-spacing:25.990896px;}
.ls1e{letter-spacing:26.838921px;}
.ls48{letter-spacing:27.618305px;}
.ls5{letter-spacing:27.920338px;}
.ls52{letter-spacing:28.250379px;}
.ls26{letter-spacing:28.417140px;}
.ls27{letter-spacing:28.423140px;}
.ls56{letter-spacing:29.534525px;}
.ls59{letter-spacing:32.757223px;}
.lsc{letter-spacing:35.862538px;}
.ls61{letter-spacing:36.078538px;}
.ls7b{letter-spacing:45.090305px;}
.ls18{letter-spacing:55.335031px;}
.lsb{letter-spacing:60.525031px;}
.ls77{letter-spacing:62.761140px;}
.ls1c{letter-spacing:64.893031px;}
.ls2d{letter-spacing:68.348338px;}
.ls64{letter-spacing:104.493181px;}
.ls76{letter-spacing:118.435140px;}
.ls5a{letter-spacing:320.343181px;}
.ls17{letter-spacing:832.070338px;}
.ls78{letter-spacing:849.008338px;}
.ls5f{letter-spacing:878.900338px;}
.ls3f{letter-spacing:968.685030px;}
.ls7e{letter-spacing:1075.328338px;}
.ls32{letter-spacing:1076.774338px;}
.ls1b{letter-spacing:1089.758338px;}
.ls65{letter-spacing:1102.418338px;}
.ls62{letter-spacing:1103.072338px;}
.ls7c{letter-spacing:1134.668338px;}
.ls4e{letter-spacing:1157.036338px;}
.ls2e{letter-spacing:1236.536338px;}
.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;}
}
.wsbf{word-spacing:-59.775600px;}
.ws9e{word-spacing:-39.423468px;}
.ws38{word-spacing:-38.937826px;}
.ws6f{word-spacing:-36.071827px;}
.ws3{word-spacing:-31.633157px;}
.ws52{word-spacing:-28.955301px;}
.wsae{word-spacing:-22.346009px;}
.ws12{word-spacing:-17.683534px;}
.ws76{word-spacing:-17.538161px;}
.ws3d{word-spacing:-16.605662px;}
.ws66{word-spacing:-15.266688px;}
.wsf6{word-spacing:-14.111320px;}
.ws56{word-spacing:-6.639123px;}
.ws54{word-spacing:-3.335478px;}
.wsfb{word-spacing:-2.932013px;}
.ws41{word-spacing:-2.541108px;}
.ws47{word-spacing:-2.001108px;}
.ws62{word-spacing:-1.622193px;}
.ws8a{word-spacing:-1.542210px;}
.ws18{word-spacing:-1.362884px;}
.ws3b{word-spacing:-1.064006px;}
.wsed{word-spacing:-0.833875px;}
.wsd0{word-spacing:-0.824903px;}
.ws9{word-spacing:-0.564883px;}
.wscf{word-spacing:-0.466250px;}
.ws100{word-spacing:-0.457286px;}
.ws3c{word-spacing:-0.406474px;}
.wsdd{word-spacing:-0.346698px;}
.wsa6{word-spacing:-0.227147px;}
.wsb0{word-spacing:-0.065327px;}
.ws55{word-spacing:-0.059776px;}
.ws4e{word-spacing:-0.041843px;}
.ws4f{word-spacing:-0.015471px;}
.ws81{word-spacing:-0.003123px;}
.ws2c{word-spacing:0.000000px;}
.ws53{word-spacing:0.011955px;}
.ws26{word-spacing:0.071731px;}
.ws28{word-spacing:0.191282px;}
.wsc4{word-spacing:0.310833px;}
.ws1f{word-spacing:0.370609px;}
.ws73{word-spacing:0.430384px;}
.ws6c{word-spacing:0.457286px;}
.ws7e{word-spacing:0.470889px;}
.ws80{word-spacing:0.490160px;}
.ws9d{word-spacing:0.511085px;}
.wsf8{word-spacing:0.618682px;}
.wsdf{word-spacing:0.669487px;}
.wse8{word-spacing:0.848814px;}
.ws16{word-spacing:0.968365px;}
.ws107{word-spacing:0.995270px;}
.ws5c{word-spacing:1.087916px;}
.wsd7{word-spacing:1.147692px;}
.ws29{word-spacing:1.267243px;}
.wsab{word-spacing:1.327018px;}
.ws22{word-spacing:1.506345px;}
.ws58{word-spacing:1.685672px;}
.ws57{word-spacing:1.710421px;}
.ws90{word-spacing:1.864999px;}
.ws8e{word-spacing:1.924774px;}
.wsec{word-spacing:1.963642px;}
.wsd{word-spacing:2.071238px;}
.ws8d{word-spacing:2.163877px;}
.ws7{word-spacing:2.178835px;}
.ws1c{word-spacing:2.223652px;}
.wsb9{word-spacing:2.232634px;}
.ws89{word-spacing:2.283428px;}
.wsb6{word-spacing:2.286432px;}
.wsb7{word-spacing:2.313809px;}
.wse5{word-spacing:2.343204px;}
.wsa7{word-spacing:2.402979px;}
.wseb{word-spacing:2.447827px;}
.ws101{word-spacing:2.458587px;}
.wsc5{word-spacing:2.522530px;}
.ws30{word-spacing:2.609222px;}
.wsc6{word-spacing:2.642082px;}
.wsc2{word-spacing:2.761633px;}
.ws42{word-spacing:2.821408px;}
.wsdb{word-spacing:2.881184px;}
.ws36{word-spacing:3.000735px;}
.ws11{word-spacing:3.039610px;}
.ws34{word-spacing:3.093408px;}
.ws78{word-spacing:3.120286px;}
.wsac{word-spacing:3.138415px;}
.wsc1{word-spacing:3.180062px;}
.wsb4{word-spacing:3.201005px;}
.wse0{word-spacing:3.239838px;}
.wse7{word-spacing:3.291892px;}
.ws19{word-spacing:3.299613px;}
.ws51{word-spacing:3.313253px;}
.ws4d{word-spacing:3.315892px;}
.wsd1{word-spacing:3.319253px;}
.ws8b{word-spacing:3.359389px;}
.ws9b{word-spacing:3.362400px;}
.ws20{word-spacing:3.419164px;}
.ws9c{word-spacing:3.469997px;}
.ws7a{word-spacing:3.478940px;}
.ws35{word-spacing:3.513036px;}
.ws1a{word-spacing:3.538716px;}
.ws95{word-spacing:3.598491px;}
.wsb5{word-spacing:3.685190px;}
.ws23{word-spacing:3.718042px;}
.ws84{word-spacing:3.837594px;}
.wsc9{word-spacing:3.889624px;}
.wse2{word-spacing:3.957145px;}
.ws17{word-spacing:4.076696px;}
.ws31{word-spacing:4.115578px;}
.ws93{word-spacing:4.136472px;}
.wsc{word-spacing:4.169376px;}
.wsd4{word-spacing:4.196247px;}
.ws24{word-spacing:4.256023px;}
.wsb3{word-spacing:4.276973px;}
.wsce{word-spacing:4.315798px;}
.wsca{word-spacing:4.330771px;}
.ws27{word-spacing:4.375574px;}
.ws9a{word-spacing:4.384570px;}
.wsbc{word-spacing:4.407746px;}
.ws7c{word-spacing:4.435350px;}
.wsb8{word-spacing:4.438368px;}
.ws96{word-spacing:4.491103px;}
.ws88{word-spacing:4.495125px;}
.ws91{word-spacing:4.614676px;}
.ws33{word-spacing:4.653562px;}
.ws97{word-spacing:4.674452px;}
.wsf9{word-spacing:4.718120px;}
.ws72{word-spacing:4.734228px;}
.wsba{word-spacing:4.748116px;}
.wsbb{word-spacing:4.754116px;}
.wsbd{word-spacing:4.765156px;}
.ws64{word-spacing:4.794003px;}
.wsfe{word-spacing:4.922554px;}
.wsa1{word-spacing:5.030150px;}
.ws6b{word-spacing:5.083949px;}
.wse1{word-spacing:5.092881px;}
.ws8{word-spacing:5.137747px;}
.wsbe{word-spacing:5.212432px;}
.wsda{word-spacing:5.272208px;}
.wsa9{word-spacing:5.331984px;}
.wsfd{word-spacing:5.352941px;}
.ws86{word-spacing:5.391759px;}
.ws69{word-spacing:5.460538px;}
.ws21{word-spacing:5.511310px;}
.ws2b{word-spacing:5.571086px;}
.ws5e{word-spacing:5.630862px;}
.wsee{word-spacing:5.632692px;}
.wsf4{word-spacing:5.675731px;}
.wsf3{word-spacing:5.686491px;}
.ws83{word-spacing:5.690637px;}
.wse{word-spacing:5.729530px;}
.ws25{word-spacing:5.810188px;}
.ws102{word-spacing:5.837126px;}
.ws60{word-spacing:5.869964px;}
.wsd3{word-spacing:6.049291px;}
.ws1e{word-spacing:6.109066px;}
.ws59{word-spacing:6.168842px;}
.ws2f{word-spacing:6.213715px;}
.ws4b{word-spacing:6.228618px;}
.ws6a{word-spacing:6.256754px;}
.ws82{word-spacing:6.288393px;}
.wscb{word-spacing:6.321312px;}
.wsb{word-spacing:6.375110px;}
.wsad{word-spacing:6.407944px;}
.wscc{word-spacing:6.428909px;}
.ws104{word-spacing:6.590304px;}
.wsf0{word-spacing:6.644102px;}
.ws15{word-spacing:6.647047px;}
.ws32{word-spacing:6.697901px;}
.ws85{word-spacing:6.706822px;}
.ws106{word-spacing:6.859296px;}
.wsde{word-spacing:6.886149px;}
.wsdc{word-spacing:6.945925px;}
.wsef{word-spacing:6.966893px;}
.wsd8{word-spacing:7.005700px;}
.ws99{word-spacing:7.020691px;}
.ws40{word-spacing:7.065476px;}
.ws3f{word-spacing:7.080421px;}
.ws14{word-spacing:7.125252px;}
.ws70{word-spacing:7.182086px;}
.wsa{word-spacing:7.235885px;}
.wsa8{word-spacing:7.304578px;}
.wsff{word-spacing:7.354241px;}
.wscd{word-spacing:7.451078px;}
.ws75{word-spacing:7.483905px;}
.ws67{word-spacing:7.543681px;}
.ws48{word-spacing:7.603456px;}
.ws10{word-spacing:7.612474px;}
.ws1b{word-spacing:7.663232px;}
.wsb1{word-spacing:7.666272px;}
.ws5f{word-spacing:7.782783px;}
.ws2d{word-spacing:7.881466px;}
.ws63{word-spacing:7.902334px;}
.ws6d{word-spacing:7.935264px;}
.ws87{word-spacing:7.962110px;}
.wse4{word-spacing:8.021886px;}
.ws5a{word-spacing:8.141437px;}
.wsc7{word-spacing:8.201212px;}
.ws103{word-spacing:8.215016px;}
.ws6e{word-spacing:8.262693px;}
.ws6{word-spacing:8.430209px;}
.ws108{word-spacing:8.527046px;}
.ws4a{word-spacing:8.614988px;}
.ws1d{word-spacing:8.619642px;}
.ws65{word-spacing:8.623949px;}
.ws9f{word-spacing:8.688442px;}
.ws46{word-spacing:8.707693px;}
.ws43{word-spacing:8.720920px;}
.ws44{word-spacing:8.739193px;}
.wsb2{word-spacing:8.785279px;}
.ws13{word-spacing:8.798968px;}
.ws49{word-spacing:8.858744px;}
.ws45{word-spacing:8.978295px;}
.wsf{word-spacing:9.065030px;}
.ws2e{word-spacing:9.108069px;}
.wsf1{word-spacing:9.145759px;}
.ws105{word-spacing:9.148566px;}
.ws92{word-spacing:9.217398px;}
.ws94{word-spacing:9.396724px;}
.ws2a{word-spacing:9.635827px;}
.wsf2{word-spacing:9.656813px;}
.ws37{word-spacing:9.695602px;}
.ws39{word-spacing:9.711025px;}
.ws3a{word-spacing:9.755378px;}
.ws74{word-spacing:9.815154px;}
.wsf5{word-spacing:9.925805px;}
.wsa5{word-spacing:9.930676px;}
.wsa2{word-spacing:9.934705px;}
.wse3{word-spacing:10.353134px;}
.ws10a{word-spacing:10.409990px;}
.wsd9{word-spacing:10.472685px;}
.ws71{word-spacing:10.532461px;}
.ws8c{word-spacing:10.592236px;}
.wsd5{word-spacing:10.711788px;}
.ws5b{word-spacing:10.771563px;}
.wsa4{word-spacing:11.010666px;}
.wsfa{word-spacing:11.109370px;}
.wsa3{word-spacing:11.577670px;}
.wsf7{word-spacing:11.647354px;}
.wsfc{word-spacing:11.701152px;}
.ws77{word-spacing:11.967075px;}
.ws10b{word-spacing:12.411291px;}
.wsd6{word-spacing:12.983260px;}
.ws4{word-spacing:13.272065px;}
.ws5{word-spacing:13.648654px;}
.ws109{word-spacing:13.971444px;}
.ws1{word-spacing:14.417875px;}
.ws2{word-spacing:14.477650px;}
.ws5d{word-spacing:19.553573px;}
.wsaa{word-spacing:19.556986px;}
.ws8f{word-spacing:20.024826px;}
.ws7d{word-spacing:20.036766px;}
.ws50{word-spacing:20.818959px;}
.wse6{word-spacing:21.890986px;}
.wsc3{word-spacing:22.295166px;}
.wsc0{word-spacing:22.709166px;}
.ws4c{word-spacing:22.876754px;}
.ws7f{word-spacing:23.178565px;}
.wsa0{word-spacing:23.376666px;}
.ws61{word-spacing:23.813573px;}
.ws79{word-spacing:24.012341px;}
.ws7b{word-spacing:26.208341px;}
.ws0{word-spacing:26.827469px;}
.wsd2{word-spacing:43.169938px;}
.wsea{word-spacing:138.373343px;}
.wse9{word-spacing:219.862832px;}
.ws68{word-spacing:235.868387px;}
.ws98{word-spacing:276.582058px;}
.wsc8{word-spacing:286.098453px;}
.wsaf{word-spacing:513.764506px;}
.ws3e{word-spacing:1377.361330px;}
._4{margin-left:-28.818010px;}
._21{margin-left:-27.652378px;}
._34{margin-left:-25.177651px;}
._33{margin-left:-20.909645px;}
._1{margin-left:-6.742733px;}
._16{margin-left:-5.732672px;}
._c{margin-left:-4.626662px;}
._5{margin-left:-3.425165px;}
._0{margin-left:-2.223667px;}
._9{margin-left:-1.201498px;}
._17{width:1.135722px;}
._2{width:2.151936px;}
._12{width:4.004951px;}
._1c{width:5.404049px;}
._1e{width:9.353538px;}
._32{width:13.736525px;}
._2d{width:14.774585px;}
._13{width:16.348650px;}
._25{width:17.875424px;}
._18{width:19.283834px;}
._19{width:20.909566px;}
._e{width:22.362202px;}
._7{width:23.814758px;}
._1a{width:24.850714px;}
._10{width:25.930829px;}
._15{width:27.042256px;}
._d{width:28.710413px;}
._6{width:30.378163px;}
._8{width:31.543795px;}
._2e{width:32.709223px;}
._3{width:33.863101px;}
._b{width:35.345549px;}
._a{width:36.887770px;}
._11{width:38.160998px;}
._14{width:39.810550px;}
._f{width:42.016550px;}
._27{width:43.582654px;}
._1b{width:45.818954px;}
._35{width:47.270861px;}
._26{width:48.298685px;}
._2c{width:49.703449px;}
._23{width:51.652180px;}
._24{width:54.903926px;}
._2b{width:61.202108px;}
._2a{width:62.214491px;}
._1d{width:71.120809px;}
._22{width:78.658795px;}
._1f{width:82.151666px;}
._28{width:88.730151px;}
._31{width:170.105337px;}
._29{width:172.221460px;}
._30{width:201.951658px;}
._2f{width:251.721855px;}
._20{width:835.183721px;}
.fc2{color:transparent;}
.fc3{color:rgb(77,77,77);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs9{font-size:38.107200px;}
.fs2{font-size:41.842800px;}
.fs10{font-size:43.552080px;}
.fsd{font-size:48.995280px;}
.fs4{font-size:53.798400px;}
.fsa{font-size:57.160800px;}
.fs11{font-size:57.163320px;}
.fs7{font-size:58.069440px;}
.fs1{font-size:59.775600px;}
.fse{font-size:65.327040px;}
.fs12{font-size:69.866280px;}
.fs0{font-size:71.731200px;}
.fs8{font-size:72.586800px;}
.fsf{font-size:81.658800px;}
.fs13{font-size:82.569240px;}
.fsb{font-size:95.268000px;}
.fs6{font-size:96.782400px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:3.592443px;}
.y74{bottom:10.621868px;}
.yb7{bottom:11.508374px;}
.y14b{bottom:12.544173px;}
.ye8{bottom:21.749141px;}
.yb6{bottom:26.474977px;}
.y73{bottom:30.159815px;}
.y14a{bottom:32.583092px;}
.ye3{bottom:34.718328px;}
.yb1{bottom:42.784859px;}
.y105{bottom:52.782701px;}
.ye4{bottom:72.101726px;}
.y6e{bottom:72.901343px;}
.yea{bottom:79.250546px;}
.y6c{bottom:93.806341px;}
.y10a{bottom:101.778791px;}
.y5b{bottom:102.582000px;}
.y106{bottom:103.121647px;}
.yaf{bottom:103.411500px;}
.y31{bottom:105.654000px;}
.ye5{bottom:109.485125px;}
.y5a{bottom:112.833000px;}
.yae{bottom:113.662500px;}
.y147{bottom:115.501664px;}
.y16b{bottom:121.344000px;}
.y30{bottom:122.839500px;}
.y7b{bottom:124.333500px;}
.yb2{bottom:125.829974px;}
.y16a{bottom:137.035500px;}
.y2f{bottom:140.025000px;}
.y6f{bottom:143.842842px;}
.yad{bottom:146.838000px;}
.ye6{bottom:146.856275px;}
.y59{bottom:148.867500px;}
.y169{bottom:152.727000px;}
.yd8{bottom:153.321000px;}
.y107{bottom:153.460593px;}
.y7a{bottom:155.716500px;}
.y2e{bottom:157.210500px;}
.yd7{bottom:163.572000px;}
.yba{bottom:163.880014px;}
.yac{bottom:164.023500px;}
.y75{bottom:167.106911px;}
.y168{bottom:168.418500px;}
.yb8{bottom:169.376977px;}
.y14c{bottom:170.505481px;}
.y79{bottom:171.406500px;}
.y145{bottom:173.728500px;}
.y2d{bottom:174.396000px;}
.y103{bottom:179.719500px;}
.y58{bottom:179.866500px;}
.yab{bottom:181.209000px;}
.y144{bottom:183.979500px;}
.y167{bottom:184.110000px;}
.ye7{bottom:184.239673px;}
.y78{bottom:187.098000px;}
.ybb{bottom:189.516632px;}
.y57{bottom:190.566000px;}
.y2c{bottom:191.581500px;}
.yaa{bottom:198.394500px;}
.y166{bottom:199.800000px;}
.y77{bottom:202.789500px;}
.y108{bottom:203.799539px;}
.yd6{bottom:204.304500px;}
.yeb{bottom:205.507980px;}
.y2b{bottom:208.767000px;}
.yb3{bottom:208.884617px;}
.y70{bottom:214.772243px;}
.ybc{bottom:215.153251px;}
.y165{bottom:215.491500px;}
.ya9{bottom:215.580000px;}
.y76{bottom:218.481000px;}
.yd5{bottom:221.490000px;}
.ye0{bottom:224.071883px;}
.y2a{bottom:225.952500px;}
.y148{bottom:227.462378px;}
.y164{bottom:231.183000px;}
.ya8{bottom:232.765500px;}
.y56{bottom:233.634000px;}
.y102{bottom:236.049000px;}
.yd4{bottom:238.675500px;}
.ydf{bottom:242.227220px;}
.y29{bottom:243.138000px;}
.y143{bottom:244.494000px;}
.ybd{bottom:245.362734px;}
.y163{bottom:246.874500px;}
.y6d{bottom:249.115500px;}
.y10c{bottom:249.154191px;}
.ya7{bottom:249.951000px;}
.y55{bottom:250.819500px;}
.y101{bottom:253.234500px;}
.y109{bottom:254.138485px;}
.yda{bottom:255.183750px;}
.y28{bottom:260.323500px;}
.y162{bottom:262.564500px;}
.ya6{bottom:267.136500px;}
.y54{bottom:268.005000px;}
.yd3{bottom:268.116000px;}
.y10b{bottom:270.059189px;}
.y100{bottom:270.420000px;}
.y142{bottom:274.251000px;}
.y27{bottom:277.509000px;}
.y161{bottom:278.256000px;}
.yd2{bottom:278.367000px;}
.y12e{bottom:281.583000px;}
.y141{bottom:284.502000px;}
.y53{bottom:285.190500px;}
.y71{bottom:285.713743px;}
.yff{bottom:287.605500px;}
.y32{bottom:288.000000px;}
.yb4{bottom:291.929732px;}
.ydb{bottom:292.211933px;}
.y160{bottom:293.947500px;}
.y26{bottom:294.694500px;}
.y6b{bottom:295.667834px;}
.ye1{bottom:299.007578px;}
.y52{bottom:302.376000px;}
.yfe{bottom:304.792500px;}
.ya5{bottom:305.581500px;}
.y15f{bottom:309.639000px;}
.y25{bottom:311.880000px;}
.yd1{bottom:313.974000px;}
.y51{bottom:319.561500px;}
.yfd{bottom:321.978000px;}
.y15e{bottom:325.330500px;}
.y24{bottom:329.065500px;}
.ydc{bottom:329.227867px;}
.y12d{bottom:331.089000px;}
.yd0{bottom:331.159500px;}
.y50{bottom:336.747000px;}
.yfc{bottom:339.163500px;}
.y149{bottom:339.407213px;}
.y15d{bottom:341.020500px;}
.y140{bottom:342.859500px;}
.y23{bottom:346.251000px;}
.y12c{bottom:348.274500px;}
.ycf{bottom:348.345000px;}
.y4f{bottom:353.934000px;}
.ya4{bottom:354.142500px;}
.yfb{bottom:356.349000px;}
.y72{bottom:356.643144px;}
.y15c{bottom:356.712000px;}
.y13f{bottom:360.045000px;}
.y22{bottom:363.436500px;}
.y12b{bottom:365.460000px;}
.ydd{bottom:366.256050px;}
.ya3{bottom:371.328000px;}
.y15b{bottom:372.403500px;}
.yfa{bottom:373.534500px;}
.yb5{bottom:374.984375px;}
.y14d{bottom:376.309311px;}
.yce{bottom:376.915500px;}
.y4e{bottom:376.951500px;}
.y13e{bottom:377.230500px;}
.y21{bottom:380.622000px;}
.ycd{bottom:382.068000px;}
.y12a{bottom:382.645500px;}
.ycc{bottom:384.105000px;}
.y15a{bottom:388.095000px;}
.ya2{bottom:388.513500px;}
.yb9{bottom:388.883976px;}
.yf9{bottom:390.720000px;}
.ycb{bottom:394.356000px;}
.y13d{bottom:394.416000px;}
.y4d{bottom:397.312500px;}
.y20{bottom:397.809000px;}
.y129{bottom:399.831000px;}
.yde{bottom:403.284233px;}
.y159{bottom:403.785000px;}
.ya1{bottom:405.699000px;}
.yf8{bottom:407.905500px;}
.y13c{bottom:411.601500px;}
.y1f{bottom:414.994500px;}
.y128{bottom:417.016500px;}
.y4b{bottom:417.196500px;}
.y158{bottom:419.476500px;}
.ya0{bottom:422.884500px;}
.ye2{bottom:424.557983px;}
.y48{bottom:424.578000px;}
.yf7{bottom:425.091000px;}
.y1e{bottom:432.180000px;}
.y127{bottom:434.202000px;}
.y4c{bottom:434.827500px;}
.y157{bottom:435.168000px;}
.yca{bottom:435.918000px;}
.y9f{bottom:440.070000px;}
.yf6{bottom:442.276500px;}
.y13b{bottom:444.864000px;}
.y47{bottom:444.937500px;}
.y4a{bottom:449.025000px;}
.y1d{bottom:449.365500px;}
.y13a{bottom:450.018000px;}
.y156{bottom:450.859500px;}
.y126{bottom:451.387500px;}
.y139{bottom:452.053500px;}
.yc9{bottom:453.103500px;}
.y49{bottom:453.508500px;}
.y9e{bottom:457.255500px;}
.yf5{bottom:459.462000px;}
.y138{bottom:462.304500px;}
.y1c{bottom:466.551000px;}
.y125{bottom:468.573000px;}
.yc8{bottom:470.289000px;}
.y45{bottom:471.657000px;}
.y9d{bottom:474.441000px;}
.yf4{bottom:476.647500px;}
.y42{bottom:479.038500px;}
.y155{bottom:482.241000px;}
.y1b{bottom:483.736500px;}
.yc7{bottom:487.474500px;}
.y46{bottom:489.288000px;}
.y9c{bottom:491.626500px;}
.yf3{bottom:493.833000px;}
.y154{bottom:497.932500px;}
.y41{bottom:499.398000px;}
.y124{bottom:500.404500px;}
.y1a{bottom:500.922000px;}
.y44{bottom:503.485500px;}
.yc6{bottom:504.660000px;}
.y43{bottom:507.969000px;}
.y120{bottom:508.563000px;}
.y9b{bottom:508.812000px;}
.y11f{bottom:513.046500px;}
.y153{bottom:513.624000px;}
.y11e{bottom:517.528500px;}
.y19{bottom:518.107500px;}
.y123{bottom:521.026500px;}
.yc5{bottom:521.845500px;}
.y137{bottom:522.009000px;}
.y11d{bottom:522.012000px;}
.y9a{bottom:525.997500px;}
.y118{bottom:527.560500px;}
.y152{bottom:529.315500px;}
.y117{bottom:531.726000px;}
.y40{bottom:532.158000px;}
.y18{bottom:535.293000px;}
.yc4{bottom:539.031000px;}
.y122{bottom:541.648500px;}
.y99{bottom:543.184500px;}
.yf2{bottom:544.150500px;}
.y151{bottom:545.005500px;}
.y11c{bottom:548.911500px;}
.y3f{bottom:549.343500px;}
.y17{bottom:552.478500px;}
.y11b{bottom:553.395000px;}
.y11a{bottom:557.878500px;}
.yf1{bottom:559.842000px;}
.y98{bottom:560.370000px;}
.y136{bottom:561.925500px;}
.y121{bottom:562.272000px;}
.y119{bottom:562.362000px;}
.y3e{bottom:566.529000px;}
.y16{bottom:569.664000px;}
.yf0{bottom:575.532000px;}
.y97{bottom:577.555500px;}
.y3d{bottom:583.714500px;}
.y15{bottom:586.849500px;}
.yc3{bottom:589.242000px;}
.yef{bottom:591.223500px;}
.y96{bottom:594.741000px;}
.y116{bottom:594.879000px;}
.y3c{bottom:600.900000px;}
.y14{bottom:604.035000px;}
.yc2{bottom:604.933500px;}
.yee{bottom:606.915000px;}
.y95{bottom:611.926500px;}
.y115{bottom:612.064500px;}
.y135{bottom:619.435500px;}
.yc1{bottom:620.625000px;}
.y13{bottom:621.220500px;}
.yed{bottom:622.606500px;}
.y94{bottom:629.112000px;}
.y114{bottom:629.250000px;}
.yc0{bottom:636.316500px;}
.y134{bottom:636.621000px;}
.yec{bottom:638.298000px;}
.y3b{bottom:639.345000px;}
.y93{bottom:646.297500px;}
.y113{bottom:646.435500px;}
.y150{bottom:647.728500px;}
.ybf{bottom:652.006500px;}
.y133{bottom:653.806500px;}
.y14f{bottom:663.420000px;}
.y92{bottom:663.483000px;}
.ybe{bottom:667.698000px;}
.yd9{bottom:668.932500px;}
.y132{bottom:670.992000px;}
.y12{bottom:674.718000px;}
.y14e{bottom:679.111500px;}
.y91{bottom:680.668500px;}
.y3a{bottom:686.743500px;}
.y131{bottom:688.177500px;}
.y112{bottom:695.934000px;}
.y90{bottom:697.854000px;}
.yb0{bottom:698.334000px;}
.y39{bottom:702.435000px;}
.y130{bottom:705.363000px;}
.y146{bottom:709.746000px;}
.y111{bottom:711.625500px;}
.y8f{bottom:715.039500px;}
.y38{bottom:718.125000px;}
.y110{bottom:727.315500px;}
.y8e{bottom:732.225000px;}
.y37{bottom:733.816500px;}
.y10f{bottom:743.007000px;}
.y12f{bottom:745.279500px;}
.y36{bottom:749.508000px;}
.y8d{bottom:755.290500px;}
.y10e{bottom:758.698500px;}
.y35{bottom:765.199500px;}
.y8c{bottom:765.540000px;}
.y10d{bottom:774.390000px;}
.y34{bottom:780.891000px;}
.y8b{bottom:798.715500px;}
.y11{bottom:804.283500px;}
.y104{bottom:805.024500px;}
.y8a{bottom:815.901000px;}
.y10{bottom:819.975000px;}
.y89{bottom:833.086500px;}
.yf{bottom:835.666500px;}
.y6a{bottom:837.160500px;}
.y88{bottom:850.272000px;}
.ye{bottom:851.358000px;}
.y69{bottom:854.346000px;}
.y17a{bottom:859.576500px;}
.yd{bottom:867.048000px;}
.y87{bottom:867.457500px;}
.y68{bottom:871.531500px;}
.y179{bottom:875.268000px;}
.yc{bottom:882.739500px;}
.y86{bottom:884.643000px;}
.y67{bottom:888.717000px;}
.y178{bottom:890.959500px;}
.yb{bottom:898.431000px;}
.y85{bottom:901.828500px;}
.y66{bottom:905.902500px;}
.y177{bottom:906.649500px;}
.ya{bottom:914.122500px;}
.y84{bottom:919.014000px;}
.y176{bottom:922.341000px;}
.y65{bottom:923.088000px;}
.y9{bottom:929.812500px;}
.y83{bottom:936.199500px;}
.y175{bottom:938.032500px;}
.y64{bottom:940.273500px;}
.y8{bottom:945.504000px;}
.y82{bottom:953.385000px;}
.y174{bottom:953.724000px;}
.y63{bottom:957.459000px;}
.y7{bottom:961.195500px;}
.y173{bottom:969.414000px;}
.y81{bottom:970.570500px;}
.y62{bottom:974.644500px;}
.y172{bottom:985.105500px;}
.y80{bottom:987.756000px;}
.y61{bottom:991.830000px;}
.y6{bottom:996.796500px;}
.y171{bottom:1000.797000px;}
.y7f{bottom:1004.941500px;}
.y5{bottom:1006.774500px;}
.y60{bottom:1009.015500px;}
.y170{bottom:1016.488500px;}
.y7e{bottom:1022.127000px;}
.y5f{bottom:1026.202500px;}
.y4{bottom:1028.179500px;}
.y16f{bottom:1032.180000px;}
.y3{bottom:1038.157500px;}
.y7d{bottom:1039.312500px;}
.y5e{bottom:1043.388000px;}
.y16e{bottom:1047.870000px;}
.y7c{bottom:1056.498000px;}
.y5d{bottom:1060.573500px;}
.y16d{bottom:1063.561500px;}
.y2{bottom:1074.022500px;}
.y5c{bottom:1077.759000px;}
.y16c{bottom:1079.253000px;}
.y1{bottom:1094.944500px;}
.y33{bottom:1133.799000px;}
.ha{height:2.391024px;}
.h3{height:24.245146px;}
.h9{height:29.499174px;}
.h1d{height:35.669904px;}
.h4{height:38.519654px;}
.h15{height:39.744619px;}
.h5{height:40.348800px;}
.h6{height:44.831700px;}
.h21{height:45.423458px;}
.h1e{height:47.559871px;}
.h1{height:50.211840px;}
.h2{height:51.189174px;}
.h24{height:56.163174px;}
.h1a{height:56.169174px;}
.h22{height:57.766903px;}
.h1f{height:59.449839px;}
.h16{height:59.616928px;}
.h27{height:59.619556px;}
.h12{height:60.564611px;}
.h28{height:72.868347px;}
.h13{height:75.705764px;}
.he{height:85.271700px;}
.h8{height:85.829700px;}
.hb{height:85.835700px;}
.h29{height:86.117137px;}
.h18{height:86.673024px;}
.hd{height:87.629700px;}
.h17{height:99.361547px;}
.h10{height:100.941019px;}
.hc{height:104.607024px;}
.h1b{height:114.593700px;}
.h7{height:117.773438px;}
.h19{height:127.677024px;}
.h25{height:142.401174px;}
.h23{height:195.393024px;}
.h20{height:304.864560px;}
.hf{height:382.338871px;}
.h26{height:400.143240px;}
.h14{height:411.557760px;}
.h11{height:435.520800px;}
.h1c{height:440.957520px;}
.h0{height:1188.000000px;}
.w1{width:562.100081px;}
.w2{width:609.729120px;}
.w3{width:685.929600px;}
.w4{width:685.933920px;}
.w5{width:685.959840px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x42{left:11.731103px;}
.x2f{left:15.481050px;}
.x25{left:19.658925px;}
.x2d{left:21.235237px;}
.x22{left:26.965996px;}
.x51{left:33.377027px;}
.x40{left:35.970974px;}
.xc{left:48.000000px;}
.x23{left:52.431865px;}
.x52{left:65.547274px;}
.x20{left:67.711387px;}
.xb{left:81.000000px;}
.x1c{left:85.981500px;}
.x56{left:87.912000px;}
.xa{left:95.944500px;}
.x57{left:108.480000px;}
.x45{left:116.888944px;}
.x2c{left:119.109000px;}
.x1{left:121.107000px;}
.x2e{left:122.581336px;}
.x53{left:145.210712px;}
.x6{left:155.907000px;}
.x21{left:157.213500px;}
.x8{left:163.192500px;}
.x7{left:177.015000px;}
.x1f{left:198.212944px;}
.x24{left:199.601602px;}
.x4{left:287.055000px;}
.x5{left:297.102000px;}
.x43{left:299.715288px;}
.x19{left:307.414500px;}
.xf{left:309.598500px;}
.x2{left:310.669500px;}
.x14{left:312.192000px;}
.x10{left:313.969500px;}
.x15{left:315.267000px;}
.x29{left:316.342500px;}
.x37{left:319.819500px;}
.x33{left:324.225584px;}
.x31{left:329.979772px;}
.x30{left:335.276672px;}
.x3{left:336.460500px;}
.x28{left:342.265500px;}
.x47{left:348.784500px;}
.x48{left:358.344000px;}
.x1a{left:361.893000px;}
.x55{left:364.559073px;}
.x4c{left:367.615500px;}
.x1d{left:369.289500px;}
.x44{left:371.794500px;}
.x3a{left:375.862500px;}
.x38{left:381.916500px;}
.x3d{left:383.173500px;}
.x27{left:384.673500px;}
.x2a{left:389.353500px;}
.x34{left:391.532426px;}
.x9{left:396.913500px;}
.x49{left:407.955000px;}
.x4d{left:410.001000px;}
.x54{left:411.258330px;}
.x4b{left:412.657500px;}
.x1b{left:420.492000px;}
.xe{left:424.696500px;}
.x3e{left:426.487500px;}
.x32{left:431.325870px;}
.x1e{left:433.792500px;}
.x2b{left:439.455000px;}
.x17{left:449.967000px;}
.x16{left:454.501500px;}
.x26{left:457.080000px;}
.x12{left:461.590500px;}
.x11{left:466.125000px;}
.x3b{left:471.045000px;}
.x18{left:474.043500px;}
.x3f{left:478.891500px;}
.x13{left:485.667000px;}
.x3c{left:487.995000px;}
.x4f{left:501.642000px;}
.x4e{left:505.476000px;}
.x39{left:513.183000px;}
.x46{left:526.169615px;}
.x50{left:543.591000px;}
.x36{left:622.719282px;}
.x41{left:636.081359px;}
.x35{left:646.298112px;}
.x4a{left:816.574500px;}
.x58{left:828.198000px;}
.xd{left:835.669500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.vb{vertical-align:-9.360000pt;}
.v3{vertical-align:-7.968000pt;}
.va{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:10.352000pt;}
.v12{vertical-align:14.810667pt;}
.ve{vertical-align:18.389333pt;}
.v1{vertical-align:19.280000pt;}
.vd{vertical-align:23.706667pt;}
.v11{vertical-align:25.536000pt;}
.v8{vertical-align:27.312000pt;}
.v5{vertical-align:28.474667pt;}
.v7{vertical-align:35.280000pt;}
.v4{vertical-align:36.442667pt;}
.v9{vertical-align:38.042667pt;}
.v10{vertical-align:43.690667pt;}
.vc{vertical-align:74.917333pt;}
.v6{vertical-align:90.858667pt;}
.v15{vertical-align:100.357333pt;}
.v14{vertical-align:111.365333pt;}
.v13{vertical-align:156.746667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000267pt;}
.ls7a{letter-spacing:0.000271pt;}
.lsd{letter-spacing:0.000479pt;}
.ls6c{letter-spacing:0.000495pt;}
.ls2a{letter-spacing:0.000690pt;}
.ls3c{letter-spacing:0.000693pt;}
.ls4c{letter-spacing:0.000818pt;}
.ls84{letter-spacing:0.000935pt;}
.ls4f{letter-spacing:0.001053pt;}
.ls53{letter-spacing:0.001249pt;}
.ls28{letter-spacing:0.002079pt;}
.ls6{letter-spacing:0.002122pt;}
.ls1{letter-spacing:0.002245pt;}
.lsf{letter-spacing:0.002352pt;}
.ls73{letter-spacing:0.002509pt;}
.ls16{letter-spacing:0.002694pt;}
.ls30{letter-spacing:0.002750pt;}
.ls7d{letter-spacing:0.002827pt;}
.ls1d{letter-spacing:0.002906pt;}
.ls6a{letter-spacing:0.003526pt;}
.ls63{letter-spacing:0.003733pt;}
.ls67{letter-spacing:0.003879pt;}
.ls33{letter-spacing:0.004349pt;}
.ls4b{letter-spacing:0.004352pt;}
.ls39{letter-spacing:0.004932pt;}
.ls25{letter-spacing:0.004980pt;}
.ls29{letter-spacing:0.196932pt;}
.ls51{letter-spacing:1.403090pt;}
.ls71{letter-spacing:1.671842pt;}
.ls74{letter-spacing:1.677176pt;}
.ls85{letter-spacing:1.713111pt;}
.ls38{letter-spacing:2.013976pt;}
.ls12{letter-spacing:2.146585pt;}
.ls19{letter-spacing:2.151919pt;}
.ls69{letter-spacing:2.494193pt;}
.lse{letter-spacing:2.651680pt;}
.ls0{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.656473pt;}
.ls4{letter-spacing:2.657014pt;}
.ls2f{letter-spacing:2.658245pt;}
.ls4a{letter-spacing:2.806152pt;}
.ls9{letter-spacing:4.059145pt;}
.ls8{letter-spacing:4.064479pt;}
.ls5e{letter-spacing:6.370906pt;}
.ls79{letter-spacing:6.373600pt;}
.ls58{letter-spacing:6.376161pt;}
.ls4d{letter-spacing:6.376239pt;}
.ls7{letter-spacing:6.721014pt;}
.ls3d{letter-spacing:6.797532pt;}
.ls37{letter-spacing:7.851145pt;}
.ls23{letter-spacing:8.855412pt;}
.ls42{letter-spacing:11.506245pt;}
.ls11{letter-spacing:11.803145pt;}
.ls5b{letter-spacing:11.805573pt;}
.ls15{letter-spacing:11.808479pt;}
.ls55{letter-spacing:12.097386pt;}
.ls47{letter-spacing:12.501812pt;}
.ls3b{letter-spacing:13.323145pt;}
.ls10{letter-spacing:14.465014pt;}
.ls2c{letter-spacing:14.756984pt;}
.ls3e{letter-spacing:14.757812pt;}
.ls2b{letter-spacing:14.760027pt;}
.ls41{letter-spacing:14.760239pt;}
.ls75{letter-spacing:15.032239pt;}
.ls82{letter-spacing:15.530933pt;}
.ls81{letter-spacing:15.536267pt;}
.ls6d{letter-spacing:15.648027pt;}
.ls31{letter-spacing:15.650865pt;}
.ls6f{letter-spacing:15.684439pt;}
.ls5d{letter-spacing:15.877325pt;}
.ls34{letter-spacing:16.280083pt;}
.ls86{letter-spacing:16.385249pt;}
.ls14{letter-spacing:16.610585pt;}
.ls1a{letter-spacing:16.615919pt;}
.ls54{letter-spacing:17.265097pt;}
.lsa{letter-spacing:17.414347pt;}
.ls6e{letter-spacing:17.446497pt;}
.ls60{letter-spacing:17.556352pt;}
.ls70{letter-spacing:17.579916pt;}
.ls7f{letter-spacing:17.690933pt;}
.ls40{letter-spacing:17.820911pt;}
.ls45{letter-spacing:17.945685pt;}
.ls5c{letter-spacing:18.187145pt;}
.ls46{letter-spacing:18.293605pt;}
.ls6b{letter-spacing:18.304473pt;}
.ls68{letter-spacing:18.341806pt;}
.ls43{letter-spacing:18.436352pt;}
.ls83{letter-spacing:18.481931pt;}
.ls3a{letter-spacing:18.544479pt;}
.ls66{letter-spacing:18.863018pt;}
.ls72{letter-spacing:18.946906pt;}
.ls50{letter-spacing:19.281097pt;}
.ls49{letter-spacing:20.518152pt;}
.ls80{letter-spacing:20.641931pt;}
.ls1f{letter-spacing:21.048199pt;}
.ls57{letter-spacing:21.257685pt;}
.ls24{letter-spacing:21.535018pt;}
.ls36{letter-spacing:21.930318pt;}
.ls35{letter-spacing:22.132932pt;}
.ls22{letter-spacing:22.799651pt;}
.ls21{letter-spacing:22.804352pt;}
.ls20{letter-spacing:23.064643pt;}
.ls44{letter-spacing:23.103018pt;}
.ls1e{letter-spacing:23.856818pt;}
.ls48{letter-spacing:24.549605pt;}
.ls5{letter-spacing:24.818079pt;}
.ls52{letter-spacing:25.111448pt;}
.ls26{letter-spacing:25.259680pt;}
.ls27{letter-spacing:25.265014pt;}
.ls56{letter-spacing:26.252911pt;}
.ls59{letter-spacing:29.117532pt;}
.lsc{letter-spacing:31.877812pt;}
.ls61{letter-spacing:32.069812pt;}
.ls7b{letter-spacing:40.080271pt;}
.ls18{letter-spacing:49.186694pt;}
.lsb{letter-spacing:53.800027pt;}
.ls77{letter-spacing:55.787680pt;}
.ls1c{letter-spacing:57.682694pt;}
.ls2d{letter-spacing:60.754079pt;}
.ls64{letter-spacing:92.882827pt;}
.ls76{letter-spacing:105.275680pt;}
.ls5a{letter-spacing:284.749494pt;}
.ls17{letter-spacing:739.618079pt;}
.ls78{letter-spacing:754.674079pt;}
.ls5f{letter-spacing:781.244745pt;}
.ls3f{letter-spacing:861.053360pt;}
.ls7e{letter-spacing:955.847412pt;}
.ls32{letter-spacing:957.132745pt;}
.ls1b{letter-spacing:968.674079pt;}
.ls65{letter-spacing:979.927412pt;}
.ls62{letter-spacing:980.508745pt;}
.ls7c{letter-spacing:1008.594079pt;}
.ls4e{letter-spacing:1028.476745pt;}
.ls2e{letter-spacing:1099.143412pt;}
.wsbf{word-spacing:-53.133867pt;}
.ws9e{word-spacing:-35.043082pt;}
.ws38{word-spacing:-34.611401pt;}
.ws6f{word-spacing:-32.063846pt;}
.ws3{word-spacing:-28.118362pt;}
.ws52{word-spacing:-25.738045pt;}
.wsae{word-spacing:-19.863119pt;}
.ws12{word-spacing:-15.718697pt;}
.ws76{word-spacing:-15.589476pt;}
.ws3d{word-spacing:-14.760588pt;}
.ws66{word-spacing:-13.570390pt;}
.wsf6{word-spacing:-12.543396pt;}
.ws56{word-spacing:-5.901443pt;}
.ws54{word-spacing:-2.964870pt;}
.wsfb{word-spacing:-2.606234pt;}
.ws41{word-spacing:-2.258763pt;}
.ws47{word-spacing:-1.778763pt;}
.ws62{word-spacing:-1.441949pt;}
.ws8a{word-spacing:-1.370854pt;}
.ws18{word-spacing:-1.211452pt;}
.ws3b{word-spacing:-0.945783pt;}
.wsed{word-spacing:-0.741222pt;}
.wsd0{word-spacing:-0.733247pt;}
.ws9{word-spacing:-0.502118pt;}
.wscf{word-spacing:-0.414444pt;}
.ws100{word-spacing:-0.406477pt;}
.ws3c{word-spacing:-0.361310pt;}
.wsdd{word-spacing:-0.308176pt;}
.wsa6{word-spacing:-0.201909pt;}
.wsb0{word-spacing:-0.058068pt;}
.ws55{word-spacing:-0.053134pt;}
.ws4e{word-spacing:-0.037194pt;}
.ws4f{word-spacing:-0.013752pt;}
.ws81{word-spacing:-0.002776pt;}
.ws2c{word-spacing:0.000000pt;}
.ws53{word-spacing:0.010627pt;}
.ws26{word-spacing:0.063761pt;}
.ws28{word-spacing:0.170028pt;}
.wsc4{word-spacing:0.276296pt;}
.ws1f{word-spacing:0.329430pt;}
.ws73{word-spacing:0.382564pt;}
.ws6c{word-spacing:0.406477pt;}
.ws7e{word-spacing:0.418568pt;}
.ws80{word-spacing:0.435698pt;}
.ws9d{word-spacing:0.454298pt;}
.wsf8{word-spacing:0.549939pt;}
.wsdf{word-spacing:0.595099pt;}
.wse8{word-spacing:0.754501pt;}
.ws16{word-spacing:0.860769pt;}
.ws107{word-spacing:0.884685pt;}
.ws5c{word-spacing:0.967036pt;}
.wsd7{word-spacing:1.020170pt;}
.ws29{word-spacing:1.126438pt;}
.wsab{word-spacing:1.179572pt;}
.ws22{word-spacing:1.338973pt;}
.ws58{word-spacing:1.498375pt;}
.ws57{word-spacing:1.520374pt;}
.ws90{word-spacing:1.657777pt;}
.ws8e{word-spacing:1.710911pt;}
.wsec{word-spacing:1.745459pt;}
.wsd{word-spacing:1.841101pt;}
.ws8d{word-spacing:1.923446pt;}
.ws7{word-spacing:1.936742pt;}
.ws1c{word-spacing:1.976580pt;}
.wsb9{word-spacing:1.984563pt;}
.ws89{word-spacing:2.029714pt;}
.wsb6{word-spacing:2.032384pt;}
.wsb7{word-spacing:2.056719pt;}
.wse5{word-spacing:2.082848pt;}
.wsa7{word-spacing:2.135981pt;}
.wseb{word-spacing:2.175846pt;}
.ws101{word-spacing:2.185411pt;}
.wsc5{word-spacing:2.242249pt;}
.ws30{word-spacing:2.319309pt;}
.wsc6{word-spacing:2.348517pt;}
.wsc2{word-spacing:2.454785pt;}
.ws42{word-spacing:2.507919pt;}
.wsdb{word-spacing:2.561052pt;}
.ws36{word-spacing:2.667320pt;}
.ws11{word-spacing:2.701875pt;}
.ws34{word-spacing:2.749696pt;}
.ws78{word-spacing:2.773588pt;}
.wsac{word-spacing:2.789702pt;}
.wsc1{word-spacing:2.826722pt;}
.wsb4{word-spacing:2.845338pt;}
.wse0{word-spacing:2.879856pt;}
.wse7{word-spacing:2.926126pt;}
.ws19{word-spacing:2.932989pt;}
.ws51{word-spacing:2.945114pt;}
.ws4d{word-spacing:2.947459pt;}
.wsd1{word-spacing:2.950447pt;}
.ws8b{word-spacing:2.986123pt;}
.ws9b{word-spacing:2.988800pt;}
.ws20{word-spacing:3.039257pt;}
.ws9c{word-spacing:3.084442pt;}
.ws7a{word-spacing:3.092391pt;}
.ws35{word-spacing:3.122698pt;}
.ws1a{word-spacing:3.145525pt;}
.ws95{word-spacing:3.198659pt;}
.wsb5{word-spacing:3.275725pt;}
.ws23{word-spacing:3.304927pt;}
.ws84{word-spacing:3.411194pt;}
.wsc9{word-spacing:3.457444pt;}
.wse2{word-spacing:3.517462pt;}
.ws17{word-spacing:3.623730pt;}
.ws31{word-spacing:3.658291pt;}
.ws93{word-spacing:3.676864pt;}
.wsc{word-spacing:3.706112pt;}
.wsd4{word-spacing:3.729997pt;}
.ws24{word-spacing:3.783131pt;}
.wsb3{word-spacing:3.801754pt;}
.wsce{word-spacing:3.836265pt;}
.wsca{word-spacing:3.849574pt;}
.ws27{word-spacing:3.889399pt;}
.ws9a{word-spacing:3.897395pt;}
.wsbc{word-spacing:3.917996pt;}
.ws7c{word-spacing:3.942533pt;}
.wsb8{word-spacing:3.945216pt;}
.ws96{word-spacing:3.992092pt;}
.ws88{word-spacing:3.995667pt;}
.ws91{word-spacing:4.101935pt;}
.ws33{word-spacing:4.136499pt;}
.ws97{word-spacing:4.155068pt;}
.wsf9{word-spacing:4.193884pt;}
.ws72{word-spacing:4.208202pt;}
.wsba{word-spacing:4.220547pt;}
.wsbb{word-spacing:4.225881pt;}
.wsbd{word-spacing:4.235694pt;}
.ws64{word-spacing:4.261336pt;}
.wsfe{word-spacing:4.375603pt;}
.wsa1{word-spacing:4.471245pt;}
.ws6b{word-spacing:4.519066pt;}
.wse1{word-spacing:4.527005pt;}
.ws8{word-spacing:4.566886pt;}
.wsbe{word-spacing:4.633273pt;}
.wsda{word-spacing:4.686407pt;}
.wsa9{word-spacing:4.739541pt;}
.wsfd{word-spacing:4.758170pt;}
.ws86{word-spacing:4.792675pt;}
.ws69{word-spacing:4.853811pt;}
.ws21{word-spacing:4.898943pt;}
.ws2b{word-spacing:4.952076pt;}
.ws5e{word-spacing:5.005210pt;}
.wsee{word-spacing:5.006838pt;}
.wsf4{word-spacing:5.045094pt;}
.wsf3{word-spacing:5.054659pt;}
.ws83{word-spacing:5.058344pt;}
.wse{word-spacing:5.092915pt;}
.ws25{word-spacing:5.164612pt;}
.ws102{word-spacing:5.188557pt;}
.ws60{word-spacing:5.217746pt;}
.wsd3{word-spacing:5.377147pt;}
.ws1e{word-spacing:5.430281pt;}
.ws59{word-spacing:5.483415pt;}
.ws2f{word-spacing:5.523302pt;}
.ws4b{word-spacing:5.536549pt;}
.ws6a{word-spacing:5.561559pt;}
.ws82{word-spacing:5.589683pt;}
.wscb{word-spacing:5.618944pt;}
.wsb{word-spacing:5.666765pt;}
.wsad{word-spacing:5.695951pt;}
.wscc{word-spacing:5.714586pt;}
.ws104{word-spacing:5.858048pt;}
.wsf0{word-spacing:5.905869pt;}
.ws15{word-spacing:5.908486pt;}
.ws32{word-spacing:5.953690pt;}
.ws85{word-spacing:5.961620pt;}
.ws106{word-spacing:6.097152pt;}
.wsde{word-spacing:6.121021pt;}
.wsdc{word-spacing:6.174155pt;}
.wsef{word-spacing:6.192794pt;}
.wsd8{word-spacing:6.227289pt;}
.ws99{word-spacing:6.240614pt;}
.ws40{word-spacing:6.280423pt;}
.ws3f{word-spacing:6.293707pt;}
.ws14{word-spacing:6.333557pt;}
.ws70{word-spacing:6.384077pt;}
.wsa{word-spacing:6.431898pt;}
.wsa8{word-spacing:6.492959pt;}
.wsff{word-spacing:6.537103pt;}
.wscd{word-spacing:6.623181pt;}
.ws75{word-spacing:6.652360pt;}
.ws67{word-spacing:6.705494pt;}
.ws48{word-spacing:6.758628pt;}
.ws10{word-spacing:6.766643pt;}
.ws1b{word-spacing:6.811762pt;}
.wsb1{word-spacing:6.814464pt;}
.ws5f{word-spacing:6.918029pt;}
.ws2d{word-spacing:7.005747pt;}
.ws63{word-spacing:7.024297pt;}
.ws6d{word-spacing:7.053568pt;}
.ws87{word-spacing:7.077431pt;}
.wse4{word-spacing:7.130565pt;}
.ws5a{word-spacing:7.236833pt;}
.wsc7{word-spacing:7.289967pt;}
.ws103{word-spacing:7.302236pt;}
.ws6e{word-spacing:7.344616pt;}
.ws6{word-spacing:7.493519pt;}
.ws108{word-spacing:7.579597pt;}
.ws4a{word-spacing:7.657767pt;}
.ws1d{word-spacing:7.661904pt;}
.ws65{word-spacing:7.665732pt;}
.ws9f{word-spacing:7.723059pt;}
.ws46{word-spacing:7.740172pt;}
.ws43{word-spacing:7.751929pt;}
.ws44{word-spacing:7.768171pt;}
.wsb2{word-spacing:7.809137pt;}
.ws13{word-spacing:7.821305pt;}
.ws49{word-spacing:7.874439pt;}
.ws45{word-spacing:7.980707pt;}
.wsf{word-spacing:8.057805pt;}
.ws2e{word-spacing:8.096061pt;}
.wsf1{word-spacing:8.129563pt;}
.ws105{word-spacing:8.132058pt;}
.ws92{word-spacing:8.193242pt;}
.ws94{word-spacing:8.352644pt;}
.ws2a{word-spacing:8.565179pt;}
.wsf2{word-spacing:8.583834pt;}
.ws37{word-spacing:8.618313pt;}
.ws39{word-spacing:8.632022pt;}
.ws3a{word-spacing:8.671447pt;}
.ws74{word-spacing:8.724581pt;}
.wsf5{word-spacing:8.822938pt;}
.wsa5{word-spacing:8.827268pt;}
.wsa2{word-spacing:8.830849pt;}
.wse3{word-spacing:9.202786pt;}
.ws10a{word-spacing:9.253325pt;}
.wsd9{word-spacing:9.309053pt;}
.ws71{word-spacing:9.362187pt;}
.ws8c{word-spacing:9.415321pt;}
.wsd5{word-spacing:9.521589pt;}
.ws5b{word-spacing:9.574723pt;}
.wsa4{word-spacing:9.787258pt;}
.wsfa{word-spacing:9.874995pt;}
.wsa3{word-spacing:10.291262pt;}
.wsf7{word-spacing:10.353203pt;}
.wsfc{word-spacing:10.401024pt;}
.ws77{word-spacing:10.637400pt;}
.ws10b{word-spacing:11.032259pt;}
.wsd6{word-spacing:11.540676pt;}
.ws4{word-spacing:11.797391pt;}
.ws5{word-spacing:12.132137pt;}
.ws109{word-spacing:12.419062pt;}
.ws1{word-spacing:12.815889pt;}
.ws2{word-spacing:12.869023pt;}
.ws5d{word-spacing:17.380954pt;}
.wsaa{word-spacing:17.383987pt;}
.ws8f{word-spacing:17.799845pt;}
.ws7d{word-spacing:17.810459pt;}
.ws50{word-spacing:18.505741pt;}
.wse6{word-spacing:19.458654pt;}
.wsc3{word-spacing:19.817926pt;}
.wsc0{word-spacing:20.185926pt;}
.ws4c{word-spacing:20.334892pt;}
.ws7f{word-spacing:20.603169pt;}
.wsa0{word-spacing:20.779259pt;}
.ws61{word-spacing:21.167621pt;}
.ws79{word-spacing:21.344303pt;}
.ws7b{word-spacing:23.296303pt;}
.ws0{word-spacing:23.846639pt;}
.wsd2{word-spacing:38.373279pt;}
.wsea{word-spacing:122.998527pt;}
.wse9{word-spacing:195.433628pt;}
.ws68{word-spacing:209.660788pt;}
.ws98{word-spacing:245.850718pt;}
.wsc8{word-spacing:254.309736pt;}
.wsaf{word-spacing:456.679561pt;}
.ws3e{word-spacing:1224.321183pt;}
._4{margin-left:-25.616009pt;}
._21{margin-left:-24.579891pt;}
._34{margin-left:-22.380134pt;}
._33{margin-left:-18.586351pt;}
._1{margin-left:-5.993540pt;}
._16{margin-left:-5.095708pt;}
._c{margin-left:-4.112589pt;}
._5{margin-left:-3.044591pt;}
._0{margin-left:-1.976593pt;}
._9{margin-left:-1.067998pt;}
._17{width:1.009531pt;}
._2{width:1.912832pt;}
._12{width:3.559956pt;}
._1c{width:4.803599pt;}
._1e{width:8.314256pt;}
._32{width:12.210244pt;}
._2d{width:13.132964pt;}
._13{width:14.532133pt;}
._25{width:15.889266pt;}
._18{width:17.141186pt;}
._19{width:18.586281pt;}
._e{width:19.877513pt;}
._7{width:21.168674pt;}
._1a{width:22.089523pt;}
._10{width:23.049626pt;}
._15{width:24.037561pt;}
._d{width:25.520367pt;}
._6{width:27.002812pt;}
._8{width:28.038929pt;}
._2e{width:29.074865pt;}
._3{width:30.100534pt;}
._b{width:31.418266pt;}
._a{width:32.789129pt;}
._11{width:33.920887pt;}
._14{width:35.387155pt;}
._f{width:37.348045pt;}
._27{width:38.740137pt;}
._1b{width:40.727959pt;}
._35{width:42.018543pt;}
._26{width:42.932164pt;}
._2c{width:44.180844pt;}
._23{width:45.913049pt;}
._24{width:48.803490pt;}
._2b{width:54.401874pt;}
._2a{width:55.301770pt;}
._1d{width:63.218497pt;}
._22{width:69.918929pt;}
._1f{width:73.023703pt;}
._28{width:78.871245pt;}
._31{width:151.204744pt;}
._29{width:153.085742pt;}
._30{width:179.512585pt;}
._2f{width:223.752760pt;}
._20{width:742.385530pt;}
.fsc{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs9{font-size:33.873067pt;}
.fs2{font-size:37.193600pt;}
.fs10{font-size:38.712960pt;}
.fsd{font-size:43.551360pt;}
.fs4{font-size:47.820800pt;}
.fsa{font-size:50.809600pt;}
.fs11{font-size:50.811840pt;}
.fs7{font-size:51.617280pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:58.068480pt;}
.fs12{font-size:62.103360pt;}
.fs0{font-size:63.761067pt;}
.fs8{font-size:64.521600pt;}
.fsf{font-size:72.585600pt;}
.fs13{font-size:73.394880pt;}
.fsb{font-size:84.682667pt;}
.fs6{font-size:86.028800pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:3.193282pt;}
.y74{bottom:9.441661pt;}
.yb7{bottom:10.229666pt;}
.y14b{bottom:11.150376pt;}
.ye8{bottom:19.332570pt;}
.yb6{bottom:23.533313pt;}
.y73{bottom:26.808725pt;}
.y14a{bottom:28.962749pt;}
.ye3{bottom:30.860736pt;}
.yb1{bottom:38.030986pt;}
.y105{bottom:46.917957pt;}
.ye4{bottom:64.090423pt;}
.y6e{bottom:64.801194pt;}
.yea{bottom:70.444930pt;}
.y6c{bottom:83.383414pt;}
.y10a{bottom:90.470037pt;}
.y5b{bottom:91.184000pt;}
.y106{bottom:91.663686pt;}
.yaf{bottom:91.921333pt;}
.y31{bottom:93.914667pt;}
.ye5{bottom:97.320111pt;}
.y5a{bottom:100.296000pt;}
.yae{bottom:101.033333pt;}
.y147{bottom:102.668146pt;}
.y16b{bottom:107.861333pt;}
.y30{bottom:109.190667pt;}
.y7b{bottom:110.518667pt;}
.yb2{bottom:111.848866pt;}
.y16a{bottom:121.809333pt;}
.y2f{bottom:124.466667pt;}
.y6f{bottom:127.860304pt;}
.yad{bottom:130.522667pt;}
.ye6{bottom:130.538911pt;}
.y59{bottom:132.326667pt;}
.y169{bottom:135.757333pt;}
.yd8{bottom:136.285333pt;}
.y107{bottom:136.409416pt;}
.y7a{bottom:138.414667pt;}
.y2e{bottom:139.742667pt;}
.yd7{bottom:145.397333pt;}
.yba{bottom:145.671123pt;}
.yac{bottom:145.798667pt;}
.y75{bottom:148.539477pt;}
.y168{bottom:149.705333pt;}
.yb8{bottom:150.557313pt;}
.y14c{bottom:151.560427pt;}
.y79{bottom:152.361333pt;}
.y145{bottom:154.425333pt;}
.y2d{bottom:155.018667pt;}
.y103{bottom:159.750667pt;}
.y58{bottom:159.881333pt;}
.yab{bottom:161.074667pt;}
.y144{bottom:163.537333pt;}
.y167{bottom:163.653333pt;}
.ye7{bottom:163.768599pt;}
.y78{bottom:166.309333pt;}
.ybb{bottom:168.459229pt;}
.y57{bottom:169.392000pt;}
.y2c{bottom:170.294667pt;}
.yaa{bottom:176.350667pt;}
.y166{bottom:177.600000pt;}
.y77{bottom:180.257333pt;}
.y108{bottom:181.155146pt;}
.yd6{bottom:181.604000pt;}
.yeb{bottom:182.673760pt;}
.y2b{bottom:185.570667pt;}
.yb3{bottom:185.675215pt;}
.y70{bottom:190.908661pt;}
.ybc{bottom:191.247334pt;}
.y165{bottom:191.548000pt;}
.ya9{bottom:191.626667pt;}
.y76{bottom:194.205333pt;}
.yd5{bottom:196.880000pt;}
.ye0{bottom:199.175007pt;}
.y2a{bottom:200.846667pt;}
.y148{bottom:202.188780pt;}
.y164{bottom:205.496000pt;}
.ya8{bottom:206.902667pt;}
.y56{bottom:207.674667pt;}
.y102{bottom:209.821333pt;}
.yd4{bottom:212.156000pt;}
.ydf{bottom:215.313085pt;}
.y29{bottom:216.122667pt;}
.y143{bottom:217.328000pt;}
.ybd{bottom:218.100208pt;}
.y163{bottom:219.444000pt;}
.y6d{bottom:221.436000pt;}
.y10c{bottom:221.470392pt;}
.ya7{bottom:222.178667pt;}
.y55{bottom:222.950667pt;}
.y101{bottom:225.097333pt;}
.y109{bottom:225.900875pt;}
.yda{bottom:226.830000pt;}
.y28{bottom:231.398667pt;}
.y162{bottom:233.390667pt;}
.ya6{bottom:237.454667pt;}
.y54{bottom:238.226667pt;}
.yd3{bottom:238.325333pt;}
.y10b{bottom:240.052613pt;}
.y100{bottom:240.373333pt;}
.y142{bottom:243.778667pt;}
.y27{bottom:246.674667pt;}
.y161{bottom:247.338667pt;}
.yd2{bottom:247.437333pt;}
.y12e{bottom:250.296000pt;}
.y141{bottom:252.890667pt;}
.y53{bottom:253.502667pt;}
.y71{bottom:253.967771pt;}
.yff{bottom:255.649333pt;}
.y32{bottom:256.000000pt;}
.yb4{bottom:259.493095pt;}
.ydb{bottom:259.743940pt;}
.y160{bottom:261.286667pt;}
.y26{bottom:261.950667pt;}
.y6b{bottom:262.815853pt;}
.ye1{bottom:265.784514pt;}
.y52{bottom:268.778667pt;}
.yfe{bottom:270.926667pt;}
.ya5{bottom:271.628000pt;}
.y15f{bottom:275.234667pt;}
.y25{bottom:277.226667pt;}
.yd1{bottom:279.088000pt;}
.y51{bottom:284.054667pt;}
.yfd{bottom:286.202667pt;}
.y15e{bottom:289.182667pt;}
.y24{bottom:292.502667pt;}
.ydc{bottom:292.646993pt;}
.y12d{bottom:294.301333pt;}
.yd0{bottom:294.364000pt;}
.y50{bottom:299.330667pt;}
.yfc{bottom:301.478667pt;}
.y149{bottom:301.695300pt;}
.y15d{bottom:303.129333pt;}
.y140{bottom:304.764000pt;}
.y23{bottom:307.778667pt;}
.y12c{bottom:309.577333pt;}
.ycf{bottom:309.640000pt;}
.y4f{bottom:314.608000pt;}
.ya4{bottom:314.793333pt;}
.yfb{bottom:316.754667pt;}
.y72{bottom:317.016128pt;}
.y15c{bottom:317.077333pt;}
.y13f{bottom:320.040000pt;}
.y22{bottom:323.054667pt;}
.y12b{bottom:324.853333pt;}
.ydd{bottom:325.560933pt;}
.ya3{bottom:330.069333pt;}
.y15b{bottom:331.025333pt;}
.yfa{bottom:332.030667pt;}
.yb5{bottom:333.319444pt;}
.y14d{bottom:334.497166pt;}
.yce{bottom:335.036000pt;}
.y4e{bottom:335.068000pt;}
.y13e{bottom:335.316000pt;}
.y21{bottom:338.330667pt;}
.ycd{bottom:339.616000pt;}
.y12a{bottom:340.129333pt;}
.ycc{bottom:341.426667pt;}
.y15a{bottom:344.973333pt;}
.ya2{bottom:345.345333pt;}
.yb9{bottom:345.674645pt;}
.yf9{bottom:347.306667pt;}
.ycb{bottom:350.538667pt;}
.y13d{bottom:350.592000pt;}
.y4d{bottom:353.166667pt;}
.y20{bottom:353.608000pt;}
.y129{bottom:355.405333pt;}
.yde{bottom:358.474873pt;}
.y159{bottom:358.920000pt;}
.ya1{bottom:360.621333pt;}
.yf8{bottom:362.582667pt;}
.y13c{bottom:365.868000pt;}
.y1f{bottom:368.884000pt;}
.y128{bottom:370.681333pt;}
.y4b{bottom:370.841333pt;}
.y158{bottom:372.868000pt;}
.ya0{bottom:375.897333pt;}
.ye2{bottom:377.384874pt;}
.y48{bottom:377.402667pt;}
.yf7{bottom:377.858667pt;}
.y1e{bottom:384.160000pt;}
.y127{bottom:385.957333pt;}
.y4c{bottom:386.513333pt;}
.y157{bottom:386.816000pt;}
.yca{bottom:387.482667pt;}
.y9f{bottom:391.173333pt;}
.yf6{bottom:393.134667pt;}
.y13b{bottom:395.434667pt;}
.y47{bottom:395.500000pt;}
.y4a{bottom:399.133333pt;}
.y1d{bottom:399.436000pt;}
.y13a{bottom:400.016000pt;}
.y156{bottom:400.764000pt;}
.y126{bottom:401.233333pt;}
.y139{bottom:401.825333pt;}
.yc9{bottom:402.758667pt;}
.y49{bottom:403.118667pt;}
.y9e{bottom:406.449333pt;}
.yf5{bottom:408.410667pt;}
.y138{bottom:410.937333pt;}
.y1c{bottom:414.712000pt;}
.y125{bottom:416.509333pt;}
.yc8{bottom:418.034667pt;}
.y45{bottom:419.250667pt;}
.y9d{bottom:421.725333pt;}
.yf4{bottom:423.686667pt;}
.y42{bottom:425.812000pt;}
.y155{bottom:428.658667pt;}
.y1b{bottom:429.988000pt;}
.yc7{bottom:433.310667pt;}
.y46{bottom:434.922667pt;}
.y9c{bottom:437.001333pt;}
.yf3{bottom:438.962667pt;}
.y154{bottom:442.606667pt;}
.y41{bottom:443.909333pt;}
.y124{bottom:444.804000pt;}
.y1a{bottom:445.264000pt;}
.y44{bottom:447.542667pt;}
.yc6{bottom:448.586667pt;}
.y43{bottom:451.528000pt;}
.y120{bottom:452.056000pt;}
.y9b{bottom:452.277333pt;}
.y11f{bottom:456.041333pt;}
.y153{bottom:456.554667pt;}
.y11e{bottom:460.025333pt;}
.y19{bottom:460.540000pt;}
.y123{bottom:463.134667pt;}
.yc5{bottom:463.862667pt;}
.y137{bottom:464.008000pt;}
.y11d{bottom:464.010667pt;}
.y9a{bottom:467.553333pt;}
.y118{bottom:468.942667pt;}
.y152{bottom:470.502667pt;}
.y117{bottom:472.645333pt;}
.y40{bottom:473.029333pt;}
.y18{bottom:475.816000pt;}
.yc4{bottom:479.138667pt;}
.y122{bottom:481.465333pt;}
.y99{bottom:482.830667pt;}
.yf2{bottom:483.689333pt;}
.y151{bottom:484.449333pt;}
.y11c{bottom:487.921333pt;}
.y3f{bottom:488.305333pt;}
.y17{bottom:491.092000pt;}
.y11b{bottom:491.906667pt;}
.y11a{bottom:495.892000pt;}
.yf1{bottom:497.637333pt;}
.y98{bottom:498.106667pt;}
.y136{bottom:499.489333pt;}
.y121{bottom:499.797333pt;}
.y119{bottom:499.877333pt;}
.y3e{bottom:503.581333pt;}
.y16{bottom:506.368000pt;}
.yf0{bottom:511.584000pt;}
.y97{bottom:513.382667pt;}
.y3d{bottom:518.857333pt;}
.y15{bottom:521.644000pt;}
.yc3{bottom:523.770667pt;}
.yef{bottom:525.532000pt;}
.y96{bottom:528.658667pt;}
.y116{bottom:528.781333pt;}
.y3c{bottom:534.133333pt;}
.y14{bottom:536.920000pt;}
.yc2{bottom:537.718667pt;}
.yee{bottom:539.480000pt;}
.y95{bottom:543.934667pt;}
.y115{bottom:544.057333pt;}
.y135{bottom:550.609333pt;}
.yc1{bottom:551.666667pt;}
.y13{bottom:552.196000pt;}
.yed{bottom:553.428000pt;}
.y94{bottom:559.210667pt;}
.y114{bottom:559.333333pt;}
.yc0{bottom:565.614667pt;}
.y134{bottom:565.885333pt;}
.yec{bottom:567.376000pt;}
.y3b{bottom:568.306667pt;}
.y93{bottom:574.486667pt;}
.y113{bottom:574.609333pt;}
.y150{bottom:575.758667pt;}
.ybf{bottom:579.561333pt;}
.y133{bottom:581.161333pt;}
.y14f{bottom:589.706667pt;}
.y92{bottom:589.762667pt;}
.ybe{bottom:593.509333pt;}
.yd9{bottom:594.606667pt;}
.y132{bottom:596.437333pt;}
.y12{bottom:599.749333pt;}
.y14e{bottom:603.654667pt;}
.y91{bottom:605.038667pt;}
.y3a{bottom:610.438667pt;}
.y131{bottom:611.713333pt;}
.y112{bottom:618.608000pt;}
.y90{bottom:620.314667pt;}
.yb0{bottom:620.741333pt;}
.y39{bottom:624.386667pt;}
.y130{bottom:626.989333pt;}
.y146{bottom:630.885333pt;}
.y111{bottom:632.556000pt;}
.y8f{bottom:635.590667pt;}
.y38{bottom:638.333333pt;}
.y110{bottom:646.502667pt;}
.y8e{bottom:650.866667pt;}
.y37{bottom:652.281333pt;}
.y10f{bottom:660.450667pt;}
.y12f{bottom:662.470667pt;}
.y36{bottom:666.229333pt;}
.y8d{bottom:671.369333pt;}
.y10e{bottom:674.398667pt;}
.y35{bottom:680.177333pt;}
.y8c{bottom:680.480000pt;}
.y10d{bottom:688.346667pt;}
.y34{bottom:694.125333pt;}
.y8b{bottom:709.969333pt;}
.y11{bottom:714.918667pt;}
.y104{bottom:715.577333pt;}
.y8a{bottom:725.245333pt;}
.y10{bottom:728.866667pt;}
.y89{bottom:740.521333pt;}
.yf{bottom:742.814667pt;}
.y6a{bottom:744.142667pt;}
.y88{bottom:755.797333pt;}
.ye{bottom:756.762667pt;}
.y69{bottom:759.418667pt;}
.y17a{bottom:764.068000pt;}
.yd{bottom:770.709333pt;}
.y87{bottom:771.073333pt;}
.y68{bottom:774.694667pt;}
.y179{bottom:778.016000pt;}
.yc{bottom:784.657333pt;}
.y86{bottom:786.349333pt;}
.y67{bottom:789.970667pt;}
.y178{bottom:791.964000pt;}
.yb{bottom:798.605333pt;}
.y85{bottom:801.625333pt;}
.y66{bottom:805.246667pt;}
.y177{bottom:805.910667pt;}
.ya{bottom:812.553333pt;}
.y84{bottom:816.901333pt;}
.y176{bottom:819.858667pt;}
.y65{bottom:820.522667pt;}
.y9{bottom:826.500000pt;}
.y83{bottom:832.177333pt;}
.y175{bottom:833.806667pt;}
.y64{bottom:835.798667pt;}
.y8{bottom:840.448000pt;}
.y82{bottom:847.453333pt;}
.y174{bottom:847.754667pt;}
.y63{bottom:851.074667pt;}
.y7{bottom:854.396000pt;}
.y173{bottom:861.701333pt;}
.y81{bottom:862.729333pt;}
.y62{bottom:866.350667pt;}
.y172{bottom:875.649333pt;}
.y80{bottom:878.005333pt;}
.y61{bottom:881.626667pt;}
.y6{bottom:886.041333pt;}
.y171{bottom:889.597333pt;}
.y7f{bottom:893.281333pt;}
.y5{bottom:894.910667pt;}
.y60{bottom:896.902667pt;}
.y170{bottom:903.545333pt;}
.y7e{bottom:908.557333pt;}
.y5f{bottom:912.180000pt;}
.y4{bottom:913.937333pt;}
.y16f{bottom:917.493333pt;}
.y3{bottom:922.806667pt;}
.y7d{bottom:923.833333pt;}
.y5e{bottom:927.456000pt;}
.y16e{bottom:931.440000pt;}
.y7c{bottom:939.109333pt;}
.y5d{bottom:942.732000pt;}
.y16d{bottom:945.388000pt;}
.y2{bottom:954.686667pt;}
.y5c{bottom:958.008000pt;}
.y16c{bottom:959.336000pt;}
.y1{bottom:973.284000pt;}
.y33{bottom:1007.821333pt;}
.ha{height:2.125355pt;}
.h3{height:21.551241pt;}
.h9{height:26.221488pt;}
.h1d{height:31.706581pt;}
.h4{height:34.239693pt;}
.h15{height:35.328550pt;}
.h5{height:35.865600pt;}
.h6{height:39.850400pt;}
.h21{height:40.376407pt;}
.h1e{height:42.275441pt;}
.h1{height:44.632747pt;}
.h2{height:45.501488pt;}
.h24{height:49.922821pt;}
.h1a{height:49.928155pt;}
.h22{height:51.348358pt;}
.h1f{height:52.844302pt;}
.h16{height:52.992825pt;}
.h27{height:52.995161pt;}
.h12{height:53.835210pt;}
.h28{height:64.771864pt;}
.h13{height:67.294013pt;}
.he{height:75.797067pt;}
.h8{height:76.293067pt;}
.hb{height:76.298400pt;}
.h29{height:76.548566pt;}
.h18{height:77.042688pt;}
.hd{height:77.893067pt;}
.h17{height:88.321375pt;}
.h10{height:89.725350pt;}
.hc{height:92.984021pt;}
.h1b{height:101.861067pt;}
.h7{height:104.687500pt;}
.h19{height:113.490688pt;}
.h25{height:126.578821pt;}
.h23{height:173.682688pt;}
.h20{height:270.990720pt;}
.hf{height:339.856774pt;}
.h26{height:355.682880pt;}
.h14{height:365.829120pt;}
.h11{height:387.129600pt;}
.h1c{height:391.962240pt;}
.h0{height:1056.000000pt;}
.w1{width:499.644517pt;}
.w2{width:541.981440pt;}
.w3{width:609.715200pt;}
.w4{width:609.719040pt;}
.w5{width:609.742080pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x42{left:10.427647pt;}
.x2f{left:13.760933pt;}
.x25{left:17.474600pt;}
.x2d{left:18.875766pt;}
.x22{left:23.969774pt;}
.x51{left:29.668469pt;}
.x40{left:31.974199pt;}
.xc{left:42.666667pt;}
.x23{left:46.606102pt;}
.x52{left:58.264243pt;}
.x20{left:60.187899pt;}
.xb{left:72.000000pt;}
.x1c{left:76.428000pt;}
.x56{left:78.144000pt;}
.xa{left:85.284000pt;}
.x57{left:96.426667pt;}
.x45{left:103.901283pt;}
.x2c{left:105.874667pt;}
.x1{left:107.650667pt;}
.x2e{left:108.961187pt;}
.x53{left:129.076188pt;}
.x6{left:138.584000pt;}
.x21{left:139.745333pt;}
.x8{left:145.060000pt;}
.x7{left:157.346667pt;}
.x1f{left:176.189284pt;}
.x24{left:177.423646pt;}
.x4{left:255.160000pt;}
.x5{left:264.090667pt;}
.x43{left:266.413589pt;}
.x19{left:273.257333pt;}
.xf{left:275.198667pt;}
.x2{left:276.150667pt;}
.x14{left:277.504000pt;}
.x10{left:279.084000pt;}
.x15{left:280.237333pt;}
.x29{left:281.193333pt;}
.x37{left:284.284000pt;}
.x33{left:288.200519pt;}
.x31{left:293.315353pt;}
.x30{left:298.023709pt;}
.x3{left:299.076000pt;}
.x28{left:304.236000pt;}
.x47{left:310.030667pt;}
.x48{left:318.528000pt;}
.x1a{left:321.682667pt;}
.x55{left:324.052510pt;}
.x4c{left:326.769333pt;}
.x1d{left:328.257333pt;}
.x44{left:330.484000pt;}
.x3a{left:334.100000pt;}
.x38{left:339.481333pt;}
.x3d{left:340.598667pt;}
.x27{left:341.932000pt;}
.x2a{left:346.092000pt;}
.x34{left:348.028823pt;}
.x9{left:352.812000pt;}
.x49{left:362.626667pt;}
.x4d{left:364.445333pt;}
.x54{left:365.562960pt;}
.x4b{left:366.806667pt;}
.x1b{left:373.770667pt;}
.xe{left:377.508000pt;}
.x3e{left:379.100000pt;}
.x32{left:383.400773pt;}
.x1e{left:385.593333pt;}
.x2b{left:390.626667pt;}
.x17{left:399.970667pt;}
.x16{left:404.001333pt;}
.x26{left:406.293333pt;}
.x12{left:410.302667pt;}
.x11{left:414.333333pt;}
.x3b{left:418.706667pt;}
.x18{left:421.372000pt;}
.x3f{left:425.681333pt;}
.x13{left:431.704000pt;}
.x3c{left:433.773333pt;}
.x4f{left:445.904000pt;}
.x4e{left:449.312000pt;}
.x39{left:456.162667pt;}
.x46{left:467.706325pt;}
.x50{left:483.192000pt;}
.x36{left:553.528251pt;}
.x41{left:565.405652pt;}
.x35{left:574.487211pt;}
.x4a{left:725.844000pt;}
.x58{left:736.176000pt;}
.xd{left:742.817333pt;}
}




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