
    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_d3e1b2639c615418ce114f62.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.967000;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_cc498508456f8922d6939c2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_3cb454e5b898625a2d5c6528.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.530000;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_72136674b0af14fc9aecfc51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_32186becee11a7d0c5460c44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_944beab3612070de991ad48d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727000;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_d22216f2e4590864c9f7ea82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.737000;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_d52a99add0d8af1e65d2120a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_69fd5e15cec30f940495ecde.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010000;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_6e295ada509ad1beb203bebb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.554000;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_b557b5e1139a775a02b145b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_a9cf0ede5905f80574c26437.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.226000;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_f466e1f27dcc915f394e9d0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_13dce582ee43376fa8db810d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861328;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_abb8d407eab35ed92299f412.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_1f2ba4a0f59b0eb639786b98.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2bfe632a5d33035b8bd4d1f3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861328;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_abb8d407eab35ed92299f412.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_3d62abdfb78c86b48a846cca.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5512d38e0aec2dfe1cb5470d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.861328;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_abb8d407eab35ed92299f412.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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_49114adcbdaff79734d3db60.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8e3c60bb1bde641ffa01953e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.861328;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_abb8d407eab35ed92299f412.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_db2a08a2b8892f7c52c96f3d.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6447038446e9203aa7e9e496.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.861328;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_abb8d407eab35ed92299f412.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-29.886000px;}
