
    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_4bde544576bf05fb76f51da7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_f72d48ea036002cdcf5a1aae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_94516d6463e0836b0532c686.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_db7819ac3774ff28441f4dab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206543;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_d016bbc496e5cf0a6eec1819.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.153000;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_d6ede5db9915ce7b59ba7bb2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.735000;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_89852a951aebfbde714cc768.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948000;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_5fe5bffb7ab9316dc90470ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988014;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_2d47f9314b64f54d2f176a29.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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_3aa1b15bfa5f8f1e0f0dd959.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_2b5a3f8b1cceec6d6ec95575.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-30.948000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:21.924000px;}
.v1{vertical-align:26.400000px;}
.v5{vertical-align:32.400000px;}
.v4{vertical-align:54.270000px;}
.ls4a{letter-spacing:-7.182000px;}
.ls14{letter-spacing:-5.478000px;}
.ls53{letter-spacing:-5.022000px;}
.ls3c{letter-spacing:-3.780000px;}
.ls12{letter-spacing:-3.744000px;}
.ls13{letter-spacing:-3.630000px;}
.ls4b{letter-spacing:-3.618000px;}
.ls56{letter-spacing:-3.564000px;}
.ls40{letter-spacing:-3.402000px;}
.ls57{letter-spacing:-3.078000px;}
.ls50{letter-spacing:-3.024000px;}
.ls52{letter-spacing:-2.862000px;}
.ls47{letter-spacing:-2.754000px;}
.ls4e{letter-spacing:-2.538000px;}
.ls25{letter-spacing:-2.400000px;}
.ls55{letter-spacing:-2.376000px;}
.ls41{letter-spacing:-2.160000px;}
.ls16{letter-spacing:-2.109000px;}
.ls4c{letter-spacing:-1.836000px;}
.ls1e{letter-spacing:-1.800000px;}
.ls48{letter-spacing:-1.782000px;}
.ls59{letter-spacing:-1.728000px;}
.ls4f{letter-spacing:-1.674000px;}
.ls43{letter-spacing:-1.620000px;}
.ls54{letter-spacing:-1.512000px;}
.ls28{letter-spacing:-1.500000px;}
.ls30{letter-spacing:-1.440000px;}
.ls58{letter-spacing:-1.350000px;}
.ls21{letter-spacing:-1.200000px;}
.ls34{letter-spacing:-1.188000px;}
.ls51{letter-spacing:-1.134000px;}
.ls42{letter-spacing:-1.080000px;}
.ls31{letter-spacing:-0.960000px;}
.ls23{letter-spacing:-0.840000px;}
.ls37{letter-spacing:-0.810000px;}
.ls38{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.300000px;}
.ls2b{letter-spacing:-0.270000px;}
.ls24{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.131760px;}
.ls45{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.046116px;}
.lsb{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013176px;}
.ls7{letter-spacing:0.019764px;}
.ls0{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.032940px;}
.ls5{letter-spacing:0.039528px;}
.ls1{letter-spacing:0.041940px;}
.ls6{letter-spacing:0.046116px;}
.lsf{letter-spacing:0.059292px;}
.ls3e{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.108000px;}
.ls39{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.223992px;}
.ls29{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls33{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.594000px;}
.ls20{letter-spacing:0.600000px;}
.ls32{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.810000px;}
.ls2e{letter-spacing:1.134000px;}
.ls19{letter-spacing:1.188000px;}
.ls3d{letter-spacing:1.200000px;}
.ls49{letter-spacing:1.231200px;}
.ls1d{letter-spacing:1.260000px;}
.ls4d{letter-spacing:1.296000px;}
.ls36{letter-spacing:1.404000px;}
.ls10{letter-spacing:1.432200px;}
.ls2f{letter-spacing:1.458000px;}
.ls15{letter-spacing:1.518000px;}
.ls46{letter-spacing:2.106000px;}
.ls11{letter-spacing:3.392400px;}
.lse{letter-spacing:155.384568px;}
.ls2d{letter-spacing:258.606000px;}
.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;}
}
.ws7a{word-spacing:-273.834000px;}
.ws17{word-spacing:-19.020000px;}
.ws75{word-spacing:-18.180000px;}
.ws77{word-spacing:-18.060000px;}
.wsb9{word-spacing:-17.820000px;}
.ws9e{word-spacing:-17.400000px;}
.wsdf{word-spacing:-17.334000px;}
.ws76{word-spacing:-17.280000px;}
.ws15{word-spacing:-17.172000px;}
.ws47{word-spacing:-16.920000px;}
.ws46{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.930000px;}
.ws16{word-spacing:-15.660000px;}
.ws48{word-spacing:-15.420000px;}
.wsba{word-spacing:-15.336000px;}
.ws14{word-spacing:-15.228000px;}
.ws82{word-spacing:-14.958000px;}
.ws2{word-spacing:-14.921820px;}
.wsbb{word-spacing:-14.904000px;}
.ws0{word-spacing:-14.875704px;}
.ws1{word-spacing:-14.855940px;}
.wse0{word-spacing:-14.796000px;}
.ws12{word-spacing:-13.965000px;}
.ws74{word-spacing:-13.824000px;}
.wse1{word-spacing:-13.392000px;}
.wsbc{word-spacing:-10.368000px;}
.ws11{word-spacing:-9.136800px;}
.ws41{word-spacing:-4.500000px;}
.wse6{word-spacing:-4.482000px;}
.ws59{word-spacing:-4.260000px;}
.wsb0{word-spacing:-4.200000px;}
.wsce{word-spacing:-4.104000px;}
.wsa2{word-spacing:-4.020000px;}
.wsab{word-spacing:-3.960000px;}
.wsb7{word-spacing:-3.900000px;}
.ws88{word-spacing:-3.720000px;}
.ws4b{word-spacing:-3.660000px;}
.wsa5{word-spacing:-3.600000px;}
.ws64{word-spacing:-3.480000px;}
.wsd6{word-spacing:-3.348000px;}
.ws3e{word-spacing:-3.300000px;}
.ws4e{word-spacing:-3.240000px;}
.wsae{word-spacing:-3.180000px;}
.ws62{word-spacing:-3.120000px;}
.ws3c{word-spacing:-3.060000px;}
.ws34{word-spacing:-3.000000px;}
.wscb{word-spacing:-2.970000px;}
.ws2e{word-spacing:-2.940000px;}
.ws5f{word-spacing:-2.880000px;}
.ws53{word-spacing:-2.820000px;}
.wsdd{word-spacing:-2.808000px;}
.wsa8{word-spacing:-2.760000px;}
.wsd0{word-spacing:-2.754000px;}
.wsac{word-spacing:-2.700000px;}
.wsf8{word-spacing:-2.646000px;}
.ws6a{word-spacing:-2.640000px;}
.wsff{word-spacing:-2.592000px;}
.ws8f{word-spacing:-2.580000px;}
.ws1e{word-spacing:-2.484000px;}
.ws3b{word-spacing:-2.460000px;}
.wsf9{word-spacing:-2.430000px;}
.wsbd{word-spacing:-2.400000px;}
.wsf4{word-spacing:-2.376000px;}
.ws29{word-spacing:-2.340000px;}
.wsf5{word-spacing:-2.322000px;}
.ws2b{word-spacing:-2.280000px;}
.ws96{word-spacing:-2.220000px;}
.ws2d{word-spacing:-2.160000px;}
.ws21{word-spacing:-2.106000px;}
.ws38{word-spacing:-2.100000px;}
.wsd9{word-spacing:-2.052000px;}
.ws9f{word-spacing:-2.040000px;}
.wsc3{word-spacing:-1.980000px;}
.ws37{word-spacing:-1.920000px;}
.ws33{word-spacing:-1.860000px;}
.wsfb{word-spacing:-1.836000px;}
.ws66{word-spacing:-1.800000px;}
.ws1f{word-spacing:-1.782000px;}
.ws90{word-spacing:-1.740000px;}
.wsde{word-spacing:-1.728000px;}
.ws44{word-spacing:-1.680000px;}
.ws32{word-spacing:-1.620000px;}
.wse2{word-spacing:-1.566000px;}
.ws3d{word-spacing:-1.560000px;}
.ws1b{word-spacing:-1.518000px;}
.wsc7{word-spacing:-1.512000px;}
.ws54{word-spacing:-1.500000px;}
.ws27{word-spacing:-1.458000px;}
.ws5d{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.380000px;}
.ws39{word-spacing:-1.320000px;}
.wscd{word-spacing:-1.296000px;}
.ws68{word-spacing:-1.260000px;}
.ws4f{word-spacing:-1.200000px;}
.ws8e{word-spacing:-1.140000px;}
.wsb4{word-spacing:-1.080000px;}
.wse8{word-spacing:-1.026000px;}
.ws5e{word-spacing:-1.020000px;}
.ws4c{word-spacing:-0.960000px;}
.wsf7{word-spacing:-0.918000px;}
.ws28{word-spacing:-0.900000px;}
.wsd8{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.840000px;}
.ws9d{word-spacing:-0.810000px;}
.ws99{word-spacing:-0.780000px;}
.wsc6{word-spacing:-0.756000px;}
.ws6b{word-spacing:-0.720000px;}
.ws60{word-spacing:-0.660000px;}
.ws52{word-spacing:-0.600000px;}
.ws71{word-spacing:-0.594000px;}
.ws6c{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.480000px;}
.ws104{word-spacing:-0.432000px;}
.ws98{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.324000px;}
.ws92{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.270000px;}
.ws67{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.191052px;}
.ws2a{word-spacing:-0.180000px;}
.wse{word-spacing:-0.177876px;}
.wsf{word-spacing:-0.151524px;}
.wsd2{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.085644px;}
.ws97{word-spacing:-0.060000px;}
.wsd4{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:0.054000px;}
.ws63{word-spacing:0.060000px;}
.ws6{word-spacing:0.075492px;}
.ws5{word-spacing:0.092268px;}
.wsca{word-spacing:0.108000px;}
.wsb6{word-spacing:0.120000px;}
.wsef{word-spacing:0.162000px;}
.ws6f{word-spacing:0.180000px;}
.ws4{word-spacing:0.234864px;}
.wsb2{word-spacing:0.240000px;}
.ws72{word-spacing:0.270000px;}
.ws61{word-spacing:0.300000px;}
.wsdc{word-spacing:0.324000px;}
.ws40{word-spacing:0.360000px;}
.wsea{word-spacing:0.378000px;}
.ws9a{word-spacing:0.420000px;}
.ws26{word-spacing:0.432000px;}
.wsa7{word-spacing:0.480000px;}
.wsda{word-spacing:0.486000px;}
.ws1d{word-spacing:0.540000px;}
.ws57{word-spacing:0.600000px;}
.wsd3{word-spacing:0.648000px;}
.ws3a{word-spacing:0.660000px;}
.wsad{word-spacing:0.720000px;}
.ws8b{word-spacing:0.780000px;}
.ws30{word-spacing:0.840000px;}
.wsb1{word-spacing:0.900000px;}
.wsc5{word-spacing:0.918000px;}
.ws50{word-spacing:0.960000px;}
.ws1c{word-spacing:0.972000px;}
.ws9b{word-spacing:1.080000px;}
.wsf3{word-spacing:1.134000px;}
.ws9c{word-spacing:1.188000px;}
.wsbf{word-spacing:1.200000px;}
.ws70{word-spacing:1.260000px;}
.ws5c{word-spacing:1.380000px;}
.wsa1{word-spacing:1.440000px;}
.ws51{word-spacing:1.500000px;}
.wsa0{word-spacing:1.560000px;}
.wsc2{word-spacing:1.620000px;}
.wsed{word-spacing:1.674000px;}
.ws89{word-spacing:1.680000px;}
.ws102{word-spacing:1.728000px;}
.wsd1{word-spacing:1.782000px;}
.ws91{word-spacing:1.800000px;}
.wsc8{word-spacing:1.836000px;}
.ws8c{word-spacing:1.920000px;}
.ws5a{word-spacing:1.980000px;}
.wsa3{word-spacing:2.040000px;}
.wsb5{word-spacing:2.100000px;}
.wsb8{word-spacing:2.220000px;}
.wsfc{word-spacing:2.376000px;}
.wsbe{word-spacing:2.400000px;}
.ws31{word-spacing:2.460000px;}
.wscc{word-spacing:2.484000px;}
.wse4{word-spacing:2.538000px;}
.ws5b{word-spacing:2.580000px;}
.ws93{word-spacing:2.700000px;}
.ws35{word-spacing:2.820000px;}
.wsf6{word-spacing:2.862000px;}
.wsee{word-spacing:2.916000px;}
.wsf2{word-spacing:3.024000px;}
.wsfd{word-spacing:3.078000px;}
.wsa4{word-spacing:3.120000px;}
.ws6e{word-spacing:3.180000px;}
.wsaf{word-spacing:3.300000px;}
.wsc4{word-spacing:3.402000px;}
.ws56{word-spacing:3.480000px;}
.wsdb{word-spacing:3.618000px;}
.ws19{word-spacing:3.630000px;}
.ws18{word-spacing:3.744000px;}
.wsa6{word-spacing:3.780000px;}
.ws95{word-spacing:3.900000px;}
.wse5{word-spacing:3.942000px;}
.wsaa{word-spacing:4.020000px;}
.wsec{word-spacing:4.104000px;}
.wsc0{word-spacing:4.200000px;}
.wseb{word-spacing:4.212000px;}
.ws65{word-spacing:4.260000px;}
.wsd5{word-spacing:4.266000px;}
.ws23{word-spacing:4.320000px;}
.ws8d{word-spacing:4.440000px;}
.wsb3{word-spacing:4.500000px;}
.ws55{word-spacing:4.560000px;}
.wscf{word-spacing:4.644000px;}
.ws36{word-spacing:4.740000px;}
.ws100{word-spacing:4.752000px;}
.wsfa{word-spacing:5.022000px;}
.ws43{word-spacing:5.160000px;}
.ws103{word-spacing:5.184000px;}
.wsa9{word-spacing:5.220000px;}
.ws69{word-spacing:5.280000px;}
.ws1a{word-spacing:5.478000px;}
.ws42{word-spacing:5.580000px;}
.wsf1{word-spacing:5.994000px;}
.ws6d{word-spacing:6.000000px;}
.ws45{word-spacing:6.600000px;}
.wsc1{word-spacing:6.960000px;}
.ws4d{word-spacing:7.020000px;}
.wsd7{word-spacing:7.182000px;}
.wse9{word-spacing:7.344000px;}
.wsf0{word-spacing:7.614000px;}
.wsb{word-spacing:8.109828px;}
.ws94{word-spacing:8.700000px;}
.wse3{word-spacing:8.802000px;}
.ws9{word-spacing:8.834508px;}
.wsa{word-spacing:8.841096px;}
.wsfe{word-spacing:9.342000px;}
.ws58{word-spacing:9.780000px;}
.ws101{word-spacing:9.936000px;}
.wse7{word-spacing:10.476000px;}
.wsc{word-spacing:10.626444px;}
.ws8{word-spacing:10.652796px;}
.wsd{word-spacing:10.665972px;}
.ws2c{word-spacing:12.000000px;}
.wsc9{word-spacing:12.096000px;}
.ws81{word-spacing:23.112000px;}
.ws80{word-spacing:84.672000px;}
.ws7f{word-spacing:94.770000px;}
.ws86{word-spacing:103.302000px;}
.ws84{word-spacing:104.328000px;}
.ws7b{word-spacing:107.082000px;}
.ws85{word-spacing:111.942000px;}
.ws83{word-spacing:112.374000px;}
.ws7e{word-spacing:181.818000px;}
.ws78{word-spacing:213.948000px;}
.ws79{word-spacing:222.372000px;}
.ws87{word-spacing:223.776000px;}
.ws7d{word-spacing:255.258000px;}
.ws7c{word-spacing:370.656000px;}
.ws73{word-spacing:1083.968400px;}
.ws49{word-spacing:1528.740000px;}
._b{margin-left:-258.606000px;}
._2c{margin-left:-10.357200px;}
._5{margin-left:-5.212800px;}
._9{margin-left:-3.746400px;}
._6{margin-left:-2.493600px;}
._4{margin-left:-1.260000px;}
._0{width:1.317600px;}
._3{width:2.376000px;}
._2{width:3.816000px;}
._1{width:5.616000px;}
._7{width:6.948000px;}
._8{width:8.147400px;}
._27{width:9.374400px;}
._29{width:10.692000px;}
._2b{width:11.772000px;}
._28{width:12.852000px;}
._2a{width:18.360000px;}
._1e{width:36.882000px;}
._24{width:44.280000px;}
._1d{width:53.352000px;}
._19{width:57.456000px;}
._1a{width:67.392000px;}
._1b{width:68.580000px;}
._23{width:69.768000px;}
._1c{width:72.684000px;}
._20{width:80.406000px;}
._21{width:90.018000px;}
._22{width:95.526000px;}
._1f{width:99.306000px;}
._15{width:122.796000px;}
._11{width:136.620000px;}
._17{width:147.096000px;}
._e{width:151.848000px;}
._25{width:158.338800px;}
._d{width:159.462000px;}
._12{width:192.726000px;}
._f{width:222.264000px;}
._26{width:231.422400px;}
._a{width:249.156000px;}
._18{width:254.599200px;}
._16{width:273.506400px;}
._13{width:369.867600px;}
._14{width:440.596800px;}
._10{width:454.917600px;}
._c{width:815.677200px;}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.400000px;}
.fs6{font-size:39.600000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:16.710000px;}
.y6f{bottom:22.500000px;}
.y72{bottom:25.532700px;}
.y6e{bottom:37.500000px;}
.y71{bottom:39.932700px;}
.y1f{bottom:41.910000px;}
.y29{bottom:47.669700px;}
.y6d{bottom:52.500000px;}
.y1e{bottom:62.880000px;}
.yfc{bottom:87.455850px;}
.y47{bottom:88.265550px;}
.yd6{bottom:90.513750px;}
.yb8{bottom:90.754350px;}
.yb0{bottom:95.802750px;}
.y21{bottom:98.250000px;}
.yfb{bottom:103.885350px;}
.yad{bottom:103.902750px;}
.y46{bottom:104.465550px;}
.yd5{bottom:108.513750px;}
.yaf{bottom:112.002750px;}
.yb7{bottom:114.082350px;}
.yac{bottom:120.102750px;}
.yfa{bottom:120.314850px;}
.yd4{bottom:126.513750px;}
.yae{bottom:128.202750px;}
.yb6{bottom:132.712350px;}
.yf9{bottom:136.744350px;}
.y45{bottom:136.865550px;}
.yd3{bottom:144.513750px;}
.yb5{bottom:151.342350px;}
.y44{bottom:153.065550px;}
.yf8{bottom:153.173850px;}
.yab{bottom:153.636750px;}
.ya8{bottom:161.736750px;}
.yd2{bottom:162.513750px;}
.y25{bottom:165.510000px;}
.yf7{bottom:169.603350px;}
.yaa{bottom:169.836750px;}
.yb4{bottom:169.972350px;}
.ya7{bottom:177.936750px;}
.yd1{bottom:180.513750px;}
.y1b{bottom:183.502590px;}
.y43{bottom:185.465550px;}
.yf6{bottom:186.032850px;}
.ya9{bottom:186.036750px;}
.y24{bottom:186.480000px;}
.yb3{bottom:188.602350px;}
.yd0{bottom:198.513750px;}
.y42{bottom:201.665550px;}
.yf5{bottom:202.462350px;}
.y1a{bottom:206.725290px;}
.y23{bottom:207.450000px;}
.y134{bottom:208.638750px;}
.ya6{bottom:211.470750px;}
.yb2{bottom:215.750850px;}
.ycf{bottom:216.513750px;}
.yf4{bottom:218.891850px;}
.ya3{bottom:219.570750px;}
.y133{bottom:224.838750px;}
.ya5{bottom:227.670750px;}
.y19{bottom:229.849170px;}
.yce{bottom:234.513750px;}
.yf3{bottom:235.321350px;}
.ya2{bottom:235.770750px;}
.y132{bottom:241.038750px;}
.ya4{bottom:243.870750px;}
.yb1{bottom:244.993050px;}
.yf2{bottom:251.750850px;}
.ycd{bottom:252.513750px;}
.y18{bottom:252.981180px;}
.y131{bottom:257.238750px;}
.yf1{bottom:268.180350px;}
.y9f{bottom:269.304750px;}
.ycc{bottom:270.513750px;}
.y6c{bottom:270.655650px;}
.y59{bottom:270.670650px;}
.y130{bottom:273.438750px;}
.y17{bottom:276.203880px;}
.ya1{bottom:277.404750px;}
.yc5{bottom:280.200300px;}
.yf0{bottom:284.609850px;}
.y9e{bottom:285.504750px;}
.ycb{bottom:288.513750px;}
.y6b{bottom:288.655650px;}
.y58{bottom:288.670650px;}
.y12f{bottom:289.638750px;}
.ya0{bottom:293.604750px;}
.yc4{bottom:296.400300px;}
.yef{bottom:301.039350px;}
.y9d{bottom:301.704750px;}
.y22{bottom:305.055000px;}
.y12e{bottom:305.838750px;}
.yca{bottom:306.513750px;}
.y6a{bottom:306.655650px;}
.y57{bottom:306.670650px;}
.yc3{bottom:315.030300px;}
.yee{bottom:317.468850px;}
.y12d{bottom:322.038750px;}
.yc9{bottom:324.513750px;}
.y69{bottom:324.655650px;}
.y56{bottom:324.670650px;}
.y9c{bottom:327.138750px;}
.yc2{bottom:331.230300px;}
.yed{bottom:333.898350px;}
.y12c{bottom:338.238750px;}
.yc8{bottom:342.513750px;}
.y68{bottom:342.655650px;}
.y55{bottom:342.670650px;}
.y16{bottom:344.356740px;}
.yc1{bottom:349.860300px;}
.yec{bottom:350.327850px;}
.y12b{bottom:354.438750px;}
.y9b{bottom:355.544250px;}
.yc7{bottom:360.513750px;}
.y67{bottom:360.655650px;}
.y54{bottom:360.670650px;}
.yc0{bottom:366.060300px;}
.yeb{bottom:366.757350px;}
.y12a{bottom:370.638750px;}
.yc6{bottom:378.513750px;}
.y66{bottom:378.655650px;}
.y53{bottom:378.670650px;}
.y15{bottom:382.517730px;}
.yea{bottom:383.105850px;}
.ybf{bottom:384.690300px;}
.y129{bottom:386.838750px;}
.y9a{bottom:396.513750px;}
.y65{bottom:396.655650px;}
.y52{bottom:396.670650px;}
.ye9{bottom:399.535350px;}
.ybe{bottom:400.890300px;}
.y128{bottom:403.038750px;}
.y99{bottom:414.513750px;}
.y64{bottom:414.655650px;}
.y51{bottom:414.670650px;}
.ye8{bottom:415.964850px;}
.y127{bottom:419.238750px;}
.ybd{bottom:419.520300px;}
.y14{bottom:420.678720px;}
.ye7{bottom:432.394350px;}
.y98{bottom:432.513750px;}
.y63{bottom:432.655650px;}
.y50{bottom:432.670650px;}
.y126{bottom:435.438750px;}
.ybc{bottom:446.668800px;}
.ye6{bottom:448.823850px;}
.y97{bottom:450.513750px;}
.y62{bottom:450.655650px;}
.y4f{bottom:450.670650px;}
.y125{bottom:451.638750px;}
.y13{bottom:458.839710px;}
.ybb{bottom:460.222800px;}
.ye5{bottom:465.253350px;}
.y124{bottom:467.838750px;}
.y96{bottom:468.513750px;}
.y61{bottom:468.655650px;}
.y4e{bottom:468.670650px;}
.ye4{bottom:481.682850px;}
.y123{bottom:484.038750px;}
.y95{bottom:486.513750px;}
.y60{bottom:486.655650px;}
.y4d{bottom:486.670650px;}
.y12{bottom:497.000700px;}
.ye3{bottom:498.112350px;}
.y122{bottom:500.238750px;}
.yba{bottom:503.044350px;}
.y94{bottom:504.513750px;}
.y5f{bottom:504.655650px;}
.y4c{bottom:504.670650px;}
.ye2{bottom:514.541850px;}
.y121{bottom:516.438750px;}
.yb9{bottom:519.244350px;}
.y93{bottom:522.513750px;}
.y5e{bottom:522.655650px;}
.y4b{bottom:522.670650px;}
.ye1{bottom:530.971350px;}
.y120{bottom:532.638750px;}
.y11{bottom:535.161690px;}
.y92{bottom:540.513750px;}
.y5d{bottom:540.655650px;}
.y4a{bottom:540.670650px;}
.ye0{bottom:547.400850px;}
.y11f{bottom:548.838750px;}
.y91{bottom:558.513750px;}
.y5c{bottom:558.655650px;}
.y49{bottom:558.670650px;}
.ydf{bottom:563.830350px;}
.y11e{bottom:565.038750px;}
.y10{bottom:573.322680px;}
.y90{bottom:576.513750px;}
.y5b{bottom:576.655650px;}
.yde{bottom:580.259850px;}
.y11d{bottom:581.238750px;}
.y8f{bottom:594.513750px;}
.y5a{bottom:594.655650px;}
.y48{bottom:594.670650px;}
.ydd{bottom:596.689350px;}
.y11c{bottom:597.438750px;}
.yf{bottom:611.483670px;}
.y8e{bottom:612.513750px;}
.ydc{bottom:613.118850px;}
.y11b{bottom:613.638750px;}
.ydb{bottom:629.548350px;}
.y11a{bottom:629.838750px;}
.y8d{bottom:630.513750px;}
.y26{bottom:635.130000px;}
.yda{bottom:645.977850px;}
.y119{bottom:646.038750px;}
.y3e{bottom:648.373800px;}
.y8c{bottom:648.513750px;}
.ye{bottom:649.644660px;}
.y118{bottom:662.238750px;}
.yd9{bottom:662.407350px;}
.y3d{bottom:664.573800px;}
.y8b{bottom:666.513750px;}
.y1d{bottom:667.530000px;}
.y117{bottom:678.438750px;}
.yd8{bottom:678.836850px;}
.y3c{bottom:680.773800px;}
.y8a{bottom:684.513750px;}
.yd{bottom:687.805650px;}
.y116{bottom:694.638750px;}
.y3b{bottom:696.973800px;}
.yd7{bottom:699.513750px;}
.y89{bottom:702.513750px;}
.y115{bottom:710.838750px;}
.y3a{bottom:713.173800px;}
.y88{bottom:720.513750px;}
.yc{bottom:725.966640px;}
.y114{bottom:727.038750px;}
.y39{bottom:729.373800px;}
.y87{bottom:738.513750px;}
.y113{bottom:743.238750px;}
.y38{bottom:745.573800px;}
.y20{bottom:749.250000px;}
.y86{bottom:756.513750px;}
.y112{bottom:759.438750px;}
.y37{bottom:761.773800px;}
.yb{bottom:764.127630px;}
.y85{bottom:774.513750px;}
.y111{bottom:775.638750px;}
.y36{bottom:777.973800px;}
.y110{bottom:791.838750px;}
.y84{bottom:792.513750px;}
.y35{bottom:794.173800px;}
.ya{bottom:802.288620px;}
.y10f{bottom:808.038750px;}
.y34{bottom:810.373800px;}
.y83{bottom:810.513750px;}
.y10e{bottom:824.238750px;}
.y33{bottom:826.573800px;}
.y82{bottom:828.513750px;}
.y10d{bottom:840.438750px;}
.y9{bottom:840.449610px;}
.y32{bottom:842.773800px;}
.y81{bottom:846.513750px;}
.y10c{bottom:856.638750px;}
.y31{bottom:858.973800px;}
.y80{bottom:864.513750px;}
.y10b{bottom:872.838750px;}
.y30{bottom:875.173800px;}
.y8{bottom:878.610600px;}
.y7f{bottom:882.513750px;}
.y10a{bottom:889.038750px;}
.y7{bottom:900.041520px;}
.y7e{bottom:900.513750px;}
.y109{bottom:905.238750px;}
.y2f{bottom:913.873800px;}
.y7d{bottom:918.513750px;}
.y108{bottom:921.438750px;}
.y6{bottom:925.687830px;}
.y2e{bottom:930.073800px;}
.y7c{bottom:936.513750px;}
.y107{bottom:937.638750px;}
.y2d{bottom:946.273800px;}
.y5{bottom:951.334140px;}
.y106{bottom:953.838750px;}
.y7b{bottom:954.513750px;}
.y2c{bottom:961.325850px;}
.y105{bottom:970.038750px;}
.y7a{bottom:972.513750px;}
.y4{bottom:976.980450px;}
.y104{bottom:986.238750px;}
.y40{bottom:990.288300px;}
.y79{bottom:990.513750px;}
.y103{bottom:1002.438750px;}
.y3f{bottom:1006.488300px;}
.y78{bottom:1008.513750px;}
.y102{bottom:1018.638750px;}
.y3{bottom:1019.370450px;}
.y77{bottom:1026.513750px;}
.y101{bottom:1034.838750px;}
.y76{bottom:1044.513750px;}
.y100{bottom:1051.038750px;}
.y2{bottom:1060.044600px;}
.y75{bottom:1062.513750px;}
.yff{bottom:1067.238750px;}
.y2b{bottom:1068.834900px;}
.y74{bottom:1080.513750px;}
.yfe{bottom:1083.438750px;}
.y1c{bottom:1086.240450px;}
.y1{bottom:1093.890450px;}
.y2a{bottom:1094.034900px;}
.y73{bottom:1098.513750px;}
.yfd{bottom:1099.638750px;}
.y70{bottom:1175.049150px;}
.y41{bottom:1175.064300px;}
.y28{bottom:1202.563050px;}
.he{height:29.613600px;}
.h8{height:32.625000px;}
.h15{height:34.945312px;}
.h16{height:35.040000px;}
.h11{height:39.420000px;}
.hb{height:43.020000px;}
.h12{height:44.940000px;}
.h13{height:44.940863px;}
.h1{height:45.035156px;}
.h3{height:45.807187px;}
.h17{height:49.302000px;}
.h10{height:49.356000px;}
.h1a{height:51.537600px;}
.hf{height:52.098000px;}
.h14{height:54.840000px;}
.h2{height:58.322812px;}
.hd{height:60.324000px;}
.hc{height:62.916000px;}
.h5{height:63.615234px;}
.ha{height:65.808000px;}
.h4{height:78.780000px;}
.h19{height:81.756000px;}
.h18{height:103.626000px;}
.h6{height:114.150000px;}
.h7{height:223.350000px;}
.h9{height:1262.835000px;}
.h0{height:1263.000000px;}
.w4{width:575.460000px;}
.w2{width:580.575000px;}
.w3{width:583.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w5{width:892.914000px;}
.w6{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.500000px;}
.x8{left:63.779550px;}
.x1a{left:68.022150px;}
.x15{left:69.094500px;}
.x9{left:85.039350px;}
.x20{left:89.291400px;}
.x3{left:106.380000px;}
.x1b{left:149.305650px;}
.x5{left:186.885000px;}
.x7{left:188.505000px;}
.x18{left:190.179900px;}
.x1d{left:200.263950px;}
.x2{left:204.216300px;}
.x16{left:264.682500px;}
.x14{left:287.813100px;}
.x11{left:342.966750px;}
.x19{left:355.477650px;}
.x1c{left:357.502650px;}
.x12{left:374.778750px;}
.x17{left:385.408650px;}
.xe{left:414.063150px;}
.xa{left:467.719350px;}
.x1e{left:475.582650px;}
.x4{left:485.820000px;}
.x13{left:488.954550px;}
.x1f{left:493.227150px;}
.xb{left:513.375000px;}
.xd{left:600.675000px;}
.xf{left:637.621650px;}
.xc{left:707.085000px;}
.x1{left:742.950000px;}
.x10{left:810.323850px;}
@media print{
.v3{vertical-align:-27.509333pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:19.488000pt;}
.v1{vertical-align:23.466667pt;}
.v5{vertical-align:28.800000pt;}
.v4{vertical-align:48.240000pt;}
.ls4a{letter-spacing:-6.384000pt;}
.ls14{letter-spacing:-4.869333pt;}
.ls53{letter-spacing:-4.464000pt;}
.ls3c{letter-spacing:-3.360000pt;}
.ls12{letter-spacing:-3.328000pt;}
.ls13{letter-spacing:-3.226667pt;}
.ls4b{letter-spacing:-3.216000pt;}
.ls56{letter-spacing:-3.168000pt;}
.ls40{letter-spacing:-3.024000pt;}
.ls57{letter-spacing:-2.736000pt;}
.ls50{letter-spacing:-2.688000pt;}
.ls52{letter-spacing:-2.544000pt;}
.ls47{letter-spacing:-2.448000pt;}
.ls4e{letter-spacing:-2.256000pt;}
.ls25{letter-spacing:-2.133333pt;}
.ls55{letter-spacing:-2.112000pt;}
.ls41{letter-spacing:-1.920000pt;}
.ls16{letter-spacing:-1.874667pt;}
.ls4c{letter-spacing:-1.632000pt;}
.ls1e{letter-spacing:-1.600000pt;}
.ls48{letter-spacing:-1.584000pt;}
.ls59{letter-spacing:-1.536000pt;}
.ls4f{letter-spacing:-1.488000pt;}
.ls43{letter-spacing:-1.440000pt;}
.ls54{letter-spacing:-1.344000pt;}
.ls28{letter-spacing:-1.333333pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls58{letter-spacing:-1.200000pt;}
.ls21{letter-spacing:-1.066667pt;}
.ls34{letter-spacing:-1.056000pt;}
.ls51{letter-spacing:-1.008000pt;}
.ls42{letter-spacing:-0.960000pt;}
.ls31{letter-spacing:-0.853333pt;}
.ls23{letter-spacing:-0.746667pt;}
.ls37{letter-spacing:-0.720000pt;}
.ls38{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls2b{letter-spacing:-0.240000pt;}
.ls24{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.117120pt;}
.ls45{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.040992pt;}
.lsb{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011712pt;}
.ls7{letter-spacing:0.017568pt;}
.ls0{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.029280pt;}
.ls5{letter-spacing:0.035136pt;}
.ls1{letter-spacing:0.037280pt;}
.ls6{letter-spacing:0.040992pt;}
.lsf{letter-spacing:0.052704pt;}
.ls3e{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.096000pt;}
.ls39{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.199104pt;}
.ls29{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls33{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls20{letter-spacing:0.533333pt;}
.ls32{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:1.008000pt;}
.ls19{letter-spacing:1.056000pt;}
.ls3d{letter-spacing:1.066667pt;}
.ls49{letter-spacing:1.094400pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls4d{letter-spacing:1.152000pt;}
.ls36{letter-spacing:1.248000pt;}
.ls10{letter-spacing:1.273067pt;}
.ls2f{letter-spacing:1.296000pt;}
.ls15{letter-spacing:1.349333pt;}
.ls46{letter-spacing:1.872000pt;}
.ls11{letter-spacing:3.015467pt;}
.lse{letter-spacing:138.119616pt;}
.ls2d{letter-spacing:229.872000pt;}
.ws7a{word-spacing:-243.408000pt;}
.ws17{word-spacing:-16.906667pt;}
.ws75{word-spacing:-16.160000pt;}
.ws77{word-spacing:-16.053333pt;}
.wsb9{word-spacing:-15.840000pt;}
.ws9e{word-spacing:-15.466667pt;}
.wsdf{word-spacing:-15.408000pt;}
.ws76{word-spacing:-15.360000pt;}
.ws15{word-spacing:-15.264000pt;}
.ws47{word-spacing:-15.040000pt;}
.ws46{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.160000pt;}
.ws16{word-spacing:-13.920000pt;}
.ws48{word-spacing:-13.706667pt;}
.wsba{word-spacing:-13.632000pt;}
.ws14{word-spacing:-13.536000pt;}
.ws82{word-spacing:-13.296000pt;}
.ws2{word-spacing:-13.263840pt;}
.wsbb{word-spacing:-13.248000pt;}
.ws0{word-spacing:-13.222848pt;}
.ws1{word-spacing:-13.205280pt;}
.wse0{word-spacing:-13.152000pt;}
.ws12{word-spacing:-12.413333pt;}
.ws74{word-spacing:-12.288000pt;}
.wse1{word-spacing:-11.904000pt;}
.wsbc{word-spacing:-9.216000pt;}
.ws11{word-spacing:-8.121600pt;}
.ws41{word-spacing:-4.000000pt;}
.wse6{word-spacing:-3.984000pt;}
.ws59{word-spacing:-3.786667pt;}
.wsb0{word-spacing:-3.733333pt;}
.wsce{word-spacing:-3.648000pt;}
.wsa2{word-spacing:-3.573333pt;}
.wsab{word-spacing:-3.520000pt;}
.wsb7{word-spacing:-3.466667pt;}
.ws88{word-spacing:-3.306667pt;}
.ws4b{word-spacing:-3.253333pt;}
.wsa5{word-spacing:-3.200000pt;}
.ws64{word-spacing:-3.093333pt;}
.wsd6{word-spacing:-2.976000pt;}
.ws3e{word-spacing:-2.933333pt;}
.ws4e{word-spacing:-2.880000pt;}
.wsae{word-spacing:-2.826667pt;}
.ws62{word-spacing:-2.773333pt;}
.ws3c{word-spacing:-2.720000pt;}
.ws34{word-spacing:-2.666667pt;}
.wscb{word-spacing:-2.640000pt;}
.ws2e{word-spacing:-2.613333pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws53{word-spacing:-2.506667pt;}
.wsdd{word-spacing:-2.496000pt;}
.wsa8{word-spacing:-2.453333pt;}
.wsd0{word-spacing:-2.448000pt;}
.wsac{word-spacing:-2.400000pt;}
.wsf8{word-spacing:-2.352000pt;}
.ws6a{word-spacing:-2.346667pt;}
.wsff{word-spacing:-2.304000pt;}
.ws8f{word-spacing:-2.293333pt;}
.ws1e{word-spacing:-2.208000pt;}
.ws3b{word-spacing:-2.186667pt;}
.wsf9{word-spacing:-2.160000pt;}
.wsbd{word-spacing:-2.133333pt;}
.wsf4{word-spacing:-2.112000pt;}
.ws29{word-spacing:-2.080000pt;}
.wsf5{word-spacing:-2.064000pt;}
.ws2b{word-spacing:-2.026667pt;}
.ws96{word-spacing:-1.973333pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws21{word-spacing:-1.872000pt;}
.ws38{word-spacing:-1.866667pt;}
.wsd9{word-spacing:-1.824000pt;}
.ws9f{word-spacing:-1.813333pt;}
.wsc3{word-spacing:-1.760000pt;}
.ws37{word-spacing:-1.706667pt;}
.ws33{word-spacing:-1.653333pt;}
.wsfb{word-spacing:-1.632000pt;}
.ws66{word-spacing:-1.600000pt;}
.ws1f{word-spacing:-1.584000pt;}
.ws90{word-spacing:-1.546667pt;}
.wsde{word-spacing:-1.536000pt;}
.ws44{word-spacing:-1.493333pt;}
.ws32{word-spacing:-1.440000pt;}
.wse2{word-spacing:-1.392000pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws1b{word-spacing:-1.349333pt;}
.wsc7{word-spacing:-1.344000pt;}
.ws54{word-spacing:-1.333333pt;}
.ws27{word-spacing:-1.296000pt;}
.ws5d{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.226667pt;}
.ws39{word-spacing:-1.173333pt;}
.wscd{word-spacing:-1.152000pt;}
.ws68{word-spacing:-1.120000pt;}
.ws4f{word-spacing:-1.066667pt;}
.ws8e{word-spacing:-1.013333pt;}
.wsb4{word-spacing:-0.960000pt;}
.wse8{word-spacing:-0.912000pt;}
.ws5e{word-spacing:-0.906667pt;}
.ws4c{word-spacing:-0.853333pt;}
.wsf7{word-spacing:-0.816000pt;}
.ws28{word-spacing:-0.800000pt;}
.wsd8{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.746667pt;}
.ws9d{word-spacing:-0.720000pt;}
.ws99{word-spacing:-0.693333pt;}
.wsc6{word-spacing:-0.672000pt;}
.ws6b{word-spacing:-0.640000pt;}
.ws60{word-spacing:-0.586667pt;}
.ws52{word-spacing:-0.533333pt;}
.ws71{word-spacing:-0.528000pt;}
.ws6c{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.426667pt;}
.ws104{word-spacing:-0.384000pt;}
.ws98{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.288000pt;}
.ws92{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.240000pt;}
.ws67{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.169824pt;}
.ws2a{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.158112pt;}
.wsf{word-spacing:-0.134688pt;}
.wsd2{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.076128pt;}
.ws97{word-spacing:-0.053333pt;}
.wsd4{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:0.048000pt;}
.ws63{word-spacing:0.053333pt;}
.ws6{word-spacing:0.067104pt;}
.ws5{word-spacing:0.082016pt;}
.wsca{word-spacing:0.096000pt;}
.wsb6{word-spacing:0.106667pt;}
.wsef{word-spacing:0.144000pt;}
.ws6f{word-spacing:0.160000pt;}
.ws4{word-spacing:0.208768pt;}
.wsb2{word-spacing:0.213333pt;}
.ws72{word-spacing:0.240000pt;}
.ws61{word-spacing:0.266667pt;}
.wsdc{word-spacing:0.288000pt;}
.ws40{word-spacing:0.320000pt;}
.wsea{word-spacing:0.336000pt;}
.ws9a{word-spacing:0.373333pt;}
.ws26{word-spacing:0.384000pt;}
.wsa7{word-spacing:0.426667pt;}
.wsda{word-spacing:0.432000pt;}
.ws1d{word-spacing:0.480000pt;}
.ws57{word-spacing:0.533333pt;}
.wsd3{word-spacing:0.576000pt;}
.ws3a{word-spacing:0.586667pt;}
.wsad{word-spacing:0.640000pt;}
.ws8b{word-spacing:0.693333pt;}
.ws30{word-spacing:0.746667pt;}
.wsb1{word-spacing:0.800000pt;}
.wsc5{word-spacing:0.816000pt;}
.ws50{word-spacing:0.853333pt;}
.ws1c{word-spacing:0.864000pt;}
.ws9b{word-spacing:0.960000pt;}
.wsf3{word-spacing:1.008000pt;}
.ws9c{word-spacing:1.056000pt;}
.wsbf{word-spacing:1.066667pt;}
.ws70{word-spacing:1.120000pt;}
.ws5c{word-spacing:1.226667pt;}
.wsa1{word-spacing:1.280000pt;}
.ws51{word-spacing:1.333333pt;}
.wsa0{word-spacing:1.386667pt;}
.wsc2{word-spacing:1.440000pt;}
.wsed{word-spacing:1.488000pt;}
.ws89{word-spacing:1.493333pt;}
.ws102{word-spacing:1.536000pt;}
.wsd1{word-spacing:1.584000pt;}
.ws91{word-spacing:1.600000pt;}
.wsc8{word-spacing:1.632000pt;}
.ws8c{word-spacing:1.706667pt;}
.ws5a{word-spacing:1.760000pt;}
.wsa3{word-spacing:1.813333pt;}
.wsb5{word-spacing:1.866667pt;}
.wsb8{word-spacing:1.973333pt;}
.wsfc{word-spacing:2.112000pt;}
.wsbe{word-spacing:2.133333pt;}
.ws31{word-spacing:2.186667pt;}
.wscc{word-spacing:2.208000pt;}
.wse4{word-spacing:2.256000pt;}
.ws5b{word-spacing:2.293333pt;}
.ws93{word-spacing:2.400000pt;}
.ws35{word-spacing:2.506667pt;}
.wsf6{word-spacing:2.544000pt;}
.wsee{word-spacing:2.592000pt;}
.wsf2{word-spacing:2.688000pt;}
.wsfd{word-spacing:2.736000pt;}
.wsa4{word-spacing:2.773333pt;}
.ws6e{word-spacing:2.826667pt;}
.wsaf{word-spacing:2.933333pt;}
.wsc4{word-spacing:3.024000pt;}
.ws56{word-spacing:3.093333pt;}
.wsdb{word-spacing:3.216000pt;}
.ws19{word-spacing:3.226667pt;}
.ws18{word-spacing:3.328000pt;}
.wsa6{word-spacing:3.360000pt;}
.ws95{word-spacing:3.466667pt;}
.wse5{word-spacing:3.504000pt;}
.wsaa{word-spacing:3.573333pt;}
.wsec{word-spacing:3.648000pt;}
.wsc0{word-spacing:3.733333pt;}
.wseb{word-spacing:3.744000pt;}
.ws65{word-spacing:3.786667pt;}
.wsd5{word-spacing:3.792000pt;}
.ws23{word-spacing:3.840000pt;}
.ws8d{word-spacing:3.946667pt;}
.wsb3{word-spacing:4.000000pt;}
.ws55{word-spacing:4.053333pt;}
.wscf{word-spacing:4.128000pt;}
.ws36{word-spacing:4.213333pt;}
.ws100{word-spacing:4.224000pt;}
.wsfa{word-spacing:4.464000pt;}
.ws43{word-spacing:4.586667pt;}
.ws103{word-spacing:4.608000pt;}
.wsa9{word-spacing:4.640000pt;}
.ws69{word-spacing:4.693333pt;}
.ws1a{word-spacing:4.869333pt;}
.ws42{word-spacing:4.960000pt;}
.wsf1{word-spacing:5.328000pt;}
.ws6d{word-spacing:5.333333pt;}
.ws45{word-spacing:5.866667pt;}
.wsc1{word-spacing:6.186667pt;}
.ws4d{word-spacing:6.240000pt;}
.wsd7{word-spacing:6.384000pt;}
.wse9{word-spacing:6.528000pt;}
.wsf0{word-spacing:6.768000pt;}
.wsb{word-spacing:7.208736pt;}
.ws94{word-spacing:7.733333pt;}
.wse3{word-spacing:7.824000pt;}
.ws9{word-spacing:7.852896pt;}
.wsa{word-spacing:7.858752pt;}
.wsfe{word-spacing:8.304000pt;}
.ws58{word-spacing:8.693333pt;}
.ws101{word-spacing:8.832000pt;}
.wse7{word-spacing:9.312000pt;}
.wsc{word-spacing:9.445728pt;}
.ws8{word-spacing:9.469152pt;}
.wsd{word-spacing:9.480864pt;}
.ws2c{word-spacing:10.666667pt;}
.wsc9{word-spacing:10.752000pt;}
.ws81{word-spacing:20.544000pt;}
.ws80{word-spacing:75.264000pt;}
.ws7f{word-spacing:84.240000pt;}
.ws86{word-spacing:91.824000pt;}
.ws84{word-spacing:92.736000pt;}
.ws7b{word-spacing:95.184000pt;}
.ws85{word-spacing:99.504000pt;}
.ws83{word-spacing:99.888000pt;}
.ws7e{word-spacing:161.616000pt;}
.ws78{word-spacing:190.176000pt;}
.ws79{word-spacing:197.664000pt;}
.ws87{word-spacing:198.912000pt;}
.ws7d{word-spacing:226.896000pt;}
.ws7c{word-spacing:329.472000pt;}
.ws73{word-spacing:963.527467pt;}
.ws49{word-spacing:1358.880000pt;}
._b{margin-left:-229.872000pt;}
._2c{margin-left:-9.206400pt;}
._5{margin-left:-4.633600pt;}
._9{margin-left:-3.330133pt;}
._6{margin-left:-2.216533pt;}
._4{margin-left:-1.120000pt;}
._0{width:1.171200pt;}
._3{width:2.112000pt;}
._2{width:3.392000pt;}
._1{width:4.992000pt;}
._7{width:6.176000pt;}
._8{width:7.242133pt;}
._27{width:8.332800pt;}
._29{width:9.504000pt;}
._2b{width:10.464000pt;}
._28{width:11.424000pt;}
._2a{width:16.320000pt;}
._1e{width:32.784000pt;}
._24{width:39.360000pt;}
._1d{width:47.424000pt;}
._19{width:51.072000pt;}
._1a{width:59.904000pt;}
._1b{width:60.960000pt;}
._23{width:62.016000pt;}
._1c{width:64.608000pt;}
._20{width:71.472000pt;}
._21{width:80.016000pt;}
._22{width:84.912000pt;}
._1f{width:88.272000pt;}
._15{width:109.152000pt;}
._11{width:121.440000pt;}
._17{width:130.752000pt;}
._e{width:134.976000pt;}
._25{width:140.745600pt;}
._d{width:141.744000pt;}
._12{width:171.312000pt;}
._f{width:197.568000pt;}
._26{width:205.708800pt;}
._a{width:221.472000pt;}
._18{width:226.310400pt;}
._16{width:243.116800pt;}
._13{width:328.771200pt;}
._14{width:391.641600pt;}
._10{width:404.371200pt;}
._c{width:725.046400pt;}
.fs7{font-size:28.800000pt;}
.fs6{font-size:35.200000pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:14.853333pt;}
.y6f{bottom:20.000000pt;}
.y72{bottom:22.695733pt;}
.y6e{bottom:33.333333pt;}
.y71{bottom:35.495733pt;}
.y1f{bottom:37.253333pt;}
.y29{bottom:42.373067pt;}
.y6d{bottom:46.666667pt;}
.y1e{bottom:55.893333pt;}
.yfc{bottom:77.738533pt;}
.y47{bottom:78.458267pt;}
.yd6{bottom:80.456667pt;}
.yb8{bottom:80.670533pt;}
.yb0{bottom:85.158000pt;}
.y21{bottom:87.333333pt;}
.yfb{bottom:92.342533pt;}
.yad{bottom:92.358000pt;}
.y46{bottom:92.858267pt;}
.yd5{bottom:96.456667pt;}
.yaf{bottom:99.558000pt;}
.yb7{bottom:101.406533pt;}
.yac{bottom:106.758000pt;}
.yfa{bottom:106.946533pt;}
.yd4{bottom:112.456667pt;}
.yae{bottom:113.958000pt;}
.yb6{bottom:117.966533pt;}
.yf9{bottom:121.550533pt;}
.y45{bottom:121.658267pt;}
.yd3{bottom:128.456667pt;}
.yb5{bottom:134.526533pt;}
.y44{bottom:136.058267pt;}
.yf8{bottom:136.154533pt;}
.yab{bottom:136.566000pt;}
.ya8{bottom:143.766000pt;}
.yd2{bottom:144.456667pt;}
.y25{bottom:147.120000pt;}
.yf7{bottom:150.758533pt;}
.yaa{bottom:150.966000pt;}
.yb4{bottom:151.086533pt;}
.ya7{bottom:158.166000pt;}
.yd1{bottom:160.456667pt;}
.y1b{bottom:163.113413pt;}
.y43{bottom:164.858267pt;}
.yf6{bottom:165.362533pt;}
.ya9{bottom:165.366000pt;}
.y24{bottom:165.760000pt;}
.yb3{bottom:167.646533pt;}
.yd0{bottom:176.456667pt;}
.y42{bottom:179.258267pt;}
.yf5{bottom:179.966533pt;}
.y1a{bottom:183.755813pt;}
.y23{bottom:184.400000pt;}
.y134{bottom:185.456667pt;}
.ya6{bottom:187.974000pt;}
.yb2{bottom:191.778533pt;}
.ycf{bottom:192.456667pt;}
.yf4{bottom:194.570533pt;}
.ya3{bottom:195.174000pt;}
.y133{bottom:199.856667pt;}
.ya5{bottom:202.374000pt;}
.y19{bottom:204.310373pt;}
.yce{bottom:208.456667pt;}
.yf3{bottom:209.174533pt;}
.ya2{bottom:209.574000pt;}
.y132{bottom:214.256667pt;}
.ya4{bottom:216.774000pt;}
.yb1{bottom:217.771600pt;}
.yf2{bottom:223.778533pt;}
.ycd{bottom:224.456667pt;}
.y18{bottom:224.872160pt;}
.y131{bottom:228.656667pt;}
.yf1{bottom:238.382533pt;}
.y9f{bottom:239.382000pt;}
.ycc{bottom:240.456667pt;}
.y6c{bottom:240.582800pt;}
.y59{bottom:240.596133pt;}
.y130{bottom:243.056667pt;}
.y17{bottom:245.514560pt;}
.ya1{bottom:246.582000pt;}
.yc5{bottom:249.066933pt;}
.yf0{bottom:252.986533pt;}
.y9e{bottom:253.782000pt;}
.ycb{bottom:256.456667pt;}
.y6b{bottom:256.582800pt;}
.y58{bottom:256.596133pt;}
.y12f{bottom:257.456667pt;}
.ya0{bottom:260.982000pt;}
.yc4{bottom:263.466933pt;}
.yef{bottom:267.590533pt;}
.y9d{bottom:268.182000pt;}
.y22{bottom:271.160000pt;}
.y12e{bottom:271.856667pt;}
.yca{bottom:272.456667pt;}
.y6a{bottom:272.582800pt;}
.y57{bottom:272.596133pt;}
.yc3{bottom:280.026933pt;}
.yee{bottom:282.194533pt;}
.y12d{bottom:286.256667pt;}
.yc9{bottom:288.456667pt;}
.y69{bottom:288.582800pt;}
.y56{bottom:288.596133pt;}
.y9c{bottom:290.790000pt;}
.yc2{bottom:294.426933pt;}
.yed{bottom:296.798533pt;}
.y12c{bottom:300.656667pt;}
.yc8{bottom:304.456667pt;}
.y68{bottom:304.582800pt;}
.y55{bottom:304.596133pt;}
.y16{bottom:306.094880pt;}
.yc1{bottom:310.986933pt;}
.yec{bottom:311.402533pt;}
.y12b{bottom:315.056667pt;}
.y9b{bottom:316.039333pt;}
.yc7{bottom:320.456667pt;}
.y67{bottom:320.582800pt;}
.y54{bottom:320.596133pt;}
.yc0{bottom:325.386933pt;}
.yeb{bottom:326.006533pt;}
.y12a{bottom:329.456667pt;}
.yc6{bottom:336.456667pt;}
.y66{bottom:336.582800pt;}
.y53{bottom:336.596133pt;}
.y15{bottom:340.015760pt;}
.yea{bottom:340.538533pt;}
.ybf{bottom:341.946933pt;}
.y129{bottom:343.856667pt;}
.y9a{bottom:352.456667pt;}
.y65{bottom:352.582800pt;}
.y52{bottom:352.596133pt;}
.ye9{bottom:355.142533pt;}
.ybe{bottom:356.346933pt;}
.y128{bottom:358.256667pt;}
.y99{bottom:368.456667pt;}
.y64{bottom:368.582800pt;}
.y51{bottom:368.596133pt;}
.ye8{bottom:369.746533pt;}
.y127{bottom:372.656667pt;}
.ybd{bottom:372.906933pt;}
.y14{bottom:373.936640pt;}
.ye7{bottom:384.350533pt;}
.y98{bottom:384.456667pt;}
.y63{bottom:384.582800pt;}
.y50{bottom:384.596133pt;}
.y126{bottom:387.056667pt;}
.ybc{bottom:397.038933pt;}
.ye6{bottom:398.954533pt;}
.y97{bottom:400.456667pt;}
.y62{bottom:400.582800pt;}
.y4f{bottom:400.596133pt;}
.y125{bottom:401.456667pt;}
.y13{bottom:407.857520pt;}
.ybb{bottom:409.086933pt;}
.ye5{bottom:413.558533pt;}
.y124{bottom:415.856667pt;}
.y96{bottom:416.456667pt;}
.y61{bottom:416.582800pt;}
.y4e{bottom:416.596133pt;}
.ye4{bottom:428.162533pt;}
.y123{bottom:430.256667pt;}
.y95{bottom:432.456667pt;}
.y60{bottom:432.582800pt;}
.y4d{bottom:432.596133pt;}
.y12{bottom:441.778400pt;}
.ye3{bottom:442.766533pt;}
.y122{bottom:444.656667pt;}
.yba{bottom:447.150533pt;}
.y94{bottom:448.456667pt;}
.y5f{bottom:448.582800pt;}
.y4c{bottom:448.596133pt;}
.ye2{bottom:457.370533pt;}
.y121{bottom:459.056667pt;}
.yb9{bottom:461.550533pt;}
.y93{bottom:464.456667pt;}
.y5e{bottom:464.582800pt;}
.y4b{bottom:464.596133pt;}
.ye1{bottom:471.974533pt;}
.y120{bottom:473.456667pt;}
.y11{bottom:475.699280pt;}
.y92{bottom:480.456667pt;}
.y5d{bottom:480.582800pt;}
.y4a{bottom:480.596133pt;}
.ye0{bottom:486.578533pt;}
.y11f{bottom:487.856667pt;}
.y91{bottom:496.456667pt;}
.y5c{bottom:496.582800pt;}
.y49{bottom:496.596133pt;}
.ydf{bottom:501.182533pt;}
.y11e{bottom:502.256667pt;}
.y10{bottom:509.620160pt;}
.y90{bottom:512.456667pt;}
.y5b{bottom:512.582800pt;}
.yde{bottom:515.786533pt;}
.y11d{bottom:516.656667pt;}
.y8f{bottom:528.456667pt;}
.y5a{bottom:528.582800pt;}
.y48{bottom:528.596133pt;}
.ydd{bottom:530.390533pt;}
.y11c{bottom:531.056667pt;}
.yf{bottom:543.541040pt;}
.y8e{bottom:544.456667pt;}
.ydc{bottom:544.994533pt;}
.y11b{bottom:545.456667pt;}
.ydb{bottom:559.598533pt;}
.y11a{bottom:559.856667pt;}
.y8d{bottom:560.456667pt;}
.y26{bottom:564.560000pt;}
.yda{bottom:574.202533pt;}
.y119{bottom:574.256667pt;}
.y3e{bottom:576.332267pt;}
.y8c{bottom:576.456667pt;}
.ye{bottom:577.461920pt;}
.y118{bottom:588.656667pt;}
.yd9{bottom:588.806533pt;}
.y3d{bottom:590.732267pt;}
.y8b{bottom:592.456667pt;}
.y1d{bottom:593.360000pt;}
.y117{bottom:603.056667pt;}
.yd8{bottom:603.410533pt;}
.y3c{bottom:605.132267pt;}
.y8a{bottom:608.456667pt;}
.yd{bottom:611.382800pt;}
.y116{bottom:617.456667pt;}
.y3b{bottom:619.532267pt;}
.yd7{bottom:621.790000pt;}
.y89{bottom:624.456667pt;}
.y115{bottom:631.856667pt;}
.y3a{bottom:633.932267pt;}
.y88{bottom:640.456667pt;}
.yc{bottom:645.303680pt;}
.y114{bottom:646.256667pt;}
.y39{bottom:648.332267pt;}
.y87{bottom:656.456667pt;}
.y113{bottom:660.656667pt;}
.y38{bottom:662.732267pt;}
.y20{bottom:666.000000pt;}
.y86{bottom:672.456667pt;}
.y112{bottom:675.056667pt;}
.y37{bottom:677.132267pt;}
.yb{bottom:679.224560pt;}
.y85{bottom:688.456667pt;}
.y111{bottom:689.456667pt;}
.y36{bottom:691.532267pt;}
.y110{bottom:703.856667pt;}
.y84{bottom:704.456667pt;}
.y35{bottom:705.932267pt;}
.ya{bottom:713.145440pt;}
.y10f{bottom:718.256667pt;}
.y34{bottom:720.332267pt;}
.y83{bottom:720.456667pt;}
.y10e{bottom:732.656667pt;}
.y33{bottom:734.732267pt;}
.y82{bottom:736.456667pt;}
.y10d{bottom:747.056667pt;}
.y9{bottom:747.066320pt;}
.y32{bottom:749.132267pt;}
.y81{bottom:752.456667pt;}
.y10c{bottom:761.456667pt;}
.y31{bottom:763.532267pt;}
.y80{bottom:768.456667pt;}
.y10b{bottom:775.856667pt;}
.y30{bottom:777.932267pt;}
.y8{bottom:780.987200pt;}
.y7f{bottom:784.456667pt;}
.y10a{bottom:790.256667pt;}
.y7{bottom:800.036907pt;}
.y7e{bottom:800.456667pt;}
.y109{bottom:804.656667pt;}
.y2f{bottom:812.332267pt;}
.y7d{bottom:816.456667pt;}
.y108{bottom:819.056667pt;}
.y6{bottom:822.833627pt;}
.y2e{bottom:826.732267pt;}
.y7c{bottom:832.456667pt;}
.y107{bottom:833.456667pt;}
.y2d{bottom:841.132267pt;}
.y5{bottom:845.630347pt;}
.y106{bottom:847.856667pt;}
.y7b{bottom:848.456667pt;}
.y2c{bottom:854.511867pt;}
.y105{bottom:862.256667pt;}
.y7a{bottom:864.456667pt;}
.y4{bottom:868.427067pt;}
.y104{bottom:876.656667pt;}
.y40{bottom:880.256267pt;}
.y79{bottom:880.456667pt;}
.y103{bottom:891.056667pt;}
.y3f{bottom:894.656267pt;}
.y78{bottom:896.456667pt;}
.y102{bottom:905.456667pt;}
.y3{bottom:906.107067pt;}
.y77{bottom:912.456667pt;}
.y101{bottom:919.856667pt;}
.y76{bottom:928.456667pt;}
.y100{bottom:934.256667pt;}
.y2{bottom:942.261867pt;}
.y75{bottom:944.456667pt;}
.yff{bottom:948.656667pt;}
.y2b{bottom:950.075467pt;}
.y74{bottom:960.456667pt;}
.yfe{bottom:963.056667pt;}
.y1c{bottom:965.547067pt;}
.y1{bottom:972.347067pt;}
.y2a{bottom:972.475467pt;}
.y73{bottom:976.456667pt;}
.yfd{bottom:977.456667pt;}
.y70{bottom:1044.488133pt;}
.y41{bottom:1044.501600pt;}
.y28{bottom:1068.944933pt;}
.he{height:26.323200pt;}
.h8{height:29.000000pt;}
.h15{height:31.062500pt;}
.h16{height:31.146667pt;}
.h11{height:35.040000pt;}
.hb{height:38.240000pt;}
.h12{height:39.946667pt;}
.h13{height:39.947434pt;}
.h1{height:40.031250pt;}
.h3{height:40.717500pt;}
.h17{height:43.824000pt;}
.h10{height:43.872000pt;}
.h1a{height:45.811200pt;}
.hf{height:46.309333pt;}
.h14{height:48.746667pt;}
.h2{height:51.842500pt;}
.hd{height:53.621333pt;}
.hc{height:55.925333pt;}
.h5{height:56.546875pt;}
.ha{height:58.496000pt;}
.h4{height:70.026667pt;}
.h19{height:72.672000pt;}
.h18{height:92.112000pt;}
.h6{height:101.466667pt;}
.h7{height:198.533333pt;}
.h9{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w4{width:511.520000pt;}
.w2{width:516.066667pt;}
.w3{width:518.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w5{width:793.701333pt;}
.w6{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.333333pt;}
.x8{left:56.692933pt;}
.x1a{left:60.464133pt;}
.x15{left:61.417333pt;}
.x9{left:75.590533pt;}
.x20{left:79.370133pt;}
.x3{left:94.560000pt;}
.x1b{left:132.716133pt;}
.x5{left:166.120000pt;}
.x7{left:167.560000pt;}
.x18{left:169.048800pt;}
.x1d{left:178.012400pt;}
.x2{left:181.525600pt;}
.x16{left:235.273333pt;}
.x14{left:255.833867pt;}
.x11{left:304.859333pt;}
.x19{left:315.980133pt;}
.x1c{left:317.780133pt;}
.x12{left:333.136667pt;}
.x17{left:342.585467pt;}
.xe{left:368.056133pt;}
.xa{left:415.750533pt;}
.x1e{left:422.740133pt;}
.x4{left:431.840000pt;}
.x13{left:434.626267pt;}
.x1f{left:438.424133pt;}
.xb{left:456.333333pt;}
.xd{left:533.933333pt;}
.xf{left:566.774800pt;}
.xc{left:628.520000pt;}
.x1{left:660.400000pt;}
.x10{left:720.287867pt;}
}




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