
    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_501e46c1230690a86ded3f77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_9e9ccda9f6954fa406ecee07.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_b1fba55a3298b487ec20e6a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_6c84b7a28d7fd3b09440355e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_577fedc22af9207cd569613e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_2b5cdfc3c3b83ad182117e6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_6d750e35535527bcb4fd8f7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_944658831ff533f2b5b5613d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_96f3d5d5bed0ea8b850755d0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6901518b5b261bad5b4c3766.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_7a483c486b54c80832c00b67.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.950200px;}
.v3{vertical-align:27.000000px;}
.ls3d{letter-spacing:-0.480960px;}
.ls21{letter-spacing:-0.420840px;}
.ls8{letter-spacing:-0.378000px;}
.ls12{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.240480px;}
.ls11{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.192240px;}
.ls23{letter-spacing:-0.180360px;}
.ls9{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.120240px;}
.lsa{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.083880px;}
.ls1e{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.065880px;}
.ls38{letter-spacing:-0.063000px;}
.ls20{letter-spacing:-0.060120px;}
.lsb{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.060120px;}
.ls3c{letter-spacing:0.063000px;}
.ls10{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.078156px;}
.ls28{letter-spacing:0.079200px;}
.lsd{letter-spacing:0.083880px;}
.ls3{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.120240px;}
.ls5{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.151200px;}
.lse{letter-spacing:0.156240px;}
.ls25{letter-spacing:0.158400px;}
.lsc{letter-spacing:0.167760px;}
.ls37{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.180360px;}
.ls39{letter-spacing:0.189000px;}
.ls17{letter-spacing:0.192240px;}
.ls31{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.ls13{letter-spacing:1.345680px;}
.ls2f{letter-spacing:1.800000px;}
.ls27{letter-spacing:2.181600px;}
.ls3b{letter-spacing:2.880000px;}
.ls1f{letter-spacing:2.894400px;}
.ls40{letter-spacing:2.923200px;}
.ls36{letter-spacing:2.952000px;}
.ls34{letter-spacing:3.240000px;}
.ls32{letter-spacing:3.600000px;}
.ls35{letter-spacing:3.960000px;}
.ls2c{letter-spacing:4.320000px;}
.ls1b{letter-spacing:4.327200px;}
.ls26{letter-spacing:4.334400px;}
.ls30{letter-spacing:4.680000px;}
.ls2b{letter-spacing:5.400000px;}
.ls4{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.120000px;}
.ls3e{letter-spacing:6.854400px;}
.ls29{letter-spacing:7.207200px;}
.ls15{letter-spacing:8.280000px;}
.ls3f{letter-spacing:8.287200px;}
.ls33{letter-spacing:37.390680px;}
.ls2a{letter-spacing:52.676640px;}
.ls41{letter-spacing:67.027320px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws6{word-spacing:-28.686960px;}
.ws25{word-spacing:-26.913600px;}
.ws8{word-spacing:-24.696000px;}
.ws7{word-spacing:-24.480000px;}
.ws39{word-spacing:-23.486400px;}
.wsc{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.wsd{word-spacing:-18.000000px;}
.ws3a{word-spacing:-17.928000px;}
.ws7a{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5d{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.640000px;}
.ws80{word-spacing:-15.813000px;}
.ws4a{word-spacing:-15.210360px;}
.ws8b{word-spacing:-15.150240px;}
.ws38{word-spacing:-15.090120px;}
.ws37{word-spacing:-15.030000px;}
.ws5e{word-spacing:-14.969880px;}
.ws82{word-spacing:-14.909760px;}
.ws49{word-spacing:-14.849640px;}
.ws5f{word-spacing:-14.789520px;}
.ws93{word-spacing:-14.609160px;}
.ws81{word-spacing:-14.549040px;}
.ws1{word-spacing:-13.587120px;}
.ws2{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.150000px;}
.ws3{word-spacing:-11.826000px;}
.ws48{word-spacing:-9.720000px;}
.wsa3{word-spacing:-4.752000px;}
.ws4b{word-spacing:-4.392000px;}
.ws18{word-spacing:-4.320000px;}
.ws8c{word-spacing:-4.032000px;}
.ws8d{word-spacing:-3.960000px;}
.ws30{word-spacing:-3.744000px;}
.ws66{word-spacing:-3.672000px;}
.ws9f{word-spacing:-3.600000px;}
.ws76{word-spacing:-3.312000px;}
.ws44{word-spacing:-3.271320px;}
.ws77{word-spacing:-3.240000px;}
.ws88{word-spacing:-2.952000px;}
.ws3b{word-spacing:-2.880000px;}
.ws63{word-spacing:-2.592000px;}
.ws56{word-spacing:-2.520000px;}
.ws57{word-spacing:-2.448000px;}
.ws54{word-spacing:-2.304000px;}
.ws55{word-spacing:-2.232000px;}
.ws2b{word-spacing:-2.160000px;}
.ws98{word-spacing:-1.944000px;}
.ws41{word-spacing:-1.872000px;}
.ws40{word-spacing:-1.800000px;}
.ws51{word-spacing:-1.512000px;}
.ws86{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.224000px;}
.ws3c{word-spacing:-1.152000px;}
.ws1d{word-spacing:-1.080000px;}
.ws4f{word-spacing:-0.864000px;}
.ws50{word-spacing:-0.792000px;}
.ws20{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.504000px;}
.ws1f{word-spacing:-0.432000px;}
.ws5a{word-spacing:-0.420840px;}
.ws16{word-spacing:-0.360720px;}
.ws35{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.234360px;}
.ws59{word-spacing:-0.180360px;}
.ws12{word-spacing:-0.167760px;}
.ws1e{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.120240px;}
.ws26{word-spacing:-0.096120px;}
.ws45{word-spacing:-0.083880px;}
.ws17{word-spacing:-0.072000px;}
.ws43{word-spacing:-0.060120px;}
.wse{word-spacing:0.000000px;}
.ws36{word-spacing:0.060120px;}
.wsf{word-spacing:0.065880px;}
.ws96{word-spacing:0.072000px;}
.ws14{word-spacing:0.083880px;}
.ws27{word-spacing:0.096120px;}
.ws4{word-spacing:0.108000px;}
.ws10{word-spacing:0.120240px;}
.ws85{word-spacing:0.126000px;}
.ws31{word-spacing:0.144000px;}
.ws11{word-spacing:0.162000px;}
.ws13{word-spacing:0.167760px;}
.ws5b{word-spacing:0.180360px;}
.ws34{word-spacing:0.216000px;}
.ws5c{word-spacing:0.240480px;}
.ws2d{word-spacing:0.288000px;}
.ws68{word-spacing:0.300600px;}
.ws2c{word-spacing:0.360000px;}
.ws95{word-spacing:0.420840px;}
.ws94{word-spacing:0.541080px;}
.ws69{word-spacing:0.576000px;}
.ws2f{word-spacing:0.648000px;}
.ws1a{word-spacing:0.720000px;}
.wsa4{word-spacing:0.936000px;}
.ws2e{word-spacing:1.008000px;}
.ws78{word-spacing:1.080000px;}
.ws23{word-spacing:1.296000px;}
.ws28{word-spacing:1.368000px;}
.ws24{word-spacing:1.440000px;}
.ws73{word-spacing:1.656000px;}
.ws62{word-spacing:1.728000px;}
.ws21{word-spacing:1.800000px;}
.ws74{word-spacing:2.016000px;}
.ws67{word-spacing:2.088000px;}
.ws42{word-spacing:2.160000px;}
.ws92{word-spacing:2.448000px;}
.ws58{word-spacing:2.520000px;}
.ws22{word-spacing:2.736000px;}
.ws19{word-spacing:2.808000px;}
.ws8a{word-spacing:2.880000px;}
.ws84{word-spacing:3.024000px;}
.ws89{word-spacing:3.168000px;}
.ws64{word-spacing:3.240000px;}
.ws83{word-spacing:3.402000px;}
.ws8f{word-spacing:3.456000px;}
.ws6d{word-spacing:3.528000px;}
.ws52{word-spacing:3.600000px;}
.ws61{word-spacing:3.816000px;}
.ws60{word-spacing:3.888000px;}
.ws4d{word-spacing:3.960000px;}
.ws65{word-spacing:4.176000px;}
.ws46{word-spacing:4.248000px;}
.ws47{word-spacing:4.320000px;}
.ws3d{word-spacing:4.536000px;}
.ws75{word-spacing:4.608000px;}
.ws7b{word-spacing:4.680000px;}
.ws7c{word-spacing:4.851000px;}
.ws3e{word-spacing:4.968000px;}
.ws3f{word-spacing:5.040000px;}
.ws79{word-spacing:5.256000px;}
.ws6e{word-spacing:5.328000px;}
.ws6f{word-spacing:5.400000px;}
.ws1b{word-spacing:5.688000px;}
.ws1c{word-spacing:5.760000px;}
.ws91{word-spacing:5.976000px;}
.ws2a{word-spacing:6.048000px;}
.ws29{word-spacing:6.120000px;}
.ws90{word-spacing:6.408000px;}
.ws4c{word-spacing:6.480000px;}
.ws9d{word-spacing:6.768000px;}
.ws87{word-spacing:6.840000px;}
.ws71{word-spacing:7.128000px;}
.ws70{word-spacing:7.200000px;}
.ws6a{word-spacing:7.488000px;}
.ws6b{word-spacing:7.560000px;}
.ws97{word-spacing:7.776000px;}
.ws6c{word-spacing:7.848000px;}
.ws8e{word-spacing:7.920000px;}
.ws33{word-spacing:8.208000px;}
.ws72{word-spacing:8.280000px;}
.ws53{word-spacing:8.568000px;}
.ws32{word-spacing:8.640000px;}
.wsa5{word-spacing:9.720000px;}
.wsa2{word-spacing:10.080000px;}
.ws7d{word-spacing:10.332000px;}
.ws7e{word-spacing:10.521000px;}
.wsa0{word-spacing:10.656000px;}
.wsa1{word-spacing:10.800000px;}
.ws99{word-spacing:17.208000px;}
.ws9b{word-spacing:17.280000px;}
.ws9c{word-spacing:17.496000px;}
.ws9a{word-spacing:17.640000px;}
._9{margin-left:-3.807000px;}
._7{margin-left:-2.732400px;}
._0{margin-left:-1.009800px;}
._1{width:1.004400px;}
._8{width:2.671200px;}
._4{width:3.882600px;}
._2{width:4.968000px;}
._a{width:6.480000px;}
._5{width:7.920000px;}
._6{width:9.000000px;}
._3{width:52.173360px;}
._c{width:93.284280px;}
._d{width:260.280000px;}
._b{width:846.000000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fs9{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fsa{font-size:63.000000px;}
.fs1{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.120000px;}
.fs5{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.830000px;}
.y6{bottom:112.590000px;}
.y8{bottom:113.670000px;}
.y5{bottom:145.440000px;}
.y18c{bottom:165.505500px;}
.y11b{bottom:167.310000px;}
.y165{bottom:170.370000px;}
.y84{bottom:170.730000px;}
.y1c6{bottom:170.820000px;}
.yba{bottom:173.250000px;}
.y59{bottom:173.610000px;}
.ya0{bottom:174.861000px;}
.yf6{bottom:177.930000px;}
.yc1{bottom:178.191000px;}
.y18b{bottom:188.010000px;}
.y41{bottom:190.170000px;}
.y164{bottom:191.070000px;}
.y9f{bottom:192.145500px;}
.y1b2{bottom:193.770000px;}
.y1c5{bottom:194.670000px;}
.yc0{bottom:195.475500px;}
.y83{bottom:195.480000px;}
.yb9{bottom:197.100000px;}
.y58{bottom:197.460000px;}
.yf5{bottom:198.630000px;}
.y11a{bottom:200.070000px;}
.y152{bottom:203.760000px;}
.y9e{bottom:209.430000px;}
.y163{bottom:211.770000px;}
.ybf{bottom:212.760000px;}
.y82{bottom:216.180000px;}
.y1b1{bottom:217.620000px;}
.y1c4{bottom:218.430000px;}
.yf4{bottom:219.330000px;}
.yb8{bottom:220.860000px;}
.y57{bottom:221.220000px;}
.y119{bottom:223.920000px;}
.y151{bottom:227.610000px;}
.y106{bottom:230.220000px;}
.y18a{bottom:233.460000px;}
.y9d{bottom:236.340000px;}
.y1d8{bottom:236.880000px;}
.yf3{bottom:240.030000px;}
.y1b0{bottom:241.380000px;}
.y1c3{bottom:242.280000px;}
.y162{bottom:244.620000px;}
.yb7{bottom:244.710000px;}
.y118{bottom:247.680000px;}
.y150{bottom:251.370000px;}
.y56{bottom:251.449650px;}
.y2b{bottom:252.090000px;}
.y105{bottom:253.980000px;}
.y12f{bottom:254.970000px;}
.y81{bottom:255.150000px;}
.y9c{bottom:257.040000px;}
.y1d7{bottom:257.580000px;}
.y189{bottom:258.210000px;}
.y1af{bottom:265.230000px;}
.y1c2{bottom:266.040000px;}
.y161{bottom:268.380000px;}
.yb6{bottom:268.470000px;}
.y117{bottom:271.530000px;}
.yf2{bottom:272.790000px;}
.y14f{bottom:275.220000px;}
.y55{bottom:275.670000px;}
.y9b{bottom:277.740000px;}
.y104{bottom:277.830000px;}
.y1d6{bottom:278.280000px;}
.y12e{bottom:278.730000px;}
.y188{bottom:281.970000px;}
.y2a{bottom:284.850000px;}
.y1ae{bottom:288.990000px;}
.y1c1{bottom:289.890000px;}
.y160{bottom:292.230000px;}
.yb5{bottom:292.320000px;}
.ye2{bottom:292.864500px;}
.y80{bottom:293.202450px;}
.y116{bottom:295.290000px;}
.yf1{bottom:296.640000px;}
.y9a{bottom:298.440000px;}
.y103{bottom:301.590000px;}
.y12d{bottom:302.580000px;}
.y187{bottom:305.820000px;}
.y14e{bottom:307.980000px;}
.y7f{bottom:310.486950px;}
.y1ad{bottom:312.840000px;}
.ye1{bottom:313.560000px;}
.y1c0{bottom:313.650000px;}
.y15f{bottom:315.990000px;}
.y54{bottom:317.250000px;}
.y29{bottom:317.700000px;}
.y99{bottom:319.140000px;}
.yf0{bottom:320.400000px;}
.yb4{bottom:322.560000px;}
.y12c{bottom:326.340000px;}
.y186{bottom:329.580000px;}
.ye0{bottom:331.650000px;}
.y14d{bottom:331.830000px;}
.y102{bottom:334.440000px;}
.y1ac{bottom:336.600000px;}
.y1d5{bottom:337.680000px;}
.y98{bottom:339.840000px;}
.y115{bottom:342.900000px;}
.yef{bottom:344.250000px;}
.y7e{bottom:345.672180px;}
.y1bf{bottom:346.500000px;}
.y15e{bottom:348.840000px;}
.y53{bottom:350.010000px;}
.y12b{bottom:350.190000px;}
.y28{bottom:350.460000px;}
.ydf{bottom:352.350000px;}
.y185{bottom:353.430000px;}
.y14c{bottom:355.590000px;}
.y101{bottom:358.200000px;}
.y1ab{bottom:360.450000px;}
.y97{bottom:360.540000px;}
.y7d{bottom:362.956680px;}
.y114{bottom:366.750000px;}
.yb3{bottom:367.200000px;}
.y1d4{bottom:367.380000px;}
.yee{bottom:368.010000px;}
.y1be{bottom:370.260000px;}
.y15d{bottom:372.600000px;}
.yde{bottom:373.050000px;}
.y52{bottom:373.860000px;}
.y14b{bottom:379.440000px;}
.y7c{bottom:380.241180px;}
.y96{bottom:381.240000px;}
.y100{bottom:382.050000px;}
.y12a{bottom:382.950000px;}
.y27{bottom:383.310000px;}
.y1aa{bottom:384.210000px;}
.y184{bottom:386.190000px;}
.y1d3{bottom:388.080000px;}
.y113{bottom:390.510000px;}
.yb2{bottom:391.050000px;}
.yed{bottom:391.860000px;}
.ydd{bottom:393.750000px;}
.y1bd{bottom:394.110000px;}
.y15c{bottom:396.450000px;}
.y7b{bottom:397.525680px;}
.y51{bottom:397.620000px;}
.y95{bottom:401.940000px;}
.y14a{bottom:403.200000px;}
.yff{bottom:405.810000px;}
.y129{bottom:406.800000px;}
.y26{bottom:407.070000px;}
.y1a9{bottom:407.970000px;}
.y183{bottom:410.040000px;}
.y112{bottom:414.360000px;}
.ydc{bottom:414.450000px;}
.y7a{bottom:414.720000px;}
.yec{bottom:415.620000px;}
.y1d2{bottom:417.780000px;}
.y1bc{bottom:417.870000px;}
.y50{bottom:418.320000px;}
.y15b{bottom:420.210000px;}
.y94{bottom:422.640000px;}
.yb1{bottom:423.810000px;}
.y149{bottom:427.050000px;}
.yfe{bottom:429.660000px;}
.y128{bottom:430.560000px;}
.y25{bottom:430.920000px;}
.y1a8{bottom:431.820000px;}
.y79{bottom:432.630000px;}
.y182{bottom:433.800000px;}
.ydb{bottom:435.150000px;}
.y111{bottom:438.120000px;}
.yeb{bottom:439.470000px;}
.y1bb{bottom:441.720000px;}
.y93{bottom:443.340000px;}
.y15a{bottom:444.060000px;}
.yb0{bottom:447.660000px;}
.y1d1{bottom:448.740000px;}
.y148{bottom:450.810000px;}
.y78{bottom:453.330000px;}
.yfd{bottom:453.420000px;}
.y127{bottom:454.410000px;}
.y24{bottom:454.680000px;}
.y1a7{bottom:455.580000px;}
.yda{bottom:455.850000px;}
.y4f{bottom:456.390000px;}
.y181{bottom:457.650000px;}
.y110{bottom:461.970000px;}
.yea{bottom:463.230000px;}
.y92{bottom:463.950000px;}
.y1ba{bottom:465.480000px;}
.y159{bottom:467.820000px;}
.yaf{bottom:471.420000px;}
.y77{bottom:474.030000px;}
.y4e{bottom:474.300000px;}
.y147{bottom:474.660000px;}
.yd9{bottom:476.550000px;}
.yfc{bottom:477.270000px;}
.y126{bottom:478.170000px;}
.y23{bottom:478.530000px;}
.y1a6{bottom:479.430000px;}
.y180{bottom:481.410000px;}
.ye9{bottom:483.930000px;}
.y91{bottom:484.650000px;}
.y10f{bottom:485.730000px;}
.y158{bottom:488.520000px;}
.y1b9{bottom:489.330000px;}
.y76{bottom:494.730000px;}
.yae{bottom:495.270000px;}
.y146{bottom:498.420000px;}
.yfb{bottom:501.030000px;}
.y125{bottom:502.020000px;}
.y22{bottom:502.290000px;}
.y1a5{bottom:503.190000px;}
.y17f{bottom:505.260000px;}
.y90{bottom:505.350000px;}
.yd8{bottom:509.310000px;}
.y10e{bottom:509.580000px;}
.y1b8{bottom:513.090000px;}
.y1d0{bottom:514.170000px;}
.y75{bottom:515.430000px;}
.yad{bottom:519.030000px;}
.ye8{bottom:521.991000px;}
.y145{bottom:522.270000px;}
.y124{bottom:525.780000px;}
.y8f{bottom:526.050000px;}
.y157{bottom:526.581180px;}
.y1a4{bottom:527.040000px;}
.y17e{bottom:529.020000px;}
.yfa{bottom:531.360000px;}
.yd7{bottom:533.160000px;}
.y10d{bottom:533.340000px;}
.y21{bottom:535.140000px;}
.y74{bottom:536.130000px;}
.y1b7{bottom:536.940000px;}
.y1cf{bottom:538.020000px;}
.ye7{bottom:539.275500px;}
.yac{bottom:542.880000px;}
.y156{bottom:543.865680px;}
.y8e{bottom:546.750000px;}
.y123{bottom:549.630000px;}
.y17d{bottom:552.870000px;}
.y144{bottom:555.030000px;}
.y20{bottom:555.840000px;}
.ye6{bottom:556.560000px;}
.y73{bottom:556.830000px;}
.y10c{bottom:557.190000px;}
.y1b6{bottom:557.640000px;}
.y1a3{bottom:557.995500px;}
.y155{bottom:561.060000px;}
.y1ce{bottom:561.780000px;}
.yd6{bottom:565.920000px;}
.yab{bottom:566.640000px;}
.y8d{bottom:567.450000px;}
.yf9{bottom:572.220000px;}
.y122{bottom:573.390000px;}
.y17c{bottom:573.570000px;}
.ye5{bottom:574.380000px;}
.y72{bottom:577.530000px;}
.y10b{bottom:577.890000px;}
.y143{bottom:578.880000px;}
.y154{bottom:578.970000px;}
.y1a2{bottom:585.630000px;}
.y8c{bottom:588.150000px;}
.y1f{bottom:588.600000px;}
.yd5{bottom:589.770000px;}
.yf8{bottom:590.130000px;}
.yaa{bottom:590.490000px;}
.ybe{bottom:597.150000px;}
.y121{bottom:597.240000px;}
.y71{bottom:598.230000px;}
.y142{bottom:602.640000px;}
.y17b{bottom:603.810000px;}
.y1b5{bottom:604.611000px;}
.y1cd{bottom:609.390000px;}
.ya9{bottom:611.190000px;}
.yd4{bottom:613.530000px;}
.y10a{bottom:615.861000px;}
.y120{bottom:617.940000px;}
.y70{bottom:618.930000px;}
.y8b{bottom:621.000000px;}
.y1e{bottom:621.450000px;}
.y1b4{bottom:621.895500px;}
.y141{bottom:626.400000px;}
.y40{bottom:628.200000px;}
.y109{bottom:633.145500px;}
.y1cc{bottom:633.240000px;}
.yd3{bottom:637.380000px;}
.y1b3{bottom:639.180000px;}
.y6f{bottom:639.630000px;}
.y8a{bottom:644.760000px;}
.y1d{bottom:645.210000px;}
.y1a1{bottom:647.280000px;}
.ya8{bottom:649.156500px;}
.y140{bottom:650.250000px;}
.y108{bottom:650.430000px;}
.y17a{bottom:653.760270px;}
.y11f{bottom:655.911000px;}
.y6e{bottom:660.330000px;}
.y3f{bottom:660.960000px;}
.yd2{bottom:661.140000px;}
.y1a0{bottom:665.190000px;}
.ya7{bottom:666.441000px;}
.y107{bottom:668.340000px;}
.y89{bottom:668.610000px;}
.y1c{bottom:669.060000px;}
.y179{bottom:671.044770px;}
.y1cb{bottom:671.206500px;}
.y11e{bottom:673.195500px;}
.y13f{bottom:674.010000px;}
.y6d{bottom:681.030000px;}
.ya6{bottom:683.725500px;}
.y3e{bottom:684.810000px;}
.y19f{bottom:685.890000px;}
.y1ca{bottom:688.491000px;}
.y11d{bottom:690.480000px;}
.yd1{bottom:691.470000px;}
.y88{bottom:692.370000px;}
.y1b{bottom:692.820000px;}
.y13e{bottom:697.860000px;}
.ya5{bottom:701.010000px;}
.y6c{bottom:701.730000px;}
.y1c9{bottom:705.775500px;}
.y178{bottom:706.230000px;}
.y19e{bottom:706.590000px;}
.y11c{bottom:708.390000px;}
.y3d{bottom:708.570000px;}
.y87{bottom:716.220000px;}
.y1a{bottom:716.670000px;}
.y13d{bottom:721.620000px;}
.y6b{bottom:722.430000px;}
.y1c8{bottom:723.060000px;}
.y19d{bottom:727.290000px;}
.y3c{bottom:732.420000px;}
.yd0{bottom:734.220000px;}
.y86{bottom:739.980000px;}
.y19{bottom:740.430000px;}
.y1c7{bottom:740.880000px;}
.y177{bottom:741.510000px;}
.y6a{bottom:743.130000px;}
.y13c{bottom:745.470000px;}
.y19c{bottom:747.990000px;}
.y3b{bottom:756.180000px;}
.y176{bottom:758.790000px;}
.y18{bottom:761.130000px;}
.y69{bottom:763.830000px;}
.y19b{bottom:768.690000px;}
.y13b{bottom:769.230000px;}
.y175{bottom:775.979850px;}
.y3a{bottom:780.030000px;}
.y17{bottom:781.830000px;}
.ybd{bottom:787.590000px;}
.y19a{bottom:789.390000px;}
.y13a{bottom:793.080000px;}
.y174{bottom:793.260000px;}
.y68{bottom:796.590000px;}
.ycf{bottom:799.740000px;}
.y16{bottom:802.530000px;}
.y39{bottom:803.790000px;}
.y199{bottom:810.090000px;}
.y173{bottom:810.513540px;}
.ybc{bottom:811.440000px;}
.y139{bottom:816.840000px;}
.y67{bottom:820.440000px;}
.y15{bottom:823.230000px;}
.yce{bottom:823.500000px;}
.y38{bottom:827.640000px;}
.y172{bottom:827.707860px;}
.y198{bottom:830.790000px;}
.ybb{bottom:835.200000px;}
.y138{bottom:840.690000px;}
.y66{bottom:844.200000px;}
.y171{bottom:844.992360px;}
.ycd{bottom:847.350000px;}
.y37{bottom:851.400000px;}
.y197{bottom:851.490000px;}
.y14{bottom:855.990000px;}
.y170{bottom:862.186680px;}
.y137{bottom:864.450000px;}
.y65{bottom:868.050000px;}
.ycc{bottom:871.110000px;}
.y196{bottom:872.190000px;}
.y36{bottom:875.250000px;}
.y16f{bottom:879.471180px;}
.y13{bottom:879.840000px;}
.y4d{bottom:881.100000px;}
.y136{bottom:888.300000px;}
.y64{bottom:891.810000px;}
.y195{bottom:892.890000px;}
.ycb{bottom:894.960000px;}
.y16e{bottom:896.755680px;}
.y35{bottom:899.010000px;}
.y12{bottom:902.520000px;}
.y135{bottom:912.060000px;}
.y194{bottom:913.590000px;}
.y4c{bottom:913.950000px;}
.y63{bottom:915.660000px;}
.yca{bottom:918.720000px;}
.y11{bottom:921.510000px;}
.y34{bottom:922.860000px;}
.y16d{bottom:931.860000px;}
.y193{bottom:934.290000px;}
.y134{bottom:935.910000px;}
.y4b{bottom:937.710000px;}
.y62{bottom:939.420000px;}
.yc9{bottom:942.570000px;}
.y10{bottom:944.190000px;}
.y16c{bottom:952.560000px;}
.y192{bottom:954.990000px;}
.y33{bottom:955.620000px;}
.y4a{bottom:961.560000px;}
.y61{bottom:963.270000px;}
.yf{bottom:966.240000px;}
.yc8{bottom:966.330000px;}
.y133{bottom:968.670000px;}
.y16b{bottom:973.260000px;}
.y191{bottom:975.690000px;}
.y32{bottom:979.470000px;}
.y49{bottom:985.320000px;}
.y60{bottom:987.030000px;}
.ye{bottom:991.530000px;}
.y132{bottom:992.520000px;}
.y16a{bottom:993.960000px;}
.y153{bottom:996.030000px;}
.y190{bottom:996.300000px;}
.yc7{bottom:999.090000px;}
.y31{bottom:1003.230000px;}
.y48{bottom:1009.170000px;}
.y5f{bottom:1010.790000px;}
.y169{bottom:1014.660000px;}
.y131{bottom:1016.280000px;}
.y18f{bottom:1017.000000px;}
.y85{bottom:1019.790000px;}
.yc6{bottom:1022.940000px;}
.y30{bottom:1027.080000px;}
.y47{bottom:1032.930000px;}
.yd{bottom:1034.271990px;}
.y168{bottom:1035.360000px;}
.y18e{bottom:1037.700000px;}
.y5e{bottom:1043.640000px;}
.y130{bottom:1046.520000px;}
.yc5{bottom:1046.700000px;}
.ya4{bottom:1050.210000px;}
.y2f{bottom:1050.840000px;}
.y167{bottom:1056.060000px;}
.y46{bottom:1056.780000px;}
.yc{bottom:1058.040000px;}
.y18d{bottom:1058.400000px;}
.y5d{bottom:1067.400000px;}
.yc4{bottom:1070.550000px;}
.ya3{bottom:1073.970000px;}
.y2e{bottom:1074.690000px;}
.y166{bottom:1076.760000px;}
.y45{bottom:1080.540000px;}
.y5c{bottom:1091.250000px;}
.yc3{bottom:1094.310000px;}
.yf7{bottom:1097.460000px;}
.ya2{bottom:1097.820000px;}
.y44{bottom:1104.390000px;}
.y2d{bottom:1105.555500px;}
.yb{bottom:1109.061450px;}
.y5b{bottom:1115.010000px;}
.yc2{bottom:1118.160000px;}
.ye4{bottom:1120.774500px;}
.ya1{bottom:1121.580000px;}
.y43{bottom:1124.455680px;}
.y2c{bottom:1133.190000px;}
.ya{bottom:1134.540000px;}
.y5a{bottom:1138.860000px;}
.ye3{bottom:1141.470000px;}
.y42{bottom:1141.650000px;}
.y4{bottom:1171.620000px;}
.y3{bottom:1192.045500px;}
.y2{bottom:1208.610000px;}
.y1{bottom:1225.890000px;}
.h11{height:27.014766px;}
.h5{height:32.850000px;}
.h3{height:38.759766px;}
.hd{height:41.156367px;}
.he{height:41.772832px;}
.h14{height:47.250000px;}
.h10{height:47.566294px;}
.hb{height:48.761719px;}
.h9{height:49.199766px;}
.ha{height:49.289062px;}
.h15{height:49.325062px;}
.h12{height:49.992188px;}
.h4{height:50.027344px;}
.h8{height:58.921875px;}
.h13{height:60.268184px;}
.hf{height:61.066934px;}
.h7{height:63.930234px;}
.h6{height:68.643984px;}
.hc{height:69.977988px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:39.060000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.629000px;}
.x1f{left:129.150000px;}
.x17{left:130.956300px;}
.x1a{left:132.029820px;}
.x14{left:133.110000px;}
.x23{left:135.911790px;}
.x1d{left:137.338470px;}
.x21{left:140.040000px;}
.x10{left:154.620000px;}
.x25{left:160.560000px;}
.x28{left:163.616940px;}
.x16{left:172.890000px;}
.x1{left:179.370000px;}
.x11{left:181.605690px;}
.x1e{left:192.603780px;}
.x22{left:206.773200px;}
.x15{left:208.638720px;}
.x27{left:222.570000px;}
.x20{left:225.657630px;}
.x24{left:231.577740px;}
.x6{left:245.610000px;}
.x4{left:297.180000px;}
.x26{left:321.110460px;}
.x19{left:343.620000px;}
.x2a{left:346.920300px;}
.x12{left:349.650000px;}
.x1c{left:371.707200px;}
.x29{left:386.898570px;}
.x8{left:388.890000px;}
.x1b{left:399.864420px;}
.x18{left:419.156550px;}
.x5{left:466.650000px;}
.x13{left:478.350000px;}
.x7{left:515.053530px;}
.xe{left:520.380000px;}
.x2{left:532.818000px;}
.xc{left:550.890000px;}
.x9{left:555.578550px;}
.xb{left:591.930000px;}
.xf{left:593.190000px;}
.xa{left:600.750000px;}
.xd{left:829.170000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.622400pt;}
.v3{vertical-align:24.000000pt;}
.ls3d{letter-spacing:-0.427520pt;}
.ls21{letter-spacing:-0.374080pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.213760pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.170880pt;}
.ls23{letter-spacing:-0.160320pt;}
.ls9{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.106880pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.074560pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.058560pt;}
.ls38{letter-spacing:-0.056000pt;}
.ls20{letter-spacing:-0.053440pt;}
.lsb{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.053440pt;}
.ls3c{letter-spacing:0.056000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.069472pt;}
.ls28{letter-spacing:0.070400pt;}
.lsd{letter-spacing:0.074560pt;}
.ls3{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.106880pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.134400pt;}
.lse{letter-spacing:0.138880pt;}
.ls25{letter-spacing:0.140800pt;}
.lsc{letter-spacing:0.149120pt;}
.ls37{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.160320pt;}
.ls39{letter-spacing:0.168000pt;}
.ls17{letter-spacing:0.170880pt;}
.ls31{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls13{letter-spacing:1.196160pt;}
.ls2f{letter-spacing:1.600000pt;}
.ls27{letter-spacing:1.939200pt;}
.ls3b{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:2.572800pt;}
.ls40{letter-spacing:2.598400pt;}
.ls36{letter-spacing:2.624000pt;}
.ls34{letter-spacing:2.880000pt;}
.ls32{letter-spacing:3.200000pt;}
.ls35{letter-spacing:3.520000pt;}
.ls2c{letter-spacing:3.840000pt;}
.ls1b{letter-spacing:3.846400pt;}
.ls26{letter-spacing:3.852800pt;}
.ls30{letter-spacing:4.160000pt;}
.ls2b{letter-spacing:4.800000pt;}
.ls4{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.440000pt;}
.ls3e{letter-spacing:6.092800pt;}
.ls29{letter-spacing:6.406400pt;}
.ls15{letter-spacing:7.360000pt;}
.ls3f{letter-spacing:7.366400pt;}
.ls33{letter-spacing:33.236160pt;}
.ls2a{letter-spacing:46.823680pt;}
.ls41{letter-spacing:59.579840pt;}
.ls0{letter-spacing:650.256000pt;}
.ws6{word-spacing:-25.499520pt;}
.ws25{word-spacing:-23.923200pt;}
.ws8{word-spacing:-21.952000pt;}
.ws7{word-spacing:-21.760000pt;}
.ws39{word-spacing:-20.876800pt;}
.wsc{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws3a{word-spacing:-15.936000pt;}
.ws7a{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5d{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.680000pt;}
.ws80{word-spacing:-14.056000pt;}
.ws4a{word-spacing:-13.520320pt;}
.ws8b{word-spacing:-13.466880pt;}
.ws38{word-spacing:-13.413440pt;}
.ws37{word-spacing:-13.360000pt;}
.ws5e{word-spacing:-13.306560pt;}
.ws82{word-spacing:-13.253120pt;}
.ws49{word-spacing:-13.199680pt;}
.ws5f{word-spacing:-13.146240pt;}
.ws93{word-spacing:-12.985920pt;}
.ws81{word-spacing:-12.932480pt;}
.ws1{word-spacing:-12.077440pt;}
.ws2{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.800000pt;}
.ws3{word-spacing:-10.512000pt;}
.ws48{word-spacing:-8.640000pt;}
.wsa3{word-spacing:-4.224000pt;}
.ws4b{word-spacing:-3.904000pt;}
.ws18{word-spacing:-3.840000pt;}
.ws8c{word-spacing:-3.584000pt;}
.ws8d{word-spacing:-3.520000pt;}
.ws30{word-spacing:-3.328000pt;}
.ws66{word-spacing:-3.264000pt;}
.ws9f{word-spacing:-3.200000pt;}
.ws76{word-spacing:-2.944000pt;}
.ws44{word-spacing:-2.907840pt;}
.ws77{word-spacing:-2.880000pt;}
.ws88{word-spacing:-2.624000pt;}
.ws3b{word-spacing:-2.560000pt;}
.ws63{word-spacing:-2.304000pt;}
.ws56{word-spacing:-2.240000pt;}
.ws57{word-spacing:-2.176000pt;}
.ws54{word-spacing:-2.048000pt;}
.ws55{word-spacing:-1.984000pt;}
.ws2b{word-spacing:-1.920000pt;}
.ws98{word-spacing:-1.728000pt;}
.ws41{word-spacing:-1.664000pt;}
.ws40{word-spacing:-1.600000pt;}
.ws51{word-spacing:-1.344000pt;}
.ws86{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.088000pt;}
.ws3c{word-spacing:-1.024000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws4f{word-spacing:-0.768000pt;}
.ws50{word-spacing:-0.704000pt;}
.ws20{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.448000pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws5a{word-spacing:-0.374080pt;}
.ws16{word-spacing:-0.320640pt;}
.ws35{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.208320pt;}
.ws59{word-spacing:-0.160320pt;}
.ws12{word-spacing:-0.149120pt;}
.ws1e{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.106880pt;}
.ws26{word-spacing:-0.085440pt;}
.ws45{word-spacing:-0.074560pt;}
.ws17{word-spacing:-0.064000pt;}
.ws43{word-spacing:-0.053440pt;}
.wse{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053440pt;}
.wsf{word-spacing:0.058560pt;}
.ws96{word-spacing:0.064000pt;}
.ws14{word-spacing:0.074560pt;}
.ws27{word-spacing:0.085440pt;}
.ws4{word-spacing:0.096000pt;}
.ws10{word-spacing:0.106880pt;}
.ws85{word-spacing:0.112000pt;}
.ws31{word-spacing:0.128000pt;}
.ws11{word-spacing:0.144000pt;}
.ws13{word-spacing:0.149120pt;}
.ws5b{word-spacing:0.160320pt;}
.ws34{word-spacing:0.192000pt;}
.ws5c{word-spacing:0.213760pt;}
.ws2d{word-spacing:0.256000pt;}
.ws68{word-spacing:0.267200pt;}
.ws2c{word-spacing:0.320000pt;}
.ws95{word-spacing:0.374080pt;}
.ws94{word-spacing:0.480960pt;}
.ws69{word-spacing:0.512000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws1a{word-spacing:0.640000pt;}
.wsa4{word-spacing:0.832000pt;}
.ws2e{word-spacing:0.896000pt;}
.ws78{word-spacing:0.960000pt;}
.ws23{word-spacing:1.152000pt;}
.ws28{word-spacing:1.216000pt;}
.ws24{word-spacing:1.280000pt;}
.ws73{word-spacing:1.472000pt;}
.ws62{word-spacing:1.536000pt;}
.ws21{word-spacing:1.600000pt;}
.ws74{word-spacing:1.792000pt;}
.ws67{word-spacing:1.856000pt;}
.ws42{word-spacing:1.920000pt;}
.ws92{word-spacing:2.176000pt;}
.ws58{word-spacing:2.240000pt;}
.ws22{word-spacing:2.432000pt;}
.ws19{word-spacing:2.496000pt;}
.ws8a{word-spacing:2.560000pt;}
.ws84{word-spacing:2.688000pt;}
.ws89{word-spacing:2.816000pt;}
.ws64{word-spacing:2.880000pt;}
.ws83{word-spacing:3.024000pt;}
.ws8f{word-spacing:3.072000pt;}
.ws6d{word-spacing:3.136000pt;}
.ws52{word-spacing:3.200000pt;}
.ws61{word-spacing:3.392000pt;}
.ws60{word-spacing:3.456000pt;}
.ws4d{word-spacing:3.520000pt;}
.ws65{word-spacing:3.712000pt;}
.ws46{word-spacing:3.776000pt;}
.ws47{word-spacing:3.840000pt;}
.ws3d{word-spacing:4.032000pt;}
.ws75{word-spacing:4.096000pt;}
.ws7b{word-spacing:4.160000pt;}
.ws7c{word-spacing:4.312000pt;}
.ws3e{word-spacing:4.416000pt;}
.ws3f{word-spacing:4.480000pt;}
.ws79{word-spacing:4.672000pt;}
.ws6e{word-spacing:4.736000pt;}
.ws6f{word-spacing:4.800000pt;}
.ws1b{word-spacing:5.056000pt;}
.ws1c{word-spacing:5.120000pt;}
.ws91{word-spacing:5.312000pt;}
.ws2a{word-spacing:5.376000pt;}
.ws29{word-spacing:5.440000pt;}
.ws90{word-spacing:5.696000pt;}
.ws4c{word-spacing:5.760000pt;}
.ws9d{word-spacing:6.016000pt;}
.ws87{word-spacing:6.080000pt;}
.ws71{word-spacing:6.336000pt;}
.ws70{word-spacing:6.400000pt;}
.ws6a{word-spacing:6.656000pt;}
.ws6b{word-spacing:6.720000pt;}
.ws97{word-spacing:6.912000pt;}
.ws6c{word-spacing:6.976000pt;}
.ws8e{word-spacing:7.040000pt;}
.ws33{word-spacing:7.296000pt;}
.ws72{word-spacing:7.360000pt;}
.ws53{word-spacing:7.616000pt;}
.ws32{word-spacing:7.680000pt;}
.wsa5{word-spacing:8.640000pt;}
.wsa2{word-spacing:8.960000pt;}
.ws7d{word-spacing:9.184000pt;}
.ws7e{word-spacing:9.352000pt;}
.wsa0{word-spacing:9.472000pt;}
.wsa1{word-spacing:9.600000pt;}
.ws99{word-spacing:15.296000pt;}
.ws9b{word-spacing:15.360000pt;}
.ws9c{word-spacing:15.552000pt;}
.ws9a{word-spacing:15.680000pt;}
._9{margin-left:-3.384000pt;}
._7{margin-left:-2.428800pt;}
._0{margin-left:-0.897600pt;}
._1{width:0.892800pt;}
._8{width:2.374400pt;}
._4{width:3.451200pt;}
._2{width:4.416000pt;}
._a{width:5.760000pt;}
._5{width:7.040000pt;}
._6{width:8.000000pt;}
._3{width:46.376320pt;}
._c{width:82.919360pt;}
._d{width:231.360000pt;}
._b{width:752.000000pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fsa{font-size:56.000000pt;}
.fs1{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.440000pt;}
.fs5{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:70.960000pt;}
.y6{bottom:100.080000pt;}
.y8{bottom:101.040000pt;}
.y5{bottom:129.280000pt;}
.y18c{bottom:147.116000pt;}
.y11b{bottom:148.720000pt;}
.y165{bottom:151.440000pt;}
.y84{bottom:151.760000pt;}
.y1c6{bottom:151.840000pt;}
.yba{bottom:154.000000pt;}
.y59{bottom:154.320000pt;}
.ya0{bottom:155.432000pt;}
.yf6{bottom:158.160000pt;}
.yc1{bottom:158.392000pt;}
.y18b{bottom:167.120000pt;}
.y41{bottom:169.040000pt;}
.y164{bottom:169.840000pt;}
.y9f{bottom:170.796000pt;}
.y1b2{bottom:172.240000pt;}
.y1c5{bottom:173.040000pt;}
.yc0{bottom:173.756000pt;}
.y83{bottom:173.760000pt;}
.yb9{bottom:175.200000pt;}
.y58{bottom:175.520000pt;}
.yf5{bottom:176.560000pt;}
.y11a{bottom:177.840000pt;}
.y152{bottom:181.120000pt;}
.y9e{bottom:186.160000pt;}
.y163{bottom:188.240000pt;}
.ybf{bottom:189.120000pt;}
.y82{bottom:192.160000pt;}
.y1b1{bottom:193.440000pt;}
.y1c4{bottom:194.160000pt;}
.yf4{bottom:194.960000pt;}
.yb8{bottom:196.320000pt;}
.y57{bottom:196.640000pt;}
.y119{bottom:199.040000pt;}
.y151{bottom:202.320000pt;}
.y106{bottom:204.640000pt;}
.y18a{bottom:207.520000pt;}
.y9d{bottom:210.080000pt;}
.y1d8{bottom:210.560000pt;}
.yf3{bottom:213.360000pt;}
.y1b0{bottom:214.560000pt;}
.y1c3{bottom:215.360000pt;}
.y162{bottom:217.440000pt;}
.yb7{bottom:217.520000pt;}
.y118{bottom:220.160000pt;}
.y150{bottom:223.440000pt;}
.y56{bottom:223.510800pt;}
.y2b{bottom:224.080000pt;}
.y105{bottom:225.760000pt;}
.y12f{bottom:226.640000pt;}
.y81{bottom:226.800000pt;}
.y9c{bottom:228.480000pt;}
.y1d7{bottom:228.960000pt;}
.y189{bottom:229.520000pt;}
.y1af{bottom:235.760000pt;}
.y1c2{bottom:236.480000pt;}
.y161{bottom:238.560000pt;}
.yb6{bottom:238.640000pt;}
.y117{bottom:241.360000pt;}
.yf2{bottom:242.480000pt;}
.y14f{bottom:244.640000pt;}
.y55{bottom:245.040000pt;}
.y9b{bottom:246.880000pt;}
.y104{bottom:246.960000pt;}
.y1d6{bottom:247.360000pt;}
.y12e{bottom:247.760000pt;}
.y188{bottom:250.640000pt;}
.y2a{bottom:253.200000pt;}
.y1ae{bottom:256.880000pt;}
.y1c1{bottom:257.680000pt;}
.y160{bottom:259.760000pt;}
.yb5{bottom:259.840000pt;}
.ye2{bottom:260.324000pt;}
.y80{bottom:260.624400pt;}
.y116{bottom:262.480000pt;}
.yf1{bottom:263.680000pt;}
.y9a{bottom:265.280000pt;}
.y103{bottom:268.080000pt;}
.y12d{bottom:268.960000pt;}
.y187{bottom:271.840000pt;}
.y14e{bottom:273.760000pt;}
.y7f{bottom:275.988400pt;}
.y1ad{bottom:278.080000pt;}
.ye1{bottom:278.720000pt;}
.y1c0{bottom:278.800000pt;}
.y15f{bottom:280.880000pt;}
.y54{bottom:282.000000pt;}
.y29{bottom:282.400000pt;}
.y99{bottom:283.680000pt;}
.yf0{bottom:284.800000pt;}
.yb4{bottom:286.720000pt;}
.y12c{bottom:290.080000pt;}
.y186{bottom:292.960000pt;}
.ye0{bottom:294.800000pt;}
.y14d{bottom:294.960000pt;}
.y102{bottom:297.280000pt;}
.y1ac{bottom:299.200000pt;}
.y1d5{bottom:300.160000pt;}
.y98{bottom:302.080000pt;}
.y115{bottom:304.800000pt;}
.yef{bottom:306.000000pt;}
.y7e{bottom:307.264160pt;}
.y1bf{bottom:308.000000pt;}
.y15e{bottom:310.080000pt;}
.y53{bottom:311.120000pt;}
.y12b{bottom:311.280000pt;}
.y28{bottom:311.520000pt;}
.ydf{bottom:313.200000pt;}
.y185{bottom:314.160000pt;}
.y14c{bottom:316.080000pt;}
.y101{bottom:318.400000pt;}
.y1ab{bottom:320.400000pt;}
.y97{bottom:320.480000pt;}
.y7d{bottom:322.628160pt;}
.y114{bottom:326.000000pt;}
.yb3{bottom:326.400000pt;}
.y1d4{bottom:326.560000pt;}
.yee{bottom:327.120000pt;}
.y1be{bottom:329.120000pt;}
.y15d{bottom:331.200000pt;}
.yde{bottom:331.600000pt;}
.y52{bottom:332.320000pt;}
.y14b{bottom:337.280000pt;}
.y7c{bottom:337.992160pt;}
.y96{bottom:338.880000pt;}
.y100{bottom:339.600000pt;}
.y12a{bottom:340.400000pt;}
.y27{bottom:340.720000pt;}
.y1aa{bottom:341.520000pt;}
.y184{bottom:343.280000pt;}
.y1d3{bottom:344.960000pt;}
.y113{bottom:347.120000pt;}
.yb2{bottom:347.600000pt;}
.yed{bottom:348.320000pt;}
.ydd{bottom:350.000000pt;}
.y1bd{bottom:350.320000pt;}
.y15c{bottom:352.400000pt;}
.y7b{bottom:353.356160pt;}
.y51{bottom:353.440000pt;}
.y95{bottom:357.280000pt;}
.y14a{bottom:358.400000pt;}
.yff{bottom:360.720000pt;}
.y129{bottom:361.600000pt;}
.y26{bottom:361.840000pt;}
.y1a9{bottom:362.640000pt;}
.y183{bottom:364.480000pt;}
.y112{bottom:368.320000pt;}
.ydc{bottom:368.400000pt;}
.y7a{bottom:368.640000pt;}
.yec{bottom:369.440000pt;}
.y1d2{bottom:371.360000pt;}
.y1bc{bottom:371.440000pt;}
.y50{bottom:371.840000pt;}
.y15b{bottom:373.520000pt;}
.y94{bottom:375.680000pt;}
.yb1{bottom:376.720000pt;}
.y149{bottom:379.600000pt;}
.yfe{bottom:381.920000pt;}
.y128{bottom:382.720000pt;}
.y25{bottom:383.040000pt;}
.y1a8{bottom:383.840000pt;}
.y79{bottom:384.560000pt;}
.y182{bottom:385.600000pt;}
.ydb{bottom:386.800000pt;}
.y111{bottom:389.440000pt;}
.yeb{bottom:390.640000pt;}
.y1bb{bottom:392.640000pt;}
.y93{bottom:394.080000pt;}
.y15a{bottom:394.720000pt;}
.yb0{bottom:397.920000pt;}
.y1d1{bottom:398.880000pt;}
.y148{bottom:400.720000pt;}
.y78{bottom:402.960000pt;}
.yfd{bottom:403.040000pt;}
.y127{bottom:403.920000pt;}
.y24{bottom:404.160000pt;}
.y1a7{bottom:404.960000pt;}
.yda{bottom:405.200000pt;}
.y4f{bottom:405.680000pt;}
.y181{bottom:406.800000pt;}
.y110{bottom:410.640000pt;}
.yea{bottom:411.760000pt;}
.y92{bottom:412.400000pt;}
.y1ba{bottom:413.760000pt;}
.y159{bottom:415.840000pt;}
.yaf{bottom:419.040000pt;}
.y77{bottom:421.360000pt;}
.y4e{bottom:421.600000pt;}
.y147{bottom:421.920000pt;}
.yd9{bottom:423.600000pt;}
.yfc{bottom:424.240000pt;}
.y126{bottom:425.040000pt;}
.y23{bottom:425.360000pt;}
.y1a6{bottom:426.160000pt;}
.y180{bottom:427.920000pt;}
.ye9{bottom:430.160000pt;}
.y91{bottom:430.800000pt;}
.y10f{bottom:431.760000pt;}
.y158{bottom:434.240000pt;}
.y1b9{bottom:434.960000pt;}
.y76{bottom:439.760000pt;}
.yae{bottom:440.240000pt;}
.y146{bottom:443.040000pt;}
.yfb{bottom:445.360000pt;}
.y125{bottom:446.240000pt;}
.y22{bottom:446.480000pt;}
.y1a5{bottom:447.280000pt;}
.y17f{bottom:449.120000pt;}
.y90{bottom:449.200000pt;}
.yd8{bottom:452.720000pt;}
.y10e{bottom:452.960000pt;}
.y1b8{bottom:456.080000pt;}
.y1d0{bottom:457.040000pt;}
.y75{bottom:458.160000pt;}
.yad{bottom:461.360000pt;}
.ye8{bottom:463.992000pt;}
.y145{bottom:464.240000pt;}
.y124{bottom:467.360000pt;}
.y8f{bottom:467.600000pt;}
.y157{bottom:468.072160pt;}
.y1a4{bottom:468.480000pt;}
.y17e{bottom:470.240000pt;}
.yfa{bottom:472.320000pt;}
.yd7{bottom:473.920000pt;}
.y10d{bottom:474.080000pt;}
.y21{bottom:475.680000pt;}
.y74{bottom:476.560000pt;}
.y1b7{bottom:477.280000pt;}
.y1cf{bottom:478.240000pt;}
.ye7{bottom:479.356000pt;}
.yac{bottom:482.560000pt;}
.y156{bottom:483.436160pt;}
.y8e{bottom:486.000000pt;}
.y123{bottom:488.560000pt;}
.y17d{bottom:491.440000pt;}
.y144{bottom:493.360000pt;}
.y20{bottom:494.080000pt;}
.ye6{bottom:494.720000pt;}
.y73{bottom:494.960000pt;}
.y10c{bottom:495.280000pt;}
.y1b6{bottom:495.680000pt;}
.y1a3{bottom:495.996000pt;}
.y155{bottom:498.720000pt;}
.y1ce{bottom:499.360000pt;}
.yd6{bottom:503.040000pt;}
.yab{bottom:503.680000pt;}
.y8d{bottom:504.400000pt;}
.yf9{bottom:508.640000pt;}
.y122{bottom:509.680000pt;}
.y17c{bottom:509.840000pt;}
.ye5{bottom:510.560000pt;}
.y72{bottom:513.360000pt;}
.y10b{bottom:513.680000pt;}
.y143{bottom:514.560000pt;}
.y154{bottom:514.640000pt;}
.y1a2{bottom:520.560000pt;}
.y8c{bottom:522.800000pt;}
.y1f{bottom:523.200000pt;}
.yd5{bottom:524.240000pt;}
.yf8{bottom:524.560000pt;}
.yaa{bottom:524.880000pt;}
.ybe{bottom:530.800000pt;}
.y121{bottom:530.880000pt;}
.y71{bottom:531.760000pt;}
.y142{bottom:535.680000pt;}
.y17b{bottom:536.720000pt;}
.y1b5{bottom:537.432000pt;}
.y1cd{bottom:541.680000pt;}
.ya9{bottom:543.280000pt;}
.yd4{bottom:545.360000pt;}
.y10a{bottom:547.432000pt;}
.y120{bottom:549.280000pt;}
.y70{bottom:550.160000pt;}
.y8b{bottom:552.000000pt;}
.y1e{bottom:552.400000pt;}
.y1b4{bottom:552.796000pt;}
.y141{bottom:556.800000pt;}
.y40{bottom:558.400000pt;}
.y109{bottom:562.796000pt;}
.y1cc{bottom:562.880000pt;}
.yd3{bottom:566.560000pt;}
.y1b3{bottom:568.160000pt;}
.y6f{bottom:568.560000pt;}
.y8a{bottom:573.120000pt;}
.y1d{bottom:573.520000pt;}
.y1a1{bottom:575.360000pt;}
.ya8{bottom:577.028000pt;}
.y140{bottom:578.000000pt;}
.y108{bottom:578.160000pt;}
.y17a{bottom:581.120240pt;}
.y11f{bottom:583.032000pt;}
.y6e{bottom:586.960000pt;}
.y3f{bottom:587.520000pt;}
.yd2{bottom:587.680000pt;}
.y1a0{bottom:591.280000pt;}
.ya7{bottom:592.392000pt;}
.y107{bottom:594.080000pt;}
.y89{bottom:594.320000pt;}
.y1c{bottom:594.720000pt;}
.y179{bottom:596.484240pt;}
.y1cb{bottom:596.628000pt;}
.y11e{bottom:598.396000pt;}
.y13f{bottom:599.120000pt;}
.y6d{bottom:605.360000pt;}
.ya6{bottom:607.756000pt;}
.y3e{bottom:608.720000pt;}
.y19f{bottom:609.680000pt;}
.y1ca{bottom:611.992000pt;}
.y11d{bottom:613.760000pt;}
.yd1{bottom:614.640000pt;}
.y88{bottom:615.440000pt;}
.y1b{bottom:615.840000pt;}
.y13e{bottom:620.320000pt;}
.ya5{bottom:623.120000pt;}
.y6c{bottom:623.760000pt;}
.y1c9{bottom:627.356000pt;}
.y178{bottom:627.760000pt;}
.y19e{bottom:628.080000pt;}
.y11c{bottom:629.680000pt;}
.y3d{bottom:629.840000pt;}
.y87{bottom:636.640000pt;}
.y1a{bottom:637.040000pt;}
.y13d{bottom:641.440000pt;}
.y6b{bottom:642.160000pt;}
.y1c8{bottom:642.720000pt;}
.y19d{bottom:646.480000pt;}
.y3c{bottom:651.040000pt;}
.yd0{bottom:652.640000pt;}
.y86{bottom:657.760000pt;}
.y19{bottom:658.160000pt;}
.y1c7{bottom:658.560000pt;}
.y177{bottom:659.120000pt;}
.y6a{bottom:660.560000pt;}
.y13c{bottom:662.640000pt;}
.y19c{bottom:664.880000pt;}
.y3b{bottom:672.160000pt;}
.y176{bottom:674.480000pt;}
.y18{bottom:676.560000pt;}
.y69{bottom:678.960000pt;}
.y19b{bottom:683.280000pt;}
.y13b{bottom:683.760000pt;}
.y175{bottom:689.759867pt;}
.y3a{bottom:693.360000pt;}
.y17{bottom:694.960000pt;}
.ybd{bottom:700.080000pt;}
.y19a{bottom:701.680000pt;}
.y13a{bottom:704.960000pt;}
.y174{bottom:705.120000pt;}
.y68{bottom:708.080000pt;}
.ycf{bottom:710.880000pt;}
.y16{bottom:713.360000pt;}
.y39{bottom:714.480000pt;}
.y199{bottom:720.080000pt;}
.y173{bottom:720.456480pt;}
.ybc{bottom:721.280000pt;}
.y139{bottom:726.080000pt;}
.y67{bottom:729.280000pt;}
.y15{bottom:731.760000pt;}
.yce{bottom:732.000000pt;}
.y38{bottom:735.680000pt;}
.y172{bottom:735.740320pt;}
.y198{bottom:738.480000pt;}
.ybb{bottom:742.400000pt;}
.y138{bottom:747.280000pt;}
.y66{bottom:750.400000pt;}
.y171{bottom:751.104320pt;}
.ycd{bottom:753.200000pt;}
.y37{bottom:756.800000pt;}
.y197{bottom:756.880000pt;}
.y14{bottom:760.880000pt;}
.y170{bottom:766.388160pt;}
.y137{bottom:768.400000pt;}
.y65{bottom:771.600000pt;}
.ycc{bottom:774.320000pt;}
.y196{bottom:775.280000pt;}
.y36{bottom:778.000000pt;}
.y16f{bottom:781.752160pt;}
.y13{bottom:782.080000pt;}
.y4d{bottom:783.200000pt;}
.y136{bottom:789.600000pt;}
.y64{bottom:792.720000pt;}
.y195{bottom:793.680000pt;}
.ycb{bottom:795.520000pt;}
.y16e{bottom:797.116160pt;}
.y35{bottom:799.120000pt;}
.y12{bottom:802.240000pt;}
.y135{bottom:810.720000pt;}
.y194{bottom:812.080000pt;}
.y4c{bottom:812.400000pt;}
.y63{bottom:813.920000pt;}
.yca{bottom:816.640000pt;}
.y11{bottom:819.120000pt;}
.y34{bottom:820.320000pt;}
.y16d{bottom:828.320000pt;}
.y193{bottom:830.480000pt;}
.y134{bottom:831.920000pt;}
.y4b{bottom:833.520000pt;}
.y62{bottom:835.040000pt;}
.yc9{bottom:837.840000pt;}
.y10{bottom:839.280000pt;}
.y16c{bottom:846.720000pt;}
.y192{bottom:848.880000pt;}
.y33{bottom:849.440000pt;}
.y4a{bottom:854.720000pt;}
.y61{bottom:856.240000pt;}
.yf{bottom:858.880000pt;}
.yc8{bottom:858.960000pt;}
.y133{bottom:861.040000pt;}
.y16b{bottom:865.120000pt;}
.y191{bottom:867.280000pt;}
.y32{bottom:870.640000pt;}
.y49{bottom:875.840000pt;}
.y60{bottom:877.360000pt;}
.ye{bottom:881.360000pt;}
.y132{bottom:882.240000pt;}
.y16a{bottom:883.520000pt;}
.y153{bottom:885.360000pt;}
.y190{bottom:885.600000pt;}
.yc7{bottom:888.080000pt;}
.y31{bottom:891.760000pt;}
.y48{bottom:897.040000pt;}
.y5f{bottom:898.480000pt;}
.y169{bottom:901.920000pt;}
.y131{bottom:903.360000pt;}
.y18f{bottom:904.000000pt;}
.y85{bottom:906.480000pt;}
.yc6{bottom:909.280000pt;}
.y30{bottom:912.960000pt;}
.y47{bottom:918.160000pt;}
.yd{bottom:919.352880pt;}
.y168{bottom:920.320000pt;}
.y18e{bottom:922.400000pt;}
.y5e{bottom:927.680000pt;}
.y130{bottom:930.240000pt;}
.yc5{bottom:930.400000pt;}
.ya4{bottom:933.520000pt;}
.y2f{bottom:934.080000pt;}
.y167{bottom:938.720000pt;}
.y46{bottom:939.360000pt;}
.yc{bottom:940.480000pt;}
.y18d{bottom:940.800000pt;}
.y5d{bottom:948.800000pt;}
.yc4{bottom:951.600000pt;}
.ya3{bottom:954.640000pt;}
.y2e{bottom:955.280000pt;}
.y166{bottom:957.120000pt;}
.y45{bottom:960.480000pt;}
.y5c{bottom:970.000000pt;}
.yc3{bottom:972.720000pt;}
.yf7{bottom:975.520000pt;}
.ya2{bottom:975.840000pt;}
.y44{bottom:981.680000pt;}
.y2d{bottom:982.716000pt;}
.yb{bottom:985.832400pt;}
.y5b{bottom:991.120000pt;}
.yc2{bottom:993.920000pt;}
.ye4{bottom:996.244000pt;}
.ya1{bottom:996.960000pt;}
.y43{bottom:999.516160pt;}
.y2c{bottom:1007.280000pt;}
.ya{bottom:1008.480000pt;}
.y5a{bottom:1012.320000pt;}
.ye3{bottom:1014.640000pt;}
.y42{bottom:1014.800000pt;}
.y4{bottom:1041.440000pt;}
.y3{bottom:1059.596000pt;}
.y2{bottom:1074.320000pt;}
.y1{bottom:1089.680000pt;}
.h11{height:24.013125pt;}
.h5{height:29.200000pt;}
.h3{height:34.453125pt;}
.hd{height:36.583437pt;}
.he{height:37.131406pt;}
.h14{height:42.000000pt;}
.h10{height:42.281150pt;}
.hb{height:43.343750pt;}
.h9{height:43.733125pt;}
.ha{height:43.812500pt;}
.h15{height:43.844500pt;}
.h12{height:44.437500pt;}
.h4{height:44.468750pt;}
.h8{height:52.375000pt;}
.h13{height:53.571719pt;}
.hf{height:54.281719pt;}
.h7{height:56.826875pt;}
.h6{height:61.016875pt;}
.hc{height:62.202656pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.448000pt;}
.x1f{left:114.800000pt;}
.x17{left:116.405600pt;}
.x1a{left:117.359840pt;}
.x14{left:118.320000pt;}
.x23{left:120.810480pt;}
.x1d{left:122.078640pt;}
.x21{left:124.480000pt;}
.x10{left:137.440000pt;}
.x25{left:142.720000pt;}
.x28{left:145.437280pt;}
.x16{left:153.680000pt;}
.x1{left:159.440000pt;}
.x11{left:161.427280pt;}
.x1e{left:171.203360pt;}
.x22{left:183.798400pt;}
.x15{left:185.456640pt;}
.x27{left:197.840000pt;}
.x20{left:200.584560pt;}
.x24{left:205.846880pt;}
.x6{left:218.320000pt;}
.x4{left:264.160000pt;}
.x26{left:285.431520pt;}
.x19{left:305.440000pt;}
.x2a{left:308.373600pt;}
.x12{left:310.800000pt;}
.x1c{left:330.406400pt;}
.x29{left:343.909840pt;}
.x8{left:345.680000pt;}
.x1b{left:355.435040pt;}
.x18{left:372.583600pt;}
.x5{left:414.800000pt;}
.x13{left:425.200000pt;}
.x7{left:457.825360pt;}
.xe{left:462.560000pt;}
.x2{left:473.616000pt;}
.xc{left:489.680000pt;}
.x9{left:493.847600pt;}
.xb{left:526.160000pt;}
.xf{left:527.280000pt;}
.xa{left:534.000000pt;}
.xd{left:737.040000pt;}
}




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