
    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_bd004715835ccb18510f648e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d8afa0290386955a87bc99f4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7419a6bc39e843fca465236c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_1408fd3c3de66e0449433882.woff')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_0e6a261e63d1753a782e4b23.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5139a31fcd9d0c02fd5d690.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f2a7ddaff1315f6f5d60656f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ec989bd587352ffdcb299704.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3fa99ff9beecb5e2d61e65ab.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1abecd3e43944ac4f0545c90.woff')format("woff");}.ffa{font-family:ffa;line-height:0.913000;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_77cb8c9cda7b879e5733491c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_05b722db323192a1f002e758.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b3a8b6b612f8bf0d7b357492.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_29fecfd80af91d0cf7e49b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:2.410000;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_0216ea0744158f160f6a5edd.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_79b4dff7cdb2b1a03a012c91.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fcca2647faa6e4fb938655cb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.896000;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_f166ce68960229921308a5f1.woff')format("woff");}.ff12{font-family:ff12;line-height:0.683000;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_3645e6acfacd886f5464d6b0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.441000;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_76ea0a80aed2cc925102ac69.woff')format("woff");}.ff14{font-family:ff14;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-68.442000px;}
.ve{vertical-align:-49.086000px;}
.v1a{vertical-align:-28.830000px;}
.vf{vertical-align:-26.202000px;}
.v19{vertical-align:-22.854000px;}
.v9{vertical-align:-13.320000px;}
.v5{vertical-align:-9.816000px;}
.v10{vertical-align:-8.418000px;}
.vb{vertical-align:-7.236000px;}
.v2{vertical-align:-5.154000px;}
.v1{vertical-align:-4.152000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:13.620000px;}
.vc{vertical-align:16.878000px;}
.v12{vertical-align:18.912000px;}
.v3{vertical-align:22.854000px;}
.v7{vertical-align:27.024000px;}
.v15{vertical-align:35.280000px;}
.v4{vertical-align:44.286000px;}
.v13{vertical-align:62.184000px;}
.v18{vertical-align:63.810000px;}
.va{vertical-align:68.034000px;}
.v8{vertical-align:89.178000px;}
.v14{vertical-align:92.292000px;}
.v17{vertical-align:101.754000px;}
.v6{vertical-align:131.562000px;}
.v16{vertical-align:137.190000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000508px;}
.ls53{letter-spacing:0.000511px;}
.ls8c{letter-spacing:0.001238px;}
.ls8a{letter-spacing:0.001392px;}
.ls23{letter-spacing:0.001474px;}
.ls3{letter-spacing:0.001604px;}
.ls67{letter-spacing:0.001610px;}
.lse{letter-spacing:0.001613px;}
.ls95{letter-spacing:0.001920px;}
.ls6{letter-spacing:0.002158px;}
.ls5a{letter-spacing:0.002550px;}
.lsc{letter-spacing:0.002701px;}
.ls3a{letter-spacing:0.002770px;}
.ls74{letter-spacing:0.003239px;}
.ls65{letter-spacing:0.003242px;}
.ls6a{letter-spacing:0.003249px;}
.ls28{letter-spacing:0.003388px;}
.ls10{letter-spacing:0.003754px;}
.ls58{letter-spacing:0.003846px;}
.ls15{letter-spacing:0.004351px;}
.ls97{letter-spacing:0.004742px;}
.ls3b{letter-spacing:0.004923px;}
.ls59{letter-spacing:0.005261px;}
.lsf{letter-spacing:0.007507px;}
.ls3f{letter-spacing:0.011261px;}
.ls29{letter-spacing:0.016184px;}
.ls44{letter-spacing:0.017261px;}
.ls21{letter-spacing:0.017968px;}
.ls1a{letter-spacing:0.022184px;}
.ls1f{letter-spacing:0.023968px;}
.ls31{letter-spacing:0.028340px;}
.lsd{letter-spacing:0.033293px;}
.ls84{letter-spacing:0.034331px;}
.ls2a{letter-spacing:0.034340px;}
.ls41{letter-spacing:0.035397px;}
.ls7a{letter-spacing:0.040331px;}
.ls91{letter-spacing:0.040875px;}
.ls4d{letter-spacing:0.041397px;}
.ls5b{letter-spacing:0.049076px;}
.ls2e{letter-spacing:0.054513px;}
.ls5c{letter-spacing:0.055076px;}
.ls5{letter-spacing:0.055615px;}
.ls82{letter-spacing:0.061075px;}
.ls4{letter-spacing:0.061615px;}
.ls9{letter-spacing:0.664318px;}
.ls45{letter-spacing:1.722896px;}
.ls40{letter-spacing:1.728896px;}
.ls66{letter-spacing:2.371055px;}
.ls96{letter-spacing:2.465462px;}
.ls69{letter-spacing:2.984770px;}
.ls1b{letter-spacing:2.985388px;}
.ls43{letter-spacing:2.985754px;}
.ls3d{letter-spacing:2.986003px;}
.ls4f{letter-spacing:2.987261px;}
.ls2{letter-spacing:2.987366px;}
.ls5e{letter-spacing:2.987700px;}
.ls3e{letter-spacing:2.990035px;}
.ls88{letter-spacing:2.990544px;}
.ls4b{letter-spacing:2.990770px;}
.ls81{letter-spacing:2.990890px;}
.ls1d{letter-spacing:2.991388px;}
.ls4c{letter-spacing:2.993261px;}
.ls1c{letter-spacing:3.004184px;}
.ls2d{letter-spacing:3.010184px;}
.ls27{letter-spacing:4.228882px;}
.lsa{letter-spacing:4.943967px;}
.ls36{letter-spacing:7.172700px;}
.ls24{letter-spacing:7.178700px;}
.ls54{letter-spacing:7.181414px;}
.ls8d{letter-spacing:7.899571px;}
.ls50{letter-spacing:10.163261px;}
.ls55{letter-spacing:10.913414px;}
.lsb{letter-spacing:10.957076px;}
.ls19{letter-spacing:10.959776px;}
.ls87{letter-spacing:10.963076px;}
.ls42{letter-spacing:13.893388px;}
.ls93{letter-spacing:14.530921px;}
.ls49{letter-spacing:14.540700px;}
.ls7b{letter-spacing:14.545607px;}
.ls11{letter-spacing:14.546701px;}
.ls5d{letter-spacing:14.547225px;}
.ls5f{letter-spacing:14.547242px;}
.ls30{letter-spacing:14.549972px;}
.ls7e{letter-spacing:14.593076px;}
.ls12{letter-spacing:14.595776px;}
.ls7c{letter-spacing:14.599076px;}
.ls60{letter-spacing:14.599615px;}
.ls4a{letter-spacing:14.601776px;}
.ls13{letter-spacing:14.605615px;}
.ls7d{letter-spacing:16.919423px;}
.ls4e{letter-spacing:17.529109px;}
.ls2b{letter-spacing:17.529388px;}
.ls25{letter-spacing:17.531261px;}
.ls71{letter-spacing:17.534890px;}
.ls68{letter-spacing:17.537261px;}
.ls94{letter-spacing:18.178351px;}
.ls73{letter-spacing:18.178889px;}
.ls8f{letter-spacing:18.179417px;}
.ls6d{letter-spacing:18.181610px;}
.ls34{letter-spacing:18.184351px;}
.ls52{letter-spacing:18.186511px;}
.ls22{letter-spacing:18.231776px;}
.ls2f{letter-spacing:18.241615px;}
.ls8b{letter-spacing:18.451392px;}
.ls89{letter-spacing:18.457238px;}
.ls70{letter-spacing:21.170890px;}
.ls32{letter-spacing:21.171388px;}
.ls8e{letter-spacing:21.443366px;}
.ls80{letter-spacing:21.737968px;}
.ls85{letter-spacing:21.743968px;}
.ls14{letter-spacing:21.765776px;}
.ls1e{letter-spacing:21.791972px;}
.ls77{letter-spacing:21.793621px;}
.ls6f{letter-spacing:21.794143px;}
.ls8{letter-spacing:21.794701px;}
.ls63{letter-spacing:21.795225px;}
.ls62{letter-spacing:21.795242px;}
.ls37{letter-spacing:21.795778px;}
.ls38{letter-spacing:21.797972px;}
.ls76{letter-spacing:21.799621px;}
.ls20{letter-spacing:21.800158px;}
.ls78{letter-spacing:21.821968px;}
.ls7{letter-spacing:21.853615px;}
.ls6c{letter-spacing:24.169055px;}
.ls92{letter-spacing:24.173423px;}
.ls47{letter-spacing:24.782770px;}
.ls75{letter-spacing:24.782890px;}
.ls16{letter-spacing:24.783388px;}
.ls79{letter-spacing:24.785261px;}
.ls64{letter-spacing:24.785700px;}
.ls6e{letter-spacing:24.788550px;}
.ls39{letter-spacing:24.788770px;}
.ls18{letter-spacing:24.789388px;}
.ls90{letter-spacing:25.407776px;}
.ls26{letter-spacing:40.575776px;}
.ls1{letter-spacing:52.691261px;}
.ls7f{letter-spacing:63.539400px;}
.ls33{letter-spacing:76.411076px;}
.ls72{letter-spacing:76.417076px;}
.ls48{letter-spacing:105.303776px;}
.ls3c{letter-spacing:109.347776px;}
.ls57{letter-spacing:140.301776px;}
.ls86{letter-spacing:467.761076px;}
.ls83{letter-spacing:468.433076px;}
.ls35{letter-spacing:527.095076px;}
.ls61{letter-spacing:621.085076px;}
.ls56{letter-spacing:632.677076px;}
.ls51{letter-spacing:684.697076px;}
.ls2c{letter-spacing:730.319972px;}
.ls46{letter-spacing:744.547076px;}
.ls6b{letter-spacing:819.475076px;}
.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;}
}
.ws3c{word-spacing:-42.610945px;}
.ws28{word-spacing:-31.745481px;}
.ws32{word-spacing:-24.480020px;}
.ws1c{word-spacing:-20.084736px;}
.ws6{word-spacing:-18.327288px;}
.ws36{word-spacing:-15.063552px;}
.ws3d{word-spacing:-14.596376px;}
.ws24{word-spacing:-13.389768px;}
.ws20{word-spacing:-10.042368px;}
.ws2f{word-spacing:-3.225610px;}
.ws34{word-spacing:-0.147935px;}
.ws35{word-spacing:-0.143564px;}
.ws26{word-spacing:-0.065455px;}
.ws2c{word-spacing:-0.047821px;}
.ws7{word-spacing:0.000000px;}
.ws2e{word-spacing:0.506390px;}
.ws5d{word-spacing:1.963638px;}
.ws9{word-spacing:2.552729px;}
.ws10{word-spacing:2.618184px;}
.ws3f{word-spacing:2.618189px;}
.ws40{word-spacing:2.651923px;}
.ws0{word-spacing:2.654054px;}
.ws5b{word-spacing:2.749093px;}
.ws59{word-spacing:2.814548px;}
.ws29{word-spacing:2.945457px;}
.ws5c{word-spacing:3.010912px;}
.ws19{word-spacing:3.108331px;}
.wse{word-spacing:3.141821px;}
.wsb{word-spacing:3.168107px;}
.wsa{word-spacing:3.227904px;}
.ws8{word-spacing:3.299635px;}
.ws16{word-spacing:3.335501px;}
.ws38{word-spacing:3.388944px;}
.ws13{word-spacing:3.389299px;}
.ws4{word-spacing:3.403639px;}
.ws1e{word-spacing:3.405662px;}
.ws5a{word-spacing:3.463504px;}
.ws12{word-spacing:3.467097px;}
.ws33{word-spacing:3.468932px;}
.ws22{word-spacing:3.468993px;}
.ws2{word-spacing:3.469094px;}
.ws31{word-spacing:3.469479px;}
.ws30{word-spacing:3.470034px;}
.ws25{word-spacing:3.472060px;}
.ws3{word-spacing:3.490904px;}
.ws1{word-spacing:3.959551px;}
.ws3b{word-spacing:4.142390px;}
.ws3a{word-spacing:4.148390px;}
.ws11{word-spacing:4.647277px;}
.wsd{word-spacing:5.432732px;}
.wsf{word-spacing:5.629096px;}
.wsc{word-spacing:5.694550px;}
.ws2d{word-spacing:7.784390px;}
.ws37{word-spacing:11.395670px;}
.ws39{word-spacing:11.401670px;}
.ws23{word-spacing:11.811751px;}
.ws21{word-spacing:14.465467px;}
.ws2a{word-spacing:14.595776px;}
.ws1f{word-spacing:18.065470px;}
.ws1d{word-spacing:21.849776px;}
.ws27{word-spacing:33.709119px;}
.ws52{word-spacing:70.583501px;}
.ws48{word-spacing:71.928461px;}
.ws4f{word-spacing:88.201411px;}
.ws49{word-spacing:88.928755px;}
.ws5{word-spacing:90.288634px;}
.ws1a{word-spacing:90.289123px;}
.ws58{word-spacing:90.290237px;}
.ws4e{word-spacing:92.802240px;}
.ws50{word-spacing:101.835984px;}
.ws4b{word-spacing:101.845104px;}
.ws4a{word-spacing:106.520832px;}
.ws51{word-spacing:110.878502px;}
.ws47{word-spacing:111.524083px;}
.ws4d{word-spacing:113.217878px;}
.ws4c{word-spacing:113.245632px;}
.ws14{word-spacing:142.996147px;}
.ws15{word-spacing:193.120070px;}
.ws17{word-spacing:221.095968px;}
.ws46{word-spacing:227.221162px;}
.ws3e{word-spacing:244.854336px;}
.ws44{word-spacing:274.243162px;}
.ws2b{word-spacing:297.698103px;}
.ws41{word-spacing:298.340438px;}
.ws43{word-spacing:300.891302px;}
.ws42{word-spacing:373.963210px;}
.ws1b{word-spacing:389.068195px;}
.ws45{word-spacing:421.772938px;}
.ws54{word-spacing:502.898563px;}
.ws57{word-spacing:530.546563px;}
.ws53{word-spacing:538.785830px;}
.ws56{word-spacing:542.328595px;}
.ws55{word-spacing:542.331840px;}
.ws18{word-spacing:556.919933px;}
._3b{margin-left:-14.256255px;}
._a{margin-left:-4.821227px;}
._5{margin-left:-2.238007px;}
._6{margin-left:-1.075968px;}
._0{width:1.075968px;}
._4{width:2.324084px;}
._37{width:3.340705px;}
._38{width:14.770168px;}
._3a{width:18.139004px;}
._9{width:20.784532px;}
._c{width:22.782680px;}
._b{width:24.974963px;}
._6a{width:27.767098px;}
._7{width:29.061842px;}
._55{width:86.378705px;}
._5f{width:94.147200px;}
._1{width:100.331002px;}
._5e{width:103.400525px;}
._60{width:110.179123px;}
._57{width:121.584384px;}
._56{width:122.907818px;}
._59{width:125.673062px;}
._58{width:127.071821px;}
._5a{width:128.362982px;}
._5c{width:131.745859px;}
._5b{width:137.293517px;}
._54{width:141.059405px;}
._d{width:159.350861px;}
._40{width:161.267165px;}
._f{width:163.608192px;}
._53{width:168.688694px;}
._5d{width:170.191402px;}
._22{width:203.930621px;}
._14{width:208.183622px;}
._4e{width:219.189802px;}
._3d{width:250.229914px;}
._3{width:254.896704px;}
._1e{width:270.591245px;}
._41{width:278.941555px;}
._26{width:282.263760px;}
._11{width:284.416867px;}
._23{width:298.243622px;}
._17{width:301.899245px;}
._51{width:309.943114px;}
._1d{width:311.637206px;}
._18{width:312.874570px;}
._13{width:315.727622px;}
._1a{width:329.557622px;}
._20{width:349.293898px;}
._25{width:355.586640px;}
._16{width:360.433622px;}
._1f{width:374.254867px;}
._15{width:376.709556px;}
._47{width:384.633005px;}
._19{width:388.081622px;}
._52{width:395.284714px;}
._2{width:399.578170px;}
._12{width:401.905622px;}
._4d{width:410.008061px;}
._43{width:413.649389px;}
._50{width:415.209389px;}
._4f{width:434.171866px;}
._44{width:446.751408px;}
._46{width:451.308672px;}
._4c{width:458.211005px;}
._2e{width:460.190410px;}
._33{width:461.729038px;}
._31{width:464.149966px;}
._42{width:467.697274px;}
._3f{width:471.463594px;}
._4a{width:480.823987px;}
._45{width:487.352102px;}
._30{width:491.124490px;}
._3c{width:495.814913px;}
._1c{width:497.706535px;}
._1b{width:498.801840px;}
._48{width:508.937914px;}
._61{width:518.450035px;}
._49{width:526.681498px;}
._4b{width:535.642243px;}
._3e{width:541.775731px;}
._34{width:549.117974px;}
._66{width:553.020881px;}
._64{width:557.395392px;}
._e{width:558.849946px;}
._69{width:562.274206px;}
._39{width:565.683145px;}
._21{width:585.038486px;}
._65{width:591.295704px;}
._67{width:600.277402px;}
._2c{width:602.756170px;}
._28{width:603.885936px;}
._2a{width:605.177098px;}
._62{width:610.976035px;}
._2f{width:620.433127px;}
._32{width:643.943028px;}
._35{width:662.042006px;}
._68{width:671.604115px;}
._10{width:682.396442px;}
._63{width:699.990900px;}
._2d{width:968.584099px;}
._29{width:982.980545px;}
._2b{width:984.271706px;}
._24{width:989.732776px;}
._36{width:1149.863182px;}
._27{width:1218.025754px;}
._8{width:1449.814807px;}
.fc8{color:transparent;}
.fc6{color:rgb(233,224,245);}
.fc5{color:rgb(253,252,254);}
.fc4{color:rgb(144,99,205);}
.fc7{color:rgb(204,204,204);}
.fc3{color:rgb(244,239,250);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(163,152,179);}
.fs0{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs7{font-size:148.722600px;}
.y83{bottom:-34.336500px;}
.y0{bottom:0.000000px;}
.ya{bottom:4.479000px;}
.y82{bottom:10.473000px;}
.y9{bottom:18.910500px;}
.yce{bottom:35.269500px;}
.y61{bottom:36.144000px;}
.y85{bottom:36.918000px;}
.yc2{bottom:38.211000px;}
.yfe{bottom:39.826500px;}
.y6e{bottom:43.897500px;}
.ycf{bottom:44.074500px;}
.y62{bottom:49.314000px;}
.y131{bottom:49.375500px;}
.yf2{bottom:49.851000px;}
.ydd{bottom:55.020000px;}
.ycd{bottom:55.299000px;}
.y81{bottom:55.467000px;}
.y1a{bottom:56.311500px;}
.yfd{bottom:56.590500px;}
.y11{bottom:58.414500px;}
.yc1{bottom:58.534500px;}
.yf1{bottom:61.075500px;}
.y157{bottom:61.191000px;}
.y25{bottom:61.621500px;}
.y132{bottom:61.788000px;}
.y8d{bottom:64.231500px;}
.y63{bottom:65.383500px;}
.y128{bottom:72.756000px;}
.y43{bottom:73.042500px;}
.y134{bottom:73.600500px;}
.y108{bottom:73.719000px;}
.y136{bottom:74.314500px;}
.y170{bottom:74.325000px;}
.ydc{bottom:75.343500px;}
.y38{bottom:79.195500px;}
.yc0{bottom:81.006000px;}
.y156{bottom:81.514500px;}
.y24{bottom:81.945000px;}
.ycc{bottom:83.695500px;}
.y8{bottom:84.697500px;}
.y107{bottom:84.943500px;}
.y163{bottom:85.227000px;}
.yfc{bottom:85.881000px;}
.y17c{bottom:86.050500px;}
.y56{bottom:86.692500px;}
.y133{bottom:88.188000px;}
.y6d{bottom:88.707000px;}
.ybd{bottom:89.602500px;}
.ye7{bottom:92.727000px;}
.y16f{bottom:94.650000px;}
.ydb{bottom:95.667000px;}
.y127{bottom:95.770500px;}
.y41{bottom:96.240000px;}
.y137{bottom:96.415500px;}
.y2e{bottom:96.769500px;}
.y11d{bottom:98.928000px;}
.y80{bottom:99.046500px;}
.y37{bottom:99.519000px;}
.ybc{bottom:100.827000px;}
.yf0{bottom:100.986000px;}
.y155{bottom:101.838000px;}
.y10{bottom:103.224000px;}
.y97{bottom:103.600500px;}
.ycb{bottom:104.019000px;}
.y8c{bottom:104.991000px;}
.y162{bottom:105.550500px;}
.y17b{bottom:106.374000px;}
.y13f{bottom:108.957000px;}
.y149{bottom:109.264500px;}
.y11c{bottom:109.389000px;}
.y23{bottom:111.235500px;}
.y60{bottom:111.321000px;}
.y55{bottom:111.579000px;}
.y126{bottom:112.209000px;}
.yef{bottom:112.212000px;}
.ye6{bottom:113.050500px;}
.y135{bottom:113.721000px;}
.y16e{bottom:114.973500px;}
.yfb{bottom:115.171500px;}
.ybf{bottom:116.371500px;}
.y40{bottom:116.563500px;}
.y2d{bottom:117.094500px;}
.yaa{bottom:118.381500px;}
.y7f{bottom:119.371500px;}
.y11b{bottom:119.850000px;}
.y4a{bottom:121.152000px;}
.ybe{bottom:121.281000px;}
.y77{bottom:124.159500px;}
.y7{bottom:124.447500px;}
.y161{bottom:125.875500px;}
.y106{bottom:126.390000px;}
.y17a{bottom:126.697500px;}
.y154{bottom:126.949500px;}
.yad{bottom:126.978000px;}
.y96{bottom:127.080000px;}
.y54{bottom:128.017500px;}
.y5f{bottom:128.037000px;}
.y36{bottom:128.809500px;}
.y8b{bottom:129.219000px;}
.y13e{bottom:129.282000px;}
.y148{bottom:129.588000px;}
.y11a{bottom:130.311000px;}
.y18{bottom:130.663500px;}
.y22{bottom:131.559000px;}
.y130{bottom:132.177000px;}
.yda{bottom:132.429000px;}
.y6c{bottom:133.701000px;}
.y16d{bottom:135.297000px;}
.y125{bottom:137.094000px;}
.y2c{bottom:137.418000px;}
.y9f{bottom:137.500500px;}
.yae{bottom:138.202500px;}
.y95{bottom:138.304500px;}
.y7e{bottom:139.695000px;}
.yc9{bottom:141.403500px;}
.y49{bottom:141.475500px;}
.ybb{bottom:141.913500px;}
.y10e{bottom:142.009500px;}
.yca{bottom:142.452000px;}
.y105{bottom:142.828500px;}
.y53{bottom:144.454500px;}
.yfa{bottom:144.460500px;}
.y5e{bottom:144.475500px;}
.y76{bottom:144.483000px;}
.yac{bottom:144.690000px;}
.y3f{bottom:145.854000px;}
.y160{bottom:146.199000px;}
.yf3{bottom:146.383500px;}
.y179{bottom:147.021000px;}
.y153{bottom:147.274500px;}
.yf{bottom:148.218000px;}
.y12f{bottom:148.615500px;}
.y35{bottom:149.133000px;}
.y119{bottom:149.218500px;}
.yab{bottom:149.272500px;}
.ye5{bottom:149.293500px;}
.y13d{bottom:149.605500px;}
.y183{bottom:149.749500px;}
.y147{bottom:149.911500px;}
.y17{bottom:150.987000px;}
.y21{bottom:151.884000px;}
.y124{bottom:153.532500px;}
.ya9{bottom:153.748500px;}
.yd7{bottom:157.258500px;}
.y9b{bottom:157.321500px;}
.ya0{bottom:157.494000px;}
.y104{bottom:159.267000px;}
.ya8{bottom:159.522000px;}
.y118{bottom:159.679500px;}
.y7d{bottom:160.018500px;}
.y16c{bottom:160.536000px;}
.y9c{bottom:160.756500px;}
.yee{bottom:160.779000px;}
.y52{bottom:160.893000px;}
.y5d{bottom:160.912500px;}
.y6{bottom:161.994000px;}
.yba{bottom:162.238500px;}
.y12e{bottom:165.054000px;}
.y3e{bottom:166.177500px;}
.y15f{bottom:166.522500px;}
.y2b{bottom:166.707000px;}
.yd9{bottom:166.728000px;}
.y152{bottom:167.598000px;}
.ye2{bottom:169.114500px;}
.y182{bottom:170.073000px;}
.y117{bottom:170.140500px;}
.y146{bottom:170.235000px;}
.y8a{bottom:170.446500px;}
.y48{bottom:170.766000px;}
.y178{bottom:172.411500px;}
.y9e{bottom:172.866000px;}
.yf9{bottom:173.751000px;}
.y75{bottom:173.773500px;}
.y187{bottom:174.661500px;}
.y66{bottom:175.315500px;}
.y92{bottom:176.947500px;}
.y51{bottom:177.331500px;}
.y5c{bottom:177.351000px;}
.y9d{bottom:177.775500px;}
.yd6{bottom:177.952500px;}
.y123{bottom:178.417500px;}
.y34{bottom:178.423500px;}
.y6b{bottom:178.446000px;}
.y10d{bottom:178.771500px;}
.y13c{bottom:178.896000px;}
.y16{bottom:180.277500px;}
.y7c{bottom:180.342000px;}
.y16b{bottom:180.859500px;}
.y94{bottom:180.949500px;}
.yed{bottom:181.102500px;}
.y20{bottom:181.173000px;}
.y103{bottom:181.417500px;}
.ya2{bottom:181.446000px;}
.y12d{bottom:181.492500px;}
.yd5{bottom:182.043000px;}
.y5{bottom:182.317500px;}
.ye4{bottom:184.660500px;}
.y2a{bottom:187.032000px;}
.y151{bottom:187.921500px;}
.yb9{bottom:188.047500px;}
.ya7{bottom:188.404500px;}
.yc8{bottom:188.529000px;}
.yd8{bottom:189.022500px;}
.y116{bottom:189.048000px;}
.ye3{bottom:189.570000px;}
.y181{bottom:190.396500px;}
.ya1{bottom:191.022000px;}
.y47{bottom:191.089500px;}
.y93{bottom:191.676000px;}
.y15e{bottom:191.928000px;}
.y177{bottom:192.736500px;}
.ye{bottom:192.963000px;}
.y50{bottom:193.770000px;}
.y5b{bottom:193.789500px;}
.y74{bottom:194.097000px;}
.y122{bottom:194.856000px;}
.y186{bottom:194.985000px;}
.y89{bottom:195.253500px;}
.y3d{bottom:195.468000px;}
.y65{bottom:195.639000px;}
.y145{bottom:195.934500px;}
.y12c{bottom:197.931000px;}
.y33{bottom:198.747000px;}
.y10c{bottom:199.095000px;}
.y13b{bottom:199.219500px;}
.y115{bottom:199.509000px;}
.y15{bottom:200.601000px;}
.y16a{bottom:201.183000px;}
.yec{bottom:201.426000px;}
.y1f{bottom:201.498000px;}
.y7b{bottom:201.831000px;}
.y102{bottom:202.531500px;}
.y4{bottom:202.641000px;}
.yf8{bottom:203.041500px;}
.y29{bottom:207.355500px;}
.y150{bottom:208.245000px;}
.yb8{bottom:208.372500px;}
.ya6{bottom:208.728000px;}
.yc7{bottom:208.852500px;}
.y4f{bottom:210.208500px;}
.y5a{bottom:210.228000px;}
.y46{bottom:211.413000px;}
.y15d{bottom:212.251500px;}
.y176{bottom:213.060000px;}
.y12b{bottom:214.369500px;}
.y185{bottom:215.308500px;}
.y3c{bottom:215.791500px;}
.y144{bottom:216.258000px;}
.y180{bottom:216.559500px;}
.y114{bottom:218.416500px;}
.y9a{bottom:218.910000px;}
.y32{bottom:219.072000px;}
.y10b{bottom:219.418500px;}
.y121{bottom:219.741000px;}
.y88{bottom:220.060500px;}
.y91{bottom:220.218000px;}
.y169{bottom:221.508000px;}
.ye1{bottom:221.526000px;}
.yeb{bottom:221.749500px;}
.y6a{bottom:222.150000px;}
.yd4{bottom:223.318500px;}
.y73{bottom:223.386000px;}
.y64{bottom:224.929500px;}
.y14{bottom:225.408000px;}
.y4e{bottom:226.647000px;}
.y59{bottom:226.666500px;}
.yf7{bottom:227.848500px;}
.yb7{bottom:228.345000px;}
.y13a{bottom:228.510000px;}
.y113{bottom:228.876000px;}
.ya5{bottom:229.051500px;}
.y1e{bottom:230.787000px;}
.y15c{bottom:232.575000px;}
.y14f{bottom:233.358000px;}
.y175{bottom:233.383500px;}
.yc6{bottom:236.038500px;}
.y3b{bottom:236.115000px;}
.y120{bottom:236.179500px;}
.y143{bottom:236.581500px;}
.y28{bottom:236.646000px;}
.y17f{bottom:236.884500px;}
.yb4{bottom:236.941500px;}
.yb2{bottom:237.136500px;}
.yd{bottom:237.832500px;}
.y99{bottom:239.233500px;}
.y12a{bottom:239.254500px;}
.y112{bottom:239.337000px;}
.y10a{bottom:239.743500px;}
.y90{bottom:240.543000px;}
.y45{bottom:240.703500px;}
.ye0{bottom:241.849500px;}
.yea{bottom:242.073000px;}
.y4d{bottom:243.085500px;}
.y101{bottom:243.219000px;}
.y69{bottom:243.639000px;}
.yd3{bottom:243.642000px;}
.y72{bottom:243.711000px;}
.y87{bottom:244.867500px;}
.yc5{bottom:246.549000px;}
.y7a{bottom:246.700500px;}
.y168{bottom:246.747000px;}
.yb1{bottom:248.166000px;}
.y31{bottom:248.361000px;}
.yc3{bottom:248.386500px;}
.y139{bottom:248.833500px;}
.y184{bottom:249.082500px;}
.ya4{bottom:249.375000px;}
.y111{bottom:249.798000px;}
.y1d{bottom:251.112000px;}
.y58{bottom:251.551500px;}
.y15b{bottom:252.900000px;}
.y14e{bottom:253.681500px;}
.y174{bottom:253.707000px;}
.y13{bottom:254.698500px;}
.y142{bottom:256.905000px;}
.y27{bottom:256.969500px;}
.yf6{bottom:257.139000px;}
.y17e{bottom:257.208000px;}
.y129{bottom:258.435000px;}
.yb3{bottom:259.236000px;}
.y98{bottom:259.558500px;}
.y109{bottom:260.067000px;}
.y8f{bottom:260.866500px;}
.y3a{bottom:260.922000px;}
.y44{bottom:261.027000px;}
.y11f{bottom:261.064500px;}
.yc4{bottom:261.535500px;}
.ydf{bottom:262.174500px;}
.yb6{bottom:263.712000px;}
.yd2{bottom:263.967000px;}
.y3{bottom:264.262500px;}
.y167{bottom:267.070500px;}
.y4c{bottom:267.970500px;}
.y100{bottom:268.026000px;}
.yb5{bottom:268.621500px;}
.y30{bottom:268.686000px;}
.y110{bottom:268.705500px;}
.y138{bottom:269.157000px;}
.ya3{bottom:269.698500px;}
.y86{bottom:270.511500px;}
.y71{bottom:273.000000px;}
.y57{bottom:273.933000px;}
.y14d{bottom:274.005000px;}
.y141{bottom:277.230000px;}
.y26{bottom:277.293000px;}
.yf5{bottom:277.462500px;}
.y17d{bottom:277.531500px;}
.y15a{bottom:278.304000px;}
.ye9{bottom:278.836500px;}
.y173{bottom:279.097500px;}
.y1c{bottom:280.401000px;}
.y8e{bottom:281.190000px;}
.y39{bottom:281.245500px;}
.yde{bottom:282.498000px;}
.yc{bottom:282.576000px;}
.y11e{bottom:282.706500px;}
.yd1{bottom:284.290500px;}
.y10f{bottom:285.384000px;}
.y166{bottom:287.394000px;}
.y68{bottom:288.382500px;}
.y2f{bottom:289.009500px;}
.y4b{bottom:290.352000px;}
.y2{bottom:291.162000px;}
.y79{bottom:291.444000px;}
.yff{bottom:291.697500px;}
.y70{bottom:293.325000px;}
.y14c{bottom:294.328500px;}
.yb0{bottom:297.502500px;}
.y140{bottom:297.553500px;}
.y159{bottom:298.629000px;}
.y172{bottom:299.422500px;}
.y1b{bottom:300.726000px;}
.yf4{bottom:301.690500px;}
.yd0{bottom:304.614000px;}
.y165{bottom:307.717500px;}
.y19{bottom:311.856000px;}
.y42{bottom:312.036000px;}
.y84{bottom:312.234000px;}
.y14b{bottom:314.652000px;}
.ye8{bottom:315.598500px;}
.yaf{bottom:317.827500px;}
.y158{bottom:318.952500px;}
.y171{bottom:319.746000px;}
.yb{bottom:327.444000px;}
.y164{bottom:328.041000px;}
.y67{bottom:333.252000px;}
.y14a{bottom:334.977000px;}
.y78{bottom:336.312000px;}
.y12{bottom:352.498500px;}
.y6f{bottom:376.042500px;}
.y1{bottom:399.430500px;}
.h14{height:3.272730px;}
.h1f{height:17.173200px;}
.h17{height:25.643904px;}
.h2{height:26.899200px;}
.h15{height:34.191729px;}
.h5{height:35.865450px;}
.hf{height:40.348800px;}
.h18{height:45.621856px;}
.h12{height:46.865494px;}
.h16{height:49.090950px;}
.h10{height:49.753200px;}
.h9{height:51.791502px;}
.hd{height:52.004772px;}
.hb{height:52.049502px;}
.h8{height:52.283502px;}
.ha{height:52.289502px;}
.h21{height:52.751502px;}
.h7{height:52.787502px;}
.h6{height:52.793502px;}
.hc{height:53.798400px;}
.he{height:56.939502px;}
.h4{height:56.945502px;}
.h25{height:57.945729px;}
.h19{height:59.619450px;}
.h2a{height:60.225729px;}
.h1d{height:62.889450px;}
.h1b{height:62.895450px;}
.h3{height:64.557900px;}
.h22{height:65.456730px;}
.h23{height:95.564730px;}
.h1c{height:101.225502px;}
.h11{height:101.231502px;}
.h29{height:101.843502px;}
.h27{height:101.849502px;}
.h2c{height:103.213484px;}
.h2b{height:104.715450px;}
.h20{height:104.721450px;}
.h26{height:105.026730px;}
.h28{height:105.032730px;}
.h1e{height:111.811200px;}
.h13{height:134.834730px;}
.h24{height:140.462730px;}
.h1a{height:146.123502px;}
.h1{height:408.000000px;}
.h0{height:408.195000px;}
.w1{width:680.250000px;}
.w0{width:680.310000px;}
.x0{left:0.000000px;}
.x1{left:12.756000px;}
.x8{left:42.978000px;}
.xc{left:55.041000px;}
.x2{left:56.058000px;}
.xa{left:57.094500px;}
.x55{left:58.884000px;}
.x45{left:61.408500px;}
.x57{left:64.935000px;}
.x9{left:75.247500px;}
.x53{left:77.269500px;}
.x10{left:78.847500px;}
.x54{left:83.425500px;}
.xf{left:94.485000px;}
.x56{left:100.134000px;}
.x3{left:105.928500px;}
.xe{left:107.583000px;}
.x4c{left:115.912500px;}
.x4a{left:121.207500px;}
.x48{left:124.762500px;}
.x4e{left:126.793500px;}
.x49{left:130.657500px;}
.x52{left:132.979500px;}
.x4b{left:137.167500px;}
.x12{left:148.066500px;}
.x4d{left:155.458500px;}
.x4f{left:168.096000px;}
.x5{left:184.741500px;}
.x42{left:185.983500px;}
.x43{left:188.541000px;}
.x4{left:190.150500px;}
.x2d{left:195.193500px;}
.x50{left:198.666000px;}
.x41{left:201.990000px;}
.x3b{left:215.962500px;}
.x19{left:217.888500px;}
.x11{left:222.202500px;}
.xb{left:224.302500px;}
.x1a{left:233.907000px;}
.x46{left:237.688500px;}
.x16{left:239.374500px;}
.x18{left:240.798000px;}
.x6{left:247.000500px;}
.x32{left:249.555000px;}
.x3c{left:251.302500px;}
.xd{left:255.064500px;}
.x44{left:258.352500px;}
.x3e{left:265.560000px;}
.x51{left:271.839000px;}
.x37{left:273.819000px;}
.x28{left:279.037500px;}
.x13{left:280.407000px;}
.x7{left:286.360500px;}
.x34{left:292.311000px;}
.x23{left:301.047000px;}
.x24{left:303.238500px;}
.x2e{left:308.056500px;}
.x22{left:309.583500px;}
.x3d{left:311.518500px;}
.x1b{left:319.686000px;}
.x25{left:329.203500px;}
.x30{left:332.353500px;}
.x1d{left:334.003500px;}
.x26{left:336.747000px;}
.x2f{left:338.698500px;}
.x1c{left:341.356500px;}
.x38{left:343.899000px;}
.x29{left:346.440000px;}
.x27{left:350.181000px;}
.x31{left:356.526000px;}
.x1e{left:357.778500px;}
.x14{left:358.882500px;}
.x3f{left:363.321000px;}
.x39{left:366.588000px;}
.x2b{left:368.545500px;}
.x15{left:369.975000px;}
.x2a{left:377.082000px;}
.x40{left:382.350000px;}
.x47{left:387.108000px;}
.x2c{left:394.909500px;}
.x33{left:396.747000px;}
.x17{left:406.596000px;}
.x1f{left:415.717500px;}
.x35{left:417.732000px;}
.x3a{left:421.996500px;}
.x36{left:426.210000px;}
.x20{left:431.829000px;}
.x21{left:441.858000px;}
@media print{
.vd{vertical-align:-60.837333pt;}
.ve{vertical-align:-43.632000pt;}
.v1a{vertical-align:-25.626667pt;}
.vf{vertical-align:-23.290667pt;}
.v19{vertical-align:-20.314667pt;}
.v9{vertical-align:-11.840000pt;}
.v5{vertical-align:-8.725333pt;}
.v10{vertical-align:-7.482667pt;}
.vb{vertical-align:-6.432000pt;}
.v2{vertical-align:-4.581333pt;}
.v1{vertical-align:-3.690667pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:12.106667pt;}
.vc{vertical-align:15.002667pt;}
.v12{vertical-align:16.810667pt;}
.v3{vertical-align:20.314667pt;}
.v7{vertical-align:24.021333pt;}
.v15{vertical-align:31.360000pt;}
.v4{vertical-align:39.365333pt;}
.v13{vertical-align:55.274667pt;}
.v18{vertical-align:56.720000pt;}
.va{vertical-align:60.474667pt;}
.v8{vertical-align:79.269333pt;}
.v14{vertical-align:82.037333pt;}
.v17{vertical-align:90.448000pt;}
.v6{vertical-align:116.944000pt;}
.v16{vertical-align:121.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000452pt;}
.ls53{letter-spacing:0.000454pt;}
.ls8c{letter-spacing:0.001101pt;}
.ls8a{letter-spacing:0.001237pt;}
.ls23{letter-spacing:0.001310pt;}
.ls3{letter-spacing:0.001426pt;}
.ls67{letter-spacing:0.001431pt;}
.lse{letter-spacing:0.001434pt;}
.ls95{letter-spacing:0.001707pt;}
.ls6{letter-spacing:0.001918pt;}
.ls5a{letter-spacing:0.002267pt;}
.lsc{letter-spacing:0.002401pt;}
.ls3a{letter-spacing:0.002462pt;}
.ls74{letter-spacing:0.002879pt;}
.ls65{letter-spacing:0.002882pt;}
.ls6a{letter-spacing:0.002888pt;}
.ls28{letter-spacing:0.003012pt;}
.ls10{letter-spacing:0.003337pt;}
.ls58{letter-spacing:0.003419pt;}
.ls15{letter-spacing:0.003867pt;}
.ls97{letter-spacing:0.004215pt;}
.ls3b{letter-spacing:0.004376pt;}
.ls59{letter-spacing:0.004677pt;}
.lsf{letter-spacing:0.006673pt;}
.ls3f{letter-spacing:0.010010pt;}
.ls29{letter-spacing:0.014386pt;}
.ls44{letter-spacing:0.015343pt;}
.ls21{letter-spacing:0.015972pt;}
.ls1a{letter-spacing:0.019719pt;}
.ls1f{letter-spacing:0.021305pt;}
.ls31{letter-spacing:0.025191pt;}
.lsd{letter-spacing:0.029594pt;}
.ls84{letter-spacing:0.030516pt;}
.ls2a{letter-spacing:0.030524pt;}
.ls41{letter-spacing:0.031464pt;}
.ls7a{letter-spacing:0.035850pt;}
.ls91{letter-spacing:0.036333pt;}
.ls4d{letter-spacing:0.036797pt;}
.ls5b{letter-spacing:0.043623pt;}
.ls2e{letter-spacing:0.048456pt;}
.ls5c{letter-spacing:0.048956pt;}
.ls5{letter-spacing:0.049436pt;}
.ls82{letter-spacing:0.054289pt;}
.ls4{letter-spacing:0.054769pt;}
.ls9{letter-spacing:0.590505pt;}
.ls45{letter-spacing:1.531463pt;}
.ls40{letter-spacing:1.536796pt;}
.ls66{letter-spacing:2.107605pt;}
.ls96{letter-spacing:2.191522pt;}
.ls69{letter-spacing:2.653129pt;}
.ls1b{letter-spacing:2.653678pt;}
.ls43{letter-spacing:2.654003pt;}
.ls3d{letter-spacing:2.654225pt;}
.ls4f{letter-spacing:2.655343pt;}
.ls2{letter-spacing:2.655437pt;}
.ls5e{letter-spacing:2.655733pt;}
.ls3e{letter-spacing:2.657809pt;}
.ls88{letter-spacing:2.658261pt;}
.ls4b{letter-spacing:2.658462pt;}
.ls81{letter-spacing:2.658569pt;}
.ls1d{letter-spacing:2.659012pt;}
.ls4c{letter-spacing:2.660677pt;}
.ls1c{letter-spacing:2.670386pt;}
.ls2d{letter-spacing:2.675719pt;}
.ls27{letter-spacing:3.759006pt;}
.lsa{letter-spacing:4.394637pt;}
.ls36{letter-spacing:6.375733pt;}
.ls24{letter-spacing:6.381067pt;}
.ls54{letter-spacing:6.383479pt;}
.ls8d{letter-spacing:7.021841pt;}
.ls50{letter-spacing:9.034010pt;}
.ls55{letter-spacing:9.700813pt;}
.lsb{letter-spacing:9.739623pt;}
.ls19{letter-spacing:9.742023pt;}
.ls87{letter-spacing:9.744956pt;}
.ls42{letter-spacing:12.349678pt;}
.ls93{letter-spacing:12.916374pt;}
.ls49{letter-spacing:12.925067pt;}
.ls7b{letter-spacing:12.929428pt;}
.ls11{letter-spacing:12.930401pt;}
.ls5d{letter-spacing:12.930867pt;}
.ls5f{letter-spacing:12.930882pt;}
.ls30{letter-spacing:12.933308pt;}
.ls7e{letter-spacing:12.971623pt;}
.ls12{letter-spacing:12.974023pt;}
.ls7c{letter-spacing:12.976956pt;}
.ls60{letter-spacing:12.977436pt;}
.ls4a{letter-spacing:12.979356pt;}
.ls13{letter-spacing:12.982769pt;}
.ls7d{letter-spacing:15.039487pt;}
.ls4e{letter-spacing:15.581430pt;}
.ls2b{letter-spacing:15.581678pt;}
.ls25{letter-spacing:15.583343pt;}
.ls71{letter-spacing:15.586569pt;}
.ls68{letter-spacing:15.588677pt;}
.ls94{letter-spacing:16.158534pt;}
.ls73{letter-spacing:16.159013pt;}
.ls8f{letter-spacing:16.159482pt;}
.ls6d{letter-spacing:16.161431pt;}
.ls34{letter-spacing:16.163867pt;}
.ls52{letter-spacing:16.165787pt;}
.ls22{letter-spacing:16.206023pt;}
.ls2f{letter-spacing:16.214769pt;}
.ls8b{letter-spacing:16.401237pt;}
.ls89{letter-spacing:16.406434pt;}
.ls70{letter-spacing:18.818569pt;}
.ls32{letter-spacing:18.819012pt;}
.ls8e{letter-spacing:19.060770pt;}
.ls80{letter-spacing:19.322638pt;}
.ls85{letter-spacing:19.327972pt;}
.ls14{letter-spacing:19.347356pt;}
.ls1e{letter-spacing:19.370642pt;}
.ls77{letter-spacing:19.372108pt;}
.ls6f{letter-spacing:19.372572pt;}
.ls8{letter-spacing:19.373067pt;}
.ls63{letter-spacing:19.373533pt;}
.ls62{letter-spacing:19.373549pt;}
.ls37{letter-spacing:19.374025pt;}
.ls38{letter-spacing:19.375975pt;}
.ls76{letter-spacing:19.377441pt;}
.ls20{letter-spacing:19.377918pt;}
.ls78{letter-spacing:19.397305pt;}
.ls7{letter-spacing:19.425436pt;}
.ls6c{letter-spacing:21.483605pt;}
.ls92{letter-spacing:21.487487pt;}
.ls47{letter-spacing:22.029129pt;}
.ls75{letter-spacing:22.029235pt;}
.ls16{letter-spacing:22.029678pt;}
.ls79{letter-spacing:22.031343pt;}
.ls64{letter-spacing:22.031733pt;}
.ls6e{letter-spacing:22.034267pt;}
.ls39{letter-spacing:22.034462pt;}
.ls18{letter-spacing:22.035012pt;}
.ls90{letter-spacing:22.584690pt;}
.ls26{letter-spacing:36.067356pt;}
.ls1{letter-spacing:46.836677pt;}
.ls7f{letter-spacing:56.479467pt;}
.ls33{letter-spacing:67.920956pt;}
.ls72{letter-spacing:67.926290pt;}
.ls48{letter-spacing:93.603356pt;}
.ls3c{letter-spacing:97.198023pt;}
.ls57{letter-spacing:124.712690pt;}
.ls86{letter-spacing:415.787623pt;}
.ls83{letter-spacing:416.384956pt;}
.ls35{letter-spacing:468.528956pt;}
.ls61{letter-spacing:552.075623pt;}
.ls56{letter-spacing:562.379623pt;}
.ls51{letter-spacing:608.619623pt;}
.ls2c{letter-spacing:649.173308pt;}
.ls46{letter-spacing:661.819623pt;}
.ls6b{letter-spacing:728.422290pt;}
.ws3c{word-spacing:-37.876395pt;}
.ws28{word-spacing:-28.218205pt;}
.ws32{word-spacing:-21.760018pt;}
.ws1c{word-spacing:-17.853099pt;}
.ws6{word-spacing:-16.290923pt;}
.ws36{word-spacing:-13.389824pt;}
.ws3d{word-spacing:-12.974556pt;}
.ws24{word-spacing:-11.902016pt;}
.ws20{word-spacing:-8.926549pt;}
.ws2f{word-spacing:-2.867209pt;}
.ws34{word-spacing:-0.131498pt;}
.ws35{word-spacing:-0.127612pt;}
.ws26{word-spacing:-0.058182pt;}
.ws2c{word-spacing:-0.042507pt;}
.ws7{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.450125pt;}
.ws5d{word-spacing:1.745456pt;}
.ws9{word-spacing:2.269093pt;}
.ws10{word-spacing:2.327275pt;}
.ws3f{word-spacing:2.327279pt;}
.ws40{word-spacing:2.357265pt;}
.ws0{word-spacing:2.359159pt;}
.ws5b{word-spacing:2.443638pt;}
.ws59{word-spacing:2.501820pt;}
.ws29{word-spacing:2.618184pt;}
.ws5c{word-spacing:2.676366pt;}
.ws19{word-spacing:2.762961pt;}
.wse{word-spacing:2.792730pt;}
.wsb{word-spacing:2.816095pt;}
.wsa{word-spacing:2.869248pt;}
.ws8{word-spacing:2.933009pt;}
.ws16{word-spacing:2.964890pt;}
.ws38{word-spacing:3.012395pt;}
.ws13{word-spacing:3.012710pt;}
.ws4{word-spacing:3.025457pt;}
.ws1e{word-spacing:3.027255pt;}
.ws5a{word-spacing:3.078670pt;}
.ws12{word-spacing:3.081864pt;}
.ws33{word-spacing:3.083495pt;}
.ws22{word-spacing:3.083549pt;}
.ws2{word-spacing:3.083639pt;}
.ws31{word-spacing:3.083981pt;}
.ws30{word-spacing:3.084475pt;}
.ws25{word-spacing:3.086276pt;}
.ws3{word-spacing:3.103026pt;}
.ws1{word-spacing:3.519601pt;}
.ws3b{word-spacing:3.682125pt;}
.ws3a{word-spacing:3.687458pt;}
.ws11{word-spacing:4.130913pt;}
.wsd{word-spacing:4.829095pt;}
.wsf{word-spacing:5.003641pt;}
.wsc{word-spacing:5.061822pt;}
.ws2d{word-spacing:6.919458pt;}
.ws37{word-spacing:10.129485pt;}
.ws39{word-spacing:10.134818pt;}
.ws23{word-spacing:10.499334pt;}
.ws21{word-spacing:12.858193pt;}
.ws2a{word-spacing:12.974023pt;}
.ws1f{word-spacing:16.058195pt;}
.ws1d{word-spacing:19.422023pt;}
.ws27{word-spacing:29.963661pt;}
.ws52{word-spacing:62.740890pt;}
.ws48{word-spacing:63.936410pt;}
.ws4f{word-spacing:78.401254pt;}
.ws49{word-spacing:79.047782pt;}
.ws5{word-spacing:80.256563pt;}
.ws1a{word-spacing:80.256998pt;}
.ws58{word-spacing:80.257988pt;}
.ws4e{word-spacing:82.490880pt;}
.ws50{word-spacing:90.520875pt;}
.ws4b{word-spacing:90.528981pt;}
.ws4a{word-spacing:94.685184pt;}
.ws51{word-spacing:98.558669pt;}
.ws47{word-spacing:99.132518pt;}
.ws4d{word-spacing:100.638114pt;}
.ws4c{word-spacing:100.662784pt;}
.ws14{word-spacing:127.107686pt;}
.ws15{word-spacing:171.662285pt;}
.ws17{word-spacing:196.529749pt;}
.ws46{word-spacing:201.974366pt;}
.ws3e{word-spacing:217.648299pt;}
.ws44{word-spacing:243.771699pt;}
.ws2b{word-spacing:264.620536pt;}
.ws41{word-spacing:265.191501pt;}
.ws43{word-spacing:267.458935pt;}
.ws42{word-spacing:332.411742pt;}
.ws1b{word-spacing:345.838396pt;}
.ws45{word-spacing:374.909278pt;}
.ws54{word-spacing:447.020945pt;}
.ws57{word-spacing:471.596945pt;}
.ws53{word-spacing:478.920738pt;}
.ws56{word-spacing:482.069862pt;}
.ws55{word-spacing:482.072747pt;}
.ws18{word-spacing:495.039940pt;}
._3b{margin-left:-12.672227pt;}
._a{margin-left:-4.285535pt;}
._5{margin-left:-1.989340pt;}
._6{margin-left:-0.956416pt;}
._0{width:0.956416pt;}
._4{width:2.065853pt;}
._37{width:2.969515pt;}
._38{width:13.129038pt;}
._3a{width:16.123559pt;}
._9{width:18.475140pt;}
._c{width:20.251271pt;}
._b{width:22.199967pt;}
._6a{width:24.681865pt;}
._7{width:25.832749pt;}
._55{width:76.781071pt;}
._5f{width:83.686400pt;}
._1{width:89.183113pt;}
._5e{width:91.911578pt;}
._60{width:97.936998pt;}
._57{width:108.075008pt;}
._56{width:109.251394pt;}
._59{width:111.709389pt;}
._58{width:112.952730pt;}
._5a{width:114.100429pt;}
._5c{width:117.107430pt;}
._5b{width:122.038682pt;}
._54{width:125.386138pt;}
._d{width:141.645210pt;}
._40{width:143.348591pt;}
._f{width:145.429504pt;}
._53{width:149.945506pt;}
._5d{width:151.281246pt;}
._22{width:181.271663pt;}
._14{width:185.052109pt;}
._4e{width:194.835379pt;}
._3d{width:222.426590pt;}
._3{width:226.574848pt;}
._1e{width:240.525551pt;}
._41{width:247.948049pt;}
._26{width:250.901120pt;}
._11{width:252.814993pt;}
._23{width:265.105442pt;}
._17{width:268.354884pt;}
._51{width:275.504990pt;}
._1d{width:277.010850pt;}
._18{width:278.110729pt;}
._13{width:280.646775pt;}
._1a{width:292.940109pt;}
._20{width:310.483465pt;}
._25{width:316.077013pt;}
._16{width:320.385442pt;}
._1f{width:332.670993pt;}
._15{width:334.852939pt;}
._47{width:341.896004pt;}
._19{width:344.961442pt;}
._52{width:351.364190pt;}
._2{width:355.180595pt;}
._12{width:357.249442pt;}
._4d{width:364.451610pt;}
._43{width:367.688346pt;}
._50{width:369.075012pt;}
._4f{width:385.930547pt;}
._44{width:397.112363pt;}
._46{width:401.163264pt;}
._4c{width:407.298671pt;}
._2e{width:409.058142pt;}
._33{width:410.425811pt;}
._31{width:412.577747pt;}
._42{width:415.730910pt;}
._3f{width:419.078750pt;}
._4a{width:427.399100pt;}
._45{width:433.201869pt;}
._30{width:436.555102pt;}
._3c{width:440.724367pt;}
._1c{width:442.405809pt;}
._1b{width:443.379413pt;}
._48{width:452.389257pt;}
._61{width:460.844476pt;}
._49{width:468.161331pt;}
._4b{width:476.126438pt;}
._3e{width:481.578428pt;}
._34{width:488.104866pt;}
._66{width:491.574116pt;}
._64{width:495.462571pt;}
._e{width:496.755507pt;}
._69{width:499.799294pt;}
._39{width:502.829462pt;}
._21{width:520.034210pt;}
._65{width:525.596181pt;}
._67{width:533.579913pt;}
._2c{width:535.783262pt;}
._28{width:536.787499pt;}
._2a{width:537.935198pt;}
._62{width:543.089809pt;}
._2f{width:551.496113pt;}
._32{width:572.393803pt;}
._35{width:588.481783pt;}
._68{width:596.981436pt;}
._10{width:606.574615pt;}
._63{width:622.214133pt;}
._2d{width:860.963644pt;}
._29{width:873.760484pt;}
._2b{width:874.908183pt;}
._24{width:879.762468pt;}
._36{width:1022.100606pt;}
._27{width:1082.689559pt;}
._8{width:1288.724273pt;}
.fs0{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs7{font-size:132.197867pt;}
.y83{bottom:-30.521333pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.981333pt;}
.y82{bottom:9.309333pt;}
.y9{bottom:16.809333pt;}
.yce{bottom:31.350667pt;}
.y61{bottom:32.128000pt;}
.y85{bottom:32.816000pt;}
.yc2{bottom:33.965333pt;}
.yfe{bottom:35.401333pt;}
.y6e{bottom:39.020000pt;}
.ycf{bottom:39.177333pt;}
.y62{bottom:43.834667pt;}
.y131{bottom:43.889333pt;}
.yf2{bottom:44.312000pt;}
.ydd{bottom:48.906667pt;}
.ycd{bottom:49.154667pt;}
.y81{bottom:49.304000pt;}
.y1a{bottom:50.054667pt;}
.yfd{bottom:50.302667pt;}
.y11{bottom:51.924000pt;}
.yc1{bottom:52.030667pt;}
.yf1{bottom:54.289333pt;}
.y157{bottom:54.392000pt;}
.y25{bottom:54.774667pt;}
.y132{bottom:54.922667pt;}
.y8d{bottom:57.094667pt;}
.y63{bottom:58.118667pt;}
.y128{bottom:64.672000pt;}
.y43{bottom:64.926667pt;}
.y134{bottom:65.422667pt;}
.y108{bottom:65.528000pt;}
.y136{bottom:66.057333pt;}
.y170{bottom:66.066667pt;}
.ydc{bottom:66.972000pt;}
.y38{bottom:70.396000pt;}
.yc0{bottom:72.005333pt;}
.y156{bottom:72.457333pt;}
.y24{bottom:72.840000pt;}
.ycc{bottom:74.396000pt;}
.y8{bottom:75.286667pt;}
.y107{bottom:75.505333pt;}
.y163{bottom:75.757333pt;}
.yfc{bottom:76.338667pt;}
.y17c{bottom:76.489333pt;}
.y56{bottom:77.060000pt;}
.y133{bottom:78.389333pt;}
.y6d{bottom:78.850667pt;}
.ybd{bottom:79.646667pt;}
.ye7{bottom:82.424000pt;}
.y16f{bottom:84.133333pt;}
.ydb{bottom:85.037333pt;}
.y127{bottom:85.129333pt;}
.y41{bottom:85.546667pt;}
.y137{bottom:85.702667pt;}
.y2e{bottom:86.017333pt;}
.y11d{bottom:87.936000pt;}
.y80{bottom:88.041333pt;}
.y37{bottom:88.461333pt;}
.ybc{bottom:89.624000pt;}
.yf0{bottom:89.765333pt;}
.y155{bottom:90.522667pt;}
.y10{bottom:91.754667pt;}
.y97{bottom:92.089333pt;}
.ycb{bottom:92.461333pt;}
.y8c{bottom:93.325333pt;}
.y162{bottom:93.822667pt;}
.y17b{bottom:94.554667pt;}
.y13f{bottom:96.850667pt;}
.y149{bottom:97.124000pt;}
.y11c{bottom:97.234667pt;}
.y23{bottom:98.876000pt;}
.y60{bottom:98.952000pt;}
.y55{bottom:99.181333pt;}
.y126{bottom:99.741333pt;}
.yef{bottom:99.744000pt;}
.ye6{bottom:100.489333pt;}
.y135{bottom:101.085333pt;}
.y16e{bottom:102.198667pt;}
.yfb{bottom:102.374667pt;}
.ybf{bottom:103.441333pt;}
.y40{bottom:103.612000pt;}
.y2d{bottom:104.084000pt;}
.yaa{bottom:105.228000pt;}
.y7f{bottom:106.108000pt;}
.y11b{bottom:106.533333pt;}
.y4a{bottom:107.690667pt;}
.ybe{bottom:107.805333pt;}
.y77{bottom:110.364000pt;}
.y7{bottom:110.620000pt;}
.y161{bottom:111.889333pt;}
.y106{bottom:112.346667pt;}
.y17a{bottom:112.620000pt;}
.y154{bottom:112.844000pt;}
.yad{bottom:112.869333pt;}
.y96{bottom:112.960000pt;}
.y54{bottom:113.793333pt;}
.y5f{bottom:113.810667pt;}
.y36{bottom:114.497333pt;}
.y8b{bottom:114.861333pt;}
.y13e{bottom:114.917333pt;}
.y148{bottom:115.189333pt;}
.y11a{bottom:115.832000pt;}
.y18{bottom:116.145333pt;}
.y22{bottom:116.941333pt;}
.y130{bottom:117.490667pt;}
.yda{bottom:117.714667pt;}
.y6c{bottom:118.845333pt;}
.y16d{bottom:120.264000pt;}
.y125{bottom:121.861333pt;}
.y2c{bottom:122.149333pt;}
.y9f{bottom:122.222667pt;}
.yae{bottom:122.846667pt;}
.y95{bottom:122.937333pt;}
.y7e{bottom:124.173333pt;}
.yc9{bottom:125.692000pt;}
.y49{bottom:125.756000pt;}
.ybb{bottom:126.145333pt;}
.y10e{bottom:126.230667pt;}
.yca{bottom:126.624000pt;}
.y105{bottom:126.958667pt;}
.y53{bottom:128.404000pt;}
.yfa{bottom:128.409333pt;}
.y5e{bottom:128.422667pt;}
.y76{bottom:128.429333pt;}
.yac{bottom:128.613333pt;}
.y3f{bottom:129.648000pt;}
.y160{bottom:129.954667pt;}
.yf3{bottom:130.118667pt;}
.y179{bottom:130.685333pt;}
.y153{bottom:130.910667pt;}
.yf{bottom:131.749333pt;}
.y12f{bottom:132.102667pt;}
.y35{bottom:132.562667pt;}
.y119{bottom:132.638667pt;}
.yab{bottom:132.686667pt;}
.ye5{bottom:132.705333pt;}
.y13d{bottom:132.982667pt;}
.y183{bottom:133.110667pt;}
.y147{bottom:133.254667pt;}
.y17{bottom:134.210667pt;}
.y21{bottom:135.008000pt;}
.y124{bottom:136.473333pt;}
.ya9{bottom:136.665333pt;}
.yd7{bottom:139.785333pt;}
.y9b{bottom:139.841333pt;}
.ya0{bottom:139.994667pt;}
.y104{bottom:141.570667pt;}
.ya8{bottom:141.797333pt;}
.y118{bottom:141.937333pt;}
.y7d{bottom:142.238667pt;}
.y16c{bottom:142.698667pt;}
.y9c{bottom:142.894667pt;}
.yee{bottom:142.914667pt;}
.y52{bottom:143.016000pt;}
.y5d{bottom:143.033333pt;}
.y6{bottom:143.994667pt;}
.yba{bottom:144.212000pt;}
.y12e{bottom:146.714667pt;}
.y3e{bottom:147.713333pt;}
.y15f{bottom:148.020000pt;}
.y2b{bottom:148.184000pt;}
.yd9{bottom:148.202667pt;}
.y152{bottom:148.976000pt;}
.ye2{bottom:150.324000pt;}
.y182{bottom:151.176000pt;}
.y117{bottom:151.236000pt;}
.y146{bottom:151.320000pt;}
.y8a{bottom:151.508000pt;}
.y48{bottom:151.792000pt;}
.y178{bottom:153.254667pt;}
.y9e{bottom:153.658667pt;}
.yf9{bottom:154.445333pt;}
.y75{bottom:154.465333pt;}
.y187{bottom:155.254667pt;}
.y66{bottom:155.836000pt;}
.y92{bottom:157.286667pt;}
.y51{bottom:157.628000pt;}
.y5c{bottom:157.645333pt;}
.y9d{bottom:158.022667pt;}
.yd6{bottom:158.180000pt;}
.y123{bottom:158.593333pt;}
.y34{bottom:158.598667pt;}
.y6b{bottom:158.618667pt;}
.y10d{bottom:158.908000pt;}
.y13c{bottom:159.018667pt;}
.y16{bottom:160.246667pt;}
.y7c{bottom:160.304000pt;}
.y16b{bottom:160.764000pt;}
.y94{bottom:160.844000pt;}
.yed{bottom:160.980000pt;}
.y20{bottom:161.042667pt;}
.y103{bottom:161.260000pt;}
.ya2{bottom:161.285333pt;}
.y12d{bottom:161.326667pt;}
.yd5{bottom:161.816000pt;}
.y5{bottom:162.060000pt;}
.ye4{bottom:164.142667pt;}
.y2a{bottom:166.250667pt;}
.y151{bottom:167.041333pt;}
.yb9{bottom:167.153333pt;}
.ya7{bottom:167.470667pt;}
.yc8{bottom:167.581333pt;}
.yd8{bottom:168.020000pt;}
.y116{bottom:168.042667pt;}
.ye3{bottom:168.506667pt;}
.y181{bottom:169.241333pt;}
.ya1{bottom:169.797333pt;}
.y47{bottom:169.857333pt;}
.y93{bottom:170.378667pt;}
.y15e{bottom:170.602667pt;}
.y177{bottom:171.321333pt;}
.ye{bottom:171.522667pt;}
.y50{bottom:172.240000pt;}
.y5b{bottom:172.257333pt;}
.y74{bottom:172.530667pt;}
.y122{bottom:173.205333pt;}
.y186{bottom:173.320000pt;}
.y89{bottom:173.558667pt;}
.y3d{bottom:173.749333pt;}
.y65{bottom:173.901333pt;}
.y145{bottom:174.164000pt;}
.y12c{bottom:175.938667pt;}
.y33{bottom:176.664000pt;}
.y10c{bottom:176.973333pt;}
.y13b{bottom:177.084000pt;}
.y115{bottom:177.341333pt;}
.y15{bottom:178.312000pt;}
.y16a{bottom:178.829333pt;}
.yec{bottom:179.045333pt;}
.y1f{bottom:179.109333pt;}
.y7b{bottom:179.405333pt;}
.y102{bottom:180.028000pt;}
.y4{bottom:180.125333pt;}
.yf8{bottom:180.481333pt;}
.y29{bottom:184.316000pt;}
.y150{bottom:185.106667pt;}
.yb8{bottom:185.220000pt;}
.ya6{bottom:185.536000pt;}
.yc7{bottom:185.646667pt;}
.y4f{bottom:186.852000pt;}
.y5a{bottom:186.869333pt;}
.y46{bottom:187.922667pt;}
.y15d{bottom:188.668000pt;}
.y176{bottom:189.386667pt;}
.y12b{bottom:190.550667pt;}
.y185{bottom:191.385333pt;}
.y3c{bottom:191.814667pt;}
.y144{bottom:192.229333pt;}
.y180{bottom:192.497333pt;}
.y114{bottom:194.148000pt;}
.y9a{bottom:194.586667pt;}
.y32{bottom:194.730667pt;}
.y10b{bottom:195.038667pt;}
.y121{bottom:195.325333pt;}
.y88{bottom:195.609333pt;}
.y91{bottom:195.749333pt;}
.y169{bottom:196.896000pt;}
.ye1{bottom:196.912000pt;}
.yeb{bottom:197.110667pt;}
.y6a{bottom:197.466667pt;}
.yd4{bottom:198.505333pt;}
.y73{bottom:198.565333pt;}
.y64{bottom:199.937333pt;}
.y14{bottom:200.362667pt;}
.y4e{bottom:201.464000pt;}
.y59{bottom:201.481333pt;}
.yf7{bottom:202.532000pt;}
.yb7{bottom:202.973333pt;}
.y13a{bottom:203.120000pt;}
.y113{bottom:203.445333pt;}
.ya5{bottom:203.601333pt;}
.y1e{bottom:205.144000pt;}
.y15c{bottom:206.733333pt;}
.y14f{bottom:207.429333pt;}
.y175{bottom:207.452000pt;}
.yc6{bottom:209.812000pt;}
.y3b{bottom:209.880000pt;}
.y120{bottom:209.937333pt;}
.y143{bottom:210.294667pt;}
.y28{bottom:210.352000pt;}
.y17f{bottom:210.564000pt;}
.yb4{bottom:210.614667pt;}
.yb2{bottom:210.788000pt;}
.yd{bottom:211.406667pt;}
.y99{bottom:212.652000pt;}
.y12a{bottom:212.670667pt;}
.y112{bottom:212.744000pt;}
.y10a{bottom:213.105333pt;}
.y90{bottom:213.816000pt;}
.y45{bottom:213.958667pt;}
.ye0{bottom:214.977333pt;}
.yea{bottom:215.176000pt;}
.y4d{bottom:216.076000pt;}
.y101{bottom:216.194667pt;}
.y69{bottom:216.568000pt;}
.yd3{bottom:216.570667pt;}
.y72{bottom:216.632000pt;}
.y87{bottom:217.660000pt;}
.yc5{bottom:219.154667pt;}
.y7a{bottom:219.289333pt;}
.y168{bottom:219.330667pt;}
.yb1{bottom:220.592000pt;}
.y31{bottom:220.765333pt;}
.yc3{bottom:220.788000pt;}
.y139{bottom:221.185333pt;}
.y184{bottom:221.406667pt;}
.ya4{bottom:221.666667pt;}
.y111{bottom:222.042667pt;}
.y1d{bottom:223.210667pt;}
.y58{bottom:223.601333pt;}
.y15b{bottom:224.800000pt;}
.y14e{bottom:225.494667pt;}
.y174{bottom:225.517333pt;}
.y13{bottom:226.398667pt;}
.y142{bottom:228.360000pt;}
.y27{bottom:228.417333pt;}
.yf6{bottom:228.568000pt;}
.y17e{bottom:228.629333pt;}
.y129{bottom:229.720000pt;}
.yb3{bottom:230.432000pt;}
.y98{bottom:230.718667pt;}
.y109{bottom:231.170667pt;}
.y8f{bottom:231.881333pt;}
.y3a{bottom:231.930667pt;}
.y44{bottom:232.024000pt;}
.y11f{bottom:232.057333pt;}
.yc4{bottom:232.476000pt;}
.ydf{bottom:233.044000pt;}
.yb6{bottom:234.410667pt;}
.yd2{bottom:234.637333pt;}
.y3{bottom:234.900000pt;}
.y167{bottom:237.396000pt;}
.y4c{bottom:238.196000pt;}
.y100{bottom:238.245333pt;}
.yb5{bottom:238.774667pt;}
.y30{bottom:238.832000pt;}
.y110{bottom:238.849333pt;}
.y138{bottom:239.250667pt;}
.ya3{bottom:239.732000pt;}
.y86{bottom:240.454667pt;}
.y71{bottom:242.666667pt;}
.y57{bottom:243.496000pt;}
.y14d{bottom:243.560000pt;}
.y141{bottom:246.426667pt;}
.y26{bottom:246.482667pt;}
.yf5{bottom:246.633333pt;}
.y17d{bottom:246.694667pt;}
.y15a{bottom:247.381333pt;}
.ye9{bottom:247.854667pt;}
.y173{bottom:248.086667pt;}
.y1c{bottom:249.245333pt;}
.y8e{bottom:249.946667pt;}
.y39{bottom:249.996000pt;}
.yde{bottom:251.109333pt;}
.yc{bottom:251.178667pt;}
.y11e{bottom:251.294667pt;}
.yd1{bottom:252.702667pt;}
.y10f{bottom:253.674667pt;}
.y166{bottom:255.461333pt;}
.y68{bottom:256.340000pt;}
.y2f{bottom:256.897333pt;}
.y4b{bottom:258.090667pt;}
.y2{bottom:258.810667pt;}
.y79{bottom:259.061333pt;}
.yff{bottom:259.286667pt;}
.y70{bottom:260.733333pt;}
.y14c{bottom:261.625333pt;}
.yb0{bottom:264.446667pt;}
.y140{bottom:264.492000pt;}
.y159{bottom:265.448000pt;}
.y172{bottom:266.153333pt;}
.y1b{bottom:267.312000pt;}
.yf4{bottom:268.169333pt;}
.yd0{bottom:270.768000pt;}
.y165{bottom:273.526667pt;}
.y19{bottom:277.205333pt;}
.y42{bottom:277.365333pt;}
.y84{bottom:277.541333pt;}
.y14b{bottom:279.690667pt;}
.ye8{bottom:280.532000pt;}
.yaf{bottom:282.513333pt;}
.y158{bottom:283.513333pt;}
.y171{bottom:284.218667pt;}
.yb{bottom:291.061333pt;}
.y164{bottom:291.592000pt;}
.y67{bottom:296.224000pt;}
.y14a{bottom:297.757333pt;}
.y78{bottom:298.944000pt;}
.y12{bottom:313.332000pt;}
.y6f{bottom:334.260000pt;}
.y1{bottom:355.049333pt;}
.h14{height:2.909093pt;}
.h1f{height:15.265067pt;}
.h17{height:22.794581pt;}
.h2{height:23.910400pt;}
.h15{height:30.392648pt;}
.h5{height:31.880400pt;}
.hf{height:35.865600pt;}
.h18{height:40.552761pt;}
.h12{height:41.658217pt;}
.h16{height:43.636400pt;}
.h10{height:44.225067pt;}
.h9{height:46.036891pt;}
.hd{height:46.226464pt;}
.hb{height:46.266224pt;}
.h8{height:46.474224pt;}
.ha{height:46.479557pt;}
.h21{height:46.890224pt;}
.h7{height:46.922224pt;}
.h6{height:46.927557pt;}
.hc{height:47.820800pt;}
.he{height:50.612891pt;}
.h4{height:50.618224pt;}
.h25{height:51.507315pt;}
.h19{height:52.995067pt;}
.h2a{height:53.533981pt;}
.h1d{height:55.901733pt;}
.h1b{height:55.907067pt;}
.h3{height:57.384800pt;}
.h22{height:58.183760pt;}
.h23{height:84.946427pt;}
.h1c{height:89.978224pt;}
.h11{height:89.983557pt;}
.h29{height:90.527557pt;}
.h27{height:90.532891pt;}
.h2c{height:91.745319pt;}
.h2b{height:93.080400pt;}
.h20{height:93.085733pt;}
.h26{height:93.357093pt;}
.h28{height:93.362427pt;}
.h1e{height:99.387733pt;}
.h13{height:119.853093pt;}
.h24{height:124.855760pt;}
.h1a{height:129.887557pt;}
.h1{height:362.666667pt;}
.h0{height:362.840000pt;}
.w1{width:604.666667pt;}
.w0{width:604.720000pt;}
.x0{left:0.000000pt;}
.x1{left:11.338667pt;}
.x8{left:38.202667pt;}
.xc{left:48.925333pt;}
.x2{left:49.829333pt;}
.xa{left:50.750667pt;}
.x55{left:52.341333pt;}
.x45{left:54.585333pt;}
.x57{left:57.720000pt;}
.x9{left:66.886667pt;}
.x53{left:68.684000pt;}
.x10{left:70.086667pt;}
.x54{left:74.156000pt;}
.xf{left:83.986667pt;}
.x56{left:89.008000pt;}
.x3{left:94.158667pt;}
.xe{left:95.629333pt;}
.x4c{left:103.033333pt;}
.x4a{left:107.740000pt;}
.x48{left:110.900000pt;}
.x4e{left:112.705333pt;}
.x49{left:116.140000pt;}
.x52{left:118.204000pt;}
.x4b{left:121.926667pt;}
.x12{left:131.614667pt;}
.x4d{left:138.185333pt;}
.x4f{left:149.418667pt;}
.x5{left:164.214667pt;}
.x42{left:165.318667pt;}
.x43{left:167.592000pt;}
.x4{left:169.022667pt;}
.x2d{left:173.505333pt;}
.x50{left:176.592000pt;}
.x41{left:179.546667pt;}
.x3b{left:191.966667pt;}
.x19{left:193.678667pt;}
.x11{left:197.513333pt;}
.xb{left:199.380000pt;}
.x1a{left:207.917333pt;}
.x46{left:211.278667pt;}
.x16{left:212.777333pt;}
.x18{left:214.042667pt;}
.x6{left:219.556000pt;}
.x32{left:221.826667pt;}
.x3c{left:223.380000pt;}
.xd{left:226.724000pt;}
.x44{left:229.646667pt;}
.x3e{left:236.053333pt;}
.x51{left:241.634667pt;}
.x37{left:243.394667pt;}
.x28{left:248.033333pt;}
.x13{left:249.250667pt;}
.x7{left:254.542667pt;}
.x34{left:259.832000pt;}
.x23{left:267.597333pt;}
.x24{left:269.545333pt;}
.x2e{left:273.828000pt;}
.x22{left:275.185333pt;}
.x3d{left:276.905333pt;}
.x1b{left:284.165333pt;}
.x25{left:292.625333pt;}
.x30{left:295.425333pt;}
.x1d{left:296.892000pt;}
.x26{left:299.330667pt;}
.x2f{left:301.065333pt;}
.x1c{left:303.428000pt;}
.x38{left:305.688000pt;}
.x29{left:307.946667pt;}
.x27{left:311.272000pt;}
.x31{left:316.912000pt;}
.x1e{left:318.025333pt;}
.x14{left:319.006667pt;}
.x3f{left:322.952000pt;}
.x39{left:325.856000pt;}
.x2b{left:327.596000pt;}
.x15{left:328.866667pt;}
.x2a{left:335.184000pt;}
.x40{left:339.866667pt;}
.x47{left:344.096000pt;}
.x2c{left:351.030667pt;}
.x33{left:352.664000pt;}
.x17{left:361.418667pt;}
.x1f{left:369.526667pt;}
.x35{left:371.317333pt;}
.x3a{left:375.108000pt;}
.x36{left:378.853333pt;}
.x20{left:383.848000pt;}
.x21{left:392.762667pt;}
}




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