
    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_ca7220201925d34782b53ee4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073000;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_0a3389a619425eb17a11e6ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.714000;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_ef938e5318ade4918f3b2680.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073000;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_05466119b291f9dc1220461e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_ad2e56a89691e9ee9dcbc441.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937000;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_ca7220201925d34782b53ee4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073000;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_ca7220201925d34782b53ee4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073000;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_0a3389a619425eb17a11e6ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_a837d60254cd2495efcc3649.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.067000;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_ca7220201925d34782b53ee4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.073000;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_ca7220201925d34782b53ee4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.073000;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_0a3389a619425eb17a11e6ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;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:ffd;src:url('chunks/assets/font_e72d701691b9df12518118f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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);}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-2.220000px;}
.ls5c{letter-spacing:-2.106000px;}
.ls29{letter-spacing:-2.040000px;}
.ls2f{letter-spacing:-1.860000px;}
.ls5a{letter-spacing:-1.728000px;}
.ls4e{letter-spacing:-1.620000px;}
.ls2d{letter-spacing:-1.560000px;}
.ls2c{letter-spacing:-1.500000px;}
.ls35{letter-spacing:-1.440000px;}
.ls4d{letter-spacing:-1.404000px;}
.ls2b{letter-spacing:-1.380000px;}
.ls3f{letter-spacing:-1.350000px;}
.ls2e{letter-spacing:-1.260000px;}
.ls2a{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-1.134000px;}
.ls3{letter-spacing:-1.080000px;}
.ls5b{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.918000px;}
.ls30{letter-spacing:-0.900000px;}
.ls1f{letter-spacing:-0.840000px;}
.lsb{letter-spacing:-0.810000px;}
.ls23{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.756000px;}
.ls3b{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.594000px;}
.ls26{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.486000px;}
.ls17{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.378000px;}
.ls24{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.336000px;}
.ls4b{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls4c{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.180000px;}
.ls55{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls4f{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.030000px;}
.ls4{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.150000px;}
.ls54{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.240000px;}
.ls50{letter-spacing:0.243000px;}
.ls5{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.300000px;}
.ls47{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.330000px;}
.ls56{letter-spacing:0.351000px;}
.ls42{letter-spacing:0.360000px;}
.ls53{letter-spacing:0.378000px;}
.ls41{letter-spacing:0.390000px;}
.ls15{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls49{letter-spacing:0.486000px;}
.ls3c{letter-spacing:0.510000px;}
.ls3a{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.594000px;}
.ls44{letter-spacing:0.600000px;}
.ls4a{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.660000px;}
.ls33{letter-spacing:0.715800px;}
.ls32{letter-spacing:0.716400px;}
.ls13{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.780000px;}
.ls52{letter-spacing:0.837000px;}
.ls34{letter-spacing:0.840000px;}
.ls40{letter-spacing:0.900000px;}
.ls51{letter-spacing:0.918000px;}
.ls3e{letter-spacing:0.928200px;}
.ls3d{letter-spacing:0.928800px;}
.ls39{letter-spacing:1.080000px;}
.ls43{letter-spacing:1.200000px;}
.ls46{letter-spacing:1.440000px;}
.ls5d{letter-spacing:1.782000px;}
.ls45{letter-spacing:1.800000px;}
.ls57{letter-spacing:2.376000px;}
.ls59{letter-spacing:2.430000px;}
.ls58{letter-spacing:2.808000px;}
.ls5e{letter-spacing:2.862000px;}
.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;}
}
.ws2{word-spacing:-22.680000px;}
.wsc0{word-spacing:-20.142000px;}
.ws94{word-spacing:-19.320000px;}
.ws77{word-spacing:-19.200000px;}
.ws82{word-spacing:-18.240000px;}
.wsa0{word-spacing:-18.117000px;}
.ws16{word-spacing:-17.280000px;}
.wsbf{word-spacing:-17.226000px;}
.wsae{word-spacing:-17.010000px;}
.ws95{word-spacing:-16.956000px;}
.ws8e{word-spacing:-16.500000px;}
.ws3{word-spacing:-16.440000px;}
.ws78{word-spacing:-16.380000px;}
.wsbe{word-spacing:-16.254000px;}
.ws40{word-spacing:-15.456000px;}
.ws17{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.796000px;}
.ws83{word-spacing:-14.592000px;}
.ws1{word-spacing:-14.400000px;}
.ws97{word-spacing:-14.310000px;}
.wsbd{word-spacing:-13.878000px;}
.ws96{word-spacing:-13.176000px;}
.ws0{word-spacing:-11.520000px;}
.ws6{word-spacing:-8.484000px;}
.ws2d{word-spacing:-2.880000px;}
.ws7{word-spacing:-2.820000px;}
.wsd0{word-spacing:-2.808000px;}
.ws7e{word-spacing:-2.700000px;}
.ws8a{word-spacing:-2.640000px;}
.ws1c{word-spacing:-2.592000px;}
.ws54{word-spacing:-2.580000px;}
.ws51{word-spacing:-2.520000px;}
.wsc3{word-spacing:-2.484000px;}
.ws66{word-spacing:-2.460000px;}
.ws26{word-spacing:-2.376000px;}
.ws84{word-spacing:-2.340000px;}
.ws32{word-spacing:-2.280000px;}
.ws43{word-spacing:-2.220000px;}
.ws9a{word-spacing:-2.214000px;}
.ws60{word-spacing:-2.160000px;}
.wsa7{word-spacing:-2.106000px;}
.ws3d{word-spacing:-2.100000px;}
.wsb9{word-spacing:-2.052000px;}
.ws2e{word-spacing:-2.040000px;}
.ws25{word-spacing:-1.998000px;}
.ws71{word-spacing:-1.980000px;}
.ws70{word-spacing:-1.920000px;}
.wsc6{word-spacing:-1.890000px;}
.ws4a{word-spacing:-1.860000px;}
.wsa8{word-spacing:-1.836000px;}
.ws64{word-spacing:-1.800000px;}
.wsd2{word-spacing:-1.782000px;}
.ws90{word-spacing:-1.740000px;}
.wsba{word-spacing:-1.728000px;}
.ws35{word-spacing:-1.680000px;}
.wsc4{word-spacing:-1.674000px;}
.ws3b{word-spacing:-1.620000px;}
.ws46{word-spacing:-1.560000px;}
.wsa6{word-spacing:-1.512000px;}
.wsc9{word-spacing:-1.458000px;}
.ws62{word-spacing:-1.440000px;}
.wsc2{word-spacing:-1.404000px;}
.ws69{word-spacing:-1.380000px;}
.wsa{word-spacing:-1.350000px;}
.ws58{word-spacing:-1.320000px;}
.ws59{word-spacing:-1.260000px;}
.wsca{word-spacing:-1.242000px;}
.ws68{word-spacing:-1.200000px;}
.ws1b{word-spacing:-1.188000px;}
.ws41{word-spacing:-1.140000px;}
.wsc8{word-spacing:-1.134000px;}
.ws38{word-spacing:-1.080000px;}
.ws1f{word-spacing:-1.026000px;}
.ws48{word-spacing:-1.020000px;}
.ws28{word-spacing:-0.972000px;}
.ws63{word-spacing:-0.960000px;}
.ws1e{word-spacing:-0.918000px;}
.ws7f{word-spacing:-0.900000px;}
.ws6d{word-spacing:-0.840000px;}
.ws3f{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.756000px;}
.ws3e{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.660000px;}
.ws55{word-spacing:-0.600000px;}
.ws61{word-spacing:-0.540000px;}
.ws1a{word-spacing:-0.486000px;}
.ws30{word-spacing:-0.480000px;}
.wsaa{word-spacing:-0.432000px;}
.wsab{word-spacing:-0.378000px;}
.ws6a{word-spacing:-0.360000px;}
.ws34{word-spacing:-0.300000px;}
.ws24{word-spacing:-0.270000px;}
.ws33{word-spacing:-0.240000px;}
.wsb2{word-spacing:-0.216000px;}
.ws5d{word-spacing:-0.180000px;}
.wsb3{word-spacing:-0.162000px;}
.ws67{word-spacing:-0.120000px;}
.ws99{word-spacing:-0.108000px;}
.ws5e{word-spacing:-0.060000px;}
.wsaf{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws9c{word-spacing:0.054000px;}
.ws4f{word-spacing:0.060000px;}
.ws73{word-spacing:0.120000px;}
.wsce{word-spacing:0.162000px;}
.ws5c{word-spacing:0.180000px;}
.ws20{word-spacing:0.216000px;}
.ws56{word-spacing:0.240000px;}
.wsbb{word-spacing:0.270000px;}
.ws52{word-spacing:0.300000px;}
.ws50{word-spacing:0.360000px;}
.wsa5{word-spacing:0.378000px;}
.ws3c{word-spacing:0.420000px;}
.ws15{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480000px;}
.ws18{word-spacing:0.486000px;}
.ws19{word-spacing:0.540000px;}
.wsc5{word-spacing:0.594000px;}
.ws72{word-spacing:0.600000px;}
.wsb6{word-spacing:0.648000px;}
.ws80{word-spacing:0.660000px;}
.ws9f{word-spacing:0.702000px;}
.ws2c{word-spacing:0.720000px;}
.wsb5{word-spacing:0.756000px;}
.ws88{word-spacing:0.780000px;}
.ws29{word-spacing:0.810000px;}
.ws4e{word-spacing:0.840000px;}
.wsf{word-spacing:0.864000px;}
.ws39{word-spacing:0.900000px;}
.wsa9{word-spacing:0.972000px;}
.ws45{word-spacing:1.020000px;}
.wsac{word-spacing:1.026000px;}
.wse{word-spacing:1.080000px;}
.ws8c{word-spacing:1.140000px;}
.wsc1{word-spacing:1.188000px;}
.ws37{word-spacing:1.200000px;}
.wsbc{word-spacing:1.242000px;}
.ws8b{word-spacing:1.260000px;}
.ws1d{word-spacing:1.296000px;}
.ws4d{word-spacing:1.320000px;}
.ws85{word-spacing:1.350000px;}
.ws91{word-spacing:1.380000px;}
.ws9d{word-spacing:1.404000px;}
.ws42{word-spacing:1.440000px;}
.wsb4{word-spacing:1.458000px;}
.ws93{word-spacing:1.500000px;}
.ws4b{word-spacing:1.560000px;}
.wsb8{word-spacing:1.566000px;}
.ws12{word-spacing:1.620000px;}
.wscc{word-spacing:1.674000px;}
.ws4c{word-spacing:1.680000px;}
.ws27{word-spacing:1.728000px;}
.ws81{word-spacing:1.740000px;}
.wsb7{word-spacing:1.782000px;}
.ws74{word-spacing:1.860000px;}
.wsb1{word-spacing:1.890000px;}
.ws47{word-spacing:1.920000px;}
.wscb{word-spacing:1.944000px;}
.ws87{word-spacing:1.980000px;}
.ws2b{word-spacing:1.998000px;}
.wsa3{word-spacing:2.052000px;}
.ws92{word-spacing:2.100000px;}
.wscd{word-spacing:2.106000px;}
.ws22{word-spacing:2.214000px;}
.wsa4{word-spacing:2.268000px;}
.ws6b{word-spacing:2.280000px;}
.ws9e{word-spacing:2.322000px;}
.ws7b{word-spacing:2.340000px;}
.wsa2{word-spacing:2.376000px;}
.ws8d{word-spacing:2.400000px;}
.ws2a{word-spacing:2.430000px;}
.ws5a{word-spacing:2.460000px;}
.ws6c{word-spacing:2.520000px;}
.ws79{word-spacing:2.580000px;}
.ws23{word-spacing:2.592000px;}
.ws6f{word-spacing:2.640000px;}
.wsb0{word-spacing:2.646000px;}
.ws3a{word-spacing:2.700000px;}
.ws7c{word-spacing:2.760000px;}
.ws6e{word-spacing:2.880000px;}
.wsad{word-spacing:2.916000px;}
.ws89{word-spacing:2.940000px;}
.ws9b{word-spacing:2.970000px;}
.ws7d{word-spacing:3.000000px;}
.ws53{word-spacing:3.060000px;}
.ws36{word-spacing:3.120000px;}
.ws76{word-spacing:3.180000px;}
.ws49{word-spacing:3.240000px;}
.ws57{word-spacing:3.300000px;}
.wsc7{word-spacing:3.348000px;}
.ws86{word-spacing:3.420000px;}
.ws98{word-spacing:3.456000px;}
.ws65{word-spacing:3.540000px;}
.ws8f{word-spacing:3.600000px;}
.ws10{word-spacing:3.618000px;}
.ws44{word-spacing:3.720000px;}
.ws5b{word-spacing:3.780000px;}
.ws31{word-spacing:3.840000px;}
.wscf{word-spacing:3.888000px;}
.wsd1{word-spacing:4.050000px;}
.wsb{word-spacing:4.374000px;}
.ws21{word-spacing:4.482000px;}
.wsd3{word-spacing:4.752000px;}
.ws7a{word-spacing:4.980000px;}
.ws75{word-spacing:5.760000px;}
.ws14{word-spacing:6.426000px;}
.ws13{word-spacing:6.750000px;}
.ws11{word-spacing:6.912000px;}
.wsd{word-spacing:7.506000px;}
.wsc{word-spacing:8.748000px;}
.ws9{word-spacing:9.990000px;}
.ws8{word-spacing:10.044000px;}
._10{margin-left:-7.954200px;}
._f{margin-left:-6.580800px;}
._7{margin-left:-5.425200px;}
._6{margin-left:-3.780000px;}
._2{margin-left:-2.700000px;}
._3{margin-left:-1.125000px;}
._5{width:1.591200px;}
._8{width:2.694000px;}
._0{width:7.192800px;}
._4{width:8.815200px;}
._b{width:22.320000px;}
._a{width:23.760000px;}
._c{width:30.120000px;}
._9{width:49.980000px;}
._d{width:235.164000px;}
._e{width:401.302800px;}
._1{width:412.867200px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs9{font-size:45.600000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.543300px;}
.y1d{bottom:132.616950px;}
.yc7{bottom:135.775500px;}
.y71{bottom:135.864600px;}
.y47{bottom:137.119950px;}
.y89{bottom:137.848950px;}
.yb8{bottom:142.608750px;}
.y112{bottom:146.211150px;}
.y1c{bottom:149.116950px;}
.y168{bottom:150.029400px;}
.yc6{bottom:153.775500px;}
.y70{bottom:153.864600px;}
.y46{bottom:155.119950px;}
.y88{bottom:155.848950px;}
.yb7{bottom:160.608750px;}
.y159{bottom:162.277350px;}
.y111{bottom:162.711150px;}
.y1b{bottom:165.616950px;}
.y167{bottom:166.529400px;}
.y6f{bottom:171.864600px;}
.y87{bottom:173.848950px;}
.yb6{bottom:178.608750px;}
.y158{bottom:178.777350px;}
.y110{bottom:179.211150px;}
.y1a{bottom:182.116950px;}
.y166{bottom:183.029400px;}
.yc5{bottom:184.531350px;}
.y138{bottom:185.155350px;}
.y45{bottom:185.875800px;}
.y6e{bottom:189.864600px;}
.y86{bottom:191.848950px;}
.yb5{bottom:196.608750px;}
.y157{bottom:197.403450px;}
.y10f{bottom:197.837100px;}
.y19{bottom:198.616950px;}
.y137{bottom:201.655350px;}
.yc4{bottom:202.531350px;}
.y6d{bottom:207.864600px;}
.y85{bottom:209.848950px;}
.y156{bottom:213.903450px;}
.y10e{bottom:214.337100px;}
.yb4{bottom:214.608750px;}
.y18{bottom:215.116950px;}
.y136{bottom:218.155350px;}
.yed{bottom:222.604800px;}
.y6c{bottom:225.864600px;}
.y84{bottom:227.848950px;}
.y155{bottom:230.403450px;}
.y17{bottom:231.616950px;}
.yb3{bottom:232.608750px;}
.y10d{bottom:232.963050px;}
.yc3{bottom:234.031350px;}
.y135{bottom:236.781300px;}
.y44{bottom:237.891600px;}
.y6b{bottom:243.864600px;}
.y83{bottom:245.848950px;}
.y154{bottom:249.029400px;}
.y10c{bottom:249.463050px;}
.yb2{bottom:250.608750px;}
.yc2{bottom:252.031350px;}
.y134{bottom:253.281300px;}
.y43{bottom:254.391600px;}
.y16{bottom:256.620900px;}
.y6a{bottom:261.864600px;}
.y82{bottom:263.848950px;}
.y153{bottom:265.529400px;}
.y10b{bottom:268.089000px;}
.yb1{bottom:268.608750px;}
.y133{bottom:269.781300px;}
.yc1{bottom:270.031350px;}
.y165{bottom:271.907250px;}
.y69{bottom:279.864600px;}
.y81{bottom:281.848950px;}
.y152{bottom:282.029400px;}
.y42{bottom:283.647450px;}
.y10a{bottom:284.589000px;}
.yb0{bottom:286.608750px;}
.yc0{bottom:288.031350px;}
.y132{bottom:288.407250px;}
.y68{bottom:297.864600px;}
.y80{bottom:299.848950px;}
.y41{bottom:300.147450px;}
.y151{bottom:300.655350px;}
.y109{bottom:303.215100px;}
.yaf{bottom:304.608750px;}
.y131{bottom:304.907250px;}
.ybf{bottom:306.031350px;}
.y67{bottom:315.864600px;}
.y40{bottom:316.647450px;}
.y150{bottom:317.155350px;}
.y7f{bottom:317.848950px;}
.y108{bottom:319.715100px;}
.y130{bottom:321.407250px;}
.y15{bottom:321.854700px;}
.yae{bottom:322.608750px;}
.y164{bottom:323.533350px;}
.ybe{bottom:324.031350px;}
.y3f{bottom:333.147450px;}
.y66{bottom:333.864600px;}
.y14f{bottom:335.781300px;}
.y7e{bottom:335.848950px;}
.y107{bottom:338.341050px;}
.y14{bottom:338.354700px;}
.y12f{bottom:340.033350px;}
.yad{bottom:340.608750px;}
.ybd{bottom:342.031350px;}
.y3e{bottom:349.647450px;}
.y65{bottom:351.864600px;}
.y14e{bottom:352.281300px;}
.y7d{bottom:353.848950px;}
.y106{bottom:354.841050px;}
.y13{bottom:354.854700px;}
.y12e{bottom:356.533350px;}
.yac{bottom:358.608750px;}
.y163{bottom:358.659300px;}
.ybc{bottom:360.031350px;}
.y3d{bottom:366.147450px;}
.y64{bottom:369.864600px;}
.y14d{bottom:370.907250px;}
.y105{bottom:371.341050px;}
.y12{bottom:371.354700px;}
.y7c{bottom:371.848950px;}
.y12d{bottom:373.033350px;}
.y162{bottom:375.159300px;}
.yab{bottom:376.608750px;}
.ybb{bottom:378.031350px;}
.y3c{bottom:382.647450px;}
.y14c{bottom:387.407250px;}
.y11{bottom:387.854700px;}
.y63{bottom:387.864600px;}
.y12c{bottom:389.533350px;}
.y7b{bottom:389.848950px;}
.y104{bottom:389.967000px;}
.y161{bottom:391.659300px;}
.yaa{bottom:394.608750px;}
.yba{bottom:396.031350px;}
.y3b{bottom:399.147450px;}
.y14b{bottom:403.907250px;}
.y62{bottom:405.864600px;}
.y103{bottom:406.467000px;}
.y7a{bottom:407.848950px;}
.y12b{bottom:408.159300px;}
.y160{bottom:410.285250px;}
.ya9{bottom:412.608750px;}
.y3a{bottom:415.647450px;}
.yec{bottom:419.666400px;}
.y14a{bottom:422.533350px;}
.y61{bottom:423.864600px;}
.y12a{bottom:424.659300px;}
.y102{bottom:425.093100px;}
.y79{bottom:425.848950px;}
.y15f{bottom:426.785250px;}
.ya8{bottom:430.608750px;}
.y39{bottom:432.147450px;}
.yeb{bottom:436.166400px;}
.yb9{bottom:438.604800px;}
.y149{bottom:439.033350px;}
.y101{bottom:441.593100px;}
.y60{bottom:441.864600px;}
.y129{bottom:443.285250px;}
.y78{bottom:443.848950px;}
.y10{bottom:447.856050px;}
.ya7{bottom:448.608750px;}
.y38{bottom:448.647450px;}
.y148{bottom:455.533350px;}
.y128{bottom:459.785250px;}
.y5f{bottom:459.864600px;}
.y100{bottom:460.219050px;}
.yea{bottom:460.293450px;}
.y77{bottom:461.848950px;}
.yf{bottom:464.356050px;}
.y37{bottom:465.147450px;}
.ya6{bottom:466.608750px;}
.y147{bottom:474.159300px;}
.y127{bottom:476.285250px;}
.yff{bottom:476.719050px;}
.ye9{bottom:476.793450px;}
.y5e{bottom:477.864600px;}
.y15e{bottom:478.411350px;}
.y76{bottom:479.848950px;}
.ye{bottom:480.856050px;}
.y36{bottom:481.647450px;}
.ya5{bottom:484.608750px;}
.y146{bottom:492.785250px;}
.yfe{bottom:493.219050px;}
.ye8{bottom:493.293450px;}
.y126{bottom:494.911350px;}
.y5d{bottom:495.864600px;}
.y75{bottom:497.848950px;}
.y35{bottom:498.147450px;}
.ya4{bottom:502.608750px;}
.y145{bottom:509.285250px;}
.yfd{bottom:509.719050px;}
.ye7{bottom:509.793450px;}
.y125{bottom:511.411350px;}
.y5c{bottom:513.864600px;}
.y34{bottom:514.647450px;}
.y74{bottom:515.848950px;}
.ya3{bottom:520.608750px;}
.yd{bottom:522.867900px;}
.y144{bottom:525.785250px;}
.yfc{bottom:526.219050px;}
.ye3{bottom:526.293300px;}
.ye6{bottom:526.293450px;}
.y124{bottom:530.037300px;}
.y33{bottom:531.147450px;}
.y5b{bottom:531.864600px;}
.y73{bottom:533.848950px;}
.ya2{bottom:538.608750px;}
.yc{bottom:542.367900px;}
.ye2{bottom:542.793300px;}
.ye5{bottom:542.793450px;}
.y143{bottom:544.411350px;}
.yfb{bottom:544.845000px;}
.y123{bottom:546.537300px;}
.y8a{bottom:546.604800px;}
.y32{bottom:547.647450px;}
.y5a{bottom:549.864600px;}
.y93{bottom:551.848950px;}
.ya1{bottom:556.608750px;}
.ye1{bottom:559.293300px;}
.ye4{bottom:559.293450px;}
.y142{bottom:560.911350px;}
.yfa{bottom:561.345000px;}
.yb{bottom:561.867900px;}
.y15d{bottom:563.037300px;}
.y31{bottom:564.147450px;}
.y72{bottom:564.604800px;}
.y122{bottom:565.163250px;}
.y59{bottom:567.864600px;}
.y92{bottom:569.848950px;}
.ye0{bottom:577.287600px;}
.y141{bottom:579.537300px;}
.yf9{bottom:579.970950px;}
.ya{bottom:581.367900px;}
.y121{bottom:581.663250px;}
.y58{bottom:585.864600px;}
.y91{bottom:587.848950px;}
.y30{bottom:589.151400px;}
.ya0{bottom:591.108750px;}
.ydf{bottom:593.787600px;}
.y140{bottom:596.037300px;}
.yf8{bottom:596.470950px;}
.y120{bottom:598.163250px;}
.y9{bottom:600.867900px;}
.y57{bottom:603.864600px;}
.y90{bottom:605.848950px;}
.y9f{bottom:609.108750px;}
.yde{bottom:610.287600px;}
.y13f{bottom:612.537300px;}
.y15c{bottom:614.663250px;}
.yf7{bottom:615.096900px;}
.y11f{bottom:616.789200px;}
.y56{bottom:621.864600px;}
.y8f{bottom:623.848950px;}
.ydd{bottom:626.787600px;}
.y9e{bottom:627.108750px;}
.y2f{bottom:631.163250px;}
.yf6{bottom:631.596900px;}
.y11e{bottom:633.289200px;}
.y55{bottom:639.864600px;}
.y8e{bottom:641.848950px;}
.ydc{bottom:643.287600px;}
.y9d{bottom:645.108750px;}
.y8{bottom:645.879750px;}
.y2e{bottom:647.663250px;}
.y15b{bottom:649.789200px;}
.yf5{bottom:650.223000px;}
.y11d{bottom:651.915150px;}
.y54{bottom:657.864600px;}
.y8d{bottom:659.848950px;}
.ydb{bottom:661.281900px;}
.y9c{bottom:663.108750px;}
.y13e{bottom:664.163250px;}
.yf4{bottom:666.723000px;}
.y11c{bottom:668.415150px;}
.y7{bottom:671.079750px;}
.y53{bottom:675.864600px;}
.y2d{bottom:676.919100px;}
.yda{bottom:677.781900px;}
.y9b{bottom:681.108750px;}
.y13d{bottom:682.789200px;}
.yf3{bottom:683.223000px;}
.y11b{bottom:684.915150px;}
.y8c{bottom:690.604800px;}
.y2c{bottom:693.419100px;}
.y52{bottom:693.864600px;}
.yd5{bottom:694.281750px;}
.yd9{bottom:694.281900px;}
.y13c{bottom:699.289200px;}
.y15a{bottom:701.415150px;}
.yf2{bottom:701.848950px;}
.y9a{bottom:703.360800px;}
.y11a{bottom:703.541250px;}
.y8b{bottom:708.604800px;}
.y2b{bottom:709.919100px;}
.yd1{bottom:710.781600px;}
.yd4{bottom:710.781750px;}
.yd8{bottom:710.781900px;}
.y51{bottom:711.864600px;}
.y13b{bottom:717.915150px;}
.yf1{bottom:718.348950px;}
.y119{bottom:720.041250px;}
.y99{bottom:721.360800px;}
.y6{bottom:721.791450px;}
.y2a{bottom:726.419100px;}
.yd0{bottom:727.281600px;}
.yd3{bottom:727.281750px;}
.yd7{bottom:727.281900px;}
.y50{bottom:729.864600px;}
.yf0{bottom:734.848950px;}
.y13a{bottom:736.541250px;}
.y118{bottom:738.667200px;}
.y98{bottom:739.360800px;}
.y29{bottom:742.919100px;}
.ycf{bottom:743.781600px;}
.yd2{bottom:743.781750px;}
.yd6{bottom:743.781900px;}
.y5{bottom:746.991450px;}
.y4f{bottom:747.864600px;}
.yef{bottom:751.348950px;}
.y139{bottom:753.041250px;}
.y117{bottom:755.167200px;}
.y97{bottom:757.360800px;}
.y28{bottom:759.419100px;}
.yce{bottom:761.775900px;}
.y4e{bottom:765.864600px;}
.y116{bottom:771.667200px;}
.y4{bottom:772.191450px;}
.y27{bottom:775.919100px;}
.ycd{bottom:778.275900px;}
.y96{bottom:779.612700px;}
.yee{bottom:780.604800px;}
.y4d{bottom:783.864600px;}
.y115{bottom:788.167200px;}
.y26{bottom:792.419100px;}
.ycc{bottom:794.775900px;}
.y95{bottom:797.612700px;}
.y4c{bottom:801.864600px;}
.y114{bottom:806.793150px;}
.y25{bottom:808.919100px;}
.ycb{bottom:811.275900px;}
.y94{bottom:815.612700px;}
.y4b{bottom:819.864600px;}
.y113{bottom:823.293150px;}
.y24{bottom:825.419100px;}
.yca{bottom:829.270050px;}
.y4a{bottom:837.864600px;}
.y23{bottom:841.919100px;}
.y49{bottom:855.864600px;}
.y3{bottom:856.919100px;}
.yc9{bottom:857.891400px;}
.y22{bottom:858.419100px;}
.y48{bottom:873.864600px;}
.yc8{bottom:874.391400px;}
.y2{bottom:874.919100px;}
.y20{bottom:904.051800px;}
.y1f{bottom:916.051800px;}
.y21{bottom:922.779300px;}
.y1e{bottom:928.051800px;}
.h9{height:34.692000px;}
.h2{height:37.170000px;}
.hd{height:37.854000px;}
.h7{height:42.060000px;}
.h3{height:44.604000px;}
.h8{height:46.224000px;}
.hc{height:47.082000px;}
.h6{height:49.560000px;}
.hb{height:51.360000px;}
.h5{height:58.884000px;}
.ha{height:59.472000px;}
.h4{height:71.904000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.x10{left:78.661500px;}
.x13{left:81.176700px;}
.x2{left:83.663400px;}
.xa{left:86.277750px;}
.xd{left:91.417350px;}
.x8{left:104.173200px;}
.x9{left:109.881450px;}
.x4{left:116.929200px;}
.x6{left:133.049400px;}
.x3{left:146.692950px;}
.x5{left:156.653100px;}
.x11{left:185.161500px;}
.xf{left:200.495100px;}
.x14{left:208.095150px;}
.xb{left:241.697400px;}
.x7{left:288.469050px;}
.xe{left:310.518150px;}
.x12{left:401.161500px;}
.xc{left:578.905500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-1.973333pt;}
.ls5c{letter-spacing:-1.872000pt;}
.ls29{letter-spacing:-1.813333pt;}
.ls2f{letter-spacing:-1.653333pt;}
.ls5a{letter-spacing:-1.536000pt;}
.ls4e{letter-spacing:-1.440000pt;}
.ls2d{letter-spacing:-1.386667pt;}
.ls2c{letter-spacing:-1.333333pt;}
.ls35{letter-spacing:-1.280000pt;}
.ls4d{letter-spacing:-1.248000pt;}
.ls2b{letter-spacing:-1.226667pt;}
.ls3f{letter-spacing:-1.200000pt;}
.ls2e{letter-spacing:-1.120000pt;}
.ls2a{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-1.008000pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls5b{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.816000pt;}
.ls30{letter-spacing:-0.800000pt;}
.ls1f{letter-spacing:-0.746667pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls23{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.672000pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.528000pt;}
.ls26{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.432000pt;}
.ls17{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.298667pt;}
.ls4b{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls4c{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls55{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls4f{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.026667pt;}
.ls4{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.133333pt;}
.ls54{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.213333pt;}
.ls50{letter-spacing:0.216000pt;}
.ls5{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.266667pt;}
.ls47{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.293333pt;}
.ls56{letter-spacing:0.312000pt;}
.ls42{letter-spacing:0.320000pt;}
.ls53{letter-spacing:0.336000pt;}
.ls41{letter-spacing:0.346667pt;}
.ls15{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls49{letter-spacing:0.432000pt;}
.ls3c{letter-spacing:0.453333pt;}
.ls3a{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.528000pt;}
.ls44{letter-spacing:0.533333pt;}
.ls4a{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.586667pt;}
.ls33{letter-spacing:0.636267pt;}
.ls32{letter-spacing:0.636800pt;}
.ls13{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.693333pt;}
.ls52{letter-spacing:0.744000pt;}
.ls34{letter-spacing:0.746667pt;}
.ls40{letter-spacing:0.800000pt;}
.ls51{letter-spacing:0.816000pt;}
.ls3e{letter-spacing:0.825067pt;}
.ls3d{letter-spacing:0.825600pt;}
.ls39{letter-spacing:0.960000pt;}
.ls43{letter-spacing:1.066667pt;}
.ls46{letter-spacing:1.280000pt;}
.ls5d{letter-spacing:1.584000pt;}
.ls45{letter-spacing:1.600000pt;}
.ls57{letter-spacing:2.112000pt;}
.ls59{letter-spacing:2.160000pt;}
.ls58{letter-spacing:2.496000pt;}
.ls5e{letter-spacing:2.544000pt;}
.ws2{word-spacing:-20.160000pt;}
.wsc0{word-spacing:-17.904000pt;}
.ws94{word-spacing:-17.173333pt;}
.ws77{word-spacing:-17.066667pt;}
.ws82{word-spacing:-16.213333pt;}
.wsa0{word-spacing:-16.104000pt;}
.ws16{word-spacing:-15.360000pt;}
.wsbf{word-spacing:-15.312000pt;}
.wsae{word-spacing:-15.120000pt;}
.ws95{word-spacing:-15.072000pt;}
.ws8e{word-spacing:-14.666667pt;}
.ws3{word-spacing:-14.613333pt;}
.ws78{word-spacing:-14.560000pt;}
.wsbe{word-spacing:-14.448000pt;}
.ws40{word-spacing:-13.738667pt;}
.ws17{word-spacing:-13.344000pt;}
.ws4{word-spacing:-13.152000pt;}
.ws83{word-spacing:-12.970667pt;}
.ws1{word-spacing:-12.800000pt;}
.ws97{word-spacing:-12.720000pt;}
.wsbd{word-spacing:-12.336000pt;}
.ws96{word-spacing:-11.712000pt;}
.ws0{word-spacing:-10.240000pt;}
.ws6{word-spacing:-7.541333pt;}
.ws2d{word-spacing:-2.560000pt;}
.ws7{word-spacing:-2.506667pt;}
.wsd0{word-spacing:-2.496000pt;}
.ws7e{word-spacing:-2.400000pt;}
.ws8a{word-spacing:-2.346667pt;}
.ws1c{word-spacing:-2.304000pt;}
.ws54{word-spacing:-2.293333pt;}
.ws51{word-spacing:-2.240000pt;}
.wsc3{word-spacing:-2.208000pt;}
.ws66{word-spacing:-2.186667pt;}
.ws26{word-spacing:-2.112000pt;}
.ws84{word-spacing:-2.080000pt;}
.ws32{word-spacing:-2.026667pt;}
.ws43{word-spacing:-1.973333pt;}
.ws9a{word-spacing:-1.968000pt;}
.ws60{word-spacing:-1.920000pt;}
.wsa7{word-spacing:-1.872000pt;}
.ws3d{word-spacing:-1.866667pt;}
.wsb9{word-spacing:-1.824000pt;}
.ws2e{word-spacing:-1.813333pt;}
.ws25{word-spacing:-1.776000pt;}
.ws71{word-spacing:-1.760000pt;}
.ws70{word-spacing:-1.706667pt;}
.wsc6{word-spacing:-1.680000pt;}
.ws4a{word-spacing:-1.653333pt;}
.wsa8{word-spacing:-1.632000pt;}
.ws64{word-spacing:-1.600000pt;}
.wsd2{word-spacing:-1.584000pt;}
.ws90{word-spacing:-1.546667pt;}
.wsba{word-spacing:-1.536000pt;}
.ws35{word-spacing:-1.493333pt;}
.wsc4{word-spacing:-1.488000pt;}
.ws3b{word-spacing:-1.440000pt;}
.ws46{word-spacing:-1.386667pt;}
.wsa6{word-spacing:-1.344000pt;}
.wsc9{word-spacing:-1.296000pt;}
.ws62{word-spacing:-1.280000pt;}
.wsc2{word-spacing:-1.248000pt;}
.ws69{word-spacing:-1.226667pt;}
.wsa{word-spacing:-1.200000pt;}
.ws58{word-spacing:-1.173333pt;}
.ws59{word-spacing:-1.120000pt;}
.wsca{word-spacing:-1.104000pt;}
.ws68{word-spacing:-1.066667pt;}
.ws1b{word-spacing:-1.056000pt;}
.ws41{word-spacing:-1.013333pt;}
.wsc8{word-spacing:-1.008000pt;}
.ws38{word-spacing:-0.960000pt;}
.ws1f{word-spacing:-0.912000pt;}
.ws48{word-spacing:-0.906667pt;}
.ws28{word-spacing:-0.864000pt;}
.ws63{word-spacing:-0.853333pt;}
.ws1e{word-spacing:-0.816000pt;}
.ws7f{word-spacing:-0.800000pt;}
.ws6d{word-spacing:-0.746667pt;}
.ws3f{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.672000pt;}
.ws3e{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.586667pt;}
.ws55{word-spacing:-0.533333pt;}
.ws61{word-spacing:-0.480000pt;}
.ws1a{word-spacing:-0.432000pt;}
.ws30{word-spacing:-0.426667pt;}
.wsaa{word-spacing:-0.384000pt;}
.wsab{word-spacing:-0.336000pt;}
.ws6a{word-spacing:-0.320000pt;}
.ws34{word-spacing:-0.266667pt;}
.ws24{word-spacing:-0.240000pt;}
.ws33{word-spacing:-0.213333pt;}
.wsb2{word-spacing:-0.192000pt;}
.ws5d{word-spacing:-0.160000pt;}
.wsb3{word-spacing:-0.144000pt;}
.ws67{word-spacing:-0.106667pt;}
.ws99{word-spacing:-0.096000pt;}
.ws5e{word-spacing:-0.053333pt;}
.wsaf{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9c{word-spacing:0.048000pt;}
.ws4f{word-spacing:0.053333pt;}
.ws73{word-spacing:0.106667pt;}
.wsce{word-spacing:0.144000pt;}
.ws5c{word-spacing:0.160000pt;}
.ws20{word-spacing:0.192000pt;}
.ws56{word-spacing:0.213333pt;}
.wsbb{word-spacing:0.240000pt;}
.ws52{word-spacing:0.266667pt;}
.ws50{word-spacing:0.320000pt;}
.wsa5{word-spacing:0.336000pt;}
.ws3c{word-spacing:0.373333pt;}
.ws15{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.426667pt;}
.ws18{word-spacing:0.432000pt;}
.ws19{word-spacing:0.480000pt;}
.wsc5{word-spacing:0.528000pt;}
.ws72{word-spacing:0.533333pt;}
.wsb6{word-spacing:0.576000pt;}
.ws80{word-spacing:0.586667pt;}
.ws9f{word-spacing:0.624000pt;}
.ws2c{word-spacing:0.640000pt;}
.wsb5{word-spacing:0.672000pt;}
.ws88{word-spacing:0.693333pt;}
.ws29{word-spacing:0.720000pt;}
.ws4e{word-spacing:0.746667pt;}
.wsf{word-spacing:0.768000pt;}
.ws39{word-spacing:0.800000pt;}
.wsa9{word-spacing:0.864000pt;}
.ws45{word-spacing:0.906667pt;}
.wsac{word-spacing:0.912000pt;}
.wse{word-spacing:0.960000pt;}
.ws8c{word-spacing:1.013333pt;}
.wsc1{word-spacing:1.056000pt;}
.ws37{word-spacing:1.066667pt;}
.wsbc{word-spacing:1.104000pt;}
.ws8b{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.152000pt;}
.ws4d{word-spacing:1.173333pt;}
.ws85{word-spacing:1.200000pt;}
.ws91{word-spacing:1.226667pt;}
.ws9d{word-spacing:1.248000pt;}
.ws42{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.296000pt;}
.ws93{word-spacing:1.333333pt;}
.ws4b{word-spacing:1.386667pt;}
.wsb8{word-spacing:1.392000pt;}
.ws12{word-spacing:1.440000pt;}
.wscc{word-spacing:1.488000pt;}
.ws4c{word-spacing:1.493333pt;}
.ws27{word-spacing:1.536000pt;}
.ws81{word-spacing:1.546667pt;}
.wsb7{word-spacing:1.584000pt;}
.ws74{word-spacing:1.653333pt;}
.wsb1{word-spacing:1.680000pt;}
.ws47{word-spacing:1.706667pt;}
.wscb{word-spacing:1.728000pt;}
.ws87{word-spacing:1.760000pt;}
.ws2b{word-spacing:1.776000pt;}
.wsa3{word-spacing:1.824000pt;}
.ws92{word-spacing:1.866667pt;}
.wscd{word-spacing:1.872000pt;}
.ws22{word-spacing:1.968000pt;}
.wsa4{word-spacing:2.016000pt;}
.ws6b{word-spacing:2.026667pt;}
.ws9e{word-spacing:2.064000pt;}
.ws7b{word-spacing:2.080000pt;}
.wsa2{word-spacing:2.112000pt;}
.ws8d{word-spacing:2.133333pt;}
.ws2a{word-spacing:2.160000pt;}
.ws5a{word-spacing:2.186667pt;}
.ws6c{word-spacing:2.240000pt;}
.ws79{word-spacing:2.293333pt;}
.ws23{word-spacing:2.304000pt;}
.ws6f{word-spacing:2.346667pt;}
.wsb0{word-spacing:2.352000pt;}
.ws3a{word-spacing:2.400000pt;}
.ws7c{word-spacing:2.453333pt;}
.ws6e{word-spacing:2.560000pt;}
.wsad{word-spacing:2.592000pt;}
.ws89{word-spacing:2.613333pt;}
.ws9b{word-spacing:2.640000pt;}
.ws7d{word-spacing:2.666667pt;}
.ws53{word-spacing:2.720000pt;}
.ws36{word-spacing:2.773333pt;}
.ws76{word-spacing:2.826667pt;}
.ws49{word-spacing:2.880000pt;}
.ws57{word-spacing:2.933333pt;}
.wsc7{word-spacing:2.976000pt;}
.ws86{word-spacing:3.040000pt;}
.ws98{word-spacing:3.072000pt;}
.ws65{word-spacing:3.146667pt;}
.ws8f{word-spacing:3.200000pt;}
.ws10{word-spacing:3.216000pt;}
.ws44{word-spacing:3.306667pt;}
.ws5b{word-spacing:3.360000pt;}
.ws31{word-spacing:3.413333pt;}
.wscf{word-spacing:3.456000pt;}
.wsd1{word-spacing:3.600000pt;}
.wsb{word-spacing:3.888000pt;}
.ws21{word-spacing:3.984000pt;}
.wsd3{word-spacing:4.224000pt;}
.ws7a{word-spacing:4.426667pt;}
.ws75{word-spacing:5.120000pt;}
.ws14{word-spacing:5.712000pt;}
.ws13{word-spacing:6.000000pt;}
.ws11{word-spacing:6.144000pt;}
.wsd{word-spacing:6.672000pt;}
.wsc{word-spacing:7.776000pt;}
.ws9{word-spacing:8.880000pt;}
.ws8{word-spacing:8.928000pt;}
._10{margin-left:-7.070400pt;}
._f{margin-left:-5.849600pt;}
._7{margin-left:-4.822400pt;}
._6{margin-left:-3.360000pt;}
._2{margin-left:-2.400000pt;}
._3{margin-left:-1.000000pt;}
._5{width:1.414400pt;}
._8{width:2.394667pt;}
._0{width:6.393600pt;}
._4{width:7.835733pt;}
._b{width:19.840000pt;}
._a{width:21.120000pt;}
._c{width:26.773333pt;}
._9{width:44.426667pt;}
._d{width:209.034667pt;}
._e{width:356.713600pt;}
._1{width:366.993067pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs9{font-size:40.533333pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:83.149600pt;}
.y1d{bottom:117.881733pt;}
.yc7{bottom:120.689333pt;}
.y71{bottom:120.768533pt;}
.y47{bottom:121.884400pt;}
.y89{bottom:122.532400pt;}
.yb8{bottom:126.763333pt;}
.y112{bottom:129.965467pt;}
.y1c{bottom:132.548400pt;}
.y168{bottom:133.359467pt;}
.yc6{bottom:136.689333pt;}
.y70{bottom:136.768533pt;}
.y46{bottom:137.884400pt;}
.y88{bottom:138.532400pt;}
.yb7{bottom:142.763333pt;}
.y159{bottom:144.246533pt;}
.y111{bottom:144.632133pt;}
.y1b{bottom:147.215067pt;}
.y167{bottom:148.026133pt;}
.y6f{bottom:152.768533pt;}
.y87{bottom:154.532400pt;}
.yb6{bottom:158.763333pt;}
.y158{bottom:158.913200pt;}
.y110{bottom:159.298800pt;}
.y1a{bottom:161.881733pt;}
.y166{bottom:162.692800pt;}
.yc5{bottom:164.027867pt;}
.y138{bottom:164.582533pt;}
.y45{bottom:165.222933pt;}
.y6e{bottom:168.768533pt;}
.y86{bottom:170.532400pt;}
.yb5{bottom:174.763333pt;}
.y157{bottom:175.469733pt;}
.y10f{bottom:175.855200pt;}
.y19{bottom:176.548400pt;}
.y137{bottom:179.249200pt;}
.yc4{bottom:180.027867pt;}
.y6d{bottom:184.768533pt;}
.y85{bottom:186.532400pt;}
.y156{bottom:190.136400pt;}
.y10e{bottom:190.521867pt;}
.yb4{bottom:190.763333pt;}
.y18{bottom:191.215067pt;}
.y136{bottom:193.915867pt;}
.yed{bottom:197.870933pt;}
.y6c{bottom:200.768533pt;}
.y84{bottom:202.532400pt;}
.y155{bottom:204.803067pt;}
.y17{bottom:205.881733pt;}
.yb3{bottom:206.763333pt;}
.y10d{bottom:207.078267pt;}
.yc3{bottom:208.027867pt;}
.y135{bottom:210.472267pt;}
.y44{bottom:211.459200pt;}
.y6b{bottom:216.768533pt;}
.y83{bottom:218.532400pt;}
.y154{bottom:221.359467pt;}
.y10c{bottom:221.744933pt;}
.yb2{bottom:222.763333pt;}
.yc2{bottom:224.027867pt;}
.y134{bottom:225.138933pt;}
.y43{bottom:226.125867pt;}
.y16{bottom:228.107467pt;}
.y6a{bottom:232.768533pt;}
.y82{bottom:234.532400pt;}
.y153{bottom:236.026133pt;}
.y10b{bottom:238.301333pt;}
.yb1{bottom:238.763333pt;}
.y133{bottom:239.805600pt;}
.yc1{bottom:240.027867pt;}
.y165{bottom:241.695333pt;}
.y69{bottom:248.768533pt;}
.y81{bottom:250.532400pt;}
.y152{bottom:250.692800pt;}
.y42{bottom:252.131067pt;}
.y10a{bottom:252.968000pt;}
.yb0{bottom:254.763333pt;}
.yc0{bottom:256.027867pt;}
.y132{bottom:256.362000pt;}
.y68{bottom:264.768533pt;}
.y80{bottom:266.532400pt;}
.y41{bottom:266.797733pt;}
.y151{bottom:267.249200pt;}
.y109{bottom:269.524533pt;}
.yaf{bottom:270.763333pt;}
.y131{bottom:271.028667pt;}
.ybf{bottom:272.027867pt;}
.y67{bottom:280.768533pt;}
.y40{bottom:281.464400pt;}
.y150{bottom:281.915867pt;}
.y7f{bottom:282.532400pt;}
.y108{bottom:284.191200pt;}
.y130{bottom:285.695333pt;}
.y15{bottom:286.093067pt;}
.yae{bottom:286.763333pt;}
.y164{bottom:287.585200pt;}
.ybe{bottom:288.027867pt;}
.y3f{bottom:296.131067pt;}
.y66{bottom:296.768533pt;}
.y14f{bottom:298.472267pt;}
.y7e{bottom:298.532400pt;}
.y107{bottom:300.747600pt;}
.y14{bottom:300.759733pt;}
.y12f{bottom:302.251867pt;}
.yad{bottom:302.763333pt;}
.ybd{bottom:304.027867pt;}
.y3e{bottom:310.797733pt;}
.y65{bottom:312.768533pt;}
.y14e{bottom:313.138933pt;}
.y7d{bottom:314.532400pt;}
.y106{bottom:315.414267pt;}
.y13{bottom:315.426400pt;}
.y12e{bottom:316.918533pt;}
.yac{bottom:318.763333pt;}
.y163{bottom:318.808267pt;}
.ybc{bottom:320.027867pt;}
.y3d{bottom:325.464400pt;}
.y64{bottom:328.768533pt;}
.y14d{bottom:329.695333pt;}
.y105{bottom:330.080933pt;}
.y12{bottom:330.093067pt;}
.y7c{bottom:330.532400pt;}
.y12d{bottom:331.585200pt;}
.y162{bottom:333.474933pt;}
.yab{bottom:334.763333pt;}
.ybb{bottom:336.027867pt;}
.y3c{bottom:340.131067pt;}
.y14c{bottom:344.362000pt;}
.y11{bottom:344.759733pt;}
.y63{bottom:344.768533pt;}
.y12c{bottom:346.251867pt;}
.y7b{bottom:346.532400pt;}
.y104{bottom:346.637333pt;}
.y161{bottom:348.141600pt;}
.yaa{bottom:350.763333pt;}
.yba{bottom:352.027867pt;}
.y3b{bottom:354.797733pt;}
.y14b{bottom:359.028667pt;}
.y62{bottom:360.768533pt;}
.y103{bottom:361.304000pt;}
.y7a{bottom:362.532400pt;}
.y12b{bottom:362.808267pt;}
.y160{bottom:364.698000pt;}
.ya9{bottom:366.763333pt;}
.y3a{bottom:369.464400pt;}
.yec{bottom:373.036800pt;}
.y14a{bottom:375.585200pt;}
.y61{bottom:376.768533pt;}
.y12a{bottom:377.474933pt;}
.y102{bottom:377.860533pt;}
.y79{bottom:378.532400pt;}
.y15f{bottom:379.364667pt;}
.ya8{bottom:382.763333pt;}
.y39{bottom:384.131067pt;}
.yeb{bottom:387.703467pt;}
.yb9{bottom:389.870933pt;}
.y149{bottom:390.251867pt;}
.y101{bottom:392.527200pt;}
.y60{bottom:392.768533pt;}
.y129{bottom:394.031333pt;}
.y78{bottom:394.532400pt;}
.y10{bottom:398.094267pt;}
.ya7{bottom:398.763333pt;}
.y38{bottom:398.797733pt;}
.y148{bottom:404.918533pt;}
.y128{bottom:408.698000pt;}
.y5f{bottom:408.768533pt;}
.y100{bottom:409.083600pt;}
.yea{bottom:409.149733pt;}
.y77{bottom:410.532400pt;}
.yf{bottom:412.760933pt;}
.y37{bottom:413.464400pt;}
.ya6{bottom:414.763333pt;}
.y147{bottom:421.474933pt;}
.y127{bottom:423.364667pt;}
.yff{bottom:423.750267pt;}
.ye9{bottom:423.816400pt;}
.y5e{bottom:424.768533pt;}
.y15e{bottom:425.254533pt;}
.y76{bottom:426.532400pt;}
.ye{bottom:427.427600pt;}
.y36{bottom:428.131067pt;}
.ya5{bottom:430.763333pt;}
.y146{bottom:438.031333pt;}
.yfe{bottom:438.416933pt;}
.ye8{bottom:438.483067pt;}
.y126{bottom:439.921200pt;}
.y5d{bottom:440.768533pt;}
.y75{bottom:442.532400pt;}
.y35{bottom:442.797733pt;}
.ya4{bottom:446.763333pt;}
.y145{bottom:452.698000pt;}
.yfd{bottom:453.083600pt;}
.ye7{bottom:453.149733pt;}
.y125{bottom:454.587867pt;}
.y5c{bottom:456.768533pt;}
.y34{bottom:457.464400pt;}
.y74{bottom:458.532400pt;}
.ya3{bottom:462.763333pt;}
.yd{bottom:464.771467pt;}
.y144{bottom:467.364667pt;}
.yfc{bottom:467.750267pt;}
.ye3{bottom:467.816267pt;}
.ye6{bottom:467.816400pt;}
.y124{bottom:471.144267pt;}
.y33{bottom:472.131067pt;}
.y5b{bottom:472.768533pt;}
.y73{bottom:474.532400pt;}
.ya2{bottom:478.763333pt;}
.yc{bottom:482.104800pt;}
.ye2{bottom:482.482933pt;}
.ye5{bottom:482.483067pt;}
.y143{bottom:483.921200pt;}
.yfb{bottom:484.306667pt;}
.y123{bottom:485.810933pt;}
.y8a{bottom:485.870933pt;}
.y32{bottom:486.797733pt;}
.y5a{bottom:488.768533pt;}
.y93{bottom:490.532400pt;}
.ya1{bottom:494.763333pt;}
.ye1{bottom:497.149600pt;}
.ye4{bottom:497.149733pt;}
.y142{bottom:498.587867pt;}
.yfa{bottom:498.973333pt;}
.yb{bottom:499.438133pt;}
.y15d{bottom:500.477600pt;}
.y31{bottom:501.464400pt;}
.y72{bottom:501.870933pt;}
.y122{bottom:502.367333pt;}
.y59{bottom:504.768533pt;}
.y92{bottom:506.532400pt;}
.ye0{bottom:513.144533pt;}
.y141{bottom:515.144267pt;}
.yf9{bottom:515.529733pt;}
.ya{bottom:516.771467pt;}
.y121{bottom:517.034000pt;}
.y58{bottom:520.768533pt;}
.y91{bottom:522.532400pt;}
.y30{bottom:523.690133pt;}
.ya0{bottom:525.430000pt;}
.ydf{bottom:527.811200pt;}
.y140{bottom:529.810933pt;}
.yf8{bottom:530.196400pt;}
.y120{bottom:531.700667pt;}
.y9{bottom:534.104800pt;}
.y57{bottom:536.768533pt;}
.y90{bottom:538.532400pt;}
.y9f{bottom:541.430000pt;}
.yde{bottom:542.477867pt;}
.y13f{bottom:544.477600pt;}
.y15c{bottom:546.367333pt;}
.yf7{bottom:546.752800pt;}
.y11f{bottom:548.257067pt;}
.y56{bottom:552.768533pt;}
.y8f{bottom:554.532400pt;}
.ydd{bottom:557.144533pt;}
.y9e{bottom:557.430000pt;}
.y2f{bottom:561.034000pt;}
.yf6{bottom:561.419467pt;}
.y11e{bottom:562.923733pt;}
.y55{bottom:568.768533pt;}
.y8e{bottom:570.532400pt;}
.ydc{bottom:571.811200pt;}
.y9d{bottom:573.430000pt;}
.y8{bottom:574.115333pt;}
.y2e{bottom:575.700667pt;}
.y15b{bottom:577.590400pt;}
.yf5{bottom:577.976000pt;}
.y11d{bottom:579.480133pt;}
.y54{bottom:584.768533pt;}
.y8d{bottom:586.532400pt;}
.ydb{bottom:587.806133pt;}
.y9c{bottom:589.430000pt;}
.y13e{bottom:590.367333pt;}
.yf4{bottom:592.642667pt;}
.y11c{bottom:594.146800pt;}
.y7{bottom:596.515333pt;}
.y53{bottom:600.768533pt;}
.y2d{bottom:601.705867pt;}
.yda{bottom:602.472800pt;}
.y9b{bottom:605.430000pt;}
.y13d{bottom:606.923733pt;}
.yf3{bottom:607.309333pt;}
.y11b{bottom:608.813467pt;}
.y8c{bottom:613.870933pt;}
.y2c{bottom:616.372533pt;}
.y52{bottom:616.768533pt;}
.yd5{bottom:617.139333pt;}
.yd9{bottom:617.139467pt;}
.y13c{bottom:621.590400pt;}
.y15a{bottom:623.480133pt;}
.yf2{bottom:623.865733pt;}
.y9a{bottom:625.209600pt;}
.y11a{bottom:625.370000pt;}
.y8b{bottom:629.870933pt;}
.y2b{bottom:631.039200pt;}
.yd1{bottom:631.805867pt;}
.yd4{bottom:631.806000pt;}
.yd8{bottom:631.806133pt;}
.y51{bottom:632.768533pt;}
.y13b{bottom:638.146800pt;}
.yf1{bottom:638.532400pt;}
.y119{bottom:640.036667pt;}
.y99{bottom:641.209600pt;}
.y6{bottom:641.592400pt;}
.y2a{bottom:645.705867pt;}
.yd0{bottom:646.472533pt;}
.yd3{bottom:646.472667pt;}
.yd7{bottom:646.472800pt;}
.y50{bottom:648.768533pt;}
.yf0{bottom:653.199067pt;}
.y13a{bottom:654.703333pt;}
.y118{bottom:656.593067pt;}
.y98{bottom:657.209600pt;}
.y29{bottom:660.372533pt;}
.ycf{bottom:661.139200pt;}
.yd2{bottom:661.139333pt;}
.yd6{bottom:661.139467pt;}
.y5{bottom:663.992400pt;}
.y4f{bottom:664.768533pt;}
.yef{bottom:667.865733pt;}
.y139{bottom:669.370000pt;}
.y117{bottom:671.259733pt;}
.y97{bottom:673.209600pt;}
.y28{bottom:675.039200pt;}
.yce{bottom:677.134133pt;}
.y4e{bottom:680.768533pt;}
.y116{bottom:685.926400pt;}
.y4{bottom:686.392400pt;}
.y27{bottom:689.705867pt;}
.ycd{bottom:691.800800pt;}
.y96{bottom:692.989067pt;}
.yee{bottom:693.870933pt;}
.y4d{bottom:696.768533pt;}
.y115{bottom:700.593067pt;}
.y26{bottom:704.372533pt;}
.ycc{bottom:706.467467pt;}
.y95{bottom:708.989067pt;}
.y4c{bottom:712.768533pt;}
.y114{bottom:717.149467pt;}
.y25{bottom:719.039200pt;}
.ycb{bottom:721.134133pt;}
.y94{bottom:724.989067pt;}
.y4b{bottom:728.768533pt;}
.y113{bottom:731.816133pt;}
.y24{bottom:733.705867pt;}
.yca{bottom:737.128933pt;}
.y4a{bottom:744.768533pt;}
.y23{bottom:748.372533pt;}
.y49{bottom:760.768533pt;}
.y3{bottom:761.705867pt;}
.yc9{bottom:762.570133pt;}
.y22{bottom:763.039200pt;}
.y48{bottom:776.768533pt;}
.yc8{bottom:777.236800pt;}
.y2{bottom:777.705867pt;}
.y20{bottom:803.601600pt;}
.y1f{bottom:814.268267pt;}
.y21{bottom:820.248267pt;}
.y1e{bottom:824.934933pt;}
.h9{height:30.837333pt;}
.h2{height:33.040000pt;}
.hd{height:33.648000pt;}
.h7{height:37.386667pt;}
.h3{height:39.648000pt;}
.h8{height:41.088000pt;}
.hc{height:41.850667pt;}
.h6{height:44.053333pt;}
.hb{height:45.653333pt;}
.h5{height:52.341333pt;}
.ha{height:52.864000pt;}
.h4{height:63.914667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.x10{left:69.921333pt;}
.x13{left:72.157067pt;}
.x2{left:74.367467pt;}
.xa{left:76.691333pt;}
.xd{left:81.259867pt;}
.x8{left:92.598400pt;}
.x9{left:97.672400pt;}
.x4{left:103.937067pt;}
.x6{left:118.266133pt;}
.x3{left:130.393733pt;}
.x5{left:139.247200pt;}
.x11{left:164.588000pt;}
.xf{left:178.217867pt;}
.x14{left:184.973467pt;}
.xb{left:214.842133pt;}
.x7{left:256.416933pt;}
.xe{left:276.016133pt;}
.x12{left:356.588000pt;}
.xc{left:514.582667pt;}
}




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