
    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_6aa70daf3142380165a940fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ecd72f2c50b84fe93ebaf163.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_40fe91ea157f1d9ad3998491.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a65b8a7b13bb6a57f86ca7c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cd22bc402275894106d24eee.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_beb92f92b834f0e3e7516fc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-33.120000px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.360000px;}
.v5{vertical-align:30.291840px;}
.v1{vertical-align:33.120000px;}
.v4{vertical-align:44.640000px;}
.v3{vertical-align:84.257280px;}
.ls27{letter-spacing:-2.160000px;}
.ls2a{letter-spacing:-1.656000px;}
.ls43{letter-spacing:-1.512000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls3b{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.059760px;}
.lsc{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.144000px;}
.ls41{letter-spacing:0.152640px;}
.ls32{letter-spacing:0.167040px;}
.ls1{letter-spacing:0.180000px;}
.ls44{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.324000px;}
.ls33{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.384480px;}
.ls3a{letter-spacing:0.385920px;}
.ls3d{letter-spacing:0.432000px;}
.ls31{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.792000px;}
.ls4a{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.224000px;}
.ls24{letter-spacing:1.440000px;}
.ls34{letter-spacing:1.620000px;}
.ls14{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.880000px;}
.ls15{letter-spacing:3.600000px;}
.ls38{letter-spacing:4.320000px;}
.ls22{letter-spacing:4.500000px;}
.ls1a{letter-spacing:5.040000px;}
.ls2d{letter-spacing:5.760000px;}
.ls23{letter-spacing:6.480000px;}
.ls13{letter-spacing:7.200000px;}
.ls19{letter-spacing:7.920000px;}
.ls36{letter-spacing:8.640000px;}
.ls49{letter-spacing:9.360000px;}
.ls4c{letter-spacing:10.080000px;}
.ls1f{letter-spacing:10.800000px;}
.ls4{letter-spacing:11.520000px;}
.ls39{letter-spacing:12.240000px;}
.ls40{letter-spacing:12.960000px;}
.ls20{letter-spacing:13.140000px;}
.ls3e{letter-spacing:13.680000px;}
.ls1b{letter-spacing:15.120000px;}
.ls17{letter-spacing:15.840000px;}
.ls21{letter-spacing:16.560000px;}
.ls3f{letter-spacing:17.280000px;}
.ls25{letter-spacing:18.720000px;}
.ls4b{letter-spacing:19.440000px;}
.ls47{letter-spacing:20.880000px;}
.ls46{letter-spacing:23.040000px;}
.ls45{letter-spacing:24.480000px;}
.ls48{letter-spacing:26.640000px;}
.ls37{letter-spacing:30.240000px;}
.ls18{letter-spacing:34.560000px;}
.ls3{letter-spacing:44.640000px;}
.ls16{letter-spacing:51.120000px;}
.ls12{letter-spacing:194.400000px;}
.ls30{letter-spacing:212.041440px;}
.ls2f{letter-spacing:267.840000px;}
.ls2e{letter-spacing:386.640000px;}
.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;}
}
.ws85{word-spacing:-72.000000px;}
.ws1{word-spacing:-48.444480px;}
.ws3{word-spacing:-26.676000px;}
.wsb1{word-spacing:-19.008000px;}
.ws49{word-spacing:-18.720000px;}
.ws5f{word-spacing:-18.504000px;}
.ws83{word-spacing:-18.432000px;}
.ws99{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsa9{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws4d{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.712000px;}
.ws48{word-spacing:-17.568000px;}
.ws6a{word-spacing:-17.496000px;}
.ws24{word-spacing:-17.424000px;}
.ws4a{word-spacing:-17.280000px;}
.ws4c{word-spacing:-17.208000px;}
.wsb9{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.560000px;}
.ws84{word-spacing:-16.488000px;}
.ws4b{word-spacing:-16.344000px;}
.wsb2{word-spacing:-12.445920px;}
.ws4{word-spacing:-12.060000px;}
.ws60{word-spacing:-10.607040px;}
.ws5e{word-spacing:-0.728640px;}
.wse{word-spacing:-0.720000px;}
.wsa8{word-spacing:-0.504000px;}
.ws7d{word-spacing:-0.432000px;}
.ws73{word-spacing:-0.385920px;}
.ws69{word-spacing:-0.331200px;}
.wsb{word-spacing:-0.324000px;}
.ws4e{word-spacing:-0.288000px;}
.wsf{word-spacing:-0.144000px;}
.ws5d{word-spacing:-0.132480px;}
.ws9c{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws79{word-spacing:0.072000px;}
.ws23{word-spacing:0.119520px;}
.ws68{word-spacing:0.144000px;}
.ws12{word-spacing:0.216000px;}
.ws9{word-spacing:0.288000px;}
.wsc{word-spacing:0.324000px;}
.ws53{word-spacing:0.432000px;}
.ws1b{word-spacing:0.576000px;}
.wsd{word-spacing:0.648000px;}
.ws11{word-spacing:0.720000px;}
.ws89{word-spacing:0.792000px;}
.wsb3{word-spacing:0.864000px;}
.ws13{word-spacing:0.936000px;}
.ws10{word-spacing:1.008000px;}
.ws6f{word-spacing:1.152000px;}
.ws25{word-spacing:1.296000px;}
.ws3d{word-spacing:1.440000px;}
.wsb4{word-spacing:1.512000px;}
.ws88{word-spacing:1.656000px;}
.ws55{word-spacing:1.728000px;}
.ws29{word-spacing:2.016000px;}
.ws28{word-spacing:2.160000px;}
.ws93{word-spacing:2.376000px;}
.ws2a{word-spacing:2.448000px;}
.ws3a{word-spacing:2.736000px;}
.ws40{word-spacing:2.808000px;}
.ws1d{word-spacing:2.880000px;}
.ws6e{word-spacing:3.024000px;}
.ws90{word-spacing:3.096000px;}
.ws1e{word-spacing:3.168000px;}
.ws2d{word-spacing:3.456000px;}
.ws1f{word-spacing:3.600000px;}
.ws7b{word-spacing:3.816000px;}
.ws7a{word-spacing:3.888000px;}
.ws18{word-spacing:4.176000px;}
.ws1a{word-spacing:4.320000px;}
.wsb0{word-spacing:4.536000px;}
.ws19{word-spacing:4.608000px;}
.ws94{word-spacing:4.824000px;}
.ws44{word-spacing:4.896000px;}
.ws43{word-spacing:5.040000px;}
.ws95{word-spacing:5.112000px;}
.ws6b{word-spacing:5.184000px;}
.wsa3{word-spacing:5.256000px;}
.ws6c{word-spacing:5.328000px;}
.ws39{word-spacing:5.616000px;}
.ws38{word-spacing:5.760000px;}
.ws9b{word-spacing:5.832000px;}
.ws70{word-spacing:5.904000px;}
.wsa4{word-spacing:5.976000px;}
.ws61{word-spacing:6.048000px;}
.ws3c{word-spacing:6.336000px;}
.ws2e{word-spacing:6.480000px;}
.ws92{word-spacing:6.696000px;}
.ws3b{word-spacing:6.768000px;}
.ws2f{word-spacing:7.056000px;}
.ws26{word-spacing:7.200000px;}
.wsa7{word-spacing:7.344000px;}
.ws27{word-spacing:7.488000px;}
.ws47{word-spacing:7.776000px;}
.ws30{word-spacing:7.920000px;}
.ws8f{word-spacing:7.992000px;}
.ws31{word-spacing:8.208000px;}
.ws97{word-spacing:8.496000px;}
.ws20{word-spacing:8.640000px;}
.ws71{word-spacing:8.784000px;}
.ws98{word-spacing:8.856000px;}
.ws96{word-spacing:8.928000px;}
.ws72{word-spacing:9.216000px;}
.ws4f{word-spacing:9.360000px;}
.wsa2{word-spacing:9.576000px;}
.ws76{word-spacing:9.648000px;}
.ws59{word-spacing:9.936000px;}
.ws57{word-spacing:10.080000px;}
.ws56{word-spacing:10.368000px;}
.ws58{word-spacing:10.656000px;}
.ws50{word-spacing:10.800000px;}
.ws8a{word-spacing:11.016000px;}
.ws51{word-spacing:11.088000px;}
.ws87{word-spacing:11.376000px;}
.ws15{word-spacing:11.520000px;}
.ws6d{word-spacing:11.664000px;}
.ws16{word-spacing:11.736000px;}
.ws17{word-spacing:11.808000px;}
.ws82{word-spacing:12.096000px;}
.ws7e{word-spacing:12.240000px;}
.ws80{word-spacing:12.456000px;}
.ws81{word-spacing:12.528000px;}
.ws8c{word-spacing:12.816000px;}
.ws8b{word-spacing:12.960000px;}
.ws8e{word-spacing:13.176000px;}
.ws8d{word-spacing:13.248000px;}
.ws86{word-spacing:13.680000px;}
.ws7c{word-spacing:13.968000px;}
.ws66{word-spacing:14.256000px;}
.ws7f{word-spacing:14.400000px;}
.wsab{word-spacing:14.688000px;}
.ws46{word-spacing:15.120000px;}
.ws91{word-spacing:15.264000px;}
.ws45{word-spacing:15.408000px;}
.ws9a{word-spacing:15.696000px;}
.ws35{word-spacing:15.840000px;}
.ws54{word-spacing:16.056000px;}
.ws34{word-spacing:16.128000px;}
.ws65{word-spacing:16.560000px;}
.ws52{word-spacing:16.848000px;}
.wsaf{word-spacing:17.136000px;}
.ws3f{word-spacing:17.280000px;}
.ws3e{word-spacing:17.568000px;}
.ws77{word-spacing:18.000000px;}
.wsba{word-spacing:18.288000px;}
.ws5b{word-spacing:18.720000px;}
.ws5c{word-spacing:18.936000px;}
.wsb7{word-spacing:19.296000px;}
.ws1c{word-spacing:19.440000px;}
.wsb8{word-spacing:19.728000px;}
.ws74{word-spacing:20.016000px;}
.ws5a{word-spacing:20.160000px;}
.wsa6{word-spacing:20.736000px;}
.wsa5{word-spacing:20.880000px;}
.wsb5{word-spacing:21.024000px;}
.wsb6{word-spacing:21.168000px;}
.ws9f{word-spacing:22.176000px;}
.wsa1{word-spacing:22.320000px;}
.wsa0{word-spacing:22.536000px;}
.ws9d{word-spacing:22.608000px;}
.ws9e{word-spacing:23.256000px;}
.ws14{word-spacing:23.616000px;}
.ws22{word-spacing:23.760000px;}
.ws21{word-spacing:24.048000px;}
.wsac{word-spacing:24.336000px;}
.wsad{word-spacing:24.768000px;}
.wsae{word-spacing:25.200000px;}
.ws67{word-spacing:26.640000px;}
.ws42{word-spacing:27.360000px;}
.ws41{word-spacing:27.648000px;}
.ws63{word-spacing:28.080000px;}
.ws62{word-spacing:28.368000px;}
.ws2c{word-spacing:28.800000px;}
.ws2b{word-spacing:29.088000px;}
.ws78{word-spacing:29.520000px;}
.wsaa{word-spacing:33.840000px;}
.ws36{word-spacing:34.560000px;}
.ws37{word-spacing:34.848000px;}
.wsbb{word-spacing:40.320000px;}
.ws64{word-spacing:41.040000px;}
.ws75{word-spacing:43.200000px;}
.ws33{word-spacing:50.976000px;}
.ws32{word-spacing:51.120000px;}
._e{margin-left:-194.400000px;}
._d{margin-left:-140.688000px;}
._25{margin-left:-44.053920px;}
._2d{margin-left:-33.762240px;}
._f{margin-left:-18.000000px;}
._29{margin-left:-13.654080px;}
._24{margin-left:-8.352000px;}
._10{margin-left:-7.220160px;}
._2b{margin-left:-5.996160px;}
._c{margin-left:-2.684160px;}
._1{margin-left:-1.537920px;}
._0{width:1.080000px;}
._3{width:2.257920px;}
._b{width:4.201920px;}
._16{width:6.099840px;}
._18{width:7.251840px;}
._11{width:8.424000px;}
._23{width:9.509760px;}
._a{width:11.232000px;}
._9{width:12.384000px;}
._2e{width:13.417920px;}
._17{width:14.472000px;}
._14{width:16.200000px;}
._26{width:19.512000px;}
._2a{width:21.522240px;}
._8{width:23.307840px;}
._7{width:24.696000px;}
._6{width:27.072000px;}
._27{width:29.160000px;}
._28{width:30.579840px;}
._5{width:32.400000px;}
._2c{width:33.768000px;}
._15{width:34.776000px;}
._4{width:44.295840px;}
._2{width:50.220000px;}
._12{width:51.361920px;}
._13{width:52.436160px;}
._2f{width:66.240000px;}
._1c{width:167.688000px;}
._22{width:206.438400px;}
._20{width:221.060160px;}
._1f{width:222.998400px;}
._21{width:299.537280px;}
._1e{width:309.605760px;}
._1b{width:320.549760px;}
._1d{width:328.968000px;}
._19{width:397.442880px;}
._1a{width:415.670400px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.420000px;}
.y2c{bottom:4.140000px;}
.y66{bottom:4.500000px;}
.y70{bottom:11.700000px;}
.y6a{bottom:11.880000px;}
.y80{bottom:27.000000px;}
.y2a{bottom:46.980000px;}
.y105{bottom:79.920000px;}
.y11a{bottom:81.540000px;}
.y53{bottom:83.340000px;}
.ye6{bottom:93.420000px;}
.y7d{bottom:94.320000px;}
.y26{bottom:99.720000px;}
.yf1{bottom:100.980000px;}
.y104{bottom:105.480000px;}
.y119{bottom:106.920000px;}
.y52{bottom:108.900000px;}
.yaf{bottom:114.480000px;}
.y7c{bottom:116.640000px;}
.yc9{bottom:118.980000px;}
.y7b{bottom:120.780000px;}
.y25{bottom:125.280000px;}
.yf0{bottom:126.540000px;}
.y118{bottom:132.480000px;}
.y51{bottom:134.280000px;}
.y7a{bottom:137.520000px;}
.yae{bottom:139.680000px;}
.y77{bottom:141.840000px;}
.yc8{bottom:144.540000px;}
.y103{bottom:148.680000px;}
.y24{bottom:150.840000px;}
.y117{bottom:158.040000px;}
.y78{bottom:158.580000px;}
.y50{bottom:159.840000px;}
.y79{bottom:162.900000px;}
.yad{bottom:165.780000px;}
.yc7{bottom:169.920000px;}
.y23{bottom:176.220000px;}
.y76{bottom:179.640000px;}
.y116{bottom:183.420000px;}
.y75{bottom:183.780000px;}
.y4f{bottom:185.400000px;}
.ye5{bottom:187.920000px;}
.yab{bottom:188.280000px;}
.y102{bottom:192.420000px;}
.yc6{bottom:195.480000px;}
.y74{bottom:200.520000px;}
.y22{bottom:201.780000px;}
.y71{bottom:204.840000px;}
.y115{bottom:208.980000px;}
.y4e{bottom:210.780000px;}
.yac{bottom:210.785040px;}
.yef{bottom:213.480000px;}
.y101{bottom:217.980000px;}
.yc5{bottom:221.040000px;}
.y72{bottom:221.580000px;}
.y73{bottom:225.900000px;}
.y21{bottom:227.340000px;}
.ye4{bottom:231.480000px;}
.yaa{bottom:233.280000px;}
.y114{bottom:234.540000px;}
.y4d{bottom:236.340000px;}
.yee{bottom:239.040000px;}
.y6f{bottom:242.640000px;}
.yc4{bottom:246.420000px;}
.y6e{bottom:246.780000px;}
.y20{bottom:252.720000px;}
.ya8{bottom:255.780000px;}
.ye3{bottom:257.040000px;}
.y67{bottom:257.397840px;}
.y113{bottom:259.920000px;}
.y100{bottom:261.180000px;}
.y4c{bottom:261.900000px;}
.y6d{bottom:263.520000px;}
.y6c{bottom:267.840000px;}
.yed{bottom:273.420000px;}
.y1f{bottom:278.280000px;}
.ya9{bottom:278.285040px;}
.ye2{bottom:282.420000px;}
.y69{bottom:284.580000px;}
.y112{bottom:285.480000px;}
.y4b{bottom:287.280000px;}
.y68{bottom:288.894960px;}
.y6b{bottom:288.900000px;}
.yc3{bottom:289.980000px;}
.ya7{bottom:300.780000px;}
.yff{bottom:304.920000px;}
.y65{bottom:306.360000px;}
.yec{bottom:307.980000px;}
.y111{bottom:311.040000px;}
.ya4{bottom:311.934960px;}
.y4a{bottom:312.840000px;}
.ye1{bottom:316.980000px;}
.ya6{bottom:323.280000px;}
.y1e{bottom:324.180000px;}
.yfe{bottom:330.480000px;}
.yc2{bottom:333.540000px;}
.ya3{bottom:334.440000px;}
.y110{bottom:336.420000px;}
.y49{bottom:338.400000px;}
.y64{bottom:343.080000px;}
.ya5{bottom:345.767040px;}
.y1d{bottom:349.920000px;}
.ye0{bottom:351.540000px;}
.yfd{bottom:356.040000px;}
.yc1{bottom:358.920000px;}
.y10f{bottom:361.980000px;}
.y48{bottom:363.780000px;}
.ya1{bottom:365.040000px;}
.y63{bottom:368.460000px;}
.y1c{bottom:375.480000px;}
.ydf{bottom:376.920000px;}
.ya0{bottom:380.880000px;}
.yfc{bottom:381.420000px;}
.yc0{bottom:384.480000px;}
.y10e{bottom:387.540000px;}
.y47{bottom:389.340000px;}
.ya2{bottom:392.040000px;}
.yde{bottom:402.480000px;}
.yfb{bottom:406.980000px;}
.y62{bottom:407.520000px;}
.ybf{bottom:410.040000px;}
.y10d{bottom:412.920000px;}
.y46{bottom:414.900000px;}
.y1b{bottom:418.860000px;}
.y9f{bottom:424.260000px;}
.ydd{bottom:428.040000px;}
.yfa{bottom:432.540000px;}
.ybe{bottom:435.420000px;}
.y10c{bottom:438.480000px;}
.y45{bottom:440.280000px;}
.y1a{bottom:444.420000px;}
.y9e{bottom:449.820000px;}
.ydc{bottom:453.420000px;}
.yf9{bottom:457.920000px;}
.ybd{bottom:460.980000px;}
.y10b{bottom:464.040000px;}
.y44{bottom:465.840000px;}
.y9d{bottom:475.200000px;}
.ydb{bottom:478.980000px;}
.yf8{bottom:483.480000px;}
.ybc{bottom:486.540000px;}
.y19{bottom:487.980000px;}
.y10a{bottom:489.420000px;}
.y43{bottom:491.400000px;}
.yda{bottom:504.540000px;}
.yf7{bottom:509.040000px;}
.yeb{bottom:511.920000px;}
.y18{bottom:513.360000px;}
.y109{bottom:514.980000px;}
.y42{bottom:516.780000px;}
.y9c{bottom:518.760000px;}
.ybb{bottom:529.920000px;}
.yf6{bottom:534.420000px;}
.yea{bottom:537.480000px;}
.y108{bottom:540.540000px;}
.y41{bottom:542.340000px;}
.y9b{bottom:544.320000px;}
.y17{bottom:547.204860px;}
.yd9{bottom:555.480000px;}
.y16{bottom:564.480000px;}
.y107{bottom:565.920000px;}
.y40{bottom:567.900000px;}
.y9a{bottom:569.700000px;}
.yba{bottom:573.120000px;}
.yf5{bottom:577.620000px;}
.yd8{bottom:581.040000px;}
.y15{bottom:589.860000px;}
.y106{bottom:591.480000px;}
.y3f{bottom:593.280000px;}
.y99{bottom:595.260000px;}
.yd7{bottom:606.420000px;}
.yb9{bottom:617.040000px;}
.y3e{bottom:618.840000px;}
.y98{bottom:620.820000px;}
.yf4{bottom:621.540000px;}
.y14{bottom:623.704860px;}
.ye9{bottom:624.420000px;}
.yd6{bottom:631.980000px;}
.y13{bottom:640.980000px;}
.yb8{bottom:642.420000px;}
.y3d{bottom:644.400000px;}
.y97{bottom:645.840000px;}
.yf3{bottom:646.920000px;}
.ye8{bottom:649.980000px;}
.yd5{bottom:657.540000px;}
.y12{bottom:666.360000px;}
.yb7{bottom:667.980000px;}
.y3c{bottom:669.780000px;}
.y96{bottom:671.400000px;}
.yf2{bottom:672.480000px;}
.yd4{bottom:682.920000px;}
.ye7{bottom:684.540000px;}
.y94{bottom:693.540000px;}
.y3b{bottom:695.340000px;}
.y11{bottom:700.200000px;}
.y95{bottom:705.600000px;}
.y61{bottom:708.480000px;}
.y92{bottom:716.040000px;}
.y10{bottom:717.480000px;}
.yb6{bottom:718.920000px;}
.y90{bottom:720.540000px;}
.y93{bottom:728.100000px;}
.yd3{bottom:734.040000px;}
.y3a{bottom:738.540000px;}
.yf{bottom:742.860000px;}
.yb5{bottom:744.480000px;}
.y91{bottom:750.600000px;}
.y60{bottom:752.040000px;}
.yd2{bottom:759.420000px;}
.y8e{bottom:761.040000px;}
.yb4{bottom:770.040000px;}
.y8f{bottom:773.100000px;}
.ye{bottom:776.700000px;}
.y5f{bottom:777.420000px;}
.y8c{bottom:783.540000px;}
.yd1{bottom:784.980000px;}
.y89{bottom:788.040000px;}
.yd{bottom:793.980000px;}
.yb3{bottom:795.420000px;}
.y8d{bottom:795.600000px;}
.y39{bottom:802.800000px;}
.y5e{bottom:802.980000px;}
.y8a{bottom:806.040000px;}
.yd0{bottom:810.540000px;}
.y8b{bottom:818.100000px;}
.yb2{bottom:820.980000px;}
.yc{bottom:827.640000px;}
.y38{bottom:828.540000px;}
.ycf{bottom:835.920000px;}
.y88{bottom:840.600000px;}
.y83{bottom:844.374960px;}
.yb1{bottom:846.540000px;}
.y86{bottom:851.040000px;}
.y37{bottom:853.920000px;}
.yce{bottom:861.480000px;}
.yb{bottom:862.560000px;}
.y87{bottom:863.100000px;}
.y82{bottom:866.880000px;}
.yb0{bottom:871.920000px;}
.y84{bottom:873.540000px;}
.y5d{bottom:879.480000px;}
.y85{bottom:885.600000px;}
.ycd{bottom:887.040000px;}
.ya{bottom:888.120000px;}
.y7f{bottom:896.760000px;}
.y36{bottom:897.480000px;}
.y81{bottom:901.260000px;}
.y5c{bottom:905.040000px;}
.ycc{bottom:912.420000px;}
.y7e{bottom:912.600000px;}
.y35{bottom:923.040000px;}
.y5b{bottom:930.420000px;}
.y9{bottom:933.489000px;}
.ycb{bottom:937.980000px;}
.y34{bottom:948.420000px;}
.y5a{bottom:955.980000px;}
.yca{bottom:963.540000px;}
.y8{bottom:964.620000px;}
.y33{bottom:973.980000px;}
.y59{bottom:981.540000px;}
.y32{bottom:999.540000px;}
.y58{bottom:1006.920000px;}
.y7{bottom:1011.960000px;}
.y31{bottom:1024.920000px;}
.y57{bottom:1032.480000px;}
.y6{bottom:1037.520000px;}
.y30{bottom:1050.480000px;}
.y11d{bottom:1053.000000px;}
.y5{bottom:1057.860000px;}
.y56{bottom:1058.040000px;}
.y2f{bottom:1076.040000px;}
.y11c{bottom:1080.000000px;}
.y55{bottom:1083.420000px;}
.y4{bottom:1085.040000px;}
.y2e{bottom:1101.420000px;}
.y11b{bottom:1107.000000px;}
.y54{bottom:1126.620000px;}
.y2d{bottom:1126.980000px;}
.y3{bottom:1129.680000px;}
.y2{bottom:1151.460000px;}
.y29{bottom:1152.540000px;}
.y1{bottom:1172.160000px;}
.y2b{bottom:1173.240000px;}
.y28{bottom:1177.920000px;}
.hb{height:17.280000px;}
.h15{height:20.878500px;}
.h13{height:20.880000px;}
.h11{height:21.060000px;}
.h17{height:22.498500px;}
.he{height:22.500000px;}
.hd{height:25.560000px;}
.h12{height:40.985156px;}
.h16{height:45.000000px;}
.h9{height:47.344922px;}
.h4{height:58.651172px;}
.hc{height:60.226875px;}
.hf{height:65.010937px;}
.h10{height:65.031097px;}
.h6{height:70.628906px;}
.h3{height:70.664062px;}
.h1b{height:71.204996px;}
.h1a{height:71.225156px;}
.h19{height:71.276996px;}
.h2{height:72.562500px;}
.ha{height:80.464922px;}
.h8{height:81.736875px;}
.h7{height:108.843750px;}
.h18{height:117.202500px;}
.h14{height:149.268218px;}
.h5{height:188.579180px;}
.h1c{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:36.180000px;}
.wc{width:74.160000px;}
.w9{width:117.900000px;}
.w2{width:118.800000px;}
.w8{width:125.100000px;}
.w5{width:136.620000px;}
.wd{width:138.240000px;}
.wa{width:151.740000px;}
.wb{width:156.240000px;}
.w4{width:160.380000px;}
.w6{width:183.600000px;}
.w7{width:189.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.we{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:7.200000px;}
.x24{left:10.080000px;}
.x36{left:12.600000px;}
.x21{left:15.300000px;}
.x1e{left:17.280000px;}
.x2c{left:18.540000px;}
.x2b{left:20.520000px;}
.x2f{left:31.860000px;}
.x31{left:34.020000px;}
.xe{left:47.520000px;}
.x10{left:49.320000px;}
.x3a{left:52.560000px;}
.x41{left:54.000000px;}
.x27{left:56.880000px;}
.x1{left:74.520000px;}
.x29{left:81.180000px;}
.x34{left:86.040000px;}
.x6{left:96.120000px;}
.x1c{left:101.340000px;}
.x33{left:109.620000px;}
.xd{left:111.600000px;}
.xb{left:114.840000px;}
.x7{left:116.640000px;}
.x3e{left:122.220000px;}
.x1b{left:125.820000px;}
.x16{left:127.080000px;}
.x18{left:129.780000px;}
.x38{left:137.520000px;}
.x13{left:138.960000px;}
.x1a{left:143.820000px;}
.x3d{left:145.800000px;}
.x14{left:158.583600px;}
.x19{left:167.400000px;}
.x2a{left:194.760000px;}
.x1d{left:268.920000px;}
.xf{left:271.980000px;}
.x3f{left:273.240000px;}
.x40{left:279.720000px;}
.x3c{left:291.786480px;}
.x1f{left:316.440000px;}
.x15{left:323.819280px;}
.x2d{left:370.980000px;}
.x20{left:394.020000px;}
.x11{left:408.600000px;}
.x22{left:414.180000px;}
.x37{left:490.140000px;}
.x2e{left:492.480000px;}
.x23{left:511.920000px;}
.x39{left:515.520000px;}
.x5{left:568.440000px;}
.x25{left:572.760000px;}
.x12{left:592.200000px;}
.x3{left:621.000000px;}
.x30{left:627.300000px;}
.x17{left:646.740000px;}
.x3b{left:653.760000px;}
.x26{left:663.660000px;}
.x28{left:675.540000px;}
.x4{left:695.700000px;}
.x8{left:699.480000px;}
.xc{left:748.980000px;}
.x35{left:778.860000px;}
.x32{left:781.200000px;}
.xa{left:782.280000px;}
.x2{left:818.280000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.320000pt;}
.v5{vertical-align:26.926080pt;}
.v1{vertical-align:29.440000pt;}
.v4{vertical-align:39.680000pt;}
.v3{vertical-align:74.895360pt;}
.ls27{letter-spacing:-1.920000pt;}
.ls2a{letter-spacing:-1.472000pt;}
.ls43{letter-spacing:-1.344000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls3b{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053120pt;}
.lsc{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.128000pt;}
.ls41{letter-spacing:0.135680pt;}
.ls32{letter-spacing:0.148480pt;}
.ls1{letter-spacing:0.160000pt;}
.ls44{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.288000pt;}
.ls33{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.341760pt;}
.ls3a{letter-spacing:0.343040pt;}
.ls3d{letter-spacing:0.384000pt;}
.ls31{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.704000pt;}
.ls4a{letter-spacing:0.896000pt;}
.ls35{letter-spacing:1.088000pt;}
.ls24{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls38{letter-spacing:3.840000pt;}
.ls22{letter-spacing:4.000000pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls2d{letter-spacing:5.120000pt;}
.ls23{letter-spacing:5.760000pt;}
.ls13{letter-spacing:6.400000pt;}
.ls19{letter-spacing:7.040000pt;}
.ls36{letter-spacing:7.680000pt;}
.ls49{letter-spacing:8.320000pt;}
.ls4c{letter-spacing:8.960000pt;}
.ls1f{letter-spacing:9.600000pt;}
.ls4{letter-spacing:10.240000pt;}
.ls39{letter-spacing:10.880000pt;}
.ls40{letter-spacing:11.520000pt;}
.ls20{letter-spacing:11.680000pt;}
.ls3e{letter-spacing:12.160000pt;}
.ls1b{letter-spacing:13.440000pt;}
.ls17{letter-spacing:14.080000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls3f{letter-spacing:15.360000pt;}
.ls25{letter-spacing:16.640000pt;}
.ls4b{letter-spacing:17.280000pt;}
.ls47{letter-spacing:18.560000pt;}
.ls46{letter-spacing:20.480000pt;}
.ls45{letter-spacing:21.760000pt;}
.ls48{letter-spacing:23.680000pt;}
.ls37{letter-spacing:26.880000pt;}
.ls18{letter-spacing:30.720000pt;}
.ls3{letter-spacing:39.680000pt;}
.ls16{letter-spacing:45.440000pt;}
.ls12{letter-spacing:172.800000pt;}
.ls30{letter-spacing:188.481280pt;}
.ls2f{letter-spacing:238.080000pt;}
.ls2e{letter-spacing:343.680000pt;}
.ws85{word-spacing:-64.000000pt;}
.ws1{word-spacing:-43.061760pt;}
.ws3{word-spacing:-23.712000pt;}
.wsb1{word-spacing:-16.896000pt;}
.ws49{word-spacing:-16.640000pt;}
.ws5f{word-spacing:-16.448000pt;}
.ws83{word-spacing:-16.384000pt;}
.ws99{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa9{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4d{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.744000pt;}
.ws48{word-spacing:-15.616000pt;}
.ws6a{word-spacing:-15.552000pt;}
.ws24{word-spacing:-15.488000pt;}
.ws4a{word-spacing:-15.360000pt;}
.ws4c{word-spacing:-15.296000pt;}
.wsb9{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws84{word-spacing:-14.656000pt;}
.ws4b{word-spacing:-14.528000pt;}
.wsb2{word-spacing:-11.063040pt;}
.ws4{word-spacing:-10.720000pt;}
.ws60{word-spacing:-9.428480pt;}
.ws5e{word-spacing:-0.647680pt;}
.wse{word-spacing:-0.640000pt;}
.wsa8{word-spacing:-0.448000pt;}
.ws7d{word-spacing:-0.384000pt;}
.ws73{word-spacing:-0.343040pt;}
.ws69{word-spacing:-0.294400pt;}
.wsb{word-spacing:-0.288000pt;}
.ws4e{word-spacing:-0.256000pt;}
.wsf{word-spacing:-0.128000pt;}
.ws5d{word-spacing:-0.117760pt;}
.ws9c{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws79{word-spacing:0.064000pt;}
.ws23{word-spacing:0.106240pt;}
.ws68{word-spacing:0.128000pt;}
.ws12{word-spacing:0.192000pt;}
.ws9{word-spacing:0.256000pt;}
.wsc{word-spacing:0.288000pt;}
.ws53{word-spacing:0.384000pt;}
.ws1b{word-spacing:0.512000pt;}
.wsd{word-spacing:0.576000pt;}
.ws11{word-spacing:0.640000pt;}
.ws89{word-spacing:0.704000pt;}
.wsb3{word-spacing:0.768000pt;}
.ws13{word-spacing:0.832000pt;}
.ws10{word-spacing:0.896000pt;}
.ws6f{word-spacing:1.024000pt;}
.ws25{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.344000pt;}
.ws88{word-spacing:1.472000pt;}
.ws55{word-spacing:1.536000pt;}
.ws29{word-spacing:1.792000pt;}
.ws28{word-spacing:1.920000pt;}
.ws93{word-spacing:2.112000pt;}
.ws2a{word-spacing:2.176000pt;}
.ws3a{word-spacing:2.432000pt;}
.ws40{word-spacing:2.496000pt;}
.ws1d{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.688000pt;}
.ws90{word-spacing:2.752000pt;}
.ws1e{word-spacing:2.816000pt;}
.ws2d{word-spacing:3.072000pt;}
.ws1f{word-spacing:3.200000pt;}
.ws7b{word-spacing:3.392000pt;}
.ws7a{word-spacing:3.456000pt;}
.ws18{word-spacing:3.712000pt;}
.ws1a{word-spacing:3.840000pt;}
.wsb0{word-spacing:4.032000pt;}
.ws19{word-spacing:4.096000pt;}
.ws94{word-spacing:4.288000pt;}
.ws44{word-spacing:4.352000pt;}
.ws43{word-spacing:4.480000pt;}
.ws95{word-spacing:4.544000pt;}
.ws6b{word-spacing:4.608000pt;}
.wsa3{word-spacing:4.672000pt;}
.ws6c{word-spacing:4.736000pt;}
.ws39{word-spacing:4.992000pt;}
.ws38{word-spacing:5.120000pt;}
.ws9b{word-spacing:5.184000pt;}
.ws70{word-spacing:5.248000pt;}
.wsa4{word-spacing:5.312000pt;}
.ws61{word-spacing:5.376000pt;}
.ws3c{word-spacing:5.632000pt;}
.ws2e{word-spacing:5.760000pt;}
.ws92{word-spacing:5.952000pt;}
.ws3b{word-spacing:6.016000pt;}
.ws2f{word-spacing:6.272000pt;}
.ws26{word-spacing:6.400000pt;}
.wsa7{word-spacing:6.528000pt;}
.ws27{word-spacing:6.656000pt;}
.ws47{word-spacing:6.912000pt;}
.ws30{word-spacing:7.040000pt;}
.ws8f{word-spacing:7.104000pt;}
.ws31{word-spacing:7.296000pt;}
.ws97{word-spacing:7.552000pt;}
.ws20{word-spacing:7.680000pt;}
.ws71{word-spacing:7.808000pt;}
.ws98{word-spacing:7.872000pt;}
.ws96{word-spacing:7.936000pt;}
.ws72{word-spacing:8.192000pt;}
.ws4f{word-spacing:8.320000pt;}
.wsa2{word-spacing:8.512000pt;}
.ws76{word-spacing:8.576000pt;}
.ws59{word-spacing:8.832000pt;}
.ws57{word-spacing:8.960000pt;}
.ws56{word-spacing:9.216000pt;}
.ws58{word-spacing:9.472000pt;}
.ws50{word-spacing:9.600000pt;}
.ws8a{word-spacing:9.792000pt;}
.ws51{word-spacing:9.856000pt;}
.ws87{word-spacing:10.112000pt;}
.ws15{word-spacing:10.240000pt;}
.ws6d{word-spacing:10.368000pt;}
.ws16{word-spacing:10.432000pt;}
.ws17{word-spacing:10.496000pt;}
.ws82{word-spacing:10.752000pt;}
.ws7e{word-spacing:10.880000pt;}
.ws80{word-spacing:11.072000pt;}
.ws81{word-spacing:11.136000pt;}
.ws8c{word-spacing:11.392000pt;}
.ws8b{word-spacing:11.520000pt;}
.ws8e{word-spacing:11.712000pt;}
.ws8d{word-spacing:11.776000pt;}
.ws86{word-spacing:12.160000pt;}
.ws7c{word-spacing:12.416000pt;}
.ws66{word-spacing:12.672000pt;}
.ws7f{word-spacing:12.800000pt;}
.wsab{word-spacing:13.056000pt;}
.ws46{word-spacing:13.440000pt;}
.ws91{word-spacing:13.568000pt;}
.ws45{word-spacing:13.696000pt;}
.ws9a{word-spacing:13.952000pt;}
.ws35{word-spacing:14.080000pt;}
.ws54{word-spacing:14.272000pt;}
.ws34{word-spacing:14.336000pt;}
.ws65{word-spacing:14.720000pt;}
.ws52{word-spacing:14.976000pt;}
.wsaf{word-spacing:15.232000pt;}
.ws3f{word-spacing:15.360000pt;}
.ws3e{word-spacing:15.616000pt;}
.ws77{word-spacing:16.000000pt;}
.wsba{word-spacing:16.256000pt;}
.ws5b{word-spacing:16.640000pt;}
.ws5c{word-spacing:16.832000pt;}
.wsb7{word-spacing:17.152000pt;}
.ws1c{word-spacing:17.280000pt;}
.wsb8{word-spacing:17.536000pt;}
.ws74{word-spacing:17.792000pt;}
.ws5a{word-spacing:17.920000pt;}
.wsa6{word-spacing:18.432000pt;}
.wsa5{word-spacing:18.560000pt;}
.wsb5{word-spacing:18.688000pt;}
.wsb6{word-spacing:18.816000pt;}
.ws9f{word-spacing:19.712000pt;}
.wsa1{word-spacing:19.840000pt;}
.wsa0{word-spacing:20.032000pt;}
.ws9d{word-spacing:20.096000pt;}
.ws9e{word-spacing:20.672000pt;}
.ws14{word-spacing:20.992000pt;}
.ws22{word-spacing:21.120000pt;}
.ws21{word-spacing:21.376000pt;}
.wsac{word-spacing:21.632000pt;}
.wsad{word-spacing:22.016000pt;}
.wsae{word-spacing:22.400000pt;}
.ws67{word-spacing:23.680000pt;}
.ws42{word-spacing:24.320000pt;}
.ws41{word-spacing:24.576000pt;}
.ws63{word-spacing:24.960000pt;}
.ws62{word-spacing:25.216000pt;}
.ws2c{word-spacing:25.600000pt;}
.ws2b{word-spacing:25.856000pt;}
.ws78{word-spacing:26.240000pt;}
.wsaa{word-spacing:30.080000pt;}
.ws36{word-spacing:30.720000pt;}
.ws37{word-spacing:30.976000pt;}
.wsbb{word-spacing:35.840000pt;}
.ws64{word-spacing:36.480000pt;}
.ws75{word-spacing:38.400000pt;}
.ws33{word-spacing:45.312000pt;}
.ws32{word-spacing:45.440000pt;}
._e{margin-left:-172.800000pt;}
._d{margin-left:-125.056000pt;}
._25{margin-left:-39.159040pt;}
._2d{margin-left:-30.010880pt;}
._f{margin-left:-16.000000pt;}
._29{margin-left:-12.136960pt;}
._24{margin-left:-7.424000pt;}
._10{margin-left:-6.417920pt;}
._2b{margin-left:-5.329920pt;}
._c{margin-left:-2.385920pt;}
._1{margin-left:-1.367040pt;}
._0{width:0.960000pt;}
._3{width:2.007040pt;}
._b{width:3.735040pt;}
._16{width:5.422080pt;}
._18{width:6.446080pt;}
._11{width:7.488000pt;}
._23{width:8.453120pt;}
._a{width:9.984000pt;}
._9{width:11.008000pt;}
._2e{width:11.927040pt;}
._17{width:12.864000pt;}
._14{width:14.400000pt;}
._26{width:17.344000pt;}
._2a{width:19.130880pt;}
._8{width:20.718080pt;}
._7{width:21.952000pt;}
._6{width:24.064000pt;}
._27{width:25.920000pt;}
._28{width:27.182080pt;}
._5{width:28.800000pt;}
._2c{width:30.016000pt;}
._15{width:30.912000pt;}
._4{width:39.374080pt;}
._2{width:44.640000pt;}
._12{width:45.655040pt;}
._13{width:46.609920pt;}
._2f{width:58.880000pt;}
._1c{width:149.056000pt;}
._22{width:183.500800pt;}
._20{width:196.497920pt;}
._1f{width:198.220800pt;}
._21{width:266.255360pt;}
._1e{width:275.205120pt;}
._1b{width:284.933120pt;}
._1d{width:292.416000pt;}
._19{width:353.282560pt;}
._1a{width:369.484800pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:3.040000pt;}
.y2c{bottom:3.680000pt;}
.y66{bottom:4.000000pt;}
.y70{bottom:10.400000pt;}
.y6a{bottom:10.560000pt;}
.y80{bottom:24.000000pt;}
.y2a{bottom:41.760000pt;}
.y105{bottom:71.040000pt;}
.y11a{bottom:72.480000pt;}
.y53{bottom:74.080000pt;}
.ye6{bottom:83.040000pt;}
.y7d{bottom:83.840000pt;}
.y26{bottom:88.640000pt;}
.yf1{bottom:89.760000pt;}
.y104{bottom:93.760000pt;}
.y119{bottom:95.040000pt;}
.y52{bottom:96.800000pt;}
.yaf{bottom:101.760000pt;}
.y7c{bottom:103.680000pt;}
.yc9{bottom:105.760000pt;}
.y7b{bottom:107.360000pt;}
.y25{bottom:111.360000pt;}
.yf0{bottom:112.480000pt;}
.y118{bottom:117.760000pt;}
.y51{bottom:119.360000pt;}
.y7a{bottom:122.240000pt;}
.yae{bottom:124.160000pt;}
.y77{bottom:126.080000pt;}
.yc8{bottom:128.480000pt;}
.y103{bottom:132.160000pt;}
.y24{bottom:134.080000pt;}
.y117{bottom:140.480000pt;}
.y78{bottom:140.960000pt;}
.y50{bottom:142.080000pt;}
.y79{bottom:144.800000pt;}
.yad{bottom:147.360000pt;}
.yc7{bottom:151.040000pt;}
.y23{bottom:156.640000pt;}
.y76{bottom:159.680000pt;}
.y116{bottom:163.040000pt;}
.y75{bottom:163.360000pt;}
.y4f{bottom:164.800000pt;}
.ye5{bottom:167.040000pt;}
.yab{bottom:167.360000pt;}
.y102{bottom:171.040000pt;}
.yc6{bottom:173.760000pt;}
.y74{bottom:178.240000pt;}
.y22{bottom:179.360000pt;}
.y71{bottom:182.080000pt;}
.y115{bottom:185.760000pt;}
.y4e{bottom:187.360000pt;}
.yac{bottom:187.364480pt;}
.yef{bottom:189.760000pt;}
.y101{bottom:193.760000pt;}
.yc5{bottom:196.480000pt;}
.y72{bottom:196.960000pt;}
.y73{bottom:200.800000pt;}
.y21{bottom:202.080000pt;}
.ye4{bottom:205.760000pt;}
.yaa{bottom:207.360000pt;}
.y114{bottom:208.480000pt;}
.y4d{bottom:210.080000pt;}
.yee{bottom:212.480000pt;}
.y6f{bottom:215.680000pt;}
.yc4{bottom:219.040000pt;}
.y6e{bottom:219.360000pt;}
.y20{bottom:224.640000pt;}
.ya8{bottom:227.360000pt;}
.ye3{bottom:228.480000pt;}
.y67{bottom:228.798080pt;}
.y113{bottom:231.040000pt;}
.y100{bottom:232.160000pt;}
.y4c{bottom:232.800000pt;}
.y6d{bottom:234.240000pt;}
.y6c{bottom:238.080000pt;}
.yed{bottom:243.040000pt;}
.y1f{bottom:247.360000pt;}
.ya9{bottom:247.364480pt;}
.ye2{bottom:251.040000pt;}
.y69{bottom:252.960000pt;}
.y112{bottom:253.760000pt;}
.y4b{bottom:255.360000pt;}
.y68{bottom:256.795520pt;}
.y6b{bottom:256.800000pt;}
.yc3{bottom:257.760000pt;}
.ya7{bottom:267.360000pt;}
.yff{bottom:271.040000pt;}
.y65{bottom:272.320000pt;}
.yec{bottom:273.760000pt;}
.y111{bottom:276.480000pt;}
.ya4{bottom:277.275520pt;}
.y4a{bottom:278.080000pt;}
.ye1{bottom:281.760000pt;}
.ya6{bottom:287.360000pt;}
.y1e{bottom:288.160000pt;}
.yfe{bottom:293.760000pt;}
.yc2{bottom:296.480000pt;}
.ya3{bottom:297.280000pt;}
.y110{bottom:299.040000pt;}
.y49{bottom:300.800000pt;}
.y64{bottom:304.960000pt;}
.ya5{bottom:307.348480pt;}
.y1d{bottom:311.040000pt;}
.ye0{bottom:312.480000pt;}
.yfd{bottom:316.480000pt;}
.yc1{bottom:319.040000pt;}
.y10f{bottom:321.760000pt;}
.y48{bottom:323.360000pt;}
.ya1{bottom:324.480000pt;}
.y63{bottom:327.520000pt;}
.y1c{bottom:333.760000pt;}
.ydf{bottom:335.040000pt;}
.ya0{bottom:338.560000pt;}
.yfc{bottom:339.040000pt;}
.yc0{bottom:341.760000pt;}
.y10e{bottom:344.480000pt;}
.y47{bottom:346.080000pt;}
.ya2{bottom:348.480000pt;}
.yde{bottom:357.760000pt;}
.yfb{bottom:361.760000pt;}
.y62{bottom:362.240000pt;}
.ybf{bottom:364.480000pt;}
.y10d{bottom:367.040000pt;}
.y46{bottom:368.800000pt;}
.y1b{bottom:372.320000pt;}
.y9f{bottom:377.120000pt;}
.ydd{bottom:380.480000pt;}
.yfa{bottom:384.480000pt;}
.ybe{bottom:387.040000pt;}
.y10c{bottom:389.760000pt;}
.y45{bottom:391.360000pt;}
.y1a{bottom:395.040000pt;}
.y9e{bottom:399.840000pt;}
.ydc{bottom:403.040000pt;}
.yf9{bottom:407.040000pt;}
.ybd{bottom:409.760000pt;}
.y10b{bottom:412.480000pt;}
.y44{bottom:414.080000pt;}
.y9d{bottom:422.400000pt;}
.ydb{bottom:425.760000pt;}
.yf8{bottom:429.760000pt;}
.ybc{bottom:432.480000pt;}
.y19{bottom:433.760000pt;}
.y10a{bottom:435.040000pt;}
.y43{bottom:436.800000pt;}
.yda{bottom:448.480000pt;}
.yf7{bottom:452.480000pt;}
.yeb{bottom:455.040000pt;}
.y18{bottom:456.320000pt;}
.y109{bottom:457.760000pt;}
.y42{bottom:459.360000pt;}
.y9c{bottom:461.120000pt;}
.ybb{bottom:471.040000pt;}
.yf6{bottom:475.040000pt;}
.yea{bottom:477.760000pt;}
.y108{bottom:480.480000pt;}
.y41{bottom:482.080000pt;}
.y9b{bottom:483.840000pt;}
.y17{bottom:486.404320pt;}
.yd9{bottom:493.760000pt;}
.y16{bottom:501.760000pt;}
.y107{bottom:503.040000pt;}
.y40{bottom:504.800000pt;}
.y9a{bottom:506.400000pt;}
.yba{bottom:509.440000pt;}
.yf5{bottom:513.440000pt;}
.yd8{bottom:516.480000pt;}
.y15{bottom:524.320000pt;}
.y106{bottom:525.760000pt;}
.y3f{bottom:527.360000pt;}
.y99{bottom:529.120000pt;}
.yd7{bottom:539.040000pt;}
.yb9{bottom:548.480000pt;}
.y3e{bottom:550.080000pt;}
.y98{bottom:551.840000pt;}
.yf4{bottom:552.480000pt;}
.y14{bottom:554.404320pt;}
.ye9{bottom:555.040000pt;}
.yd6{bottom:561.760000pt;}
.y13{bottom:569.760000pt;}
.yb8{bottom:571.040000pt;}
.y3d{bottom:572.800000pt;}
.y97{bottom:574.080000pt;}
.yf3{bottom:575.040000pt;}
.ye8{bottom:577.760000pt;}
.yd5{bottom:584.480000pt;}
.y12{bottom:592.320000pt;}
.yb7{bottom:593.760000pt;}
.y3c{bottom:595.360000pt;}
.y96{bottom:596.800000pt;}
.yf2{bottom:597.760000pt;}
.yd4{bottom:607.040000pt;}
.ye7{bottom:608.480000pt;}
.y94{bottom:616.480000pt;}
.y3b{bottom:618.080000pt;}
.y11{bottom:622.400000pt;}
.y95{bottom:627.200000pt;}
.y61{bottom:629.760000pt;}
.y92{bottom:636.480000pt;}
.y10{bottom:637.760000pt;}
.yb6{bottom:639.040000pt;}
.y90{bottom:640.480000pt;}
.y93{bottom:647.200000pt;}
.yd3{bottom:652.480000pt;}
.y3a{bottom:656.480000pt;}
.yf{bottom:660.320000pt;}
.yb5{bottom:661.760000pt;}
.y91{bottom:667.200000pt;}
.y60{bottom:668.480000pt;}
.yd2{bottom:675.040000pt;}
.y8e{bottom:676.480000pt;}
.yb4{bottom:684.480000pt;}
.y8f{bottom:687.200000pt;}
.ye{bottom:690.400000pt;}
.y5f{bottom:691.040000pt;}
.y8c{bottom:696.480000pt;}
.yd1{bottom:697.760000pt;}
.y89{bottom:700.480000pt;}
.yd{bottom:705.760000pt;}
.yb3{bottom:707.040000pt;}
.y8d{bottom:707.200000pt;}
.y39{bottom:713.600000pt;}
.y5e{bottom:713.760000pt;}
.y8a{bottom:716.480000pt;}
.yd0{bottom:720.480000pt;}
.y8b{bottom:727.200000pt;}
.yb2{bottom:729.760000pt;}
.yc{bottom:735.680000pt;}
.y38{bottom:736.480000pt;}
.ycf{bottom:743.040000pt;}
.y88{bottom:747.200000pt;}
.y83{bottom:750.555520pt;}
.yb1{bottom:752.480000pt;}
.y86{bottom:756.480000pt;}
.y37{bottom:759.040000pt;}
.yce{bottom:765.760000pt;}
.yb{bottom:766.720000pt;}
.y87{bottom:767.200000pt;}
.y82{bottom:770.560000pt;}
.yb0{bottom:775.040000pt;}
.y84{bottom:776.480000pt;}
.y5d{bottom:781.760000pt;}
.y85{bottom:787.200000pt;}
.ycd{bottom:788.480000pt;}
.ya{bottom:789.440000pt;}
.y7f{bottom:797.120000pt;}
.y36{bottom:797.760000pt;}
.y81{bottom:801.120000pt;}
.y5c{bottom:804.480000pt;}
.ycc{bottom:811.040000pt;}
.y7e{bottom:811.200000pt;}
.y35{bottom:820.480000pt;}
.y5b{bottom:827.040000pt;}
.y9{bottom:829.768000pt;}
.ycb{bottom:833.760000pt;}
.y34{bottom:843.040000pt;}
.y5a{bottom:849.760000pt;}
.yca{bottom:856.480000pt;}
.y8{bottom:857.440000pt;}
.y33{bottom:865.760000pt;}
.y59{bottom:872.480000pt;}
.y32{bottom:888.480000pt;}
.y58{bottom:895.040000pt;}
.y7{bottom:899.520000pt;}
.y31{bottom:911.040000pt;}
.y57{bottom:917.760000pt;}
.y6{bottom:922.240000pt;}
.y30{bottom:933.760000pt;}
.y11d{bottom:936.000000pt;}
.y5{bottom:940.320000pt;}
.y56{bottom:940.480000pt;}
.y2f{bottom:956.480000pt;}
.y11c{bottom:960.000000pt;}
.y55{bottom:963.040000pt;}
.y4{bottom:964.480000pt;}
.y2e{bottom:979.040000pt;}
.y11b{bottom:984.000000pt;}
.y54{bottom:1001.440000pt;}
.y2d{bottom:1001.760000pt;}
.y3{bottom:1004.160000pt;}
.y2{bottom:1023.520000pt;}
.y29{bottom:1024.480000pt;}
.y1{bottom:1041.920000pt;}
.y2b{bottom:1042.880000pt;}
.y28{bottom:1047.040000pt;}
.hb{height:15.360000pt;}
.h15{height:18.558667pt;}
.h13{height:18.560000pt;}
.h11{height:18.720000pt;}
.h17{height:19.998667pt;}
.he{height:20.000000pt;}
.hd{height:22.720000pt;}
.h12{height:36.431250pt;}
.h16{height:40.000000pt;}
.h9{height:42.084375pt;}
.h4{height:52.134375pt;}
.hc{height:53.535000pt;}
.hf{height:57.787500pt;}
.h10{height:57.805420pt;}
.h6{height:62.781250pt;}
.h3{height:62.812500pt;}
.h1b{height:63.293330pt;}
.h1a{height:63.311250pt;}
.h19{height:63.357330pt;}
.h2{height:64.500000pt;}
.ha{height:71.524375pt;}
.h8{height:72.655000pt;}
.h7{height:96.750000pt;}
.h18{height:104.180000pt;}
.h14{height:132.682860pt;}
.h5{height:167.625937pt;}
.h1c{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:32.160000pt;}
.wc{width:65.920000pt;}
.w9{width:104.800000pt;}
.w2{width:105.600000pt;}
.w8{width:111.200000pt;}
.w5{width:121.440000pt;}
.wd{width:122.880000pt;}
.wa{width:134.880000pt;}
.wb{width:138.880000pt;}
.w4{width:142.560000pt;}
.w6{width:163.200000pt;}
.w7{width:168.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.we{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.400000pt;}
.x24{left:8.960000pt;}
.x36{left:11.200000pt;}
.x21{left:13.600000pt;}
.x1e{left:15.360000pt;}
.x2c{left:16.480000pt;}
.x2b{left:18.240000pt;}
.x2f{left:28.320000pt;}
.x31{left:30.240000pt;}
.xe{left:42.240000pt;}
.x10{left:43.840000pt;}
.x3a{left:46.720000pt;}
.x41{left:48.000000pt;}
.x27{left:50.560000pt;}
.x1{left:66.240000pt;}
.x29{left:72.160000pt;}
.x34{left:76.480000pt;}
.x6{left:85.440000pt;}
.x1c{left:90.080000pt;}
.x33{left:97.440000pt;}
.xd{left:99.200000pt;}
.xb{left:102.080000pt;}
.x7{left:103.680000pt;}
.x3e{left:108.640000pt;}
.x1b{left:111.840000pt;}
.x16{left:112.960000pt;}
.x18{left:115.360000pt;}
.x38{left:122.240000pt;}
.x13{left:123.520000pt;}
.x1a{left:127.840000pt;}
.x3d{left:129.600000pt;}
.x14{left:140.963200pt;}
.x19{left:148.800000pt;}
.x2a{left:173.120000pt;}
.x1d{left:239.040000pt;}
.xf{left:241.760000pt;}
.x3f{left:242.880000pt;}
.x40{left:248.640000pt;}
.x3c{left:259.365760pt;}
.x1f{left:281.280000pt;}
.x15{left:287.839360pt;}
.x2d{left:329.760000pt;}
.x20{left:350.240000pt;}
.x11{left:363.200000pt;}
.x22{left:368.160000pt;}
.x37{left:435.680000pt;}
.x2e{left:437.760000pt;}
.x23{left:455.040000pt;}
.x39{left:458.240000pt;}
.x5{left:505.280000pt;}
.x25{left:509.120000pt;}
.x12{left:526.400000pt;}
.x3{left:552.000000pt;}
.x30{left:557.600000pt;}
.x17{left:574.880000pt;}
.x3b{left:581.120000pt;}
.x26{left:589.920000pt;}
.x28{left:600.480000pt;}
.x4{left:618.400000pt;}
.x8{left:621.760000pt;}
.xc{left:665.760000pt;}
.x35{left:692.320000pt;}
.x32{left:694.400000pt;}
.xa{left:695.360000pt;}
.x2{left:727.360000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  