
    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_073292762a8f5c9064b05277.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f80d7be3b1bf5b40defcb8ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_14f227984b7cbe89aa376ca6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_3b956432cdb40d627d7e91c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_7ffb9988fe05fab072252041.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_76d193fff2131a165412d224.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_2202713ea6e9b890aae789b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.190918;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_1de98b0de22e70047ed3ca30.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.362000;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_27dc80f5441add7ab1bac33b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c0c7caebf3901a71b7d9688.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.384000;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_9d603054e08623569b17e3f8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_09ccec958365e4dfbc620b1d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-18.899963px;}
.v5{vertical-align:-10.799194px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.671927px;}
.v2{vertical-align:21.000000px;}
.v6{vertical-align:29.694600px;}
.ls47{letter-spacing:-2.052000px;}
.ls70{letter-spacing:-1.530000px;}
.ls6e{letter-spacing:-1.260000px;}
.ls32{letter-spacing:-1.188000px;}
.ls5a{letter-spacing:-1.170000px;}
.ls68{letter-spacing:-1.125000px;}
.ls4b{letter-spacing:-1.026000px;}
.ls3c{letter-spacing:-0.918000px;}
.ls6d{letter-spacing:-0.765000px;}
.ls25{letter-spacing:-0.756000px;}
.ls3b{letter-spacing:-0.648000px;}
.ls67{letter-spacing:-0.630000px;}
.ls27{letter-spacing:-0.594000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.486000px;}
.ls6c{letter-spacing:-0.450000px;}
.ls24{letter-spacing:-0.432000px;}
.ls34{letter-spacing:-0.420000px;}
.ls59{letter-spacing:-0.405000px;}
.ls46{letter-spacing:-0.378000px;}
.ls6f{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.324000px;}
.ls66{letter-spacing:-0.315000px;}
.ls23{letter-spacing:-0.270000px;}
.ls69{letter-spacing:-0.225000px;}
.lsf{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.210000px;}
.ls71{letter-spacing:-0.180000px;}
.ls3e{letter-spacing:-0.175500px;}
.ls30{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.140400px;}
.ls2a{letter-spacing:-0.108000px;}
.ls58{letter-spacing:-0.090000px;}
.ls2d{letter-spacing:-0.070200px;}
.lse{letter-spacing:-0.054000px;}
.ls6b{letter-spacing:-0.045000px;}
.ls26{letter-spacing:-0.035100px;}
.lsc{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000084px;}
.ls38{letter-spacing:0.000086px;}
.ls4f{letter-spacing:0.000135px;}
.ls4c{letter-spacing:0.000267px;}
.ls1a{letter-spacing:0.015464px;}
.ls18{letter-spacing:0.015647px;}
.ls16{letter-spacing:0.015653px;}
.ls17{letter-spacing:0.024488px;}
.ls19{letter-spacing:0.024671px;}
.ls31{letter-spacing:0.035100px;}
.ls65{letter-spacing:0.045000px;}
.ls45{letter-spacing:0.051418px;}
.ls21{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.058860px;}
.ls4a{letter-spacing:0.070200px;}
.ls11{letter-spacing:0.094200px;}
.ls3d{letter-spacing:0.105300px;}
.ls6{letter-spacing:0.108000px;}
.ls5d{letter-spacing:0.112500px;}
.ls61{letter-spacing:0.135000px;}
.ls4e{letter-spacing:0.140400px;}
.ls42{letter-spacing:0.157737px;}
.ls20{letter-spacing:0.157950px;}
.ls40{letter-spacing:0.158287px;}
.ls3f{letter-spacing:0.158836px;}
.ls4{letter-spacing:0.159019px;}
.ls2{letter-spacing:0.159568px;}
.ls39{letter-spacing:0.159751px;}
.ls12{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.175315px;}
.ls29{letter-spacing:0.175500px;}
.ls57{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.195091px;}
.ls1d{letter-spacing:0.195823px;}
.ls52{letter-spacing:0.202500px;}
.lsa{letter-spacing:0.204000px;}
.ls53{letter-spacing:0.210600px;}
.ls9{letter-spacing:0.210655px;}
.ls1{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.225000px;}
.ls15{letter-spacing:0.241233px;}
.ls13{letter-spacing:0.241783px;}
.ls35{letter-spacing:0.243000px;}
.ls41{letter-spacing:0.243116px;}
.ls3a{letter-spacing:0.244214px;}
.ls22{letter-spacing:0.245700px;}
.ls50{letter-spacing:0.264000px;}
.lsd{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.299695px;}
.ls56{letter-spacing:0.315000px;}
.ls5{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.351000px;}
.ls6a{letter-spacing:0.360000px;}
.ls5e{letter-spacing:0.368959px;}
.ls14{letter-spacing:0.370923px;}
.ls43{letter-spacing:0.371971px;}
.ls3{letter-spacing:0.378000px;}
.ls28{letter-spacing:0.386100px;}
.ls5c{letter-spacing:0.405000px;}
.ls2c{letter-spacing:0.432000px;}
.ls5b{letter-spacing:0.450000px;}
.ls54{letter-spacing:0.486000px;}
.ls5f{letter-spacing:0.495000px;}
.ls2e{letter-spacing:0.540000px;}
.ls44{letter-spacing:0.571882px;}
.ls51{letter-spacing:0.585000px;}
.ls1b{letter-spacing:0.594000px;}
.ls64{letter-spacing:0.630000px;}
.lsb{letter-spacing:0.675128px;}
.ls10{letter-spacing:0.702000px;}
.ls48{letter-spacing:0.756000px;}
.ls36{letter-spacing:0.810000px;}
.ls62{letter-spacing:1.026000px;}
.ls63{letter-spacing:1.035000px;}
.ls60{letter-spacing:1.602000px;}
.ls0{letter-spacing:3.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws7d{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.596000px;}
.ws5c{word-spacing:-12.528000px;}
.ws7b{word-spacing:-12.501000px;}
.ws1d{word-spacing:-12.366000px;}
.ws18{word-spacing:-12.258000px;}
.ws1e{word-spacing:-12.204000px;}
.ws1a{word-spacing:-12.042000px;}
.ws62{word-spacing:-11.988000px;}
.ws15{word-spacing:-11.772000px;}
.ws4d{word-spacing:-11.718000px;}
.ws13{word-spacing:-11.610000px;}
.ws57{word-spacing:-11.502000px;}
.ws4c{word-spacing:-11.448000px;}
.ws5d{word-spacing:-11.340000px;}
.ws21{word-spacing:-11.178000px;}
.ws9b{word-spacing:-10.665000px;}
.ws9c{word-spacing:-10.575000px;}
.ws7e{word-spacing:-10.530000px;}
.ws8d{word-spacing:-10.440000px;}
.ws9a{word-spacing:-10.417500px;}
.ws9e{word-spacing:-10.260000px;}
.ws7f{word-spacing:-10.215000px;}
.ws99{word-spacing:-10.080000px;}
.ws97{word-spacing:-9.990000px;}
.ws9f{word-spacing:-9.945000px;}
.ws0{word-spacing:-9.600000px;}
.ws98{word-spacing:-9.180000px;}
.ws24{word-spacing:-9.114000px;}
.ws9d{word-spacing:-9.045000px;}
.ws16{word-spacing:-8.353800px;}
.ws12{word-spacing:-8.213400px;}
.ws7c{word-spacing:-8.178300px;}
.ws17{word-spacing:-8.143200px;}
.ws63{word-spacing:-8.108100px;}
.ws4e{word-spacing:-8.073000px;}
.ws5b{word-spacing:-8.037900px;}
.ws1f{word-spacing:-8.002800px;}
.ws2{word-spacing:-7.967700px;}
.ws14{word-spacing:-7.932600px;}
.ws1c{word-spacing:-7.897500px;}
.ws1b{word-spacing:-7.827300px;}
.ws4f{word-spacing:-7.792200px;}
.wsb3{word-spacing:-6.840000px;}
.wsa2{word-spacing:-6.030000px;}
.wsab{word-spacing:-5.805000px;}
.ws30{word-spacing:-5.508000px;}
.ws40{word-spacing:-4.284000px;}
.ws74{word-spacing:-3.024000px;}
.ws86{word-spacing:-2.538000px;}
.ws36{word-spacing:-2.376000px;}
.ws68{word-spacing:-2.322000px;}
.ws55{word-spacing:-2.052000px;}
.ws79{word-spacing:-1.944000px;}
.ws49{word-spacing:-1.836000px;}
.ws7a{word-spacing:-1.728000px;}
.ws6a{word-spacing:-1.674000px;}
.ws47{word-spacing:-1.620000px;}
.ws69{word-spacing:-1.458000px;}
.ws8{word-spacing:-1.242000px;}
.wsa{word-spacing:-1.188000px;}
.ws71{word-spacing:-1.080000px;}
.ws95{word-spacing:-1.035000px;}
.ws82{word-spacing:-1.026000px;}
.ws92{word-spacing:-0.990000px;}
.ws45{word-spacing:-0.972000px;}
.ws8b{word-spacing:-0.945000px;}
.wsd{word-spacing:-0.918000px;}
.wsaa{word-spacing:-0.900000px;}
.ws56{word-spacing:-0.864000px;}
.wsa9{word-spacing:-0.855000px;}
.ws28{word-spacing:-0.810000px;}
.wsa0{word-spacing:-0.765000px;}
.ws27{word-spacing:-0.756000px;}
.ws93{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.702000px;}
.wsad{word-spacing:-0.675000px;}
.ws2e{word-spacing:-0.648000px;}
.wsb6{word-spacing:-0.630000px;}
.ws43{word-spacing:-0.594000px;}
.wsac{word-spacing:-0.585000px;}
.ws5{word-spacing:-0.540000px;}
.wsb8{word-spacing:-0.495000px;}
.ws4a{word-spacing:-0.486000px;}
.ws2d{word-spacing:-0.432000px;}
.ws90{word-spacing:-0.405000px;}
.ws2c{word-spacing:-0.386100px;}
.ws48{word-spacing:-0.378000px;}
.wsa4{word-spacing:-0.360000px;}
.ws39{word-spacing:-0.324000px;}
.ws59{word-spacing:-0.270000px;}
.wsba{word-spacing:-0.264000px;}
.ws8c{word-spacing:-0.225000px;}
.ws4{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.204000px;}
.ws8f{word-spacing:-0.180000px;}
.wsc{word-spacing:-0.162000px;}
.ws65{word-spacing:-0.108000px;}
.wsb0{word-spacing:-0.090000px;}
.ws2b{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws2a{word-spacing:0.035100px;}
.wsb1{word-spacing:0.045000px;}
.ws5a{word-spacing:0.054000px;}
.ws32{word-spacing:0.070200px;}
.ws94{word-spacing:0.090000px;}
.wsa1{word-spacing:0.135000px;}
.ws61{word-spacing:0.162000px;}
.ws10{word-spacing:0.204000px;}
.ws3f{word-spacing:0.210000px;}
.ws35{word-spacing:0.216000px;}
.ws42{word-spacing:0.270000px;}
.ws5e{word-spacing:0.324000px;}
.ws91{word-spacing:0.360000px;}
.ws2f{word-spacing:0.378000px;}
.wsb9{word-spacing:0.405000px;}
.ws3c{word-spacing:0.432000px;}
.wsaf{word-spacing:0.450000px;}
.ws3b{word-spacing:0.486000px;}
.ws29{word-spacing:0.540000px;}
.ws5f{word-spacing:0.594000px;}
.ws58{word-spacing:0.648000px;}
.ws4b{word-spacing:0.702000px;}
.ws37{word-spacing:0.810000px;}
.ws9{word-spacing:0.864000px;}
.wsa5{word-spacing:0.900000px;}
.wse{word-spacing:0.918000px;}
.ws53{word-spacing:0.972000px;}
.ws8e{word-spacing:0.990000px;}
.ws6{word-spacing:1.026000px;}
.wsa3{word-spacing:1.035000px;}
.ws51{word-spacing:1.134000px;}
.ws26{word-spacing:1.188000px;}
.ws7{word-spacing:1.242000px;}
.ws6b{word-spacing:1.296000px;}
.wsae{word-spacing:1.305000px;}
.ws96{word-spacing:1.395000px;}
.ws8a{word-spacing:1.440000px;}
.wsbf{word-spacing:1.458000px;}
.wsa8{word-spacing:1.485000px;}
.ws6e{word-spacing:1.512000px;}
.wsb2{word-spacing:1.530000px;}
.ws3e{word-spacing:1.566000px;}
.wsb7{word-spacing:1.575000px;}
.ws34{word-spacing:1.620000px;}
.ws33{word-spacing:1.674000px;}
.wsf{word-spacing:1.728000px;}
.wsa6{word-spacing:1.755000px;}
.wsa7{word-spacing:1.800000px;}
.wsbb{word-spacing:1.836000px;}
.ws31{word-spacing:1.890000px;}
.ws64{word-spacing:1.944000px;}
.ws60{word-spacing:1.998000px;}
.ws77{word-spacing:2.052000px;}
.ws44{word-spacing:2.106000px;}
.ws80{word-spacing:2.214000px;}
.ws54{word-spacing:2.538000px;}
.ws76{word-spacing:2.700000px;}
.ws6d{word-spacing:2.808000px;}
.ws3a{word-spacing:2.916000px;}
.wsbc{word-spacing:3.024000px;}
.ws78{word-spacing:3.078000px;}
.wsbd{word-spacing:3.132000px;}
.ws87{word-spacing:3.186000px;}
.ws84{word-spacing:3.240000px;}
.ws85{word-spacing:3.456000px;}
.ws72{word-spacing:3.510000px;}
.wsb5{word-spacing:3.555000px;}
.wsb4{word-spacing:3.600000px;}
.ws70{word-spacing:3.618000px;}
.ws38{word-spacing:3.672000px;}
.ws6f{word-spacing:3.726000px;}
.ws50{word-spacing:3.888000px;}
.ws6c{word-spacing:4.104000px;}
.ws3d{word-spacing:4.212000px;}
.ws89{word-spacing:4.320000px;}
.ws67{word-spacing:4.752000px;}
.ws52{word-spacing:4.914000px;}
.ws73{word-spacing:5.184000px;}
.ws46{word-spacing:5.292000px;}
.ws66{word-spacing:5.346000px;}
.ws81{word-spacing:5.454000px;}
.ws75{word-spacing:5.670000px;}
.wsc0{word-spacing:6.264000px;}
.ws83{word-spacing:6.480000px;}
.wsbe{word-spacing:6.750000px;}
.ws88{word-spacing:6.966000px;}
.ws41{word-spacing:15.282000px;}
.ws22{word-spacing:47.208000px;}
.ws25{word-spacing:57.036000px;}
.ws23{word-spacing:57.371995px;}
._10{margin-left:-20.952007px;}
._1c{margin-left:-17.090327px;}
._15{margin-left:-15.973681px;}
._8{margin-left:-14.697576px;}
._5{margin-left:-13.535976px;}
._a{margin-left:-12.433200px;}
._6{margin-left:-11.079576px;}
._19{margin-left:-9.543606px;}
._1f{margin-left:-7.830000px;}
._17{margin-left:-6.767951px;}
._9{margin-left:-5.743799px;}
._2{margin-left:-4.663200px;}
._3{margin-left:-3.449400px;}
._0{margin-left:-1.876800px;}
._4{width:1.049975px;}
._7{width:2.308249px;}
._13{width:4.050000px;}
._11{width:5.406000px;}
._1a{width:6.558000px;}
._1d{width:9.307799px;}
._18{width:11.306432px;}
._12{width:12.591772px;}
._14{width:14.182201px;}
._c{width:15.949799px;}
._1e{width:17.055000px;}
._1b{width:18.372098px;}
._16{width:47.246885px;}
._b{width:48.451784px;}
._e{width:55.481995px;}
._f{width:110.376000px;}
._d{width:163.380000px;}
._1{width:314.884800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs8{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.199200px;}
.y34{bottom:3.199350px;}
.y9c{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y33{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y7f{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y32{bottom:68.037600px;}
.y171{bottom:71.790148px;}
.yf8{bottom:74.872652px;}
.yf0{bottom:75.627152px;}
.yb6{bottom:77.871152px;}
.y13d{bottom:79.983148px;}
.y31{bottom:83.031600px;}
.y170{bottom:84.536398px;}
.y98{bottom:85.371152px;}
.y6a{bottom:85.377152px;}
.yd2{bottom:86.872652px;}
.yf7{bottom:89.871152px;}
.yef{bottom:90.625652px;}
.yb5{bottom:92.871152px;}
.y13c{bottom:94.981648px;}
.y16f{bottom:97.282648px;}
.y97{bottom:100.369652px;}
.y69{bottom:100.375652px;}
.yd1{bottom:101.871152px;}
.yf6{bottom:104.872652px;}
.yee{bottom:105.624152px;}
.y1bd{bottom:107.120249px;}
.yb4{bottom:107.871152px;}
.y13b{bottom:109.983148px;}
.y16e{bottom:110.028898px;}
.y68{bottom:115.374152px;}
.yd0{bottom:116.875652px;}
.yf5{bottom:119.871152px;}
.yed{bottom:120.622652px;}
.y1bc{bottom:122.118749px;}
.y16d{bottom:122.775148px;}
.yb3{bottom:122.869652px;}
.y13a{bottom:124.981648px;}
.y67{bottom:130.372652px;}
.ycf{bottom:131.874152px;}
.y96{bottom:133.380152px;}
.yf4{bottom:134.869652px;}
.y16c{bottom:135.521398px;}
.yec{bottom:135.621152px;}
.y1bb{bottom:137.117249px;}
.yb2{bottom:137.869652px;}
.y2f{bottom:138.070954px;}
.y7d{bottom:139.704153px;}
.y139{bottom:139.981648px;}
.y66{bottom:145.371152px;}
.yce{bottom:146.872652px;}
.y16b{bottom:148.267648px;}
.y95{bottom:148.378652px;}
.yeb{bottom:150.627152px;}
.y1ba{bottom:152.115749px;}
.y2e{bottom:153.075305px;}
.y7c{bottom:154.702653px;}
.y138{bottom:154.980148px;}
.y65{bottom:160.369652px;}
.y16a{bottom:161.013898px;}
.ycd{bottom:161.871152px;}
.y94{bottom:163.377152px;}
.yea{bottom:165.625652px;}
.y1b9{bottom:167.115749px;}
.y2d{bottom:168.073805px;}
.y7b{bottom:169.701153px;}
.yb1{bottom:170.875652px;}
.y169{bottom:173.760148px;}
.ycc{bottom:176.874152px;}
.y93{bottom:178.375652px;}
.ye9{bottom:180.624152px;}
.y2c{bottom:183.072305px;}
.y100{bottom:184.374140px;}
.yb0{bottom:185.874152px;}
.y168{bottom:186.506398px;}
.y137{bottom:187.984648px;}
.ycb{bottom:191.872652px;}
.y92{bottom:193.374152px;}
.y64{bottom:193.377152px;}
.ye8{bottom:195.622652px;}
.y1b8{bottom:197.378284px;}
.y2b{bottom:198.070805px;}
.y167{bottom:199.252648px;}
.yff{bottom:199.372640px;}
.yaf{bottom:200.872652px;}
.y136{bottom:202.983148px;}
.yca{bottom:206.871152px;}
.y91{bottom:208.372652px;}
.y63{bottom:208.375652px;}
.y1b7{bottom:210.124534px;}
.ye7{bottom:210.621152px;}
.y166{bottom:211.998898px;}
.y2a{bottom:213.075305px;}
.yfe{bottom:214.372640px;}
.yae{bottom:215.871152px;}
.y135{bottom:217.981648px;}
.yc9{bottom:221.872652px;}
.y1b6{bottom:222.870784px;}
.y90{bottom:223.371152px;}
.y62{bottom:223.374152px;}
.y165{bottom:224.745148px;}
.ye6{bottom:225.628652px;}
.y29{bottom:228.073805px;}
.yfd{bottom:229.371140px;}
.yad{bottom:230.872652px;}
.y134{bottom:232.983148px;}
.y1b5{bottom:235.617034px;}
.yc8{bottom:236.871152px;}
.y164{bottom:237.491398px;}
.y8f{bottom:238.369652px;}
.y61{bottom:238.372652px;}
.ye5{bottom:240.627152px;}
.y28{bottom:243.072305px;}
.yac{bottom:245.871152px;}
.y133{bottom:247.981648px;}
.y1b4{bottom:248.363284px;}
.y163{bottom:250.237648px;}
.yc7{bottom:251.871152px;}
.y60{bottom:253.371152px;}
.ye4{bottom:255.625652px;}
.y27{bottom:258.070805px;}
.yab{bottom:260.874152px;}
.y1b3{bottom:261.109534px;}
.y132{bottom:262.983148px;}
.y162{bottom:262.983898px;}
.yc6{bottom:266.872652px;}
.y5f{bottom:268.369652px;}
.ye3{bottom:270.624152px;}
.y8e{bottom:271.375652px;}
.y26{bottom:273.073805px;}
.y1b2{bottom:273.855784px;}
.y161{bottom:275.730148px;}
.yaa{bottom:275.872652px;}
.y131{bottom:277.981648px;}
.yc5{bottom:281.871152px;}
.ye2{bottom:285.622652px;}
.y8d{bottom:286.374152px;}
.y1b1{bottom:286.602034px;}
.y25{bottom:288.072305px;}
.y160{bottom:288.480148px;}
.ya9{bottom:290.871152px;}
.y130{bottom:292.980148px;}
.yc4{bottom:296.883129px;}
.y1b0{bottom:299.348284px;}
.ye1{bottom:300.621152px;}
.y8c{bottom:301.372652px;}
.y5e{bottom:301.375652px;}
.y24{bottom:303.070805px;}
.ya8{bottom:305.869652px;}
.yc3{bottom:311.881629px;}
.y1af{bottom:312.094534px;}
.ye0{bottom:315.625652px;}
.y8b{bottom:316.371152px;}
.y5d{bottom:316.374152px;}
.y23{bottom:318.072305px;}
.y1ae{bottom:324.840784px;}
.y12f{bottom:325.981648px;}
.yc2{bottom:326.880129px;}
.ydf{bottom:330.624152px;}
.y8a{bottom:331.369652px;}
.y5c{bottom:331.372652px;}
.y22{bottom:333.070805px;}
.y1ad{bottom:337.587034px;}
.y15f{bottom:337.980148px;}
.ya7{bottom:338.875629px;}
.y12e{bottom:340.984648px;}
.yc1{bottom:341.878629px;}
.yde{bottom:345.622652px;}
.y5b{bottom:346.371152px;}
.y21{bottom:348.070805px;}
.y1ac{bottom:350.333284px;}
.ya6{bottom:353.874129px;}
.y12d{bottom:355.983148px;}
.yc0{bottom:356.877129px;}
.ydd{bottom:360.621152px;}
.y5a{bottom:361.369652px;}
.y20{bottom:363.075305px;}
.y1ab{bottom:363.079534px;}
.y89{bottom:364.387629px;}
.ya5{bottom:368.872629px;}
.y12c{bottom:370.981648px;}
.ybf{bottom:371.875629px;}
.ydc{bottom:375.625629px;}
.y1aa{bottom:375.825784px;}
.y59{bottom:376.369652px;}
.y1f{bottom:378.073805px;}
.y88{bottom:379.386129px;}
.ya4{bottom:383.871129px;}
.y12b{bottom:385.984648px;}
.ybe{bottom:386.874129px;}
.y1a9{bottom:388.572034px;}
.ydb{bottom:390.624129px;}
.y1e{bottom:393.072305px;}
.y87{bottom:394.384629px;}
.ya3{bottom:398.869629px;}
.y12a{bottom:400.983148px;}
.y15e{bottom:400.984648px;}
.y1a8{bottom:401.318284px;}
.ybd{bottom:401.872629px;}
.yda{bottom:405.622629px;}
.y1d{bottom:408.070805px;}
.y58{bottom:409.377129px;}
.y86{bottom:409.383129px;}
.y1a7{bottom:414.064534px;}
.y129{bottom:415.981648px;}
.y15d{bottom:415.983148px;}
.ybc{bottom:416.871129px;}
.yd9{bottom:420.621129px;}
.y1c{bottom:423.126315px;}
.y57{bottom:424.375629px;}
.y85{bottom:424.381629px;}
.y1a6{bottom:426.810784px;}
.y128{bottom:430.980148px;}
.y15c{bottom:430.981648px;}
.ybb{bottom:431.869629px;}
.ya2{bottom:431.877129px;}
.yd8{bottom:435.621129px;}
.y56{bottom:439.374129px;}
.y84{bottom:439.380129px;}
.y1a5{bottom:439.557034px;}
.y15b{bottom:445.983148px;}
.ya1{bottom:446.875629px;}
.yd7{bottom:450.619629px;}
.y1a4{bottom:452.303284px;}
.y55{bottom:454.372629px;}
.y83{bottom:454.378629px;}
.y15a{bottom:460.981648px;}
.ya0{bottom:461.874129px;}
.y127{bottom:463.984648px;}
.y1a3{bottom:465.049534px;}
.y1b{bottom:468.270315px;}
.y54{bottom:469.371129px;}
.y82{bottom:469.377129px;}
.y159{bottom:475.980148px;}
.y9f{bottom:476.872629px;}
.y1a2{bottom:477.795784px;}
.y126{bottom:478.983148px;}
.y53{bottom:484.375629px;}
.y1a{bottom:484.767315px;}
.y1a1{bottom:490.542034px;}
.yfc{bottom:491.376128px;}
.y9e{bottom:491.871129px;}
.y125{bottom:493.981648px;}
.yd6{bottom:498.216170px;}
.y52{bottom:499.374129px;}
.y19{bottom:501.264315px;}
.y1a0{bottom:503.288284px;}
.yfb{bottom:506.374628px;}
.y9d{bottom:506.869629px;}
.y124{bottom:508.984648px;}
.y158{bottom:508.987648px;}
.yf3{bottom:509.434641px;}
.yd5{bottom:513.214670px;}
.y51{bottom:514.372629px;}
.y19f{bottom:516.034534px;}
.y18{bottom:517.761315px;}
.yfa{bottom:521.373128px;}
.y123{bottom:523.983148px;}
.y157{bottom:523.986148px;}
.yf2{bottom:524.433141px;}
.yd4{bottom:528.213170px;}
.y19e{bottom:528.780784px;}
.y50{bottom:529.371129px;}
.y17{bottom:534.258315px;}
.yf9{bottom:536.371628px;}
.y122{bottom:538.981648px;}
.y156{bottom:538.984648px;}
.yf1{bottom:539.431641px;}
.y19d{bottom:541.527034px;}
.yd3{bottom:543.211670px;}
.y81{bottom:544.369629px;}
.y4f{bottom:544.374129px;}
.y16{bottom:550.755315px;}
.y155{bottom:553.983148px;}
.y121{bottom:553.987648px;}
.y19c{bottom:554.273284px;}
.y4e{bottom:559.372629px;}
.yba{bottom:565.895979px;}
.y19b{bottom:567.019534px;}
.y15{bottom:567.252315px;}
.y154{bottom:568.981648px;}
.y120{bottom:568.986148px;}
.y4d{bottom:574.371129px;}
.y19a{bottom:579.765784px;}
.yb9{bottom:580.894479px;}
.y14{bottom:583.749315px;}
.y153{bottom:583.981648px;}
.y11f{bottom:583.984648px;}
.y4c{bottom:589.377129px;}
.y199{bottom:592.512034px;}
.yb8{bottom:595.892979px;}
.y152{bottom:598.980148px;}
.y11e{bottom:598.983148px;}
.y9b{bottom:600.154657px;}
.y13{bottom:600.246315px;}
.y4b{bottom:604.375629px;}
.y198{bottom:605.258284px;}
.yb7{bottom:610.891479px;}
.y11d{bottom:613.981648px;}
.y9a{bottom:615.153157px;}
.y12{bottom:616.743315px;}
.y197{bottom:618.004534px;}
.y4a{bottom:619.374129px;}
.y11c{bottom:628.980148px;}
.y99{bottom:630.151657px;}
.y196{bottom:630.750784px;}
.y151{bottom:631.987648px;}
.y11{bottom:633.240315px;}
.y49{bottom:634.372629px;}
.y195{bottom:643.497034px;}
.y150{bottom:646.986148px;}
.y48{bottom:649.371129px;}
.y10{bottom:649.737315px;}
.y194{bottom:656.243284px;}
.y14f{bottom:661.984648px;}
.y11b{bottom:661.987648px;}
.y7a{bottom:663.276137px;}
.y47{bottom:664.372629px;}
.yf{bottom:666.234315px;}
.y193{bottom:668.989534px;}
.y14e{bottom:676.983148px;}
.y11a{bottom:676.986148px;}
.y79{bottom:678.274637px;}
.y46{bottom:679.371129px;}
.y192{bottom:681.735784px;}
.ye{bottom:682.731315px;}
.y14d{bottom:691.981648px;}
.y119{bottom:691.984648px;}
.y78{bottom:693.273137px;}
.y45{bottom:694.371129px;}
.y191{bottom:694.482034px;}
.yd{bottom:699.228315px;}
.y118{bottom:706.983148px;}
.y190{bottom:707.228284px;}
.y77{bottom:708.271637px;}
.y1d2{bottom:709.070661px;}
.y44{bottom:709.372629px;}
.yc{bottom:715.725315px;}
.y18f{bottom:719.974534px;}
.y117{bottom:721.981648px;}
.y43{bottom:724.371129px;}
.yb{bottom:732.222315px;}
.y18e{bottom:732.720784px;}
.y116{bottom:736.980148px;}
.y14c{bottom:736.981648px;}
.y1d1{bottom:739.067659px;}
.y42{bottom:739.371129px;}
.y18d{bottom:745.467034px;}
.ya{bottom:748.719315px;}
.y115{bottom:751.980148px;}
.y1d0{bottom:754.066159px;}
.y41{bottom:754.374129px;}
.y18c{bottom:758.213284px;}
.y1cf{bottom:769.064659px;}
.y40{bottom:769.372629px;}
.y18b{bottom:770.959534px;}
.y9{bottom:778.719269px;}
.y18a{bottom:783.705784px;}
.y1ce{bottom:784.063159px;}
.y3f{bottom:784.371129px;}
.y114{bottom:784.981694px;}
.y14b{bottom:784.989194px;}
.y189{bottom:796.452034px;}
.y1cd{bottom:799.061659px;}
.y3e{bottom:799.377129px;}
.y113{bottom:799.981694px;}
.y14a{bottom:799.987694px;}
.y188{bottom:809.198284px;}
.y8{bottom:811.701269px;}
.y1cc{bottom:814.060159px;}
.y3d{bottom:814.375629px;}
.y112{bottom:814.981694px;}
.y149{bottom:814.986194px;}
.y187{bottom:821.944534px;}
.y1cb{bottom:829.058659px;}
.y3c{bottom:829.374129px;}
.y111{bottom:829.984694px;}
.y186{bottom:834.690784px;}
.y1ca{bottom:844.057159px;}
.y3b{bottom:844.372629px;}
.y110{bottom:844.983194px;}
.y185{bottom:847.437034px;}
.y7{bottom:856.707269px;}
.y3a{bottom:859.371129px;}
.y10f{bottom:859.981694px;}
.y184{bottom:860.183284px;}
.y1c9{bottom:866.545159px;}
.y183{bottom:872.929534px;}
.y39{bottom:874.371129px;}
.y10e{bottom:874.980194px;}
.y148{bottom:874.987694px;}
.y1c8{bottom:881.543659px;}
.y182{bottom:885.675784px;}
.y38{bottom:889.371129px;}
.y10d{bottom:889.980194px;}
.y147{bottom:889.986194px;}
.y181{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y1c7{bottom:904.048159px;}
.y37{bottom:904.371129px;}
.y146{bottom:904.984694px;}
.y180{bottom:911.168284px;}
.y36{bottom:919.369629px;}
.y145{bottom:919.983194px;}
.y10c{bottom:922.990694px;}
.y17f{bottom:923.914534px;}
.y1c6{bottom:926.552659px;}
.y144{bottom:934.981694px;}
.y17e{bottom:936.660784px;}
.y10b{bottom:937.989194px;}
.y5{bottom:946.719269px;}
.y1c5{bottom:949.057159px;}
.y17d{bottom:949.407034px;}
.y143{bottom:949.984694px;}
.y10a{bottom:952.987694px;}
.y30{bottom:954.366760px;}
.y17c{bottom:962.153284px;}
.y1c4{bottom:964.057159px;}
.y142{bottom:964.983194px;}
.y109{bottom:967.986194px;}
.y17b{bottom:974.899534px;}
.y6b{bottom:979.217285px;}
.y141{bottom:979.981694px;}
.y108{bottom:982.984694px;}
.y17a{bottom:987.645784px;}
.y1c3{bottom:994.057159px;}
.y140{bottom:994.983194px;}
.y107{bottom:997.983194px;}
.y179{bottom:1000.392034px;}
.y1c2{bottom:1009.057159px;}
.y13f{bottom:1009.981694px;}
.y75{bottom:1011.116129px;}
.y106{bottom:1012.981694px;}
.y178{bottom:1013.138284px;}
.y13e{bottom:1024.980194px;}
.y177{bottom:1025.884534px;}
.y105{bottom:1027.986194px;}
.y74{bottom:1028.651129px;}
.y176{bottom:1038.630784px;}
.y1c1{bottom:1040.527200px;}
.y104{bottom:1042.984694px;}
.y6c{bottom:1046.165131px;}
.y73{bottom:1046.186129px;}
.y175{bottom:1051.377034px;}
.y1c0{bottom:1055.525700px;}
.y103{bottom:1057.983194px;}
.y6f{bottom:1063.710631px;}
.y72{bottom:1063.721129px;}
.y174{bottom:1064.123284px;}
.y1bf{bottom:1070.524200px;}
.y102{bottom:1072.981694px;}
.y6e{bottom:1074.956131px;}
.y71{bottom:1074.966629px;}
.y173{bottom:1076.869534px;}
.y1be{bottom:1085.524200px;}
.y6d{bottom:1086.201631px;}
.y70{bottom:1086.212129px;}
.y101{bottom:1087.980194px;}
.y172{bottom:1089.615784px;}
.y76{bottom:1140.640320px;}
.y80{bottom:1140.746521px;}
.y35{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h2{height:33.937500px;}
.h2e{height:35.411133px;}
.h8{height:38.838867px;}
.h1d{height:41.538000px;}
.h12{height:41.782049px;}
.h1c{height:43.008000px;}
.h27{height:43.154297px;}
.h30{height:44.505000px;}
.h2f{height:45.090000px;}
.h3{height:45.679688px;}
.h31{height:46.080000px;}
.h1a{height:47.469727px;}
.h11{height:48.534668px;}
.h7{height:49.183594px;}
.h32{height:50.439000px;}
.h9{height:51.416016px;}
.ha{height:53.406000px;}
.h1f{height:53.559955px;}
.h22{height:53.577863px;}
.h2b{height:53.583680px;}
.h2d{height:53.583863px;}
.h23{height:53.583909px;}
.h18{height:53.584046px;}
.h21{height:53.589406px;}
.h26{height:53.589680px;}
.hb{height:53.589863px;}
.h19{height:53.590046px;}
.hf{height:53.590458px;}
.he{height:53.595863px;}
.h15{height:53.596046px;}
.h2a{height:53.601680px;}
.hd{height:53.601863px;}
.h24{height:53.601909px;}
.h17{height:53.602046px;}
.h2c{height:53.602573px;}
.h20{height:53.607314px;}
.hc{height:53.607863px;}
.h29{height:53.607907px;}
.h1e{height:53.607909px;}
.h16{height:53.608046px;}
.h13{height:53.608413px;}
.h25{height:53.613680px;}
.h28{height:53.613863px;}
.h14{height:54.108000px;}
.h1b{height:55.296000px;}
.h4{height:57.099609px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h6{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.228350px;}
.x3{left:61.653603px;}
.x6{left:141.395702px;}
.x5{left:233.858253px;}
.x9{left:238.570793px;}
.x8{left:251.853298px;}
.xe{left:254.108391px;}
.xf{left:302.498703px;}
.xa{left:306.831293px;}
.xb{left:380.803793px;}
.x4{left:586.814117px;}
.xc{left:797.390808px;}
.x2{left:798.901611px;}
.xd{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.v4{vertical-align:-16.799967pt;}
.v5{vertical-align:-9.599284pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.597268pt;}
.v2{vertical-align:18.666667pt;}
.v6{vertical-align:26.395200pt;}
.ls47{letter-spacing:-1.824000pt;}
.ls70{letter-spacing:-1.360000pt;}
.ls6e{letter-spacing:-1.120000pt;}
.ls32{letter-spacing:-1.056000pt;}
.ls5a{letter-spacing:-1.040000pt;}
.ls68{letter-spacing:-1.000000pt;}
.ls4b{letter-spacing:-0.912000pt;}
.ls3c{letter-spacing:-0.816000pt;}
.ls6d{letter-spacing:-0.680000pt;}
.ls25{letter-spacing:-0.672000pt;}
.ls3b{letter-spacing:-0.576000pt;}
.ls67{letter-spacing:-0.560000pt;}
.ls27{letter-spacing:-0.528000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.432000pt;}
.ls6c{letter-spacing:-0.400000pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls34{letter-spacing:-0.373333pt;}
.ls59{letter-spacing:-0.360000pt;}
.ls46{letter-spacing:-0.336000pt;}
.ls6f{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.288000pt;}
.ls66{letter-spacing:-0.280000pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls69{letter-spacing:-0.200000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.186667pt;}
.ls71{letter-spacing:-0.160000pt;}
.ls3e{letter-spacing:-0.156000pt;}
.ls30{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.124800pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls58{letter-spacing:-0.080000pt;}
.ls2d{letter-spacing:-0.062400pt;}
.lse{letter-spacing:-0.048000pt;}
.ls6b{letter-spacing:-0.040000pt;}
.ls26{letter-spacing:-0.031200pt;}
.lsc{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000074pt;}
.ls38{letter-spacing:0.000076pt;}
.ls4f{letter-spacing:0.000120pt;}
.ls4c{letter-spacing:0.000237pt;}
.ls1a{letter-spacing:0.013746pt;}
.ls18{letter-spacing:0.013909pt;}
.ls16{letter-spacing:0.013914pt;}
.ls17{letter-spacing:0.021767pt;}
.ls19{letter-spacing:0.021930pt;}
.ls31{letter-spacing:0.031200pt;}
.ls65{letter-spacing:0.040000pt;}
.ls45{letter-spacing:0.045705pt;}
.ls21{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.052320pt;}
.ls4a{letter-spacing:0.062400pt;}
.ls11{letter-spacing:0.083733pt;}
.ls3d{letter-spacing:0.093600pt;}
.ls6{letter-spacing:0.096000pt;}
.ls5d{letter-spacing:0.100000pt;}
.ls61{letter-spacing:0.120000pt;}
.ls4e{letter-spacing:0.124800pt;}
.ls42{letter-spacing:0.140211pt;}
.ls20{letter-spacing:0.140400pt;}
.ls40{letter-spacing:0.140699pt;}
.ls3f{letter-spacing:0.141187pt;}
.ls4{letter-spacing:0.141350pt;}
.ls2{letter-spacing:0.141839pt;}
.ls39{letter-spacing:0.142001pt;}
.ls12{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.155836pt;}
.ls29{letter-spacing:0.156000pt;}
.ls57{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.173414pt;}
.ls1d{letter-spacing:0.174065pt;}
.ls52{letter-spacing:0.180000pt;}
.lsa{letter-spacing:0.181333pt;}
.ls53{letter-spacing:0.187200pt;}
.ls9{letter-spacing:0.187249pt;}
.ls1{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.200000pt;}
.ls15{letter-spacing:0.214430pt;}
.ls13{letter-spacing:0.214918pt;}
.ls35{letter-spacing:0.216000pt;}
.ls41{letter-spacing:0.216103pt;}
.ls3a{letter-spacing:0.217079pt;}
.ls22{letter-spacing:0.218400pt;}
.ls50{letter-spacing:0.234667pt;}
.lsd{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.266396pt;}
.ls56{letter-spacing:0.280000pt;}
.ls5{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.312000pt;}
.ls6a{letter-spacing:0.320000pt;}
.ls5e{letter-spacing:0.327963pt;}
.ls14{letter-spacing:0.329710pt;}
.ls43{letter-spacing:0.330641pt;}
.ls3{letter-spacing:0.336000pt;}
.ls28{letter-spacing:0.343200pt;}
.ls5c{letter-spacing:0.360000pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls5b{letter-spacing:0.400000pt;}
.ls54{letter-spacing:0.432000pt;}
.ls5f{letter-spacing:0.440000pt;}
.ls2e{letter-spacing:0.480000pt;}
.ls44{letter-spacing:0.508339pt;}
.ls51{letter-spacing:0.520000pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls64{letter-spacing:0.560000pt;}
.lsb{letter-spacing:0.600114pt;}
.ls10{letter-spacing:0.624000pt;}
.ls48{letter-spacing:0.672000pt;}
.ls36{letter-spacing:0.720000pt;}
.ls62{letter-spacing:0.912000pt;}
.ls63{letter-spacing:0.920000pt;}
.ls60{letter-spacing:1.424000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws19{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7d{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.085333pt;}
.ws5c{word-spacing:-11.136000pt;}
.ws7b{word-spacing:-11.112000pt;}
.ws1d{word-spacing:-10.992000pt;}
.ws18{word-spacing:-10.896000pt;}
.ws1e{word-spacing:-10.848000pt;}
.ws1a{word-spacing:-10.704000pt;}
.ws62{word-spacing:-10.656000pt;}
.ws15{word-spacing:-10.464000pt;}
.ws4d{word-spacing:-10.416000pt;}
.ws13{word-spacing:-10.320000pt;}
.ws57{word-spacing:-10.224000pt;}
.ws4c{word-spacing:-10.176000pt;}
.ws5d{word-spacing:-10.080000pt;}
.ws21{word-spacing:-9.936000pt;}
.ws9b{word-spacing:-9.480000pt;}
.ws9c{word-spacing:-9.400000pt;}
.ws7e{word-spacing:-9.360000pt;}
.ws8d{word-spacing:-9.280000pt;}
.ws9a{word-spacing:-9.260000pt;}
.ws9e{word-spacing:-9.120000pt;}
.ws7f{word-spacing:-9.080000pt;}
.ws99{word-spacing:-8.960000pt;}
.ws97{word-spacing:-8.880000pt;}
.ws9f{word-spacing:-8.840000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws98{word-spacing:-8.160000pt;}
.ws24{word-spacing:-8.101333pt;}
.ws9d{word-spacing:-8.040000pt;}
.ws16{word-spacing:-7.425600pt;}
.ws12{word-spacing:-7.300800pt;}
.ws7c{word-spacing:-7.269600pt;}
.ws17{word-spacing:-7.238400pt;}
.ws63{word-spacing:-7.207200pt;}
.ws4e{word-spacing:-7.176000pt;}
.ws5b{word-spacing:-7.144800pt;}
.ws1f{word-spacing:-7.113600pt;}
.ws2{word-spacing:-7.082400pt;}
.ws14{word-spacing:-7.051200pt;}
.ws1c{word-spacing:-7.020000pt;}
.ws1b{word-spacing:-6.957600pt;}
.ws4f{word-spacing:-6.926400pt;}
.wsb3{word-spacing:-6.080000pt;}
.wsa2{word-spacing:-5.360000pt;}
.wsab{word-spacing:-5.160000pt;}
.ws30{word-spacing:-4.896000pt;}
.ws40{word-spacing:-3.808000pt;}
.ws74{word-spacing:-2.688000pt;}
.ws86{word-spacing:-2.256000pt;}
.ws36{word-spacing:-2.112000pt;}
.ws68{word-spacing:-2.064000pt;}
.ws55{word-spacing:-1.824000pt;}
.ws79{word-spacing:-1.728000pt;}
.ws49{word-spacing:-1.632000pt;}
.ws7a{word-spacing:-1.536000pt;}
.ws6a{word-spacing:-1.488000pt;}
.ws47{word-spacing:-1.440000pt;}
.ws69{word-spacing:-1.296000pt;}
.ws8{word-spacing:-1.104000pt;}
.wsa{word-spacing:-1.056000pt;}
.ws71{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.920000pt;}
.ws82{word-spacing:-0.912000pt;}
.ws92{word-spacing:-0.880000pt;}
.ws45{word-spacing:-0.864000pt;}
.ws8b{word-spacing:-0.840000pt;}
.wsd{word-spacing:-0.816000pt;}
.wsaa{word-spacing:-0.800000pt;}
.ws56{word-spacing:-0.768000pt;}
.wsa9{word-spacing:-0.760000pt;}
.ws28{word-spacing:-0.720000pt;}
.wsa0{word-spacing:-0.680000pt;}
.ws27{word-spacing:-0.672000pt;}
.ws93{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.624000pt;}
.wsad{word-spacing:-0.600000pt;}
.ws2e{word-spacing:-0.576000pt;}
.wsb6{word-spacing:-0.560000pt;}
.ws43{word-spacing:-0.528000pt;}
.wsac{word-spacing:-0.520000pt;}
.ws5{word-spacing:-0.480000pt;}
.wsb8{word-spacing:-0.440000pt;}
.ws4a{word-spacing:-0.432000pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws90{word-spacing:-0.360000pt;}
.ws2c{word-spacing:-0.343200pt;}
.ws48{word-spacing:-0.336000pt;}
.wsa4{word-spacing:-0.320000pt;}
.ws39{word-spacing:-0.288000pt;}
.ws59{word-spacing:-0.240000pt;}
.wsba{word-spacing:-0.234667pt;}
.ws8c{word-spacing:-0.200000pt;}
.ws4{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.181333pt;}
.ws8f{word-spacing:-0.160000pt;}
.wsc{word-spacing:-0.144000pt;}
.ws65{word-spacing:-0.096000pt;}
.wsb0{word-spacing:-0.080000pt;}
.ws2b{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.031200pt;}
.wsb1{word-spacing:0.040000pt;}
.ws5a{word-spacing:0.048000pt;}
.ws32{word-spacing:0.062400pt;}
.ws94{word-spacing:0.080000pt;}
.wsa1{word-spacing:0.120000pt;}
.ws61{word-spacing:0.144000pt;}
.ws10{word-spacing:0.181333pt;}
.ws3f{word-spacing:0.186667pt;}
.ws35{word-spacing:0.192000pt;}
.ws42{word-spacing:0.240000pt;}
.ws5e{word-spacing:0.288000pt;}
.ws91{word-spacing:0.320000pt;}
.ws2f{word-spacing:0.336000pt;}
.wsb9{word-spacing:0.360000pt;}
.ws3c{word-spacing:0.384000pt;}
.wsaf{word-spacing:0.400000pt;}
.ws3b{word-spacing:0.432000pt;}
.ws29{word-spacing:0.480000pt;}
.ws5f{word-spacing:0.528000pt;}
.ws58{word-spacing:0.576000pt;}
.ws4b{word-spacing:0.624000pt;}
.ws37{word-spacing:0.720000pt;}
.ws9{word-spacing:0.768000pt;}
.wsa5{word-spacing:0.800000pt;}
.wse{word-spacing:0.816000pt;}
.ws53{word-spacing:0.864000pt;}
.ws8e{word-spacing:0.880000pt;}
.ws6{word-spacing:0.912000pt;}
.wsa3{word-spacing:0.920000pt;}
.ws51{word-spacing:1.008000pt;}
.ws26{word-spacing:1.056000pt;}
.ws7{word-spacing:1.104000pt;}
.ws6b{word-spacing:1.152000pt;}
.wsae{word-spacing:1.160000pt;}
.ws96{word-spacing:1.240000pt;}
.ws8a{word-spacing:1.280000pt;}
.wsbf{word-spacing:1.296000pt;}
.wsa8{word-spacing:1.320000pt;}
.ws6e{word-spacing:1.344000pt;}
.wsb2{word-spacing:1.360000pt;}
.ws3e{word-spacing:1.392000pt;}
.wsb7{word-spacing:1.400000pt;}
.ws34{word-spacing:1.440000pt;}
.ws33{word-spacing:1.488000pt;}
.wsf{word-spacing:1.536000pt;}
.wsa6{word-spacing:1.560000pt;}
.wsa7{word-spacing:1.600000pt;}
.wsbb{word-spacing:1.632000pt;}
.ws31{word-spacing:1.680000pt;}
.ws64{word-spacing:1.728000pt;}
.ws60{word-spacing:1.776000pt;}
.ws77{word-spacing:1.824000pt;}
.ws44{word-spacing:1.872000pt;}
.ws80{word-spacing:1.968000pt;}
.ws54{word-spacing:2.256000pt;}
.ws76{word-spacing:2.400000pt;}
.ws6d{word-spacing:2.496000pt;}
.ws3a{word-spacing:2.592000pt;}
.wsbc{word-spacing:2.688000pt;}
.ws78{word-spacing:2.736000pt;}
.wsbd{word-spacing:2.784000pt;}
.ws87{word-spacing:2.832000pt;}
.ws84{word-spacing:2.880000pt;}
.ws85{word-spacing:3.072000pt;}
.ws72{word-spacing:3.120000pt;}
.wsb5{word-spacing:3.160000pt;}
.wsb4{word-spacing:3.200000pt;}
.ws70{word-spacing:3.216000pt;}
.ws38{word-spacing:3.264000pt;}
.ws6f{word-spacing:3.312000pt;}
.ws50{word-spacing:3.456000pt;}
.ws6c{word-spacing:3.648000pt;}
.ws3d{word-spacing:3.744000pt;}
.ws89{word-spacing:3.840000pt;}
.ws67{word-spacing:4.224000pt;}
.ws52{word-spacing:4.368000pt;}
.ws73{word-spacing:4.608000pt;}
.ws46{word-spacing:4.704000pt;}
.ws66{word-spacing:4.752000pt;}
.ws81{word-spacing:4.848000pt;}
.ws75{word-spacing:5.040000pt;}
.wsc0{word-spacing:5.568000pt;}
.ws83{word-spacing:5.760000pt;}
.wsbe{word-spacing:6.000000pt;}
.ws88{word-spacing:6.192000pt;}
.ws41{word-spacing:13.584000pt;}
.ws22{word-spacing:41.962667pt;}
.ws25{word-spacing:50.698667pt;}
.ws23{word-spacing:50.997329pt;}
._10{margin-left:-18.624006pt;}
._1c{margin-left:-15.191402pt;}
._15{margin-left:-14.198828pt;}
._8{margin-left:-13.064512pt;}
._5{margin-left:-12.031978pt;}
._a{margin-left:-11.051733pt;}
._6{margin-left:-9.848512pt;}
._19{margin-left:-8.483206pt;}
._1f{margin-left:-6.960000pt;}
._17{margin-left:-6.015956pt;}
._9{margin-left:-5.105599pt;}
._2{margin-left:-4.145067pt;}
._3{margin-left:-3.066134pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.933311pt;}
._7{width:2.051777pt;}
._13{width:3.600000pt;}
._11{width:4.805333pt;}
._1a{width:5.829333pt;}
._1d{width:8.273599pt;}
._18{width:10.050162pt;}
._12{width:11.192686pt;}
._14{width:12.606401pt;}
._c{width:14.177599pt;}
._1e{width:15.160000pt;}
._1b{width:16.330754pt;}
._16{width:41.997231pt;}
._b{width:43.068252pt;}
._e{width:49.317329pt;}
._f{width:98.112000pt;}
._d{width:145.226667pt;}
._1{width:279.897600pt;}
.fs8{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.843733pt;}
.y34{bottom:2.843867pt;}
.y9c{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y33{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y7f{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y32{bottom:60.477867pt;}
.y171{bottom:63.813465pt;}
.yf8{bottom:66.553468pt;}
.yf0{bottom:67.224135pt;}
.yb6{bottom:69.218802pt;}
.y13d{bottom:71.096132pt;}
.y31{bottom:73.805867pt;}
.y170{bottom:75.143465pt;}
.y98{bottom:75.885468pt;}
.y6a{bottom:75.890802pt;}
.yd2{bottom:77.220135pt;}
.yf7{bottom:79.885468pt;}
.yef{bottom:80.556135pt;}
.yb5{bottom:82.552135pt;}
.y13c{bottom:84.428132pt;}
.y16f{bottom:86.473465pt;}
.y97{bottom:89.217468pt;}
.y69{bottom:89.222802pt;}
.yd1{bottom:90.552135pt;}
.yf6{bottom:93.220135pt;}
.yee{bottom:93.888135pt;}
.y1bd{bottom:95.217999pt;}
.yb4{bottom:95.885468pt;}
.y13b{bottom:97.762799pt;}
.y16e{bottom:97.803465pt;}
.y68{bottom:102.554802pt;}
.yd0{bottom:103.889468pt;}
.yf5{bottom:106.552135pt;}
.yed{bottom:107.220135pt;}
.y1bc{bottom:108.549999pt;}
.y16d{bottom:109.133465pt;}
.yb3{bottom:109.217468pt;}
.y13a{bottom:111.094799pt;}
.y67{bottom:115.886802pt;}
.ycf{bottom:117.221468pt;}
.y96{bottom:118.560135pt;}
.yf4{bottom:119.884135pt;}
.y16c{bottom:120.463465pt;}
.yec{bottom:120.552135pt;}
.y1bb{bottom:121.881999pt;}
.yb2{bottom:122.550802pt;}
.y2f{bottom:122.729737pt;}
.y7d{bottom:124.181469pt;}
.y139{bottom:124.428132pt;}
.y66{bottom:129.218802pt;}
.yce{bottom:130.553468pt;}
.y16b{bottom:131.793465pt;}
.y95{bottom:131.892135pt;}
.yeb{bottom:133.890802pt;}
.y1ba{bottom:135.213999pt;}
.y2e{bottom:136.066938pt;}
.y7c{bottom:137.513469pt;}
.y138{bottom:137.760132pt;}
.y65{bottom:142.550802pt;}
.y16a{bottom:143.123465pt;}
.ycd{bottom:143.885468pt;}
.y94{bottom:145.224135pt;}
.yea{bottom:147.222802pt;}
.y1b9{bottom:148.547333pt;}
.y2d{bottom:149.398938pt;}
.y7b{bottom:150.845469pt;}
.yb1{bottom:151.889468pt;}
.y169{bottom:154.453465pt;}
.ycc{bottom:157.221468pt;}
.y93{bottom:158.556135pt;}
.ye9{bottom:160.554802pt;}
.y2c{bottom:162.730938pt;}
.y100{bottom:163.888124pt;}
.yb0{bottom:165.221468pt;}
.y168{bottom:165.783465pt;}
.y137{bottom:167.097465pt;}
.ycb{bottom:170.553468pt;}
.y92{bottom:171.888135pt;}
.y64{bottom:171.890802pt;}
.ye8{bottom:173.886802pt;}
.y1b8{bottom:175.447363pt;}
.y2b{bottom:176.062938pt;}
.y167{bottom:177.113465pt;}
.yff{bottom:177.220124pt;}
.yaf{bottom:178.553468pt;}
.y136{bottom:180.429465pt;}
.yca{bottom:183.885468pt;}
.y91{bottom:185.220135pt;}
.y63{bottom:185.222802pt;}
.y1b7{bottom:186.777363pt;}
.ye7{bottom:187.218802pt;}
.y166{bottom:188.443465pt;}
.y2a{bottom:189.400271pt;}
.yfe{bottom:190.553457pt;}
.yae{bottom:191.885468pt;}
.y135{bottom:193.761465pt;}
.yc9{bottom:197.220135pt;}
.y1b6{bottom:198.107363pt;}
.y90{bottom:198.552135pt;}
.y62{bottom:198.554802pt;}
.y165{bottom:199.773465pt;}
.ye6{bottom:200.558802pt;}
.y29{bottom:202.732271pt;}
.yfd{bottom:203.885457pt;}
.yad{bottom:205.220135pt;}
.y134{bottom:207.096132pt;}
.y1b5{bottom:209.437363pt;}
.yc8{bottom:210.552135pt;}
.y164{bottom:211.103465pt;}
.y8f{bottom:211.884135pt;}
.y61{bottom:211.886802pt;}
.ye5{bottom:213.890802pt;}
.y28{bottom:216.064271pt;}
.yac{bottom:218.552135pt;}
.y133{bottom:220.428132pt;}
.y1b4{bottom:220.767363pt;}
.y163{bottom:222.433465pt;}
.yc7{bottom:223.885468pt;}
.y60{bottom:225.218802pt;}
.ye4{bottom:227.222802pt;}
.y27{bottom:229.396271pt;}
.yab{bottom:231.888135pt;}
.y1b3{bottom:232.097363pt;}
.y132{bottom:233.762799pt;}
.y162{bottom:233.763465pt;}
.yc6{bottom:237.220135pt;}
.y5f{bottom:238.550802pt;}
.ye3{bottom:240.554802pt;}
.y8e{bottom:241.222802pt;}
.y26{bottom:242.732271pt;}
.y1b2{bottom:243.427363pt;}
.y161{bottom:245.093465pt;}
.yaa{bottom:245.220135pt;}
.y131{bottom:247.094799pt;}
.yc5{bottom:250.552135pt;}
.ye2{bottom:253.886802pt;}
.y8d{bottom:254.554802pt;}
.y1b1{bottom:254.757363pt;}
.y25{bottom:256.064271pt;}
.y160{bottom:256.426799pt;}
.ya9{bottom:258.552135pt;}
.y130{bottom:260.426799pt;}
.yc4{bottom:263.896115pt;}
.y1b0{bottom:266.087363pt;}
.ye1{bottom:267.218802pt;}
.y8c{bottom:267.886802pt;}
.y5e{bottom:267.889468pt;}
.y24{bottom:269.396271pt;}
.ya8{bottom:271.884135pt;}
.yc3{bottom:277.228115pt;}
.y1af{bottom:277.417363pt;}
.ye0{bottom:280.556135pt;}
.y8b{bottom:281.218802pt;}
.y5d{bottom:281.221468pt;}
.y23{bottom:282.730938pt;}
.y1ae{bottom:288.747363pt;}
.y12f{bottom:289.761465pt;}
.yc2{bottom:290.560115pt;}
.ydf{bottom:293.888135pt;}
.y8a{bottom:294.550802pt;}
.y5c{bottom:294.553468pt;}
.y22{bottom:296.062938pt;}
.y1ad{bottom:300.077363pt;}
.y15f{bottom:300.426799pt;}
.ya7{bottom:301.222781pt;}
.y12e{bottom:303.097465pt;}
.yc1{bottom:303.892115pt;}
.yde{bottom:307.220135pt;}
.y5b{bottom:307.885468pt;}
.y21{bottom:309.396271pt;}
.y1ac{bottom:311.407363pt;}
.ya6{bottom:314.554781pt;}
.y12d{bottom:316.429465pt;}
.yc0{bottom:317.224115pt;}
.ydd{bottom:320.552135pt;}
.y5a{bottom:321.217468pt;}
.y20{bottom:322.733605pt;}
.y1ab{bottom:322.737363pt;}
.y89{bottom:323.900115pt;}
.ya5{bottom:327.886781pt;}
.y12c{bottom:329.761465pt;}
.ybf{bottom:330.556115pt;}
.ydc{bottom:333.889448pt;}
.y1aa{bottom:334.067363pt;}
.y59{bottom:334.550802pt;}
.y1f{bottom:336.065605pt;}
.y88{bottom:337.232115pt;}
.ya4{bottom:341.218781pt;}
.y12b{bottom:343.097465pt;}
.ybe{bottom:343.888115pt;}
.y1a9{bottom:345.397363pt;}
.ydb{bottom:347.221448pt;}
.y1e{bottom:349.397605pt;}
.y87{bottom:350.564115pt;}
.ya3{bottom:354.550781pt;}
.y12a{bottom:356.429465pt;}
.y15e{bottom:356.430799pt;}
.y1a8{bottom:356.727363pt;}
.ybd{bottom:357.220115pt;}
.yda{bottom:360.553448pt;}
.y1d{bottom:362.729605pt;}
.y58{bottom:363.890781pt;}
.y86{bottom:363.896115pt;}
.y1a7{bottom:368.057363pt;}
.y129{bottom:369.761465pt;}
.y15d{bottom:369.762799pt;}
.ybc{bottom:370.552115pt;}
.yd9{bottom:373.885448pt;}
.y1c{bottom:376.112280pt;}
.y57{bottom:377.222781pt;}
.y85{bottom:377.228115pt;}
.y1a6{bottom:379.387363pt;}
.y128{bottom:383.093465pt;}
.y15c{bottom:383.094799pt;}
.ybb{bottom:383.884115pt;}
.ya2{bottom:383.890781pt;}
.yd8{bottom:387.218781pt;}
.y56{bottom:390.554781pt;}
.y84{bottom:390.560115pt;}
.y1a5{bottom:390.717363pt;}
.y15b{bottom:396.429465pt;}
.ya1{bottom:397.222781pt;}
.yd7{bottom:400.550781pt;}
.y1a4{bottom:402.047363pt;}
.y55{bottom:403.886781pt;}
.y83{bottom:403.892115pt;}
.y15a{bottom:409.761465pt;}
.ya0{bottom:410.554781pt;}
.y127{bottom:412.430799pt;}
.y1a3{bottom:413.377363pt;}
.y1b{bottom:416.240280pt;}
.y54{bottom:417.218781pt;}
.y82{bottom:417.224115pt;}
.y159{bottom:423.093465pt;}
.y9f{bottom:423.886781pt;}
.y1a2{bottom:424.707363pt;}
.y126{bottom:425.762799pt;}
.y53{bottom:430.556115pt;}
.y1a{bottom:430.904280pt;}
.y1a1{bottom:436.037363pt;}
.yfc{bottom:436.778780pt;}
.y9e{bottom:437.218781pt;}
.y125{bottom:439.094799pt;}
.yd6{bottom:442.858818pt;}
.y52{bottom:443.888115pt;}
.y19{bottom:445.568280pt;}
.y1a0{bottom:447.367363pt;}
.yfb{bottom:450.110780pt;}
.y9d{bottom:450.550781pt;}
.y124{bottom:452.430799pt;}
.y158{bottom:452.433465pt;}
.yf3{bottom:452.830792pt;}
.yd5{bottom:456.190818pt;}
.y51{bottom:457.220115pt;}
.y19f{bottom:458.697363pt;}
.y18{bottom:460.232280pt;}
.yfa{bottom:463.442780pt;}
.y123{bottom:465.762799pt;}
.y157{bottom:465.765465pt;}
.yf2{bottom:466.162792pt;}
.yd4{bottom:469.522818pt;}
.y19e{bottom:470.027363pt;}
.y50{bottom:470.552115pt;}
.y17{bottom:474.896280pt;}
.yf9{bottom:476.774780pt;}
.y122{bottom:479.094799pt;}
.y156{bottom:479.097465pt;}
.yf1{bottom:479.494792pt;}
.y19d{bottom:481.357363pt;}
.yd3{bottom:482.854818pt;}
.y81{bottom:483.884115pt;}
.y4f{bottom:483.888115pt;}
.y16{bottom:489.560280pt;}
.y155{bottom:492.429465pt;}
.y121{bottom:492.433465pt;}
.y19c{bottom:492.687363pt;}
.y4e{bottom:497.220115pt;}
.yba{bottom:503.018648pt;}
.y19b{bottom:504.017363pt;}
.y15{bottom:504.224280pt;}
.y154{bottom:505.761465pt;}
.y120{bottom:505.765465pt;}
.y4d{bottom:510.552115pt;}
.y19a{bottom:515.347363pt;}
.yb9{bottom:516.350648pt;}
.y14{bottom:518.888280pt;}
.y153{bottom:519.094799pt;}
.y11f{bottom:519.097465pt;}
.y4c{bottom:523.890781pt;}
.y199{bottom:526.677363pt;}
.yb8{bottom:529.682648pt;}
.y152{bottom:532.426799pt;}
.y11e{bottom:532.429465pt;}
.y9b{bottom:533.470806pt;}
.y13{bottom:533.552280pt;}
.y4b{bottom:537.222781pt;}
.y198{bottom:538.007363pt;}
.yb7{bottom:543.014648pt;}
.y11d{bottom:545.761465pt;}
.y9a{bottom:546.802806pt;}
.y12{bottom:548.216280pt;}
.y197{bottom:549.337363pt;}
.y4a{bottom:550.554781pt;}
.y11c{bottom:559.093465pt;}
.y99{bottom:560.134806pt;}
.y196{bottom:560.667363pt;}
.y151{bottom:561.766799pt;}
.y11{bottom:562.880280pt;}
.y49{bottom:563.886781pt;}
.y195{bottom:571.997363pt;}
.y150{bottom:575.098799pt;}
.y48{bottom:577.218781pt;}
.y10{bottom:577.544280pt;}
.y194{bottom:583.327363pt;}
.y14f{bottom:588.430799pt;}
.y11b{bottom:588.433465pt;}
.y7a{bottom:589.578788pt;}
.y47{bottom:590.553448pt;}
.yf{bottom:592.208280pt;}
.y193{bottom:594.657363pt;}
.y14e{bottom:601.762799pt;}
.y11a{bottom:601.765465pt;}
.y79{bottom:602.910788pt;}
.y46{bottom:603.885448pt;}
.y192{bottom:605.987363pt;}
.ye{bottom:606.872280pt;}
.y14d{bottom:615.094799pt;}
.y119{bottom:615.097465pt;}
.y78{bottom:616.242788pt;}
.y45{bottom:617.218781pt;}
.y191{bottom:617.317363pt;}
.yd{bottom:621.536280pt;}
.y118{bottom:628.429465pt;}
.y190{bottom:628.647363pt;}
.y77{bottom:629.574788pt;}
.y1d2{bottom:630.285032pt;}
.y44{bottom:630.553448pt;}
.yc{bottom:636.200280pt;}
.y18f{bottom:639.977363pt;}
.y117{bottom:641.761465pt;}
.y43{bottom:643.885448pt;}
.yb{bottom:650.864280pt;}
.y18e{bottom:651.307363pt;}
.y116{bottom:655.093465pt;}
.y14c{bottom:655.094799pt;}
.y1d1{bottom:656.949031pt;}
.y42{bottom:657.218781pt;}
.y18d{bottom:662.637363pt;}
.ya{bottom:665.528280pt;}
.y115{bottom:668.426799pt;}
.y1d0{bottom:670.281031pt;}
.y41{bottom:670.554781pt;}
.y18c{bottom:673.967363pt;}
.y1cf{bottom:683.613031pt;}
.y40{bottom:683.886781pt;}
.y18b{bottom:685.297363pt;}
.y9{bottom:692.194906pt;}
.y18a{bottom:696.627363pt;}
.y1ce{bottom:696.945031pt;}
.y3f{bottom:697.218781pt;}
.y114{bottom:697.761506pt;}
.y14b{bottom:697.768173pt;}
.y189{bottom:707.957363pt;}
.y1cd{bottom:710.277031pt;}
.y3e{bottom:710.557448pt;}
.y113{bottom:711.094839pt;}
.y14a{bottom:711.100173pt;}
.y188{bottom:719.287363pt;}
.y8{bottom:721.512239pt;}
.y1cc{bottom:723.609031pt;}
.y3d{bottom:723.889448pt;}
.y112{bottom:724.428173pt;}
.y149{bottom:724.432173pt;}
.y187{bottom:730.617363pt;}
.y1cb{bottom:736.941031pt;}
.y3c{bottom:737.221448pt;}
.y111{bottom:737.764173pt;}
.y186{bottom:741.947363pt;}
.y1ca{bottom:750.273031pt;}
.y3b{bottom:750.553448pt;}
.y110{bottom:751.096173pt;}
.y185{bottom:753.277363pt;}
.y7{bottom:761.517572pt;}
.y3a{bottom:763.885448pt;}
.y10f{bottom:764.428173pt;}
.y184{bottom:764.607363pt;}
.y1c9{bottom:770.262364pt;}
.y183{bottom:775.937363pt;}
.y39{bottom:777.218781pt;}
.y10e{bottom:777.760173pt;}
.y148{bottom:777.766839pt;}
.y1c8{bottom:783.594364pt;}
.y182{bottom:787.267363pt;}
.y38{bottom:790.552115pt;}
.y10d{bottom:791.093506pt;}
.y147{bottom:791.098839pt;}
.y181{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y1c7{bottom:803.598364pt;}
.y37{bottom:803.885448pt;}
.y146{bottom:804.430839pt;}
.y180{bottom:809.927363pt;}
.y36{bottom:817.217448pt;}
.y145{bottom:817.762839pt;}
.y10c{bottom:820.436173pt;}
.y17f{bottom:821.257363pt;}
.y1c6{bottom:823.602364pt;}
.y144{bottom:831.094839pt;}
.y17e{bottom:832.587363pt;}
.y10b{bottom:833.768173pt;}
.y5{bottom:841.528239pt;}
.y1c5{bottom:843.606364pt;}
.y17d{bottom:843.917363pt;}
.y143{bottom:844.430839pt;}
.y10a{bottom:847.100173pt;}
.y30{bottom:848.326009pt;}
.y17c{bottom:855.247363pt;}
.y1c4{bottom:856.939697pt;}
.y142{bottom:857.762839pt;}
.y109{bottom:860.432173pt;}
.y17b{bottom:866.577363pt;}
.y6b{bottom:870.415365pt;}
.y141{bottom:871.094839pt;}
.y108{bottom:873.764173pt;}
.y17a{bottom:877.907363pt;}
.y1c3{bottom:883.606364pt;}
.y140{bottom:884.429506pt;}
.y107{bottom:887.096173pt;}
.y179{bottom:889.237363pt;}
.y1c2{bottom:896.939697pt;}
.y13f{bottom:897.761506pt;}
.y75{bottom:898.769893pt;}
.y106{bottom:900.428173pt;}
.y178{bottom:900.567363pt;}
.y13e{bottom:911.093506pt;}
.y177{bottom:911.897363pt;}
.y105{bottom:913.765506pt;}
.y74{bottom:914.356559pt;}
.y176{bottom:923.227363pt;}
.y1c1{bottom:924.913067pt;}
.y104{bottom:927.097506pt;}
.y6c{bottom:929.924561pt;}
.y73{bottom:929.943226pt;}
.y175{bottom:934.557363pt;}
.y1c0{bottom:938.245067pt;}
.y103{bottom:940.429506pt;}
.y6f{bottom:945.520561pt;}
.y72{bottom:945.529893pt;}
.y174{bottom:945.887363pt;}
.y1bf{bottom:951.577067pt;}
.y102{bottom:953.761506pt;}
.y6e{bottom:955.516561pt;}
.y71{bottom:955.525893pt;}
.y173{bottom:957.217363pt;}
.y1be{bottom:964.910400pt;}
.y6d{bottom:965.512561pt;}
.y70{bottom:965.521893pt;}
.y101{bottom:967.093506pt;}
.y172{bottom:968.547363pt;}
.y76{bottom:1013.902507pt;}
.y80{bottom:1013.996908pt;}
.y35{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h2{height:30.166667pt;}
.h2e{height:31.476562pt;}
.h8{height:34.523438pt;}
.h1d{height:36.922667pt;}
.h12{height:37.139599pt;}
.h1c{height:38.229333pt;}
.h27{height:38.359375pt;}
.h30{height:39.560000pt;}
.h2f{height:40.080000pt;}
.h3{height:40.604167pt;}
.h31{height:40.960000pt;}
.h1a{height:42.195312pt;}
.h11{height:43.141927pt;}
.h7{height:43.718750pt;}
.h32{height:44.834667pt;}
.h9{height:45.703125pt;}
.ha{height:47.472000pt;}
.h1f{height:47.608849pt;}
.h22{height:47.624767pt;}
.h2b{height:47.629938pt;}
.h2d{height:47.630101pt;}
.h23{height:47.630141pt;}
.h18{height:47.630264pt;}
.h21{height:47.635027pt;}
.h26{height:47.635271pt;}
.hb{height:47.635434pt;}
.h19{height:47.635597pt;}
.hf{height:47.635963pt;}
.he{height:47.640767pt;}
.h15{height:47.640930pt;}
.h2a{height:47.645938pt;}
.hd{height:47.646101pt;}
.h24{height:47.646141pt;}
.h17{height:47.646264pt;}
.h2c{height:47.646732pt;}
.h20{height:47.650946pt;}
.hc{height:47.651434pt;}
.h29{height:47.651473pt;}
.h1e{height:47.651475pt;}
.h16{height:47.651597pt;}
.h13{height:47.651922pt;}
.h25{height:47.656605pt;}
.h28{height:47.656767pt;}
.h14{height:48.096000pt;}
.h1b{height:49.152000pt;}
.h4{height:50.755208pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h6{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.425200pt;}
.x3{left:54.803202pt;}
.x6{left:125.685069pt;}
.x5{left:207.874003pt;}
.x9{left:212.062927pt;}
.x8{left:223.869598pt;}
.xe{left:225.874125pt;}
.xf{left:268.887736pt;}
.xa{left:272.738927pt;}
.xb{left:338.492261pt;}
.x4{left:521.612549pt;}
.xc{left:708.791829pt;}
.x2{left:710.134766pt;}
.xd{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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