
    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_43c8204f11622691444a5cb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_a094489dba5361ae7f9728e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_473298ef94a27ffb6d553df6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_04cc66dd80bf2099632c8c38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_65f7152b3f5c619d3c4fee88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_65f7152b3f5c619d3c4fee88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_660f5b0719d4e94f93ce3f2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_86a0de7df4a1ddb5ec12ea87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_9179cf3d76a7bf78fb81b683.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912000;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_106db126648ff73e8834effd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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_106db126648ff73e8834effd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904000;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_0a30f432a266293af217f69b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898000;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_d002dec0c24da1ea546fe297.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912000;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;}
.m7{transform:matrix(0.000000,-0.250088,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250088,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250088,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250091,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250091,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250091,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.001262,-0.249997,0.249997,0.001262,0,0);-ms-transform:matrix(0.001262,-0.249997,0.249997,0.001262,0,0);-webkit-transform:matrix(0.001262,-0.249997,0.249997,0.001262,0,0);}
.m5{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249913,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.184000px;}
.v1{vertical-align:17.016000px;}
.v5{vertical-align:19.950600px;}
.v2{vertical-align:21.000000px;}
.v4{vertical-align:22.260000px;}
.v7{vertical-align:28.138548px;}
.ls3b{letter-spacing:-5.796000px;}
.ls67{letter-spacing:-1.200450px;}
.ls71{letter-spacing:-1.152403px;}
.ls68{letter-spacing:-1.008378px;}
.ls64{letter-spacing:-0.960360px;}
.ls6c{letter-spacing:-0.816000px;}
.ls65{letter-spacing:-0.720270px;}
.ls57{letter-spacing:-0.627000px;}
.ls41{letter-spacing:-0.504000px;}
.ls66{letter-spacing:-0.432162px;}
.ls6f{letter-spacing:-0.432151px;}
.ls7c{letter-spacing:-0.399000px;}
.ls39{letter-spacing:-0.315000px;}
.ls3a{letter-spacing:-0.252000px;}
.ls70{letter-spacing:-0.240084px;}
.ls1e{letter-spacing:-0.189000px;}
.ls69{letter-spacing:-0.144050px;}
.ls36{letter-spacing:-0.126000px;}
.ls73{letter-spacing:-0.096034px;}
.ls6b{letter-spacing:-0.096000px;}
.ls25{letter-spacing:-0.063000px;}
.ls7b{letter-spacing:-0.057000px;}
.ls6d{letter-spacing:-0.048017px;}
.ls1d{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.048000px;}
.ls53{letter-spacing:0.054000px;}
.ls49{letter-spacing:0.057000px;}
.ls2e{letter-spacing:0.063000px;}
.ls12{letter-spacing:0.108000px;}
.ls7a{letter-spacing:0.142500px;}
.ls31{letter-spacing:0.148200px;}
.ls42{letter-spacing:0.171000px;}
.ls3d{letter-spacing:0.189000px;}
.lse{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.228000px;}
.ls2f{letter-spacing:0.252000px;}
.ls58{letter-spacing:0.285000px;}
.ls1b{letter-spacing:0.315000px;}
.ls50{letter-spacing:0.336000px;}
.ls51{letter-spacing:0.336118px;}
.lsc{letter-spacing:0.348000px;}
.ls14{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.435000px;}
.lsa{letter-spacing:0.441000px;}
.ls4a{letter-spacing:0.456000px;}
.ls10{letter-spacing:0.486000px;}
.ls3{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.525000px;}
.ls4f{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.546000px;}
.ls2b{letter-spacing:0.567000px;}
.ls46{letter-spacing:0.570000px;}
.ls6a{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.600000px;}
.ls21{letter-spacing:0.624000px;}
.ls26{letter-spacing:0.630000px;}
.ls6e{letter-spacing:0.672235px;}
.ls11{letter-spacing:0.675000px;}
.ls4c{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.693000px;}
.ls23{letter-spacing:0.702000px;}
.ls44{letter-spacing:0.712500px;}
.ls54{letter-spacing:0.741000px;}
.ls9{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.787500px;}
.ls4d{letter-spacing:0.798000px;}
.ls18{letter-spacing:0.819000px;}
.ls79{letter-spacing:0.855000px;}
.ls52{letter-spacing:0.864000px;}
.ls2c{letter-spacing:0.882000px;}
.ls22{letter-spacing:0.936000px;}
.ls15{letter-spacing:0.945000px;}
.ls72{letter-spacing:0.960336px;}
.ls75{letter-spacing:0.969000px;}
.ls33{letter-spacing:1.008000px;}
.ls77{letter-spacing:1.026000px;}
.ls29{letter-spacing:1.071000px;}
.ls78{letter-spacing:1.083000px;}
.ls24{letter-spacing:1.092000px;}
.ls37{letter-spacing:1.132740px;}
.ls19{letter-spacing:1.134000px;}
.ls4e{letter-spacing:1.140000px;}
.ls30{letter-spacing:1.197000px;}
.ls1f{letter-spacing:1.248000px;}
.ls8{letter-spacing:1.260000px;}
.ls74{letter-spacing:1.311000px;}
.ls17{letter-spacing:1.323000px;}
.ls48{letter-spacing:1.368000px;}
.ls1{letter-spacing:1.386000px;}
.ls56{letter-spacing:1.425000px;}
.ls16{letter-spacing:1.449000px;}
.ls45{letter-spacing:1.482000px;}
.ls5{letter-spacing:1.512000px;}
.ls43{letter-spacing:1.539000px;}
.ls13{letter-spacing:1.575000px;}
.ls6{letter-spacing:1.638000px;}
.ls2a{letter-spacing:1.764000px;}
.ls35{letter-spacing:1.827000px;}
.ls40{letter-spacing:1.890000px;}
.ls47{letter-spacing:1.938000px;}
.ls2d{letter-spacing:1.953000px;}
.ls4b{letter-spacing:1.995000px;}
.ls27{letter-spacing:2.016000px;}
.ls32{letter-spacing:2.079000px;}
.ls3e{letter-spacing:2.142000px;}
.ls28{letter-spacing:2.205000px;}
.ls34{letter-spacing:2.268000px;}
.ls76{letter-spacing:2.280000px;}
.ls7{letter-spacing:2.331000px;}
.ls1a{letter-spacing:2.394000px;}
.ls38{letter-spacing:2.709000px;}
.ls3c{letter-spacing:2.772000px;}
.ls3f{letter-spacing:4.536000px;}
.ls5d{letter-spacing:36.864000px;}
.ls61{letter-spacing:37.920000px;}
.ls5c{letter-spacing:39.024000px;}
.ls5f{letter-spacing:40.416000px;}
.ls60{letter-spacing:40.896000px;}
.ls62{letter-spacing:41.136000px;}
.ls5e{letter-spacing:44.016000px;}
.ls5b{letter-spacing:47.376000px;}
.ls5a{letter-spacing:132.816000px;}
.ls63{letter-spacing:195.312000px;}
.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;}
}
.ws60{word-spacing:-195.360000px;}
.ws57{word-spacing:-132.864000px;}
.ws58{word-spacing:-47.424000px;}
.ws5b{word-spacing:-44.064000px;}
.ws5f{word-spacing:-41.184000px;}
.ws5d{word-spacing:-40.944000px;}
.ws5c{word-spacing:-40.464000px;}
.ws59{word-spacing:-39.072000px;}
.ws5e{word-spacing:-37.968000px;}
.ws5a{word-spacing:-36.912000px;}
.ws5{word-spacing:-22.092000px;}
.ws3d{word-spacing:-20.286000px;}
.ws2{word-spacing:-18.936000px;}
.ws20{word-spacing:-18.522000px;}
.ws3e{word-spacing:-17.262000px;}
.ws21{word-spacing:-16.884000px;}
.ws1d{word-spacing:-16.632000px;}
.ws1f{word-spacing:-16.569000px;}
.ws1{word-spacing:-15.750000px;}
.ws55{word-spacing:-14.962500px;}
.ws40{word-spacing:-14.250000px;}
.ws3{word-spacing:-14.202000px;}
.ws4{word-spacing:-14.175000px;}
.ws6c{word-spacing:-12.484368px;}
.ws68{word-spacing:-12.196267px;}
.ws66{word-spacing:-12.096000px;}
.ws6e{word-spacing:-11.860150px;}
.ws63{word-spacing:-11.524176px;}
.ws6b{word-spacing:-11.524032px;}
.ws64{word-spacing:-11.520000px;}
.ws67{word-spacing:-11.476015px;}
.ws6d{word-spacing:-11.427998px;}
.ws69{word-spacing:-11.091881px;}
.ws0{word-spacing:-11.025000px;}
.ws6a{word-spacing:-10.371629px;}
.ws1e{word-spacing:-10.267740px;}
.ws3f{word-spacing:-8.265000px;}
.ws31{word-spacing:-3.528000px;}
.wsf{word-spacing:-3.360000px;}
.ws7{word-spacing:-3.300000px;}
.ws51{word-spacing:-2.394000px;}
.ws39{word-spacing:-2.331000px;}
.ws54{word-spacing:-1.653000px;}
.ws41{word-spacing:-1.197000px;}
.ws53{word-spacing:-1.140000px;}
.ws43{word-spacing:-1.134000px;}
.ws1a{word-spacing:-0.819000px;}
.ws14{word-spacing:-0.702000px;}
.ws81{word-spacing:-0.672235px;}
.ws28{word-spacing:-0.567000px;}
.ws79{word-spacing:-0.528000px;}
.ws13{word-spacing:-0.486000px;}
.ws10{word-spacing:-0.452400px;}
.ws30{word-spacing:-0.441000px;}
.ws26{word-spacing:-0.315000px;}
.ws2b{word-spacing:-0.252000px;}
.ws56{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws2a{word-spacing:0.063000px;}
.ws2c{word-spacing:0.126000px;}
.ws7f{word-spacing:0.144050px;}
.ws71{word-spacing:0.171000px;}
.ws25{word-spacing:0.189000px;}
.ws48{word-spacing:0.252000px;}
.ws35{word-spacing:0.315000px;}
.ws82{word-spacing:0.432151px;}
.ws7c{word-spacing:0.432162px;}
.ws2f{word-spacing:0.441000px;}
.ws85{word-spacing:0.540000px;}
.ws4a{word-spacing:0.630000px;}
.ws65{word-spacing:0.672252px;}
.ws52{word-spacing:0.684000px;}
.ws38{word-spacing:0.693000px;}
.ws12{word-spacing:0.702000px;}
.ws7b{word-spacing:0.720270px;}
.ws37{word-spacing:0.756000px;}
.ws80{word-spacing:0.816000px;}
.ws47{word-spacing:0.819000px;}
.ws86{word-spacing:0.864000px;}
.ws4b{word-spacing:0.882000px;}
.ws1b{word-spacing:0.945000px;}
.ws7a{word-spacing:0.960360px;}
.ws84{word-spacing:0.972000px;}
.wse{word-spacing:1.008000px;}
.ws7e{word-spacing:1.008378px;}
.ws1c{word-spacing:1.071000px;}
.ws44{word-spacing:1.197000px;}
.ws7d{word-spacing:1.200450px;}
.ws4d{word-spacing:1.260000px;}
.ws33{word-spacing:1.323000px;}
.ws11{word-spacing:1.350000px;}
.ws83{word-spacing:1.404000px;}
.ws78{word-spacing:1.425000px;}
.ws6f{word-spacing:1.449000px;}
.ws32{word-spacing:1.512000px;}
.wsb{word-spacing:1.575000px;}
.ws49{word-spacing:1.638000px;}
.ws22{word-spacing:1.701000px;}
.ws18{word-spacing:1.827000px;}
.ws9{word-spacing:1.890000px;}
.ws4f{word-spacing:1.953000px;}
.ws88{word-spacing:1.995000px;}
.ws8{word-spacing:2.016000px;}
.ws87{word-spacing:2.052000px;}
.ws34{word-spacing:2.079000px;}
.ws16{word-spacing:2.142000px;}
.ws42{word-spacing:2.205000px;}
.ws76{word-spacing:2.223000px;}
.ws8b{word-spacing:2.280000px;}
.wsa{word-spacing:2.394000px;}
.ws8a{word-spacing:2.451000px;}
.ws4c{word-spacing:2.457000px;}
.ws2e{word-spacing:2.520000px;}
.ws74{word-spacing:2.622000px;}
.ws15{word-spacing:2.646000px;}
.ws72{word-spacing:2.793000px;}
.wsc{word-spacing:2.835000px;}
.ws17{word-spacing:2.898000px;}
.ws27{word-spacing:3.276000px;}
.ws3c{word-spacing:3.402000px;}
.ws50{word-spacing:3.654000px;}
.ws29{word-spacing:3.780000px;}
.ws70{word-spacing:4.095000px;}
.ws75{word-spacing:4.104000px;}
.ws23{word-spacing:4.158000px;}
.ws73{word-spacing:4.161000px;}
.ws77{word-spacing:4.218000px;}
.ws36{word-spacing:4.284000px;}
.ws45{word-spacing:4.473000px;}
.ws24{word-spacing:4.851000px;}
.ws4e{word-spacing:4.914000px;}
.wsd{word-spacing:5.103000px;}
.ws89{word-spacing:5.301000px;}
.ws19{word-spacing:5.355000px;}
.ws3b{word-spacing:5.418000px;}
.ws3a{word-spacing:5.796000px;}
.ws2d{word-spacing:6.300000px;}
.ws46{word-spacing:12.474000px;}
.ws61{word-spacing:947.712000px;}
.ws62{word-spacing:959.232000px;}
._4d{margin-left:-1312.176000px;}
._4c{margin-left:-1296.613852px;}
._4b{margin-left:-301.200000px;}
._45{margin-left:-132.816000px;}
._44{margin-left:-105.792000px;}
._46{margin-left:-47.376000px;}
._49{margin-left:-44.016000px;}
._4a{margin-left:-40.416000px;}
._47{margin-left:-39.024000px;}
._48{margin-left:-36.864000px;}
._6{margin-left:-7.911000px;}
._a{margin-left:-5.977800px;}
._4{margin-left:-4.923000px;}
._1{margin-left:-2.961000px;}
._0{margin-left:-1.600200px;}
._7{width:1.512000px;}
._3{width:3.264000px;}
._9{width:6.678000px;}
._5{width:35.088000px;}
._28{width:69.711000px;}
._3a{width:76.209000px;}
._27{width:80.940000px;}
._2c{width:83.733000px;}
._25{width:88.977000px;}
._1f{width:95.190000px;}
._20{width:98.211000px;}
._12{width:100.092000px;}
._29{width:102.771000px;}
._1e{width:103.911000px;}
._14{width:109.440000px;}
._13{width:111.036000px;}
._15{width:112.461000px;}
._22{width:117.477000px;}
._3b{width:118.842000px;}
._32{width:120.555000px;}
._24{width:124.146000px;}
._16{width:126.483000px;}
._36{width:128.193000px;}
._35{width:129.276000px;}
._33{width:130.758000px;}
._17{width:131.955000px;}
._21{width:133.608000px;}
._30{width:135.546000px;}
._19{width:139.536000px;}
._2f{width:141.930000px;}
._3e{width:145.122000px;}
._34{width:150.936000px;}
._31{width:152.760000px;}
._2e{width:157.092000px;}
._2d{width:159.543000px;}
._39{width:163.305000px;}
._40{width:166.497000px;}
._2b{width:169.404000px;}
._1d{width:171.342000px;}
._3d{width:172.539000px;}
._23{width:173.565000px;}
._3f{width:179.436000px;}
._38{width:180.861000px;}
._3c{width:184.224000px;}
._43{width:186.048000px;}
._18{width:187.587000px;}
._1b{width:190.779000px;}
._2a{width:195.624000px;}
._41{width:200.811000px;}
._1c{width:201.837000px;}
._b{width:203.131800px;}
._42{width:210.786000px;}
._26{width:212.496000px;}
._1a{width:216.315000px;}
._37{width:218.652000px;}
._11{width:235.926000px;}
._d{width:249.642000px;}
._c{width:269.136000px;}
._e{width:281.610000px;}
._f{width:306.666000px;}
._10{width:315.684000px;}
._8{width:1686.096000px;}
._2{width:1809.748200px;}
.fc1{color:rgb(101,98,99);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.840000px;}
.fsc{font-size:33.060000px;}
.fs4{font-size:34.800000px;}
.fsa{font-size:36.540000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:48.000012px;}
.fs10{font-size:48.016800px;}
.fse{font-size:48.017400px;}
.fsf{font-size:48.018000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y134{bottom:2.543250px;}
.y12a{bottom:2.688000px;}
.y13f{bottom:3.273750px;}
.y45{bottom:41.656950px;}
.ya8{bottom:41.663250px;}
.y115{bottom:116.545650px;}
.ydb{bottom:116.660250px;}
.ya7{bottom:116.696100px;}
.y79{bottom:116.747100px;}
.yc2{bottom:116.754750px;}
.y18{bottom:116.781000px;}
.y43{bottom:116.788500px;}
.yfb{bottom:116.837100px;}
.y114{bottom:133.802400px;}
.yda{bottom:135.639000px;}
.ya6{bottom:135.674850px;}
.y78{bottom:135.725850px;}
.yc1{bottom:135.733500px;}
.y17{bottom:135.759750px;}
.y42{bottom:135.767250px;}
.yfa{bottom:135.815850px;}
.y113{bottom:151.059150px;}
.yd9{bottom:154.617750px;}
.y77{bottom:154.704600px;}
.yc0{bottom:154.712250px;}
.y16{bottom:154.738500px;}
.y41{bottom:154.746000px;}
.yf9{bottom:154.794600px;}
.y140{bottom:155.759250px;}
.y112{bottom:168.315900px;}
.y12b{bottom:170.046000px;}
.yd8{bottom:173.596500px;}
.ya5{bottom:173.632350px;}
.y76{bottom:173.683350px;}
.ybf{bottom:173.691000px;}
.y15{bottom:173.717250px;}
.y40{bottom:173.724750px;}
.y111{bottom:185.572650px;}
.y149{bottom:188.563800px;}
.yd7{bottom:192.575250px;}
.y75{bottom:192.662100px;}
.ybe{bottom:192.669750px;}
.y14{bottom:192.696000px;}
.y3f{bottom:192.703500px;}
.y110{bottom:202.829400px;}
.y148{bottom:205.060800px;}
.yd6{bottom:211.554000px;}
.y74{bottom:211.640850px;}
.ybd{bottom:211.648500px;}
.y13{bottom:211.674750px;}
.y3e{bottom:211.682250px;}
.y10f{bottom:220.086150px;}
.y147{bottom:221.557800px;}
.yd5{bottom:230.532750px;}
.ya4{bottom:230.552850px;}
.y73{bottom:230.619600px;}
.ybc{bottom:230.627250px;}
.y12{bottom:230.653500px;}
.y3d{bottom:230.661000px;}
.y10e{bottom:237.342900px;}
.y146{bottom:238.054800px;}
.yd4{bottom:249.511500px;}
.ya3{bottom:249.531600px;}
.y72{bottom:249.598350px;}
.ybb{bottom:249.606000px;}
.y11{bottom:249.632250px;}
.y3c{bottom:249.639750px;}
.y10d{bottom:254.599650px;}
.y133{bottom:258.031500px;}
.yd3{bottom:268.490250px;}
.ya2{bottom:268.510350px;}
.y71{bottom:268.577100px;}
.yba{bottom:268.584750px;}
.y10{bottom:268.611000px;}
.y3b{bottom:268.618500px;}
.y10c{bottom:271.856400px;}
.yd2{bottom:287.469000px;}
.ya1{bottom:287.489100px;}
.y70{bottom:287.555850px;}
.yb9{bottom:287.563500px;}
.yf{bottom:287.589750px;}
.y3a{bottom:287.597250px;}
.y10b{bottom:289.113150px;}
.y13e{bottom:294.464250px;}
.y10a{bottom:306.369900px;}
.yd1{bottom:306.447750px;}
.ya0{bottom:306.467850px;}
.y6f{bottom:306.534600px;}
.yb8{bottom:306.542250px;}
.ye{bottom:306.568500px;}
.y39{bottom:306.576000px;}
.y109{bottom:323.626650px;}
.yd0{bottom:325.426500px;}
.y9f{bottom:325.446600px;}
.y6e{bottom:325.513350px;}
.yb7{bottom:325.521000px;}
.yd{bottom:325.547250px;}
.y38{bottom:325.554750px;}
.y108{bottom:340.883400px;}
.y135{bottom:343.780800px;}
.ycf{bottom:344.405250px;}
.y9e{bottom:344.425350px;}
.y6d{bottom:344.492100px;}
.yb6{bottom:344.499750px;}
.yc{bottom:344.526000px;}
.y37{bottom:344.533500px;}
.y141{bottom:354.424350px;}
.y107{bottom:358.140150px;}
.yce{bottom:363.384000px;}
.y9d{bottom:363.404100px;}
.y6c{bottom:363.470850px;}
.yb5{bottom:363.478500px;}
.yb{bottom:363.504750px;}
.y36{bottom:363.512250px;}
.y136{bottom:370.443750px;}
.y106{bottom:375.396900px;}
.ycd{bottom:382.362750px;}
.y9c{bottom:382.382850px;}
.y6b{bottom:382.449600px;}
.yb4{bottom:382.457250px;}
.ya{bottom:382.483500px;}
.y35{bottom:382.491000px;}
.y105{bottom:392.653650px;}
.ycc{bottom:401.341500px;}
.y9b{bottom:401.361600px;}
.y6a{bottom:401.428350px;}
.yb3{bottom:401.436000px;}
.y9{bottom:401.462250px;}
.y34{bottom:401.469750px;}
.y139{bottom:405.941057px;}
.y104{bottom:409.910400px;}
.ycb{bottom:420.320250px;}
.y9a{bottom:420.340350px;}
.y69{bottom:420.407100px;}
.yb2{bottom:420.414750px;}
.y8{bottom:420.441000px;}
.y13b{bottom:422.792250px;}
.y103{bottom:427.167150px;}
.y33{bottom:436.486500px;}
.yca{bottom:439.299000px;}
.y99{bottom:439.319100px;}
.y68{bottom:439.385850px;}
.yb1{bottom:439.393500px;}
.y7{bottom:439.419750px;}
.y102{bottom:444.423900px;}
.y137{bottom:444.907664px;}
.y13c{bottom:447.701587px;}
.yc9{bottom:458.277750px;}
.y98{bottom:458.297850px;}
.y67{bottom:458.364600px;}
.yb0{bottom:458.372250px;}
.y101{bottom:461.680650px;}
.yc8{bottom:477.256500px;}
.y97{bottom:477.276600px;}
.y66{bottom:477.343350px;}
.yaf{bottom:477.351000px;}
.y100{bottom:478.937400px;}
.y13d{bottom:482.514637px;}
.y138{bottom:485.290801px;}
.yff{bottom:496.194150px;}
.yc7{bottom:496.235250px;}
.y96{bottom:496.255350px;}
.y65{bottom:496.322100px;}
.yae{bottom:496.329750px;}
.yc6{bottom:515.214000px;}
.y95{bottom:515.234100px;}
.y64{bottom:515.300850px;}
.yad{bottom:515.308500px;}
.yc5{bottom:534.192750px;}
.y94{bottom:534.212850px;}
.y63{bottom:534.279600px;}
.yac{bottom:534.287250px;}
.yfe{bottom:534.703950px;}
.yc4{bottom:553.171500px;}
.y62{bottom:553.258350px;}
.yab{bottom:553.266000px;}
.y32{bottom:553.363950px;}
.y13a{bottom:554.196631px;}
.y31{bottom:569.118450px;}
.yc3{bottom:572.150250px;}
.y93{bottom:572.170350px;}
.y61{bottom:572.237100px;}
.yaa{bottom:572.244750px;}
.y30{bottom:584.872950px;}
.yfd{bottom:591.211350px;}
.y60{bottom:591.215850px;}
.y2f{bottom:600.627450px;}
.y5f{bottom:610.142100px;}
.yfc{bottom:610.190100px;}
.y2e{bottom:616.381950px;}
.y92{bottom:629.090850px;}
.y5e{bottom:629.120850px;}
.yf7{bottom:632.056500px;}
.y2d{bottom:632.136450px;}
.y2c{bottom:647.890950px;}
.yf6{bottom:648.002250px;}
.y91{bottom:648.069600px;}
.y5d{bottom:648.099600px;}
.y145{bottom:652.194300px;}
.y2b{bottom:663.645450px;}
.yf5{bottom:664.261500px;}
.y90{bottom:667.048350px;}
.y5c{bottom:667.078350px;}
.y144{bottom:668.691300px;}
.y2a{bottom:679.399950px;}
.y143{bottom:685.188300px;}
.y8f{bottom:686.027100px;}
.y5b{bottom:686.057100px;}
.yf4{bottom:686.904750px;}
.y29{bottom:695.154450px;}
.y142{bottom:701.685300px;}
.yf3{bottom:703.164000px;}
.y8e{bottom:705.005850px;}
.y5a{bottom:705.035850px;}
.y28{bottom:710.908950px;}
.yf2{bottom:719.423250px;}
.y129{bottom:721.675500px;}
.y8d{bottom:723.984600px;}
.y59{bottom:724.014600px;}
.y27{bottom:726.663450px;}
.y128{bottom:739.334250px;}
.yf1{bottom:742.066500px;}
.y26{bottom:742.417950px;}
.y8c{bottom:742.963350px;}
.y58{bottom:742.993350px;}
.y25{bottom:758.172450px;}
.yf0{bottom:758.325750px;}
.y8b{bottom:761.942100px;}
.y123{bottom:761.954250px;}
.y57{bottom:761.972100px;}
.y12f{bottom:772.462500px;}
.y12c{bottom:772.467000px;}
.y24{bottom:773.926950px;}
.yef{bottom:774.585000px;}
.y8a{bottom:780.920850px;}
.y56{bottom:780.950850px;}
.y124{bottom:781.562250px;}
.y23{bottom:789.681450px;}
.yee{bottom:790.844250px;}
.y131{bottom:791.119500px;}
.y89{bottom:799.899600px;}
.y55{bottom:799.929600px;}
.y125{bottom:801.170250px;}
.y22{bottom:805.435950px;}
.y132{bottom:811.615500px;}
.yed{bottom:813.487500px;}
.y88{bottom:818.878350px;}
.y54{bottom:818.908350px;}
.y126{bottom:820.778250px;}
.y21{bottom:821.190450px;}
.yec{bottom:829.746750px;}
.y130{bottom:834.403500px;}
.y20{bottom:836.944950px;}
.y87{bottom:837.857100px;}
.y53{bottom:837.887100px;}
.y127{bottom:840.386250px;}
.yeb{bottom:846.006000px;}
.y86{bottom:856.835850px;}
.y52{bottom:856.865850px;}
.y122{bottom:859.994250px;}
.y1f{bottom:861.198900px;}
.yea{bottom:862.265250px;}
.y85{bottom:875.814600px;}
.y51{bottom:875.844600px;}
.ye9{bottom:884.908500px;}
.y11d{bottom:893.678250px;}
.y84{bottom:894.793350px;}
.ye8{bottom:901.167750px;}
.y12e{bottom:903.610500px;}
.y1e{bottom:908.336550px;}
.y50{bottom:912.236700px;}
.y11e{bottom:913.286250px;}
.y83{bottom:913.772100px;}
.ye7{bottom:917.427000px;}
.y1d{bottom:923.336550px;}
.y82{bottom:932.750850px;}
.y11f{bottom:932.894250px;}
.ye6{bottom:933.686250px;}
.y1c{bottom:942.536550px;}
.y81{bottom:951.729600px;}
.y120{bottom:952.502250px;}
.y15f{bottom:952.770600px;}
.ye5{bottom:956.329500px;}
.y1b{bottom:956.525550px;}
.y15e{bottom:970.027350px;}
.y154{bottom:970.084350px;}
.y4f{bottom:970.689600px;}
.y80{bottom:970.708350px;}
.y121{bottom:972.110250px;}
.ye4{bottom:972.588750px;}
.y15d{bottom:987.284100px;}
.y153{bottom:987.341100px;}
.ye3{bottom:988.848000px;}
.y4e{bottom:989.668350px;}
.y7f{bottom:989.687100px;}
.y1a{bottom:990.470550px;}
.y11c{bottom:991.718250px;}
.y15c{bottom:1004.540850px;}
.y152{bottom:1004.597850px;}
.ye2{bottom:1005.107250px;}
.y4d{bottom:1008.647100px;}
.y7e{bottom:1008.665850px;}
.y19{bottom:1017.470550px;}
.y15b{bottom:1021.797600px;}
.y151{bottom:1021.854600px;}
.y117{bottom:1022.954250px;}
.y4c{bottom:1027.625850px;}
.y7d{bottom:1027.633350px;}
.ye1{bottom:1029.869550px;}
.y12d{bottom:1033.690500px;}
.y15a{bottom:1039.054350px;}
.y150{bottom:1039.111350px;}
.y118{bottom:1042.562250px;}
.y4b{bottom:1046.604600px;}
.y7c{bottom:1046.612100px;}
.y159{bottom:1056.311100px;}
.y14f{bottom:1056.368100px;}
.ye0{bottom:1056.375000px;}
.y119{bottom:1062.170250px;}
.y4a{bottom:1065.583350px;}
.y158{bottom:1073.567850px;}
.y14e{bottom:1073.624850px;}
.ydf{bottom:1073.631750px;}
.y6{bottom:1076.713200px;}
.y11a{bottom:1081.778250px;}
.y49{bottom:1084.562100px;}
.y7b{bottom:1084.569600px;}
.y157{bottom:1090.824600px;}
.y14d{bottom:1090.881600px;}
.yde{bottom:1090.888500px;}
.y11b{bottom:1101.386250px;}
.y48{bottom:1103.540850px;}
.y156{bottom:1108.081350px;}
.y14c{bottom:1108.138350px;}
.ydd{bottom:1108.138500px;}
.y5{bottom:1120.755000px;}
.y116{bottom:1120.994250px;}
.y7a{bottom:1121.053500px;}
.y47{bottom:1122.519600px;}
.y155{bottom:1125.338100px;}
.y14b{bottom:1125.395100px;}
.ydc{bottom:1125.395250px;}
.y4{bottom:1134.258000px;}
.y3{bottom:1147.761000px;}
.y2{bottom:1161.264000px;}
.y14a{bottom:1170.938100px;}
.ya9{bottom:1170.938250px;}
.yf8{bottom:1171.646850px;}
.y46{bottom:1171.647000px;}
.y44{bottom:1172.686950px;}
.y1{bottom:1174.767000px;}
.h8{height:25.434375px;}
.h1c{height:34.668996px;}
.h15{height:34.944000px;}
.h17{height:34.944009px;}
.h1f{height:34.956230px;}
.h1b{height:34.956667px;}
.h1e{height:34.957104px;}
.h14{height:36.597656px;}
.h2{height:36.770508px;}
.he{height:37.494141px;}
.h18{height:40.128000px;}
.h19{height:40.176000px;}
.h9{height:42.234375px;}
.hc{height:47.276367px;}
.hb{height:47.513672px;}
.ha{height:48.796875px;}
.h11{height:49.902832px;}
.h12{height:49.929832px;}
.h13{height:50.153320px;}
.h7{height:52.529297px;}
.h4{height:55.155762px;}
.h10{height:55.200762px;}
.hf{height:55.365762px;}
.h5{height:55.432617px;}
.hd{height:56.929688px;}
.h3{height:57.680062px;}
.h1d{height:63.095652px;}
.h6{height:65.062500px;}
.h1a{height:364.389000px;}
.h16{height:413.601000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:347.122500px;}
.w2{width:531.460500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:9.957900px;}
.x22{left:53.389950px;}
.x6{left:85.039350px;}
.xe{left:102.047250px;}
.x9{left:116.490600px;}
.x1a{left:145.972350px;}
.x12{left:158.833200px;}
.x21{left:160.620750px;}
.xc{left:180.558300px;}
.x13{left:198.624000px;}
.x14{left:244.836000px;}
.x1e{left:247.833750px;}
.xd{left:254.003550px;}
.x1b{left:256.084350px;}
.xa{left:276.786600px;}
.x1c{left:278.452350px;}
.x1f{left:281.037750px;}
.xb{left:296.358150px;}
.x20{left:314.637750px;}
.xf{left:324.221700px;}
.x19{left:339.567750px;}
.x11{left:341.680050px;}
.x1d{left:410.236350px;}
.x17{left:436.686750px;}
.x7{left:460.275600px;}
.x5{left:467.889450px;}
.x8{left:477.285600px;}
.x18{left:597.080100px;}
.x4{left:617.482950px;}
.x2{left:688.410450px;}
.x16{left:690.434100px;}
.x3{left:727.449450px;}
.x1{left:742.285950px;}
.x10{left:800.373900px;}
@media print{
.v3{vertical-align:-14.933333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.608000pt;}
.v1{vertical-align:15.125333pt;}
.v5{vertical-align:17.733867pt;}
.v2{vertical-align:18.666667pt;}
.v4{vertical-align:19.786667pt;}
.v7{vertical-align:25.012043pt;}
.ls3b{letter-spacing:-5.152000pt;}
.ls67{letter-spacing:-1.067067pt;}
.ls71{letter-spacing:-1.024358pt;}
.ls68{letter-spacing:-0.896336pt;}
.ls64{letter-spacing:-0.853653pt;}
.ls6c{letter-spacing:-0.725333pt;}
.ls65{letter-spacing:-0.640240pt;}
.ls57{letter-spacing:-0.557333pt;}
.ls41{letter-spacing:-0.448000pt;}
.ls66{letter-spacing:-0.384144pt;}
.ls6f{letter-spacing:-0.384134pt;}
.ls7c{letter-spacing:-0.354667pt;}
.ls39{letter-spacing:-0.280000pt;}
.ls3a{letter-spacing:-0.224000pt;}
.ls70{letter-spacing:-0.213408pt;}
.ls1e{letter-spacing:-0.168000pt;}
.ls69{letter-spacing:-0.128045pt;}
.ls36{letter-spacing:-0.112000pt;}
.ls73{letter-spacing:-0.085363pt;}
.ls6b{letter-spacing:-0.085333pt;}
.ls25{letter-spacing:-0.056000pt;}
.ls7b{letter-spacing:-0.050667pt;}
.ls6d{letter-spacing:-0.042682pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.042667pt;}
.ls53{letter-spacing:0.048000pt;}
.ls49{letter-spacing:0.050667pt;}
.ls2e{letter-spacing:0.056000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls7a{letter-spacing:0.126667pt;}
.ls31{letter-spacing:0.131733pt;}
.ls42{letter-spacing:0.152000pt;}
.ls3d{letter-spacing:0.168000pt;}
.lse{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.202667pt;}
.ls2f{letter-spacing:0.224000pt;}
.ls58{letter-spacing:0.253333pt;}
.ls1b{letter-spacing:0.280000pt;}
.ls50{letter-spacing:0.298667pt;}
.ls51{letter-spacing:0.298771pt;}
.lsc{letter-spacing:0.309333pt;}
.ls14{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.386667pt;}
.lsa{letter-spacing:0.392000pt;}
.ls4a{letter-spacing:0.405333pt;}
.ls10{letter-spacing:0.432000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.466667pt;}
.ls4f{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.485333pt;}
.ls2b{letter-spacing:0.504000pt;}
.ls46{letter-spacing:0.506667pt;}
.ls6a{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls21{letter-spacing:0.554667pt;}
.ls26{letter-spacing:0.560000pt;}
.ls6e{letter-spacing:0.597542pt;}
.ls11{letter-spacing:0.600000pt;}
.ls4c{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.616000pt;}
.ls23{letter-spacing:0.624000pt;}
.ls44{letter-spacing:0.633333pt;}
.ls54{letter-spacing:0.658667pt;}
.ls9{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.700000pt;}
.ls4d{letter-spacing:0.709333pt;}
.ls18{letter-spacing:0.728000pt;}
.ls79{letter-spacing:0.760000pt;}
.ls52{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:0.784000pt;}
.ls22{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.840000pt;}
.ls72{letter-spacing:0.853632pt;}
.ls75{letter-spacing:0.861333pt;}
.ls33{letter-spacing:0.896000pt;}
.ls77{letter-spacing:0.912000pt;}
.ls29{letter-spacing:0.952000pt;}
.ls78{letter-spacing:0.962667pt;}
.ls24{letter-spacing:0.970667pt;}
.ls37{letter-spacing:1.006880pt;}
.ls19{letter-spacing:1.008000pt;}
.ls4e{letter-spacing:1.013333pt;}
.ls30{letter-spacing:1.064000pt;}
.ls1f{letter-spacing:1.109333pt;}
.ls8{letter-spacing:1.120000pt;}
.ls74{letter-spacing:1.165333pt;}
.ls17{letter-spacing:1.176000pt;}
.ls48{letter-spacing:1.216000pt;}
.ls1{letter-spacing:1.232000pt;}
.ls56{letter-spacing:1.266667pt;}
.ls16{letter-spacing:1.288000pt;}
.ls45{letter-spacing:1.317333pt;}
.ls5{letter-spacing:1.344000pt;}
.ls43{letter-spacing:1.368000pt;}
.ls13{letter-spacing:1.400000pt;}
.ls6{letter-spacing:1.456000pt;}
.ls2a{letter-spacing:1.568000pt;}
.ls35{letter-spacing:1.624000pt;}
.ls40{letter-spacing:1.680000pt;}
.ls47{letter-spacing:1.722667pt;}
.ls2d{letter-spacing:1.736000pt;}
.ls4b{letter-spacing:1.773333pt;}
.ls27{letter-spacing:1.792000pt;}
.ls32{letter-spacing:1.848000pt;}
.ls3e{letter-spacing:1.904000pt;}
.ls28{letter-spacing:1.960000pt;}
.ls34{letter-spacing:2.016000pt;}
.ls76{letter-spacing:2.026667pt;}
.ls7{letter-spacing:2.072000pt;}
.ls1a{letter-spacing:2.128000pt;}
.ls38{letter-spacing:2.408000pt;}
.ls3c{letter-spacing:2.464000pt;}
.ls3f{letter-spacing:4.032000pt;}
.ls5d{letter-spacing:32.768000pt;}
.ls61{letter-spacing:33.706667pt;}
.ls5c{letter-spacing:34.688000pt;}
.ls5f{letter-spacing:35.925333pt;}
.ls60{letter-spacing:36.352000pt;}
.ls62{letter-spacing:36.565333pt;}
.ls5e{letter-spacing:39.125333pt;}
.ls5b{letter-spacing:42.112000pt;}
.ls5a{letter-spacing:118.058667pt;}
.ls63{letter-spacing:173.610667pt;}
.ws60{word-spacing:-173.653333pt;}
.ws57{word-spacing:-118.101333pt;}
.ws58{word-spacing:-42.154667pt;}
.ws5b{word-spacing:-39.168000pt;}
.ws5f{word-spacing:-36.608000pt;}
.ws5d{word-spacing:-36.394667pt;}
.ws5c{word-spacing:-35.968000pt;}
.ws59{word-spacing:-34.730667pt;}
.ws5e{word-spacing:-33.749333pt;}
.ws5a{word-spacing:-32.810667pt;}
.ws5{word-spacing:-19.637333pt;}
.ws3d{word-spacing:-18.032000pt;}
.ws2{word-spacing:-16.832000pt;}
.ws20{word-spacing:-16.464000pt;}
.ws3e{word-spacing:-15.344000pt;}
.ws21{word-spacing:-15.008000pt;}
.ws1d{word-spacing:-14.784000pt;}
.ws1f{word-spacing:-14.728000pt;}
.ws1{word-spacing:-14.000000pt;}
.ws55{word-spacing:-13.300000pt;}
.ws40{word-spacing:-12.666667pt;}
.ws3{word-spacing:-12.624000pt;}
.ws4{word-spacing:-12.600000pt;}
.ws6c{word-spacing:-11.097216pt;}
.ws68{word-spacing:-10.841126pt;}
.ws66{word-spacing:-10.752000pt;}
.ws6e{word-spacing:-10.542355pt;}
.ws63{word-spacing:-10.243712pt;}
.ws6b{word-spacing:-10.243584pt;}
.ws64{word-spacing:-10.240000pt;}
.ws67{word-spacing:-10.200902pt;}
.ws6d{word-spacing:-10.158221pt;}
.ws69{word-spacing:-9.859450pt;}
.ws0{word-spacing:-9.800000pt;}
.ws6a{word-spacing:-9.219226pt;}
.ws1e{word-spacing:-9.126880pt;}
.ws3f{word-spacing:-7.346667pt;}
.ws31{word-spacing:-3.136000pt;}
.wsf{word-spacing:-2.986667pt;}
.ws7{word-spacing:-2.933333pt;}
.ws51{word-spacing:-2.128000pt;}
.ws39{word-spacing:-2.072000pt;}
.ws54{word-spacing:-1.469333pt;}
.ws41{word-spacing:-1.064000pt;}
.ws53{word-spacing:-1.013333pt;}
.ws43{word-spacing:-1.008000pt;}
.ws1a{word-spacing:-0.728000pt;}
.ws14{word-spacing:-0.624000pt;}
.ws81{word-spacing:-0.597542pt;}
.ws28{word-spacing:-0.504000pt;}
.ws79{word-spacing:-0.469333pt;}
.ws13{word-spacing:-0.432000pt;}
.ws10{word-spacing:-0.402133pt;}
.ws30{word-spacing:-0.392000pt;}
.ws26{word-spacing:-0.280000pt;}
.ws2b{word-spacing:-0.224000pt;}
.ws56{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.056000pt;}
.ws2c{word-spacing:0.112000pt;}
.ws7f{word-spacing:0.128045pt;}
.ws71{word-spacing:0.152000pt;}
.ws25{word-spacing:0.168000pt;}
.ws48{word-spacing:0.224000pt;}
.ws35{word-spacing:0.280000pt;}
.ws82{word-spacing:0.384134pt;}
.ws7c{word-spacing:0.384144pt;}
.ws2f{word-spacing:0.392000pt;}
.ws85{word-spacing:0.480000pt;}
.ws4a{word-spacing:0.560000pt;}
.ws65{word-spacing:0.597557pt;}
.ws52{word-spacing:0.608000pt;}
.ws38{word-spacing:0.616000pt;}
.ws12{word-spacing:0.624000pt;}
.ws7b{word-spacing:0.640240pt;}
.ws37{word-spacing:0.672000pt;}
.ws80{word-spacing:0.725333pt;}
.ws47{word-spacing:0.728000pt;}
.ws86{word-spacing:0.768000pt;}
.ws4b{word-spacing:0.784000pt;}
.ws1b{word-spacing:0.840000pt;}
.ws7a{word-spacing:0.853653pt;}
.ws84{word-spacing:0.864000pt;}
.wse{word-spacing:0.896000pt;}
.ws7e{word-spacing:0.896336pt;}
.ws1c{word-spacing:0.952000pt;}
.ws44{word-spacing:1.064000pt;}
.ws7d{word-spacing:1.067067pt;}
.ws4d{word-spacing:1.120000pt;}
.ws33{word-spacing:1.176000pt;}
.ws11{word-spacing:1.200000pt;}
.ws83{word-spacing:1.248000pt;}
.ws78{word-spacing:1.266667pt;}
.ws6f{word-spacing:1.288000pt;}
.ws32{word-spacing:1.344000pt;}
.wsb{word-spacing:1.400000pt;}
.ws49{word-spacing:1.456000pt;}
.ws22{word-spacing:1.512000pt;}
.ws18{word-spacing:1.624000pt;}
.ws9{word-spacing:1.680000pt;}
.ws4f{word-spacing:1.736000pt;}
.ws88{word-spacing:1.773333pt;}
.ws8{word-spacing:1.792000pt;}
.ws87{word-spacing:1.824000pt;}
.ws34{word-spacing:1.848000pt;}
.ws16{word-spacing:1.904000pt;}
.ws42{word-spacing:1.960000pt;}
.ws76{word-spacing:1.976000pt;}
.ws8b{word-spacing:2.026667pt;}
.wsa{word-spacing:2.128000pt;}
.ws8a{word-spacing:2.178667pt;}
.ws4c{word-spacing:2.184000pt;}
.ws2e{word-spacing:2.240000pt;}
.ws74{word-spacing:2.330667pt;}
.ws15{word-spacing:2.352000pt;}
.ws72{word-spacing:2.482667pt;}
.wsc{word-spacing:2.520000pt;}
.ws17{word-spacing:2.576000pt;}
.ws27{word-spacing:2.912000pt;}
.ws3c{word-spacing:3.024000pt;}
.ws50{word-spacing:3.248000pt;}
.ws29{word-spacing:3.360000pt;}
.ws70{word-spacing:3.640000pt;}
.ws75{word-spacing:3.648000pt;}
.ws23{word-spacing:3.696000pt;}
.ws73{word-spacing:3.698667pt;}
.ws77{word-spacing:3.749333pt;}
.ws36{word-spacing:3.808000pt;}
.ws45{word-spacing:3.976000pt;}
.ws24{word-spacing:4.312000pt;}
.ws4e{word-spacing:4.368000pt;}
.wsd{word-spacing:4.536000pt;}
.ws89{word-spacing:4.712000pt;}
.ws19{word-spacing:4.760000pt;}
.ws3b{word-spacing:4.816000pt;}
.ws3a{word-spacing:5.152000pt;}
.ws2d{word-spacing:5.600000pt;}
.ws46{word-spacing:11.088000pt;}
.ws61{word-spacing:842.410667pt;}
.ws62{word-spacing:852.650667pt;}
._4d{margin-left:-1166.378667pt;}
._4c{margin-left:-1152.545646pt;}
._4b{margin-left:-267.733333pt;}
._45{margin-left:-118.058667pt;}
._44{margin-left:-94.037333pt;}
._46{margin-left:-42.112000pt;}
._49{margin-left:-39.125333pt;}
._4a{margin-left:-35.925333pt;}
._47{margin-left:-34.688000pt;}
._48{margin-left:-32.768000pt;}
._6{margin-left:-7.032000pt;}
._a{margin-left:-5.313600pt;}
._4{margin-left:-4.376000pt;}
._1{margin-left:-2.632000pt;}
._0{margin-left:-1.422400pt;}
._7{width:1.344000pt;}
._3{width:2.901333pt;}
._9{width:5.936000pt;}
._5{width:31.189333pt;}
._28{width:61.965333pt;}
._3a{width:67.741333pt;}
._27{width:71.946667pt;}
._2c{width:74.429333pt;}
._25{width:79.090667pt;}
._1f{width:84.613333pt;}
._20{width:87.298667pt;}
._12{width:88.970667pt;}
._29{width:91.352000pt;}
._1e{width:92.365333pt;}
._14{width:97.280000pt;}
._13{width:98.698667pt;}
._15{width:99.965333pt;}
._22{width:104.424000pt;}
._3b{width:105.637333pt;}
._32{width:107.160000pt;}
._24{width:110.352000pt;}
._16{width:112.429333pt;}
._36{width:113.949333pt;}
._35{width:114.912000pt;}
._33{width:116.229333pt;}
._17{width:117.293333pt;}
._21{width:118.762667pt;}
._30{width:120.485333pt;}
._19{width:124.032000pt;}
._2f{width:126.160000pt;}
._3e{width:128.997333pt;}
._34{width:134.165333pt;}
._31{width:135.786667pt;}
._2e{width:139.637333pt;}
._2d{width:141.816000pt;}
._39{width:145.160000pt;}
._40{width:147.997333pt;}
._2b{width:150.581333pt;}
._1d{width:152.304000pt;}
._3d{width:153.368000pt;}
._23{width:154.280000pt;}
._3f{width:159.498667pt;}
._38{width:160.765333pt;}
._3c{width:163.754667pt;}
._43{width:165.376000pt;}
._18{width:166.744000pt;}
._1b{width:169.581333pt;}
._2a{width:173.888000pt;}
._41{width:178.498667pt;}
._1c{width:179.410667pt;}
._b{width:180.561600pt;}
._42{width:187.365333pt;}
._26{width:188.885333pt;}
._1a{width:192.280000pt;}
._37{width:194.357333pt;}
._11{width:209.712000pt;}
._d{width:221.904000pt;}
._c{width:239.232000pt;}
._e{width:250.320000pt;}
._f{width:272.592000pt;}
._10{width:280.608000pt;}
._8{width:1498.752000pt;}
._2{width:1608.665067pt;}
.fs5{font-size:24.746667pt;}
.fsc{font-size:29.386667pt;}
.fs4{font-size:30.933333pt;}
.fsa{font-size:32.480000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:42.666677pt;}
.fs10{font-size:42.681600pt;}
.fse{font-size:42.682133pt;}
.fsf{font-size:42.682667pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:2.260667pt;}
.y12a{bottom:2.389333pt;}
.y13f{bottom:2.910000pt;}
.y45{bottom:37.028400pt;}
.ya8{bottom:37.034000pt;}
.y115{bottom:103.596133pt;}
.ydb{bottom:103.698000pt;}
.ya7{bottom:103.729867pt;}
.y79{bottom:103.775200pt;}
.yc2{bottom:103.782000pt;}
.y18{bottom:103.805333pt;}
.y43{bottom:103.812000pt;}
.yfb{bottom:103.855200pt;}
.y114{bottom:118.935467pt;}
.yda{bottom:120.568000pt;}
.ya6{bottom:120.599867pt;}
.y78{bottom:120.645200pt;}
.yc1{bottom:120.652000pt;}
.y17{bottom:120.675333pt;}
.y42{bottom:120.682000pt;}
.yfa{bottom:120.725200pt;}
.y113{bottom:134.274800pt;}
.yd9{bottom:137.438000pt;}
.y77{bottom:137.515200pt;}
.yc0{bottom:137.522000pt;}
.y16{bottom:137.545333pt;}
.y41{bottom:137.552000pt;}
.yf9{bottom:137.595200pt;}
.y140{bottom:138.452667pt;}
.y112{bottom:149.614133pt;}
.y12b{bottom:151.152000pt;}
.yd8{bottom:154.308000pt;}
.ya5{bottom:154.339867pt;}
.y76{bottom:154.385200pt;}
.ybf{bottom:154.392000pt;}
.y15{bottom:154.415333pt;}
.y40{bottom:154.422000pt;}
.y111{bottom:164.953467pt;}
.y149{bottom:167.612267pt;}
.yd7{bottom:171.178000pt;}
.y75{bottom:171.255200pt;}
.ybe{bottom:171.262000pt;}
.y14{bottom:171.285333pt;}
.y3f{bottom:171.292000pt;}
.y110{bottom:180.292800pt;}
.y148{bottom:182.276267pt;}
.yd6{bottom:188.048000pt;}
.y74{bottom:188.125200pt;}
.ybd{bottom:188.132000pt;}
.y13{bottom:188.155333pt;}
.y3e{bottom:188.162000pt;}
.y10f{bottom:195.632133pt;}
.y147{bottom:196.940267pt;}
.yd5{bottom:204.918000pt;}
.ya4{bottom:204.935867pt;}
.y73{bottom:204.995200pt;}
.ybc{bottom:205.002000pt;}
.y12{bottom:205.025333pt;}
.y3d{bottom:205.032000pt;}
.y10e{bottom:210.971467pt;}
.y146{bottom:211.604267pt;}
.yd4{bottom:221.788000pt;}
.ya3{bottom:221.805867pt;}
.y72{bottom:221.865200pt;}
.ybb{bottom:221.872000pt;}
.y11{bottom:221.895333pt;}
.y3c{bottom:221.902000pt;}
.y10d{bottom:226.310800pt;}
.y133{bottom:229.361333pt;}
.yd3{bottom:238.658000pt;}
.ya2{bottom:238.675867pt;}
.y71{bottom:238.735200pt;}
.yba{bottom:238.742000pt;}
.y10{bottom:238.765333pt;}
.y3b{bottom:238.772000pt;}
.y10c{bottom:241.650133pt;}
.yd2{bottom:255.528000pt;}
.ya1{bottom:255.545867pt;}
.y70{bottom:255.605200pt;}
.yb9{bottom:255.612000pt;}
.yf{bottom:255.635333pt;}
.y3a{bottom:255.642000pt;}
.y10b{bottom:256.989467pt;}
.y13e{bottom:261.746000pt;}
.y10a{bottom:272.328800pt;}
.yd1{bottom:272.398000pt;}
.ya0{bottom:272.415867pt;}
.y6f{bottom:272.475200pt;}
.yb8{bottom:272.482000pt;}
.ye{bottom:272.505333pt;}
.y39{bottom:272.512000pt;}
.y109{bottom:287.668133pt;}
.yd0{bottom:289.268000pt;}
.y9f{bottom:289.285867pt;}
.y6e{bottom:289.345200pt;}
.yb7{bottom:289.352000pt;}
.yd{bottom:289.375333pt;}
.y38{bottom:289.382000pt;}
.y108{bottom:303.007467pt;}
.y135{bottom:305.582933pt;}
.ycf{bottom:306.138000pt;}
.y9e{bottom:306.155867pt;}
.y6d{bottom:306.215200pt;}
.yb6{bottom:306.222000pt;}
.yc{bottom:306.245333pt;}
.y37{bottom:306.252000pt;}
.y141{bottom:315.043867pt;}
.y107{bottom:318.346800pt;}
.yce{bottom:323.008000pt;}
.y9d{bottom:323.025867pt;}
.y6c{bottom:323.085200pt;}
.yb5{bottom:323.092000pt;}
.yb{bottom:323.115333pt;}
.y36{bottom:323.122000pt;}
.y136{bottom:329.283333pt;}
.y106{bottom:333.686133pt;}
.ycd{bottom:339.878000pt;}
.y9c{bottom:339.895867pt;}
.y6b{bottom:339.955200pt;}
.yb4{bottom:339.962000pt;}
.ya{bottom:339.985333pt;}
.y35{bottom:339.992000pt;}
.y105{bottom:349.025467pt;}
.ycc{bottom:356.748000pt;}
.y9b{bottom:356.765867pt;}
.y6a{bottom:356.825200pt;}
.yb3{bottom:356.832000pt;}
.y9{bottom:356.855333pt;}
.y34{bottom:356.862000pt;}
.y139{bottom:360.836495pt;}
.y104{bottom:364.364800pt;}
.ycb{bottom:373.618000pt;}
.y9a{bottom:373.635867pt;}
.y69{bottom:373.695200pt;}
.yb2{bottom:373.702000pt;}
.y8{bottom:373.725333pt;}
.y13b{bottom:375.815333pt;}
.y103{bottom:379.704133pt;}
.y33{bottom:387.988000pt;}
.yca{bottom:390.488000pt;}
.y99{bottom:390.505867pt;}
.y68{bottom:390.565200pt;}
.yb1{bottom:390.572000pt;}
.y7{bottom:390.595333pt;}
.y102{bottom:395.043467pt;}
.y137{bottom:395.473479pt;}
.y13c{bottom:397.956967pt;}
.yc9{bottom:407.358000pt;}
.y98{bottom:407.375867pt;}
.y67{bottom:407.435200pt;}
.yb0{bottom:407.442000pt;}
.y101{bottom:410.382800pt;}
.yc8{bottom:424.228000pt;}
.y97{bottom:424.245867pt;}
.y66{bottom:424.305200pt;}
.yaf{bottom:424.312000pt;}
.y100{bottom:425.722133pt;}
.y13d{bottom:428.901900pt;}
.y138{bottom:431.369601pt;}
.yff{bottom:441.061467pt;}
.yc7{bottom:441.098000pt;}
.y96{bottom:441.115867pt;}
.y65{bottom:441.175200pt;}
.yae{bottom:441.182000pt;}
.yc6{bottom:457.968000pt;}
.y95{bottom:457.985867pt;}
.y64{bottom:458.045200pt;}
.yad{bottom:458.052000pt;}
.yc5{bottom:474.838000pt;}
.y94{bottom:474.855867pt;}
.y63{bottom:474.915200pt;}
.yac{bottom:474.922000pt;}
.yfe{bottom:475.292400pt;}
.yc4{bottom:491.708000pt;}
.y62{bottom:491.785200pt;}
.yab{bottom:491.792000pt;}
.y32{bottom:491.879067pt;}
.y13a{bottom:492.619228pt;}
.y31{bottom:505.883067pt;}
.yc3{bottom:508.578000pt;}
.y93{bottom:508.595867pt;}
.y61{bottom:508.655200pt;}
.yaa{bottom:508.662000pt;}
.y30{bottom:519.887067pt;}
.yfd{bottom:525.521200pt;}
.y60{bottom:525.525200pt;}
.y2f{bottom:533.891067pt;}
.y5f{bottom:542.348533pt;}
.yfc{bottom:542.391200pt;}
.y2e{bottom:547.895067pt;}
.y92{bottom:559.191867pt;}
.y5e{bottom:559.218533pt;}
.yf7{bottom:561.828000pt;}
.y2d{bottom:561.899067pt;}
.y2c{bottom:575.903067pt;}
.yf6{bottom:576.002000pt;}
.y91{bottom:576.061867pt;}
.y5d{bottom:576.088533pt;}
.y145{bottom:579.728267pt;}
.y2b{bottom:589.907067pt;}
.yf5{bottom:590.454667pt;}
.y90{bottom:592.931867pt;}
.y5c{bottom:592.958533pt;}
.y144{bottom:594.392267pt;}
.y2a{bottom:603.911067pt;}
.y143{bottom:609.056267pt;}
.y8f{bottom:609.801867pt;}
.y5b{bottom:609.828533pt;}
.yf4{bottom:610.582000pt;}
.y29{bottom:617.915067pt;}
.y142{bottom:623.720267pt;}
.yf3{bottom:625.034667pt;}
.y8e{bottom:626.671867pt;}
.y5a{bottom:626.698533pt;}
.y28{bottom:631.919067pt;}
.yf2{bottom:639.487333pt;}
.y129{bottom:641.489333pt;}
.y8d{bottom:643.541867pt;}
.y59{bottom:643.568533pt;}
.y27{bottom:645.923067pt;}
.y128{bottom:657.186000pt;}
.yf1{bottom:659.614667pt;}
.y26{bottom:659.927067pt;}
.y8c{bottom:660.411867pt;}
.y58{bottom:660.438533pt;}
.y25{bottom:673.931067pt;}
.yf0{bottom:674.067333pt;}
.y8b{bottom:677.281867pt;}
.y123{bottom:677.292667pt;}
.y57{bottom:677.308533pt;}
.y12f{bottom:686.633333pt;}
.y12c{bottom:686.637333pt;}
.y24{bottom:687.935067pt;}
.yef{bottom:688.520000pt;}
.y8a{bottom:694.151867pt;}
.y56{bottom:694.178533pt;}
.y124{bottom:694.722000pt;}
.y23{bottom:701.939067pt;}
.yee{bottom:702.972667pt;}
.y131{bottom:703.217333pt;}
.y89{bottom:711.021867pt;}
.y55{bottom:711.048533pt;}
.y125{bottom:712.151333pt;}
.y22{bottom:715.943067pt;}
.y132{bottom:721.436000pt;}
.yed{bottom:723.100000pt;}
.y88{bottom:727.891867pt;}
.y54{bottom:727.918533pt;}
.y126{bottom:729.580667pt;}
.y21{bottom:729.947067pt;}
.yec{bottom:737.552667pt;}
.y130{bottom:741.692000pt;}
.y20{bottom:743.951067pt;}
.y87{bottom:744.761867pt;}
.y53{bottom:744.788533pt;}
.y127{bottom:747.010000pt;}
.yeb{bottom:752.005333pt;}
.y86{bottom:761.631867pt;}
.y52{bottom:761.658533pt;}
.y122{bottom:764.439333pt;}
.y1f{bottom:765.510133pt;}
.yea{bottom:766.458000pt;}
.y85{bottom:778.501867pt;}
.y51{bottom:778.528533pt;}
.ye9{bottom:786.585333pt;}
.y11d{bottom:794.380667pt;}
.y84{bottom:795.371867pt;}
.ye8{bottom:801.038000pt;}
.y12e{bottom:803.209333pt;}
.y1e{bottom:807.410267pt;}
.y50{bottom:810.877067pt;}
.y11e{bottom:811.810000pt;}
.y83{bottom:812.241867pt;}
.ye7{bottom:815.490667pt;}
.y1d{bottom:820.743600pt;}
.y82{bottom:829.111867pt;}
.y11f{bottom:829.239333pt;}
.ye6{bottom:829.943333pt;}
.y1c{bottom:837.810267pt;}
.y81{bottom:845.981867pt;}
.y120{bottom:846.668667pt;}
.y15f{bottom:846.907200pt;}
.ye5{bottom:850.070667pt;}
.y1b{bottom:850.244933pt;}
.y15e{bottom:862.246533pt;}
.y154{bottom:862.297200pt;}
.y4f{bottom:862.835200pt;}
.y80{bottom:862.851867pt;}
.y121{bottom:864.098000pt;}
.ye4{bottom:864.523333pt;}
.y15d{bottom:877.585867pt;}
.y153{bottom:877.636533pt;}
.ye3{bottom:878.976000pt;}
.y4e{bottom:879.705200pt;}
.y7f{bottom:879.721867pt;}
.y1a{bottom:880.418267pt;}
.y11c{bottom:881.527333pt;}
.y15c{bottom:892.925200pt;}
.y152{bottom:892.975867pt;}
.ye2{bottom:893.428667pt;}
.y4d{bottom:896.575200pt;}
.y7e{bottom:896.591867pt;}
.y19{bottom:904.418267pt;}
.y15b{bottom:908.264533pt;}
.y151{bottom:908.315200pt;}
.y117{bottom:909.292667pt;}
.y4c{bottom:913.445200pt;}
.y7d{bottom:913.451867pt;}
.ye1{bottom:915.439600pt;}
.y12d{bottom:918.836000pt;}
.y15a{bottom:923.603867pt;}
.y150{bottom:923.654533pt;}
.y118{bottom:926.722000pt;}
.y4b{bottom:930.315200pt;}
.y7c{bottom:930.321867pt;}
.y159{bottom:938.943200pt;}
.y14f{bottom:938.993867pt;}
.ye0{bottom:939.000000pt;}
.y119{bottom:944.151333pt;}
.y4a{bottom:947.185200pt;}
.y158{bottom:954.282533pt;}
.y14e{bottom:954.333200pt;}
.ydf{bottom:954.339333pt;}
.y6{bottom:957.078400pt;}
.y11a{bottom:961.580667pt;}
.y49{bottom:964.055200pt;}
.y7b{bottom:964.061867pt;}
.y157{bottom:969.621867pt;}
.y14d{bottom:969.672533pt;}
.yde{bottom:969.678667pt;}
.y11b{bottom:979.010000pt;}
.y48{bottom:980.925200pt;}
.y156{bottom:984.961200pt;}
.y14c{bottom:985.011867pt;}
.ydd{bottom:985.012000pt;}
.y5{bottom:996.226667pt;}
.y116{bottom:996.439333pt;}
.y7a{bottom:996.492000pt;}
.y47{bottom:997.795200pt;}
.y155{bottom:1000.300533pt;}
.y14b{bottom:1000.351200pt;}
.ydc{bottom:1000.351333pt;}
.y4{bottom:1008.229333pt;}
.y3{bottom:1020.232000pt;}
.y2{bottom:1032.234667pt;}
.y14a{bottom:1040.833867pt;}
.ya9{bottom:1040.834000pt;}
.yf8{bottom:1041.463867pt;}
.y46{bottom:1041.464000pt;}
.y44{bottom:1042.388400pt;}
.y1{bottom:1044.237333pt;}
.h8{height:22.608333pt;}
.h1c{height:30.816885pt;}
.h15{height:31.061333pt;}
.h17{height:31.061341pt;}
.h1f{height:31.072205pt;}
.h1b{height:31.072593pt;}
.h1e{height:31.072981pt;}
.h14{height:32.531250pt;}
.h2{height:32.684896pt;}
.he{height:33.328125pt;}
.h18{height:35.669333pt;}
.h19{height:35.712000pt;}
.h9{height:37.541667pt;}
.hc{height:42.023438pt;}
.hb{height:42.234375pt;}
.ha{height:43.375000pt;}
.h11{height:44.358073pt;}
.h12{height:44.382073pt;}
.h13{height:44.580729pt;}
.h7{height:46.692708pt;}
.h4{height:49.027344pt;}
.h10{height:49.067344pt;}
.hf{height:49.214010pt;}
.h5{height:49.273438pt;}
.hd{height:50.604167pt;}
.h3{height:51.271167pt;}
.h1d{height:56.085024pt;}
.h6{height:57.833333pt;}
.h1a{height:323.901333pt;}
.h16{height:367.645333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:308.553333pt;}
.w2{width:472.409333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:8.851467pt;}
.x22{left:47.457733pt;}
.x6{left:75.590533pt;}
.xe{left:90.708667pt;}
.x9{left:103.547200pt;}
.x1a{left:129.753200pt;}
.x12{left:141.185067pt;}
.x21{left:142.774000pt;}
.xc{left:160.496267pt;}
.x13{left:176.554667pt;}
.x14{left:217.632000pt;}
.x1e{left:220.296667pt;}
.xd{left:225.780933pt;}
.x1b{left:227.630533pt;}
.xa{left:246.032533pt;}
.x1c{left:247.513200pt;}
.x1f{left:249.811333pt;}
.xb{left:263.429467pt;}
.x20{left:279.678000pt;}
.xf{left:288.197067pt;}
.x19{left:301.838000pt;}
.x11{left:303.715600pt;}
.x1d{left:364.654533pt;}
.x17{left:388.166000pt;}
.x7{left:409.133867pt;}
.x5{left:415.901733pt;}
.x8{left:424.253867pt;}
.x18{left:530.737867pt;}
.x4{left:548.873733pt;}
.x2{left:611.920400pt;}
.x16{left:613.719200pt;}
.x3{left:646.621733pt;}
.x1{left:659.809733pt;}
.x10{left:711.443467pt;}
}




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