
    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_6ded17c931089b2ad59667a4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d87c6cbdb09b9b0311558ea6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_507f1f0e8caaf14228efe0cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6aea60245bd1dc4751722bc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_08281d883e35f9f58b0de741.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6cac18e1e448f67f494ec9df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_32939a870d28eda123fd7c0f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_48f097e6011fcef4a9d44b93.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_784657debb15f031e872a983.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a04492053eb0c44dbf8e3a0f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f01283a262d30fc45cd013ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b4af9d4814e8d28fd43baa23.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.931000;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_3d5e0de4480551edb4048647.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_196946a02311a4772388137f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.851000;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_e3e8f265b206885c9799b22f.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_92e35c1db806a6f111db2d5e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_42cc62b1ffcf3f9744cf519c.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_eb8b1068ff621339a439135a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_229fa9e2d8823a388b3ccbba.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_955dd41a7d72f940f8ab69e6.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_d0aff7379188c4f91337af59.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_7bad3e45e9cf96c67376d2b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.431000;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_07c2e8640800eed77dbc2ed5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.782000;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_912b3183fd2e754f449dee2e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.834000;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_097f28edae48c34329e5e868.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3556c27145b27748ce497896.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_51dc1b536b152419edf8def2.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_6bfa2aa99e1a934c15bb7387.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_2926d63efb8307dd05ce869c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5ea6e7b335b297bd53d1cfbe.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.239258;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:ff1f;src:url('chunks/assets/font_6e69bc394707a01abafc8124.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:2.400000;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:ff20;src:url('chunks/assets/font_8ac0335e7e33ff21cd466984.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_62c4a310aa79f3cb7367d6e8.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_4bc4ba49f4c52b9a8f1b7cba.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_f0e581ea7b6e694085752ca9.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_8dd6ba69971493a90227bfee.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-18.726000px;}
