
    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_afd53696f36aab55130a1146.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_2e4fed9aaa5f7c7076d3537c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903320;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_b8f8d2e0f88178a438fc95f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_8431f8e20838ecc43b2303f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_30b04adc5e49f7107980643b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.903809;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_a700f456611430190f494c51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_d6e47b3269209d30e959a32f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_724dc520958ddffd426cc092.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_da2dcb7b644ec8c83264c42e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_82c2022397f9fedbcec64589.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_7ab49a2c1461f46ca900e7f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_4d2443855252254474941652.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;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_030a3877c61b94e8700101db.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b223afc28b594cd9f7f41651.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;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_b211c6b08889700538a985fa.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c259ccc966a95702e03f42be.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ac55ce5073440e04edcfef62.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.913574;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_27caffd57e8af8413192ec45.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_cc77362f9b158599f5914f94.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.764160;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_c2e34ac979109e1d5d2f5747.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ab25bfb69c712dc35b491300.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.896973;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_d16c11699cfe0884d7c11f26.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_37159d8dd3482e04d8c1324d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e7b13cf03d2e7f9b0bc24153.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.871582;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.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m1{transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249776,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls38{letter-spacing:-0.504000px;}
.ls3e{letter-spacing:-0.361152px;}
.ls2f{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.086832px;}
.ls4e{letter-spacing:-0.014400px;}
.ls28{letter-spacing:-0.012000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012000px;}
.ls3d{letter-spacing:0.014256px;}
.ls7{letter-spacing:0.014400px;}
.ls3a{letter-spacing:0.015840px;}
.ls1{letter-spacing:0.021600px;}
.ls2c{letter-spacing:0.144000px;}
.ls5e{letter-spacing:0.159840px;}
.ls5c{letter-spacing:0.160272px;}
.ls5d{letter-spacing:0.161568px;}
.ls5f{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.242208px;}
.ls5b{letter-spacing:0.242352px;}
.ls5a{letter-spacing:0.256608px;}
.ls4{letter-spacing:0.283968px;}
.ls2b{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.317376px;}
.ls0{letter-spacing:0.359136px;}
.ls6{letter-spacing:0.442656px;}
.ls35{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.648000px;}
.ls29{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.722304px;}
.ls45{letter-spacing:1.080000px;}
.ls47{letter-spacing:1.455840px;}
.ls39{letter-spacing:2.160000px;}
.ls31{letter-spacing:3.600000px;}
.ls3b{letter-spacing:5.040000px;}
.ls34{letter-spacing:6.480000px;}
.ls14{letter-spacing:6.498000px;}
.ls1b{letter-spacing:6.516024px;}
.ls1c{letter-spacing:6.534000px;}
.ls16{letter-spacing:6.546024px;}
.ls1a{letter-spacing:6.558000px;}
.ls17{letter-spacing:6.576024px;}
.ls15{letter-spacing:6.582000px;}
.ls1d{letter-spacing:6.588000px;}
.ls19{letter-spacing:6.594000px;}
.ls1e{letter-spacing:6.606000px;}
.ls18{letter-spacing:6.642000px;}
.lsa{letter-spacing:6.942000px;}
.ls32{letter-spacing:7.920000px;}
.ls33{letter-spacing:9.360000px;}
.ls12{letter-spacing:10.320000px;}
.lsf{letter-spacing:10.362000px;}
.lsd{letter-spacing:10.368000px;}
.ls10{letter-spacing:10.392000px;}
.lsc{letter-spacing:10.422000px;}
.lse{letter-spacing:10.446000px;}
.lsb{letter-spacing:10.470000px;}
.ls11{letter-spacing:10.506000px;}
.ls13{letter-spacing:10.512000px;}
.ls3f{letter-spacing:10.800000px;}
.ls42{letter-spacing:12.240000px;}
.ls40{letter-spacing:13.680000px;}
.ls43{letter-spacing:15.120000px;}
.ls27{letter-spacing:15.491976px;}
.ls23{letter-spacing:15.498000px;}
.ls20{letter-spacing:15.582000px;}
.ls24{letter-spacing:15.582024px;}
.ls22{letter-spacing:15.618000px;}
.ls26{letter-spacing:15.624000px;}
.ls21{letter-spacing:15.642000px;}
.ls1f{letter-spacing:15.654000px;}
.ls25{letter-spacing:15.666000px;}
.ls49{letter-spacing:16.560000px;}
.ls46{letter-spacing:18.000000px;}
.ls30{letter-spacing:19.440000px;}
.ls59{letter-spacing:19.690272px;}
.ls41{letter-spacing:20.880000px;}
.ls50{letter-spacing:21.407040px;}
.ls4c{letter-spacing:23.760000px;}
.ls48{letter-spacing:28.080000px;}
.ls4d{letter-spacing:29.520000px;}
.ls53{letter-spacing:33.840000px;}
.ls60{letter-spacing:33.984000px;}
.ls3c{letter-spacing:35.280000px;}
.ls4b{letter-spacing:42.480000px;}
.ls56{letter-spacing:43.920000px;}
.ls52{letter-spacing:46.800000px;}
.ls51{letter-spacing:48.240000px;}
.ls58{letter-spacing:52.560000px;}
.ls55{letter-spacing:58.320000px;}
.ls4a{letter-spacing:63.588960px;}
.ls54{letter-spacing:108.720000px;}
.ls57{letter-spacing:133.199400px;}
.ls4f{letter-spacing:169.200000px;}
.ls8{letter-spacing:189.901440px;}
.ls36{letter-spacing:198.000000px;}
.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;}
}
.ws4{word-spacing:-47.892000px;}
.ws12{word-spacing:-24.033168px;}
.ws0{word-spacing:-21.239136px;}
.ws1{word-spacing:-21.122208px;}
.ws13{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.648000px;}
.ws11{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.985600px;}
.wsb{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.496000px;}
.wse{word-spacing:-17.352000px;}
.ws18{word-spacing:-12.602304px;}
.ws1f{word-spacing:-12.136608px;}
.ws1e{word-spacing:-12.122352px;}
.ws20{word-spacing:-12.117600px;}
.ws1d{word-spacing:-12.041568px;}
.ws15{word-spacing:-11.894256px;}
.ws17{word-spacing:-11.880000px;}
.ws16{word-spacing:-11.518848px;}
.ws6{word-spacing:-2.160000px;}
.ws19{word-spacing:-0.072000px;}
.ws1b{word-spacing:-0.061776px;}
.ws1a{word-spacing:-0.060480px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.012000px;}
.ws9{word-spacing:0.600000px;}
.ws8{word-spacing:0.954000px;}
.wsa{word-spacing:1.422000px;}
._19{margin-left:-214.345512px;}
._1d{margin-left:-211.838904px;}
._20{margin-left:-207.804168px;}
._15{margin-left:-198.000000px;}
._1b{margin-left:-190.513512px;}
._24{margin-left:-168.204024px;}
._1c{margin-left:-164.704824px;}
._1e{margin-left:-137.552688px;}
._25{margin-left:-119.952144px;}
._1a{margin-left:-118.059840px;}
._14{margin-left:-116.447040px;}
._1f{margin-left:-109.707480px;}
._16{margin-left:-102.357216px;}
._27{margin-left:-76.008096px;}
._17{margin-left:-62.164440px;}
._18{margin-left:-42.092208px;}
._26{margin-left:-35.532072px;}
._78{margin-left:-21.744000px;}
._61{margin-left:-13.104000px;}
._35{margin-left:-5.247720px;}
._2a{margin-left:-3.989808px;}
._8{margin-left:-2.263680px;}
._0{margin-left:-1.085760px;}
._d{width:1.524024px;}
._9{width:3.427200px;}
._3{width:5.282496px;}
._c{width:6.942000px;}
._12{width:8.036592px;}
._6{width:9.136800px;}
._e{width:10.447992px;}
._4{width:12.442032px;}
._f{width:13.824000px;}
._7{width:15.703200px;}
._2d{width:16.832592px;}
._11{width:19.296000px;}
._10{width:20.592000px;}
._2c{width:22.320000px;}
._2b{width:23.400000px;}
._33{width:24.768000px;}
._32{width:26.123976px;}
._30{width:27.720000px;}
._31{width:29.016000px;}
._3a{width:30.024000px;}
._36{width:31.752000px;}
._34{width:33.412248px;}
._2f{width:34.571520px;}
._2e{width:35.856000px;}
._44{width:37.080000px;}
._6c{width:38.447400px;}
._5c{width:39.527400px;}
._37{width:40.896000px;}
._39{width:41.976000px;}
._38{width:43.259472px;}
._60{width:44.753328px;}
._5{width:45.788400px;}
._62{width:47.050680px;}
._52{width:48.960000px;}
._50{width:51.048000px;}
._77{width:52.200000px;}
._57{width:54.144000px;}
._66{width:55.296000px;}
._40{width:56.880000px;}
._6e{width:57.887400px;}
._5b{width:60.047400px;}
._45{width:61.704000px;}
._46{width:62.987976px;}
._51{width:65.376000px;}
._3d{width:66.672000px;}
._3c{width:67.752000px;}
._49{width:70.259976px;}
._5a{width:71.846856px;}
._4c{width:73.728000px;}
._4f{width:75.816000px;}
._4d{width:78.192000px;}
._65{width:79.344000px;}
._71{width:80.424000px;}
._6a{width:81.626400px;}
._23{width:86.351040px;}
._55{width:87.408000px;}
._74{width:88.545600px;}
._4b{width:90.000000px;}
._47{width:91.975680px;}
._41{width:94.104000px;}
._56{width:100.440000px;}
._6b{width:103.600800px;}
._22{width:109.118808px;}
._53{width:110.952000px;}
._3f{width:112.464000px;}
._4e{width:114.415200px;}
._64{width:115.925760px;}
._42{width:117.504000px;}
._5e{width:125.712000px;}
._72{width:127.094400px;}
._67{width:131.760000px;}
._75{width:134.855400px;}
._76{width:136.008600px;}
._68{width:137.959200px;}
._13{width:144.000000px;}
._21{width:147.451104px;}
._59{width:153.432000px;}
._48{width:172.687080px;}
._70{width:174.348000px;}
._a{width:189.901440px;}
._73{width:193.104000px;}
._b{width:198.000000px;}
._43{width:202.680000px;}
._4a{width:205.632000px;}
._5d{width:249.624000px;}
._54{width:250.848000px;}
._3e{width:277.979976px;}
._6d{width:298.223400px;}
._58{width:317.375400px;}
._6f{width:349.416000px;}
._63{width:357.048000px;}
._69{width:416.592000px;}
._5f{width:473.544000px;}
._1{width:766.620000px;}
._3b{width:1185.599520px;}
._29{width:1221.599520px;}
._28{width:1257.600240px;}
._2{width:1424.304000px;}
.fc1{color:transparent;}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.520000px;}
.fs5{font-size:57.080623px;}
.fsb{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:76.044197px;}
.fs2{font-size:83.520000px;}
.fs6{font-size:84.000000px;}
.fs9{font-size:86.400000px;}
.fs1{font-size:96.480000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y13c{bottom:1.468800px;}
.y65{bottom:3.208800px;}
.y157{bottom:3.727500px;}
.y12e{bottom:3.960045px;}
.y146{bottom:4.348800px;}
.y142{bottom:4.768800px;}
.y13e{bottom:4.828800px;}
.y14c{bottom:4.948800px;}
.y144{bottom:5.308800px;}
.y140{bottom:5.368800px;}
.y11b{bottom:5.400030px;}
.y13b{bottom:5.428800px;}
.y12c{bottom:6.840045px;}
.y12d{bottom:7.888800px;}
.y16c{bottom:14.040000px;}
.y15c{bottom:14.400000px;}
.y178{bottom:15.067500px;}
.y133{bottom:21.600038px;}
.y64{bottom:24.088800px;}
.y131{bottom:24.480038px;}
.y156{bottom:24.607500px;}
.y14b{bottom:25.468800px;}
.y132{bottom:25.528800px;}
.y13a{bottom:26.308800px;}
.y12b{bottom:27.720038px;}
.y186{bottom:34.920000px;}
.y63{bottom:44.608800px;}
.y16b{bottom:45.000000px;}
.y155{bottom:45.127500px;}
.y15b{bottom:45.360000px;}
.y130{bottom:45.360038px;}
.y1cb{bottom:45.607500px;}
.y14a{bottom:46.348800px;}
.y177{bottom:46.387500px;}
.y139{bottom:46.828800px;}
.y12a{bottom:48.240030px;}
.y12f{bottom:49.288800px;}
.y185{bottom:56.827500px;}
.y62{bottom:65.488800px;}
.y154{bottom:66.007500px;}
.y149{bottom:66.868800px;}
.y1{bottom:66.928800px;}
.y138{bottom:67.708800px;}
.y129{bottom:68.760030px;}
.y127{bottom:71.640030px;}
.y128{bottom:72.688800px;}
.y16a{bottom:75.960000px;}
.y172{bottom:76.319997px;}
.y17b{bottom:76.320000px;}
.y1ca{bottom:76.567500px;}
.y176{bottom:77.347500px;}
.y184{bottom:77.707500px;}
.y148{bottom:87.748800px;}
.y137{bottom:88.228800px;}
.y126{bottom:92.520030px;}
.y124{bottom:95.400030px;}
.y125{bottom:96.448800px;}
.y1a9{bottom:101.160000px;}
.y169{bottom:107.280000px;}
.y1c9{bottom:107.527500px;}
.y1ba{bottom:107.767500px;}
.y175{bottom:108.307500px;}
.y1b1{bottom:108.667500px;}
.y136{bottom:109.108800px;}
.ya0{bottom:114.448800px;}
.y1cc{bottom:114.607500px;}
.y86{bottom:115.888800px;}
.y123{bottom:116.280030px;}
.y1a{bottom:116.608800px;}
.y121{bottom:119.160030px;}
.y122{bottom:120.208800px;}
.y153{bottom:123.088800px;}
.y1f5{bottom:124.168800px;}
.yc2{bottom:125.968800px;}
.y3f{bottom:126.781433px;}
.y171{bottom:127.800000px;}
.y1ab{bottom:128.160000px;}
.y16d{bottom:130.500000px;}
.y170{bottom:131.527500px;}
.y18b{bottom:132.000000px;}
.y1a8{bottom:132.120000px;}
.y18e{bottom:132.247500px;}
.y105{bottom:136.048800px;}
.ydd{bottom:137.128800px;}
.y168{bottom:138.240000px;}
.y194{bottom:138.600000px;}
.y1b9{bottom:138.727500px;}
.y1c8{bottom:138.847500px;}
.y1cd{bottom:139.087500px;}
.y174{bottom:139.267500px;}
.y1b0{bottom:139.627500px;}
.y120{bottom:140.040030px;}
.y1c1{bottom:140.167500px;}
.y11d{bottom:142.920030px;}
.y11f{bottom:143.968800px;}
.y152{bottom:144.328800px;}
.y9f{bottom:145.408800px;}
.y85{bottom:146.848800px;}
.y16f{bottom:150.067500px;}
.y1f4{bottom:155.488800px;}
.y1f6{bottom:155.488845px;}
.yc1{bottom:156.928845px;}
.y19{bottom:158.008845px;}
.ya4{bottom:158.368845px;}
.y1a7{bottom:163.440000px;}
.y151{bottom:165.928845px;}
.y104{bottom:167.368845px;}
.ydc{bottom:168.448845px;}
.y167{bottom:169.200000px;}
.y17a{bottom:169.560000px;}
.y1c7{bottom:169.807500px;}
.y18a{bottom:170.047500px;}
.y173{bottom:170.227500px;}
.y16e{bottom:170.587500px;}
.y1aa{bottom:170.947500px;}
.y1c0{bottom:171.127500px;}
.y3d{bottom:172.768845px;}
.y1e2{bottom:176.368800px;}
.y9e{bottom:176.368845px;}
.y84{bottom:177.808845px;}
.y1f3{bottom:186.448800px;}
.yc0{bottom:187.888845px;}
.ya3{bottom:189.328845px;}
.y1a6{bottom:194.400000px;}
.y150{bottom:197.608845px;}
.y103{bottom:198.328845px;}
.y18{bottom:199.408845px;}
.y166{bottom:200.160000px;}
.y183{bottom:200.520000px;}
.y1c6{bottom:200.767500px;}
.y1b8{bottom:201.007500px;}
.y189{bottom:201.367500px;}
.y1af{bottom:201.547500px;}
.y1bf{bottom:202.087500px;}
.y3c{bottom:204.088845px;}
.y1e1{bottom:207.328800px;}
.y9d{bottom:207.328845px;}
.y83{bottom:209.128845px;}
.y1f2{bottom:217.408800px;}
.ybf{bottom:218.848845px;}
.ya2{bottom:220.648845px;}
.y17c{bottom:225.000000px;}
.y1a5{bottom:225.360000px;}
.y17f{bottom:225.487500px;}
.y17{bottom:226.768800px;}
.y94{bottom:228.208845px;}
.y1a3{bottom:228.240000px;}
.y1a4{bottom:228.967500px;}
.ydb{bottom:230.368845px;}
.y165{bottom:231.480000px;}
.y1c5{bottom:231.727500px;}
.y1b7{bottom:231.967500px;}
.y1ae{bottom:232.867500px;}
.y1be{bottom:233.047500px;}
.y3b{bottom:235.048845px;}
.y1e0{bottom:238.648800px;}
.y9c{bottom:238.648845px;}
.y102{bottom:239.368845px;}
.y82{bottom:240.088845px;}
.y134{bottom:247.288845px;}
.y1f1{bottom:248.368800px;}
.ybe{bottom:250.168845px;}
.ya1{bottom:251.608845px;}
.y1b4{bottom:252.000000px;}
.y93{bottom:259.168845px;}
.y1a2{bottom:260.287500px;}
.yda{bottom:261.328845px;}
.y164{bottom:262.440000px;}
.y193{bottom:262.800000px;}
.y1b6{bottom:262.927500px;}
.y1c4{bottom:263.047500px;}
.y16{bottom:263.128800px;}
.y1bd{bottom:264.367500px;}
.y3a{bottom:266.008845px;}
.y1df{bottom:269.608800px;}
.y9b{bottom:269.608845px;}
.y11e{bottom:270.000000px;}
.y11c{bottom:271.048800px;}
.y81{bottom:271.048845px;}
.y1b3{bottom:273.727500px;}
.y101{bottom:276.448845px;}
.y1f0{bottom:279.688800px;}
.ybd{bottom:281.128845px;}
.y161{bottom:282.960000px;}
.y92{bottom:290.128838px;}
.y1a1{bottom:291.247500px;}
.yd9{bottom:292.648838px;}
.y163{bottom:293.400000px;}
.y192{bottom:293.760000px;}
.y1b5{bottom:293.887500px;}
.y199{bottom:294.007500px;}
.y1b2{bottom:294.247500px;}
.y39{bottom:296.968838px;}
.y15{bottom:299.128800px;}
.y1de{bottom:300.568800px;}
.y9a{bottom:300.568838px;}
.y80{bottom:302.008838px;}
.y15f{bottom:304.927500px;}
.y100{bottom:307.408838px;}
.y1ef{bottom:310.648800px;}
.ybc{bottom:312.088838px;}
.y180{bottom:314.280000px;}
.y15d{bottom:318.000000px;}
.y160{bottom:318.727500px;}
.y91{bottom:321.448830px;}
.y1a0{bottom:322.207500px;}
.yd8{bottom:323.608830px;}
.y162{bottom:324.360000px;}
.y182{bottom:324.720000px;}
.y198{bottom:324.967500px;}
.y15e{bottom:325.447500px;}
.y38{bottom:328.288830px;}
.y1dd{bottom:331.528800px;}
.y99{bottom:331.528830px;}
.y7f{bottom:332.968830px;}
.y14{bottom:335.488800px;}
.y17e{bottom:335.647500px;}
.y1c3{bottom:335.767500px;}
.yff{bottom:338.368800px;}
.yfe{bottom:338.368830px;}
.y1ee{bottom:341.608800px;}
.ybb{bottom:343.048830px;}
.y19d{bottom:345.240000px;}
.y37{bottom:349.168800px;}
.y90{bottom:352.408830px;}
.y19f{bottom:353.167500px;}
.yd7{bottom:354.568830px;}
.y181{bottom:355.680000px;}
.y197{bottom:355.927500px;}
.y1c2{bottom:356.287500px;}
.y17d{bottom:356.527500px;}
.y1dc{bottom:362.848800px;}
.y98{bottom:362.848830px;}
.y7e{bottom:364.288830px;}
.y1d9{bottom:365.167500px;}
.y19c{bottom:366.847500px;}
.y36{bottom:370.048800px;}
.y13{bottom:371.848800px;}
.y1ed{bottom:372.568800px;}
.yba{bottom:374.368830px;}
.yfd{bottom:375.448830px;}
.y18f{bottom:376.560000px;}
.y8f{bottom:383.368830px;}
.yd6{bottom:385.528830px;}
.y191{bottom:386.640000px;}
.y196{bottom:386.887500px;}
.y19e{bottom:387.367500px;}
.y19b{bottom:387.727500px;}
.y35{bottom:390.568800px;}
.y1db{bottom:393.808800px;}
.y97{bottom:393.808830px;}
.y7d{bottom:395.248830px;}
.y12{bottom:396.328800px;}
.y1d8{bottom:396.487500px;}
.y18d{bottom:397.687500px;}
.y50{bottom:401.712300px;}
.y1ec{bottom:403.888800px;}
.yb9{bottom:405.328830px;}
.yfc{bottom:406.768830px;}
.y34{bottom:411.448800px;}
.y8e{bottom:414.328830px;}
.yd5{bottom:416.848830px;}
.y190{bottom:417.960000px;}
.y195{bottom:418.207500px;}
.y18c{bottom:418.567500px;}
.y11{bottom:423.688800px;}
.y1da{bottom:424.768800px;}
.y96{bottom:424.768830px;}
.y7c{bottom:426.208830px;}
.y1d7{bottom:427.447500px;}
.y4f{bottom:432.852300px;}
.y1eb{bottom:434.848800px;}
.yb8{bottom:436.288830px;}
.yfb{bottom:437.728830px;}
.y33{bottom:442.048800px;}
.y11a{bottom:444.208800px;}
.y8d{bottom:445.288830px;}
.yd4{bottom:447.808830px;}
.yd3{bottom:450.688800px;}
.yd2{bottom:450.688830px;}
.y10{bottom:452.128800px;}
.y95{bottom:455.728800px;}
.y7b{bottom:456.448800px;}
.y1d6{bottom:458.407500px;}
.y4e{bottom:463.992300px;}
.y1ea{bottom:465.808800px;}
.yb7{bottom:467.248800px;}
.yfa{bottom:468.688800px;}
.y32{bottom:473.008800px;}
.y61{bottom:476.608800px;}
.yf{bottom:483.088800px;}
.yd1{bottom:485.248800px;}
.y7a{bottom:486.688800px;}
.y119{bottom:487.048800px;}
.yd0{bottom:488.128800px;}
.y1d5{bottom:489.367500px;}
.y1e9{bottom:496.768800px;}
.yb6{bottom:498.568800px;}
.yf9{bottom:499.648800px;}
.y31{bottom:503.968800px;}
.y1bc{bottom:504.000000px;}
.y1bb{bottom:505.567500px;}
.y60{bottom:507.568800px;}
.y4d{bottom:513.898800px;}
.ye{bottom:514.408800px;}
.y79{bottom:518.008800px;}
.y118{bottom:518.368800px;}
.y1d4{bottom:520.687500px;}
.ycf{bottom:522.688800px;}
.y1e8{bottom:528.088800px;}
.yb5{bottom:529.528800px;}
.yf8{bottom:530.968800px;}
.y30{bottom:535.288800px;}
.y1ad{bottom:535.500000px;}
.y1ac{bottom:536.887500px;}
.y5f{bottom:538.528800px;}
.yd{bottom:544.288800px;}
.y78{bottom:548.968800px;}
.y117{bottom:549.328800px;}
.y1d3{bottom:551.647500px;}
.y116{bottom:552.208800px;}
.yce{bottom:554.008800px;}
.ycd{bottom:556.888800px;}
.y1e7{bottom:559.048800px;}
.yb4{bottom:560.488800px;}
.yf7{bottom:561.928800px;}
.y2f{bottom:566.248800px;}
.y188{bottom:567.000000px;}
.y187{bottom:567.847500px;}
.y4c{bottom:568.032300px;}
.yc{bottom:568.408800px;}
.y5e{bottom:569.488800px;}
.y77{bottom:579.928800px;}
.y1d2{bottom:582.607500px;}
.y115{bottom:586.768800px;}
.y1e6{bottom:590.008800px;}
.yb3{bottom:591.448800px;}
.yb{bottom:592.528800px;}
.ycc{bottom:594.328800px;}
.y2e{bottom:597.208800px;}
.y179{bottom:598.807500px;}
.yf6{bottom:599.008800px;}
.y4b{bottom:599.052300px;}
.y8c{bottom:600.808800px;}
.y76{bottom:610.888800px;}
.y1d1{bottom:613.567500px;}
.ya{bottom:616.648800px;}
.y114{bottom:617.728800px;}
.y1e5{bottom:620.968800px;}
.yb2{bottom:622.768800px;}
.y2d{bottom:628.168800px;}
.ycb{bottom:628.888800px;}
.yf5{bottom:629.968800px;}
.y4a{bottom:630.072300px;}
.y5d{bottom:631.768800px;}
.y9{bottom:640.768800px;}
.y75{bottom:642.208800px;}
.y1d0{bottom:644.887500px;}
.y113{bottom:649.048800px;}
.y1e4{bottom:652.288800px;}
.yb1{bottom:653.728800px;}
.y2c{bottom:659.488800px;}
.yca{bottom:660.208800px;}
.y15a{bottom:660.727500px;}
.yf4{bottom:660.928800px;}
.y49{bottom:661.092300px;}
.y5c{bottom:662.728800px;}
.yc9{bottom:663.088800px;}
.y8{bottom:664.888800px;}
.y74{bottom:673.168800px;}
.y14f{bottom:673.528800px;}
.y1cf{bottom:675.847500px;}
.y112{bottom:680.008800px;}
.y1e3{bottom:683.248800px;}
.yb0{bottom:684.688800px;}
.ye4{bottom:687.568800px;}
.y7{bottom:689.008800px;}
.y2b{bottom:690.448800px;}
.y48{bottom:692.112300px;}
.yf3{bottom:692.248800px;}
.y8b{bottom:693.688800px;}
.yc8{bottom:697.648800px;}
.y73{bottom:704.128800px;}
.y14e{bottom:704.488800px;}
.y1ce{bottom:706.807500px;}
.y111{bottom:710.968800px;}
.y6{bottom:713.128800px;}
.yaf{bottom:715.648800px;}
.y2a{bottom:721.408800px;}
.ye3{bottom:722.128800px;}
.y19a{bottom:723.007500px;}
.y47{bottom:723.132300px;}
.yf2{bottom:723.208800px;}
.y5b{bottom:725.008800px;}
.yc7{bottom:728.608800px;}
.yc6{bottom:731.488800px;}
.y72{bottom:735.088800px;}
.y14d{bottom:735.808800px;}
.y5{bottom:737.248800px;}
.y159{bottom:737.767500px;}
.y110{bottom:741.928800px;}
.yae{bottom:746.608800px;}
.y29{bottom:752.368800px;}
.ye2{bottom:753.448800px;}
.y46{bottom:754.152300px;}
.yf1{bottom:754.168800px;}
.y5a{bottom:755.968800px;}
.ye1{bottom:756.328800px;}
.y147{bottom:757.500000px;}
.y4{bottom:761.008800px;}
.yc5{bottom:766.048800px;}
.y71{bottom:766.408800px;}
.y158{bottom:769.087500px;}
.y10f{bottom:773.248800px;}
.yad{bottom:777.928800px;}
.y3{bottom:781.528800px;}
.y28{bottom:783.688800px;}
.y59{bottom:786.928800px;}
.ye0{bottom:790.888800px;}
.yf0{bottom:791.248800px;}
.y70{bottom:797.368800px;}
.y10e{bottom:804.208800px;}
.y45{bottom:804.418800px;}
.yac{bottom:808.888800px;}
.yab{bottom:811.768800px;}
.y27{bottom:814.648800px;}
.y2{bottom:816.808800px;}
.y8a{bottom:817.888800px;}
.ydf{bottom:821.848800px;}
.yef{bottom:822.208800px;}
.yde{bottom:824.728800px;}
.y6f{bottom:828.328800px;}
.y10d{bottom:835.168800px;}
.y26{bottom:845.608800px;}
.yaa{bottom:846.328800px;}
.y58{bottom:849.208800px;}
.yee{bottom:853.528800px;}
.y44{bottom:858.552300px;}
.y6e{bottom:859.288800px;}
.y10c{bottom:866.128800px;}
.y145{bottom:871.500000px;}
.y25{bottom:876.568800px;}
.ya9{bottom:877.648800px;}
.y57{bottom:880.168800px;}
.ya8{bottom:880.528800px;}
.yed{bottom:884.488800px;}
.y43{bottom:889.512300px;}
.yc4{bottom:890.248800px;}
.y6d{bottom:890.608800px;}
.y143{bottom:901.500000px;}
.y10b{bottom:903.208800px;}
.y24{bottom:907.888800px;}
.y56{bottom:911.128800px;}
.ya7{bottom:915.088800px;}
.yec{bottom:915.448800px;}
.y6c{bottom:921.568800px;}
.y141{bottom:933.000000px;}
.y10a{bottom:934.528800px;}
.y23{bottom:938.848800px;}
.y42{bottom:941.352300px;}
.y55{bottom:942.088800px;}
.ya6{bottom:946.048800px;}
.yeb{bottom:946.408800px;}
.ya5{bottom:948.928800px;}
.y6b{bottom:952.528800px;}
.y13f{bottom:963.000000px;}
.y109{bottom:965.488800px;}
.y22{bottom:969.808800px;}
.y41{bottom:972.492300px;}
.y54{bottom:973.408800px;}
.yea{bottom:977.728800px;}
.y6a{bottom:983.488800px;}
.yc3{bottom:984.208800px;}
.y21{bottom:991.048800px;}
.y13d{bottom:994.500000px;}
.y108{bottom:1002.568800px;}
.y53{bottom:1004.368800px;}
.y40{bottom:1004.869500px;}
.ye9{bottom:1008.688800px;}
.y69{bottom:1014.808800px;}
.y20{bottom:1015.888800px;}
.y135{bottom:1024.500000px;}
.y107{bottom:1033.528800px;}
.y89{bottom:1035.328800px;}
.ye8{bottom:1039.648800px;}
.y68{bottom:1045.768800px;}
.y1f{bottom:1056.568800px;}
.y106{bottom:1064.488800px;}
.y52{bottom:1066.288800px;}
.ye7{bottom:1070.608800px;}
.y67{bottom:1076.728800px;}
.y1e{bottom:1077.088800px;}
.y3e{bottom:1085.623950px;}
.y88{bottom:1097.608800px;}
.y1d{bottom:1097.968800px;}
.ye6{bottom:1101.928800px;}
.y66{bottom:1107.688800px;}
.y1c{bottom:1118.488800px;}
.ye5{bottom:1132.888800px;}
.y87{bottom:1133.248800px;}
.y51{bottom:1139.008800px;}
.y1b{bottom:1139.368800px;}
.h1d{height:21.000000px;}
.h18{height:21.960000px;}
.h1c{height:22.500000px;}
.hc{height:38.044458px;}
.h11{height:47.162880px;}
.h12{height:47.988281px;}
.h16{height:49.042969px;}
.hf{height:49.992188px;}
.h8{height:51.264000px;}
.h17{height:54.000000px;}
.h5{height:56.563594px;}
.h15{height:57.033148px;}
.h13{height:57.585938px;}
.h22{height:62.272515px;}
.h30{height:62.280000px;}
.h2{height:63.175781px;}
.ha{height:63.949219px;}
.hd{height:63.950419px;}
.h14{height:64.582031px;}
.h6{height:73.283906px;}
.h10{height:82.500000px;}
.h4{height:85.691953px;}
.h2b{height:93.240000px;}
.h2a{height:94.500000px;}
.h7{height:95.923828px;}
.h9{height:103.654688px;}
.h1e{height:105.000000px;}
.h1b{height:126.000000px;}
.hb{height:139.650000px;}
.h19{height:159.840000px;}
.h1a{height:162.000000px;}
.h26{height:186.120000px;}
.h33{height:186.472500px;}
.h27{height:186.480000px;}
.h25{height:187.500000px;}
.h2c{height:217.440000px;}
.h2d{height:219.000000px;}
.h34{height:248.400000px;}
.h35{height:250.500000px;}
.h38{height:279.720000px;}
.h39{height:282.000000px;}
.h37{height:310.320000px;}
.h36{height:312.000000px;}
.h24{height:341.272500px;}
.h23{height:342.000000px;}
.h29{height:372.600000px;}
.h28{height:373.500000px;}
.h32{height:403.560000px;}
.h31{height:405.000000px;}
.h2f{height:434.752500px;}
.h2e{height:435.000000px;}
.h21{height:880.327497px;}
.h1f{height:892.913400px;}
.h20{height:893.250000px;}
.he{height:1250.248500px;}
.h3{height:1250.248837px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w17{width:98.280000px;}
.w10{width:98.640000px;}
.w16{width:100.500000px;}
.w18{width:102.240000px;}
.w11{width:102.960000px;}
.w19{width:115.920000px;}
.w12{width:116.640000px;}
.w9{width:132.000000px;}
.w3{width:151.425000px;}
.w1a{width:201.240000px;}
.w13{width:201.825900px;}
.w1f{width:202.500000px;}
.w1c{width:230.685750px;}
.w1d{width:231.000000px;}
.w15{width:231.120000px;}
.wb{width:244.500000px;}
.w1b{width:254.160000px;}
.w1e{width:255.000000px;}
.w14{width:255.240000px;}
.wa{width:256.500000px;}
.w7{width:360.345900px;}
.w6{width:360.360000px;}
.w8{width:361.500000px;}
.w5{width:681.000000px;}
.w4{width:880.326750px;}
.w2{width:880.327350px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.we{width:1051.500000px;}
.wf{width:1250.248854px;}
.wc{width:1262.834700px;}
.wd{width:1263.000000px;}
.x0{left:0.000000px;}
.x34{left:4.665864px;}
.x2f{left:5.760000px;}
.x3a{left:7.920000px;}
.x40{left:9.045702px;}
.x32{left:11.379900px;}
.x2{left:12.585900px;}
.x43{left:13.599846px;}
.x31{left:21.960000px;}
.x42{left:23.955606px;}
.x37{left:30.945900px;}
.x35{left:32.205900px;}
.x41{left:34.605846px;}
.x38{left:57.945900px;}
.x36{left:59.206008px;}
.x44{left:61.605846px;}
.x10{left:94.320000px;}
.x14{left:105.735675px;}
.x4{left:106.905720px;}
.x2d{left:109.080000px;}
.x28{left:114.120000px;}
.x2e{left:115.905900px;}
.x22{left:120.405720px;}
.x23{left:123.840000px;}
.xb{left:129.904860px;}
.xa{left:132.146076px;}
.x1{left:133.905720px;}
.x26{left:136.800000px;}
.x24{left:148.320000px;}
.x46{left:149.430810px;}
.x2c{left:151.560000px;}
.x33{left:153.000000px;}
.x27{left:156.673776px;}
.x2b{left:160.232628px;}
.x29{left:162.930504px;}
.x2a{left:166.320000px;}
.x25{left:190.800000px;}
.x39{left:202.320054px;}
.x3b{left:206.265900px;}
.x1b{left:208.079400px;}
.x9{left:227.192448px;}
.x19{left:232.199400px;}
.x18{left:267.839400px;}
.xd{left:274.770588px;}
.xe{left:283.501812px;}
.x16{left:285.119400px;}
.x7{left:294.570876px;}
.xc{left:299.782092px;}
.x6{left:306.773040px;}
.x3c{left:309.225900px;}
.x8{left:311.515464px;}
.x1d{left:313.199400px;}
.x15{left:355.319400px;}
.xf{left:386.148540px;}
.x1f{left:422.279400px;}
.x3d{left:426.000000px;}
.x1a{left:443.159400px;}
.x5{left:446.805660px;}
.x30{left:477.000000px;}
.x1c{left:507.239400px;}
.x3{left:508.680000px;}
.x13{left:528.480000px;}
.x17{left:530.999400px;}
.x11{left:540.930540px;}
.x12{left:572.730420px;}
.x20{left:575.279400px;}
.x1e{left:612.719400px;}
.x3e{left:627.825900px;}
.x21{left:637.559400px;}
.x3f{left:883.065900px;}
.x45{left:1144.439904px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls38{letter-spacing:-0.448000pt;}
.ls3e{letter-spacing:-0.321024pt;}
.ls2f{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.077184pt;}
.ls4e{letter-spacing:-0.012800pt;}
.ls28{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.010667pt;}
.ls3d{letter-spacing:0.012672pt;}
.ls7{letter-spacing:0.012800pt;}
.ls3a{letter-spacing:0.014080pt;}
.ls1{letter-spacing:0.019200pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls5e{letter-spacing:0.142080pt;}
.ls5c{letter-spacing:0.142464pt;}
.ls5d{letter-spacing:0.143616pt;}
.ls5f{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.215296pt;}
.ls5b{letter-spacing:0.215424pt;}
.ls5a{letter-spacing:0.228096pt;}
.ls4{letter-spacing:0.252416pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.282112pt;}
.ls0{letter-spacing:0.319232pt;}
.ls6{letter-spacing:0.393472pt;}
.ls35{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls29{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.642048pt;}
.ls45{letter-spacing:0.960000pt;}
.ls47{letter-spacing:1.294080pt;}
.ls39{letter-spacing:1.920000pt;}
.ls31{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:4.480000pt;}
.ls34{letter-spacing:5.760000pt;}
.ls14{letter-spacing:5.776000pt;}
.ls1b{letter-spacing:5.792021pt;}
.ls1c{letter-spacing:5.808000pt;}
.ls16{letter-spacing:5.818688pt;}
.ls1a{letter-spacing:5.829333pt;}
.ls17{letter-spacing:5.845355pt;}
.ls15{letter-spacing:5.850667pt;}
.ls1d{letter-spacing:5.856000pt;}
.ls19{letter-spacing:5.861333pt;}
.ls1e{letter-spacing:5.872000pt;}
.ls18{letter-spacing:5.904000pt;}
.lsa{letter-spacing:6.170667pt;}
.ls32{letter-spacing:7.040000pt;}
.ls33{letter-spacing:8.320000pt;}
.ls12{letter-spacing:9.173333pt;}
.lsf{letter-spacing:9.210667pt;}
.lsd{letter-spacing:9.216000pt;}
.ls10{letter-spacing:9.237333pt;}
.lsc{letter-spacing:9.264000pt;}
.lse{letter-spacing:9.285333pt;}
.lsb{letter-spacing:9.306667pt;}
.ls11{letter-spacing:9.338667pt;}
.ls13{letter-spacing:9.344000pt;}
.ls3f{letter-spacing:9.600000pt;}
.ls42{letter-spacing:10.880000pt;}
.ls40{letter-spacing:12.160000pt;}
.ls43{letter-spacing:13.440000pt;}
.ls27{letter-spacing:13.770645pt;}
.ls23{letter-spacing:13.776000pt;}
.ls20{letter-spacing:13.850667pt;}
.ls24{letter-spacing:13.850688pt;}
.ls22{letter-spacing:13.882667pt;}
.ls26{letter-spacing:13.888000pt;}
.ls21{letter-spacing:13.904000pt;}
.ls1f{letter-spacing:13.914667pt;}
.ls25{letter-spacing:13.925333pt;}
.ls49{letter-spacing:14.720000pt;}
.ls46{letter-spacing:16.000000pt;}
.ls30{letter-spacing:17.280000pt;}
.ls59{letter-spacing:17.502464pt;}
.ls41{letter-spacing:18.560000pt;}
.ls50{letter-spacing:19.028480pt;}
.ls4c{letter-spacing:21.120000pt;}
.ls48{letter-spacing:24.960000pt;}
.ls4d{letter-spacing:26.240000pt;}
.ls53{letter-spacing:30.080000pt;}
.ls60{letter-spacing:30.208000pt;}
.ls3c{letter-spacing:31.360000pt;}
.ls4b{letter-spacing:37.760000pt;}
.ls56{letter-spacing:39.040000pt;}
.ls52{letter-spacing:41.600000pt;}
.ls51{letter-spacing:42.880000pt;}
.ls58{letter-spacing:46.720000pt;}
.ls55{letter-spacing:51.840000pt;}
.ls4a{letter-spacing:56.523520pt;}
.ls54{letter-spacing:96.640000pt;}
.ls57{letter-spacing:118.399467pt;}
.ls4f{letter-spacing:150.400000pt;}
.ls8{letter-spacing:168.801280pt;}
.ls36{letter-spacing:176.000000pt;}
.ws4{word-spacing:-42.570667pt;}
.ws12{word-spacing:-21.362816pt;}
.ws0{word-spacing:-18.879232pt;}
.ws1{word-spacing:-18.775296pt;}
.ws13{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.576000pt;}
.ws11{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.987200pt;}
.wsb{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.552000pt;}
.wse{word-spacing:-15.424000pt;}
.ws18{word-spacing:-11.202048pt;}
.ws1f{word-spacing:-10.788096pt;}
.ws1e{word-spacing:-10.775424pt;}
.ws20{word-spacing:-10.771200pt;}
.ws1d{word-spacing:-10.703616pt;}
.ws15{word-spacing:-10.572672pt;}
.ws17{word-spacing:-10.560000pt;}
.ws16{word-spacing:-10.238976pt;}
.ws6{word-spacing:-1.920000pt;}
.ws19{word-spacing:-0.064000pt;}
.ws1b{word-spacing:-0.054912pt;}
.ws1a{word-spacing:-0.053760pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.010667pt;}
.ws9{word-spacing:0.533333pt;}
.ws8{word-spacing:0.848000pt;}
.wsa{word-spacing:1.264000pt;}
._19{margin-left:-190.529344pt;}
._1d{margin-left:-188.301248pt;}
._20{margin-left:-184.714816pt;}
._15{margin-left:-176.000000pt;}
._1b{margin-left:-169.345344pt;}
._24{margin-left:-149.514688pt;}
._1c{margin-left:-146.404288pt;}
._1e{margin-left:-122.269056pt;}
._25{margin-left:-106.624128pt;}
._1a{margin-left:-104.942080pt;}
._14{margin-left:-103.508480pt;}
._1f{margin-left:-97.517760pt;}
._16{margin-left:-90.984192pt;}
._27{margin-left:-67.562752pt;}
._17{margin-left:-55.257280pt;}
._18{margin-left:-37.415296pt;}
._26{margin-left:-31.584064pt;}
._78{margin-left:-19.328000pt;}
._61{margin-left:-11.648000pt;}
._35{margin-left:-4.664640pt;}
._2a{margin-left:-3.546496pt;}
._8{margin-left:-2.012160pt;}
._0{margin-left:-0.965120pt;}
._d{width:1.354688pt;}
._9{width:3.046400pt;}
._3{width:4.695552pt;}
._c{width:6.170667pt;}
._12{width:7.143637pt;}
._6{width:8.121600pt;}
._e{width:9.287104pt;}
._4{width:11.059584pt;}
._f{width:12.288000pt;}
._7{width:13.958400pt;}
._2d{width:14.962304pt;}
._11{width:17.152000pt;}
._10{width:18.304000pt;}
._2c{width:19.840000pt;}
._2b{width:20.800000pt;}
._33{width:22.016000pt;}
._32{width:23.221312pt;}
._30{width:24.640000pt;}
._31{width:25.792000pt;}
._3a{width:26.688000pt;}
._36{width:28.224000pt;}
._34{width:29.699776pt;}
._2f{width:30.730240pt;}
._2e{width:31.872000pt;}
._44{width:32.960000pt;}
._6c{width:34.175467pt;}
._5c{width:35.135467pt;}
._37{width:36.352000pt;}
._39{width:37.312000pt;}
._38{width:38.452864pt;}
._60{width:39.780736pt;}
._5{width:40.700800pt;}
._62{width:41.822827pt;}
._52{width:43.520000pt;}
._50{width:45.376000pt;}
._77{width:46.400000pt;}
._57{width:48.128000pt;}
._66{width:49.152000pt;}
._40{width:50.560000pt;}
._6e{width:51.455467pt;}
._5b{width:53.375467pt;}
._45{width:54.848000pt;}
._46{width:55.989312pt;}
._51{width:58.112000pt;}
._3d{width:59.264000pt;}
._3c{width:60.224000pt;}
._49{width:62.453312pt;}
._5a{width:63.863872pt;}
._4c{width:65.536000pt;}
._4f{width:67.392000pt;}
._4d{width:69.504000pt;}
._65{width:70.528000pt;}
._71{width:71.488000pt;}
._6a{width:72.556800pt;}
._23{width:76.756480pt;}
._55{width:77.696000pt;}
._74{width:78.707200pt;}
._4b{width:80.000000pt;}
._47{width:81.756160pt;}
._41{width:83.648000pt;}
._56{width:89.280000pt;}
._6b{width:92.089600pt;}
._22{width:96.994496pt;}
._53{width:98.624000pt;}
._3f{width:99.968000pt;}
._4e{width:101.702400pt;}
._64{width:103.045120pt;}
._42{width:104.448000pt;}
._5e{width:111.744000pt;}
._72{width:112.972800pt;}
._67{width:117.120000pt;}
._75{width:119.871467pt;}
._76{width:120.896533pt;}
._68{width:122.630400pt;}
._13{width:128.000000pt;}
._21{width:131.067648pt;}
._59{width:136.384000pt;}
._48{width:153.499627pt;}
._70{width:154.976000pt;}
._a{width:168.801280pt;}
._73{width:171.648000pt;}
._b{width:176.000000pt;}
._43{width:180.160000pt;}
._4a{width:182.784000pt;}
._5d{width:221.888000pt;}
._54{width:222.976000pt;}
._3e{width:247.093312pt;}
._6d{width:265.087467pt;}
._58{width:282.111467pt;}
._6f{width:310.592000pt;}
._63{width:317.376000pt;}
._69{width:370.304000pt;}
._5f{width:420.928000pt;}
._1{width:681.440000pt;}
._3b{width:1053.866240pt;}
._29{width:1085.866240pt;}
._28{width:1117.866880pt;}
._2{width:1266.048000pt;}
.fs8{font-size:42.240000pt;}
.fs5{font-size:50.738331pt;}
.fsb{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:67.594842pt;}
.fs2{font-size:74.240000pt;}
.fs6{font-size:74.666667pt;}
.fs9{font-size:76.800000pt;}
.fs1{font-size:85.760000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y13c{bottom:1.305600pt;}
.y65{bottom:2.852267pt;}
.y157{bottom:3.313333pt;}
.y12e{bottom:3.520040pt;}
.y146{bottom:3.865600pt;}
.y142{bottom:4.238933pt;}
.y13e{bottom:4.292267pt;}
.y14c{bottom:4.398933pt;}
.y144{bottom:4.718933pt;}
.y140{bottom:4.772267pt;}
.y11b{bottom:4.800027pt;}
.y13b{bottom:4.825600pt;}
.y12c{bottom:6.080040pt;}
.y12d{bottom:7.012267pt;}
.y16c{bottom:12.480000pt;}
.y15c{bottom:12.800000pt;}
.y178{bottom:13.393333pt;}
.y133{bottom:19.200033pt;}
.y64{bottom:21.412267pt;}
.y131{bottom:21.760033pt;}
.y156{bottom:21.873333pt;}
.y14b{bottom:22.638933pt;}
.y132{bottom:22.692267pt;}
.y13a{bottom:23.385600pt;}
.y12b{bottom:24.640033pt;}
.y186{bottom:31.040000pt;}
.y63{bottom:39.652267pt;}
.y16b{bottom:40.000000pt;}
.y155{bottom:40.113333pt;}
.y15b{bottom:40.320000pt;}
.y130{bottom:40.320033pt;}
.y1cb{bottom:40.540000pt;}
.y14a{bottom:41.198933pt;}
.y177{bottom:41.233333pt;}
.y139{bottom:41.625600pt;}
.y12a{bottom:42.880027pt;}
.y12f{bottom:43.812267pt;}
.y185{bottom:50.513333pt;}
.y62{bottom:58.212267pt;}
.y154{bottom:58.673333pt;}
.y149{bottom:59.438933pt;}
.y1{bottom:59.492267pt;}
.y138{bottom:60.185600pt;}
.y129{bottom:61.120027pt;}
.y127{bottom:63.680027pt;}
.y128{bottom:64.612267pt;}
.y16a{bottom:67.520000pt;}
.y172{bottom:67.839997pt;}
.y17b{bottom:67.840000pt;}
.y1ca{bottom:68.060000pt;}
.y176{bottom:68.753333pt;}
.y184{bottom:69.073333pt;}
.y148{bottom:77.998933pt;}
.y137{bottom:78.425600pt;}
.y126{bottom:82.240027pt;}
.y124{bottom:84.800027pt;}
.y125{bottom:85.732267pt;}
.y1a9{bottom:89.920000pt;}
.y169{bottom:95.360000pt;}
.y1c9{bottom:95.580000pt;}
.y1ba{bottom:95.793333pt;}
.y175{bottom:96.273333pt;}
.y1b1{bottom:96.593333pt;}
.y136{bottom:96.985600pt;}
.ya0{bottom:101.732267pt;}
.y1cc{bottom:101.873333pt;}
.y86{bottom:103.012267pt;}
.y123{bottom:103.360027pt;}
.y1a{bottom:103.652267pt;}
.y121{bottom:105.920027pt;}
.y122{bottom:106.852267pt;}
.y153{bottom:109.412267pt;}
.y1f5{bottom:110.372267pt;}
.yc2{bottom:111.972267pt;}
.y3f{bottom:112.694607pt;}
.y171{bottom:113.600000pt;}
.y1ab{bottom:113.920000pt;}
.y16d{bottom:116.000000pt;}
.y170{bottom:116.913333pt;}
.y18b{bottom:117.333333pt;}
.y1a8{bottom:117.440000pt;}
.y18e{bottom:117.553333pt;}
.y105{bottom:120.932267pt;}
.ydd{bottom:121.892267pt;}
.y168{bottom:122.880000pt;}
.y194{bottom:123.200000pt;}
.y1b9{bottom:123.313333pt;}
.y1c8{bottom:123.420000pt;}
.y1cd{bottom:123.633333pt;}
.y174{bottom:123.793333pt;}
.y1b0{bottom:124.113333pt;}
.y120{bottom:124.480027pt;}
.y1c1{bottom:124.593333pt;}
.y11d{bottom:127.040027pt;}
.y11f{bottom:127.972267pt;}
.y152{bottom:128.292267pt;}
.y9f{bottom:129.252267pt;}
.y85{bottom:130.532267pt;}
.y16f{bottom:133.393333pt;}
.y1f4{bottom:138.212267pt;}
.y1f6{bottom:138.212307pt;}
.yc1{bottom:139.492307pt;}
.y19{bottom:140.452307pt;}
.ya4{bottom:140.772307pt;}
.y1a7{bottom:145.280000pt;}
.y151{bottom:147.492307pt;}
.y104{bottom:148.772307pt;}
.ydc{bottom:149.732307pt;}
.y167{bottom:150.400000pt;}
.y17a{bottom:150.720000pt;}
.y1c7{bottom:150.940000pt;}
.y18a{bottom:151.153333pt;}
.y173{bottom:151.313333pt;}
.y16e{bottom:151.633333pt;}
.y1aa{bottom:151.953333pt;}
.y1c0{bottom:152.113333pt;}
.y3d{bottom:153.572307pt;}
.y1e2{bottom:156.772267pt;}
.y9e{bottom:156.772307pt;}
.y84{bottom:158.052307pt;}
.y1f3{bottom:165.732267pt;}
.yc0{bottom:167.012307pt;}
.ya3{bottom:168.292307pt;}
.y1a6{bottom:172.800000pt;}
.y150{bottom:175.652307pt;}
.y103{bottom:176.292307pt;}
.y18{bottom:177.252307pt;}
.y166{bottom:177.920000pt;}
.y183{bottom:178.240000pt;}
.y1c6{bottom:178.460000pt;}
.y1b8{bottom:178.673333pt;}
.y189{bottom:178.993333pt;}
.y1af{bottom:179.153333pt;}
.y1bf{bottom:179.633333pt;}
.y3c{bottom:181.412307pt;}
.y1e1{bottom:184.292267pt;}
.y9d{bottom:184.292307pt;}
.y83{bottom:185.892307pt;}
.y1f2{bottom:193.252267pt;}
.ybf{bottom:194.532307pt;}
.ya2{bottom:196.132307pt;}
.y17c{bottom:200.000000pt;}
.y1a5{bottom:200.320000pt;}
.y17f{bottom:200.433333pt;}
.y17{bottom:201.572267pt;}
.y94{bottom:202.852307pt;}
.y1a3{bottom:202.880000pt;}
.y1a4{bottom:203.526667pt;}
.ydb{bottom:204.772307pt;}
.y165{bottom:205.760000pt;}
.y1c5{bottom:205.980000pt;}
.y1b7{bottom:206.193333pt;}
.y1ae{bottom:206.993333pt;}
.y1be{bottom:207.153333pt;}
.y3b{bottom:208.932307pt;}
.y1e0{bottom:212.132267pt;}
.y9c{bottom:212.132307pt;}
.y102{bottom:212.772307pt;}
.y82{bottom:213.412307pt;}
.y134{bottom:219.812307pt;}
.y1f1{bottom:220.772267pt;}
.ybe{bottom:222.372307pt;}
.ya1{bottom:223.652307pt;}
.y1b4{bottom:224.000000pt;}
.y93{bottom:230.372307pt;}
.y1a2{bottom:231.366667pt;}
.yda{bottom:232.292307pt;}
.y164{bottom:233.280000pt;}
.y193{bottom:233.600000pt;}
.y1b6{bottom:233.713333pt;}
.y1c4{bottom:233.820000pt;}
.y16{bottom:233.892267pt;}
.y1bd{bottom:234.993333pt;}
.y3a{bottom:236.452307pt;}
.y1df{bottom:239.652267pt;}
.y9b{bottom:239.652307pt;}
.y11e{bottom:240.000000pt;}
.y11c{bottom:240.932267pt;}
.y81{bottom:240.932307pt;}
.y1b3{bottom:243.313333pt;}
.y101{bottom:245.732307pt;}
.y1f0{bottom:248.612267pt;}
.ybd{bottom:249.892307pt;}
.y161{bottom:251.520000pt;}
.y92{bottom:257.892300pt;}
.y1a1{bottom:258.886667pt;}
.yd9{bottom:260.132300pt;}
.y163{bottom:260.800000pt;}
.y192{bottom:261.120000pt;}
.y1b5{bottom:261.233333pt;}
.y199{bottom:261.340000pt;}
.y1b2{bottom:261.553333pt;}
.y39{bottom:263.972300pt;}
.y15{bottom:265.892267pt;}
.y1de{bottom:267.172267pt;}
.y9a{bottom:267.172300pt;}
.y80{bottom:268.452300pt;}
.y15f{bottom:271.046667pt;}
.y100{bottom:273.252300pt;}
.y1ef{bottom:276.132267pt;}
.ybc{bottom:277.412300pt;}
.y180{bottom:279.360000pt;}
.y15d{bottom:282.666667pt;}
.y160{bottom:283.313333pt;}
.y91{bottom:285.732293pt;}
.y1a0{bottom:286.406667pt;}
.yd8{bottom:287.652293pt;}
.y162{bottom:288.320000pt;}
.y182{bottom:288.640000pt;}
.y198{bottom:288.860000pt;}
.y15e{bottom:289.286667pt;}
.y38{bottom:291.812293pt;}
.y1dd{bottom:294.692267pt;}
.y99{bottom:294.692293pt;}
.y7f{bottom:295.972293pt;}
.y14{bottom:298.212267pt;}
.y17e{bottom:298.353333pt;}
.y1c3{bottom:298.460000pt;}
.yff{bottom:300.772267pt;}
.yfe{bottom:300.772293pt;}
.y1ee{bottom:303.652267pt;}
.ybb{bottom:304.932293pt;}
.y19d{bottom:306.880000pt;}
.y37{bottom:310.372267pt;}
.y90{bottom:313.252293pt;}
.y19f{bottom:313.926667pt;}
.yd7{bottom:315.172293pt;}
.y181{bottom:316.160000pt;}
.y197{bottom:316.380000pt;}
.y1c2{bottom:316.700000pt;}
.y17d{bottom:316.913333pt;}
.y1dc{bottom:322.532267pt;}
.y98{bottom:322.532293pt;}
.y7e{bottom:323.812293pt;}
.y1d9{bottom:324.593333pt;}
.y19c{bottom:326.086667pt;}
.y36{bottom:328.932267pt;}
.y13{bottom:330.532267pt;}
.y1ed{bottom:331.172267pt;}
.yba{bottom:332.772293pt;}
.yfd{bottom:333.732293pt;}
.y18f{bottom:334.720000pt;}
.y8f{bottom:340.772293pt;}
.yd6{bottom:342.692293pt;}
.y191{bottom:343.680000pt;}
.y196{bottom:343.900000pt;}
.y19e{bottom:344.326667pt;}
.y19b{bottom:344.646667pt;}
.y35{bottom:347.172267pt;}
.y1db{bottom:350.052267pt;}
.y97{bottom:350.052293pt;}
.y7d{bottom:351.332293pt;}
.y12{bottom:352.292267pt;}
.y1d8{bottom:352.433333pt;}
.y18d{bottom:353.500000pt;}
.y50{bottom:357.077600pt;}
.y1ec{bottom:359.012267pt;}
.yb9{bottom:360.292293pt;}
.yfc{bottom:361.572293pt;}
.y34{bottom:365.732267pt;}
.y8e{bottom:368.292293pt;}
.yd5{bottom:370.532293pt;}
.y190{bottom:371.520000pt;}
.y195{bottom:371.740000pt;}
.y18c{bottom:372.060000pt;}
.y11{bottom:376.612267pt;}
.y1da{bottom:377.572267pt;}
.y96{bottom:377.572293pt;}
.y7c{bottom:378.852293pt;}
.y1d7{bottom:379.953333pt;}
.y4f{bottom:384.757600pt;}
.y1eb{bottom:386.532267pt;}
.yb8{bottom:387.812293pt;}
.yfb{bottom:389.092293pt;}
.y33{bottom:392.932267pt;}
.y11a{bottom:394.852267pt;}
.y8d{bottom:395.812293pt;}
.yd4{bottom:398.052293pt;}
.yd3{bottom:400.612267pt;}
.yd2{bottom:400.612293pt;}
.y10{bottom:401.892267pt;}
.y95{bottom:405.092267pt;}
.y7b{bottom:405.732267pt;}
.y1d6{bottom:407.473333pt;}
.y4e{bottom:412.437600pt;}
.y1ea{bottom:414.052267pt;}
.yb7{bottom:415.332267pt;}
.yfa{bottom:416.612267pt;}
.y32{bottom:420.452267pt;}
.y61{bottom:423.652267pt;}
.yf{bottom:429.412267pt;}
.yd1{bottom:431.332267pt;}
.y7a{bottom:432.612267pt;}
.y119{bottom:432.932267pt;}
.yd0{bottom:433.892267pt;}
.y1d5{bottom:434.993333pt;}
.y1e9{bottom:441.572267pt;}
.yb6{bottom:443.172267pt;}
.yf9{bottom:444.132267pt;}
.y31{bottom:447.972267pt;}
.y1bc{bottom:448.000000pt;}
.y1bb{bottom:449.393333pt;}
.y60{bottom:451.172267pt;}
.y4d{bottom:456.798933pt;}
.ye{bottom:457.252267pt;}
.y79{bottom:460.452267pt;}
.y118{bottom:460.772267pt;}
.y1d4{bottom:462.833333pt;}
.ycf{bottom:464.612267pt;}
.y1e8{bottom:469.412267pt;}
.yb5{bottom:470.692267pt;}
.yf8{bottom:471.972267pt;}
.y30{bottom:475.812267pt;}
.y1ad{bottom:476.000000pt;}
.y1ac{bottom:477.233333pt;}
.y5f{bottom:478.692267pt;}
.yd{bottom:483.812267pt;}
.y78{bottom:487.972267pt;}
.y117{bottom:488.292267pt;}
.y1d3{bottom:490.353333pt;}
.y116{bottom:490.852267pt;}
.yce{bottom:492.452267pt;}
.ycd{bottom:495.012267pt;}
.y1e7{bottom:496.932267pt;}
.yb4{bottom:498.212267pt;}
.yf7{bottom:499.492267pt;}
.y2f{bottom:503.332267pt;}
.y188{bottom:504.000000pt;}
.y187{bottom:504.753333pt;}
.y4c{bottom:504.917600pt;}
.yc{bottom:505.252267pt;}
.y5e{bottom:506.212267pt;}
.y77{bottom:515.492267pt;}
.y1d2{bottom:517.873333pt;}
.y115{bottom:521.572267pt;}
.y1e6{bottom:524.452267pt;}
.yb3{bottom:525.732267pt;}
.yb{bottom:526.692267pt;}
.ycc{bottom:528.292267pt;}
.y2e{bottom:530.852267pt;}
.y179{bottom:532.273333pt;}
.yf6{bottom:532.452267pt;}
.y4b{bottom:532.490933pt;}
.y8c{bottom:534.052267pt;}
.y76{bottom:543.012267pt;}
.y1d1{bottom:545.393333pt;}
.ya{bottom:548.132267pt;}
.y114{bottom:549.092267pt;}
.y1e5{bottom:551.972267pt;}
.yb2{bottom:553.572267pt;}
.y2d{bottom:558.372267pt;}
.ycb{bottom:559.012267pt;}
.yf5{bottom:559.972267pt;}
.y4a{bottom:560.064267pt;}
.y5d{bottom:561.572267pt;}
.y9{bottom:569.572267pt;}
.y75{bottom:570.852267pt;}
.y1d0{bottom:573.233333pt;}
.y113{bottom:576.932267pt;}
.y1e4{bottom:579.812267pt;}
.yb1{bottom:581.092267pt;}
.y2c{bottom:586.212267pt;}
.yca{bottom:586.852267pt;}
.y15a{bottom:587.313333pt;}
.yf4{bottom:587.492267pt;}
.y49{bottom:587.637600pt;}
.y5c{bottom:589.092267pt;}
.yc9{bottom:589.412267pt;}
.y8{bottom:591.012267pt;}
.y74{bottom:598.372267pt;}
.y14f{bottom:598.692267pt;}
.y1cf{bottom:600.753333pt;}
.y112{bottom:604.452267pt;}
.y1e3{bottom:607.332267pt;}
.yb0{bottom:608.612267pt;}
.ye4{bottom:611.172267pt;}
.y7{bottom:612.452267pt;}
.y2b{bottom:613.732267pt;}
.y48{bottom:615.210933pt;}
.yf3{bottom:615.332267pt;}
.y8b{bottom:616.612267pt;}
.yc8{bottom:620.132267pt;}
.y73{bottom:625.892267pt;}
.y14e{bottom:626.212267pt;}
.y1ce{bottom:628.273333pt;}
.y111{bottom:631.972267pt;}
.y6{bottom:633.892267pt;}
.yaf{bottom:636.132267pt;}
.y2a{bottom:641.252267pt;}
.ye3{bottom:641.892267pt;}
.y19a{bottom:642.673333pt;}
.y47{bottom:642.784267pt;}
.yf2{bottom:642.852267pt;}
.y5b{bottom:644.452267pt;}
.yc7{bottom:647.652267pt;}
.yc6{bottom:650.212267pt;}
.y72{bottom:653.412267pt;}
.y14d{bottom:654.052267pt;}
.y5{bottom:655.332267pt;}
.y159{bottom:655.793333pt;}
.y110{bottom:659.492267pt;}
.yae{bottom:663.652267pt;}
.y29{bottom:668.772267pt;}
.ye2{bottom:669.732267pt;}
.y46{bottom:670.357600pt;}
.yf1{bottom:670.372267pt;}
.y5a{bottom:671.972267pt;}
.ye1{bottom:672.292267pt;}
.y147{bottom:673.333333pt;}
.y4{bottom:676.452267pt;}
.yc5{bottom:680.932267pt;}
.y71{bottom:681.252267pt;}
.y158{bottom:683.633333pt;}
.y10f{bottom:687.332267pt;}
.yad{bottom:691.492267pt;}
.y3{bottom:694.692267pt;}
.y28{bottom:696.612267pt;}
.y59{bottom:699.492267pt;}
.ye0{bottom:703.012267pt;}
.yf0{bottom:703.332267pt;}
.y70{bottom:708.772267pt;}
.y10e{bottom:714.852267pt;}
.y45{bottom:715.038933pt;}
.yac{bottom:719.012267pt;}
.yab{bottom:721.572267pt;}
.y27{bottom:724.132267pt;}
.y2{bottom:726.052267pt;}
.y8a{bottom:727.012267pt;}
.ydf{bottom:730.532267pt;}
.yef{bottom:730.852267pt;}
.yde{bottom:733.092267pt;}
.y6f{bottom:736.292267pt;}
.y10d{bottom:742.372267pt;}
.y26{bottom:751.652267pt;}
.yaa{bottom:752.292267pt;}
.y58{bottom:754.852267pt;}
.yee{bottom:758.692267pt;}
.y44{bottom:763.157600pt;}
.y6e{bottom:763.812267pt;}
.y10c{bottom:769.892267pt;}
.y145{bottom:774.666667pt;}
.y25{bottom:779.172267pt;}
.ya9{bottom:780.132267pt;}
.y57{bottom:782.372267pt;}
.ya8{bottom:782.692267pt;}
.yed{bottom:786.212267pt;}
.y43{bottom:790.677600pt;}
.yc4{bottom:791.332267pt;}
.y6d{bottom:791.652267pt;}
.y143{bottom:801.333333pt;}
.y10b{bottom:802.852267pt;}
.y24{bottom:807.012267pt;}
.y56{bottom:809.892267pt;}
.ya7{bottom:813.412267pt;}
.yec{bottom:813.732267pt;}
.y6c{bottom:819.172267pt;}
.y141{bottom:829.333333pt;}
.y10a{bottom:830.692267pt;}
.y23{bottom:834.532267pt;}
.y42{bottom:836.757600pt;}
.y55{bottom:837.412267pt;}
.ya6{bottom:840.932267pt;}
.yeb{bottom:841.252267pt;}
.ya5{bottom:843.492267pt;}
.y6b{bottom:846.692267pt;}
.y13f{bottom:856.000000pt;}
.y109{bottom:858.212267pt;}
.y22{bottom:862.052267pt;}
.y41{bottom:864.437600pt;}
.y54{bottom:865.252267pt;}
.yea{bottom:869.092267pt;}
.y6a{bottom:874.212267pt;}
.yc3{bottom:874.852267pt;}
.y21{bottom:880.932267pt;}
.y13d{bottom:884.000000pt;}
.y108{bottom:891.172267pt;}
.y53{bottom:892.772267pt;}
.y40{bottom:893.217333pt;}
.ye9{bottom:896.612267pt;}
.y69{bottom:902.052267pt;}
.y20{bottom:903.012267pt;}
.y135{bottom:910.666667pt;}
.y107{bottom:918.692267pt;}
.y89{bottom:920.292267pt;}
.ye8{bottom:924.132267pt;}
.y68{bottom:929.572267pt;}
.y1f{bottom:939.172267pt;}
.y106{bottom:946.212267pt;}
.y52{bottom:947.812267pt;}
.ye7{bottom:951.652267pt;}
.y67{bottom:957.092267pt;}
.y1e{bottom:957.412267pt;}
.y3e{bottom:964.999067pt;}
.y88{bottom:975.652267pt;}
.y1d{bottom:975.972267pt;}
.ye6{bottom:979.492267pt;}
.y66{bottom:984.612267pt;}
.y1c{bottom:994.212267pt;}
.ye5{bottom:1007.012267pt;}
.y87{bottom:1007.332267pt;}
.y51{bottom:1012.452267pt;}
.y1b{bottom:1012.772267pt;}
.h1d{height:18.666667pt;}
.h18{height:19.520000pt;}
.h1c{height:20.000000pt;}
.hc{height:33.817296pt;}
.h11{height:41.922560pt;}
.h12{height:42.656250pt;}
.h16{height:43.593750pt;}
.hf{height:44.437500pt;}
.h8{height:45.568000pt;}
.h17{height:48.000000pt;}
.h5{height:50.278750pt;}
.h15{height:50.696131pt;}
.h13{height:51.187500pt;}
.h22{height:55.353347pt;}
.h30{height:55.360000pt;}
.h2{height:56.156250pt;}
.ha{height:56.843750pt;}
.hd{height:56.844817pt;}
.h14{height:57.406250pt;}
.h6{height:65.141250pt;}
.h10{height:73.333333pt;}
.h4{height:76.170625pt;}
.h2b{height:82.880000pt;}
.h2a{height:84.000000pt;}
.h7{height:85.265625pt;}
.h9{height:92.137500pt;}
.h1e{height:93.333333pt;}
.h1b{height:112.000000pt;}
.hb{height:124.133333pt;}
.h19{height:142.080000pt;}
.h1a{height:144.000000pt;}
.h26{height:165.440000pt;}
.h33{height:165.753333pt;}
.h27{height:165.760000pt;}
.h25{height:166.666667pt;}
.h2c{height:193.280000pt;}
.h2d{height:194.666667pt;}
.h34{height:220.800000pt;}
.h35{height:222.666667pt;}
.h38{height:248.640000pt;}
.h39{height:250.666667pt;}
.h37{height:275.840000pt;}
.h36{height:277.333333pt;}
.h24{height:303.353333pt;}
.h23{height:304.000000pt;}
.h29{height:331.200000pt;}
.h28{height:332.000000pt;}
.h32{height:358.720000pt;}
.h31{height:360.000000pt;}
.h2f{height:386.446667pt;}
.h2e{height:386.666667pt;}
.h21{height:782.513331pt;}
.h1f{height:793.700800pt;}
.h20{height:794.000000pt;}
.he{height:1111.332000pt;}
.h3{height:1111.332300pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w17{width:87.360000pt;}
.w10{width:87.680000pt;}
.w16{width:89.333333pt;}
.w18{width:90.880000pt;}
.w11{width:91.520000pt;}
.w19{width:103.040000pt;}
.w12{width:103.680000pt;}
.w9{width:117.333333pt;}
.w3{width:134.600000pt;}
.w1a{width:178.880000pt;}
.w13{width:179.400800pt;}
.w1f{width:180.000000pt;}
.w1c{width:205.054000pt;}
.w1d{width:205.333333pt;}
.w15{width:205.440000pt;}
.wb{width:217.333333pt;}
.w1b{width:225.920000pt;}
.w1e{width:226.666667pt;}
.w14{width:226.880000pt;}
.wa{width:228.000000pt;}
.w7{width:320.307467pt;}
.w6{width:320.320000pt;}
.w8{width:321.333333pt;}
.w5{width:605.333333pt;}
.w4{width:782.512667pt;}
.w2{width:782.513200pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.we{width:934.666667pt;}
.wf{width:1111.332315pt;}
.wc{width:1122.519733pt;}
.wd{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x34{left:4.147435pt;}
.x2f{left:5.120000pt;}
.x3a{left:7.040000pt;}
.x40{left:8.040624pt;}
.x32{left:10.115467pt;}
.x2{left:11.187467pt;}
.x43{left:12.088752pt;}
.x31{left:19.520000pt;}
.x42{left:21.293872pt;}
.x37{left:27.507467pt;}
.x35{left:28.627467pt;}
.x41{left:30.760752pt;}
.x38{left:51.507467pt;}
.x36{left:52.627563pt;}
.x44{left:54.760752pt;}
.x10{left:83.840000pt;}
.x14{left:93.987267pt;}
.x4{left:95.027307pt;}
.x2d{left:96.960000pt;}
.x28{left:101.440000pt;}
.x2e{left:103.027467pt;}
.x22{left:107.027307pt;}
.x23{left:110.080000pt;}
.xb{left:115.470987pt;}
.xa{left:117.463179pt;}
.x1{left:119.027307pt;}
.x26{left:121.600000pt;}
.x24{left:131.840000pt;}
.x46{left:132.827387pt;}
.x2c{left:134.720000pt;}
.x33{left:136.000000pt;}
.x27{left:139.265579pt;}
.x2b{left:142.429003pt;}
.x29{left:144.827115pt;}
.x2a{left:147.840000pt;}
.x25{left:169.600000pt;}
.x39{left:179.840048pt;}
.x3b{left:183.347467pt;}
.x1b{left:184.959467pt;}
.x9{left:201.948843pt;}
.x19{left:206.399467pt;}
.x18{left:238.079467pt;}
.xd{left:244.240523pt;}
.xe{left:252.001611pt;}
.x16{left:253.439467pt;}
.x7{left:261.840779pt;}
.xc{left:266.472971pt;}
.x6{left:272.687147pt;}
.x3c{left:274.867467pt;}
.x8{left:276.902635pt;}
.x1d{left:278.399467pt;}
.x15{left:315.839467pt;}
.xf{left:343.243147pt;}
.x1f{left:375.359467pt;}
.x3d{left:378.666667pt;}
.x1a{left:393.919467pt;}
.x5{left:397.160587pt;}
.x30{left:424.000000pt;}
.x1c{left:450.879467pt;}
.x3{left:452.160000pt;}
.x13{left:469.760000pt;}
.x17{left:471.999467pt;}
.x11{left:480.827147pt;}
.x12{left:509.093707pt;}
.x20{left:511.359467pt;}
.x1e{left:544.639467pt;}
.x3e{left:558.067467pt;}
.x21{left:566.719467pt;}
.x3f{left:784.947467pt;}
.x45{left:1017.279915pt;}
}




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