
    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_2797db86ac9171af59d60078.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_ef5afb2bec8b258e99c993a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949000;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_2797db86ac9171af59d60078.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_2a7023490625b97c0976a6dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_c92d1d412e79941726f85c00.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171387;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_8a3bc6048ad893cf4d98d2b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_bde728e8a08facf30302845d.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_13fe96dc7ce3e962da704f30.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9dbf0a81cb4fb80a68858275.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.171387;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_a36121759bcf0f72e6da48ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.207031;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_13fe96dc7ce3e962da704f30.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_98916f6794cd3a30e25235ec.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.108000;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_1172dab26aa3a9a54702eb17.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8d5d3ed20cefc7168eb3e251.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.892000;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_24b28c0ea9f81f053603d789.woff2')format("woff");}.fff{font-family:fff;line-height:1.071777;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_26a2a2f7bc6a5b24f7c2ce3c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.088379;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_9ada81b8dcb8aa1a37744b6d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.088379;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_a06394d12c3c7e04505a1250.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v1{vertical-align:15.985800px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009900px;}
.ls3{letter-spacing:0.019875px;}
.ls4{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.215860px;}
.ls9{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.920000px;}
.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;}
}
.ws3{word-spacing:-17.509673px;}
.ws2{word-spacing:-16.665833px;}
.ws5{word-spacing:-16.579869px;}
.ws4{word-spacing:-16.559993px;}
.ws0{word-spacing:-15.227854px;}
.ws6{word-spacing:-10.560000px;}
.ws3d{word-spacing:-6.156480px;}
.ws16{word-spacing:-5.184000px;}
.ws86{word-spacing:-5.136000px;}
.ws72{word-spacing:-5.088000px;}
.wse{word-spacing:-4.896000px;}
.ws4a{word-spacing:-4.848000px;}
.ws7e{word-spacing:-4.416000px;}
.ws33{word-spacing:-4.320000px;}
.ws89{word-spacing:-4.272000px;}
.ws7{word-spacing:-4.224000px;}
.ws6d{word-spacing:-4.080000px;}
.ws3e{word-spacing:-4.032000px;}
.ws77{word-spacing:-3.984000px;}
.ws8{word-spacing:-3.840000px;}
.ws4d{word-spacing:-3.792000px;}
.ws27{word-spacing:-3.696000px;}
.ws58{word-spacing:-3.600000px;}
.ws37{word-spacing:-3.552000px;}
.ws36{word-spacing:-3.360000px;}
.ws4e{word-spacing:-3.168000px;}
.ws48{word-spacing:-3.120000px;}
.ws3a{word-spacing:-3.072000px;}
.ws4f{word-spacing:-2.880000px;}
.ws75{word-spacing:-2.832000px;}
.ws30{word-spacing:-2.784000px;}
.wsa{word-spacing:-2.688000px;}
.ws47{word-spacing:-2.544000px;}
.ws1a{word-spacing:-2.448000px;}
.ws88{word-spacing:-2.352000px;}
.ws12{word-spacing:-2.304000px;}
.ws6e{word-spacing:-2.112000px;}
.ws45{word-spacing:-2.064000px;}
.ws35{word-spacing:-2.016000px;}
.ws40{word-spacing:-1.920000px;}
.wsb{word-spacing:-1.872000px;}
.ws8a{word-spacing:-1.824000px;}
.ws39{word-spacing:-1.776000px;}
.ws59{word-spacing:-1.632000px;}
.ws6c{word-spacing:-1.488000px;}
.ws1c{word-spacing:-1.296000px;}
.ws60{word-spacing:-1.152000px;}
.ws5d{word-spacing:-1.056000px;}
.ws7a{word-spacing:-1.008000px;}
.ws56{word-spacing:-0.960000px;}
.ws2b{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.816000px;}
.ws5a{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.480000px;}
.ws51{word-spacing:-0.384000px;}
.ws7f{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.192000px;}
.ws67{word-spacing:-0.096000px;}
.ws52{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws7b{word-spacing:0.096000px;}
.ws28{word-spacing:0.192000px;}
.ws66{word-spacing:0.240000px;}
.ws5e{word-spacing:0.288000px;}
.ws61{word-spacing:0.384000px;}
.ws2e{word-spacing:0.672000px;}
.ws81{word-spacing:0.768000px;}
.ws4c{word-spacing:0.816000px;}
.ws43{word-spacing:0.864000px;}
.ws10{word-spacing:0.960000px;}
.ws31{word-spacing:1.008000px;}
.ws8b{word-spacing:1.104000px;}
.ws76{word-spacing:1.152000px;}
.ws65{word-spacing:1.200000px;}
.ws5c{word-spacing:1.248000px;}
.ws78{word-spacing:1.344000px;}
.ws18{word-spacing:1.440000px;}
.ws19{word-spacing:1.488000px;}
.ws63{word-spacing:1.680000px;}
.ws62{word-spacing:1.728000px;}
.ws82{word-spacing:1.776000px;}
.ws55{word-spacing:1.872000px;}
.ws24{word-spacing:1.968000px;}
.ws85{word-spacing:2.208000px;}
.ws9{word-spacing:2.256000px;}
.ws32{word-spacing:2.448000px;}
.ws7d{word-spacing:2.544000px;}
.ws1f{word-spacing:2.592000px;}
.ws80{word-spacing:2.640000px;}
.ws64{word-spacing:2.688000px;}
.ws1e{word-spacing:2.736000px;}
.ws1b{word-spacing:2.832000px;}
.ws87{word-spacing:3.024000px;}
.ws6a{word-spacing:3.072000px;}
.ws69{word-spacing:3.168000px;}
.ws2f{word-spacing:3.360000px;}
.ws84{word-spacing:3.408000px;}
.ws38{word-spacing:3.600000px;}
.ws6f{word-spacing:3.648000px;}
.ws29{word-spacing:3.696000px;}
.ws21{word-spacing:3.744000px;}
.ws71{word-spacing:3.888000px;}
.ws1d{word-spacing:4.080000px;}
.ws68{word-spacing:4.176000px;}
.ws15{word-spacing:4.224000px;}
.ws50{word-spacing:4.560000px;}
.ws42{word-spacing:4.608000px;}
.wsc{word-spacing:4.656000px;}
.ws20{word-spacing:4.752000px;}
.ws14{word-spacing:5.040000px;}
.ws41{word-spacing:5.232000px;}
.ws22{word-spacing:5.280000px;}
.ws2c{word-spacing:5.376000px;}
.ws2a{word-spacing:5.568000px;}
.ws25{word-spacing:5.616000px;}
.ws8c{word-spacing:5.712000px;}
.ws57{word-spacing:5.760000px;}
.ws46{word-spacing:5.904000px;}
.ws17{word-spacing:5.952000px;}
.ws73{word-spacing:6.000000px;}
.ws79{word-spacing:6.192000px;}
.ws4b{word-spacing:6.624000px;}
.ws6b{word-spacing:6.816000px;}
.ws49{word-spacing:6.864000px;}
.ws54{word-spacing:7.200000px;}
.ws53{word-spacing:7.248000px;}
.ws11{word-spacing:7.440000px;}
.ws5f{word-spacing:7.488000px;}
.ws7c{word-spacing:7.632000px;}
.ws34{word-spacing:7.824000px;}
.ws5b{word-spacing:8.400000px;}
.ws26{word-spacing:8.496000px;}
.ws2d{word-spacing:9.264000px;}
.ws3b{word-spacing:9.360000px;}
.ws83{word-spacing:9.600000px;}
.ws70{word-spacing:9.792000px;}
.ws3c{word-spacing:9.840000px;}
.wsf{word-spacing:10.080000px;}
.ws44{word-spacing:10.224000px;}
.ws13{word-spacing:10.560000px;}
.ws74{word-spacing:10.608000px;}
._2{margin-left:-5.399998px;}
._4{margin-left:-3.671999px;}
._0{margin-left:-2.669588px;}
._3{margin-left:-1.152000px;}
._1{width:1.005292px;}
._5{width:2.288010px;}
._6{width:3.544783px;}
._c{width:4.776059px;}
._d{width:5.931854px;}
._e{width:7.072232px;}
._f{width:8.143768px;}
._10{width:9.552000px;}
._8{width:11.196523px;}
._b{width:12.314099px;}
._7{width:14.077344px;}
._9{width:113.117340px;}
._a{width:785.996902px;}
.fc7{color:rgb(167,165,166);}
.fc6{color:rgb(189,188,188);}
.fc5{color:rgb(229,228,228);}
.fc3{color:transparent;}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(77,77,77);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.984000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.759983px;}
.fsc{font-size:48.000000px;}
.fs5{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fsb{font-size:54.000000px;}
.fs4{font-size:56.879977px;}
.fs3{font-size:59.759976px;}
.fs6{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:84.239966px;}
.fsd{font-size:180.000000px;}
.fs8{font-size:287.999885px;}
.y8{bottom:-14.219431px;}
.y0{bottom:0.000000px;}
.y25{bottom:0.000468px;}
.ya{bottom:3.960727px;}
.yc{bottom:4.680569px;}
.y2{bottom:4.680604px;}
.y3b{bottom:57.720877px;}
.y8c{bottom:63.049500px;}
.y3a{bottom:78.420869px;}
.yd0{bottom:90.475650px;}
.y124{bottom:96.026100px;}
.yc5{bottom:104.875650px;}
.y169{bottom:110.194650px;}
.y119{bottom:110.425650px;}
.y123{bottom:110.426100px;}
.y84{bottom:117.301453px;}
.yc4{bottom:119.275650px;}
.y168{bottom:124.594650px;}
.y118{bottom:124.825650px;}
.y122{bottom:124.826100px;}
.yc3{bottom:133.675650px;}
.y1a4{bottom:134.938650px;}
.y167{bottom:138.994650px;}
.y117{bottom:139.225650px;}
.y121{bottom:139.226100px;}
.yc2{bottom:148.075650px;}
.y1a3{bottom:149.338650px;}
.y166{bottom:153.394650px;}
.y116{bottom:153.625650px;}
.y82{bottom:155.101438px;}
.yc1{bottom:162.475650px;}
.y1a2{bottom:163.738650px;}
.y115{bottom:168.025650px;}
.yc0{bottom:176.875650px;}
.y165{bottom:182.194650px;}
.y120{bottom:182.425650px;}
.ybf{bottom:191.275650px;}
.y1a1{bottom:192.538650px;}
.y81{bottom:193.081423px;}
.y164{bottom:196.594650px;}
.y114{bottom:196.825650px;}
.ybe{bottom:205.675650px;}
.y163{bottom:210.994650px;}
.y113{bottom:211.225650px;}
.ybd{bottom:220.075650px;}
.y1a0{bottom:221.338650px;}
.y162{bottom:225.394650px;}
.y112{bottom:225.625650px;}
.y80{bottom:231.061408px;}
.ybc{bottom:234.475650px;}
.y19f{bottom:235.738650px;}
.y161{bottom:239.794650px;}
.y111{bottom:240.025650px;}
.y6{bottom:248.521401px;}
.ybb{bottom:248.875650px;}
.y19e{bottom:250.138650px;}
.y160{bottom:254.194650px;}
.y110{bottom:254.425650px;}
.yba{bottom:263.275650px;}
.y19d{bottom:264.538650px;}
.y15f{bottom:268.594650px;}
.y10f{bottom:268.825650px;}
.y7f{bottom:269.041392px;}
.ycf{bottom:277.675650px;}
.y19c{bottom:278.938650px;}
.y15e{bottom:282.994650px;}
.y10e{bottom:283.225650px;}
.yb9{bottom:292.075650px;}
.y19b{bottom:293.338650px;}
.y15d{bottom:297.394650px;}
.y10d{bottom:297.625650px;}
.yb8{bottom:306.475650px;}
.y7e{bottom:307.021377px;}
.y19a{bottom:307.738650px;}
.y15c{bottom:311.794650px;}
.y10c{bottom:312.025650px;}
.yb7{bottom:320.875650px;}
.y199{bottom:322.138650px;}
.y15b{bottom:326.194650px;}
.y10b{bottom:326.425650px;}
.yb6{bottom:335.275650px;}
.y198{bottom:336.538650px;}
.y15a{bottom:340.594650px;}
.y10a{bottom:340.825650px;}
.y7d{bottom:344.821362px;}
.yb5{bottom:349.675650px;}
.y197{bottom:350.938650px;}
.y159{bottom:354.994650px;}
.y109{bottom:355.225650px;}
.yb4{bottom:364.075650px;}
.y196{bottom:365.338650px;}
.y108{bottom:369.625650px;}
.yb3{bottom:378.475650px;}
.y195{bottom:379.738650px;}
.y7c{bottom:382.801347px;}
.y158{bottom:383.794650px;}
.y107{bottom:384.025650px;}
.yb2{bottom:392.875650px;}
.y157{bottom:398.194650px;}
.y11f{bottom:398.425650px;}
.y13{bottom:399.001340px;}
.yce{bottom:407.275650px;}
.y194{bottom:408.538650px;}
.y156{bottom:412.594650px;}
.y106{bottom:412.825650px;}
.y7b{bottom:420.781332px;}
.yb1{bottom:421.675650px;}
.y193{bottom:422.938650px;}
.y155{bottom:426.994650px;}
.y105{bottom:427.225650px;}
.y9{bottom:427.440600px;}
.yb0{bottom:436.075650px;}
.y192{bottom:437.338650px;}
.y154{bottom:441.394650px;}
.y104{bottom:441.625650px;}
.y39{bottom:445.621322px;}
.ycd{bottom:450.475650px;}
.y191{bottom:451.738650px;}
.y153{bottom:455.794650px;}
.y103{bottom:456.025650px;}
.y7a{bottom:458.761316px;}
.yaf{bottom:464.875650px;}
.y190{bottom:466.138650px;}
.y152{bottom:470.194650px;}
.y102{bottom:470.425650px;}
.y86{bottom:477.661309px;}
.yae{bottom:479.275650px;}
.y18f{bottom:480.538650px;}
.y38{bottom:481.801307px;}
.y151{bottom:484.594650px;}
.y101{bottom:484.825650px;}
.yad{bottom:493.675650px;}
.y4e{bottom:494.221302px;}
.y18e{bottom:494.938650px;}
.y11{bottom:496.201302px;}
.y79{bottom:496.741301px;}
.y150{bottom:498.994650px;}
.y100{bottom:499.225650px;}
.yac{bottom:508.075650px;}
.yff{bottom:513.625650px;}
.y78{bottom:515.641294px;}
.y63{bottom:516.721293px;}
.y37{bottom:517.981293px;}
.yab{bottom:522.475650px;}
.y18d{bottom:523.738650px;}
.y14f{bottom:527.794650px;}
.yfe{bottom:528.025650px;}
.y10{bottom:528.601289px;}
.y77{bottom:534.721286px;}
.y62{bottom:535.621286px;}
.yaa{bottom:536.875650px;}
.y18c{bottom:538.138650px;}
.y14e{bottom:542.194650px;}
.y11e{bottom:542.425650px;}
.y4d{bottom:550.021280px;}
.ya9{bottom:551.275650px;}
.y18b{bottom:552.538650px;}
.y76{bottom:553.621279px;}
.y36{bottom:554.161278px;}
.y61{bottom:554.521278px;}
.y14d{bottom:556.594650px;}
.yfd{bottom:556.825650px;}
.ya8{bottom:565.675650px;}
.y18a{bottom:566.938650px;}
.y14c{bottom:570.994650px;}
.yfc{bottom:571.225650px;}
.y75{bottom:572.521271px;}
.y60{bottom:573.601271px;}
.ya7{bottom:580.075650px;}
.y189{bottom:581.338650px;}
.y14b{bottom:585.394650px;}
.yfb{bottom:585.625650px;}
.y4c{bottom:588.001265px;}
.y35{bottom:590.161264px;}
.y5f{bottom:592.501263px;}
.yf{bottom:593.401263px;}
.ya6{bottom:594.475650px;}
.y14a{bottom:599.794650px;}
.yfa{bottom:600.025650px;}
.ya5{bottom:608.875650px;}
.y188{bottom:610.138650px;}
.y74{bottom:610.501256px;}
.y5e{bottom:611.581255px;}
.y149{bottom:614.194650px;}
.yf9{bottom:614.425650px;}
.y34{bottom:617.341253px;}
.ya4{bottom:623.275650px;}
.y187{bottom:624.538650px;}
.y4b{bottom:625.981250px;}
.y148{bottom:628.594650px;}
.yf8{bottom:628.825650px;}
.y73{bottom:629.581248px;}
.y5d{bottom:630.481248px;}
.ya3{bottom:637.675650px;}
.y186{bottom:638.938650px;}
.y147{bottom:642.994650px;}
.yf7{bottom:643.225650px;}
.y72{bottom:648.481241px;}
.ya2{bottom:652.075650px;}
.y185{bottom:653.338650px;}
.y33{bottom:653.521239px;}
.y23{bottom:656.041238px;}
.y146{bottom:657.394650px;}
.yf6{bottom:657.625650px;}
.ye{bottom:658.201237px;}
.y4a{bottom:663.961234px;}
.ya1{bottom:666.475650px;}
.y184{bottom:667.738650px;}
.y5c{bottom:668.461233px;}
.y145{bottom:671.794650px;}
.yf5{bottom:672.025650px;}
.ya0{bottom:680.875650px;}
.y183{bottom:682.138650px;}
.y144{bottom:686.194650px;}
.yf4{bottom:686.425650px;}
.y71{bottom:686.461225px;}
.y22{bottom:687.361225px;}
.y32{bottom:689.701224px;}
.y9f{bottom:695.275650px;}
.y143{bottom:700.594650px;}
.yf3{bottom:700.825650px;}
.y49{bottom:701.941219px;}
.y5b{bottom:706.441217px;}
.y9e{bottom:709.675650px;}
.y182{bottom:710.938650px;}
.y142{bottom:714.994650px;}
.yf2{bottom:715.225650px;}
.y5{bottom:715.981214px;}
.y21{bottom:723.541211px;}
.y9d{bottom:724.075650px;}
.y70{bottom:724.441210px;}
.y181{bottom:725.338650px;}
.y31{bottom:725.881210px;}
.y141{bottom:729.394650px;}
.yf1{bottom:729.625650px;}
.y1{bottom:736.500600px;}
.y9c{bottom:738.475650px;}
.y180{bottom:739.738650px;}
.y48{bottom:739.741204px;}
.y140{bottom:743.794650px;}
.yf0{bottom:744.025650px;}
.y5a{bottom:744.241202px;}
.y9b{bottom:752.875650px;}
.y17f{bottom:754.138650px;}
.y13f{bottom:758.194650px;}
.yef{bottom:758.425650px;}
.y89{bottom:758.641197px;}
.y20{bottom:759.541196px;}
.y30{bottom:762.061195px;}
.y6f{bottom:762.241195px;}
.y4{bottom:765.661194px;}
.y9a{bottom:767.275650px;}
.y17e{bottom:768.538650px;}
.y13e{bottom:772.594650px;}
.y11d{bottom:772.825650px;}
.y47{bottom:777.721189px;}
.y99{bottom:781.675650px;}
.y59{bottom:782.221187px;}
.y13d{bottom:786.994650px;}
.yee{bottom:787.225650px;}
.y1f{bottom:795.721182px;}
.y98{bottom:796.075650px;}
.y17d{bottom:797.338650px;}
.y2f{bottom:798.241181px;}
.y6e{bottom:800.221180px;}
.y13c{bottom:801.394650px;}
.yed{bottom:801.625650px;}
.y12{bottom:802.561179px;}
.y97{bottom:810.475650px;}
.y17c{bottom:811.738650px;}
.y46{bottom:815.701174px;}
.y13b{bottom:815.794650px;}
.yec{bottom:816.025650px;}
.y58{bottom:820.201172px;}
.yb{bottom:823.080600px;}
.y96{bottom:824.875650px;}
.y17b{bottom:826.138650px;}
.y13a{bottom:830.194650px;}
.yeb{bottom:830.425650px;}
.y1e{bottom:831.901167px;}
.y2e{bottom:834.421166px;}
.y6d{bottom:838.201165px;}
.y95{bottom:839.275650px;}
.y17a{bottom:840.538650px;}
.y7{bottom:841.980600px;}
.y139{bottom:844.594650px;}
.yea{bottom:844.825650px;}
.yd{bottom:852.241159px;}
.y94{bottom:853.675650px;}
.y45{bottom:853.681159px;}
.y57{bottom:858.181157px;}
.y138{bottom:858.994650px;}
.y1d{bottom:859.081156px;}
.y11c{bottom:859.225650px;}
.y93{bottom:868.075650px;}
.y179{bottom:869.338650px;}
.y2d{bottom:870.421152px;}
.y137{bottom:873.394650px;}
.ye9{bottom:873.625650px;}
.y6c{bottom:876.181150px;}
.y3{bottom:876.541149px;}
.y92{bottom:882.475650px;}
.y178{bottom:883.738650px;}
.y1c{bottom:886.261145px;}
.y136{bottom:887.794650px;}
.ye8{bottom:888.025650px;}
.y44{bottom:891.661143px;}
.y56{bottom:896.161142px;}
.y91{bottom:896.875650px;}
.y177{bottom:898.138650px;}
.y135{bottom:902.194650px;}
.ye7{bottom:902.425650px;}
.y2c{bottom:906.601137px;}
.y90{bottom:911.275650px;}
.y1b{bottom:913.441135px;}
.y6b{bottom:914.161134px;}
.y134{bottom:916.594650px;}
.ye6{bottom:916.825650px;}
.y88{bottom:924.241130px;}
.ycc{bottom:925.675650px;}
.y176{bottom:926.938650px;}
.y43{bottom:929.641128px;}
.y133{bottom:930.994650px;}
.ye5{bottom:931.225650px;}
.y55{bottom:934.141126px;}
.ycb{bottom:940.075650px;}
.y175{bottom:941.338650px;}
.y2b{bottom:942.781123px;}
.y132{bottom:945.394650px;}
.ye4{bottom:945.625650px;}
.y1a{bottom:949.621120px;}
.y6a{bottom:952.141119px;}
.yd4{bottom:954.025650px;}
.yca{bottom:954.475650px;}
.y174{bottom:955.738650px;}
.y131{bottom:959.794650px;}
.y11b{bottom:960.025650px;}
.y42{bottom:967.441113px;}
.yd3{bottom:968.425650px;}
.yc9{bottom:968.875650px;}
.y54{bottom:971.941111px;}
.y130{bottom:974.194650px;}
.ye3{bottom:974.425650px;}
.y19{bottom:976.801109px;}
.y2a{bottom:978.961108px;}
.yd2{bottom:982.825650px;}
.yc8{bottom:983.275650px;}
.y173{bottom:984.538650px;}
.y12f{bottom:988.594650px;}
.ye2{bottom:988.825650px;}
.y69{bottom:989.941104px;}
.yc7{bottom:997.675650px;}
.y172{bottom:998.938650px;}
.y12e{bottom:1002.994650px;}
.ye1{bottom:1003.225650px;}
.y18{bottom:1003.981098px;}
.y41{bottom:1005.421098px;}
.y53{bottom:1009.921096px;}
.yc6{bottom:1012.075650px;}
.y40{bottom:1012.981095px;}
.y171{bottom:1013.338650px;}
.y29{bottom:1015.141094px;}
.y12d{bottom:1017.394650px;}
.ye0{bottom:1017.625650px;}
.y8f{bottom:1026.475650px;}
.y68{bottom:1027.921089px;}
.y12c{bottom:1031.794650px;}
.y11a{bottom:1032.025650px;}
.y8e{bottom:1040.875650px;}
.y170{bottom:1042.138650px;}
.y3e{bottom:1043.401083px;}
.y12b{bottom:1046.194650px;}
.ydf{bottom:1046.425650px;}
.y52{bottom:1047.901081px;}
.y17{bottom:1049.161080px;}
.y3f{bottom:1050.961080px;}
.y16f{bottom:1056.538650px;}
.y28{bottom:1060.321076px;}
.y12a{bottom:1060.594650px;}
.yde{bottom:1060.825650px;}
.y67{bottom:1065.901074px;}
.y16e{bottom:1070.938650px;}
.y129{bottom:1074.994650px;}
.ydd{bottom:1075.225650px;}
.y24{bottom:1079.220600px;}
.y3d{bottom:1081.381067px;}
.y16{bottom:1085.341066px;}
.y51{bottom:1085.881066px;}
.y128{bottom:1089.394650px;}
.ydc{bottom:1089.625650px;}
.y87{bottom:1089.841064px;}
.y16d{bottom:1099.738650px;}
.y85{bottom:1103.521059px;}
.y127{bottom:1103.794650px;}
.y66{bottom:1103.881058px;}
.ydb{bottom:1104.025650px;}
.y50{bottom:1104.781058px;}
.y27{bottom:1105.501058px;}
.y16c{bottom:1114.138650px;}
.y126{bottom:1118.194650px;}
.yda{bottom:1118.425650px;}
.y15{bottom:1121.341051px;}
.yd1{bottom:1121.557200px;}
.y65{bottom:1122.781051px;}
.y3c{bottom:1123.501051px;}
.y4f{bottom:1128.001049px;}
.y16b{bottom:1128.538650px;}
.yd9{bottom:1132.825650px;}
.y64{bottom:1141.501043px;}
.y26{bottom:1141.681043px;}
.y83{bottom:1141.861043px;}
.y16a{bottom:1142.938650px;}
.y125{bottom:1142.950650px;}
.yd8{bottom:1147.225650px;}
.y14{bottom:1160.041036px;}
.y8b{bottom:1180.189350px;}
.yd6{bottom:1180.523400px;}
.y8d{bottom:1190.594400px;}
.yd7{bottom:1190.969400px;}
.y8a{bottom:1201.789350px;}
.yd5{bottom:1202.123250px;}
.h10{height:0.000000px;}
.h5{height:4.680000px;}
.hf{height:16.200000px;}
.h8{height:18.900000px;}
.h6{height:20.700000px;}
.h1{height:23.580000px;}
.h1a{height:31.324219px;}
.he{height:32.152136px;}
.h20{height:33.656250px;}
.h16{height:37.166385px;}
.h3{height:39.365984px;}
.h1d{height:40.945312px;}
.h1c{height:41.765625px;}
.h1f{height:41.767425px;}
.h11{height:46.544044px;}
.h1b{height:46.986328px;}
.h14{height:47.229101px;}
.hd{height:48.905137px;}
.h9{height:50.543980px;}
.h4{height:53.351979px;}
.h21{height:53.765625px;}
.hc{height:54.880291px;}
.ha{height:57.659039px;}
.h15{height:58.953576px;}
.h12{height:59.789156px;}
.h19{height:61.417969px;}
.h2{height:62.421815px;}
.h13{height:64.079974px;}
.h7{height:67.391973px;}
.hb{height:69.468722px;}
.h1e{height:153.544922px;}
.h17{height:205.343918px;}
.h18{height:1262.835000px;}
.h0{height:1263.000000px;}
.w7{width:8.100000px;}
.w1{width:22.680000px;}
.w3{width:27.180000px;}
.w4{width:117.000000px;}
.w6{width:382.500000px;}
.w5{width:387.900000px;}
.w2{width:392.400000px;}
.w0{width:892.500000px;}
.w8{width:892.914000px;}
.w9{width:893.250000px;}
.x10{left:-117.000132px;}
.xb{left:-27.180168px;}
.x5{left:-22.680169px;}
.x0{left:0.000000px;}
.x2c{left:24.750000px;}
.x29{left:63.747000px;}
.x2b{left:70.167450px;}
.x28{left:84.975000px;}
.x1e{left:106.380718px;}
.x21{left:111.239206px;}
.x19{left:127.619199px;}
.x1a{left:259.920000px;}
.x9{left:329.220000px;}
.x23{left:334.078733px;}
.x20{left:338.939864px;}
.x1b{left:343.439863px;}
.x13{left:373.679851px;}
.x8{left:419.040000px;}
.x1{left:423.540000px;}
.x4{left:446.220000px;}
.x18{left:467.819873px;}
.x2a{left:488.991000px;}
.xe{left:490.319804px;}
.xf{left:505.799798px;}
.xc{left:548.639781px;}
.x11{left:556.919777px;}
.xa{left:559.439776px;}
.x6{left:561.419775px;}
.x3{left:563.939774px;}
.x1c{left:580.139768px;}
.x14{left:595.799762px;}
.x12{left:609.479756px;}
.xd{left:664.919734px;}
.x26{left:718.425600px;}
.x15{left:723.959710px;}
.x16{left:732.779707px;}
.x25{left:735.121950px;}
.x24{left:737.257650px;}
.x7{left:751.679699px;}
.x1d{left:761.939695px;}
.x2{left:763.199695px;}
.x22{left:768.419693px;}
.x1f{left:777.419689px;}
.x17{left:829.259668px;}
.x27{left:847.232250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v1{vertical-align:14.209600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008800pt;}
.ls3{letter-spacing:0.017667pt;}
.ls4{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.191875pt;}
.ls9{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.706667pt;}
.ws3{word-spacing:-15.564154pt;}
.ws2{word-spacing:-14.814074pt;}
.ws5{word-spacing:-14.737661pt;}
.ws4{word-spacing:-14.719994pt;}
.ws0{word-spacing:-13.535870pt;}
.ws6{word-spacing:-9.386667pt;}
.ws3d{word-spacing:-5.472427pt;}
.ws16{word-spacing:-4.608000pt;}
.ws86{word-spacing:-4.565333pt;}
.ws72{word-spacing:-4.522667pt;}
.wse{word-spacing:-4.352000pt;}
.ws4a{word-spacing:-4.309333pt;}
.ws7e{word-spacing:-3.925333pt;}
.ws33{word-spacing:-3.840000pt;}
.ws89{word-spacing:-3.797333pt;}
.ws7{word-spacing:-3.754667pt;}
.ws6d{word-spacing:-3.626667pt;}
.ws3e{word-spacing:-3.584000pt;}
.ws77{word-spacing:-3.541333pt;}
.ws8{word-spacing:-3.413333pt;}
.ws4d{word-spacing:-3.370667pt;}
.ws27{word-spacing:-3.285333pt;}
.ws58{word-spacing:-3.200000pt;}
.ws37{word-spacing:-3.157333pt;}
.ws36{word-spacing:-2.986667pt;}
.ws4e{word-spacing:-2.816000pt;}
.ws48{word-spacing:-2.773333pt;}
.ws3a{word-spacing:-2.730667pt;}
.ws4f{word-spacing:-2.560000pt;}
.ws75{word-spacing:-2.517333pt;}
.ws30{word-spacing:-2.474667pt;}
.wsa{word-spacing:-2.389333pt;}
.ws47{word-spacing:-2.261333pt;}
.ws1a{word-spacing:-2.176000pt;}
.ws88{word-spacing:-2.090667pt;}
.ws12{word-spacing:-2.048000pt;}
.ws6e{word-spacing:-1.877333pt;}
.ws45{word-spacing:-1.834667pt;}
.ws35{word-spacing:-1.792000pt;}
.ws40{word-spacing:-1.706667pt;}
.wsb{word-spacing:-1.664000pt;}
.ws8a{word-spacing:-1.621333pt;}
.ws39{word-spacing:-1.578667pt;}
.ws59{word-spacing:-1.450667pt;}
.ws6c{word-spacing:-1.322667pt;}
.ws1c{word-spacing:-1.152000pt;}
.ws60{word-spacing:-1.024000pt;}
.ws5d{word-spacing:-0.938667pt;}
.ws7a{word-spacing:-0.896000pt;}
.ws56{word-spacing:-0.853333pt;}
.ws2b{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.725333pt;}
.ws5a{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.426667pt;}
.ws51{word-spacing:-0.341333pt;}
.ws7f{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.170667pt;}
.ws67{word-spacing:-0.085333pt;}
.ws52{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.085333pt;}
.ws28{word-spacing:0.170667pt;}
.ws66{word-spacing:0.213333pt;}
.ws5e{word-spacing:0.256000pt;}
.ws61{word-spacing:0.341333pt;}
.ws2e{word-spacing:0.597333pt;}
.ws81{word-spacing:0.682667pt;}
.ws4c{word-spacing:0.725333pt;}
.ws43{word-spacing:0.768000pt;}
.ws10{word-spacing:0.853333pt;}
.ws31{word-spacing:0.896000pt;}
.ws8b{word-spacing:0.981333pt;}
.ws76{word-spacing:1.024000pt;}
.ws65{word-spacing:1.066667pt;}
.ws5c{word-spacing:1.109333pt;}
.ws78{word-spacing:1.194667pt;}
.ws18{word-spacing:1.280000pt;}
.ws19{word-spacing:1.322667pt;}
.ws63{word-spacing:1.493333pt;}
.ws62{word-spacing:1.536000pt;}
.ws82{word-spacing:1.578667pt;}
.ws55{word-spacing:1.664000pt;}
.ws24{word-spacing:1.749333pt;}
.ws85{word-spacing:1.962667pt;}
.ws9{word-spacing:2.005333pt;}
.ws32{word-spacing:2.176000pt;}
.ws7d{word-spacing:2.261333pt;}
.ws1f{word-spacing:2.304000pt;}
.ws80{word-spacing:2.346667pt;}
.ws64{word-spacing:2.389333pt;}
.ws1e{word-spacing:2.432000pt;}
.ws1b{word-spacing:2.517333pt;}
.ws87{word-spacing:2.688000pt;}
.ws6a{word-spacing:2.730667pt;}
.ws69{word-spacing:2.816000pt;}
.ws2f{word-spacing:2.986667pt;}
.ws84{word-spacing:3.029333pt;}
.ws38{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.242667pt;}
.ws29{word-spacing:3.285333pt;}
.ws21{word-spacing:3.328000pt;}
.ws71{word-spacing:3.456000pt;}
.ws1d{word-spacing:3.626667pt;}
.ws68{word-spacing:3.712000pt;}
.ws15{word-spacing:3.754667pt;}
.ws50{word-spacing:4.053333pt;}
.ws42{word-spacing:4.096000pt;}
.wsc{word-spacing:4.138667pt;}
.ws20{word-spacing:4.224000pt;}
.ws14{word-spacing:4.480000pt;}
.ws41{word-spacing:4.650667pt;}
.ws22{word-spacing:4.693333pt;}
.ws2c{word-spacing:4.778667pt;}
.ws2a{word-spacing:4.949333pt;}
.ws25{word-spacing:4.992000pt;}
.ws8c{word-spacing:5.077333pt;}
.ws57{word-spacing:5.120000pt;}
.ws46{word-spacing:5.248000pt;}
.ws17{word-spacing:5.290667pt;}
.ws73{word-spacing:5.333333pt;}
.ws79{word-spacing:5.504000pt;}
.ws4b{word-spacing:5.888000pt;}
.ws6b{word-spacing:6.058667pt;}
.ws49{word-spacing:6.101333pt;}
.ws54{word-spacing:6.400000pt;}
.ws53{word-spacing:6.442667pt;}
.ws11{word-spacing:6.613333pt;}
.ws5f{word-spacing:6.656000pt;}
.ws7c{word-spacing:6.784000pt;}
.ws34{word-spacing:6.954667pt;}
.ws5b{word-spacing:7.466667pt;}
.ws26{word-spacing:7.552000pt;}
.ws2d{word-spacing:8.234667pt;}
.ws3b{word-spacing:8.320000pt;}
.ws83{word-spacing:8.533333pt;}
.ws70{word-spacing:8.704000pt;}
.ws3c{word-spacing:8.746667pt;}
.wsf{word-spacing:8.960000pt;}
.ws44{word-spacing:9.088000pt;}
.ws13{word-spacing:9.386667pt;}
.ws74{word-spacing:9.429333pt;}
._2{margin-left:-4.799998pt;}
._4{margin-left:-3.263999pt;}
._0{margin-left:-2.372967pt;}
._3{margin-left:-1.024000pt;}
._1{width:0.893593pt;}
._5{width:2.033787pt;}
._6{width:3.150918pt;}
._c{width:4.245386pt;}
._d{width:5.272759pt;}
._e{width:6.286429pt;}
._f{width:7.238905pt;}
._10{width:8.490667pt;}
._8{width:9.952465pt;}
._b{width:10.945866pt;}
._7{width:12.513195pt;}
._9{width:100.548747pt;}
._a{width:698.663913pt;}
.fse{font-size:24.874667pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.119985pt;}
.fsc{font-size:42.666667pt;}
.fs5{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fsb{font-size:48.000000pt;}
.fs4{font-size:50.559980pt;}
.fs3{font-size:53.119979pt;}
.fs6{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:74.879970pt;}
.fsd{font-size:160.000000pt;}
.fs8{font-size:255.999898pt;}
.y8{bottom:-12.639494pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:0.000416pt;}
.ya{bottom:3.520647pt;}
.yc{bottom:4.160506pt;}
.y2{bottom:4.160536pt;}
.y3b{bottom:51.307446pt;}
.y8c{bottom:56.044000pt;}
.y3a{bottom:69.707439pt;}
.yd0{bottom:80.422800pt;}
.y124{bottom:85.356533pt;}
.yc5{bottom:93.222800pt;}
.y169{bottom:97.950800pt;}
.y119{bottom:98.156133pt;}
.y123{bottom:98.156533pt;}
.y84{bottom:104.267958pt;}
.yc4{bottom:106.022800pt;}
.y168{bottom:110.750800pt;}
.y118{bottom:110.956133pt;}
.y122{bottom:110.956533pt;}
.yc3{bottom:118.822800pt;}
.y1a4{bottom:119.945467pt;}
.y167{bottom:123.550800pt;}
.y117{bottom:123.756133pt;}
.y121{bottom:123.756533pt;}
.yc2{bottom:131.622800pt;}
.y1a3{bottom:132.745467pt;}
.y166{bottom:136.350800pt;}
.y116{bottom:136.556133pt;}
.y82{bottom:137.867945pt;}
.yc1{bottom:144.422800pt;}
.y1a2{bottom:145.545467pt;}
.y115{bottom:149.356133pt;}
.yc0{bottom:157.222800pt;}
.y165{bottom:161.950800pt;}
.y120{bottom:162.156133pt;}
.ybf{bottom:170.022800pt;}
.y1a1{bottom:171.145467pt;}
.y81{bottom:171.627931pt;}
.y164{bottom:174.750800pt;}
.y114{bottom:174.956133pt;}
.ybe{bottom:182.822800pt;}
.y163{bottom:187.550800pt;}
.y113{bottom:187.756133pt;}
.ybd{bottom:195.622800pt;}
.y1a0{bottom:196.745467pt;}
.y162{bottom:200.350800pt;}
.y112{bottom:200.556133pt;}
.y80{bottom:205.387918pt;}
.ybc{bottom:208.422800pt;}
.y19f{bottom:209.545467pt;}
.y161{bottom:213.150800pt;}
.y111{bottom:213.356133pt;}
.y6{bottom:220.907912pt;}
.ybb{bottom:221.222800pt;}
.y19e{bottom:222.345467pt;}
.y160{bottom:225.950800pt;}
.y110{bottom:226.156133pt;}
.yba{bottom:234.022800pt;}
.y19d{bottom:235.145467pt;}
.y15f{bottom:238.750800pt;}
.y10f{bottom:238.956133pt;}
.y7f{bottom:239.147904pt;}
.ycf{bottom:246.822800pt;}
.y19c{bottom:247.945467pt;}
.y15e{bottom:251.550800pt;}
.y10e{bottom:251.756133pt;}
.yb9{bottom:259.622800pt;}
.y19b{bottom:260.745467pt;}
.y15d{bottom:264.350800pt;}
.y10d{bottom:264.556133pt;}
.yb8{bottom:272.422800pt;}
.y7e{bottom:272.907891pt;}
.y19a{bottom:273.545467pt;}
.y15c{bottom:277.150800pt;}
.y10c{bottom:277.356133pt;}
.yb7{bottom:285.222800pt;}
.y199{bottom:286.345467pt;}
.y15b{bottom:289.950800pt;}
.y10b{bottom:290.156133pt;}
.yb6{bottom:298.022800pt;}
.y198{bottom:299.145467pt;}
.y15a{bottom:302.750800pt;}
.y10a{bottom:302.956133pt;}
.y7d{bottom:306.507877pt;}
.yb5{bottom:310.822800pt;}
.y197{bottom:311.945467pt;}
.y159{bottom:315.550800pt;}
.y109{bottom:315.756133pt;}
.yb4{bottom:323.622800pt;}
.y196{bottom:324.745467pt;}
.y108{bottom:328.556133pt;}
.yb3{bottom:336.422800pt;}
.y195{bottom:337.545467pt;}
.y7c{bottom:340.267864pt;}
.y158{bottom:341.150800pt;}
.y107{bottom:341.356133pt;}
.yb2{bottom:349.222800pt;}
.y157{bottom:353.950800pt;}
.y11f{bottom:354.156133pt;}
.y13{bottom:354.667858pt;}
.yce{bottom:362.022800pt;}
.y194{bottom:363.145467pt;}
.y156{bottom:366.750800pt;}
.y106{bottom:366.956133pt;}
.y7b{bottom:374.027850pt;}
.yb1{bottom:374.822800pt;}
.y193{bottom:375.945467pt;}
.y155{bottom:379.550800pt;}
.y105{bottom:379.756133pt;}
.y9{bottom:379.947200pt;}
.yb0{bottom:387.622800pt;}
.y192{bottom:388.745467pt;}
.y154{bottom:392.350800pt;}
.y104{bottom:392.556133pt;}
.y39{bottom:396.107842pt;}
.ycd{bottom:400.422800pt;}
.y191{bottom:401.545467pt;}
.y153{bottom:405.150800pt;}
.y103{bottom:405.356133pt;}
.y7a{bottom:407.787837pt;}
.yaf{bottom:413.222800pt;}
.y190{bottom:414.345467pt;}
.y152{bottom:417.950800pt;}
.y102{bottom:418.156133pt;}
.y86{bottom:424.587830pt;}
.yae{bottom:426.022800pt;}
.y18f{bottom:427.145467pt;}
.y38{bottom:428.267829pt;}
.y151{bottom:430.750800pt;}
.y101{bottom:430.956133pt;}
.yad{bottom:438.822800pt;}
.y4e{bottom:439.307824pt;}
.y18e{bottom:439.945467pt;}
.y11{bottom:441.067824pt;}
.y79{bottom:441.547823pt;}
.y150{bottom:443.550800pt;}
.y100{bottom:443.756133pt;}
.yac{bottom:451.622800pt;}
.yff{bottom:456.556133pt;}
.y78{bottom:458.347817pt;}
.y63{bottom:459.307816pt;}
.y37{bottom:460.427816pt;}
.yab{bottom:464.422800pt;}
.y18d{bottom:465.545467pt;}
.y14f{bottom:469.150800pt;}
.yfe{bottom:469.356133pt;}
.y10{bottom:469.867812pt;}
.y77{bottom:475.307810pt;}
.y62{bottom:476.107810pt;}
.yaa{bottom:477.222800pt;}
.y18c{bottom:478.345467pt;}
.y14e{bottom:481.950800pt;}
.y11e{bottom:482.156133pt;}
.y4d{bottom:488.907804pt;}
.ya9{bottom:490.022800pt;}
.y18b{bottom:491.145467pt;}
.y76{bottom:492.107803pt;}
.y36{bottom:492.587803pt;}
.y61{bottom:492.907803pt;}
.y14d{bottom:494.750800pt;}
.yfd{bottom:494.956133pt;}
.ya8{bottom:502.822800pt;}
.y18a{bottom:503.945467pt;}
.y14c{bottom:507.550800pt;}
.yfc{bottom:507.756133pt;}
.y75{bottom:508.907796pt;}
.y60{bottom:509.867796pt;}
.ya7{bottom:515.622800pt;}
.y189{bottom:516.745467pt;}
.y14b{bottom:520.350800pt;}
.yfb{bottom:520.556133pt;}
.y4c{bottom:522.667791pt;}
.y35{bottom:524.587790pt;}
.y5f{bottom:526.667789pt;}
.yf{bottom:527.467789pt;}
.ya6{bottom:528.422800pt;}
.y14a{bottom:533.150800pt;}
.yfa{bottom:533.356133pt;}
.ya5{bottom:541.222800pt;}
.y188{bottom:542.345467pt;}
.y74{bottom:542.667783pt;}
.y5e{bottom:543.627783pt;}
.y149{bottom:545.950800pt;}
.yf9{bottom:546.156133pt;}
.y34{bottom:548.747781pt;}
.ya4{bottom:554.022800pt;}
.y187{bottom:555.145467pt;}
.y4b{bottom:556.427777pt;}
.y148{bottom:558.750800pt;}
.yf8{bottom:558.956133pt;}
.y73{bottom:559.627776pt;}
.y5d{bottom:560.427776pt;}
.ya3{bottom:566.822800pt;}
.y186{bottom:567.945467pt;}
.y147{bottom:571.550800pt;}
.yf7{bottom:571.756133pt;}
.y72{bottom:576.427769pt;}
.ya2{bottom:579.622800pt;}
.y185{bottom:580.745467pt;}
.y33{bottom:580.907768pt;}
.y23{bottom:583.147767pt;}
.y146{bottom:584.350800pt;}
.yf6{bottom:584.556133pt;}
.ye{bottom:585.067766pt;}
.y4a{bottom:590.187764pt;}
.ya1{bottom:592.422800pt;}
.y184{bottom:593.545467pt;}
.y5c{bottom:594.187762pt;}
.y145{bottom:597.150800pt;}
.yf5{bottom:597.356133pt;}
.ya0{bottom:605.222800pt;}
.y183{bottom:606.345467pt;}
.y144{bottom:609.950800pt;}
.yf4{bottom:610.156133pt;}
.y71{bottom:610.187756pt;}
.y22{bottom:610.987756pt;}
.y32{bottom:613.067755pt;}
.y9f{bottom:618.022800pt;}
.y143{bottom:622.750800pt;}
.yf3{bottom:622.956133pt;}
.y49{bottom:623.947750pt;}
.y5b{bottom:627.947749pt;}
.y9e{bottom:630.822800pt;}
.y182{bottom:631.945467pt;}
.y142{bottom:635.550800pt;}
.yf2{bottom:635.756133pt;}
.y5{bottom:636.427745pt;}
.y21{bottom:643.147743pt;}
.y9d{bottom:643.622800pt;}
.y70{bottom:643.947742pt;}
.y181{bottom:644.745467pt;}
.y31{bottom:645.227742pt;}
.y141{bottom:648.350800pt;}
.yf1{bottom:648.556133pt;}
.y1{bottom:654.667200pt;}
.y9c{bottom:656.422800pt;}
.y180{bottom:657.545467pt;}
.y48{bottom:657.547737pt;}
.y140{bottom:661.150800pt;}
.yf0{bottom:661.356133pt;}
.y5a{bottom:661.547735pt;}
.y9b{bottom:669.222800pt;}
.y17f{bottom:670.345467pt;}
.y13f{bottom:673.950800pt;}
.yef{bottom:674.156133pt;}
.y89{bottom:674.347730pt;}
.y20{bottom:675.147730pt;}
.y30{bottom:677.387729pt;}
.y6f{bottom:677.547729pt;}
.y4{bottom:680.587728pt;}
.y9a{bottom:682.022800pt;}
.y17e{bottom:683.145467pt;}
.y13e{bottom:686.750800pt;}
.y11d{bottom:686.956133pt;}
.y47{bottom:691.307723pt;}
.y99{bottom:694.822800pt;}
.y59{bottom:695.307722pt;}
.y13d{bottom:699.550800pt;}
.yee{bottom:699.756133pt;}
.y1f{bottom:707.307717pt;}
.y98{bottom:707.622800pt;}
.y17d{bottom:708.745467pt;}
.y2f{bottom:709.547716pt;}
.y6e{bottom:711.307715pt;}
.y13c{bottom:712.350800pt;}
.yed{bottom:712.556133pt;}
.y12{bottom:713.387715pt;}
.y97{bottom:720.422800pt;}
.y17c{bottom:721.545467pt;}
.y46{bottom:725.067710pt;}
.y13b{bottom:725.150800pt;}
.yec{bottom:725.356133pt;}
.y58{bottom:729.067708pt;}
.yb{bottom:731.627200pt;}
.y96{bottom:733.222800pt;}
.y17b{bottom:734.345467pt;}
.y13a{bottom:737.950800pt;}
.yeb{bottom:738.156133pt;}
.y1e{bottom:739.467704pt;}
.y2e{bottom:741.707703pt;}
.y6d{bottom:745.067702pt;}
.y95{bottom:746.022800pt;}
.y17a{bottom:747.145467pt;}
.y7{bottom:748.427200pt;}
.y139{bottom:750.750800pt;}
.yea{bottom:750.956133pt;}
.yd{bottom:757.547697pt;}
.y94{bottom:758.822800pt;}
.y45{bottom:758.827696pt;}
.y57{bottom:762.827695pt;}
.y138{bottom:763.550800pt;}
.y1d{bottom:763.627695pt;}
.y11c{bottom:763.756133pt;}
.y93{bottom:771.622800pt;}
.y179{bottom:772.745467pt;}
.y2d{bottom:773.707691pt;}
.y137{bottom:776.350800pt;}
.ye9{bottom:776.556133pt;}
.y6c{bottom:778.827688pt;}
.y3{bottom:779.147688pt;}
.y92{bottom:784.422800pt;}
.y178{bottom:785.545467pt;}
.y1c{bottom:787.787685pt;}
.y136{bottom:789.150800pt;}
.ye8{bottom:789.356133pt;}
.y44{bottom:792.587683pt;}
.y56{bottom:796.587681pt;}
.y91{bottom:797.222800pt;}
.y177{bottom:798.345467pt;}
.y135{bottom:801.950800pt;}
.ye7{bottom:802.156133pt;}
.y2c{bottom:805.867678pt;}
.y90{bottom:810.022800pt;}
.y1b{bottom:811.947675pt;}
.y6b{bottom:812.587675pt;}
.y134{bottom:814.750800pt;}
.ye6{bottom:814.956133pt;}
.y88{bottom:821.547671pt;}
.ycc{bottom:822.822800pt;}
.y176{bottom:823.945467pt;}
.y43{bottom:826.347669pt;}
.y133{bottom:827.550800pt;}
.ye5{bottom:827.756133pt;}
.y55{bottom:830.347668pt;}
.ycb{bottom:835.622800pt;}
.y175{bottom:836.745467pt;}
.y2b{bottom:838.027665pt;}
.y132{bottom:840.350800pt;}
.ye4{bottom:840.556133pt;}
.y1a{bottom:844.107662pt;}
.y6a{bottom:846.347661pt;}
.yd4{bottom:848.022800pt;}
.yca{bottom:848.422800pt;}
.y174{bottom:849.545467pt;}
.y131{bottom:853.150800pt;}
.y11b{bottom:853.356133pt;}
.y42{bottom:859.947656pt;}
.yd3{bottom:860.822800pt;}
.yc9{bottom:861.222800pt;}
.y54{bottom:863.947654pt;}
.y130{bottom:865.950800pt;}
.ye3{bottom:866.156133pt;}
.y19{bottom:868.267653pt;}
.y2a{bottom:870.187652pt;}
.yd2{bottom:873.622800pt;}
.yc8{bottom:874.022800pt;}
.y173{bottom:875.145467pt;}
.y12f{bottom:878.750800pt;}
.ye2{bottom:878.956133pt;}
.y69{bottom:879.947648pt;}
.yc7{bottom:886.822800pt;}
.y172{bottom:887.945467pt;}
.y12e{bottom:891.550800pt;}
.ye1{bottom:891.756133pt;}
.y18{bottom:892.427643pt;}
.y41{bottom:893.707643pt;}
.y53{bottom:897.707641pt;}
.yc6{bottom:899.622800pt;}
.y40{bottom:900.427640pt;}
.y171{bottom:900.745467pt;}
.y29{bottom:902.347639pt;}
.y12d{bottom:904.350800pt;}
.ye0{bottom:904.556133pt;}
.y8f{bottom:912.422800pt;}
.y68{bottom:913.707635pt;}
.y12c{bottom:917.150800pt;}
.y11a{bottom:917.356133pt;}
.y8e{bottom:925.222800pt;}
.y170{bottom:926.345467pt;}
.y3e{bottom:927.467629pt;}
.y12b{bottom:929.950800pt;}
.ydf{bottom:930.156133pt;}
.y52{bottom:931.467627pt;}
.y17{bottom:932.587627pt;}
.y3f{bottom:934.187626pt;}
.y16f{bottom:939.145467pt;}
.y28{bottom:942.507623pt;}
.y12a{bottom:942.750800pt;}
.yde{bottom:942.956133pt;}
.y67{bottom:947.467621pt;}
.y16e{bottom:951.945467pt;}
.y129{bottom:955.550800pt;}
.ydd{bottom:955.756133pt;}
.y24{bottom:959.307200pt;}
.y3d{bottom:961.227616pt;}
.y16{bottom:964.747614pt;}
.y51{bottom:965.227614pt;}
.y128{bottom:968.350800pt;}
.ydc{bottom:968.556133pt;}
.y87{bottom:968.747613pt;}
.y16d{bottom:977.545467pt;}
.y85{bottom:980.907608pt;}
.y127{bottom:981.150800pt;}
.y66{bottom:981.227608pt;}
.ydb{bottom:981.356133pt;}
.y50{bottom:982.027607pt;}
.y27{bottom:982.667607pt;}
.y16c{bottom:990.345467pt;}
.y126{bottom:993.950800pt;}
.yda{bottom:994.156133pt;}
.y15{bottom:996.747601pt;}
.yd1{bottom:996.939733pt;}
.y65{bottom:998.027601pt;}
.y3c{bottom:998.667601pt;}
.y4f{bottom:1002.667599pt;}
.y16b{bottom:1003.145467pt;}
.yd9{bottom:1006.956133pt;}
.y64{bottom:1014.667594pt;}
.y26{bottom:1014.827594pt;}
.y83{bottom:1014.987594pt;}
.y16a{bottom:1015.945467pt;}
.y125{bottom:1015.956133pt;}
.yd8{bottom:1019.756133pt;}
.y14{bottom:1031.147588pt;}
.y8b{bottom:1049.057200pt;}
.yd6{bottom:1049.354133pt;}
.y8d{bottom:1058.306133pt;}
.yd7{bottom:1058.639467pt;}
.y8a{bottom:1068.257200pt;}
.yd5{bottom:1068.554000pt;}
.h10{height:0.000000pt;}
.h5{height:4.160000pt;}
.hf{height:14.400000pt;}
.h8{height:16.800000pt;}
.h6{height:18.400000pt;}
.h1{height:20.960000pt;}
.h1a{height:27.843750pt;}
.he{height:28.579676pt;}
.h20{height:29.916667pt;}
.h16{height:33.036787pt;}
.h3{height:34.991986pt;}
.h1d{height:36.395833pt;}
.h1c{height:37.125000pt;}
.h1f{height:37.126600pt;}
.h11{height:41.372483pt;}
.h1b{height:41.765625pt;}
.h14{height:41.981423pt;}
.hd{height:43.471233pt;}
.h9{height:44.927982pt;}
.h4{height:47.423981pt;}
.h21{height:47.791667pt;}
.hc{height:48.782480pt;}
.ha{height:51.252479pt;}
.h15{height:52.403179pt;}
.h12{height:53.145916pt;}
.h19{height:54.593750pt;}
.h2{height:55.486058pt;}
.h13{height:56.959977pt;}
.h7{height:59.903976pt;}
.hb{height:61.749975pt;}
.h1e{height:136.484375pt;}
.h17{height:182.527927pt;}
.h18{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w7{width:7.200000pt;}
.w1{width:20.160000pt;}
.w3{width:24.160000pt;}
.w4{width:104.000000pt;}
.w6{width:340.000000pt;}
.w5{width:344.800000pt;}
.w2{width:348.800000pt;}
.w0{width:793.333333pt;}
.w8{width:793.701333pt;}
.w9{width:794.000000pt;}
.x10{left:-104.000117pt;}
.xb{left:-24.160149pt;}
.x5{left:-20.160151pt;}
.x0{left:0.000000pt;}
.x2c{left:22.000000pt;}
.x29{left:56.664000pt;}
.x2b{left:62.371067pt;}
.x28{left:75.533333pt;}
.x1e{left:94.560638pt;}
.x21{left:98.879294pt;}
.x19{left:113.439288pt;}
.x1a{left:231.040000pt;}
.x9{left:292.640000pt;}
.x23{left:296.958874pt;}
.x20{left:301.279879pt;}
.x1b{left:305.279878pt;}
.x13{left:332.159867pt;}
.x8{left:372.480000pt;}
.x1{left:376.480000pt;}
.x4{left:396.640000pt;}
.x18{left:415.839887pt;}
.x2a{left:434.658667pt;}
.xe{left:435.839826pt;}
.xf{left:449.599820pt;}
.xc{left:487.679805pt;}
.x11{left:495.039802pt;}
.xa{left:497.279801pt;}
.x6{left:499.039800pt;}
.x3{left:501.279799pt;}
.x1c{left:515.679794pt;}
.x14{left:529.599788pt;}
.x12{left:541.759783pt;}
.xd{left:591.039764pt;}
.x26{left:638.600533pt;}
.x15{left:643.519743pt;}
.x16{left:651.359739pt;}
.x25{left:653.441733pt;}
.x24{left:655.340133pt;}
.x7{left:668.159733pt;}
.x1d{left:677.279729pt;}
.x2{left:678.399729pt;}
.x22{left:683.039727pt;}
.x1f{left:691.039724pt;}
.x17{left:737.119705pt;}
.x27{left:753.095333pt;}
}




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