.v10{vertical-align:-28.320000px;}
.v5{vertical-align:-16.362000px;}
.v11{vertical-align:-14.940000px;}
.vd{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.164000px;}
.v1{vertical-align:2.478000px;}
.v8{vertical-align:7.266000px;}
.v9{vertical-align:16.164000px;}
.vc{vertical-align:18.408000px;}
.v6{vertical-align:23.634000px;}
.va{vertical-align:27.030000px;}
.vb{vertical-align:30.162000px;}
.v2{vertical-align:32.724000px;}
.vf{vertical-align:38.880000px;}
.ve{vertical-align:51.318000px;}
.v7{vertical-align:56.358000px;}
.lsd7{letter-spacing:-0.022832px;}
.lsd3{letter-spacing:-0.017385px;}
.ls3{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000768px;}
.ls7e{letter-spacing:0.001080px;}
.ls82{letter-spacing:0.001398px;}
.ls8d{letter-spacing:0.001512px;}
.lsde{letter-spacing:0.001716px;}
.ls24{letter-spacing:0.001788px;}
.ls8{letter-spacing:0.002076px;}
.ls83{letter-spacing:0.002988px;}
.ls80{letter-spacing:0.003330px;}
.ls87{letter-spacing:0.003960px;}
.ls88{letter-spacing:0.004212px;}
.ls8b{letter-spacing:0.005646px;}
.lsd5{letter-spacing:0.010251px;}
.lsc9{letter-spacing:0.022042px;}
.lsc3{letter-spacing:0.026366px;}
.lsd4{letter-spacing:0.043771px;}
.lscd{letter-spacing:0.044541px;}
.lsc8{letter-spacing:0.056473px;}
.lsd6{letter-spacing:0.058495px;}
.lsc4{letter-spacing:0.067549px;}
.ls33{letter-spacing:1.960140px;}
.ls1c{letter-spacing:2.983980px;}
.ls1a{letter-spacing:2.984340px;}
.ls2{letter-spacing:2.984736px;}
.ls8c{letter-spacing:2.985960px;}
.ls1{letter-spacing:2.986080px;}
.lsca{letter-spacing:2.986428px;}
.lscf{letter-spacing:2.986560px;}
.lsdc{letter-spacing:2.986632px;}
.ls7{letter-spacing:2.986800px;}
.lsdf{letter-spacing:2.987316px;}
.lsdd{letter-spacing:2.988000px;}
.lsc{letter-spacing:2.988720px;}
.lsd8{letter-spacing:2.989824px;}
.ls1d{letter-spacing:2.989980px;}
.ls17{letter-spacing:2.990340px;}
.lsb4{letter-spacing:2.990736px;}
.ls92{letter-spacing:2.991960px;}
.ls0{letter-spacing:2.992080px;}
.lsce{letter-spacing:2.992428px;}
.lsd2{letter-spacing:2.992560px;}
.ls1e{letter-spacing:2.992800px;}
.lsba{letter-spacing:6.664284px;}
.ls84{letter-spacing:6.905238px;}
.ls86{letter-spacing:6.911238px;}
.lsd9{letter-spacing:7.212120px;}
.lsc5{letter-spacing:7.218120px;}
.ls70{letter-spacing:7.248384px;}
.ls61{letter-spacing:7.272384px;}
.ls7d{letter-spacing:7.818600px;}
.lsb6{letter-spacing:9.503484px;}
.ls30{letter-spacing:9.877968px;}
.ls25{letter-spacing:10.066080px;}
.ls4{letter-spacing:10.405812px;}
.ls35{letter-spacing:10.411812px;}
.ls9{letter-spacing:10.908384px;}
.ls2c{letter-spacing:10.914384px;}
.lsa{letter-spacing:11.340384px;}
.ls76{letter-spacing:11.580384px;}
.ls77{letter-spacing:11.694384px;}
.ls78{letter-spacing:12.030384px;}
.lsa1{letter-spacing:12.180384px;}
.ls68{letter-spacing:12.756384px;}
.ls79{letter-spacing:12.888384px;}
.lsc1{letter-spacing:12.952428px;}
.ls18{letter-spacing:13.893060px;}
.ls8a{letter-spacing:13.894800px;}
.lsb{letter-spacing:13.898340px;}
.ls19{letter-spacing:13.899060px;}
.lsa6{letter-spacing:13.962384px;}
.ls67{letter-spacing:14.016384px;}
.lsa0{letter-spacing:15.171960px;}
.ls58{letter-spacing:15.310188px;}
.lsb9{letter-spacing:15.884736px;}
.lsa5{letter-spacing:16.945980px;}
.ls39{letter-spacing:17.197980px;}
.ls94{letter-spacing:17.365980px;}
.ls1b{letter-spacing:17.599980px;}
.ls16{letter-spacing:17.695980px;}
.lscb{letter-spacing:17.906736px;}
.ls60{letter-spacing:18.191460px;}
.lsb7{letter-spacing:18.572736px;}
.lsb5{letter-spacing:19.088736px;}
.ls5c{letter-spacing:19.348080px;}
.lsaa{letter-spacing:19.441980px;}
.lsa8{letter-spacing:19.444080px;}
.lsa9{letter-spacing:19.444800px;}
.ls59{letter-spacing:19.460808px;}
.ls7b{letter-spacing:19.513980px;}
.lsbc{letter-spacing:19.604736px;}
.lsb1{letter-spacing:19.789980px;}
.ls34{letter-spacing:19.887078px;}
.lsdb{letter-spacing:19.991316px;}
.ls53{letter-spacing:20.362080px;}
.ls7c{letter-spacing:20.422080px;}
.ls51{letter-spacing:20.587980px;}
.ls52{letter-spacing:20.590080px;}
.lsd0{letter-spacing:20.687316px;}
.lsd1{letter-spacing:20.693316px;}
.lsbe{letter-spacing:20.768736px;}
.lsc0{letter-spacing:20.936736px;}
.ls9f{letter-spacing:20.941980px;}
.ls4e{letter-spacing:21.175308px;}
.ls6{letter-spacing:21.184080px;}
.ls29{letter-spacing:21.184800px;}
.ls1f{letter-spacing:21.187980px;}
.ls5b{letter-spacing:21.220080px;}
.ls3b{letter-spacing:21.313980px;}
.ls3a{letter-spacing:21.316800px;}
.ls5{letter-spacing:21.442080px;}
.lsb3{letter-spacing:21.638736px;}
.ls69{letter-spacing:21.655980px;}
.ls45{letter-spacing:21.679980px;}
.ls46{letter-spacing:21.682800px;}
.lsda{letter-spacing:21.784932px;}
.ls2a{letter-spacing:21.841980px;}
.ls4b{letter-spacing:21.844800px;}
.ls6e{letter-spacing:21.925980px;}
.ls41{letter-spacing:21.961980px;}
.ls40{letter-spacing:21.964800px;}
.ls6a{letter-spacing:21.979980px;}
.ls56{letter-spacing:22.006080px;}
.ls55{letter-spacing:22.060080px;}
.ls54{letter-spacing:22.063980px;}
.ls38{letter-spacing:22.123980px;}
.ls14{letter-spacing:22.174080px;}
.ls5a{letter-spacing:22.408080px;}
.lsa7{letter-spacing:22.501980px;}
.ls5e{letter-spacing:22.672080px;}
.ls23{letter-spacing:22.710384px;}
.ls50{letter-spacing:22.753764px;}
.ls5f{letter-spacing:22.756866px;}
.ls7a{letter-spacing:23.185980px;}
.ls20{letter-spacing:23.215980px;}
.ls21{letter-spacing:23.218080px;}
.lsbb{letter-spacing:23.240736px;}
.ls15{letter-spacing:23.242080px;}
.ls36{letter-spacing:23.248080px;}
.ls3e{letter-spacing:23.518080px;}
.ls10{letter-spacing:23.524080px;}
.ls5d{letter-spacing:23.638080px;}
.lsd{letter-spacing:23.744076px;}
.lsae{letter-spacing:23.815980px;}
.lsaf{letter-spacing:23.818080px;}
.lsc6{letter-spacing:23.832120px;}
.lsac{letter-spacing:23.982648px;}
.ls4c{letter-spacing:24.145980px;}
.ls4d{letter-spacing:24.148080px;}
.ls42{letter-spacing:24.238800px;}
.ls44{letter-spacing:24.241980px;}
.ls43{letter-spacing:24.244800px;}
.ls27{letter-spacing:24.529980px;}
.lsab{letter-spacing:24.610080px;}
.ls93{letter-spacing:24.706080px;}
.lsf{letter-spacing:24.727980px;}
.ls6c{letter-spacing:24.811980px;}
.ls6d{letter-spacing:24.814800px;}
.ls2f{letter-spacing:24.828384px;}
.ls9d{letter-spacing:24.871980px;}
.lsa2{letter-spacing:25.012800px;}
.ls9a{letter-spacing:25.075980px;}
.ls3f{letter-spacing:25.363980px;}
.ls11{letter-spacing:25.390080px;}
.ls2b{letter-spacing:25.636800px;}
.ls26{letter-spacing:25.699980px;}
.ls22{letter-spacing:25.705980px;}
.ls4f{letter-spacing:25.732080px;}
.ls8f{letter-spacing:25.851960px;}
.lsb2{letter-spacing:26.095980px;}
.ls31{letter-spacing:26.137980px;}
.ls32{letter-spacing:26.302080px;}
.ls98{letter-spacing:26.374080px;}
.ls9c{letter-spacing:26.425980px;}
.ls73{letter-spacing:26.440800px;}
.ls2d{letter-spacing:26.467980px;}
.lse{letter-spacing:26.731980px;}
.ls57{letter-spacing:27.010080px;}
.ls71{letter-spacing:27.274800px;}
.ls90{letter-spacing:27.404076px;}
.ls2e{letter-spacing:27.823980px;}
.ls99{letter-spacing:28.054080px;}
.ls65{letter-spacing:28.144080px;}
.ls72{letter-spacing:28.210800px;}
.ls9b{letter-spacing:28.285980px;}
.lsb0{letter-spacing:28.405980px;}
.ls49{letter-spacing:28.531980px;}
.ls4a{letter-spacing:28.534800px;}
.ls28{letter-spacing:28.615980px;}
.ls6b{letter-spacing:28.975980px;}
.ls3c{letter-spacing:29.068800px;}
.ls6f{letter-spacing:29.095980px;}
.ls7f{letter-spacing:29.120076px;}
.lsad{letter-spacing:29.146080px;}
.ls48{letter-spacing:29.146800px;}
.ls47{letter-spacing:29.152800px;}
.ls9e{letter-spacing:29.875980px;}
.ls75{letter-spacing:30.265980px;}
.ls74{letter-spacing:30.271980px;}
.lsa4{letter-spacing:30.352800px;}
.ls91{letter-spacing:30.391980px;}
.lsa3{letter-spacing:31.603980px;}
.ls96{letter-spacing:31.642080px;}
.ls37{letter-spacing:31.789980px;}
.ls3d{letter-spacing:31.849980px;}
.ls81{letter-spacing:32.107980px;}
.ls66{letter-spacing:32.896800px;}
.lsb8{letter-spacing:33.194736px;}
.lsbf{letter-spacing:33.968736px;}
.lsc2{letter-spacing:36.044736px;}
.ls12{letter-spacing:36.652080px;}
.ls95{letter-spacing:36.658080px;}
.ls64{letter-spacing:38.191980px;}
.ls97{letter-spacing:38.722080px;}
.lsbd{letter-spacing:42.314736px;}
.ls13{letter-spacing:60.712080px;}
.ls62{letter-spacing:96.058080px;}
.ls85{letter-spacing:173.068800px;}
.ls89{letter-spacing:211.414800px;}
.ls8e{letter-spacing:267.142800px;}
.lscc{letter-spacing:517.996832px;}
.lsc7{letter-spacing:619.590181px;}
.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;}
}
.ws16e{word-spacing:-0.158193px;}
.ws176{word-spacing:-0.132255px;}
.wsf{word-spacing:-0.123978px;}
.ws168{word-spacing:-0.115797px;}
.ws18d{word-spacing:-0.100277px;}
.ws16f{word-spacing:-0.096810px;}
.ws177{word-spacing:-0.076356px;}
.ws18a{word-spacing:-0.075037px;}
.wsc{word-spacing:-0.065454px;}
.ws2{word-spacing:-0.059778px;}
.ws57{word-spacing:-0.047820px;}
.ws171{word-spacing:-0.041844px;}
.ws18c{word-spacing:-0.010251px;}
.ws14{word-spacing:0.000000px;}
.ws189{word-spacing:0.017385px;}
.ws190{word-spacing:0.022832px;}
.ws17b{word-spacing:9.893292px;}
.ws181{word-spacing:9.899946px;}
.ws183{word-spacing:9.923148px;}
.ws23{word-spacing:10.799910px;}
.ws109{word-spacing:10.826340px;}
.ws82{word-spacing:10.829274px;}
.ws108{word-spacing:10.829340px;}
.wsa9{word-spacing:10.831866px;}
.ws90{word-spacing:10.837302px;}
.ws64{word-spacing:10.838214px;}
.ws9f{word-spacing:10.843062px;}
.wsb2{word-spacing:10.844082px;}
.ws6a{word-spacing:10.844214px;}
.wsb6{word-spacing:10.845870px;}
.ws10c{word-spacing:10.860486px;}
.ws59{word-spacing:10.865364px;}
.wsa7{word-spacing:10.877328px;}
.ws103{word-spacing:12.108990px;}
.ws12f{word-spacing:12.852270px;}
.ws3{word-spacing:13.246140px;}
.ws145{word-spacing:13.330494px;}
.ws11a{word-spacing:13.629384px;}
.ws18f{word-spacing:13.748940px;}
.ws18e{word-spacing:13.750938px;}
.ws14b{word-spacing:13.808718px;}
.ws27{word-spacing:13.846560px;}
.wsd1{word-spacing:13.848840px;}
.ws6d{word-spacing:13.850220px;}
.ws6f{word-spacing:13.850280px;}
.wsd0{word-spacing:13.853040px;}
.wsf4{word-spacing:13.894200px;}
.wsf3{word-spacing:13.900200px;}
.ws80{word-spacing:13.941702px;}
.ws15c{word-spacing:13.988052px;}
.ws95{word-spacing:14.138064px;}
.ws29{word-spacing:14.278560px;}
.wsfa{word-spacing:14.334426px;}
.ws129{word-spacing:14.346720px;}
.wsf9{word-spacing:14.399880px;}
.ws174{word-spacing:14.466276px;}
.ws173{word-spacing:14.498358px;}
.wse4{word-spacing:14.522220px;}
.ws164{word-spacing:14.526054px;}
.ws1a{word-spacing:14.530788px;}
.ws154{word-spacing:14.585832px;}
.ws20{word-spacing:14.596242px;}
.wse8{word-spacing:14.638560px;}
.ws11c{word-spacing:14.645610px;}
.ws51{word-spacing:14.661696px;}
.ws113{word-spacing:14.727150px;}
.ws54{word-spacing:14.792604px;}
.ws162{word-spacing:14.824944px;}
.ws117{word-spacing:14.884722px;}
.ws98{word-spacing:14.923512px;}
.ws161{word-spacing:14.944500px;}
.wse9{word-spacing:14.962560px;}
.ws81{word-spacing:14.988966px;}
.ws12c{word-spacing:15.004278px;}
.ws170{word-spacing:15.034098px;}
.ws53{word-spacing:15.054420px;}
.ws12d{word-spacing:15.064056px;}
.ws101{word-spacing:15.119874px;}
.ws11d{word-spacing:15.123834px;}
.ws153{word-spacing:15.243390px;}
.wsac{word-spacing:15.250782px;}
.ws137{word-spacing:15.303168px;}
.ws41{word-spacing:15.316236px;}
.ws172{word-spacing:15.362946px;}
.ws10b{word-spacing:15.447144px;}
.ws126{word-spacing:15.482502px;}
.ws4d{word-spacing:15.512598px;}
.ws125{word-spacing:15.513654px;}
.ws127{word-spacing:15.542280px;}
.wsdd{word-spacing:15.578052px;}
.ws49{word-spacing:15.643506px;}
.wsc3{word-spacing:15.701040px;}
.wsc4{word-spacing:15.702840px;}
.wsce{word-spacing:15.708960px;}
.wseb{word-spacing:15.826560px;}
.ws12{word-spacing:15.900948px;}
.wsb1{word-spacing:15.905322px;}
.ws121{word-spacing:16.020504px;}
.ws122{word-spacing:16.080282px;}
.ws8e{word-spacing:16.101684px;}
.ws134{word-spacing:16.140060px;}
.ws50{word-spacing:16.167138px;}
.ws87{word-spacing:16.232592px;}
.ws84{word-spacing:16.298046px;}
.wsa3{word-spacing:16.363500px;}
.ws1c{word-spacing:16.428954px;}
.ws163{word-spacing:16.438950px;}
.wsf2{word-spacing:16.494408px;}
.ws13{word-spacing:16.498728px;}
.ws0{word-spacing:16.558506px;}
.ws18b{word-spacing:16.558938px;}
.wsd5{word-spacing:16.559862px;}
.ws130{word-spacing:16.678062px;}
.wsee{word-spacing:16.690770px;}
.ws166{word-spacing:16.737840px;}
.ws111{word-spacing:16.756224px;}
.wsfc{word-spacing:16.821678px;}
.ws156{word-spacing:16.857396px;}
.wsfb{word-spacing:16.887132px;}
.ws193{word-spacing:16.917174px;}
.ws60{word-spacing:16.952586px;}
.wsc2{word-spacing:16.956840px;}
.ws8d{word-spacing:17.018040px;}
.ws4b{word-spacing:17.083494px;}
.ws138{word-spacing:17.156286px;}
.wsd8{word-spacing:17.214402px;}
.ws135{word-spacing:17.275842px;}
.wsa6{word-spacing:17.279856px;}
.wsda{word-spacing:17.345310px;}
.wsd{word-spacing:17.386182px;}
.ws52{word-spacing:17.476218px;}
.ws160{word-spacing:17.514954px;}
.ws8b{word-spacing:17.541672px;}
.ws131{word-spacing:17.574732px;}
.ws21{word-spacing:17.579040px;}
.wsd9{word-spacing:17.607126px;}
.ws152{word-spacing:17.634510px;}
.ws187{word-spacing:17.635506px;}
.ws185{word-spacing:17.635716px;}
.ws188{word-spacing:17.640000px;}
.ws1f{word-spacing:17.672580px;}
.ws143{word-spacing:17.694288px;}
.wsde{word-spacing:17.738034px;}
.ws12e{word-spacing:17.754066px;}
.wse0{word-spacing:17.777274px;}
.ws26{word-spacing:17.803488px;}
.ws175{word-spacing:17.864268px;}
.ws3a{word-spacing:17.868942px;}
.ws150{word-spacing:17.873622px;}
.ws186{word-spacing:17.907864px;}
.ws184{word-spacing:17.913864px;}
.ws128{word-spacing:17.933400px;}
.ws4a{word-spacing:17.934396px;}
.ws10{word-spacing:17.999850px;}
.ws11{word-spacing:18.065304px;}
.ws16a{word-spacing:18.112734px;}
.ws169{word-spacing:18.112938px;}
.ws5b{word-spacing:18.127032px;}
.ws79{word-spacing:18.128274px;}
.wsbb{word-spacing:18.129144px;}
.wsba{word-spacing:18.129162px;}
.wsb{word-spacing:18.130758px;}
.ws56{word-spacing:18.196212px;}
.ws1{word-spacing:18.213858px;}
.ws159{word-spacing:18.232290px;}
.ws93{word-spacing:18.261666px;}
.ws31{word-spacing:18.327120px;}
.ws19{word-spacing:18.392574px;}
.ws85{word-spacing:18.458028px;}
.ws89{word-spacing:18.523482px;}
.ws151{word-spacing:18.531180px;}
.wsc5{word-spacing:18.588936px;}
.ws120{word-spacing:18.590958px;}
.ws42{word-spacing:18.654390px;}
.ws63{word-spacing:18.785298px;}
.ws124{word-spacing:18.830070px;}
.wsc9{word-spacing:18.850752px;}
.ws123{word-spacing:18.889848px;}
.ws9b{word-spacing:18.916206px;}
.ws140{word-spacing:18.949626px;}
.wsa8{word-spacing:18.981660px;}
.ws94{word-spacing:19.047114px;}
.ws4e{word-spacing:19.112568px;}
.ws10a{word-spacing:19.178022px;}
.wscd{word-spacing:19.205040px;}
.ws13d{word-spacing:19.308294px;}
.ws38{word-spacing:19.308930px;}
.ws14a{word-spacing:19.368072px;}
.ws17{word-spacing:19.374384px;}
.ws15{word-spacing:19.439838px;}
.ws9e{word-spacing:19.505292px;}
.ws22{word-spacing:19.570746px;}
.ws13f{word-spacing:19.607184px;}
.wsaf{word-spacing:19.636200px;}
.ws77{word-spacing:19.701654px;}
.ws119{word-spacing:19.726740px;}
.ws2a{word-spacing:19.767108px;}
.ws67{word-spacing:19.832562px;}
.ws13e{word-spacing:19.846296px;}
.wsbc{word-spacing:19.898016px;}
.ws1b{word-spacing:19.963470px;}
.ws40{word-spacing:20.094378px;}
.wse2{word-spacing:20.154354px;}
.ws4f{word-spacing:20.159832px;}
.ws7d{word-spacing:20.189850px;}
.ws139{word-spacing:20.204964px;}
.ws7e{word-spacing:20.225286px;}
.ws1d{word-spacing:20.290740px;}
.ws86{word-spacing:20.356194px;}
.ws3b{word-spacing:20.421648px;}
.ws33{word-spacing:20.487102px;}
.ws55{word-spacing:20.552556px;}
.ws179{word-spacing:20.563632px;}
.ws17a{word-spacing:20.593506px;}
.ws17d{word-spacing:20.593716px;}
.ws17f{word-spacing:20.599506px;}
.ws17c{word-spacing:20.600148px;}
.ws92{word-spacing:20.618010px;}
.ws178{word-spacing:20.620938px;}
.ws180{word-spacing:20.623410px;}
.ws182{word-spacing:20.644368px;}
.wsa5{word-spacing:20.748918px;}
.ws110{word-spacing:20.765040px;}
.wsdf{word-spacing:20.780220px;}
.ws3f{word-spacing:20.814372px;}
.ws11b{word-spacing:20.862522px;}
.ws43{word-spacing:20.879826px;}
.ws28{word-spacing:20.945280px;}
.wscb{word-spacing:21.010734px;}
.wsa4{word-spacing:21.076188px;}
.ws133{word-spacing:21.101634px;}
.ws47{word-spacing:21.141642px;}
.ws58{word-spacing:21.207096px;}
.ws15a{word-spacing:21.221190px;}
.ws71{word-spacing:21.272550px;}
.ws76{word-spacing:21.338004px;}
.ws5a{word-spacing:21.468912px;}
.ws16c{word-spacing:21.520080px;}
.wsc0{word-spacing:21.534366px;}
.ws88{word-spacing:21.599820px;}
.ws17e{word-spacing:21.604170px;}
.ws30{word-spacing:21.665274px;}
.ws192{word-spacing:21.699414px;}
.ws191{word-spacing:21.700938px;}
.wsc6{word-spacing:21.730728px;}
.ws157{word-spacing:21.759192px;}
.ws46{word-spacing:21.796182px;}
.wsef{word-spacing:21.861636px;}
.wsca{word-spacing:21.881040px;}
.wse1{word-spacing:21.927090px;}
.ws102{word-spacing:21.953274px;}
.wsff{word-spacing:21.992544px;}
.ws2f{word-spacing:22.057998px;}
.wsae{word-spacing:22.123452px;}
.wsd3{word-spacing:22.188906px;}
.ws142{word-spacing:22.237416px;}
.wsf8{word-spacing:22.254360px;}
.ws37{word-spacing:22.319814px;}
.wsa0{word-spacing:22.385268px;}
.ws16b{word-spacing:22.416750px;}
.wsd2{word-spacing:22.450722px;}
.ws115{word-spacing:22.476528px;}
.ws9d{word-spacing:22.487040px;}
.ws18{word-spacing:22.516176px;}
.ws48{word-spacing:22.581630px;}
.ws5f{word-spacing:22.647084px;}
.ws144{word-spacing:22.655862px;}
.wsb0{word-spacing:22.712538px;}
.ws167{word-spacing:22.775418px;}
.wsf5{word-spacing:22.777992px;}
.ws136{word-spacing:22.835196px;}
.ws6b{word-spacing:22.843446px;}
.wsb9{word-spacing:22.908900px;}
.ws3d{word-spacing:22.974354px;}
.ws15d{word-spacing:23.014530px;}
.ws75{word-spacing:23.039808px;}
.ws72{word-spacing:23.105262px;}
.wse3{word-spacing:23.162220px;}
.ws8c{word-spacing:23.170716px;}
.ws78{word-spacing:23.236170px;}
.ws4c{word-spacing:23.301624px;}
.ws118{word-spacing:23.313420px;}
.ws66{word-spacing:23.367078px;}
.ws65{word-spacing:23.432532px;}
.ws2b{word-spacing:23.628894px;}
.ws2d{word-spacing:23.665260px;}
.ws2e{word-spacing:23.694348px;}
.ws44{word-spacing:23.825256px;}
.ws45{word-spacing:23.890710px;}
.ws158{word-spacing:23.911200px;}
.ws3e{word-spacing:23.956164px;}
.wsec{word-spacing:24.021618px;}
.wsea{word-spacing:24.087072px;}
.ws3c{word-spacing:24.152526px;}
.wsad{word-spacing:24.217980px;}
.ws112{word-spacing:24.283434px;}
.wscc{word-spacing:24.348888px;}
.ws16d{word-spacing:24.389424px;}
.ws39{word-spacing:24.414342px;}
.ws68{word-spacing:24.479796px;}
.ws165{word-spacing:24.508980px;}
.ws149{word-spacing:24.628536px;}
.ws69{word-spacing:24.741612px;}
.wsb8{word-spacing:24.807066px;}
.ws36{word-spacing:24.872520px;}
.ws74{word-spacing:24.937974px;}
.ws99{word-spacing:25.003428px;}
.ws2c{word-spacing:25.068882px;}
.ws14f{word-spacing:25.106760px;}
.wsd4{word-spacing:25.134336px;}
.ws100{word-spacing:25.199790px;}
.ws15b{word-spacing:25.226316px;}
.ws24{word-spacing:25.265244px;}
.ws10d{word-spacing:25.330698px;}
.ws155{word-spacing:25.345872px;}
.wsa1{word-spacing:25.391040px;}
.ws8a{word-spacing:25.461606px;}
.ws13a{word-spacing:25.525206px;}
.ws61{word-spacing:25.527060px;}
.ws34{word-spacing:25.592514px;}
.wsbe{word-spacing:25.657968px;}
.ws35{word-spacing:25.723422px;}
.ws7c{word-spacing:25.788876px;}
.ws146{word-spacing:25.824096px;}
.wsd6{word-spacing:25.854330px;}
.ws6c{word-spacing:25.919784px;}
.ws96{word-spacing:25.985238px;}
.wscf{word-spacing:26.050692px;}
.ws116{word-spacing:26.063208px;}
.wsa2{word-spacing:26.116146px;}
.ws9c{word-spacing:26.181600px;}
.ws104{word-spacing:26.312508px;}
.wsed{word-spacing:26.443416px;}
.ws10f{word-spacing:26.705040px;}
.wsab{word-spacing:26.705232px;}
.wsaa{word-spacing:26.770686px;}
.wse5{word-spacing:26.822220px;}
.ws106{word-spacing:26.831256px;}
.ws16{word-spacing:26.836140px;}
.wsdb{word-spacing:27.228864px;}
.wsc7{word-spacing:27.294318px;}
.wsf7{word-spacing:27.307836px;}
.ws62{word-spacing:27.359772px;}
.wsc1{word-spacing:27.490680px;}
.ws83{word-spacing:27.556134px;}
.ws5c{word-spacing:27.621588px;}
.ws11f{word-spacing:27.677214px;}
.ws7f{word-spacing:27.687042px;}
.ws73{word-spacing:27.752496px;}
.wsd7{word-spacing:27.817950px;}
.ws7a{word-spacing:28.079766px;}
.ws7b{word-spacing:28.145220px;}
.wsbd{word-spacing:28.472490px;}
.ws5d{word-spacing:28.537944px;}
.wsfe{word-spacing:28.603398px;}
.ws8f{word-spacing:28.734306px;}
.ws97{word-spacing:28.799760px;}
.ws5e{word-spacing:28.865214px;}
.ws10e{word-spacing:28.930668px;}
.wsf0{word-spacing:29.050062px;}
.wsf1{word-spacing:29.061576px;}
.ws105{word-spacing:29.330220px;}
.ws1e{word-spacing:29.388846px;}
.wse7{word-spacing:29.608674px;}
.wsf6{word-spacing:29.650662px;}
.ws114{word-spacing:29.801274px;}
.ws107{word-spacing:29.836560px;}
.wsbf{word-spacing:29.847024px;}
.ws12b{word-spacing:30.128112px;}
.wsdc{word-spacing:30.221040px;}
.ws13b{word-spacing:30.427002px;}
.wse6{word-spacing:30.763380px;}
.ws14c{word-spacing:30.785670px;}
.ws25{word-spacing:30.828834px;}
.ws14d{word-spacing:30.905226px;}
.wsc8{word-spacing:31.025196px;}
.ws9a{word-spacing:31.139040px;}
.wsfd{word-spacing:31.221558px;}
.ws91{word-spacing:31.739040px;}
.ws15e{word-spacing:32.997456px;}
.ws11e{word-spacing:33.176790px;}
.ws13c{word-spacing:33.714792px;}
.wse{word-spacing:34.341906px;}
.ws14e{word-spacing:34.491906px;}
.ws132{word-spacing:34.611462px;}
.wsb5{word-spacing:35.120520px;}
.wsb4{word-spacing:35.137668px;}
.wsb3{word-spacing:35.147304px;}
.ws15f{word-spacing:37.600362px;}
.ws141{word-spacing:39.274146px;}
.ws12a{word-spacing:43.637940px;}
.ws147{word-spacing:52.006860px;}
.ws148{word-spacing:52.724196px;}
.ws32{word-spacing:65.388546px;}
.wsb7{word-spacing:73.504842px;}
.wsa{word-spacing:76.336506px;}
.ws5{word-spacing:96.800460px;}
.ws4{word-spacing:136.152300px;}
.ws6{word-spacing:200.424780px;}
.ws9{word-spacing:234.756180px;}
.ws7{word-spacing:301.194900px;}
.ws8{word-spacing:314.880900px;}
.ws70{word-spacing:1581.403080px;}
.ws6e{word-spacing:1597.375020px;}
._d{margin-left:-2582.875404px;}
._32{margin-left:-2581.861068px;}
._30{margin-left:-2563.796586px;}
._b{margin-left:-2562.268578px;}
._34{margin-left:-2067.992688px;}
._44{margin-left:-2043.998946px;}
._40{margin-left:-1878.692850px;}
._21{margin-left:-1832.218422px;}
._2a{margin-left:-1753.244838px;}
._47{margin-left:-1418.202375px;}
._4d{margin-left:-1403.007094px;}
._31{margin-left:-1383.220248px;}
._36{margin-left:-1191.175740px;}
._4a{margin-left:-1185.661686px;}
._3c{margin-left:-1081.646466px;}
._39{margin-left:-1076.331360px;}
._3a{margin-left:-1049.073138px;}
._3d{margin-left:-796.549014px;}
._1c{margin-left:-681.676968px;}
._20{margin-left:-656.280816px;}
._1d{margin-left:-620.402604px;}
._3e{margin-left:-560.627100px;}
._45{margin-left:-524.806066px;}
._49{margin-left:-438.754338px;}
._52{margin-left:-431.634929px;}
._23{margin-left:-346.945212px;}
._46{margin-left:-321.395928px;}
._4f{margin-left:-289.803314px;}
._51{margin-left:-278.319481px;}
._48{margin-left:-268.697080px;}
._4b{margin-left:-226.096014px;}
._50{margin-left:-143.611939px;}
._4c{margin-left:-109.353628px;}
._4e{margin-left:-107.463646px;}
._43{margin-left:-11.417790px;}
._f{margin-left:-10.056996px;}
._29{margin-left:-8.867034px;}
._18{margin-left:-7.396302px;}
._2{margin-left:-5.740020px;}
._4{margin-left:-3.825600px;}
._1{margin-left:-1.912800px;}
._3{width:1.437300px;}
._7{width:2.791602px;}
._35{width:4.115064px;}
._0{width:6.652938px;}
._2e{width:7.792146px;}
._22{width:9.888816px;}
._e{width:10.930818px;}
._27{width:14.165928px;}
._2f{width:15.347550px;}
._5{width:16.619148px;}
._1b{width:18.162714px;}
._2d{width:19.852188px;}
._8{width:21.041760px;}
._6{width:22.530810px;}
._11{width:23.578074px;}
._1a{width:24.741612px;}
._a{width:26.364696px;}
._c{width:27.912672px;}
._13{width:28.946622px;}
._17{width:30.023454px;}
._28{width:31.554252px;}
._9{width:32.758440px;}
._10{width:34.584750px;}
._19{width:36.115974px;}
._16{width:38.007222px;}
._26{width:39.076038px;}
._15{width:41.000736px;}
._14{width:43.212906px;}
._12{width:45.374256px;}
._2c{width:46.715292px;}
._38{width:47.875914px;}
._37{width:49.447038px;}
._25{width:50.577078px;}
._2b{width:52.494108px;}
._1f{width:54.045024px;}
._24{width:56.100882px;}
._33{width:58.710414px;}
._42{width:61.689600px;}
._1e{width:65.454000px;}
._3f{width:66.954636px;}
._3b{width:74.159166px;}
._41{width:91.873308px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(145,143,143);}
.fc0{color:rgb(156,17,22);}
.fs11{font-size:31.265258px;}
.fsf{font-size:31.815125px;}
.fs14{font-size:33.957641px;}
.fs10{font-size:34.169681px;}
.fse{font-size:34.770629px;}
.fs9{font-size:35.868000px;}
.fsd{font-size:40.337626px;}
.fs13{font-size:41.782170px;}
.fs8{font-size:41.844000px;}
.fsc{font-size:44.084837px;}
.fs12{font-size:45.663574px;}
.fs3{font-size:47.820000px;}
.fsb{font-size:48.248937px;}
.fsa{font-size:52.731079px;}
.fs1{font-size:59.778000px;}
.fs6{font-size:62.766000px;}
.fs4{font-size:65.454000px;}
.fs2{font-size:65.754000px;}
.fs5{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.fs7{font-size:123.978000px;}
.y211{bottom:-124.698372px;}
.y1f1{bottom:-114.883799px;}
.y210{bottom:-98.384738px;}
.y1f0{bottom:-89.480004px;}
.y20f{bottom:-72.128088px;}
.y1ef{bottom:-64.131222px;}
.y20e{bottom:-45.871628px;}
.y1ee{bottom:-38.782441px;}
.y209{bottom:-35.591068px;}
.y1fd{bottom:-33.937365px;}
.y20d{bottom:-30.802554px;}
.y208{bottom:-24.315074px;}
.y1fc{bottom:-22.419594px;}
.y20c{bottom:-15.733670px;}
.y1ed{bottom:-13.433660px;}
.y207{bottom:-12.996296px;}
.y1fb{bottom:-10.945287px;}
.y206{bottom:-3.642417px;}
.y0{bottom:0.000000px;}
.y215{bottom:19.529959px;}
.y2c{bottom:28.269000px;}
.y201{bottom:48.274500px;}
.y1a0{bottom:49.528500px;}
.y2b{bottom:54.634500px;}
.y80{bottom:55.341000px;}
.y116{bottom:57.268500px;}
.y1f6{bottom:57.951000px;}
.y13a{bottom:58.081500px;}
.y14d{bottom:59.134500px;}
.y1c1{bottom:59.943000px;}
.y17d{bottom:59.977500px;}
.y1e2{bottom:60.174000px;}
.y166{bottom:60.568500px;}
.ye1{bottom:63.678000px;}
.y1eb{bottom:64.950000px;}
.y65{bottom:65.961000px;}
.y200{bottom:66.207000px;}
.yfc{bottom:66.913500px;}
.y19f{bottom:67.461000px;}
.y128{bottom:69.462000px;}
.y7f{bottom:75.664500px;}
.y1f5{bottom:75.883500px;}
.y115{bottom:77.592000px;}
.y1c0{bottom:77.875500px;}
.y1e1{bottom:78.106500px;}
.y139{bottom:78.405000px;}
.y14c{bottom:79.458000px;}
.y17c{bottom:80.301000px;}
.y165{bottom:80.892000px;}
.y2a{bottom:81.070500px;}
.y1ea{bottom:82.882500px;}
.yc4{bottom:83.527500px;}
.ye0{bottom:84.001500px;}
.y1ff{bottom:84.139500px;}
.y47{bottom:85.122000px;}
.y19e{bottom:85.395000px;}
.y20a{bottom:86.149500px;}
.y64{bottom:86.284500px;}
.yfb{bottom:87.237000px;}
.y194{bottom:88.011000px;}
.y10{bottom:88.665000px;}
.y127{bottom:89.785500px;}
.y1f4{bottom:93.817500px;}
.yac{bottom:94.582500px;}
.y1bf{bottom:95.808000px;}
.y7e{bottom:95.989500px;}
.y1e0{bottom:96.040500px;}
.y17b{bottom:96.357000px;}
.y114{bottom:97.915500px;}
.y138{bottom:98.728500px;}
.y14b{bottom:99.781500px;}
.y1e9{bottom:100.815000px;}
.y164{bottom:101.215500px;}
.y17a{bottom:102.265500px;}
.y19d{bottom:103.327500px;}
.y1fe{bottom:103.719000px;}
.yc3{bottom:103.852500px;}
.ydf{bottom:104.325000px;}
.y46{bottom:105.445500px;}
.y63{bottom:106.608000px;}
.y29{bottom:107.508000px;}
.yfa{bottom:107.560500px;}
.y193{bottom:108.334500px;}
.y126{bottom:110.110500px;}
.y1f3{bottom:111.750000px;}
.y1be{bottom:113.740500px;}
.y1df{bottom:113.973000px;}
.y213{bottom:114.751500px;}
.yab{bottom:114.907500px;}
.y7d{bottom:116.313000px;}
.y218{bottom:117.777000px;}
.y113{bottom:118.240500px;}
.y1e8{bottom:118.749000px;}
.y205{bottom:119.026275px;}
.y137{bottom:119.052000px;}
.y14a{bottom:120.105000px;}
.y179{bottom:120.591000px;}
.yf{bottom:120.747000px;}
.y163{bottom:121.539000px;}
.y96{bottom:123.543000px;}
.yc2{bottom:124.176000px;}
.yde{bottom:124.650000px;}
.y45{bottom:125.769000px;}
.y178{bottom:126.499500px;}
.y62{bottom:126.933000px;}
.yf9{bottom:127.884000px;}
.y192{bottom:128.659500px;}
.y1f2{bottom:129.682500px;}
.y125{bottom:130.434000px;}
.y1bd{bottom:131.673000px;}
.y1de{bottom:131.905500px;}
.y212{bottom:132.684000px;}
.yaa{bottom:135.231000px;}
.y217{bottom:135.709500px;}
.y1fa{bottom:136.595095px;}
.y7c{bottom:136.636500px;}
.y1e7{bottom:136.681500px;}
.y19c{bottom:137.623500px;}
.y112{bottom:138.564000px;}
.y136{bottom:139.377000px;}
.y149{bottom:140.428500px;}
.y162{bottom:141.864000px;}
.y177{bottom:142.930500px;}
.y95{bottom:143.866500px;}
.yc1{bottom:144.499500px;}
.ydd{bottom:144.973500px;}
.y28{bottom:145.668000px;}
.y44{bottom:146.094000px;}
.y61{bottom:147.256500px;}
.yf8{bottom:148.209000px;}
.y176{bottom:148.839000px;}
.y191{bottom:148.983000px;}
.y1bc{bottom:149.607000px;}
.y1dd{bottom:149.838000px;}
.y124{bottom:150.757500px;}
.y216{bottom:153.642000px;}
.y7b{bottom:156.960000px;}
.y27{bottom:157.819500px;}
.y111{bottom:158.887500px;}
.y135{bottom:159.700500px;}
.y148{bottom:160.753500px;}
.ya8{bottom:160.959000px;}
.y161{bottom:162.187500px;}
.y1ec{bottom:162.559302px;}
.ya9{bottom:162.907500px;}
.ye{bottom:163.458000px;}
.y94{bottom:164.190000px;}
.yc0{bottom:164.823000px;}
.ydc{bottom:165.297000px;}
.y20b{bottom:165.557565px;}
.y43{bottom:166.417500px;}
.y175{bottom:167.164500px;}
.ya7{bottom:167.509500px;}
.y1bb{bottom:167.539500px;}
.y60{bottom:167.580000px;}
.y1dc{bottom:167.770500px;}
.yf7{bottom:168.532500px;}
.y190{bottom:169.306500px;}
.y1e3{bottom:169.556902px;}
.y123{bottom:171.081000px;}
.y174{bottom:173.073000px;}
.y26{bottom:175.753500px;}
.y7a{bottom:177.283500px;}
.y110{bottom:179.211000px;}
.y134{bottom:180.024000px;}
.y147{bottom:181.077000px;}
.y160{bottom:182.511000px;}
.y25{bottom:183.225000px;}
.y93{bottom:184.513500px;}
.ybf{bottom:185.146500px;}
.y1ba{bottom:185.472000px;}
.ydb{bottom:185.620500px;}
.y1db{bottom:185.703000px;}
.y214{bottom:186.519086px;}
.y42{bottom:186.741000px;}
.y5f{bottom:187.903500px;}
.y18f{bottom:189.630000px;}
.y19b{bottom:190.089000px;}
.yf6{bottom:190.722000px;}
.y122{bottom:191.404500px;}
.ya6{bottom:191.925000px;}
.ya5{bottom:192.127500px;}
.y173{bottom:193.396500px;}
.y24{bottom:193.686000px;}
.yd{bottom:195.540000px;}
.y79{bottom:197.608500px;}
.ya4{bottom:198.678000px;}
.y10f{bottom:199.534500px;}
.y133{bottom:200.347500px;}
.y146{bottom:201.400500px;}
.y15f{bottom:202.834500px;}
.y1b9{bottom:203.404500px;}
.y1da{bottom:203.637000px;}
.y92{bottom:204.838500px;}
.ybe{bottom:205.471500px;}
.yda{bottom:205.944000px;}
.y41{bottom:207.064500px;}
.y19a{bottom:208.021500px;}
.y5e{bottom:208.227000px;}
.y18e{bottom:209.953500px;}
.y121{bottom:211.729500px;}
.y172{bottom:213.721500px;}
.yf5{bottom:214.261500px;}
.y78{bottom:217.932000px;}
.y23{bottom:219.090000px;}
.y10e{bottom:219.859500px;}
.y132{bottom:220.671000px;}
.y1b8{bottom:221.337000px;}
.y1d9{bottom:221.569500px;}
.y145{bottom:221.724000px;}
.y15e{bottom:223.158000px;}
.ybd{bottom:225.795000px;}
.y199{bottom:225.954000px;}
.yd9{bottom:226.269000px;}
.y40{bottom:227.388000px;}
.yc{bottom:227.620500px;}
.y5d{bottom:228.552000px;}
.y18d{bottom:230.278500px;}
.ya3{bottom:230.565000px;}
.y22{bottom:231.048000px;}
.y120{bottom:232.053000px;}
.y171{bottom:234.045000px;}
.yf4{bottom:234.586500px;}
.ya2{bottom:234.606000px;}
.y77{bottom:238.255500px;}
.y1b7{bottom:239.269500px;}
.y1d8{bottom:239.502000px;}
.y10d{bottom:240.183000px;}
.y131{bottom:240.996000px;}
.y91{bottom:241.525500px;}
.y144{bottom:242.047500px;}
.y183{bottom:242.860500px;}
.y15d{bottom:243.483000px;}
.y198{bottom:243.886500px;}
.ybc{bottom:246.118500px;}
.yd8{bottom:246.592500px;}
.y3f{bottom:247.713000px;}
.y5c{bottom:248.875500px;}
.y21{bottom:248.980500px;}
.y18c{bottom:250.602000px;}
.y204{bottom:253.741500px;}
.y170{bottom:254.368500px;}
.yf3{bottom:254.910000px;}
.ya1{bottom:254.929500px;}
.y20{bottom:256.452000px;}
.y1b6{bottom:257.203500px;}
.y1d7{bottom:257.434500px;}
.y76{bottom:258.579000px;}
.yb{bottom:259.702500px;}
.y10c{bottom:260.506500px;}
.y130{bottom:261.319500px;}
.y197{bottom:261.820500px;}
.y143{bottom:262.372500px;}
.y182{bottom:263.185500px;}
.y15c{bottom:263.806500px;}
.ybb{bottom:266.442000px;}
.yd7{bottom:266.916000px;}
.y3e{bottom:268.036500px;}
.y5b{bottom:269.199000px;}
.y18b{bottom:270.925500px;}
.y11f{bottom:272.992500px;}
.y16f{bottom:274.692000px;}
.y1b5{bottom:275.136000px;}
.yf2{bottom:275.233500px;}
.ya0{bottom:275.253000px;}
.y1d6{bottom:275.367000px;}
.y90{bottom:278.212500px;}
.y196{bottom:279.753000px;}
.y10b{bottom:280.830000px;}
.y1f{bottom:281.458500px;}
.y12f{bottom:281.643000px;}
.y142{bottom:282.696000px;}
.y181{bottom:283.509000px;}
.y15b{bottom:284.130000px;}
.yba{bottom:286.765500px;}
.y1f9{bottom:287.119500px;}
.yd6{bottom:287.239500px;}
.y3d{bottom:288.360000px;}
.y5a{bottom:289.522500px;}
.y18a{bottom:291.249000px;}
.y1b4{bottom:293.068500px;}
.y1d5{bottom:293.299500px;}
.y16e{bottom:295.015500px;}
.y75{bottom:295.266000px;}
.yf1{bottom:295.557000px;}
.y9f{bottom:295.578000px;}
.y195{bottom:297.685500px;}
.y8f{bottom:298.536000px;}
.y10a{bottom:301.153500px;}
.y1e{bottom:301.783500px;}
.y12e{bottom:301.966500px;}
.ya{bottom:302.413500px;}
.y141{bottom:303.019500px;}
.y180{bottom:303.832500px;}
.y15a{bottom:304.453500px;}
.yb9{bottom:307.090500px;}
.yd5{bottom:307.563000px;}
.y3c{bottom:308.683500px;}
.y59{bottom:309.846000px;}
.y1b3{bottom:311.001000px;}
.y1d4{bottom:311.233500px;}
.y189{bottom:311.572500px;}
.y16d{bottom:315.340500px;}
.yf0{bottom:317.746500px;}
.y8e{bottom:318.859500px;}
.y109{bottom:321.478500px;}
.y11e{bottom:322.435500px;}
.y140{bottom:323.343000px;}
.y12d{bottom:324.156000px;}
.y58{bottom:324.262500px;}
.y159{bottom:324.777000px;}
.yd4{bottom:327.888000px;}
.y1b2{bottom:328.933500px;}
.y3b{bottom:329.007000px;}
.y1d3{bottom:329.166000px;}
.y57{bottom:330.171000px;}
.y188{bottom:331.897500px;}
.y9e{bottom:332.265000px;}
.y8d{bottom:333.276000px;}
.y9{bottom:334.495500px;}
.y16c{bottom:335.664000px;}
.yef{bottom:338.070000px;}
.y8c{bottom:339.184500px;}
.y108{bottom:341.802000px;}
.y11d{bottom:342.759000px;}
.y13f{bottom:343.666500px;}
.yb8{bottom:343.777500px;}
.y12c{bottom:344.479500px;}
.y158{bottom:345.100500px;}
.y1b1{bottom:346.866000px;}
.y1d2{bottom:347.098500px;}
.y1d{bottom:347.773500px;}
.yd3{bottom:348.211500px;}
.y74{bottom:348.318000px;}
.y56{bottom:350.494500px;}
.y187{bottom:352.221000px;}
.y3a{bottom:352.548000px;}
.y16b{bottom:355.987500px;}
.yee{bottom:358.393500px;}
.y107{bottom:362.125500px;}
.y11c{bottom:363.082500px;}
.y13e{bottom:363.991500px;}
.y1b0{bottom:364.800000px;}
.y1d1{bottom:365.031000px;}
.y157{bottom:365.425500px;}
.y8{bottom:366.577500px;}
.y12b{bottom:366.669000px;}
.yd2{bottom:368.535000px;}
.y73{bottom:368.641500px;}
.y9d{bottom:368.952000px;}
.y55{bottom:370.818000px;}
.y186{bottom:372.544500px;}
.y39{bottom:372.871500px;}
.y8b{bottom:375.871500px;}
.yed{bottom:378.718500px;}
.yb7{bottom:380.464500px;}
.y106{bottom:382.449000px;}
.y1af{bottom:382.732500px;}
.y1d0{bottom:382.963500px;}
.y11b{bottom:383.406000px;}
.y13d{bottom:384.315000px;}
.y1c{bottom:385.134000px;}
.y156{bottom:385.749000px;}
.y12a{bottom:386.994000px;}
.y169{bottom:388.470000px;}
.yd1{bottom:388.858500px;}
.y72{bottom:388.965000px;}
.y9c{bottom:389.275500px;}
.y54{bottom:391.141500px;}
.y185{bottom:392.868000px;}
.y38{bottom:393.195000px;}
.y7{bottom:398.658000px;}
.yec{bottom:399.042000px;}
.y1ae{bottom:400.665000px;}
.y1cf{bottom:400.896000px;}
.y105{bottom:402.772500px;}
.y11a{bottom:403.731000px;}
.y13c{bottom:404.638500px;}
.y155{bottom:406.072500px;}
.y129{bottom:407.317500px;}
.yd0{bottom:409.182000px;}
.y71{bottom:409.288500px;}
.y9b{bottom:409.600500px;}
.y203{bottom:411.189000px;}
.y53{bottom:411.465000px;}
.y8a{bottom:412.558500px;}
.y184{bottom:413.191500px;}
.y37{bottom:413.520000px;}
.y168{bottom:413.692500px;}
.y16a{bottom:415.161000px;}
.y1ad{bottom:418.597500px;}
.y1ce{bottom:418.830000px;}
.yeb{bottom:419.365500px;}
.y1b{bottom:422.493000px;}
.y104{bottom:423.096000px;}
.y119{bottom:424.054500px;}
.y13b{bottom:424.962000px;}
.y154{bottom:426.396000px;}
.y17f{bottom:427.641000px;}
.ycf{bottom:429.507000px;}
.y70{bottom:429.613500px;}
.y9a{bottom:429.924000px;}
.y52{bottom:431.790000px;}
.y89{bottom:432.882000px;}
.yb6{bottom:433.516500px;}
.y36{bottom:433.843500px;}
.y1ac{bottom:436.530000px;}
.y1cd{bottom:436.762500px;}
.y167{bottom:438.972000px;}
.yea{bottom:439.689000px;}
.y118{bottom:444.378000px;}
.y1f8{bottom:444.567000px;}
.y103{bottom:445.285500px;}
.y153{bottom:446.719500px;}
.y17e{bottom:447.964500px;}
.yce{bottom:449.830500px;}
.y6f{bottom:449.937000px;}
.y99{bottom:450.247500px;}
.y51{bottom:452.113500px;}
.y88{bottom:453.207000px;}
.yb5{bottom:453.840000px;}
.y35{bottom:454.167000px;}
.y1ab{bottom:454.462500px;}
.y1cc{bottom:454.695000px;}
.y6{bottom:457.428000px;}
.y1a{bottom:459.853500px;}
.ye9{bottom:460.012500px;}
.y102{bottom:465.610500px;}
.y50{bottom:466.528500px;}
.y152{bottom:467.044500px;}
.ycd{bottom:470.154000px;}
.y6e{bottom:470.260500px;}
.y98{bottom:470.571000px;}
.y1aa{bottom:472.396500px;}
.y4f{bottom:472.437000px;}
.y1cb{bottom:472.627500px;}
.y1e6{bottom:472.900338px;}
.y87{bottom:473.530500px;}
.yb4{bottom:474.163500px;}
.y34{bottom:474.490500px;}
.y117{bottom:478.522500px;}
.ye8{bottom:480.337500px;}
.y101{bottom:485.934000px;}
.y151{bottom:487.368000px;}
.y1a9{bottom:490.329000px;}
.ycc{bottom:490.477500px;}
.y1ca{bottom:490.560000px;}
.y6d{bottom:490.584000px;}
.y5{bottom:490.656000px;}
.y97{bottom:492.760500px;}
.y86{bottom:493.854000px;}
.yb3{bottom:494.487000px;}
.y4e{bottom:494.626500px;}
.y33{bottom:494.814000px;}
.y19{bottom:499.963500px;}
.ye7{bottom:500.661000px;}
.y1e5{bottom:503.286622px;}
.y100{bottom:506.257500px;}
.y150{bottom:507.691500px;}
.y1a8{bottom:508.261500px;}
.y1c9{bottom:508.492500px;}
.ycb{bottom:510.801000px;}
.y6c{bottom:510.907500px;}
.y4{bottom:511.129500px;}
.y85{bottom:514.177500px;}
.yb2{bottom:514.810500px;}
.y4d{bottom:514.950000px;}
.y32{bottom:515.137500px;}
.ye6{bottom:520.984500px;}
.y18{bottom:521.649000px;}
.y1a7{bottom:526.194000px;}
.y1c8{bottom:526.426500px;}
.yff{bottom:526.581000px;}
.y14f{bottom:528.015000px;}
.yca{bottom:531.126000px;}
.y6b{bottom:531.232500px;}
.y3{bottom:531.603000px;}
.y1e4{bottom:533.606993px;}
.yb1{bottom:535.134000px;}
.y4c{bottom:535.273500px;}
.y31{bottom:535.462500px;}
.ye5{bottom:541.308000px;}
.y1a6{bottom:544.126500px;}
.y1c7{bottom:544.359000px;}
.yfe{bottom:546.904500px;}
.y14e{bottom:548.338500px;}
.y84{bottom:550.866000px;}
.yc9{bottom:551.449500px;}
.y6a{bottom:551.556000px;}
.yb0{bottom:555.459000px;}
.y4b{bottom:555.597000px;}
.y30{bottom:555.786000px;}
.y1a5{bottom:562.059000px;}
.y1c6{bottom:562.291500px;}
.ye4{bottom:563.497500px;}
.yfd{bottom:567.229500px;}
.y202{bottom:568.635000px;}
.yc8{bottom:571.773000px;}
.y69{bottom:571.879500px;}
.y15{bottom:572.026500px;}
.yaf{bottom:575.782500px;}
.y4a{bottom:575.922000px;}
.y2f{bottom:576.109500px;}
.y1a4{bottom:579.993000px;}
.y1c5{bottom:580.224000px;}
.y2{bottom:581.053500px;}
.ye3{bottom:583.821000px;}
.y83{bottom:587.553000px;}
.yc7{bottom:592.096500px;}
.y68{bottom:592.203000px;}
.y14{bottom:592.350000px;}
.yae{bottom:596.106000px;}
.y49{bottom:596.245500px;}
.y2e{bottom:596.433000px;}
.y1a3{bottom:597.925500px;}
.y1c4{bottom:598.156500px;}
.y1f7{bottom:602.013000px;}
.y17{bottom:603.165000px;}
.ye2{bottom:606.010500px;}
.y82{bottom:607.876500px;}
.y1{bottom:610.030500px;}
.yc6{bottom:612.420000px;}
.y67{bottom:612.526500px;}
.y13{bottom:612.675000px;}
.y1a2{bottom:615.858000px;}
.y1c3{bottom:616.089000px;}
.y16{bottom:623.490000px;}
.y81{bottom:628.200000px;}
.yc5{bottom:632.745000px;}
.yad{bottom:632.793000px;}
.y66{bottom:632.851500px;}
.y48{bottom:632.932500px;}
.y12{bottom:632.998500px;}
.y2d{bottom:633.121500px;}
.y1a1{bottom:633.790500px;}
.y1c2{bottom:634.023000px;}
.y11{bottom:649.056000px;}
.h7{height:24.579480px;}
.h10{height:30.839028px;}
.h36{height:33.327567px;}
.h32{height:33.535673px;}
.h2f{height:34.125471px;}
.h6{height:35.243340px;}
.h2d{height:35.865000px;}
.h2c{height:43.266856px;}
.h8{height:43.518384px;}
.h3{height:44.056386px;}
.h34{height:44.816300px;}
.h2a{height:44.833500px;}
.h12{height:45.226386px;}
.hb{height:45.693648px;}
.h5{height:46.534386px;}
.h11{height:46.540386px;}
.h26{height:46.686618px;}
.h9{height:48.239598px;}
.h13{height:49.090500px;}
.h4{height:49.315500px;}
.h20{height:50.951598px;}
.h19{height:50.957598px;}
.h14{height:51.119574px;}
.ha{height:51.358680px;}
.h29{height:51.752671px;}
.hd{height:52.096500px;}
.h27{height:53.067576px;}
.h17{height:59.216280px;}
.h15{height:59.222280px;}
.h30{height:60.731028px;}
.h21{height:62.279340px;}
.h1a{height:64.403598px;}
.h2{height:64.557000px;}
.h1b{height:65.405340px;}
.h1f{height:66.647598px;}
.he{height:67.967340px;}
.hf{height:67.973340px;}
.h16{height:71.873598px;}
.h22{height:74.123340px;}
.h23{height:74.351340px;}
.h1d{height:75.251598px;}
.h1c{height:80.078280px;}
.h1e{height:80.084280px;}
.h24{height:82.856280px;}
.h18{height:91.601340px;}
.h25{height:91.607340px;}
.hc{height:92.983500px;}
.h35{height:385.421133px;}
.h33{height:408.806948px;}
.h28{height:455.058228px;}
.h31{height:463.189956px;}
.h2b{height:470.238259px;}
.h2e{height:478.998734px;}
.h1{height:675.750000px;}
.h0{height:676.062000px;}
.w5{width:318.893458px;}
.w4{width:327.398937px;}
.w3{width:382.680906px;}
.w6{width:425.197697px;}
.w2{width:467.733461px;}
.w7{width:552.760425px;}
.w0{width:918.426000px;}
.w1{width:918.750000px;}
.x44{left:-36.805195px;}
.x47{left:-22.422007px;}
.x4f{left:-10.629719px;}
.x49{left:-7.937700px;}
.x4e{left:-2.903782px;}
.x0{left:0.000000px;}
.x43{left:2.083976px;}
.x46{left:10.090560px;}
.x50{left:23.047167px;}
.x51{left:32.295627px;}
.xf{left:42.520500px;}
.x2d{left:44.646000px;}
.x12{left:51.024000px;}
.x37{left:57.463500px;}
.x1e{left:58.884000px;}
.x3a{left:69.673500px;}
.x2e{left:72.190500px;}
.x2f{left:73.564500px;}
.x16{left:75.654000px;}
.x3b{left:78.235500px;}
.x13{left:106.132500px;}
.x24{left:117.922500px;}
.x42{left:119.054392px;}
.x38{left:121.408500px;}
.x31{left:124.905000px;}
.x3d{left:132.001500px;}
.x17{left:140.133000px;}
.x14{left:154.323000px;}
.x4a{left:158.658000px;}
.x4b{left:160.320000px;}
.x45{left:161.575679px;}
.x48{left:169.617000px;}
.x25{left:172.128000px;}
.x27{left:174.124500px;}
.x15{left:189.226500px;}
.x4c{left:193.465444px;}
.x26{left:212.418000px;}
.x28{left:214.414500px;}
.x1b{left:235.384500px;}
.x3e{left:241.279500px;}
.x40{left:256.320000px;}
.x35{left:258.364500px;}
.x18{left:262.029000px;}
.x32{left:273.001500px;}
.x1c{left:278.557500px;}
.x36{left:283.143000px;}
.x1f{left:298.221000px;}
.x22{left:299.229000px;}
.x19{left:318.516000px;}
.x4d{left:320.982080px;}
.x1d{left:339.267000px;}
.x23{left:346.503000px;}
.x33{left:353.887500px;}
.x3f{left:359.179500px;}
.x1a{left:415.710000px;}
.x21{left:470.934000px;}
.x2c{left:483.237000px;}
.x20{left:486.087000px;}
.x3c{left:495.486000px;}
.x39{left:504.097500px;}
.x34{left:521.554500px;}
.x10{left:526.768500px;}
.x11{left:557.667000px;}
.x29{left:569.868000px;}
.x2b{left:572.368500px;}
.x2a{left:590.781000px;}
.x41{left:630.924000px;}
.x30{left:643.311000px;}
.xe{left:691.002000px;}
.x6{left:728.665500px;}
.x3{left:731.283000px;}
.x4{left:734.028000px;}
.x9{left:735.699000px;}
.x8{left:746.388000px;}
.xa{left:751.152000px;}
.x2{left:753.964500px;}
.xd{left:755.085000px;}
.xc{left:764.044500px;}
.xb{left:765.756000px;}
.x5{left:784.255500px;}
.x1{left:788.218500px;}
.x7{left:828.310500px;}
@media print{
.v3{vertical-align:-26.565333pt;}
.v10{vertical-align:-25.173333pt;}
.v5{vertical-align:-14.544000pt;}
.v11{vertical-align:-13.280000pt;}
.vd{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.034667pt;}
.v1{vertical-align:2.202667pt;}
.v8{vertical-align:6.458667pt;}
.v9{vertical-align:14.368000pt;}
.vc{vertical-align:16.362667pt;}
.v6{vertical-align:21.008000pt;}
.va{vertical-align:24.026667pt;}
.vb{vertical-align:26.810667pt;}
.v2{vertical-align:29.088000pt;}
.vf{vertical-align:34.560000pt;}
.ve{vertical-align:45.616000pt;}
.v7{vertical-align:50.096000pt;}
.lsd7{letter-spacing:-0.020295pt;}
.lsd3{letter-spacing:-0.015454pt;}
.ls3{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000683pt;}
.ls7e{letter-spacing:0.000960pt;}
.ls82{letter-spacing:0.001243pt;}
.ls8d{letter-spacing:0.001344pt;}
.lsde{letter-spacing:0.001525pt;}
.ls24{letter-spacing:0.001589pt;}
.ls8{letter-spacing:0.001845pt;}
.ls83{letter-spacing:0.002656pt;}
.ls80{letter-spacing:0.002960pt;}
.ls87{letter-spacing:0.003520pt;}
.ls88{letter-spacing:0.003744pt;}
.ls8b{letter-spacing:0.005019pt;}
.lsd5{letter-spacing:0.009112pt;}
.lsc9{letter-spacing:0.019593pt;}
.lsc3{letter-spacing:0.023436pt;}
.lsd4{letter-spacing:0.038908pt;}
.lscd{letter-spacing:0.039592pt;}
.lsc8{letter-spacing:0.050198pt;}
.lsd6{letter-spacing:0.051996pt;}
.lsc4{letter-spacing:0.060043pt;}
.ls33{letter-spacing:1.742347pt;}
.ls1c{letter-spacing:2.652427pt;}
.ls1a{letter-spacing:2.652747pt;}
.ls2{letter-spacing:2.653099pt;}
.ls8c{letter-spacing:2.654187pt;}
.ls1{letter-spacing:2.654293pt;}
.lsca{letter-spacing:2.654603pt;}
.lscf{letter-spacing:2.654720pt;}
.lsdc{letter-spacing:2.654784pt;}
.ls7{letter-spacing:2.654933pt;}
.lsdf{letter-spacing:2.655392pt;}
.lsdd{letter-spacing:2.656000pt;}
.lsc{letter-spacing:2.656640pt;}
.lsd8{letter-spacing:2.657621pt;}
.ls1d{letter-spacing:2.657760pt;}
.ls17{letter-spacing:2.658080pt;}
.lsb4{letter-spacing:2.658432pt;}
.ls92{letter-spacing:2.659520pt;}
.ls0{letter-spacing:2.659627pt;}
.lsce{letter-spacing:2.659936pt;}
.lsd2{letter-spacing:2.660053pt;}
.ls1e{letter-spacing:2.660267pt;}
.lsba{letter-spacing:5.923808pt;}
.ls84{letter-spacing:6.137989pt;}
.ls86{letter-spacing:6.143323pt;}
.lsd9{letter-spacing:6.410773pt;}
.lsc5{letter-spacing:6.416107pt;}
.ls70{letter-spacing:6.443008pt;}
.ls61{letter-spacing:6.464341pt;}
.ls7d{letter-spacing:6.949867pt;}
.lsb6{letter-spacing:8.447541pt;}
.ls30{letter-spacing:8.780416pt;}
.ls25{letter-spacing:8.947627pt;}
.ls4{letter-spacing:9.249611pt;}
.ls35{letter-spacing:9.254944pt;}
.ls9{letter-spacing:9.696341pt;}
.ls2c{letter-spacing:9.701675pt;}
.lsa{letter-spacing:10.080341pt;}
.ls76{letter-spacing:10.293675pt;}
.ls77{letter-spacing:10.395008pt;}
.ls78{letter-spacing:10.693675pt;}
.lsa1{letter-spacing:10.827008pt;}
.ls68{letter-spacing:11.339008pt;}
.ls79{letter-spacing:11.456341pt;}
.lsc1{letter-spacing:11.513269pt;}
.ls18{letter-spacing:12.349387pt;}
.ls8a{letter-spacing:12.350933pt;}
.lsb{letter-spacing:12.354080pt;}
.ls19{letter-spacing:12.354720pt;}
.lsa6{letter-spacing:12.411008pt;}
.ls67{letter-spacing:12.459008pt;}
.lsa0{letter-spacing:13.486187pt;}
.ls58{letter-spacing:13.609056pt;}
.lsb9{letter-spacing:14.119765pt;}
.lsa5{letter-spacing:15.063093pt;}
.ls39{letter-spacing:15.287093pt;}
.ls94{letter-spacing:15.436427pt;}
.ls1b{letter-spacing:15.644427pt;}
.ls16{letter-spacing:15.729760pt;}
.lscb{letter-spacing:15.917099pt;}
.ls60{letter-spacing:16.170187pt;}
.lsb7{letter-spacing:16.509099pt;}
.lsb5{letter-spacing:16.967765pt;}
.ls5c{letter-spacing:17.198293pt;}
.lsaa{letter-spacing:17.281760pt;}
.lsa8{letter-spacing:17.283627pt;}
.lsa9{letter-spacing:17.284267pt;}
.ls59{letter-spacing:17.298496pt;}
.ls7b{letter-spacing:17.345760pt;}
.lsbc{letter-spacing:17.426432pt;}
.lsb1{letter-spacing:17.591093pt;}
.ls34{letter-spacing:17.677403pt;}
.lsdb{letter-spacing:17.770059pt;}
.ls53{letter-spacing:18.099627pt;}
.ls7c{letter-spacing:18.152960pt;}
.ls51{letter-spacing:18.300427pt;}
.ls52{letter-spacing:18.302293pt;}
.lsd0{letter-spacing:18.388725pt;}
.lsd1{letter-spacing:18.394059pt;}
.lsbe{letter-spacing:18.461099pt;}
.lsc0{letter-spacing:18.610432pt;}
.ls9f{letter-spacing:18.615093pt;}
.ls4e{letter-spacing:18.822496pt;}
.ls6{letter-spacing:18.830293pt;}
.ls29{letter-spacing:18.830933pt;}
.ls1f{letter-spacing:18.833760pt;}
.ls5b{letter-spacing:18.862293pt;}
.ls3b{letter-spacing:18.945760pt;}
.ls3a{letter-spacing:18.948267pt;}
.ls5{letter-spacing:19.059627pt;}
.lsb3{letter-spacing:19.234432pt;}
.ls69{letter-spacing:19.249760pt;}
.ls45{letter-spacing:19.271093pt;}
.ls46{letter-spacing:19.273600pt;}
.lsda{letter-spacing:19.364384pt;}
.ls2a{letter-spacing:19.415093pt;}
.ls4b{letter-spacing:19.417600pt;}
.ls6e{letter-spacing:19.489760pt;}
.ls41{letter-spacing:19.521760pt;}
.ls40{letter-spacing:19.524267pt;}
.ls6a{letter-spacing:19.537760pt;}
.ls56{letter-spacing:19.560960pt;}
.ls55{letter-spacing:19.608960pt;}
.ls54{letter-spacing:19.612427pt;}
.ls38{letter-spacing:19.665760pt;}
.ls14{letter-spacing:19.710293pt;}
.ls5a{letter-spacing:19.918293pt;}
.lsa7{letter-spacing:20.001760pt;}
.ls5e{letter-spacing:20.152960pt;}
.ls23{letter-spacing:20.187008pt;}
.ls50{letter-spacing:20.225568pt;}
.ls5f{letter-spacing:20.228325pt;}
.ls7a{letter-spacing:20.609760pt;}
.ls20{letter-spacing:20.636427pt;}
.ls21{letter-spacing:20.638293pt;}
.lsbb{letter-spacing:20.658432pt;}
.ls15{letter-spacing:20.659627pt;}
.ls36{letter-spacing:20.664960pt;}
.ls3e{letter-spacing:20.904960pt;}
.ls10{letter-spacing:20.910293pt;}
.ls5d{letter-spacing:21.011627pt;}
.lsd{letter-spacing:21.105845pt;}
.lsae{letter-spacing:21.169760pt;}
.lsaf{letter-spacing:21.171627pt;}
.lsc6{letter-spacing:21.184107pt;}
.lsac{letter-spacing:21.317909pt;}
.ls4c{letter-spacing:21.463093pt;}
.ls4d{letter-spacing:21.464960pt;}
.ls42{letter-spacing:21.545600pt;}
.ls44{letter-spacing:21.548427pt;}
.ls43{letter-spacing:21.550933pt;}
.ls27{letter-spacing:21.804427pt;}
.lsab{letter-spacing:21.875627pt;}
.ls93{letter-spacing:21.960960pt;}
.lsf{letter-spacing:21.980427pt;}
.ls6c{letter-spacing:22.055093pt;}
.ls6d{letter-spacing:22.057600pt;}
.ls2f{letter-spacing:22.069675pt;}
.ls9d{letter-spacing:22.108427pt;}
.lsa2{letter-spacing:22.233600pt;}
.ls9a{letter-spacing:22.289760pt;}
.ls3f{letter-spacing:22.545760pt;}
.ls11{letter-spacing:22.568960pt;}
.ls2b{letter-spacing:22.788267pt;}
.ls26{letter-spacing:22.844427pt;}
.ls22{letter-spacing:22.849760pt;}
.ls4f{letter-spacing:22.872960pt;}
.ls8f{letter-spacing:22.979520pt;}
.lsb2{letter-spacing:23.196427pt;}
.ls31{letter-spacing:23.233760pt;}
.ls32{letter-spacing:23.379627pt;}
.ls98{letter-spacing:23.443627pt;}
.ls9c{letter-spacing:23.489760pt;}
.ls73{letter-spacing:23.502933pt;}
.ls2d{letter-spacing:23.527093pt;}
.lse{letter-spacing:23.761760pt;}
.ls57{letter-spacing:24.008960pt;}
.ls71{letter-spacing:24.244267pt;}
.ls90{letter-spacing:24.359179pt;}
.ls2e{letter-spacing:24.732427pt;}
.ls99{letter-spacing:24.936960pt;}
.ls65{letter-spacing:25.016960pt;}
.ls72{letter-spacing:25.076267pt;}
.ls9b{letter-spacing:25.143093pt;}
.lsb0{letter-spacing:25.249760pt;}
.ls49{letter-spacing:25.361760pt;}
.ls4a{letter-spacing:25.364267pt;}
.ls28{letter-spacing:25.436427pt;}
.ls6b{letter-spacing:25.756427pt;}
.ls3c{letter-spacing:25.838933pt;}
.ls6f{letter-spacing:25.863093pt;}
.ls7f{letter-spacing:25.884512pt;}
.lsad{letter-spacing:25.907627pt;}
.ls48{letter-spacing:25.908267pt;}
.ls47{letter-spacing:25.913600pt;}
.ls9e{letter-spacing:26.556427pt;}
.ls75{letter-spacing:26.903093pt;}
.ls74{letter-spacing:26.908427pt;}
.lsa4{letter-spacing:26.980267pt;}
.ls91{letter-spacing:27.015093pt;}
.lsa3{letter-spacing:28.092427pt;}
.ls96{letter-spacing:28.126293pt;}
.ls37{letter-spacing:28.257760pt;}
.ls3d{letter-spacing:28.311093pt;}
.ls81{letter-spacing:28.540427pt;}
.ls66{letter-spacing:29.241600pt;}
.lsb8{letter-spacing:29.506432pt;}
.lsbf{letter-spacing:30.194432pt;}
.lsc2{letter-spacing:32.039765pt;}
.ls12{letter-spacing:32.579627pt;}
.ls95{letter-spacing:32.584960pt;}
.ls64{letter-spacing:33.948427pt;}
.ls97{letter-spacing:34.419627pt;}
.lsbd{letter-spacing:37.613099pt;}
.ls13{letter-spacing:53.966293pt;}
.ls62{letter-spacing:85.384960pt;}
.ls85{letter-spacing:153.838933pt;}
.ls89{letter-spacing:187.924267pt;}
.ls8e{letter-spacing:237.460267pt;}
.lscc{letter-spacing:460.441629pt;}
.lsc7{letter-spacing:550.746827pt;}
.ws16e{word-spacing:-0.140616pt;}
.ws176{word-spacing:-0.117560pt;}
.wsf{word-spacing:-0.110203pt;}
.ws168{word-spacing:-0.102931pt;}
.ws18d{word-spacing:-0.089135pt;}
.ws16f{word-spacing:-0.086054pt;}
.ws177{word-spacing:-0.067872pt;}
.ws18a{word-spacing:-0.066699pt;}
.wsc{word-spacing:-0.058181pt;}
.ws2{word-spacing:-0.053136pt;}
.ws57{word-spacing:-0.042507pt;}
.ws171{word-spacing:-0.037195pt;}
.ws18c{word-spacing:-0.009112pt;}
.ws14{word-spacing:0.000000pt;}
.ws189{word-spacing:0.015454pt;}
.ws190{word-spacing:0.020295pt;}
.ws17b{word-spacing:8.794037pt;}
.ws181{word-spacing:8.799952pt;}
.ws183{word-spacing:8.820576pt;}
.ws23{word-spacing:9.599920pt;}
.ws109{word-spacing:9.623413pt;}
.ws82{word-spacing:9.626021pt;}
.ws108{word-spacing:9.626080pt;}
.wsa9{word-spacing:9.628325pt;}
.ws90{word-spacing:9.633157pt;}
.ws64{word-spacing:9.633968pt;}
.ws9f{word-spacing:9.638277pt;}
.wsb2{word-spacing:9.639184pt;}
.ws6a{word-spacing:9.639301pt;}
.wsb6{word-spacing:9.640773pt;}
.ws10c{word-spacing:9.653765pt;}
.ws59{word-spacing:9.658101pt;}
.wsa7{word-spacing:9.668736pt;}
.ws103{word-spacing:10.763547pt;}
.ws12f{word-spacing:11.424240pt;}
.ws3{word-spacing:11.774347pt;}
.ws145{word-spacing:11.849328pt;}
.ws11a{word-spacing:12.115008pt;}
.ws18f{word-spacing:12.221280pt;}
.ws18e{word-spacing:12.223056pt;}
.ws14b{word-spacing:12.274416pt;}
.ws27{word-spacing:12.308053pt;}
.wsd1{word-spacing:12.310080pt;}
.ws6d{word-spacing:12.311307pt;}
.ws6f{word-spacing:12.311360pt;}
.wsd0{word-spacing:12.313813pt;}
.wsf4{word-spacing:12.350400pt;}
.wsf3{word-spacing:12.355733pt;}
.ws80{word-spacing:12.392624pt;}
.ws15c{word-spacing:12.433824pt;}
.ws95{word-spacing:12.567168pt;}
.ws29{word-spacing:12.692053pt;}
.wsfa{word-spacing:12.741712pt;}
.ws129{word-spacing:12.752640pt;}
.wsf9{word-spacing:12.799893pt;}
.ws174{word-spacing:12.858912pt;}
.ws173{word-spacing:12.887429pt;}
.wse4{word-spacing:12.908640pt;}
.ws164{word-spacing:12.912048pt;}
.ws1a{word-spacing:12.916256pt;}
.ws154{word-spacing:12.965184pt;}
.ws20{word-spacing:12.974437pt;}
.wse8{word-spacing:13.012053pt;}
.ws11c{word-spacing:13.018320pt;}
.ws51{word-spacing:13.032619pt;}
.ws113{word-spacing:13.090800pt;}
.ws54{word-spacing:13.148981pt;}
.ws162{word-spacing:13.177728pt;}
.ws117{word-spacing:13.230864pt;}
.ws98{word-spacing:13.265344pt;}
.ws161{word-spacing:13.284000pt;}
.wse9{word-spacing:13.300053pt;}
.ws81{word-spacing:13.323525pt;}
.ws12c{word-spacing:13.337136pt;}
.ws170{word-spacing:13.363643pt;}
.ws53{word-spacing:13.381707pt;}
.ws12d{word-spacing:13.390272pt;}
.ws101{word-spacing:13.439888pt;}
.ws11d{word-spacing:13.443408pt;}
.ws153{word-spacing:13.549680pt;}
.wsac{word-spacing:13.556251pt;}
.ws137{word-spacing:13.602816pt;}
.ws41{word-spacing:13.614432pt;}
.ws172{word-spacing:13.655952pt;}
.ws10b{word-spacing:13.730795pt;}
.ws126{word-spacing:13.762224pt;}
.ws4d{word-spacing:13.788976pt;}
.ws125{word-spacing:13.789915pt;}
.ws127{word-spacing:13.815360pt;}
.wsdd{word-spacing:13.847157pt;}
.ws49{word-spacing:13.905339pt;}
.wsc3{word-spacing:13.956480pt;}
.wsc4{word-spacing:13.958080pt;}
.wsce{word-spacing:13.963520pt;}
.wseb{word-spacing:14.068053pt;}
.ws12{word-spacing:14.134176pt;}
.wsb1{word-spacing:14.138064pt;}
.ws121{word-spacing:14.240448pt;}
.ws122{word-spacing:14.293584pt;}
.ws8e{word-spacing:14.312608pt;}
.ws134{word-spacing:14.346720pt;}
.ws50{word-spacing:14.370789pt;}
.ws87{word-spacing:14.428971pt;}
.ws84{word-spacing:14.487152pt;}
.wsa3{word-spacing:14.545333pt;}
.ws1c{word-spacing:14.603515pt;}
.ws163{word-spacing:14.612400pt;}
.wsf2{word-spacing:14.661696pt;}
.ws13{word-spacing:14.665536pt;}
.ws0{word-spacing:14.718672pt;}
.ws18b{word-spacing:14.719056pt;}
.wsd5{word-spacing:14.719877pt;}
.ws130{word-spacing:14.824944pt;}
.wsee{word-spacing:14.836240pt;}
.ws166{word-spacing:14.878080pt;}
.ws111{word-spacing:14.894421pt;}
.wsfc{word-spacing:14.952603pt;}
.ws156{word-spacing:14.984352pt;}
.wsfb{word-spacing:15.010784pt;}
.ws193{word-spacing:15.037488pt;}
.ws60{word-spacing:15.068965pt;}
.wsc2{word-spacing:15.072747pt;}
.ws8d{word-spacing:15.127147pt;}
.ws4b{word-spacing:15.185328pt;}
.ws138{word-spacing:15.250032pt;}
.wsd8{word-spacing:15.301691pt;}
.ws135{word-spacing:15.356304pt;}
.wsa6{word-spacing:15.359872pt;}
.wsda{word-spacing:15.418053pt;}
.wsd{word-spacing:15.454384pt;}
.ws52{word-spacing:15.534416pt;}
.ws160{word-spacing:15.568848pt;}
.ws8b{word-spacing:15.592597pt;}
.ws131{word-spacing:15.621984pt;}
.ws21{word-spacing:15.625813pt;}
.wsd9{word-spacing:15.650779pt;}
.ws152{word-spacing:15.675120pt;}
.ws187{word-spacing:15.676005pt;}
.ws185{word-spacing:15.676192pt;}
.ws188{word-spacing:15.680000pt;}
.ws1f{word-spacing:15.708960pt;}
.ws143{word-spacing:15.728256pt;}
.wsde{word-spacing:15.767141pt;}
.ws12e{word-spacing:15.781392pt;}
.wse0{word-spacing:15.802021pt;}
.ws26{word-spacing:15.825323pt;}
.ws175{word-spacing:15.879349pt;}
.ws3a{word-spacing:15.883504pt;}
.ws150{word-spacing:15.887664pt;}
.ws186{word-spacing:15.918101pt;}
.ws184{word-spacing:15.923435pt;}
.ws128{word-spacing:15.940800pt;}
.ws4a{word-spacing:15.941685pt;}
.ws10{word-spacing:15.999867pt;}
.ws11{word-spacing:16.058048pt;}
.ws16a{word-spacing:16.100208pt;}
.ws169{word-spacing:16.100389pt;}
.ws5b{word-spacing:16.112917pt;}
.ws79{word-spacing:16.114021pt;}
.wsbb{word-spacing:16.114795pt;}
.wsba{word-spacing:16.114811pt;}
.wsb{word-spacing:16.116229pt;}
.ws56{word-spacing:16.174411pt;}
.ws1{word-spacing:16.190096pt;}
.ws159{word-spacing:16.206480pt;}
.ws93{word-spacing:16.232592pt;}
.ws31{word-spacing:16.290773pt;}
.ws19{word-spacing:16.348955pt;}
.ws85{word-spacing:16.407136pt;}
.ws89{word-spacing:16.465317pt;}
.ws151{word-spacing:16.472160pt;}
.wsc5{word-spacing:16.523499pt;}
.ws120{word-spacing:16.525296pt;}
.ws42{word-spacing:16.581680pt;}
.ws63{word-spacing:16.698043pt;}
.ws124{word-spacing:16.737840pt;}
.wsc9{word-spacing:16.756224pt;}
.ws123{word-spacing:16.790976pt;}
.ws9b{word-spacing:16.814405pt;}
.ws140{word-spacing:16.844112pt;}
.wsa8{word-spacing:16.872587pt;}
.ws94{word-spacing:16.930768pt;}
.ws4e{word-spacing:16.988949pt;}
.ws10a{word-spacing:17.047131pt;}
.wscd{word-spacing:17.071147pt;}
.ws13d{word-spacing:17.162928pt;}
.ws38{word-spacing:17.163493pt;}
.ws14a{word-spacing:17.216064pt;}
.ws17{word-spacing:17.221675pt;}
.ws15{word-spacing:17.279856pt;}
.ws9e{word-spacing:17.338037pt;}
.ws22{word-spacing:17.396219pt;}
.ws13f{word-spacing:17.428608pt;}
.wsaf{word-spacing:17.454400pt;}
.ws77{word-spacing:17.512581pt;}
.ws119{word-spacing:17.534880pt;}
.ws2a{word-spacing:17.570763pt;}
.ws67{word-spacing:17.628944pt;}
.ws13e{word-spacing:17.641152pt;}
.wsbc{word-spacing:17.687125pt;}
.ws1b{word-spacing:17.745307pt;}
.ws40{word-spacing:17.861669pt;}
.wse2{word-spacing:17.914981pt;}
.ws4f{word-spacing:17.919851pt;}
.ws7d{word-spacing:17.946533pt;}
.ws139{word-spacing:17.959968pt;}
.ws7e{word-spacing:17.978032pt;}
.ws1d{word-spacing:18.036213pt;}
.ws86{word-spacing:18.094395pt;}
.ws3b{word-spacing:18.152576pt;}
.ws33{word-spacing:18.210757pt;}
.ws55{word-spacing:18.268939pt;}
.ws179{word-spacing:18.278784pt;}
.ws17a{word-spacing:18.305339pt;}
.ws17d{word-spacing:18.305525pt;}
.ws17f{word-spacing:18.310672pt;}
.ws17c{word-spacing:18.311243pt;}
.ws92{word-spacing:18.327120pt;}
.ws178{word-spacing:18.329723pt;}
.ws180{word-spacing:18.331920pt;}
.ws182{word-spacing:18.350549pt;}
.wsa5{word-spacing:18.443483pt;}
.ws110{word-spacing:18.457813pt;}
.wsdf{word-spacing:18.471307pt;}
.ws3f{word-spacing:18.501664pt;}
.ws11b{word-spacing:18.544464pt;}
.ws43{word-spacing:18.559845pt;}
.ws28{word-spacing:18.618027pt;}
.wscb{word-spacing:18.676208pt;}
.wsa4{word-spacing:18.734389pt;}
.ws133{word-spacing:18.757008pt;}
.ws47{word-spacing:18.792571pt;}
.ws58{word-spacing:18.850752pt;}
.ws15a{word-spacing:18.863280pt;}
.ws71{word-spacing:18.908933pt;}
.ws76{word-spacing:18.967115pt;}
.ws5a{word-spacing:19.083477pt;}
.ws16c{word-spacing:19.128960pt;}
.wsc0{word-spacing:19.141659pt;}
.ws88{word-spacing:19.199840pt;}
.ws17e{word-spacing:19.203707pt;}
.ws30{word-spacing:19.258021pt;}
.ws192{word-spacing:19.288368pt;}
.ws191{word-spacing:19.289723pt;}
.wsc6{word-spacing:19.316203pt;}
.ws157{word-spacing:19.341504pt;}
.ws46{word-spacing:19.374384pt;}
.wsef{word-spacing:19.432565pt;}
.wsca{word-spacing:19.449813pt;}
.wse1{word-spacing:19.490747pt;}
.ws102{word-spacing:19.514021pt;}
.wsff{word-spacing:19.548928pt;}
.ws2f{word-spacing:19.607109pt;}
.wsae{word-spacing:19.665291pt;}
.wsd3{word-spacing:19.723472pt;}
.ws142{word-spacing:19.766592pt;}
.wsf8{word-spacing:19.781653pt;}
.ws37{word-spacing:19.839835pt;}
.wsa0{word-spacing:19.898016pt;}
.ws16b{word-spacing:19.926000pt;}
.wsd2{word-spacing:19.956197pt;}
.ws115{word-spacing:19.979136pt;}
.ws9d{word-spacing:19.988480pt;}
.ws18{word-spacing:20.014379pt;}
.ws48{word-spacing:20.072560pt;}
.ws5f{word-spacing:20.130741pt;}
.ws144{word-spacing:20.138544pt;}
.wsb0{word-spacing:20.188923pt;}
.ws167{word-spacing:20.244816pt;}
.wsf5{word-spacing:20.247104pt;}
.ws136{word-spacing:20.297952pt;}
.ws6b{word-spacing:20.305285pt;}
.wsb9{word-spacing:20.363467pt;}
.ws3d{word-spacing:20.421648pt;}
.ws15d{word-spacing:20.457360pt;}
.ws75{word-spacing:20.479829pt;}
.ws72{word-spacing:20.538011pt;}
.wse3{word-spacing:20.588640pt;}
.ws8c{word-spacing:20.596192pt;}
.ws78{word-spacing:20.654373pt;}
.ws4c{word-spacing:20.712555pt;}
.ws118{word-spacing:20.723040pt;}
.ws66{word-spacing:20.770736pt;}
.ws65{word-spacing:20.828917pt;}
.ws2b{word-spacing:21.003461pt;}
.ws2d{word-spacing:21.035787pt;}
.ws2e{word-spacing:21.061643pt;}
.ws44{word-spacing:21.178005pt;}
.ws45{word-spacing:21.236187pt;}
.ws158{word-spacing:21.254400pt;}
.ws3e{word-spacing:21.294368pt;}
.wsec{word-spacing:21.352549pt;}
.wsea{word-spacing:21.410731pt;}
.ws3c{word-spacing:21.468912pt;}
.wsad{word-spacing:21.527093pt;}
.ws112{word-spacing:21.585275pt;}
.wscc{word-spacing:21.643456pt;}
.ws16d{word-spacing:21.679488pt;}
.ws39{word-spacing:21.701637pt;}
.ws68{word-spacing:21.759819pt;}
.ws165{word-spacing:21.785760pt;}
.ws149{word-spacing:21.892032pt;}
.ws69{word-spacing:21.992544pt;}
.wsb8{word-spacing:22.050725pt;}
.ws36{word-spacing:22.108907pt;}
.ws74{word-spacing:22.167088pt;}
.ws99{word-spacing:22.225269pt;}
.ws2c{word-spacing:22.283451pt;}
.ws14f{word-spacing:22.317120pt;}
.wsd4{word-spacing:22.341632pt;}
.ws100{word-spacing:22.399813pt;}
.ws15b{word-spacing:22.423392pt;}
.ws24{word-spacing:22.457995pt;}
.ws10d{word-spacing:22.516176pt;}
.ws155{word-spacing:22.529664pt;}
.wsa1{word-spacing:22.569813pt;}
.ws8a{word-spacing:22.632539pt;}
.ws13a{word-spacing:22.689072pt;}
.ws61{word-spacing:22.690720pt;}
.ws34{word-spacing:22.748901pt;}
.wsbe{word-spacing:22.807083pt;}
.ws35{word-spacing:22.865264pt;}
.ws7c{word-spacing:22.923445pt;}
.ws146{word-spacing:22.954752pt;}
.wsd6{word-spacing:22.981627pt;}
.ws6c{word-spacing:23.039808pt;}
.ws96{word-spacing:23.097989pt;}
.wscf{word-spacing:23.156171pt;}
.ws116{word-spacing:23.167296pt;}
.wsa2{word-spacing:23.214352pt;}
.ws9c{word-spacing:23.272533pt;}
.ws104{word-spacing:23.388896pt;}
.wsed{word-spacing:23.505259pt;}
.ws10f{word-spacing:23.737813pt;}
.wsab{word-spacing:23.737984pt;}
.wsaa{word-spacing:23.796165pt;}
.wse5{word-spacing:23.841973pt;}
.ws106{word-spacing:23.850005pt;}
.ws16{word-spacing:23.854347pt;}
.wsdb{word-spacing:24.203435pt;}
.wsc7{word-spacing:24.261616pt;}
.wsf7{word-spacing:24.273632pt;}
.ws62{word-spacing:24.319797pt;}
.wsc1{word-spacing:24.436160pt;}
.ws83{word-spacing:24.494341pt;}
.ws5c{word-spacing:24.552523pt;}
.ws11f{word-spacing:24.601968pt;}
.ws7f{word-spacing:24.610704pt;}
.ws73{word-spacing:24.668885pt;}
.wsd7{word-spacing:24.727067pt;}
.ws7a{word-spacing:24.959792pt;}
.ws7b{word-spacing:25.017973pt;}
.wsbd{word-spacing:25.308880pt;}
.ws5d{word-spacing:25.367061pt;}
.wsfe{word-spacing:25.425243pt;}
.ws8f{word-spacing:25.541605pt;}
.ws97{word-spacing:25.599787pt;}
.ws5e{word-spacing:25.657968pt;}
.ws10e{word-spacing:25.716149pt;}
.wsf0{word-spacing:25.822277pt;}
.wsf1{word-spacing:25.832512pt;}
.ws105{word-spacing:26.071307pt;}
.ws1e{word-spacing:26.123419pt;}
.wse7{word-spacing:26.318821pt;}
.wsf6{word-spacing:26.356144pt;}
.ws114{word-spacing:26.490021pt;}
.ws107{word-spacing:26.521387pt;}
.wsbf{word-spacing:26.530688pt;}
.ws12b{word-spacing:26.780544pt;}
.wsdc{word-spacing:26.863147pt;}
.ws13b{word-spacing:27.046224pt;}
.wse6{word-spacing:27.345227pt;}
.ws14c{word-spacing:27.365040pt;}
.ws25{word-spacing:27.403408pt;}
.ws14d{word-spacing:27.471312pt;}
.wsc8{word-spacing:27.577952pt;}
.ws9a{word-spacing:27.679147pt;}
.wsfd{word-spacing:27.752496pt;}
.ws91{word-spacing:28.212480pt;}
.ws15e{word-spacing:29.331072pt;}
.ws11e{word-spacing:29.490480pt;}
.ws13c{word-spacing:29.968704pt;}
.wse{word-spacing:30.526139pt;}
.ws14e{word-spacing:30.659472pt;}
.ws132{word-spacing:30.765744pt;}
.wsb5{word-spacing:31.218240pt;}
.wsb4{word-spacing:31.233483pt;}
.wsb3{word-spacing:31.242048pt;}
.ws15f{word-spacing:33.422544pt;}
.ws141{word-spacing:34.910352pt;}
.ws12a{word-spacing:38.789280pt;}
.ws147{word-spacing:46.228320pt;}
.ws148{word-spacing:46.865952pt;}
.ws32{word-spacing:58.123152pt;}
.wsb7{word-spacing:65.337637pt;}
.wsa{word-spacing:67.854672pt;}
.ws5{word-spacing:86.044853pt;}
.ws4{word-spacing:121.024267pt;}
.ws6{word-spacing:178.155360pt;}
.ws9{word-spacing:208.672160pt;}
.ws7{word-spacing:267.728800pt;}
.ws8{word-spacing:279.894133pt;}
.ws70{word-spacing:1405.691627pt;}
.ws6e{word-spacing:1419.888907pt;}
._d{margin-left:-2295.889248pt;}
._32{margin-left:-2294.987616pt;}
._30{margin-left:-2278.930299pt;}
._b{margin-left:-2277.572069pt;}
._34{margin-left:-1838.215723pt;}
._44{margin-left:-1816.887952pt;}
._40{margin-left:-1669.949200pt;}
._21{margin-left:-1628.638597pt;}
._2a{margin-left:-1558.439856pt;}
._47{margin-left:-1260.624333pt;}
._4d{margin-left:-1247.117417pt;}
._31{margin-left:-1229.529109pt;}
._36{margin-left:-1058.822880pt;}
._4a{margin-left:-1053.921498pt;}
._3c{margin-left:-961.463525pt;}
._39{margin-left:-956.738987pt;}
._3a{margin-left:-932.509456pt;}
._3d{margin-left:-708.043568pt;}
._1c{margin-left:-605.935083pt;}
._20{margin-left:-583.360725pt;}
._1d{margin-left:-551.468981pt;}
._3e{margin-left:-498.335200pt;}
._45{margin-left:-466.494281pt;}
._49{margin-left:-390.003856pt;}
._52{margin-left:-383.675493pt;}
._23{margin-left:-308.395744pt;}
._46{margin-left:-285.685269pt;}
._4f{margin-left:-257.602946pt;}
._51{margin-left:-247.395094pt;}
._48{margin-left:-238.841849pt;}
._4b{margin-left:-200.974234pt;}
._50{margin-left:-127.655057pt;}
._4c{margin-left:-97.203225pt;}
._4e{margin-left:-95.523241pt;}
._43{margin-left:-10.149147pt;}
._f{margin-left:-8.939552pt;}
._29{margin-left:-7.881808pt;}
._18{margin-left:-6.574491pt;}
._2{margin-left:-5.102240pt;}
._4{margin-left:-3.400533pt;}
._1{margin-left:-1.700267pt;}
._3{width:1.277600pt;}
._7{width:2.481424pt;}
._35{width:3.657835pt;}
._0{width:5.913723pt;}
._2e{width:6.926352pt;}
._22{width:8.790059pt;}
._e{width:9.716283pt;}
._27{width:12.591936pt;}
._2f{width:13.642267pt;}
._5{width:14.772576pt;}
._1b{width:16.144635pt;}
._2d{width:17.646389pt;}
._8{width:18.703787pt;}
._6{width:20.027387pt;}
._11{width:20.958288pt;}
._1a{width:21.992544pt;}
._a{width:23.435285pt;}
._c{width:24.811264pt;}
._13{width:25.730331pt;}
._17{width:26.687515pt;}
._28{width:28.048224pt;}
._9{width:29.118613pt;}
._10{width:30.742000pt;}
._19{width:32.103088pt;}
._16{width:33.784197pt;}
._26{width:34.734256pt;}
._15{width:36.445099pt;}
._14{width:38.411472pt;}
._12{width:40.332672pt;}
._2c{width:41.524704pt;}
._38{width:42.556368pt;}
._37{width:43.952923pt;}
._25{width:44.957403pt;}
._2b{width:46.661429pt;}
._1f{width:48.040021pt;}
._24{width:49.867451pt;}
._33{width:52.187035pt;}
._42{width:54.835200pt;}
._1e{width:58.181333pt;}
._3f{width:59.515232pt;}
._3b{width:65.919259pt;}
._41{width:81.665163pt;}
.fs11{font-size:27.791340pt;}
.fsf{font-size:28.280111pt;}
.fs14{font-size:30.184570pt;}
.fs10{font-size:30.373050pt;}
.fse{font-size:30.907226pt;}
.fs9{font-size:31.882667pt;}
.fsd{font-size:35.855667pt;}
.fs13{font-size:37.139707pt;}
.fs8{font-size:37.194667pt;}
.fsc{font-size:39.186522pt;}
.fs12{font-size:40.589843pt;}
.fs3{font-size:42.506667pt;}
.fsb{font-size:42.887944pt;}
.fsa{font-size:46.872070pt;}
.fs1{font-size:53.136000pt;}
.fs6{font-size:55.792000pt;}
.fs4{font-size:58.181333pt;}
.fs2{font-size:58.448000pt;}
.fs5{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.fs7{font-size:110.202667pt;}
.y211{bottom:-110.842997pt;}
.y1f1{bottom:-102.118932pt;}
.y210{bottom:-87.453100pt;}
.y1f0{bottom:-79.537781pt;}
.y20f{bottom:-64.113856pt;}
.y1ef{bottom:-57.005531pt;}
.y20e{bottom:-40.774781pt;}
.y1ee{bottom:-34.473281pt;}
.y209{bottom:-31.636505pt;}
.y1fd{bottom:-30.166547pt;}
.y20d{bottom:-27.380048pt;}
.y208{bottom:-21.613399pt;}
.y1fc{bottom:-19.928528pt;}
.y20c{bottom:-13.985484pt;}
.y1ed{bottom:-11.941031pt;}
.y207{bottom:-11.552263pt;}
.y1fb{bottom:-9.729144pt;}
.y206{bottom:-3.237704pt;}
.y0{bottom:0.000000pt;}
.y215{bottom:17.359963pt;}
.y2c{bottom:25.128000pt;}
.y201{bottom:42.910667pt;}
.y1a0{bottom:44.025333pt;}
.y2b{bottom:48.564000pt;}
.y80{bottom:49.192000pt;}
.y116{bottom:50.905333pt;}
.y1f6{bottom:51.512000pt;}
.y13a{bottom:51.628000pt;}
.y14d{bottom:52.564000pt;}
.y1c1{bottom:53.282667pt;}
.y17d{bottom:53.313333pt;}
.y1e2{bottom:53.488000pt;}
.y166{bottom:53.838667pt;}
.ye1{bottom:56.602667pt;}
.y1eb{bottom:57.733333pt;}
.y65{bottom:58.632000pt;}
.y200{bottom:58.850667pt;}
.yfc{bottom:59.478667pt;}
.y19f{bottom:59.965333pt;}
.y128{bottom:61.744000pt;}
.y7f{bottom:67.257333pt;}
.y1f5{bottom:67.452000pt;}
.y115{bottom:68.970667pt;}
.y1c0{bottom:69.222667pt;}
.y1e1{bottom:69.428000pt;}
.y139{bottom:69.693333pt;}
.y14c{bottom:70.629333pt;}
.y17c{bottom:71.378667pt;}
.y165{bottom:71.904000pt;}
.y2a{bottom:72.062667pt;}
.y1ea{bottom:73.673333pt;}
.yc4{bottom:74.246667pt;}
.ye0{bottom:74.668000pt;}
.y1ff{bottom:74.790667pt;}
.y47{bottom:75.664000pt;}
.y19e{bottom:75.906667pt;}
.y20a{bottom:76.577333pt;}
.y64{bottom:76.697333pt;}
.yfb{bottom:77.544000pt;}
.y194{bottom:78.232000pt;}
.y10{bottom:78.813333pt;}
.y127{bottom:79.809333pt;}
.y1f4{bottom:83.393333pt;}
.yac{bottom:84.073333pt;}
.y1bf{bottom:85.162667pt;}
.y7e{bottom:85.324000pt;}
.y1e0{bottom:85.369333pt;}
.y17b{bottom:85.650667pt;}
.y114{bottom:87.036000pt;}
.y138{bottom:87.758667pt;}
.y14b{bottom:88.694667pt;}
.y1e9{bottom:89.613333pt;}
.y164{bottom:89.969333pt;}
.y17a{bottom:90.902667pt;}
.y19d{bottom:91.846667pt;}
.y1fe{bottom:92.194667pt;}
.yc3{bottom:92.313333pt;}
.ydf{bottom:92.733333pt;}
.y46{bottom:93.729333pt;}
.y63{bottom:94.762667pt;}
.y29{bottom:95.562667pt;}
.yfa{bottom:95.609333pt;}
.y193{bottom:96.297333pt;}
.y126{bottom:97.876000pt;}
.y1f3{bottom:99.333333pt;}
.y1be{bottom:101.102667pt;}
.y1df{bottom:101.309333pt;}
.y213{bottom:102.001333pt;}
.yab{bottom:102.140000pt;}
.y7d{bottom:103.389333pt;}
.y218{bottom:104.690667pt;}
.y113{bottom:105.102667pt;}
.y1e8{bottom:105.554667pt;}
.y205{bottom:105.801134pt;}
.y137{bottom:105.824000pt;}
.y14a{bottom:106.760000pt;}
.y179{bottom:107.192000pt;}
.yf{bottom:107.330667pt;}
.y163{bottom:108.034667pt;}
.y96{bottom:109.816000pt;}
.yc2{bottom:110.378667pt;}
.yde{bottom:110.800000pt;}
.y45{bottom:111.794667pt;}
.y178{bottom:112.444000pt;}
.y62{bottom:112.829333pt;}
.yf9{bottom:113.674667pt;}
.y192{bottom:114.364000pt;}
.y1f2{bottom:115.273333pt;}
.y125{bottom:115.941333pt;}
.y1bd{bottom:117.042667pt;}
.y1de{bottom:117.249333pt;}
.y212{bottom:117.941333pt;}
.yaa{bottom:120.205333pt;}
.y217{bottom:120.630667pt;}
.y1fa{bottom:121.417862pt;}
.y7c{bottom:121.454667pt;}
.y1e7{bottom:121.494667pt;}
.y19c{bottom:122.332000pt;}
.y112{bottom:123.168000pt;}
.y136{bottom:123.890667pt;}
.y149{bottom:124.825333pt;}
.y162{bottom:126.101333pt;}
.y177{bottom:127.049333pt;}
.y95{bottom:127.881333pt;}
.yc1{bottom:128.444000pt;}
.ydd{bottom:128.865333pt;}
.y28{bottom:129.482667pt;}
.y44{bottom:129.861333pt;}
.y61{bottom:130.894667pt;}
.yf8{bottom:131.741333pt;}
.y176{bottom:132.301333pt;}
.y191{bottom:132.429333pt;}
.y1bc{bottom:132.984000pt;}
.y1dd{bottom:133.189333pt;}
.y124{bottom:134.006667pt;}
.y216{bottom:136.570667pt;}
.y7b{bottom:139.520000pt;}
.y27{bottom:140.284000pt;}
.y111{bottom:141.233333pt;}
.y135{bottom:141.956000pt;}
.y148{bottom:142.892000pt;}
.ya8{bottom:143.074667pt;}
.y161{bottom:144.166667pt;}
.y1ec{bottom:144.497157pt;}
.ya9{bottom:144.806667pt;}
.ye{bottom:145.296000pt;}
.y94{bottom:145.946667pt;}
.yc0{bottom:146.509333pt;}
.ydc{bottom:146.930667pt;}
.y20b{bottom:147.162280pt;}
.y43{bottom:147.926667pt;}
.y175{bottom:148.590667pt;}
.ya7{bottom:148.897333pt;}
.y1bb{bottom:148.924000pt;}
.y60{bottom:148.960000pt;}
.y1dc{bottom:149.129333pt;}
.yf7{bottom:149.806667pt;}
.y190{bottom:150.494667pt;}
.y1e3{bottom:150.717246pt;}
.y123{bottom:152.072000pt;}
.y174{bottom:153.842667pt;}
.y26{bottom:156.225333pt;}
.y7a{bottom:157.585333pt;}
.y110{bottom:159.298667pt;}
.y134{bottom:160.021333pt;}
.y147{bottom:160.957333pt;}
.y160{bottom:162.232000pt;}
.y25{bottom:162.866667pt;}
.y93{bottom:164.012000pt;}
.ybf{bottom:164.574667pt;}
.y1ba{bottom:164.864000pt;}
.ydb{bottom:164.996000pt;}
.y1db{bottom:165.069333pt;}
.y214{bottom:165.794743pt;}
.y42{bottom:165.992000pt;}
.y5f{bottom:167.025333pt;}
.y18f{bottom:168.560000pt;}
.y19b{bottom:168.968000pt;}
.yf6{bottom:169.530667pt;}
.y122{bottom:170.137333pt;}
.ya6{bottom:170.600000pt;}
.ya5{bottom:170.780000pt;}
.y173{bottom:171.908000pt;}
.y24{bottom:172.165333pt;}
.yd{bottom:173.813333pt;}
.y79{bottom:175.652000pt;}
.ya4{bottom:176.602667pt;}
.y10f{bottom:177.364000pt;}
.y133{bottom:178.086667pt;}
.y146{bottom:179.022667pt;}
.y15f{bottom:180.297333pt;}
.y1b9{bottom:180.804000pt;}
.y1da{bottom:181.010667pt;}
.y92{bottom:182.078667pt;}
.ybe{bottom:182.641333pt;}
.yda{bottom:183.061333pt;}
.y41{bottom:184.057333pt;}
.y19a{bottom:184.908000pt;}
.y5e{bottom:185.090667pt;}
.y18e{bottom:186.625333pt;}
.y121{bottom:188.204000pt;}
.y172{bottom:189.974667pt;}
.yf5{bottom:190.454667pt;}
.y78{bottom:193.717333pt;}
.y23{bottom:194.746667pt;}
.y10e{bottom:195.430667pt;}
.y132{bottom:196.152000pt;}
.y1b8{bottom:196.744000pt;}
.y1d9{bottom:196.950667pt;}
.y145{bottom:197.088000pt;}
.y15e{bottom:198.362667pt;}
.ybd{bottom:200.706667pt;}
.y199{bottom:200.848000pt;}
.yd9{bottom:201.128000pt;}
.y40{bottom:202.122667pt;}
.yc{bottom:202.329333pt;}
.y5d{bottom:203.157333pt;}
.y18d{bottom:204.692000pt;}
.ya3{bottom:204.946667pt;}
.y22{bottom:205.376000pt;}
.y120{bottom:206.269333pt;}
.y171{bottom:208.040000pt;}
.yf4{bottom:208.521333pt;}
.ya2{bottom:208.538667pt;}
.y77{bottom:211.782667pt;}
.y1b7{bottom:212.684000pt;}
.y1d8{bottom:212.890667pt;}
.y10d{bottom:213.496000pt;}
.y131{bottom:214.218667pt;}
.y91{bottom:214.689333pt;}
.y144{bottom:215.153333pt;}
.y183{bottom:215.876000pt;}
.y15d{bottom:216.429333pt;}
.y198{bottom:216.788000pt;}
.ybc{bottom:218.772000pt;}
.yd8{bottom:219.193333pt;}
.y3f{bottom:220.189333pt;}
.y5c{bottom:221.222667pt;}
.y21{bottom:221.316000pt;}
.y18c{bottom:222.757333pt;}
.y204{bottom:225.548000pt;}
.y170{bottom:226.105333pt;}
.yf3{bottom:226.586667pt;}
.ya1{bottom:226.604000pt;}
.y20{bottom:227.957333pt;}
.y1b6{bottom:228.625333pt;}
.y1d7{bottom:228.830667pt;}
.y76{bottom:229.848000pt;}
.yb{bottom:230.846667pt;}
.y10c{bottom:231.561333pt;}
.y130{bottom:232.284000pt;}
.y197{bottom:232.729333pt;}
.y143{bottom:233.220000pt;}
.y182{bottom:233.942667pt;}
.y15c{bottom:234.494667pt;}
.ybb{bottom:236.837333pt;}
.yd7{bottom:237.258667pt;}
.y3e{bottom:238.254667pt;}
.y5b{bottom:239.288000pt;}
.y18b{bottom:240.822667pt;}
.y11f{bottom:242.660000pt;}
.y16f{bottom:244.170667pt;}
.y1b5{bottom:244.565333pt;}
.yf2{bottom:244.652000pt;}
.ya0{bottom:244.669333pt;}
.y1d6{bottom:244.770667pt;}
.y90{bottom:247.300000pt;}
.y196{bottom:248.669333pt;}
.y10b{bottom:249.626667pt;}
.y1f{bottom:250.185333pt;}
.y12f{bottom:250.349333pt;}
.y142{bottom:251.285333pt;}
.y181{bottom:252.008000pt;}
.y15b{bottom:252.560000pt;}
.yba{bottom:254.902667pt;}
.y1f9{bottom:255.217333pt;}
.yd6{bottom:255.324000pt;}
.y3d{bottom:256.320000pt;}
.y5a{bottom:257.353333pt;}
.y18a{bottom:258.888000pt;}
.y1b4{bottom:260.505333pt;}
.y1d5{bottom:260.710667pt;}
.y16e{bottom:262.236000pt;}
.y75{bottom:262.458667pt;}
.yf1{bottom:262.717333pt;}
.y9f{bottom:262.736000pt;}
.y195{bottom:264.609333pt;}
.y8f{bottom:265.365333pt;}
.y10a{bottom:267.692000pt;}
.y1e{bottom:268.252000pt;}
.y12e{bottom:268.414667pt;}
.ya{bottom:268.812000pt;}
.y141{bottom:269.350667pt;}
.y180{bottom:270.073333pt;}
.y15a{bottom:270.625333pt;}
.yb9{bottom:272.969333pt;}
.yd5{bottom:273.389333pt;}
.y3c{bottom:274.385333pt;}
.y59{bottom:275.418667pt;}
.y1b3{bottom:276.445333pt;}
.y1d4{bottom:276.652000pt;}
.y189{bottom:276.953333pt;}
.y16d{bottom:280.302667pt;}
.yf0{bottom:282.441333pt;}
.y8e{bottom:283.430667pt;}
.y109{bottom:285.758667pt;}
.y11e{bottom:286.609333pt;}
.y140{bottom:287.416000pt;}
.y12d{bottom:288.138667pt;}
.y58{bottom:288.233333pt;}
.y159{bottom:288.690667pt;}
.yd4{bottom:291.456000pt;}
.y1b2{bottom:292.385333pt;}
.y3b{bottom:292.450667pt;}
.y1d3{bottom:292.592000pt;}
.y57{bottom:293.485333pt;}
.y188{bottom:295.020000pt;}
.y9e{bottom:295.346667pt;}
.y8d{bottom:296.245333pt;}
.y9{bottom:297.329333pt;}
.y16c{bottom:298.368000pt;}
.yef{bottom:300.506667pt;}
.y8c{bottom:301.497333pt;}
.y108{bottom:303.824000pt;}
.y11d{bottom:304.674667pt;}
.y13f{bottom:305.481333pt;}
.yb8{bottom:305.580000pt;}
.y12c{bottom:306.204000pt;}
.y158{bottom:306.756000pt;}
.y1b1{bottom:308.325333pt;}
.y1d2{bottom:308.532000pt;}
.y1d{bottom:309.132000pt;}
.yd3{bottom:309.521333pt;}
.y74{bottom:309.616000pt;}
.y56{bottom:311.550667pt;}
.y187{bottom:313.085333pt;}
.y3a{bottom:313.376000pt;}
.y16b{bottom:316.433333pt;}
.yee{bottom:318.572000pt;}
.y107{bottom:321.889333pt;}
.y11c{bottom:322.740000pt;}
.y13e{bottom:323.548000pt;}
.y1b0{bottom:324.266667pt;}
.y1d1{bottom:324.472000pt;}
.y157{bottom:324.822667pt;}
.y8{bottom:325.846667pt;}
.y12b{bottom:325.928000pt;}
.yd2{bottom:327.586667pt;}
.y73{bottom:327.681333pt;}
.y9d{bottom:327.957333pt;}
.y55{bottom:329.616000pt;}
.y186{bottom:331.150667pt;}
.y39{bottom:331.441333pt;}
.y8b{bottom:334.108000pt;}
.yed{bottom:336.638667pt;}
.yb7{bottom:338.190667pt;}
.y106{bottom:339.954667pt;}
.y1af{bottom:340.206667pt;}
.y1d0{bottom:340.412000pt;}
.y11b{bottom:340.805333pt;}
.y13d{bottom:341.613333pt;}
.y1c{bottom:342.341333pt;}
.y156{bottom:342.888000pt;}
.y12a{bottom:343.994667pt;}
.y169{bottom:345.306667pt;}
.yd1{bottom:345.652000pt;}
.y72{bottom:345.746667pt;}
.y9c{bottom:346.022667pt;}
.y54{bottom:347.681333pt;}
.y185{bottom:349.216000pt;}
.y38{bottom:349.506667pt;}
.y7{bottom:354.362667pt;}
.yec{bottom:354.704000pt;}
.y1ae{bottom:356.146667pt;}
.y1cf{bottom:356.352000pt;}
.y105{bottom:358.020000pt;}
.y11a{bottom:358.872000pt;}
.y13c{bottom:359.678667pt;}
.y155{bottom:360.953333pt;}
.y129{bottom:362.060000pt;}
.yd0{bottom:363.717333pt;}
.y71{bottom:363.812000pt;}
.y9b{bottom:364.089333pt;}
.y203{bottom:365.501333pt;}
.y53{bottom:365.746667pt;}
.y8a{bottom:366.718667pt;}
.y184{bottom:367.281333pt;}
.y37{bottom:367.573333pt;}
.y168{bottom:367.726667pt;}
.y16a{bottom:369.032000pt;}
.y1ad{bottom:372.086667pt;}
.y1ce{bottom:372.293333pt;}
.yeb{bottom:372.769333pt;}
.y1b{bottom:375.549333pt;}
.y104{bottom:376.085333pt;}
.y119{bottom:376.937333pt;}
.y13b{bottom:377.744000pt;}
.y154{bottom:379.018667pt;}
.y17f{bottom:380.125333pt;}
.ycf{bottom:381.784000pt;}
.y70{bottom:381.878667pt;}
.y9a{bottom:382.154667pt;}
.y52{bottom:383.813333pt;}
.y89{bottom:384.784000pt;}
.yb6{bottom:385.348000pt;}
.y36{bottom:385.638667pt;}
.y1ac{bottom:388.026667pt;}
.y1cd{bottom:388.233333pt;}
.y167{bottom:390.197333pt;}
.yea{bottom:390.834667pt;}
.y118{bottom:395.002667pt;}
.y1f8{bottom:395.170667pt;}
.y103{bottom:395.809333pt;}
.y153{bottom:397.084000pt;}
.y17e{bottom:398.190667pt;}
.yce{bottom:399.849333pt;}
.y6f{bottom:399.944000pt;}
.y99{bottom:400.220000pt;}
.y51{bottom:401.878667pt;}
.y88{bottom:402.850667pt;}
.yb5{bottom:403.413333pt;}
.y35{bottom:403.704000pt;}
.y1ab{bottom:403.966667pt;}
.y1cc{bottom:404.173333pt;}
.y6{bottom:406.602667pt;}
.y1a{bottom:408.758667pt;}
.ye9{bottom:408.900000pt;}
.y102{bottom:413.876000pt;}
.y50{bottom:414.692000pt;}
.y152{bottom:415.150667pt;}
.ycd{bottom:417.914667pt;}
.y6e{bottom:418.009333pt;}
.y98{bottom:418.285333pt;}
.y1aa{bottom:419.908000pt;}
.y4f{bottom:419.944000pt;}
.y1cb{bottom:420.113333pt;}
.y1e6{bottom:420.355856pt;}
.y87{bottom:420.916000pt;}
.yb4{bottom:421.478667pt;}
.y34{bottom:421.769333pt;}
.y117{bottom:425.353333pt;}
.ye8{bottom:426.966667pt;}
.y101{bottom:431.941333pt;}
.y151{bottom:433.216000pt;}
.y1a9{bottom:435.848000pt;}
.ycc{bottom:435.980000pt;}
.y1ca{bottom:436.053333pt;}
.y6d{bottom:436.074667pt;}
.y5{bottom:436.138667pt;}
.y97{bottom:438.009333pt;}
.y86{bottom:438.981333pt;}
.yb3{bottom:439.544000pt;}
.y4e{bottom:439.668000pt;}
.y33{bottom:439.834667pt;}
.y19{bottom:444.412000pt;}
.ye7{bottom:445.032000pt;}
.y1e5{bottom:447.365886pt;}
.y100{bottom:450.006667pt;}
.y150{bottom:451.281333pt;}
.y1a8{bottom:451.788000pt;}
.y1c9{bottom:451.993333pt;}
.ycb{bottom:454.045333pt;}
.y6c{bottom:454.140000pt;}
.y4{bottom:454.337333pt;}
.y85{bottom:457.046667pt;}
.yb2{bottom:457.609333pt;}
.y4d{bottom:457.733333pt;}
.y32{bottom:457.900000pt;}
.ye6{bottom:463.097333pt;}
.y18{bottom:463.688000pt;}
.y1a7{bottom:467.728000pt;}
.y1c8{bottom:467.934667pt;}
.yff{bottom:468.072000pt;}
.y14f{bottom:469.346667pt;}
.yca{bottom:472.112000pt;}
.y6b{bottom:472.206667pt;}
.y3{bottom:472.536000pt;}
.y1e4{bottom:474.317327pt;}
.yb1{bottom:475.674667pt;}
.y4c{bottom:475.798667pt;}
.y31{bottom:475.966667pt;}
.ye5{bottom:481.162667pt;}
.y1a6{bottom:483.668000pt;}
.y1c7{bottom:483.874667pt;}
.yfe{bottom:486.137333pt;}
.y14e{bottom:487.412000pt;}
.y84{bottom:489.658667pt;}
.yc9{bottom:490.177333pt;}
.y6a{bottom:490.272000pt;}
.yb0{bottom:493.741333pt;}
.y4b{bottom:493.864000pt;}
.y30{bottom:494.032000pt;}
.y1a5{bottom:499.608000pt;}
.y1c6{bottom:499.814667pt;}
.ye4{bottom:500.886667pt;}
.yfd{bottom:504.204000pt;}
.y202{bottom:505.453333pt;}
.yc8{bottom:508.242667pt;}
.y69{bottom:508.337333pt;}
.y15{bottom:508.468000pt;}
.yaf{bottom:511.806667pt;}
.y4a{bottom:511.930667pt;}
.y2f{bottom:512.097333pt;}
.y1a4{bottom:515.549333pt;}
.y1c5{bottom:515.754667pt;}
.y2{bottom:516.492000pt;}
.ye3{bottom:518.952000pt;}
.y83{bottom:522.269333pt;}
.yc7{bottom:526.308000pt;}
.y68{bottom:526.402667pt;}
.y14{bottom:526.533333pt;}
.yae{bottom:529.872000pt;}
.y49{bottom:529.996000pt;}
.y2e{bottom:530.162667pt;}
.y1a3{bottom:531.489333pt;}
.y1c4{bottom:531.694667pt;}
.y1f7{bottom:535.122667pt;}
.y17{bottom:536.146667pt;}
.ye2{bottom:538.676000pt;}
.y82{bottom:540.334667pt;}
.y1{bottom:542.249333pt;}
.yc6{bottom:544.373333pt;}
.y67{bottom:544.468000pt;}
.y13{bottom:544.600000pt;}
.y1a2{bottom:547.429333pt;}
.y1c3{bottom:547.634667pt;}
.y16{bottom:554.213333pt;}
.y81{bottom:558.400000pt;}
.yc5{bottom:562.440000pt;}
.yad{bottom:562.482667pt;}
.y66{bottom:562.534667pt;}
.y48{bottom:562.606667pt;}
.y12{bottom:562.665333pt;}
.y2d{bottom:562.774667pt;}
.y1a1{bottom:563.369333pt;}
.y1c2{bottom:563.576000pt;}
.y11{bottom:576.938667pt;}
.h7{height:21.848427pt;}
.h10{height:27.412469pt;}
.h36{height:29.624504pt;}
.h32{height:29.809487pt;}
.h2f{height:30.333752pt;}
.h6{height:31.327413pt;}
.h2d{height:31.880000pt;}
.h2c{height:38.459428pt;}
.h8{height:38.683008pt;}
.h3{height:39.161232pt;}
.h34{height:39.836711pt;}
.h2a{height:39.852000pt;}
.h12{height:40.201232pt;}
.hb{height:40.616576pt;}
.h5{height:41.363899pt;}
.h11{height:41.369232pt;}
.h26{height:41.499216pt;}
.h9{height:42.879643pt;}
.h13{height:43.636000pt;}
.h4{height:43.836000pt;}
.h20{height:45.290309pt;}
.h19{height:45.295643pt;}
.h14{height:45.439621pt;}
.ha{height:45.652160pt;}
.h29{height:46.002374pt;}
.hd{height:46.308000pt;}
.h27{height:47.171179pt;}
.h17{height:52.636693pt;}
.h15{height:52.642027pt;}
.h30{height:53.983136pt;}
.h21{height:55.359413pt;}
.h1a{height:57.247643pt;}
.h2{height:57.384000pt;}
.h1b{height:58.138080pt;}
.h1f{height:59.242309pt;}
.he{height:60.415413pt;}
.hf{height:60.420747pt;}
.h16{height:63.887643pt;}
.h22{height:65.887413pt;}
.h23{height:66.090080pt;}
.h1d{height:66.890309pt;}
.h1c{height:71.180693pt;}
.h1e{height:71.186027pt;}
.h24{height:73.650027pt;}
.h18{height:81.423413pt;}
.h25{height:81.428747pt;}
.hc{height:82.652000pt;}
.h35{height:342.596563pt;}
.h33{height:363.383954pt;}
.h28{height:404.496203pt;}
.h31{height:411.724405pt;}
.h2b{height:417.989564pt;}
.h2e{height:425.776652pt;}
.h1{height:600.666667pt;}
.h0{height:600.944000pt;}
.w5{width:283.460852pt;}
.w4{width:291.021277pt;}
.w3{width:340.160805pt;}
.w6{width:377.953509pt;}
.w2{width:415.763076pt;}
.w7{width:491.342600pt;}
.w0{width:816.378667pt;}
.w1{width:816.666667pt;}
.x44{left:-32.715729pt;}
.x47{left:-19.930673pt;}
.x4f{left:-9.448639pt;}
.x49{left:-7.055733pt;}
.x4e{left:-2.581140pt;}
.x0{left:0.000000pt;}
.x43{left:1.852423pt;}
.x46{left:8.969387pt;}
.x50{left:20.486370pt;}
.x51{left:28.707224pt;}
.xf{left:37.796000pt;}
.x2d{left:39.685333pt;}
.x12{left:45.354667pt;}
.x37{left:51.078667pt;}
.x1e{left:52.341333pt;}
.x3a{left:61.932000pt;}
.x2e{left:64.169333pt;}
.x2f{left:65.390667pt;}
.x16{left:67.248000pt;}
.x3b{left:69.542667pt;}
.x13{left:94.340000pt;}
.x24{left:104.820000pt;}
.x42{left:105.826126pt;}
.x38{left:107.918667pt;}
.x31{left:111.026667pt;}
.x3d{left:117.334667pt;}
.x17{left:124.562667pt;}
.x14{left:137.176000pt;}
.x4a{left:141.029333pt;}
.x4b{left:142.506667pt;}
.x45{left:143.622826pt;}
.x48{left:150.770667pt;}
.x25{left:153.002667pt;}
.x27{left:154.777333pt;}
.x15{left:168.201333pt;}
.x4c{left:171.969283pt;}
.x26{left:188.816000pt;}
.x28{left:190.590667pt;}
.x1b{left:209.230667pt;}
.x3e{left:214.470667pt;}
.x40{left:227.840000pt;}
.x35{left:229.657333pt;}
.x18{left:232.914667pt;}
.x32{left:242.668000pt;}
.x1c{left:247.606667pt;}
.x36{left:251.682667pt;}
.x1f{left:265.085333pt;}
.x22{left:265.981333pt;}
.x19{left:283.125333pt;}
.x4d{left:285.317404pt;}
.x1d{left:301.570667pt;}
.x23{left:308.002667pt;}
.x33{left:314.566667pt;}
.x3f{left:319.270667pt;}
.x1a{left:369.520000pt;}
.x21{left:418.608000pt;}
.x2c{left:429.544000pt;}
.x20{left:432.077333pt;}
.x3c{left:440.432000pt;}
.x39{left:448.086667pt;}
.x34{left:463.604000pt;}
.x10{left:468.238667pt;}
.x11{left:495.704000pt;}
.x29{left:506.549333pt;}
.x2b{left:508.772000pt;}
.x2a{left:525.138667pt;}
.x41{left:560.821333pt;}
.x30{left:571.832000pt;}
.xe{left:614.224000pt;}
.x6{left:647.702667pt;}
.x3{left:650.029333pt;}
.x4{left:652.469333pt;}
.x9{left:653.954667pt;}
.x8{left:663.456000pt;}
.xa{left:667.690667pt;}
.x2{left:670.190667pt;}
.xd{left:671.186667pt;}
.xc{left:679.150667pt;}
.xb{left:680.672000pt;}
.x5{left:697.116000pt;}
.x1{left:700.638667pt;}
.x7{left:736.276000pt;}
}




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