
    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_08b18527960504aab9ef4e9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_4f1eb0e1cdc1c062f182cf25.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_70fe2db0449c7991980ca21b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_af3dea9d30004d6e73a283bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_3e3c56b52ceebc735d0bad83.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1a0732f0763c1c99ab62b519.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3f4ee1d1a4a6859cfd3fa8b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_af3dea9d30004d6e73a283bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958000;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_3c10f019a1e424d979b416ef.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_c3b92c7fa02441b14614349c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200885;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_5831c224003704c27dea4615.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-20.399963px;}
.v4{vertical-align:-17.339996px;}
.v6{vertical-align:-10.854139px;}
.v7{vertical-align:-8.339961px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.670129px;}
.v3{vertical-align:18.197976px;}
.v2{vertical-align:20.399966px;}
.v5{vertical-align:44.981999px;}
.ls5a{letter-spacing:-1.440000px;}
.ls4b{letter-spacing:-1.395000px;}
.ls59{letter-spacing:-0.945000px;}
.ls49{letter-spacing:-0.900000px;}
.ls43{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.798000px;}
.ls54{letter-spacing:-0.675000px;}
.ls39{letter-spacing:-0.648000px;}
.ls3a{letter-spacing:-0.594000px;}
.ls57{letter-spacing:-0.585000px;}
.ls29{letter-spacing:-0.546000px;}
.ls34{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.495000px;}
.ls48{letter-spacing:-0.450000px;}
.ls5e{letter-spacing:-0.432000px;}
.ls4a{letter-spacing:-0.405000px;}
.ls4d{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.336000px;}
.ls58{letter-spacing:-0.315000px;}
.ls30{letter-spacing:-0.270000px;}
.ls55{letter-spacing:-0.225000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5c{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.162000px;}
.ls4e{letter-spacing:-0.135000px;}
.ls25{letter-spacing:-0.108000px;}
.ls56{letter-spacing:-0.090000px;}
.ls14{letter-spacing:-0.054000px;}
.ls17{letter-spacing:-0.051000px;}
.ls53{letter-spacing:-0.045000px;}
.ls15{letter-spacing:-0.035100px;}
.lsd{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.007841px;}
.ls3{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013223px;}
.ls5{letter-spacing:0.033043px;}
.ls45{letter-spacing:0.035100px;}
.ls40{letter-spacing:0.040275px;}
.ls52{letter-spacing:0.045000px;}
.ls3f{letter-spacing:0.046175px;}
.lsf{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.105300px;}
.ls20{letter-spacing:0.108000px;}
.ls4c{letter-spacing:0.135000px;}
.ls19{letter-spacing:0.162000px;}
.ls46{letter-spacing:0.175500px;}
.ls4f{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.210000px;}
.ls13{letter-spacing:0.216000px;}
.ls51{letter-spacing:0.225000px;}
.ls32{letter-spacing:0.265129px;}
.ls1c{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.276573px;}
.ls3e{letter-spacing:0.287943px;}
.ls5b{letter-spacing:0.315000px;}
.ls4{letter-spacing:0.324000px;}
.ls2c{letter-spacing:0.360000px;}
.lse{letter-spacing:0.378000px;}
.ls1b{letter-spacing:0.386100px;}
.ls41{letter-spacing:0.405000px;}
.ls6{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.446931px;}
.ls36{letter-spacing:0.456300px;}
.lsc{letter-spacing:0.459000px;}
.ls24{letter-spacing:0.486000px;}
.ls8{letter-spacing:0.491242px;}
.ls50{letter-spacing:0.495000px;}
.ls2d{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.594000px;}
.ls23{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.702000px;}
.lsa{letter-spacing:0.714000px;}
.ls35{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.756000px;}
.ls31{letter-spacing:0.761398px;}
.ls9{letter-spacing:0.765000px;}
.ls44{letter-spacing:0.780000px;}
.ls21{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.855000px;}
.ls38{letter-spacing:0.864000px;}
.ls37{letter-spacing:0.900000px;}
.ls2b{letter-spacing:0.918000px;}
.ls2f{letter-spacing:0.960000px;}
.ls2a{letter-spacing:0.972000px;}
.ls2e{letter-spacing:1.026000px;}
.ls7{letter-spacing:1.080000px;}
.ls42{letter-spacing:1.147520px;}
.ls3b{letter-spacing:1.242000px;}
.ls3c{letter-spacing:1.349998px;}
.ls3d{letter-spacing:2.158731px;}
.ls0{letter-spacing:2.592000px;}
.ls18{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.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;}
}
.ws9{word-spacing:-51.000000px;}
.ws2{word-spacing:-48.000000px;}
.ws8{word-spacing:-33.150001px;}
.ws66{word-spacing:-21.792000px;}
.ws3{word-spacing:-15.067500px;}
.ws22{word-spacing:-14.700000px;}
.ws25{word-spacing:-13.596000px;}
.ws35{word-spacing:-13.500000px;}
.ws53{word-spacing:-12.690000px;}
.ws36{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws4{word-spacing:-12.360000px;}
.ws62{word-spacing:-12.312000px;}
.ws37{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws65{word-spacing:-12.150000px;}
.ws61{word-spacing:-11.826000px;}
.ws68{word-spacing:-10.710000px;}
.ws8d{word-spacing:-10.530000px;}
.ws67{word-spacing:-10.305000px;}
.ws7e{word-spacing:-10.215000px;}
.ws7d{word-spacing:-10.170000px;}
.ws89{word-spacing:-9.990000px;}
.ws7f{word-spacing:-9.900000px;}
.ws7c{word-spacing:-9.810000px;}
.ws69{word-spacing:-9.765000px;}
.ws8b{word-spacing:-9.675000px;}
.ws7a{word-spacing:-9.630000px;}
.ws84{word-spacing:-9.585000px;}
.ws3b{word-spacing:-9.534000px;}
.ws7b{word-spacing:-9.360000px;}
.ws28{word-spacing:-9.114000px;}
.ws52{word-spacing:-8.424000px;}
.ws24{word-spacing:-8.353800px;}
.ws64{word-spacing:-8.143200px;}
.ws23{word-spacing:-8.073000px;}
.ws5{word-spacing:-8.034000px;}
.ws63{word-spacing:-8.002800px;}
.ws6{word-spacing:-7.967700px;}
.ws7{word-spacing:-7.932600px;}
.ws80{word-spacing:-6.815250px;}
.ws3c{word-spacing:-6.197100px;}
.ws6b{word-spacing:-5.508000px;}
.ws1c{word-spacing:-2.550000px;}
.ws4f{word-spacing:-1.944000px;}
.ws14{word-spacing:-1.836000px;}
.ws60{word-spacing:-1.728000px;}
.ws5f{word-spacing:-1.620000px;}
.ws5c{word-spacing:-1.566000px;}
.ws1b{word-spacing:-1.530000px;}
.ws5b{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.458000px;}
.ws3f{word-spacing:-1.350000px;}
.ws44{word-spacing:-1.296000px;}
.ws21{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.242000px;}
.ws32{word-spacing:-1.188000px;}
.ws70{word-spacing:-1.134000px;}
.ws4c{word-spacing:-1.080000px;}
.ws71{word-spacing:-1.035000px;}
.ws4a{word-spacing:-1.026000px;}
.ws20{word-spacing:-1.020000px;}
.ws16{word-spacing:-0.972000px;}
.ws34{word-spacing:-0.966000px;}
.wsb{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.924000px;}
.ws5d{word-spacing:-0.900000px;}
.ws51{word-spacing:-0.810000px;}
.ws6e{word-spacing:-0.780000px;}
.ws19{word-spacing:-0.756000px;}
.ws56{word-spacing:-0.720000px;}
.ws42{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.594000px;}
.ws87{word-spacing:-0.585000px;}
.ws54{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.495000px;}
.ws30{word-spacing:-0.486000px;}
.wsd{word-spacing:-0.432000px;}
.ws46{word-spacing:-0.420000px;}
.ws78{word-spacing:-0.405000px;}
.wse{word-spacing:-0.378000px;}
.ws50{word-spacing:-0.360000px;}
.ws18{word-spacing:-0.324000px;}
.ws3e{word-spacing:-0.270000px;}
.ws5a{word-spacing:-0.216000px;}
.ws8a{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.162000px;}
.ws45{word-spacing:-0.126000px;}
.ws43{word-spacing:-0.108000px;}
.ws92{word-spacing:-0.090000px;}
.ws6f{word-spacing:-0.054000px;}
.ws8c{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws77{word-spacing:0.045000px;}
.ws4e{word-spacing:0.054000px;}
.ws85{word-spacing:0.090000px;}
.ws74{word-spacing:0.135000px;}
.ws1f{word-spacing:0.153000px;}
.ws48{word-spacing:0.162000px;}
.ws72{word-spacing:0.180000px;}
.ws31{word-spacing:0.216000px;}
.ws93{word-spacing:0.225000px;}
.ws15{word-spacing:0.270000px;}
.ws86{word-spacing:0.315000px;}
.ws2f{word-spacing:0.324000px;}
.ws55{word-spacing:0.378000px;}
.ws94{word-spacing:0.432000px;}
.ws75{word-spacing:0.450000px;}
.ws57{word-spacing:0.486000px;}
.ws11{word-spacing:0.540000px;}
.ws47{word-spacing:0.594000px;}
.ws73{word-spacing:0.630000px;}
.ws12{word-spacing:0.648000px;}
.ws1e{word-spacing:0.714000px;}
.ws6c{word-spacing:0.756000px;}
.ws83{word-spacing:0.765000px;}
.ws90{word-spacing:0.855000px;}
.ws40{word-spacing:0.864000px;}
.ws76{word-spacing:0.900000px;}
.ws1d{word-spacing:0.918000px;}
.ws88{word-spacing:0.945000px;}
.ws5e{word-spacing:0.972000px;}
.ws4d{word-spacing:1.134000px;}
.ws8f{word-spacing:1.170000px;}
.ws4b{word-spacing:1.188000px;}
.ws95{word-spacing:1.242000px;}
.ws82{word-spacing:1.260000px;}
.ws59{word-spacing:1.296000px;}
.ws49{word-spacing:1.350000px;}
.ws1a{word-spacing:1.458000px;}
.ws81{word-spacing:1.485000px;}
.ws58{word-spacing:1.512000px;}
.ws8e{word-spacing:1.620000px;}
.ws6d{word-spacing:1.782000px;}
.ws6a{word-spacing:1.836000px;}
.ws91{word-spacing:1.845000px;}
.ws2d{word-spacing:77.532004px;}
.ws2b{word-spacing:78.414004px;}
.ws2a{word-spacing:92.736004px;}
.ws29{word-spacing:107.058004px;}
.ws38{word-spacing:152.039997px;}
.ws39{word-spacing:172.199997px;}
.ws27{word-spacing:184.384197px;}
.ws2e{word-spacing:192.952186px;}
.ws3d{word-spacing:203.951997px;}
.ws2c{word-spacing:303.030018px;}
.ws26{word-spacing:398.622010px;}
.ws3a{word-spacing:450.748187px;}
._21{margin-left:-11.295000px;}
._1e{margin-left:-9.360000px;}
._16{margin-left:-7.733982px;}
._1a{margin-left:-6.493500px;}
._4{margin-left:-5.210312px;}
._1{margin-left:-3.244800px;}
._0{margin-left:-1.776011px;}
._5{width:1.020600px;}
._6{width:2.034622px;}
._7{width:3.534300px;}
._22{width:5.646009px;}
._19{width:7.154999px;}
._1d{width:8.422511px;}
._1b{width:10.098006px;}
._1f{width:11.105312px;}
._17{width:12.960000px;}
._18{width:13.995000px;}
._8{width:15.281992px;}
._20{width:16.515002px;}
._1c{width:17.730002px;}
._3{width:42.769881px;}
._2{width:44.115623px;}
._e{width:48.054530px;}
._10{width:143.728197px;}
._d{width:154.403997px;}
._f{width:206.399998px;}
._b{width:222.611997px;}
._15{width:231.915619px;}
._9{width:238.025997px;}
._c{width:252.083997px;}
._a{width:272.243997px;}
._12{width:334.080019px;}
._13{width:460.571987px;}
._11{width:475.775398px;}
._14{width:522.886094px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsc{font-size:27.300001px;}
.fsf{font-size:29.250000px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fse{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fsd{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y30{bottom:68.313899px;}
.ye1{bottom:68.552997px;}
.y9f{bottom:68.569506px;}
.y69{bottom:69.543313px;}
.y42{bottom:71.785809px;}
.y2f{bottom:83.307899px;}
.ye0{bottom:83.551496px;}
.y9e{bottom:83.568005px;}
.y68{bottom:84.541812px;}
.y14c{bottom:85.306804px;}
.y41{bottom:86.784308px;}
.y105{bottom:89.073296px;}
.y2e{bottom:98.307899px;}
.ydf{bottom:98.557499px;}
.y9d{bottom:98.566504px;}
.y67{bottom:99.540312px;}
.y14b{bottom:100.305303px;}
.y40{bottom:101.782807px;}
.y104{bottom:101.819546px;}
.yde{bottom:113.555999px;}
.y9c{bottom:113.565004px;}
.y66{bottom:114.538811px;}
.y103{bottom:114.565796px;}
.y14a{bottom:115.303802px;}
.y3f{bottom:116.781307px;}
.y2d{bottom:117.636898px;}
.y102{bottom:127.312046px;}
.ydd{bottom:128.554498px;}
.y9b{bottom:128.563503px;}
.y65{bottom:129.537310px;}
.y149{bottom:130.302302px;}
.y3e{bottom:131.779806px;}
.y2c{bottom:132.636898px;}
.y101{bottom:140.058296px;}
.ydc{bottom:143.552997px;}
.y9a{bottom:143.562002px;}
.y64{bottom:144.535809px;}
.y148{bottom:145.300801px;}
.y3d{bottom:146.778305px;}
.y100{bottom:152.804546px;}
.ydb{bottom:158.551496px;}
.y99{bottom:158.560501px;}
.y63{bottom:159.534308px;}
.y147{bottom:160.299300px;}
.y3c{bottom:161.778305px;}
.yff{bottom:165.550797px;}
.y2b{bottom:170.187313px;}
.yda{bottom:173.552997px;}
.y98{bottom:173.559000px;}
.y62{bottom:174.532807px;}
.y146{bottom:175.297799px;}
.yfe{bottom:178.297047px;}
.y2a{bottom:185.185812px;}
.yd9{bottom:188.551496px;}
.y97{bottom:188.557499px;}
.y61{bottom:189.531307px;}
.y145{bottom:190.296298px;}
.yfd{bottom:191.043297px;}
.y3b{bottom:194.784308px;}
.y29{bottom:200.187313px;}
.y96{bottom:203.555999px;}
.yd8{bottom:203.572530px;}
.yfc{bottom:203.793297px;}
.y60{bottom:204.529806px;}
.y144{bottom:205.294798px;}
.y3a{bottom:209.782807px;}
.y28{bottom:215.185812px;}
.y95{bottom:218.554498px;}
.yd7{bottom:218.571030px;}
.y5f{bottom:219.532807px;}
.y143{bottom:220.293297px;}
.y39{bottom:224.781307px;}
.y27{bottom:230.188813px;}
.y94{bottom:233.552997px;}
.yd6{bottom:233.569529px;}
.y5e{bottom:234.531307px;}
.yfb{bottom:236.794798px;}
.y38{bottom:239.779806px;}
.y142{bottom:242.046298px;}
.y26{bottom:245.187313px;}
.y93{bottom:248.551496px;}
.yd5{bottom:248.568028px;}
.y5d{bottom:249.529806px;}
.yfa{bottom:251.793297px;}
.y37{bottom:254.779806px;}
.y141{bottom:257.044798px;}
.y25{bottom:260.185812px;}
.y92{bottom:263.549995px;}
.yd4{bottom:263.566527px;}
.y5c{bottom:264.528305px;}
.yf9{bottom:266.793297px;}
.y36{bottom:269.778305px;}
.y24{bottom:275.188813px;}
.yd3{bottom:278.565026px;}
.y140{bottom:278.793297px;}
.y5b{bottom:279.528305px;}
.y23{bottom:290.187313px;}
.y91{bottom:292.935153px;}
.yd2{bottom:293.563526px;}
.y13f{bottom:293.793297px;}
.yf8{bottom:299.794798px;}
.y22{bottom:305.185812px;}
.y90{bottom:307.933653px;}
.yd1{bottom:308.562025px;}
.y5a{bottom:312.529806px;}
.yf7{bottom:314.796298px;}
.y49{bottom:319.465805px;}
.y21{bottom:320.191815px;}
.y8f{bottom:322.932152px;}
.yd0{bottom:323.560524px;}
.y13e{bottom:326.803825px;}
.y59{bottom:327.537310px;}
.yf6{bottom:329.794798px;}
.y20{bottom:335.190314px;}
.y8e{bottom:337.930651px;}
.ycf{bottom:338.559023px;}
.y13d{bottom:341.802325px;}
.y58{bottom:342.535809px;}
.yf5{bottom:344.794798px;}
.y48{bottom:349.641305px;}
.y1f{bottom:350.188813px;}
.y8d{bottom:352.929150px;}
.yce{bottom:353.557522px;}
.y13c{bottom:356.800824px;}
.y57{bottom:357.534308px;}
.yf4{bottom:359.794798px;}
.y1e{bottom:365.187313px;}
.y47{bottom:367.081805px;}
.y8c{bottom:367.927649px;}
.ycd{bottom:368.556022px;}
.y13b{bottom:371.799323px;}
.y56{bottom:372.532807px;}
.yf3{bottom:374.794821px;}
.y1d{bottom:380.185812px;}
.y8b{bottom:382.926149px;}
.ycc{bottom:383.554521px;}
.y46{bottom:384.522305px;}
.y13a{bottom:386.797822px;}
.y55{bottom:387.531307px;}
.yf2{bottom:389.794821px;}
.y1c{bottom:395.185812px;}
.y8a{bottom:397.924648px;}
.ycb{bottom:398.553020px;}
.y139{bottom:401.796321px;}
.y45{bottom:401.962805px;}
.y54{bottom:402.529806px;}
.yf1{bottom:404.796321px;}
.y1b{bottom:410.224813px;}
.y89{bottom:412.923147px;}
.yca{bottom:413.551519px;}
.y138{bottom:416.794821px;}
.y53{bottom:417.541812px;}
.y44{bottom:419.403305px;}
.yf0{bottom:419.794821px;}
.y1a{bottom:425.223313px;}
.y88{bottom:427.921646px;}
.yc9{bottom:428.554521px;}
.y137{bottom:431.793320px;}
.y52{bottom:432.540312px;}
.yef{bottom:434.796321px;}
.y19{bottom:440.221812px;}
.yc8{bottom:443.553020px;}
.y136{bottom:446.793320px;}
.y51{bottom:447.538811px;}
.yee{bottom:449.794821px;}
.y18{bottom:455.220311px;}
.y87{bottom:457.321835px;}
.yc7{bottom:458.551519px;}
.y50{bottom:462.537310px;}
.yed{bottom:464.799323px;}
.y86{bottom:472.320334px;}
.yc6{bottom:473.550018px;}
.y4f{bottom:477.535809px;}
.y135{bottom:479.794821px;}
.yec{bottom:479.797822px;}
.y43{bottom:480.538971px;}
.y85{bottom:487.318833px;}
.y4e{bottom:492.534308px;}
.y134{bottom:494.793320px;}
.yeb{bottom:494.796321px;}
.y84{bottom:502.317333px;}
.y17{bottom:502.470311px;}
.yc5{bottom:503.628773px;}
.y4d{bottom:507.532807px;}
.y133{bottom:509.793320px;}
.yea{bottom:509.794821px;}
.y83{bottom:517.315832px;}
.yc4{bottom:518.627272px;}
.y16{bottom:518.967311px;}
.y4c{bottom:522.531307px;}
.ye9{bottom:524.793320px;}
.y82{bottom:532.314331px;}
.yc3{bottom:533.625772px;}
.y15{bottom:535.464311px;}
.y4b{bottom:537.529806px;}
.y132{bottom:542.797070px;}
.y81{bottom:547.312830px;}
.yc2{bottom:548.624271px;}
.y14{bottom:551.961311px;}
.y4a{bottom:552.528305px;}
.y131{bottom:555.700769px;}
.ye8{bottom:557.794821px;}
.y80{bottom:562.311329px;}
.yc1{bottom:563.622770px;}
.y130{bottom:568.447019px;}
.y13{bottom:568.458311px;}
.ye7{bottom:572.800824px;}
.y7f{bottom:577.309829px;}
.yc0{bottom:578.621269px;}
.y12f{bottom:581.193269px;}
.y12{bottom:584.955311px;}
.ye6{bottom:587.799323px;}
.y7e{bottom:592.308328px;}
.ybf{bottom:593.619768px;}
.y12e{bottom:593.939520px;}
.y11{bottom:601.452311px;}
.ye5{bottom:602.797822px;}
.y12d{bottom:606.685770px;}
.y7d{bottom:607.306827px;}
.ybe{bottom:608.618268px;}
.y73{bottom:611.592306px;}
.ye4{bottom:617.796321px;}
.y10{bottom:617.949311px;}
.y12c{bottom:619.432020px;}
.y7c{bottom:622.305326px;}
.ybd{bottom:623.616767px;}
.y72{bottom:626.590805px;}
.y12b{bottom:632.178270px;}
.ye3{bottom:632.794821px;}
.yf{bottom:634.446311px;}
.y7b{bottom:637.303825px;}
.ybc{bottom:638.615266px;}
.y12a{bottom:644.924520px;}
.ye2{bottom:647.793320px;}
.ye{bottom:650.943311px;}
.y7a{bottom:652.302325px;}
.ybb{bottom:653.613765px;}
.y71{bottom:656.775305px;}
.y129{bottom:657.670770px;}
.y79{bottom:667.300824px;}
.yd{bottom:667.440311px;}
.yba{bottom:668.612264px;}
.y128{bottom:670.417020px;}
.y70{bottom:674.200805px;}
.y78{bottom:682.299323px;}
.y127{bottom:683.163270px;}
.yb9{bottom:683.616767px;}
.yc{bottom:683.937311px;}
.y6f{bottom:691.641305px;}
.y126{bottom:695.909520px;}
.y77{bottom:697.297822px;}
.yb8{bottom:698.615266px;}
.yb{bottom:700.434311px;}
.y125{bottom:708.655771px;}
.y6e{bottom:709.081805px;}
.y106{bottom:710.038971px;}
.y76{bottom:712.296321px;}
.yb7{bottom:713.613765px;}
.y124{bottom:721.402021px;}
.y6d{bottom:726.522305px;}
.y75{bottom:727.294821px;}
.yb6{bottom:728.612264px;}
.ya{bottom:730.434310px;}
.y123{bottom:734.148271px;}
.y74{bottom:742.293320px;}
.yb5{bottom:743.612264px;}
.y6c{bottom:743.962805px;}
.y122{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.y9{bottom:753.534302px;}
.y33{bottom:757.145396px;}
.yb4{bottom:758.612219px;}
.y121{bottom:759.640771px;}
.y6b{bottom:761.403305px;}
.y120{bottom:772.387021px;}
.yb3{bottom:773.610718px;}
.y32{bottom:778.144646px;}
.y7{bottom:781.416260px;}
.y11f{bottom:785.133271px;}
.y11e{bottom:797.879521px;}
.y31{bottom:799.143895px;}
.ya0{bottom:803.458923px;}
.yb2{bottom:803.674694px;}
.y6a{bottom:808.318909px;}
.y11d{bottom:810.625771px;}
.yb1{bottom:818.673193px;}
.y11c{bottom:823.372022px;}
.y6{bottom:826.422262px;}
.yb0{bottom:833.680697px;}
.y11b{bottom:836.118272px;}
.yaf{bottom:848.679196px;}
.y11a{bottom:848.864522px;}
.y119{bottom:861.610772px;}
.yae{bottom:863.677695px;}
.y5{bottom:871.428264px;}
.y118{bottom:874.357022px;}
.yad{bottom:878.676194px;}
.y117{bottom:887.103272px;}
.yac{bottom:893.674694px;}
.y116{bottom:899.849522px;}
.yab{bottom:908.673193px;}
.y115{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.yaa{bottom:923.671692px;}
.y114{bottom:925.342022px;}
.y34{bottom:926.409576px;}
.y113{bottom:938.088273px;}
.ya9{bottom:938.671692px;}
.y112{bottom:950.834523px;}
.y111{bottom:963.580773px;}
.ya8{bottom:968.738578px;}
.y110{bottom:976.327023px;}
.ya7{bottom:983.737077px;}
.y10f{bottom:989.073273px;}
.ya6{bottom:998.735576px;}
.y10e{bottom:1001.819523px;}
.ya5{bottom:1013.734075px;}
.y10d{bottom:1014.565773px;}
.y10c{bottom:1027.312023px;}
.ya4{bottom:1028.732574px;}
.y10b{bottom:1040.058273px;}
.ya3{bottom:1043.732574px;}
.y10a{bottom:1052.804524px;}
.y109{bottom:1065.550774px;}
.ya2{bottom:1073.794775px;}
.y108{bottom:1078.297024px;}
.ya1{bottom:1088.793274px;}
.y107{bottom:1091.043274px;}
.y35{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.842749px;}
.h7{height:28.050293px;}
.hf{height:35.394000px;}
.hd{height:36.669000px;}
.he{height:36.681152px;}
.h9{height:38.838867px;}
.hc{height:41.158746px;}
.h15{height:41.538000px;}
.h17{height:41.598002px;}
.h14{height:43.008000px;}
.h2{height:43.140000px;}
.h6{height:43.154297px;}
.h4{height:44.218500px;}
.h1d{height:44.505000px;}
.h1e{height:45.090000px;}
.h3{height:45.744000px;}
.h1c{height:46.080000px;}
.h11{height:46.662000px;}
.h16{height:47.469727px;}
.h8{height:48.450259px;}
.ha{height:53.406000px;}
.h18{height:54.108000px;}
.h12{height:55.296000px;}
.h10{height:76.356000px;}
.h19{height:76.913984px;}
.h1a{height:76.919987px;}
.h1b{height:76.937997px;}
.h13{height:87.989999px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:14.093845px;}
.x2{left:61.191450px;}
.x9{left:140.952747px;}
.x4{left:233.456406px;}
.xa{left:238.143906px;}
.x7{left:251.454603px;}
.xe{left:300.594452px;}
.xb{left:363.209408px;}
.xc{left:446.390408px;}
.x5{left:498.559937px;}
.x3{left:584.586594px;}
.x6{left:668.105988px;}
.xd{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v4{vertical-align:-15.413330pt;}
.v6{vertical-align:-9.648124pt;}
.v7{vertical-align:-7.413299pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:13.040114pt;}
.v3{vertical-align:16.175978pt;}
.v2{vertical-align:18.133303pt;}
.v5{vertical-align:39.983999pt;}
.ls5a{letter-spacing:-1.280000pt;}
.ls4b{letter-spacing:-1.240000pt;}
.ls59{letter-spacing:-0.840000pt;}
.ls49{letter-spacing:-0.800000pt;}
.ls43{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.709333pt;}
.ls54{letter-spacing:-0.600000pt;}
.ls39{letter-spacing:-0.576000pt;}
.ls3a{letter-spacing:-0.528000pt;}
.ls57{letter-spacing:-0.520000pt;}
.ls29{letter-spacing:-0.485333pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.440000pt;}
.ls48{letter-spacing:-0.400000pt;}
.ls5e{letter-spacing:-0.384000pt;}
.ls4a{letter-spacing:-0.360000pt;}
.ls4d{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.298667pt;}
.ls58{letter-spacing:-0.280000pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls55{letter-spacing:-0.200000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5c{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls4e{letter-spacing:-0.120000pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls56{letter-spacing:-0.080000pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls17{letter-spacing:-0.045333pt;}
.ls53{letter-spacing:-0.040000pt;}
.ls15{letter-spacing:-0.031200pt;}
.lsd{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.006969pt;}
.ls3{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011754pt;}
.ls5{letter-spacing:0.029371pt;}
.ls45{letter-spacing:0.031200pt;}
.ls40{letter-spacing:0.035800pt;}
.ls52{letter-spacing:0.040000pt;}
.ls3f{letter-spacing:0.041044pt;}
.lsf{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.093600pt;}
.ls20{letter-spacing:0.096000pt;}
.ls4c{letter-spacing:0.120000pt;}
.ls19{letter-spacing:0.144000pt;}
.ls46{letter-spacing:0.156000pt;}
.ls4f{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.186667pt;}
.ls13{letter-spacing:0.192000pt;}
.ls51{letter-spacing:0.200000pt;}
.ls32{letter-spacing:0.235670pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.245843pt;}
.ls3e{letter-spacing:0.255949pt;}
.ls5b{letter-spacing:0.280000pt;}
.ls4{letter-spacing:0.288000pt;}
.ls2c{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.336000pt;}
.ls1b{letter-spacing:0.343200pt;}
.ls41{letter-spacing:0.360000pt;}
.ls6{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.397272pt;}
.ls36{letter-spacing:0.405600pt;}
.lsc{letter-spacing:0.408000pt;}
.ls24{letter-spacing:0.432000pt;}
.ls8{letter-spacing:0.436660pt;}
.ls50{letter-spacing:0.440000pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.528000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.624000pt;}
.lsa{letter-spacing:0.634667pt;}
.ls35{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.672000pt;}
.ls31{letter-spacing:0.676799pt;}
.ls9{letter-spacing:0.680000pt;}
.ls44{letter-spacing:0.693333pt;}
.ls21{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.760000pt;}
.ls38{letter-spacing:0.768000pt;}
.ls37{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:0.816000pt;}
.ls2f{letter-spacing:0.853333pt;}
.ls2a{letter-spacing:0.864000pt;}
.ls2e{letter-spacing:0.912000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls42{letter-spacing:1.020018pt;}
.ls3b{letter-spacing:1.104000pt;}
.ls3c{letter-spacing:1.199999pt;}
.ls3d{letter-spacing:1.918872pt;}
.ls0{letter-spacing:2.304000pt;}
.ls18{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ws9{word-spacing:-45.333333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws8{word-spacing:-29.466667pt;}
.ws66{word-spacing:-19.370667pt;}
.ws3{word-spacing:-13.393333pt;}
.ws22{word-spacing:-13.066667pt;}
.ws25{word-spacing:-12.085333pt;}
.ws35{word-spacing:-12.000000pt;}
.ws53{word-spacing:-11.280000pt;}
.ws36{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws4{word-spacing:-10.986667pt;}
.ws62{word-spacing:-10.944000pt;}
.ws37{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws65{word-spacing:-10.800000pt;}
.ws61{word-spacing:-10.512000pt;}
.ws68{word-spacing:-9.520000pt;}
.ws8d{word-spacing:-9.360000pt;}
.ws67{word-spacing:-9.160000pt;}
.ws7e{word-spacing:-9.080000pt;}
.ws7d{word-spacing:-9.040000pt;}
.ws89{word-spacing:-8.880000pt;}
.ws7f{word-spacing:-8.800000pt;}
.ws7c{word-spacing:-8.720000pt;}
.ws69{word-spacing:-8.680000pt;}
.ws8b{word-spacing:-8.600000pt;}
.ws7a{word-spacing:-8.560000pt;}
.ws84{word-spacing:-8.520000pt;}
.ws3b{word-spacing:-8.474667pt;}
.ws7b{word-spacing:-8.320000pt;}
.ws28{word-spacing:-8.101333pt;}
.ws52{word-spacing:-7.488000pt;}
.ws24{word-spacing:-7.425600pt;}
.ws64{word-spacing:-7.238400pt;}
.ws23{word-spacing:-7.176000pt;}
.ws5{word-spacing:-7.141333pt;}
.ws63{word-spacing:-7.113600pt;}
.ws6{word-spacing:-7.082400pt;}
.ws7{word-spacing:-7.051200pt;}
.ws80{word-spacing:-6.058000pt;}
.ws3c{word-spacing:-5.508534pt;}
.ws6b{word-spacing:-4.896000pt;}
.ws1c{word-spacing:-2.266667pt;}
.ws4f{word-spacing:-1.728000pt;}
.ws14{word-spacing:-1.632000pt;}
.ws60{word-spacing:-1.536000pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws5c{word-spacing:-1.392000pt;}
.ws1b{word-spacing:-1.360000pt;}
.ws5b{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.296000pt;}
.ws3f{word-spacing:-1.200000pt;}
.ws44{word-spacing:-1.152000pt;}
.ws21{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.104000pt;}
.ws32{word-spacing:-1.056000pt;}
.ws70{word-spacing:-1.008000pt;}
.ws4c{word-spacing:-0.960000pt;}
.ws71{word-spacing:-0.920000pt;}
.ws4a{word-spacing:-0.912000pt;}
.ws20{word-spacing:-0.906667pt;}
.ws16{word-spacing:-0.864000pt;}
.ws34{word-spacing:-0.858667pt;}
.wsb{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.821333pt;}
.ws5d{word-spacing:-0.800000pt;}
.ws51{word-spacing:-0.720000pt;}
.ws6e{word-spacing:-0.693333pt;}
.ws19{word-spacing:-0.672000pt;}
.ws56{word-spacing:-0.640000pt;}
.ws42{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.528000pt;}
.ws87{word-spacing:-0.520000pt;}
.ws54{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.440000pt;}
.ws30{word-spacing:-0.432000pt;}
.wsd{word-spacing:-0.384000pt;}
.ws46{word-spacing:-0.373333pt;}
.ws78{word-spacing:-0.360000pt;}
.wse{word-spacing:-0.336000pt;}
.ws50{word-spacing:-0.320000pt;}
.ws18{word-spacing:-0.288000pt;}
.ws3e{word-spacing:-0.240000pt;}
.ws5a{word-spacing:-0.192000pt;}
.ws8a{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws45{word-spacing:-0.112000pt;}
.ws43{word-spacing:-0.096000pt;}
.ws92{word-spacing:-0.080000pt;}
.ws6f{word-spacing:-0.048000pt;}
.ws8c{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws77{word-spacing:0.040000pt;}
.ws4e{word-spacing:0.048000pt;}
.ws85{word-spacing:0.080000pt;}
.ws74{word-spacing:0.120000pt;}
.ws1f{word-spacing:0.136000pt;}
.ws48{word-spacing:0.144000pt;}
.ws72{word-spacing:0.160000pt;}
.ws31{word-spacing:0.192000pt;}
.ws93{word-spacing:0.200000pt;}
.ws15{word-spacing:0.240000pt;}
.ws86{word-spacing:0.280000pt;}
.ws2f{word-spacing:0.288000pt;}
.ws55{word-spacing:0.336000pt;}
.ws94{word-spacing:0.384000pt;}
.ws75{word-spacing:0.400000pt;}
.ws57{word-spacing:0.432000pt;}
.ws11{word-spacing:0.480000pt;}
.ws47{word-spacing:0.528000pt;}
.ws73{word-spacing:0.560000pt;}
.ws12{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.634667pt;}
.ws6c{word-spacing:0.672000pt;}
.ws83{word-spacing:0.680000pt;}
.ws90{word-spacing:0.760000pt;}
.ws40{word-spacing:0.768000pt;}
.ws76{word-spacing:0.800000pt;}
.ws1d{word-spacing:0.816000pt;}
.ws88{word-spacing:0.840000pt;}
.ws5e{word-spacing:0.864000pt;}
.ws4d{word-spacing:1.008000pt;}
.ws8f{word-spacing:1.040000pt;}
.ws4b{word-spacing:1.056000pt;}
.ws95{word-spacing:1.104000pt;}
.ws82{word-spacing:1.120000pt;}
.ws59{word-spacing:1.152000pt;}
.ws49{word-spacing:1.200000pt;}
.ws1a{word-spacing:1.296000pt;}
.ws81{word-spacing:1.320000pt;}
.ws58{word-spacing:1.344000pt;}
.ws8e{word-spacing:1.440000pt;}
.ws6d{word-spacing:1.584000pt;}
.ws6a{word-spacing:1.632000pt;}
.ws91{word-spacing:1.640000pt;}
.ws2d{word-spacing:68.917337pt;}
.ws2b{word-spacing:69.701337pt;}
.ws2a{word-spacing:82.432004pt;}
.ws29{word-spacing:95.162670pt;}
.ws38{word-spacing:135.146664pt;}
.ws39{word-spacing:153.066664pt;}
.ws27{word-spacing:163.897064pt;}
.ws2e{word-spacing:171.513054pt;}
.ws3d{word-spacing:181.290664pt;}
.ws2c{word-spacing:269.360016pt;}
.ws26{word-spacing:354.330676pt;}
.ws3a{word-spacing:400.665055pt;}
._21{margin-left:-10.040000pt;}
._1e{margin-left:-8.320000pt;}
._16{margin-left:-6.874650pt;}
._1a{margin-left:-5.772000pt;}
._4{margin-left:-4.631388pt;}
._1{margin-left:-2.884267pt;}
._0{margin-left:-1.578676pt;}
._5{width:0.907200pt;}
._6{width:1.808553pt;}
._7{width:3.141600pt;}
._22{width:5.018675pt;}
._19{width:6.359999pt;}
._1d{width:7.486676pt;}
._1b{width:8.976005pt;}
._1f{width:9.871389pt;}
._17{width:11.520000pt;}
._18{width:12.440000pt;}
._8{width:13.583993pt;}
._20{width:14.680002pt;}
._1c{width:15.760002pt;}
._3{width:38.017672pt;}
._2{width:39.213887pt;}
._e{width:42.715138pt;}
._10{width:127.758397pt;}
._d{width:137.247997pt;}
._f{width:183.466665pt;}
._b{width:197.877331pt;}
._15{width:206.147217pt;}
._9{width:211.578664pt;}
._c{width:224.074664pt;}
._a{width:241.994664pt;}
._12{width:296.960017pt;}
._13{width:409.397322pt;}
._11{width:422.911465pt;}
._14{width:464.787639pt;}
.fsc{font-size:24.266668pt;}
.fsf{font-size:26.000000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fse{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fsd{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y30{bottom:60.723466pt;}
.ye1{bottom:60.935997pt;}
.y9f{bottom:60.950672pt;}
.y69{bottom:61.816278pt;}
.y42{bottom:63.809608pt;}
.y2f{bottom:74.051466pt;}
.ye0{bottom:74.267997pt;}
.y9e{bottom:74.282671pt;}
.y68{bottom:75.148278pt;}
.y14c{bottom:75.828270pt;}
.y41{bottom:77.141607pt;}
.y105{bottom:79.176263pt;}
.y2e{bottom:87.384799pt;}
.ydf{bottom:87.606666pt;}
.y9d{bottom:87.614671pt;}
.y67{bottom:88.480277pt;}
.y14b{bottom:89.160270pt;}
.y40{bottom:90.473607pt;}
.y104{bottom:90.506263pt;}
.yde{bottom:100.938665pt;}
.y9c{bottom:100.946670pt;}
.y66{bottom:101.812276pt;}
.y103{bottom:101.836263pt;}
.y14a{bottom:102.492269pt;}
.y3f{bottom:103.805606pt;}
.y2d{bottom:104.566132pt;}
.y102{bottom:113.166263pt;}
.ydd{bottom:114.270665pt;}
.y9b{bottom:114.278669pt;}
.y65{bottom:115.144275pt;}
.y149{bottom:115.824268pt;}
.y3e{bottom:117.137605pt;}
.y2c{bottom:117.899465pt;}
.y101{bottom:124.496263pt;}
.ydc{bottom:127.602664pt;}
.y9a{bottom:127.610668pt;}
.y64{bottom:128.476275pt;}
.y148{bottom:129.156267pt;}
.y3d{bottom:130.469604pt;}
.y100{bottom:135.826264pt;}
.ydb{bottom:140.934663pt;}
.y99{bottom:140.942668pt;}
.y63{bottom:141.808274pt;}
.y147{bottom:142.488267pt;}
.y3c{bottom:143.802938pt;}
.yff{bottom:147.156264pt;}
.y2b{bottom:151.277611pt;}
.yda{bottom:154.269331pt;}
.y98{bottom:154.274667pt;}
.y62{bottom:155.140273pt;}
.y146{bottom:155.820266pt;}
.yfe{bottom:158.486264pt;}
.y2a{bottom:164.609610pt;}
.yd9{bottom:167.601330pt;}
.y97{bottom:167.606666pt;}
.y61{bottom:168.472273pt;}
.y145{bottom:169.152265pt;}
.yfd{bottom:169.816264pt;}
.y3b{bottom:173.141607pt;}
.y29{bottom:177.944278pt;}
.y96{bottom:180.938665pt;}
.yd8{bottom:180.953360pt;}
.yfc{bottom:181.149597pt;}
.y60{bottom:181.804272pt;}
.y144{bottom:182.484265pt;}
.y3a{bottom:186.473607pt;}
.y28{bottom:191.276277pt;}
.y95{bottom:194.270665pt;}
.yd7{bottom:194.285360pt;}
.y5f{bottom:195.140273pt;}
.y143{bottom:195.816264pt;}
.y39{bottom:199.805606pt;}
.y27{bottom:204.612279pt;}
.y94{bottom:207.602664pt;}
.yd6{bottom:207.617359pt;}
.y5e{bottom:208.472273pt;}
.yfb{bottom:210.484265pt;}
.y38{bottom:213.137605pt;}
.y142{bottom:215.152265pt;}
.y26{bottom:217.944278pt;}
.y93{bottom:220.934663pt;}
.yd5{bottom:220.949358pt;}
.y5d{bottom:221.804272pt;}
.yfa{bottom:223.816264pt;}
.y37{bottom:226.470939pt;}
.y141{bottom:228.484265pt;}
.y25{bottom:231.276277pt;}
.y92{bottom:234.266663pt;}
.yd4{bottom:234.281358pt;}
.y5c{bottom:235.136271pt;}
.yf9{bottom:237.149597pt;}
.y36{bottom:239.802938pt;}
.y24{bottom:244.612279pt;}
.yd3{bottom:247.613357pt;}
.y140{bottom:247.816264pt;}
.y5b{bottom:248.469604pt;}
.y23{bottom:257.944278pt;}
.y91{bottom:260.386803pt;}
.yd2{bottom:260.945356pt;}
.y13f{bottom:261.149597pt;}
.yf8{bottom:266.484265pt;}
.y22{bottom:271.276277pt;}
.y90{bottom:273.718802pt;}
.yd1{bottom:274.277355pt;}
.y5a{bottom:277.804272pt;}
.yf7{bottom:279.818932pt;}
.y49{bottom:283.969604pt;}
.y21{bottom:284.614947pt;}
.y8f{bottom:287.050802pt;}
.yd0{bottom:287.609355pt;}
.y13e{bottom:290.492289pt;}
.y59{bottom:291.144275pt;}
.yf6{bottom:293.150931pt;}
.y20{bottom:297.946946pt;}
.y8e{bottom:300.382801pt;}
.ycf{bottom:300.941354pt;}
.y13d{bottom:303.824288pt;}
.y58{bottom:304.476275pt;}
.yf5{bottom:306.484265pt;}
.y48{bottom:310.792271pt;}
.y1f{bottom:311.278945pt;}
.y8d{bottom:313.714800pt;}
.yce{bottom:314.273353pt;}
.y13c{bottom:317.156288pt;}
.y57{bottom:317.808274pt;}
.yf4{bottom:319.817598pt;}
.y1e{bottom:324.610944pt;}
.y47{bottom:326.294938pt;}
.y8c{bottom:327.046799pt;}
.ycd{bottom:327.605352pt;}
.y13b{bottom:330.488287pt;}
.y56{bottom:331.140273pt;}
.yf3{bottom:333.150952pt;}
.y1d{bottom:337.942944pt;}
.y8b{bottom:340.378799pt;}
.ycc{bottom:340.937352pt;}
.y46{bottom:341.797604pt;}
.y13a{bottom:343.820286pt;}
.y55{bottom:344.472273pt;}
.yf2{bottom:346.484285pt;}
.y1c{bottom:351.276277pt;}
.y8a{bottom:353.710798pt;}
.ycb{bottom:354.269351pt;}
.y139{bottom:357.152286pt;}
.y45{bottom:357.300271pt;}
.y54{bottom:357.804272pt;}
.yf1{bottom:359.818952pt;}
.y1b{bottom:364.644279pt;}
.y89{bottom:367.042797pt;}
.yca{bottom:367.601350pt;}
.y138{bottom:370.484285pt;}
.y53{bottom:371.148278pt;}
.y44{bottom:372.802938pt;}
.yf0{bottom:373.150952pt;}
.y1a{bottom:377.976278pt;}
.y88{bottom:380.374797pt;}
.yc9{bottom:380.937352pt;}
.y137{bottom:383.816284pt;}
.y52{bottom:384.480277pt;}
.yef{bottom:386.485619pt;}
.y19{bottom:391.308277pt;}
.yc8{bottom:394.269351pt;}
.y136{bottom:397.149618pt;}
.y51{bottom:397.812276pt;}
.yee{bottom:399.817618pt;}
.y18{bottom:404.640276pt;}
.y87{bottom:406.508298pt;}
.yc7{bottom:407.601350pt;}
.y50{bottom:411.144275pt;}
.yed{bottom:413.154954pt;}
.y86{bottom:419.840297pt;}
.yc6{bottom:420.933350pt;}
.y4f{bottom:424.476275pt;}
.y135{bottom:426.484285pt;}
.yec{bottom:426.486953pt;}
.y43{bottom:427.145752pt;}
.y85{bottom:433.172296pt;}
.y4e{bottom:437.808274pt;}
.y134{bottom:439.816284pt;}
.yeb{bottom:439.818952pt;}
.y84{bottom:446.504296pt;}
.y17{bottom:446.640276pt;}
.yc5{bottom:447.670021pt;}
.y4d{bottom:451.140273pt;}
.y133{bottom:453.149618pt;}
.yea{bottom:453.150952pt;}
.y83{bottom:459.836295pt;}
.yc4{bottom:461.002020pt;}
.y16{bottom:461.304276pt;}
.y4c{bottom:464.472273pt;}
.ye9{bottom:466.482951pt;}
.y82{bottom:473.168294pt;}
.yc3{bottom:474.334019pt;}
.y15{bottom:475.968276pt;}
.y4b{bottom:477.804272pt;}
.y132{bottom:482.486284pt;}
.y81{bottom:486.500294pt;}
.yc2{bottom:487.666019pt;}
.y14{bottom:490.632276pt;}
.y4a{bottom:491.136271pt;}
.y131{bottom:493.956239pt;}
.ye8{bottom:495.817618pt;}
.y80{bottom:499.832293pt;}
.yc1{bottom:500.998018pt;}
.y130{bottom:505.286239pt;}
.y13{bottom:505.296276pt;}
.ye7{bottom:509.156288pt;}
.y7f{bottom:513.164292pt;}
.yc0{bottom:514.330017pt;}
.y12f{bottom:516.616239pt;}
.y12{bottom:519.960276pt;}
.ye6{bottom:522.488287pt;}
.y7e{bottom:526.496291pt;}
.ybf{bottom:527.662016pt;}
.y12e{bottom:527.946240pt;}
.y11{bottom:534.624276pt;}
.ye5{bottom:535.820286pt;}
.y12d{bottom:539.276240pt;}
.y7d{bottom:539.828291pt;}
.ybe{bottom:540.994016pt;}
.y73{bottom:543.637605pt;}
.ye4{bottom:549.152286pt;}
.y10{bottom:549.288276pt;}
.y12c{bottom:550.606240pt;}
.y7c{bottom:553.160290pt;}
.ybd{bottom:554.326015pt;}
.y72{bottom:556.969604pt;}
.y12b{bottom:561.936240pt;}
.ye3{bottom:562.484285pt;}
.yf{bottom:563.952276pt;}
.y7b{bottom:566.492289pt;}
.ybc{bottom:567.658014pt;}
.y12a{bottom:573.266240pt;}
.ye2{bottom:575.816284pt;}
.ye{bottom:578.616276pt;}
.y7a{bottom:579.824288pt;}
.ybb{bottom:580.990013pt;}
.y71{bottom:583.800271pt;}
.y129{bottom:584.596240pt;}
.y79{bottom:593.156288pt;}
.yd{bottom:593.280276pt;}
.yba{bottom:594.322013pt;}
.y128{bottom:595.926240pt;}
.y70{bottom:599.289604pt;}
.y78{bottom:606.488287pt;}
.y127{bottom:607.256240pt;}
.yb9{bottom:607.659348pt;}
.yc{bottom:607.944276pt;}
.y6f{bottom:614.792271pt;}
.y126{bottom:618.586240pt;}
.y77{bottom:619.820286pt;}
.yb8{bottom:620.991348pt;}
.yb{bottom:622.608276pt;}
.y125{bottom:629.916240pt;}
.y6e{bottom:630.294938pt;}
.y106{bottom:631.145752pt;}
.y76{bottom:633.152286pt;}
.yb7{bottom:634.323347pt;}
.y124{bottom:641.246241pt;}
.y6d{bottom:645.797604pt;}
.y75{bottom:646.484285pt;}
.yb6{bottom:647.655346pt;}
.ya{bottom:649.274942pt;}
.y123{bottom:652.576241pt;}
.y74{bottom:659.816284pt;}
.yb5{bottom:660.988679pt;}
.y6c{bottom:661.300271pt;}
.y122{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.y9{bottom:669.808268pt;}
.y33{bottom:673.018130pt;}
.yb4{bottom:674.321972pt;}
.y121{bottom:675.236241pt;}
.y6b{bottom:676.802938pt;}
.y120{bottom:686.566241pt;}
.yb3{bottom:687.653971pt;}
.y32{bottom:691.684130pt;}
.y7{bottom:694.592232pt;}
.y11f{bottom:697.896241pt;}
.y11e{bottom:709.226241pt;}
.y31{bottom:710.350129pt;}
.ya0{bottom:714.185710pt;}
.yb2{bottom:714.377505pt;}
.y6a{bottom:718.505697pt;}
.y11d{bottom:720.556241pt;}
.yb1{bottom:727.709505pt;}
.y11c{bottom:731.886241pt;}
.y6{bottom:734.597566pt;}
.yb0{bottom:741.049508pt;}
.y11b{bottom:743.216241pt;}
.yaf{bottom:754.381507pt;}
.y11a{bottom:754.546242pt;}
.y119{bottom:765.876242pt;}
.yae{bottom:767.713507pt;}
.y5{bottom:774.602901pt;}
.y118{bottom:777.206242pt;}
.yad{bottom:781.045506pt;}
.y117{bottom:788.536242pt;}
.yac{bottom:794.377505pt;}
.y116{bottom:799.866242pt;}
.yab{bottom:807.709505pt;}
.y115{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.yaa{bottom:821.041504pt;}
.y114{bottom:822.526242pt;}
.y34{bottom:823.475179pt;}
.y113{bottom:833.856242pt;}
.ya9{bottom:834.374837pt;}
.y112{bottom:845.186242pt;}
.y111{bottom:856.516242pt;}
.ya8{bottom:861.100958pt;}
.y110{bottom:867.846243pt;}
.ya7{bottom:874.432957pt;}
.y10f{bottom:879.176243pt;}
.ya6{bottom:887.764957pt;}
.y10e{bottom:890.506243pt;}
.ya5{bottom:901.096956pt;}
.y10d{bottom:901.836243pt;}
.y10c{bottom:913.166243pt;}
.ya4{bottom:914.428955pt;}
.y10b{bottom:924.496243pt;}
.ya3{bottom:927.762288pt;}
.y10a{bottom:935.826243pt;}
.y109{bottom:947.156243pt;}
.ya2{bottom:954.484244pt;}
.y108{bottom:958.486243pt;}
.ya1{bottom:967.816243pt;}
.y107{bottom:969.816243pt;}
.y35{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:21.193555pt;}
.h7{height:24.933594pt;}
.hf{height:31.461333pt;}
.hd{height:32.594667pt;}
.he{height:32.605469pt;}
.h9{height:34.523438pt;}
.hc{height:36.585552pt;}
.h15{height:36.922667pt;}
.h17{height:36.976002pt;}
.h14{height:38.229333pt;}
.h2{height:38.346667pt;}
.h6{height:38.359375pt;}
.h4{height:39.305333pt;}
.h1d{height:39.560000pt;}
.h1e{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1c{height:40.960000pt;}
.h11{height:41.477333pt;}
.h16{height:42.195312pt;}
.h8{height:43.066897pt;}
.ha{height:47.472000pt;}
.h18{height:48.096000pt;}
.h12{height:49.152000pt;}
.h10{height:67.872000pt;}
.h19{height:68.367986pt;}
.h1a{height:68.373322pt;}
.h1b{height:68.389330pt;}
.h13{height:78.213332pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:12.527862pt;}
.x2{left:54.392400pt;}
.x9{left:125.291331pt;}
.x4{left:207.516805pt;}
.xa{left:211.683472pt;}
.x7{left:223.515203pt;}
.xe{left:267.195068pt;}
.xb{left:322.852807pt;}
.xc{left:396.791473pt;}
.x5{left:443.164388pt;}
.x3{left:519.632528pt;}
.x6{left:593.871989pt;}
.xd{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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