
    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_4ec7e59d5a7bca40797b6d3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_113eeea4e39d157f24363857.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_bd3c0b74ee3046e0a153f6c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_95c774668633ed7175c1bedc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8350f5ee7a5098cc596d9e46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_c85efa2b56ea14027920a22b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_596cae798a06ee2d6129b75b.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_a6f0b8367d3f5781d31690a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_22b22d3d095fd42bfd236df3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c2277d49e607778a180ac95d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8dc417c1cec8df1b322cdd78.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_7b936115f65b2592ad3d2386.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e053ea1752b96e084fdca38e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.903000;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_b43206596131fa4dee6a56ca.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d57afc1fddada0f827a496d0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e39ff37b712a7c0d7dbf66e8.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_edfc7ed84614f0e120819e4b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b6654d5c962e98b4cac5243e.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_967c7b38d59de70960770b59.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.872000;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_184759764c96bce020d9c702.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.056000;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_37017345407ba7acc6e64023.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ba63e2aebe2bb764d142d794.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.115000;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_7c405ccecd2d0039f0d0476f.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_0de75b287f025c9764ebb64a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.052000;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_71e50fc8b14ac69d40f807dc.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.675000;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_76d10874ca3bc8ed300a8b27.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.451000;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:ff1b;src:url('chunks/assets/font_921fa45224b51316b59d4e87.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.740000;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:ff1c;src:url('chunks/assets/font_a70cdf74774005657397062c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.740000;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:ff1d;src:url('chunks/assets/font_7a6524c474d7c5e63ffbdf21.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(-0.001271,-0.249997,0.249997,-0.001271,0,0);-ms-transform:matrix(-0.001271,-0.249997,0.249997,-0.001271,0,0);-webkit-transform:matrix(-0.001271,-0.249997,0.249997,-0.001271,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-66.354000px;}
.v19{vertical-align:-65.154000px;}
.v18{vertical-align:-56.184000px;}
.v1c{vertical-align:-51.240000px;}
.v2{vertical-align:-21.690000px;}
.v3{vertical-align:-8.964000px;}
.vf{vertical-align:-5.976000px;}
.v21{vertical-align:-4.482000px;}
.v0{vertical-align:0.000000px;}
.v22{vertical-align:5.982000px;}
.v1a{vertical-align:8.658000px;}
.v12{vertical-align:11.646000px;}
.v14{vertical-align:13.686000px;}
.vc{vertical-align:15.774000px;}
.v27{vertical-align:16.878000px;}
.v7{vertical-align:18.198000px;}
.v13{vertical-align:20.610000px;}
.v23{vertical-align:21.690000px;}
.ve{vertical-align:23.538000px;}
.v25{vertical-align:24.678000px;}
.v1{vertical-align:26.028000px;}
.v26{vertical-align:27.798000px;}
.v1d{vertical-align:28.992000px;}
.v5{vertical-align:31.476000px;}
.vb{vertical-align:36.132000px;}
.v4{vertical-align:40.440000px;}
.va{vertical-align:48.150000px;}
.v15{vertical-align:50.046000px;}
.v1f{vertical-align:52.596000px;}
.v17{vertical-align:54.180000px;}
.v8{vertical-align:56.118000px;}
.v1e{vertical-align:58.572000px;}
.v16{vertical-align:62.136000px;}
.v9{vertical-align:66.354000px;}
.v10{vertical-align:68.766000px;}
.v20{vertical-align:76.608000px;}
.vd{vertical-align:84.282000px;}
.v1b{vertical-align:86.964000px;}
.v6{vertical-align:89.160000px;}
.v24{vertical-align:122.538000px;}
.ls7{letter-spacing:0.000000px;}
.lsb9{letter-spacing:0.000062px;}
.lsa5{letter-spacing:0.000141px;}
.ls35{letter-spacing:0.000479px;}
.ls15{letter-spacing:0.000538px;}
.ls7e{letter-spacing:0.000564px;}
.lsc7{letter-spacing:0.000948px;}
.ls8c{letter-spacing:0.000993px;}
.ls5a{letter-spacing:0.001140px;}
.ls61{letter-spacing:0.001202px;}
.ls37{letter-spacing:0.001689px;}
.ls5e{letter-spacing:0.001866px;}
.lsa2{letter-spacing:0.001956px;}
.lsd{letter-spacing:0.002012px;}
.ls63{letter-spacing:0.002086px;}
.ls8{letter-spacing:0.002174px;}
.ls60{letter-spacing:0.002245px;}
.ls64{letter-spacing:0.002338px;}
.lsf{letter-spacing:0.002387px;}
.lsae{letter-spacing:0.002469px;}
.ls83{letter-spacing:0.002525px;}
.lsa{letter-spacing:0.002727px;}
.lsa0{letter-spacing:0.003056px;}
.ls5b{letter-spacing:0.003175px;}
.ls3d{letter-spacing:0.003269px;}
.ls7c{letter-spacing:0.004010px;}
.ls2c{letter-spacing:0.004200px;}
.ls46{letter-spacing:0.004379px;}
.ls27{letter-spacing:0.004583px;}
.lsc4{letter-spacing:0.004896px;}
.ls11{letter-spacing:0.005306px;}
.ls74{letter-spacing:0.005374px;}
.ls95{letter-spacing:0.006993px;}
.ls75{letter-spacing:1.006868px;}
.ls72{letter-spacing:1.012868px;}
.ls50{letter-spacing:1.880823px;}
.ls4e{letter-spacing:1.886823px;}
.lsc3{letter-spacing:2.144222px;}
.ls6f{letter-spacing:2.145415px;}
.ls5f{letter-spacing:2.414908px;}
.ls5c{letter-spacing:2.983140px;}
.ls4{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.984915px;}
.ls10{letter-spacing:2.986362px;}
.ls7d{letter-spacing:2.986363px;}
.ls80{letter-spacing:2.987870px;}
.ls84{letter-spacing:2.988185px;}
.lsa1{letter-spacing:2.988532px;}
.lsa3{letter-spacing:2.988557px;}
.lsb6{letter-spacing:2.989202px;}
.lsa7{letter-spacing:2.989793px;}
.ls36{letter-spacing:2.990525px;}
.ls3{letter-spacing:2.990915px;}
.lsb7{letter-spacing:2.991798px;}
.ls40{letter-spacing:2.991954px;}
.ls16{letter-spacing:2.992362px;}
.ls6a{letter-spacing:3.441652px;}
.ls8d{letter-spacing:3.447652px;}
.lsb3{letter-spacing:4.272579px;}
.ls96{letter-spacing:4.275175px;}
.lsbe{letter-spacing:4.278579px;}
.ls8e{letter-spacing:4.281175px;}
.lsca{letter-spacing:4.412175px;}
.ls73{letter-spacing:4.751996px;}
.ls9e{letter-spacing:5.089860px;}
.ls9a{letter-spacing:5.273276px;}
.ls59{letter-spacing:5.402908px;}
.ls5d{letter-spacing:5.408908px;}
.ls7f{letter-spacing:5.747996px;}
.lsc2{letter-spacing:5.752430px;}
.lscc{letter-spacing:6.240990px;}
.ls55{letter-spacing:6.433866px;}
.ls89{letter-spacing:6.450538px;}
.ls41{letter-spacing:7.167269px;}
.ls6b{letter-spacing:7.172525px;}
.ls18{letter-spacing:7.173181px;}
.ls76{letter-spacing:7.175374px;}
.ls1d{letter-spacing:7.179181px;}
.ls8f{letter-spacing:7.262525px;}
.ls32{letter-spacing:7.718525px;}
.ls88{letter-spacing:8.330823px;}
.lsba{letter-spacing:8.464612px;}
.ls6{letter-spacing:8.470613px;}
.ls34{letter-spacing:8.634538px;}
.ls24{letter-spacing:9.425732px;}
.ls14{letter-spacing:9.962012px;}
.ls1c{letter-spacing:9.963181px;}
.ls12{letter-spacing:9.968012px;}
.lsaa{letter-spacing:10.661106px;}
.lsab{letter-spacing:10.664710px;}
.ls82{letter-spacing:12.963269px;}
.ls6c{letter-spacing:12.963962px;}
.ls91{letter-spacing:13.270183px;}
.ls26{letter-spacing:13.278538px;}
.ls6e{letter-spacing:13.281269px;}
.ls30{letter-spacing:13.284538px;}
.ls70{letter-spacing:13.287269px;}
.lsbd{letter-spacing:14.864316px;}
.ls4f{letter-spacing:15.164823px;}
.ls90{letter-spacing:15.170823px;}
.ls31{letter-spacing:15.224525px;}
.ls38{letter-spacing:15.440086px;}
.ls33{letter-spacing:15.446086px;}
.ls68{letter-spacing:15.893607px;}
.ls25{letter-spacing:16.034175px;}
.ls6d{letter-spacing:16.270362px;}
.lsb5{letter-spacing:16.358316px;}
.ls52{letter-spacing:16.393866px;}
.ls1b{letter-spacing:16.512579px;}
.ls1e{letter-spacing:16.518579px;}
.lsbf{letter-spacing:16.593954px;}
.ls78{letter-spacing:16.599269px;}
.ls17{letter-spacing:16.602538px;}
.ls87{letter-spacing:16.605269px;}
.ls0{letter-spacing:16.932141px;}
.ls1{letter-spacing:16.938141px;}
.ls3e{letter-spacing:17.238579px;}
.lsb0{letter-spacing:17.372316px;}
.ls3f{letter-spacing:17.556579px;}
.ls45{letter-spacing:17.562579px;}
.ls1a{letter-spacing:18.012538px;}
.ls67{letter-spacing:18.880362px;}
.ls69{letter-spacing:19.341652px;}
.ls48{letter-spacing:19.352175px;}
.ls20{letter-spacing:19.358175px;}
.ls39{letter-spacing:19.586525px;}
.ls43{letter-spacing:19.591140px;}
.ls3b{letter-spacing:19.592525px;}
.ls4d{letter-spacing:19.594362px;}
.ls9d{letter-spacing:19.634316px;}
.ls4b{letter-spacing:19.916316px;}
.lsc9{letter-spacing:19.918896px;}
.ls29{letter-spacing:19.920493px;}
.ls2a{letter-spacing:19.922316px;}
.ls79{letter-spacing:19.924200px;}
.ls58{letter-spacing:19.993690px;}
.ls2e{letter-spacing:20.123870px;}
.lsb{letter-spacing:20.127954px;}
.ls47{letter-spacing:20.454538px;}
.ls4a{letter-spacing:20.880579px;}
.ls23{letter-spacing:20.886579px;}
.lsb4{letter-spacing:21.092316px;}
.lsc{letter-spacing:21.585962px;}
.ls2f{letter-spacing:21.591962px;}
.lsaf{letter-spacing:22.022316px;}
.ls49{letter-spacing:22.208012px;}
.lsb8{letter-spacing:22.906362px;}
.ls53{letter-spacing:22.922338px;}
.ls62{letter-spacing:23.443829px;}
.ls7b{letter-spacing:23.772538px;}
.ls7a{letter-spacing:23.777374px;}
.ls44{letter-spacing:23.778538px;}
.ls8b{letter-spacing:24.150538px;}
.lsbb{letter-spacing:24.198579px;}
.ls98{letter-spacing:25.083798px;}
.ls22{letter-spacing:25.518538px;}
.ls4c{letter-spacing:25.524538px;}
.ls2b{letter-spacing:26.160990px;}
.lse{letter-spacing:26.244538px;}
.lsc0{letter-spacing:26.740362px;}
.ls8a{letter-spacing:27.128525px;}
.ls9b{letter-spacing:27.152316px;}
.ls57{letter-spacing:28.093690px;}
.ls56{letter-spacing:28.099690px;}
.ls21{letter-spacing:28.836538px;}
.ls28{letter-spacing:29.345732px;}
.lscf{letter-spacing:29.744316px;}
.ls5{letter-spacing:29.884200px;}
.lsc8{letter-spacing:31.376222px;}
.ls99{letter-spacing:31.517276px;}
.ls1f{letter-spacing:31.598175px;}
.lsac{letter-spacing:31.948973px;}
.lsad{letter-spacing:31.959773px;}
.ls9c{letter-spacing:32.761690px;}
.lsc1{letter-spacing:33.056316px;}
.ls9{letter-spacing:33.240538px;}
.ls13{letter-spacing:33.246538px;}
.lscb{letter-spacing:33.668316px;}
.lsb1{letter-spacing:34.256316px;}
.lsb2{letter-spacing:34.262316px;}
.lsc5{letter-spacing:34.704579px;}
.ls2d{letter-spacing:35.448538px;}
.ls19{letter-spacing:36.216538px;}
.lsce{letter-spacing:36.474990px;}
.lscd{letter-spacing:39.659732px;}
.ls42{letter-spacing:43.602538px;}
.lsbc{letter-spacing:50.410200px;}
.ls71{letter-spacing:50.738338px;}
.ls77{letter-spacing:58.016338px;}
.ls66{letter-spacing:59.084525px;}
.ls93{letter-spacing:59.774338px;}
.lsc6{letter-spacing:60.922430px;}
.ls86{letter-spacing:64.256525px;}
.ls3a{letter-spacing:68.016538px;}
.lsa4{letter-spacing:91.482141px;}
.ls51{letter-spacing:98.216338px;}
.lsa9{letter-spacing:104.184141px;}
.ls54{letter-spacing:110.684338px;}
.lsa6{letter-spacing:126.858141px;}
.ls9f{letter-spacing:132.750665px;}
.lsa8{letter-spacing:136.452141px;}
.ls92{letter-spacing:171.092338px;}
.ls3c{letter-spacing:218.064538px;}
.ls65{letter-spacing:258.458338px;}
.ls97{letter-spacing:277.136338px;}
.ls85{letter-spacing:346.170185px;}
.ls81{letter-spacing:350.036525px;}
.ls94{letter-spacing:380.312338px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb2{word-spacing:-132.798485px;}
.ws5d{word-spacing:-59.775600px;}
.ws74{word-spacing:-47.324343px;}
.ws5a{word-spacing:-38.937826px;}
.ws5c{word-spacing:-31.633157px;}
.ws93{word-spacing:-30.629017px;}
.ws4e{word-spacing:-29.881822px;}
.wsa2{word-spacing:-29.875845px;}
.ws126{word-spacing:-29.015076px;}
.ws88{word-spacing:-28.955301px;}
.ws92{word-spacing:-25.667643px;}
.wsb5{word-spacing:-25.397521px;}
.ws9c{word-spacing:-25.231208px;}
.ws7e{word-spacing:-25.189366px;}
.ws9d{word-spacing:-21.339828px;}
.ws63{word-spacing:-16.605662px;}
.ws8e{word-spacing:-16.372537px;}
.ws70{word-spacing:-16.312761px;}
.ws44{word-spacing:-16.013883px;}
.ws6f{word-spacing:-15.416127px;}
.ws61{word-spacing:-15.365442px;}
.ws83{word-spacing:-15.359922px;}
.ws5b{word-spacing:-15.359442px;}
.wsce{word-spacing:-15.356352px;}
.ws62{word-spacing:-15.354932px;}
.ws8f{word-spacing:-15.117249px;}
.ws11{word-spacing:-15.063451px;}
.ws71{word-spacing:-14.997698px;}
.ws20{word-spacing:-14.937922px;}
.wsd4{word-spacing:-14.698820px;}
.wsdf{word-spacing:-14.650894px;}
.wsa{word-spacing:-14.585246px;}
.wsd8{word-spacing:-14.519493px;}
.wsc5{word-spacing:-14.399942px;}
.ws10d{word-spacing:-14.375032px;}
.ws39{word-spacing:-14.220615px;}
.ws1d{word-spacing:-14.047266px;}
.ws25{word-spacing:-14.041288px;}
.ws9b{word-spacing:-13.981513px;}
.wsc8{word-spacing:-13.802186px;}
.ws14{word-spacing:-13.748388px;}
.ws10e{word-spacing:-13.682635px;}
.wse0{word-spacing:-13.509286px;}
.wsad{word-spacing:-13.443532px;}
.ws9f{word-spacing:-13.383757px;}
.wsc9{word-spacing:-13.323981px;}
.ws5f{word-spacing:-13.212560px;}
.ws64{word-spacing:-13.208050px;}
.ws75{word-spacing:-13.202050px;}
.ws24{word-spacing:-13.144654px;}
.ws37{word-spacing:-13.084879px;}
.wsaf{word-spacing:-13.025103px;}
.ws13{word-spacing:-12.971305px;}
.ws118{word-spacing:-12.905552px;}
.ws2b{word-spacing:-12.845776px;}
.wsd2{word-spacing:-12.786001px;}
.ws6c{word-spacing:-12.726225px;}
.ws9a{word-spacing:-12.666450px;}
.ws81{word-spacing:-12.606674px;}
.ws4b{word-spacing:-12.487123px;}
.wsd0{word-spacing:-12.427347px;}
.ws10f{word-spacing:-12.248020px;}
.ws73{word-spacing:-12.041442px;}
.ws59{word-spacing:-12.036932px;}
.ws82{word-spacing:-12.035922px;}
.ws60{word-spacing:-12.030932px;}
.ws35{word-spacing:-12.008918px;}
.ws19{word-spacing:-11.955120px;}
.ws23{word-spacing:-11.889367px;}
.ws34{word-spacing:-11.829591px;}
.ws3d{word-spacing:-11.769816px;}
.ws38{word-spacing:-11.710040px;}
.ws7b{word-spacing:-11.650264px;}
.ws89{word-spacing:-11.411162px;}
.ws4a{word-spacing:-11.112284px;}
.ws7{word-spacing:-11.105235px;}
.wsca{word-spacing:-11.051341px;}
.ws79{word-spacing:-10.992733px;}
.ws18{word-spacing:-10.938935px;}
.ws42{word-spacing:-10.813406px;}
.wsbf{word-spacing:-10.696669px;}
.wsab{word-spacing:-10.693855px;}
.wsbc{word-spacing:-10.693054px;}
.ws1e{word-spacing:-10.580281px;}
.ws49{word-spacing:-10.454752px;}
.ws6b{word-spacing:-10.394977px;}
.wsac{word-spacing:-10.335201px;}
.ws91{word-spacing:-10.275426px;}
.ws36{word-spacing:-10.155874px;}
.ws41{word-spacing:-10.036323px;}
.ws5{word-spacing:-9.976548px;}
.wsa3{word-spacing:-9.962952px;}
.ws7d{word-spacing:-9.957897px;}
.ws6a{word-spacing:-9.951897px;}
.wsc0{word-spacing:-9.951467px;}
.ws6{word-spacing:-9.916772px;}
.ws76{word-spacing:-9.888560px;}
.ws5e{word-spacing:-9.884050px;}
.ws58{word-spacing:-9.856996px;}
.ws21{word-spacing:-9.677670px;}
.wscf{word-spacing:-9.617894px;}
.wsbd{word-spacing:-9.616723px;}
.wsd3{word-spacing:-9.558118px;}
.ws2a{word-spacing:-9.378792px;}
.ws67{word-spacing:-9.259240px;}
.ws1a{word-spacing:-9.145667px;}
.ws11a{word-spacing:-9.079914px;}
.ws77{word-spacing:-9.050026px;}
.ws80{word-spacing:-9.020138px;}
.wsed{word-spacing:-8.846789px;}
.ws43{word-spacing:-8.840811px;}
.ws7f{word-spacing:-8.734670px;}
.ws55{word-spacing:-8.482158px;}
.ws50{word-spacing:-8.469028px;}
.ws8c{word-spacing:-8.305091px;}
.ws8d{word-spacing:-8.302831px;}
.ws17{word-spacing:-8.189257px;}
.ws27{word-spacing:-7.944177px;}
.wsda{word-spacing:-7.764850px;}
.wsc2{word-spacing:-7.705075px;}
.wsba{word-spacing:-7.656078px;}
.ws28{word-spacing:-7.525748px;}
.ws112{word-spacing:-7.465972px;}
.ws2e{word-spacing:-7.406197px;}
.ws31{word-spacing:-7.286646px;}
.wsbe{word-spacing:-7.273513px;}
.ws56{word-spacing:-7.226870px;}
.ws52{word-spacing:-7.167094px;}
.ws22{word-spacing:-7.107319px;}
.ws4c{word-spacing:-6.987768px;}
.wsd7{word-spacing:-6.868216px;}
.ws30{word-spacing:-6.808441px;}
.ws16{word-spacing:-6.754643px;}
.ws9{word-spacing:-6.694867px;}
.ws4d{word-spacing:-6.688890px;}
.ws15{word-spacing:-6.515540px;}
.ws8b{word-spacing:-6.449787px;}
.ws72{word-spacing:-6.390012px;}
.ws8{word-spacing:-6.336214px;}
.wse{word-spacing:-6.216662px;}
.ws128{word-spacing:-6.150909px;}
.wsae{word-spacing:-6.091134px;}
.ws26{word-spacing:-5.971582px;}
.ws66{word-spacing:-5.852031px;}
.ws3c{word-spacing:-5.792256px;}
.ws7a{word-spacing:-5.672704px;}
.ws57{word-spacing:-5.493378px;}
.wsa1{word-spacing:-5.433602px;}
.wsa0{word-spacing:-5.429910px;}
.ws2d{word-spacing:-5.314051px;}
.ws10{word-spacing:-5.200477px;}
.ws90{word-spacing:-5.074948px;}
.ws3e{word-spacing:-5.015173px;}
.ws53{word-spacing:-4.955397px;}
.ws10b{word-spacing:-4.837104px;}
.ws6e{word-spacing:-4.835846px;}
.ws33{word-spacing:-4.776070px;}
.wscd{word-spacing:-4.716295px;}
.ws2f{word-spacing:-4.656519px;}
.ws11e{word-spacing:-4.596744px;}
.wsc{word-spacing:-4.542946px;}
.ws10c{word-spacing:-4.483170px;}
.wsd1{word-spacing:-4.297866px;}
.ws114{word-spacing:-4.238090px;}
.wsa8{word-spacing:-4.178314px;}
.ws120{word-spacing:-3.939212px;}
.wsd5{word-spacing:-3.819661px;}
.wsf{word-spacing:-3.706087px;}
.ws54{word-spacing:-3.700110px;}
.ws3a{word-spacing:-3.640334px;}
.ws12{word-spacing:-3.407209px;}
.ws2c{word-spacing:-3.341456px;}
.ws86{word-spacing:-3.335478px;}
.ws8a{word-spacing:-3.162129px;}
.ws10a{word-spacing:-3.102354px;}
.wscb{word-spacing:-3.065300px;}
.wsd6{word-spacing:-3.042578px;}
.wsb{word-spacing:-2.988780px;}
.ws6d{word-spacing:-2.863251px;}
.ws29{word-spacing:-2.743700px;}
.wse8{word-spacing:-2.564373px;}
.wsdb{word-spacing:-2.504598px;}
.ws127{word-spacing:-2.145944px;}
.ws12d{word-spacing:-2.086168px;}
.ws11b{word-spacing:-1.667739px;}
.wsd{word-spacing:-1.434614px;}
.wsa7{word-spacing:-1.428637px;}
.ws40{word-spacing:-1.368861px;}
.ws51{word-spacing:-1.129759px;}
.ws68{word-spacing:-1.010208px;}
.wsb0{word-spacing:-0.950432px;}
.ws109{word-spacing:-0.830881px;}
.wsc6{word-spacing:-0.771105px;}
.ws12a{word-spacing:-0.651554px;}
.ws78{word-spacing:-0.173349px;}
.ws1b{word-spacing:-0.086077px;}
.ws3f{word-spacing:-0.053798px;}
.wsb6{word-spacing:-0.047821px;}
.ws96{word-spacing:-0.041843px;}
.wsb7{word-spacing:-0.035866px;}
.ws97{word-spacing:-0.029888px;}
.ws94{word-spacing:-0.021471px;}
.ws87{word-spacing:-0.015471px;}
.ws3b{word-spacing:0.000000px;}
.ws85{word-spacing:0.011955px;}
.wsbb{word-spacing:0.138680px;}
.ws117{word-spacing:0.185304px;}
.ws12c{word-spacing:0.364631px;}
.wsb9{word-spacing:0.425603px;}
.wsc4{word-spacing:0.543958px;}
.wsde{word-spacing:0.783060px;}
.ws113{word-spacing:0.842836px;}
.ws12b{word-spacing:1.022163px;}
.ws12e{word-spacing:1.141714px;}
.wse1{word-spacing:1.323158px;}
.wsc1{word-spacing:1.380816px;}
.ws65{word-spacing:1.386794px;}
.ws124{word-spacing:1.560143px;}
.ws123{word-spacing:1.918797px;}
.wse2{word-spacing:1.978572px;}
.wsa4{word-spacing:2.397002px;}
.wsa5{word-spacing:2.456777px;}
.ws45{word-spacing:2.695880px;}
.ws47{word-spacing:3.054533px;}
.ws48{word-spacing:3.353411px;}
.wsc3{word-spacing:3.831616px;}
.wsc7{word-spacing:4.668474px;}
.wsd9{word-spacing:4.728250px;}
.ws116{word-spacing:5.266230px;}
.wsa6{word-spacing:5.511310px;}
.ws119{word-spacing:6.043313px;}
.wscc{word-spacing:7.168308px;}
.ws11f{word-spacing:8.015908px;}
.wsf9{word-spacing:8.733215px;}
.ws121{word-spacing:8.852766px;}
.wsaa{word-spacing:9.099588px;}
.wsa9{word-spacing:9.635827px;}
.wse3{word-spacing:9.928727px;}
.wse6{word-spacing:12.678405px;}
.ws107{word-spacing:13.627311px;}
.ws11d{word-spacing:14.113019px;}
.ws108{word-spacing:14.292346px;}
.wse4{word-spacing:14.471673px;}
.wsf5{word-spacing:16.683370px;}
.ws1{word-spacing:16.877632px;}
.ws0{word-spacing:16.880672px;}
.ws2{word-spacing:16.886097px;}
.ws111{word-spacing:19.187968px;}
.wsf0{word-spacing:19.253721px;}
.ws4f{word-spacing:19.462984px;}
.wse7{word-spacing:20.084602px;}
.wsf1{word-spacing:20.449233px;}
.wsdd{word-spacing:20.622582px;}
.wsf3{word-spacing:20.921460px;}
.wsf7{word-spacing:21.405642px;}
.wsef{word-spacing:21.764296px;}
.ws1c{word-spacing:21.937645px;}
.wsfc{word-spacing:22.063174px;}
.wsfb{word-spacing:22.242501px;}
.wsfa{word-spacing:22.362052px;}
.wsdc{word-spacing:22.418022px;}
.wsf2{word-spacing:22.780481px;}
.wse5{word-spacing:23.975993px;}
.wsf6{word-spacing:24.334647px;}
.ws104{word-spacing:24.454198px;}
.ws4{word-spacing:25.034189px;}
.wsec{word-spacing:25.105752px;}
.ws129{word-spacing:25.291056px;}
.wsea{word-spacing:25.350832px;}
.ws98{word-spacing:26.205332px;}
.ws99{word-spacing:26.247466px;}
.ws46{word-spacing:26.827469px;}
.ws125{word-spacing:29.610557px;}
.wseb{word-spacing:31.029514px;}
.ws9e{word-spacing:31.388168px;}
.ws32{word-spacing:31.418178px;}
.ws110{word-spacing:31.504255px;}
.wse9{word-spacing:31.866372px;}
.ws106{word-spacing:35.148053px;}
.ws122{word-spacing:36.522892px;}
.wsee{word-spacing:37.425503px;}
.ws105{word-spacing:38.213703px;}
.wsff{word-spacing:38.794364px;}
.ws3{word-spacing:39.974159px;}
.ws115{word-spacing:40.342375px;}
.wsfe{word-spacing:42.082022px;}
.ws100{word-spacing:42.207551px;}
.ws102{word-spacing:45.076780px;}
.ws101{word-spacing:45.196331px;}
.wsfd{word-spacing:45.837093px;}
.wsb4{word-spacing:46.334058px;}
.ws103{word-spacing:47.647131px;}
.ws11c{word-spacing:50.570158px;}
.wsf8{word-spacing:53.319835px;}
.wsf4{word-spacing:56.547718px;}
.wsb1{word-spacing:92.894227px;}
.wsb3{word-spacing:107.149302px;}
.ws1f{word-spacing:136.604516px;}
.wsb8{word-spacing:139.603302px;}
.ws95{word-spacing:195.226419px;}
.ws69{word-spacing:336.220841px;}
.ws84{word-spacing:391.756344px;}
.ws7c{word-spacing:534.934841px;}
._21{margin-left:-132.744665px;}
._1b{margin-left:-34.410412px;}
._1f{margin-left:-13.246542px;}
._26{margin-left:-10.661106px;}
._2{margin-left:-9.606193px;}
._17{margin-left:-6.742733px;}
._4{margin-left:-4.961375px;}
._3{margin-left:-3.202064px;}
._0{margin-left:-1.434618px;}
._10{width:1.434618px;}
._f{width:3.202064px;}
._1a{width:5.132983px;}
._11{width:16.856716px;}
._18{width:18.880950px;}
._2c{width:20.634858px;}
._12{width:23.133154px;}
._7{width:24.874789px;}
._5{width:26.420819px;}
._13{width:27.915209px;}
._8{width:29.537286px;}
._19{width:30.963764px;}
._1c{width:31.979950px;}
._2b{width:33.055910px;}
._b{width:34.088371px;}
._6{width:35.548804px;}
._27{width:36.881549px;}
._c{width:39.733096px;}
._9{width:41.398673px;}
._30{width:43.038436px;}
._d{width:45.198493px;}
._28{width:47.940028px;}
._32{width:49.828432px;}
._a{width:51.303744px;}
._2a{width:52.778631px;}
._29{width:56.214882px;}
._2e{width:59.887012px;}
._20{width:63.362140px;}
._e{width:64.770936px;}
._31{width:72.405307px;}
._2d{width:79.142894px;}
._1d{width:82.965460px;}
._22{width:84.433579px;}
._2f{width:88.365225px;}
._24{width:91.474357px;}
._23{width:97.129100px;}
._25{width:104.184479px;}
._16{width:116.563200px;}
._14{width:136.690594px;}
._1e{width:150.399932px;}
._1{width:484.040113px;}
._15{width:1204.493305px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:15.973688px;}
.fsb{font-size:15.979087px;}
.fs6{font-size:29.887800px;}
.fs8{font-size:31.948174px;}
.fsa{font-size:31.958974px;}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y41{bottom:58.093500px;}
.y40{bottom:58.453500px;}
.y123{bottom:82.721877px;}
.y129{bottom:83.747905px;}
.y124{bottom:88.497777px;}
.y12a{bottom:89.525758px;}
.y68{bottom:115.950000px;}
.y28{bottom:121.180500px;}
.y11b{bottom:125.440500px;}
.y67{bottom:126.201000px;}
.y27{bottom:139.113000px;}
.y99{bottom:139.114500px;}
.y69{bottom:142.786500px;}
.y66{bottom:148.764000px;}
.y1aa{bottom:154.125000px;}
.y182{bottom:157.045500px;}
.y26{bottom:157.047000px;}
.y65{bottom:159.015000px;}
.y12d{bottom:164.419500px;}
.y3f{bottom:165.550500px;}
.y1a9{bottom:172.057500px;}
.y95{bottom:173.608500px;}
.y25{bottom:174.979500px;}
.y12c{bottom:178.615500px;}
.yf9{bottom:180.345000px;}
.y156{bottom:181.003500px;}
.y3e{bottom:183.483000px;}
.y94{bottom:183.858000px;}
.ybc{bottom:184.945500px;}
.y96{bottom:190.273500px;}
.y12b{bottom:192.813000px;}
.y24{bottom:192.912000px;}
.y97{bottom:193.968000px;}
.y64{bottom:197.145000px;}
.y155{bottom:198.936000px;}
.y133{bottom:201.061500px;}
.y3d{bottom:201.415500px;}
.y98{bottom:204.292500px;}
.y1a8{bottom:205.002000px;}
.y93{bottom:208.165500px;}
.y181{bottom:210.844500px;}
.y92{bottom:211.860000px;}
.y91{bottom:214.120500px;}
.y63{bottom:215.079000px;}
.y132{bottom:215.257500px;}
.y154{bottom:216.870000px;}
.y128{bottom:217.693500px;}
.y3c{bottom:219.348000px;}
.y1a7{bottom:222.936000px;}
.y90{bottom:224.371500px;}
.y180{bottom:228.777000px;}
.yf8{bottom:234.076500px;}
.y153{bottom:234.802500px;}
.y23{bottom:235.399500px;}
.y3b{bottom:237.280500px;}
.yf7{bottom:237.771000px;}
.y1a6{bottom:240.868500px;}
.y62{bottom:241.515000px;}
.y152{bottom:252.735000px;}
.y3a{bottom:255.214500px;}
.yf6{bottom:255.703500px;}
.y8f{bottom:258.148500px;}
.y1a5{bottom:258.801000px;}
.y61{bottom:259.447500px;}
.y17f{bottom:265.078500px;}
.y151{bottom:270.667500px;}
.y39{bottom:273.147000px;}
.yf5{bottom:273.636000px;}
.y8e{bottom:276.081000px;}
.y60{bottom:277.380000px;}
.y17e{bottom:283.011000px;}
.y38{bottom:291.079500px;}
.yf4{bottom:291.715500px;}
.y8d{bottom:293.341500px;}
.y5f{bottom:295.314000px;}
.y8c{bottom:298.494000px;}
.y22{bottom:299.599500px;}
.yf1{bottom:299.785500px;}
.y17d{bottom:300.945000px;}
.y1a4{bottom:301.758000px;}
.y8b{bottom:301.915500px;}
.yef{bottom:309.499500px;}
.yf3{bottom:309.648000px;}
.y150{bottom:311.899500px;}
.y5e{bottom:313.246500px;}
.y21{bottom:317.532000px;}
.y17c{bottom:318.877500px;}
.y8a{bottom:320.241000px;}
.y89{bottom:325.393500px;}
.yf0{bottom:326.685000px;}
.yf2{bottom:327.582000px;}
.y1a3{bottom:328.657500px;}
.y88{bottom:328.815000px;}
.y5d{bottom:331.179000px;}
.y37{bottom:332.433000px;}
.y20{bottom:335.464500px;}
.y17b{bottom:336.810000px;}
.yee{bottom:341.805000px;}
.yed{bottom:345.514500px;}
.y17a{bottom:354.742500px;}
.y87{bottom:356.035500px;}
.y5c{bottom:357.615000px;}
.y36{bottom:359.332500px;}
.y14f{bottom:369.816000px;}
.y179{bottom:372.675000px;}
.y86{bottom:373.968000px;}
.yec{bottom:374.551500px;}
.y5b{bottom:375.549000px;}
.y1f{bottom:377.952000px;}
.y35{bottom:386.230500px;}
.y14e{bottom:387.750000px;}
.y85{bottom:391.902000px;}
.yeb{bottom:392.485500px;}
.y5a{bottom:393.481500px;}
.y1a2{bottom:404.470500px;}
.y14d{bottom:405.682500px;}
.y178{bottom:408.976500px;}
.yea{bottom:410.418000px;}
.y59{bottom:411.414000px;}
.y127{bottom:414.444000px;}
.ybb{bottom:421.128000px;}
.y1a1{bottom:422.403000px;}
.y14c{bottom:423.615000px;}
.y177{bottom:426.909000px;}
.ye9{bottom:428.350500px;}
.y126{bottom:428.640000px;}
.y84{bottom:435.601500px;}
.yba{bottom:439.060500px;}
.y1a0{bottom:440.335500px;}
.y14b{bottom:441.547500px;}
.y1e{bottom:442.152000px;}
.y125{bottom:442.837500px;}
.y34{bottom:444.756000px;}
.y176{bottom:444.843000px;}
.ye8{bottom:446.283000px;}
.y58{bottom:456.523500px;}
.y19f{bottom:458.268000px;}
.y14a{bottom:459.480000px;}
.y1d{bottom:460.084500px;}
.y131{bottom:462.031500px;}
.y33{bottom:462.688500px;}
.y175{bottom:462.775500px;}
.y122{bottom:467.718000px;}
.y19e{bottom:476.202000px;}
.y130{bottom:476.227500px;}
.y149{bottom:477.414000px;}
.y1c{bottom:478.017000px;}
.y11a{bottom:479.347500px;}
.y32{bottom:480.621000px;}
.y174{bottom:480.708000px;}
.ye6{bottom:484.405500px;}
.yb9{bottom:485.029500px;}
.yb8{bottom:488.808000px;}
.ye5{bottom:489.558000px;}
.y119{bottom:493.543500px;}
.y19d{bottom:494.134500px;}
.y148{bottom:495.346500px;}
.y1b{bottom:495.949500px;}
.y31{bottom:498.553500px;}
.y118{bottom:508.338000px;}
.y147{bottom:513.279000px;}
.y1a{bottom:513.883500px;}
.ye4{bottom:514.284000px;}
.y30{bottom:516.487500px;}
.y173{bottom:517.009500px;}
.yb7{bottom:522.496500px;}
.y117{bottom:522.535500px;}
.ye7{bottom:527.374500px;}
.y19c{bottom:529.999500px;}
.y146{bottom:531.211500px;}
.y19{bottom:531.816000px;}
.y2f{bottom:534.420000px;}
.y172{bottom:534.942000px;}
.ye2{bottom:535.638000px;}
.y116{bottom:537.330000px;}
.ye3{bottom:547.291500px;}
.y19b{bottom:547.932000px;}
.ye1{bottom:548.038500px;}
.y145{bottom:549.144000px;}
.y18{bottom:549.748500px;}
.y115{bottom:551.586000px;}
.y2e{bottom:552.352500px;}
.y171{bottom:552.874500px;}
.ye0{bottom:563.316000px;}
.y19a{bottom:565.864500px;}
.y114{bottom:566.380500px;}
.y144{bottom:567.076500px;}
.yb5{bottom:567.256500px;}
.y17{bottom:567.681000px;}
.y2d{bottom:570.285000px;}
.y170{bottom:570.807000px;}
.ydf{bottom:575.716500px;}
.yb3{bottom:577.507500px;}
.y113{bottom:580.576500px;}
.y199{bottom:583.798500px;}
.yb6{bottom:584.820000px;}
.y143{bottom:585.010500px;}
.y16{bottom:585.613500px;}
.yb4{bottom:587.616000px;}
.y16f{bottom:588.741000px;}
.y112{bottom:595.371000px;}
.y2c{bottom:600.738000px;}
.y198{bottom:601.731000px;}
.y142{bottom:602.943000px;}
.y15{bottom:603.546000px;}
.yb2{bottom:604.204500px;}
.y16e{bottom:606.673500px;}
.yb1{bottom:607.981500px;}
.y10f{bottom:609.418500px;}
.y111{bottom:609.568500px;}
.yde{bottom:610.822500px;}
.y2b{bottom:618.670500px;}
.y197{bottom:619.663500px;}
.y141{bottom:620.875500px;}
.y14{bottom:621.480000px;}
.y110{bottom:623.764500px;}
.y16d{bottom:624.606000px;}
.y2a{bottom:636.603000px;}
.y196{bottom:637.596000px;}
.yb0{bottom:637.810500px;}
.y140{bottom:638.808000px;}
.y13{bottom:639.412500px;}
.ydc{bottom:642.810000px;}
.ydb{bottom:647.962500px;}
.y10e{bottom:653.503500px;}
.yaf{bottom:655.744500px;}
.y13f{bottom:656.740500px;}
.y12{bottom:657.345000px;}
.y16c{bottom:660.907500px;}
.y121{bottom:664.297500px;}
.yda{bottom:670.255500px;}
.y195{bottom:673.461000px;}
.ydd{bottom:674.293500px;}
.y13e{bottom:674.673000px;}
.y11{bottom:675.277500px;}
.yd9{bottom:675.408000px;}
.y120{bottom:678.493500px;}
.y16b{bottom:678.840000px;}
.y83{bottom:679.164000px;}
.yae{bottom:682.180500px;}
.y194{bottom:691.395000px;}
.y13d{bottom:692.607000px;}
.y11f{bottom:692.691000px;}
.y10{bottom:693.210000px;}
.yd8{bottom:695.062500px;}
.y16a{bottom:696.772500px;}
.y82{bottom:697.096500px;}
.y57{bottom:699.834000px;}
.yd7{bottom:700.215000px;}
.y193{bottom:709.327500px;}
.yad{bottom:710.514000px;}
.y13c{bottom:710.539500px;}
.y10d{bottom:710.893500px;}
.yf{bottom:711.142500px;}
.y169{bottom:714.705000px;}
.y81{bottom:715.029000px;}
.y56{bottom:717.766500px;}
.y12f{bottom:720.054000px;}
.yaa{bottom:724.312500px;}
.y10c{bottom:725.089500px;}
.y192{bottom:727.260000px;}
.ya9{bottom:728.089500px;}
.y29{bottom:729.075000px;}
.ye{bottom:729.076500px;}
.y168{bottom:732.639000px;}
.y12e{bottom:734.251500px;}
.y55{bottom:735.700500px;}
.yac{bottom:736.350000px;}
.yab{bottom:739.339500px;}
.y10b{bottom:739.884000px;}
.y80{bottom:741.466500px;}
.y191{bottom:745.192500px;}
.yd{bottom:747.009000px;}
.yd6{bottom:747.708000px;}
.y167{bottom:750.571500px;}
.y13b{bottom:751.771500px;}
.y54{bottom:753.633000px;}
.y10a{bottom:754.081500px;}
.ya8{bottom:756.981000px;}
.y7f{bottom:759.399000px;}
.y190{bottom:763.125000px;}
.yc{bottom:764.941500px;}
.yd5{bottom:765.642000px;}
.y166{bottom:768.504000px;}
.y109{bottom:768.876000px;}
.yd4{bottom:769.419000px;}
.y53{bottom:771.565500px;}
.y7e{bottom:777.331500px;}
.y18f{bottom:781.057500px;}
.yb{bottom:782.874000px;}
.y108{bottom:783.132000px;}
.yd3{bottom:783.574500px;}
.y165{bottom:786.436500px;}
.y52{bottom:789.498000px;}
.ya7{bottom:793.618500px;}
.y7d{bottom:795.264000px;}
.y107{bottom:797.926500px;}
.y18e{bottom:798.991500px;}
.y51{bottom:807.430500px;}
.y13a{bottom:809.688000px;}
.ya6{bottom:811.551000px;}
.y106{bottom:812.124000px;}
.yd1{bottom:812.446500px;}
.y7c{bottom:813.196500px;}
.y18d{bottom:816.924000px;}
.yd0{bottom:817.600500px;}
.y164{bottom:822.738000px;}
.y50{bottom:825.363000px;}
.y105{bottom:826.918500px;}
.y139{bottom:827.620500px;}
.ya5{bottom:829.483500px;}
.ycf{bottom:832.120500px;}
.y18c{bottom:834.856500px;}
.yce{bottom:837.274500px;}
.ya{bottom:838.908000px;}
.y163{bottom:840.670500px;}
.y102{bottom:840.966000px;}
.y104{bottom:841.114500px;}
.y4f{bottom:843.297000px;}
.y138{bottom:845.553000px;}
.ya4{bottom:847.416000px;}
.y7b{bottom:849.282000px;}
.y18b{bottom:852.789000px;}
.yd2{bottom:854.514000px;}
.ycd{bottom:855.279000px;}
.y103{bottom:855.312000px;}
.y162{bottom:858.603000px;}
.y137{bottom:863.487000px;}
.ya3{bottom:865.350000px;}
.y9{bottom:874.773000px;}
.ycc{bottom:874.813500px;}
.y161{bottom:876.537000px;}
.y4e{bottom:879.382500px;}
.y136{bottom:881.419500px;}
.ya2{bottom:883.282500px;}
.y101{bottom:885.049500px;}
.y18a{bottom:888.655500px;}
.y160{bottom:894.469500px;}
.y7a{bottom:899.100000px;}
.y189{bottom:906.588000px;}
.ycb{bottom:906.793500px;}
.y8{bottom:910.638000px;}
.y15f{bottom:912.402000px;}
.y11e{bottom:915.322500px;}
.ya1{bottom:919.414500px;}
.y100{bottom:920.020500px;}
.y79{bottom:924.343500px;}
.y188{bottom:924.520500px;}
.y4d{bottom:929.449500px;}
.y11d{bottom:929.518500px;}
.y15e{bottom:930.334500px;}
.y135{bottom:930.510000px;}
.y7{bottom:933.994500px;}
.yc9{bottom:936.046500px;}
.yff{bottom:937.953000px;}
.y76{bottom:938.142000px;}
.yc8{bottom:939.823500px;}
.y187{bottom:942.453000px;}
.y11c{bottom:943.716000px;}
.y134{bottom:944.707500px;}
.y6{bottom:946.504500px;}
.y4c{bottom:947.382000px;}
.y78{bottom:950.179500px;}
.y77{bottom:953.169000px;}
.yc7{bottom:953.730000px;}
.yfe{bottom:955.885500px;}
.y186{bottom:960.385500px;}
.y4b{bottom:965.314500px;}
.y75{bottom:966.477000px;}
.y15d{bottom:966.636000px;}
.yc4{bottom:966.877500px;}
.y1b5{bottom:967.840500px;}
.y5{bottom:969.859500px;}
.ya0{bottom:969.978000px;}
.yfd{bottom:973.818000px;}
.y1b0{bottom:973.819500px;}
.yc6{bottom:978.087000px;}
.yc5{bottom:981.075000px;}
.y4a{bottom:983.247000px;}
.yca{bottom:983.959500px;}
.y15c{bottom:984.568500px;}
.y1b4{bottom:985.774500px;}
.yfc{bottom:991.752000px;}
.yc3{bottom:995.097000px;}
.y74{bottom:997.159500px;}
.y9f{bottom:998.310000px;}
.y49{bottom:1001.181000px;}
.y185{bottom:1002.276000px;}
.y15b{bottom:1002.502500px;}
.y1b3{bottom:1003.707000px;}
.yc2{bottom:1009.144500px;}
.yfb{bottom:1009.684500px;}
.y9c{bottom:1012.108500px;}
.y4{bottom:1012.134000px;}
.y73{bottom:1015.092000px;}
.y48{bottom:1019.113500px;}
.y1af{bottom:1021.639500px;}
.ybf{bottom:1022.293500px;}
.y9e{bottom:1024.147500px;}
.y9d{bottom:1027.135500px;}
.yfa{bottom:1027.617000px;}
.y72{bottom:1033.026000px;}
.yc1{bottom:1033.501500px;}
.yc0{bottom:1036.489500px;}
.y47{bottom:1037.046000px;}
.y15a{bottom:1038.802500px;}
.y1ae{bottom:1039.572000px;}
.y9b{bottom:1044.778500px;}
.ybe{bottom:1045.549500px;}
.y71{bottom:1050.958500px;}
.y1b2{bottom:1051.527000px;}
.y46{bottom:1054.978500px;}
.y159{bottom:1056.736500px;}
.y1ad{bottom:1057.504500px;}
.ybd{bottom:1063.482000px;}
.y1b1{bottom:1069.459500px;}
.y45{bottom:1072.911000px;}
.y158{bottom:1074.669000px;}
.y3{bottom:1078.083000px;}
.y184{bottom:1081.414500px;}
.y9a{bottom:1081.416000px;}
.y6f{bottom:1082.371500px;}
.y1ac{bottom:1087.393500px;}
.y157{bottom:1092.601500px;}
.y6e{bottom:1092.622500px;}
.y6d{bottom:1096.566000px;}
.y183{bottom:1099.347000px;}
.y44{bottom:1099.348500px;}
.y1ab{bottom:1105.326000px;}
.y70{bottom:1110.555000px;}
.y2{bottom:1110.960000px;}
.y43{bottom:1117.281000px;}
.y6c{bottom:1118.238000px;}
.y6b{bottom:1128.489000px;}
.y6a{bottom:1132.432500px;}
.y42{bottom:1135.213500px;}
.y1{bottom:1189.350000px;}
.h15{height:2.391024px;}
.h39{height:11.628845px;}
.h3c{height:11.632776px;}
.h38{height:23.258271px;}
.h3b{height:23.266133px;}
.h14{height:29.875759px;}
.h5{height:31.382100px;}
.h33{height:33.570061px;}
.h9{height:34.287370px;}
.h2{height:35.865450px;}
.hb{height:35.913271px;}
.h8{height:42.201574px;}
.hf{height:44.831700px;}
.h6{height:44.891476px;}
.h1c{height:48.650100px;}
.ha{height:50.283571px;}
.h2a{height:52.307700px;}
.h2c{height:53.072100px;}
.h23{height:54.379759px;}
.h21{height:54.914100px;}
.h17{height:54.920100px;}
.h30{height:56.060100px;}
.h4{height:57.828699px;}
.h19{height:58.517700px;}
.h32{height:59.669476px;}
.h2e{height:59.669700px;}
.h1b{height:59.939700px;}
.h25{height:59.945700px;}
.h27{height:60.374100px;}
.h7{height:60.426194px;}
.h12{height:60.605700px;}
.h28{height:62.811574px;}
.h2b{height:62.817574px;}
.h36{height:63.705271px;}
.h34{height:63.711271px;}
.h35{height:63.825271px;}
.h22{height:65.441700px;}
.h24{height:65.447700px;}
.h2d{height:67.910100px;}
.he{height:68.745024px;}
.h31{height:70.838100px;}
.h3{height:72.511265px;}
.h1a{height:82.635574px;}
.hc{height:82.641574px;}
.h16{height:84.677476px;}
.h11{height:85.271700px;}
.h26{height:85.346100px;}
.h10{height:86.673024px;}
.h13{height:86.679024px;}
.h18{height:89.355024px;}
.h1e{height:93.518100px;}
.h29{height:98.921700px;}
.h20{height:99.071476px;}
.h1f{height:100.379700px;}
.h1d{height:107.025574px;}
.hd{height:109.749024px;}
.h2f{height:124.929024px;}
.h37{height:177.315174px;}
.h3a{height:177.485640px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:335.910488px;}
.w3{width:335.913914px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x75{left:8.695732px;}
.x76{left:10.263874px;}
.x1{left:85.039500px;}
.x2{left:88.092000px;}
.x12{left:91.762500px;}
.xb{left:92.928000px;}
.x9{left:98.700000px;}
.x11{left:99.984000px;}
.x4{left:105.135000px;}
.x42{left:108.465000px;}
.x70{left:110.458500px;}
.x45{left:111.705000px;}
.x51{left:112.710000px;}
.x7a{left:114.927000px;}
.x50{left:115.950000px;}
.x72{left:117.567000px;}
.x71{left:122.154000px;}
.x6f{left:124.440000px;}
.x6e{left:126.295500px;}
.x13{left:132.249000px;}
.x39{left:133.390500px;}
.x3e{left:134.572500px;}
.x4a{left:136.155000px;}
.x49{left:139.395000px;}
.x8{left:158.628000px;}
.x7{left:167.290500px;}
.x3{left:179.388000px;}
.x14{left:181.273500px;}
.x5{left:189.057000px;}
.x4c{left:191.430000px;}
.x4b{left:193.687500px;}
.x43{left:204.868500px;}
.x3a{left:207.034500px;}
.x6d{left:236.580000px;}
.x3b{left:237.756000px;}
.x40{left:239.419500px;}
.x3f{left:243.597000px;}
.x6c{left:247.879500px;}
.x41{left:251.874000px;}
.x4d{left:254.212500px;}
.x6{left:256.030500px;}
.x47{left:260.458500px;}
.x46{left:264.636000px;}
.x15{left:269.433000px;}
.x48{left:272.913000px;}
.x6b{left:287.661000px;}
.x52{left:313.312500px;}
.x4e{left:314.332500px;}
.x3c{left:328.911000px;}
.x44{left:335.200500px;}
.xa{left:345.714000px;}
.x3d{left:359.176500px;}
.x4f{left:391.189500px;}
.x16{left:419.895000px;}
.xc{left:453.928500px;}
.x29{left:455.620500px;}
.x2a{left:456.783000px;}
.x28{left:460.651500px;}
.xf{left:461.817000px;}
.x74{left:462.948000px;}
.xd{left:468.873000px;}
.x65{left:470.884500px;}
.xe{left:483.816000px;}
.x18{left:485.626500px;}
.x17{left:488.686500px;}
.x2b{left:497.806500px;}
.x61{left:498.934500px;}
.x73{left:501.348000px;}
.x77{left:508.668000px;}
.x10{left:514.407000px;}
.x32{left:516.855000px;}
.x53{left:524.679000px;}
.x5a{left:527.920500px;}
.x2e{left:538.377000px;}
.x64{left:542.497500px;}
.x66{left:545.230500px;}
.x68{left:549.772500px;}
.x21{left:551.959500px;}
.x24{left:553.143000px;}
.x19{left:561.190500px;}
.x67{left:565.131000px;}
.x22{left:579.111000px;}
.x1a{left:581.419500px;}
.x5e{left:588.513000px;}
.x2f{left:591.114000px;}
.x59{left:597.265500px;}
.x58{left:599.718000px;}
.x57{left:601.347000px;}
.x56{left:604.096500px;}
.x55{left:605.889000px;}
.x5c{left:609.280500px;}
.x54{left:610.797000px;}
.x2c{left:615.028500px;}
.x1b{left:620.782500px;}
.x69{left:624.120000px;}
.x33{left:625.684500px;}
.x30{left:631.098000px;}
.x1d{left:637.927500px;}
.x5f{left:639.882000px;}
.x1c{left:640.986000px;}
.x63{left:649.872000px;}
.x23{left:651.534000px;}
.x26{left:657.990000px;}
.x25{left:662.167500px;}
.x27{left:670.443000px;}
.x6a{left:680.232000px;}
.x62{left:681.585000px;}
.x60{left:687.936000px;}
.x31{left:692.617500px;}
.x35{left:696.054000px;}
.x1f{left:698.052000px;}
.x1e{left:699.418500px;}
.x34{left:706.342500px;}
.x5d{left:712.548000px;}
.x36{left:729.190500px;}
.x78{left:739.909500px;}
.x2d{left:744.217500px;}
.x37{left:749.013000px;}
.x38{left:769.242000px;}
.x79{left:776.872500px;}
.x5b{left:781.314000px;}
.x20{left:788.784000px;}
@media print{
.v11{vertical-align:-58.981333pt;}
.v19{vertical-align:-57.914667pt;}
.v18{vertical-align:-49.941333pt;}
.v1c{vertical-align:-45.546667pt;}
.v2{vertical-align:-19.280000pt;}
.v3{vertical-align:-7.968000pt;}
.vf{vertical-align:-5.312000pt;}
.v21{vertical-align:-3.984000pt;}
.v0{vertical-align:0.000000pt;}
.v22{vertical-align:5.317333pt;}
.v1a{vertical-align:7.696000pt;}
.v12{vertical-align:10.352000pt;}
.v14{vertical-align:12.165333pt;}
.vc{vertical-align:14.021333pt;}
.v27{vertical-align:15.002667pt;}
.v7{vertical-align:16.176000pt;}
.v13{vertical-align:18.320000pt;}
.v23{vertical-align:19.280000pt;}
.ve{vertical-align:20.922667pt;}
.v25{vertical-align:21.936000pt;}
.v1{vertical-align:23.136000pt;}
.v26{vertical-align:24.709333pt;}
.v1d{vertical-align:25.770667pt;}
.v5{vertical-align:27.978667pt;}
.vb{vertical-align:32.117333pt;}
.v4{vertical-align:35.946667pt;}
.va{vertical-align:42.800000pt;}
.v15{vertical-align:44.485333pt;}
.v1f{vertical-align:46.752000pt;}
.v17{vertical-align:48.160000pt;}
.v8{vertical-align:49.882667pt;}
.v1e{vertical-align:52.064000pt;}
.v16{vertical-align:55.232000pt;}
.v9{vertical-align:58.981333pt;}
.v10{vertical-align:61.125333pt;}
.v20{vertical-align:68.096000pt;}
.vd{vertical-align:74.917333pt;}
.v1b{vertical-align:77.301333pt;}
.v6{vertical-align:79.253333pt;}
.v24{vertical-align:108.922667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb9{letter-spacing:0.000055pt;}
.lsa5{letter-spacing:0.000125pt;}
.ls35{letter-spacing:0.000425pt;}
.ls15{letter-spacing:0.000479pt;}
.ls7e{letter-spacing:0.000501pt;}
.lsc7{letter-spacing:0.000842pt;}
.ls8c{letter-spacing:0.000882pt;}
.ls5a{letter-spacing:0.001014pt;}
.ls61{letter-spacing:0.001069pt;}
.ls37{letter-spacing:0.001501pt;}
.ls5e{letter-spacing:0.001659pt;}
.lsa2{letter-spacing:0.001739pt;}
.lsd{letter-spacing:0.001788pt;}
.ls63{letter-spacing:0.001855pt;}
.ls8{letter-spacing:0.001933pt;}
.ls60{letter-spacing:0.001995pt;}
.ls64{letter-spacing:0.002079pt;}
.lsf{letter-spacing:0.002122pt;}
.lsae{letter-spacing:0.002195pt;}
.ls83{letter-spacing:0.002245pt;}
.lsa{letter-spacing:0.002424pt;}
.lsa0{letter-spacing:0.002717pt;}
.ls5b{letter-spacing:0.002823pt;}
.ls3d{letter-spacing:0.002906pt;}
.ls7c{letter-spacing:0.003564pt;}
.ls2c{letter-spacing:0.003733pt;}
.ls46{letter-spacing:0.003892pt;}
.ls27{letter-spacing:0.004074pt;}
.lsc4{letter-spacing:0.004352pt;}
.ls11{letter-spacing:0.004716pt;}
.ls74{letter-spacing:0.004777pt;}
.ls95{letter-spacing:0.006216pt;}
.ls75{letter-spacing:0.894993pt;}
.ls72{letter-spacing:0.900327pt;}
.ls50{letter-spacing:1.671842pt;}
.ls4e{letter-spacing:1.677176pt;}
.lsc3{letter-spacing:1.905975pt;}
.ls6f{letter-spacing:1.907035pt;}
.ls5f{letter-spacing:2.146585pt;}
.ls5c{letter-spacing:2.651680pt;}
.ls4{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.653258pt;}
.ls10{letter-spacing:2.654544pt;}
.ls7d{letter-spacing:2.654545pt;}
.ls80{letter-spacing:2.655884pt;}
.ls84{letter-spacing:2.656165pt;}
.lsa1{letter-spacing:2.656473pt;}
.lsa3{letter-spacing:2.656495pt;}
.lsb6{letter-spacing:2.657069pt;}
.lsa7{letter-spacing:2.657594pt;}
.ls36{letter-spacing:2.658245pt;}
.ls3{letter-spacing:2.658591pt;}
.lsb7{letter-spacing:2.659376pt;}
.ls40{letter-spacing:2.659514pt;}
.ls16{letter-spacing:2.659878pt;}
.ls6a{letter-spacing:3.059246pt;}
.ls8d{letter-spacing:3.064580pt;}
.lsb3{letter-spacing:3.797848pt;}
.ls96{letter-spacing:3.800156pt;}
.lsbe{letter-spacing:3.803181pt;}
.ls8e{letter-spacing:3.805489pt;}
.lsca{letter-spacing:3.921933pt;}
.ls73{letter-spacing:4.223996pt;}
.ls9e{letter-spacing:4.524320pt;}
.ls9a{letter-spacing:4.687356pt;}
.ls59{letter-spacing:4.802585pt;}
.ls5d{letter-spacing:4.807919pt;}
.ls7f{letter-spacing:5.109330pt;}
.lsc2{letter-spacing:5.113271pt;}
.lscc{letter-spacing:5.547547pt;}
.ls55{letter-spacing:5.718992pt;}
.ls89{letter-spacing:5.733812pt;}
.ls41{letter-spacing:6.370906pt;}
.ls6b{letter-spacing:6.375578pt;}
.ls18{letter-spacing:6.376161pt;}
.ls76{letter-spacing:6.378110pt;}
.ls1d{letter-spacing:6.381494pt;}
.ls8f{letter-spacing:6.455578pt;}
.ls32{letter-spacing:6.860911pt;}
.ls88{letter-spacing:7.405176pt;}
.lsba{letter-spacing:7.524100pt;}
.ls6{letter-spacing:7.529433pt;}
.ls34{letter-spacing:7.675145pt;}
.ls24{letter-spacing:8.378428pt;}
.ls14{letter-spacing:8.855121pt;}
.ls1c{letter-spacing:8.856161pt;}
.ls12{letter-spacing:8.860455pt;}
.lsaa{letter-spacing:9.476538pt;}
.lsab{letter-spacing:9.479742pt;}
.ls82{letter-spacing:11.522906pt;}
.ls6c{letter-spacing:11.523521pt;}
.ls91{letter-spacing:11.795718pt;}
.ls26{letter-spacing:11.803145pt;}
.ls6e{letter-spacing:11.805573pt;}
.ls30{letter-spacing:11.808479pt;}
.ls70{letter-spacing:11.810906pt;}
.lsbd{letter-spacing:13.212725pt;}
.ls4f{letter-spacing:13.479842pt;}
.ls90{letter-spacing:13.485176pt;}
.ls31{letter-spacing:13.532911pt;}
.ls38{letter-spacing:13.724521pt;}
.ls33{letter-spacing:13.729855pt;}
.ls68{letter-spacing:14.127651pt;}
.ls25{letter-spacing:14.252600pt;}
.ls6d{letter-spacing:14.462544pt;}
.lsb5{letter-spacing:14.540725pt;}
.ls52{letter-spacing:14.572326pt;}
.ls1b{letter-spacing:14.677848pt;}
.ls1e{letter-spacing:14.683181pt;}
.lsbf{letter-spacing:14.750181pt;}
.ls78{letter-spacing:14.754906pt;}
.ls17{letter-spacing:14.757812pt;}
.ls87{letter-spacing:14.760239pt;}
.ls0{letter-spacing:15.050792pt;}
.ls1{letter-spacing:15.056125pt;}
.ls3e{letter-spacing:15.323181pt;}
.lsb0{letter-spacing:15.442059pt;}
.ls3f{letter-spacing:15.605848pt;}
.ls45{letter-spacing:15.611181pt;}
.ls1a{letter-spacing:16.011145pt;}
.ls67{letter-spacing:16.782544pt;}
.ls69{letter-spacing:17.192580pt;}
.ls48{letter-spacing:17.201933pt;}
.ls20{letter-spacing:17.207267pt;}
.ls39{letter-spacing:17.410245pt;}
.ls43{letter-spacing:17.414347pt;}
.ls3b{letter-spacing:17.415578pt;}
.ls4d{letter-spacing:17.417211pt;}
.ls9d{letter-spacing:17.452725pt;}
.ls4b{letter-spacing:17.703392pt;}
.lsc9{letter-spacing:17.705685pt;}
.ls29{letter-spacing:17.707105pt;}
.ls2a{letter-spacing:17.708725pt;}
.ls79{letter-spacing:17.710400pt;}
.ls58{letter-spacing:17.772169pt;}
.ls2e{letter-spacing:17.887884pt;}
.lsb{letter-spacing:17.891514pt;}
.ls47{letter-spacing:18.181812pt;}
.ls4a{letter-spacing:18.560515pt;}
.ls23{letter-spacing:18.565848pt;}
.lsb4{letter-spacing:18.748725pt;}
.lsc{letter-spacing:19.187521pt;}
.ls2f{letter-spacing:19.192855pt;}
.lsaf{letter-spacing:19.575392pt;}
.ls49{letter-spacing:19.740455pt;}
.lsb8{letter-spacing:20.361211pt;}
.ls53{letter-spacing:20.375412pt;}
.ls62{letter-spacing:20.838959pt;}
.ls7b{letter-spacing:21.131145pt;}
.ls7a{letter-spacing:21.135444pt;}
.ls44{letter-spacing:21.136479pt;}
.ls8b{letter-spacing:21.467145pt;}
.lsbb{letter-spacing:21.509848pt;}
.ls98{letter-spacing:22.296709pt;}
.ls22{letter-spacing:22.683145pt;}
.ls4c{letter-spacing:22.688479pt;}
.ls2b{letter-spacing:23.254214pt;}
.lse{letter-spacing:23.328479pt;}
.lsc0{letter-spacing:23.769211pt;}
.ls8a{letter-spacing:24.114245pt;}
.ls9b{letter-spacing:24.135392pt;}
.ls57{letter-spacing:24.972169pt;}
.ls56{letter-spacing:24.977503pt;}
.ls21{letter-spacing:25.632479pt;}
.ls28{letter-spacing:26.085095pt;}
.lscf{letter-spacing:26.439392pt;}
.ls5{letter-spacing:26.563733pt;}
.lsc8{letter-spacing:27.889975pt;}
.ls99{letter-spacing:28.015356pt;}
.ls1f{letter-spacing:28.087267pt;}
.lsac{letter-spacing:28.399087pt;}
.lsad{letter-spacing:28.408687pt;}
.ls9c{letter-spacing:29.121503pt;}
.lsc1{letter-spacing:29.383392pt;}
.ls9{letter-spacing:29.547145pt;}
.ls13{letter-spacing:29.552479pt;}
.lscb{letter-spacing:29.927392pt;}
.lsb1{letter-spacing:30.450059pt;}
.lsb2{letter-spacing:30.455392pt;}
.lsc5{letter-spacing:30.848515pt;}
.ls2d{letter-spacing:31.509812pt;}
.ls19{letter-spacing:32.192479pt;}
.lsce{letter-spacing:32.422214pt;}
.lscd{letter-spacing:35.253095pt;}
.ls42{letter-spacing:38.757812pt;}
.lsbc{letter-spacing:44.809067pt;}
.ls71{letter-spacing:45.100745pt;}
.ls77{letter-spacing:51.570079pt;}
.ls66{letter-spacing:52.519578pt;}
.ls93{letter-spacing:53.132745pt;}
.lsc6{letter-spacing:54.153271pt;}
.ls86{letter-spacing:57.116911pt;}
.ls3a{letter-spacing:60.459145pt;}
.lsa4{letter-spacing:81.317459pt;}
.ls51{letter-spacing:87.303412pt;}
.lsa9{letter-spacing:92.608125pt;}
.ls54{letter-spacing:98.386079pt;}
.lsa6{letter-spacing:112.762792pt;}
.ls9f{letter-spacing:118.000591pt;}
.lsa8{letter-spacing:121.290792pt;}
.ls92{letter-spacing:152.082079pt;}
.ls3c{letter-spacing:193.835145pt;}
.ls65{letter-spacing:229.740745pt;}
.ls97{letter-spacing:246.343412pt;}
.ls85{letter-spacing:307.706831pt;}
.ls81{letter-spacing:311.143578pt;}
.ls94{letter-spacing:338.055412pt;}
.wsb2{word-spacing:-118.043098pt;}
.ws5d{word-spacing:-53.133867pt;}
.ws74{word-spacing:-42.066082pt;}
.ws5a{word-spacing:-34.611401pt;}
.ws5c{word-spacing:-28.118362pt;}
.ws93{word-spacing:-27.225793pt;}
.ws4e{word-spacing:-26.561620pt;}
.wsa2{word-spacing:-26.556307pt;}
.ws126{word-spacing:-25.791179pt;}
.ws88{word-spacing:-25.738045pt;}
.ws92{word-spacing:-22.815682pt;}
.wsb5{word-spacing:-22.575574pt;}
.ws9c{word-spacing:-22.427741pt;}
.ws7e{word-spacing:-22.390547pt;}
.ws9d{word-spacing:-18.968736pt;}
.ws63{word-spacing:-14.760588pt;}
.ws8e{word-spacing:-14.553366pt;}
.ws70{word-spacing:-14.500232pt;}
.ws44{word-spacing:-14.234563pt;}
.ws6f{word-spacing:-13.703224pt;}
.ws61{word-spacing:-13.658171pt;}
.ws83{word-spacing:-13.653264pt;}
.ws5b{word-spacing:-13.652837pt;}
.wsce{word-spacing:-13.650090pt;}
.ws62{word-spacing:-13.648828pt;}
.ws8f{word-spacing:-13.437555pt;}
.ws11{word-spacing:-13.389734pt;}
.ws71{word-spacing:-13.331287pt;}
.ws20{word-spacing:-13.278153pt;}
.wsd4{word-spacing:-13.065618pt;}
.wsdf{word-spacing:-13.023017pt;}
.wsa{word-spacing:-12.964663pt;}
.wsd8{word-spacing:-12.906216pt;}
.wsc5{word-spacing:-12.799948pt;}
.ws10d{word-spacing:-12.777806pt;}
.ws39{word-spacing:-12.640547pt;}
.ws1d{word-spacing:-12.486459pt;}
.ws25{word-spacing:-12.481145pt;}
.ws9b{word-spacing:-12.428011pt;}
.wsc8{word-spacing:-12.268610pt;}
.ws14{word-spacing:-12.220789pt;}
.ws10e{word-spacing:-12.162342pt;}
.wse0{word-spacing:-12.008254pt;}
.wsad{word-spacing:-11.949807pt;}
.ws9f{word-spacing:-11.896673pt;}
.wsc9{word-spacing:-11.843539pt;}
.ws5f{word-spacing:-11.744498pt;}
.ws64{word-spacing:-11.740489pt;}
.ws75{word-spacing:-11.735156pt;}
.ws24{word-spacing:-11.684137pt;}
.ws37{word-spacing:-11.631003pt;}
.wsaf{word-spacing:-11.577870pt;}
.ws13{word-spacing:-11.530049pt;}
.ws118{word-spacing:-11.471602pt;}
.ws2b{word-spacing:-11.418468pt;}
.wsd2{word-spacing:-11.365334pt;}
.ws6c{word-spacing:-11.312200pt;}
.ws9a{word-spacing:-11.259066pt;}
.ws81{word-spacing:-11.205932pt;}
.ws4b{word-spacing:-11.099665pt;}
.wsd0{word-spacing:-11.046531pt;}
.ws10f{word-spacing:-10.887129pt;}
.ws73{word-spacing:-10.703504pt;}
.ws59{word-spacing:-10.699495pt;}
.ws82{word-spacing:-10.698598pt;}
.ws60{word-spacing:-10.694162pt;}
.ws35{word-spacing:-10.674594pt;}
.ws19{word-spacing:-10.626773pt;}
.ws23{word-spacing:-10.568326pt;}
.ws34{word-spacing:-10.515192pt;}
.ws3d{word-spacing:-10.462058pt;}
.ws38{word-spacing:-10.408924pt;}
.ws7b{word-spacing:-10.355791pt;}
.ws89{word-spacing:-10.143255pt;}
.ws4a{word-spacing:-9.877586pt;}
.ws7{word-spacing:-9.871320pt;}
.wsca{word-spacing:-9.823414pt;}
.ws79{word-spacing:-9.771318pt;}
.ws18{word-spacing:-9.723498pt;}
.ws42{word-spacing:-9.611916pt;}
.wsbf{word-spacing:-9.508150pt;}
.wsab{word-spacing:-9.505649pt;}
.wsbc{word-spacing:-9.504937pt;}
.ws1e{word-spacing:-9.404694pt;}
.ws49{word-spacing:-9.293113pt;}
.ws6b{word-spacing:-9.239979pt;}
.wsac{word-spacing:-9.186846pt;}
.ws91{word-spacing:-9.133712pt;}
.ws36{word-spacing:-9.027444pt;}
.ws41{word-spacing:-8.921176pt;}
.ws5{word-spacing:-8.868042pt;}
.wsa3{word-spacing:-8.855958pt;}
.ws7d{word-spacing:-8.851464pt;}
.ws6a{word-spacing:-8.846131pt;}
.wsc0{word-spacing:-8.845748pt;}
.ws6{word-spacing:-8.814908pt;}
.ws76{word-spacing:-8.789831pt;}
.ws5e{word-spacing:-8.785823pt;}
.ws58{word-spacing:-8.761775pt;}
.ws21{word-spacing:-8.602373pt;}
.wscf{word-spacing:-8.549239pt;}
.wsbd{word-spacing:-8.548198pt;}
.wsd3{word-spacing:-8.496105pt;}
.ws2a{word-spacing:-8.336704pt;}
.ws67{word-spacing:-8.230436pt;}
.ws1a{word-spacing:-8.129482pt;}
.ws11a{word-spacing:-8.071034pt;}
.ws77{word-spacing:-8.044467pt;}
.ws80{word-spacing:-8.017900pt;}
.wsed{word-spacing:-7.863812pt;}
.ws43{word-spacing:-7.858499pt;}
.ws7f{word-spacing:-7.764151pt;}
.ws55{word-spacing:-7.539696pt;}
.ws50{word-spacing:-7.528025pt;}
.ws8c{word-spacing:-7.382303pt;}
.ws8d{word-spacing:-7.380294pt;}
.ws17{word-spacing:-7.279340pt;}
.ws27{word-spacing:-7.061491pt;}
.wsda{word-spacing:-6.902089pt;}
.wsc2{word-spacing:-6.848955pt;}
.wsba{word-spacing:-6.805403pt;}
.ws28{word-spacing:-6.689554pt;}
.ws112{word-spacing:-6.636420pt;}
.ws2e{word-spacing:-6.583286pt;}
.ws31{word-spacing:-6.477018pt;}
.wsbe{word-spacing:-6.465345pt;}
.ws56{word-spacing:-6.423884pt;}
.ws52{word-spacing:-6.370751pt;}
.ws22{word-spacing:-6.317617pt;}
.ws4c{word-spacing:-6.211349pt;}
.wsd7{word-spacing:-6.105081pt;}
.ws30{word-spacing:-6.051947pt;}
.ws16{word-spacing:-6.004127pt;}
.ws9{word-spacing:-5.950993pt;}
.ws4d{word-spacing:-5.945680pt;}
.ws15{word-spacing:-5.791591pt;}
.ws8b{word-spacing:-5.733144pt;}
.ws72{word-spacing:-5.680010pt;}
.ws8{word-spacing:-5.632190pt;}
.wse{word-spacing:-5.525922pt;}
.ws128{word-spacing:-5.467475pt;}
.wsae{word-spacing:-5.414341pt;}
.ws26{word-spacing:-5.308073pt;}
.ws66{word-spacing:-5.201806pt;}
.ws3c{word-spacing:-5.148672pt;}
.ws7a{word-spacing:-5.042404pt;}
.ws57{word-spacing:-4.883002pt;}
.wsa1{word-spacing:-4.829868pt;}
.wsa0{word-spacing:-4.826587pt;}
.ws2d{word-spacing:-4.723601pt;}
.ws10{word-spacing:-4.622646pt;}
.ws90{word-spacing:-4.511065pt;}
.ws3e{word-spacing:-4.457931pt;}
.ws53{word-spacing:-4.404798pt;}
.ws10b{word-spacing:-4.299648pt;}
.ws6e{word-spacing:-4.298530pt;}
.ws33{word-spacing:-4.245396pt;}
.wscd{word-spacing:-4.192262pt;}
.ws2f{word-spacing:-4.139128pt;}
.ws11e{word-spacing:-4.085994pt;}
.wsc{word-spacing:-4.038174pt;}
.ws10c{word-spacing:-3.985040pt;}
.wsd1{word-spacing:-3.820325pt;}
.ws114{word-spacing:-3.767191pt;}
.wsa8{word-spacing:-3.714057pt;}
.ws120{word-spacing:-3.501522pt;}
.wsd5{word-spacing:-3.395254pt;}
.wsf{word-spacing:-3.294300pt;}
.ws54{word-spacing:-3.288986pt;}
.ws3a{word-spacing:-3.235852pt;}
.ws12{word-spacing:-3.028630pt;}
.ws2c{word-spacing:-2.970183pt;}
.ws86{word-spacing:-2.964870pt;}
.ws8a{word-spacing:-2.810782pt;}
.ws10a{word-spacing:-2.757648pt;}
.wscb{word-spacing:-2.724712pt;}
.wsd6{word-spacing:-2.704514pt;}
.wsb{word-spacing:-2.656693pt;}
.ws6d{word-spacing:-2.545112pt;}
.ws29{word-spacing:-2.438844pt;}
.wse8{word-spacing:-2.279443pt;}
.wsdb{word-spacing:-2.226309pt;}
.ws127{word-spacing:-1.907506pt;}
.ws12d{word-spacing:-1.854372pt;}
.ws11b{word-spacing:-1.482435pt;}
.wsd{word-spacing:-1.275213pt;}
.wsa7{word-spacing:-1.269899pt;}
.ws40{word-spacing:-1.216766pt;}
.ws51{word-spacing:-1.004230pt;}
.ws68{word-spacing:-0.897962pt;}
.wsb0{word-spacing:-0.844828pt;}
.ws109{word-spacing:-0.738561pt;}
.wsc6{word-spacing:-0.685427pt;}
.ws12a{word-spacing:-0.579159pt;}
.ws78{word-spacing:-0.154088pt;}
.ws1b{word-spacing:-0.076513pt;}
.ws3f{word-spacing:-0.047820pt;}
.wsb6{word-spacing:-0.042507pt;}
.ws96{word-spacing:-0.037194pt;}
.wsb7{word-spacing:-0.031881pt;}
.ws97{word-spacing:-0.026567pt;}
.ws94{word-spacing:-0.019085pt;}
.ws87{word-spacing:-0.013752pt;}
.ws3b{word-spacing:0.000000pt;}
.ws85{word-spacing:0.010627pt;}
.wsbb{word-spacing:0.123271pt;}
.ws117{word-spacing:0.164715pt;}
.ws12c{word-spacing:0.324117pt;}
.wsb9{word-spacing:0.378314pt;}
.wsc4{word-spacing:0.483518pt;}
.wsde{word-spacing:0.696054pt;}
.ws113{word-spacing:0.749188pt;}
.ws12b{word-spacing:0.908589pt;}
.ws12e{word-spacing:1.014857pt;}
.wse1{word-spacing:1.176140pt;}
.wsc1{word-spacing:1.227392pt;}
.ws65{word-spacing:1.232706pt;}
.ws124{word-spacing:1.386794pt;}
.ws123{word-spacing:1.705597pt;}
.wse2{word-spacing:1.758731pt;}
.wsa4{word-spacing:2.130668pt;}
.wsa5{word-spacing:2.183802pt;}
.ws45{word-spacing:2.396337pt;}
.ws47{word-spacing:2.715141pt;}
.ws48{word-spacing:2.980810pt;}
.wsc3{word-spacing:3.405881pt;}
.wsc7{word-spacing:4.149755pt;}
.wsd9{word-spacing:4.202889pt;}
.ws116{word-spacing:4.681094pt;}
.wsa6{word-spacing:4.898943pt;}
.ws119{word-spacing:5.371834pt;}
.wscc{word-spacing:6.371829pt;}
.ws11f{word-spacing:7.125252pt;}
.wsf9{word-spacing:7.762858pt;}
.ws121{word-spacing:7.869126pt;}
.wsaa{word-spacing:8.088523pt;}
.wsa9{word-spacing:8.565179pt;}
.wse3{word-spacing:8.825535pt;}
.wse6{word-spacing:11.269693pt;}
.ws107{word-spacing:12.113165pt;}
.ws11d{word-spacing:12.544906pt;}
.ws108{word-spacing:12.704308pt;}
.wse4{word-spacing:12.863709pt;}
.wsf5{word-spacing:14.829662pt;}
.ws1{word-spacing:15.002340pt;}
.ws0{word-spacing:15.005042pt;}
.ws2{word-spacing:15.009864pt;}
.ws111{word-spacing:17.055971pt;}
.wsf0{word-spacing:17.114418pt;}
.ws4f{word-spacing:17.300430pt;}
.wse7{word-spacing:17.852979pt;}
.wsf1{word-spacing:18.177096pt;}
.wsdd{word-spacing:18.331184pt;}
.wsf3{word-spacing:18.596853pt;}
.wsf7{word-spacing:19.027238pt;}
.wsef{word-spacing:19.346041pt;}
.ws1c{word-spacing:19.500129pt;}
.wsfc{word-spacing:19.611710pt;}
.wsfb{word-spacing:19.771112pt;}
.wsfa{word-spacing:19.877380pt;}
.wsdc{word-spacing:19.927131pt;}
.wsf2{word-spacing:20.249317pt;}
.wse5{word-spacing:21.311994pt;}
.wsf6{word-spacing:21.630797pt;}
.ws104{word-spacing:21.737065pt;}
.ws4{word-spacing:22.252612pt;}
.wsec{word-spacing:22.316224pt;}
.ws129{word-spacing:22.480939pt;}
.wsea{word-spacing:22.534073pt;}
.ws98{word-spacing:23.293629pt;}
.ws99{word-spacing:23.331081pt;}
.ws46{word-spacing:23.846639pt;}
.ws125{word-spacing:26.320495pt;}
.wseb{word-spacing:27.581790pt;}
.ws9e{word-spacing:27.900593pt;}
.ws32{word-spacing:27.927269pt;}
.ws110{word-spacing:28.003782pt;}
.wse9{word-spacing:28.325664pt;}
.ws106{word-spacing:31.242714pt;}
.ws122{word-spacing:32.464793pt;}
.wsee{word-spacing:33.267114pt;}
.ws105{word-spacing:33.967736pt;}
.wsff{word-spacing:34.483879pt;}
.ws3{word-spacing:35.532586pt;}
.ws115{word-spacing:35.859889pt;}
.wsfe{word-spacing:37.406242pt;}
.ws100{word-spacing:37.517823pt;}
.ws102{word-spacing:40.068249pt;}
.ws101{word-spacing:40.174517pt;}
.wsfd{word-spacing:40.744083pt;}
.wsb4{word-spacing:41.185830pt;}
.ws103{word-spacing:42.353005pt;}
.ws11c{word-spacing:44.951251pt;}
.wsf8{word-spacing:47.395409pt;}
.wsf4{word-spacing:50.264638pt;}
.wsb1{word-spacing:82.572646pt;}
.wsb3{word-spacing:95.243824pt;}
.ws1f{word-spacing:121.426237pt;}
.wsb8{word-spacing:124.091824pt;}
.ws95{word-spacing:173.534595pt;}
.ws69{word-spacing:298.862970pt;}
.ws84{word-spacing:348.227861pt;}
.ws7c{word-spacing:475.497636pt;}
._21{margin-left:-117.995257pt;}
._1b{margin-left:-30.587033pt;}
._1f{margin-left:-11.774704pt;}
._26{margin-left:-9.476538pt;}
._2{margin-left:-8.538838pt;}
._17{margin-left:-5.993540pt;}
._4{margin-left:-4.410111pt;}
._3{margin-left:-2.846279pt;}
._0{margin-left:-1.275216pt;}
._10{width:1.275216pt;}
._f{width:2.846279pt;}
._1a{width:4.562652pt;}
._11{width:14.983747pt;}
._18{width:16.783067pt;}
._2c{width:18.342096pt;}
._12{width:20.562803pt;}
._7{width:22.110924pt;}
._5{width:23.485172pt;}
._13{width:24.813519pt;}
._8{width:26.255365pt;}
._19{width:27.523346pt;}
._1c{width:28.426622pt;}
._2b{width:29.383031pt;}
._b{width:30.300774pt;}
._6{width:31.598937pt;}
._27{width:32.783599pt;}
._c{width:35.318307pt;}
._9{width:36.798820pt;}
._30{width:38.256387pt;}
._d{width:40.176438pt;}
._28{width:42.613358pt;}
._32{width:44.291939pt;}
._a{width:45.603328pt;}
._2a{width:46.914338pt;}
._29{width:49.968784pt;}
._2e{width:53.232899pt;}
._20{width:56.321902pt;}
._e{width:57.574165pt;}
._31{width:64.360273pt;}
._2d{width:70.349239pt;}
._1d{width:73.747075pt;}
._22{width:75.052070pt;}
._2f{width:78.546866pt;}
._24{width:81.310540pt;}
._23{width:86.336977pt;}
._25{width:92.608426pt;}
._16{width:103.611733pt;}
._14{width:121.502750pt;}
._1e{width:133.688828pt;}
._1{width:430.257878pt;}
._15{width:1070.660716pt;}
.fs9{font-size:14.198833pt;}
.fsb{font-size:14.203633pt;}
.fs6{font-size:26.566933pt;}
.fs8{font-size:28.398377pt;}
.fsa{font-size:28.407977pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:51.638667pt;}
.y40{bottom:51.958667pt;}
.y123{bottom:73.530557pt;}
.y129{bottom:74.442582pt;}
.y124{bottom:78.664691pt;}
.y12a{bottom:79.578451pt;}
.y68{bottom:103.066667pt;}
.y28{bottom:107.716000pt;}
.y11b{bottom:111.502667pt;}
.y67{bottom:112.178667pt;}
.y27{bottom:123.656000pt;}
.y99{bottom:123.657333pt;}
.y69{bottom:126.921333pt;}
.y66{bottom:132.234667pt;}
.y1aa{bottom:137.000000pt;}
.y182{bottom:139.596000pt;}
.y26{bottom:139.597333pt;}
.y65{bottom:141.346667pt;}
.y12d{bottom:146.150667pt;}
.y3f{bottom:147.156000pt;}
.y1a9{bottom:152.940000pt;}
.y95{bottom:154.318667pt;}
.y25{bottom:155.537333pt;}
.y12c{bottom:158.769333pt;}
.yf9{bottom:160.306667pt;}
.y156{bottom:160.892000pt;}
.y3e{bottom:163.096000pt;}
.y94{bottom:163.429333pt;}
.ybc{bottom:164.396000pt;}
.y96{bottom:169.132000pt;}
.y12b{bottom:171.389333pt;}
.y24{bottom:171.477333pt;}
.y97{bottom:172.416000pt;}
.y64{bottom:175.240000pt;}
.y155{bottom:176.832000pt;}
.y133{bottom:178.721333pt;}
.y3d{bottom:179.036000pt;}
.y98{bottom:181.593333pt;}
.y1a8{bottom:182.224000pt;}
.y93{bottom:185.036000pt;}
.y181{bottom:187.417333pt;}
.y92{bottom:188.320000pt;}
.y91{bottom:190.329333pt;}
.y63{bottom:191.181333pt;}
.y132{bottom:191.340000pt;}
.y154{bottom:192.773333pt;}
.y128{bottom:193.505333pt;}
.y3c{bottom:194.976000pt;}
.y1a7{bottom:198.165333pt;}
.y90{bottom:199.441333pt;}
.y180{bottom:203.357333pt;}
.yf8{bottom:208.068000pt;}
.y153{bottom:208.713333pt;}
.y23{bottom:209.244000pt;}
.y3b{bottom:210.916000pt;}
.yf7{bottom:211.352000pt;}
.y1a6{bottom:214.105333pt;}
.y62{bottom:214.680000pt;}
.y152{bottom:224.653333pt;}
.y3a{bottom:226.857333pt;}
.yf6{bottom:227.292000pt;}
.y8f{bottom:229.465333pt;}
.y1a5{bottom:230.045333pt;}
.y61{bottom:230.620000pt;}
.y17f{bottom:235.625333pt;}
.y151{bottom:240.593333pt;}
.y39{bottom:242.797333pt;}
.yf5{bottom:243.232000pt;}
.y8e{bottom:245.405333pt;}
.y60{bottom:246.560000pt;}
.y17e{bottom:251.565333pt;}
.y38{bottom:258.737333pt;}
.yf4{bottom:259.302667pt;}
.y8d{bottom:260.748000pt;}
.y5f{bottom:262.501333pt;}
.y8c{bottom:265.328000pt;}
.y22{bottom:266.310667pt;}
.yf1{bottom:266.476000pt;}
.y17d{bottom:267.506667pt;}
.y1a4{bottom:268.229333pt;}
.y8b{bottom:268.369333pt;}
.yef{bottom:275.110667pt;}
.yf3{bottom:275.242667pt;}
.y150{bottom:277.244000pt;}
.y5e{bottom:278.441333pt;}
.y21{bottom:282.250667pt;}
.y17c{bottom:283.446667pt;}
.y8a{bottom:284.658667pt;}
.y89{bottom:289.238667pt;}
.yf0{bottom:290.386667pt;}
.yf2{bottom:291.184000pt;}
.y1a3{bottom:292.140000pt;}
.y88{bottom:292.280000pt;}
.y5d{bottom:294.381333pt;}
.y37{bottom:295.496000pt;}
.y20{bottom:298.190667pt;}
.y17b{bottom:299.386667pt;}
.yee{bottom:303.826667pt;}
.yed{bottom:307.124000pt;}
.y17a{bottom:315.326667pt;}
.y87{bottom:316.476000pt;}
.y5c{bottom:317.880000pt;}
.y36{bottom:319.406667pt;}
.y14f{bottom:328.725333pt;}
.y179{bottom:331.266667pt;}
.y86{bottom:332.416000pt;}
.yec{bottom:332.934667pt;}
.y5b{bottom:333.821333pt;}
.y1f{bottom:335.957333pt;}
.y35{bottom:343.316000pt;}
.y14e{bottom:344.666667pt;}
.y85{bottom:348.357333pt;}
.yeb{bottom:348.876000pt;}
.y5a{bottom:349.761333pt;}
.y1a2{bottom:359.529333pt;}
.y14d{bottom:360.606667pt;}
.y178{bottom:363.534667pt;}
.yea{bottom:364.816000pt;}
.y59{bottom:365.701333pt;}
.y127{bottom:368.394667pt;}
.ybb{bottom:374.336000pt;}
.y1a1{bottom:375.469333pt;}
.y14c{bottom:376.546667pt;}
.y177{bottom:379.474667pt;}
.ye9{bottom:380.756000pt;}
.y126{bottom:381.013333pt;}
.y84{bottom:387.201333pt;}
.yba{bottom:390.276000pt;}
.y1a0{bottom:391.409333pt;}
.y14b{bottom:392.486667pt;}
.y1e{bottom:393.024000pt;}
.y125{bottom:393.633333pt;}
.y34{bottom:395.338667pt;}
.y176{bottom:395.416000pt;}
.ye8{bottom:396.696000pt;}
.y58{bottom:405.798667pt;}
.y19f{bottom:407.349333pt;}
.y14a{bottom:408.426667pt;}
.y1d{bottom:408.964000pt;}
.y131{bottom:410.694667pt;}
.y33{bottom:411.278667pt;}
.y175{bottom:411.356000pt;}
.y122{bottom:415.749333pt;}
.y19e{bottom:423.290667pt;}
.y130{bottom:423.313333pt;}
.y149{bottom:424.368000pt;}
.y1c{bottom:424.904000pt;}
.y11a{bottom:426.086667pt;}
.y32{bottom:427.218667pt;}
.y174{bottom:427.296000pt;}
.ye6{bottom:430.582667pt;}
.yb9{bottom:431.137333pt;}
.yb8{bottom:434.496000pt;}
.ye5{bottom:435.162667pt;}
.y119{bottom:438.705333pt;}
.y19d{bottom:439.230667pt;}
.y148{bottom:440.308000pt;}
.y1b{bottom:440.844000pt;}
.y31{bottom:443.158667pt;}
.y118{bottom:451.856000pt;}
.y147{bottom:456.248000pt;}
.y1a{bottom:456.785333pt;}
.ye4{bottom:457.141333pt;}
.y30{bottom:459.100000pt;}
.y173{bottom:459.564000pt;}
.yb7{bottom:464.441333pt;}
.y117{bottom:464.476000pt;}
.ye7{bottom:468.777333pt;}
.y19c{bottom:471.110667pt;}
.y146{bottom:472.188000pt;}
.y19{bottom:472.725333pt;}
.y2f{bottom:475.040000pt;}
.y172{bottom:475.504000pt;}
.ye2{bottom:476.122667pt;}
.y116{bottom:477.626667pt;}
.ye3{bottom:486.481333pt;}
.y19b{bottom:487.050667pt;}
.ye1{bottom:487.145333pt;}
.y145{bottom:488.128000pt;}
.y18{bottom:488.665333pt;}
.y115{bottom:490.298667pt;}
.y2e{bottom:490.980000pt;}
.y171{bottom:491.444000pt;}
.ye0{bottom:500.725333pt;}
.y19a{bottom:502.990667pt;}
.y114{bottom:503.449333pt;}
.y144{bottom:504.068000pt;}
.yb5{bottom:504.228000pt;}
.y17{bottom:504.605333pt;}
.y2d{bottom:506.920000pt;}
.y170{bottom:507.384000pt;}
.ydf{bottom:511.748000pt;}
.yb3{bottom:513.340000pt;}
.y113{bottom:516.068000pt;}
.y199{bottom:518.932000pt;}
.yb6{bottom:519.840000pt;}
.y143{bottom:520.009333pt;}
.y16{bottom:520.545333pt;}
.yb4{bottom:522.325333pt;}
.y16f{bottom:523.325333pt;}
.y112{bottom:529.218667pt;}
.y2c{bottom:533.989333pt;}
.y198{bottom:534.872000pt;}
.y142{bottom:535.949333pt;}
.y15{bottom:536.485333pt;}
.yb2{bottom:537.070667pt;}
.y16e{bottom:539.265333pt;}
.yb1{bottom:540.428000pt;}
.y10f{bottom:541.705333pt;}
.y111{bottom:541.838667pt;}
.yde{bottom:542.953333pt;}
.y2b{bottom:549.929333pt;}
.y197{bottom:550.812000pt;}
.y141{bottom:551.889333pt;}
.y14{bottom:552.426667pt;}
.y110{bottom:554.457333pt;}
.y16d{bottom:555.205333pt;}
.y2a{bottom:565.869333pt;}
.y196{bottom:566.752000pt;}
.yb0{bottom:566.942667pt;}
.y140{bottom:567.829333pt;}
.y13{bottom:568.366667pt;}
.ydc{bottom:571.386667pt;}
.ydb{bottom:575.966667pt;}
.y10e{bottom:580.892000pt;}
.yaf{bottom:582.884000pt;}
.y13f{bottom:583.769333pt;}
.y12{bottom:584.306667pt;}
.y16c{bottom:587.473333pt;}
.y121{bottom:590.486667pt;}
.yda{bottom:595.782667pt;}
.y195{bottom:598.632000pt;}
.ydd{bottom:599.372000pt;}
.y13e{bottom:599.709333pt;}
.y11{bottom:600.246667pt;}
.yd9{bottom:600.362667pt;}
.y120{bottom:603.105333pt;}
.y16b{bottom:603.413333pt;}
.y83{bottom:603.701333pt;}
.yae{bottom:606.382667pt;}
.y194{bottom:614.573333pt;}
.y13d{bottom:615.650667pt;}
.y11f{bottom:615.725333pt;}
.y10{bottom:616.186667pt;}
.yd8{bottom:617.833333pt;}
.y16a{bottom:619.353333pt;}
.y82{bottom:619.641333pt;}
.y57{bottom:622.074667pt;}
.yd7{bottom:622.413333pt;}
.y193{bottom:630.513333pt;}
.yad{bottom:631.568000pt;}
.y13c{bottom:631.590667pt;}
.y10d{bottom:631.905333pt;}
.yf{bottom:632.126667pt;}
.y169{bottom:635.293333pt;}
.y81{bottom:635.581333pt;}
.y56{bottom:638.014667pt;}
.y12f{bottom:640.048000pt;}
.yaa{bottom:643.833333pt;}
.y10c{bottom:644.524000pt;}
.y192{bottom:646.453333pt;}
.ya9{bottom:647.190667pt;}
.y29{bottom:648.066667pt;}
.ye{bottom:648.068000pt;}
.y168{bottom:651.234667pt;}
.y12e{bottom:652.668000pt;}
.y55{bottom:653.956000pt;}
.yac{bottom:654.533333pt;}
.yab{bottom:657.190667pt;}
.y10b{bottom:657.674667pt;}
.y80{bottom:659.081333pt;}
.y191{bottom:662.393333pt;}
.yd{bottom:664.008000pt;}
.yd6{bottom:664.629333pt;}
.y167{bottom:667.174667pt;}
.y13b{bottom:668.241333pt;}
.y54{bottom:669.896000pt;}
.y10a{bottom:670.294667pt;}
.ya8{bottom:672.872000pt;}
.y7f{bottom:675.021333pt;}
.y190{bottom:678.333333pt;}
.yc{bottom:679.948000pt;}
.yd5{bottom:680.570667pt;}
.y166{bottom:683.114667pt;}
.y109{bottom:683.445333pt;}
.yd4{bottom:683.928000pt;}
.y53{bottom:685.836000pt;}
.y7e{bottom:690.961333pt;}
.y18f{bottom:694.273333pt;}
.yb{bottom:695.888000pt;}
.y108{bottom:696.117333pt;}
.yd3{bottom:696.510667pt;}
.y165{bottom:699.054667pt;}
.y52{bottom:701.776000pt;}
.ya7{bottom:705.438667pt;}
.y7d{bottom:706.901333pt;}
.y107{bottom:709.268000pt;}
.y18e{bottom:710.214667pt;}
.y51{bottom:717.716000pt;}
.y13a{bottom:719.722667pt;}
.ya6{bottom:721.378667pt;}
.y106{bottom:721.888000pt;}
.yd1{bottom:722.174667pt;}
.y7c{bottom:722.841333pt;}
.y18d{bottom:726.154667pt;}
.yd0{bottom:726.756000pt;}
.y164{bottom:731.322667pt;}
.y50{bottom:733.656000pt;}
.y105{bottom:735.038667pt;}
.y139{bottom:735.662667pt;}
.ya5{bottom:737.318667pt;}
.ycf{bottom:739.662667pt;}
.y18c{bottom:742.094667pt;}
.yce{bottom:744.244000pt;}
.ya{bottom:745.696000pt;}
.y163{bottom:747.262667pt;}
.y102{bottom:747.525333pt;}
.y104{bottom:747.657333pt;}
.y4f{bottom:749.597333pt;}
.y138{bottom:751.602667pt;}
.ya4{bottom:753.258667pt;}
.y7b{bottom:754.917333pt;}
.y18b{bottom:758.034667pt;}
.yd2{bottom:759.568000pt;}
.ycd{bottom:760.248000pt;}
.y103{bottom:760.277333pt;}
.y162{bottom:763.202667pt;}
.y137{bottom:767.544000pt;}
.ya3{bottom:769.200000pt;}
.y9{bottom:777.576000pt;}
.ycc{bottom:777.612000pt;}
.y161{bottom:779.144000pt;}
.y4e{bottom:781.673333pt;}
.y136{bottom:783.484000pt;}
.ya2{bottom:785.140000pt;}
.y101{bottom:786.710667pt;}
.y18a{bottom:789.916000pt;}
.y160{bottom:795.084000pt;}
.y7a{bottom:799.200000pt;}
.y189{bottom:805.856000pt;}
.ycb{bottom:806.038667pt;}
.y8{bottom:809.456000pt;}
.y15f{bottom:811.024000pt;}
.y11e{bottom:813.620000pt;}
.ya1{bottom:817.257333pt;}
.y100{bottom:817.796000pt;}
.y79{bottom:821.638667pt;}
.y188{bottom:821.796000pt;}
.y4d{bottom:826.177333pt;}
.y11d{bottom:826.238667pt;}
.y15e{bottom:826.964000pt;}
.y135{bottom:827.120000pt;}
.y7{bottom:830.217333pt;}
.yc9{bottom:832.041333pt;}
.yff{bottom:833.736000pt;}
.y76{bottom:833.904000pt;}
.yc8{bottom:835.398667pt;}
.y187{bottom:837.736000pt;}
.y11c{bottom:838.858667pt;}
.y134{bottom:839.740000pt;}
.y6{bottom:841.337333pt;}
.y4c{bottom:842.117333pt;}
.y78{bottom:844.604000pt;}
.y77{bottom:847.261333pt;}
.yc7{bottom:847.760000pt;}
.yfe{bottom:849.676000pt;}
.y186{bottom:853.676000pt;}
.y4b{bottom:858.057333pt;}
.y75{bottom:859.090667pt;}
.y15d{bottom:859.232000pt;}
.yc4{bottom:859.446667pt;}
.y1b5{bottom:860.302667pt;}
.y5{bottom:862.097333pt;}
.ya0{bottom:862.202667pt;}
.yfd{bottom:865.616000pt;}
.y1b0{bottom:865.617333pt;}
.yc6{bottom:869.410667pt;}
.yc5{bottom:872.066667pt;}
.y4a{bottom:873.997333pt;}
.yca{bottom:874.630667pt;}
.y15c{bottom:875.172000pt;}
.y1b4{bottom:876.244000pt;}
.yfc{bottom:881.557333pt;}
.yc3{bottom:884.530667pt;}
.y74{bottom:886.364000pt;}
.y9f{bottom:887.386667pt;}
.y49{bottom:889.938667pt;}
.y185{bottom:890.912000pt;}
.y15b{bottom:891.113333pt;}
.y1b3{bottom:892.184000pt;}
.yc2{bottom:897.017333pt;}
.yfb{bottom:897.497333pt;}
.y9c{bottom:899.652000pt;}
.y4{bottom:899.674667pt;}
.y73{bottom:902.304000pt;}
.y48{bottom:905.878667pt;}
.y1af{bottom:908.124000pt;}
.ybf{bottom:908.705333pt;}
.y9e{bottom:910.353333pt;}
.y9d{bottom:913.009333pt;}
.yfa{bottom:913.437333pt;}
.y72{bottom:918.245333pt;}
.yc1{bottom:918.668000pt;}
.yc0{bottom:921.324000pt;}
.y47{bottom:921.818667pt;}
.y15a{bottom:923.380000pt;}
.y1ae{bottom:924.064000pt;}
.y9b{bottom:928.692000pt;}
.ybe{bottom:929.377333pt;}
.y71{bottom:934.185333pt;}
.y1b2{bottom:934.690667pt;}
.y46{bottom:937.758667pt;}
.y159{bottom:939.321333pt;}
.y1ad{bottom:940.004000pt;}
.ybd{bottom:945.317333pt;}
.y1b1{bottom:950.630667pt;}
.y45{bottom:953.698667pt;}
.y158{bottom:955.261333pt;}
.y3{bottom:958.296000pt;}
.y184{bottom:961.257333pt;}
.y9a{bottom:961.258667pt;}
.y6f{bottom:962.108000pt;}
.y1ac{bottom:966.572000pt;}
.y157{bottom:971.201333pt;}
.y6e{bottom:971.220000pt;}
.y6d{bottom:974.725333pt;}
.y183{bottom:977.197333pt;}
.y44{bottom:977.198667pt;}
.y1ab{bottom:982.512000pt;}
.y70{bottom:987.160000pt;}
.y2{bottom:987.520000pt;}
.y43{bottom:993.138667pt;}
.y6c{bottom:993.989333pt;}
.y6b{bottom:1003.101333pt;}
.y6a{bottom:1006.606667pt;}
.y42{bottom:1009.078667pt;}
.y1{bottom:1057.200000pt;}
.h15{height:2.125355pt;}
.h39{height:10.336751pt;}
.h3c{height:10.340245pt;}
.h38{height:20.674018pt;}
.h3b{height:20.681007pt;}
.h14{height:26.556230pt;}
.h5{height:27.895200pt;}
.h33{height:29.840054pt;}
.h9{height:30.477662pt;}
.h2{height:31.880400pt;}
.hb{height:31.922907pt;}
.h8{height:37.512510pt;}
.hf{height:39.850400pt;}
.h6{height:39.903534pt;}
.h1c{height:43.244533pt;}
.ha{height:44.696508pt;}
.h2a{height:46.495733pt;}
.h2c{height:47.175200pt;}
.h23{height:48.337564pt;}
.h21{height:48.812533pt;}
.h17{height:48.817867pt;}
.h30{height:49.831200pt;}
.h4{height:51.403288pt;}
.h19{height:52.015733pt;}
.h32{height:53.039534pt;}
.h2e{height:53.039733pt;}
.h1b{height:53.279733pt;}
.h25{height:53.285067pt;}
.h27{height:53.665867pt;}
.h7{height:53.712173pt;}
.h12{height:53.871733pt;}
.h28{height:55.832510pt;}
.h2b{height:55.837843pt;}
.h36{height:56.626907pt;}
.h34{height:56.632241pt;}
.h35{height:56.733574pt;}
.h22{height:58.170400pt;}
.h24{height:58.175733pt;}
.h2d{height:60.364533pt;}
.he{height:61.106688pt;}
.h31{height:62.967200pt;}
.h3{height:64.454458pt;}
.h1a{height:73.453843pt;}
.hc{height:73.459177pt;}
.h16{height:75.268867pt;}
.h11{height:75.797067pt;}
.h26{height:75.863200pt;}
.h10{height:77.042688pt;}
.h13{height:77.048021pt;}
.h18{height:79.426688pt;}
.h1e{height:83.127200pt;}
.h29{height:87.930400pt;}
.h20{height:88.063534pt;}
.h1f{height:89.226400pt;}
.h1d{height:95.133843pt;}
.hd{height:97.554688pt;}
.h2f{height:111.048021pt;}
.h37{height:157.613488pt;}
.h3a{height:157.765013pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:298.587100pt;}
.w3{width:298.590145pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x75{left:7.729540pt;}
.x76{left:9.123444pt;}
.x1{left:75.590667pt;}
.x2{left:78.304000pt;}
.x12{left:81.566667pt;}
.xb{left:82.602667pt;}
.x9{left:87.733333pt;}
.x11{left:88.874667pt;}
.x4{left:93.453333pt;}
.x42{left:96.413333pt;}
.x70{left:98.185333pt;}
.x45{left:99.293333pt;}
.x51{left:100.186667pt;}
.x7a{left:102.157333pt;}
.x50{left:103.066667pt;}
.x72{left:104.504000pt;}
.x71{left:108.581333pt;}
.x6f{left:110.613333pt;}
.x6e{left:112.262667pt;}
.x13{left:117.554667pt;}
.x39{left:118.569333pt;}
.x3e{left:119.620000pt;}
.x4a{left:121.026667pt;}
.x49{left:123.906667pt;}
.x8{left:141.002667pt;}
.x7{left:148.702667pt;}
.x3{left:159.456000pt;}
.x14{left:161.132000pt;}
.x5{left:168.050667pt;}
.x4c{left:170.160000pt;}
.x4b{left:172.166667pt;}
.x43{left:182.105333pt;}
.x3a{left:184.030667pt;}
.x6d{left:210.293333pt;}
.x3b{left:211.338667pt;}
.x40{left:212.817333pt;}
.x3f{left:216.530667pt;}
.x6c{left:220.337333pt;}
.x41{left:223.888000pt;}
.x4d{left:225.966667pt;}
.x6{left:227.582667pt;}
.x47{left:231.518667pt;}
.x46{left:235.232000pt;}
.x15{left:239.496000pt;}
.x48{left:242.589333pt;}
.x6b{left:255.698667pt;}
.x52{left:278.500000pt;}
.x4e{left:279.406667pt;}
.x3c{left:292.365333pt;}
.x44{left:297.956000pt;}
.xa{left:307.301333pt;}
.x3d{left:319.268000pt;}
.x4f{left:347.724000pt;}
.x16{left:373.240000pt;}
.xc{left:403.492000pt;}
.x29{left:404.996000pt;}
.x2a{left:406.029333pt;}
.x28{left:409.468000pt;}
.xf{left:410.504000pt;}
.x74{left:411.509333pt;}
.xd{left:416.776000pt;}
.x65{left:418.564000pt;}
.xe{left:430.058667pt;}
.x18{left:431.668000pt;}
.x17{left:434.388000pt;}
.x2b{left:442.494667pt;}
.x61{left:443.497333pt;}
.x73{left:445.642667pt;}
.x77{left:452.149333pt;}
.x10{left:457.250667pt;}
.x32{left:459.426667pt;}
.x53{left:466.381333pt;}
.x5a{left:469.262667pt;}
.x2e{left:478.557333pt;}
.x64{left:482.220000pt;}
.x66{left:484.649333pt;}
.x68{left:488.686667pt;}
.x21{left:490.630667pt;}
.x24{left:491.682667pt;}
.x19{left:498.836000pt;}
.x67{left:502.338667pt;}
.x22{left:514.765333pt;}
.x1a{left:516.817333pt;}
.x5e{left:523.122667pt;}
.x2f{left:525.434667pt;}
.x59{left:530.902667pt;}
.x58{left:533.082667pt;}
.x57{left:534.530667pt;}
.x56{left:536.974667pt;}
.x55{left:538.568000pt;}
.x5c{left:541.582667pt;}
.x54{left:542.930667pt;}
.x2c{left:546.692000pt;}
.x1b{left:551.806667pt;}
.x69{left:554.773333pt;}
.x33{left:556.164000pt;}
.x30{left:560.976000pt;}
.x1d{left:567.046667pt;}
.x5f{left:568.784000pt;}
.x1c{left:569.765333pt;}
.x63{left:577.664000pt;}
.x23{left:579.141333pt;}
.x26{left:584.880000pt;}
.x25{left:588.593333pt;}
.x27{left:595.949333pt;}
.x6a{left:604.650667pt;}
.x62{left:605.853333pt;}
.x60{left:611.498667pt;}
.x31{left:615.660000pt;}
.x35{left:618.714667pt;}
.x1f{left:620.490667pt;}
.x1e{left:621.705333pt;}
.x34{left:627.860000pt;}
.x5d{left:633.376000pt;}
.x36{left:648.169333pt;}
.x78{left:657.697333pt;}
.x2d{left:661.526667pt;}
.x37{left:665.789333pt;}
.x38{left:683.770667pt;}
.x79{left:690.553333pt;}
.x5b{left:694.501333pt;}
.x20{left:701.141333pt;}
}




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