
    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_1a66e7202d0a3150bb803055.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960938;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_1544c19ea4091c1320f5aac0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_080eaa4ea890c65efdbf1722.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.980469;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_b3a4004d7bf226cd231f4b7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980469;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_313c47b0afe710ef68818caf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946289;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_1f59558fc47294704b2f5941.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.816406;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_06a379f94ca0a80aab37aba4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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_e5c22f5ccc0fbc9bbc8c1faf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_3fcad176458589fd582125b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.070312;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_382990938976a5ea7160740a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_f1167ed35506dbdf9be8bc5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_cb38981a261917e42a80c55d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_fbcba858b30c239ef948400e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_0793abae43f51900a55e68f8.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003906;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_cf04f268bd3c93f187ccebab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.720215;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_4339e72622bb9c25cb1fb729.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.946289;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_646273456bfe7cf43e01abea.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.099609;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_77bf8bff7b451c942ff69478.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.960000px;}
.v3{vertical-align:15.120000px;}
.ls2d{letter-spacing:-4.350000px;}
.lsf{letter-spacing:-1.050000px;}
.ls67{letter-spacing:-1.032000px;}
.ls56{letter-spacing:-1.026000px;}
.ls54{letter-spacing:-0.918000px;}
.ls60{letter-spacing:-0.912000px;}
.ls4f{letter-spacing:-0.786000px;}
.ls69{letter-spacing:-0.758939px;}
.lsd{letter-spacing:-0.720000px;}
.ls57{letter-spacing:-0.702000px;}
.ls4c{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.541200px;}
.ls2c{letter-spacing:-0.420600px;}
.ls4e{letter-spacing:-0.403200px;}
.ls66{letter-spacing:-0.322800px;}
.ls22{letter-spacing:-0.310800px;}
.ls3{letter-spacing:-0.306000px;}
.ls4b{letter-spacing:-0.305400px;}
.ls47{letter-spacing:-0.299400px;}
.ls4d{letter-spacing:-0.270600px;}
.ls1a{letter-spacing:-0.247800px;}
.ls3b{letter-spacing:-0.195600px;}
.ls61{letter-spacing:-0.190200px;}
.ls5e{letter-spacing:-0.166800px;}
.ls5b{letter-spacing:-0.115200px;}
.ls27{letter-spacing:-0.094800px;}
.ls5f{letter-spacing:-0.080400px;}
.ls21{letter-spacing:-0.075000px;}
.ls23{letter-spacing:-0.072000px;}
.ls68{letter-spacing:-0.069000px;}
.ls50{letter-spacing:-0.063600px;}
.ls38{letter-spacing:-0.046800px;}
.lse{letter-spacing:-0.028800px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.011520px;}
.ls55{letter-spacing:0.023040px;}
.ls59{letter-spacing:0.092400px;}
.ls8{letter-spacing:0.099360px;}
.ls44{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.172800px;}
.ls9{letter-spacing:0.178560px;}
.lsc{letter-spacing:0.178800px;}
.ls15{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.184200px;}
.ls1c{letter-spacing:0.184320px;}
.ls10{letter-spacing:0.190200px;}
.ls4a{letter-spacing:0.207600px;}
.ls25{letter-spacing:0.241800px;}
.ls2e{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.273600px;}
.ls6{letter-spacing:0.287280px;}
.ls29{letter-spacing:0.299520px;}
.lsa{letter-spacing:0.305280px;}
.ls11{letter-spacing:0.311040px;}
.ls53{letter-spacing:0.316800px;}
.ls14{letter-spacing:0.328320px;}
.ls48{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.342000px;}
.ls13{letter-spacing:0.345600px;}
.lsb{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.368400px;}
.ls24{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.657360px;}
.ls7{letter-spacing:0.670320px;}
.ls5{letter-spacing:0.720000px;}
.ls5d{letter-spacing:1.080000px;}
.ls65{letter-spacing:9.025920px;}
.ls40{letter-spacing:14.929920px;}
.ls1e{letter-spacing:15.120000px;}
.ls43{letter-spacing:15.137280px;}
.ls3c{letter-spacing:15.143040px;}
.ls3f{letter-spacing:15.212160px;}
.ls52{letter-spacing:15.263040px;}
.ls39{letter-spacing:15.436800px;}
.ls3d{letter-spacing:15.471360px;}
.ls49{letter-spacing:15.556800px;}
.ls58{letter-spacing:15.569280px;}
.ls5a{letter-spacing:15.672960px;}
.ls1d{letter-spacing:15.840000px;}
.ls41{letter-spacing:15.857280px;}
.ls3e{letter-spacing:15.863040px;}
.ls3a{letter-spacing:15.932160px;}
.ls51{letter-spacing:15.983040px;}
.ls45{letter-spacing:16.156800px;}
.ls42{letter-spacing:16.191360px;}
.ls16{letter-spacing:18.645120px;}
.ls1b{letter-spacing:19.365120px;}
.ls18{letter-spacing:19.681920px;}
.ls17{letter-spacing:20.961360px;}
.ls63{letter-spacing:42.865920px;}
.ls64{letter-spacing:43.585920px;}
.ls28{letter-spacing:67.345920px;}
.ls46{letter-spacing:848.280000px;}
.ls62{letter-spacing:848.340000px;}
.ls2b{letter-spacing:849.800640px;}
.ls1{letter-spacing:850.620000px;}
.ls31{letter-spacing:2187.552000px;}
.ls32{letter-spacing:2264.592000px;}
.ls33{letter-spacing:2291.232000px;}
.ls37{letter-spacing:2319.312000px;}
.ls34{letter-spacing:2412.912000px;}
.ls36{letter-spacing:2449.326000px;}
.ls35{letter-spacing:2464.032000px;}
.ls30{letter-spacing:2471.232000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(15,20,25),0 0.015em rgb(15,20,25),0.015em 0 rgb(15,20,25),0 -0.015em  rgb(15,20,25);}
.sc4{text-shadow:-0.015em 0 rgb(90,90,90),0 0.015em rgb(90,90,90),0.015em 0 rgb(90,90,90),0 -0.015em  rgb(90,90,90);}
.sc2{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(15,20,25);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(90,90,90);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-144.144000px;}
.ws3{word-spacing:-144.000000px;}
.ws31{word-spacing:-96.480000px;}
.ws9{word-spacing:-96.430320px;}
.ws28{word-spacing:-95.760000px;}
.ws5{word-spacing:-72.000000px;}
.ws67{word-spacing:-66.786636px;}
.wsb{word-spacing:-63.360000px;}
.wsd{word-spacing:-62.640000px;}
.ws2a{word-spacing:-60.480000px;}
.ws29{word-spacing:-60.417360px;}
.ws6{word-spacing:-54.720000px;}
.ws0{word-spacing:-54.000000px;}
.ws49{word-spacing:-48.332160px;}
.ws56{word-spacing:-48.309120px;}
.ws5b{word-spacing:-48.286080px;}
.ws52{word-spacing:-48.258240px;}
.ws30{word-spacing:-48.240000px;}
.ws45{word-spacing:-48.235200px;}
.ws43{word-spacing:-48.212160px;}
.ws4f{word-spacing:-48.198240px;}
.ws50{word-spacing:-48.175200px;}
.ws27{word-spacing:-48.167280px;}
.ws41{word-spacing:-48.166080px;}
.ws34{word-spacing:-48.143040px;}
.ws3e{word-spacing:-48.129120px;}
.ws53{word-spacing:-48.120000px;}
.ws37{word-spacing:-47.880000px;}
.ws4e{word-spacing:-47.635200px;}
.ws51{word-spacing:-47.612160px;}
.ws54{word-spacing:-47.589120px;}
.ws19{word-spacing:-47.566080px;}
.ws32{word-spacing:-47.520000px;}
.ws4d{word-spacing:-47.515200px;}
.ws4b{word-spacing:-47.501280px;}
.ws4c{word-spacing:-47.492160px;}
.ws44{word-spacing:-47.478240px;}
.ws57{word-spacing:-47.469120px;}
.ws48{word-spacing:-47.446080px;}
.ws1d{word-spacing:-47.423040px;}
.ws55{word-spacing:-47.409120px;}
.ws18{word-spacing:-47.385600px;}
.ws20{word-spacing:-47.363040px;}
.ws33{word-spacing:-46.800000px;}
.ws35{word-spacing:-46.080000px;}
.ws2d{word-spacing:-36.000000px;}
.ws1{word-spacing:-27.000000px;}
.ws2c{word-spacing:-20.088000px;}
.ws22{word-spacing:-20.016000px;}
.ws2b{word-spacing:-19.728000px;}
.ws46{word-spacing:-17.677440px;}
.ws38{word-spacing:-17.568240px;}
.ws64{word-spacing:-17.487360px;}
.ws5d{word-spacing:-17.453040px;}
.ws68{word-spacing:-17.424000px;}
.wsc{word-spacing:-17.360640px;}
.ws42{word-spacing:-17.297040px;}
.ws5e{word-spacing:-17.245440px;}
.ws36{word-spacing:-17.165040px;}
.ws59{word-spacing:-17.090040px;}
.ws39{word-spacing:-17.055240px;}
.ws21{word-spacing:-17.049840px;}
.ws65{word-spacing:-17.037840px;}
.ws3f{word-spacing:-16.957440px;}
.ws3a{word-spacing:-16.730640px;}
.ws58{word-spacing:-16.658640px;}
.ws2e{word-spacing:-16.613280px;}
.ws40{word-spacing:-16.574640px;}
.ws62{word-spacing:-16.448640px;}
.ws47{word-spacing:-16.442640px;}
.ws2f{word-spacing:-16.387200px;}
.ws4a{word-spacing:-16.334640px;}
.ws66{word-spacing:-16.328640px;}
.ws2{word-spacing:-14.796000px;}
.ws16{word-spacing:-14.284800px;}
.ws24{word-spacing:-14.181000px;}
.ws13{word-spacing:-14.129400px;}
.ws15{word-spacing:-14.118000px;}
.wse{word-spacing:-14.117760px;}
.ws10{word-spacing:-13.939200px;}
.wsf{word-spacing:-13.910400px;}
.ws17{word-spacing:-13.691400px;}
.ws25{word-spacing:-13.518600px;}
.ws23{word-spacing:-13.219200px;}
.ws12{word-spacing:-12.889200px;}
.ws11{word-spacing:-11.246400px;}
.ws26{word-spacing:-9.589200px;}
.ws1f{word-spacing:-3.306240px;}
.ws5a{word-spacing:-2.465280px;}
.ws5f{word-spacing:-2.430720px;}
.ws3c{word-spacing:-2.424960px;}
.ws61{word-spacing:-2.407680px;}
.ws5c{word-spacing:-1.745280px;}
.ws60{word-spacing:-1.687680px;}
.ws3b{word-spacing:-1.665600px;}
.ws63{word-spacing:-1.508760px;}
.ws3d{word-spacing:-1.250280px;}
.ws7{word-spacing:-0.630000px;}
.ws1a{word-spacing:-0.126720px;}
.ws8{word-spacing:0.000000px;}
.ws1c{word-spacing:0.593280px;}
.ws1b{word-spacing:3.467520px;}
.wsa{word-spacing:4.745520px;}
.ws1e{word-spacing:6.737520px;}
.ws14{word-spacing:6.761520px;}
._6{margin-left:-33.229920px;}
._5{margin-left:-32.093520px;}
._b{margin-left:-30.825120px;}
._2{margin-left:-27.240000px;}
._d{margin-left:-7.063200px;}
._4{margin-left:-5.148240px;}
._c{margin-left:-3.185520px;}
._3{margin-left:-2.154480px;}
._0{margin-left:-1.062000px;}
._1{width:1.902000px;}
._e{width:4.068720px;}
._a{width:15.064320px;}
._9{width:16.139040px;}
._7{width:17.470080px;}
._8{width:19.175520px;}
._11{width:1086.788160px;}
._f{width:1630.962000px;}
._10{width:2292.317760px;}
._12{width:2373.999360px;}
._13{width:2410.705440px;}
.fc6{color:rgb(15,20,25);}
.fc9{color:rgb(90,90,90);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(51,51,51);}
.fc4{color:rgb(127,127,127);}
.fc3{color:rgb(0,0,0);}
.fc5{color:rgb(91,155,213);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,112,192);}
.fs8{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fsb{font-size:66.786636px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:79.416000px;}
.y3{bottom:97.776000px;}
.y50{bottom:113.616000px;}
.y4f{bottom:116.856000px;}
.y16a{bottom:119.736000px;}
.y69{bottom:120.456000px;}
.yb4{bottom:120.636000px;}
.y119{bottom:127.296000px;}
.y155{bottom:128.016000px;}
.y32{bottom:131.076000px;}
.y121{bottom:131.796000px;}
.yd6{bottom:133.776000px;}
.y99{bottom:136.116000px;}
.y13c{bottom:136.656000px;}
.yec{bottom:139.176000px;}
.yb0{bottom:147.996000px;}
.y111{bottom:151.590000px;}
.y4e{bottom:151.950000px;}
.y169{bottom:154.830000px;}
.y7c{bottom:155.550000px;}
.y68{bottom:155.730000px;}
.yd8{bottom:157.170000px;}
.y100{bottom:158.070000px;}
.ye3{bottom:162.210000px;}
.y101{bottom:162.570000px;}
.y154{bottom:163.110000px;}
.yd5{bottom:163.470000px;}
.y31{bottom:166.170000px;}
.yeb{bottom:168.150000px;}
.y13b{bottom:170.850000px;}
.y98{bottom:171.210000px;}
.ydd{bottom:176.430000px;}
.y110{bottom:177.690000px;}
.ycc{bottom:180.570000px;}
.yd7{bottom:180.930000px;}
.yaf{bottom:182.910000px;}
.yff{bottom:183.270000px;}
.yc8{bottom:183.630000px;}
.ye5{bottom:183.810000px;}
.yf5{bottom:184.530000px;}
.y103{bottom:185.610000px;}
.y114{bottom:185.790000px;}
.y4d{bottom:187.050000px;}
.yf2{bottom:188.850000px;}
.y168{bottom:189.930000px;}
.y7b{bottom:190.650000px;}
.y67{bottom:190.830000px;}
.y153{bottom:198.210000px;}
.ye7{bottom:199.290000px;}
.yf9{bottom:199.830000px;}
.yea{bottom:200.190000px;}
.yfc{bottom:200.370000px;}
.ydf{bottom:200.730000px;}
.y30{bottom:201.270000px;}
.yd3{bottom:201.450000px;}
.yfd{bottom:201.630000px;}
.ydb{bottom:203.970000px;}
.y13a{bottom:205.950000px;}
.y97{bottom:206.310000px;}
.ycb{bottom:207.210000px;}
.yd2{bottom:208.470000px;}
.yfe{bottom:209.010000px;}
.y11e{bottom:209.370000px;}
.y104{bottom:210.090000px;}
.y113{bottom:210.630000px;}
.y116{bottom:211.890000px;}
.y11b{bottom:213.510000px;}
.yf1{bottom:214.590000px;}
.y118{bottom:214.950000px;}
.yae{bottom:218.010000px;}
.y4c{bottom:221.970000px;}
.yfb{bottom:223.230000px;}
.y167{bottom:225.390000px;}
.y9e{bottom:225.750000px;}
.y66{bottom:225.930000px;}
.yda{bottom:226.830000px;}
.yd0{bottom:227.370000px;}
.yf7{bottom:231.870000px;}
.y11d{bottom:232.590000px;}
.y152{bottom:233.310000px;}
.y2f{bottom:236.370000px;}
.y96{bottom:241.410000px;}
.y139{bottom:241.950000px;}
.yc5{bottom:242.670000px;}
.y117{bottom:246.990000px;}
.y107{bottom:250.770000px;}
.yad{bottom:253.290000px;}
.yce{bottom:254.190000px;}
.y11c{bottom:254.550000px;}
.ycf{bottom:255.270000px;}
.ydc{bottom:255.450000px;}
.y4b{bottom:257.070000px;}
.y7a{bottom:260.130000px;}
.y166{bottom:260.490000px;}
.y9d{bottom:260.850000px;}
.y65{bottom:261.030000px;}
.y2e{bottom:265.530000px;}
.y151{bottom:268.410000px;}
.y138{bottom:276.150000px;}
.y95{bottom:276.510000px;}
.yc4{bottom:276.870000px;}
.y106{bottom:278.130000px;}
.y10a{bottom:278.670000px;}
.ycd{bottom:282.090000px;}
.y4a{bottom:292.170000px;}
.y79{bottom:295.230000px;}
.y64{bottom:295.950000px;}
.y150{bottom:303.510000px;}
.yac{bottom:307.110000px;}
.y137{bottom:311.250000px;}
.y94{bottom:311.610000px;}
.y18{bottom:327.090000px;}
.y49{bottom:327.270000px;}
.y165{bottom:330.690000px;}
.y63{bottom:331.050000px;}
.y78{bottom:331.230000px;}
.y14f{bottom:338.655000px;}
.yc3{bottom:339.915000px;}
.y93{bottom:346.755000px;}
.y136{bottom:347.295000px;}
.y17{bottom:356.115000px;}
.y48{bottom:362.415000px;}
.y77{bottom:365.475000px;}
.y9c{bottom:366.195000px;}
.y62{bottom:366.375000px;}
.y164{bottom:367.095000px;}
.y14e{bottom:373.755000px;}
.y92{bottom:381.855000px;}
.y135{bottom:382.395000px;}
.y16{bottom:391.215000px;}
.yc2{bottom:392.115000px;}
.y47{bottom:397.515000px;}
.y76{bottom:400.575000px;}
.y61{bottom:401.295000px;}
.y14d{bottom:408.855000px;}
.y2d{bottom:412.995000px;}
.y91{bottom:417.135000px;}
.y15{bottom:426.315000px;}
.y46{bottom:432.615000px;}
.y75{bottom:435.675000px;}
.y134{bottom:436.215000px;}
.y60{bottom:436.395000px;}
.y14c{bottom:443.955000px;}
.y2c{bottom:448.095000px;}
.y90{bottom:452.235000px;}
.y14{bottom:461.415000px;}
.yc1{bottom:466.275000px;}
.yab{bottom:467.715000px;}
.y45{bottom:467.895000px;}
.y163{bottom:470.775000px;}
.y74{bottom:471.135000px;}
.y9b{bottom:471.495000px;}
.y5f{bottom:471.675000px;}
.y14b{bottom:479.055000px;}
.y2b{bottom:483.195000px;}
.y8f{bottom:487.335000px;}
.y133{bottom:490.755000px;}
.y13{bottom:495.795000px;}
.y44{bottom:502.995000px;}
.y162{bottom:505.875000px;}
.y73{bottom:506.235000px;}
.y5e{bottom:506.595000px;}
.y14a{bottom:514.155000px;}
.y2a{bottom:518.295000px;}
.y8e{bottom:522.435000px;}
.y132{bottom:525.855000px;}
.y12{bottom:531.975000px;}
.y43{bottom:537.555000px;}
.yaa{bottom:537.915000px;}
.yc0{bottom:540.075000px;}
.y161{bottom:540.975000px;}
.y5d{bottom:541.695000px;}
.yb3{bottom:541.875000px;}
.y149{bottom:549.255000px;}
.y29{bottom:553.395000px;}
.y8d{bottom:557.535000px;}
.y131{bottom:560.955000px;}
.y11{bottom:565.995000px;}
.ya9{bottom:573.015000px;}
.y42{bottom:573.195000px;}
.y160{bottom:576.075000px;}
.y5c{bottom:576.795000px;}
.y9a{bottom:576.975000px;}
.y148{bottom:584.355000px;}
.y120{bottom:588.135000px;}
.y28{bottom:588.495000px;}
.y8c{bottom:592.635000px;}
.y130{bottom:596.055000px;}
.y10{bottom:607.065000px;}
.ya8{bottom:608.145000px;}
.y41{bottom:608.325000px;}
.y15f{bottom:611.205000px;}
.y72{bottom:611.925000px;}
.y5b{bottom:612.105000px;}
.yf0{bottom:613.545000px;}
.ybf{bottom:613.905000px;}
.y147{bottom:619.485000px;}
.y10f{bottom:619.665000px;}
.y11f{bottom:619.845000px;}
.y27{bottom:623.625000px;}
.yc7{bottom:627.405000px;}
.y8b{bottom:627.585000px;}
.y12f{bottom:631.185000px;}
.yef{bottom:639.465000px;}
.y40{bottom:642.345000px;}
.ya7{bottom:643.245000px;}
.y10e{bottom:645.765000px;}
.y15e{bottom:646.305000px;}
.y71{bottom:647.025000px;}
.y5a{bottom:647.205000px;}
.ye9{bottom:647.925000px;}
.yd1{bottom:652.065000px;}
.yf{bottom:652.245000px;}
.y115{bottom:653.865000px;}
.y146{bottom:654.585000px;}
.yc6{bottom:655.305000px;}
.y26{bottom:658.725000px;}
.y8a{bottom:662.685000px;}
.y10c{bottom:665.745000px;}
.y12e{bottom:666.285000px;}
.yfa{bottom:671.685000px;}
.ye1{bottom:675.465000px;}
.yde{bottom:676.365000px;}
.y11a{bottom:677.265000px;}
.y3f{bottom:677.445000px;}
.ye2{bottom:678.165000px;}
.ya6{bottom:678.345000px;}
.yf4{bottom:678.705000px;}
.ye6{bottom:679.245000px;}
.ye8{bottom:679.785000px;}
.y102{bottom:680.865000px;}
.y16e{bottom:681.405000px;}
.yd4{bottom:681.765000px;}
.y70{bottom:682.125000px;}
.y59{bottom:682.305000px;}
.ybe{bottom:687.705000px;}
.y145{bottom:690.045000px;}
.y25{bottom:693.825000px;}
.y10b{bottom:694.725000px;}
.yf8{bottom:694.905000px;}
.ye4{bottom:696.705000px;}
.y89{bottom:697.785000px;}
.yca{bottom:698.865000px;}
.ye{bottom:699.045000px;}
.y112{bottom:700.665000px;}
.y12d{bottom:701.385000px;}
.yf6{bottom:702.825000px;}
.ye0{bottom:703.905000px;}
.y105{bottom:704.985000px;}
.y3e{bottom:713.445000px;}
.y16d{bottom:716.505000px;}
.yb2{bottom:717.225000px;}
.y58{bottom:717.405000px;}
.y15d{bottom:718.125000px;}
.y109{bottom:722.265000px;}
.yf3{bottom:725.685000px;}
.y122{bottom:726.405000px;}
.yc9{bottom:726.765000px;}
.yd9{bottom:726.945000px;}
.y24{bottom:728.925000px;}
.y88{bottom:732.885000px;}
.y12c{bottom:736.485000px;}
.yd{bottom:745.845000px;}
.y3d{bottom:748.365000px;}
.ya5{bottom:748.545000px;}
.y108{bottom:749.625000px;}
.y15c{bottom:751.605000px;}
.yb1{bottom:752.325000px;}
.y57{bottom:752.505000px;}
.y144{bottom:759.885000px;}
.ybd{bottom:761.505000px;}
.y23{bottom:764.025000px;}
.y87{bottom:768.165000px;}
.y12b{bottom:771.585000px;}
.y3c{bottom:783.645000px;}
.y15b{bottom:786.705000px;}
.y56{bottom:787.605000px;}
.yc{bottom:788.325000px;}
.y143{bottom:795.345000px;}
.y22{bottom:798.045000px;}
.y86{bottom:803.265000px;}
.y12a{bottom:806.685000px;}
.ya4{bottom:818.565000px;}
.yb{bottom:821.805000px;}
.yb5{bottom:822.525000px;}
.y55{bottom:822.705000px;}
.ybc{bottom:824.145000px;}
.y142{bottom:830.085000px;}
.y21{bottom:833.145000px;}
.y3b{bottom:837.465000px;}
.y85{bottom:838.365000px;}
.y129{bottom:841.785000px;}
.ya3{bottom:853.665000px;}
.ya{bottom:856.905000px;}
.y6f{bottom:857.625000px;}
.y54{bottom:857.805000px;}
.ybb{bottom:865.545000px;}
.y20{bottom:868.245000px;}
.y84{bottom:873.510000px;}
.y128{bottom:877.830000px;}
.ya2{bottom:888.810000px;}
.y9{bottom:892.050000px;}
.y3a{bottom:892.770000px;}
.y53{bottom:892.950000px;}
.y141{bottom:900.690000px;}
.y1f{bottom:903.390000px;}
.yba{bottom:906.990000px;}
.y83{bottom:908.430000px;}
.y127{bottom:912.930000px;}
.ya1{bottom:924.090000px;}
.y8{bottom:927.150000px;}
.y16c{bottom:927.510000px;}
.y6e{bottom:927.870000px;}
.y39{bottom:928.050000px;}
.y1e{bottom:938.490000px;}
.y82{bottom:943.530000px;}
.y126{bottom:948.030000px;}
.yb9{bottom:948.390000px;}
.ya0{bottom:959.190000px;}
.y15a{bottom:962.250000px;}
.y38{bottom:962.970000px;}
.y52{bottom:963.150000px;}
.y16b{bottom:963.870000px;}
.y140{bottom:964.050000px;}
.y1d{bottom:973.590000px;}
.y7{bottom:974.850000px;}
.y81{bottom:978.630000px;}
.y125{bottom:982.590000px;}
.y159{bottom:997.350000px;}
.y6d{bottom:998.070000px;}
.y37{bottom:998.250000px;}
.yb8{bottom:1000.590000px;}
.y1c{bottom:1003.650000px;}
.y9f{bottom:1013.010000px;}
.y80{bottom:1013.730000px;}
.y124{bottom:1018.230000px;}
.y1b{bottom:1031.910000px;}
.y158{bottom:1032.450000px;}
.y6c{bottom:1033.170000px;}
.y36{bottom:1033.350000px;}
.y13f{bottom:1034.430000px;}
.y6{bottom:1043.970000px;}
.y7f{bottom:1049.010000px;}
.y1a{bottom:1067.190000px;}
.y13e{bottom:1067.550000px;}
.y6b{bottom:1068.270000px;}
.y35{bottom:1068.450000px;}
.yee{bottom:1069.350000px;}
.yb7{bottom:1076.190000px;}
.y123{bottom:1081.050000px;}
.y7e{bottom:1084.110000px;}
.y13d{bottom:1102.650000px;}
.y157{bottom:1103.010000px;}
.y34{bottom:1103.370000px;}
.y51{bottom:1103.550000px;}
.y5{bottom:1117.050000px;}
.y10d{bottom:1125.150000px;}
.y19{bottom:1130.010000px;}
.y7d{bottom:1137.780000px;}
.y6a{bottom:1138.500000px;}
.y33{bottom:1138.680000px;}
.y156{bottom:1139.400000px;}
.yed{bottom:1139.760000px;}
.yb6{bottom:1145.520000px;}
.y2{bottom:1167.120000px;}
.y1{bottom:1185.480000px;}
.h3{height:40.842773px;}
.h2{height:44.718750px;}
.hb{height:47.922187px;}
.h10{height:50.100469px;}
.ha{height:52.470000px;}
.h9{height:53.645625px;}
.hc{height:54.790312px;}
.he{height:54.821250px;}
.h12{height:55.307683px;}
.h11{height:56.671875px;}
.h7{height:59.625000px;}
.hf{height:63.019687px;}
.hd{height:66.605625px;}
.h8{height:79.301250px;}
.h6{height:119.250000px;}
.h4{height:122.977969px;}
.h5{height:125.114063px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:53.999987px;}
.xc{left:68.939987px;}
.x14{left:80.999987px;}
.xd{left:85.499987px;}
.x12{left:92.375987px;}
.x43{left:108.035987px;}
.x11{left:118.475987px;}
.x3{left:138.275987px;}
.x47{left:151.409987px;}
.x1{left:165.269987px;}
.x49{left:179.849987px;}
.x48{left:198.749987px;}
.x10{left:201.989987px;}
.x4a{left:211.349987px;}
.x4b{left:214.769987px;}
.x2{left:240.689987px;}
.x4{left:260.849987px;}
.x4c{left:262.109987px;}
.x6{left:292.754987px;}
.x44{left:308.594987px;}
.xa{left:319.034987px;}
.x9{left:373.034987px;}
.x8{left:382.034987px;}
.x7{left:385.634987px;}
.x45{left:387.434987px;}
.x3a{left:421.094987px;}
.x27{left:425.594987px;}
.x5{left:446.474987px;}
.x1f{left:447.734987px;}
.x1c{left:463.574987px;}
.x17{left:468.104987px;}
.x3e{left:474.944987px;}
.x28{left:486.104987px;}
.x1e{left:510.764987px;}
.x15{left:513.644987px;}
.x40{left:517.964987px;}
.x19{left:525.344987px;}
.x13{left:529.844987px;}
.x3b{left:556.664987px;}
.x3c{left:561.164987px;}
.x16{left:583.664987px;}
.x29{left:588.164987px;}
.x1a{left:594.644987px;}
.x2f{left:615.164987px;}
.x42{left:617.504987px;}
.x1d{left:619.664987px;}
.x41{left:621.284987px;}
.x2b{left:624.164987px;}
.x18{left:626.504987px;}
.x20{left:627.764987px;}
.x3d{left:631.004987px;}
.x2e{left:636.944987px;}
.x26{left:643.784987px;}
.x22{left:651.344987px;}
.x25{left:652.604987px;}
.x30{left:655.709987px;}
.x31{left:657.869987px;}
.x2c{left:669.209987px;}
.x32{left:672.809987px;}
.x2d{left:675.149987px;}
.x24{left:677.309987px;}
.x35{left:680.369987px;}
.x1b{left:681.809987px;}
.x2a{left:686.849987px;}
.x33{left:695.309987px;}
.x37{left:698.189987px;}
.x34{left:702.869987px;}
.x23{left:708.809987px;}
.x38{left:714.389987px;}
.x36{left:715.649987px;}
.x39{left:718.709987px;}
.x3f{left:723.209987px;}
.x21{left:724.649987px;}
.xf{left:780.809987px;}
.x46{left:823.289987px;}
.xb{left:839.129987px;}
@media print{
.v2{vertical-align:-11.626667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.520000pt;}
.v3{vertical-align:13.440000pt;}
.ls2d{letter-spacing:-3.866667pt;}
.lsf{letter-spacing:-0.933333pt;}
.ls67{letter-spacing:-0.917333pt;}
.ls56{letter-spacing:-0.912000pt;}
.ls54{letter-spacing:-0.816000pt;}
.ls60{letter-spacing:-0.810667pt;}
.ls4f{letter-spacing:-0.698667pt;}
.ls69{letter-spacing:-0.674612pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls57{letter-spacing:-0.624000pt;}
.ls4c{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.481067pt;}
.ls2c{letter-spacing:-0.373867pt;}
.ls4e{letter-spacing:-0.358400pt;}
.ls66{letter-spacing:-0.286933pt;}
.ls22{letter-spacing:-0.276267pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls4b{letter-spacing:-0.271467pt;}
.ls47{letter-spacing:-0.266133pt;}
.ls4d{letter-spacing:-0.240533pt;}
.ls1a{letter-spacing:-0.220267pt;}
.ls3b{letter-spacing:-0.173867pt;}
.ls61{letter-spacing:-0.169067pt;}
.ls5e{letter-spacing:-0.148267pt;}
.ls5b{letter-spacing:-0.102400pt;}
.ls27{letter-spacing:-0.084267pt;}
.ls5f{letter-spacing:-0.071467pt;}
.ls21{letter-spacing:-0.066667pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls68{letter-spacing:-0.061333pt;}
.ls50{letter-spacing:-0.056533pt;}
.ls38{letter-spacing:-0.041600pt;}
.lse{letter-spacing:-0.025600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.010240pt;}
.ls55{letter-spacing:0.020480pt;}
.ls59{letter-spacing:0.082133pt;}
.ls8{letter-spacing:0.088320pt;}
.ls44{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.153600pt;}
.ls9{letter-spacing:0.158720pt;}
.lsc{letter-spacing:0.158933pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.163733pt;}
.ls1c{letter-spacing:0.163840pt;}
.ls10{letter-spacing:0.169067pt;}
.ls4a{letter-spacing:0.184533pt;}
.ls25{letter-spacing:0.214933pt;}
.ls2e{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.243200pt;}
.ls6{letter-spacing:0.255360pt;}
.ls29{letter-spacing:0.266240pt;}
.lsa{letter-spacing:0.271360pt;}
.ls11{letter-spacing:0.276480pt;}
.ls53{letter-spacing:0.281600pt;}
.ls14{letter-spacing:0.291840pt;}
.ls48{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.304000pt;}
.ls13{letter-spacing:0.307200pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.327467pt;}
.ls24{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.584320pt;}
.ls7{letter-spacing:0.595840pt;}
.ls5{letter-spacing:0.640000pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls65{letter-spacing:8.023040pt;}
.ls40{letter-spacing:13.271040pt;}
.ls1e{letter-spacing:13.440000pt;}
.ls43{letter-spacing:13.455360pt;}
.ls3c{letter-spacing:13.460480pt;}
.ls3f{letter-spacing:13.521920pt;}
.ls52{letter-spacing:13.567147pt;}
.ls39{letter-spacing:13.721600pt;}
.ls3d{letter-spacing:13.752320pt;}
.ls49{letter-spacing:13.828267pt;}
.ls58{letter-spacing:13.839360pt;}
.ls5a{letter-spacing:13.931520pt;}
.ls1d{letter-spacing:14.080000pt;}
.ls41{letter-spacing:14.095360pt;}
.ls3e{letter-spacing:14.100480pt;}
.ls3a{letter-spacing:14.161920pt;}
.ls51{letter-spacing:14.207147pt;}
.ls45{letter-spacing:14.361600pt;}
.ls42{letter-spacing:14.392320pt;}
.ls16{letter-spacing:16.573440pt;}
.ls1b{letter-spacing:17.213440pt;}
.ls18{letter-spacing:17.495040pt;}
.ls17{letter-spacing:18.632320pt;}
.ls63{letter-spacing:38.103040pt;}
.ls64{letter-spacing:38.743040pt;}
.ls28{letter-spacing:59.863040pt;}
.ls46{letter-spacing:754.026667pt;}
.ls62{letter-spacing:754.080000pt;}
.ls2b{letter-spacing:755.378347pt;}
.ls1{letter-spacing:756.106667pt;}
.ls31{letter-spacing:1944.490667pt;}
.ls32{letter-spacing:2012.970667pt;}
.ls33{letter-spacing:2036.650667pt;}
.ls37{letter-spacing:2061.610667pt;}
.ls34{letter-spacing:2144.810667pt;}
.ls36{letter-spacing:2177.178667pt;}
.ls35{letter-spacing:2190.250667pt;}
.ls30{letter-spacing:2196.650667pt;}
.ws4{word-spacing:-128.128000pt;}
.ws3{word-spacing:-128.000000pt;}
.ws31{word-spacing:-85.760000pt;}
.ws9{word-spacing:-85.715840pt;}
.ws28{word-spacing:-85.120000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws67{word-spacing:-59.365899pt;}
.wsb{word-spacing:-56.320000pt;}
.wsd{word-spacing:-55.680000pt;}
.ws2a{word-spacing:-53.760000pt;}
.ws29{word-spacing:-53.704320pt;}
.ws6{word-spacing:-48.640000pt;}
.ws0{word-spacing:-48.000000pt;}
.ws49{word-spacing:-42.961920pt;}
.ws56{word-spacing:-42.941440pt;}
.ws5b{word-spacing:-42.920960pt;}
.ws52{word-spacing:-42.896213pt;}
.ws30{word-spacing:-42.880000pt;}
.ws45{word-spacing:-42.875733pt;}
.ws43{word-spacing:-42.855253pt;}
.ws4f{word-spacing:-42.842880pt;}
.ws50{word-spacing:-42.822400pt;}
.ws27{word-spacing:-42.815360pt;}
.ws41{word-spacing:-42.814293pt;}
.ws34{word-spacing:-42.793813pt;}
.ws3e{word-spacing:-42.781440pt;}
.ws53{word-spacing:-42.773333pt;}
.ws37{word-spacing:-42.560000pt;}
.ws4e{word-spacing:-42.342400pt;}
.ws51{word-spacing:-42.321920pt;}
.ws54{word-spacing:-42.301440pt;}
.ws19{word-spacing:-42.280960pt;}
.ws32{word-spacing:-42.240000pt;}
.ws4d{word-spacing:-42.235733pt;}
.ws4b{word-spacing:-42.223360pt;}
.ws4c{word-spacing:-42.215253pt;}
.ws44{word-spacing:-42.202880pt;}
.ws57{word-spacing:-42.194773pt;}
.ws48{word-spacing:-42.174293pt;}
.ws1d{word-spacing:-42.153813pt;}
.ws55{word-spacing:-42.141440pt;}
.ws18{word-spacing:-42.120533pt;}
.ws20{word-spacing:-42.100480pt;}
.ws33{word-spacing:-41.600000pt;}
.ws35{word-spacing:-40.960000pt;}
.ws2d{word-spacing:-32.000000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws2c{word-spacing:-17.856000pt;}
.ws22{word-spacing:-17.792000pt;}
.ws2b{word-spacing:-17.536000pt;}
.ws46{word-spacing:-15.713280pt;}
.ws38{word-spacing:-15.616213pt;}
.ws64{word-spacing:-15.544320pt;}
.ws5d{word-spacing:-15.513813pt;}
.ws68{word-spacing:-15.488000pt;}
.wsc{word-spacing:-15.431680pt;}
.ws42{word-spacing:-15.375147pt;}
.ws5e{word-spacing:-15.329280pt;}
.ws36{word-spacing:-15.257813pt;}
.ws59{word-spacing:-15.191147pt;}
.ws39{word-spacing:-15.160213pt;}
.ws21{word-spacing:-15.155413pt;}
.ws65{word-spacing:-15.144747pt;}
.ws3f{word-spacing:-15.073280pt;}
.ws3a{word-spacing:-14.871680pt;}
.ws58{word-spacing:-14.807680pt;}
.ws2e{word-spacing:-14.767360pt;}
.ws40{word-spacing:-14.733013pt;}
.ws62{word-spacing:-14.621013pt;}
.ws47{word-spacing:-14.615680pt;}
.ws2f{word-spacing:-14.566400pt;}
.ws4a{word-spacing:-14.519680pt;}
.ws66{word-spacing:-14.514347pt;}
.ws2{word-spacing:-13.152000pt;}
.ws16{word-spacing:-12.697600pt;}
.ws24{word-spacing:-12.605333pt;}
.ws13{word-spacing:-12.559467pt;}
.ws15{word-spacing:-12.549333pt;}
.wse{word-spacing:-12.549120pt;}
.ws10{word-spacing:-12.390400pt;}
.wsf{word-spacing:-12.364800pt;}
.ws17{word-spacing:-12.170133pt;}
.ws25{word-spacing:-12.016533pt;}
.ws23{word-spacing:-11.750400pt;}
.ws12{word-spacing:-11.457067pt;}
.ws11{word-spacing:-9.996800pt;}
.ws26{word-spacing:-8.523733pt;}
.ws1f{word-spacing:-2.938880pt;}
.ws5a{word-spacing:-2.191360pt;}
.ws5f{word-spacing:-2.160640pt;}
.ws3c{word-spacing:-2.155520pt;}
.ws61{word-spacing:-2.140160pt;}
.ws5c{word-spacing:-1.551360pt;}
.ws60{word-spacing:-1.500160pt;}
.ws3b{word-spacing:-1.480533pt;}
.ws63{word-spacing:-1.341120pt;}
.ws3d{word-spacing:-1.111360pt;}
.ws7{word-spacing:-0.560000pt;}
.ws1a{word-spacing:-0.112640pt;}
.ws8{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.527360pt;}
.ws1b{word-spacing:3.082240pt;}
.wsa{word-spacing:4.218240pt;}
.ws1e{word-spacing:5.988907pt;}
.ws14{word-spacing:6.010240pt;}
._6{margin-left:-29.537707pt;}
._5{margin-left:-28.527573pt;}
._b{margin-left:-27.400107pt;}
._2{margin-left:-24.213333pt;}
._d{margin-left:-6.278400pt;}
._4{margin-left:-4.576213pt;}
._c{margin-left:-2.831573pt;}
._3{margin-left:-1.915093pt;}
._0{margin-left:-0.944000pt;}
._1{width:1.690667pt;}
._e{width:3.616640pt;}
._a{width:13.390507pt;}
._9{width:14.345813pt;}
._7{width:15.528960pt;}
._8{width:17.044907pt;}
._11{width:966.033920pt;}
._f{width:1449.744000pt;}
._10{width:2037.615787pt;}
._12{width:2110.221653pt;}
._13{width:2142.849280pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fsb{font-size:59.365899pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:70.592000pt;}
.y3{bottom:86.912000pt;}
.y50{bottom:100.992000pt;}
.y4f{bottom:103.872000pt;}
.y16a{bottom:106.432000pt;}
.y69{bottom:107.072000pt;}
.yb4{bottom:107.232000pt;}
.y119{bottom:113.152000pt;}
.y155{bottom:113.792000pt;}
.y32{bottom:116.512000pt;}
.y121{bottom:117.152000pt;}
.yd6{bottom:118.912000pt;}
.y99{bottom:120.992000pt;}
.y13c{bottom:121.472000pt;}
.yec{bottom:123.712000pt;}
.yb0{bottom:131.552000pt;}
.y111{bottom:134.746667pt;}
.y4e{bottom:135.066667pt;}
.y169{bottom:137.626667pt;}
.y7c{bottom:138.266667pt;}
.y68{bottom:138.426667pt;}
.yd8{bottom:139.706667pt;}
.y100{bottom:140.506667pt;}
.ye3{bottom:144.186667pt;}
.y101{bottom:144.506667pt;}
.y154{bottom:144.986667pt;}
.yd5{bottom:145.306667pt;}
.y31{bottom:147.706667pt;}
.yeb{bottom:149.466667pt;}
.y13b{bottom:151.866667pt;}
.y98{bottom:152.186667pt;}
.ydd{bottom:156.826667pt;}
.y110{bottom:157.946667pt;}
.ycc{bottom:160.506667pt;}
.yd7{bottom:160.826667pt;}
.yaf{bottom:162.586667pt;}
.yff{bottom:162.906667pt;}
.yc8{bottom:163.226667pt;}
.ye5{bottom:163.386667pt;}
.yf5{bottom:164.026667pt;}
.y103{bottom:164.986667pt;}
.y114{bottom:165.146667pt;}
.y4d{bottom:166.266667pt;}
.yf2{bottom:167.866667pt;}
.y168{bottom:168.826667pt;}
.y7b{bottom:169.466667pt;}
.y67{bottom:169.626667pt;}
.y153{bottom:176.186667pt;}
.ye7{bottom:177.146667pt;}
.yf9{bottom:177.626667pt;}
.yea{bottom:177.946667pt;}
.yfc{bottom:178.106667pt;}
.ydf{bottom:178.426667pt;}
.y30{bottom:178.906667pt;}
.yd3{bottom:179.066667pt;}
.yfd{bottom:179.226667pt;}
.ydb{bottom:181.306667pt;}
.y13a{bottom:183.066667pt;}
.y97{bottom:183.386667pt;}
.ycb{bottom:184.186667pt;}
.yd2{bottom:185.306667pt;}
.yfe{bottom:185.786667pt;}
.y11e{bottom:186.106667pt;}
.y104{bottom:186.746667pt;}
.y113{bottom:187.226667pt;}
.y116{bottom:188.346667pt;}
.y11b{bottom:189.786667pt;}
.yf1{bottom:190.746667pt;}
.y118{bottom:191.066667pt;}
.yae{bottom:193.786667pt;}
.y4c{bottom:197.306667pt;}
.yfb{bottom:198.426667pt;}
.y167{bottom:200.346667pt;}
.y9e{bottom:200.666667pt;}
.y66{bottom:200.826667pt;}
.yda{bottom:201.626667pt;}
.yd0{bottom:202.106667pt;}
.yf7{bottom:206.106667pt;}
.y11d{bottom:206.746667pt;}
.y152{bottom:207.386667pt;}
.y2f{bottom:210.106667pt;}
.y96{bottom:214.586667pt;}
.y139{bottom:215.066667pt;}
.yc5{bottom:215.706667pt;}
.y117{bottom:219.546667pt;}
.y107{bottom:222.906667pt;}
.yad{bottom:225.146667pt;}
.yce{bottom:225.946667pt;}
.y11c{bottom:226.266667pt;}
.ycf{bottom:226.906667pt;}
.ydc{bottom:227.066667pt;}
.y4b{bottom:228.506667pt;}
.y7a{bottom:231.226667pt;}
.y166{bottom:231.546667pt;}
.y9d{bottom:231.866667pt;}
.y65{bottom:232.026667pt;}
.y2e{bottom:236.026667pt;}
.y151{bottom:238.586667pt;}
.y138{bottom:245.466667pt;}
.y95{bottom:245.786667pt;}
.yc4{bottom:246.106667pt;}
.y106{bottom:247.226667pt;}
.y10a{bottom:247.706667pt;}
.ycd{bottom:250.746667pt;}
.y4a{bottom:259.706667pt;}
.y79{bottom:262.426667pt;}
.y64{bottom:263.066667pt;}
.y150{bottom:269.786667pt;}
.yac{bottom:272.986667pt;}
.y137{bottom:276.666667pt;}
.y94{bottom:276.986667pt;}
.y18{bottom:290.746667pt;}
.y49{bottom:290.906667pt;}
.y165{bottom:293.946667pt;}
.y63{bottom:294.266667pt;}
.y78{bottom:294.426667pt;}
.y14f{bottom:301.026667pt;}
.yc3{bottom:302.146667pt;}
.y93{bottom:308.226667pt;}
.y136{bottom:308.706667pt;}
.y17{bottom:316.546667pt;}
.y48{bottom:322.146667pt;}
.y77{bottom:324.866667pt;}
.y9c{bottom:325.506667pt;}
.y62{bottom:325.666667pt;}
.y164{bottom:326.306667pt;}
.y14e{bottom:332.226667pt;}
.y92{bottom:339.426667pt;}
.y135{bottom:339.906667pt;}
.y16{bottom:347.746667pt;}
.yc2{bottom:348.546667pt;}
.y47{bottom:353.346667pt;}
.y76{bottom:356.066667pt;}
.y61{bottom:356.706667pt;}
.y14d{bottom:363.426667pt;}
.y2d{bottom:367.106667pt;}
.y91{bottom:370.786667pt;}
.y15{bottom:378.946667pt;}
.y46{bottom:384.546667pt;}
.y75{bottom:387.266667pt;}
.y134{bottom:387.746667pt;}
.y60{bottom:387.906667pt;}
.y14c{bottom:394.626667pt;}
.y2c{bottom:398.306667pt;}
.y90{bottom:401.986667pt;}
.y14{bottom:410.146667pt;}
.yc1{bottom:414.466667pt;}
.yab{bottom:415.746667pt;}
.y45{bottom:415.906667pt;}
.y163{bottom:418.466667pt;}
.y74{bottom:418.786667pt;}
.y9b{bottom:419.106667pt;}
.y5f{bottom:419.266667pt;}
.y14b{bottom:425.826667pt;}
.y2b{bottom:429.506667pt;}
.y8f{bottom:433.186667pt;}
.y133{bottom:436.226667pt;}
.y13{bottom:440.706667pt;}
.y44{bottom:447.106667pt;}
.y162{bottom:449.666667pt;}
.y73{bottom:449.986667pt;}
.y5e{bottom:450.306667pt;}
.y14a{bottom:457.026667pt;}
.y2a{bottom:460.706667pt;}
.y8e{bottom:464.386667pt;}
.y132{bottom:467.426667pt;}
.y12{bottom:472.866667pt;}
.y43{bottom:477.826667pt;}
.yaa{bottom:478.146667pt;}
.yc0{bottom:480.066667pt;}
.y161{bottom:480.866667pt;}
.y5d{bottom:481.506667pt;}
.yb3{bottom:481.666667pt;}
.y149{bottom:488.226667pt;}
.y29{bottom:491.906667pt;}
.y8d{bottom:495.586667pt;}
.y131{bottom:498.626667pt;}
.y11{bottom:503.106667pt;}
.ya9{bottom:509.346667pt;}
.y42{bottom:509.506667pt;}
.y160{bottom:512.066667pt;}
.y5c{bottom:512.706667pt;}
.y9a{bottom:512.866667pt;}
.y148{bottom:519.426667pt;}
.y120{bottom:522.786667pt;}
.y28{bottom:523.106667pt;}
.y8c{bottom:526.786667pt;}
.y130{bottom:529.826667pt;}
.y10{bottom:539.613333pt;}
.ya8{bottom:540.573333pt;}
.y41{bottom:540.733333pt;}
.y15f{bottom:543.293333pt;}
.y72{bottom:543.933333pt;}
.y5b{bottom:544.093333pt;}
.yf0{bottom:545.373333pt;}
.ybf{bottom:545.693333pt;}
.y147{bottom:550.653333pt;}
.y10f{bottom:550.813333pt;}
.y11f{bottom:550.973333pt;}
.y27{bottom:554.333333pt;}
.yc7{bottom:557.693333pt;}
.y8b{bottom:557.853333pt;}
.y12f{bottom:561.053333pt;}
.yef{bottom:568.413333pt;}
.y40{bottom:570.973333pt;}
.ya7{bottom:571.773333pt;}
.y10e{bottom:574.013333pt;}
.y15e{bottom:574.493333pt;}
.y71{bottom:575.133333pt;}
.y5a{bottom:575.293333pt;}
.ye9{bottom:575.933333pt;}
.yd1{bottom:579.613333pt;}
.yf{bottom:579.773333pt;}
.y115{bottom:581.213333pt;}
.y146{bottom:581.853333pt;}
.yc6{bottom:582.493333pt;}
.y26{bottom:585.533333pt;}
.y8a{bottom:589.053333pt;}
.y10c{bottom:591.773333pt;}
.y12e{bottom:592.253333pt;}
.yfa{bottom:597.053333pt;}
.ye1{bottom:600.413333pt;}
.yde{bottom:601.213333pt;}
.y11a{bottom:602.013333pt;}
.y3f{bottom:602.173333pt;}
.ye2{bottom:602.813333pt;}
.ya6{bottom:602.973333pt;}
.yf4{bottom:603.293333pt;}
.ye6{bottom:603.773333pt;}
.ye8{bottom:604.253333pt;}
.y102{bottom:605.213333pt;}
.y16e{bottom:605.693333pt;}
.yd4{bottom:606.013333pt;}
.y70{bottom:606.333333pt;}
.y59{bottom:606.493333pt;}
.ybe{bottom:611.293333pt;}
.y145{bottom:613.373333pt;}
.y25{bottom:616.733333pt;}
.y10b{bottom:617.533333pt;}
.yf8{bottom:617.693333pt;}
.ye4{bottom:619.293333pt;}
.y89{bottom:620.253333pt;}
.yca{bottom:621.213333pt;}
.ye{bottom:621.373333pt;}
.y112{bottom:622.813333pt;}
.y12d{bottom:623.453333pt;}
.yf6{bottom:624.733333pt;}
.ye0{bottom:625.693333pt;}
.y105{bottom:626.653333pt;}
.y3e{bottom:634.173333pt;}
.y16d{bottom:636.893333pt;}
.yb2{bottom:637.533333pt;}
.y58{bottom:637.693333pt;}
.y15d{bottom:638.333333pt;}
.y109{bottom:642.013333pt;}
.yf3{bottom:645.053333pt;}
.y122{bottom:645.693333pt;}
.yc9{bottom:646.013333pt;}
.yd9{bottom:646.173333pt;}
.y24{bottom:647.933333pt;}
.y88{bottom:651.453333pt;}
.y12c{bottom:654.653333pt;}
.yd{bottom:662.973333pt;}
.y3d{bottom:665.213333pt;}
.ya5{bottom:665.373333pt;}
.y108{bottom:666.333333pt;}
.y15c{bottom:668.093333pt;}
.yb1{bottom:668.733333pt;}
.y57{bottom:668.893333pt;}
.y144{bottom:675.453333pt;}
.ybd{bottom:676.893333pt;}
.y23{bottom:679.133333pt;}
.y87{bottom:682.813333pt;}
.y12b{bottom:685.853333pt;}
.y3c{bottom:696.573333pt;}
.y15b{bottom:699.293333pt;}
.y56{bottom:700.093333pt;}
.yc{bottom:700.733333pt;}
.y143{bottom:706.973333pt;}
.y22{bottom:709.373333pt;}
.y86{bottom:714.013333pt;}
.y12a{bottom:717.053333pt;}
.ya4{bottom:727.613333pt;}
.yb{bottom:730.493333pt;}
.yb5{bottom:731.133333pt;}
.y55{bottom:731.293333pt;}
.ybc{bottom:732.573333pt;}
.y142{bottom:737.853333pt;}
.y21{bottom:740.573333pt;}
.y3b{bottom:744.413333pt;}
.y85{bottom:745.213333pt;}
.y129{bottom:748.253333pt;}
.ya3{bottom:758.813333pt;}
.ya{bottom:761.693333pt;}
.y6f{bottom:762.333333pt;}
.y54{bottom:762.493333pt;}
.ybb{bottom:769.373333pt;}
.y20{bottom:771.773333pt;}
.y84{bottom:776.453333pt;}
.y128{bottom:780.293333pt;}
.ya2{bottom:790.053333pt;}
.y9{bottom:792.933333pt;}
.y3a{bottom:793.573333pt;}
.y53{bottom:793.733333pt;}
.y141{bottom:800.613333pt;}
.y1f{bottom:803.013333pt;}
.yba{bottom:806.213333pt;}
.y83{bottom:807.493333pt;}
.y127{bottom:811.493333pt;}
.ya1{bottom:821.413333pt;}
.y8{bottom:824.133333pt;}
.y16c{bottom:824.453333pt;}
.y6e{bottom:824.773333pt;}
.y39{bottom:824.933333pt;}
.y1e{bottom:834.213333pt;}
.y82{bottom:838.693333pt;}
.y126{bottom:842.693333pt;}
.yb9{bottom:843.013333pt;}
.ya0{bottom:852.613333pt;}
.y15a{bottom:855.333333pt;}
.y38{bottom:855.973333pt;}
.y52{bottom:856.133333pt;}
.y16b{bottom:856.773333pt;}
.y140{bottom:856.933333pt;}
.y1d{bottom:865.413333pt;}
.y7{bottom:866.533333pt;}
.y81{bottom:869.893333pt;}
.y125{bottom:873.413333pt;}
.y159{bottom:886.533333pt;}
.y6d{bottom:887.173333pt;}
.y37{bottom:887.333333pt;}
.yb8{bottom:889.413333pt;}
.y1c{bottom:892.133333pt;}
.y9f{bottom:900.453333pt;}
.y80{bottom:901.093333pt;}
.y124{bottom:905.093333pt;}
.y1b{bottom:917.253333pt;}
.y158{bottom:917.733333pt;}
.y6c{bottom:918.373333pt;}
.y36{bottom:918.533333pt;}
.y13f{bottom:919.493333pt;}
.y6{bottom:927.973333pt;}
.y7f{bottom:932.453333pt;}
.y1a{bottom:948.613333pt;}
.y13e{bottom:948.933333pt;}
.y6b{bottom:949.573333pt;}
.y35{bottom:949.733333pt;}
.yee{bottom:950.533333pt;}
.yb7{bottom:956.613333pt;}
.y123{bottom:960.933333pt;}
.y7e{bottom:963.653333pt;}
.y13d{bottom:980.133333pt;}
.y157{bottom:980.453333pt;}
.y34{bottom:980.773333pt;}
.y51{bottom:980.933333pt;}
.y5{bottom:992.933333pt;}
.y10d{bottom:1000.133333pt;}
.y19{bottom:1004.453333pt;}
.y7d{bottom:1011.360000pt;}
.y6a{bottom:1012.000000pt;}
.y33{bottom:1012.160000pt;}
.y156{bottom:1012.800000pt;}
.yed{bottom:1013.120000pt;}
.yb6{bottom:1018.240000pt;}
.y2{bottom:1037.440000pt;}
.y1{bottom:1053.760000pt;}
.h3{height:36.304688pt;}
.h2{height:39.750000pt;}
.hb{height:42.597500pt;}
.h10{height:44.533750pt;}
.ha{height:46.640000pt;}
.h9{height:47.685000pt;}
.hc{height:48.702500pt;}
.he{height:48.730000pt;}
.h12{height:49.162385pt;}
.h11{height:50.375000pt;}
.h7{height:53.000000pt;}
.hf{height:56.017500pt;}
.hd{height:59.205000pt;}
.h8{height:70.490000pt;}
.h6{height:106.000000pt;}
.h4{height:109.313750pt;}
.h5{height:111.212500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:47.999988pt;}
.xc{left:61.279988pt;}
.x14{left:71.999988pt;}
.xd{left:75.999988pt;}
.x12{left:82.111988pt;}
.x43{left:96.031988pt;}
.x11{left:105.311988pt;}
.x3{left:122.911988pt;}
.x47{left:134.586655pt;}
.x1{left:146.906655pt;}
.x49{left:159.866655pt;}
.x48{left:176.666655pt;}
.x10{left:179.546655pt;}
.x4a{left:187.866655pt;}
.x4b{left:190.906655pt;}
.x2{left:213.946655pt;}
.x4{left:231.866655pt;}
.x4c{left:232.986655pt;}
.x6{left:260.226655pt;}
.x44{left:274.306655pt;}
.xa{left:283.586655pt;}
.x9{left:331.586655pt;}
.x8{left:339.586655pt;}
.x7{left:342.786655pt;}
.x45{left:344.386655pt;}
.x3a{left:374.306655pt;}
.x27{left:378.306655pt;}
.x5{left:396.866655pt;}
.x1f{left:397.986655pt;}
.x1c{left:412.066655pt;}
.x17{left:416.093322pt;}
.x3e{left:422.173322pt;}
.x28{left:432.093322pt;}
.x1e{left:454.013322pt;}
.x15{left:456.573322pt;}
.x40{left:460.413322pt;}
.x19{left:466.973322pt;}
.x13{left:470.973322pt;}
.x3b{left:494.813322pt;}
.x3c{left:498.813322pt;}
.x16{left:518.813322pt;}
.x29{left:522.813322pt;}
.x1a{left:528.573322pt;}
.x2f{left:546.813322pt;}
.x42{left:548.893322pt;}
.x1d{left:550.813322pt;}
.x41{left:552.253322pt;}
.x2b{left:554.813322pt;}
.x18{left:556.893322pt;}
.x20{left:558.013322pt;}
.x3d{left:560.893322pt;}
.x2e{left:566.173322pt;}
.x26{left:572.253322pt;}
.x22{left:578.973322pt;}
.x25{left:580.093322pt;}
.x30{left:582.853322pt;}
.x31{left:584.773322pt;}
.x2c{left:594.853322pt;}
.x32{left:598.053322pt;}
.x2d{left:600.133322pt;}
.x24{left:602.053322pt;}
.x35{left:604.773322pt;}
.x1b{left:606.053322pt;}
.x2a{left:610.533322pt;}
.x33{left:618.053322pt;}
.x37{left:620.613322pt;}
.x34{left:624.773322pt;}
.x23{left:630.053322pt;}
.x38{left:635.013322pt;}
.x36{left:636.133322pt;}
.x39{left:638.853322pt;}
.x3f{left:642.853322pt;}
.x21{left:644.133322pt;}
.xf{left:694.053322pt;}
.x46{left:731.813322pt;}
.xb{left:745.893322pt;}
}




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