
    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_ee51b527386f8fa504191fae.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_3cbbcd15c59d9274d420747d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_bf5d70278d84d93de2a7c734.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_87cd6af7e8d5d52eb04e2c81.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fa3e40bd1653273b44a9cdba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a23c2fc4271677dae32571a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_daa51590206f4d7a7908370a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-2.160000px;}
.ls41{letter-spacing:-1.656000px;}
.ls29{letter-spacing:-1.512000px;}
.ls24{letter-spacing:-1.440000px;}
.ls32{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.936000px;}
.ls4a{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls39{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.276000px;}
.ls1c{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls3d{letter-spacing:-0.059760px;}
.ls13{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls42{letter-spacing:0.151200px;}
.lsb{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.312000px;}
.ls12{letter-spacing:0.317424px;}
.ls10{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.330000px;}
.lse{letter-spacing:0.336000px;}
.lsf{letter-spacing:0.342000px;}
.ls2d{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.864000px;}
.ls2f{letter-spacing:1.152000px;}
.ls49{letter-spacing:1.224000px;}
.lsc{letter-spacing:1.440000px;}
.ls44{letter-spacing:1.584000px;}
.ls1f{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.880000px;}
.ls7{letter-spacing:3.600000px;}
.ls2b{letter-spacing:4.320000px;}
.ls38{letter-spacing:4.327200px;}
.ls31{letter-spacing:5.025600px;}
.ls5{letter-spacing:5.040000px;}
.ls25{letter-spacing:5.760000px;}
.ls3{letter-spacing:6.480000px;}
.ls2{letter-spacing:7.200000px;}
.ls2a{letter-spacing:7.207200px;}
.ls20{letter-spacing:7.920000px;}
.ls27{letter-spacing:8.640000px;}
.ls30{letter-spacing:9.360000px;}
.ls40{letter-spacing:10.080000px;}
.lsa{letter-spacing:10.800000px;}
.ls3b{letter-spacing:11.520000px;}
.ls0{letter-spacing:11.527200px;}
.ls4{letter-spacing:12.240000px;}
.ls8{letter-spacing:12.960000px;}
.ls9{letter-spacing:13.680000px;}
.ls37{letter-spacing:13.687200px;}
.ls36{letter-spacing:14.400000px;}
.ls34{letter-spacing:15.120000px;}
.ls3e{letter-spacing:15.840000px;}
.ls3c{letter-spacing:16.560000px;}
.ls3f{letter-spacing:17.280000px;}
.ls43{letter-spacing:18.000000px;}
.ls47{letter-spacing:18.720000px;}
.ls33{letter-spacing:20.160000px;}
.ls2c{letter-spacing:22.320000px;}
.ls21{letter-spacing:25.920000px;}
.ls45{letter-spacing:54.864000px;}
.ls46{letter-spacing:87.120000px;}
.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;}
}
.ws9f{word-spacing:-19.584000px;}
.ws5d{word-spacing:-18.864000px;}
.ws78{word-spacing:-18.720000px;}
.ws99{word-spacing:-18.648000px;}
.ws68{word-spacing:-18.432000px;}
.ws0{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws36{word-spacing:-18.144000px;}
.ws35{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws4d{word-spacing:-17.568000px;}
.ws7f{word-spacing:-17.496000px;}
.ws80{word-spacing:-17.424000px;}
.ws37{word-spacing:-17.280000px;}
.ws4e{word-spacing:-17.208000px;}
.wsb3{word-spacing:-17.064000px;}
.ws5c{word-spacing:-16.560000px;}
.ws4f{word-spacing:-16.488000px;}
.wsc0{word-spacing:-15.840000px;}
.ws8a{word-spacing:-13.446000px;}
.ws7{word-spacing:-11.712000px;}
.ws6d{word-spacing:-4.320000px;}
.ws96{word-spacing:-4.032000px;}
.ws74{word-spacing:-3.744000px;}
.ws60{word-spacing:-3.600000px;}
.ws61{word-spacing:-3.312000px;}
.ws98{word-spacing:-3.168000px;}
.ws3e{word-spacing:-3.024000px;}
.ws3c{word-spacing:-2.880000px;}
.ws9b{word-spacing:-2.664000px;}
.ws3d{word-spacing:-2.592000px;}
.ws3b{word-spacing:-2.304000px;}
.ws22{word-spacing:-2.160000px;}
.wsbb{word-spacing:-2.088000px;}
.wsa9{word-spacing:-2.016000px;}
.ws21{word-spacing:-1.872000px;}
.wsa2{word-spacing:-1.656000px;}
.ws16{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.440000px;}
.ws17{word-spacing:-1.152000px;}
.ws42{word-spacing:-0.864000px;}
.ws3a{word-spacing:-0.720000px;}
.ws89{word-spacing:-0.576000px;}
.ws86{word-spacing:-0.504000px;}
.ws43{word-spacing:-0.432000px;}
.ws5e{word-spacing:-0.288000px;}
.ws75{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.144000px;}
.ws50{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws5f{word-spacing:0.072000px;}
.wsa{word-spacing:0.144000px;}
.ws18{word-spacing:0.216000px;}
.ws9{word-spacing:0.288000px;}
.wsf{word-spacing:0.576000px;}
.wsd{word-spacing:0.720000px;}
.ws2b{word-spacing:0.792000px;}
.ws6c{word-spacing:0.864000px;}
.ws65{word-spacing:0.936000px;}
.ws55{word-spacing:1.008000px;}
.wsaa{word-spacing:1.224000px;}
.ws30{word-spacing:1.296000px;}
.wse{word-spacing:1.440000px;}
.ws5b{word-spacing:1.512000px;}
.ws83{word-spacing:1.656000px;}
.ws1c{word-spacing:1.728000px;}
.ws49{word-spacing:2.016000px;}
.ws40{word-spacing:2.088000px;}
.ws3f{word-spacing:2.160000px;}
.ws93{word-spacing:2.232000px;}
.ws9e{word-spacing:2.376000px;}
.ws41{word-spacing:2.448000px;}
.ws38{word-spacing:2.736000px;}
.ws1e{word-spacing:2.880000px;}
.wsbc{word-spacing:3.024000px;}
.ws7a{word-spacing:3.096000px;}
.ws26{word-spacing:3.168000px;}
.ws2f{word-spacing:3.456000px;}
.ws2e{word-spacing:3.600000px;}
.ws27{word-spacing:3.816000px;}
.ws39{word-spacing:3.888000px;}
.ws56{word-spacing:4.176000px;}
.ws57{word-spacing:4.320000px;}
.wsc3{word-spacing:4.536000px;}
.ws62{word-spacing:4.608000px;}
.ws53{word-spacing:4.896000px;}
.ws20{word-spacing:5.040000px;}
.wsa3{word-spacing:5.256000px;}
.ws1f{word-spacing:5.328000px;}
.ws4b{word-spacing:5.616000px;}
.ws69{word-spacing:5.688000px;}
.ws54{word-spacing:5.760000px;}
.ws32{word-spacing:5.850000px;}
.ws31{word-spacing:5.856000px;}
.ws7e{word-spacing:5.976000px;}
.ws4c{word-spacing:6.048000px;}
.ws44{word-spacing:6.336000px;}
.wsa0{word-spacing:6.408000px;}
.ws45{word-spacing:6.480000px;}
.wsa5{word-spacing:6.624000px;}
.ws46{word-spacing:6.768000px;}
.ws14{word-spacing:7.056000px;}
.ws13{word-spacing:7.200000px;}
.wsb7{word-spacing:7.272000px;}
.wsc5{word-spacing:7.344000px;}
.ws2c{word-spacing:7.488000px;}
.wsab{word-spacing:7.704000px;}
.ws81{word-spacing:7.776000px;}
.ws47{word-spacing:7.920000px;}
.ws6f{word-spacing:8.136000px;}
.ws48{word-spacing:8.208000px;}
.ws12{word-spacing:8.496000px;}
.ws10{word-spacing:8.640000px;}
.ws9a{word-spacing:8.712000px;}
.wsc1{word-spacing:8.784000px;}
.ws23{word-spacing:8.928000px;}
.ws6e{word-spacing:9.216000px;}
.ws67{word-spacing:9.288000px;}
.ws11{word-spacing:9.360000px;}
.ws66{word-spacing:9.648000px;}
.ws97{word-spacing:9.792000px;}
.ws6b{word-spacing:9.936000px;}
.ws6a{word-spacing:10.080000px;}
.ws2d{word-spacing:10.368000px;}
.ws51{word-spacing:10.656000px;}
.wsa4{word-spacing:10.728000px;}
.ws25{word-spacing:10.800000px;}
.wsc7{word-spacing:10.944000px;}
.ws52{word-spacing:11.016000px;}
.ws24{word-spacing:11.088000px;}
.ws95{word-spacing:11.376000px;}
.wsc{word-spacing:11.520000px;}
.wsa7{word-spacing:11.664000px;}
.ws9d{word-spacing:11.736000px;}
.wsb{word-spacing:11.808000px;}
.ws1b{word-spacing:12.096000px;}
.ws1a{word-spacing:12.240000px;}
.ws19{word-spacing:12.528000px;}
.ws28{word-spacing:12.816000px;}
.wsa1{word-spacing:12.888000px;}
.ws2a{word-spacing:12.960000px;}
.wsad{word-spacing:13.032000px;}
.wsb8{word-spacing:13.104000px;}
.ws29{word-spacing:13.248000px;}
.ws59{word-spacing:13.536000px;}
.ws5a{word-spacing:13.680000px;}
.ws79{word-spacing:13.968000px;}
.ws76{word-spacing:14.400000px;}
.ws77{word-spacing:14.688000px;}
.ws34{word-spacing:14.880000px;}
.ws33{word-spacing:14.886000px;}
.ws73{word-spacing:14.976000px;}
.ws58{word-spacing:15.120000px;}
.wsc8{word-spacing:15.696000px;}
.ws82{word-spacing:15.840000px;}
.ws94{word-spacing:16.128000px;}
.ws91{word-spacing:16.416000px;}
.ws92{word-spacing:16.560000px;}
.ws90{word-spacing:16.848000px;}
.ws87{word-spacing:17.280000px;}
.wsb1{word-spacing:17.568000px;}
.ws88{word-spacing:18.000000px;}
.wscb{word-spacing:18.288000px;}
.wsb2{word-spacing:18.720000px;}
.ws72{word-spacing:20.016000px;}
.ws71{word-spacing:20.160000px;}
.ws70{word-spacing:20.448000px;}
.ws7b{word-spacing:20.880000px;}
.ws7c{word-spacing:21.168000px;}
.ws63{word-spacing:22.320000px;}
.ws64{word-spacing:22.608000px;}
.wsc4{word-spacing:23.040000px;}
.ws85{word-spacing:24.480000px;}
.wsb6{word-spacing:25.056000px;}
.wsb4{word-spacing:25.200000px;}
.ws4a{word-spacing:25.920000px;}
.wsb5{word-spacing:26.064000px;}
.ws9c{word-spacing:26.208000px;}
.wsa6{word-spacing:26.640000px;}
.ws7d{word-spacing:28.080000px;}
.wsc6{word-spacing:33.120000px;}
.ws84{word-spacing:41.040000px;}
.ws8d{word-spacing:44.640000px;}
.wsbd{word-spacing:44.928000px;}
.wsbe{word-spacing:45.216000px;}
.wsbf{word-spacing:45.360000px;}
.wsac{word-spacing:46.800000px;}
.wsc2{word-spacing:51.120000px;}
.ws8c{word-spacing:57.600000px;}
.ws8f{word-spacing:65.088000px;}
.wsba{word-spacing:69.408000px;}
.wsb9{word-spacing:69.840000px;}
.wsc9{word-spacing:72.000000px;}
.wsca{word-spacing:72.288000px;}
.ws8b{word-spacing:72.720000px;}
.wsaf{word-spacing:78.408000px;}
.wsb0{word-spacing:78.480000px;}
.wsae{word-spacing:78.768000px;}
.wsa8{word-spacing:87.120000px;}
.ws8e{word-spacing:195.120000px;}
._e{margin-left:-5.097600px;}
._15{margin-left:-4.032000px;}
._5{margin-left:-3.024000px;}
._1{margin-left:-1.296000px;}
._0{width:1.008000px;}
._3{width:2.008800px;}
._8{width:3.672000px;}
._4{width:4.896000px;}
._9{width:6.336000px;}
._d{width:7.480800px;}
._6{width:8.496000px;}
._7{width:10.080000px;}
._2{width:11.592000px;}
._f{width:12.816000px;}
._1f{width:13.896000px;}
._12{width:14.904000px;}
._13{width:16.200000px;}
._1b{width:19.224000px;}
._10{width:20.592000px;}
._11{width:21.600000px;}
._1d{width:22.608000px;}
._a{width:25.344000px;}
._b{width:26.424000px;}
._18{width:44.424000px;}
._17{width:45.504000px;}
._19{width:47.088000px;}
._1c{width:50.760000px;}
._16{width:64.008000px;}
._1e{width:71.784000px;}
._1a{width:77.832000px;}
._14{width:199.872000px;}
._c{width:846.000000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.140000px;}
.yd3{bottom:4.319850px;}
.ya4{bottom:4.320000px;}
.ye9{bottom:14.580000px;}
.yeb{bottom:14.760000px;}
.ya9{bottom:25.020000px;}
.y132{bottom:45.360000px;}
.yc5{bottom:45.719850px;}
.y94{bottom:45.720000px;}
.y1{bottom:53.100000px;}
.y28{bottom:57.060000px;}
.yb0{bottom:66.420000px;}
.y92{bottom:76.680000px;}
.y97{bottom:76.860000px;}
.y54{bottom:107.460000px;}
.y127{bottom:111.240000px;}
.y104{bottom:112.860000px;}
.yc1{bottom:113.220000px;}
.y173{bottom:121.860000px;}
.ya2{bottom:123.660000px;}
.y140{bottom:125.640000px;}
.y12c{bottom:126.000000px;}
.y8c{bottom:126.360000px;}
.y52{bottom:127.080000px;}
.y10a{bottom:127.440000px;}
.y22{bottom:128.520000px;}
.yc0{bottom:133.920000px;}
.y128{bottom:138.600000px;}
.y102{bottom:152.820000px;}
.y172{bottom:153.000000px;}
.y156{bottom:154.440000px;}
.ybf{bottom:154.620000px;}
.ya1{bottom:155.160000px;}
.y71{bottom:155.880000px;}
.y13f{bottom:156.600000px;}
.y12b{bottom:156.960000px;}
.y8b{bottom:157.320000px;}
.y51{bottom:158.220000px;}
.y109{bottom:158.580000px;}
.y21{bottom:159.660000px;}
.y105{bottom:169.920000px;}
.y167{bottom:171.180000px;}
.ybe{bottom:175.320000px;}
.ye5{bottom:179.640000px;}
.y101{bottom:183.960000px;}
.y155{bottom:185.580000px;}
.ya0{bottom:186.120000px;}
.y70{bottom:187.020000px;}
.y13e{bottom:187.740000px;}
.y12a{bottom:188.100000px;}
.y8a{bottom:188.460000px;}
.y50{bottom:189.180000px;}
.y108{bottom:189.720000px;}
.y20{bottom:190.260000px;}
.y8f{bottom:190.620000px;}
.ybd{bottom:196.020000px;}
.ye4{bottom:210.600000px;}
.y100{bottom:214.920000px;}
.y171{bottom:215.100000px;}
.y154{bottom:216.540000px;}
.ybc{bottom:216.720000px;}
.y9f{bottom:217.260000px;}
.y6f{bottom:217.980000px;}
.y13d{bottom:218.700000px;}
.y129{bottom:219.060000px;}
.y89{bottom:219.420000px;}
.y4f{bottom:220.320000px;}
.y107{bottom:220.860000px;}
.y2f{bottom:221.760000px;}
.ye3{bottom:241.740000px;}
.yff{bottom:246.060000px;}
.y153{bottom:247.680000px;}
.y9e{bottom:248.220000px;}
.y6e{bottom:249.120000px;}
.y13c{bottom:249.840000px;}
.y88{bottom:250.560000px;}
.y4e{bottom:251.280000px;}
.y106{bottom:252.000000px;}
.y8e{bottom:252.360000px;}
.y1f{bottom:252.720000px;}
.ybb{bottom:258.120000px;}
.y164{bottom:264.419850px;}
.ye2{bottom:272.700000px;}
.yfe{bottom:277.020000px;}
.y170{bottom:277.200000px;}
.y152{bottom:278.640000px;}
.yba{bottom:278.820000px;}
.y9d{bottom:279.360000px;}
.y6d{bottom:280.080000px;}
.y13b{bottom:280.800000px;}
.y87{bottom:281.520000px;}
.y126{bottom:281.880000px;}
.y4d{bottom:282.240000px;}
.y8d{bottom:283.500000px;}
.y1e{bottom:283.860000px;}
.y9c{bottom:296.460000px;}
.yb9{bottom:299.520000px;}
.ye1{bottom:303.840000px;}
.yfd{bottom:308.160000px;}
.y151{bottom:309.780000px;}
.y6c{bottom:311.040000px;}
.y13a{bottom:311.940000px;}
.y86{bottom:312.660000px;}
.y125{bottom:313.020000px;}
.y4c{bottom:313.380000px;}
.y1d{bottom:314.820000px;}
.yb8{bottom:320.220000px;}
.ye0{bottom:334.800000px;}
.yfc{bottom:339.120000px;}
.y16f{bottom:339.300000px;}
.y150{bottom:340.740000px;}
.yb7{bottom:340.920000px;}
.y6b{bottom:342.180000px;}
.y139{bottom:342.900000px;}
.y85{bottom:343.620000px;}
.y124{bottom:343.980000px;}
.y4b{bottom:344.340000px;}
.y1c{bottom:345.960000px;}
.yb6{bottom:361.620000px;}
.ydf{bottom:365.940000px;}
.yfb{bottom:370.260000px;}
.y14f{bottom:371.880000px;}
.y6a{bottom:373.140000px;}
.y138{bottom:374.040000px;}
.y84{bottom:374.760000px;}
.y123{bottom:375.120000px;}
.y4a{bottom:375.480000px;}
.y1b{bottom:376.920000px;}
.yb5{bottom:382.320000px;}
.y31{bottom:386.820000px;}
.y99{bottom:390.420000px;}
.yde{bottom:396.900000px;}
.yfa{bottom:401.220000px;}
.y16e{bottom:401.400000px;}
.y14e{bottom:402.840000px;}
.y69{bottom:404.280000px;}
.y9b{bottom:405.000000px;}
.y83{bottom:405.720000px;}
.y122{bottom:406.080000px;}
.y49{bottom:406.440000px;}
.y1a{bottom:408.060000px;}
.y10c{bottom:418.500000px;}
.yb4{bottom:423.720000px;}
.ydd{bottom:428.040000px;}
.yf9{bottom:432.360000px;}
.y14d{bottom:433.980000px;}
.y68{bottom:435.240000px;}
.y9a{bottom:436.140000px;}
.y82{bottom:436.860000px;}
.y121{bottom:437.220000px;}
.y48{bottom:437.580000px;}
.y19{bottom:439.020000px;}
.yb3{bottom:444.420000px;}
.ydc{bottom:459.000000px;}
.y16d{bottom:463.140000px;}
.yf8{bottom:463.320000px;}
.y14c{bottom:464.940000px;}
.yaf{bottom:465.120000px;}
.y67{bottom:466.380000px;}
.y137{bottom:467.100000px;}
.y81{bottom:467.820000px;}
.y120{bottom:468.180000px;}
.y47{bottom:468.540000px;}
.y18{bottom:470.160000px;}
.y98{bottom:484.200000px;}
.yb2{bottom:490.140000px;}
.yf7{bottom:494.460000px;}
.y14b{bottom:496.080000px;}
.y66{bottom:497.340000px;}
.y136{bottom:498.240000px;}
.y80{bottom:498.960000px;}
.y11f{bottom:499.320000px;}
.y46{bottom:499.680000px;}
.y17{bottom:501.120000px;}
.yb1{bottom:510.840000px;}
.y157{bottom:511.560000px;}
.ydb{bottom:521.100000px;}
.yf6{bottom:525.420000px;}
.y16c{bottom:526.320000px;}
.y14a{bottom:526.680000px;}
.y65{bottom:528.480000px;}
.y135{bottom:529.200000px;}
.y7f{bottom:529.920000px;}
.y11e{bottom:530.280000px;}
.y45{bottom:530.640000px;}
.y16{bottom:532.260000px;}
.y96{bottom:547.020000px;}
.ye7{bottom:547.380000px;}
.yae{bottom:547.920000px;}
.yda{bottom:552.240000px;}
.yf5{bottom:556.560000px;}
.y16b{bottom:557.280000px;}
.y149{bottom:557.640000px;}
.y64{bottom:559.440000px;}
.y134{bottom:560.340000px;}
.y7e{bottom:561.060000px;}
.y11d{bottom:561.420000px;}
.y44{bottom:561.780000px;}
.y15{bottom:563.220000px;}
.yad{bottom:568.620000px;}
.ye6{bottom:573.660000px;}
.yd9{bottom:583.200000px;}
.yf4{bottom:588.240000px;}
.y16a{bottom:588.420000px;}
.y148{bottom:589.140000px;}
.yac{bottom:589.320000px;}
.y63{bottom:590.580000px;}
.y133{bottom:591.300000px;}
.y7d{bottom:592.020000px;}
.y11c{bottom:592.380000px;}
.y43{bottom:592.740000px;}
.y14{bottom:594.360000px;}
.y131{bottom:608.400000px;}
.yab{bottom:610.020000px;}
.yd8{bottom:614.340000px;}
.y169{bottom:619.200000px;}
.yf3{bottom:619.380000px;}
.y147{bottom:620.100000px;}
.y62{bottom:621.540000px;}
.y7c{bottom:623.160000px;}
.y11b{bottom:623.520000px;}
.y42{bottom:623.880000px;}
.y13{bottom:625.320000px;}
.yaa{bottom:630.720000px;}
.yf2{bottom:636.480000px;}
.y158{bottom:640.440000px;}
.y91{bottom:640.980000px;}
.yd7{bottom:645.300000px;}
.ya8{bottom:651.240000px;}
.y168{bottom:651.780000px;}
.y61{bottom:652.680000px;}
.y7b{bottom:654.120000px;}
.y11a{bottom:654.480000px;}
.y41{bottom:654.840000px;}
.y95{bottom:655.560000px;}
.y103{bottom:656.100000px;}
.y12{bottom:656.460000px;}
.yf0{bottom:668.340000px;}
.yd6{bottom:676.260000px;}
.y146{bottom:682.200000px;}
.yf1{bottom:682.920000px;}
.y60{bottom:683.640000px;}
.y7a{bottom:685.260000px;}
.y130{bottom:685.620000px;}
.y40{bottom:685.980000px;}
.y93{bottom:686.700000px;}
.y11{bottom:687.420000px;}
.ya7{bottom:692.640000px;}
.yd5{bottom:707.400000px;}
.ya6{bottom:713.340000px;}
.y166{bottom:713.880000px;}
.y5f{bottom:714.780000px;}
.y79{bottom:716.220000px;}
.y3f{bottom:716.580000px;}
.y12f{bottom:716.940000px;}
.y10{bottom:718.560000px;}
.yee{bottom:731.160000px;}
.y10b{bottom:733.680000px;}
.ya5{bottom:734.040000px;}
.yd4{bottom:738.360000px;}
.y145{bottom:744.300000px;}
.y165{bottom:744.840000px;}
.y5e{bottom:745.380000px;}
.yef{bottom:745.740000px;}
.y78{bottom:747.360000px;}
.y3e{bottom:747.720000px;}
.y12e{bottom:748.080000px;}
.y119{bottom:748.440000px;}
.y90{bottom:749.160000px;}
.yf{bottom:749.520000px;}
.ya3{bottom:755.640000px;}
.y30{bottom:765.180000px;}
.y163{bottom:775.979850px;}
.yd2{bottom:776.340000px;}
.y144{bottom:776.520000px;}
.y77{bottom:778.320000px;}
.y5d{bottom:779.040000px;}
.y118{bottom:779.400000px;}
.y3d{bottom:779.760000px;}
.ye{bottom:780.659850px;}
.y2e{bottom:780.660000px;}
.yec{bottom:793.980000px;}
.yd1{bottom:797.040000px;}
.y162{bottom:806.940000px;}
.yed{bottom:808.560000px;}
.y143{bottom:808.920000px;}
.y76{bottom:809.460000px;}
.y5c{bottom:810.180000px;}
.y117{bottom:810.360000px;}
.y3c{bottom:810.900000px;}
.yd{bottom:811.620000px;}
.yd0{bottom:817.740000px;}
.ycf{bottom:838.440000px;}
.y161{bottom:839.340000px;}
.y75{bottom:840.420000px;}
.y5b{bottom:841.140000px;}
.y142{bottom:841.320000px;}
.y116{bottom:841.500000px;}
.y3b{bottom:841.860000px;}
.yc{bottom:842.760000px;}
.yea{bottom:856.800000px;}
.yce{bottom:859.140000px;}
.y160{bottom:870.480000px;}
.y74{bottom:871.560000px;}
.y5a{bottom:872.280000px;}
.y115{bottom:872.640000px;}
.y3a{bottom:873.000000px;}
.y141{bottom:873.360000px;}
.yb{bottom:873.720000px;}
.ycd{bottom:879.840000px;}
.ye8{bottom:888.660000px;}
.y15f{bottom:901.440000px;}
.y73{bottom:902.520000px;}
.y59{bottom:903.240000px;}
.y114{bottom:903.780000px;}
.y39{bottom:903.960000px;}
.ya{bottom:904.860000px;}
.ycc{bottom:921.240000px;}
.y15e{bottom:932.400000px;}
.y58{bottom:934.380000px;}
.y113{bottom:934.920000px;}
.y38{bottom:935.100000px;}
.y72{bottom:935.640000px;}
.y9{bottom:935.820000px;}
.ycb{bottom:941.940000px;}
.yca{bottom:962.640000px;}
.y15d{bottom:963.360000px;}
.y57{bottom:965.340000px;}
.y112{bottom:965.880000px;}
.y37{bottom:966.060000px;}
.y8{bottom:966.960000px;}
.y12d{bottom:982.440000px;}
.yc9{bottom:983.340000px;}
.y15c{bottom:995.940000px;}
.y56{bottom:996.120000px;}
.y111{bottom:997.020000px;}
.y36{bottom:997.200000px;}
.y7{bottom:997.560000px;}
.y2d{bottom:997.920000px;}
.yc8{bottom:1003.860000px;}
.yc7{bottom:1024.560000px;}
.y15b{bottom:1026.900000px;}
.y55{bottom:1027.440000px;}
.y110{bottom:1027.980000px;}
.y35{bottom:1028.160000px;}
.y2c{bottom:1028.880000px;}
.y53{bottom:1044.540000px;}
.yc4{bottom:1045.260000px;}
.y15a{bottom:1058.040000px;}
.y10f{bottom:1059.120000px;}
.y34{bottom:1059.300000px;}
.y6{bottom:1060.020000px;}
.yc6{bottom:1070.280000px;}
.y159{bottom:1088.820000px;}
.y10e{bottom:1090.080000px;}
.y33{bottom:1090.260000px;}
.y5{bottom:1090.979850px;}
.y2b{bottom:1090.980000px;}
.yc3{bottom:1107.360000px;}
.y10d{bottom:1121.220000px;}
.y32{bottom:1121.400000px;}
.y4{bottom:1121.760000px;}
.y2a{bottom:1122.120000px;}
.yc2{bottom:1128.060000px;}
.y3{bottom:1152.720000px;}
.y29{bottom:1153.080000px;}
.y27{bottom:1181.684250px;}
.y26{bottom:1196.084250px;}
.y25{bottom:1210.484250px;}
.y24{bottom:1226.129250px;}
.y23{bottom:1242.882000px;}
.h2{height:18.360000px;}
.h11{height:20.520000px;}
.hf{height:20.700000px;}
.hd{height:20.701500px;}
.h14{height:30.960000px;}
.h15{height:31.138500px;}
.h7{height:33.328125px;}
.h6{height:33.331125px;}
.h3{height:39.830273px;}
.h10{height:41.400000px;}
.hc{height:62.100000px;}
.he{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h17{height:75.093750px;}
.h12{height:82.801500px;}
.ha{height:93.060000px;}
.hb{height:93.240000px;}
.h9{height:124.200000px;}
.h19{height:155.340000px;}
.h1a{height:186.300000px;}
.h16{height:186.660000px;}
.h8{height:403.560000px;}
.h18{height:435.058500px;}
.h13{height:564.120000px;}
.h1b{height:657.180000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:7.741500px;}
.w9{width:15.301500px;}
.w6{width:34.380000px;}
.we{width:54.540000px;}
.wd{width:61.560000px;}
.w10{width:73.621500px;}
.wf{width:95.040000px;}
.wb{width:126.360000px;}
.wc{width:126.720000px;}
.w4{width:132.300000px;}
.wa{width:144.720000px;}
.w7{width:324.540000px;}
.w8{width:362.700000px;}
.w5{width:570.960000px;}
.w3{width:703.978500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1d{left:12.780000px;}
.x21{left:39.780000px;}
.x5{left:50.820000px;}
.x4{left:93.600000px;}
.x7{left:102.060000px;}
.x9{left:107.100000px;}
.x19{left:110.520000px;}
.x11{left:113.400000px;}
.x1e{left:120.600000px;}
.xe{left:127.980000px;}
.x1f{left:134.100000px;}
.x8{left:146.700000px;}
.x20{left:154.440000px;}
.xa{left:227.340000px;}
.xb{left:235.080000px;}
.x13{left:248.400000px;}
.x1a{left:255.960000px;}
.x3{left:275.220000px;}
.x14{left:375.480000px;}
.x1c{left:383.220000px;}
.x2{left:407.520000px;}
.xf{left:452.520000px;}
.xc{left:459.360000px;}
.x10{left:460.620000px;}
.xd{left:465.120000px;}
.x15{left:502.920000px;}
.x16{left:565.200000px;}
.x17{left:620.460000px;}
.x1b{left:628.200000px;}
.x18{left:716.220000px;}
.x12{left:783.720000px;}
.x1{left:791.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-1.920000pt;}
.ls41{letter-spacing:-1.472000pt;}
.ls29{letter-spacing:-1.344000pt;}
.ls24{letter-spacing:-1.280000pt;}
.ls32{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls4a{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls39{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.245333pt;}
.ls1c{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls3d{letter-spacing:-0.053120pt;}
.ls13{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls42{letter-spacing:0.134400pt;}
.lsb{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.277333pt;}
.ls12{letter-spacing:0.282155pt;}
.ls10{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.298667pt;}
.lsf{letter-spacing:0.304000pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:1.024000pt;}
.ls49{letter-spacing:1.088000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls44{letter-spacing:1.408000pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls7{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:3.840000pt;}
.ls38{letter-spacing:3.846400pt;}
.ls31{letter-spacing:4.467200pt;}
.ls5{letter-spacing:4.480000pt;}
.ls25{letter-spacing:5.120000pt;}
.ls3{letter-spacing:5.760000pt;}
.ls2{letter-spacing:6.400000pt;}
.ls2a{letter-spacing:6.406400pt;}
.ls20{letter-spacing:7.040000pt;}
.ls27{letter-spacing:7.680000pt;}
.ls30{letter-spacing:8.320000pt;}
.ls40{letter-spacing:8.960000pt;}
.lsa{letter-spacing:9.600000pt;}
.ls3b{letter-spacing:10.240000pt;}
.ls0{letter-spacing:10.246400pt;}
.ls4{letter-spacing:10.880000pt;}
.ls8{letter-spacing:11.520000pt;}
.ls9{letter-spacing:12.160000pt;}
.ls37{letter-spacing:12.166400pt;}
.ls36{letter-spacing:12.800000pt;}
.ls34{letter-spacing:13.440000pt;}
.ls3e{letter-spacing:14.080000pt;}
.ls3c{letter-spacing:14.720000pt;}
.ls3f{letter-spacing:15.360000pt;}
.ls43{letter-spacing:16.000000pt;}
.ls47{letter-spacing:16.640000pt;}
.ls33{letter-spacing:17.920000pt;}
.ls2c{letter-spacing:19.840000pt;}
.ls21{letter-spacing:23.040000pt;}
.ls45{letter-spacing:48.768000pt;}
.ls46{letter-spacing:77.440000pt;}
.ws9f{word-spacing:-17.408000pt;}
.ws5d{word-spacing:-16.768000pt;}
.ws78{word-spacing:-16.640000pt;}
.ws99{word-spacing:-16.576000pt;}
.ws68{word-spacing:-16.384000pt;}
.ws0{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws36{word-spacing:-16.128000pt;}
.ws35{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws4d{word-spacing:-15.616000pt;}
.ws7f{word-spacing:-15.552000pt;}
.ws80{word-spacing:-15.488000pt;}
.ws37{word-spacing:-15.360000pt;}
.ws4e{word-spacing:-15.296000pt;}
.wsb3{word-spacing:-15.168000pt;}
.ws5c{word-spacing:-14.720000pt;}
.ws4f{word-spacing:-14.656000pt;}
.wsc0{word-spacing:-14.080000pt;}
.ws8a{word-spacing:-11.952000pt;}
.ws7{word-spacing:-10.410667pt;}
.ws6d{word-spacing:-3.840000pt;}
.ws96{word-spacing:-3.584000pt;}
.ws74{word-spacing:-3.328000pt;}
.ws60{word-spacing:-3.200000pt;}
.ws61{word-spacing:-2.944000pt;}
.ws98{word-spacing:-2.816000pt;}
.ws3e{word-spacing:-2.688000pt;}
.ws3c{word-spacing:-2.560000pt;}
.ws9b{word-spacing:-2.368000pt;}
.ws3d{word-spacing:-2.304000pt;}
.ws3b{word-spacing:-2.048000pt;}
.ws22{word-spacing:-1.920000pt;}
.wsbb{word-spacing:-1.856000pt;}
.wsa9{word-spacing:-1.792000pt;}
.ws21{word-spacing:-1.664000pt;}
.wsa2{word-spacing:-1.472000pt;}
.ws16{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.280000pt;}
.ws17{word-spacing:-1.024000pt;}
.ws42{word-spacing:-0.768000pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws89{word-spacing:-0.512000pt;}
.ws86{word-spacing:-0.448000pt;}
.ws43{word-spacing:-0.384000pt;}
.ws5e{word-spacing:-0.256000pt;}
.ws75{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws50{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.064000pt;}
.wsa{word-spacing:0.128000pt;}
.ws18{word-spacing:0.192000pt;}
.ws9{word-spacing:0.256000pt;}
.wsf{word-spacing:0.512000pt;}
.wsd{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.704000pt;}
.ws6c{word-spacing:0.768000pt;}
.ws65{word-spacing:0.832000pt;}
.ws55{word-spacing:0.896000pt;}
.wsaa{word-spacing:1.088000pt;}
.ws30{word-spacing:1.152000pt;}
.wse{word-spacing:1.280000pt;}
.ws5b{word-spacing:1.344000pt;}
.ws83{word-spacing:1.472000pt;}
.ws1c{word-spacing:1.536000pt;}
.ws49{word-spacing:1.792000pt;}
.ws40{word-spacing:1.856000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws93{word-spacing:1.984000pt;}
.ws9e{word-spacing:2.112000pt;}
.ws41{word-spacing:2.176000pt;}
.ws38{word-spacing:2.432000pt;}
.ws1e{word-spacing:2.560000pt;}
.wsbc{word-spacing:2.688000pt;}
.ws7a{word-spacing:2.752000pt;}
.ws26{word-spacing:2.816000pt;}
.ws2f{word-spacing:3.072000pt;}
.ws2e{word-spacing:3.200000pt;}
.ws27{word-spacing:3.392000pt;}
.ws39{word-spacing:3.456000pt;}
.ws56{word-spacing:3.712000pt;}
.ws57{word-spacing:3.840000pt;}
.wsc3{word-spacing:4.032000pt;}
.ws62{word-spacing:4.096000pt;}
.ws53{word-spacing:4.352000pt;}
.ws20{word-spacing:4.480000pt;}
.wsa3{word-spacing:4.672000pt;}
.ws1f{word-spacing:4.736000pt;}
.ws4b{word-spacing:4.992000pt;}
.ws69{word-spacing:5.056000pt;}
.ws54{word-spacing:5.120000pt;}
.ws32{word-spacing:5.200000pt;}
.ws31{word-spacing:5.205333pt;}
.ws7e{word-spacing:5.312000pt;}
.ws4c{word-spacing:5.376000pt;}
.ws44{word-spacing:5.632000pt;}
.wsa0{word-spacing:5.696000pt;}
.ws45{word-spacing:5.760000pt;}
.wsa5{word-spacing:5.888000pt;}
.ws46{word-spacing:6.016000pt;}
.ws14{word-spacing:6.272000pt;}
.ws13{word-spacing:6.400000pt;}
.wsb7{word-spacing:6.464000pt;}
.wsc5{word-spacing:6.528000pt;}
.ws2c{word-spacing:6.656000pt;}
.wsab{word-spacing:6.848000pt;}
.ws81{word-spacing:6.912000pt;}
.ws47{word-spacing:7.040000pt;}
.ws6f{word-spacing:7.232000pt;}
.ws48{word-spacing:7.296000pt;}
.ws12{word-spacing:7.552000pt;}
.ws10{word-spacing:7.680000pt;}
.ws9a{word-spacing:7.744000pt;}
.wsc1{word-spacing:7.808000pt;}
.ws23{word-spacing:7.936000pt;}
.ws6e{word-spacing:8.192000pt;}
.ws67{word-spacing:8.256000pt;}
.ws11{word-spacing:8.320000pt;}
.ws66{word-spacing:8.576000pt;}
.ws97{word-spacing:8.704000pt;}
.ws6b{word-spacing:8.832000pt;}
.ws6a{word-spacing:8.960000pt;}
.ws2d{word-spacing:9.216000pt;}
.ws51{word-spacing:9.472000pt;}
.wsa4{word-spacing:9.536000pt;}
.ws25{word-spacing:9.600000pt;}
.wsc7{word-spacing:9.728000pt;}
.ws52{word-spacing:9.792000pt;}
.ws24{word-spacing:9.856000pt;}
.ws95{word-spacing:10.112000pt;}
.wsc{word-spacing:10.240000pt;}
.wsa7{word-spacing:10.368000pt;}
.ws9d{word-spacing:10.432000pt;}
.wsb{word-spacing:10.496000pt;}
.ws1b{word-spacing:10.752000pt;}
.ws1a{word-spacing:10.880000pt;}
.ws19{word-spacing:11.136000pt;}
.ws28{word-spacing:11.392000pt;}
.wsa1{word-spacing:11.456000pt;}
.ws2a{word-spacing:11.520000pt;}
.wsad{word-spacing:11.584000pt;}
.wsb8{word-spacing:11.648000pt;}
.ws29{word-spacing:11.776000pt;}
.ws59{word-spacing:12.032000pt;}
.ws5a{word-spacing:12.160000pt;}
.ws79{word-spacing:12.416000pt;}
.ws76{word-spacing:12.800000pt;}
.ws77{word-spacing:13.056000pt;}
.ws34{word-spacing:13.226667pt;}
.ws33{word-spacing:13.232000pt;}
.ws73{word-spacing:13.312000pt;}
.ws58{word-spacing:13.440000pt;}
.wsc8{word-spacing:13.952000pt;}
.ws82{word-spacing:14.080000pt;}
.ws94{word-spacing:14.336000pt;}
.ws91{word-spacing:14.592000pt;}
.ws92{word-spacing:14.720000pt;}
.ws90{word-spacing:14.976000pt;}
.ws87{word-spacing:15.360000pt;}
.wsb1{word-spacing:15.616000pt;}
.ws88{word-spacing:16.000000pt;}
.wscb{word-spacing:16.256000pt;}
.wsb2{word-spacing:16.640000pt;}
.ws72{word-spacing:17.792000pt;}
.ws71{word-spacing:17.920000pt;}
.ws70{word-spacing:18.176000pt;}
.ws7b{word-spacing:18.560000pt;}
.ws7c{word-spacing:18.816000pt;}
.ws63{word-spacing:19.840000pt;}
.ws64{word-spacing:20.096000pt;}
.wsc4{word-spacing:20.480000pt;}
.ws85{word-spacing:21.760000pt;}
.wsb6{word-spacing:22.272000pt;}
.wsb4{word-spacing:22.400000pt;}
.ws4a{word-spacing:23.040000pt;}
.wsb5{word-spacing:23.168000pt;}
.ws9c{word-spacing:23.296000pt;}
.wsa6{word-spacing:23.680000pt;}
.ws7d{word-spacing:24.960000pt;}
.wsc6{word-spacing:29.440000pt;}
.ws84{word-spacing:36.480000pt;}
.ws8d{word-spacing:39.680000pt;}
.wsbd{word-spacing:39.936000pt;}
.wsbe{word-spacing:40.192000pt;}
.wsbf{word-spacing:40.320000pt;}
.wsac{word-spacing:41.600000pt;}
.wsc2{word-spacing:45.440000pt;}
.ws8c{word-spacing:51.200000pt;}
.ws8f{word-spacing:57.856000pt;}
.wsba{word-spacing:61.696000pt;}
.wsb9{word-spacing:62.080000pt;}
.wsc9{word-spacing:64.000000pt;}
.wsca{word-spacing:64.256000pt;}
.ws8b{word-spacing:64.640000pt;}
.wsaf{word-spacing:69.696000pt;}
.wsb0{word-spacing:69.760000pt;}
.wsae{word-spacing:70.016000pt;}
.wsa8{word-spacing:77.440000pt;}
.ws8e{word-spacing:173.440000pt;}
._e{margin-left:-4.531200pt;}
._15{margin-left:-3.584000pt;}
._5{margin-left:-2.688000pt;}
._1{margin-left:-1.152000pt;}
._0{width:0.896000pt;}
._3{width:1.785600pt;}
._8{width:3.264000pt;}
._4{width:4.352000pt;}
._9{width:5.632000pt;}
._d{width:6.649600pt;}
._6{width:7.552000pt;}
._7{width:8.960000pt;}
._2{width:10.304000pt;}
._f{width:11.392000pt;}
._1f{width:12.352000pt;}
._12{width:13.248000pt;}
._13{width:14.400000pt;}
._1b{width:17.088000pt;}
._10{width:18.304000pt;}
._11{width:19.200000pt;}
._1d{width:20.096000pt;}
._a{width:22.528000pt;}
._b{width:23.488000pt;}
._18{width:39.488000pt;}
._17{width:40.448000pt;}
._19{width:41.856000pt;}
._1c{width:45.120000pt;}
._16{width:56.896000pt;}
._1e{width:63.808000pt;}
._1a{width:69.184000pt;}
._14{width:177.664000pt;}
._c{width:752.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.680000pt;}
.yd3{bottom:3.839867pt;}
.ya4{bottom:3.840000pt;}
.ye9{bottom:12.960000pt;}
.yeb{bottom:13.120000pt;}
.ya9{bottom:22.240000pt;}
.y132{bottom:40.320000pt;}
.yc5{bottom:40.639867pt;}
.y94{bottom:40.640000pt;}
.y1{bottom:47.200000pt;}
.y28{bottom:50.720000pt;}
.yb0{bottom:59.040000pt;}
.y92{bottom:68.160000pt;}
.y97{bottom:68.320000pt;}
.y54{bottom:95.520000pt;}
.y127{bottom:98.880000pt;}
.y104{bottom:100.320000pt;}
.yc1{bottom:100.640000pt;}
.y173{bottom:108.320000pt;}
.ya2{bottom:109.920000pt;}
.y140{bottom:111.680000pt;}
.y12c{bottom:112.000000pt;}
.y8c{bottom:112.320000pt;}
.y52{bottom:112.960000pt;}
.y10a{bottom:113.280000pt;}
.y22{bottom:114.240000pt;}
.yc0{bottom:119.040000pt;}
.y128{bottom:123.200000pt;}
.y102{bottom:135.840000pt;}
.y172{bottom:136.000000pt;}
.y156{bottom:137.280000pt;}
.ybf{bottom:137.440000pt;}
.ya1{bottom:137.920000pt;}
.y71{bottom:138.560000pt;}
.y13f{bottom:139.200000pt;}
.y12b{bottom:139.520000pt;}
.y8b{bottom:139.840000pt;}
.y51{bottom:140.640000pt;}
.y109{bottom:140.960000pt;}
.y21{bottom:141.920000pt;}
.y105{bottom:151.040000pt;}
.y167{bottom:152.160000pt;}
.ybe{bottom:155.840000pt;}
.ye5{bottom:159.680000pt;}
.y101{bottom:163.520000pt;}
.y155{bottom:164.960000pt;}
.ya0{bottom:165.440000pt;}
.y70{bottom:166.240000pt;}
.y13e{bottom:166.880000pt;}
.y12a{bottom:167.200000pt;}
.y8a{bottom:167.520000pt;}
.y50{bottom:168.160000pt;}
.y108{bottom:168.640000pt;}
.y20{bottom:169.120000pt;}
.y8f{bottom:169.440000pt;}
.ybd{bottom:174.240000pt;}
.ye4{bottom:187.200000pt;}
.y100{bottom:191.040000pt;}
.y171{bottom:191.200000pt;}
.y154{bottom:192.480000pt;}
.ybc{bottom:192.640000pt;}
.y9f{bottom:193.120000pt;}
.y6f{bottom:193.760000pt;}
.y13d{bottom:194.400000pt;}
.y129{bottom:194.720000pt;}
.y89{bottom:195.040000pt;}
.y4f{bottom:195.840000pt;}
.y107{bottom:196.320000pt;}
.y2f{bottom:197.120000pt;}
.ye3{bottom:214.880000pt;}
.yff{bottom:218.720000pt;}
.y153{bottom:220.160000pt;}
.y9e{bottom:220.640000pt;}
.y6e{bottom:221.440000pt;}
.y13c{bottom:222.080000pt;}
.y88{bottom:222.720000pt;}
.y4e{bottom:223.360000pt;}
.y106{bottom:224.000000pt;}
.y8e{bottom:224.320000pt;}
.y1f{bottom:224.640000pt;}
.ybb{bottom:229.440000pt;}
.y164{bottom:235.039867pt;}
.ye2{bottom:242.400000pt;}
.yfe{bottom:246.240000pt;}
.y170{bottom:246.400000pt;}
.y152{bottom:247.680000pt;}
.yba{bottom:247.840000pt;}
.y9d{bottom:248.320000pt;}
.y6d{bottom:248.960000pt;}
.y13b{bottom:249.600000pt;}
.y87{bottom:250.240000pt;}
.y126{bottom:250.560000pt;}
.y4d{bottom:250.880000pt;}
.y8d{bottom:252.000000pt;}
.y1e{bottom:252.320000pt;}
.y9c{bottom:263.520000pt;}
.yb9{bottom:266.240000pt;}
.ye1{bottom:270.080000pt;}
.yfd{bottom:273.920000pt;}
.y151{bottom:275.360000pt;}
.y6c{bottom:276.480000pt;}
.y13a{bottom:277.280000pt;}
.y86{bottom:277.920000pt;}
.y125{bottom:278.240000pt;}
.y4c{bottom:278.560000pt;}
.y1d{bottom:279.840000pt;}
.yb8{bottom:284.640000pt;}
.ye0{bottom:297.600000pt;}
.yfc{bottom:301.440000pt;}
.y16f{bottom:301.600000pt;}
.y150{bottom:302.880000pt;}
.yb7{bottom:303.040000pt;}
.y6b{bottom:304.160000pt;}
.y139{bottom:304.800000pt;}
.y85{bottom:305.440000pt;}
.y124{bottom:305.760000pt;}
.y4b{bottom:306.080000pt;}
.y1c{bottom:307.520000pt;}
.yb6{bottom:321.440000pt;}
.ydf{bottom:325.280000pt;}
.yfb{bottom:329.120000pt;}
.y14f{bottom:330.560000pt;}
.y6a{bottom:331.680000pt;}
.y138{bottom:332.480000pt;}
.y84{bottom:333.120000pt;}
.y123{bottom:333.440000pt;}
.y4a{bottom:333.760000pt;}
.y1b{bottom:335.040000pt;}
.yb5{bottom:339.840000pt;}
.y31{bottom:343.840000pt;}
.y99{bottom:347.040000pt;}
.yde{bottom:352.800000pt;}
.yfa{bottom:356.640000pt;}
.y16e{bottom:356.800000pt;}
.y14e{bottom:358.080000pt;}
.y69{bottom:359.360000pt;}
.y9b{bottom:360.000000pt;}
.y83{bottom:360.640000pt;}
.y122{bottom:360.960000pt;}
.y49{bottom:361.280000pt;}
.y1a{bottom:362.720000pt;}
.y10c{bottom:372.000000pt;}
.yb4{bottom:376.640000pt;}
.ydd{bottom:380.480000pt;}
.yf9{bottom:384.320000pt;}
.y14d{bottom:385.760000pt;}
.y68{bottom:386.880000pt;}
.y9a{bottom:387.680000pt;}
.y82{bottom:388.320000pt;}
.y121{bottom:388.640000pt;}
.y48{bottom:388.960000pt;}
.y19{bottom:390.240000pt;}
.yb3{bottom:395.040000pt;}
.ydc{bottom:408.000000pt;}
.y16d{bottom:411.680000pt;}
.yf8{bottom:411.840000pt;}
.y14c{bottom:413.280000pt;}
.yaf{bottom:413.440000pt;}
.y67{bottom:414.560000pt;}
.y137{bottom:415.200000pt;}
.y81{bottom:415.840000pt;}
.y120{bottom:416.160000pt;}
.y47{bottom:416.480000pt;}
.y18{bottom:417.920000pt;}
.y98{bottom:430.400000pt;}
.yb2{bottom:435.680000pt;}
.yf7{bottom:439.520000pt;}
.y14b{bottom:440.960000pt;}
.y66{bottom:442.080000pt;}
.y136{bottom:442.880000pt;}
.y80{bottom:443.520000pt;}
.y11f{bottom:443.840000pt;}
.y46{bottom:444.160000pt;}
.y17{bottom:445.440000pt;}
.yb1{bottom:454.080000pt;}
.y157{bottom:454.720000pt;}
.ydb{bottom:463.200000pt;}
.yf6{bottom:467.040000pt;}
.y16c{bottom:467.840000pt;}
.y14a{bottom:468.160000pt;}
.y65{bottom:469.760000pt;}
.y135{bottom:470.400000pt;}
.y7f{bottom:471.040000pt;}
.y11e{bottom:471.360000pt;}
.y45{bottom:471.680000pt;}
.y16{bottom:473.120000pt;}
.y96{bottom:486.240000pt;}
.ye7{bottom:486.560000pt;}
.yae{bottom:487.040000pt;}
.yda{bottom:490.880000pt;}
.yf5{bottom:494.720000pt;}
.y16b{bottom:495.360000pt;}
.y149{bottom:495.680000pt;}
.y64{bottom:497.280000pt;}
.y134{bottom:498.080000pt;}
.y7e{bottom:498.720000pt;}
.y11d{bottom:499.040000pt;}
.y44{bottom:499.360000pt;}
.y15{bottom:500.640000pt;}
.yad{bottom:505.440000pt;}
.ye6{bottom:509.920000pt;}
.yd9{bottom:518.400000pt;}
.yf4{bottom:522.880000pt;}
.y16a{bottom:523.040000pt;}
.y148{bottom:523.680000pt;}
.yac{bottom:523.840000pt;}
.y63{bottom:524.960000pt;}
.y133{bottom:525.600000pt;}
.y7d{bottom:526.240000pt;}
.y11c{bottom:526.560000pt;}
.y43{bottom:526.880000pt;}
.y14{bottom:528.320000pt;}
.y131{bottom:540.800000pt;}
.yab{bottom:542.240000pt;}
.yd8{bottom:546.080000pt;}
.y169{bottom:550.400000pt;}
.yf3{bottom:550.560000pt;}
.y147{bottom:551.200000pt;}
.y62{bottom:552.480000pt;}
.y7c{bottom:553.920000pt;}
.y11b{bottom:554.240000pt;}
.y42{bottom:554.560000pt;}
.y13{bottom:555.840000pt;}
.yaa{bottom:560.640000pt;}
.yf2{bottom:565.760000pt;}
.y158{bottom:569.280000pt;}
.y91{bottom:569.760000pt;}
.yd7{bottom:573.600000pt;}
.ya8{bottom:578.880000pt;}
.y168{bottom:579.360000pt;}
.y61{bottom:580.160000pt;}
.y7b{bottom:581.440000pt;}
.y11a{bottom:581.760000pt;}
.y41{bottom:582.080000pt;}
.y95{bottom:582.720000pt;}
.y103{bottom:583.200000pt;}
.y12{bottom:583.520000pt;}
.yf0{bottom:594.080000pt;}
.yd6{bottom:601.120000pt;}
.y146{bottom:606.400000pt;}
.yf1{bottom:607.040000pt;}
.y60{bottom:607.680000pt;}
.y7a{bottom:609.120000pt;}
.y130{bottom:609.440000pt;}
.y40{bottom:609.760000pt;}
.y93{bottom:610.400000pt;}
.y11{bottom:611.040000pt;}
.ya7{bottom:615.680000pt;}
.yd5{bottom:628.800000pt;}
.ya6{bottom:634.080000pt;}
.y166{bottom:634.560000pt;}
.y5f{bottom:635.360000pt;}
.y79{bottom:636.640000pt;}
.y3f{bottom:636.960000pt;}
.y12f{bottom:637.280000pt;}
.y10{bottom:638.720000pt;}
.yee{bottom:649.920000pt;}
.y10b{bottom:652.160000pt;}
.ya5{bottom:652.480000pt;}
.yd4{bottom:656.320000pt;}
.y145{bottom:661.600000pt;}
.y165{bottom:662.080000pt;}
.y5e{bottom:662.560000pt;}
.yef{bottom:662.880000pt;}
.y78{bottom:664.320000pt;}
.y3e{bottom:664.640000pt;}
.y12e{bottom:664.960000pt;}
.y119{bottom:665.280000pt;}
.y90{bottom:665.920000pt;}
.yf{bottom:666.240000pt;}
.ya3{bottom:671.680000pt;}
.y30{bottom:680.160000pt;}
.y163{bottom:689.759867pt;}
.yd2{bottom:690.080000pt;}
.y144{bottom:690.240000pt;}
.y77{bottom:691.840000pt;}
.y5d{bottom:692.480000pt;}
.y118{bottom:692.800000pt;}
.y3d{bottom:693.120000pt;}
.ye{bottom:693.919867pt;}
.y2e{bottom:693.920000pt;}
.yec{bottom:705.760000pt;}
.yd1{bottom:708.480000pt;}
.y162{bottom:717.280000pt;}
.yed{bottom:718.720000pt;}
.y143{bottom:719.040000pt;}
.y76{bottom:719.520000pt;}
.y5c{bottom:720.160000pt;}
.y117{bottom:720.320000pt;}
.y3c{bottom:720.800000pt;}
.yd{bottom:721.440000pt;}
.yd0{bottom:726.880000pt;}
.ycf{bottom:745.280000pt;}
.y161{bottom:746.080000pt;}
.y75{bottom:747.040000pt;}
.y5b{bottom:747.680000pt;}
.y142{bottom:747.840000pt;}
.y116{bottom:748.000000pt;}
.y3b{bottom:748.320000pt;}
.yc{bottom:749.120000pt;}
.yea{bottom:761.600000pt;}
.yce{bottom:763.680000pt;}
.y160{bottom:773.760000pt;}
.y74{bottom:774.720000pt;}
.y5a{bottom:775.360000pt;}
.y115{bottom:775.680000pt;}
.y3a{bottom:776.000000pt;}
.y141{bottom:776.320000pt;}
.yb{bottom:776.640000pt;}
.ycd{bottom:782.080000pt;}
.ye8{bottom:789.920000pt;}
.y15f{bottom:801.280000pt;}
.y73{bottom:802.240000pt;}
.y59{bottom:802.880000pt;}
.y114{bottom:803.360000pt;}
.y39{bottom:803.520000pt;}
.ya{bottom:804.320000pt;}
.ycc{bottom:818.880000pt;}
.y15e{bottom:828.800000pt;}
.y58{bottom:830.560000pt;}
.y113{bottom:831.040000pt;}
.y38{bottom:831.200000pt;}
.y72{bottom:831.680000pt;}
.y9{bottom:831.840000pt;}
.ycb{bottom:837.280000pt;}
.yca{bottom:855.680000pt;}
.y15d{bottom:856.320000pt;}
.y57{bottom:858.080000pt;}
.y112{bottom:858.560000pt;}
.y37{bottom:858.720000pt;}
.y8{bottom:859.520000pt;}
.y12d{bottom:873.280000pt;}
.yc9{bottom:874.080000pt;}
.y15c{bottom:885.280000pt;}
.y56{bottom:885.440000pt;}
.y111{bottom:886.240000pt;}
.y36{bottom:886.400000pt;}
.y7{bottom:886.720000pt;}
.y2d{bottom:887.040000pt;}
.yc8{bottom:892.320000pt;}
.yc7{bottom:910.720000pt;}
.y15b{bottom:912.800000pt;}
.y55{bottom:913.280000pt;}
.y110{bottom:913.760000pt;}
.y35{bottom:913.920000pt;}
.y2c{bottom:914.560000pt;}
.y53{bottom:928.480000pt;}
.yc4{bottom:929.120000pt;}
.y15a{bottom:940.480000pt;}
.y10f{bottom:941.440000pt;}
.y34{bottom:941.600000pt;}
.y6{bottom:942.240000pt;}
.yc6{bottom:951.360000pt;}
.y159{bottom:967.840000pt;}
.y10e{bottom:968.960000pt;}
.y33{bottom:969.120000pt;}
.y5{bottom:969.759867pt;}
.y2b{bottom:969.760000pt;}
.yc3{bottom:984.320000pt;}
.y10d{bottom:996.640000pt;}
.y32{bottom:996.800000pt;}
.y4{bottom:997.120000pt;}
.y2a{bottom:997.440000pt;}
.yc2{bottom:1002.720000pt;}
.y3{bottom:1024.640000pt;}
.y29{bottom:1024.960000pt;}
.y27{bottom:1050.386000pt;}
.y26{bottom:1063.186000pt;}
.y25{bottom:1075.986000pt;}
.y24{bottom:1089.892667pt;}
.y23{bottom:1104.784000pt;}
.h2{height:16.320000pt;}
.h11{height:18.240000pt;}
.hf{height:18.400000pt;}
.hd{height:18.401333pt;}
.h14{height:27.520000pt;}
.h15{height:27.678667pt;}
.h7{height:29.625000pt;}
.h6{height:29.627667pt;}
.h3{height:35.404688pt;}
.h10{height:36.800000pt;}
.hc{height:55.200000pt;}
.he{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h17{height:66.750000pt;}
.h12{height:73.601333pt;}
.ha{height:82.720000pt;}
.hb{height:82.880000pt;}
.h9{height:110.400000pt;}
.h19{height:138.080000pt;}
.h1a{height:165.600000pt;}
.h16{height:165.920000pt;}
.h8{height:358.720000pt;}
.h18{height:386.718667pt;}
.h13{height:501.440000pt;}
.h1b{height:584.160000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:6.881333pt;}
.w9{width:13.601333pt;}
.w6{width:30.560000pt;}
.we{width:48.480000pt;}
.wd{width:54.720000pt;}
.w10{width:65.441333pt;}
.wf{width:84.480000pt;}
.wb{width:112.320000pt;}
.wc{width:112.640000pt;}
.w4{width:117.600000pt;}
.wa{width:128.640000pt;}
.w7{width:288.480000pt;}
.w8{width:322.400000pt;}
.w5{width:507.520000pt;}
.w3{width:625.758667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1d{left:11.360000pt;}
.x21{left:35.360000pt;}
.x5{left:45.173333pt;}
.x4{left:83.200000pt;}
.x7{left:90.720000pt;}
.x9{left:95.200000pt;}
.x19{left:98.240000pt;}
.x11{left:100.800000pt;}
.x1e{left:107.200000pt;}
.xe{left:113.760000pt;}
.x1f{left:119.200000pt;}
.x8{left:130.400000pt;}
.x20{left:137.280000pt;}
.xa{left:202.080000pt;}
.xb{left:208.960000pt;}
.x13{left:220.800000pt;}
.x1a{left:227.520000pt;}
.x3{left:244.640000pt;}
.x14{left:333.760000pt;}
.x1c{left:340.640000pt;}
.x2{left:362.240000pt;}
.xf{left:402.240000pt;}
.xc{left:408.320000pt;}
.x10{left:409.440000pt;}
.xd{left:413.440000pt;}
.x15{left:447.040000pt;}
.x16{left:502.400000pt;}
.x17{left:551.520000pt;}
.x1b{left:558.400000pt;}
.x18{left:636.640000pt;}
.x12{left:696.640000pt;}
.x1{left:703.360000pt;}
}




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