
    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_03dd8f27224b82e19172044c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_3738a90ee3b914c8f2a91679.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_f8774469dfe31ba07db5da09.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_338a088cdd31616eab16c6fd.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_22f2e55a684f885590349432.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715820;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_68165621b2c62a1663a9f5c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4cd07bd96983e0d59179ed4b.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_a14817be7fb972c7ebcb6008.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3024a7ad60c3bf7438b6875b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.810000;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_36329110b3806de8800e2fe3.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a5b0fe3ff0b22b304c6936c5.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,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);}
.m2{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:-15.442200px;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls13{letter-spacing:-0.780000px;}
.ls37{letter-spacing:-0.360000px;}
.ls40{letter-spacing:-0.300000px;}
.ls4b{letter-spacing:-0.288000px;}
.ls49{letter-spacing:-0.192000px;}
.ls14{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.120000px;}
.ls38{letter-spacing:-0.060000px;}
.ls69{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls58{letter-spacing:0.048000px;}
.ls10{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.069600px;}
.ls57{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.120000px;}
.ls5b{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls51{letter-spacing:0.192000px;}
.ls2e{letter-spacing:0.240000px;}
.ls5c{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.300000px;}
.ls5f{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.420000px;}
.ls59{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls3a{letter-spacing:0.528000px;}
.ls3d{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.576000px;}
.ls33{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.660000px;}
.ls3f{letter-spacing:0.672000px;}
.lsb{letter-spacing:0.720000px;}
.ls67{letter-spacing:0.768000px;}
.ls25{letter-spacing:0.780000px;}
.ls64{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls6{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.960000px;}
.ls6c{letter-spacing:1.008000px;}
.ls11{letter-spacing:1.020000px;}
.ls52{letter-spacing:1.056000px;}
.ls2f{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.104000px;}
.ls3{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls55{letter-spacing:1.248000px;}
.ls32{letter-spacing:1.260000px;}
.ls63{letter-spacing:1.296000px;}
.ls24{letter-spacing:1.320000px;}
.ls54{letter-spacing:1.344000px;}
.ls34{letter-spacing:1.380000px;}
.ls1d{letter-spacing:1.440000px;}
.ls3b{letter-spacing:1.500000px;}
.ls62{letter-spacing:1.536000px;}
.ls17{letter-spacing:1.560000px;}
.ls18{letter-spacing:1.620000px;}
.ls5e{letter-spacing:1.632000px;}
.lsa{letter-spacing:1.680000px;}
.ls6a{letter-spacing:1.728000px;}
.ls23{letter-spacing:1.740000px;}
.ls1e{letter-spacing:1.800000px;}
.ls26{letter-spacing:1.860000px;}
.ls2a{letter-spacing:1.920000px;}
.ls6e{letter-spacing:1.968000px;}
.ls1f{letter-spacing:1.980000px;}
.ls44{letter-spacing:2.040000px;}
.ls53{letter-spacing:2.064000px;}
.ls48{letter-spacing:2.100000px;}
.ls5d{letter-spacing:2.112000px;}
.ls1b{letter-spacing:2.160000px;}
.ls66{letter-spacing:2.208000px;}
.ls35{letter-spacing:2.220000px;}
.ls45{letter-spacing:2.280000px;}
.ls2c{letter-spacing:2.340000px;}
.ls43{letter-spacing:2.400000px;}
.ls60{letter-spacing:2.448000px;}
.ls2d{letter-spacing:2.460000px;}
.ls15{letter-spacing:2.520000px;}
.lsd{letter-spacing:2.580000px;}
.ls21{letter-spacing:2.640000px;}
.ls42{letter-spacing:2.700000px;}
.ls6b{letter-spacing:2.736000px;}
.ls4f{letter-spacing:2.760000px;}
.ls5a{letter-spacing:2.784000px;}
.lse{letter-spacing:2.820000px;}
.ls27{letter-spacing:2.940000px;}
.ls20{letter-spacing:3.000000px;}
.ls47{letter-spacing:3.300000px;}
.ls61{letter-spacing:3.312000px;}
.ls1c{letter-spacing:3.480000px;}
.ls29{letter-spacing:3.540000px;}
.ls4e{letter-spacing:3.600000px;}
.ls28{letter-spacing:3.660000px;}
.ls6d{letter-spacing:3.696000px;}
.ls30{letter-spacing:3.720000px;}
.ls1a{letter-spacing:3.780000px;}
.ls9{letter-spacing:3.960000px;}
.ls4c{letter-spacing:4.020000px;}
.ls46{letter-spacing:4.200000px;}
.ls31{letter-spacing:4.620000px;}
.ls4d{letter-spacing:5.160000px;}
.ls56{letter-spacing:5.184000px;}
.ls4a{letter-spacing:5.400000px;}
.ls68{letter-spacing:5.640000px;}
.ls3c{letter-spacing:6.000000px;}
.ls3e{letter-spacing:7.080000px;}
.ls50{letter-spacing:7.320000px;}
.ls41{letter-spacing:7.560000px;}
.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;}
}
.wsf{word-spacing:-62.116583px;}
.wse{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws44{word-spacing:-19.200000px;}
.ws3d{word-spacing:-18.960000px;}
.ws3a{word-spacing:-17.700000px;}
.ws57{word-spacing:-17.640000px;}
.ws32{word-spacing:-17.580000px;}
.ws24{word-spacing:-17.520000px;}
.ws40{word-spacing:-17.400000px;}
.ws11{word-spacing:-17.340000px;}
.ws31{word-spacing:-17.160000px;}
.ws56{word-spacing:-17.100000px;}
.ws4e{word-spacing:-16.980000px;}
.ws25{word-spacing:-16.920000px;}
.ws42{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws3f{word-spacing:-16.620000px;}
.ws4d{word-spacing:-16.320000px;}
.ws30{word-spacing:-16.260000px;}
.ws4c{word-spacing:-15.900000px;}
.ws10{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.720000px;}
.ws41{word-spacing:-15.660000px;}
.ws3b{word-spacing:-15.540000px;}
.ws43{word-spacing:-15.420000px;}
.ws3e{word-spacing:-15.300000px;}
.ws3c{word-spacing:-15.060000px;}
.ws1d{word-spacing:-15.000000px;}
.ws5c{word-spacing:-14.784000px;}
.ws72{word-spacing:-14.736000px;}
.ws62{word-spacing:-14.208000px;}
.ws5f{word-spacing:-14.064000px;}
.ws60{word-spacing:-13.632000px;}
.wsd{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.344000px;}
.ws59{word-spacing:-13.248000px;}
.ws61{word-spacing:-13.104000px;}
.ws5b{word-spacing:-12.960000px;}
.ws5d{word-spacing:-12.672000px;}
.ws73{word-spacing:-12.624000px;}
.ws3{word-spacing:-12.510000px;}
.ws5e{word-spacing:-12.240000px;}
.ws58{word-spacing:-12.192000px;}
.ws5a{word-spacing:-12.096000px;}
.ws45{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.508400px;}
.ws6{word-spacing:-2.886000px;}
.ws33{word-spacing:-2.460000px;}
.ws65{word-spacing:-2.400000px;}
.ws13{word-spacing:-2.220000px;}
.ws67{word-spacing:-1.056000px;}
.ws34{word-spacing:-0.780000px;}
.ws7a{word-spacing:-0.624000px;}
.ws79{word-spacing:-0.576000px;}
.ws51{word-spacing:-0.480000px;}
.ws52{word-spacing:-0.300000px;}
.ws37{word-spacing:-0.240000px;}
.ws68{word-spacing:-0.192000px;}
.ws1c{word-spacing:-0.180000px;}
.ws6b{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws6a{word-spacing:0.048000px;}
.ws50{word-spacing:0.060000px;}
.ws15{word-spacing:0.120000px;}
.ws6f{word-spacing:0.240000px;}
.ws53{word-spacing:0.288000px;}
.ws20{word-spacing:0.420000px;}
.ws2a{word-spacing:0.480000px;}
.ws78{word-spacing:0.768000px;}
.ws16{word-spacing:0.960000px;}
.ws9{word-spacing:1.020000px;}
.ws6c{word-spacing:1.152000px;}
.ws14{word-spacing:1.200000px;}
.ws19{word-spacing:1.320000px;}
.wsb{word-spacing:1.380000px;}
.ws38{word-spacing:1.500000px;}
.ws76{word-spacing:1.536000px;}
.ws17{word-spacing:1.680000px;}
.ws49{word-spacing:1.740000px;}
.ws74{word-spacing:1.776000px;}
.ws55{word-spacing:1.824000px;}
.ws6d{word-spacing:1.968000px;}
.ws48{word-spacing:1.980000px;}
.ws29{word-spacing:2.160000px;}
.ws4f{word-spacing:2.280000px;}
.ws1f{word-spacing:2.340000px;}
.ws36{word-spacing:2.400000px;}
.ws2c{word-spacing:2.520000px;}
.ws69{word-spacing:2.544000px;}
.ws4a{word-spacing:2.640000px;}
.ws71{word-spacing:2.784000px;}
.ws35{word-spacing:2.820000px;}
.ws66{word-spacing:2.880000px;}
.ws77{word-spacing:2.928000px;}
.ws1b{word-spacing:3.000000px;}
.ws70{word-spacing:3.072000px;}
.ws6e{word-spacing:3.216000px;}
.ws2b{word-spacing:3.420000px;}
.ws75{word-spacing:3.456000px;}
.ws2d{word-spacing:3.600000px;}
.ws54{word-spacing:3.744000px;}
.ws18{word-spacing:3.840000px;}
.wsc{word-spacing:3.900000px;}
.ws22{word-spacing:3.936000px;}
.ws39{word-spacing:3.984000px;}
.ws1a{word-spacing:4.140000px;}
.ws2e{word-spacing:4.440000px;}
.ws23{word-spacing:4.512000px;}
.ws28{word-spacing:4.560000px;}
.ws2f{word-spacing:4.608000px;}
.ws4b{word-spacing:4.620000px;}
.ws21{word-spacing:4.680000px;}
.ws8{word-spacing:4.740000px;}
.ws1e{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.ws63{word-spacing:5.460000px;}
.ws64{word-spacing:5.520000px;}
.ws47{word-spacing:6.660000px;}
.ws46{word-spacing:585.552000px;}
.ws26{word-spacing:1948.714800px;}
.ws27{word-spacing:1951.344000px;}
._8{margin-left:-2898.096000px;}
._9{margin-left:-2874.288000px;}
._3{margin-left:-6.931800px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.287600px;}
._6{width:1.020000px;}
._7{width:3.096000px;}
._5{width:4.980000px;}
._a{width:6.000000px;}
._1a{width:76.464000px;}
._10{width:145.680000px;}
._16{width:258.661800px;}
._14{width:348.000000px;}
._15{width:364.080000px;}
._e{width:379.884000px;}
._d{width:398.880000px;}
._19{width:410.160000px;}
._18{width:431.040000px;}
._12{width:439.920000px;}
._11{width:453.696000px;}
._f{width:487.056000px;}
._17{width:496.416000px;}
._13{width:570.624000px;}
._c{width:640.128000px;}
._b{width:687.744000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.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;}
.fsb{font-size:62.116583px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y11f{bottom:83.121900px;}
.yd6{bottom:83.141400px;}
.ya2{bottom:83.500050px;}
.y62{bottom:83.772600px;}
.y107{bottom:85.787250px;}
.y18{bottom:88.026750px;}
.y96{bottom:91.395600px;}
.y103{bottom:92.181450px;}
.y15f{bottom:95.263500px;}
.y11e{bottom:98.121900px;}
.yd5{bottom:98.885400px;}
.ya1{bottom:99.244050px;}
.y106{bottom:101.531250px;}
.y61{bottom:101.772600px;}
.y17{bottom:103.023000px;}
.y102{bottom:108.681450px;}
.y95{bottom:109.395600px;}
.y15e{bottom:110.263500px;}
.y11d{bottom:113.121900px;}
.y105{bottom:117.275250px;}
.y60{bottom:119.772600px;}
.y101{bottom:124.929450px;}
.y15d{bottom:125.263500px;}
.y94{bottom:127.395600px;}
.y11c{bottom:128.121900px;}
.y5f{bottom:137.772600px;}
.y15c{bottom:140.263500px;}
.y100{bottom:141.429450px;}
.y11b{bottom:143.121900px;}
.y93{bottom:145.395600px;}
.y15b{bottom:155.263500px;}
.y5e{bottom:155.772600px;}
.yff{bottom:157.929450px;}
.y11a{bottom:158.121900px;}
.y92{bottom:163.395600px;}
.y15a{bottom:170.263500px;}
.y28{bottom:171.292200px;}
.y119{bottom:173.121900px;}
.y5d{bottom:173.772600px;}
.yfe{bottom:174.429450px;}
.y91{bottom:181.395600px;}
.y159{bottom:185.263500px;}
.y118{bottom:188.121900px;}
.y27{bottom:189.292200px;}
.yfd{bottom:190.677450px;}
.y5c{bottom:191.772600px;}
.y90{bottom:199.395600px;}
.y158{bottom:200.263500px;}
.y117{bottom:203.121900px;}
.yfc{bottom:207.177450px;}
.y26{bottom:207.292200px;}
.y5b{bottom:209.772600px;}
.y157{bottom:215.263500px;}
.y8f{bottom:217.395600px;}
.y116{bottom:218.121900px;}
.yfb{bottom:223.677450px;}
.y25{bottom:225.292200px;}
.y5a{bottom:227.772600px;}
.y156{bottom:230.263500px;}
.y115{bottom:233.121900px;}
.y8e{bottom:235.395600px;}
.yfa{bottom:240.177450px;}
.y24{bottom:243.292200px;}
.y155{bottom:245.263500px;}
.y59{bottom:245.772600px;}
.y114{bottom:248.121900px;}
.y8d{bottom:253.395600px;}
.yf9{bottom:256.425450px;}
.y154{bottom:260.263500px;}
.y23{bottom:261.292200px;}
.y58{bottom:263.772600px;}
.y8c{bottom:271.395600px;}
.yf8{bottom:272.925450px;}
.y153{bottom:275.263500px;}
.y22{bottom:279.292200px;}
.y113{bottom:281.230350px;}
.y57{bottom:281.772600px;}
.y8b{bottom:289.395600px;}
.yf7{bottom:289.425450px;}
.y152{bottom:290.263500px;}
.y21{bottom:297.292200px;}
.y56{bottom:299.772600px;}
.y151{bottom:305.263500px;}
.yf6{bottom:305.673450px;}
.y8a{bottom:307.395600px;}
.y20{bottom:315.292200px;}
.y55{bottom:317.772600px;}
.y150{bottom:320.263500px;}
.ya5{bottom:321.679500px;}
.yf5{bottom:322.173450px;}
.y89{bottom:325.395600px;}
.y1f{bottom:333.292200px;}
.y14f{bottom:335.263500px;}
.y112{bottom:335.770350px;}
.y54{bottom:335.772600px;}
.yf4{bottom:338.421450px;}
.y88{bottom:343.395600px;}
.y14e{bottom:350.263500px;}
.y1e{bottom:351.292200px;}
.y111{bottom:353.365350px;}
.y53{bottom:353.772600px;}
.yf3{bottom:354.921450px;}
.y87{bottom:361.395600px;}
.y14d{bottom:365.263500px;}
.y1d{bottom:369.292200px;}
.y52{bottom:371.772600px;}
.y86{bottom:379.395600px;}
.y14c{bottom:380.263500px;}
.yf2{bottom:386.433450px;}
.y1c{bottom:387.292200px;}
.y110{bottom:389.365350px;}
.y51{bottom:389.772600px;}
.y14b{bottom:395.263500px;}
.y85{bottom:397.395600px;}
.y1b{bottom:405.292200px;}
.yc0{bottom:406.723650px;}
.y50{bottom:407.772600px;}
.y14a{bottom:410.263500px;}
.yb4{bottom:410.976300px;}
.y84{bottom:415.395600px;}
.y1a{bottom:423.292200px;}
.y149{bottom:425.263500px;}
.y10f{bottom:425.770350px;}
.y4f{bottom:425.772600px;}
.y83{bottom:433.395600px;}
.yf0{bottom:439.950150px;}
.y148{bottom:440.263500px;}
.y2a{bottom:441.292200px;}
.y10e{bottom:443.770350px;}
.y4e{bottom:443.772600px;}
.y82{bottom:451.395600px;}
.y147{bottom:455.263500px;}
.yf1{bottom:456.450150px;}
.yef{bottom:456.469800px;}
.y19{bottom:458.887200px;}
.y29{bottom:459.292200px;}
.y10d{bottom:461.365350px;}
.y4d{bottom:461.772600px;}
.y81{bottom:469.395600px;}
.y146{bottom:470.265900px;}
.yee{bottom:472.717800px;}
.y4c{bottom:479.772600px;}
.y145{bottom:485.265900px;}
.y80{bottom:487.395600px;}
.yed{bottom:489.217800px;}
.y10c{bottom:497.770350px;}
.y4b{bottom:497.772600px;}
.y144{bottom:500.265900px;}
.yd7{bottom:500.693400px;}
.y7f{bottom:505.395600px;}
.yec{bottom:505.717800px;}
.y143{bottom:515.265900px;}
.y10b{bottom:515.365350px;}
.y4a{bottom:515.772600px;}
.yeb{bottom:522.217800px;}
.y7e{bottom:523.395600px;}
.ya4{bottom:527.479500px;}
.y142{bottom:530.265900px;}
.y49{bottom:533.772600px;}
.yea{bottom:538.465800px;}
.y7d{bottom:541.395600px;}
.y16{bottom:543.064200px;}
.y141{bottom:545.265900px;}
.ycd{bottom:551.635350px;}
.yd4{bottom:551.770350px;}
.y48{bottom:551.772600px;}
.ye9{bottom:554.965800px;}
.y7c{bottom:559.395600px;}
.y140{bottom:560.265900px;}
.ycc{bottom:569.635350px;}
.yd3{bottom:569.770350px;}
.y47{bottom:569.772600px;}
.y15{bottom:570.409200px;}
.ye8{bottom:571.465800px;}
.y13f{bottom:575.265900px;}
.y7b{bottom:577.395600px;}
.ycb{bottom:587.635350px;}
.yd2{bottom:587.770350px;}
.y46{bottom:587.772600px;}
.ye7{bottom:587.965800px;}
.y14{bottom:588.409200px;}
.y13e{bottom:590.265900px;}
.y7a{bottom:595.395600px;}
.ye6{bottom:604.213800px;}
.y13d{bottom:605.265900px;}
.yca{bottom:605.635350px;}
.yd1{bottom:605.770350px;}
.y45{bottom:605.772600px;}
.y13{bottom:606.409200px;}
.y79{bottom:613.395600px;}
.yb3{bottom:618.468300px;}
.y13c{bottom:620.265900px;}
.ye5{bottom:620.713800px;}
.yc9{bottom:623.635350px;}
.yd0{bottom:623.770350px;}
.y44{bottom:623.772600px;}
.y12{bottom:624.409200px;}
.y78{bottom:631.395600px;}
.y13b{bottom:635.265900px;}
.ye4{bottom:637.213800px;}
.y10a{bottom:641.365350px;}
.yc8{bottom:641.635350px;}
.ycf{bottom:641.770350px;}
.y43{bottom:641.772600px;}
.y11{bottom:642.409200px;}
.y77{bottom:649.395600px;}
.y13a{bottom:650.265900px;}
.ye3{bottom:653.713800px;}
.yc7{bottom:659.635350px;}
.yce{bottom:659.770350px;}
.y42{bottom:659.772600px;}
.y10{bottom:660.409200px;}
.y139{bottom:665.265900px;}
.y76{bottom:666.661350px;}
.y75{bottom:667.395600px;}
.ye2{bottom:669.961800px;}
.yc6{bottom:677.635350px;}
.yb2{bottom:677.770350px;}
.y41{bottom:677.772600px;}
.y138{bottom:680.265900px;}
.y74{bottom:685.395600px;}
.ye1{bottom:686.461800px;}
.y137{bottom:695.265900px;}
.yc5{bottom:695.635350px;}
.yb1{bottom:695.770350px;}
.y40{bottom:695.772600px;}
.y73{bottom:702.661350px;}
.ye0{bottom:702.961800px;}
.y72{bottom:703.395600px;}
.yf{bottom:705.568500px;}
.y136{bottom:710.265900px;}
.yc4{bottom:713.635350px;}
.yb0{bottom:713.770350px;}
.y3f{bottom:713.772600px;}
.ye{bottom:718.018500px;}
.ydf{bottom:719.209800px;}
.y71{bottom:721.395600px;}
.y135{bottom:725.265900px;}
.yc3{bottom:731.635350px;}
.yaf{bottom:731.770350px;}
.y3e{bottom:731.772600px;}
.yde{bottom:735.709800px;}
.y70{bottom:739.395600px;}
.y134{bottom:740.265900px;}
.yae{bottom:749.770350px;}
.y3d{bottom:749.772600px;}
.yd{bottom:753.594150px;}
.y133{bottom:755.265900px;}
.y6f{bottom:757.395600px;}
.ybf{bottom:757.507650px;}
.yc{bottom:767.094150px;}
.ydd{bottom:767.221800px;}
.yc2{bottom:767.230350px;}
.yad{bottom:767.770350px;}
.y3c{bottom:767.772600px;}
.y132{bottom:770.265900px;}
.y6e{bottom:775.395600px;}
.yb{bottom:776.733600px;}
.y172{bottom:785.263500px;}
.y131{bottom:785.265900px;}
.yac{bottom:785.770350px;}
.y3b{bottom:785.772600px;}
.y6d{bottom:793.395600px;}
.ya{bottom:794.094150px;}
.y171{bottom:800.263500px;}
.y130{bottom:800.265900px;}
.ydc{bottom:802.120350px;}
.y9{bottom:803.733600px;}
.yab{bottom:803.770350px;}
.y3a{bottom:803.772600px;}
.y6c{bottom:810.661350px;}
.y6b{bottom:811.395600px;}
.y170{bottom:815.263500px;}
.y12f{bottom:815.265900px;}
.y8{bottom:821.094150px;}
.ydb{bottom:821.620350px;}
.yaa{bottom:821.770350px;}
.y39{bottom:821.772600px;}
.ybe{bottom:821.920350px;}
.y16f{bottom:830.263500px;}
.y12e{bottom:830.265900px;}
.ya3{bottom:837.019500px;}
.ya9{bottom:839.770350px;}
.y38{bottom:839.772600px;}
.ybd{bottom:839.920350px;}
.yda{bottom:841.120350px;}
.y16e{bottom:845.263500px;}
.y12d{bottom:845.265900px;}
.y6a{bottom:846.236250px;}
.y7{bottom:851.380950px;}
.ya8{bottom:857.770350px;}
.y37{bottom:857.772600px;}
.ybc{bottom:857.920350px;}
.y16d{bottom:860.263500px;}
.y12c{bottom:860.265900px;}
.y69{bottom:861.842250px;}
.y16c{bottom:875.263500px;}
.y12b{bottom:875.265900px;}
.ya7{bottom:875.770350px;}
.y36{bottom:875.772600px;}
.ybb{bottom:875.920350px;}
.y68{bottom:876.192600px;}
.y16b{bottom:890.263500px;}
.y12a{bottom:890.265900px;}
.ya0{bottom:893.770350px;}
.y35{bottom:893.772600px;}
.y67{bottom:893.787600px;}
.yba{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y16a{bottom:905.263500px;}
.y129{bottom:905.265900px;}
.y9f{bottom:911.770350px;}
.y34{bottom:911.772600px;}
.yb9{bottom:911.920350px;}
.y169{bottom:920.263500px;}
.y128{bottom:920.265900px;}
.y66{bottom:929.637600px;}
.y9e{bottom:929.770350px;}
.y33{bottom:929.772600px;}
.yb8{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y168{bottom:935.263500px;}
.y127{bottom:935.265900px;}
.y65{bottom:947.637600px;}
.y9d{bottom:947.770350px;}
.y32{bottom:947.772600px;}
.yb7{bottom:947.920350px;}
.y167{bottom:950.263500px;}
.y126{bottom:950.265900px;}
.y166{bottom:965.263500px;}
.y125{bottom:965.265900px;}
.y64{bottom:965.637600px;}
.y9c{bottom:965.770350px;}
.y31{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y165{bottom:980.263500px;}
.y124{bottom:980.265900px;}
.yb6{bottom:983.515350px;}
.y9b{bottom:983.770350px;}
.y30{bottom:983.772600px;}
.y164{bottom:995.263500px;}
.y123{bottom:995.265900px;}
.y109{bottom:1001.365350px;}
.y63{bottom:1001.502600px;}
.y9a{bottom:1001.770350px;}
.y2f{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y163{bottom:1010.263500px;}
.y122{bottom:1010.265900px;}
.y99{bottom:1019.770350px;}
.y162{bottom:1025.263500px;}
.y121{bottom:1025.265900px;}
.yd9{bottom:1037.365350px;}
.y2e{bottom:1037.367600px;}
.y98{bottom:1037.770350px;}
.y161{bottom:1040.263500px;}
.y120{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.ya6{bottom:1132.411500px;}
.y97{bottom:1132.418700px;}
.yd8{bottom:1132.421400px;}
.y160{bottom:1132.423500px;}
.yc1{bottom:1132.423650px;}
.y108{bottom:1132.427250px;}
.yb5{bottom:1132.428300px;}
.y104{bottom:1132.437450px;}
.y2c{bottom:1136.089500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h15{height:33.341963px;}
.h14{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h11{height:37.520508px;}
.he{height:41.689453px;}
.hd{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.717434px;}
.h9{height:43.740234px;}
.h13{height:44.100000px;}
.h12{height:48.699401px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x27{left:99.921300px;}
.x32{left:102.047400px;}
.x26{left:103.115400px;}
.x4{left:106.299150px;}
.x28{left:108.429300px;}
.xc{left:110.552250px;}
.x30{left:123.307200px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.xb{left:144.722250px;}
.x24{left:172.204650px;}
.x22{left:196.015800px;}
.x25{left:198.890400px;}
.x5{left:212.876400px;}
.x2f{left:215.560350px;}
.x29{left:257.253300px;}
.x2d{left:265.797300px;}
.x2e{left:444.381300px;}
.x2a{left:452.853300px;}
.x9{left:455.041500px;}
.x19{left:457.079550px;}
.x14{left:473.439600px;}
.x21{left:478.345350px;}
.x7{left:480.476400px;}
.x33{left:482.603400px;}
.x10{left:485.642250px;}
.x16{left:491.102250px;}
.x12{left:501.662250px;}
.x31{left:503.863200px;}
.xf{left:508.142250px;}
.x11{left:510.677250px;}
.x20{left:512.365350px;}
.x15{left:580.724100px;}
.xe{left:583.457250px;}
.xd{left:591.647250px;}
.x13{left:593.207250px;}
.x2b{left:631.437300px;}
.x2c{left:639.945300px;}
.x17{left:657.562500px;}
.x1f{left:663.492300px;}
.x1a{left:665.150550px;}
.x18{left:674.489550px;}
.x1b{left:681.677850px;}
.x2{left:693.365400px;}
.x1c{left:708.045300px;}
.x34{left:721.715400px;}
.x1e{left:728.391600px;}
.x1d{left:740.876100px;}
.x23{left:749.647800px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls40{letter-spacing:-0.266667pt;}
.ls4b{letter-spacing:-0.256000pt;}
.ls49{letter-spacing:-0.170667pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.106667pt;}
.ls38{letter-spacing:-0.053333pt;}
.ls69{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls58{letter-spacing:0.042667pt;}
.ls10{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.061867pt;}
.ls57{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls5b{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls51{letter-spacing:0.170667pt;}
.ls2e{letter-spacing:0.213333pt;}
.ls5c{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.266667pt;}
.ls5f{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls59{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls3a{letter-spacing:0.469333pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.512000pt;}
.ls33{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.586667pt;}
.ls3f{letter-spacing:0.597333pt;}
.lsb{letter-spacing:0.640000pt;}
.ls67{letter-spacing:0.682667pt;}
.ls25{letter-spacing:0.693333pt;}
.ls64{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls6{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls6c{letter-spacing:0.896000pt;}
.ls11{letter-spacing:0.906667pt;}
.ls52{letter-spacing:0.938667pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.981333pt;}
.ls3{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls55{letter-spacing:1.109333pt;}
.ls32{letter-spacing:1.120000pt;}
.ls63{letter-spacing:1.152000pt;}
.ls24{letter-spacing:1.173333pt;}
.ls54{letter-spacing:1.194667pt;}
.ls34{letter-spacing:1.226667pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:1.333333pt;}
.ls62{letter-spacing:1.365333pt;}
.ls17{letter-spacing:1.386667pt;}
.ls18{letter-spacing:1.440000pt;}
.ls5e{letter-spacing:1.450667pt;}
.lsa{letter-spacing:1.493333pt;}
.ls6a{letter-spacing:1.536000pt;}
.ls23{letter-spacing:1.546667pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls26{letter-spacing:1.653333pt;}
.ls2a{letter-spacing:1.706667pt;}
.ls6e{letter-spacing:1.749333pt;}
.ls1f{letter-spacing:1.760000pt;}
.ls44{letter-spacing:1.813333pt;}
.ls53{letter-spacing:1.834667pt;}
.ls48{letter-spacing:1.866667pt;}
.ls5d{letter-spacing:1.877333pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls66{letter-spacing:1.962667pt;}
.ls35{letter-spacing:1.973333pt;}
.ls45{letter-spacing:2.026667pt;}
.ls2c{letter-spacing:2.080000pt;}
.ls43{letter-spacing:2.133333pt;}
.ls60{letter-spacing:2.176000pt;}
.ls2d{letter-spacing:2.186667pt;}
.ls15{letter-spacing:2.240000pt;}
.lsd{letter-spacing:2.293333pt;}
.ls21{letter-spacing:2.346667pt;}
.ls42{letter-spacing:2.400000pt;}
.ls6b{letter-spacing:2.432000pt;}
.ls4f{letter-spacing:2.453333pt;}
.ls5a{letter-spacing:2.474667pt;}
.lse{letter-spacing:2.506667pt;}
.ls27{letter-spacing:2.613333pt;}
.ls20{letter-spacing:2.666667pt;}
.ls47{letter-spacing:2.933333pt;}
.ls61{letter-spacing:2.944000pt;}
.ls1c{letter-spacing:3.093333pt;}
.ls29{letter-spacing:3.146667pt;}
.ls4e{letter-spacing:3.200000pt;}
.ls28{letter-spacing:3.253333pt;}
.ls6d{letter-spacing:3.285333pt;}
.ls30{letter-spacing:3.306667pt;}
.ls1a{letter-spacing:3.360000pt;}
.ls9{letter-spacing:3.520000pt;}
.ls4c{letter-spacing:3.573333pt;}
.ls46{letter-spacing:3.733333pt;}
.ls31{letter-spacing:4.106667pt;}
.ls4d{letter-spacing:4.586667pt;}
.ls56{letter-spacing:4.608000pt;}
.ls4a{letter-spacing:4.800000pt;}
.ls68{letter-spacing:5.013333pt;}
.ls3c{letter-spacing:5.333333pt;}
.ls3e{letter-spacing:6.293333pt;}
.ls50{letter-spacing:6.506667pt;}
.ls41{letter-spacing:6.720000pt;}
.wsf{word-spacing:-55.214741pt;}
.wse{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws44{word-spacing:-17.066667pt;}
.ws3d{word-spacing:-16.853333pt;}
.ws3a{word-spacing:-15.733333pt;}
.ws57{word-spacing:-15.680000pt;}
.ws32{word-spacing:-15.626667pt;}
.ws24{word-spacing:-15.573333pt;}
.ws40{word-spacing:-15.466667pt;}
.ws11{word-spacing:-15.413333pt;}
.ws31{word-spacing:-15.253333pt;}
.ws56{word-spacing:-15.200000pt;}
.ws4e{word-spacing:-15.093333pt;}
.ws25{word-spacing:-15.040000pt;}
.ws42{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws3f{word-spacing:-14.773333pt;}
.ws4d{word-spacing:-14.506667pt;}
.ws30{word-spacing:-14.453333pt;}
.ws4c{word-spacing:-14.133333pt;}
.ws10{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.973333pt;}
.ws41{word-spacing:-13.920000pt;}
.ws3b{word-spacing:-13.813333pt;}
.ws43{word-spacing:-13.706667pt;}
.ws3e{word-spacing:-13.600000pt;}
.ws3c{word-spacing:-13.386667pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws5c{word-spacing:-13.141333pt;}
.ws72{word-spacing:-13.098667pt;}
.ws62{word-spacing:-12.629333pt;}
.ws5f{word-spacing:-12.501333pt;}
.ws60{word-spacing:-12.117333pt;}
.wsd{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.861333pt;}
.ws59{word-spacing:-11.776000pt;}
.ws61{word-spacing:-11.648000pt;}
.ws5b{word-spacing:-11.520000pt;}
.ws5d{word-spacing:-11.264000pt;}
.ws73{word-spacing:-11.221333pt;}
.ws3{word-spacing:-11.120000pt;}
.ws5e{word-spacing:-10.880000pt;}
.ws58{word-spacing:-10.837333pt;}
.ws5a{word-spacing:-10.752000pt;}
.ws45{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.340800pt;}
.ws6{word-spacing:-2.565333pt;}
.ws33{word-spacing:-2.186667pt;}
.ws65{word-spacing:-2.133333pt;}
.ws13{word-spacing:-1.973333pt;}
.ws67{word-spacing:-0.938667pt;}
.ws34{word-spacing:-0.693333pt;}
.ws7a{word-spacing:-0.554667pt;}
.ws79{word-spacing:-0.512000pt;}
.ws51{word-spacing:-0.426667pt;}
.ws52{word-spacing:-0.266667pt;}
.ws37{word-spacing:-0.213333pt;}
.ws68{word-spacing:-0.170667pt;}
.ws1c{word-spacing:-0.160000pt;}
.ws6b{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.042667pt;}
.ws50{word-spacing:0.053333pt;}
.ws15{word-spacing:0.106667pt;}
.ws6f{word-spacing:0.213333pt;}
.ws53{word-spacing:0.256000pt;}
.ws20{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.426667pt;}
.ws78{word-spacing:0.682667pt;}
.ws16{word-spacing:0.853333pt;}
.ws9{word-spacing:0.906667pt;}
.ws6c{word-spacing:1.024000pt;}
.ws14{word-spacing:1.066667pt;}
.ws19{word-spacing:1.173333pt;}
.wsb{word-spacing:1.226667pt;}
.ws38{word-spacing:1.333333pt;}
.ws76{word-spacing:1.365333pt;}
.ws17{word-spacing:1.493333pt;}
.ws49{word-spacing:1.546667pt;}
.ws74{word-spacing:1.578667pt;}
.ws55{word-spacing:1.621333pt;}
.ws6d{word-spacing:1.749333pt;}
.ws48{word-spacing:1.760000pt;}
.ws29{word-spacing:1.920000pt;}
.ws4f{word-spacing:2.026667pt;}
.ws1f{word-spacing:2.080000pt;}
.ws36{word-spacing:2.133333pt;}
.ws2c{word-spacing:2.240000pt;}
.ws69{word-spacing:2.261333pt;}
.ws4a{word-spacing:2.346667pt;}
.ws71{word-spacing:2.474667pt;}
.ws35{word-spacing:2.506667pt;}
.ws66{word-spacing:2.560000pt;}
.ws77{word-spacing:2.602667pt;}
.ws1b{word-spacing:2.666667pt;}
.ws70{word-spacing:2.730667pt;}
.ws6e{word-spacing:2.858667pt;}
.ws2b{word-spacing:3.040000pt;}
.ws75{word-spacing:3.072000pt;}
.ws2d{word-spacing:3.200000pt;}
.ws54{word-spacing:3.328000pt;}
.ws18{word-spacing:3.413333pt;}
.wsc{word-spacing:3.466667pt;}
.ws22{word-spacing:3.498667pt;}
.ws39{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.680000pt;}
.ws2e{word-spacing:3.946667pt;}
.ws23{word-spacing:4.010667pt;}
.ws28{word-spacing:4.053333pt;}
.ws2f{word-spacing:4.096000pt;}
.ws4b{word-spacing:4.106667pt;}
.ws21{word-spacing:4.160000pt;}
.ws8{word-spacing:4.213333pt;}
.ws1e{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.ws63{word-spacing:4.853333pt;}
.ws64{word-spacing:4.906667pt;}
.ws47{word-spacing:5.920000pt;}
.ws46{word-spacing:520.490667pt;}
.ws26{word-spacing:1732.190933pt;}
.ws27{word-spacing:1734.528000pt;}
._8{margin-left:-2576.085333pt;}
._9{margin-left:-2554.922667pt;}
._3{margin-left:-6.161600pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.144533pt;}
._6{width:0.906667pt;}
._7{width:2.752000pt;}
._5{width:4.426667pt;}
._a{width:5.333333pt;}
._1a{width:67.968000pt;}
._10{width:129.493333pt;}
._16{width:229.921600pt;}
._14{width:309.333333pt;}
._15{width:323.626667pt;}
._e{width:337.674667pt;}
._d{width:354.560000pt;}
._19{width:364.586667pt;}
._18{width:383.146667pt;}
._12{width:391.040000pt;}
._11{width:403.285333pt;}
._f{width:432.938667pt;}
._17{width:441.258667pt;}
._13{width:507.221333pt;}
._c{width:569.002667pt;}
._b{width:611.328000pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.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;}
.fsb{font-size:55.214741pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y11f{bottom:73.886133pt;}
.yd6{bottom:73.903467pt;}
.ya2{bottom:74.222267pt;}
.y62{bottom:74.464533pt;}
.y107{bottom:76.255333pt;}
.y18{bottom:78.246000pt;}
.y96{bottom:81.240533pt;}
.y103{bottom:81.939067pt;}
.y15f{bottom:84.678667pt;}
.y11e{bottom:87.219467pt;}
.yd5{bottom:87.898133pt;}
.ya1{bottom:88.216933pt;}
.y106{bottom:90.250000pt;}
.y61{bottom:90.464533pt;}
.y17{bottom:91.576000pt;}
.y102{bottom:96.605733pt;}
.y95{bottom:97.240533pt;}
.y15e{bottom:98.012000pt;}
.y11d{bottom:100.552800pt;}
.y105{bottom:104.244667pt;}
.y60{bottom:106.464533pt;}
.y101{bottom:111.048400pt;}
.y15d{bottom:111.345333pt;}
.y94{bottom:113.240533pt;}
.y11c{bottom:113.886133pt;}
.y5f{bottom:122.464533pt;}
.y15c{bottom:124.678667pt;}
.y100{bottom:125.715067pt;}
.y11b{bottom:127.219467pt;}
.y93{bottom:129.240533pt;}
.y15b{bottom:138.012000pt;}
.y5e{bottom:138.464533pt;}
.yff{bottom:140.381733pt;}
.y11a{bottom:140.552800pt;}
.y92{bottom:145.240533pt;}
.y15a{bottom:151.345333pt;}
.y28{bottom:152.259733pt;}
.y119{bottom:153.886133pt;}
.y5d{bottom:154.464533pt;}
.yfe{bottom:155.048400pt;}
.y91{bottom:161.240533pt;}
.y159{bottom:164.678667pt;}
.y118{bottom:167.219467pt;}
.y27{bottom:168.259733pt;}
.yfd{bottom:169.491067pt;}
.y5c{bottom:170.464533pt;}
.y90{bottom:177.240533pt;}
.y158{bottom:178.012000pt;}
.y117{bottom:180.552800pt;}
.yfc{bottom:184.157733pt;}
.y26{bottom:184.259733pt;}
.y5b{bottom:186.464533pt;}
.y157{bottom:191.345333pt;}
.y8f{bottom:193.240533pt;}
.y116{bottom:193.886133pt;}
.yfb{bottom:198.824400pt;}
.y25{bottom:200.259733pt;}
.y5a{bottom:202.464533pt;}
.y156{bottom:204.678667pt;}
.y115{bottom:207.219467pt;}
.y8e{bottom:209.240533pt;}
.yfa{bottom:213.491067pt;}
.y24{bottom:216.259733pt;}
.y155{bottom:218.012000pt;}
.y59{bottom:218.464533pt;}
.y114{bottom:220.552800pt;}
.y8d{bottom:225.240533pt;}
.yf9{bottom:227.933733pt;}
.y154{bottom:231.345333pt;}
.y23{bottom:232.259733pt;}
.y58{bottom:234.464533pt;}
.y8c{bottom:241.240533pt;}
.yf8{bottom:242.600400pt;}
.y153{bottom:244.678667pt;}
.y22{bottom:248.259733pt;}
.y113{bottom:249.982533pt;}
.y57{bottom:250.464533pt;}
.y8b{bottom:257.240533pt;}
.yf7{bottom:257.267067pt;}
.y152{bottom:258.012000pt;}
.y21{bottom:264.259733pt;}
.y56{bottom:266.464533pt;}
.y151{bottom:271.345333pt;}
.yf6{bottom:271.709733pt;}
.y8a{bottom:273.240533pt;}
.y20{bottom:280.259733pt;}
.y55{bottom:282.464533pt;}
.y150{bottom:284.678667pt;}
.ya5{bottom:285.937333pt;}
.yf5{bottom:286.376400pt;}
.y89{bottom:289.240533pt;}
.y1f{bottom:296.259733pt;}
.y14f{bottom:298.012000pt;}
.y112{bottom:298.462533pt;}
.y54{bottom:298.464533pt;}
.yf4{bottom:300.819067pt;}
.y88{bottom:305.240533pt;}
.y14e{bottom:311.345333pt;}
.y1e{bottom:312.259733pt;}
.y111{bottom:314.102533pt;}
.y53{bottom:314.464533pt;}
.yf3{bottom:315.485733pt;}
.y87{bottom:321.240533pt;}
.y14d{bottom:324.678667pt;}
.y1d{bottom:328.259733pt;}
.y52{bottom:330.464533pt;}
.y86{bottom:337.240533pt;}
.y14c{bottom:338.012000pt;}
.yf2{bottom:343.496400pt;}
.y1c{bottom:344.259733pt;}
.y110{bottom:346.102533pt;}
.y51{bottom:346.464533pt;}
.y14b{bottom:351.345333pt;}
.y85{bottom:353.240533pt;}
.y1b{bottom:360.259733pt;}
.yc0{bottom:361.532133pt;}
.y50{bottom:362.464533pt;}
.y14a{bottom:364.678667pt;}
.yb4{bottom:365.312267pt;}
.y84{bottom:369.240533pt;}
.y1a{bottom:376.259733pt;}
.y149{bottom:378.012000pt;}
.y10f{bottom:378.462533pt;}
.y4f{bottom:378.464533pt;}
.y83{bottom:385.240533pt;}
.yf0{bottom:391.066800pt;}
.y148{bottom:391.345333pt;}
.y2a{bottom:392.259733pt;}
.y10e{bottom:394.462533pt;}
.y4e{bottom:394.464533pt;}
.y82{bottom:401.240533pt;}
.y147{bottom:404.678667pt;}
.yf1{bottom:405.733467pt;}
.yef{bottom:405.750933pt;}
.y19{bottom:407.899733pt;}
.y29{bottom:408.259733pt;}
.y10d{bottom:410.102533pt;}
.y4d{bottom:410.464533pt;}
.y81{bottom:417.240533pt;}
.y146{bottom:418.014133pt;}
.yee{bottom:420.193600pt;}
.y4c{bottom:426.464533pt;}
.y145{bottom:431.347467pt;}
.y80{bottom:433.240533pt;}
.yed{bottom:434.860267pt;}
.y10c{bottom:442.462533pt;}
.y4b{bottom:442.464533pt;}
.y144{bottom:444.680800pt;}
.yd7{bottom:445.060800pt;}
.y7f{bottom:449.240533pt;}
.yec{bottom:449.526933pt;}
.y143{bottom:458.014133pt;}
.y10b{bottom:458.102533pt;}
.y4a{bottom:458.464533pt;}
.yeb{bottom:464.193600pt;}
.y7e{bottom:465.240533pt;}
.ya4{bottom:468.870667pt;}
.y142{bottom:471.347467pt;}
.y49{bottom:474.464533pt;}
.yea{bottom:478.636267pt;}
.y7d{bottom:481.240533pt;}
.y16{bottom:482.723733pt;}
.y141{bottom:484.680800pt;}
.ycd{bottom:490.342533pt;}
.yd4{bottom:490.462533pt;}
.y48{bottom:490.464533pt;}
.ye9{bottom:493.302933pt;}
.y7c{bottom:497.240533pt;}
.y140{bottom:498.014133pt;}
.ycc{bottom:506.342533pt;}
.yd3{bottom:506.462533pt;}
.y47{bottom:506.464533pt;}
.y15{bottom:507.030400pt;}
.ye8{bottom:507.969600pt;}
.y13f{bottom:511.347467pt;}
.y7b{bottom:513.240533pt;}
.ycb{bottom:522.342533pt;}
.yd2{bottom:522.462533pt;}
.y46{bottom:522.464533pt;}
.ye7{bottom:522.636267pt;}
.y14{bottom:523.030400pt;}
.y13e{bottom:524.680800pt;}
.y7a{bottom:529.240533pt;}
.ye6{bottom:537.078933pt;}
.y13d{bottom:538.014133pt;}
.yca{bottom:538.342533pt;}
.yd1{bottom:538.462533pt;}
.y45{bottom:538.464533pt;}
.y13{bottom:539.030400pt;}
.y79{bottom:545.240533pt;}
.yb3{bottom:549.749600pt;}
.y13c{bottom:551.347467pt;}
.ye5{bottom:551.745600pt;}
.yc9{bottom:554.342533pt;}
.yd0{bottom:554.462533pt;}
.y44{bottom:554.464533pt;}
.y12{bottom:555.030400pt;}
.y78{bottom:561.240533pt;}
.y13b{bottom:564.680800pt;}
.ye4{bottom:566.412267pt;}
.y10a{bottom:570.102533pt;}
.yc8{bottom:570.342533pt;}
.ycf{bottom:570.462533pt;}
.y43{bottom:570.464533pt;}
.y11{bottom:571.030400pt;}
.y77{bottom:577.240533pt;}
.y13a{bottom:578.014133pt;}
.ye3{bottom:581.078933pt;}
.yc7{bottom:586.342533pt;}
.yce{bottom:586.462533pt;}
.y42{bottom:586.464533pt;}
.y10{bottom:587.030400pt;}
.y139{bottom:591.347467pt;}
.y76{bottom:592.587867pt;}
.y75{bottom:593.240533pt;}
.ye2{bottom:595.521600pt;}
.yc6{bottom:602.342533pt;}
.yb2{bottom:602.462533pt;}
.y41{bottom:602.464533pt;}
.y138{bottom:604.680800pt;}
.y74{bottom:609.240533pt;}
.ye1{bottom:610.188267pt;}
.y137{bottom:618.014133pt;}
.yc5{bottom:618.342533pt;}
.yb1{bottom:618.462533pt;}
.y40{bottom:618.464533pt;}
.y73{bottom:624.587867pt;}
.ye0{bottom:624.854933pt;}
.y72{bottom:625.240533pt;}
.yf{bottom:627.172000pt;}
.y136{bottom:631.347467pt;}
.yc4{bottom:634.342533pt;}
.yb0{bottom:634.462533pt;}
.y3f{bottom:634.464533pt;}
.ye{bottom:638.238667pt;}
.ydf{bottom:639.297600pt;}
.y71{bottom:641.240533pt;}
.y135{bottom:644.680800pt;}
.yc3{bottom:650.342533pt;}
.yaf{bottom:650.462533pt;}
.y3e{bottom:650.464533pt;}
.yde{bottom:653.964267pt;}
.y70{bottom:657.240533pt;}
.y134{bottom:658.014133pt;}
.yae{bottom:666.462533pt;}
.y3d{bottom:666.464533pt;}
.yd{bottom:669.861467pt;}
.y133{bottom:671.347467pt;}
.y6f{bottom:673.240533pt;}
.ybf{bottom:673.340133pt;}
.yc{bottom:681.861467pt;}
.ydd{bottom:681.974933pt;}
.yc2{bottom:681.982533pt;}
.yad{bottom:682.462533pt;}
.y3c{bottom:682.464533pt;}
.y132{bottom:684.680800pt;}
.y6e{bottom:689.240533pt;}
.yb{bottom:690.429867pt;}
.y172{bottom:698.012000pt;}
.y131{bottom:698.014133pt;}
.yac{bottom:698.462533pt;}
.y3b{bottom:698.464533pt;}
.y6d{bottom:705.240533pt;}
.ya{bottom:705.861467pt;}
.y171{bottom:711.345333pt;}
.y130{bottom:711.347467pt;}
.ydc{bottom:712.995867pt;}
.y9{bottom:714.429867pt;}
.yab{bottom:714.462533pt;}
.y3a{bottom:714.464533pt;}
.y6c{bottom:720.587867pt;}
.y6b{bottom:721.240533pt;}
.y170{bottom:724.678667pt;}
.y12f{bottom:724.680800pt;}
.y8{bottom:729.861467pt;}
.ydb{bottom:730.329200pt;}
.yaa{bottom:730.462533pt;}
.y39{bottom:730.464533pt;}
.ybe{bottom:730.595867pt;}
.y16f{bottom:738.012000pt;}
.y12e{bottom:738.014133pt;}
.ya3{bottom:744.017333pt;}
.ya9{bottom:746.462533pt;}
.y38{bottom:746.464533pt;}
.ybd{bottom:746.595867pt;}
.yda{bottom:747.662533pt;}
.y16e{bottom:751.345333pt;}
.y12d{bottom:751.347467pt;}
.y6a{bottom:752.210000pt;}
.y7{bottom:756.783067pt;}
.ya8{bottom:762.462533pt;}
.y37{bottom:762.464533pt;}
.ybc{bottom:762.595867pt;}
.y16d{bottom:764.678667pt;}
.y12c{bottom:764.680800pt;}
.y69{bottom:766.082000pt;}
.y16c{bottom:778.012000pt;}
.y12b{bottom:778.014133pt;}
.ya7{bottom:778.462533pt;}
.y36{bottom:778.464533pt;}
.ybb{bottom:778.595867pt;}
.y68{bottom:778.837867pt;}
.y16b{bottom:791.345333pt;}
.y12a{bottom:791.347467pt;}
.ya0{bottom:794.462533pt;}
.y35{bottom:794.464533pt;}
.y67{bottom:794.477867pt;}
.yba{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y16a{bottom:804.678667pt;}
.y129{bottom:804.680800pt;}
.y9f{bottom:810.462533pt;}
.y34{bottom:810.464533pt;}
.yb9{bottom:810.595867pt;}
.y169{bottom:818.012000pt;}
.y128{bottom:818.014133pt;}
.y66{bottom:826.344533pt;}
.y9e{bottom:826.462533pt;}
.y33{bottom:826.464533pt;}
.yb8{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y168{bottom:831.345333pt;}
.y127{bottom:831.347467pt;}
.y65{bottom:842.344533pt;}
.y9d{bottom:842.462533pt;}
.y32{bottom:842.464533pt;}
.yb7{bottom:842.595867pt;}
.y167{bottom:844.678667pt;}
.y126{bottom:844.680800pt;}
.y166{bottom:858.012000pt;}
.y125{bottom:858.014133pt;}
.y64{bottom:858.344533pt;}
.y9c{bottom:858.462533pt;}
.y31{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y165{bottom:871.345333pt;}
.y124{bottom:871.347467pt;}
.yb6{bottom:874.235867pt;}
.y9b{bottom:874.462533pt;}
.y30{bottom:874.464533pt;}
.y164{bottom:884.678667pt;}
.y123{bottom:884.680800pt;}
.y109{bottom:890.102533pt;}
.y63{bottom:890.224533pt;}
.y9a{bottom:890.462533pt;}
.y2f{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y163{bottom:898.012000pt;}
.y122{bottom:898.014133pt;}
.y99{bottom:906.462533pt;}
.y162{bottom:911.345333pt;}
.y121{bottom:911.347467pt;}
.yd9{bottom:922.102533pt;}
.y2e{bottom:922.104533pt;}
.y98{bottom:922.462533pt;}
.y161{bottom:924.678667pt;}
.y120{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.ya6{bottom:1006.588000pt;}
.y97{bottom:1006.594400pt;}
.yd8{bottom:1006.596800pt;}
.y160{bottom:1006.598667pt;}
.yc1{bottom:1006.598800pt;}
.y108{bottom:1006.602000pt;}
.yb5{bottom:1006.602933pt;}
.y104{bottom:1006.611067pt;}
.y2c{bottom:1009.857333pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h15{height:29.637300pt;}
.h14{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h11{height:33.351562pt;}
.he{height:37.057292pt;}
.hd{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.859942pt;}
.h9{height:38.880208pt;}
.h13{height:39.200000pt;}
.h12{height:43.288357pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x27{left:88.818933pt;}
.x32{left:90.708800pt;}
.x26{left:91.658133pt;}
.x4{left:94.488133pt;}
.x28{left:96.381600pt;}
.xc{left:98.268667pt;}
.x30{left:109.606400pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.xb{left:128.642000pt;}
.x24{left:153.070800pt;}
.x22{left:174.236267pt;}
.x25{left:176.791467pt;}
.x5{left:189.223467pt;}
.x2f{left:191.609200pt;}
.x29{left:228.669600pt;}
.x2d{left:236.264267pt;}
.x2e{left:395.005600pt;}
.x2a{left:402.536267pt;}
.x9{left:404.481333pt;}
.x19{left:406.292933pt;}
.x14{left:420.835200pt;}
.x21{left:425.195867pt;}
.x7{left:427.090133pt;}
.x33{left:428.980800pt;}
.x10{left:431.682000pt;}
.x16{left:436.535333pt;}
.x12{left:445.922000pt;}
.x31{left:447.878400pt;}
.xf{left:451.682000pt;}
.x11{left:453.935333pt;}
.x20{left:455.435867pt;}
.x15{left:516.199200pt;}
.xe{left:518.628667pt;}
.xd{left:525.908667pt;}
.x13{left:527.295333pt;}
.x2b{left:561.277600pt;}
.x2c{left:568.840267pt;}
.x17{left:584.500000pt;}
.x1f{left:589.770933pt;}
.x1a{left:591.244933pt;}
.x18{left:599.546267pt;}
.x1b{left:605.935867pt;}
.x2{left:616.324800pt;}
.x1c{left:629.373600pt;}
.x34{left:641.524800pt;}
.x1e{left:647.459200pt;}
.x1d{left:658.556533pt;}
.x23{left:666.353600pt;}
}




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