
    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_b062047683bd02f820d72485.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.089355;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_4594b5c08e2a80ae9846bb52.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_c16e0a174e66e3cede721ed7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_735e03576dfe99c7de74fa7e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_d6bbe82e71fa24b3c71e7ebe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_bd1479e65a2e3bf2cec3d6d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_fc80a730dca08b87045429f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961914;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_4b88a3186d151daa0d2ae2e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_16ce61fababb471126856f83.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905273;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_14243aac0a5063b72d4d4d9f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7902576b1818d7cd1c213651.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c0974ebe2ac28b2804e28ce9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.089355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258421,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-54.000000px;}
.v3{vertical-align:-39.190505px;}
.v1{vertical-align:-29.520000px;}
.v5{vertical-align:-12.160479px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:39.190505px;}
.ls79{letter-spacing:-7.116000px;}
.ls75{letter-spacing:-6.540000px;}
.ls1{letter-spacing:-5.196000px;}
.ls77{letter-spacing:-5.100000px;}
.ls78{letter-spacing:-4.476000px;}
.ls51{letter-spacing:-0.864000px;}
.ls6d{letter-spacing:-0.704186px;}
.ls3c{letter-spacing:-0.684000px;}
.ls52{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.511800px;}
.ls12{letter-spacing:-0.432000px;}
.ls3d{letter-spacing:-0.378600px;}
.ls30{letter-spacing:-0.306600px;}
.ls44{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.277200px;}
.ls65{letter-spacing:-0.261600px;}
.lsc{letter-spacing:-0.236400px;}
.ls46{letter-spacing:-0.223800px;}
.ls48{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.208200px;}
.ls29{letter-spacing:-0.189600px;}
.ls11{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.175800px;}
.ls4a{letter-spacing:-0.160200px;}
.ls53{letter-spacing:-0.154800px;}
.ls47{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.106800px;}
.ls72{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.053400px;}
.ls2e{letter-spacing:-0.042600px;}
.ls6{letter-spacing:-0.037200px;}
.ls2d{letter-spacing:-0.021600px;}
.ls23{letter-spacing:-0.018600px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018600px;}
.ls1b{letter-spacing:0.018720px;}
.ls18{letter-spacing:0.037200px;}
.ls3b{letter-spacing:0.037440px;}
.ls68{letter-spacing:0.053280px;}
.ls73{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.120000px;}
.ls3f{letter-spacing:0.125400px;}
.ls13{letter-spacing:0.144000px;}
.ls54{letter-spacing:0.151800px;}
.ls66{letter-spacing:0.173280px;}
.ls6e{letter-spacing:0.176171px;}
.ls1d{letter-spacing:0.181200px;}
.ls28{letter-spacing:0.208200px;}
.ls76{letter-spacing:0.210000px;}
.ls41{letter-spacing:0.211968px;}
.ls42{letter-spacing:0.216000px;}
.ls6c{letter-spacing:0.230114px;}
.ls74{letter-spacing:0.252000px;}
.ls6b{letter-spacing:0.258176px;}
.ls22{letter-spacing:0.259920px;}
.ls55{letter-spacing:0.283920px;}
.ls10{letter-spacing:0.288000px;}
.ls67{letter-spacing:0.306720px;}
.ls36{letter-spacing:0.309600px;}
.ls26{letter-spacing:0.341400px;}
.ls49{letter-spacing:0.352200px;}
.ls40{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.389135px;}
.ls43{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.442800px;}
.ls5b{letter-spacing:0.511800px;}
.ls6f{letter-spacing:0.648000px;}
.ls2c{letter-spacing:0.696000px;}
.ls25{letter-spacing:0.738000px;}
.ls1a{letter-spacing:0.738720px;}
.ls24{letter-spacing:0.756000px;}
.ls71{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.458720px;}
.ls4c{letter-spacing:1.543968px;}
.ls5d{letter-spacing:2.178720px;}
.ls16{letter-spacing:2.298720px;}
.ls4f{letter-spacing:3.024000px;}
.ls4e{letter-spacing:3.744000px;}
.ls3a{letter-spacing:4.338720px;}
.ls50{letter-spacing:4.464000px;}
.ls57{letter-spacing:7.218720px;}
.ls58{letter-spacing:7.938720px;}
.ls38{letter-spacing:8.618688px;}
.ls45{letter-spacing:9.378720px;}
.ls4d{letter-spacing:10.224000px;}
.ls5a{letter-spacing:12.258720px;}
.ls1f{letter-spacing:12.978720px;}
.ls5e{letter-spacing:13.658688px;}
.ls56{letter-spacing:15.138720px;}
.ls63{letter-spacing:15.858720px;}
.ls64{letter-spacing:15.978720px;}
.ls21{letter-spacing:17.258688px;}
.ls20{letter-spacing:17.978688px;}
.ls5f{letter-spacing:19.458720px;}
.ls59{letter-spacing:20.898720px;}
.ls60{letter-spacing:21.618720px;}
.ls1e{letter-spacing:22.338720px;}
.ls37{letter-spacing:30.258720px;}
.ls17{letter-spacing:30.978720px;}
.ls1c{letter-spacing:31.698720px;}
.ls5c{letter-spacing:33.858720px;}
.ls35{letter-spacing:34.578720px;}
.ls34{letter-spacing:35.298720px;}
.ls39{letter-spacing:47.677440px;}
.ls33{letter-spacing:49.717440px;}
.ls70{letter-spacing:56.304000px;}
.ls61{letter-spacing:61.218720px;}
.ls62{letter-spacing:61.938720px;}
.ls7{letter-spacing:72.864000px;}
.ls9{letter-spacing:79.236000px;}
.ls5{letter-spacing:87.753600px;}
.ls4{letter-spacing:87.804000px;}
.lsf{letter-spacing:101.844000px;}
.ls32{letter-spacing:110.109600px;}
.ls31{letter-spacing:110.160000px;}
.ls3{letter-spacing:123.429600px;}
.ls2{letter-spacing:123.480000px;}
.lse{letter-spacing:127.713600px;}
.lsa{letter-spacing:127.764000px;}
.lsb{letter-spacing:131.796000px;}
.ls69{letter-spacing:894.864480px;}
.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:-85.860205px;}
.ws4f{word-spacing:-39.848232px;}
.ws64{word-spacing:-39.528000px;}
.ws2{word-spacing:-30.024000px;}
.ws18{word-spacing:-27.521280px;}
.ws15{word-spacing:-27.377280px;}
.ws16{word-spacing:-27.359280px;}
.ws1f{word-spacing:-27.357312px;}
.ws59{word-spacing:-27.133080px;}
.ws1e{word-spacing:-27.104112px;}
.ws25{word-spacing:-26.970912px;}
.ws17{word-spacing:-26.962680px;}
.ws19{word-spacing:-26.829480px;}
.ws1b{word-spacing:-26.802480px;}
.ws3f{word-spacing:-26.746680px;}
.ws5c{word-spacing:-26.661312px;}
.ws13{word-spacing:-26.658480px;}
.ws10{word-spacing:-26.639880px;}
.ws20{word-spacing:-26.639712px;}
.ws14{word-spacing:-26.621280px;}
.ws21{word-spacing:-26.618712px;}
.wsf{word-spacing:-26.602680px;}
.ws1d{word-spacing:-26.413080px;}
.ws3d{word-spacing:-26.384112px;}
.ws3c{word-spacing:-26.242680px;}
.ws30{word-spacing:-25.937280px;}
.ws9{word-spacing:-23.437320px;}
.ws4{word-spacing:-23.418720px;}
.ws63{word-spacing:-20.664000px;}
.ws4b{word-spacing:-20.448000px;}
.ws52{word-spacing:-20.408232px;}
.wse{word-spacing:-20.304000px;}
.ws67{word-spacing:-20.268000px;}
.ws26{word-spacing:-20.264232px;}
.ws4a{word-spacing:-20.232000px;}
.ws54{word-spacing:-20.176032px;}
.wsb{word-spacing:-20.160000px;}
.ws66{word-spacing:-20.088000px;}
.ws49{word-spacing:-20.056032px;}
.ws4c{word-spacing:-20.016000px;}
.ws65{word-spacing:-19.944000px;}
.ws53{word-spacing:-19.895832px;}
.wsc{word-spacing:-19.880232px;}
.ws50{word-spacing:-19.872000px;}
.ws51{word-spacing:-19.800000px;}
.ws4e{word-spacing:-19.728000px;}
.wsa{word-spacing:-19.584000px;}
.wsd{word-spacing:-19.544232px;}
.ws56{word-spacing:-19.440000px;}
.ws55{word-spacing:-19.152000px;}
.ws6{word-spacing:-16.653312px;}
.ws5d{word-spacing:-16.650480px;}
.ws5{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.559880px;}
.ws22{word-spacing:-16.506480px;}
.ws24{word-spacing:-16.466712px;}
.ws23{word-spacing:-16.306680px;}
.ws8e{word-spacing:-5.208000px;}
.ws6f{word-spacing:-3.744000px;}
.ws87{word-spacing:-3.336000px;}
.ws88{word-spacing:-2.772000px;}
.ws8f{word-spacing:-2.568000px;}
.ws72{word-spacing:-2.166000px;}
.ws8d{word-spacing:-2.160000px;}
.ws74{word-spacing:-2.088000px;}
.ws78{word-spacing:-1.974000px;}
.ws83{word-spacing:-1.944000px;}
.ws6c{word-spacing:-1.896000px;}
.ws7a{word-spacing:-1.740000px;}
.ws4d{word-spacing:-1.635383px;}
.ws90{word-spacing:-1.560000px;}
.ws6e{word-spacing:-1.512000px;}
.ws76{word-spacing:-1.470000px;}
.ws82{word-spacing:-1.440000px;}
.ws73{word-spacing:-1.296000px;}
.ws70{word-spacing:-1.176000px;}
.ws8b{word-spacing:-1.092000px;}
.ws86{word-spacing:-1.086000px;}
.ws7e{word-spacing:-1.080000px;}
.ws84{word-spacing:-0.876000px;}
.ws75{word-spacing:-0.870000px;}
.ws8c{word-spacing:-0.744000px;}
.ws91{word-spacing:-0.582000px;}
.ws80{word-spacing:-0.504000px;}
.ws6a{word-spacing:-0.456000px;}
.ws89{word-spacing:-0.432000px;}
.ws5a{word-spacing:-0.360480px;}
.ws81{word-spacing:-0.360000px;}
.ws6b{word-spacing:-0.312000px;}
.ws92{word-spacing:-0.288000px;}
.ws77{word-spacing:-0.252000px;}
.ws79{word-spacing:-0.240000px;}
.ws62{word-spacing:-0.230425px;}
.ws1{word-spacing:-0.228000px;}
.ws8a{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.086059px;}
.ws0{word-spacing:0.000000px;}
.ws85{word-spacing:0.036000px;}
.ws7f{word-spacing:0.192000px;}
.ws71{word-spacing:0.264000px;}
.ws69{word-spacing:0.348000px;}
.ws7b{word-spacing:0.384000px;}
.ws6d{word-spacing:0.468000px;}
.ws2e{word-spacing:0.813240px;}
.ws68{word-spacing:1.008000px;}
.ws7c{word-spacing:1.200000px;}
.ws2d{word-spacing:1.786272px;}
.ws7d{word-spacing:1.968000px;}
.ws47{word-spacing:4.583880px;}
.ws44{word-spacing:4.587792px;}
.ws48{word-spacing:4.680816px;}
.ws45{word-spacing:5.022240px;}
.ws46{word-spacing:5.059080px;}
.ws1c{word-spacing:13.339440px;}
.ws5b{word-spacing:13.993680px;}
.ws3{word-spacing:14.436720px;}
.ws3e{word-spacing:14.930040px;}
.ws2c{word-spacing:19.422000px;}
.ws2b{word-spacing:19.897728px;}
.ws42{word-spacing:20.142240px;}
.ws40{word-spacing:20.160000px;}
.ws41{word-spacing:20.398848px;}
.ws43{word-spacing:21.330384px;}
.ws28{word-spacing:21.846240px;}
.ws1a{word-spacing:22.110768px;}
.ws29{word-spacing:22.283280px;}
.ws2a{word-spacing:22.558848px;}
.ws27{word-spacing:22.699320px;}
.ws58{word-spacing:22.867416px;}
.ws3b{word-spacing:25.939080px;}
.ws35{word-spacing:26.082480px;}
.ws39{word-spacing:26.358480px;}
.ws33{word-spacing:26.622240px;}
.ws36{word-spacing:26.659080px;}
.ws38{word-spacing:26.796240px;}
.ws34{word-spacing:26.881104px;}
.ws32{word-spacing:26.970144px;}
.ws31{word-spacing:27.019440px;}
.ws37{word-spacing:27.342000px;}
.ws3a{word-spacing:27.517007px;}
.ws12{word-spacing:31.263216px;}
.ws11{word-spacing:31.724496px;}
.ws2f{word-spacing:34.554480px;}
.ws57{word-spacing:55.403280px;}
.ws8{word-spacing:68.436720px;}
.ws5f{word-spacing:685.628878px;}
.ws5e{word-spacing:788.455978px;}
._33{margin-left:-3765.372000px;}
._32{margin-left:-2178.600000px;}
._3f{margin-left:-629.165444px;}
._3a{margin-left:-500.943627px;}
._3e{margin-left:-487.142968px;}
._3c{margin-left:-438.597394px;}
._38{margin-left:-341.319965px;}
._3b{margin-left:-334.979916px;}
._3d{margin-left:-295.622469px;}
._39{margin-left:-257.326164px;}
._16{margin-left:-13.988400px;}
._2d{margin-left:-12.582000px;}
._2c{margin-left:-11.362704px;}
._2b{margin-left:-9.948356px;}
._f{margin-left:-7.970004px;}
._7{margin-left:-6.919826px;}
._6{margin-left:-4.911036px;}
._10{margin-left:-3.662257px;}
._0{margin-left:-2.304000px;}
._2{margin-left:-1.152000px;}
._4{width:1.152000px;}
._3{width:2.232000px;}
._e{width:3.288024px;}
._1{width:4.680000px;}
._d{width:5.802048px;}
._1a{width:7.422048px;}
._8{width:8.519976px;}
._a{width:10.344024px;}
._c{width:11.442024px;}
._b{width:13.217976px;}
._29{width:14.266800px;}
._31{width:15.302329px;}
._1f{width:16.321872px;}
._9{width:17.982000px;}
._22{width:19.851983px;}
._19{width:21.312000px;}
._18{width:22.344000px;}
._2f{width:24.415248px;}
._24{width:28.960693px;}
._1c{width:30.572497px;}
._1e{width:32.020772px;}
._34{width:33.691200px;}
._1d{width:34.837680px;}
._23{width:36.197280px;}
._26{width:38.072352px;}
._1b{width:39.266796px;}
._35{width:40.925520px;}
._44{width:42.024000px;}
._45{width:43.188000px;}
._2a{width:48.180411px;}
._15{width:49.573680px;}
._27{width:54.823536px;}
._28{width:57.004320px;}
._25{width:61.616160px;}
._36{width:85.584240px;}
._37{width:88.041360px;}
._21{width:92.883552px;}
._42{width:118.713715px;}
._2e{width:143.496000px;}
._41{width:154.778578px;}
._43{width:189.318081px;}
._30{width:192.343968px;}
._20{width:195.890688px;}
._40{width:198.825705px;}
._13{width:227.471137px;}
._12{width:348.954480px;}
._14{width:370.144226px;}
._11{width:408.938796px;}
._17{width:410.568000px;}
._5{width:493.440000px;}
.fc4{color:rgb(210,160,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:23.760000px;}
.fse{font-size:23.904000px;}
.fs17{font-size:54.254445px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fs12{font-size:79.920000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:84.384000px;}
.fs16{font-size:86.058775px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs15{font-size:108.205375px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs13{font-size:132.677831px;}
.fs11{font-size:144.000000px;}
.fsd{font-size:144.144000px;}
.fs14{font-size:156.393817px;}
.fs9{font-size:167.760000px;}
.fs10{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.y155{bottom:5.378673px;}
.y14d{bottom:7.851608px;}
.y8{bottom:12.636000px;}
.ya{bottom:14.508000px;}
.y7{bottom:30.672000px;}
.y9{bottom:32.544000px;}
.y154{bottom:36.995919px;}
.y14f{bottom:38.165004px;}
.y14e{bottom:62.417427px;}
.y14b{bottom:67.056977px;}
.y153{bottom:68.332539px;}
.y101{bottom:69.228000px;}
.y108{bottom:70.596000px;}
.ya1{bottom:72.432000px;}
.y9c{bottom:74.340000px;}
.ya9{bottom:76.752000px;}
.y13a{bottom:77.040000px;}
.y11d{bottom:78.984000px;}
.yee{bottom:80.172000px;}
.y8a{bottom:81.864000px;}
.y110{bottom:82.260000px;}
.y42{bottom:83.376000px;}
.y141{bottom:83.916000px;}
.y120{bottom:85.644000px;}
.y6{bottom:86.040000px;}
.y15f{bottom:86.076000px;}
.yd0{bottom:86.544000px;}
.y134{bottom:89.388000px;}
.y150{bottom:91.317754px;}
.ya3{bottom:93.240000px;}
.yc3{bottom:93.780000px;}
.ye8{bottom:95.112000px;}
.ya6{bottom:95.436000px;}
.y7b{bottom:95.472000px;}
.y152{bottom:99.715929px;}
.y22{bottom:100.006500px;}
.yf2{bottom:100.260000px;}
.yd2{bottom:100.800000px;}
.y12c{bottom:102.852000px;}
.y89{bottom:103.500000px;}
.y168{bottom:104.076000px;}
.y11f{bottom:105.624000px;}
.y139{bottom:105.840000px;}
.y15e{bottom:107.676000px;}
.y9b{bottom:108.900000px;}
.yba{bottom:109.368000px;}
.y161{bottom:110.016000px;}
.y41{bottom:110.412000px;}
.ycf{bottom:112.500000px;}
.y140{bottom:112.716000px;}
.y2d{bottom:116.388000px;}
.ye7{bottom:116.712000px;}
.yaa{bottom:117.576000px;}
.y69{bottom:117.792000px;}
.y133{bottom:118.224000px;}
.ya2{bottom:118.908000px;}
.y5{bottom:119.736000px;}
.y7a{bottom:121.428000px;}
.y21{bottom:123.765000px;}
.y88{bottom:125.100000px;}
.y167{bottom:125.676000px;}
.y15d{bottom:129.276000px;}
.y151{bottom:131.333175px;}
.y160{bottom:131.616000px;}
.y12b{bottom:131.652000px;}
.y147{bottom:132.732000px;}
.y100{bottom:133.236000px;}
.y125{bottom:133.920000px;}
.yce{bottom:134.100000px;}
.y138{bottom:134.640000px;}
.yf4{bottom:135.720000px;}
.y40{bottom:137.412000px;}
.ye6{bottom:138.312000px;}
.yd4{bottom:139.464000px;}
.y13f{bottom:141.552000px;}
.y9a{bottom:143.460000px;}
.yd1{bottom:144.000000px;}
.y10a{bottom:144.612000px;}
.yd6{bottom:145.584000px;}
.yc2{bottom:145.656000px;}
.yb7{bottom:145.764000px;}
.ydb{bottom:145.944000px;}
.y132{bottom:147.024000px;}
.ycd{bottom:147.060000px;}
.y166{bottom:147.276000px;}
.y79{bottom:147.348000px;}
.y20{bottom:147.523500px;}
.y15c{bottom:150.915000px;}
.y68{bottom:155.625000px;}
.y53{bottom:157.965000px;}
.ye5{bottom:159.915000px;}
.y12a{bottom:160.455000px;}
.y17c{bottom:161.131500px;}
.ya4{bottom:162.435000px;}
.y124{bottom:162.720000px;}
.y137{bottom:163.440000px;}
.y2c{bottom:165.030000px;}
.y3f{bottom:167.115000px;}
.yff{bottom:167.790000px;}
.y165{bottom:168.870000px;}
.y13e{bottom:170.355000px;}
.y1f{bottom:171.282000px;}
.yc1{bottom:171.570000px;}
.yb6{bottom:171.690000px;}
.y15b{bottom:172.515000px;}
.ycc{bottom:172.980000px;}
.y78{bottom:173.265000px;}
.y131{bottom:175.830000px;}
.y99{bottom:178.020000px;}
.ye4{bottom:181.515000px;}
.y17b{bottom:182.679000px;}
.y87{bottom:184.500000px;}
.y52{bottom:184.965000px;}
.y123{bottom:191.520000px;}
.y136{bottom:192.270000px;}
.y67{bottom:193.425000px;}
.y1e{bottom:195.040500px;}
.yc0{bottom:197.490000px;}
.yb5{bottom:197.610000px;}
.ycb{bottom:198.900000px;}
.y13d{bottom:199.155000px;}
.y77{bottom:201.345000px;}
.y3e{bottom:202.215000px;}
.yfe{bottom:202.395000px;}
.ye3{bottom:203.115000px;}
.yed{bottom:203.790000px;}
.y17a{bottom:204.331500px;}
.y130{bottom:204.630000px;}
.y51{bottom:212.010000px;}
.y164{bottom:212.115000px;}
.y98{bottom:212.610000px;}
.y2b{bottom:213.630000px;}
.y1d{bottom:218.799000px;}
.y86{bottom:219.060000px;}
.y122{bottom:220.320000px;}
.y4{bottom:220.890000px;}
.y135{bottom:221.070000px;}
.ybf{bottom:223.410000px;}
.yb4{bottom:223.530000px;}
.ye2{bottom:224.745000px;}
.yca{bottom:224.820000px;}
.y179{bottom:225.931500px;}
.y3d{bottom:229.215000px;}
.y66{bottom:231.225000px;}
.y146{bottom:231.405000px;}
.y12f{bottom:233.430000px;}
.y103{bottom:235.770000px;}
.y102{bottom:236.880000px;}
.yfd{bottom:236.955000px;}
.y50{bottom:241.710000px;}
.y1c{bottom:242.557500px;}
.ye1{bottom:246.345000px;}
.yc9{bottom:246.450000px;}
.y97{bottom:247.170000px;}
.y10e{bottom:247.320000px;}
.y121{bottom:249.120000px;}
.ybe{bottom:249.330000px;}
.yb3{bottom:249.450000px;}
.y14c{bottom:253.500000px;}
.y85{bottom:253.650000px;}
.y14a{bottom:253.694338px;}
.y163{bottom:255.315000px;}
.y3c{bottom:256.245000px;}
.yc8{bottom:259.410000px;}
.y2a{bottom:262.230000px;}
.y12e{bottom:262.260000px;}
.y1b{bottom:266.316000px;}
.ye0{bottom:267.945000px;}
.y76{bottom:268.305000px;}
.y65{bottom:270.465000px;}
.yfc{bottom:271.515000px;}
.ybd{bottom:275.295000px;}
.y162{bottom:276.915000px;}
.yda{bottom:282.780000px;}
.y3b{bottom:283.245000px;}
.yc7{bottom:285.330000px;}
.y16d{bottom:286.350000px;}
.y84{bottom:288.210000px;}
.ydf{bottom:289.545000px;}
.y1a{bottom:290.074500px;}
.y178{bottom:290.776500px;}
.y12d{bottom:291.060000px;}
.ya0{bottom:293.475000px;}
.y75{bottom:296.430000px;}
.yb2{bottom:301.320000px;}
.y10d{bottom:305.280000px;}
.yfb{bottom:306.075000px;}
.y29{bottom:310.860000px;}
.yde{bottom:311.145000px;}
.yc6{bottom:311.250000px;}
.y64{bottom:312.270000px;}
.y177{bottom:312.376500px;}
.y3a{bottom:312.945000px;}
.y19{bottom:313.833000px;}
.y4f{bottom:314.610000px;}
.y96{bottom:316.290000px;}
.y83{bottom:322.770000px;}
.ya7{bottom:324.030000px;}
.ybc{bottom:327.135000px;}
.yb1{bottom:327.240000px;}
.y74{bottom:328.830000px;}
.yc5{bottom:337.170000px;}
.y18{bottom:337.591500px;}
.yfa{bottom:340.635000px;}
.y4e{bottom:341.610000px;}
.yd9{bottom:343.290000px;}
.y39{bottom:348.045000px;}
.y63{bottom:350.070000px;}
.y95{bottom:350.850000px;}
.ybb{bottom:353.055000px;}
.yb0{bottom:353.160000px;}
.y176{bottom:354.856500px;}
.y16c{bottom:356.010000px;}
.y73{bottom:356.910000px;}
.y82{bottom:357.330000px;}
.y3{bottom:357.735000px;}
.y5b{bottom:359.385000px;}
.y28{bottom:359.460000px;}
.y17{bottom:361.350000px;}
.yc4{bottom:363.090000px;}
.yec{bottom:365.370000px;}
.y4d{bottom:368.640000px;}
.y145{bottom:369.360000px;}
.y175{bottom:373.576500px;}
.y38{bottom:375.045000px;}
.yf9{bottom:375.225000px;}
.y104{bottom:377.535000px;}
.yd5{bottom:382.035000px;}
.y16{bottom:385.108500px;}
.y94{bottom:385.455000px;}
.y62{bottom:387.870000px;}
.y72{bottom:389.310000px;}
.y9f{bottom:391.935000px;}
.y4c{bottom:395.640000px;}
.y5a{bottom:397.185000px;}
.yd8{bottom:403.770000px;}
.y37{bottom:404.745000px;}
.y27{bottom:408.060000px;}
.y15{bottom:408.867000px;}
.yf8{bottom:409.785000px;}
.y149{bottom:414.510000px;}
.yaf{bottom:415.800000px;}
.y174{bottom:416.806500px;}
.y71{bottom:417.390000px;}
.y118{bottom:419.325000px;}
.y93{bottom:420.015000px;}
.y10c{bottom:420.870000px;}
.y4b{bottom:425.340000px;}
.y16b{bottom:425.700000px;}
.y144{bottom:425.730000px;}
.yeb{bottom:425.850000px;}
.y81{bottom:426.495000px;}
.y61{bottom:427.110000px;}
.y106{bottom:429.555000px;}
.y14{bottom:432.625500px;}
.y59{bottom:434.985000px;}
.y117{bottom:437.325000px;}
.ya5{bottom:438.330000px;}
.y173{bottom:438.406500px;}
.y36{bottom:439.890000px;}
.yf7{bottom:444.345000px;}
.y10f{bottom:446.430000px;}
.y70{bottom:449.820000px;}
.yae{bottom:450.360000px;}
.y92{bottom:454.575000px;}
.y116{bottom:455.325000px;}
.y2e{bottom:456.330000px;}
.y13{bottom:456.384000px;}
.y26{bottom:456.660000px;}
.y2{bottom:456.990000px;}
.y172{bottom:460.006500px;}
.y4a{bottom:460.440000px;}
.y80{bottom:461.055000px;}
.y35{bottom:466.890000px;}
.y60{bottom:468.900000px;}
.y148{bottom:470.730000px;}
.y58{bottom:472.785000px;}
.y115{bottom:473.370000px;}
.y6f{bottom:477.900000px;}
.yf6{bottom:478.905000px;}
.y12{bottom:480.142500px;}
.y143{bottom:482.250000px;}
.yad{bottom:484.950000px;}
.yea{bottom:486.360000px;}
.y49{bottom:487.440000px;}
.y109{bottom:493.710000px;}
.y34{bottom:493.890000px;}
.y7f{bottom:495.615000px;}
.ye9{bottom:496.110000px;}
.y129{bottom:499.680000px;}
.y11e{bottom:501.150000px;}
.y11c{bottom:501.195000px;}
.y11{bottom:503.901000px;}
.y25{bottom:505.290000px;}
.y5f{bottom:506.700000px;}
.y6e{bottom:510.300000px;}
.y57{bottom:510.585000px;}
.y10b{bottom:512.850000px;}
.yf5{bottom:513.510000px;}
.y48{bottom:514.440000px;}
.y91{bottom:521.565000px;}
.y114{bottom:522.150000px;}
.y33{bottom:523.590000px;}
.yd7{bottom:524.775000px;}
.y171{bottom:524.806500px;}
.y107{bottom:525.210000px;}
.y10{bottom:527.659500px;}
.y128{bottom:528.480000px;}
.y11b{bottom:529.995000px;}
.y7e{bottom:530.175000px;}
.y9e{bottom:530.205000px;}
.y6d{bottom:538.380000px;}
.y142{bottom:538.635000px;}
.y47{bottom:541.470000px;}
.y5e{bottom:544.500000px;}
.y170{bottom:546.421500px;}
.y90{bottom:547.485000px;}
.y56{bottom:548.430000px;}
.y113{bottom:550.950000px;}
.yf{bottom:551.418000px;}
.y24{bottom:553.890000px;}
.yac{bottom:554.070000px;}
.y127{bottom:557.280000px;}
.ya8{bottom:557.970000px;}
.y32{bottom:558.690000px;}
.y11a{bottom:558.795000px;}
.y7d{bottom:564.765000px;}
.y16f{bottom:567.997500px;}
.y46{bottom:568.470000px;}
.y6c{bottom:570.780000px;}
.y1{bottom:571.755000px;}
.ydd{bottom:572.835000px;}
.y8f{bottom:573.405000px;}
.y15a{bottom:573.735000px;}
.ye{bottom:575.176500px;}
.yd3{bottom:578.775000px;}
.y112{bottom:579.750000px;}
.y5d{bottom:583.740000px;}
.y31{bottom:585.720000px;}
.y126{bottom:586.110000px;}
.y55{bottom:586.230000px;}
.y119{bottom:587.595000px;}
.y16a{bottom:588.600000px;}
.y16e{bottom:589.650000px;}
.y45{bottom:595.470000px;}
.yb9{bottom:597.570000px;}
.y6b{bottom:598.890000px;}
.yd{bottom:598.935000px;}
.y8e{bottom:599.325000px;}
.y159{bottom:599.655000px;}
.y13c{bottom:601.815000px;}
.y169{bottom:605.625000px;}
.y111{bottom:608.550000px;}
.y105{bottom:609.630000px;}
.y30{bottom:612.720000px;}
.ydc{bottom:616.035000px;}
.yf0{bottom:617.580000px;}
.y23{bottom:617.730000px;}
.y13b{bottom:619.815000px;}
.y54{bottom:624.030000px;}
.y44{bottom:625.170000px;}
.y8d{bottom:625.245000px;}
.y158{bottom:625.605000px;}
.yb8{bottom:626.370000px;}
.y5c{bottom:626.970000px;}
.yab{bottom:627.555000px;}
.yc{bottom:631.515000px;}
.y6a{bottom:633.450000px;}
.y7c{bottom:633.885000px;}
.y2f{bottom:642.420000px;}
.yf3{bottom:646.305000px;}
.yf1{bottom:647.670000px;}
.y8c{bottom:651.165000px;}
.y157{bottom:651.525000px;}
.yef{bottom:657.510000px;}
.y9d{bottom:668.445000px;}
.y43{bottom:677.340000px;}
.y156{bottom:677.445000px;}
.y8b{bottom:679.290000px;}
.yb{bottom:685.050000px;}
.h23{height:17.321133px;}
.h22{height:17.426109px;}
.h8{height:43.565273px;}
.h7{height:43.670250px;}
.h1c{height:44.090508px;}
.h28{height:52.260820px;}
.ha{height:52.417969px;}
.h17{height:52.488281px;}
.h18{height:52.593258px;}
.h20{height:53.121094px;}
.h10{height:53.603086px;}
.h11{height:53.732250px;}
.h4{height:61.329023px;}
.h6{height:61.411289px;}
.h14{height:61.516266px;}
.h1{height:62.964844px;}
.h21{height:63.090773px;}
.h1d{height:64.582031px;}
.h1e{height:64.711195px;}
.h1a{height:69.809414px;}
.h19{height:69.914391px;}
.hf{height:73.668867px;}
.h5{height:73.794797px;}
.h13{height:75.560977px;}
.h3{height:78.732422px;}
.h12{height:83.743242px;}
.h1b{height:83.869172px;}
.h30{height:85.596546px;}
.h15{height:85.894102px;}
.h16{height:86.023266px;}
.h2d{height:89.551708px;}
.h29{height:90.356133px;}
.h2a{height:90.464344px;}
.h2b{height:91.934071px;}
.h2{height:94.447266px;}
.hc{height:96.873047px;}
.hd{height:97.002211px;}
.h9{height:105.151289px;}
.hb{height:105.277219px;}
.h2e{height:108.589847px;}
.h25{height:122.297695px;}
.h26{height:122.402672px;}
.h27{height:125.929688px;}
.h1f{height:126.055617px;}
.h2c{height:131.965206px;}
.he{height:146.708086px;}
.h24{height:146.834016px;}
.h2f{height:147.469195px;}
.h0{height:810.000000px;}
.w2{width:387.872501px;}
.w1{width:394.096262px;}
.w3{width:723.817892px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4f{left:28.512000px;}
.x20{left:37.080000px;}
.x1f{left:50.076000px;}
.x21{left:52.164000px;}
.x12{left:54.684000px;}
.x5{left:62.172000px;}
.x13{left:63.252000px;}
.x47{left:70.452000px;}
.x1{left:72.504000px;}
.x5b{left:73.656000px;}
.x2{left:75.528000px;}
.x58{left:77.364000px;}
.x1d{left:78.624000px;}
.x2b{left:79.884000px;}
.x10{left:81.432000px;}
.x30{left:85.104000px;}
.x24{left:88.056000px;}
.x57{left:91.296000px;}
.x1b{left:94.068000px;}
.x9{left:108.324000px;}
.x4a{left:114.912000px;}
.xa{left:135.504000px;}
.x26{left:146.592000px;}
.x33{left:157.350000px;}
.xd{left:159.810000px;}
.xb{left:162.330000px;}
.x38{left:168.330000px;}
.xc{left:190.005000px;}
.x14{left:219.240000px;}
.x17{left:222.585000px;}
.x8{left:225.285000px;}
.x27{left:236.085000px;}
.xf{left:239.865000px;}
.x52{left:242.070000px;}
.x28{left:247.965000px;}
.x2c{left:250.995000px;}
.x51{left:255.060000px;}
.x22{left:283.605000px;}
.x25{left:293.190000px;}
.x55{left:300.253237px;}
.x23{left:325.725000px;}
.x3e{left:328.785000px;}
.x44{left:334.875000px;}
.x54{left:337.808151px;}
.x53{left:345.479766px;}
.x11{left:354.345000px;}
.x4{left:365.370000px;}
.x29{left:374.865000px;}
.x15{left:376.305000px;}
.x3{left:381.570000px;}
.x4c{left:386.250000px;}
.x2d{left:397.365000px;}
.x4e{left:399.960000px;}
.x5a{left:407.340000px;}
.x40{left:410.010000px;}
.x2f{left:424.005000px;}
.x41{left:427.110000px;}
.x59{left:434.880000px;}
.x43{left:436.110000px;}
.x3f{left:451.050000px;}
.x2e{left:466.710000px;}
.x4d{left:485.250000px;}
.x1c{left:486.390000px;}
.x42{left:503.070000px;}
.x4b{left:507.390000px;}
.x18{left:521.310000px;}
.x31{left:524.880000px;}
.x19{left:544.140000px;}
.x2a{left:550.905000px;}
.x3d{left:582.870000px;}
.x3c{left:621.105000px;}
.x45{left:631.515000px;}
.x48{left:650.850000px;}
.x16{left:669.780000px;}
.x36{left:696.030000px;}
.x7{left:697.860000px;}
.x46{left:705.675000px;}
.x50{left:712.980000px;}
.x56{left:723.495000px;}
.x37{left:768.060000px;}
.x34{left:786.780000px;}
.x1e{left:792.795000px;}
.x1a{left:816.375000px;}
.x32{left:824.835000px;}
.x35{left:826.740000px;}
.x3a{left:829.440000px;}
.xe{left:851.970000px;}
.x6{left:860.250000px;}
.x49{left:879.765000px;}
.x3b{left:897.915000px;}
.x39{left:905.325000px;}
@media print{
.v2{vertical-align:-48.000000pt;}
.v3{vertical-align:-34.836004pt;}
.v1{vertical-align:-26.240000pt;}
.v5{vertical-align:-10.809315pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:34.836004pt;}
.ls79{letter-spacing:-6.325333pt;}
.ls75{letter-spacing:-5.813333pt;}
.ls1{letter-spacing:-4.618667pt;}
.ls77{letter-spacing:-4.533333pt;}
.ls78{letter-spacing:-3.978667pt;}
.ls51{letter-spacing:-0.768000pt;}
.ls6d{letter-spacing:-0.625943pt;}
.ls3c{letter-spacing:-0.608000pt;}
.ls52{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.454933pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls3d{letter-spacing:-0.336533pt;}
.ls30{letter-spacing:-0.272533pt;}
.ls44{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.246400pt;}
.ls65{letter-spacing:-0.232533pt;}
.lsc{letter-spacing:-0.210133pt;}
.ls46{letter-spacing:-0.198933pt;}
.ls48{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.185067pt;}
.ls29{letter-spacing:-0.168533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.156267pt;}
.ls4a{letter-spacing:-0.142400pt;}
.ls53{letter-spacing:-0.137600pt;}
.ls47{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.094933pt;}
.ls72{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.047467pt;}
.ls2e{letter-spacing:-0.037867pt;}
.ls6{letter-spacing:-0.033067pt;}
.ls2d{letter-spacing:-0.019200pt;}
.ls23{letter-spacing:-0.016533pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016533pt;}
.ls1b{letter-spacing:0.016640pt;}
.ls18{letter-spacing:0.033067pt;}
.ls3b{letter-spacing:0.033280pt;}
.ls68{letter-spacing:0.047360pt;}
.ls73{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.106667pt;}
.ls3f{letter-spacing:0.111467pt;}
.ls13{letter-spacing:0.128000pt;}
.ls54{letter-spacing:0.134933pt;}
.ls66{letter-spacing:0.154027pt;}
.ls6e{letter-spacing:0.156596pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls28{letter-spacing:0.185067pt;}
.ls76{letter-spacing:0.186667pt;}
.ls41{letter-spacing:0.188416pt;}
.ls42{letter-spacing:0.192000pt;}
.ls6c{letter-spacing:0.204545pt;}
.ls74{letter-spacing:0.224000pt;}
.ls6b{letter-spacing:0.229490pt;}
.ls22{letter-spacing:0.231040pt;}
.ls55{letter-spacing:0.252373pt;}
.ls10{letter-spacing:0.256000pt;}
.ls67{letter-spacing:0.272640pt;}
.ls36{letter-spacing:0.275200pt;}
.ls26{letter-spacing:0.303467pt;}
.ls49{letter-spacing:0.313067pt;}
.ls40{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.345898pt;}
.ls43{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.393600pt;}
.ls5b{letter-spacing:0.454933pt;}
.ls6f{letter-spacing:0.576000pt;}
.ls2c{letter-spacing:0.618667pt;}
.ls25{letter-spacing:0.656000pt;}
.ls1a{letter-spacing:0.656640pt;}
.ls24{letter-spacing:0.672000pt;}
.ls71{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls19{letter-spacing:1.296640pt;}
.ls4c{letter-spacing:1.372416pt;}
.ls5d{letter-spacing:1.936640pt;}
.ls16{letter-spacing:2.043307pt;}
.ls4f{letter-spacing:2.688000pt;}
.ls4e{letter-spacing:3.328000pt;}
.ls3a{letter-spacing:3.856640pt;}
.ls50{letter-spacing:3.968000pt;}
.ls57{letter-spacing:6.416640pt;}
.ls58{letter-spacing:7.056640pt;}
.ls38{letter-spacing:7.661056pt;}
.ls45{letter-spacing:8.336640pt;}
.ls4d{letter-spacing:9.088000pt;}
.ls5a{letter-spacing:10.896640pt;}
.ls1f{letter-spacing:11.536640pt;}
.ls5e{letter-spacing:12.141056pt;}
.ls56{letter-spacing:13.456640pt;}
.ls63{letter-spacing:14.096640pt;}
.ls64{letter-spacing:14.203307pt;}
.ls21{letter-spacing:15.341056pt;}
.ls20{letter-spacing:15.981056pt;}
.ls5f{letter-spacing:17.296640pt;}
.ls59{letter-spacing:18.576640pt;}
.ls60{letter-spacing:19.216640pt;}
.ls1e{letter-spacing:19.856640pt;}
.ls37{letter-spacing:26.896640pt;}
.ls17{letter-spacing:27.536640pt;}
.ls1c{letter-spacing:28.176640pt;}
.ls5c{letter-spacing:30.096640pt;}
.ls35{letter-spacing:30.736640pt;}
.ls34{letter-spacing:31.376640pt;}
.ls39{letter-spacing:42.379947pt;}
.ls33{letter-spacing:44.193280pt;}
.ls70{letter-spacing:50.048000pt;}
.ls61{letter-spacing:54.416640pt;}
.ls62{letter-spacing:55.056640pt;}
.ls7{letter-spacing:64.768000pt;}
.ls9{letter-spacing:70.432000pt;}
.ls5{letter-spacing:78.003200pt;}
.ls4{letter-spacing:78.048000pt;}
.lsf{letter-spacing:90.528000pt;}
.ls32{letter-spacing:97.875200pt;}
.ls31{letter-spacing:97.920000pt;}
.ls3{letter-spacing:109.715200pt;}
.ls2{letter-spacing:109.760000pt;}
.lse{letter-spacing:113.523200pt;}
.lsa{letter-spacing:113.568000pt;}
.lsb{letter-spacing:117.152000pt;}
.ls69{letter-spacing:795.435093pt;}
.ws60{word-spacing:-76.320183pt;}
.ws4f{word-spacing:-35.420651pt;}
.ws64{word-spacing:-35.136000pt;}
.ws2{word-spacing:-26.688000pt;}
.ws18{word-spacing:-24.463360pt;}
.ws15{word-spacing:-24.335360pt;}
.ws16{word-spacing:-24.319360pt;}
.ws1f{word-spacing:-24.317611pt;}
.ws59{word-spacing:-24.118293pt;}
.ws1e{word-spacing:-24.092544pt;}
.ws25{word-spacing:-23.974144pt;}
.ws17{word-spacing:-23.966827pt;}
.ws19{word-spacing:-23.848427pt;}
.ws1b{word-spacing:-23.824427pt;}
.ws3f{word-spacing:-23.774827pt;}
.ws5c{word-spacing:-23.698944pt;}
.ws13{word-spacing:-23.696427pt;}
.ws10{word-spacing:-23.679893pt;}
.ws20{word-spacing:-23.679744pt;}
.ws14{word-spacing:-23.663360pt;}
.ws21{word-spacing:-23.661077pt;}
.wsf{word-spacing:-23.646827pt;}
.ws1d{word-spacing:-23.478293pt;}
.ws3d{word-spacing:-23.452544pt;}
.ws3c{word-spacing:-23.326827pt;}
.ws30{word-spacing:-23.055360pt;}
.ws9{word-spacing:-20.833173pt;}
.ws4{word-spacing:-20.816640pt;}
.ws63{word-spacing:-18.368000pt;}
.ws4b{word-spacing:-18.176000pt;}
.ws52{word-spacing:-18.140651pt;}
.wse{word-spacing:-18.048000pt;}
.ws67{word-spacing:-18.016000pt;}
.ws26{word-spacing:-18.012651pt;}
.ws4a{word-spacing:-17.984000pt;}
.ws54{word-spacing:-17.934251pt;}
.wsb{word-spacing:-17.920000pt;}
.ws66{word-spacing:-17.856000pt;}
.ws49{word-spacing:-17.827584pt;}
.ws4c{word-spacing:-17.792000pt;}
.ws65{word-spacing:-17.728000pt;}
.ws53{word-spacing:-17.685184pt;}
.wsc{word-spacing:-17.671317pt;}
.ws50{word-spacing:-17.664000pt;}
.ws51{word-spacing:-17.600000pt;}
.ws4e{word-spacing:-17.536000pt;}
.wsa{word-spacing:-17.408000pt;}
.wsd{word-spacing:-17.372651pt;}
.ws56{word-spacing:-17.280000pt;}
.ws55{word-spacing:-17.024000pt;}
.ws6{word-spacing:-14.802944pt;}
.ws5d{word-spacing:-14.800427pt;}
.ws5{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.719893pt;}
.ws22{word-spacing:-14.672427pt;}
.ws24{word-spacing:-14.637077pt;}
.ws23{word-spacing:-14.494827pt;}
.ws8e{word-spacing:-4.629333pt;}
.ws6f{word-spacing:-3.328000pt;}
.ws87{word-spacing:-2.965333pt;}
.ws88{word-spacing:-2.464000pt;}
.ws8f{word-spacing:-2.282667pt;}
.ws72{word-spacing:-1.925333pt;}
.ws8d{word-spacing:-1.920000pt;}
.ws74{word-spacing:-1.856000pt;}
.ws78{word-spacing:-1.754667pt;}
.ws83{word-spacing:-1.728000pt;}
.ws6c{word-spacing:-1.685333pt;}
.ws7a{word-spacing:-1.546667pt;}
.ws4d{word-spacing:-1.453674pt;}
.ws90{word-spacing:-1.386667pt;}
.ws6e{word-spacing:-1.344000pt;}
.ws76{word-spacing:-1.306667pt;}
.ws82{word-spacing:-1.280000pt;}
.ws73{word-spacing:-1.152000pt;}
.ws70{word-spacing:-1.045333pt;}
.ws8b{word-spacing:-0.970667pt;}
.ws86{word-spacing:-0.965333pt;}
.ws7e{word-spacing:-0.960000pt;}
.ws84{word-spacing:-0.778667pt;}
.ws75{word-spacing:-0.773333pt;}
.ws8c{word-spacing:-0.661333pt;}
.ws91{word-spacing:-0.517333pt;}
.ws80{word-spacing:-0.448000pt;}
.ws6a{word-spacing:-0.405333pt;}
.ws89{word-spacing:-0.384000pt;}
.ws5a{word-spacing:-0.320427pt;}
.ws81{word-spacing:-0.320000pt;}
.ws6b{word-spacing:-0.277333pt;}
.ws92{word-spacing:-0.256000pt;}
.ws77{word-spacing:-0.224000pt;}
.ws79{word-spacing:-0.213333pt;}
.ws62{word-spacing:-0.204823pt;}
.ws1{word-spacing:-0.202667pt;}
.ws8a{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.076497pt;}
.ws0{word-spacing:0.000000pt;}
.ws85{word-spacing:0.032000pt;}
.ws7f{word-spacing:0.170667pt;}
.ws71{word-spacing:0.234667pt;}
.ws69{word-spacing:0.309333pt;}
.ws7b{word-spacing:0.341333pt;}
.ws6d{word-spacing:0.416000pt;}
.ws2e{word-spacing:0.722880pt;}
.ws68{word-spacing:0.896000pt;}
.ws7c{word-spacing:1.066667pt;}
.ws2d{word-spacing:1.587797pt;}
.ws7d{word-spacing:1.749333pt;}
.ws47{word-spacing:4.074560pt;}
.ws44{word-spacing:4.078037pt;}
.ws48{word-spacing:4.160725pt;}
.ws45{word-spacing:4.464213pt;}
.ws46{word-spacing:4.496960pt;}
.ws1c{word-spacing:11.857280pt;}
.ws5b{word-spacing:12.438827pt;}
.ws3{word-spacing:12.832640pt;}
.ws3e{word-spacing:13.271147pt;}
.ws2c{word-spacing:17.264000pt;}
.ws2b{word-spacing:17.686870pt;}
.ws42{word-spacing:17.904213pt;}
.ws40{word-spacing:17.920000pt;}
.ws41{word-spacing:18.132310pt;}
.ws43{word-spacing:18.960342pt;}
.ws28{word-spacing:19.418880pt;}
.ws1a{word-spacing:19.654016pt;}
.ws29{word-spacing:19.807360pt;}
.ws2a{word-spacing:20.052310pt;}
.ws27{word-spacing:20.177173pt;}
.ws58{word-spacing:20.326592pt;}
.ws3b{word-spacing:23.056960pt;}
.ws35{word-spacing:23.184427pt;}
.ws39{word-spacing:23.429760pt;}
.ws33{word-spacing:23.664213pt;}
.ws36{word-spacing:23.696960pt;}
.ws38{word-spacing:23.818880pt;}
.ws34{word-spacing:23.894315pt;}
.ws32{word-spacing:23.973462pt;}
.ws31{word-spacing:24.017280pt;}
.ws37{word-spacing:24.304000pt;}
.ws3a{word-spacing:24.459562pt;}
.ws12{word-spacing:27.789525pt;}
.ws11{word-spacing:28.199552pt;}
.ws2f{word-spacing:30.715093pt;}
.ws57{word-spacing:49.247360pt;}
.ws8{word-spacing:60.832640pt;}
.ws5f{word-spacing:609.447891pt;}
.ws5e{word-spacing:700.849758pt;}
._33{margin-left:-3346.997333pt;}
._32{margin-left:-1936.533333pt;}
._3f{margin-left:-559.258172pt;}
._3a{margin-left:-445.283224pt;}
._3e{margin-left:-433.015971pt;}
._3c{margin-left:-389.864350pt;}
._38{margin-left:-303.395525pt;}
._3b{margin-left:-297.759926pt;}
._3d{margin-left:-262.775528pt;}
._39{margin-left:-228.734368pt;}
._16{margin-left:-12.434133pt;}
._2d{margin-left:-11.184000pt;}
._2c{margin-left:-10.100182pt;}
._2b{margin-left:-8.842983pt;}
._f{margin-left:-7.084448pt;}
._7{margin-left:-6.150956pt;}
._6{margin-left:-4.365365pt;}
._10{margin-left:-3.255340pt;}
._0{margin-left:-2.048000pt;}
._2{margin-left:-1.024000pt;}
._4{width:1.024000pt;}
._3{width:1.984000pt;}
._e{width:2.922688pt;}
._1{width:4.160000pt;}
._d{width:5.157376pt;}
._1a{width:6.597376pt;}
._8{width:7.573312pt;}
._a{width:9.194688pt;}
._c{width:10.170688pt;}
._b{width:11.749312pt;}
._29{width:12.681600pt;}
._31{width:13.602070pt;}
._1f{width:14.508331pt;}
._9{width:15.984000pt;}
._22{width:17.646207pt;}
._19{width:18.944000pt;}
._18{width:19.861333pt;}
._2f{width:21.702443pt;}
._24{width:25.742838pt;}
._1c{width:27.175553pt;}
._1e{width:28.462909pt;}
._34{width:29.947733pt;}
._1d{width:30.966827pt;}
._23{width:32.175360pt;}
._26{width:33.842091pt;}
._1b{width:34.903818pt;}
._35{width:36.378240pt;}
._44{width:37.354667pt;}
._45{width:38.389333pt;}
._2a{width:42.827032pt;}
._15{width:44.065493pt;}
._27{width:48.732032pt;}
._28{width:50.670507pt;}
._25{width:54.769920pt;}
._36{width:76.074880pt;}
._37{width:78.258987pt;}
._21{width:82.563157pt;}
._42{width:105.523303pt;}
._2e{width:127.552000pt;}
._41{width:137.580959pt;}
._43{width:168.282739pt;}
._30{width:170.972416pt;}
._20{width:174.125056pt;}
._40{width:176.733960pt;}
._13{width:202.196566pt;}
._12{width:310.181760pt;}
._14{width:329.017089pt;}
._11{width:363.501152pt;}
._17{width:364.949333pt;}
._5{width:438.613333pt;}
.fsf{font-size:21.120000pt;}
.fse{font-size:21.248000pt;}
.fs17{font-size:48.226174pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fs12{font-size:71.040000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:75.008000pt;}
.fs16{font-size:76.496689pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs15{font-size:96.182555pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs13{font-size:117.935850pt;}
.fs11{font-size:128.000000pt;}
.fsd{font-size:128.128000pt;}
.fs14{font-size:139.016726pt;}
.fs9{font-size:149.120000pt;}
.fs10{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.y155{bottom:4.781043pt;}
.y14d{bottom:6.979208pt;}
.y8{bottom:11.232000pt;}
.ya{bottom:12.896000pt;}
.y7{bottom:27.264000pt;}
.y9{bottom:28.928000pt;}
.y154{bottom:32.885262pt;}
.y14f{bottom:33.924448pt;}
.y14e{bottom:55.482157pt;}
.y14b{bottom:59.606202pt;}
.y153{bottom:60.740034pt;}
.y101{bottom:61.536000pt;}
.y108{bottom:62.752000pt;}
.ya1{bottom:64.384000pt;}
.y9c{bottom:66.080000pt;}
.ya9{bottom:68.224000pt;}
.y13a{bottom:68.480000pt;}
.y11d{bottom:70.208000pt;}
.yee{bottom:71.264000pt;}
.y8a{bottom:72.768000pt;}
.y110{bottom:73.120000pt;}
.y42{bottom:74.112000pt;}
.y141{bottom:74.592000pt;}
.y120{bottom:76.128000pt;}
.y6{bottom:76.480000pt;}
.y15f{bottom:76.512000pt;}
.yd0{bottom:76.928000pt;}
.y134{bottom:79.456000pt;}
.y150{bottom:81.171336pt;}
.ya3{bottom:82.880000pt;}
.yc3{bottom:83.360000pt;}
.ye8{bottom:84.544000pt;}
.ya6{bottom:84.832000pt;}
.y7b{bottom:84.864000pt;}
.y152{bottom:88.636381pt;}
.y22{bottom:88.894667pt;}
.yf2{bottom:89.120000pt;}
.yd2{bottom:89.600000pt;}
.y12c{bottom:91.424000pt;}
.y89{bottom:92.000000pt;}
.y168{bottom:92.512000pt;}
.y11f{bottom:93.888000pt;}
.y139{bottom:94.080000pt;}
.y15e{bottom:95.712000pt;}
.y9b{bottom:96.800000pt;}
.yba{bottom:97.216000pt;}
.y161{bottom:97.792000pt;}
.y41{bottom:98.144000pt;}
.ycf{bottom:100.000000pt;}
.y140{bottom:100.192000pt;}
.y2d{bottom:103.456000pt;}
.ye7{bottom:103.744000pt;}
.yaa{bottom:104.512000pt;}
.y69{bottom:104.704000pt;}
.y133{bottom:105.088000pt;}
.ya2{bottom:105.696000pt;}
.y5{bottom:106.432000pt;}
.y7a{bottom:107.936000pt;}
.y21{bottom:110.013333pt;}
.y88{bottom:111.200000pt;}
.y167{bottom:111.712000pt;}
.y15d{bottom:114.912000pt;}
.y151{bottom:116.740600pt;}
.y160{bottom:116.992000pt;}
.y12b{bottom:117.024000pt;}
.y147{bottom:117.984000pt;}
.y100{bottom:118.432000pt;}
.y125{bottom:119.040000pt;}
.yce{bottom:119.200000pt;}
.y138{bottom:119.680000pt;}
.yf4{bottom:120.640000pt;}
.y40{bottom:122.144000pt;}
.ye6{bottom:122.944000pt;}
.yd4{bottom:123.968000pt;}
.y13f{bottom:125.824000pt;}
.y9a{bottom:127.520000pt;}
.yd1{bottom:128.000000pt;}
.y10a{bottom:128.544000pt;}
.yd6{bottom:129.408000pt;}
.yc2{bottom:129.472000pt;}
.yb7{bottom:129.568000pt;}
.ydb{bottom:129.728000pt;}
.y132{bottom:130.688000pt;}
.ycd{bottom:130.720000pt;}
.y166{bottom:130.912000pt;}
.y79{bottom:130.976000pt;}
.y20{bottom:131.132000pt;}
.y15c{bottom:134.146667pt;}
.y68{bottom:138.333333pt;}
.y53{bottom:140.413333pt;}
.ye5{bottom:142.146667pt;}
.y12a{bottom:142.626667pt;}
.y17c{bottom:143.228000pt;}
.ya4{bottom:144.386667pt;}
.y124{bottom:144.640000pt;}
.y137{bottom:145.280000pt;}
.y2c{bottom:146.693333pt;}
.y3f{bottom:148.546667pt;}
.yff{bottom:149.146667pt;}
.y165{bottom:150.106667pt;}
.y13e{bottom:151.426667pt;}
.y1f{bottom:152.250667pt;}
.yc1{bottom:152.506667pt;}
.yb6{bottom:152.613333pt;}
.y15b{bottom:153.346667pt;}
.ycc{bottom:153.760000pt;}
.y78{bottom:154.013333pt;}
.y131{bottom:156.293333pt;}
.y99{bottom:158.240000pt;}
.ye4{bottom:161.346667pt;}
.y17b{bottom:162.381333pt;}
.y87{bottom:164.000000pt;}
.y52{bottom:164.413333pt;}
.y123{bottom:170.240000pt;}
.y136{bottom:170.906667pt;}
.y67{bottom:171.933333pt;}
.y1e{bottom:173.369333pt;}
.yc0{bottom:175.546667pt;}
.yb5{bottom:175.653333pt;}
.ycb{bottom:176.800000pt;}
.y13d{bottom:177.026667pt;}
.y77{bottom:178.973333pt;}
.y3e{bottom:179.746667pt;}
.yfe{bottom:179.906667pt;}
.ye3{bottom:180.546667pt;}
.yed{bottom:181.146667pt;}
.y17a{bottom:181.628000pt;}
.y130{bottom:181.893333pt;}
.y51{bottom:188.453333pt;}
.y164{bottom:188.546667pt;}
.y98{bottom:188.986667pt;}
.y2b{bottom:189.893333pt;}
.y1d{bottom:194.488000pt;}
.y86{bottom:194.720000pt;}
.y122{bottom:195.840000pt;}
.y4{bottom:196.346667pt;}
.y135{bottom:196.506667pt;}
.ybf{bottom:198.586667pt;}
.yb4{bottom:198.693333pt;}
.ye2{bottom:199.773333pt;}
.yca{bottom:199.840000pt;}
.y179{bottom:200.828000pt;}
.y3d{bottom:203.746667pt;}
.y66{bottom:205.533333pt;}
.y146{bottom:205.693333pt;}
.y12f{bottom:207.493333pt;}
.y103{bottom:209.573333pt;}
.y102{bottom:210.560000pt;}
.yfd{bottom:210.626667pt;}
.y50{bottom:214.853333pt;}
.y1c{bottom:215.606667pt;}
.ye1{bottom:218.973333pt;}
.yc9{bottom:219.066667pt;}
.y97{bottom:219.706667pt;}
.y10e{bottom:219.840000pt;}
.y121{bottom:221.440000pt;}
.ybe{bottom:221.626667pt;}
.yb3{bottom:221.733333pt;}
.y14c{bottom:225.333333pt;}
.y85{bottom:225.466667pt;}
.y14a{bottom:225.506078pt;}
.y163{bottom:226.946667pt;}
.y3c{bottom:227.773333pt;}
.yc8{bottom:230.586667pt;}
.y2a{bottom:233.093333pt;}
.y12e{bottom:233.120000pt;}
.y1b{bottom:236.725333pt;}
.ye0{bottom:238.173333pt;}
.y76{bottom:238.493333pt;}
.y65{bottom:240.413333pt;}
.yfc{bottom:241.346667pt;}
.ybd{bottom:244.706667pt;}
.y162{bottom:246.146667pt;}
.yda{bottom:251.360000pt;}
.y3b{bottom:251.773333pt;}
.yc7{bottom:253.626667pt;}
.y16d{bottom:254.533333pt;}
.y84{bottom:256.186667pt;}
.ydf{bottom:257.373333pt;}
.y1a{bottom:257.844000pt;}
.y178{bottom:258.468000pt;}
.y12d{bottom:258.720000pt;}
.ya0{bottom:260.866667pt;}
.y75{bottom:263.493333pt;}
.yb2{bottom:267.840000pt;}
.y10d{bottom:271.360000pt;}
.yfb{bottom:272.066667pt;}
.y29{bottom:276.320000pt;}
.yde{bottom:276.573333pt;}
.yc6{bottom:276.666667pt;}
.y64{bottom:277.573333pt;}
.y177{bottom:277.668000pt;}
.y3a{bottom:278.173333pt;}
.y19{bottom:278.962667pt;}
.y4f{bottom:279.653333pt;}
.y96{bottom:281.146667pt;}
.y83{bottom:286.906667pt;}
.ya7{bottom:288.026667pt;}
.ybc{bottom:290.786667pt;}
.yb1{bottom:290.880000pt;}
.y74{bottom:292.293333pt;}
.yc5{bottom:299.706667pt;}
.y18{bottom:300.081333pt;}
.yfa{bottom:302.786667pt;}
.y4e{bottom:303.653333pt;}
.yd9{bottom:305.146667pt;}
.y39{bottom:309.373333pt;}
.y63{bottom:311.173333pt;}
.y95{bottom:311.866667pt;}
.ybb{bottom:313.826667pt;}
.yb0{bottom:313.920000pt;}
.y176{bottom:315.428000pt;}
.y16c{bottom:316.453333pt;}
.y73{bottom:317.253333pt;}
.y82{bottom:317.626667pt;}
.y3{bottom:317.986667pt;}
.y5b{bottom:319.453333pt;}
.y28{bottom:319.520000pt;}
.y17{bottom:321.200000pt;}
.yc4{bottom:322.746667pt;}
.yec{bottom:324.773333pt;}
.y4d{bottom:327.680000pt;}
.y145{bottom:328.320000pt;}
.y175{bottom:332.068000pt;}
.y38{bottom:333.373333pt;}
.yf9{bottom:333.533333pt;}
.y104{bottom:335.586667pt;}
.yd5{bottom:339.586667pt;}
.y16{bottom:342.318667pt;}
.y94{bottom:342.626667pt;}
.y62{bottom:344.773333pt;}
.y72{bottom:346.053333pt;}
.y9f{bottom:348.386667pt;}
.y4c{bottom:351.680000pt;}
.y5a{bottom:353.053333pt;}
.yd8{bottom:358.906667pt;}
.y37{bottom:359.773333pt;}
.y27{bottom:362.720000pt;}
.y15{bottom:363.437333pt;}
.yf8{bottom:364.253333pt;}
.y149{bottom:368.453333pt;}
.yaf{bottom:369.600000pt;}
.y174{bottom:370.494667pt;}
.y71{bottom:371.013333pt;}
.y118{bottom:372.733333pt;}
.y93{bottom:373.346667pt;}
.y10c{bottom:374.106667pt;}
.y4b{bottom:378.080000pt;}
.y16b{bottom:378.400000pt;}
.y144{bottom:378.426667pt;}
.yeb{bottom:378.533333pt;}
.y81{bottom:379.106667pt;}
.y61{bottom:379.653333pt;}
.y106{bottom:381.826667pt;}
.y14{bottom:384.556000pt;}
.y59{bottom:386.653333pt;}
.y117{bottom:388.733333pt;}
.ya5{bottom:389.626667pt;}
.y173{bottom:389.694667pt;}
.y36{bottom:391.013333pt;}
.yf7{bottom:394.973333pt;}
.y10f{bottom:396.826667pt;}
.y70{bottom:399.840000pt;}
.yae{bottom:400.320000pt;}
.y92{bottom:404.066667pt;}
.y116{bottom:404.733333pt;}
.y2e{bottom:405.626667pt;}
.y13{bottom:405.674667pt;}
.y26{bottom:405.920000pt;}
.y2{bottom:406.213333pt;}
.y172{bottom:408.894667pt;}
.y4a{bottom:409.280000pt;}
.y80{bottom:409.826667pt;}
.y35{bottom:415.013333pt;}
.y60{bottom:416.800000pt;}
.y148{bottom:418.426667pt;}
.y58{bottom:420.253333pt;}
.y115{bottom:420.773333pt;}
.y6f{bottom:424.800000pt;}
.yf6{bottom:425.693333pt;}
.y12{bottom:426.793333pt;}
.y143{bottom:428.666667pt;}
.yad{bottom:431.066667pt;}
.yea{bottom:432.320000pt;}
.y49{bottom:433.280000pt;}
.y109{bottom:438.853333pt;}
.y34{bottom:439.013333pt;}
.y7f{bottom:440.546667pt;}
.ye9{bottom:440.986667pt;}
.y129{bottom:444.160000pt;}
.y11e{bottom:445.466667pt;}
.y11c{bottom:445.506667pt;}
.y11{bottom:447.912000pt;}
.y25{bottom:449.146667pt;}
.y5f{bottom:450.400000pt;}
.y6e{bottom:453.600000pt;}
.y57{bottom:453.853333pt;}
.y10b{bottom:455.866667pt;}
.yf5{bottom:456.453333pt;}
.y48{bottom:457.280000pt;}
.y91{bottom:463.613333pt;}
.y114{bottom:464.133333pt;}
.y33{bottom:465.413333pt;}
.yd7{bottom:466.466667pt;}
.y171{bottom:466.494667pt;}
.y107{bottom:466.853333pt;}
.y10{bottom:469.030667pt;}
.y128{bottom:469.760000pt;}
.y11b{bottom:471.106667pt;}
.y7e{bottom:471.266667pt;}
.y9e{bottom:471.293333pt;}
.y6d{bottom:478.560000pt;}
.y142{bottom:478.786667pt;}
.y47{bottom:481.306667pt;}
.y5e{bottom:484.000000pt;}
.y170{bottom:485.708000pt;}
.y90{bottom:486.653333pt;}
.y56{bottom:487.493333pt;}
.y113{bottom:489.733333pt;}
.yf{bottom:490.149333pt;}
.y24{bottom:492.346667pt;}
.yac{bottom:492.506667pt;}
.y127{bottom:495.360000pt;}
.ya8{bottom:495.973333pt;}
.y32{bottom:496.613333pt;}
.y11a{bottom:496.706667pt;}
.y7d{bottom:502.013333pt;}
.y16f{bottom:504.886667pt;}
.y46{bottom:505.306667pt;}
.y6c{bottom:507.360000pt;}
.y1{bottom:508.226667pt;}
.ydd{bottom:509.186667pt;}
.y8f{bottom:509.693333pt;}
.y15a{bottom:509.986667pt;}
.ye{bottom:511.268000pt;}
.yd3{bottom:514.466667pt;}
.y112{bottom:515.333333pt;}
.y5d{bottom:518.880000pt;}
.y31{bottom:520.640000pt;}
.y126{bottom:520.986667pt;}
.y55{bottom:521.093333pt;}
.y119{bottom:522.306667pt;}
.y16a{bottom:523.200000pt;}
.y16e{bottom:524.133333pt;}
.y45{bottom:529.306667pt;}
.yb9{bottom:531.173333pt;}
.y6b{bottom:532.346667pt;}
.yd{bottom:532.386667pt;}
.y8e{bottom:532.733333pt;}
.y159{bottom:533.026667pt;}
.y13c{bottom:534.946667pt;}
.y169{bottom:538.333333pt;}
.y111{bottom:540.933333pt;}
.y105{bottom:541.893333pt;}
.y30{bottom:544.640000pt;}
.ydc{bottom:547.586667pt;}
.yf0{bottom:548.960000pt;}
.y23{bottom:549.093333pt;}
.y13b{bottom:550.946667pt;}
.y54{bottom:554.693333pt;}
.y44{bottom:555.706667pt;}
.y8d{bottom:555.773333pt;}
.y158{bottom:556.093333pt;}
.yb8{bottom:556.773333pt;}
.y5c{bottom:557.306667pt;}
.yab{bottom:557.826667pt;}
.yc{bottom:561.346667pt;}
.y6a{bottom:563.066667pt;}
.y7c{bottom:563.453333pt;}
.y2f{bottom:571.040000pt;}
.yf3{bottom:574.493333pt;}
.yf1{bottom:575.706667pt;}
.y8c{bottom:578.813333pt;}
.y157{bottom:579.133333pt;}
.yef{bottom:584.453333pt;}
.y9d{bottom:594.173333pt;}
.y43{bottom:602.080000pt;}
.y156{bottom:602.173333pt;}
.y8b{bottom:603.813333pt;}
.yb{bottom:608.933333pt;}
.h23{height:15.396562pt;}
.h22{height:15.489875pt;}
.h8{height:38.724688pt;}
.h7{height:38.818000pt;}
.h1c{height:39.191562pt;}
.h28{height:46.454062pt;}
.ha{height:46.593750pt;}
.h17{height:46.656250pt;}
.h18{height:46.749562pt;}
.h20{height:47.218750pt;}
.h10{height:47.647188pt;}
.h11{height:47.762000pt;}
.h4{height:54.514687pt;}
.h6{height:54.587812pt;}
.h14{height:54.681125pt;}
.h1{height:55.968750pt;}
.h21{height:56.080687pt;}
.h1d{height:57.406250pt;}
.h1e{height:57.521062pt;}
.h1a{height:62.052813pt;}
.h19{height:62.146125pt;}
.hf{height:65.483437pt;}
.h5{height:65.595375pt;}
.h13{height:67.165312pt;}
.h3{height:69.984375pt;}
.h12{height:74.438437pt;}
.h1b{height:74.550375pt;}
.h30{height:76.085818pt;}
.h15{height:76.350312pt;}
.h16{height:76.465125pt;}
.h2d{height:79.601518pt;}
.h29{height:80.316562pt;}
.h2a{height:80.412750pt;}
.h2b{height:81.719174pt;}
.h2{height:83.953125pt;}
.hc{height:86.109375pt;}
.hd{height:86.224187pt;}
.h9{height:93.467812pt;}
.hb{height:93.579750pt;}
.h2e{height:96.524309pt;}
.h25{height:108.709062pt;}
.h26{height:108.802375pt;}
.h27{height:111.937500pt;}
.h1f{height:112.049437pt;}
.h2c{height:117.302405pt;}
.he{height:130.407187pt;}
.h24{height:130.519125pt;}
.h2f{height:131.083729pt;}
.h0{height:720.000000pt;}
.w2{width:344.775557pt;}
.w1{width:350.307788pt;}
.w3{width:643.393682pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:25.344000pt;}
.x20{left:32.960000pt;}
.x1f{left:44.512000pt;}
.x21{left:46.368000pt;}
.x12{left:48.608000pt;}
.x5{left:55.264000pt;}
.x13{left:56.224000pt;}
.x47{left:62.624000pt;}
.x1{left:64.448000pt;}
.x5b{left:65.472000pt;}
.x2{left:67.136000pt;}
.x58{left:68.768000pt;}
.x1d{left:69.888000pt;}
.x2b{left:71.008000pt;}
.x10{left:72.384000pt;}
.x30{left:75.648000pt;}
.x24{left:78.272000pt;}
.x57{left:81.152000pt;}
.x1b{left:83.616000pt;}
.x9{left:96.288000pt;}
.x4a{left:102.144000pt;}
.xa{left:120.448000pt;}
.x26{left:130.304000pt;}
.x33{left:139.866667pt;}
.xd{left:142.053333pt;}
.xb{left:144.293333pt;}
.x38{left:149.626667pt;}
.xc{left:168.893333pt;}
.x14{left:194.880000pt;}
.x17{left:197.853333pt;}
.x8{left:200.253333pt;}
.x27{left:209.853333pt;}
.xf{left:213.213333pt;}
.x52{left:215.173333pt;}
.x28{left:220.413333pt;}
.x2c{left:223.106667pt;}
.x51{left:226.720000pt;}
.x22{left:252.093333pt;}
.x25{left:260.613333pt;}
.x55{left:266.891766pt;}
.x23{left:289.533333pt;}
.x3e{left:292.253333pt;}
.x44{left:297.666667pt;}
.x54{left:300.273912pt;}
.x53{left:307.093126pt;}
.x11{left:314.973333pt;}
.x4{left:324.773333pt;}
.x29{left:333.213333pt;}
.x15{left:334.493333pt;}
.x3{left:339.173333pt;}
.x4c{left:343.333333pt;}
.x2d{left:353.213333pt;}
.x4e{left:355.520000pt;}
.x5a{left:362.080000pt;}
.x40{left:364.453333pt;}
.x2f{left:376.893333pt;}
.x41{left:379.653333pt;}
.x59{left:386.560000pt;}
.x43{left:387.653333pt;}
.x3f{left:400.933333pt;}
.x2e{left:414.853333pt;}
.x4d{left:431.333333pt;}
.x1c{left:432.346667pt;}
.x42{left:447.173333pt;}
.x4b{left:451.013333pt;}
.x18{left:463.386667pt;}
.x31{left:466.560000pt;}
.x19{left:483.680000pt;}
.x2a{left:489.693333pt;}
.x3d{left:518.106667pt;}
.x3c{left:552.093333pt;}
.x45{left:561.346667pt;}
.x48{left:578.533333pt;}
.x16{left:595.360000pt;}
.x36{left:618.693333pt;}
.x7{left:620.320000pt;}
.x46{left:627.266667pt;}
.x50{left:633.760000pt;}
.x56{left:643.106667pt;}
.x37{left:682.720000pt;}
.x34{left:699.360000pt;}
.x1e{left:704.706667pt;}
.x1a{left:725.666667pt;}
.x32{left:733.186667pt;}
.x35{left:734.880000pt;}
.x3a{left:737.280000pt;}
.xe{left:757.306667pt;}
.x6{left:764.666667pt;}
.x49{left:782.013333pt;}
.x3b{left:798.146667pt;}
.x39{left:804.733333pt;}
}




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