
    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_9cdd56d449bc2ef2d68c2a85.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_2e42a5197959e697e40b4ee0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_1013f6d1fcc6930b7ff95f99.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_c58c719d333d499f8dd7d6cb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_2884a8526dc7d338324343f9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_bfa62965052f6a546fe69ffd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_193513f32a5a907af81ed55c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.034000;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_ad6076778bd29eabef5736cc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_6ebd64726d17c7ccef559499.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_086e6b32c46377a051c7b679.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;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_103560c5d9e43d7132e64c98.woff')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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b9825291cf8df87f008d0bc3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.082031;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.840600px;}
.ls2b{letter-spacing:-3.168000px;}
.ls25{letter-spacing:-2.808000px;}
.ls24{letter-spacing:-2.736000px;}
.ls2e{letter-spacing:-2.340000px;}
.ls1e{letter-spacing:-1.800000px;}
.ls21{letter-spacing:-1.296000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls23{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.864000px;}
.ls2d{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.100800px;}
.ls17{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.266400px;}
.ls13{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.338400px;}
.lse{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.044000px;}
.lsd{letter-spacing:1.152000px;}
.lsc{letter-spacing:1.224000px;}
.ls33{letter-spacing:3.720000px;}
.ls31{letter-spacing:4.176000px;}
.ls2f{letter-spacing:4.200000px;}
.ls32{letter-spacing:4.212000px;}
.ls2c{letter-spacing:4.260000px;}
.ls34{letter-spacing:4.290000px;}
.ls6{letter-spacing:4.560000px;}
.ls36{letter-spacing:4.752000px;}
.ls12{letter-spacing:5.112000px;}
.ls10{letter-spacing:6.019200px;}
.ls18{letter-spacing:6.516000px;}
.ls11{letter-spacing:6.624000px;}
.ls2{letter-spacing:8.460000px;}
.ls29{letter-spacing:10.368000px;}
.ls1{letter-spacing:10.740000px;}
.ls0{letter-spacing:240.000000px;}
.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;}
}
.ws2f{word-spacing:-63.576000px;}
.ws1a{word-spacing:-20.952000px;}
.ws8c{word-spacing:-20.880000px;}
.ws70{word-spacing:-20.520000px;}
.ws51{word-spacing:-20.332800px;}
.ws19{word-spacing:-20.232000px;}
.ws7f{word-spacing:-19.872000px;}
.ws7c{word-spacing:-19.656000px;}
.ws65{word-spacing:-19.296000px;}
.ws52{word-spacing:-18.432000px;}
.ws71{word-spacing:-18.000000px;}
.ws64{word-spacing:-17.928000px;}
.ws8b{word-spacing:-17.856000px;}
.ws30{word-spacing:-17.784000px;}
.ws55{word-spacing:-17.424000px;}
.ws6f{word-spacing:-17.280000px;}
.ws7d{word-spacing:-17.208000px;}
.ws50{word-spacing:-17.136000px;}
.ws53{word-spacing:-17.064000px;}
.ws7e{word-spacing:-16.992000px;}
.ws80{word-spacing:-16.860000px;}
.ws54{word-spacing:-16.704000px;}
.ws96{word-spacing:-16.260000px;}
.ws9a{word-spacing:-13.488000px;}
.ws98{word-spacing:-12.336000px;}
.ws99{word-spacing:-9.441600px;}
.ws8{word-spacing:-8.460000px;}
.ws38{word-spacing:-6.264000px;}
.ws7{word-spacing:-4.560000px;}
.ws81{word-spacing:-4.248000px;}
.ws86{word-spacing:-3.540000px;}
.ws34{word-spacing:-2.016000px;}
.ws3d{word-spacing:-1.584000px;}
.ws3c{word-spacing:-1.152000px;}
.ws3b{word-spacing:-0.936000px;}
.ws3e{word-spacing:-0.360000px;}
.ws7b{word-spacing:-0.288000px;}
.ws74{word-spacing:-0.216000px;}
.ws33{word-spacing:-0.144000px;}
.ws6c{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws4e{word-spacing:0.072000px;}
.ws37{word-spacing:0.144000px;}
.ws3a{word-spacing:0.216000px;}
.ws73{word-spacing:0.288000px;}
.wsa4{word-spacing:0.300000px;}
.ws58{word-spacing:0.360000px;}
.wsa3{word-spacing:0.384000px;}
.ws84{word-spacing:0.432000px;}
.ws39{word-spacing:0.504000px;}
.ws6b{word-spacing:0.576000px;}
.ws18{word-spacing:0.648000px;}
.ws5c{word-spacing:0.720000px;}
.ws28{word-spacing:0.792000px;}
.ws90{word-spacing:0.864000px;}
.ws27{word-spacing:0.936000px;}
.ws72{word-spacing:1.008000px;}
.ws6e{word-spacing:1.080000px;}
.ws56{word-spacing:1.152000px;}
.wsa{word-spacing:1.224000px;}
.ws2a{word-spacing:1.296000px;}
.ws5e{word-spacing:1.368000px;}
.wsc{word-spacing:1.440000px;}
.ws69{word-spacing:1.512000px;}
.ws32{word-spacing:1.584000px;}
.ws47{word-spacing:1.656000px;}
.ws68{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.ws43{word-spacing:1.872000px;}
.ws24{word-spacing:1.944000px;}
.ws3f{word-spacing:2.016000px;}
.ws36{word-spacing:2.088000px;}
.ws25{word-spacing:2.232000px;}
.ws9d{word-spacing:2.304000px;}
.ws63{word-spacing:2.376000px;}
.ws60{word-spacing:2.448000px;}
.ws9b{word-spacing:2.520000px;}
.ws8d{word-spacing:2.592000px;}
.wsf{word-spacing:2.664000px;}
.ws45{word-spacing:2.808000px;}
.ws9f{word-spacing:2.880000px;}
.ws59{word-spacing:2.952000px;}
.wsa2{word-spacing:2.976000px;}
.ws87{word-spacing:3.060000px;}
.ws82{word-spacing:3.096000px;}
.wse{word-spacing:3.168000px;}
.ws6a{word-spacing:3.312000px;}
.wsa1{word-spacing:3.360000px;}
.ws83{word-spacing:3.384000px;}
.ws78{word-spacing:3.456000px;}
.ws29{word-spacing:3.528000px;}
.ws1e{word-spacing:3.672000px;}
.ws2{word-spacing:3.720000px;}
.ws66{word-spacing:3.744000px;}
.ws35{word-spacing:3.816000px;}
.ws4a{word-spacing:3.888000px;}
.ws14{word-spacing:3.960000px;}
.ws5a{word-spacing:4.032000px;}
.ws1f{word-spacing:4.176000px;}
.ws1{word-spacing:4.200000px;}
.ws89{word-spacing:4.248000px;}
.ws5d{word-spacing:4.320000px;}
.ws1d{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws67{word-spacing:4.536000px;}
.ws9{word-spacing:4.608000px;}
.ws62{word-spacing:4.680000px;}
.ws10{word-spacing:4.752000px;}
.ws8a{word-spacing:4.896000px;}
.wsd{word-spacing:5.040000px;}
.ws17{word-spacing:5.112000px;}
.ws76{word-spacing:5.184000px;}
.ws22{word-spacing:5.256000px;}
.ws48{word-spacing:5.328000px;}
.ws88{word-spacing:5.472000px;}
.ws4d{word-spacing:5.616000px;}
.ws16{word-spacing:5.688000px;}
.ws85{word-spacing:5.832000px;}
.ws13{word-spacing:5.904000px;}
.ws1b{word-spacing:5.976000px;}
.ws2b{word-spacing:6.048000px;}
.ws49{word-spacing:6.264000px;}
.ws75{word-spacing:6.408000px;}
.ws9e{word-spacing:6.480000px;}
.ws42{word-spacing:6.552000px;}
.ws2d{word-spacing:6.624000px;}
.ws40{word-spacing:6.768000px;}
.ws2c{word-spacing:6.840000px;}
.ws93{word-spacing:6.984000px;}
.ws97{word-spacing:7.200000px;}
.ws44{word-spacing:7.272000px;}
.ws77{word-spacing:7.416000px;}
.ws2e{word-spacing:7.560000px;}
.ws5b{word-spacing:7.704000px;}
.ws41{word-spacing:7.776000px;}
.ws8e{word-spacing:7.848000px;}
.ws21{word-spacing:8.064000px;}
.ws46{word-spacing:8.136000px;}
.ws5f{word-spacing:8.208000px;}
.ws12{word-spacing:8.280000px;}
.wsa0{word-spacing:8.352000px;}
.ws4f{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws95{word-spacing:8.496000px;}
.ws1c{word-spacing:8.568000px;}
.ws91{word-spacing:8.640000px;}
.ws4c{word-spacing:8.712000px;}
.ws31{word-spacing:8.856000px;}
.ws6d{word-spacing:8.928000px;}
.ws79{word-spacing:9.000000px;}
.ws61{word-spacing:9.072000px;}
.ws8f{word-spacing:9.144000px;}
.ws20{word-spacing:9.216000px;}
.ws92{word-spacing:9.288000px;}
.ws26{word-spacing:9.432000px;}
.ws7a{word-spacing:9.504000px;}
.ws23{word-spacing:9.576000px;}
.ws9c{word-spacing:9.648000px;}
.ws57{word-spacing:9.720000px;}
.ws11{word-spacing:9.792000px;}
.ws4b{word-spacing:9.864000px;}
.ws94{word-spacing:10.008000px;}
.ws15{word-spacing:10.080000px;}
.wsb{word-spacing:10.152000px;}
.ws3{word-spacing:56.280000px;}
._5{margin-left:-47.880000px;}
._6{margin-left:-46.872000px;}
._7{margin-left:-24.840000px;}
._c{margin-left:-18.408000px;}
._10{margin-left:-15.398400px;}
._8{margin-left:-11.832000px;}
._a{margin-left:-9.312000px;}
._d{margin-left:-7.960800px;}
._3{margin-left:-6.792000px;}
._16{margin-left:-5.755200px;}
._2{margin-left:-4.512000px;}
._9{margin-left:-3.180000px;}
._1{margin-left:-1.404000px;}
._0{width:1.848000px;}
._b{width:2.992800px;}
._4{width:4.428000px;}
._15{width:7.236000px;}
._12{width:8.460000px;}
._13{width:10.279200px;}
._17{width:14.040000px;}
._f{width:25.293600px;}
._11{width:201.564000px;}
._14{width:203.406000px;}
._e{width:241.843800px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.600000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y42{bottom:117.000000px;}
.yf1{bottom:117.196050px;}
.yc8{bottom:117.534000px;}
.y64{bottom:117.888000px;}
.y11c{bottom:117.900000px;}
.y8f{bottom:118.110000px;}
.y190{bottom:118.534200px;}
.y1b5{bottom:118.938150px;}
.ya6{bottom:118.956000px;}
.y145{bottom:118.996050px;}
.y16c{bottom:119.536050px;}
.y20{bottom:120.218550px;}
.y1d6{bottom:120.304050px;}
.y1d5{bottom:135.448050px;}
.yf0{bottom:135.796050px;}
.y11b{bottom:136.800000px;}
.y1b4{bottom:137.838150px;}
.y144{bottom:138.046050px;}
.y41{bottom:139.500000px;}
.yc7{bottom:140.934000px;}
.y8e{bottom:141.204000px;}
.y63{bottom:141.288000px;}
.ya5{bottom:141.312000px;}
.y18f{bottom:141.934200px;}
.y16b{bottom:142.630050px;}
.y1f{bottom:142.718550px;}
.y1d4{bottom:150.592050px;}
.yef{bottom:154.546050px;}
.y11a{bottom:155.700000px;}
.y1b3{bottom:156.738150px;}
.y143{bottom:157.096050px;}
.y40{bottom:162.000000px;}
.yc6{bottom:163.578000px;}
.ya4{bottom:163.668000px;}
.y8d{bottom:164.298000px;}
.y62{bottom:164.688000px;}
.y1e{bottom:165.218550px;}
.y18e{bottom:165.334200px;}
.y16a{bottom:165.724050px;}
.y1d3{bottom:165.736050px;}
.yee{bottom:173.296050px;}
.y119{bottom:174.600000px;}
.y1b2{bottom:175.638150px;}
.y142{bottom:176.146050px;}
.y1d2{bottom:180.880050px;}
.y3f{bottom:184.500000px;}
.yc5{bottom:186.672000px;}
.ya3{bottom:186.762000px;}
.y8c{bottom:187.392000px;}
.y1d{bottom:187.718550px;}
.y61{bottom:188.088000px;}
.y169{bottom:188.818050px;}
.yed{bottom:192.046050px;}
.y118{bottom:193.500000px;}
.y1b1{bottom:194.538150px;}
.y141{bottom:195.196050px;}
.y1d1{bottom:196.024050px;}
.y18d{bottom:197.238150px;}
.y3e{bottom:207.000000px;}
.yc4{bottom:209.766000px;}
.ya2{bottom:209.856000px;}
.y1c{bottom:210.218550px;}
.y8b{bottom:210.486000px;}
.yec{bottom:210.796050px;}
.y1d0{bottom:211.174200px;}
.y60{bottom:211.488000px;}
.y168{bottom:211.912050px;}
.y117{bottom:212.400000px;}
.y1b0{bottom:213.438150px;}
.y140{bottom:214.246050px;}
.y18c{bottom:217.038150px;}
.y1cf{bottom:226.318050px;}
.y3d{bottom:229.500000px;}
.yeb{bottom:229.546050px;}
.y116{bottom:231.300000px;}
.y1af{bottom:232.338150px;}
.y1b{bottom:232.718550px;}
.yc3{bottom:232.860000px;}
.ya1{bottom:232.950000px;}
.y13f{bottom:233.296050px;}
.y8a{bottom:233.580000px;}
.y5f{bottom:234.888000px;}
.y167{bottom:235.006050px;}
.y18b{bottom:236.838150px;}
.y1ce{bottom:241.462050px;}
.yea{bottom:248.296050px;}
.y115{bottom:250.200000px;}
.y1ae{bottom:251.238150px;}
.y3c{bottom:252.000000px;}
.y13e{bottom:252.346050px;}
.y1a{bottom:255.218550px;}
.yc2{bottom:255.954000px;}
.ya0{bottom:256.044000px;}
.y1cd{bottom:256.618050px;}
.y18a{bottom:256.638150px;}
.y89{bottom:256.674000px;}
.y166{bottom:258.100050px;}
.y5e{bottom:258.288000px;}
.ye9{bottom:267.046050px;}
.y114{bottom:269.100000px;}
.y1ad{bottom:270.138150px;}
.y13d{bottom:271.396050px;}
.y3b{bottom:274.500000px;}
.y189{bottom:276.438150px;}
.y19{bottom:277.718550px;}
.y1cc{bottom:278.146050px;}
.yc1{bottom:279.048000px;}
.y9f{bottom:279.138000px;}
.y88{bottom:279.768000px;}
.y165{bottom:281.194050px;}
.y5d{bottom:281.688000px;}
.ye8{bottom:285.796050px;}
.y113{bottom:288.000000px;}
.y13c{bottom:290.596050px;}
.y188{bottom:296.238150px;}
.y3a{bottom:297.000000px;}
.y1ac{bottom:297.578100px;}
.y18{bottom:300.218550px;}
.yc0{bottom:302.142000px;}
.y9e{bottom:302.232000px;}
.y87{bottom:302.862000px;}
.y164{bottom:304.288050px;}
.ye7{bottom:304.546050px;}
.y5c{bottom:305.088000px;}
.y112{bottom:306.900000px;}
.y13b{bottom:309.796050px;}
.y187{bottom:316.038150px;}
.y39{bottom:319.500000px;}
.y1ab{bottom:320.222100px;}
.y17{bottom:322.718550px;}
.ye6{bottom:323.296050px;}
.y1cb{bottom:323.374050px;}
.ybf{bottom:325.236000px;}
.y9d{bottom:325.326000px;}
.y111{bottom:325.800000px;}
.y86{bottom:325.956000px;}
.y163{bottom:327.382050px;}
.y5b{bottom:328.488000px;}
.y13a{bottom:328.996050px;}
.y38{bottom:342.000000px;}
.ye5{bottom:342.046050px;}
.y1aa{bottom:342.866100px;}
.y186{bottom:344.342100px;}
.y110{bottom:344.700000px;}
.y16{bottom:345.218550px;}
.y1ca{bottom:346.180050px;}
.y139{bottom:348.196050px;}
.ybe{bottom:348.330000px;}
.y9c{bottom:348.420000px;}
.y85{bottom:349.050000px;}
.y162{bottom:350.476050px;}
.y5a{bottom:351.888000px;}
.ye4{bottom:360.796050px;}
.y10f{bottom:363.600000px;}
.y37{bottom:364.500000px;}
.y1a9{bottom:365.510100px;}
.y138{bottom:367.396050px;}
.y15{bottom:367.718550px;}
.y1c9{bottom:368.986050px;}
.ybd{bottom:371.424000px;}
.y84{bottom:372.144000px;}
.y161{bottom:373.570050px;}
.y59{bottom:375.288000px;}
.y185{bottom:376.396050px;}
.ye3{bottom:379.546050px;}
.y10e{bottom:382.500000px;}
.y9b{bottom:383.376000px;}
.y137{bottom:386.596050px;}
.y6b{bottom:387.000000px;}
.y1a8{bottom:388.154100px;}
.y14{bottom:390.218550px;}
.y1c8{bottom:391.792050px;}
.ybc{bottom:394.518000px;}
.y83{bottom:395.238000px;}
.y184{bottom:396.196050px;}
.y160{bottom:396.664050px;}
.y36{bottom:398.250000px;}
.ye2{bottom:398.296050px;}
.y58{bottom:398.688000px;}
.y10d{bottom:401.400000px;}
.y136{bottom:405.796050px;}
.y9a{bottom:406.470000px;}
.y6a{bottom:409.500000px;}
.y1a7{bottom:410.798100px;}
.y13{bottom:412.718550px;}
.y1c7{bottom:414.598050px;}
.y183{bottom:415.996050px;}
.ye1{bottom:417.046050px;}
.ybb{bottom:417.612000px;}
.y82{bottom:418.332000px;}
.y15f{bottom:419.758050px;}
.y10c{bottom:420.300000px;}
.y35{bottom:420.750000px;}
.y57{bottom:422.088000px;}
.y135{bottom:424.996050px;}
.y99{bottom:429.564000px;}
.y69{bottom:432.000000px;}
.y1a6{bottom:433.442100px;}
.y12{bottom:435.218550px;}
.ye0{bottom:435.796050px;}
.y1c6{bottom:437.404050px;}
.y10b{bottom:439.200000px;}
.yba{bottom:440.706000px;}
.y81{bottom:441.426000px;}
.y15e{bottom:442.852050px;}
.y34{bottom:443.250000px;}
.y134{bottom:444.196050px;}
.y98{bottom:452.658000px;}
.y68{bottom:454.500000px;}
.ydf{bottom:454.546050px;}
.y182{bottom:455.596050px;}
.y56{bottom:457.638000px;}
.y11{bottom:457.718550px;}
.y10a{bottom:458.100000px;}
.y1c5{bottom:460.210050px;}
.y133{bottom:463.396050px;}
.yb9{bottom:463.800000px;}
.y80{bottom:464.520000px;}
.y1a5{bottom:464.596050px;}
.y33{bottom:465.750000px;}
.y15d{bottom:465.946050px;}
.yde{bottom:473.296050px;}
.y181{bottom:475.396050px;}
.y97{bottom:475.752000px;}
.y67{bottom:477.000000px;}
.y1eb{bottom:479.244150px;}
.y10{bottom:480.218550px;}
.y55{bottom:481.038000px;}
.y132{bottom:482.596050px;}
.y1c4{bottom:483.016050px;}
.y1a4{bottom:483.496050px;}
.yb8{bottom:486.900000px;}
.y7f{bottom:487.614000px;}
.y32{bottom:488.250000px;}
.ydd{bottom:492.046050px;}
.y180{bottom:495.196050px;}
.y109{bottom:495.900000px;}
.y15c{bottom:497.550000px;}
.y1ea{bottom:497.994150px;}
.y96{bottom:498.846000px;}
.y66{bottom:499.500000px;}
.y131{bottom:501.796050px;}
.y1a3{bottom:502.396050px;}
.yf{bottom:502.718550px;}
.y54{bottom:504.438000px;}
.y1c3{bottom:505.822050px;}
.yb7{bottom:510.000000px;}
.y7e{bottom:510.708000px;}
.ydc{bottom:510.796050px;}
.y108{bottom:514.800000px;}
.y17f{bottom:514.996050px;}
.y1e9{bottom:516.744150px;}
.y15b{bottom:517.200000px;}
.y130{bottom:520.996050px;}
.y1a2{bottom:521.296050px;}
.y95{bottom:521.940000px;}
.y31{bottom:522.000000px;}
.ye{bottom:525.218550px;}
.y53{bottom:527.838000px;}
.y1c2{bottom:528.628050px;}
.ydb{bottom:529.546050px;}
.y107{bottom:533.700000px;}
.y7d{bottom:533.802000px;}
.y17e{bottom:534.796050px;}
.y1e8{bottom:535.494150px;}
.y15a{bottom:536.850000px;}
.y12f{bottom:540.196050px;}
.y30{bottom:544.500000px;}
.y94{bottom:545.034000px;}
.yd{bottom:547.718550px;}
.yda{bottom:548.296050px;}
.y52{bottom:551.238000px;}
.y1c1{bottom:551.434050px;}
.y106{bottom:552.600000px;}
.y17d{bottom:554.446050px;}
.yb6{bottom:556.248000px;}
.y159{bottom:556.500000px;}
.y7c{bottom:556.896000px;}
.y1a1{bottom:559.096050px;}
.y12e{bottom:559.396050px;}
.y1e7{bottom:565.494150px;}
.y2f{bottom:567.000000px;}
.yd9{bottom:567.046050px;}
.y93{bottom:568.128000px;}
.yc{bottom:570.218550px;}
.y105{bottom:571.500000px;}
.y17c{bottom:574.096050px;}
.y1c0{bottom:574.240050px;}
.y51{bottom:574.638000px;}
.y158{bottom:576.150000px;}
.y1a0{bottom:577.996050px;}
.y12d{bottom:578.596050px;}
.yb5{bottom:579.342000px;}
.y7b{bottom:579.990000px;}
.yd8{bottom:585.796050px;}
.y2e{bottom:589.500000px;}
.y104{bottom:590.400000px;}
.y92{bottom:591.222000px;}
.yb{bottom:592.718550px;}
.y17b{bottom:593.746050px;}
.y157{bottom:595.800000px;}
.y19f{bottom:596.896050px;}
.y1bf{bottom:597.046050px;}
.y12c{bottom:597.796050px;}
.y50{bottom:598.038000px;}
.yb4{bottom:602.436000px;}
.y7a{bottom:603.084000px;}
.yd7{bottom:604.546050px;}
.y1e6{bottom:606.744150px;}
.y103{bottom:609.300000px;}
.y2d{bottom:612.000000px;}
.y17a{bottom:613.396050px;}
.y91{bottom:614.316000px;}
.ya{bottom:615.218550px;}
.y156{bottom:615.450000px;}
.y19e{bottom:615.796050px;}
.y12b{bottom:616.996050px;}
.y1be{bottom:619.846050px;}
.y4f{bottom:621.438000px;}
.y1e5{bottom:625.494150px;}
.yb3{bottom:625.530000px;}
.y79{bottom:626.178000px;}
.y102{bottom:628.200000px;}
.yd6{bottom:631.830000px;}
.y179{bottom:633.046050px;}
.y2c{bottom:634.500000px;}
.y19d{bottom:634.696050px;}
.y155{bottom:635.100000px;}
.y12a{bottom:636.196050px;}
.y90{bottom:637.410000px;}
.y9{bottom:637.718550px;}
.y1e4{bottom:644.244150px;}
.y4e{bottom:644.838000px;}
.y101{bottom:647.100000px;}
.yb2{bottom:648.624000px;}
.y78{bottom:649.272000px;}
.y178{bottom:652.696050px;}
.y19c{bottom:653.596050px;}
.yd5{bottom:654.636000px;}
.y154{bottom:654.750000px;}
.y129{bottom:655.396050px;}
.y2b{bottom:657.000000px;}
.y8{bottom:660.218550px;}
.y1e3{bottom:662.994150px;}
.y1bd{bottom:665.338050px;}
.y100{bottom:666.000000px;}
.y4d{bottom:668.238000px;}
.yb1{bottom:671.718000px;}
.y177{bottom:672.346050px;}
.y77{bottom:672.366000px;}
.y19b{bottom:672.496050px;}
.y153{bottom:674.400000px;}
.y128{bottom:674.596050px;}
.yd4{bottom:677.442000px;}
.y2a{bottom:679.500000px;}
.y1e2{bottom:681.744150px;}
.y7{bottom:682.718550px;}
.yff{bottom:684.900000px;}
.y1bc{bottom:687.982050px;}
.y19a{bottom:691.396050px;}
.y176{bottom:691.996050px;}
.y127{bottom:693.796050px;}
.y152{bottom:694.050000px;}
.yb0{bottom:694.812000px;}
.y76{bottom:695.460000px;}
.yd3{bottom:700.248000px;}
.y1e1{bottom:700.494150px;}
.y29{bottom:702.000000px;}
.y4c{bottom:703.788000px;}
.yfe{bottom:703.800000px;}
.y199{bottom:710.296050px;}
.y1bb{bottom:710.626050px;}
.y175{bottom:711.646050px;}
.y151{bottom:713.700000px;}
.yaf{bottom:717.906000px;}
.y75{bottom:718.554000px;}
.y1e0{bottom:719.244150px;}
.y126{bottom:721.446000px;}
.yfd{bottom:722.700000px;}
.yd2{bottom:723.054000px;}
.y28{bottom:724.500000px;}
.y4b{bottom:727.188000px;}
.y6{bottom:727.718550px;}
.y198{bottom:729.196050px;}
.y1ba{bottom:733.270050px;}
.y150{bottom:733.350000px;}
.y1df{bottom:737.994150px;}
.y174{bottom:739.050000px;}
.yae{bottom:741.000000px;}
.yfc{bottom:741.600000px;}
.y74{bottom:741.648000px;}
.y125{bottom:744.252000px;}
.yd1{bottom:745.698000px;}
.y27{bottom:747.000000px;}
.y197{bottom:748.096050px;}
.y4a{bottom:750.588000px;}
.y14f{bottom:753.000000px;}
.y1b9{bottom:755.914050px;}
.yfb{bottom:760.500000px;}
.y173{bottom:762.450000px;}
.y1de{bottom:763.122000px;}
.yad{bottom:764.094000px;}
.y73{bottom:764.742000px;}
.y196{bottom:766.996050px;}
.y124{bottom:767.058000px;}
.yd0{bottom:768.342000px;}
.y26{bottom:769.500000px;}
.y5{bottom:769.854300px;}
.y14e{bottom:772.650000px;}
.y49{bottom:773.988000px;}
.y1b8{bottom:778.558050px;}
.yfa{bottom:779.400000px;}
.y1dd{bottom:785.622000px;}
.y172{bottom:785.850000px;}
.y195{bottom:785.896050px;}
.yac{bottom:787.188000px;}
.y72{bottom:787.836000px;}
.y123{bottom:789.864000px;}
.ycf{bottom:790.986000px;}
.y65{bottom:792.000000px;}
.y14d{bottom:792.300000px;}
.y4{bottom:792.354300px;}
.y48{bottom:797.388000px;}
.yf9{bottom:798.300000px;}
.y1b7{bottom:801.202050px;}
.y1dc{bottom:808.122000px;}
.y171{bottom:809.250000px;}
.yab{bottom:810.282000px;}
.y71{bottom:810.930000px;}
.y14c{bottom:811.950000px;}
.y122{bottom:812.670000px;}
.y194{bottom:813.318000px;}
.yce{bottom:813.630000px;}
.y25{bottom:814.500000px;}
.yf8{bottom:817.200000px;}
.y47{bottom:820.788000px;}
.y1b6{bottom:823.846050px;}
.y1db{bottom:826.872000px;}
.y14b{bottom:831.600000px;}
.y170{bottom:832.650000px;}
.yaa{bottom:833.376000px;}
.y70{bottom:834.024000px;}
.y121{bottom:835.476000px;}
.y193{bottom:835.962000px;}
.yf7{bottom:836.100000px;}
.ycd{bottom:836.274000px;}
.y24{bottom:837.000000px;}
.y46{bottom:844.188000px;}
.y1da{bottom:845.622000px;}
.y14a{bottom:851.250000px;}
.yf6{bottom:855.000000px;}
.y16f{bottom:856.050000px;}
.ya9{bottom:856.632000px;}
.y6f{bottom:857.118000px;}
.y120{bottom:858.282000px;}
.y192{bottom:858.606000px;}
.ycc{bottom:858.918000px;}
.y3{bottom:859.500000px;}
.y1d9{bottom:864.372000px;}
.y45{bottom:867.588000px;}
.y149{bottom:870.900000px;}
.yf5{bottom:873.900000px;}
.y16e{bottom:879.450000px;}
.ya8{bottom:879.888000px;}
.y6e{bottom:880.212000px;}
.y11f{bottom:881.088000px;}
.y191{bottom:881.250000px;}
.ycb{bottom:881.562000px;}
.y23{bottom:882.000000px;}
.y1d8{bottom:883.122000px;}
.y2{bottom:889.500000px;}
.y148{bottom:890.550000px;}
.yf4{bottom:892.800000px;}
.y1d7{bottom:901.872000px;}
.y16d{bottom:902.850000px;}
.y44{bottom:902.994000px;}
.ya7{bottom:903.144000px;}
.y6d{bottom:903.306000px;}
.y11e{bottom:903.894000px;}
.yca{bottom:904.206000px;}
.y22{bottom:904.500000px;}
.y147{bottom:910.200000px;}
.yf3{bottom:911.700000px;}
.y43{bottom:926.250000px;}
.y6c{bottom:926.400000px;}
.y11d{bottom:926.700000px;}
.yc9{bottom:926.850000px;}
.y21{bottom:927.000000px;}
.y146{bottom:929.850000px;}
.yf2{bottom:930.600000px;}
.h6{height:33.117188px;}
.h8{height:38.997431px;}
.h7{height:39.022631px;}
.h5{height:39.888000px;}
.h1{height:41.396484px;}
.h3{height:42.000000px;}
.h4{height:49.675781px;}
.h9{height:50.947266px;}
.h2{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x2{left:82.381950px;}
.x9{left:97.249950px;}
.x8{left:101.497950px;}
.x4{left:112.500000px;}
.xb{left:118.518750px;}
.x5{left:127.381950px;}
.x10{left:131.268750px;}
.x15{left:135.526950px;}
.x13{left:139.771950px;}
.x6{left:142.249950px;}
.x7{left:146.479950px;}
.xc{left:155.013750px;}
.xa{left:163.518900px;}
.x11{left:165.273750px;}
.xd{left:176.268750px;}
.x14{left:184.778550px;}
.xe{left:210.288750px;}
.x12{left:220.548750px;}
.xf{left:254.928750px;}
.x3{left:417.403050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.080533pt;}
.ls2b{letter-spacing:-2.816000pt;}
.ls25{letter-spacing:-2.496000pt;}
.ls24{letter-spacing:-2.432000pt;}
.ls2e{letter-spacing:-2.080000pt;}
.ls1e{letter-spacing:-1.600000pt;}
.ls21{letter-spacing:-1.152000pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.768000pt;}
.ls2d{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.089600pt;}
.ls17{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.236800pt;}
.ls13{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.300800pt;}
.lse{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls20{letter-spacing:0.928000pt;}
.lsd{letter-spacing:1.024000pt;}
.lsc{letter-spacing:1.088000pt;}
.ls33{letter-spacing:3.306667pt;}
.ls31{letter-spacing:3.712000pt;}
.ls2f{letter-spacing:3.733333pt;}
.ls32{letter-spacing:3.744000pt;}
.ls2c{letter-spacing:3.786667pt;}
.ls34{letter-spacing:3.813333pt;}
.ls6{letter-spacing:4.053333pt;}
.ls36{letter-spacing:4.224000pt;}
.ls12{letter-spacing:4.544000pt;}
.ls10{letter-spacing:5.350400pt;}
.ls18{letter-spacing:5.792000pt;}
.ls11{letter-spacing:5.888000pt;}
.ls2{letter-spacing:7.520000pt;}
.ls29{letter-spacing:9.216000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls0{letter-spacing:213.333333pt;}
.ws2f{word-spacing:-56.512000pt;}
.ws1a{word-spacing:-18.624000pt;}
.ws8c{word-spacing:-18.560000pt;}
.ws70{word-spacing:-18.240000pt;}
.ws51{word-spacing:-18.073600pt;}
.ws19{word-spacing:-17.984000pt;}
.ws7f{word-spacing:-17.664000pt;}
.ws7c{word-spacing:-17.472000pt;}
.ws65{word-spacing:-17.152000pt;}
.ws52{word-spacing:-16.384000pt;}
.ws71{word-spacing:-16.000000pt;}
.ws64{word-spacing:-15.936000pt;}
.ws8b{word-spacing:-15.872000pt;}
.ws30{word-spacing:-15.808000pt;}
.ws55{word-spacing:-15.488000pt;}
.ws6f{word-spacing:-15.360000pt;}
.ws7d{word-spacing:-15.296000pt;}
.ws50{word-spacing:-15.232000pt;}
.ws53{word-spacing:-15.168000pt;}
.ws7e{word-spacing:-15.104000pt;}
.ws80{word-spacing:-14.986667pt;}
.ws54{word-spacing:-14.848000pt;}
.ws96{word-spacing:-14.453333pt;}
.ws9a{word-spacing:-11.989333pt;}
.ws98{word-spacing:-10.965333pt;}
.ws99{word-spacing:-8.392533pt;}
.ws8{word-spacing:-7.520000pt;}
.ws38{word-spacing:-5.568000pt;}
.ws7{word-spacing:-4.053333pt;}
.ws81{word-spacing:-3.776000pt;}
.ws86{word-spacing:-3.146667pt;}
.ws34{word-spacing:-1.792000pt;}
.ws3d{word-spacing:-1.408000pt;}
.ws3c{word-spacing:-1.024000pt;}
.ws3b{word-spacing:-0.832000pt;}
.ws3e{word-spacing:-0.320000pt;}
.ws7b{word-spacing:-0.256000pt;}
.ws74{word-spacing:-0.192000pt;}
.ws33{word-spacing:-0.128000pt;}
.ws6c{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.064000pt;}
.ws37{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.192000pt;}
.ws73{word-spacing:0.256000pt;}
.wsa4{word-spacing:0.266667pt;}
.ws58{word-spacing:0.320000pt;}
.wsa3{word-spacing:0.341333pt;}
.ws84{word-spacing:0.384000pt;}
.ws39{word-spacing:0.448000pt;}
.ws6b{word-spacing:0.512000pt;}
.ws18{word-spacing:0.576000pt;}
.ws5c{word-spacing:0.640000pt;}
.ws28{word-spacing:0.704000pt;}
.ws90{word-spacing:0.768000pt;}
.ws27{word-spacing:0.832000pt;}
.ws72{word-spacing:0.896000pt;}
.ws6e{word-spacing:0.960000pt;}
.ws56{word-spacing:1.024000pt;}
.wsa{word-spacing:1.088000pt;}
.ws2a{word-spacing:1.152000pt;}
.ws5e{word-spacing:1.216000pt;}
.wsc{word-spacing:1.280000pt;}
.ws69{word-spacing:1.344000pt;}
.ws32{word-spacing:1.408000pt;}
.ws47{word-spacing:1.472000pt;}
.ws68{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.ws43{word-spacing:1.664000pt;}
.ws24{word-spacing:1.728000pt;}
.ws3f{word-spacing:1.792000pt;}
.ws36{word-spacing:1.856000pt;}
.ws25{word-spacing:1.984000pt;}
.ws9d{word-spacing:2.048000pt;}
.ws63{word-spacing:2.112000pt;}
.ws60{word-spacing:2.176000pt;}
.ws9b{word-spacing:2.240000pt;}
.ws8d{word-spacing:2.304000pt;}
.wsf{word-spacing:2.368000pt;}
.ws45{word-spacing:2.496000pt;}
.ws9f{word-spacing:2.560000pt;}
.ws59{word-spacing:2.624000pt;}
.wsa2{word-spacing:2.645333pt;}
.ws87{word-spacing:2.720000pt;}
.ws82{word-spacing:2.752000pt;}
.wse{word-spacing:2.816000pt;}
.ws6a{word-spacing:2.944000pt;}
.wsa1{word-spacing:2.986667pt;}
.ws83{word-spacing:3.008000pt;}
.ws78{word-spacing:3.072000pt;}
.ws29{word-spacing:3.136000pt;}
.ws1e{word-spacing:3.264000pt;}
.ws2{word-spacing:3.306667pt;}
.ws66{word-spacing:3.328000pt;}
.ws35{word-spacing:3.392000pt;}
.ws4a{word-spacing:3.456000pt;}
.ws14{word-spacing:3.520000pt;}
.ws5a{word-spacing:3.584000pt;}
.ws1f{word-spacing:3.712000pt;}
.ws1{word-spacing:3.733333pt;}
.ws89{word-spacing:3.776000pt;}
.ws5d{word-spacing:3.840000pt;}
.ws1d{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws67{word-spacing:4.032000pt;}
.ws9{word-spacing:4.096000pt;}
.ws62{word-spacing:4.160000pt;}
.ws10{word-spacing:4.224000pt;}
.ws8a{word-spacing:4.352000pt;}
.wsd{word-spacing:4.480000pt;}
.ws17{word-spacing:4.544000pt;}
.ws76{word-spacing:4.608000pt;}
.ws22{word-spacing:4.672000pt;}
.ws48{word-spacing:4.736000pt;}
.ws88{word-spacing:4.864000pt;}
.ws4d{word-spacing:4.992000pt;}
.ws16{word-spacing:5.056000pt;}
.ws85{word-spacing:5.184000pt;}
.ws13{word-spacing:5.248000pt;}
.ws1b{word-spacing:5.312000pt;}
.ws2b{word-spacing:5.376000pt;}
.ws49{word-spacing:5.568000pt;}
.ws75{word-spacing:5.696000pt;}
.ws9e{word-spacing:5.760000pt;}
.ws42{word-spacing:5.824000pt;}
.ws2d{word-spacing:5.888000pt;}
.ws40{word-spacing:6.016000pt;}
.ws2c{word-spacing:6.080000pt;}
.ws93{word-spacing:6.208000pt;}
.ws97{word-spacing:6.400000pt;}
.ws44{word-spacing:6.464000pt;}
.ws77{word-spacing:6.592000pt;}
.ws2e{word-spacing:6.720000pt;}
.ws5b{word-spacing:6.848000pt;}
.ws41{word-spacing:6.912000pt;}
.ws8e{word-spacing:6.976000pt;}
.ws21{word-spacing:7.168000pt;}
.ws46{word-spacing:7.232000pt;}
.ws5f{word-spacing:7.296000pt;}
.ws12{word-spacing:7.360000pt;}
.wsa0{word-spacing:7.424000pt;}
.ws4f{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws95{word-spacing:7.552000pt;}
.ws1c{word-spacing:7.616000pt;}
.ws91{word-spacing:7.680000pt;}
.ws4c{word-spacing:7.744000pt;}
.ws31{word-spacing:7.872000pt;}
.ws6d{word-spacing:7.936000pt;}
.ws79{word-spacing:8.000000pt;}
.ws61{word-spacing:8.064000pt;}
.ws8f{word-spacing:8.128000pt;}
.ws20{word-spacing:8.192000pt;}
.ws92{word-spacing:8.256000pt;}
.ws26{word-spacing:8.384000pt;}
.ws7a{word-spacing:8.448000pt;}
.ws23{word-spacing:8.512000pt;}
.ws9c{word-spacing:8.576000pt;}
.ws57{word-spacing:8.640000pt;}
.ws11{word-spacing:8.704000pt;}
.ws4b{word-spacing:8.768000pt;}
.ws94{word-spacing:8.896000pt;}
.ws15{word-spacing:8.960000pt;}
.wsb{word-spacing:9.024000pt;}
.ws3{word-spacing:50.026667pt;}
._5{margin-left:-42.560000pt;}
._6{margin-left:-41.664000pt;}
._7{margin-left:-22.080000pt;}
._c{margin-left:-16.362667pt;}
._10{margin-left:-13.687467pt;}
._8{margin-left:-10.517333pt;}
._a{margin-left:-8.277333pt;}
._d{margin-left:-7.076267pt;}
._3{margin-left:-6.037333pt;}
._16{margin-left:-5.115733pt;}
._2{margin-left:-4.010667pt;}
._9{margin-left:-2.826667pt;}
._1{margin-left:-1.248000pt;}
._0{width:1.642667pt;}
._b{width:2.660267pt;}
._4{width:3.936000pt;}
._15{width:6.432000pt;}
._12{width:7.520000pt;}
._13{width:9.137067pt;}
._17{width:12.480000pt;}
._f{width:22.483200pt;}
._11{width:179.168000pt;}
._14{width:180.805333pt;}
._e{width:214.972267pt;}
.fs4{font-size:29.866667pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y42{bottom:104.000000pt;}
.yf1{bottom:104.174267pt;}
.yc8{bottom:104.474667pt;}
.y64{bottom:104.789333pt;}
.y11c{bottom:104.800000pt;}
.y8f{bottom:104.986667pt;}
.y190{bottom:105.363733pt;}
.y1b5{bottom:105.722800pt;}
.ya6{bottom:105.738667pt;}
.y145{bottom:105.774267pt;}
.y16c{bottom:106.254267pt;}
.y20{bottom:106.860933pt;}
.y1d6{bottom:106.936933pt;}
.y1d5{bottom:120.398267pt;}
.yf0{bottom:120.707600pt;}
.y11b{bottom:121.600000pt;}
.y1b4{bottom:122.522800pt;}
.y144{bottom:122.707600pt;}
.y41{bottom:124.000000pt;}
.yc7{bottom:125.274667pt;}
.y8e{bottom:125.514667pt;}
.y63{bottom:125.589333pt;}
.ya5{bottom:125.610667pt;}
.y18f{bottom:126.163733pt;}
.y16b{bottom:126.782267pt;}
.y1f{bottom:126.860933pt;}
.y1d4{bottom:133.859600pt;}
.yef{bottom:137.374267pt;}
.y11a{bottom:138.400000pt;}
.y1b3{bottom:139.322800pt;}
.y143{bottom:139.640933pt;}
.y40{bottom:144.000000pt;}
.yc6{bottom:145.402667pt;}
.ya4{bottom:145.482667pt;}
.y8d{bottom:146.042667pt;}
.y62{bottom:146.389333pt;}
.y1e{bottom:146.860933pt;}
.y18e{bottom:146.963733pt;}
.y16a{bottom:147.310267pt;}
.y1d3{bottom:147.320933pt;}
.yee{bottom:154.040933pt;}
.y119{bottom:155.200000pt;}
.y1b2{bottom:156.122800pt;}
.y142{bottom:156.574267pt;}
.y1d2{bottom:160.782267pt;}
.y3f{bottom:164.000000pt;}
.yc5{bottom:165.930667pt;}
.ya3{bottom:166.010667pt;}
.y8c{bottom:166.570667pt;}
.y1d{bottom:166.860933pt;}
.y61{bottom:167.189333pt;}
.y169{bottom:167.838267pt;}
.yed{bottom:170.707600pt;}
.y118{bottom:172.000000pt;}
.y1b1{bottom:172.922800pt;}
.y141{bottom:173.507600pt;}
.y1d1{bottom:174.243600pt;}
.y18d{bottom:175.322800pt;}
.y3e{bottom:184.000000pt;}
.yc4{bottom:186.458667pt;}
.ya2{bottom:186.538667pt;}
.y1c{bottom:186.860933pt;}
.y8b{bottom:187.098667pt;}
.yec{bottom:187.374267pt;}
.y1d0{bottom:187.710400pt;}
.y60{bottom:187.989333pt;}
.y168{bottom:188.366267pt;}
.y117{bottom:188.800000pt;}
.y1b0{bottom:189.722800pt;}
.y140{bottom:190.440933pt;}
.y18c{bottom:192.922800pt;}
.y1cf{bottom:201.171600pt;}
.y3d{bottom:204.000000pt;}
.yeb{bottom:204.040933pt;}
.y116{bottom:205.600000pt;}
.y1af{bottom:206.522800pt;}
.y1b{bottom:206.860933pt;}
.yc3{bottom:206.986667pt;}
.ya1{bottom:207.066667pt;}
.y13f{bottom:207.374267pt;}
.y8a{bottom:207.626667pt;}
.y5f{bottom:208.789333pt;}
.y167{bottom:208.894267pt;}
.y18b{bottom:210.522800pt;}
.y1ce{bottom:214.632933pt;}
.yea{bottom:220.707600pt;}
.y115{bottom:222.400000pt;}
.y1ae{bottom:223.322800pt;}
.y3c{bottom:224.000000pt;}
.y13e{bottom:224.307600pt;}
.y1a{bottom:226.860933pt;}
.yc2{bottom:227.514667pt;}
.ya0{bottom:227.594667pt;}
.y1cd{bottom:228.104933pt;}
.y18a{bottom:228.122800pt;}
.y89{bottom:228.154667pt;}
.y166{bottom:229.422267pt;}
.y5e{bottom:229.589333pt;}
.ye9{bottom:237.374267pt;}
.y114{bottom:239.200000pt;}
.y1ad{bottom:240.122800pt;}
.y13d{bottom:241.240933pt;}
.y3b{bottom:244.000000pt;}
.y189{bottom:245.722800pt;}
.y19{bottom:246.860933pt;}
.y1cc{bottom:247.240933pt;}
.yc1{bottom:248.042667pt;}
.y9f{bottom:248.122667pt;}
.y88{bottom:248.682667pt;}
.y165{bottom:249.950267pt;}
.y5d{bottom:250.389333pt;}
.ye8{bottom:254.040933pt;}
.y113{bottom:256.000000pt;}
.y13c{bottom:258.307600pt;}
.y188{bottom:263.322800pt;}
.y3a{bottom:264.000000pt;}
.y1ac{bottom:264.513867pt;}
.y18{bottom:266.860933pt;}
.yc0{bottom:268.570667pt;}
.y9e{bottom:268.650667pt;}
.y87{bottom:269.210667pt;}
.y164{bottom:270.478267pt;}
.ye7{bottom:270.707600pt;}
.y5c{bottom:271.189333pt;}
.y112{bottom:272.800000pt;}
.y13b{bottom:275.374267pt;}
.y187{bottom:280.922800pt;}
.y39{bottom:284.000000pt;}
.y1ab{bottom:284.641867pt;}
.y17{bottom:286.860933pt;}
.ye6{bottom:287.374267pt;}
.y1cb{bottom:287.443600pt;}
.ybf{bottom:289.098667pt;}
.y9d{bottom:289.178667pt;}
.y111{bottom:289.600000pt;}
.y86{bottom:289.738667pt;}
.y163{bottom:291.006267pt;}
.y5b{bottom:291.989333pt;}
.y13a{bottom:292.440933pt;}
.y38{bottom:304.000000pt;}
.ye5{bottom:304.040933pt;}
.y1aa{bottom:304.769867pt;}
.y186{bottom:306.081867pt;}
.y110{bottom:306.400000pt;}
.y16{bottom:306.860933pt;}
.y1ca{bottom:307.715600pt;}
.y139{bottom:309.507600pt;}
.ybe{bottom:309.626667pt;}
.y9c{bottom:309.706667pt;}
.y85{bottom:310.266667pt;}
.y162{bottom:311.534267pt;}
.y5a{bottom:312.789333pt;}
.ye4{bottom:320.707600pt;}
.y10f{bottom:323.200000pt;}
.y37{bottom:324.000000pt;}
.y1a9{bottom:324.897867pt;}
.y138{bottom:326.574267pt;}
.y15{bottom:326.860933pt;}
.y1c9{bottom:327.987600pt;}
.ybd{bottom:330.154667pt;}
.y84{bottom:330.794667pt;}
.y161{bottom:332.062267pt;}
.y59{bottom:333.589333pt;}
.y185{bottom:334.574267pt;}
.ye3{bottom:337.374267pt;}
.y10e{bottom:340.000000pt;}
.y9b{bottom:340.778667pt;}
.y137{bottom:343.640933pt;}
.y6b{bottom:344.000000pt;}
.y1a8{bottom:345.025867pt;}
.y14{bottom:346.860933pt;}
.y1c8{bottom:348.259600pt;}
.ybc{bottom:350.682667pt;}
.y83{bottom:351.322667pt;}
.y184{bottom:352.174267pt;}
.y160{bottom:352.590267pt;}
.y36{bottom:354.000000pt;}
.ye2{bottom:354.040933pt;}
.y58{bottom:354.389333pt;}
.y10d{bottom:356.800000pt;}
.y136{bottom:360.707600pt;}
.y9a{bottom:361.306667pt;}
.y6a{bottom:364.000000pt;}
.y1a7{bottom:365.153867pt;}
.y13{bottom:366.860933pt;}
.y1c7{bottom:368.531600pt;}
.y183{bottom:369.774267pt;}
.ye1{bottom:370.707600pt;}
.ybb{bottom:371.210667pt;}
.y82{bottom:371.850667pt;}
.y15f{bottom:373.118267pt;}
.y10c{bottom:373.600000pt;}
.y35{bottom:374.000000pt;}
.y57{bottom:375.189333pt;}
.y135{bottom:377.774267pt;}
.y99{bottom:381.834667pt;}
.y69{bottom:384.000000pt;}
.y1a6{bottom:385.281867pt;}
.y12{bottom:386.860933pt;}
.ye0{bottom:387.374267pt;}
.y1c6{bottom:388.803600pt;}
.y10b{bottom:390.400000pt;}
.yba{bottom:391.738667pt;}
.y81{bottom:392.378667pt;}
.y15e{bottom:393.646267pt;}
.y34{bottom:394.000000pt;}
.y134{bottom:394.840933pt;}
.y98{bottom:402.362667pt;}
.y68{bottom:404.000000pt;}
.ydf{bottom:404.040933pt;}
.y182{bottom:404.974267pt;}
.y56{bottom:406.789333pt;}
.y11{bottom:406.860933pt;}
.y10a{bottom:407.200000pt;}
.y1c5{bottom:409.075600pt;}
.y133{bottom:411.907600pt;}
.yb9{bottom:412.266667pt;}
.y80{bottom:412.906667pt;}
.y1a5{bottom:412.974267pt;}
.y33{bottom:414.000000pt;}
.y15d{bottom:414.174267pt;}
.yde{bottom:420.707600pt;}
.y181{bottom:422.574267pt;}
.y97{bottom:422.890667pt;}
.y67{bottom:424.000000pt;}
.y1eb{bottom:425.994800pt;}
.y10{bottom:426.860933pt;}
.y55{bottom:427.589333pt;}
.y132{bottom:428.974267pt;}
.y1c4{bottom:429.347600pt;}
.y1a4{bottom:429.774267pt;}
.yb8{bottom:432.800000pt;}
.y7f{bottom:433.434667pt;}
.y32{bottom:434.000000pt;}
.ydd{bottom:437.374267pt;}
.y180{bottom:440.174267pt;}
.y109{bottom:440.800000pt;}
.y15c{bottom:442.266667pt;}
.y1ea{bottom:442.661467pt;}
.y96{bottom:443.418667pt;}
.y66{bottom:444.000000pt;}
.y131{bottom:446.040933pt;}
.y1a3{bottom:446.574267pt;}
.yf{bottom:446.860933pt;}
.y54{bottom:448.389333pt;}
.y1c3{bottom:449.619600pt;}
.yb7{bottom:453.333333pt;}
.y7e{bottom:453.962667pt;}
.ydc{bottom:454.040933pt;}
.y108{bottom:457.600000pt;}
.y17f{bottom:457.774267pt;}
.y1e9{bottom:459.328133pt;}
.y15b{bottom:459.733333pt;}
.y130{bottom:463.107600pt;}
.y1a2{bottom:463.374267pt;}
.y95{bottom:463.946667pt;}
.y31{bottom:464.000000pt;}
.ye{bottom:466.860933pt;}
.y53{bottom:469.189333pt;}
.y1c2{bottom:469.891600pt;}
.ydb{bottom:470.707600pt;}
.y107{bottom:474.400000pt;}
.y7d{bottom:474.490667pt;}
.y17e{bottom:475.374267pt;}
.y1e8{bottom:475.994800pt;}
.y15a{bottom:477.200000pt;}
.y12f{bottom:480.174267pt;}
.y30{bottom:484.000000pt;}
.y94{bottom:484.474667pt;}
.yd{bottom:486.860933pt;}
.yda{bottom:487.374267pt;}
.y52{bottom:489.989333pt;}
.y1c1{bottom:490.163600pt;}
.y106{bottom:491.200000pt;}
.y17d{bottom:492.840933pt;}
.yb6{bottom:494.442667pt;}
.y159{bottom:494.666667pt;}
.y7c{bottom:495.018667pt;}
.y1a1{bottom:496.974267pt;}
.y12e{bottom:497.240933pt;}
.y1e7{bottom:502.661467pt;}
.y2f{bottom:504.000000pt;}
.yd9{bottom:504.040933pt;}
.y93{bottom:505.002667pt;}
.yc{bottom:506.860933pt;}
.y105{bottom:508.000000pt;}
.y17c{bottom:510.307600pt;}
.y1c0{bottom:510.435600pt;}
.y51{bottom:510.789333pt;}
.y158{bottom:512.133333pt;}
.y1a0{bottom:513.774267pt;}
.y12d{bottom:514.307600pt;}
.yb5{bottom:514.970667pt;}
.y7b{bottom:515.546667pt;}
.yd8{bottom:520.707600pt;}
.y2e{bottom:524.000000pt;}
.y104{bottom:524.800000pt;}
.y92{bottom:525.530667pt;}
.yb{bottom:526.860933pt;}
.y17b{bottom:527.774267pt;}
.y157{bottom:529.600000pt;}
.y19f{bottom:530.574267pt;}
.y1bf{bottom:530.707600pt;}
.y12c{bottom:531.374267pt;}
.y50{bottom:531.589333pt;}
.yb4{bottom:535.498667pt;}
.y7a{bottom:536.074667pt;}
.yd7{bottom:537.374267pt;}
.y1e6{bottom:539.328133pt;}
.y103{bottom:541.600000pt;}
.y2d{bottom:544.000000pt;}
.y17a{bottom:545.240933pt;}
.y91{bottom:546.058667pt;}
.ya{bottom:546.860933pt;}
.y156{bottom:547.066667pt;}
.y19e{bottom:547.374267pt;}
.y12b{bottom:548.440933pt;}
.y1be{bottom:550.974267pt;}
.y4f{bottom:552.389333pt;}
.y1e5{bottom:555.994800pt;}
.yb3{bottom:556.026667pt;}
.y79{bottom:556.602667pt;}
.y102{bottom:558.400000pt;}
.yd6{bottom:561.626667pt;}
.y179{bottom:562.707600pt;}
.y2c{bottom:564.000000pt;}
.y19d{bottom:564.174267pt;}
.y155{bottom:564.533333pt;}
.y12a{bottom:565.507600pt;}
.y90{bottom:566.586667pt;}
.y9{bottom:566.860933pt;}
.y1e4{bottom:572.661467pt;}
.y4e{bottom:573.189333pt;}
.y101{bottom:575.200000pt;}
.yb2{bottom:576.554667pt;}
.y78{bottom:577.130667pt;}
.y178{bottom:580.174267pt;}
.y19c{bottom:580.974267pt;}
.yd5{bottom:581.898667pt;}
.y154{bottom:582.000000pt;}
.y129{bottom:582.574267pt;}
.y2b{bottom:584.000000pt;}
.y8{bottom:586.860933pt;}
.y1e3{bottom:589.328133pt;}
.y1bd{bottom:591.411600pt;}
.y100{bottom:592.000000pt;}
.y4d{bottom:593.989333pt;}
.yb1{bottom:597.082667pt;}
.y177{bottom:597.640933pt;}
.y77{bottom:597.658667pt;}
.y19b{bottom:597.774267pt;}
.y153{bottom:599.466667pt;}
.y128{bottom:599.640933pt;}
.yd4{bottom:602.170667pt;}
.y2a{bottom:604.000000pt;}
.y1e2{bottom:605.994800pt;}
.y7{bottom:606.860933pt;}
.yff{bottom:608.800000pt;}
.y1bc{bottom:611.539600pt;}
.y19a{bottom:614.574267pt;}
.y176{bottom:615.107600pt;}
.y127{bottom:616.707600pt;}
.y152{bottom:616.933333pt;}
.yb0{bottom:617.610667pt;}
.y76{bottom:618.186667pt;}
.yd3{bottom:622.442667pt;}
.y1e1{bottom:622.661467pt;}
.y29{bottom:624.000000pt;}
.y4c{bottom:625.589333pt;}
.yfe{bottom:625.600000pt;}
.y199{bottom:631.374267pt;}
.y1bb{bottom:631.667600pt;}
.y175{bottom:632.574267pt;}
.y151{bottom:634.400000pt;}
.yaf{bottom:638.138667pt;}
.y75{bottom:638.714667pt;}
.y1e0{bottom:639.328133pt;}
.y126{bottom:641.285333pt;}
.yfd{bottom:642.400000pt;}
.yd2{bottom:642.714667pt;}
.y28{bottom:644.000000pt;}
.y4b{bottom:646.389333pt;}
.y6{bottom:646.860933pt;}
.y198{bottom:648.174267pt;}
.y1ba{bottom:651.795600pt;}
.y150{bottom:651.866667pt;}
.y1df{bottom:655.994800pt;}
.y174{bottom:656.933333pt;}
.yae{bottom:658.666667pt;}
.yfc{bottom:659.200000pt;}
.y74{bottom:659.242667pt;}
.y125{bottom:661.557333pt;}
.yd1{bottom:662.842667pt;}
.y27{bottom:664.000000pt;}
.y197{bottom:664.974267pt;}
.y4a{bottom:667.189333pt;}
.y14f{bottom:669.333333pt;}
.y1b9{bottom:671.923600pt;}
.yfb{bottom:676.000000pt;}
.y173{bottom:677.733333pt;}
.y1de{bottom:678.330667pt;}
.yad{bottom:679.194667pt;}
.y73{bottom:679.770667pt;}
.y196{bottom:681.774267pt;}
.y124{bottom:681.829333pt;}
.yd0{bottom:682.970667pt;}
.y26{bottom:684.000000pt;}
.y5{bottom:684.314933pt;}
.y14e{bottom:686.800000pt;}
.y49{bottom:687.989333pt;}
.y1b8{bottom:692.051600pt;}
.yfa{bottom:692.800000pt;}
.y1dd{bottom:698.330667pt;}
.y172{bottom:698.533333pt;}
.y195{bottom:698.574267pt;}
.yac{bottom:699.722667pt;}
.y72{bottom:700.298667pt;}
.y123{bottom:702.101333pt;}
.ycf{bottom:703.098667pt;}
.y65{bottom:704.000000pt;}
.y14d{bottom:704.266667pt;}
.y4{bottom:704.314933pt;}
.y48{bottom:708.789333pt;}
.yf9{bottom:709.600000pt;}
.y1b7{bottom:712.179600pt;}
.y1dc{bottom:718.330667pt;}
.y171{bottom:719.333333pt;}
.yab{bottom:720.250667pt;}
.y71{bottom:720.826667pt;}
.y14c{bottom:721.733333pt;}
.y122{bottom:722.373333pt;}
.y194{bottom:722.949333pt;}
.yce{bottom:723.226667pt;}
.y25{bottom:724.000000pt;}
.yf8{bottom:726.400000pt;}
.y47{bottom:729.589333pt;}
.y1b6{bottom:732.307600pt;}
.y1db{bottom:734.997333pt;}
.y14b{bottom:739.200000pt;}
.y170{bottom:740.133333pt;}
.yaa{bottom:740.778667pt;}
.y70{bottom:741.354667pt;}
.y121{bottom:742.645333pt;}
.y193{bottom:743.077333pt;}
.yf7{bottom:743.200000pt;}
.ycd{bottom:743.354667pt;}
.y24{bottom:744.000000pt;}
.y46{bottom:750.389333pt;}
.y1da{bottom:751.664000pt;}
.y14a{bottom:756.666667pt;}
.yf6{bottom:760.000000pt;}
.y16f{bottom:760.933333pt;}
.ya9{bottom:761.450667pt;}
.y6f{bottom:761.882667pt;}
.y120{bottom:762.917333pt;}
.y192{bottom:763.205333pt;}
.ycc{bottom:763.482667pt;}
.y3{bottom:764.000000pt;}
.y1d9{bottom:768.330667pt;}
.y45{bottom:771.189333pt;}
.y149{bottom:774.133333pt;}
.yf5{bottom:776.800000pt;}
.y16e{bottom:781.733333pt;}
.ya8{bottom:782.122667pt;}
.y6e{bottom:782.410667pt;}
.y11f{bottom:783.189333pt;}
.y191{bottom:783.333333pt;}
.ycb{bottom:783.610667pt;}
.y23{bottom:784.000000pt;}
.y1d8{bottom:784.997333pt;}
.y2{bottom:790.666667pt;}
.y148{bottom:791.600000pt;}
.yf4{bottom:793.600000pt;}
.y1d7{bottom:801.664000pt;}
.y16d{bottom:802.533333pt;}
.y44{bottom:802.661333pt;}
.ya7{bottom:802.794667pt;}
.y6d{bottom:802.938667pt;}
.y11e{bottom:803.461333pt;}
.yca{bottom:803.738667pt;}
.y22{bottom:804.000000pt;}
.y147{bottom:809.066667pt;}
.yf3{bottom:810.400000pt;}
.y43{bottom:823.333333pt;}
.y6c{bottom:823.466667pt;}
.y11d{bottom:823.733333pt;}
.yc9{bottom:823.866667pt;}
.y21{bottom:824.000000pt;}
.y146{bottom:826.533333pt;}
.yf2{bottom:827.200000pt;}
.h6{height:29.437500pt;}
.h8{height:34.664383pt;}
.h7{height:34.686783pt;}
.h5{height:35.456000pt;}
.h1{height:36.796875pt;}
.h3{height:37.333333pt;}
.h4{height:44.156250pt;}
.h9{height:45.286458pt;}
.h2{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x2{left:73.228400pt;}
.x9{left:86.444400pt;}
.x8{left:90.220400pt;}
.x4{left:100.000000pt;}
.xb{left:105.350000pt;}
.x5{left:113.228400pt;}
.x10{left:116.683333pt;}
.x15{left:120.468400pt;}
.x13{left:124.241733pt;}
.x6{left:126.444400pt;}
.x7{left:130.204400pt;}
.xc{left:137.790000pt;}
.xa{left:145.350133pt;}
.x11{left:146.910000pt;}
.xd{left:156.683333pt;}
.x14{left:164.247600pt;}
.xe{left:186.923333pt;}
.x12{left:196.043333pt;}
.xf{left:226.603333pt;}
.x3{left:371.024933pt;}
}




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