
    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_5c41624a03e9ef6e3792de4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915000;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_cf6bed8c0da6564ecd3bd69d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_7df9e8630a1a49097496a1ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_eca478e2b4c21d6339c9c967.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_8f6d10593ebd6166e54befb7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_2486a9a175d3a335d2175d75.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_d31b6790c86c21b5280071cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2d4edab208f5fa9ac1598980.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_5e5acaa7c870171e5c49c3b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.146000;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_42a6c09f1e5702a418141e98.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.723000;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);}
.v4{vertical-align:-24.000000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.000000px;}
.v1{vertical-align:24.000000px;}
.lse{letter-spacing:-2.880000px;}
.lsf{letter-spacing:-2.400000px;}
.lsb{letter-spacing:-2.220000px;}
.ls8{letter-spacing:-2.160000px;}
.ls10{letter-spacing:-1.920000px;}
.ls3{letter-spacing:-1.800000px;}
.ls2{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.520000px;}
.lsa{letter-spacing:15.069600px;}
.ls14{letter-spacing:198.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8e{word-spacing:-19.440000px;}
.ws1{word-spacing:-18.000000px;}
.wsab{word-spacing:-17.280000px;}
.ws2{word-spacing:-15.000000px;}
.wse3{word-spacing:-14.400000px;}
.ws4e{word-spacing:-13.500000px;}
.wsb4{word-spacing:-12.780000px;}
.wsb5{word-spacing:-12.258000px;}
.ws1f{word-spacing:-12.000000px;}
.wse4{word-spacing:-11.520000px;}
.wsb6{word-spacing:-10.896000px;}
.wsd9{word-spacing:-10.416000px;}
.wse0{word-spacing:-9.936000px;}
.ws100{word-spacing:-8.136000px;}
.ws82{word-spacing:-7.272000px;}
.wsd{word-spacing:-6.840000px;}
.wse6{word-spacing:-6.192000px;}
.ws8d{word-spacing:-5.976000px;}
.wsee{word-spacing:-5.328000px;}
.ws86{word-spacing:-5.112000px;}
.wseb{word-spacing:-4.968000px;}
.ws9f{word-spacing:-4.824000px;}
.ws24{word-spacing:-4.680000px;}
.wsff{word-spacing:-4.320000px;}
.ws81{word-spacing:-4.104000px;}
.ws3a{word-spacing:-3.960000px;}
.ws7c{word-spacing:-3.600000px;}
.ws1b{word-spacing:-3.456000px;}
.ws33{word-spacing:-3.384000px;}
.wsb3{word-spacing:-3.300000px;}
.wsca{word-spacing:-3.240000px;}
.ws73{word-spacing:-3.168000px;}
.ws4b{word-spacing:-3.096000px;}
.ws2c{word-spacing:-3.000000px;}
.ws76{word-spacing:-2.970000px;}
.ws74{word-spacing:-2.952000px;}
.ws3e{word-spacing:-2.880000px;}
.ws72{word-spacing:-2.808000px;}
.wsfd{word-spacing:-2.592000px;}
.ws23{word-spacing:-2.520000px;}
.ws48{word-spacing:-2.448000px;}
.wse8{word-spacing:-2.376000px;}
.ws43{word-spacing:-2.304000px;}
.ws32{word-spacing:-2.232000px;}
.ws2d{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.088000px;}
.ws15{word-spacing:-2.016000px;}
.wsaa{word-spacing:-1.998000px;}
.ws6b{word-spacing:-1.944000px;}
.wsd3{word-spacing:-1.920000px;}
.ws4f{word-spacing:-1.800000px;}
.ws35{word-spacing:-1.656000px;}
.ws6a{word-spacing:-1.584000px;}
.wscd{word-spacing:-1.560000px;}
.wsb2{word-spacing:-1.440000px;}
.wse1{word-spacing:-1.368000px;}
.ws11{word-spacing:-1.296000px;}
.wsc8{word-spacing:-1.224000px;}
.ws29{word-spacing:-1.152000px;}
.wsba{word-spacing:-1.080000px;}
.ws9{word-spacing:-1.008000px;}
.ws70{word-spacing:-0.972000px;}
.ws96{word-spacing:-0.936000px;}
.ws34{word-spacing:-0.864000px;}
.ws39{word-spacing:-0.792000px;}
.ws2a{word-spacing:-0.720000px;}
.ws4d{word-spacing:-0.648000px;}
.wsdf{word-spacing:-0.600000px;}
.ws7a{word-spacing:-0.576000px;}
.ws6e{word-spacing:-0.504000px;}
.wsd4{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.432000px;}
.wsd2{word-spacing:-0.360000px;}
.wsdb{word-spacing:-0.288000px;}
.ws79{word-spacing:-0.216000px;}
.ws50{word-spacing:-0.144000px;}
.ws7e{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws44{word-spacing:0.072000px;}
.wsfb{word-spacing:0.144000px;}
.ws95{word-spacing:0.216000px;}
.ws9e{word-spacing:0.288000px;}
.ws68{word-spacing:0.360000px;}
.ws71{word-spacing:0.432000px;}
.wse9{word-spacing:0.480000px;}
.ws3f{word-spacing:0.504000px;}
.ws2e{word-spacing:0.540000px;}
.wsa{word-spacing:0.576000px;}
.wsd5{word-spacing:0.600000px;}
.wsef{word-spacing:0.648000px;}
.ws49{word-spacing:0.720000px;}
.wsc1{word-spacing:0.780000px;}
.wsa1{word-spacing:0.792000px;}
.ws45{word-spacing:0.864000px;}
.wsb7{word-spacing:0.936000px;}
.ws6c{word-spacing:1.008000px;}
.wsc0{word-spacing:1.020000px;}
.ws75{word-spacing:1.152000px;}
.wsea{word-spacing:1.200000px;}
.ws57{word-spacing:1.224000px;}
.ws60{word-spacing:1.296000px;}
.ws1c{word-spacing:1.368000px;}
.ws10{word-spacing:1.440000px;}
.wsf8{word-spacing:1.512000px;}
.wse{word-spacing:1.728000px;}
.ws7{word-spacing:1.800000px;}
.ws8f{word-spacing:1.872000px;}
.wsde{word-spacing:1.920000px;}
.wsfe{word-spacing:1.944000px;}
.ws61{word-spacing:2.016000px;}
.wsf2{word-spacing:2.160000px;}
.ws5e{word-spacing:2.232000px;}
.wsd7{word-spacing:2.376000px;}
.wsdd{word-spacing:2.400000px;}
.ws26{word-spacing:2.448000px;}
.ws16{word-spacing:2.520000px;}
.wsec{word-spacing:2.592000px;}
.ws3b{word-spacing:2.664000px;}
.wsc2{word-spacing:2.760000px;}
.ws28{word-spacing:2.808000px;}
.wsf9{word-spacing:2.880000px;}
.wsb1{word-spacing:2.952000px;}
.ws17{word-spacing:3.024000px;}
.ws5a{word-spacing:3.096000px;}
.ws58{word-spacing:3.168000px;}
.ws9d{word-spacing:3.240000px;}
.wsa7{word-spacing:3.312000px;}
.ws4c{word-spacing:3.384000px;}
.ws5f{word-spacing:3.600000px;}
.ws64{word-spacing:3.672000px;}
.ws80{word-spacing:3.744000px;}
.wsd8{word-spacing:3.816000px;}
.ws65{word-spacing:3.888000px;}
.wsac{word-spacing:3.960000px;}
.ws98{word-spacing:4.032000px;}
.ws38{word-spacing:4.104000px;}
.ws30{word-spacing:4.176000px;}
.wsf3{word-spacing:4.320000px;}
.ws47{word-spacing:4.392000px;}
.wsc9{word-spacing:4.464000px;}
.ws51{word-spacing:4.536000px;}
.ws91{word-spacing:4.608000px;}
.wsc6{word-spacing:4.680000px;}
.wsbd{word-spacing:4.824000px;}
.wscf{word-spacing:4.896000px;}
.wse7{word-spacing:5.112000px;}
.ws3d{word-spacing:5.184000px;}
.ws6f{word-spacing:5.256000px;}
.ws2b{word-spacing:5.328000px;}
.wsa0{word-spacing:5.400000px;}
.wsd1{word-spacing:5.472000px;}
.ws77{word-spacing:5.688000px;}
.wse5{word-spacing:5.832000px;}
.ws7b{word-spacing:5.904000px;}
.ws37{word-spacing:5.976000px;}
.ws63{word-spacing:6.048000px;}
.ws56{word-spacing:6.192000px;}
.ws25{word-spacing:6.264000px;}
.ws3c{word-spacing:6.336000px;}
.ws18{word-spacing:6.408000px;}
.ws2f{word-spacing:6.480000px;}
.wsae{word-spacing:6.552000px;}
.ws7f{word-spacing:6.624000px;}
.ws8{word-spacing:6.696000px;}
.wsb9{word-spacing:6.768000px;}
.ws5c{word-spacing:6.840000px;}
.wsaf{word-spacing:6.912000px;}
.ws41{word-spacing:7.056000px;}
.ws40{word-spacing:7.128000px;}
.ws85{word-spacing:7.200000px;}
.wsb0{word-spacing:7.272000px;}
.wsf6{word-spacing:7.344000px;}
.wsb{word-spacing:7.416000px;}
.ws21{word-spacing:7.488000px;}
.wsa8{word-spacing:7.500000px;}
.ws13{word-spacing:7.560000px;}
.ws52{word-spacing:7.632000px;}
.ws1e{word-spacing:7.704000px;}
.wsa9{word-spacing:7.800000px;}
.wsbb{word-spacing:7.848000px;}
.wsa6{word-spacing:7.920000px;}
.ws22{word-spacing:7.992000px;}
.ws4a{word-spacing:8.064000px;}
.ws36{word-spacing:8.208000px;}
.ws5b{word-spacing:8.352000px;}
.wsa2{word-spacing:8.424000px;}
.wsc{word-spacing:8.496000px;}
.wsf1{word-spacing:8.568000px;}
.ws6{word-spacing:8.640000px;}
.ws99{word-spacing:8.712000px;}
.wsfa{word-spacing:8.784000px;}
.ws8b{word-spacing:8.928000px;}
.ws27{word-spacing:9.072000px;}
.wsa4{word-spacing:9.144000px;}
.wsa5{word-spacing:9.216000px;}
.ws93{word-spacing:9.288000px;}
.wsc7{word-spacing:9.432000px;}
.wsbc{word-spacing:9.504000px;}
.ws20{word-spacing:9.576000px;}
.wsf{word-spacing:9.648000px;}
.wsd0{word-spacing:9.720000px;}
.ws1d{word-spacing:9.864000px;}
.wsf5{word-spacing:9.936000px;}
.ws89{word-spacing:10.008000px;}
.wsfc{word-spacing:10.152000px;}
.wscc{word-spacing:10.224000px;}
.ws83{word-spacing:10.296000px;}
.ws84{word-spacing:10.368000px;}
.wscb{word-spacing:10.440000px;}
.ws5{word-spacing:10.512000px;}
.ws78{word-spacing:10.584000px;}
.ws12{word-spacing:10.944000px;}
.ws9a{word-spacing:11.088000px;}
.ws6d{word-spacing:11.232000px;}
.ws90{word-spacing:11.304000px;}
.ws53{word-spacing:11.448000px;}
.ws31{word-spacing:12.024000px;}
.wsed{word-spacing:12.096000px;}
.wsda{word-spacing:12.240000px;}
.wsa3{word-spacing:12.384000px;}
.wsf4{word-spacing:12.456000px;}
.wsb8{word-spacing:12.600000px;}
.wsc5{word-spacing:12.672000px;}
.ws67{word-spacing:12.744000px;}
.ws14{word-spacing:12.888000px;}
.wsf7{word-spacing:13.032000px;}
.ws8a{word-spacing:13.104000px;}
.wse2{word-spacing:13.176000px;}
.ws5d{word-spacing:13.392000px;}
.wsad{word-spacing:13.536000px;}
.ws92{word-spacing:14.688000px;}
.wsce{word-spacing:14.760000px;}
.wsf0{word-spacing:14.904000px;}
.ws59{word-spacing:15.048000px;}
.wsbe{word-spacing:15.060000px;}
.wsbf{word-spacing:15.180000px;}
.wsdc{word-spacing:15.552000px;}
.ws62{word-spacing:15.624000px;}
.ws94{word-spacing:15.768000px;}
.ws9c{word-spacing:16.200000px;}
.wsc4{word-spacing:16.416000px;}
.ws42{word-spacing:16.704000px;}
.ws97{word-spacing:16.848000px;}
.ws54{word-spacing:16.992000px;}
.wsd6{word-spacing:17.136000px;}
.ws69{word-spacing:17.640000px;}
.ws1a{word-spacing:17.784000px;}
.ws87{word-spacing:18.576000px;}
.ws55{word-spacing:18.648000px;}
.ws4{word-spacing:18.792000px;}
.ws19{word-spacing:19.080000px;}
.ws9b{word-spacing:19.800000px;}
.wsc3{word-spacing:21.780000px;}
.ws3{word-spacing:22.032000px;}
.ws66{word-spacing:23.184000px;}
.ws46{word-spacing:26.496000px;}
.ws88{word-spacing:27.720000px;}
.ws102{word-spacing:154.080000px;}
.ws101{word-spacing:198.000000px;}
._11{margin-left:-11.822400px;}
._10{margin-left:-10.555200px;}
._5{margin-left:-9.244800px;}
._1{margin-left:-8.064000px;}
._4{margin-left:-6.868800px;}
._3{margin-left:-5.040000px;}
._b{margin-left:-3.916800px;}
._0{margin-left:-2.520000px;}
._2{margin-left:-1.008000px;}
._1c{width:1.008000px;}
._a{width:2.016000px;}
._13{width:3.031200px;}
._8{width:4.039200px;}
._d{width:5.810400px;}
._9{width:6.904800px;}
._e{width:8.424000px;}
._c{width:9.525600px;}
._7{width:11.397600px;}
._16{width:12.866400px;}
._18{width:14.018400px;}
._f{width:15.177600px;}
._17{width:16.432800px;}
._6{width:19.036800px;}
._14{width:22.932000px;}
._19{width:24.350400px;}
._12{width:25.394400px;}
._1a{width:26.518800px;}
._1b{width:27.582000px;}
._15{width:182.232000px;}
._1d{width:198.000000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(250,253,255);}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yae{bottom:19.429950px;}
.y4e{bottom:20.929950px;}
.yca{bottom:21.478800px;}
.yfb{bottom:21.945600px;}
.y49{bottom:21.992850px;}
.y82{bottom:22.205550px;}
.yef{bottom:22.571700px;}
.y77{bottom:22.630650px;}
.yde{bottom:22.701600px;}
.y37{bottom:23.055900px;}
.yab{bottom:23.189400px;}
.ye3{bottom:24.969300px;}
.y9d{bottom:25.181850px;}
.yf5{bottom:25.440900px;}
.yda{bottom:59.757000px;}
.yb6{bottom:61.432950px;}
.yf4{bottom:63.725550px;}
.yc0{bottom:64.397100px;}
.y91{bottom:64.779750px;}
.y9c{bottom:66.055350px;}
.yc1{bottom:66.197100px;}
.yaf{bottom:66.228150px;}
.yc5{bottom:70.415250px;}
.y4b{bottom:70.432950px;}
.y5{bottom:70.855350px;}
.y76{bottom:71.484600px;}
.yee{bottom:74.709750px;}
.ydd{bottom:74.915250px;}
.yb5{bottom:74.932950px;}
.yfc{bottom:76.304400px;}
.yd9{bottom:77.757000px;}
.y34{bottom:77.932950px;}
.ya4{bottom:78.714450px;}
.yfa{bottom:80.308200px;}
.y89{bottom:80.597100px;}
.y90{bottom:80.979750px;}
.y9b{bottom:82.255350px;}
.ybf{bottom:82.397100px;}
.y36{bottom:83.932950px;}
.yf3{bottom:86.225550px;}
.y75{bottom:87.684600px;}
.ydc{bottom:88.415250px;}
.ye8{bottom:88.432950px;}
.yf6{bottom:92.932950px;}
.y48{bottom:94.842150px;}
.ya3{bottom:94.914450px;}
.yd8{bottom:95.757000px;}
.y4{bottom:96.055350px;}
.y8f{bottom:97.179750px;}
.yed{bottom:97.209750px;}
.y6a{bottom:97.415250px;}
.y4a{bottom:97.432950px;}
.yf9{bottom:98.308200px;}
.y9a{bottom:98.455350px;}
.y88{bottom:98.597100px;}
.y33{bottom:100.432950px;}
.yc4{bottom:101.915250px;}
.y41{bottom:101.932950px;}
.y74{bottom:103.884600px;}
.yd2{bottom:104.932950px;}
.y35{bottom:106.432950px;}
.ydb{bottom:110.915250px;}
.ye7{bottom:110.932950px;}
.ya2{bottom:111.114450px;}
.y8e{bottom:113.379750px;}
.yd7{bottom:113.757000px;}
.y99{bottom:114.655350px;}
.y81{bottom:114.749250px;}
.y87{bottom:114.797100px;}
.y100{bottom:116.266950px;}
.yf8{bottom:116.308200px;}
.y47{bottom:116.442150px;}
.yd1{bottom:116.932950px;}
.y10a{bottom:123.298950px;}
.y69{bottom:124.415250px;}
.y40{bottom:124.432950px;}
.ye6{bottom:128.932950px;}
.y80{bottom:130.949250px;}
.y46{bottom:132.642150px;}
.yd0{bottom:133.432950px;}
.yec{bottom:133.779750px;}
.yff{bottom:134.266950px;}
.yf7{bottom:134.308200px;}
.yf2{bottom:136.434300px;}
.ye5{bottom:142.432950px;}
.ya7{bottom:144.765000px;}
.y3{bottom:146.455350px;}
.y3f{bottom:146.932950px;}
.y7f{bottom:147.149250px;}
.yb4{bottom:150.933000px;}
.y68{bottom:151.415250px;}
.y32{bottom:151.432950px;}
.yeb{bottom:151.779750px;}
.yfe{bottom:152.266950px;}
.ycf{bottom:154.432950px;}
.yf1{bottom:154.434300px;}
.ya6{bottom:160.965000px;}
.y7e{bottom:163.349250px;}
.y4d{bottom:164.530500px;}
.ye4{bottom:164.932950px;}
.yce{bottom:166.432950px;}
.yb3{bottom:167.133000px;}
.y3e{bottom:169.432950px;}
.yea{bottom:169.779750px;}
.yfd{bottom:170.266950px;}
.y2{bottom:171.655350px;}
.yf0{bottom:172.434300px;}
.ya5{bottom:177.165000px;}
.y67{bottom:178.415250px;}
.y31{bottom:178.432950px;}
.y4c{bottom:182.530500px;}
.yc3{bottom:182.915250px;}
.yb2{bottom:183.333000px;}
.ycd{bottom:187.432950px;}
.ye9{bottom:187.779750px;}
.y3d{bottom:191.932950px;}
.y13a{bottom:194.352150px;}
.ycc{bottom:199.432950px;}
.yb1{bottom:199.533000px;}
.y66{bottom:205.415250px;}
.y30{bottom:205.432950px;}
.yc2{bottom:209.915250px;}
.y3c{bottom:214.432950px;}
.yb0{bottom:215.733000px;}
.y139{bottom:215.952150px;}
.y1b{bottom:216.594300px;}
.ycb{bottom:220.432950px;}
.y1{bottom:222.055350px;}
.y65{bottom:232.415250px;}
.y2f{bottom:232.432950px;}
.y3b{bottom:236.932950px;}
.y138{bottom:237.552150px;}
.y10e{bottom:240.615150px;}
.y11a{bottom:241.433400px;}
.y11e{bottom:241.665450px;}
.y112{bottom:243.604200px;}
.y116{bottom:244.335600px;}
.y13e{bottom:257.068800px;}
.y137{bottom:259.152150px;}
.y64{bottom:259.415250px;}
.y2e{bottom:259.432950px;}
.y10d{bottom:262.215150px;}
.y119{bottom:263.033400px;}
.y1a{bottom:263.094300px;}
.y11d{bottom:263.265450px;}
.y3a{bottom:263.932950px;}
.y111{bottom:265.204200px;}
.y115{bottom:265.935600px;}
.y142{bottom:274.163400px;}
.y13d{bottom:278.668800px;}
.y10c{bottom:283.815150px;}
.y118{bottom:284.633400px;}
.y12e{bottom:284.849550px;}
.y11c{bottom:284.865450px;}
.y63{bottom:286.415250px;}
.y2d{bottom:286.432950px;}
.y110{bottom:286.804200px;}
.y122{bottom:287.139900px;}
.y114{bottom:287.535600px;}
.y12a{bottom:289.148400px;}
.y136{bottom:290.021550px;}
.ybe{bottom:292.827000px;}
.y11{bottom:294.936750px;}
.y126{bottom:295.569750px;}
.y141{bottom:295.763400px;}
.y132{bottom:298.033500px;}
.y13c{bottom:300.268800px;}
.y10b{bottom:305.415150px;}
.y117{bottom:306.233400px;}
.y12d{bottom:306.449550px;}
.y11b{bottom:306.465450px;}
.y8d{bottom:308.134200px;}
.y10f{bottom:308.404200px;}
.y121{bottom:308.739900px;}
.ybd{bottom:309.027000px;}
.y113{bottom:309.135600px;}
.y19{bottom:309.594300px;}
.y129{bottom:310.748400px;}
.y135{bottom:311.621550px;}
.y62{bottom:313.415250px;}
.y2c{bottom:313.432950px;}
.y125{bottom:317.169750px;}
.y140{bottom:317.363400px;}
.y131{bottom:319.633500px;}
.y13b{bottom:321.868800px;}
.y8c{bottom:324.334050px;}
.ybc{bottom:325.227000px;}
.y12c{bottom:328.049700px;}
.y120{bottom:330.339900px;}
.y128{bottom:332.348400px;}
.y134{bottom:333.221550px;}
.y98{bottom:333.504300px;}
.y124{bottom:338.769750px;}
.y13f{bottom:338.963400px;}
.y61{bottom:340.415250px;}
.y2b{bottom:340.432950px;}
.y8b{bottom:340.534200px;}
.y130{bottom:341.233500px;}
.ybb{bottom:341.427000px;}
.y10{bottom:348.936750px;}
.y12b{bottom:349.649550px;}
.y97{bottom:349.704150px;}
.y11f{bottom:351.939900px;}
.y127{bottom:353.948400px;}
.y133{bottom:354.821550px;}
.y18{bottom:356.094300px;}
.y8a{bottom:356.734200px;}
.y123{bottom:360.369750px;}
.y12f{bottom:362.833500px;}
.y96{bottom:365.904150px;}
.yd6{bottom:366.572250px;}
.y60{bottom:367.415250px;}
.y2a{bottom:367.432950px;}
.yad{bottom:374.161200px;}
.yf{bottom:375.936750px;}
.y45{bottom:379.051200px;}
.y95{bottom:382.104150px;}
.yd5{bottom:384.572250px;}
.yac{bottom:390.361200px;}
.y109{bottom:393.298950px;}
.y5f{bottom:394.415250px;}
.y29{bottom:394.432950px;}
.y44{bottom:395.251200px;}
.yd4{bottom:402.572250px;}
.y17{bottom:402.594300px;}
.ye{bottom:402.936750px;}
.y43{bottom:411.451200px;}
.y108{bottom:420.298950px;}
.yd3{bottom:420.572250px;}
.y5e{bottom:421.415250px;}
.y28{bottom:421.432950px;}
.yc9{bottom:425.066700px;}
.y42{bottom:427.651200px;}
.yd{bottom:429.936750px;}
.yc8{bottom:443.066700px;}
.y107{bottom:447.298950px;}
.y5d{bottom:448.415250px;}
.y27{bottom:448.432950px;}
.y16{bottom:449.094300px;}
.yc{bottom:456.936750px;}
.yc7{bottom:461.066700px;}
.ye2{bottom:465.607500px;}
.y106{bottom:474.298950px;}
.y5c{bottom:475.415250px;}
.y26{bottom:475.432950px;}
.yc6{bottom:479.066700px;}
.ye1{bottom:483.607500px;}
.yb{bottom:483.936750px;}
.y15{bottom:495.594300px;}
.y105{bottom:501.298950px;}
.ye0{bottom:501.607500px;}
.y5b{bottom:502.415250px;}
.y25{bottom:502.432950px;}
.y6f{bottom:507.303750px;}
.ya{bottom:510.936750px;}
.y7d{bottom:516.863250px;}
.ydf{bottom:519.607500px;}
.y6e{bottom:523.503750px;}
.y73{bottom:523.516950px;}
.y5a{bottom:529.415250px;}
.y24{bottom:529.432950px;}
.y7c{bottom:533.063250px;}
.yba{bottom:536.606550px;}
.y9{bottom:537.936750px;}
.y6d{bottom:539.703750px;}
.y72{bottom:539.716950px;}
.y14{bottom:542.094300px;}
.y7b{bottom:549.263250px;}
.yb9{bottom:552.806550px;}
.y104{bottom:555.298950px;}
.y6c{bottom:555.903750px;}
.y71{bottom:555.916950px;}
.y59{bottom:556.415250px;}
.y23{bottom:556.432950px;}
.y86{bottom:562.827000px;}
.yaa{bottom:564.432750px;}
.y8{bottom:564.936750px;}
.y7a{bottom:565.463250px;}
.yb8{bottom:569.006550px;}
.y6b{bottom:572.103750px;}
.y70{bottom:572.116950px;}
.y85{bottom:579.027000px;}
.ya9{bottom:580.632750px;}
.y79{bottom:581.663250px;}
.y58{bottom:583.415250px;}
.y22{bottom:583.432950px;}
.yb7{bottom:585.206550px;}
.y13{bottom:588.594300px;}
.y7{bottom:591.936750px;}
.y84{bottom:595.227150px;}
.ya8{bottom:596.832750px;}
.y103{bottom:609.298950px;}
.y57{bottom:610.415250px;}
.y21{bottom:610.432950px;}
.y83{bottom:611.427000px;}
.y94{bottom:615.877350px;}
.y6{bottom:618.936750px;}
.y93{bottom:632.077350px;}
.y12{bottom:635.094300px;}
.y102{bottom:636.298950px;}
.y56{bottom:637.415250px;}
.y20{bottom:637.432950px;}
.y92{bottom:648.277350px;}
.y55{bottom:664.415250px;}
.y39{bottom:664.432950px;}
.ya1{bottom:667.787550px;}
.ya0{bottom:683.987550px;}
.y101{bottom:690.298950px;}
.y54{bottom:691.415250px;}
.y1f{bottom:691.432950px;}
.y9f{bottom:700.187550px;}
.y9e{bottom:716.387550px;}
.y53{bottom:718.415250px;}
.y38{bottom:718.432950px;}
.y52{bottom:745.415250px;}
.y1e{bottom:745.432950px;}
.y51{bottom:772.415250px;}
.y1d{bottom:772.432950px;}
.y50{bottom:799.415250px;}
.y78{bottom:799.432950px;}
.y4f{bottom:826.415250px;}
.y1c{bottom:826.432950px;}
.hd{height:39.264000px;}
.h6{height:42.117188px;}
.hf{height:44.172000px;}
.hb{height:47.381836px;}
.ha{height:47.513672px;}
.he{height:49.080000px;}
.h12{height:49.992188px;}
.h16{height:51.264000px;}
.h14{height:52.632000px;}
.h7{height:52.646484px;}
.h10{height:52.792969px;}
.h11{height:55.080000px;}
.h9{height:58.646484px;}
.h8{height:58.896000px;}
.h2{height:61.404000px;}
.h3{height:63.175781px;}
.h4{height:63.351562px;}
.h15{height:67.464000px;}
.h13{height:73.080000px;}
.h5{height:76.646484px;}
.hc{height:76.792969px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x1a{left:71.007900px;}
.x18{left:88.015800px;}
.x19{left:105.023550px;}
.x12{left:346.990350px;}
.x1c{left:458.147550px;}
.xd{left:461.338650px;}
.x28{left:463.511550px;}
.x24{left:467.927100px;}
.x3b{left:472.381050px;}
.x33{left:474.373050px;}
.x20{left:476.927100px;}
.x2c{left:486.156300px;}
.x36{left:490.408200px;}
.x30{left:508.408200px;}
.x23{left:524.391300px;}
.x3d{left:531.979950px;}
.x3c{left:546.538950px;}
.x1b{left:550.125150px;}
.x1f{left:560.066850px;}
.x39{left:561.587550px;}
.x1d{left:566.612250px;}
.x3a{left:568.904700px;}
.x29{left:571.976250px;}
.x25{left:576.391800px;}
.x32{left:577.417350px;}
.x3e{left:579.462450px;}
.x2d{left:583.641750px;}
.x21{left:585.391800px;}
.x37{left:587.893800px;}
.x2b{left:589.091250px;}
.x35{left:591.403950px;}
.x38{left:593.600400px;}
.x27{left:598.661400px;}
.x1e{left:601.621800px;}
.x34{left:604.366050px;}
.x31{left:605.893800px;}
.x2a{left:606.985800px;}
.x26{left:611.401350px;}
.x2e{left:616.149300px;}
.x22{left:620.401350px;}
.x10{left:622.417350px;}
.x2f{left:633.406650px;}
.x14{left:639.243450px;}
.xf{left:640.417350px;}
.x13{left:642.411600px;}
.x15{left:657.425250px;}
.x16{left:674.433000px;}
.x17{left:691.440900px;}
.x5{left:818.494800px;}
.x8{left:824.972400px;}
.x4{left:827.011350px;}
.xa{left:831.977250px;}
.x9{left:837.400050px;}
.x6{left:838.454700px;}
.x2{left:840.476250px;}
.x7{left:854.512350px;}
.x3{left:862.765350px;}
.xc{left:894.933300px;}
.x11{left:931.992900px;}
.xe{left:933.625950px;}
.xb{left:1079.872800px;}
@media print{
.v4{vertical-align:-21.333333pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.333333pt;}
.v1{vertical-align:21.333333pt;}
.lse{letter-spacing:-2.560000pt;}
.lsf{letter-spacing:-2.133333pt;}
.lsb{letter-spacing:-1.973333pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls10{letter-spacing:-1.706667pt;}
.ls3{letter-spacing:-1.600000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.240000pt;}
.lsa{letter-spacing:13.395200pt;}
.ls14{letter-spacing:176.000000pt;}
.ws8e{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsab{word-spacing:-15.360000pt;}
.ws2{word-spacing:-13.333333pt;}
.wse3{word-spacing:-12.800000pt;}
.ws4e{word-spacing:-12.000000pt;}
.wsb4{word-spacing:-11.360000pt;}
.wsb5{word-spacing:-10.896000pt;}
.ws1f{word-spacing:-10.666667pt;}
.wse4{word-spacing:-10.240000pt;}
.wsb6{word-spacing:-9.685333pt;}
.wsd9{word-spacing:-9.258667pt;}
.wse0{word-spacing:-8.832000pt;}
.ws100{word-spacing:-7.232000pt;}
.ws82{word-spacing:-6.464000pt;}
.wsd{word-spacing:-6.080000pt;}
.wse6{word-spacing:-5.504000pt;}
.ws8d{word-spacing:-5.312000pt;}
.wsee{word-spacing:-4.736000pt;}
.ws86{word-spacing:-4.544000pt;}
.wseb{word-spacing:-4.416000pt;}
.ws9f{word-spacing:-4.288000pt;}
.ws24{word-spacing:-4.160000pt;}
.wsff{word-spacing:-3.840000pt;}
.ws81{word-spacing:-3.648000pt;}
.ws3a{word-spacing:-3.520000pt;}
.ws7c{word-spacing:-3.200000pt;}
.ws1b{word-spacing:-3.072000pt;}
.ws33{word-spacing:-3.008000pt;}
.wsb3{word-spacing:-2.933333pt;}
.wsca{word-spacing:-2.880000pt;}
.ws73{word-spacing:-2.816000pt;}
.ws4b{word-spacing:-2.752000pt;}
.ws2c{word-spacing:-2.666667pt;}
.ws76{word-spacing:-2.640000pt;}
.ws74{word-spacing:-2.624000pt;}
.ws3e{word-spacing:-2.560000pt;}
.ws72{word-spacing:-2.496000pt;}
.wsfd{word-spacing:-2.304000pt;}
.ws23{word-spacing:-2.240000pt;}
.ws48{word-spacing:-2.176000pt;}
.wse8{word-spacing:-2.112000pt;}
.ws43{word-spacing:-2.048000pt;}
.ws32{word-spacing:-1.984000pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.856000pt;}
.ws15{word-spacing:-1.792000pt;}
.wsaa{word-spacing:-1.776000pt;}
.ws6b{word-spacing:-1.728000pt;}
.wsd3{word-spacing:-1.706667pt;}
.ws4f{word-spacing:-1.600000pt;}
.ws35{word-spacing:-1.472000pt;}
.ws6a{word-spacing:-1.408000pt;}
.wscd{word-spacing:-1.386667pt;}
.wsb2{word-spacing:-1.280000pt;}
.wse1{word-spacing:-1.216000pt;}
.ws11{word-spacing:-1.152000pt;}
.wsc8{word-spacing:-1.088000pt;}
.ws29{word-spacing:-1.024000pt;}
.wsba{word-spacing:-0.960000pt;}
.ws9{word-spacing:-0.896000pt;}
.ws70{word-spacing:-0.864000pt;}
.ws96{word-spacing:-0.832000pt;}
.ws34{word-spacing:-0.768000pt;}
.ws39{word-spacing:-0.704000pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws4d{word-spacing:-0.576000pt;}
.wsdf{word-spacing:-0.533333pt;}
.ws7a{word-spacing:-0.512000pt;}
.ws6e{word-spacing:-0.448000pt;}
.wsd4{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.384000pt;}
.wsd2{word-spacing:-0.320000pt;}
.wsdb{word-spacing:-0.256000pt;}
.ws79{word-spacing:-0.192000pt;}
.ws50{word-spacing:-0.128000pt;}
.ws7e{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws44{word-spacing:0.064000pt;}
.wsfb{word-spacing:0.128000pt;}
.ws95{word-spacing:0.192000pt;}
.ws9e{word-spacing:0.256000pt;}
.ws68{word-spacing:0.320000pt;}
.ws71{word-spacing:0.384000pt;}
.wse9{word-spacing:0.426667pt;}
.ws3f{word-spacing:0.448000pt;}
.ws2e{word-spacing:0.480000pt;}
.wsa{word-spacing:0.512000pt;}
.wsd5{word-spacing:0.533333pt;}
.wsef{word-spacing:0.576000pt;}
.ws49{word-spacing:0.640000pt;}
.wsc1{word-spacing:0.693333pt;}
.wsa1{word-spacing:0.704000pt;}
.ws45{word-spacing:0.768000pt;}
.wsb7{word-spacing:0.832000pt;}
.ws6c{word-spacing:0.896000pt;}
.wsc0{word-spacing:0.906667pt;}
.ws75{word-spacing:1.024000pt;}
.wsea{word-spacing:1.066667pt;}
.ws57{word-spacing:1.088000pt;}
.ws60{word-spacing:1.152000pt;}
.ws1c{word-spacing:1.216000pt;}
.ws10{word-spacing:1.280000pt;}
.wsf8{word-spacing:1.344000pt;}
.wse{word-spacing:1.536000pt;}
.ws7{word-spacing:1.600000pt;}
.ws8f{word-spacing:1.664000pt;}
.wsde{word-spacing:1.706667pt;}
.wsfe{word-spacing:1.728000pt;}
.ws61{word-spacing:1.792000pt;}
.wsf2{word-spacing:1.920000pt;}
.ws5e{word-spacing:1.984000pt;}
.wsd7{word-spacing:2.112000pt;}
.wsdd{word-spacing:2.133333pt;}
.ws26{word-spacing:2.176000pt;}
.ws16{word-spacing:2.240000pt;}
.wsec{word-spacing:2.304000pt;}
.ws3b{word-spacing:2.368000pt;}
.wsc2{word-spacing:2.453333pt;}
.ws28{word-spacing:2.496000pt;}
.wsf9{word-spacing:2.560000pt;}
.wsb1{word-spacing:2.624000pt;}
.ws17{word-spacing:2.688000pt;}
.ws5a{word-spacing:2.752000pt;}
.ws58{word-spacing:2.816000pt;}
.ws9d{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.944000pt;}
.ws4c{word-spacing:3.008000pt;}
.ws5f{word-spacing:3.200000pt;}
.ws64{word-spacing:3.264000pt;}
.ws80{word-spacing:3.328000pt;}
.wsd8{word-spacing:3.392000pt;}
.ws65{word-spacing:3.456000pt;}
.wsac{word-spacing:3.520000pt;}
.ws98{word-spacing:3.584000pt;}
.ws38{word-spacing:3.648000pt;}
.ws30{word-spacing:3.712000pt;}
.wsf3{word-spacing:3.840000pt;}
.ws47{word-spacing:3.904000pt;}
.wsc9{word-spacing:3.968000pt;}
.ws51{word-spacing:4.032000pt;}
.ws91{word-spacing:4.096000pt;}
.wsc6{word-spacing:4.160000pt;}
.wsbd{word-spacing:4.288000pt;}
.wscf{word-spacing:4.352000pt;}
.wse7{word-spacing:4.544000pt;}
.ws3d{word-spacing:4.608000pt;}
.ws6f{word-spacing:4.672000pt;}
.ws2b{word-spacing:4.736000pt;}
.wsa0{word-spacing:4.800000pt;}
.wsd1{word-spacing:4.864000pt;}
.ws77{word-spacing:5.056000pt;}
.wse5{word-spacing:5.184000pt;}
.ws7b{word-spacing:5.248000pt;}
.ws37{word-spacing:5.312000pt;}
.ws63{word-spacing:5.376000pt;}
.ws56{word-spacing:5.504000pt;}
.ws25{word-spacing:5.568000pt;}
.ws3c{word-spacing:5.632000pt;}
.ws18{word-spacing:5.696000pt;}
.ws2f{word-spacing:5.760000pt;}
.wsae{word-spacing:5.824000pt;}
.ws7f{word-spacing:5.888000pt;}
.ws8{word-spacing:5.952000pt;}
.wsb9{word-spacing:6.016000pt;}
.ws5c{word-spacing:6.080000pt;}
.wsaf{word-spacing:6.144000pt;}
.ws41{word-spacing:6.272000pt;}
.ws40{word-spacing:6.336000pt;}
.ws85{word-spacing:6.400000pt;}
.wsb0{word-spacing:6.464000pt;}
.wsf6{word-spacing:6.528000pt;}
.wsb{word-spacing:6.592000pt;}
.ws21{word-spacing:6.656000pt;}
.wsa8{word-spacing:6.666667pt;}
.ws13{word-spacing:6.720000pt;}
.ws52{word-spacing:6.784000pt;}
.ws1e{word-spacing:6.848000pt;}
.wsa9{word-spacing:6.933333pt;}
.wsbb{word-spacing:6.976000pt;}
.wsa6{word-spacing:7.040000pt;}
.ws22{word-spacing:7.104000pt;}
.ws4a{word-spacing:7.168000pt;}
.ws36{word-spacing:7.296000pt;}
.ws5b{word-spacing:7.424000pt;}
.wsa2{word-spacing:7.488000pt;}
.wsc{word-spacing:7.552000pt;}
.wsf1{word-spacing:7.616000pt;}
.ws6{word-spacing:7.680000pt;}
.ws99{word-spacing:7.744000pt;}
.wsfa{word-spacing:7.808000pt;}
.ws8b{word-spacing:7.936000pt;}
.ws27{word-spacing:8.064000pt;}
.wsa4{word-spacing:8.128000pt;}
.wsa5{word-spacing:8.192000pt;}
.ws93{word-spacing:8.256000pt;}
.wsc7{word-spacing:8.384000pt;}
.wsbc{word-spacing:8.448000pt;}
.ws20{word-spacing:8.512000pt;}
.wsf{word-spacing:8.576000pt;}
.wsd0{word-spacing:8.640000pt;}
.ws1d{word-spacing:8.768000pt;}
.wsf5{word-spacing:8.832000pt;}
.ws89{word-spacing:8.896000pt;}
.wsfc{word-spacing:9.024000pt;}
.wscc{word-spacing:9.088000pt;}
.ws83{word-spacing:9.152000pt;}
.ws84{word-spacing:9.216000pt;}
.wscb{word-spacing:9.280000pt;}
.ws5{word-spacing:9.344000pt;}
.ws78{word-spacing:9.408000pt;}
.ws12{word-spacing:9.728000pt;}
.ws9a{word-spacing:9.856000pt;}
.ws6d{word-spacing:9.984000pt;}
.ws90{word-spacing:10.048000pt;}
.ws53{word-spacing:10.176000pt;}
.ws31{word-spacing:10.688000pt;}
.wsed{word-spacing:10.752000pt;}
.wsda{word-spacing:10.880000pt;}
.wsa3{word-spacing:11.008000pt;}
.wsf4{word-spacing:11.072000pt;}
.wsb8{word-spacing:11.200000pt;}
.wsc5{word-spacing:11.264000pt;}
.ws67{word-spacing:11.328000pt;}
.ws14{word-spacing:11.456000pt;}
.wsf7{word-spacing:11.584000pt;}
.ws8a{word-spacing:11.648000pt;}
.wse2{word-spacing:11.712000pt;}
.ws5d{word-spacing:11.904000pt;}
.wsad{word-spacing:12.032000pt;}
.ws92{word-spacing:13.056000pt;}
.wsce{word-spacing:13.120000pt;}
.wsf0{word-spacing:13.248000pt;}
.ws59{word-spacing:13.376000pt;}
.wsbe{word-spacing:13.386667pt;}
.wsbf{word-spacing:13.493333pt;}
.wsdc{word-spacing:13.824000pt;}
.ws62{word-spacing:13.888000pt;}
.ws94{word-spacing:14.016000pt;}
.ws9c{word-spacing:14.400000pt;}
.wsc4{word-spacing:14.592000pt;}
.ws42{word-spacing:14.848000pt;}
.ws97{word-spacing:14.976000pt;}
.ws54{word-spacing:15.104000pt;}
.wsd6{word-spacing:15.232000pt;}
.ws69{word-spacing:15.680000pt;}
.ws1a{word-spacing:15.808000pt;}
.ws87{word-spacing:16.512000pt;}
.ws55{word-spacing:16.576000pt;}
.ws4{word-spacing:16.704000pt;}
.ws19{word-spacing:16.960000pt;}
.ws9b{word-spacing:17.600000pt;}
.wsc3{word-spacing:19.360000pt;}
.ws3{word-spacing:19.584000pt;}
.ws66{word-spacing:20.608000pt;}
.ws46{word-spacing:23.552000pt;}
.ws88{word-spacing:24.640000pt;}
.ws102{word-spacing:136.960000pt;}
.ws101{word-spacing:176.000000pt;}
._11{margin-left:-10.508800pt;}
._10{margin-left:-9.382400pt;}
._5{margin-left:-8.217600pt;}
._1{margin-left:-7.168000pt;}
._4{margin-left:-6.105600pt;}
._3{margin-left:-4.480000pt;}
._b{margin-left:-3.481600pt;}
._0{margin-left:-2.240000pt;}
._2{margin-left:-0.896000pt;}
._1c{width:0.896000pt;}
._a{width:1.792000pt;}
._13{width:2.694400pt;}
._8{width:3.590400pt;}
._d{width:5.164800pt;}
._9{width:6.137600pt;}
._e{width:7.488000pt;}
._c{width:8.467200pt;}
._7{width:10.131200pt;}
._16{width:11.436800pt;}
._18{width:12.460800pt;}
._f{width:13.491200pt;}
._17{width:14.606933pt;}
._6{width:16.921600pt;}
._14{width:20.384000pt;}
._19{width:21.644800pt;}
._12{width:22.572800pt;}
._1a{width:23.572267pt;}
._1b{width:24.517333pt;}
._15{width:161.984000pt;}
._1d{width:176.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:17.271067pt;}
.y4e{bottom:18.604400pt;}
.yca{bottom:19.092267pt;}
.yfb{bottom:19.507200pt;}
.y49{bottom:19.549200pt;}
.y82{bottom:19.738267pt;}
.yef{bottom:20.063733pt;}
.y77{bottom:20.116133pt;}
.yde{bottom:20.179200pt;}
.y37{bottom:20.494133pt;}
.yab{bottom:20.612800pt;}
.ye3{bottom:22.194933pt;}
.y9d{bottom:22.383867pt;}
.yf5{bottom:22.614133pt;}
.yda{bottom:53.117333pt;}
.yb6{bottom:54.607067pt;}
.yf4{bottom:56.644933pt;}
.yc0{bottom:57.241867pt;}
.y91{bottom:57.582000pt;}
.y9c{bottom:58.715867pt;}
.yc1{bottom:58.841867pt;}
.yaf{bottom:58.869467pt;}
.yc5{bottom:62.591333pt;}
.y4b{bottom:62.607067pt;}
.y5{bottom:62.982533pt;}
.y76{bottom:63.541867pt;}
.yee{bottom:66.408667pt;}
.ydd{bottom:66.591333pt;}
.yb5{bottom:66.607067pt;}
.yfc{bottom:67.826133pt;}
.yd9{bottom:69.117333pt;}
.y34{bottom:69.273733pt;}
.ya4{bottom:69.968400pt;}
.yfa{bottom:71.385067pt;}
.y89{bottom:71.641867pt;}
.y90{bottom:71.982000pt;}
.y9b{bottom:73.115867pt;}
.ybf{bottom:73.241867pt;}
.y36{bottom:74.607067pt;}
.yf3{bottom:76.644933pt;}
.y75{bottom:77.941867pt;}
.ydc{bottom:78.591333pt;}
.ye8{bottom:78.607067pt;}
.yf6{bottom:82.607067pt;}
.y48{bottom:84.304133pt;}
.ya3{bottom:84.368400pt;}
.yd8{bottom:85.117333pt;}
.y4{bottom:85.382533pt;}
.y8f{bottom:86.382000pt;}
.yed{bottom:86.408667pt;}
.y6a{bottom:86.591333pt;}
.y4a{bottom:86.607067pt;}
.yf9{bottom:87.385067pt;}
.y9a{bottom:87.515867pt;}
.y88{bottom:87.641867pt;}
.y33{bottom:89.273733pt;}
.yc4{bottom:90.591333pt;}
.y41{bottom:90.607067pt;}
.y74{bottom:92.341867pt;}
.yd2{bottom:93.273733pt;}
.y35{bottom:94.607067pt;}
.ydb{bottom:98.591333pt;}
.ye7{bottom:98.607067pt;}
.ya2{bottom:98.768400pt;}
.y8e{bottom:100.782000pt;}
.yd7{bottom:101.117333pt;}
.y99{bottom:101.915867pt;}
.y81{bottom:101.999333pt;}
.y87{bottom:102.041867pt;}
.y100{bottom:103.348400pt;}
.yf8{bottom:103.385067pt;}
.y47{bottom:103.504133pt;}
.yd1{bottom:103.940400pt;}
.y10a{bottom:109.599067pt;}
.y69{bottom:110.591333pt;}
.y40{bottom:110.607067pt;}
.ye6{bottom:114.607067pt;}
.y80{bottom:116.399333pt;}
.y46{bottom:117.904133pt;}
.yd0{bottom:118.607067pt;}
.yec{bottom:118.915333pt;}
.yff{bottom:119.348400pt;}
.yf7{bottom:119.385067pt;}
.yf2{bottom:121.274933pt;}
.ye5{bottom:126.607067pt;}
.ya7{bottom:128.680000pt;}
.y3{bottom:130.182533pt;}
.y3f{bottom:130.607067pt;}
.y7f{bottom:130.799333pt;}
.yb4{bottom:134.162667pt;}
.y68{bottom:134.591333pt;}
.y32{bottom:134.607067pt;}
.yeb{bottom:134.915333pt;}
.yfe{bottom:135.348400pt;}
.ycf{bottom:137.273733pt;}
.yf1{bottom:137.274933pt;}
.ya6{bottom:143.080000pt;}
.y7e{bottom:145.199333pt;}
.y4d{bottom:146.249333pt;}
.ye4{bottom:146.607067pt;}
.yce{bottom:147.940400pt;}
.yb3{bottom:148.562667pt;}
.y3e{bottom:150.607067pt;}
.yea{bottom:150.915333pt;}
.yfd{bottom:151.348400pt;}
.y2{bottom:152.582533pt;}
.yf0{bottom:153.274933pt;}
.ya5{bottom:157.480000pt;}
.y67{bottom:158.591333pt;}
.y31{bottom:158.607067pt;}
.y4c{bottom:162.249333pt;}
.yc3{bottom:162.591333pt;}
.yb2{bottom:162.962667pt;}
.ycd{bottom:166.607067pt;}
.ye9{bottom:166.915333pt;}
.y3d{bottom:170.607067pt;}
.y13a{bottom:172.757467pt;}
.ycc{bottom:177.273733pt;}
.yb1{bottom:177.362667pt;}
.y66{bottom:182.591333pt;}
.y30{bottom:182.607067pt;}
.yc2{bottom:186.591333pt;}
.y3c{bottom:190.607067pt;}
.yb0{bottom:191.762667pt;}
.y139{bottom:191.957467pt;}
.y1b{bottom:192.528267pt;}
.ycb{bottom:195.940400pt;}
.y1{bottom:197.382533pt;}
.y65{bottom:206.591333pt;}
.y2f{bottom:206.607067pt;}
.y3b{bottom:210.607067pt;}
.y138{bottom:211.157467pt;}
.y10e{bottom:213.880133pt;}
.y11a{bottom:214.607467pt;}
.y11e{bottom:214.813733pt;}
.y112{bottom:216.537067pt;}
.y116{bottom:217.187200pt;}
.y13e{bottom:228.505600pt;}
.y137{bottom:230.357467pt;}
.y64{bottom:230.591333pt;}
.y2e{bottom:230.607067pt;}
.y10d{bottom:233.080133pt;}
.y119{bottom:233.807467pt;}
.y1a{bottom:233.861600pt;}
.y11d{bottom:234.013733pt;}
.y3a{bottom:234.607067pt;}
.y111{bottom:235.737067pt;}
.y115{bottom:236.387200pt;}
.y142{bottom:243.700800pt;}
.y13d{bottom:247.705600pt;}
.y10c{bottom:252.280133pt;}
.y118{bottom:253.007467pt;}
.y12e{bottom:253.199600pt;}
.y11c{bottom:253.213733pt;}
.y63{bottom:254.591333pt;}
.y2d{bottom:254.607067pt;}
.y110{bottom:254.937067pt;}
.y122{bottom:255.235467pt;}
.y114{bottom:255.587200pt;}
.y12a{bottom:257.020800pt;}
.y136{bottom:257.796933pt;}
.ybe{bottom:260.290667pt;}
.y11{bottom:262.166000pt;}
.y126{bottom:262.728667pt;}
.y141{bottom:262.900800pt;}
.y132{bottom:264.918667pt;}
.y13c{bottom:266.905600pt;}
.y10b{bottom:271.480133pt;}
.y117{bottom:272.207467pt;}
.y12d{bottom:272.399600pt;}
.y11b{bottom:272.413733pt;}
.y8d{bottom:273.897067pt;}
.y10f{bottom:274.137067pt;}
.y121{bottom:274.435467pt;}
.ybd{bottom:274.690667pt;}
.y113{bottom:274.787200pt;}
.y19{bottom:275.194933pt;}
.y129{bottom:276.220800pt;}
.y135{bottom:276.996933pt;}
.y62{bottom:278.591333pt;}
.y2c{bottom:278.607067pt;}
.y125{bottom:281.928667pt;}
.y140{bottom:282.100800pt;}
.y131{bottom:284.118667pt;}
.y13b{bottom:286.105600pt;}
.y8c{bottom:288.296933pt;}
.ybc{bottom:289.090667pt;}
.y12c{bottom:291.599733pt;}
.y120{bottom:293.635467pt;}
.y128{bottom:295.420800pt;}
.y134{bottom:296.196933pt;}
.y98{bottom:296.448267pt;}
.y124{bottom:301.128667pt;}
.y13f{bottom:301.300800pt;}
.y61{bottom:302.591333pt;}
.y2b{bottom:302.607067pt;}
.y8b{bottom:302.697067pt;}
.y130{bottom:303.318667pt;}
.ybb{bottom:303.490667pt;}
.y10{bottom:310.166000pt;}
.y12b{bottom:310.799600pt;}
.y97{bottom:310.848133pt;}
.y11f{bottom:312.835467pt;}
.y127{bottom:314.620800pt;}
.y133{bottom:315.396933pt;}
.y18{bottom:316.528267pt;}
.y8a{bottom:317.097067pt;}
.y123{bottom:320.328667pt;}
.y12f{bottom:322.518667pt;}
.y96{bottom:325.248133pt;}
.yd6{bottom:325.842000pt;}
.y60{bottom:326.591333pt;}
.y2a{bottom:326.607067pt;}
.yad{bottom:332.587733pt;}
.yf{bottom:334.166000pt;}
.y45{bottom:336.934400pt;}
.y95{bottom:339.648133pt;}
.yd5{bottom:341.842000pt;}
.yac{bottom:346.987733pt;}
.y109{bottom:349.599067pt;}
.y5f{bottom:350.591333pt;}
.y29{bottom:350.607067pt;}
.y44{bottom:351.334400pt;}
.yd4{bottom:357.842000pt;}
.y17{bottom:357.861600pt;}
.ye{bottom:358.166000pt;}
.y43{bottom:365.734400pt;}
.y108{bottom:373.599067pt;}
.yd3{bottom:373.842000pt;}
.y5e{bottom:374.591333pt;}
.y28{bottom:374.607067pt;}
.yc9{bottom:377.837067pt;}
.y42{bottom:380.134400pt;}
.yd{bottom:382.166000pt;}
.yc8{bottom:393.837067pt;}
.y107{bottom:397.599067pt;}
.y5d{bottom:398.591333pt;}
.y27{bottom:398.607067pt;}
.y16{bottom:399.194933pt;}
.yc{bottom:406.166000pt;}
.yc7{bottom:409.837067pt;}
.ye2{bottom:413.873333pt;}
.y106{bottom:421.599067pt;}
.y5c{bottom:422.591333pt;}
.y26{bottom:422.607067pt;}
.yc6{bottom:425.837067pt;}
.ye1{bottom:429.873333pt;}
.yb{bottom:430.166000pt;}
.y15{bottom:440.528267pt;}
.y105{bottom:445.599067pt;}
.ye0{bottom:445.873333pt;}
.y5b{bottom:446.591333pt;}
.y25{bottom:446.607067pt;}
.y6f{bottom:450.936667pt;}
.ya{bottom:454.166000pt;}
.y7d{bottom:459.434000pt;}
.ydf{bottom:461.873333pt;}
.y6e{bottom:465.336667pt;}
.y73{bottom:465.348400pt;}
.y5a{bottom:470.591333pt;}
.y24{bottom:470.607067pt;}
.y7c{bottom:473.834000pt;}
.yba{bottom:476.983600pt;}
.y9{bottom:478.166000pt;}
.y6d{bottom:479.736667pt;}
.y72{bottom:479.748400pt;}
.y14{bottom:481.861600pt;}
.y7b{bottom:488.234000pt;}
.yb9{bottom:491.383600pt;}
.y104{bottom:493.599067pt;}
.y6c{bottom:494.136667pt;}
.y71{bottom:494.148400pt;}
.y59{bottom:494.591333pt;}
.y23{bottom:494.607067pt;}
.y86{bottom:500.290667pt;}
.yaa{bottom:501.718000pt;}
.y8{bottom:502.166000pt;}
.y7a{bottom:502.634000pt;}
.yb8{bottom:505.783600pt;}
.y6b{bottom:508.536667pt;}
.y70{bottom:508.548400pt;}
.y85{bottom:514.690667pt;}
.ya9{bottom:516.118000pt;}
.y79{bottom:517.034000pt;}
.y58{bottom:518.591333pt;}
.y22{bottom:518.607067pt;}
.yb7{bottom:520.183600pt;}
.y13{bottom:523.194933pt;}
.y7{bottom:526.166000pt;}
.y84{bottom:529.090800pt;}
.ya8{bottom:530.518000pt;}
.y103{bottom:541.599067pt;}
.y57{bottom:542.591333pt;}
.y21{bottom:542.607067pt;}
.y83{bottom:543.490667pt;}
.y94{bottom:547.446533pt;}
.y6{bottom:550.166000pt;}
.y93{bottom:561.846533pt;}
.y12{bottom:564.528267pt;}
.y102{bottom:565.599067pt;}
.y56{bottom:566.591333pt;}
.y20{bottom:566.607067pt;}
.y92{bottom:576.246533pt;}
.y55{bottom:590.591333pt;}
.y39{bottom:590.607067pt;}
.ya1{bottom:593.588933pt;}
.ya0{bottom:607.988933pt;}
.y101{bottom:613.599067pt;}
.y54{bottom:614.591333pt;}
.y1f{bottom:614.607067pt;}
.y9f{bottom:622.388933pt;}
.y9e{bottom:636.788933pt;}
.y53{bottom:638.591333pt;}
.y38{bottom:638.607067pt;}
.y52{bottom:662.591333pt;}
.y1e{bottom:662.607067pt;}
.y51{bottom:686.591333pt;}
.y1d{bottom:686.607067pt;}
.y50{bottom:710.591333pt;}
.y78{bottom:710.607067pt;}
.y4f{bottom:734.591333pt;}
.y1c{bottom:734.607067pt;}
.hd{height:34.901333pt;}
.h6{height:37.437500pt;}
.hf{height:39.264000pt;}
.hb{height:42.117188pt;}
.ha{height:42.234375pt;}
.he{height:43.626667pt;}
.h12{height:44.437500pt;}
.h16{height:45.568000pt;}
.h14{height:46.784000pt;}
.h7{height:46.796875pt;}
.h10{height:46.927083pt;}
.h11{height:48.960000pt;}
.h9{height:52.130208pt;}
.h8{height:52.352000pt;}
.h2{height:54.581333pt;}
.h3{height:56.156250pt;}
.h4{height:56.312500pt;}
.h15{height:59.968000pt;}
.h13{height:64.960000pt;}
.h5{height:68.130208pt;}
.hc{height:68.260417pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x1a{left:63.118133pt;}
.x18{left:78.236267pt;}
.x19{left:93.354267pt;}
.x12{left:308.435867pt;}
.x1c{left:407.242267pt;}
.xd{left:410.078800pt;}
.x28{left:412.010267pt;}
.x24{left:415.935200pt;}
.x3b{left:419.894267pt;}
.x33{left:421.664933pt;}
.x20{left:423.935200pt;}
.x2c{left:432.138933pt;}
.x36{left:435.918400pt;}
.x30{left:451.918400pt;}
.x23{left:466.125600pt;}
.x3d{left:472.871067pt;}
.x3c{left:485.812400pt;}
.x1b{left:489.000133pt;}
.x1f{left:497.837200pt;}
.x39{left:499.188933pt;}
.x1d{left:503.655333pt;}
.x3a{left:505.693067pt;}
.x29{left:508.423333pt;}
.x25{left:512.348267pt;}
.x32{left:513.259867pt;}
.x3e{left:515.077733pt;}
.x2d{left:518.792667pt;}
.x21{left:520.348267pt;}
.x37{left:522.572267pt;}
.x2b{left:523.636667pt;}
.x35{left:525.692400pt;}
.x38{left:527.644800pt;}
.x27{left:532.143467pt;}
.x1e{left:534.774933pt;}
.x34{left:537.214267pt;}
.x31{left:538.572267pt;}
.x2a{left:539.542933pt;}
.x26{left:543.467867pt;}
.x2e{left:547.688267pt;}
.x22{left:551.467867pt;}
.x10{left:553.259867pt;}
.x2f{left:563.028133pt;}
.x14{left:568.216400pt;}
.xf{left:569.259867pt;}
.x13{left:571.032533pt;}
.x15{left:584.378000pt;}
.x16{left:599.496000pt;}
.x17{left:614.614133pt;}
.x5{left:727.550933pt;}
.x8{left:733.308800pt;}
.x4{left:735.121200pt;}
.xa{left:739.535333pt;}
.x9{left:744.355600pt;}
.x6{left:745.293067pt;}
.x2{left:747.090000pt;}
.x7{left:759.566533pt;}
.x3{left:766.902533pt;}
.xc{left:795.496267pt;}
.x11{left:828.438133pt;}
.xe{left:829.889733pt;}
.xb{left:959.886933pt;}
}




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