
    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_f69f5b5a83fc9bdbcd47dc81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_c3c73ebb57c48979b216c422.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e32a7a613b17d441136fb12d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_05aa69028b12053a4fce64bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_64c431923cb79163c8ac1416.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_df23cf7309dec3a0694fff99.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_313a30cd4470cd476f643322.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_f3a7bff4f761de2d843913f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_f50d0e7d4ed5013d827d0812.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls11{letter-spacing:-0.780000px;}
.ls44{letter-spacing:-0.300000px;}
.ls52{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.120000px;}
.ls31{letter-spacing:-0.060000px;}
.ls48{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls6b{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.060000px;}
.ls61{letter-spacing:0.096000px;}
.ls37{letter-spacing:0.120000px;}
.ls63{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.240000px;}
.ls59{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.384000px;}
.ls4b{letter-spacing:0.420000px;}
.ls76{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.480000px;}
.ls64{letter-spacing:0.528000px;}
.ls32{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.600000px;}
.ls34{letter-spacing:0.624000px;}
.ls6{letter-spacing:0.660000px;}
.ls5a{letter-spacing:0.672000px;}
.ls18{letter-spacing:0.720000px;}
.ls71{letter-spacing:0.768000px;}
.ls4{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.816000px;}
.ls7{letter-spacing:0.840000px;}
.ls6d{letter-spacing:0.864000px;}
.ls9{letter-spacing:0.900000px;}
.ls5b{letter-spacing:0.912000px;}
.ls3b{letter-spacing:0.960000px;}
.ls6c{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.020000px;}
.ls5f{letter-spacing:1.056000px;}
.ls3c{letter-spacing:1.080000px;}
.ls5e{letter-spacing:1.104000px;}
.lsf{letter-spacing:1.140000px;}
.ls56{letter-spacing:1.152000px;}
.ls1b{letter-spacing:1.200000px;}
.ls55{letter-spacing:1.248000px;}
.lsa{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.320000px;}
.ls5c{letter-spacing:1.344000px;}
.ls3f{letter-spacing:1.380000px;}
.ls41{letter-spacing:1.440000px;}
.ls47{letter-spacing:1.500000px;}
.ls1a{letter-spacing:1.560000px;}
.ls8{letter-spacing:1.620000px;}
.ls25{letter-spacing:1.680000px;}
.ls3{letter-spacing:1.740000px;}
.ls62{letter-spacing:1.776000px;}
.lsd{letter-spacing:1.800000px;}
.ls6f{letter-spacing:1.824000px;}
.ls19{letter-spacing:1.860000px;}
.ls5d{letter-spacing:1.872000px;}
.ls36{letter-spacing:1.920000px;}
.ls5{letter-spacing:1.980000px;}
.ls4e{letter-spacing:2.040000px;}
.ls15{letter-spacing:2.100000px;}
.ls24{letter-spacing:2.160000px;}
.ls68{letter-spacing:2.208000px;}
.lsc{letter-spacing:2.220000px;}
.ls74{letter-spacing:2.256000px;}
.lse{letter-spacing:2.280000px;}
.ls58{letter-spacing:2.340000px;}
.ls28{letter-spacing:2.400000px;}
.ls6e{letter-spacing:2.448000px;}
.ls33{letter-spacing:2.460000px;}
.ls50{letter-spacing:2.520000px;}
.ls60{letter-spacing:2.544000px;}
.ls2a{letter-spacing:2.640000px;}
.ls6a{letter-spacing:2.688000px;}
.ls1e{letter-spacing:2.700000px;}
.ls17{letter-spacing:2.760000px;}
.ls2e{letter-spacing:2.820000px;}
.ls3a{letter-spacing:2.880000px;}
.ls42{letter-spacing:2.940000px;}
.ls16{letter-spacing:3.060000px;}
.ls30{letter-spacing:3.120000px;}
.ls35{letter-spacing:3.180000px;}
.ls2{letter-spacing:3.240000px;}
.ls4d{letter-spacing:3.300000px;}
.ls49{letter-spacing:3.360000px;}
.ls70{letter-spacing:3.408000px;}
.ls1d{letter-spacing:3.420000px;}
.ls54{letter-spacing:3.480000px;}
.ls3d{letter-spacing:3.540000px;}
.ls39{letter-spacing:3.600000px;}
.ls4c{letter-spacing:3.840000px;}
.ls2c{letter-spacing:3.900000px;}
.ls14{letter-spacing:4.020000px;}
.ls23{letter-spacing:4.260000px;}
.ls2d{letter-spacing:4.320000px;}
.ls69{letter-spacing:4.464000px;}
.ls45{letter-spacing:4.560000px;}
.ls75{letter-spacing:5.088000px;}
.ls3e{letter-spacing:5.280000px;}
.ls72{letter-spacing:5.376000px;}
.ls57{letter-spacing:5.400000px;}
.ls20{letter-spacing:5.580000px;}
.ls53{letter-spacing:5.640000px;}
.ls29{letter-spacing:5.940000px;}
.ls22{letter-spacing:6.300000px;}
.ls51{letter-spacing:6.720000px;}
.ls43{letter-spacing:7.020000px;}
.ls40{letter-spacing:7.140000px;}
.ls2b{letter-spacing:7.560000px;}
.ls4f{letter-spacing:7.800000px;}
.ls2f{letter-spacing:8.940000px;}
.ls4a{letter-spacing:9.000000px;}
.ls46{letter-spacing:9.540000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws43{word-spacing:-19.560000px;}
.ws60{word-spacing:-19.320000px;}
.ws16{word-spacing:-19.020000px;}
.ws4e{word-spacing:-18.900000px;}
.ws13{word-spacing:-18.060000px;}
.ws50{word-spacing:-17.820000px;}
.ws4f{word-spacing:-17.760000px;}
.ws11{word-spacing:-17.700000px;}
.ws17{word-spacing:-17.160000px;}
.ws2d{word-spacing:-17.100000px;}
.ws51{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws4{word-spacing:-16.620000px;}
.ws2f{word-spacing:-16.380000px;}
.ws15{word-spacing:-16.320000px;}
.ws2e{word-spacing:-16.200000px;}
.ws2c{word-spacing:-16.080000px;}
.ws12{word-spacing:-15.780000px;}
.ws5f{word-spacing:-15.720000px;}
.ws44{word-spacing:-15.660000px;}
.ws14{word-spacing:-15.600000px;}
.ws30{word-spacing:-15.480000px;}
.ws5b{word-spacing:-15.240000px;}
.ws61{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws76{word-spacing:-13.824000px;}
.ws4d{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.344000px;}
.ws79{word-spacing:-13.104000px;}
.ws77{word-spacing:-12.864000px;}
.ws73{word-spacing:-12.576000px;}
.ws5{word-spacing:-12.510000px;}
.ws78{word-spacing:-12.384000px;}
.ws62{word-spacing:-12.288000px;}
.ws74{word-spacing:-12.048000px;}
.ws72{word-spacing:-12.000000px;}
.ws75{word-spacing:-11.952000px;}
.ws69{word-spacing:-11.472000px;}
.ws1{word-spacing:-10.210662px;}
.ws68{word-spacing:-7.824000px;}
.ws67{word-spacing:-7.392000px;}
.ws47{word-spacing:-4.560000px;}
.ws6b{word-spacing:-4.176000px;}
.ws8{word-spacing:-2.886000px;}
.ws21{word-spacing:-2.640000px;}
.ws1d{word-spacing:-2.220000px;}
.ws6c{word-spacing:-2.040000px;}
.ws7f{word-spacing:-1.872000px;}
.ws89{word-spacing:-1.824000px;}
.ws3d{word-spacing:-1.260000px;}
.ws64{word-spacing:-1.080000px;}
.ws20{word-spacing:-1.020000px;}
.ws86{word-spacing:-0.912000px;}
.ws84{word-spacing:-0.864000px;}
.ws63{word-spacing:-0.780000px;}
.ws6a{word-spacing:-0.768000px;}
.ws87{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.660000px;}
.ws1f{word-spacing:-0.600000px;}
.ws83{word-spacing:-0.576000px;}
.ws36{word-spacing:-0.480000px;}
.ws53{word-spacing:-0.300000px;}
.ws71{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.240000px;}
.ws8a{word-spacing:-0.144000px;}
.ws7{word-spacing:0.000000px;}
.ws4b{word-spacing:0.048000px;}
.ws22{word-spacing:0.060000px;}
.ws85{word-spacing:0.144000px;}
.ws34{word-spacing:0.180000px;}
.ws7c{word-spacing:0.192000px;}
.ws5a{word-spacing:0.288000px;}
.ws37{word-spacing:0.300000px;}
.ws88{word-spacing:0.336000px;}
.ws29{word-spacing:0.384000px;}
.ws1b{word-spacing:0.480000px;}
.ws10{word-spacing:0.540000px;}
.ws55{word-spacing:0.660000px;}
.ws58{word-spacing:0.768000px;}
.ws3b{word-spacing:0.780000px;}
.ws57{word-spacing:0.816000px;}
.ws1a{word-spacing:0.960000px;}
.ws26{word-spacing:1.020000px;}
.ws2b{word-spacing:1.104000px;}
.wsf{word-spacing:1.140000px;}
.ws7e{word-spacing:1.152000px;}
.ws59{word-spacing:1.200000px;}
.ws5e{word-spacing:1.296000px;}
.ws2a{word-spacing:1.440000px;}
.ws1e{word-spacing:1.620000px;}
.ws24{word-spacing:1.728000px;}
.ws81{word-spacing:1.776000px;}
.ws45{word-spacing:1.800000px;}
.ws48{word-spacing:1.920000px;}
.ws6d{word-spacing:2.040000px;}
.wse{word-spacing:2.100000px;}
.ws7a{word-spacing:2.208000px;}
.ws80{word-spacing:2.256000px;}
.wsc{word-spacing:2.280000px;}
.ws82{word-spacing:2.304000px;}
.ws40{word-spacing:2.340000px;}
.ws38{word-spacing:2.400000px;}
.ws3e{word-spacing:2.460000px;}
.ws4c{word-spacing:2.496000px;}
.ws32{word-spacing:2.520000px;}
.ws19{word-spacing:2.760000px;}
.ws42{word-spacing:2.820000px;}
.ws4a{word-spacing:2.880000px;}
.ws49{word-spacing:2.940000px;}
.ws3c{word-spacing:3.060000px;}
.ws35{word-spacing:3.120000px;}
.ws56{word-spacing:3.180000px;}
.ws70{word-spacing:3.216000px;}
.ws6e{word-spacing:3.240000px;}
.ws18{word-spacing:3.360000px;}
.ws39{word-spacing:3.420000px;}
.ws31{word-spacing:3.480000px;}
.ws46{word-spacing:3.600000px;}
.ws7d{word-spacing:3.744000px;}
.ws9{word-spacing:3.780000px;}
.ws65{word-spacing:3.840000px;}
.ws7b{word-spacing:3.888000px;}
.ws25{word-spacing:3.900000px;}
.ws5c{word-spacing:3.936000px;}
.ws52{word-spacing:3.960000px;}
.ws27{word-spacing:3.984000px;}
.ws66{word-spacing:4.020000px;}
.ws54{word-spacing:4.140000px;}
.ws1c{word-spacing:4.200000px;}
.ws23{word-spacing:4.380000px;}
.ws3f{word-spacing:4.500000px;}
.ws5d{word-spacing:4.560000px;}
.ws28{word-spacing:4.608000px;}
.ws3a{word-spacing:4.620000px;}
.ws41{word-spacing:4.740000px;}
.wsb{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws6f{word-spacing:5.520000px;}
._b{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._a{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.660000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._9{width:1.020000px;}
._d{width:2.028000px;}
._6{width:3.096000px;}
._7{width:4.284000px;}
._5{width:5.640000px;}
._8{width:6.756000px;}
._11{width:8.329800px;}
._12{width:9.677400px;}
._f{width:11.013600px;}
._13{width:14.238000px;}
._10{width:19.824000px;}
._e{width:22.512000px;}
._2{width:59.523828px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2c{bottom:47.777250px;}
.y8d{bottom:80.453850px;}
.y95{bottom:82.870200px;}
.yce{bottom:82.999950px;}
.yb2{bottom:83.770350px;}
.y10e{bottom:83.777100px;}
.y113{bottom:84.275550px;}
.y116{bottom:84.405300px;}
.yb6{bottom:88.805250px;}
.y15f{bottom:88.980150px;}
.y134{bottom:90.060600px;}
.y29{bottom:90.293400px;}
.yd8{bottom:91.112100px;}
.y8c{bottom:98.453850px;}
.y94{bottom:98.614200px;}
.ycd{bottom:98.743950px;}
.y112{bottom:100.019550px;}
.y115{bottom:100.149300px;}
.y5b{bottom:101.230350px;}
.yb1{bottom:101.770350px;}
.y10d{bottom:101.777100px;}
.y15e{bottom:103.980150px;}
.y28{bottom:105.289650px;}
.y133{bottom:108.060600px;}
.yd7{bottom:109.112100px;}
.y93{bottom:114.358200px;}
.ycc{bottom:114.487950px;}
.y111{bottom:115.763550px;}
.y114{bottom:115.893300px;}
.y8b{bottom:116.453850px;}
.y15d{bottom:118.980150px;}
.yb0{bottom:119.770350px;}
.y10c{bottom:119.777100px;}
.yb5{bottom:119.920350px;}
.y27{bottom:120.285900px;}
.y132{bottom:126.060600px;}
.yd6{bottom:127.112100px;}
.y92{bottom:130.102200px;}
.ycb{bottom:130.231950px;}
.y110{bottom:131.507550px;}
.y15c{bottom:133.980150px;}
.y8a{bottom:134.453850px;}
.y5a{bottom:137.095350px;}
.yb4{bottom:137.515350px;}
.yaf{bottom:137.770350px;}
.y10b{bottom:137.777100px;}
.yd5{bottom:145.112100px;}
.y91{bottom:145.846200px;}
.yca{bottom:145.975950px;}
.y10f{bottom:147.251550px;}
.y15b{bottom:148.980150px;}
.y89{bottom:152.453850px;}
.yb3{bottom:155.515350px;}
.yae{bottom:155.770350px;}
.y10a{bottom:155.777100px;}
.y90{bottom:161.590200px;}
.y131{bottom:161.655600px;}
.yd4{bottom:163.112100px;}
.y15a{bottom:163.980150px;}
.y88{bottom:170.453850px;}
.y24{bottom:170.475150px;}
.yad{bottom:173.770350px;}
.y109{bottom:173.777100px;}
.y8f{bottom:177.334200px;}
.y159{bottom:178.980150px;}
.y87{bottom:188.453850px;}
.y23{bottom:188.475150px;}
.y59{bottom:191.635350px;}
.yac{bottom:191.770350px;}
.y108{bottom:191.777100px;}
.y158{bottom:193.980150px;}
.yd3{bottom:197.952600px;}
.y86{bottom:206.453850px;}
.y22{bottom:206.475150px;}
.y58{bottom:209.635350px;}
.yab{bottom:209.770350px;}
.y107{bottom:209.777100px;}
.yd2{bottom:213.558600px;}
.y197{bottom:215.263500px;}
.y130{bottom:216.195600px;}
.y85{bottom:224.453850px;}
.y21{bottom:224.475150px;}
.y157{bottom:227.100600px;}
.y57{bottom:227.635350px;}
.yaa{bottom:227.770350px;}
.y106{bottom:227.777100px;}
.yd1{bottom:227.920350px;}
.y196{bottom:230.263500px;}
.y12f{bottom:234.195600px;}
.y84{bottom:242.453850px;}
.y20{bottom:242.475150px;}
.y195{bottom:245.263500px;}
.yd0{bottom:245.515350px;}
.y56{bottom:245.635350px;}
.ya9{bottom:245.770350px;}
.y105{bottom:245.777100px;}
.y12e{bottom:252.195600px;}
.y194{bottom:260.263500px;}
.y83{bottom:260.453850px;}
.y1f{bottom:260.475150px;}
.y55{bottom:263.635350px;}
.ya8{bottom:263.770350px;}
.y104{bottom:263.777100px;}
.y12d{bottom:270.195600px;}
.y193{bottom:275.263500px;}
.y82{bottom:278.453850px;}
.y1e{bottom:278.475150px;}
.y54{bottom:281.635350px;}
.y156{bottom:281.640600px;}
.ya7{bottom:281.770350px;}
.y103{bottom:281.777100px;}
.y12c{bottom:288.195600px;}
.y192{bottom:290.263500px;}
.y81{bottom:296.453850px;}
.y1d{bottom:296.475150px;}
.y155{bottom:299.235600px;}
.y53{bottom:299.635350px;}
.ya6{bottom:299.770350px;}
.y102{bottom:299.777100px;}
.y191{bottom:305.263500px;}
.y12b{bottom:306.195600px;}
.y1c{bottom:314.475150px;}
.y52{bottom:317.635350px;}
.ya5{bottom:317.770350px;}
.y101{bottom:317.777100px;}
.y190{bottom:320.263500px;}
.y12a{bottom:324.195600px;}
.y80{bottom:331.947000px;}
.y1b{bottom:332.475150px;}
.y154{bottom:335.235600px;}
.y18f{bottom:335.263500px;}
.y51{bottom:335.635350px;}
.ya4{bottom:335.770350px;}
.y100{bottom:335.777100px;}
.y7f{bottom:346.947000px;}
.y18e{bottom:350.263500px;}
.y1a{bottom:350.475150px;}
.y50{bottom:353.635350px;}
.ya3{bottom:353.770350px;}
.yff{bottom:353.777100px;}
.y129{bottom:359.688750px;}
.y7e{bottom:361.947000px;}
.y18d{bottom:365.263500px;}
.y26{bottom:368.475150px;}
.y4f{bottom:371.635350px;}
.y153{bottom:371.640600px;}
.ya2{bottom:371.770350px;}
.yfe{bottom:371.777100px;}
.y128{bottom:374.688750px;}
.y7d{bottom:376.947000px;}
.y18c{bottom:380.263500px;}
.y19{bottom:386.072250px;}
.y25{bottom:386.475150px;}
.y152{bottom:389.235600px;}
.y4e{bottom:389.635350px;}
.y127{bottom:389.688750px;}
.ya1{bottom:389.770350px;}
.yfd{bottom:389.777100px;}
.y18b{bottom:395.263500px;}
.y126{bottom:404.688750px;}
.y4d{bottom:407.635350px;}
.ya0{bottom:407.770350px;}
.yfc{bottom:407.777100px;}
.y7c{bottom:408.055350px;}
.y18a{bottom:410.263500px;}
.y125{bottom:419.688750px;}
.y189{bottom:425.263500px;}
.y4c{bottom:425.635350px;}
.y151{bottom:425.640600px;}
.y7b{bottom:425.650350px;}
.y9f{bottom:425.770350px;}
.yfb{bottom:425.777100px;}
.y188{bottom:440.263500px;}
.y150{bottom:443.235600px;}
.y4b{bottom:443.635350px;}
.y7a{bottom:443.650350px;}
.y9e{bottom:443.770350px;}
.yfa{bottom:443.777100px;}
.y124{bottom:452.792700px;}
.y187{bottom:455.263500px;}
.y18{bottom:456.664200px;}
.y4a{bottom:461.635350px;}
.y9d{bottom:461.770350px;}
.yf9{bottom:461.777100px;}
.y186{bottom:470.263500px;}
.y123{bottom:470.792700px;}
.y49{bottom:479.635350px;}
.y14f{bottom:479.640600px;}
.y9c{bottom:479.770350px;}
.yf8{bottom:479.777100px;}
.y79{bottom:479.905350px;}
.y17{bottom:484.009200px;}
.y185{bottom:485.263500px;}
.y14e{bottom:497.235600px;}
.y48{bottom:497.635350px;}
.y9b{bottom:497.770350px;}
.yf7{bottom:497.777100px;}
.y78{bottom:497.905350px;}
.y184{bottom:500.263500px;}
.y16{bottom:502.009200px;}
.y122{bottom:506.547000px;}
.y183{bottom:515.263500px;}
.y9a{bottom:515.770350px;}
.yf6{bottom:515.777100px;}
.y77{bottom:515.905350px;}
.y15{bottom:520.009200px;}
.y121{bottom:521.547000px;}
.y182{bottom:530.263500px;}
.y47{bottom:533.230350px;}
.y14d{bottom:533.640600px;}
.y99{bottom:533.770350px;}
.yf5{bottom:533.777100px;}
.y76{bottom:533.905350px;}
.y120{bottom:536.547000px;}
.y14{bottom:538.009200px;}
.y181{bottom:545.263500px;}
.y11f{bottom:551.547000px;}
.y14c{bottom:551.640600px;}
.y98{bottom:551.770350px;}
.yf4{bottom:551.777100px;}
.y75{bottom:551.905350px;}
.y13{bottom:556.009200px;}
.y180{bottom:560.263500px;}
.y11e{bottom:566.547000px;}
.y14b{bottom:569.640600px;}
.y97{bottom:569.770350px;}
.yf3{bottom:569.777100px;}
.y74{bottom:569.905350px;}
.y12{bottom:574.009200px;}
.y17f{bottom:575.263500px;}
.y11d{bottom:581.547000px;}
.y14a{bottom:587.640600px;}
.y46{bottom:587.770350px;}
.yf2{bottom:587.777100px;}
.y73{bottom:587.905350px;}
.y17e{bottom:590.263500px;}
.y11{bottom:592.009200px;}
.y11c{bottom:596.547000px;}
.y17d{bottom:605.263500px;}
.y149{bottom:605.640600px;}
.y45{bottom:605.770350px;}
.yf1{bottom:605.777100px;}
.y72{bottom:605.905350px;}
.y10{bottom:610.009200px;}
.y11b{bottom:611.547000px;}
.y17c{bottom:620.263500px;}
.y148{bottom:623.640600px;}
.y44{bottom:623.770350px;}
.yf0{bottom:623.777100px;}
.y71{bottom:623.905350px;}
.y11a{bottom:626.547000px;}
.yf{bottom:628.009200px;}
.y17b{bottom:635.263500px;}
.y147{bottom:641.640600px;}
.y43{bottom:641.770350px;}
.yef{bottom:641.777100px;}
.y70{bottom:641.905350px;}
.y17a{bottom:650.263500px;}
.y146{bottom:659.235600px;}
.y119{bottom:659.650350px;}
.y42{bottom:659.770350px;}
.yee{bottom:659.777100px;}
.y6f{bottom:659.905350px;}
.y179{bottom:665.263500px;}
.ye{bottom:673.167300px;}
.y41{bottom:677.770350px;}
.yed{bottom:677.777100px;}
.y6e{bottom:677.905350px;}
.y178{bottom:680.263500px;}
.yd{bottom:685.618050px;}
.y177{bottom:695.263500px;}
.y118{bottom:695.515350px;}
.y145{bottom:695.640600px;}
.y40{bottom:695.770350px;}
.yec{bottom:695.777100px;}
.y6d{bottom:695.905350px;}
.y176{bottom:710.263500px;}
.y144{bottom:713.640600px;}
.y3f{bottom:713.770350px;}
.yeb{bottom:713.777100px;}
.y6c{bottom:713.905350px;}
.yc9{bottom:716.770350px;}
.yc{bottom:722.758950px;}
.y175{bottom:725.263500px;}
.yb{bottom:730.833600px;}
.y143{bottom:731.640600px;}
.y3e{bottom:731.770350px;}
.yea{bottom:731.777100px;}
.y6b{bottom:731.905350px;}
.yc8{bottom:734.770350px;}
.y174{bottom:740.263500px;}
.y142{bottom:749.640600px;}
.ya{bottom:749.758950px;}
.y3d{bottom:749.770350px;}
.ye9{bottom:749.777100px;}
.y6a{bottom:749.905350px;}
.yc7{bottom:752.770350px;}
.y173{bottom:755.263500px;}
.y141{bottom:767.640600px;}
.y3c{bottom:767.770350px;}
.ye8{bottom:767.777100px;}
.y69{bottom:767.905350px;}
.y172{bottom:770.263500px;}
.yc6{bottom:770.770350px;}
.y9{bottom:778.480800px;}
.y171{bottom:785.263500px;}
.y140{bottom:785.640600px;}
.y3b{bottom:785.770350px;}
.ye7{bottom:785.777100px;}
.y68{bottom:785.905350px;}
.yc5{bottom:788.770350px;}
.y170{bottom:800.263500px;}
.y13f{bottom:803.640600px;}
.y3a{bottom:803.770350px;}
.ye6{bottom:803.777100px;}
.y67{bottom:803.905350px;}
.yc4{bottom:806.770350px;}
.y16f{bottom:815.263500px;}
.y39{bottom:821.770350px;}
.ye5{bottom:821.777100px;}
.y66{bottom:821.905350px;}
.y8{bottom:824.653650px;}
.yc3{bottom:824.770350px;}
.y16e{bottom:830.263500px;}
.y13e{bottom:839.235600px;}
.y38{bottom:839.770350px;}
.ye4{bottom:839.777100px;}
.y65{bottom:839.905350px;}
.yc2{bottom:842.770350px;}
.y16d{bottom:845.263500px;}
.y37{bottom:857.770350px;}
.ye3{bottom:857.777100px;}
.y64{bottom:857.905350px;}
.y16c{bottom:860.263500px;}
.yc1{bottom:860.770350px;}
.y7{bottom:861.114450px;}
.y16b{bottom:875.263500px;}
.y36{bottom:875.770350px;}
.ye2{bottom:875.777100px;}
.yc0{bottom:878.770350px;}
.y16a{bottom:890.263500px;}
.y63{bottom:893.500350px;}
.y35{bottom:893.770350px;}
.y13d{bottom:893.775600px;}
.ye1{bottom:893.777100px;}
.ybf{bottom:896.770350px;}
.y6{bottom:897.575250px;}
.y169{bottom:905.263500px;}
.y62{bottom:911.500350px;}
.y34{bottom:911.770350px;}
.y13c{bottom:911.775600px;}
.ye0{bottom:911.777100px;}
.ybe{bottom:914.770350px;}
.y168{bottom:920.263500px;}
.y33{bottom:929.770350px;}
.y13b{bottom:929.775600px;}
.ydf{bottom:929.777100px;}
.ybd{bottom:932.770350px;}
.y5{bottom:934.036050px;}
.y167{bottom:935.263500px;}
.y61{bottom:947.365350px;}
.y32{bottom:947.770350px;}
.y13a{bottom:947.775600px;}
.yde{bottom:947.777100px;}
.y166{bottom:950.263500px;}
.ybc{bottom:950.770350px;}
.y165{bottom:965.263500px;}
.y60{bottom:965.365350px;}
.y31{bottom:965.770350px;}
.y139{bottom:965.775600px;}
.ydd{bottom:965.777100px;}
.ybb{bottom:968.770350px;}
.y4{bottom:970.496850px;}
.y164{bottom:980.263500px;}
.y5f{bottom:983.365350px;}
.y30{bottom:983.770350px;}
.y138{bottom:983.775600px;}
.ydc{bottom:983.777100px;}
.yba{bottom:986.770350px;}
.y163{bottom:995.263500px;}
.y5e{bottom:1001.365350px;}
.y2f{bottom:1001.770350px;}
.y137{bottom:1001.775600px;}
.ydb{bottom:1001.777100px;}
.yb9{bottom:1004.770350px;}
.y3{bottom:1006.926000px;}
.y162{bottom:1010.263500px;}
.y5d{bottom:1019.365350px;}
.y2e{bottom:1019.770350px;}
.y136{bottom:1019.775600px;}
.yda{bottom:1019.777100px;}
.y161{bottom:1025.263500px;}
.y5c{bottom:1037.365350px;}
.y2d{bottom:1037.770350px;}
.y135{bottom:1037.775600px;}
.yd9{bottom:1037.777100px;}
.yb8{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y160{bottom:1132.416150px;}
.y8e{bottom:1132.418700px;}
.yb7{bottom:1132.421250px;}
.ycf{bottom:1132.421700px;}
.y198{bottom:1132.423500px;}
.y117{bottom:1132.425300px;}
.y96{bottom:1132.450200px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h7{height:32.805176px;}
.h10{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h11{height:37.520508px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.718034px;}
.h9{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x24{left:92.881800px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x2b{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x26{left:120.756000px;}
.x21{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.xd{left:144.725400px;}
.x23{left:162.226200px;}
.x25{left:199.423800px;}
.xf{left:202.910400px;}
.xe{left:211.100400px;}
.x5{left:212.876400px;}
.x27{left:220.135350px;}
.xa{left:455.041500px;}
.x19{left:457.085400px;}
.x14{left:459.485400px;}
.x1a{left:469.790400px;}
.x20{left:478.566600px;}
.x7{left:480.501000px;}
.x1c{left:482.598600px;}
.x16{left:483.980400px;}
.x18{left:491.105400px;}
.x13{left:500.240400px;}
.x2a{left:503.858400px;}
.x22{left:512.391000px;}
.x8{left:514.521000px;}
.x12{left:521.495400px;}
.x11{left:536.480400px;}
.x10{left:545.660400px;}
.x17{left:577.325400px;}
.x15{left:578.585400px;}
.x28{left:591.940350px;}
.x29{left:596.110350px;}
.x1b{left:603.590400px;}
.x1e{left:663.492300px;}
.x2{left:693.365400px;}
.x2c{left:721.734300px;}
.x1d{left:728.391600px;}
.x1f{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls44{letter-spacing:-0.266667pt;}
.ls52{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls48{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls6b{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.053333pt;}
.ls61{letter-spacing:0.085333pt;}
.ls37{letter-spacing:0.106667pt;}
.ls63{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls59{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.341333pt;}
.ls4b{letter-spacing:0.373333pt;}
.ls76{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls64{letter-spacing:0.469333pt;}
.ls32{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls34{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.586667pt;}
.ls5a{letter-spacing:0.597333pt;}
.ls18{letter-spacing:0.640000pt;}
.ls71{letter-spacing:0.682667pt;}
.ls4{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.725333pt;}
.ls7{letter-spacing:0.746667pt;}
.ls6d{letter-spacing:0.768000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls5b{letter-spacing:0.810667pt;}
.ls3b{letter-spacing:0.853333pt;}
.ls6c{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.906667pt;}
.ls5f{letter-spacing:0.938667pt;}
.ls3c{letter-spacing:0.960000pt;}
.ls5e{letter-spacing:0.981333pt;}
.lsf{letter-spacing:1.013333pt;}
.ls56{letter-spacing:1.024000pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls55{letter-spacing:1.109333pt;}
.lsa{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls5c{letter-spacing:1.194667pt;}
.ls3f{letter-spacing:1.226667pt;}
.ls41{letter-spacing:1.280000pt;}
.ls47{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls8{letter-spacing:1.440000pt;}
.ls25{letter-spacing:1.493333pt;}
.ls3{letter-spacing:1.546667pt;}
.ls62{letter-spacing:1.578667pt;}
.lsd{letter-spacing:1.600000pt;}
.ls6f{letter-spacing:1.621333pt;}
.ls19{letter-spacing:1.653333pt;}
.ls5d{letter-spacing:1.664000pt;}
.ls36{letter-spacing:1.706667pt;}
.ls5{letter-spacing:1.760000pt;}
.ls4e{letter-spacing:1.813333pt;}
.ls15{letter-spacing:1.866667pt;}
.ls24{letter-spacing:1.920000pt;}
.ls68{letter-spacing:1.962667pt;}
.lsc{letter-spacing:1.973333pt;}
.ls74{letter-spacing:2.005333pt;}
.lse{letter-spacing:2.026667pt;}
.ls58{letter-spacing:2.080000pt;}
.ls28{letter-spacing:2.133333pt;}
.ls6e{letter-spacing:2.176000pt;}
.ls33{letter-spacing:2.186667pt;}
.ls50{letter-spacing:2.240000pt;}
.ls60{letter-spacing:2.261333pt;}
.ls2a{letter-spacing:2.346667pt;}
.ls6a{letter-spacing:2.389333pt;}
.ls1e{letter-spacing:2.400000pt;}
.ls17{letter-spacing:2.453333pt;}
.ls2e{letter-spacing:2.506667pt;}
.ls3a{letter-spacing:2.560000pt;}
.ls42{letter-spacing:2.613333pt;}
.ls16{letter-spacing:2.720000pt;}
.ls30{letter-spacing:2.773333pt;}
.ls35{letter-spacing:2.826667pt;}
.ls2{letter-spacing:2.880000pt;}
.ls4d{letter-spacing:2.933333pt;}
.ls49{letter-spacing:2.986667pt;}
.ls70{letter-spacing:3.029333pt;}
.ls1d{letter-spacing:3.040000pt;}
.ls54{letter-spacing:3.093333pt;}
.ls3d{letter-spacing:3.146667pt;}
.ls39{letter-spacing:3.200000pt;}
.ls4c{letter-spacing:3.413333pt;}
.ls2c{letter-spacing:3.466667pt;}
.ls14{letter-spacing:3.573333pt;}
.ls23{letter-spacing:3.786667pt;}
.ls2d{letter-spacing:3.840000pt;}
.ls69{letter-spacing:3.968000pt;}
.ls45{letter-spacing:4.053333pt;}
.ls75{letter-spacing:4.522667pt;}
.ls3e{letter-spacing:4.693333pt;}
.ls72{letter-spacing:4.778667pt;}
.ls57{letter-spacing:4.800000pt;}
.ls20{letter-spacing:4.960000pt;}
.ls53{letter-spacing:5.013333pt;}
.ls29{letter-spacing:5.280000pt;}
.ls22{letter-spacing:5.600000pt;}
.ls51{letter-spacing:5.973333pt;}
.ls43{letter-spacing:6.240000pt;}
.ls40{letter-spacing:6.346667pt;}
.ls2b{letter-spacing:6.720000pt;}
.ls4f{letter-spacing:6.933333pt;}
.ls2f{letter-spacing:7.946667pt;}
.ls4a{letter-spacing:8.000000pt;}
.ls46{letter-spacing:8.480000pt;}
.ws0{word-spacing:-31.284267pt;}
.ws43{word-spacing:-17.386667pt;}
.ws60{word-spacing:-17.173333pt;}
.ws16{word-spacing:-16.906667pt;}
.ws4e{word-spacing:-16.800000pt;}
.ws13{word-spacing:-16.053333pt;}
.ws50{word-spacing:-15.840000pt;}
.ws4f{word-spacing:-15.786667pt;}
.ws11{word-spacing:-15.733333pt;}
.ws17{word-spacing:-15.253333pt;}
.ws2d{word-spacing:-15.200000pt;}
.ws51{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws4{word-spacing:-14.773333pt;}
.ws2f{word-spacing:-14.560000pt;}
.ws15{word-spacing:-14.506667pt;}
.ws2e{word-spacing:-14.400000pt;}
.ws2c{word-spacing:-14.293333pt;}
.ws12{word-spacing:-14.026667pt;}
.ws5f{word-spacing:-13.973333pt;}
.ws44{word-spacing:-13.920000pt;}
.ws14{word-spacing:-13.866667pt;}
.ws30{word-spacing:-13.760000pt;}
.ws5b{word-spacing:-13.546667pt;}
.ws61{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws76{word-spacing:-12.288000pt;}
.ws4d{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.861333pt;}
.ws79{word-spacing:-11.648000pt;}
.ws77{word-spacing:-11.434667pt;}
.ws73{word-spacing:-11.178667pt;}
.ws5{word-spacing:-11.120000pt;}
.ws78{word-spacing:-11.008000pt;}
.ws62{word-spacing:-10.922667pt;}
.ws74{word-spacing:-10.709333pt;}
.ws72{word-spacing:-10.666667pt;}
.ws75{word-spacing:-10.624000pt;}
.ws69{word-spacing:-10.197333pt;}
.ws1{word-spacing:-9.076144pt;}
.ws68{word-spacing:-6.954667pt;}
.ws67{word-spacing:-6.570667pt;}
.ws47{word-spacing:-4.053333pt;}
.ws6b{word-spacing:-3.712000pt;}
.ws8{word-spacing:-2.565333pt;}
.ws21{word-spacing:-2.346667pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws6c{word-spacing:-1.813333pt;}
.ws7f{word-spacing:-1.664000pt;}
.ws89{word-spacing:-1.621333pt;}
.ws3d{word-spacing:-1.120000pt;}
.ws64{word-spacing:-0.960000pt;}
.ws20{word-spacing:-0.906667pt;}
.ws86{word-spacing:-0.810667pt;}
.ws84{word-spacing:-0.768000pt;}
.ws63{word-spacing:-0.693333pt;}
.ws6a{word-spacing:-0.682667pt;}
.ws87{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.586667pt;}
.ws1f{word-spacing:-0.533333pt;}
.ws83{word-spacing:-0.512000pt;}
.ws36{word-spacing:-0.426667pt;}
.ws53{word-spacing:-0.266667pt;}
.ws71{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.213333pt;}
.ws8a{word-spacing:-0.128000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.042667pt;}
.ws22{word-spacing:0.053333pt;}
.ws85{word-spacing:0.128000pt;}
.ws34{word-spacing:0.160000pt;}
.ws7c{word-spacing:0.170667pt;}
.ws5a{word-spacing:0.256000pt;}
.ws37{word-spacing:0.266667pt;}
.ws88{word-spacing:0.298667pt;}
.ws29{word-spacing:0.341333pt;}
.ws1b{word-spacing:0.426667pt;}
.ws10{word-spacing:0.480000pt;}
.ws55{word-spacing:0.586667pt;}
.ws58{word-spacing:0.682667pt;}
.ws3b{word-spacing:0.693333pt;}
.ws57{word-spacing:0.725333pt;}
.ws1a{word-spacing:0.853333pt;}
.ws26{word-spacing:0.906667pt;}
.ws2b{word-spacing:0.981333pt;}
.wsf{word-spacing:1.013333pt;}
.ws7e{word-spacing:1.024000pt;}
.ws59{word-spacing:1.066667pt;}
.ws5e{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.440000pt;}
.ws24{word-spacing:1.536000pt;}
.ws81{word-spacing:1.578667pt;}
.ws45{word-spacing:1.600000pt;}
.ws48{word-spacing:1.706667pt;}
.ws6d{word-spacing:1.813333pt;}
.wse{word-spacing:1.866667pt;}
.ws7a{word-spacing:1.962667pt;}
.ws80{word-spacing:2.005333pt;}
.wsc{word-spacing:2.026667pt;}
.ws82{word-spacing:2.048000pt;}
.ws40{word-spacing:2.080000pt;}
.ws38{word-spacing:2.133333pt;}
.ws3e{word-spacing:2.186667pt;}
.ws4c{word-spacing:2.218667pt;}
.ws32{word-spacing:2.240000pt;}
.ws19{word-spacing:2.453333pt;}
.ws42{word-spacing:2.506667pt;}
.ws4a{word-spacing:2.560000pt;}
.ws49{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.720000pt;}
.ws35{word-spacing:2.773333pt;}
.ws56{word-spacing:2.826667pt;}
.ws70{word-spacing:2.858667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws18{word-spacing:2.986667pt;}
.ws39{word-spacing:3.040000pt;}
.ws31{word-spacing:3.093333pt;}
.ws46{word-spacing:3.200000pt;}
.ws7d{word-spacing:3.328000pt;}
.ws9{word-spacing:3.360000pt;}
.ws65{word-spacing:3.413333pt;}
.ws7b{word-spacing:3.456000pt;}
.ws25{word-spacing:3.466667pt;}
.ws5c{word-spacing:3.498667pt;}
.ws52{word-spacing:3.520000pt;}
.ws27{word-spacing:3.541333pt;}
.ws66{word-spacing:3.573333pt;}
.ws54{word-spacing:3.680000pt;}
.ws1c{word-spacing:3.733333pt;}
.ws23{word-spacing:3.893333pt;}
.ws3f{word-spacing:4.000000pt;}
.ws5d{word-spacing:4.053333pt;}
.ws28{word-spacing:4.096000pt;}
.ws3a{word-spacing:4.106667pt;}
.ws41{word-spacing:4.213333pt;}
.wsb{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws6f{word-spacing:4.906667pt;}
._b{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._a{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.253333pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._9{width:0.906667pt;}
._d{width:1.802667pt;}
._6{width:2.752000pt;}
._7{width:3.808000pt;}
._5{width:5.013333pt;}
._8{width:6.005333pt;}
._11{width:7.404267pt;}
._12{width:8.602133pt;}
._f{width:9.789867pt;}
._13{width:12.656000pt;}
._10{width:17.621333pt;}
._e{width:20.010667pt;}
._2{width:52.910069pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2c{bottom:42.468667pt;}
.y8d{bottom:71.514533pt;}
.y95{bottom:73.662400pt;}
.yce{bottom:73.777733pt;}
.yb2{bottom:74.462533pt;}
.y10e{bottom:74.468533pt;}
.y113{bottom:74.911600pt;}
.y116{bottom:75.026933pt;}
.yb6{bottom:78.938000pt;}
.y15f{bottom:79.093467pt;}
.y134{bottom:80.053867pt;}
.y29{bottom:80.260800pt;}
.yd8{bottom:80.988533pt;}
.y8c{bottom:87.514533pt;}
.y94{bottom:87.657067pt;}
.ycd{bottom:87.772400pt;}
.y112{bottom:88.906267pt;}
.y115{bottom:89.021600pt;}
.y5b{bottom:89.982533pt;}
.yb1{bottom:90.462533pt;}
.y10d{bottom:90.468533pt;}
.y15e{bottom:92.426800pt;}
.y28{bottom:93.590800pt;}
.y133{bottom:96.053867pt;}
.yd7{bottom:96.988533pt;}
.y93{bottom:101.651733pt;}
.ycc{bottom:101.767067pt;}
.y111{bottom:102.900933pt;}
.y114{bottom:103.016267pt;}
.y8b{bottom:103.514533pt;}
.y15d{bottom:105.760133pt;}
.yb0{bottom:106.462533pt;}
.y10c{bottom:106.468533pt;}
.yb5{bottom:106.595867pt;}
.y27{bottom:106.920800pt;}
.y132{bottom:112.053867pt;}
.yd6{bottom:112.988533pt;}
.y92{bottom:115.646400pt;}
.ycb{bottom:115.761733pt;}
.y110{bottom:116.895600pt;}
.y15c{bottom:119.093467pt;}
.y8a{bottom:119.514533pt;}
.y5a{bottom:121.862533pt;}
.yb4{bottom:122.235867pt;}
.yaf{bottom:122.462533pt;}
.y10b{bottom:122.468533pt;}
.yd5{bottom:128.988533pt;}
.y91{bottom:129.641067pt;}
.yca{bottom:129.756400pt;}
.y10f{bottom:130.890267pt;}
.y15b{bottom:132.426800pt;}
.y89{bottom:135.514533pt;}
.yb3{bottom:138.235867pt;}
.yae{bottom:138.462533pt;}
.y10a{bottom:138.468533pt;}
.y90{bottom:143.635733pt;}
.y131{bottom:143.693867pt;}
.yd4{bottom:144.988533pt;}
.y15a{bottom:145.760133pt;}
.y88{bottom:151.514533pt;}
.y24{bottom:151.533467pt;}
.yad{bottom:154.462533pt;}
.y109{bottom:154.468533pt;}
.y8f{bottom:157.630400pt;}
.y159{bottom:159.093467pt;}
.y87{bottom:167.514533pt;}
.y23{bottom:167.533467pt;}
.y59{bottom:170.342533pt;}
.yac{bottom:170.462533pt;}
.y108{bottom:170.468533pt;}
.y158{bottom:172.426800pt;}
.yd3{bottom:175.957867pt;}
.y86{bottom:183.514533pt;}
.y22{bottom:183.533467pt;}
.y58{bottom:186.342533pt;}
.yab{bottom:186.462533pt;}
.y107{bottom:186.468533pt;}
.yd2{bottom:189.829867pt;}
.y197{bottom:191.345333pt;}
.y130{bottom:192.173867pt;}
.y85{bottom:199.514533pt;}
.y21{bottom:199.533467pt;}
.y157{bottom:201.867200pt;}
.y57{bottom:202.342533pt;}
.yaa{bottom:202.462533pt;}
.y106{bottom:202.468533pt;}
.yd1{bottom:202.595867pt;}
.y196{bottom:204.678667pt;}
.y12f{bottom:208.173867pt;}
.y84{bottom:215.514533pt;}
.y20{bottom:215.533467pt;}
.y195{bottom:218.012000pt;}
.yd0{bottom:218.235867pt;}
.y56{bottom:218.342533pt;}
.ya9{bottom:218.462533pt;}
.y105{bottom:218.468533pt;}
.y12e{bottom:224.173867pt;}
.y194{bottom:231.345333pt;}
.y83{bottom:231.514533pt;}
.y1f{bottom:231.533467pt;}
.y55{bottom:234.342533pt;}
.ya8{bottom:234.462533pt;}
.y104{bottom:234.468533pt;}
.y12d{bottom:240.173867pt;}
.y193{bottom:244.678667pt;}
.y82{bottom:247.514533pt;}
.y1e{bottom:247.533467pt;}
.y54{bottom:250.342533pt;}
.y156{bottom:250.347200pt;}
.ya7{bottom:250.462533pt;}
.y103{bottom:250.468533pt;}
.y12c{bottom:256.173867pt;}
.y192{bottom:258.012000pt;}
.y81{bottom:263.514533pt;}
.y1d{bottom:263.533467pt;}
.y155{bottom:265.987200pt;}
.y53{bottom:266.342533pt;}
.ya6{bottom:266.462533pt;}
.y102{bottom:266.468533pt;}
.y191{bottom:271.345333pt;}
.y12b{bottom:272.173867pt;}
.y1c{bottom:279.533467pt;}
.y52{bottom:282.342533pt;}
.ya5{bottom:282.462533pt;}
.y101{bottom:282.468533pt;}
.y190{bottom:284.678667pt;}
.y12a{bottom:288.173867pt;}
.y80{bottom:295.064000pt;}
.y1b{bottom:295.533467pt;}
.y154{bottom:297.987200pt;}
.y18f{bottom:298.012000pt;}
.y51{bottom:298.342533pt;}
.ya4{bottom:298.462533pt;}
.y100{bottom:298.468533pt;}
.y7f{bottom:308.397333pt;}
.y18e{bottom:311.345333pt;}
.y1a{bottom:311.533467pt;}
.y50{bottom:314.342533pt;}
.ya3{bottom:314.462533pt;}
.yff{bottom:314.468533pt;}
.y129{bottom:319.723333pt;}
.y7e{bottom:321.730667pt;}
.y18d{bottom:324.678667pt;}
.y26{bottom:327.533467pt;}
.y4f{bottom:330.342533pt;}
.y153{bottom:330.347200pt;}
.ya2{bottom:330.462533pt;}
.yfe{bottom:330.468533pt;}
.y128{bottom:333.056667pt;}
.y7d{bottom:335.064000pt;}
.y18c{bottom:338.012000pt;}
.y19{bottom:343.175333pt;}
.y25{bottom:343.533467pt;}
.y152{bottom:345.987200pt;}
.y4e{bottom:346.342533pt;}
.y127{bottom:346.390000pt;}
.ya1{bottom:346.462533pt;}
.yfd{bottom:346.468533pt;}
.y18b{bottom:351.345333pt;}
.y126{bottom:359.723333pt;}
.y4d{bottom:362.342533pt;}
.ya0{bottom:362.462533pt;}
.yfc{bottom:362.468533pt;}
.y7c{bottom:362.715867pt;}
.y18a{bottom:364.678667pt;}
.y125{bottom:373.056667pt;}
.y189{bottom:378.012000pt;}
.y4c{bottom:378.342533pt;}
.y151{bottom:378.347200pt;}
.y7b{bottom:378.355867pt;}
.y9f{bottom:378.462533pt;}
.yfb{bottom:378.468533pt;}
.y188{bottom:391.345333pt;}
.y150{bottom:393.987200pt;}
.y4b{bottom:394.342533pt;}
.y7a{bottom:394.355867pt;}
.y9e{bottom:394.462533pt;}
.yfa{bottom:394.468533pt;}
.y124{bottom:402.482400pt;}
.y187{bottom:404.678667pt;}
.y18{bottom:405.923733pt;}
.y4a{bottom:410.342533pt;}
.y9d{bottom:410.462533pt;}
.yf9{bottom:410.468533pt;}
.y186{bottom:418.012000pt;}
.y123{bottom:418.482400pt;}
.y49{bottom:426.342533pt;}
.y14f{bottom:426.347200pt;}
.y9c{bottom:426.462533pt;}
.yf8{bottom:426.468533pt;}
.y79{bottom:426.582533pt;}
.y17{bottom:430.230400pt;}
.y185{bottom:431.345333pt;}
.y14e{bottom:441.987200pt;}
.y48{bottom:442.342533pt;}
.y9b{bottom:442.462533pt;}
.yf7{bottom:442.468533pt;}
.y78{bottom:442.582533pt;}
.y184{bottom:444.678667pt;}
.y16{bottom:446.230400pt;}
.y122{bottom:450.264000pt;}
.y183{bottom:458.012000pt;}
.y9a{bottom:458.462533pt;}
.yf6{bottom:458.468533pt;}
.y77{bottom:458.582533pt;}
.y15{bottom:462.230400pt;}
.y121{bottom:463.597333pt;}
.y182{bottom:471.345333pt;}
.y47{bottom:473.982533pt;}
.y14d{bottom:474.347200pt;}
.y99{bottom:474.462533pt;}
.yf5{bottom:474.468533pt;}
.y76{bottom:474.582533pt;}
.y120{bottom:476.930667pt;}
.y14{bottom:478.230400pt;}
.y181{bottom:484.678667pt;}
.y11f{bottom:490.264000pt;}
.y14c{bottom:490.347200pt;}
.y98{bottom:490.462533pt;}
.yf4{bottom:490.468533pt;}
.y75{bottom:490.582533pt;}
.y13{bottom:494.230400pt;}
.y180{bottom:498.012000pt;}
.y11e{bottom:503.597333pt;}
.y14b{bottom:506.347200pt;}
.y97{bottom:506.462533pt;}
.yf3{bottom:506.468533pt;}
.y74{bottom:506.582533pt;}
.y12{bottom:510.230400pt;}
.y17f{bottom:511.345333pt;}
.y11d{bottom:516.930667pt;}
.y14a{bottom:522.347200pt;}
.y46{bottom:522.462533pt;}
.yf2{bottom:522.468533pt;}
.y73{bottom:522.582533pt;}
.y17e{bottom:524.678667pt;}
.y11{bottom:526.230400pt;}
.y11c{bottom:530.264000pt;}
.y17d{bottom:538.012000pt;}
.y149{bottom:538.347200pt;}
.y45{bottom:538.462533pt;}
.yf1{bottom:538.468533pt;}
.y72{bottom:538.582533pt;}
.y10{bottom:542.230400pt;}
.y11b{bottom:543.597333pt;}
.y17c{bottom:551.345333pt;}
.y148{bottom:554.347200pt;}
.y44{bottom:554.462533pt;}
.yf0{bottom:554.468533pt;}
.y71{bottom:554.582533pt;}
.y11a{bottom:556.930667pt;}
.yf{bottom:558.230400pt;}
.y17b{bottom:564.678667pt;}
.y147{bottom:570.347200pt;}
.y43{bottom:570.462533pt;}
.yef{bottom:570.468533pt;}
.y70{bottom:570.582533pt;}
.y17a{bottom:578.012000pt;}
.y146{bottom:585.987200pt;}
.y119{bottom:586.355867pt;}
.y42{bottom:586.462533pt;}
.yee{bottom:586.468533pt;}
.y6f{bottom:586.582533pt;}
.y179{bottom:591.345333pt;}
.ye{bottom:598.370933pt;}
.y41{bottom:602.462533pt;}
.yed{bottom:602.468533pt;}
.y6e{bottom:602.582533pt;}
.y178{bottom:604.678667pt;}
.yd{bottom:609.438267pt;}
.y177{bottom:618.012000pt;}
.y118{bottom:618.235867pt;}
.y145{bottom:618.347200pt;}
.y40{bottom:618.462533pt;}
.yec{bottom:618.468533pt;}
.y6d{bottom:618.582533pt;}
.y176{bottom:631.345333pt;}
.y144{bottom:634.347200pt;}
.y3f{bottom:634.462533pt;}
.yeb{bottom:634.468533pt;}
.y6c{bottom:634.582533pt;}
.yc9{bottom:637.129200pt;}
.yc{bottom:642.452400pt;}
.y175{bottom:644.678667pt;}
.yb{bottom:649.629867pt;}
.y143{bottom:650.347200pt;}
.y3e{bottom:650.462533pt;}
.yea{bottom:650.468533pt;}
.y6b{bottom:650.582533pt;}
.yc8{bottom:653.129200pt;}
.y174{bottom:658.012000pt;}
.y142{bottom:666.347200pt;}
.ya{bottom:666.452400pt;}
.y3d{bottom:666.462533pt;}
.ye9{bottom:666.468533pt;}
.y6a{bottom:666.582533pt;}
.yc7{bottom:669.129200pt;}
.y173{bottom:671.345333pt;}
.y141{bottom:682.347200pt;}
.y3c{bottom:682.462533pt;}
.ye8{bottom:682.468533pt;}
.y69{bottom:682.582533pt;}
.y172{bottom:684.678667pt;}
.yc6{bottom:685.129200pt;}
.y9{bottom:691.982933pt;}
.y171{bottom:698.012000pt;}
.y140{bottom:698.347200pt;}
.y3b{bottom:698.462533pt;}
.ye7{bottom:698.468533pt;}
.y68{bottom:698.582533pt;}
.yc5{bottom:701.129200pt;}
.y170{bottom:711.345333pt;}
.y13f{bottom:714.347200pt;}
.y3a{bottom:714.462533pt;}
.ye6{bottom:714.468533pt;}
.y67{bottom:714.582533pt;}
.yc4{bottom:717.129200pt;}
.y16f{bottom:724.678667pt;}
.y39{bottom:730.462533pt;}
.ye5{bottom:730.468533pt;}
.y66{bottom:730.582533pt;}
.y8{bottom:733.025467pt;}
.yc3{bottom:733.129200pt;}
.y16e{bottom:738.012000pt;}
.y13e{bottom:745.987200pt;}
.y38{bottom:746.462533pt;}
.ye4{bottom:746.468533pt;}
.y65{bottom:746.582533pt;}
.yc2{bottom:749.129200pt;}
.y16d{bottom:751.345333pt;}
.y37{bottom:762.462533pt;}
.ye3{bottom:762.468533pt;}
.y64{bottom:762.582533pt;}
.y16c{bottom:764.678667pt;}
.yc1{bottom:765.129200pt;}
.y7{bottom:765.435067pt;}
.y16b{bottom:778.012000pt;}
.y36{bottom:778.462533pt;}
.ye2{bottom:778.468533pt;}
.yc0{bottom:781.129200pt;}
.y16a{bottom:791.345333pt;}
.y63{bottom:794.222533pt;}
.y35{bottom:794.462533pt;}
.y13d{bottom:794.467200pt;}
.ye1{bottom:794.468533pt;}
.ybf{bottom:797.129200pt;}
.y6{bottom:797.844667pt;}
.y169{bottom:804.678667pt;}
.y62{bottom:810.222533pt;}
.y34{bottom:810.462533pt;}
.y13c{bottom:810.467200pt;}
.ye0{bottom:810.468533pt;}
.ybe{bottom:813.129200pt;}
.y168{bottom:818.012000pt;}
.y33{bottom:826.462533pt;}
.y13b{bottom:826.467200pt;}
.ydf{bottom:826.468533pt;}
.ybd{bottom:829.129200pt;}
.y5{bottom:830.254267pt;}
.y167{bottom:831.345333pt;}
.y61{bottom:842.102533pt;}
.y32{bottom:842.462533pt;}
.y13a{bottom:842.467200pt;}
.yde{bottom:842.468533pt;}
.y166{bottom:844.678667pt;}
.ybc{bottom:845.129200pt;}
.y165{bottom:858.012000pt;}
.y60{bottom:858.102533pt;}
.y31{bottom:858.462533pt;}
.y139{bottom:858.467200pt;}
.ydd{bottom:858.468533pt;}
.ybb{bottom:861.129200pt;}
.y4{bottom:862.663867pt;}
.y164{bottom:871.345333pt;}
.y5f{bottom:874.102533pt;}
.y30{bottom:874.462533pt;}
.y138{bottom:874.467200pt;}
.ydc{bottom:874.468533pt;}
.yba{bottom:877.129200pt;}
.y163{bottom:884.678667pt;}
.y5e{bottom:890.102533pt;}
.y2f{bottom:890.462533pt;}
.y137{bottom:890.467200pt;}
.ydb{bottom:890.468533pt;}
.yb9{bottom:893.129200pt;}
.y3{bottom:895.045333pt;}
.y162{bottom:898.012000pt;}
.y5d{bottom:906.102533pt;}
.y2e{bottom:906.462533pt;}
.y136{bottom:906.467200pt;}
.yda{bottom:906.468533pt;}
.y161{bottom:911.345333pt;}
.y5c{bottom:922.102533pt;}
.y2d{bottom:922.462533pt;}
.y135{bottom:922.467200pt;}
.yd9{bottom:922.468533pt;}
.yb8{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y160{bottom:1006.592133pt;}
.y8e{bottom:1006.594400pt;}
.yb7{bottom:1006.596667pt;}
.ycf{bottom:1006.597067pt;}
.y198{bottom:1006.598667pt;}
.y117{bottom:1006.600267pt;}
.y96{bottom:1006.622400pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h7{height:29.160156pt;}
.h10{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h11{height:33.351562pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.860475pt;}
.h9{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x24{left:82.561600pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2b{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x26{left:107.338667pt;}
.x21{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.xd{left:128.644800pt;}
.x23{left:144.201067pt;}
.x25{left:177.265600pt;}
.xf{left:180.364800pt;}
.xe{left:187.644800pt;}
.x5{left:189.223467pt;}
.x27{left:195.675867pt;}
.xa{left:404.481333pt;}
.x19{left:406.298133pt;}
.x14{left:408.431467pt;}
.x1a{left:417.591467pt;}
.x20{left:425.392533pt;}
.x7{left:427.112000pt;}
.x1c{left:428.976533pt;}
.x16{left:430.204800pt;}
.x18{left:436.538133pt;}
.x13{left:444.658133pt;}
.x2a{left:447.874133pt;}
.x22{left:455.458667pt;}
.x8{left:457.352000pt;}
.x12{left:463.551467pt;}
.x11{left:476.871467pt;}
.x10{left:485.031467pt;}
.x17{left:513.178133pt;}
.x15{left:514.298133pt;}
.x28{left:526.169200pt;}
.x29{left:529.875867pt;}
.x1b{left:536.524800pt;}
.x1e{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2c{left:641.541600pt;}
.x1d{left:647.459200pt;}
.x1f{left:666.353200pt;}
}




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