.v7{vertical-align:-14.940000px;}
.vb{vertical-align:-10.788000px;}
.v2{vertical-align:-8.964000px;}
.v10{vertical-align:-7.911090px;}
.v9{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.550570px;}
.va{vertical-align:8.370000px;}
.v8{vertical-align:9.930000px;}
.ve{vertical-align:14.778000px;}
.v14{vertical-align:17.934000px;}
.vd{vertical-align:19.392000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:22.854000px;}
.v6{vertical-align:25.494000px;}
.v5{vertical-align:31.470000px;}
.vf{vertical-align:36.468000px;}
.v4{vertical-align:40.434000px;}
.v13{vertical-align:71.298000px;}
.v12{vertical-align:86.076000px;}
.v15{vertical-align:99.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.000312px;}
.ls97{letter-spacing:0.000538px;}
.ls18{letter-spacing:0.000557px;}
.ls5a{letter-spacing:0.000564px;}
.ls1a{letter-spacing:0.000648px;}
.ls55{letter-spacing:0.000780px;}
.ls5f{letter-spacing:0.000961px;}
.ls11{letter-spacing:0.001002px;}
.ls48{letter-spacing:0.001250px;}
.ls96{letter-spacing:0.001325px;}
.ls9a{letter-spacing:0.001559px;}
.ls26{letter-spacing:0.002023px;}
.ls8a{letter-spacing:0.002877px;}
.ls7{letter-spacing:0.003031px;}
.ls1f{letter-spacing:0.003269px;}
.ls15{letter-spacing:0.003414px;}
.ls4d{letter-spacing:0.003427px;}
.ls6b{letter-spacing:0.003723px;}
.ls67{letter-spacing:0.003954px;}
.ls4b{letter-spacing:0.005282px;}
.ls66{letter-spacing:0.005535px;}
.ls82{letter-spacing:0.034584px;}
.ls58{letter-spacing:0.221549px;}
.ls4c{letter-spacing:0.746425px;}
.ls1{letter-spacing:2.144023px;}
.ls7a{letter-spacing:2.238538px;}
.ls8f{letter-spacing:2.982648px;}
.ls5c{letter-spacing:2.984525px;}
.ls36{letter-spacing:2.986362px;}
.ls4a{letter-spacing:2.986714px;}
.ls49{letter-spacing:2.987782px;}
.ls54{letter-spacing:2.988557px;}
.ls8c{letter-spacing:2.988648px;}
.ls5e{letter-spacing:2.989409px;}
.ls21{letter-spacing:2.990525px;}
.ls5b{letter-spacing:2.991954px;}
.ls39{letter-spacing:2.992362px;}
.ls51{letter-spacing:2.992714px;}
.ls4f{letter-spacing:2.993782px;}
.ls5d{letter-spacing:3.156921px;}
.ls62{letter-spacing:3.320172px;}
.ls50{letter-spacing:4.105534px;}
.ls8b{letter-spacing:4.106338px;}
.ls4e{letter-spacing:4.111534px;}
.ls93{letter-spacing:4.844338px;}
.ls94{letter-spacing:4.846200px;}
.ls79{letter-spacing:5.226648px;}
.ls7b{letter-spacing:5.228525px;}
.ls6{letter-spacing:6.433866px;}
.ls72{letter-spacing:7.032538px;}
.ls74{letter-spacing:7.038538px;}
.ls8d{letter-spacing:7.172400px;}
.ls7c{letter-spacing:7.993227px;}
.ls7d{letter-spacing:7.997550px;}
.ls7e{letter-spacing:8.036457px;}
.ls81{letter-spacing:8.040780px;}
.ls3f{letter-spacing:9.199526px;}
.ls40{letter-spacing:9.210557px;}
.ls8{letter-spacing:9.964893px;}
.ls73{letter-spacing:10.022525px;}
.ls71{letter-spacing:10.026648px;}
.ls10{letter-spacing:12.283559px;}
.ls41{letter-spacing:12.289559px;}
.ls1e{letter-spacing:13.278538px;}
.ls20{letter-spacing:13.281031px;}
.ls6c{letter-spacing:13.281299px;}
.ls1c{letter-spacing:13.284538px;}
.ls90{letter-spacing:13.287269px;}
.ls6d{letter-spacing:13.347723px;}
.ls3e{letter-spacing:13.866476px;}
.ls1d{letter-spacing:15.164823px;}
.ls56{letter-spacing:15.356004px;}
.ls17{letter-spacing:15.362004px;}
.ls16{letter-spacing:15.363103px;}
.ls77{letter-spacing:16.146538px;}
.ls59{letter-spacing:16.266648px;}
.ls1b{letter-spacing:16.268525px;}
.ls63{letter-spacing:16.272648px;}
.ls64{letter-spacing:16.274525px;}
.lsa{letter-spacing:16.602538px;}
.ls32{letter-spacing:16.610823px;}
.ls6a{letter-spacing:16.746538px;}
.ls53{letter-spacing:17.287250px;}
.ls95{letter-spacing:17.960245px;}
.ls47{letter-spacing:18.348557px;}
.ls13{letter-spacing:18.366668px;}
.lse{letter-spacing:18.372557px;}
.ls12{letter-spacing:18.373559px;}
.lsf{letter-spacing:18.379559px;}
.ls2{letter-spacing:18.553409px;}
.ls9{letter-spacing:18.746023px;}
.ls19{letter-spacing:18.752023px;}
.ls76{letter-spacing:19.128648px;}
.ls87{letter-spacing:19.169023px;}
.ls24{letter-spacing:19.258363px;}
.ls57{letter-spacing:19.590648px;}
.ls69{letter-spacing:19.737954px;}
.ls42{letter-spacing:19.742004px;}
.ls22{letter-spacing:19.905269px;}
.ls6e{letter-spacing:19.940338px;}
.ls3c{letter-spacing:19.974476px;}
.ls37{letter-spacing:20.038362px;}
.ls99{letter-spacing:20.143250px;}
.ls8e{letter-spacing:20.252023px;}
.ls44{letter-spacing:20.329250px;}
.ls2c{letter-spacing:20.454538px;}
.ls2b{letter-spacing:20.460538px;}
.ls2f{letter-spacing:20.583031px;}
.ls5{letter-spacing:21.160893px;}
.ls31{letter-spacing:21.163866px;}
.ls14{letter-spacing:21.389468px;}
.ls45{letter-spacing:21.390557px;}
.ls86{letter-spacing:21.547250px;}
.ls43{letter-spacing:21.673250px;}
.ls2d{letter-spacing:22.004023px;}
.ls29{letter-spacing:22.034525px;}
.ls28{letter-spacing:22.040525px;}
.ls3{letter-spacing:22.046023px;}
.ls4{letter-spacing:22.052023px;}
.ls89{letter-spacing:22.070023px;}
.ls9b{letter-spacing:22.297250px;}
.ls85{letter-spacing:22.609793px;}
.ls2e{letter-spacing:22.730023px;}
.ls6f{letter-spacing:22.981409px;}
.ls88{letter-spacing:23.087023px;}
.ls70{letter-spacing:23.312172px;}
.ls30{letter-spacing:23.571954px;}
.ls38{letter-spacing:23.703031px;}
.ls23{letter-spacing:23.778538px;}
.ls3d{letter-spacing:24.205569px;}
.ls52{letter-spacing:24.211569px;}
.ls46{letter-spacing:24.249358px;}
.ls3b{letter-spacing:24.255358px;}
.ls33{letter-spacing:24.536823px;}
.ls98{letter-spacing:24.787052px;}
.ls34{letter-spacing:24.794023px;}
.ls25{letter-spacing:25.024363px;}
.ls27{letter-spacing:25.030363px;}
.ls35{letter-spacing:25.647954px;}
.ls2a{letter-spacing:25.882363px;}
.ls84{letter-spacing:26.749250px;}
.ls75{letter-spacing:26.880648px;}
.ls78{letter-spacing:27.164525px;}
.ls3a{letter-spacing:27.640362px;}
.ls83{letter-spacing:27.804557px;}
.lsb{letter-spacing:29.342023px;}
.lsd{letter-spacing:29.348023px;}
.ls92{letter-spacing:29.829030px;}
.lsc{letter-spacing:30.192648px;}
.ls7f{letter-spacing:111.749550px;}
.ls80{letter-spacing:111.788457px;}
.ls65{letter-spacing:329.787954px;}
.ls91{letter-spacing:411.758685px;}
.ls68{letter-spacing:446.345782px;}
.ls61{letter-spacing:508.418525px;}
.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;}
}
.ws6e{word-spacing:-59.775600px;}
.wsd4{word-spacing:-55.293996px;}
.wse7{word-spacing:-47.654765px;}
.wsd2{word-spacing:-39.961452px;}
.ws6f{word-spacing:-38.937826px;}
.ws10a{word-spacing:-29.015076px;}
.ws106{word-spacing:-28.955301px;}
.ws16b{word-spacing:-22.416000px;}
.ws9b{word-spacing:-22.379985px;}
.ws97{word-spacing:-20.459935px;}
.wscd{word-spacing:-18.530761px;}
.wsf8{word-spacing:-16.825116px;}
.ws1f{word-spacing:-16.605662px;}
.ws8e{word-spacing:-15.359443px;}
.wsca{word-spacing:-14.421528px;}
.ws123{word-spacing:-13.055527px;}
.wsf4{word-spacing:-12.017940px;}
.wsd6{word-spacing:-9.253325px;}
.ws49{word-spacing:-3.335478px;}
.wseb{word-spacing:-3.275703px;}
.ws4e{word-spacing:-3.096376px;}
.wsd5{word-spacing:-3.093408px;}
.ws16c{word-spacing:-2.976825px;}
.ws164{word-spacing:-2.878214px;}
.ws162{word-spacing:-2.824416px;}
.ws27{word-spacing:-2.379069px;}
.ws21{word-spacing:-2.319293px;}
.ws1d{word-spacing:-2.259518px;}
.wsf2{word-spacing:-2.199742px;}
.ws18{word-spacing:-2.139966px;}
.ws48{word-spacing:-2.080191px;}
.wscc{word-spacing:-2.071238px;}
.ws62{word-spacing:-1.960640px;}
.wsc3{word-spacing:-1.900910px;}
.wsc4{word-spacing:-1.900864px;}
.ws23{word-spacing:-1.841088px;}
.ws153{word-spacing:-1.601986px;}
.ws41{word-spacing:-1.482435px;}
.ws15c{word-spacing:-1.479456px;}
.ws17{word-spacing:-1.362884px;}
.ws39{word-spacing:-1.243332px;}
.ws16e{word-spacing:-1.183565px;}
.ws154{word-spacing:-1.123781px;}
.ws44{word-spacing:-1.064006px;}
.ws14a{word-spacing:-1.004230px;}
.wsf3{word-spacing:-0.944454px;}
.ws11{word-spacing:-0.941472px;}
.ws65{word-spacing:-0.887674px;}
.ws116{word-spacing:-0.884679px;}
.ws152{word-spacing:-0.765128px;}
.ws4f{word-spacing:-0.705352px;}
.ws9e{word-spacing:-0.645576px;}
.ws15{word-spacing:-0.585801px;}
.ws9a{word-spacing:-0.526025px;}
.ws112{word-spacing:-0.466250px;}
.ws36{word-spacing:-0.406474px;}
.ws140{word-spacing:-0.286923px;}
.wsed{word-spacing:-0.167372px;}
.ws160{word-spacing:-0.134496px;}
.ws3f{word-spacing:-0.107596px;}
.ws15b{word-spacing:-0.071731px;}
.ws20{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws128{word-spacing:-0.045729px;}
.ws99{word-spacing:-0.041843px;}
.wsdf{word-spacing:-0.035866px;}
.ws91{word-spacing:-0.026899px;}
.ws10b{word-spacing:-0.019133px;}
.ws5{word-spacing:0.000000px;}
.ws33{word-spacing:0.011955px;}
.ws38{word-spacing:0.071731px;}
.wsee{word-spacing:0.131506px;}
.ws46{word-spacing:0.251058px;}
.wsfe{word-spacing:0.310833px;}
.ws54{word-spacing:0.370609px;}
.ws56{word-spacing:0.399667px;}
.wsc5{word-spacing:0.430384px;}
.ws52{word-spacing:0.490160px;}
.ws2f{word-spacing:0.669487px;}
.ws50{word-spacing:0.729262px;}
.wsbc{word-spacing:0.789038px;}
.ws53{word-spacing:0.848814px;}
.ws129{word-spacing:1.120352px;}
.wsd{word-spacing:1.156666px;}
.ws146{word-spacing:1.318061px;}
.ws63{word-spacing:1.327018px;}
.ws135{word-spacing:1.329019px;}
.ws167{word-spacing:1.371859px;}
.ws47{word-spacing:1.446570px;}
.wsba{word-spacing:1.566121px;}
.ws11d{word-spacing:1.625896px;}
.wsfd{word-spacing:1.984550px;}
.ws110{word-spacing:2.044326px;}
.ws15d{word-spacing:2.071238px;}
.ws75{word-spacing:2.104101px;}
.ws61{word-spacing:2.163877px;}
.ws111{word-spacing:2.223652px;}
.ws1c{word-spacing:2.283428px;}
.ws2a{word-spacing:2.343204px;}
.ws10d{word-spacing:2.392576px;}
.ws69{word-spacing:2.402979px;}
.ws98{word-spacing:2.433667px;}
.ws3c{word-spacing:2.462755px;}
.wsfb{word-spacing:2.522530px;}
.ws122{word-spacing:2.537940px;}
.wsfc{word-spacing:2.582306px;}
.ws1a{word-spacing:2.642082px;}
.ws22{word-spacing:2.701857px;}
.ws13c{word-spacing:2.770618px;}
.ws141{word-spacing:2.821408px;}
.ws13d{word-spacing:2.824416px;}
.ws37{word-spacing:2.881184px;}
.ws51{word-spacing:2.940960px;}
.ws82{word-spacing:2.960227px;}
.wsd0{word-spacing:2.966187px;}
.wse1{word-spacing:2.966648px;}
.wsdd{word-spacing:2.969829px;}
.wsab{word-spacing:2.970390px;}
.ws13{word-spacing:2.985811px;}
.wsaa{word-spacing:2.992145px;}
.ws95{word-spacing:3.002137px;}
.wsb0{word-spacing:3.002963px;}
.ws8b{word-spacing:3.003892px;}
.ws85{word-spacing:3.006202px;}
.wsa6{word-spacing:3.012142px;}
.ws94{word-spacing:3.015373px;}
.wsae{word-spacing:3.018142px;}
.wsad{word-spacing:3.024856px;}
.ws9{word-spacing:3.039610px;}
.ws8d{word-spacing:3.040660px;}
.wsa8{word-spacing:3.050607px;}
.ws3e{word-spacing:3.120286px;}
.ws12{word-spacing:3.147206px;}
.wsbf{word-spacing:3.180062px;}
.ws8{word-spacing:3.239838px;}
.ws35{word-spacing:3.274130px;}
.ws45{word-spacing:3.278574px;}
.ws114{word-spacing:3.285667px;}
.ws108{word-spacing:3.298576px;}
.ws7{word-spacing:3.299613px;}
.ws104{word-spacing:3.304576px;}
.ws16d{word-spacing:3.309589px;}
.wsea{word-spacing:3.343410px;}
.wse9{word-spacing:3.354235px;}
.ws60{word-spacing:3.359389px;}
.wsec{word-spacing:3.375667px;}
.ws1b{word-spacing:3.478940px;}
.ws133{word-spacing:3.538716px;}
.ws100{word-spacing:3.598491px;}
.wsbd{word-spacing:3.658267px;}
.ws40{word-spacing:3.718042px;}
.ws5d{word-spacing:3.777818px;}
.ws25{word-spacing:3.837594px;}
.wsc2{word-spacing:3.897369px;}
.ws10{word-spacing:3.954182px;}
.wsc1{word-spacing:3.957145px;}
.wsa0{word-spacing:4.076696px;}
.wsf{word-spacing:4.115578px;}
.ws2c{word-spacing:4.196247px;}
.wse{word-spacing:4.223174px;}
.ws24{word-spacing:4.256023px;}
.wsa4{word-spacing:4.315798px;}
.wsdb{word-spacing:4.318518px;}
.wsda{word-spacing:4.333597px;}
.ws117{word-spacing:4.375574px;}
.ws3{word-spacing:4.483200px;}
.ws57{word-spacing:4.491807px;}
.ws5a{word-spacing:4.495125px;}
.ws73{word-spacing:4.508891px;}
.ws163{word-spacing:4.545965px;}
.ws59{word-spacing:4.554901px;}
.ws19{word-spacing:4.614676px;}
.ws12e{word-spacing:4.734228px;}
.wsb5{word-spacing:4.794003px;}
.ws150{word-spacing:4.922554px;}
.ws151{word-spacing:4.976352px;}
.ws42{word-spacing:5.033106px;}
.wsc6{word-spacing:5.092881px;}
.ws29{word-spacing:5.152657px;}
.wsb7{word-spacing:5.272208px;}
.ws68{word-spacing:5.331984px;}
.wsa2{word-spacing:5.391759px;}
.ws118{word-spacing:5.690637px;}
.ws16{word-spacing:5.750413px;}
.ws9d{word-spacing:5.810188px;}
.ws165{word-spacing:5.944723px;}
.ws28{word-spacing:5.989515px;}
.ws3d{word-spacing:6.049291px;}
.ws155{word-spacing:6.109066px;}
.ws101{word-spacing:6.228618px;}
.ws3b{word-spacing:6.288393px;}
.wscb{word-spacing:6.321312px;}
.wsb6{word-spacing:6.348169px;}
.ws4b{word-spacing:6.467720px;}
.ws15f{word-spacing:6.482707px;}
.wsfa{word-spacing:6.536506px;}
.ws13f{word-spacing:6.587271px;}
.ws11b{word-spacing:6.647047px;}
.ws78{word-spacing:6.826374px;}
.wse2{word-spacing:6.859296px;}
.wsb8{word-spacing:6.945925px;}
.wsc7{word-spacing:7.065476px;}
.wsff{word-spacing:7.125252px;}
.ws71{word-spacing:7.185027px;}
.wsc0{word-spacing:7.244803px;}
.ws76{word-spacing:7.304578px;}
.ws15a{word-spacing:7.424130px;}
.ws16a{word-spacing:7.451078px;}
.wsef{word-spacing:7.483905px;}
.wsf1{word-spacing:7.543681px;}
.wsf0{word-spacing:7.557667px;}
.ws159{word-spacing:7.603456px;}
.wsb9{word-spacing:7.663232px;}
.ws2{word-spacing:7.748437px;}
.ws2d{word-spacing:7.782783px;}
.ws6a{word-spacing:7.842559px;}
.ws12f{word-spacing:7.902334px;}
.ws131{word-spacing:7.952834px;}
.ws102{word-spacing:7.962110px;}
.ws26{word-spacing:8.021886px;}
.ws5b{word-spacing:8.081661px;}
.ws12c{word-spacing:8.249215px;}
.ws12d{word-spacing:8.260988px;}
.ws6c{word-spacing:8.367628px;}
.ws70{word-spacing:8.380539px;}
.ws10f{word-spacing:8.440315px;}
.ws6d{word-spacing:8.548618px;}
.ws72{word-spacing:8.559866px;}
.wsc{word-spacing:8.957434px;}
.ws4c{word-spacing:8.978295px;}
.ws79{word-spacing:9.038071px;}
.ws15e{word-spacing:9.060215px;}
.ws34{word-spacing:9.097846px;}
.wsd7{word-spacing:9.145728px;}
.ws67{word-spacing:9.157622px;}
.wsd3{word-spacing:9.181081px;}
.ws156{word-spacing:9.336949px;}
.ws13a{word-spacing:9.387821px;}
.wsf9{word-spacing:9.441619px;}
.ws11f{word-spacing:9.456500px;}
.ws148{word-spacing:9.549216px;}
.ws4d{word-spacing:9.635827px;}
.ws169{word-spacing:9.656813px;}
.ws64{word-spacing:9.815154px;}
.ws2b{word-spacing:10.233583px;}
.ws115{word-spacing:10.293358px;}
.ws32{word-spacing:10.412910px;}
.ws5f{word-spacing:10.490688px;}
.ws7d{word-spacing:10.532461px;}
.ws7c{word-spacing:10.592236px;}
.wsa3{word-spacing:10.771563px;}
.ws157{word-spacing:11.010666px;}
.ws2e{word-spacing:11.608422px;}
.wsbe{word-spacing:11.787748px;}
.ws12a{word-spacing:11.847524px;}
.ws7e{word-spacing:12.206178px;}
.ws84{word-spacing:12.215280px;}
.ws3a{word-spacing:12.385504px;}
.ws139{word-spacing:12.777120px;}
.ws137{word-spacing:12.830918px;}
.ws9f{word-spacing:12.863709px;}
.ws126{word-spacing:14.178424px;}
.ws66{word-spacing:14.405702px;}
.ws7b{word-spacing:14.656977px;}
.ws4a{word-spacing:15.123227px;}
.wsd1{word-spacing:15.297838px;}
.ws14f{word-spacing:15.584233px;}
.ws14d{word-spacing:15.628435px;}
.wsa1{word-spacing:15.969890px;}
.ws1e{word-spacing:16.079636px;}
.ws145{word-spacing:16.677504px;}
.ws161{word-spacing:16.785101px;}
.ws55{word-spacing:16.895062px;}
.ws125{word-spacing:17.925627px;}
.ws168{word-spacing:18.183859px;}
.ws93{word-spacing:18.283872px;}
.ws120{word-spacing:18.299787px;}
.wse0{word-spacing:18.306735px;}
.wsdc{word-spacing:18.310921px;}
.ws90{word-spacing:18.316986px;}
.ws87{word-spacing:18.318119px;}
.ws80{word-spacing:18.323280px;}
.ws8c{word-spacing:18.327228px;}
.wsde{word-spacing:18.333838px;}
.ws8a{word-spacing:18.338483px;}
.ws86{word-spacing:18.339082px;}
.wsa9{word-spacing:18.340710px;}
.ws81{word-spacing:18.344782px;}
.ws89{word-spacing:18.345172px;}
.ws92{word-spacing:18.348136px;}
.ws83{word-spacing:18.356352px;}
.wsb3{word-spacing:18.361405px;}
.wsac{word-spacing:18.366217px;}
.ws30{word-spacing:18.829314px;}
.ws11e{word-spacing:19.433062px;}
.wsb1{word-spacing:19.636416px;}
.wsd8{word-spacing:19.639665px;}
.ws8f{word-spacing:19.690214px;}
.ws88{word-spacing:19.706352px;}
.ws13e{word-spacing:19.723548px;}
.ws11a{word-spacing:19.785890px;}
.ws113{word-spacing:19.787062px;}
.ws96{word-spacing:19.807066px;}
.ws105{word-spacing:19.842852px;}
.ws1{word-spacing:19.845499px;}
.wsbb{word-spacing:19.905275px;}
.ws11c{word-spacing:20.263548px;}
.ws5c{word-spacing:20.267062px;}
.wsaf{word-spacing:20.293102px;}
.ws10e{word-spacing:20.383480px;}
.ws58{word-spacing:21.038575px;}
.ws144{word-spacing:21.088973px;}
.ws109{word-spacing:21.280114px;}
.wsb4{word-spacing:21.361573px;}
.wsb2{word-spacing:21.637102px;}
.ws119{word-spacing:22.217062px;}
.ws166{word-spacing:22.380134px;}
.ws43{word-spacing:22.774504px;}
.ws0{word-spacing:22.834279px;}
.wsa7{word-spacing:24.205423px;}
.ws6b{word-spacing:24.385548px;}
.wsd9{word-spacing:24.404964px;}
.ws132{word-spacing:24.446539px;}
.ws130{word-spacing:24.452539px;}
.ws13b{word-spacing:24.677702px;}
.ws147{word-spacing:24.820011px;}
.ws4{word-spacing:24.854861px;}
.ws9c{word-spacing:25.643732px;}
.ws74{word-spacing:26.755738px;}
.wsce{word-spacing:26.827469px;}
.ws77{word-spacing:26.899020px;}
.ws31{word-spacing:27.795654px;}
.ws138{word-spacing:28.075872px;}
.ws5e{word-spacing:28.082765px;}
.wsa5{word-spacing:28.273859px;}
.ws12b{word-spacing:28.369548px;}
.ws10c{word-spacing:28.938868px;}
.ws107{word-spacing:29.797265px;}
.wsb{word-spacing:29.810644px;}
.ws103{word-spacing:29.830227px;}
.ws14e{word-spacing:30.901872px;}
.ws6{word-spacing:32.192873px;}
.ws127{word-spacing:34.418451px;}
.ws134{word-spacing:37.445062px;}
.ws7f{word-spacing:38.831036px;}
.wse3{word-spacing:39.718134px;}
.wse6{word-spacing:39.729390px;}
.wse5{word-spacing:39.758498px;}
.ws124{word-spacing:40.237512px;}
.wse8{word-spacing:43.818139px;}
.ws14c{word-spacing:45.168363px;}
.ws143{word-spacing:47.338249px;}
.wsf7{word-spacing:49.800960px;}
.wsf5{word-spacing:49.844190px;}
.wsf6{word-spacing:61.862130px;}
.wscf{word-spacing:68.562613px;}
.ws121{word-spacing:68.981653px;}
.ws14{word-spacing:80.554138px;}
.ws158{word-spacing:80.625869px;}
.ws142{word-spacing:81.154886px;}
.wsc9{word-spacing:87.514812px;}
.wsc8{word-spacing:98.849718px;}
.ws14b{word-spacing:111.012998px;}
.ws149{word-spacing:206.936582px;}
.wse4{word-spacing:258.421874px;}
.ws136{word-spacing:518.587080px;}
.ws7a{word-spacing:842.654614px;}
._5{margin-left:-40.312934px;}
._11{margin-left:-33.988630px;}
._26{margin-left:-31.642022px;}
._48{margin-left:-29.648698px;}
._3{margin-left:-11.529675px;}
._25{margin-left:-8.932031px;}
._2{margin-left:-7.810425px;}
._4{margin-left:-6.742733px;}
._7{margin-left:-5.260253px;}
._a{margin-left:-4.244022px;}
._6{margin-left:-2.988826px;}
._0{margin-left:-1.912819px;}
._1{width:1.673717px;}
._8{width:2.845363px;}
._d{width:4.682545px;}
._1a{width:5.810227px;}
._24{width:7.410899px;}
._33{width:11.801074px;}
._16{width:14.350015px;}
._19{width:16.141354px;}
._44{width:17.383108px;}
._9{width:18.480135px;}
._1c{width:19.835384px;}
._23{width:21.556015px;}
._1b{width:22.595177px;}
._10{width:24.627593px;}
._1d{width:26.353893px;}
._1f{width:28.326575px;}
._e{width:29.708473px;}
._c{width:31.397623px;}
._18{width:34.208889px;}
._45{width:35.584813px;}
._1e{width:37.025056px;}
._47{width:38.430215px;}
._27{width:39.867594px;}
._46{width:44.062314px;}
._2d{width:47.202395px;}
._2e{width:48.203484px;}
._36{width:55.533788px;}
._3b{width:62.459942px;}
._f{width:68.562613px;}
._3d{width:70.206912px;}
._21{width:71.683986px;}
._2c{width:75.315070px;}
._17{width:80.625869px;}
._2f{width:84.460798px;}
._22{width:86.771256px;}
._35{width:88.605965px;}
._37{width:99.365645px;}
._2b{width:107.187932px;}
._3e{width:108.457574px;}
._30{width:126.119589px;}
._31{width:131.424111px;}
._28{width:142.996147px;}
._29{width:144.012317px;}
._38{width:148.375987px;}
._3f{width:152.357069px;}
._39{width:154.616602px;}
._20{width:156.527184px;}
._40{width:162.363571px;}
._2a{width:166.699136px;}
._b{width:170.648525px;}
._41{width:176.082163px;}
._15{width:177.455480px;}
._32{width:188.905012px;}
._34{width:196.411992px;}
._14{width:201.143876px;}
._13{width:202.665467px;}
._3c{width:217.500965px;}
._42{width:219.981658px;}
._3a{width:222.241190px;}
._43{width:229.988160px;}
._12{width:255.955712px;}
.fc1{color:rgb(236,0,140);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:17.290800px;}
.fs7{font-size:20.748960px;}
.fs9{font-size:29.887800px;}
.fsc{font-size:30.261000px;}
.fs8{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fsb{font-size:43.230000px;}
.fse{font-size:45.728640px;}
.fsa{font-size:51.876000px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fsd{font-size:60.522000px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y66{bottom:9.950855px;}
.y72{bottom:19.555895px;}
.y61{bottom:19.845516px;}
.ydd{bottom:20.231640px;}
.y108{bottom:28.683105px;}
.y107{bottom:47.358465px;}
.ydb{bottom:51.357240px;}
.y62{bottom:57.984698px;}
.y73{bottom:61.961582px;}
.y67{bottom:67.326053px;}
.ydc{bottom:73.685535px;}
.y154{bottom:79.899847px;}
.y105{bottom:82.839488px;}
.y153{bottom:93.106612px;}
.y63{bottom:96.123880px;}
.y104{bottom:98.823780px;}
.y74{bottom:104.367269px;}
.y17f{bottom:111.014640px;}
.yff{bottom:115.953668px;}
.y64{bottom:134.267385px;}
.y75{bottom:146.768633px;}
.y14f{bottom:172.141860px;}
.y65{bottom:172.406567px;}
.y100{bottom:183.803153px;}
.y180{bottom:215.804160px;}
.yde{bottom:228.448935px;}
.y150{bottom:245.546400px;}
.y155{bottom:247.589018px;}
.y101{bottom:251.652638px;}
.y106{bottom:264.027225px;}
.y2e{bottom:266.956500px;}
.y1ab{bottom:279.909000px;}
.y2d{bottom:284.889000px;}
.yd9{bottom:286.915500px;}
.y1aa{bottom:296.347500px;}
.y2c{bottom:302.821500px;}
.y10e{bottom:302.823000px;}
.yd8{bottom:304.848000px;}
.yb5{bottom:309.573000px;}
.y1a9{bottom:311.715000px;}
.y8c{bottom:311.722500px;}
.y6e{bottom:316.410000px;}
.y17e{bottom:317.788500px;}
.y151{bottom:318.950940px;}
.y102{bottom:319.491315px;}
.y181{bottom:320.582873px;}
.y2b{bottom:320.755500px;}
.yd7{bottom:322.782000px;}
.y1a8{bottom:327.082500px;}
.y132{bottom:329.133000px;}
.y8b{bottom:329.655000px;}
.ye6{bottom:331.897500px;}
.y15e{bottom:334.416000px;}
.y2a{bottom:338.688000px;}
.yd6{bottom:340.714500px;}
.y1a7{bottom:343.521000px;}
.y131{bottom:347.065500px;}
.y8a{bottom:347.587500px;}
.yb4{bottom:349.201500px;}
.y29{bottom:356.620500px;}
.yd5{bottom:358.647000px;}
.y1a6{bottom:359.959500px;}
.y6d{bottom:362.874000px;}
.y130{bottom:364.998000px;}
.y89{bottom:365.520000px;}
.yb3{bottom:367.134000px;}
.y28{bottom:374.553000px;}
.y1a5{bottom:375.327000px;}
.yd4{bottom:376.579500px;}
.y6c{bottom:380.806500px;}
.y15d{bottom:380.953500px;}
.y12f{bottom:382.036500px;}
.ye5{bottom:384.883500px;}
.yb2{bottom:385.066500px;}
.y103{bottom:387.340800px;}
.y1a4{bottom:391.765500px;}
.y152{bottom:392.366288px;}
.y27{bottom:392.485500px;}
.yd3{bottom:394.512000px;}
.y6b{bottom:398.739000px;}
.y15c{bottom:398.886000px;}
.y12e{bottom:399.969000px;}
.yb1{bottom:402.999000px;}
.y17d{bottom:403.873500px;}
.y1a3{bottom:408.202500px;}
.y1c6{bottom:409.131000px;}
.y88{bottom:410.263500px;}
.yfe{bottom:410.418000px;}
.y26{bottom:410.419500px;}
.y4e{bottom:410.592000px;}
.yd2{bottom:412.446000px;}
.y6a{bottom:416.671500px;}
.y15b{bottom:416.820000px;}
.y17c{bottom:420.312000px;}
.yb0{bottom:420.931500px;}
.y1a2{bottom:423.570000px;}
.y182{bottom:425.361585px;}
.y12d{bottom:425.385000px;}
.y87{bottom:428.196000px;}
.y25{bottom:428.352000px;}
.y4d{bottom:428.524500px;}
.yd1{bottom:430.378500px;}
.y69{bottom:434.605500px;}
.y15a{bottom:434.752500px;}
.y17b{bottom:436.750500px;}
.yaf{bottom:438.865500px;}
.y1a1{bottom:440.008500px;}
.yfd{bottom:442.590000px;}
.y12c{bottom:443.317500px;}
.y1c5{bottom:444.996000px;}
.y86{bottom:446.128500px;}
.y24{bottom:446.284500px;}
.yd0{bottom:448.311000px;}
.ye4{bottom:449.824500px;}
.y159{bottom:452.685000px;}
.y17a{bottom:453.189000px;}
.y1a0{bottom:455.376000px;}
.yae{bottom:456.798000px;}
.y4c{bottom:459.282000px;}
.y12b{bottom:461.250000px;}
.y1c4{bottom:462.928500px;}
.y85{bottom:464.062500px;}
.y23{bottom:464.217000px;}
.ycf{bottom:466.243500px;}
.ye3{bottom:467.757000px;}
.y179{bottom:469.626000px;}
.y14e{bottom:470.521500px;}
.y158{bottom:470.959500px;}
.y19f{bottom:471.814500px;}
.yad{bottom:474.730500px;}
.yfc{bottom:475.872000px;}
.y1c3{bottom:480.862500px;}
.y22{bottom:482.149500px;}
.yfb{bottom:482.200500px;}
.yce{bottom:484.176000px;}
.y14d{bottom:484.494225px;}
.ye2{bottom:485.689500px;}
.y178{bottom:486.064500px;}
.y12a{bottom:487.561500px;}
.y19e{bottom:488.253000px;}
.y157{bottom:488.892000px;}
.y68{bottom:489.816000px;}
.yac{bottom:492.663000px;}
.y84{bottom:493.861500px;}
.y4b{bottom:496.015500px;}
.y14c{bottom:498.465675px;}
.y1c2{bottom:498.795000px;}
.y21{bottom:500.082000px;}
.y10d{bottom:500.418000px;}
.y177{bottom:502.503000px;}
.y19d{bottom:503.620500px;}
.ycd{bottom:504.136500px;}
.y156{bottom:506.824500px;}
.y60{bottom:508.516500px;}
.yab{bottom:510.595500px;}
.y14b{bottom:512.438400px;}
.yfa{bottom:516.328500px;}
.y1c1{bottom:516.727500px;}
.y20{bottom:518.016000px;}
.y176{bottom:518.941500px;}
.y129{bottom:519.849000px;}
.y19c{bottom:520.059000px;}
.ycc{bottom:522.069000px;}
.y14a{bottom:526.411125px;}
.y83{bottom:529.638000px;}
.y1c0{bottom:534.660000px;}
.y175{bottom:535.380000px;}
.y19b{bottom:535.426500px;}
.y1f{bottom:535.948500px;}
.ycb{bottom:540.001500px;}
.y149{bottom:540.383850px;}
.ye1{bottom:541.498500px;}
.ya9{bottom:544.156500px;}
.y4a{bottom:544.704000px;}
.yf9{bottom:550.456500px;}
.y19a{bottom:551.865000px;}
.y1bf{bottom:552.592500px;}
.y1e{bottom:553.881000px;}
.y148{bottom:554.356575px;}
.ya8{bottom:554.407500px;}
.yca{bottom:557.934000px;}
.ye0{bottom:557.937000px;}
.y10c{bottom:559.075500px;}
.y174{bottom:559.312500px;}
.y49{bottom:562.638000px;}
.y128{bottom:564.091500px;}
.y199{bottom:567.232500px;}
.y1be{bottom:570.525000px;}
.y1d{bottom:571.813500px;}
.yf8{bottom:572.872500px;}
.yaa{bottom:572.961000px;}
.ydf{bottom:574.374000px;}
.y147{bottom:574.699200px;}
.y10b{bottom:575.514000px;}
.yc9{bottom:575.866500px;}
.y82{bottom:577.369500px;}
.ya7{bottom:579.687000px;}
.y48{bottom:580.570500px;}
.y127{bottom:582.024000px;}
.y198{bottom:583.671000px;}
.y1c{bottom:589.746000px;}
.ya6{bottom:589.936500px;}
.y10a{bottom:591.952500px;}
.y173{bottom:595.239000px;}
.yf7{bottom:595.288500px;}
.y81{bottom:595.302000px;}
.y47{bottom:598.503000px;}
.y197{bottom:599.038500px;}
.y126{bottom:599.958000px;}
.y1bd{bottom:606.391500px;}
.y1b{bottom:607.678500px;}
.y146{bottom:608.094000px;}
.y109{bottom:608.391000px;}
.y80{bottom:613.236000px;}
.y196{bottom:615.477000px;}
.y46{bottom:616.435500px;}
.y125{bottom:617.890500px;}
.yda{bottom:620.701500px;}
.ya5{bottom:622.071000px;}
.y1a{bottom:625.612500px;}
.yf6{bottom:629.416500px;}
.yc8{bottom:630.832500px;}
.y7f{bottom:631.168500px;}
.y45{bottom:634.368000px;}
.y124{bottom:635.823000px;}
.y172{bottom:637.105500px;}
.ya4{bottom:640.003500px;}
.y19{bottom:643.545000px;}
.y195{bottom:644.493000px;}
.yc7{bottom:648.765000px;}
.y7e{bottom:649.101000px;}
.y145{bottom:652.204500px;}
.y44{bottom:652.300500px;}
.y123{bottom:653.755500px;}
.y171{bottom:655.038000px;}
.ya3{bottom:657.936000px;}
.y1bc{bottom:660.189000px;}
.y18{bottom:661.477500px;}
.yc6{bottom:666.697500px;}
.y7d{bottom:667.033500px;}
.y144{bottom:670.137000px;}
.y43{bottom:670.234500px;}
.y122{bottom:676.333500px;}
.y1bb{bottom:678.121500px;}
.ya2{bottom:680.482500px;}
.yc5{bottom:684.630000px;}
.y7c{bottom:684.966000px;}
.y120{bottom:686.584500px;}
.yf5{bottom:687.010500px;}
.y194{bottom:688.030500px;}
.y143{bottom:688.069500px;}
.y42{bottom:688.167000px;}
.ya1{bottom:690.733500px;}
.y121{bottom:692.413500px;}
.y17{bottom:694.803000px;}
.y1ba{bottom:696.055500px;}
.yc4{bottom:702.562500px;}
.y7b{bottom:702.898500px;}
.y193{bottom:705.964500px;}
.y142{bottom:706.002000px;}
.y41{bottom:706.273500px;}
.yf4{bottom:706.566000px;}
.y170{bottom:709.729500px;}
.y1b9{bottom:713.988000px;}
.y5f{bottom:714.679500px;}
.yc3{bottom:720.496500px;}
.y7a{bottom:720.832500px;}
.ya0{bottom:722.392500px;}
.yf3{bottom:723.004500px;}
.y192{bottom:723.897000px;}
.y141{bottom:723.936000px;}
.y40{bottom:724.206000px;}
.y16f{bottom:726.168000px;}
.y11f{bottom:728.259000px;}
.y1b8{bottom:731.920500px;}
.y79{bottom:738.765000px;}
.yf2{bottom:741.252000px;}
.y140{bottom:741.868500px;}
.y3f{bottom:742.138500px;}
.y16{bottom:742.374000px;}
.y16e{bottom:742.606500px;}
.y8{bottom:742.867500px;}
.y5e{bottom:746.061000px;}
.y11e{bottom:746.191500px;}
.y1b7{bottom:749.853000px;}
.y191{bottom:755.479500px;}
.y78{bottom:756.697500px;}
.y15{bottom:758.812500px;}
.y16d{bottom:759.045000px;}
.yf1{bottom:759.184500px;}
.y13f{bottom:759.801000px;}
.y3e{bottom:760.071000px;}
.y7{bottom:763.789500px;}
.y11d{bottom:764.124000px;}
.y1b6{bottom:767.785500px;}
.y9f{bottom:773.530500px;}
.y14{bottom:775.251000px;}
.y16c{bottom:775.483500px;}
.yf0{bottom:775.548000px;}
.y13e{bottom:777.733500px;}
.y3d{bottom:778.003500px;}
.yc2{bottom:778.081500px;}
.y6{bottom:784.711500px;}
.y1b5{bottom:785.719500px;}
.y5d{bottom:790.063500px;}
.y11c{bottom:791.281500px;}
.y13{bottom:791.689500px;}
.y16b{bottom:791.922000px;}
.yef{bottom:791.986500px;}
.y9e{bottom:793.086000px;}
.y13d{bottom:795.666000px;}
.y3c{bottom:795.937500px;}
.yc1{bottom:796.014000px;}
.y190{bottom:799.015500px;}
.y11a{bottom:801.531000px;}
.y1b4{bottom:803.652000px;}
.y77{bottom:805.569000px;}
.y11b{bottom:807.360000px;}
.y5c{bottom:807.996000px;}
.y12{bottom:808.128000px;}
.y16a{bottom:808.359000px;}
.yee{bottom:808.425000px;}
.y9d{bottom:809.524500px;}
.y13c{bottom:813.598500px;}
.y3b{bottom:814.044000px;}
.yc0{bottom:815.575500px;}
.y5{bottom:819.630000px;}
.y1b3{bottom:821.584500px;}
.y76{bottom:822.007500px;}
.y11{bottom:824.566500px;}
.y18f{bottom:824.620500px;}
.yed{bottom:824.863500px;}
.y9c{bottom:825.888000px;}
.y5b{bottom:825.930000px;}
.y3a{bottom:831.976500px;}
.ybf{bottom:832.014000px;}
.y169{bottom:832.293000px;}
.yec{bottom:839.881500px;}
.y71{bottom:840.708000px;}
.y10{bottom:841.005000px;}
.y18e{bottom:841.482000px;}
.y9b{bottom:842.326500px;}
.y119{bottom:843.205500px;}
.y5a{bottom:843.862500px;}
.y13b{bottom:845.388000px;}
.ybe{bottom:847.624500px;}
.yeb{bottom:856.320000px;}
.y4{bottom:856.989000px;}
.y9a{bottom:857.217000px;}
.yf{bottom:857.443500px;}
.y1b2{bottom:857.449500px;}
.y18d{bottom:858.345000px;}
.y118{bottom:861.138000px;}
.y59{bottom:861.795000px;}
.y39{bottom:862.384500px;}
.ybd{bottom:864.063000px;}
.y168{bottom:868.219500px;}
.y99{bottom:873.655500px;}
.y18c{bottom:875.206500px;}
.y58{bottom:879.727500px;}
.y38{bottom:880.318500px;}
.ybc{bottom:880.501500px;}
.y13a{bottom:883.155000px;}
.y167{bottom:884.656500px;}
.y117{bottom:888.054000px;}
.y98{bottom:890.094000px;}
.y18b{bottom:892.068000px;}
.y3{bottom:894.349500px;}
.ybb{bottom:896.940000px;}
.y57{bottom:897.660000px;}
.y115{bottom:898.305000px;}
.y37{bottom:898.425000px;}
.y116{bottom:904.132500px;}
.y97{bottom:906.532500px;}
.y18a{bottom:908.931000px;}
.yba{bottom:911.211000px;}
.y1b1{bottom:911.248500px;}
.ye{bottom:911.665500px;}
.y56{bottom:915.594000px;}
.y166{bottom:919.764000px;}
.y96{bottom:922.969500px;}
.yb9{bottom:927.649500px;}
.yd{bottom:928.104000px;}
.y36{bottom:929.007000px;}
.y139{bottom:932.877000px;}
.y189{bottom:933.463500px;}
.y55{bottom:933.526500px;}
.y165{bottom:936.202500px;}
.y114{bottom:936.336000px;}
.yea{bottom:937.236000px;}
.y95{bottom:939.408000px;}
.yb8{bottom:944.088000px;}
.yc{bottom:944.542500px;}
.y35{bottom:946.939500px;}
.y1b0{bottom:947.113500px;}
.y138{bottom:950.809500px;}
.y188{bottom:951.397500px;}
.y54{bottom:951.459000px;}
.y164{bottom:952.641000px;}
.ye9{bottom:953.674500px;}
.y113{bottom:954.268500px;}
.y94{bottom:955.846500px;}
.yb7{bottom:960.526500px;}
.y34{bottom:964.872000px;}
.y1af{bottom:965.046000px;}
.y137{bottom:968.742000px;}
.y163{bottom:969.078000px;}
.y187{bottom:969.330000px;}
.y53{bottom:969.391500px;}
.ye8{bottom:970.113000px;}
.y93{bottom:972.285000px;}
.yb{bottom:975.862500px;}
.yb6{bottom:976.965000px;}
.y33{bottom:982.806000px;}
.y1ae{bottom:982.978500px;}
.y162{bottom:985.516500px;}
.ye7{bottom:986.550000px;}
.y112{bottom:986.556000px;}
.y136{bottom:987.055500px;}
.y186{bottom:987.262500px;}
.y52{bottom:987.324000px;}
.y92{bottom:988.723500px;}
.ya{bottom:993.795000px;}
.y32{bottom:1000.738500px;}
.y1ad{bottom:1000.912500px;}
.y161{bottom:1001.955000px;}
.y91{bottom:1002.988500px;}
.y111{bottom:1004.490000px;}
.y135{bottom:1004.988000px;}
.y185{bottom:1005.195000px;}
.y51{bottom:1005.256500px;}
.y160{bottom:1018.393500px;}
.y31{bottom:1018.671000px;}
.y1ac{bottom:1018.845000px;}
.y90{bottom:1019.427000px;}
.y110{bottom:1022.422500px;}
.y134{bottom:1022.920500px;}
.y184{bottom:1023.127500px;}
.y50{bottom:1023.190500px;}
.y8f{bottom:1035.865500px;}
.y2{bottom:1036.777500px;}
.y10f{bottom:1040.355000px;}
.y133{bottom:1040.853000px;}
.y183{bottom:1041.060000px;}
.y4f{bottom:1041.123000px;}
.y15f{bottom:1042.326000px;}
.y9{bottom:1045.743000px;}
.y70{bottom:1046.871000px;}
.y8e{bottom:1052.304000px;}
.y30{bottom:1054.710000px;}
.y8d{bottom:1068.742500px;}
.y1{bottom:1072.642500px;}
.y6f{bottom:1078.252500px;}
.y2f{bottom:1111.497000px;}
.hc{height:18.033764px;}
.hd{height:21.640517px;}
.h21{height:34.296480px;}
.h8{height:37.336090px;}
.h7{height:40.348800px;}
.h23{height:41.484266px;}
.h9{height:41.842920px;}
.h3{height:42.141798px;}
.h1d{height:42.799330px;}
.h2{height:44.831700px;}
.h18{height:45.087539px;}
.h19{height:47.638109px;}
.h16{height:49.473619px;}
.h5{height:50.211840px;}
.h13{height:50.272800px;}
.h12{height:50.278800px;}
.ha{height:53.078100px;}
.h22{height:53.798400px;}
.h11{height:54.105047px;}
.h14{height:56.066100px;}
.h6{height:60.254040px;}
.h1c{height:62.765700px;}
.h1f{height:62.985619px;}
.h1a{height:63.122555px;}
.h17{height:67.850100px;}
.h15{height:70.145700px;}
.h20{height:83.803330px;}
.he{height:85.265700px;}
.hf{height:85.271700px;}
.h4{height:86.782500px;}
.h1b{height:100.336903px;}
.h1e{height:101.499024px;}
.hb{height:186.740640px;}
.h10{height:466.884000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:466.851600px;}
.w3{width:466.884000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.394683px;}
.xc{left:9.950855px;}
.x1c{left:14.006520px;}
.x37{left:20.988165px;}
.x27{left:22.533637px;}
.x34{left:24.878865px;}
.x25{left:26.424338px;}
.x1a{left:45.132120px;}
.x10{left:57.898244px;}
.x26{left:61.213680px;}
.xd{left:65.315997px;}
.x19{left:73.923300px;}
.x36{left:120.730583px;}
.x35{left:134.920830px;}
.x38{left:159.097207px;}
.x28{left:174.324975px;}
.x1{left:202.147500px;}
.x3f{left:209.046000px;}
.x32{left:211.501500px;}
.x18{left:213.355500px;}
.x5{left:222.499500px;}
.x3d{left:223.512000px;}
.x9{left:224.563500px;}
.xa{left:227.551500px;}
.x1b{left:238.186493px;}
.x7{left:244.552500px;}
.x33{left:246.079500px;}
.x12{left:247.576500px;}
.x3a{left:250.323000px;}
.x2{left:263.994000px;}
.x1d{left:270.591000px;}
.x3e{left:279.295500px;}
.xf{left:281.227500px;}
.x29{left:283.480725px;}
.x3{left:287.341500px;}
.x22{left:289.975500px;}
.x4{left:292.869000px;}
.x3b{left:294.465000px;}
.xb{left:300.525000px;}
.x39{left:303.074722px;}
.x21{left:309.207000px;}
.x20{left:314.302500px;}
.x6{left:317.610000px;}
.x1f{left:319.378500px;}
.x13{left:329.755500px;}
.x23{left:331.306500px;}
.x2d{left:352.680000px;}
.x8{left:355.804500px;}
.x2a{left:369.205500px;}
.x16{left:376.555500px;}
.x3c{left:383.587500px;}
.x30{left:437.203500px;}
.x11{left:442.642500px;}
.x2b{left:479.899500px;}
.x2e{left:486.400500px;}
.x2c{left:503.595000px;}
.x2f{left:515.109000px;}
.x17{left:520.741500px;}
.x31{left:522.574500px;}
.x14{left:543.724500px;}
.x1e{left:558.292500px;}
.x24{left:581.056500px;}
.x15{left:701.818500px;}
@media print{
.vc{vertical-align:-16.645333pt;}
.v7{vertical-align:-13.280000pt;}
.vb{vertical-align:-9.589333pt;}
.v2{vertical-align:-7.968000pt;}
.v10{vertical-align:-7.032080pt;}
.v9{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.267173pt;}
.va{vertical-align:7.440000pt;}
.v8{vertical-align:8.826667pt;}
.ve{vertical-align:13.136000pt;}
.v14{vertical-align:15.941333pt;}
.vd{vertical-align:17.237333pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:20.314667pt;}
.v6{vertical-align:22.661333pt;}
.v5{vertical-align:27.973333pt;}
.vf{vertical-align:32.416000pt;}
.v4{vertical-align:35.941333pt;}
.v13{vertical-align:63.376000pt;}
.v12{vertical-align:76.512000pt;}
.v15{vertical-align:88.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.000278pt;}
.ls97{letter-spacing:0.000479pt;}
.ls18{letter-spacing:0.000495pt;}
.ls5a{letter-spacing:0.000501pt;}
.ls1a{letter-spacing:0.000576pt;}
.ls55{letter-spacing:0.000693pt;}
.ls5f{letter-spacing:0.000854pt;}
.ls11{letter-spacing:0.000891pt;}
.ls48{letter-spacing:0.001111pt;}
.ls96{letter-spacing:0.001178pt;}
.ls9a{letter-spacing:0.001386pt;}
.ls26{letter-spacing:0.001799pt;}
.ls8a{letter-spacing:0.002557pt;}
.ls7{letter-spacing:0.002694pt;}
.ls1f{letter-spacing:0.002906pt;}
.ls15{letter-spacing:0.003034pt;}
.ls4d{letter-spacing:0.003046pt;}
.ls6b{letter-spacing:0.003310pt;}
.ls67{letter-spacing:0.003514pt;}
.ls4b{letter-spacing:0.004695pt;}
.ls66{letter-spacing:0.004920pt;}
.ls82{letter-spacing:0.030741pt;}
.ls58{letter-spacing:0.196932pt;}
.ls4c{letter-spacing:0.663489pt;}
.ls1{letter-spacing:1.905799pt;}
.ls7a{letter-spacing:1.989812pt;}
.ls8f{letter-spacing:2.651242pt;}
.ls5c{letter-spacing:2.652911pt;}
.ls36{letter-spacing:2.654544pt;}
.ls4a{letter-spacing:2.654857pt;}
.ls49{letter-spacing:2.655806pt;}
.ls54{letter-spacing:2.656495pt;}
.ls8c{letter-spacing:2.656576pt;}
.ls5e{letter-spacing:2.657253pt;}
.ls21{letter-spacing:2.658245pt;}
.ls5b{letter-spacing:2.659514pt;}
.ls39{letter-spacing:2.659878pt;}
.ls51{letter-spacing:2.660190pt;}
.ls4f{letter-spacing:2.661139pt;}
.ls5d{letter-spacing:2.806152pt;}
.ls62{letter-spacing:2.951264pt;}
.ls50{letter-spacing:3.649364pt;}
.ls8b{letter-spacing:3.650079pt;}
.ls4e{letter-spacing:3.654697pt;}
.ls93{letter-spacing:4.306079pt;}
.ls94{letter-spacing:4.307733pt;}
.ls79{letter-spacing:4.645909pt;}
.ls7b{letter-spacing:4.647578pt;}
.ls6{letter-spacing:5.718992pt;}
.ls72{letter-spacing:6.251145pt;}
.ls74{letter-spacing:6.256479pt;}
.ls8d{letter-spacing:6.375467pt;}
.ls7c{letter-spacing:7.105091pt;}
.ls7d{letter-spacing:7.108933pt;}
.ls7e{letter-spacing:7.143517pt;}
.ls81{letter-spacing:7.147360pt;}
.ls3f{letter-spacing:8.177357pt;}
.ls40{letter-spacing:8.187162pt;}
.ls8{letter-spacing:8.857682pt;}
.ls73{letter-spacing:8.908911pt;}
.ls71{letter-spacing:8.912576pt;}
.ls10{letter-spacing:10.918719pt;}
.ls41{letter-spacing:10.924052pt;}
.ls1e{letter-spacing:11.803145pt;}
.ls20{letter-spacing:11.805361pt;}
.ls6c{letter-spacing:11.805599pt;}
.ls1c{letter-spacing:11.808479pt;}
.ls90{letter-spacing:11.810906pt;}
.ls6d{letter-spacing:11.864643pt;}
.ls3e{letter-spacing:12.325757pt;}
.ls1d{letter-spacing:13.479842pt;}
.ls56{letter-spacing:13.649782pt;}
.ls17{letter-spacing:13.655115pt;}
.ls16{letter-spacing:13.656091pt;}
.ls77{letter-spacing:14.352479pt;}
.ls59{letter-spacing:14.459242pt;}
.ls1b{letter-spacing:14.460911pt;}
.ls63{letter-spacing:14.464576pt;}
.ls64{letter-spacing:14.466245pt;}
.lsa{letter-spacing:14.757812pt;}
.ls32{letter-spacing:14.765176pt;}
.ls6a{letter-spacing:14.885812pt;}
.ls53{letter-spacing:15.366444pt;}
.ls95{letter-spacing:15.964662pt;}
.ls47{letter-spacing:16.309828pt;}
.ls13{letter-spacing:16.325927pt;}
.lse{letter-spacing:16.331162pt;}
.ls12{letter-spacing:16.332052pt;}
.lsf{letter-spacing:16.337386pt;}
.ls2{letter-spacing:16.491919pt;}
.ls9{letter-spacing:16.663132pt;}
.ls19{letter-spacing:16.668465pt;}
.ls76{letter-spacing:17.003242pt;}
.ls87{letter-spacing:17.039132pt;}
.ls24{letter-spacing:17.118545pt;}
.ls57{letter-spacing:17.413909pt;}
.ls69{letter-spacing:17.544848pt;}
.ls42{letter-spacing:17.548448pt;}
.ls22{letter-spacing:17.693573pt;}
.ls6e{letter-spacing:17.724745pt;}
.ls3c{letter-spacing:17.755090pt;}
.ls37{letter-spacing:17.811878pt;}
.ls99{letter-spacing:17.905111pt;}
.ls8e{letter-spacing:18.001799pt;}
.ls44{letter-spacing:18.070444pt;}
.ls2c{letter-spacing:18.181812pt;}
.ls2b{letter-spacing:18.187145pt;}
.ls2f{letter-spacing:18.296027pt;}
.ls5{letter-spacing:18.809682pt;}
.ls31{letter-spacing:18.812326pt;}
.ls14{letter-spacing:19.012861pt;}
.ls45{letter-spacing:19.013828pt;}
.ls86{letter-spacing:19.153111pt;}
.ls43{letter-spacing:19.265111pt;}
.ls2d{letter-spacing:19.559132pt;}
.ls29{letter-spacing:19.586245pt;}
.ls28{letter-spacing:19.591578pt;}
.ls3{letter-spacing:19.596465pt;}
.ls4{letter-spacing:19.601799pt;}
.ls89{letter-spacing:19.617799pt;}
.ls9b{letter-spacing:19.819778pt;}
.ls85{letter-spacing:20.097594pt;}
.ls2e{letter-spacing:20.204465pt;}
.ls6f{letter-spacing:20.427919pt;}
.ls88{letter-spacing:20.521798pt;}
.ls70{letter-spacing:20.721931pt;}
.ls30{letter-spacing:20.952848pt;}
.ls38{letter-spacing:21.069361pt;}
.ls23{letter-spacing:21.136479pt;}
.ls3d{letter-spacing:21.516061pt;}
.ls52{letter-spacing:21.521394pt;}
.ls46{letter-spacing:21.554985pt;}
.ls3b{letter-spacing:21.560318pt;}
.ls33{letter-spacing:21.810509pt;}
.ls98{letter-spacing:22.032935pt;}
.ls34{letter-spacing:22.039132pt;}
.ls25{letter-spacing:22.243879pt;}
.ls27{letter-spacing:22.249212pt;}
.ls35{letter-spacing:22.798181pt;}
.ls2a{letter-spacing:23.006545pt;}
.ls84{letter-spacing:23.777111pt;}
.ls75{letter-spacing:23.893909pt;}
.ls78{letter-spacing:24.146245pt;}
.ls3a{letter-spacing:24.569211pt;}
.ls83{letter-spacing:24.715162pt;}
.lsb{letter-spacing:26.081799pt;}
.lsd{letter-spacing:26.087132pt;}
.ls92{letter-spacing:26.514693pt;}
.lsc{letter-spacing:26.837909pt;}
.ls7f{letter-spacing:99.332933pt;}
.ls80{letter-spacing:99.367517pt;}
.ls65{letter-spacing:293.144848pt;}
.ls91{letter-spacing:366.007720pt;}
.ls68{letter-spacing:396.751806pt;}
.ls61{letter-spacing:451.927578pt;}
.ws6e{word-spacing:-53.133867pt;}
.wsd4{word-spacing:-49.150218pt;}
.wse7{word-spacing:-42.359791pt;}
.wsd2{word-spacing:-35.521290pt;}
.ws6f{word-spacing:-34.611401pt;}
.ws10a{word-spacing:-25.791179pt;}
.ws106{word-spacing:-25.738045pt;}
.ws16b{word-spacing:-19.925333pt;}
.ws9b{word-spacing:-19.893320pt;}
.ws97{word-spacing:-18.186609pt;}
.wscd{word-spacing:-16.471787pt;}
.wsf8{word-spacing:-14.955659pt;}
.ws1f{word-spacing:-14.760588pt;}
.ws8e{word-spacing:-13.652838pt;}
.wsca{word-spacing:-12.819136pt;}
.ws123{word-spacing:-11.604913pt;}
.wsf4{word-spacing:-10.682613pt;}
.wsd6{word-spacing:-8.225178pt;}
.ws49{word-spacing:-2.964870pt;}
.wseb{word-spacing:-2.911736pt;}
.ws4e{word-spacing:-2.752334pt;}
.wsd5{word-spacing:-2.749696pt;}
.ws16c{word-spacing:-2.646067pt;}
.ws164{word-spacing:-2.558413pt;}
.ws162{word-spacing:-2.510592pt;}
.ws27{word-spacing:-2.114728pt;}
.ws21{word-spacing:-2.061594pt;}
.ws1d{word-spacing:-2.008460pt;}
.wsf2{word-spacing:-1.955326pt;}
.ws18{word-spacing:-1.902192pt;}
.ws48{word-spacing:-1.849059pt;}
.wscc{word-spacing:-1.841101pt;}
.ws62{word-spacing:-1.742791pt;}
.wsc3{word-spacing:-1.689697pt;}
.wsc4{word-spacing:-1.689657pt;}
.ws23{word-spacing:-1.636523pt;}
.ws153{word-spacing:-1.423988pt;}
.ws41{word-spacing:-1.317720pt;}
.ws15c{word-spacing:-1.315072pt;}
.ws17{word-spacing:-1.211452pt;}
.ws39{word-spacing:-1.105184pt;}
.ws16e{word-spacing:-1.052058pt;}
.ws154{word-spacing:-0.998917pt;}
.ws44{word-spacing:-0.945783pt;}
.ws14a{word-spacing:-0.892649pt;}
.wsf3{word-spacing:-0.839515pt;}
.ws11{word-spacing:-0.836864pt;}
.ws65{word-spacing:-0.789043pt;}
.ws116{word-spacing:-0.786381pt;}
.ws152{word-spacing:-0.680113pt;}
.ws4f{word-spacing:-0.626980pt;}
.ws9e{word-spacing:-0.573846pt;}
.ws15{word-spacing:-0.520712pt;}
.ws9a{word-spacing:-0.467578pt;}
.ws112{word-spacing:-0.414444pt;}
.ws36{word-spacing:-0.361310pt;}
.ws140{word-spacing:-0.255043pt;}
.wsed{word-spacing:-0.148775pt;}
.ws160{word-spacing:-0.119552pt;}
.ws3f{word-spacing:-0.095641pt;}
.ws15b{word-spacing:-0.063761pt;}
.ws20{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws128{word-spacing:-0.040648pt;}
.ws99{word-spacing:-0.037194pt;}
.wsdf{word-spacing:-0.031881pt;}
.ws91{word-spacing:-0.023910pt;}
.ws10b{word-spacing:-0.017007pt;}
.ws5{word-spacing:0.000000pt;}
.ws33{word-spacing:0.010627pt;}
.ws38{word-spacing:0.063761pt;}
.wsee{word-spacing:0.116895pt;}
.ws46{word-spacing:0.223162pt;}
.wsfe{word-spacing:0.276296pt;}
.ws54{word-spacing:0.329430pt;}
.ws56{word-spacing:0.355260pt;}
.wsc5{word-spacing:0.382564pt;}
.ws52{word-spacing:0.435698pt;}
.ws2f{word-spacing:0.595099pt;}
.ws50{word-spacing:0.648233pt;}
.wsbc{word-spacing:0.701367pt;}
.ws53{word-spacing:0.754501pt;}
.ws129{word-spacing:0.995868pt;}
.wsd{word-spacing:1.028147pt;}
.ws146{word-spacing:1.171610pt;}
.ws63{word-spacing:1.179572pt;}
.ws135{word-spacing:1.181351pt;}
.ws167{word-spacing:1.219430pt;}
.ws47{word-spacing:1.285840pt;}
.wsba{word-spacing:1.392107pt;}
.ws11d{word-spacing:1.445241pt;}
.wsfd{word-spacing:1.764044pt;}
.ws110{word-spacing:1.817178pt;}
.ws15d{word-spacing:1.841101pt;}
.ws75{word-spacing:1.870312pt;}
.ws61{word-spacing:1.923446pt;}
.ws111{word-spacing:1.976580pt;}
.ws1c{word-spacing:2.029714pt;}
.ws2a{word-spacing:2.082848pt;}
.ws10d{word-spacing:2.126734pt;}
.ws69{word-spacing:2.135981pt;}
.ws98{word-spacing:2.163260pt;}
.ws3c{word-spacing:2.189115pt;}
.wsfb{word-spacing:2.242249pt;}
.ws122{word-spacing:2.255946pt;}
.wsfc{word-spacing:2.295383pt;}
.ws1a{word-spacing:2.348517pt;}
.ws22{word-spacing:2.401651pt;}
.ws13c{word-spacing:2.462771pt;}
.ws141{word-spacing:2.507919pt;}
.ws13d{word-spacing:2.510592pt;}
.ws37{word-spacing:2.561052pt;}
.ws51{word-spacing:2.614186pt;}
.ws82{word-spacing:2.631313pt;}
.wsd0{word-spacing:2.636611pt;}
.wse1{word-spacing:2.637020pt;}
.wsdd{word-spacing:2.639848pt;}
.wsab{word-spacing:2.640346pt;}
.ws13{word-spacing:2.654054pt;}
.wsaa{word-spacing:2.659685pt;}
.ws95{word-spacing:2.668566pt;}
.wsb0{word-spacing:2.669300pt;}
.ws8b{word-spacing:2.670126pt;}
.ws85{word-spacing:2.672179pt;}
.wsa6{word-spacing:2.677460pt;}
.ws94{word-spacing:2.680332pt;}
.wsae{word-spacing:2.682793pt;}
.wsad{word-spacing:2.688761pt;}
.ws9{word-spacing:2.701875pt;}
.ws8d{word-spacing:2.702809pt;}
.wsa8{word-spacing:2.711651pt;}
.ws3e{word-spacing:2.773588pt;}
.ws12{word-spacing:2.797517pt;}
.wsbf{word-spacing:2.826722pt;}
.ws8{word-spacing:2.879856pt;}
.ws35{word-spacing:2.910338pt;}
.ws45{word-spacing:2.914288pt;}
.ws114{word-spacing:2.920593pt;}
.ws108{word-spacing:2.932067pt;}
.ws7{word-spacing:2.932989pt;}
.ws104{word-spacing:2.937401pt;}
.ws16d{word-spacing:2.941857pt;}
.wsea{word-spacing:2.971920pt;}
.wse9{word-spacing:2.981543pt;}
.ws60{word-spacing:2.986123pt;}
.wsec{word-spacing:3.000593pt;}
.ws1b{word-spacing:3.092391pt;}
.ws133{word-spacing:3.145525pt;}
.ws100{word-spacing:3.198659pt;}
.wsbd{word-spacing:3.251793pt;}
.ws40{word-spacing:3.304927pt;}
.ws5d{word-spacing:3.358060pt;}
.ws25{word-spacing:3.411194pt;}
.wsc2{word-spacing:3.464328pt;}
.ws10{word-spacing:3.514829pt;}
.wsc1{word-spacing:3.517462pt;}
.wsa0{word-spacing:3.623730pt;}
.wsf{word-spacing:3.658291pt;}
.ws2c{word-spacing:3.729997pt;}
.wse{word-spacing:3.753933pt;}
.ws24{word-spacing:3.783131pt;}
.wsa4{word-spacing:3.836265pt;}
.wsdb{word-spacing:3.838682pt;}
.wsda{word-spacing:3.852087pt;}
.ws117{word-spacing:3.889399pt;}
.ws3{word-spacing:3.985067pt;}
.ws57{word-spacing:3.992718pt;}
.ws5a{word-spacing:3.995667pt;}
.ws73{word-spacing:4.007903pt;}
.ws163{word-spacing:4.040858pt;}
.ws59{word-spacing:4.048801pt;}
.ws19{word-spacing:4.101935pt;}
.ws12e{word-spacing:4.208202pt;}
.wsb5{word-spacing:4.261336pt;}
.ws150{word-spacing:4.375603pt;}
.ws151{word-spacing:4.423424pt;}
.ws42{word-spacing:4.473872pt;}
.wsc6{word-spacing:4.527005pt;}
.ws29{word-spacing:4.580139pt;}
.wsb7{word-spacing:4.686407pt;}
.ws68{word-spacing:4.739541pt;}
.wsa2{word-spacing:4.792675pt;}
.ws118{word-spacing:5.058344pt;}
.ws16{word-spacing:5.111478pt;}
.ws9d{word-spacing:5.164612pt;}
.ws165{word-spacing:5.284198pt;}
.ws28{word-spacing:5.324013pt;}
.ws3d{word-spacing:5.377147pt;}
.ws155{word-spacing:5.430281pt;}
.ws101{word-spacing:5.536549pt;}
.ws3b{word-spacing:5.589683pt;}
.wscb{word-spacing:5.618944pt;}
.wsb6{word-spacing:5.642817pt;}
.ws4b{word-spacing:5.749084pt;}
.ws15f{word-spacing:5.762406pt;}
.wsfa{word-spacing:5.810227pt;}
.ws13f{word-spacing:5.855352pt;}
.ws11b{word-spacing:5.908486pt;}
.ws78{word-spacing:6.067888pt;}
.wse2{word-spacing:6.097152pt;}
.wsb8{word-spacing:6.174155pt;}
.wsc7{word-spacing:6.280423pt;}
.wsff{word-spacing:6.333557pt;}
.ws71{word-spacing:6.386691pt;}
.wsc0{word-spacing:6.439825pt;}
.ws76{word-spacing:6.492959pt;}
.ws15a{word-spacing:6.599226pt;}
.ws16a{word-spacing:6.623181pt;}
.wsef{word-spacing:6.652360pt;}
.wsf1{word-spacing:6.705494pt;}
.wsf0{word-spacing:6.717926pt;}
.ws159{word-spacing:6.758628pt;}
.wsb9{word-spacing:6.811762pt;}
.ws2{word-spacing:6.887500pt;}
.ws2d{word-spacing:6.918029pt;}
.ws6a{word-spacing:6.971163pt;}
.ws12f{word-spacing:7.024297pt;}
.ws131{word-spacing:7.069186pt;}
.ws102{word-spacing:7.077431pt;}
.ws26{word-spacing:7.130565pt;}
.ws5b{word-spacing:7.183699pt;}
.ws12c{word-spacing:7.332636pt;}
.ws12d{word-spacing:7.343100pt;}
.ws6c{word-spacing:7.437892pt;}
.ws70{word-spacing:7.449368pt;}
.ws10f{word-spacing:7.502502pt;}
.ws6d{word-spacing:7.598772pt;}
.ws72{word-spacing:7.608770pt;}
.wsc{word-spacing:7.962163pt;}
.ws4c{word-spacing:7.980707pt;}
.ws79{word-spacing:8.033841pt;}
.ws15e{word-spacing:8.053524pt;}
.ws34{word-spacing:8.086975pt;}
.wsd7{word-spacing:8.129536pt;}
.ws67{word-spacing:8.140108pt;}
.wsd3{word-spacing:8.160961pt;}
.ws156{word-spacing:8.299510pt;}
.ws13a{word-spacing:8.344730pt;}
.wsf9{word-spacing:8.392550pt;}
.ws11f{word-spacing:8.405778pt;}
.ws148{word-spacing:8.488192pt;}
.ws4d{word-spacing:8.565179pt;}
.ws169{word-spacing:8.583834pt;}
.ws64{word-spacing:8.724581pt;}
.ws2b{word-spacing:9.096518pt;}
.ws115{word-spacing:9.149652pt;}
.ws32{word-spacing:9.255920pt;}
.ws5f{word-spacing:9.325056pt;}
.ws7d{word-spacing:9.362187pt;}
.ws7c{word-spacing:9.415321pt;}
.wsa3{word-spacing:9.574723pt;}
.ws157{word-spacing:9.787258pt;}
.ws2e{word-spacing:10.318597pt;}
.wsbe{word-spacing:10.477999pt;}
.ws12a{word-spacing:10.531132pt;}
.ws7e{word-spacing:10.849936pt;}
.ws84{word-spacing:10.858027pt;}
.ws3a{word-spacing:11.009337pt;}
.ws139{word-spacing:11.357440pt;}
.ws137{word-spacing:11.405261pt;}
.ws9f{word-spacing:11.434408pt;}
.ws126{word-spacing:12.603044pt;}
.ws66{word-spacing:12.805069pt;}
.ws7b{word-spacing:13.028424pt;}
.ws4a{word-spacing:13.442868pt;}
.wsd1{word-spacing:13.598078pt;}
.ws14f{word-spacing:13.852652pt;}
.ws14d{word-spacing:13.891942pt;}
.wsa1{word-spacing:14.195458pt;}
.ws1e{word-spacing:14.293010pt;}
.ws145{word-spacing:14.824448pt;}
.ws161{word-spacing:14.920090pt;}
.ws55{word-spacing:15.017833pt;}
.ws125{word-spacing:15.933891pt;}
.ws168{word-spacing:16.163430pt;}
.ws93{word-spacing:16.252331pt;}
.ws120{word-spacing:16.266477pt;}
.wse0{word-spacing:16.272654pt;}
.wsdc{word-spacing:16.276374pt;}
.ws90{word-spacing:16.281766pt;}
.ws87{word-spacing:16.282772pt;}
.ws80{word-spacing:16.287360pt;}
.ws8c{word-spacing:16.290869pt;}
.wsde{word-spacing:16.296745pt;}
.ws8a{word-spacing:16.300873pt;}
.ws86{word-spacing:16.301406pt;}
.wsa9{word-spacing:16.302853pt;}
.ws81{word-spacing:16.306473pt;}
.ws89{word-spacing:16.306819pt;}
.ws92{word-spacing:16.309455pt;}
.ws83{word-spacing:16.316757pt;}
.wsb3{word-spacing:16.321249pt;}
.wsac{word-spacing:16.325526pt;}
.ws30{word-spacing:16.737168pt;}
.ws11e{word-spacing:17.273833pt;}
.wsb1{word-spacing:17.454592pt;}
.wsd8{word-spacing:17.457480pt;}
.ws8f{word-spacing:17.502413pt;}
.ws88{word-spacing:17.516757pt;}
.ws13e{word-spacing:17.532043pt;}
.ws11a{word-spacing:17.587458pt;}
.ws113{word-spacing:17.588499pt;}
.ws96{word-spacing:17.606281pt;}
.ws105{word-spacing:17.638091pt;}
.ws1{word-spacing:17.640444pt;}
.wsbb{word-spacing:17.693578pt;}
.ws11c{word-spacing:18.012043pt;}
.ws5c{word-spacing:18.015166pt;}
.wsaf{word-spacing:18.038313pt;}
.ws10e{word-spacing:18.118649pt;}
.ws58{word-spacing:18.700956pt;}
.ws144{word-spacing:18.745754pt;}
.ws109{word-spacing:18.915657pt;}
.wsb4{word-spacing:18.988065pt;}
.wsb2{word-spacing:19.232980pt;}
.ws119{word-spacing:19.748499pt;}
.ws166{word-spacing:19.893453pt;}
.ws43{word-spacing:20.244003pt;}
.ws0{word-spacing:20.297137pt;}
.wsa7{word-spacing:21.515931pt;}
.ws6b{word-spacing:21.676043pt;}
.wsd9{word-spacing:21.693302pt;}
.ws132{word-spacing:21.730257pt;}
.ws130{word-spacing:21.735590pt;}
.ws13b{word-spacing:21.935735pt;}
.ws147{word-spacing:22.062232pt;}
.ws4{word-spacing:22.093210pt;}
.ws9c{word-spacing:22.794429pt;}
.ws74{word-spacing:23.782878pt;}
.wsce{word-spacing:23.846639pt;}
.ws77{word-spacing:23.910240pt;}
.ws31{word-spacing:24.707248pt;}
.ws138{word-spacing:24.956331pt;}
.ws5e{word-spacing:24.962458pt;}
.wsa5{word-spacing:25.132319pt;}
.ws12b{word-spacing:25.217376pt;}
.ws10c{word-spacing:25.723438pt;}
.ws107{word-spacing:26.486458pt;}
.wsb{word-spacing:26.498350pt;}
.ws103{word-spacing:26.515757pt;}
.ws14e{word-spacing:27.468331pt;}
.ws6{word-spacing:28.615887pt;}
.ws127{word-spacing:30.594178pt;}
.ws134{word-spacing:33.284499pt;}
.ws7f{word-spacing:34.516477pt;}
.wse3{word-spacing:35.305008pt;}
.wse6{word-spacing:35.315013pt;}
.wse5{word-spacing:35.340887pt;}
.ws124{word-spacing:35.766677pt;}
.wse8{word-spacing:38.949457pt;}
.ws14c{word-spacing:40.149656pt;}
.ws143{word-spacing:42.078444pt;}
.wsf7{word-spacing:44.267520pt;}
.wsf5{word-spacing:44.305947pt;}
.wsf6{word-spacing:54.988560pt;}
.wscf{word-spacing:60.944545pt;}
.ws121{word-spacing:61.317025pt;}
.ws14{word-spacing:71.603678pt;}
.ws158{word-spacing:71.667439pt;}
.ws142{word-spacing:72.137677pt;}
.wsc9{word-spacing:77.790944pt;}
.wsc8{word-spacing:87.866416pt;}
.ws14b{word-spacing:98.678221pt;}
.ws149{word-spacing:183.943629pt;}
.wse4{word-spacing:229.708332pt;}
.ws136{word-spacing:460.966293pt;}
.ws7a{word-spacing:749.026324pt;}
._5{margin-left:-35.833719pt;}
._11{margin-left:-30.212116pt;}
._26{margin-left:-28.126242pt;}
._48{margin-left:-26.354398pt;}
._3{margin-left:-10.248600pt;}
._25{margin-left:-7.939583pt;}
._2{margin-left:-6.942600pt;}
._4{margin-left:-5.993540pt;}
._7{margin-left:-4.675780pt;}
._a{margin-left:-3.772464pt;}
._6{margin-left:-2.656734pt;}
._0{margin-left:-1.700284pt;}
._1{width:1.487748pt;}
._8{width:2.529212pt;}
._d{width:4.162262pt;}
._1a{width:5.164646pt;}
._24{width:6.587466pt;}
._33{width:10.489843pt;}
._16{width:12.755569pt;}
._19{width:14.347870pt;}
._44{width:15.451651pt;}
._9{width:16.426787pt;}
._1c{width:17.631452pt;}
._23{width:19.160902pt;}
._1b{width:20.084602pt;}
._10{width:21.891194pt;}
._1d{width:23.425683pt;}
._1f{width:25.179178pt;}
._e{width:26.407532pt;}
._c{width:27.908998pt;}
._18{width:30.407901pt;}
._45{width:31.630945pt;}
._1e{width:32.911161pt;}
._47{width:34.160191pt;}
._27{width:35.437862pt;}
._46{width:39.166502pt;}
._2d{width:41.957684pt;}
._2e{width:42.847542pt;}
._36{width:49.363367pt;}
._3b{width:55.519949pt;}
._f{width:60.944545pt;}
._3d{width:62.406144pt;}
._21{width:63.719099pt;}
._2c{width:66.946729pt;}
._17{width:71.667439pt;}
._2f{width:75.076265pt;}
._22{width:77.130005pt;}
._35{width:78.760858pt;}
._37{width:88.325018pt;}
._2b{width:95.278162pt;}
._3e{width:96.406733pt;}
._30{width:112.106301pt;}
._31{width:116.821432pt;}
._28{width:127.107686pt;}
._29{width:128.010948pt;}
._38{width:131.889766pt;}
._3f{width:135.428506pt;}
._39{width:137.436979pt;}
._20{width:139.135275pt;}
._40{width:144.323174pt;}
._2a{width:148.177009pt;}
._b{width:151.687578pt;}
._41{width:156.517478pt;}
._15{width:157.738205pt;}
._32{width:167.915566pt;}
._34{width:174.588437pt;}
._14{width:178.794557pt;}
._13{width:180.147082pt;}
._3c{width:193.334191pt;}
._42{width:195.539251pt;}
._3a{width:197.547725pt;}
._43{width:204.433920pt;}
._12{width:227.516189pt;}
.fs6{font-size:15.369600pt;}
.fs7{font-size:18.443520pt;}
.fs9{font-size:26.566933pt;}
.fsc{font-size:26.898667pt;}
.fs8{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fsb{font-size:38.426667pt;}
.fse{font-size:40.647680pt;}
.fsa{font-size:46.112000pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fsd{font-size:53.797333pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:8.845205pt;}
.y72{bottom:17.383018pt;}
.y61{bottom:17.640458pt;}
.ydd{bottom:17.983680pt;}
.y108{bottom:25.496093pt;}
.y107{bottom:42.096413pt;}
.ydb{bottom:45.650880pt;}
.y62{bottom:51.541954pt;}
.y73{bottom:55.076962pt;}
.y67{bottom:59.845380pt;}
.ydc{bottom:65.498253pt;}
.y154{bottom:71.022087pt;}
.y105{bottom:73.635100pt;}
.y153{bottom:82.761433pt;}
.y63{bottom:85.443449pt;}
.y104{bottom:87.843360pt;}
.y74{bottom:92.770906pt;}
.y17f{bottom:98.679680pt;}
.yff{bottom:103.069927pt;}
.y64{bottom:119.348786pt;}
.y75{bottom:130.461007pt;}
.y14f{bottom:153.014987pt;}
.y65{bottom:153.250282pt;}
.y100{bottom:163.380580pt;}
.y180{bottom:191.825920pt;}
.yde{bottom:203.065720pt;}
.y150{bottom:218.263467pt;}
.y155{bottom:220.079127pt;}
.y101{bottom:223.691233pt;}
.y106{bottom:234.690867pt;}
.y2e{bottom:237.294667pt;}
.y1ab{bottom:248.808000pt;}
.y2d{bottom:253.234667pt;}
.yd9{bottom:255.036000pt;}
.y1aa{bottom:263.420000pt;}
.y2c{bottom:269.174667pt;}
.y10e{bottom:269.176000pt;}
.yd8{bottom:270.976000pt;}
.yb5{bottom:275.176000pt;}
.y1a9{bottom:277.080000pt;}
.y8c{bottom:277.086667pt;}
.y6e{bottom:281.253333pt;}
.y17e{bottom:282.478667pt;}
.y151{bottom:283.511947pt;}
.y102{bottom:283.992280pt;}
.y181{bottom:284.962553pt;}
.y2b{bottom:285.116000pt;}
.yd7{bottom:286.917333pt;}
.y1a8{bottom:290.740000pt;}
.y132{bottom:292.562667pt;}
.y8b{bottom:293.026667pt;}
.ye6{bottom:295.020000pt;}
.y15e{bottom:297.258667pt;}
.y2a{bottom:301.056000pt;}
.yd6{bottom:302.857333pt;}
.y1a7{bottom:305.352000pt;}
.y131{bottom:308.502667pt;}
.y8a{bottom:308.966667pt;}
.yb4{bottom:310.401333pt;}
.y29{bottom:316.996000pt;}
.yd5{bottom:318.797333pt;}
.y1a6{bottom:319.964000pt;}
.y6d{bottom:322.554667pt;}
.y130{bottom:324.442667pt;}
.y89{bottom:324.906667pt;}
.yb3{bottom:326.341333pt;}
.y28{bottom:332.936000pt;}
.y1a5{bottom:333.624000pt;}
.yd4{bottom:334.737333pt;}
.y6c{bottom:338.494667pt;}
.y15d{bottom:338.625333pt;}
.y12f{bottom:339.588000pt;}
.ye5{bottom:342.118667pt;}
.yb2{bottom:342.281333pt;}
.y103{bottom:344.302933pt;}
.y1a4{bottom:348.236000pt;}
.y152{bottom:348.770033pt;}
.y27{bottom:348.876000pt;}
.yd3{bottom:350.677333pt;}
.y6b{bottom:354.434667pt;}
.y15c{bottom:354.565333pt;}
.y12e{bottom:355.528000pt;}
.yb1{bottom:358.221333pt;}
.y17d{bottom:358.998667pt;}
.y1a3{bottom:362.846667pt;}
.y1c6{bottom:363.672000pt;}
.y88{bottom:364.678667pt;}
.yfe{bottom:364.816000pt;}
.y26{bottom:364.817333pt;}
.y4e{bottom:364.970667pt;}
.yd2{bottom:366.618667pt;}
.y6a{bottom:370.374667pt;}
.y15b{bottom:370.506667pt;}
.y17c{bottom:373.610667pt;}
.yb0{bottom:374.161333pt;}
.y1a2{bottom:376.506667pt;}
.y182{bottom:378.099187pt;}
.y12d{bottom:378.120000pt;}
.y87{bottom:380.618667pt;}
.y25{bottom:380.757333pt;}
.y4d{bottom:380.910667pt;}
.yd1{bottom:382.558667pt;}
.y69{bottom:386.316000pt;}
.y15a{bottom:386.446667pt;}
.y17b{bottom:388.222667pt;}
.yaf{bottom:390.102667pt;}
.y1a1{bottom:391.118667pt;}
.yfd{bottom:393.413333pt;}
.y12c{bottom:394.060000pt;}
.y1c5{bottom:395.552000pt;}
.y86{bottom:396.558667pt;}
.y24{bottom:396.697333pt;}
.yd0{bottom:398.498667pt;}
.ye4{bottom:399.844000pt;}
.y159{bottom:402.386667pt;}
.y17a{bottom:402.834667pt;}
.y1a0{bottom:404.778667pt;}
.yae{bottom:406.042667pt;}
.y4c{bottom:408.250667pt;}
.y12b{bottom:410.000000pt;}
.y1c4{bottom:411.492000pt;}
.y85{bottom:412.500000pt;}
.y23{bottom:412.637333pt;}
.ycf{bottom:414.438667pt;}
.ye3{bottom:415.784000pt;}
.y179{bottom:417.445333pt;}
.y14e{bottom:418.241333pt;}
.y158{bottom:418.630667pt;}
.y19f{bottom:419.390667pt;}
.yad{bottom:421.982667pt;}
.yfc{bottom:422.997333pt;}
.y1c3{bottom:427.433333pt;}
.y22{bottom:428.577333pt;}
.yfb{bottom:428.622667pt;}
.yce{bottom:430.378667pt;}
.y14d{bottom:430.661533pt;}
.ye2{bottom:431.724000pt;}
.y178{bottom:432.057333pt;}
.y12a{bottom:433.388000pt;}
.y19e{bottom:434.002667pt;}
.y157{bottom:434.570667pt;}
.y68{bottom:435.392000pt;}
.yac{bottom:437.922667pt;}
.y84{bottom:438.988000pt;}
.y4b{bottom:440.902667pt;}
.y14c{bottom:443.080600pt;}
.y1c2{bottom:443.373333pt;}
.y21{bottom:444.517333pt;}
.y10d{bottom:444.816000pt;}
.y177{bottom:446.669333pt;}
.y19d{bottom:447.662667pt;}
.ycd{bottom:448.121333pt;}
.y156{bottom:450.510667pt;}
.y60{bottom:452.014667pt;}
.yab{bottom:453.862667pt;}
.y14b{bottom:455.500800pt;}
.yfa{bottom:458.958667pt;}
.y1c1{bottom:459.313333pt;}
.y20{bottom:460.458667pt;}
.y176{bottom:461.281333pt;}
.y129{bottom:462.088000pt;}
.y19c{bottom:462.274667pt;}
.ycc{bottom:464.061333pt;}
.y14a{bottom:467.921000pt;}
.y83{bottom:470.789333pt;}
.y1c0{bottom:475.253333pt;}
.y175{bottom:475.893333pt;}
.y19b{bottom:475.934667pt;}
.y1f{bottom:476.398667pt;}
.ycb{bottom:480.001333pt;}
.y149{bottom:480.341200pt;}
.ye1{bottom:481.332000pt;}
.ya9{bottom:483.694667pt;}
.y4a{bottom:484.181333pt;}
.yf9{bottom:489.294667pt;}
.y19a{bottom:490.546667pt;}
.y1bf{bottom:491.193333pt;}
.y1e{bottom:492.338667pt;}
.y148{bottom:492.761400pt;}
.ya8{bottom:492.806667pt;}
.yca{bottom:495.941333pt;}
.ye0{bottom:495.944000pt;}
.y10c{bottom:496.956000pt;}
.y174{bottom:497.166667pt;}
.y49{bottom:500.122667pt;}
.y128{bottom:501.414667pt;}
.y199{bottom:504.206667pt;}
.y1be{bottom:507.133333pt;}
.y1d{bottom:508.278667pt;}
.yf8{bottom:509.220000pt;}
.yaa{bottom:509.298667pt;}
.ydf{bottom:510.554667pt;}
.y147{bottom:510.843733pt;}
.y10b{bottom:511.568000pt;}
.yc9{bottom:511.881333pt;}
.y82{bottom:513.217333pt;}
.ya7{bottom:515.277333pt;}
.y48{bottom:516.062667pt;}
.y127{bottom:517.354667pt;}
.y198{bottom:518.818667pt;}
.y1c{bottom:524.218667pt;}
.ya6{bottom:524.388000pt;}
.y10a{bottom:526.180000pt;}
.y173{bottom:529.101333pt;}
.yf7{bottom:529.145333pt;}
.y81{bottom:529.157333pt;}
.y47{bottom:532.002667pt;}
.y197{bottom:532.478667pt;}
.y126{bottom:533.296000pt;}
.y1bd{bottom:539.014667pt;}
.y1b{bottom:540.158667pt;}
.y146{bottom:540.528000pt;}
.y109{bottom:540.792000pt;}
.y80{bottom:545.098667pt;}
.y196{bottom:547.090667pt;}
.y46{bottom:547.942667pt;}
.y125{bottom:549.236000pt;}
.yda{bottom:551.734667pt;}
.ya5{bottom:552.952000pt;}
.y1a{bottom:556.100000pt;}
.yf6{bottom:559.481333pt;}
.yc8{bottom:560.740000pt;}
.y7f{bottom:561.038667pt;}
.y45{bottom:563.882667pt;}
.y124{bottom:565.176000pt;}
.y172{bottom:566.316000pt;}
.ya4{bottom:568.892000pt;}
.y19{bottom:572.040000pt;}
.y195{bottom:572.882667pt;}
.yc7{bottom:576.680000pt;}
.y7e{bottom:576.978667pt;}
.y145{bottom:579.737333pt;}
.y44{bottom:579.822667pt;}
.y123{bottom:581.116000pt;}
.y171{bottom:582.256000pt;}
.ya3{bottom:584.832000pt;}
.y1bc{bottom:586.834667pt;}
.y18{bottom:587.980000pt;}
.yc6{bottom:592.620000pt;}
.y7d{bottom:592.918667pt;}
.y144{bottom:595.677333pt;}
.y43{bottom:595.764000pt;}
.y122{bottom:601.185333pt;}
.y1bb{bottom:602.774667pt;}
.ya2{bottom:604.873333pt;}
.yc5{bottom:608.560000pt;}
.y7c{bottom:608.858667pt;}
.y120{bottom:610.297333pt;}
.yf5{bottom:610.676000pt;}
.y194{bottom:611.582667pt;}
.y143{bottom:611.617333pt;}
.y42{bottom:611.704000pt;}
.ya1{bottom:613.985333pt;}
.y121{bottom:615.478667pt;}
.y17{bottom:617.602667pt;}
.y1ba{bottom:618.716000pt;}
.yc4{bottom:624.500000pt;}
.y7b{bottom:624.798667pt;}
.y193{bottom:627.524000pt;}
.y142{bottom:627.557333pt;}
.y41{bottom:627.798667pt;}
.yf4{bottom:628.058667pt;}
.y170{bottom:630.870667pt;}
.y1b9{bottom:634.656000pt;}
.y5f{bottom:635.270667pt;}
.yc3{bottom:640.441333pt;}
.y7a{bottom:640.740000pt;}
.ya0{bottom:642.126667pt;}
.yf3{bottom:642.670667pt;}
.y192{bottom:643.464000pt;}
.y141{bottom:643.498667pt;}
.y40{bottom:643.738667pt;}
.y16f{bottom:645.482667pt;}
.y11f{bottom:647.341333pt;}
.y1b8{bottom:650.596000pt;}
.y79{bottom:656.680000pt;}
.yf2{bottom:658.890667pt;}
.y140{bottom:659.438667pt;}
.y3f{bottom:659.678667pt;}
.y16{bottom:659.888000pt;}
.y16e{bottom:660.094667pt;}
.y8{bottom:660.326667pt;}
.y5e{bottom:663.165333pt;}
.y11e{bottom:663.281333pt;}
.y1b7{bottom:666.536000pt;}
.y191{bottom:671.537333pt;}
.y78{bottom:672.620000pt;}
.y15{bottom:674.500000pt;}
.y16d{bottom:674.706667pt;}
.yf1{bottom:674.830667pt;}
.y13f{bottom:675.378667pt;}
.y3e{bottom:675.618667pt;}
.y7{bottom:678.924000pt;}
.y11d{bottom:679.221333pt;}
.y1b6{bottom:682.476000pt;}
.y9f{bottom:687.582667pt;}
.y14{bottom:689.112000pt;}
.y16c{bottom:689.318667pt;}
.yf0{bottom:689.376000pt;}
.y13e{bottom:691.318667pt;}
.y3d{bottom:691.558667pt;}
.yc2{bottom:691.628000pt;}
.y6{bottom:697.521333pt;}
.y1b5{bottom:698.417333pt;}
.y5d{bottom:702.278667pt;}
.y11c{bottom:703.361333pt;}
.y13{bottom:703.724000pt;}
.y16b{bottom:703.930667pt;}
.yef{bottom:703.988000pt;}
.y9e{bottom:704.965333pt;}
.y13d{bottom:707.258667pt;}
.y3c{bottom:707.500000pt;}
.yc1{bottom:707.568000pt;}
.y190{bottom:710.236000pt;}
.y11a{bottom:712.472000pt;}
.y1b4{bottom:714.357333pt;}
.y77{bottom:716.061333pt;}
.y11b{bottom:717.653333pt;}
.y5c{bottom:718.218667pt;}
.y12{bottom:718.336000pt;}
.y16a{bottom:718.541333pt;}
.yee{bottom:718.600000pt;}
.y9d{bottom:719.577333pt;}
.y13c{bottom:723.198667pt;}
.y3b{bottom:723.594667pt;}
.yc0{bottom:724.956000pt;}
.y5{bottom:728.560000pt;}
.y1b3{bottom:730.297333pt;}
.y76{bottom:730.673333pt;}
.y11{bottom:732.948000pt;}
.y18f{bottom:732.996000pt;}
.yed{bottom:733.212000pt;}
.y9c{bottom:734.122667pt;}
.y5b{bottom:734.160000pt;}
.y3a{bottom:739.534667pt;}
.ybf{bottom:739.568000pt;}
.y169{bottom:739.816000pt;}
.yec{bottom:746.561333pt;}
.y71{bottom:747.296000pt;}
.y10{bottom:747.560000pt;}
.y18e{bottom:747.984000pt;}
.y9b{bottom:748.734667pt;}
.y119{bottom:749.516000pt;}
.y5a{bottom:750.100000pt;}
.y13b{bottom:751.456000pt;}
.ybe{bottom:753.444000pt;}
.yeb{bottom:761.173333pt;}
.y4{bottom:761.768000pt;}
.y9a{bottom:761.970667pt;}
.yf{bottom:762.172000pt;}
.y1b2{bottom:762.177333pt;}
.y18d{bottom:762.973333pt;}
.y118{bottom:765.456000pt;}
.y59{bottom:766.040000pt;}
.y39{bottom:766.564000pt;}
.ybd{bottom:768.056000pt;}
.y168{bottom:771.750667pt;}
.y99{bottom:776.582667pt;}
.y18c{bottom:777.961333pt;}
.y58{bottom:781.980000pt;}
.y38{bottom:782.505333pt;}
.ybc{bottom:782.668000pt;}
.y13a{bottom:785.026667pt;}
.y167{bottom:786.361333pt;}
.y117{bottom:789.381333pt;}
.y98{bottom:791.194667pt;}
.y18b{bottom:792.949333pt;}
.y3{bottom:794.977333pt;}
.ybb{bottom:797.280000pt;}
.y57{bottom:797.920000pt;}
.y115{bottom:798.493333pt;}
.y37{bottom:798.600000pt;}
.y116{bottom:803.673333pt;}
.y97{bottom:805.806667pt;}
.y18a{bottom:807.938667pt;}
.yba{bottom:809.965333pt;}
.y1b1{bottom:809.998667pt;}
.ye{bottom:810.369333pt;}
.y56{bottom:813.861333pt;}
.y166{bottom:817.568000pt;}
.y96{bottom:820.417333pt;}
.yb9{bottom:824.577333pt;}
.yd{bottom:824.981333pt;}
.y36{bottom:825.784000pt;}
.y139{bottom:829.224000pt;}
.y189{bottom:829.745333pt;}
.y55{bottom:829.801333pt;}
.y165{bottom:832.180000pt;}
.y114{bottom:832.298667pt;}
.yea{bottom:833.098667pt;}
.y95{bottom:835.029333pt;}
.yb8{bottom:839.189333pt;}
.yc{bottom:839.593333pt;}
.y35{bottom:841.724000pt;}
.y1b0{bottom:841.878667pt;}
.y138{bottom:845.164000pt;}
.y188{bottom:845.686667pt;}
.y54{bottom:845.741333pt;}
.y164{bottom:846.792000pt;}
.ye9{bottom:847.710667pt;}
.y113{bottom:848.238667pt;}
.y94{bottom:849.641333pt;}
.yb7{bottom:853.801333pt;}
.y34{bottom:857.664000pt;}
.y1af{bottom:857.818667pt;}
.y137{bottom:861.104000pt;}
.y163{bottom:861.402667pt;}
.y187{bottom:861.626667pt;}
.y53{bottom:861.681333pt;}
.ye8{bottom:862.322667pt;}
.y93{bottom:864.253333pt;}
.yb{bottom:867.433333pt;}
.yb6{bottom:868.413333pt;}
.y33{bottom:873.605333pt;}
.y1ae{bottom:873.758667pt;}
.y162{bottom:876.014667pt;}
.ye7{bottom:876.933333pt;}
.y112{bottom:876.938667pt;}
.y136{bottom:877.382667pt;}
.y186{bottom:877.566667pt;}
.y52{bottom:877.621333pt;}
.y92{bottom:878.865333pt;}
.ya{bottom:883.373333pt;}
.y32{bottom:889.545333pt;}
.y1ad{bottom:889.700000pt;}
.y161{bottom:890.626667pt;}
.y91{bottom:891.545333pt;}
.y111{bottom:892.880000pt;}
.y135{bottom:893.322667pt;}
.y185{bottom:893.506667pt;}
.y51{bottom:893.561333pt;}
.y160{bottom:905.238667pt;}
.y31{bottom:905.485333pt;}
.y1ac{bottom:905.640000pt;}
.y90{bottom:906.157333pt;}
.y110{bottom:908.820000pt;}
.y134{bottom:909.262667pt;}
.y184{bottom:909.446667pt;}
.y50{bottom:909.502667pt;}
.y8f{bottom:920.769333pt;}
.y2{bottom:921.580000pt;}
.y10f{bottom:924.760000pt;}
.y133{bottom:925.202667pt;}
.y183{bottom:925.386667pt;}
.y4f{bottom:925.442667pt;}
.y15f{bottom:926.512000pt;}
.y9{bottom:929.549333pt;}
.y70{bottom:930.552000pt;}
.y8e{bottom:935.381333pt;}
.y30{bottom:937.520000pt;}
.y8d{bottom:949.993333pt;}
.y1{bottom:953.460000pt;}
.y6f{bottom:958.446667pt;}
.y2f{bottom:987.997333pt;}
.hc{height:16.030013pt;}
.hd{height:19.236015pt;}
.h21{height:30.485760pt;}
.h8{height:33.187635pt;}
.h7{height:35.865600pt;}
.h23{height:36.874903pt;}
.h9{height:37.193707pt;}
.h3{height:37.459376pt;}
.h1d{height:38.043849pt;}
.h2{height:39.850400pt;}
.h18{height:40.077813pt;}
.h19{height:42.344986pt;}
.h16{height:43.976550pt;}
.h5{height:44.632747pt;}
.h13{height:44.686933pt;}
.h12{height:44.692267pt;}
.ha{height:47.180533pt;}
.h22{height:47.820800pt;}
.h11{height:48.093375pt;}
.h14{height:49.836533pt;}
.h6{height:53.559147pt;}
.h1c{height:55.791733pt;}
.h1f{height:55.987217pt;}
.h1a{height:56.108938pt;}
.h17{height:60.311200pt;}
.h15{height:62.351733pt;}
.h20{height:74.491849pt;}
.he{height:75.791733pt;}
.hf{height:75.797067pt;}
.h4{height:77.140000pt;}
.h1b{height:89.188358pt;}
.h1e{height:90.221355pt;}
.hb{height:165.991680pt;}
.h10{height:415.008000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:414.979200pt;}
.w3{width:415.008000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.461941pt;}
.xc{left:8.845205pt;}
.x1c{left:12.450240pt;}
.x37{left:18.656147pt;}
.x27{left:20.029900pt;}
.x34{left:22.114547pt;}
.x25{left:23.488300pt;}
.x1a{left:40.117440pt;}
.x10{left:51.465106pt;}
.x26{left:54.412160pt;}
.xd{left:58.058664pt;}
.x19{left:65.709600pt;}
.x36{left:107.316073pt;}
.x35{left:119.929627pt;}
.x38{left:141.419740pt;}
.x28{left:154.955533pt;}
.x1{left:179.686667pt;}
.x3f{left:185.818667pt;}
.x32{left:188.001333pt;}
.x18{left:189.649333pt;}
.x5{left:197.777333pt;}
.x3d{left:198.677333pt;}
.x9{left:199.612000pt;}
.xa{left:202.268000pt;}
.x1b{left:211.721327pt;}
.x7{left:217.380000pt;}
.x33{left:218.737333pt;}
.x12{left:220.068000pt;}
.x3a{left:222.509333pt;}
.x2{left:234.661333pt;}
.x1d{left:240.525333pt;}
.x3e{left:248.262667pt;}
.xf{left:249.980000pt;}
.x29{left:251.982867pt;}
.x3{left:255.414667pt;}
.x22{left:257.756000pt;}
.x4{left:260.328000pt;}
.x3b{left:261.746667pt;}
.xb{left:267.133333pt;}
.x39{left:269.399753pt;}
.x21{left:274.850667pt;}
.x20{left:279.380000pt;}
.x6{left:282.320000pt;}
.x1f{left:283.892000pt;}
.x13{left:293.116000pt;}
.x23{left:294.494667pt;}
.x2d{left:313.493333pt;}
.x8{left:316.270667pt;}
.x2a{left:328.182667pt;}
.x16{left:334.716000pt;}
.x3c{left:340.966667pt;}
.x30{left:388.625333pt;}
.x11{left:393.460000pt;}
.x2b{left:426.577333pt;}
.x2e{left:432.356000pt;}
.x2c{left:447.640000pt;}
.x2f{left:457.874667pt;}
.x17{left:462.881333pt;}
.x31{left:464.510667pt;}
.x14{left:483.310667pt;}
.x1e{left:496.260000pt;}
.x24{left:516.494667pt;}
.x15{left:623.838667pt;}
}




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