
    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_5d898feea6a16e901636af02.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_5ada203ef14d3d48de102ff8.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8a5c4bc6a4e72fdfde5ff448.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3a9ead09f1bfb2d2ed7e87fe.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_55bdd3c99c1f3355c1cc89b3.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_4fcf577d7e6703f88f5a95cc.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_9b220b0aefb1a0e467d57217.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1de78dc6ed0e8e6e1f3cfc9b.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_6235d80bf2e6bc50e3332072.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;}
.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);}
.v2{vertical-align:-21.000000px;}
.v4{vertical-align:-17.849991px;}
.v5{vertical-align:-10.853927px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.762110px;}
.v6{vertical-align:29.694600px;}
.ls5e{letter-spacing:-2.880000px;}
.ls59{letter-spacing:-1.215000px;}
.ls57{letter-spacing:-1.080000px;}
.ls3a{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-0.882000px;}
.ls30{letter-spacing:-0.864000px;}
.ls4a{letter-spacing:-0.756000px;}
.ls1b{letter-spacing:-0.702000px;}
.ls5c{letter-spacing:-0.630000px;}
.ls5a{letter-spacing:-0.495000px;}
.ls2e{letter-spacing:-0.486000px;}
.ls4c{letter-spacing:-0.450000px;}
.ls13{letter-spacing:-0.378000px;}
.ls51{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.324000px;}
.ls50{letter-spacing:-0.315000px;}
.ls20{letter-spacing:-0.270000px;}
.ls4f{letter-spacing:-0.225000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls48{letter-spacing:-0.210600px;}
.ls32{letter-spacing:-0.210000px;}
.ls56{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.175500px;}
.ls12{letter-spacing:-0.162000px;}
.ls4b{letter-spacing:-0.135000px;}
.ls2b{letter-spacing:-0.108000px;}
.ls4d{letter-spacing:-0.090000px;}
.ls16{letter-spacing:-0.054000px;}
.ls5f{letter-spacing:-0.045000px;}
.ls11{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001331px;}
.ls1{letter-spacing:0.013223px;}
.ls25{letter-spacing:0.016186px;}
.ls10{letter-spacing:0.021381px;}
.ls36{letter-spacing:0.021627px;}
.ls7{letter-spacing:0.035100px;}
.ls52{letter-spacing:0.045000px;}
.ls6{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.070200px;}
.ls58{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.105300px;}
.ls2a{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.125927px;}
.ls3d{letter-spacing:0.126293px;}
.ls54{letter-spacing:0.135000px;}
.ls49{letter-spacing:0.140400px;}
.lsb{letter-spacing:0.143280px;}
.ls22{letter-spacing:0.144340px;}
.lsd{letter-spacing:0.157950px;}
.ls5{letter-spacing:0.159019px;}
.ls40{letter-spacing:0.159566px;}
.ls9{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.175500px;}
.ls42{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.189000px;}
.ls43{letter-spacing:0.202500px;}
.ls3c{letter-spacing:0.207876px;}
.ls38{letter-spacing:0.209638px;}
.ls2{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.221459px;}
.ls4e{letter-spacing:0.225000px;}
.ls28{letter-spacing:0.238020px;}
.ls17{letter-spacing:0.243619px;}
.ls27{letter-spacing:0.245700px;}
.ls24{letter-spacing:0.248388px;}
.ls41{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.287964px;}
.ls3b{letter-spacing:0.296410px;}
.ls5b{letter-spacing:0.315000px;}
.ls1c{letter-spacing:0.315900px;}
.lse{letter-spacing:0.324000px;}
.ls53{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.367200px;}
.ls14{letter-spacing:0.378000px;}
.ls3f{letter-spacing:0.386100px;}
.ls37{letter-spacing:0.397747px;}
.ls3e{letter-spacing:0.403650px;}
.ls44{letter-spacing:0.405000px;}
.ls47{letter-spacing:0.421200px;}
.ls18{letter-spacing:0.432000px;}
.ls5d{letter-spacing:0.450000px;}
.ls19{letter-spacing:0.486000px;}
.ls34{letter-spacing:0.491400px;}
.ls35{letter-spacing:0.516674px;}
.ls1a{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.756000px;}
.ls31{letter-spacing:0.918000px;}
.ls1e{letter-spacing:1.026000px;}
.ls55{letter-spacing:1.080000px;}
.ls45{letter-spacing:1.080085px;}
.ls0{letter-spacing:3.000000px;}
.lsf{letter-spacing:6.663150px;}
.ls2d{letter-spacing:300.635993px;}
.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;}
}
.ws3d{word-spacing:-54.000000px;}
.ws0{word-spacing:-48.000000px;}
.ws6{word-spacing:-33.150000px;}
.ws1{word-spacing:-15.000000px;}
.ws6b{word-spacing:-13.860000px;}
.ws71{word-spacing:-12.906000px;}
.ws16{word-spacing:-12.528000px;}
.ws22{word-spacing:-12.366000px;}
.ws2b{word-spacing:-12.258000px;}
.wsa{word-spacing:-11.880000px;}
.ws57{word-spacing:-11.772000px;}
.ws98{word-spacing:-11.718000px;}
.ws23{word-spacing:-11.664000px;}
.ws53{word-spacing:-11.502000px;}
.ws6c{word-spacing:-10.530000px;}
.ws7d{word-spacing:-10.440000px;}
.ws85{word-spacing:-10.417500px;}
.ws6e{word-spacing:-10.350000px;}
.ws84{word-spacing:-10.215000px;}
.ws6d{word-spacing:-9.945000px;}
.ws86{word-spacing:-9.675000px;}
.ws21{word-spacing:-9.600000px;}
.ws83{word-spacing:-9.225000px;}
.ws69{word-spacing:-8.459100px;}
.ws66{word-spacing:-8.388900px;}
.ws24{word-spacing:-8.283600px;}
.ws56{word-spacing:-8.232000px;}
.ws4{word-spacing:-8.143200px;}
.ws6a{word-spacing:-8.108100px;}
.ws3c{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws68{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws52{word-spacing:-7.792200px;}
.ws67{word-spacing:-7.757100px;}
.ws93{word-spacing:-5.580000px;}
.ws34{word-spacing:-5.508000px;}
.ws5d{word-spacing:-4.284000px;}
.ws4c{word-spacing:-2.376000px;}
.ws27{word-spacing:-2.214000px;}
.ws31{word-spacing:-2.052000px;}
.ws60{word-spacing:-1.998000px;}
.ws32{word-spacing:-1.728000px;}
.ws4e{word-spacing:-1.458000px;}
.ws4b{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.242000px;}
.ws9{word-spacing:-1.188000px;}
.ws5a{word-spacing:-1.134000px;}
.wsb{word-spacing:-1.080000px;}
.ws78{word-spacing:-1.035000px;}
.ws2d{word-spacing:-1.026000px;}
.ws89{word-spacing:-0.990000px;}
.ws3e{word-spacing:-0.972000px;}
.ws7e{word-spacing:-0.945000px;}
.ws77{word-spacing:-0.918000px;}
.ws39{word-spacing:-0.864000px;}
.ws47{word-spacing:-0.810000px;}
.ws10{word-spacing:-0.756000px;}
.ws8d{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.702000px;}
.ws88{word-spacing:-0.675000px;}
.wse{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.594000px;}
.ws6f{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.486000px;}
.ws8b{word-spacing:-0.450000px;}
.ws72{word-spacing:-0.421200px;}
.ws4a{word-spacing:-0.378000px;}
.ws87{word-spacing:-0.360000px;}
.ws90{word-spacing:-0.315000px;}
.ws76{word-spacing:-0.264000px;}
.ws7a{word-spacing:-0.225000px;}
.ws8{word-spacing:-0.216000px;}
.ws7c{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.162000px;}
.ws49{word-spacing:-0.108000px;}
.ws7b{word-spacing:-0.090000px;}
.ws2c{word-spacing:-0.054000px;}
.ws82{word-spacing:-0.045000px;}
.ws3{word-spacing:-0.039000px;}
.ws7{word-spacing:0.000000px;}
.ws45{word-spacing:0.054000px;}
.ws95{word-spacing:0.090000px;}
.ws19{word-spacing:0.108000px;}
.ws8c{word-spacing:0.135000px;}
.ws59{word-spacing:0.162000px;}
.ws58{word-spacing:0.175500px;}
.ws91{word-spacing:0.180000px;}
.ws73{word-spacing:0.210600px;}
.ws3f{word-spacing:0.216000px;}
.ws94{word-spacing:0.225000px;}
.ws44{word-spacing:0.270000px;}
.ws81{word-spacing:0.315000px;}
.ws48{word-spacing:0.324000px;}
.ws96{word-spacing:0.360000px;}
.ws29{word-spacing:0.378000px;}
.ws14{word-spacing:0.432000px;}
.ws79{word-spacing:0.450000px;}
.ws2e{word-spacing:0.486000px;}
.ws74{word-spacing:0.540000px;}
.ws40{word-spacing:0.594000px;}
.ws92{word-spacing:0.675000px;}
.ws17{word-spacing:0.702000px;}
.ws25{word-spacing:0.756000px;}
.ws15{word-spacing:0.810000px;}
.ws8e{word-spacing:0.855000px;}
.ws11{word-spacing:0.864000px;}
.wsc{word-spacing:0.972000px;}
.ws8a{word-spacing:0.990000px;}
.ws5e{word-spacing:1.026000px;}
.ws7f{word-spacing:1.035000px;}
.ws70{word-spacing:1.080000px;}
.ws46{word-spacing:1.134000px;}
.ws80{word-spacing:1.170000px;}
.ws38{word-spacing:1.188000px;}
.ws8f{word-spacing:1.215000px;}
.wsf{word-spacing:1.242000px;}
.ws41{word-spacing:1.404000px;}
.ws99{word-spacing:1.458000px;}
.ws42{word-spacing:1.512000px;}
.ws50{word-spacing:1.566000px;}
.ws51{word-spacing:1.620000px;}
.ws18{word-spacing:1.998000px;}
.ws5b{word-spacing:2.052000px;}
.ws2a{word-spacing:2.484000px;}
.ws37{word-spacing:2.538000px;}
.ws5c{word-spacing:2.592000px;}
.ws97{word-spacing:2.880000px;}
.ws4d{word-spacing:2.916000px;}
.ws35{word-spacing:2.970000px;}
.ws9b{word-spacing:3.024000px;}
.ws2f{word-spacing:3.078000px;}
.ws9c{word-spacing:3.132000px;}
.ws64{word-spacing:3.186000px;}
.ws33{word-spacing:3.240000px;}
.ws3a{word-spacing:3.294000px;}
.ws9a{word-spacing:3.348000px;}
.ws28{word-spacing:3.456000px;}
.ws30{word-spacing:3.780000px;}
.ws4f{word-spacing:4.212000px;}
.ws36{word-spacing:4.320000px;}
.ws65{word-spacing:4.914000px;}
.ws61{word-spacing:5.022000px;}
.ws5f{word-spacing:5.400000px;}
.ws9f{word-spacing:5.670000px;}
.ws26{word-spacing:5.994000px;}
.wsa0{word-spacing:6.264000px;}
.ws9d{word-spacing:6.480000px;}
.ws9e{word-spacing:6.750000px;}
.ws63{word-spacing:7.020000px;}
.ws1f{word-spacing:9.027000px;}
.ws1d{word-spacing:9.741000px;}
.ws62{word-spacing:9.828000px;}
.ws20{word-spacing:10.251000px;}
.ws1e{word-spacing:10.965000px;}
.ws3b{word-spacing:15.282000px;}
.ws1a{word-spacing:17.748000px;}
.ws1c{word-spacing:21.216000px;}
.ws1b{word-spacing:21.981000px;}
.ws55{word-spacing:70.522200px;}
.ws54{word-spacing:87.192000px;}
._13{margin-left:-20.952007px;}
._15{margin-left:-15.022377px;}
._6{margin-left:-12.976259px;}
._1d{margin-left:-11.906825px;}
._7{margin-left:-10.843877px;}
._d{margin-left:-9.642683px;}
._f{margin-left:-8.521878px;}
._c{margin-left:-7.427486px;}
._8{margin-left:-5.676118px;}
._9{margin-left:-4.550829px;}
._2{margin-left:-3.196800px;}
._0{margin-left:-1.876800px;}
._3{width:1.043459px;}
._4{width:2.062141px;}
._14{width:4.104541px;}
._10{width:5.275800px;}
._1c{width:7.563000px;}
._11{width:8.682216px;}
._12{width:10.059925px;}
._5{width:12.097617px;}
._a{width:13.648800px;}
._1f{width:14.823600px;}
._16{width:15.882118px;}
._20{width:17.145000px;}
._21{width:18.351541px;}
._e{width:40.358518px;}
._1b{width:42.140705px;}
._b{width:47.608217px;}
._18{width:55.482000px;}
._1a{width:74.956793px;}
._19{width:210.280793px;}
._1e{width:250.992000px;}
._17{width:298.270800px;}
._1{width:324.196800px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{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;}
.fs8{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;}
.yaa{bottom:3.199200px;}
.y36{bottom:3.199350px;}
.yd2{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y35{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.yab{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y34{bottom:68.037452px;}
.ya9{bottom:78.099748px;}
.yc7{bottom:80.569650px;}
.y33{bottom:83.037452px;}
.yf3{bottom:83.511600px;}
.y136{bottom:89.775148px;}
.ya8{bottom:93.098248px;}
.y61{bottom:93.422704px;}
.y185{bottom:95.408284px;}
.yc6{bottom:95.568150px;}
.y32{bottom:98.037452px;}
.y135{bottom:102.521398px;}
.ya7{bottom:108.096748px;}
.y184{bottom:108.154534px;}
.y60{bottom:108.421204px;}
.yc5{bottom:110.566650px;}
.y31{bottom:113.037452px;}
.y134{bottom:115.267648px;}
.yf8{bottom:115.852950px;}
.y183{bottom:120.900784px;}
.y5f{bottom:123.419704px;}
.yc4{bottom:125.565150px;}
.y133{bottom:128.013898px;}
.y30{bottom:132.493950px;}
.yf7{bottom:133.387950px;}
.y182{bottom:133.647034px;}
.y5e{bottom:138.418204px;}
.yc3{bottom:140.563650px;}
.y132{bottom:140.760148px;}
.ya6{bottom:141.099748px;}
.y181{bottom:146.393284px;}
.yf6{bottom:150.922950px;}
.y5d{bottom:153.416704px;}
.y131{bottom:153.506398px;}
.yc2{bottom:155.562150px;}
.ya5{bottom:156.098248px;}
.y180{bottom:159.139534px;}
.y130{bottom:166.252648px;}
.y5c{bottom:168.415204px;}
.yf5{bottom:168.457950px;}
.yc1{bottom:170.560650px;}
.ya4{bottom:171.101248px;}
.y17f{bottom:171.885784px;}
.y12f{bottom:178.998898px;}
.y5b{bottom:183.419704px;}
.y17e{bottom:184.632034px;}
.yc0{bottom:185.559150px;}
.yf4{bottom:185.992950px;}
.ya3{bottom:186.099748px;}
.y12e{bottom:191.745148px;}
.y17d{bottom:197.378284px;}
.y5a{bottom:198.418204px;}
.ya2{bottom:201.098248px;}
.y12d{bottom:204.491398px;}
.y2e{bottom:210.078305px;}
.y17c{bottom:210.124534px;}
.y59{bottom:213.416704px;}
.ya1{bottom:216.104248px;}
.y12c{bottom:217.237648px;}
.ybf{bottom:218.563650px;}
.y17b{bottom:222.870784px;}
.y2d{bottom:225.076805px;}
.y58{bottom:228.415204px;}
.y12b{bottom:229.983898px;}
.ya0{bottom:231.102748px;}
.ybe{bottom:233.562150px;}
.y17a{bottom:235.617034px;}
.y2c{bottom:240.075305px;}
.y12a{bottom:242.730148px;}
.y57{bottom:243.415204px;}
.y9f{bottom:246.101248px;}
.y179{bottom:248.363284px;}
.ybd{bottom:248.560650px;}
.yf2{bottom:252.297592px;}
.y2b{bottom:255.073805px;}
.y129{bottom:255.480148px;}
.y56{bottom:258.419704px;}
.y9e{bottom:261.099748px;}
.y178{bottom:261.109534px;}
.ybc{bottom:263.559150px;}
.y2a{bottom:270.072305px;}
.y55{bottom:273.418204px;}
.y177{bottom:273.855784px;}
.y9d{bottom:276.098248px;}
.ybb{bottom:278.559150px;}
.y29{bottom:285.070805px;}
.y176{bottom:286.602034px;}
.y54{bottom:288.416704px;}
.y9c{bottom:291.101248px;}
.y175{bottom:299.348284px;}
.y28{bottom:300.070805px;}
.y53{bottom:303.415204px;}
.y128{bottom:304.980148px;}
.y9b{bottom:306.099748px;}
.yba{bottom:311.563650px;}
.y174{bottom:312.094534px;}
.y27{bottom:315.072305px;}
.y52{bottom:318.427181px;}
.y9a{bottom:321.098248px;}
.y173{bottom:324.840784px;}
.yb9{bottom:326.562150px;}
.y26{bottom:330.070805px;}
.y51{bottom:333.425681px;}
.y127{bottom:334.981648px;}
.y99{bottom:336.098248px;}
.y172{bottom:337.587034px;}
.yb8{bottom:341.560650px;}
.y25{bottom:345.072305px;}
.y50{bottom:348.424181px;}
.y126{bottom:349.980148px;}
.y171{bottom:350.333284px;}
.y98{bottom:351.105771px;}
.yb7{bottom:356.562128px;}
.y24{bottom:360.070805px;}
.y170{bottom:363.079534px;}
.y4f{bottom:363.422681px;}
.y125{bottom:364.980148px;}
.y97{bottom:366.104271px;}
.yb6{bottom:371.560628px;}
.y23{bottom:375.073805px;}
.y16f{bottom:375.825784px;}
.y4e{bottom:378.421181px;}
.y96{bottom:381.102771px;}
.yb5{bottom:386.569628px;}
.y16e{bottom:388.572034px;}
.y22{bottom:390.072305px;}
.y4d{bottom:393.419681px;}
.y124{bottom:394.989148px;}
.y95{bottom:396.101271px;}
.y16d{bottom:401.318284px;}
.yb4{bottom:401.568128px;}
.y21{bottom:405.070805px;}
.y4c{bottom:408.418181px;}
.y123{bottom:409.987648px;}
.y94{bottom:411.099771px;}
.y16c{bottom:414.064534px;}
.yb3{bottom:416.566628px;}
.y20{bottom:420.076805px;}
.y4b{bottom:423.416681px;}
.y122{bottom:424.986148px;}
.y93{bottom:426.098271px;}
.y16b{bottom:426.810784px;}
.yb2{bottom:431.565128px;}
.y1f{bottom:435.075305px;}
.y4a{bottom:438.415181px;}
.y16a{bottom:439.557034px;}
.y121{bottom:439.984648px;}
.y92{bottom:441.102771px;}
.yb1{bottom:446.563628px;}
.y1e{bottom:450.073805px;}
.y169{bottom:452.303284px;}
.y49{bottom:453.431681px;}
.y120{bottom:454.983148px;}
.y91{bottom:456.101271px;}
.yb0{bottom:461.562128px;}
.y168{bottom:465.049534px;}
.y1d{bottom:465.072305px;}
.y11f{bottom:469.981648px;}
.y90{bottom:471.099771px;}
.yaf{bottom:476.560628px;}
.y167{bottom:477.795784px;}
.y1c{bottom:480.070805px;}
.y11e{bottom:484.984648px;}
.y8f{bottom:486.098271px;}
.y48{bottom:486.425681px;}
.y166{bottom:490.542034px;}
.yae{bottom:491.560628px;}
.y1b{bottom:495.073805px;}
.y11d{bottom:499.983148px;}
.y8e{bottom:501.101271px;}
.y47{bottom:501.424181px;}
.y165{bottom:503.288284px;}
.yad{bottom:506.559128px;}
.y1a{bottom:510.072305px;}
.y11c{bottom:514.981648px;}
.y164{bottom:516.034534px;}
.y8d{bottom:516.099771px;}
.y46{bottom:516.422681px;}
.y19{bottom:525.070805px;}
.y163{bottom:528.780784px;}
.y11b{bottom:529.981648px;}
.y8c{bottom:531.098271px;}
.y45{bottom:531.421181px;}
.y18{bottom:540.072305px;}
.y162{bottom:541.527034px;}
.y11a{bottom:544.987648px;}
.y8b{bottom:546.096771px;}
.y44{bottom:546.419681px;}
.y161{bottom:554.273284px;}
.y17{bottom:555.070805px;}
.y119{bottom:559.986148px;}
.y43{bottom:561.418181px;}
.y160{bottom:567.019534px;}
.y16{bottom:570.070805px;}
.ycc{bottom:570.906600px;}
.y118{bottom:574.984648px;}
.y42{bottom:576.416681px;}
.y8a{bottom:579.147771px;}
.y15f{bottom:579.765784px;}
.y15{bottom:585.103769px;}
.y117{bottom:589.983148px;}
.y41{bottom:591.415181px;}
.y15e{bottom:592.512034px;}
.y89{bottom:594.146271px;}
.y14{bottom:600.102269px;}
.yf1{bottom:601.986148px;}
.yd1{bottom:603.248123px;}
.y1a0{bottom:604.070707px;}
.y116{bottom:604.981648px;}
.y15d{bottom:605.258284px;}
.y40{bottom:606.413681px;}
.y88{bottom:609.144771px;}
.yf0{bottom:616.984648px;}
.y15c{bottom:618.004534px;}
.y115{bottom:619.981648px;}
.yd0{bottom:620.783123px;}
.y87{bottom:624.143271px;}
.y15b{bottom:630.750784px;}
.yef{bottom:631.983148px;}
.y19f{bottom:634.067705px;}
.y114{bottom:634.981648px;}
.ycf{bottom:638.318123px;}
.y86{bottom:639.141771px;}
.y3f{bottom:639.421181px;}
.y15a{bottom:643.497034px;}
.y13{bottom:645.246269px;}
.yee{bottom:646.981648px;}
.y19e{bottom:649.066205px;}
.y113{bottom:649.981648px;}
.y85{bottom:654.140271px;}
.y3e{bottom:654.419681px;}
.yce{bottom:655.853123px;}
.y159{bottom:656.243284px;}
.y12{bottom:661.743269px;}
.yed{bottom:661.987648px;}
.y19d{bottom:664.064705px;}
.y112{bottom:664.983148px;}
.y158{bottom:668.989534px;}
.y84{bottom:669.138771px;}
.y3d{bottom:669.418181px;}
.ycd{bottom:673.388123px;}
.yec{bottom:676.986148px;}
.y11{bottom:678.240269px;}
.y19c{bottom:679.063205px;}
.y111{bottom:679.981648px;}
.y157{bottom:681.735784px;}
.y83{bottom:684.137271px;}
.y3c{bottom:684.416681px;}
.yeb{bottom:691.984648px;}
.y19b{bottom:694.061705px;}
.y156{bottom:694.482034px;}
.y10{bottom:694.737269px;}
.y110{bottom:694.981648px;}
.y82{bottom:699.135771px;}
.y3b{bottom:699.415181px;}
.yea{bottom:706.983148px;}
.y155{bottom:707.228284px;}
.y19a{bottom:709.060205px;}
.y10f{bottom:709.986194px;}
.yf{bottom:711.234269px;}
.y81{bottom:714.134271px;}
.y3a{bottom:714.415181px;}
.y154{bottom:719.974534px;}
.ye9{bottom:721.981648px;}
.y199{bottom:724.058705px;}
.y10e{bottom:724.984694px;}
.ye{bottom:727.731269px;}
.y80{bottom:729.132771px;}
.y39{bottom:729.413681px;}
.y153{bottom:732.720784px;}
.ye8{bottom:736.981648px;}
.y198{bottom:739.057205px;}
.y10d{bottom:739.983194px;}
.ycb{bottom:742.836196px;}
.y7f{bottom:744.131271px;}
.yd{bottom:744.228269px;}
.y38{bottom:744.413681px;}
.y152{bottom:745.467034px;}
.ye7{bottom:751.984694px;}
.y10c{bottom:754.981694px;}
.yca{bottom:757.834696px;}
.y151{bottom:758.213284px;}
.y7e{bottom:759.129771px;}
.yc{bottom:760.725269px;}
.y197{bottom:761.546659px;}
.ye6{bottom:766.983194px;}
.y10b{bottom:769.981694px;}
.y150{bottom:770.959534px;}
.yc9{bottom:772.833196px;}
.y7d{bottom:774.128271px;}
.y196{bottom:776.545159px;}
.yb{bottom:777.222269px;}
.ye5{bottom:781.981694px;}
.y66{bottom:783.637622px;}
.y14f{bottom:783.705784px;}
.y10a{bottom:784.995194px;}
.yc8{bottom:787.831696px;}
.y7c{bottom:789.126771px;}
.ya{bottom:793.719269px;}
.y14e{bottom:796.452034px;}
.ye4{bottom:796.980194px;}
.y65{bottom:798.636122px;}
.y195{bottom:799.049659px;}
.y109{bottom:799.993694px;}
.y7b{bottom:804.125271px;}
.y14d{bottom:809.198284px;}
.y64{bottom:813.634622px;}
.y108{bottom:814.992194px;}
.y7a{bottom:819.123771px;}
.y194{bottom:821.554159px;}
.y14c{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y63{bottom:828.633122px;}
.y9{bottom:828.969269px;}
.ye3{bottom:829.983194px;}
.y107{bottom:829.990694px;}
.y79{bottom:834.122271px;}
.y14b{bottom:834.690784px;}
.y62{bottom:843.631622px;}
.y193{bottom:844.058659px;}
.ye2{bottom:844.981694px;}
.y106{bottom:844.989194px;}
.y14a{bottom:847.437034px;}
.y78{bottom:849.120771px;}
.y7{bottom:856.707269px;}
.y192{bottom:859.057159px;}
.y105{bottom:859.987694px;}
.ye1{bottom:859.993694px;}
.y149{bottom:860.183284px;}
.y77{bottom:864.119271px;}
.y148{bottom:872.929534px;}
.y191{bottom:874.057159px;}
.y104{bottom:874.986194px;}
.ye0{bottom:874.992194px;}
.y76{bottom:879.117771px;}
.y147{bottom:885.675784px;}
.y103{bottom:889.984694px;}
.ydf{bottom:889.990694px;}
.y75{bottom:894.116271px;}
.y146{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y190{bottom:904.057159px;}
.y102{bottom:904.983194px;}
.yde{bottom:904.989194px;}
.y74{bottom:909.114771px;}
.y145{bottom:911.168284px;}
.y18f{bottom:919.057159px;}
.y101{bottom:919.981694px;}
.ydd{bottom:919.987694px;}
.y144{bottom:923.914534px;}
.y73{bottom:924.113271px;}
.y100{bottom:934.989194px;}
.y143{bottom:936.660784px;}
.y72{bottom:939.111771px;}
.y5{bottom:946.719269px;}
.y142{bottom:949.407034px;}
.yff{bottom:949.987694px;}
.y18e{bottom:950.527200px;}
.ydc{bottom:952.981694px;}
.y71{bottom:954.110271px;}
.y2f{bottom:954.366760px;}
.y141{bottom:962.153284px;}
.yfe{bottom:964.986194px;}
.y18d{bottom:965.525700px;}
.ydb{bottom:967.992194px;}
.y70{bottom:969.108771px;}
.y140{bottom:974.899534px;}
.yfd{bottom:979.984694px;}
.y18c{bottom:980.524200px;}
.yda{bottom:982.990694px;}
.y6f{bottom:984.107271px;}
.y13f{bottom:987.645784px;}
.yfc{bottom:994.983194px;}
.y18b{bottom:995.524200px;}
.yd9{bottom:997.989194px;}
.y6e{bottom:999.105771px;}
.y13e{bottom:1000.392034px;}
.yfb{bottom:1009.981694px;}
.yd8{bottom:1012.987694px;}
.y13d{bottom:1013.138284px;}
.y6d{bottom:1014.104271px;}
.yfa{bottom:1024.980194px;}
.y18a{bottom:1025.528700px;}
.y13c{bottom:1025.884534px;}
.yd7{bottom:1027.986194px;}
.y6c{bottom:1029.102771px;}
.y13b{bottom:1038.630784px;}
.yf9{bottom:1039.980194px;}
.y189{bottom:1040.527200px;}
.yd6{bottom:1042.984694px;}
.y6b{bottom:1044.101271px;}
.y13a{bottom:1051.377034px;}
.y188{bottom:1055.525700px;}
.yd5{bottom:1057.983194px;}
.y6a{bottom:1059.099771px;}
.y139{bottom:1064.123284px;}
.y187{bottom:1070.524200px;}
.yd4{bottom:1072.981694px;}
.y69{bottom:1074.098271px;}
.y138{bottom:1076.869534px;}
.y186{bottom:1085.524200px;}
.yd3{bottom:1087.980194px;}
.y68{bottom:1089.096771px;}
.y137{bottom:1089.615784px;}
.y67{bottom:1140.640320px;}
.yac{bottom:1140.746521px;}
.y37{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h7{height:28.050293px;}
.h8{height:28.183594px;}
.h11{height:30.684677px;}
.h2{height:33.937500px;}
.h23{height:35.411133px;}
.h9{height:38.838867px;}
.h1d{height:41.538000px;}
.h1c{height:43.008000px;}
.h6{height:43.154297px;}
.h26{height:44.505000px;}
.h24{height:45.090000px;}
.h3{height:45.679688px;}
.h25{height:46.080000px;}
.h14{height:47.469727px;}
.h12{height:48.534668px;}
.h13{height:49.373525px;}
.h27{height:50.439000px;}
.ha{height:53.406000px;}
.hb{height:53.476010px;}
.h20{height:53.553680px;}
.h1e{height:53.559680px;}
.h1a{height:53.571314px;}
.h1f{height:53.577680px;}
.hf{height:53.583863px;}
.h22{height:53.589680px;}
.h17{height:53.589863px;}
.he{height:53.595863px;}
.h1b{height:53.601406px;}
.hd{height:53.601863px;}
.h19{height:53.607314px;}
.h21{height:53.607680px;}
.hc{height:53.607863px;}
.h15{height:53.608046px;}
.h16{height:54.108000px;}
.h18{height:55.296000px;}
.h4{height:57.099609px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.228350px;}
.x3{left:61.653603px;}
.xa{left:141.395702px;}
.x5{left:233.858253px;}
.xe{left:238.561343px;}
.x9{left:251.856027px;}
.xf{left:254.108253px;}
.x10{left:302.498703px;}
.x6{left:321.875839px;}
.xd{left:323.285843px;}
.x7{left:406.685394px;}
.x8{left:552.199950px;}
.x4{left:586.814117px;}
.xc{left:797.390808px;}
.x2{left:798.901611px;}
.x1{left:825.001190px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v4{vertical-align:-15.866659pt;}
.v5{vertical-align:-9.647935pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.677431pt;}
.v6{vertical-align:26.395200pt;}
.ls5e{letter-spacing:-2.560000pt;}
.ls59{letter-spacing:-1.080000pt;}
.ls57{letter-spacing:-0.960000pt;}
.ls3a{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.784000pt;}
.ls30{letter-spacing:-0.768000pt;}
.ls4a{letter-spacing:-0.672000pt;}
.ls1b{letter-spacing:-0.624000pt;}
.ls5c{letter-spacing:-0.560000pt;}
.ls5a{letter-spacing:-0.440000pt;}
.ls2e{letter-spacing:-0.432000pt;}
.ls4c{letter-spacing:-0.400000pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls51{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.288000pt;}
.ls50{letter-spacing:-0.280000pt;}
.ls20{letter-spacing:-0.240000pt;}
.ls4f{letter-spacing:-0.200000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls48{letter-spacing:-0.187200pt;}
.ls32{letter-spacing:-0.186667pt;}
.ls56{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.156000pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls4b{letter-spacing:-0.120000pt;}
.ls2b{letter-spacing:-0.096000pt;}
.ls4d{letter-spacing:-0.080000pt;}
.ls16{letter-spacing:-0.048000pt;}
.ls5f{letter-spacing:-0.040000pt;}
.ls11{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001183pt;}
.ls1{letter-spacing:0.011754pt;}
.ls25{letter-spacing:0.014388pt;}
.ls10{letter-spacing:0.019006pt;}
.ls36{letter-spacing:0.019224pt;}
.ls7{letter-spacing:0.031200pt;}
.ls52{letter-spacing:0.040000pt;}
.ls6{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.062400pt;}
.ls58{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.093600pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.111935pt;}
.ls3d{letter-spacing:0.112260pt;}
.ls54{letter-spacing:0.120000pt;}
.ls49{letter-spacing:0.124800pt;}
.lsb{letter-spacing:0.127360pt;}
.ls22{letter-spacing:0.128303pt;}
.lsd{letter-spacing:0.140400pt;}
.ls5{letter-spacing:0.141350pt;}
.ls40{letter-spacing:0.141836pt;}
.ls9{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.156000pt;}
.ls42{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.168000pt;}
.ls43{letter-spacing:0.180000pt;}
.ls3c{letter-spacing:0.184779pt;}
.ls38{letter-spacing:0.186345pt;}
.ls2{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.196853pt;}
.ls4e{letter-spacing:0.200000pt;}
.ls28{letter-spacing:0.211573pt;}
.ls17{letter-spacing:0.216550pt;}
.ls27{letter-spacing:0.218400pt;}
.ls24{letter-spacing:0.220789pt;}
.ls41{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.255968pt;}
.ls3b{letter-spacing:0.263475pt;}
.ls5b{letter-spacing:0.280000pt;}
.ls1c{letter-spacing:0.280800pt;}
.lse{letter-spacing:0.288000pt;}
.ls53{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.326400pt;}
.ls14{letter-spacing:0.336000pt;}
.ls3f{letter-spacing:0.343200pt;}
.ls37{letter-spacing:0.353553pt;}
.ls3e{letter-spacing:0.358800pt;}
.ls44{letter-spacing:0.360000pt;}
.ls47{letter-spacing:0.374400pt;}
.ls18{letter-spacing:0.384000pt;}
.ls5d{letter-spacing:0.400000pt;}
.ls19{letter-spacing:0.432000pt;}
.ls34{letter-spacing:0.436800pt;}
.ls35{letter-spacing:0.459266pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.672000pt;}
.ls31{letter-spacing:0.816000pt;}
.ls1e{letter-spacing:0.912000pt;}
.ls55{letter-spacing:0.960000pt;}
.ls45{letter-spacing:0.960076pt;}
.ls0{letter-spacing:2.666667pt;}
.lsf{letter-spacing:5.922800pt;}
.ls2d{letter-spacing:267.231994pt;}
.ws3d{word-spacing:-48.000000pt;}
.ws0{word-spacing:-42.666667pt;}
.ws6{word-spacing:-29.466667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws6b{word-spacing:-12.320000pt;}
.ws71{word-spacing:-11.472000pt;}
.ws16{word-spacing:-11.136000pt;}
.ws22{word-spacing:-10.992000pt;}
.ws2b{word-spacing:-10.896000pt;}
.wsa{word-spacing:-10.560000pt;}
.ws57{word-spacing:-10.464000pt;}
.ws98{word-spacing:-10.416000pt;}
.ws23{word-spacing:-10.368000pt;}
.ws53{word-spacing:-10.224000pt;}
.ws6c{word-spacing:-9.360000pt;}
.ws7d{word-spacing:-9.280000pt;}
.ws85{word-spacing:-9.260000pt;}
.ws6e{word-spacing:-9.200000pt;}
.ws84{word-spacing:-9.080000pt;}
.ws6d{word-spacing:-8.840000pt;}
.ws86{word-spacing:-8.600000pt;}
.ws21{word-spacing:-8.533333pt;}
.ws83{word-spacing:-8.200000pt;}
.ws69{word-spacing:-7.519200pt;}
.ws66{word-spacing:-7.456800pt;}
.ws24{word-spacing:-7.363200pt;}
.ws56{word-spacing:-7.317333pt;}
.ws4{word-spacing:-7.238400pt;}
.ws6a{word-spacing:-7.207200pt;}
.ws3c{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws68{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws52{word-spacing:-6.926400pt;}
.ws67{word-spacing:-6.895200pt;}
.ws93{word-spacing:-4.960000pt;}
.ws34{word-spacing:-4.896000pt;}
.ws5d{word-spacing:-3.808000pt;}
.ws4c{word-spacing:-2.112000pt;}
.ws27{word-spacing:-1.968000pt;}
.ws31{word-spacing:-1.824000pt;}
.ws60{word-spacing:-1.776000pt;}
.ws32{word-spacing:-1.536000pt;}
.ws4e{word-spacing:-1.296000pt;}
.ws4b{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.104000pt;}
.ws9{word-spacing:-1.056000pt;}
.ws5a{word-spacing:-1.008000pt;}
.wsb{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.920000pt;}
.ws2d{word-spacing:-0.912000pt;}
.ws89{word-spacing:-0.880000pt;}
.ws3e{word-spacing:-0.864000pt;}
.ws7e{word-spacing:-0.840000pt;}
.ws77{word-spacing:-0.816000pt;}
.ws39{word-spacing:-0.768000pt;}
.ws47{word-spacing:-0.720000pt;}
.ws10{word-spacing:-0.672000pt;}
.ws8d{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.624000pt;}
.ws88{word-spacing:-0.600000pt;}
.wse{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.528000pt;}
.ws6f{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.432000pt;}
.ws8b{word-spacing:-0.400000pt;}
.ws72{word-spacing:-0.374400pt;}
.ws4a{word-spacing:-0.336000pt;}
.ws87{word-spacing:-0.320000pt;}
.ws90{word-spacing:-0.280000pt;}
.ws76{word-spacing:-0.234667pt;}
.ws7a{word-spacing:-0.200000pt;}
.ws8{word-spacing:-0.192000pt;}
.ws7c{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws49{word-spacing:-0.096000pt;}
.ws7b{word-spacing:-0.080000pt;}
.ws2c{word-spacing:-0.048000pt;}
.ws82{word-spacing:-0.040000pt;}
.ws3{word-spacing:-0.034667pt;}
.ws7{word-spacing:0.000000pt;}
.ws45{word-spacing:0.048000pt;}
.ws95{word-spacing:0.080000pt;}
.ws19{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.120000pt;}
.ws59{word-spacing:0.144000pt;}
.ws58{word-spacing:0.156000pt;}
.ws91{word-spacing:0.160000pt;}
.ws73{word-spacing:0.187200pt;}
.ws3f{word-spacing:0.192000pt;}
.ws94{word-spacing:0.200000pt;}
.ws44{word-spacing:0.240000pt;}
.ws81{word-spacing:0.280000pt;}
.ws48{word-spacing:0.288000pt;}
.ws96{word-spacing:0.320000pt;}
.ws29{word-spacing:0.336000pt;}
.ws14{word-spacing:0.384000pt;}
.ws79{word-spacing:0.400000pt;}
.ws2e{word-spacing:0.432000pt;}
.ws74{word-spacing:0.480000pt;}
.ws40{word-spacing:0.528000pt;}
.ws92{word-spacing:0.600000pt;}
.ws17{word-spacing:0.624000pt;}
.ws25{word-spacing:0.672000pt;}
.ws15{word-spacing:0.720000pt;}
.ws8e{word-spacing:0.760000pt;}
.ws11{word-spacing:0.768000pt;}
.wsc{word-spacing:0.864000pt;}
.ws8a{word-spacing:0.880000pt;}
.ws5e{word-spacing:0.912000pt;}
.ws7f{word-spacing:0.920000pt;}
.ws70{word-spacing:0.960000pt;}
.ws46{word-spacing:1.008000pt;}
.ws80{word-spacing:1.040000pt;}
.ws38{word-spacing:1.056000pt;}
.ws8f{word-spacing:1.080000pt;}
.wsf{word-spacing:1.104000pt;}
.ws41{word-spacing:1.248000pt;}
.ws99{word-spacing:1.296000pt;}
.ws42{word-spacing:1.344000pt;}
.ws50{word-spacing:1.392000pt;}
.ws51{word-spacing:1.440000pt;}
.ws18{word-spacing:1.776000pt;}
.ws5b{word-spacing:1.824000pt;}
.ws2a{word-spacing:2.208000pt;}
.ws37{word-spacing:2.256000pt;}
.ws5c{word-spacing:2.304000pt;}
.ws97{word-spacing:2.560000pt;}
.ws4d{word-spacing:2.592000pt;}
.ws35{word-spacing:2.640000pt;}
.ws9b{word-spacing:2.688000pt;}
.ws2f{word-spacing:2.736000pt;}
.ws9c{word-spacing:2.784000pt;}
.ws64{word-spacing:2.832000pt;}
.ws33{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.928000pt;}
.ws9a{word-spacing:2.976000pt;}
.ws28{word-spacing:3.072000pt;}
.ws30{word-spacing:3.360000pt;}
.ws4f{word-spacing:3.744000pt;}
.ws36{word-spacing:3.840000pt;}
.ws65{word-spacing:4.368000pt;}
.ws61{word-spacing:4.464000pt;}
.ws5f{word-spacing:4.800000pt;}
.ws9f{word-spacing:5.040000pt;}
.ws26{word-spacing:5.328000pt;}
.wsa0{word-spacing:5.568000pt;}
.ws9d{word-spacing:5.760000pt;}
.ws9e{word-spacing:6.000000pt;}
.ws63{word-spacing:6.240000pt;}
.ws1f{word-spacing:8.024000pt;}
.ws1d{word-spacing:8.658667pt;}
.ws62{word-spacing:8.736000pt;}
.ws20{word-spacing:9.112000pt;}
.ws1e{word-spacing:9.746667pt;}
.ws3b{word-spacing:13.584000pt;}
.ws1a{word-spacing:15.776000pt;}
.ws1c{word-spacing:18.858667pt;}
.ws1b{word-spacing:19.538667pt;}
.ws55{word-spacing:62.686400pt;}
.ws54{word-spacing:77.504000pt;}
._13{margin-left:-18.624006pt;}
._15{margin-left:-13.353224pt;}
._6{margin-left:-11.534453pt;}
._1d{margin-left:-10.583845pt;}
._7{margin-left:-9.639002pt;}
._d{margin-left:-8.571274pt;}
._f{margin-left:-7.575003pt;}
._c{margin-left:-6.602210pt;}
._8{margin-left:-5.045439pt;}
._9{margin-left:-4.045182pt;}
._2{margin-left:-2.841600pt;}
._0{margin-left:-1.668267pt;}
._3{width:0.927519pt;}
._4{width:1.833014pt;}
._14{width:3.648480pt;}
._10{width:4.689600pt;}
._1c{width:6.722667pt;}
._11{width:7.717525pt;}
._12{width:8.942155pt;}
._5{width:10.753438pt;}
._a{width:12.132267pt;}
._1f{width:13.176533pt;}
._16{width:14.117439pt;}
._20{width:15.240000pt;}
._21{width:16.312481pt;}
._e{width:35.874238pt;}
._1b{width:37.458404pt;}
._b{width:42.318415pt;}
._18{width:49.317333pt;}
._1a{width:66.628261pt;}
._19{width:186.916261pt;}
._1e{width:223.104000pt;}
._17{width:265.129600pt;}
._1{width:288.174933pt;}
.fs7{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;}
.fs8{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;}
.yaa{bottom:2.843733pt;}
.y36{bottom:2.843867pt;}
.yd2{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y35{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.yab{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y34{bottom:60.477735pt;}
.ya9{bottom:69.421999pt;}
.yc7{bottom:71.617467pt;}
.y33{bottom:73.811069pt;}
.yf3{bottom:74.232533pt;}
.y136{bottom:79.800132pt;}
.ya8{bottom:82.753999pt;}
.y61{bottom:83.042403pt;}
.y185{bottom:84.807363pt;}
.yc6{bottom:84.949467pt;}
.y32{bottom:87.144402pt;}
.y135{bottom:91.130132pt;}
.ya7{bottom:96.085999pt;}
.y184{bottom:96.137363pt;}
.y60{bottom:96.374403pt;}
.yc5{bottom:98.281467pt;}
.y31{bottom:100.477735pt;}
.y134{bottom:102.460132pt;}
.yf8{bottom:102.980400pt;}
.y183{bottom:107.467363pt;}
.y5f{bottom:109.706403pt;}
.yc4{bottom:111.613467pt;}
.y133{bottom:113.790132pt;}
.y30{bottom:117.772400pt;}
.yf7{bottom:118.567067pt;}
.y182{bottom:118.797363pt;}
.y5e{bottom:123.038403pt;}
.yc3{bottom:124.945467pt;}
.y132{bottom:125.120132pt;}
.ya6{bottom:125.421999pt;}
.y181{bottom:130.127363pt;}
.yf6{bottom:134.153733pt;}
.y5d{bottom:136.370403pt;}
.y131{bottom:136.450132pt;}
.yc2{bottom:138.277467pt;}
.ya5{bottom:138.753999pt;}
.y180{bottom:141.457363pt;}
.y130{bottom:147.780132pt;}
.y5c{bottom:149.702403pt;}
.yf5{bottom:149.740400pt;}
.yc1{bottom:151.609467pt;}
.ya4{bottom:152.089999pt;}
.y17f{bottom:152.787363pt;}
.y12f{bottom:159.110132pt;}
.y5b{bottom:163.039737pt;}
.y17e{bottom:164.117363pt;}
.yc0{bottom:164.941467pt;}
.yf4{bottom:165.327067pt;}
.ya3{bottom:165.421999pt;}
.y12e{bottom:170.440132pt;}
.y17d{bottom:175.447363pt;}
.y5a{bottom:176.371737pt;}
.ya2{bottom:178.753999pt;}
.y12d{bottom:181.770132pt;}
.y2e{bottom:186.736271pt;}
.y17c{bottom:186.777363pt;}
.y59{bottom:189.703737pt;}
.ya1{bottom:192.092665pt;}
.y12c{bottom:193.100132pt;}
.ybf{bottom:194.278800pt;}
.y17b{bottom:198.107363pt;}
.y2d{bottom:200.068271pt;}
.y58{bottom:203.035737pt;}
.y12b{bottom:204.430132pt;}
.ya0{bottom:205.424665pt;}
.ybe{bottom:207.610800pt;}
.y17a{bottom:209.437363pt;}
.y2c{bottom:213.400271pt;}
.y12a{bottom:215.760132pt;}
.y57{bottom:216.369070pt;}
.y9f{bottom:218.756665pt;}
.y179{bottom:220.767363pt;}
.ybd{bottom:220.942800pt;}
.yf2{bottom:224.264526pt;}
.y2b{bottom:226.732271pt;}
.y129{bottom:227.093465pt;}
.y56{bottom:229.706403pt;}
.y9e{bottom:232.088665pt;}
.y178{bottom:232.097363pt;}
.ybc{bottom:234.274800pt;}
.y2a{bottom:240.064271pt;}
.y55{bottom:243.038403pt;}
.y177{bottom:243.427363pt;}
.y9d{bottom:245.420665pt;}
.ybb{bottom:247.608133pt;}
.y29{bottom:253.396271pt;}
.y176{bottom:254.757363pt;}
.y54{bottom:256.370403pt;}
.y9c{bottom:258.756665pt;}
.y175{bottom:266.087363pt;}
.y28{bottom:266.729605pt;}
.y53{bottom:269.702403pt;}
.y128{bottom:271.093465pt;}
.y9b{bottom:272.088665pt;}
.yba{bottom:276.945467pt;}
.y174{bottom:277.417363pt;}
.y27{bottom:280.064271pt;}
.y52{bottom:283.046383pt;}
.y9a{bottom:285.420665pt;}
.y173{bottom:288.747363pt;}
.yb9{bottom:290.277467pt;}
.y26{bottom:293.396271pt;}
.y51{bottom:296.378383pt;}
.y127{bottom:297.761465pt;}
.y99{bottom:298.753999pt;}
.y172{bottom:300.077363pt;}
.yb8{bottom:303.609467pt;}
.y25{bottom:306.730938pt;}
.y50{bottom:309.710383pt;}
.y126{bottom:311.093465pt;}
.y171{bottom:311.407363pt;}
.y98{bottom:312.094019pt;}
.yb7{bottom:316.944114pt;}
.y24{bottom:320.062938pt;}
.y170{bottom:322.737363pt;}
.y4f{bottom:323.042383pt;}
.y125{bottom:324.426799pt;}
.y97{bottom:325.426019pt;}
.yb6{bottom:330.276114pt;}
.y23{bottom:333.398938pt;}
.y16f{bottom:334.067363pt;}
.y4e{bottom:336.374383pt;}
.y96{bottom:338.758019pt;}
.yb5{bottom:343.617447pt;}
.y16e{bottom:345.397363pt;}
.y22{bottom:346.730938pt;}
.y4d{bottom:349.706383pt;}
.y124{bottom:351.101465pt;}
.y95{bottom:352.090019pt;}
.y16d{bottom:356.727363pt;}
.yb4{bottom:356.949447pt;}
.y21{bottom:360.062938pt;}
.y4c{bottom:363.038383pt;}
.y123{bottom:364.433465pt;}
.y94{bottom:365.422019pt;}
.y16c{bottom:368.057363pt;}
.yb3{bottom:370.281447pt;}
.y20{bottom:373.401605pt;}
.y4b{bottom:376.370383pt;}
.y122{bottom:377.765465pt;}
.y93{bottom:378.754019pt;}
.y16b{bottom:379.387363pt;}
.yb2{bottom:383.613447pt;}
.y1f{bottom:386.733605pt;}
.y4a{bottom:389.702383pt;}
.y16a{bottom:390.717363pt;}
.y121{bottom:391.097465pt;}
.y92{bottom:392.091352pt;}
.yb1{bottom:396.945447pt;}
.y1e{bottom:400.065605pt;}
.y169{bottom:402.047363pt;}
.y49{bottom:403.050383pt;}
.y120{bottom:404.429465pt;}
.y91{bottom:405.423352pt;}
.yb0{bottom:410.277447pt;}
.y168{bottom:413.377363pt;}
.y1d{bottom:413.397605pt;}
.y11f{bottom:417.761465pt;}
.y90{bottom:418.755352pt;}
.yaf{bottom:423.609447pt;}
.y167{bottom:424.707363pt;}
.y1c{bottom:426.729605pt;}
.y11e{bottom:431.097465pt;}
.y8f{bottom:432.087352pt;}
.y48{bottom:432.378383pt;}
.y166{bottom:436.037363pt;}
.yae{bottom:436.942780pt;}
.y1b{bottom:440.065605pt;}
.y11d{bottom:444.429465pt;}
.y8e{bottom:445.423352pt;}
.y47{bottom:445.710383pt;}
.y165{bottom:447.367363pt;}
.yad{bottom:450.274780pt;}
.y1a{bottom:453.397605pt;}
.y11c{bottom:457.761465pt;}
.y164{bottom:458.697363pt;}
.y8d{bottom:458.755352pt;}
.y46{bottom:459.042383pt;}
.y19{bottom:466.729605pt;}
.y163{bottom:470.027363pt;}
.y11b{bottom:471.094799pt;}
.y8c{bottom:472.087352pt;}
.y45{bottom:472.374383pt;}
.y18{bottom:480.064271pt;}
.y162{bottom:481.357363pt;}
.y11a{bottom:484.433465pt;}
.y8b{bottom:485.419352pt;}
.y44{bottom:485.706383pt;}
.y161{bottom:492.687363pt;}
.y17{bottom:493.396271pt;}
.y119{bottom:497.765465pt;}
.y43{bottom:499.038383pt;}
.y160{bottom:504.017363pt;}
.y16{bottom:506.729605pt;}
.ycc{bottom:507.472533pt;}
.y118{bottom:511.097465pt;}
.y42{bottom:512.370383pt;}
.y8a{bottom:514.798019pt;}
.y15f{bottom:515.347363pt;}
.y15{bottom:520.092239pt;}
.y117{bottom:524.429465pt;}
.y41{bottom:525.702383pt;}
.y15e{bottom:526.677363pt;}
.y89{bottom:528.130019pt;}
.y14{bottom:533.424239pt;}
.yf1{bottom:535.098799pt;}
.yd1{bottom:536.220553pt;}
.y1a0{bottom:536.951739pt;}
.y116{bottom:537.761465pt;}
.y15d{bottom:538.007363pt;}
.y40{bottom:539.034383pt;}
.y88{bottom:541.462019pt;}
.yf0{bottom:548.430799pt;}
.y15c{bottom:549.337363pt;}
.y115{bottom:551.094799pt;}
.yd0{bottom:551.807220pt;}
.y87{bottom:554.794019pt;}
.y15b{bottom:560.667363pt;}
.yef{bottom:561.762799pt;}
.y19f{bottom:563.615738pt;}
.y114{bottom:564.428132pt;}
.ycf{bottom:567.393887pt;}
.y86{bottom:568.126019pt;}
.y3f{bottom:568.374383pt;}
.y15a{bottom:571.997363pt;}
.y13{bottom:573.552239pt;}
.yee{bottom:575.094799pt;}
.y19e{bottom:576.947738pt;}
.y113{bottom:577.761465pt;}
.y85{bottom:581.458019pt;}
.y3e{bottom:581.706383pt;}
.yce{bottom:582.980553pt;}
.y159{bottom:583.327363pt;}
.y12{bottom:588.216239pt;}
.yed{bottom:588.433465pt;}
.y19d{bottom:590.279738pt;}
.y112{bottom:591.096132pt;}
.y158{bottom:594.657363pt;}
.y84{bottom:594.790019pt;}
.y3d{bottom:595.038383pt;}
.ycd{bottom:598.567220pt;}
.yec{bottom:601.765465pt;}
.y11{bottom:602.880239pt;}
.y19c{bottom:603.611738pt;}
.y111{bottom:604.428132pt;}
.y157{bottom:605.987363pt;}
.y83{bottom:608.122019pt;}
.y3c{bottom:608.370383pt;}
.yeb{bottom:615.097465pt;}
.y19b{bottom:616.943738pt;}
.y156{bottom:617.317363pt;}
.y10{bottom:617.544239pt;}
.y110{bottom:617.761465pt;}
.y82{bottom:621.454019pt;}
.y3b{bottom:621.702383pt;}
.yea{bottom:628.429465pt;}
.y155{bottom:628.647363pt;}
.y19a{bottom:630.275738pt;}
.y10f{bottom:631.098839pt;}
.yf{bottom:632.208239pt;}
.y81{bottom:634.786019pt;}
.y3a{bottom:635.035716pt;}
.y154{bottom:639.977363pt;}
.ye9{bottom:641.761465pt;}
.y199{bottom:643.607738pt;}
.y10e{bottom:644.430839pt;}
.ye{bottom:646.872239pt;}
.y80{bottom:648.118019pt;}
.y39{bottom:648.367716pt;}
.y153{bottom:651.307363pt;}
.ye8{bottom:655.094799pt;}
.y198{bottom:656.939738pt;}
.y10d{bottom:657.762839pt;}
.ycb{bottom:660.298840pt;}
.y7f{bottom:661.450019pt;}
.yd{bottom:661.536239pt;}
.y38{bottom:661.701050pt;}
.y152{bottom:662.637363pt;}
.ye7{bottom:668.430839pt;}
.y10c{bottom:671.094839pt;}
.yca{bottom:673.630840pt;}
.y151{bottom:673.967363pt;}
.y7e{bottom:674.782019pt;}
.yc{bottom:676.200239pt;}
.y197{bottom:676.930364pt;}
.ye6{bottom:681.762839pt;}
.y10b{bottom:684.428173pt;}
.y150{bottom:685.297363pt;}
.yc9{bottom:686.962840pt;}
.y7d{bottom:688.114019pt;}
.y196{bottom:690.262364pt;}
.yb{bottom:690.864239pt;}
.ye5{bottom:695.094839pt;}
.y66{bottom:696.566775pt;}
.y14f{bottom:696.627363pt;}
.y10a{bottom:697.773506pt;}
.yc8{bottom:700.294840pt;}
.y7c{bottom:701.446019pt;}
.ya{bottom:705.528239pt;}
.y14e{bottom:707.957363pt;}
.ye4{bottom:708.426839pt;}
.y65{bottom:709.898775pt;}
.y195{bottom:710.266364pt;}
.y109{bottom:711.105506pt;}
.y7b{bottom:714.778019pt;}
.y14d{bottom:719.287363pt;}
.y64{bottom:723.230775pt;}
.y108{bottom:724.437506pt;}
.y7a{bottom:728.110019pt;}
.y194{bottom:730.270364pt;}
.y14c{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y63{bottom:736.562775pt;}
.y9{bottom:736.861572pt;}
.ye3{bottom:737.762839pt;}
.y107{bottom:737.769506pt;}
.y79{bottom:741.442019pt;}
.y14b{bottom:741.947363pt;}
.y62{bottom:749.894775pt;}
.y193{bottom:750.274364pt;}
.ye2{bottom:751.094839pt;}
.y106{bottom:751.101506pt;}
.y14a{bottom:753.277363pt;}
.y78{bottom:754.774019pt;}
.y7{bottom:761.517572pt;}
.y192{bottom:763.606364pt;}
.y105{bottom:764.433506pt;}
.ye1{bottom:764.438839pt;}
.y149{bottom:764.607363pt;}
.y77{bottom:768.106019pt;}
.y148{bottom:775.937363pt;}
.y191{bottom:776.939697pt;}
.y104{bottom:777.765506pt;}
.ye0{bottom:777.770839pt;}
.y76{bottom:781.438019pt;}
.y147{bottom:787.267363pt;}
.y103{bottom:791.097506pt;}
.ydf{bottom:791.102839pt;}
.y75{bottom:794.770019pt;}
.y146{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y190{bottom:803.606364pt;}
.y102{bottom:804.429506pt;}
.yde{bottom:804.434839pt;}
.y74{bottom:808.102019pt;}
.y145{bottom:809.927363pt;}
.y18f{bottom:816.939697pt;}
.y101{bottom:817.761506pt;}
.ydd{bottom:817.766839pt;}
.y144{bottom:821.257363pt;}
.y73{bottom:821.434019pt;}
.y100{bottom:831.101506pt;}
.y143{bottom:832.587363pt;}
.y72{bottom:834.766019pt;}
.y5{bottom:841.528239pt;}
.y142{bottom:843.917363pt;}
.yff{bottom:844.433506pt;}
.y18e{bottom:844.913067pt;}
.ydc{bottom:847.094839pt;}
.y71{bottom:848.098019pt;}
.y2f{bottom:848.326009pt;}
.y141{bottom:855.247363pt;}
.yfe{bottom:857.765506pt;}
.y18d{bottom:858.245067pt;}
.ydb{bottom:860.437506pt;}
.y70{bottom:861.430019pt;}
.y140{bottom:866.577363pt;}
.yfd{bottom:871.097506pt;}
.y18c{bottom:871.577067pt;}
.yda{bottom:873.769506pt;}
.y6f{bottom:874.762019pt;}
.y13f{bottom:877.907363pt;}
.yfc{bottom:884.429506pt;}
.y18b{bottom:884.910400pt;}
.yd9{bottom:887.101506pt;}
.y6e{bottom:888.094019pt;}
.y13e{bottom:889.237363pt;}
.yfb{bottom:897.761506pt;}
.yd8{bottom:900.433506pt;}
.y13d{bottom:900.567363pt;}
.y6d{bottom:901.426019pt;}
.yfa{bottom:911.093506pt;}
.y18a{bottom:911.581067pt;}
.y13c{bottom:911.897363pt;}
.yd7{bottom:913.765506pt;}
.y6c{bottom:914.758019pt;}
.y13b{bottom:923.227363pt;}
.yf9{bottom:924.426839pt;}
.y189{bottom:924.913067pt;}
.yd6{bottom:927.097506pt;}
.y6b{bottom:928.090019pt;}
.y13a{bottom:934.557363pt;}
.y188{bottom:938.245067pt;}
.yd5{bottom:940.429506pt;}
.y6a{bottom:941.422019pt;}
.y139{bottom:945.887363pt;}
.y187{bottom:951.577067pt;}
.yd4{bottom:953.761506pt;}
.y69{bottom:954.754019pt;}
.y138{bottom:957.217363pt;}
.y186{bottom:964.910400pt;}
.yd3{bottom:967.093506pt;}
.y68{bottom:968.086019pt;}
.y137{bottom:968.547363pt;}
.y67{bottom:1013.902507pt;}
.yac{bottom:1013.996908pt;}
.y37{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h7{height:24.933594pt;}
.h8{height:25.052083pt;}
.h11{height:27.275268pt;}
.h2{height:30.166667pt;}
.h23{height:31.476562pt;}
.h9{height:34.523438pt;}
.h1d{height:36.922667pt;}
.h1c{height:38.229333pt;}
.h6{height:38.359375pt;}
.h26{height:39.560000pt;}
.h24{height:40.080000pt;}
.h3{height:40.604167pt;}
.h25{height:40.960000pt;}
.h14{height:42.195312pt;}
.h12{height:43.141927pt;}
.h13{height:43.887578pt;}
.h27{height:44.834667pt;}
.ha{height:47.472000pt;}
.hb{height:47.534231pt;}
.h20{height:47.603271pt;}
.h1e{height:47.608605pt;}
.h1a{height:47.618946pt;}
.h1f{height:47.624605pt;}
.hf{height:47.630101pt;}
.h22{height:47.635271pt;}
.h17{height:47.635434pt;}
.he{height:47.640767pt;}
.h1b{height:47.645694pt;}
.hd{height:47.646101pt;}
.h19{height:47.650946pt;}
.h21{height:47.651271pt;}
.hc{height:47.651434pt;}
.h15{height:47.651597pt;}
.h16{height:48.096000pt;}
.h18{height:49.152000pt;}
.h4{height:50.755208pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.425200pt;}
.x3{left:54.803202pt;}
.xa{left:125.685069pt;}
.x5{left:207.874003pt;}
.xe{left:212.054527pt;}
.x9{left:223.872024pt;}
.xf{left:225.874003pt;}
.x10{left:268.887736pt;}
.x6{left:286.111857pt;}
.xd{left:287.365194pt;}
.x7{left:361.498128pt;}
.x8{left:490.844400pt;}
.x4{left:521.612549pt;}
.xc{left:708.791829pt;}
.x2{left:710.134766pt;}
.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; }
  