
    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_93d4078c2c16c987470fbf6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990200;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_7d8cd4e17757a75f501dca98.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_812669fb03833502a619462e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_7d8cd4e17757a75f501dca98.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_f50a8d2761b7042cebe4a5f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_d2c917d045b56d69cab2f315.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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_13f6e8a97c2fbe3e45b57f53.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.121000;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_c0d26ca2c0cb96dc9c5c66a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_4f3aacee8dffcdd0a1278730.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_2eea34a713185578890d4a5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752000;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_97ecb002718e124dc72e2578.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995000;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_8f053e36800611ae20e73875.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.142000;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:ffd;src:url('chunks/assets/font_c5399c183c0a07c3d40958d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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:ffe;src:url('chunks/assets/font_42f0cdd09a99de8cc3a4ef9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.891143;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-17.550000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.350000px;}
.v1{vertical-align:21.263100px;}
.v3{vertical-align:63.940500px;}
.ls19{letter-spacing:-1.410000px;}
.ls22{letter-spacing:-1.290000px;}
.ls5{letter-spacing:-0.967500px;}
.ls18{letter-spacing:-0.705000px;}
.ls28{letter-spacing:-0.352500px;}
.ls4{letter-spacing:-0.064500px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000300px;}
.ls17{letter-spacing:0.070500px;}
.ls6{letter-spacing:0.117000px;}
.lsc{letter-spacing:0.129000px;}
.ls1d{letter-spacing:0.141000px;}
.ls11{letter-spacing:0.193500px;}
.ls1a{letter-spacing:0.211500px;}
.lse{letter-spacing:0.258000px;}
.ls8{letter-spacing:0.292500px;}
.lsf{letter-spacing:0.322500px;}
.ls10{letter-spacing:0.419250px;}
.ls20{letter-spacing:0.423000px;}
.ls1f{letter-spacing:0.709500px;}
.lsa{letter-spacing:0.735000px;}
.ls21{letter-spacing:0.806250px;}
.ls23{letter-spacing:0.846750px;}
.ls2{letter-spacing:0.903000px;}
.lsd{letter-spacing:1.032000px;}
.ls2c{letter-spacing:1.161000px;}
.ls2b{letter-spacing:1.193250px;}
.ls1{letter-spacing:1.234800px;}
.ls12{letter-spacing:1.354500px;}
.ls7{letter-spacing:1.579500px;}
.ls0{letter-spacing:1.680000px;}
.ls1e{letter-spacing:1.741500px;}
.ls24{letter-spacing:2.128500px;}
.ls2d{letter-spacing:2.322000px;}
.lsb{letter-spacing:2.547750px;}
.ls2a{letter-spacing:3.805500px;}
.ls16{letter-spacing:4.347150px;}
.ls2e{letter-spacing:6.192000px;}
.ls29{letter-spacing:7.030500px;}
.ls1c{letter-spacing:8.530500px;}
.ls15{letter-spacing:18.330000px;}
.ls25{letter-spacing:89.432700px;}
.ls26{letter-spacing:118.324500px;}
.ls27{letter-spacing:119.517900px;}
.ls14{letter-spacing:298.152000px;}
.ls13{letter-spacing:399.402000px;}
.ls9{letter-spacing:911.616600px;}
.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;}
}
.ws6b{word-spacing:-70.500000px;}
.ws0{word-spacing:-31.680000px;}
.ws25{word-spacing:-17.625000px;}
.ws96{word-spacing:-17.318250px;}
.ws6a{word-spacing:-16.920000px;}
.ws82{word-spacing:-16.125000px;}
.ws89{word-spacing:-14.332500px;}
.ws2d{word-spacing:-13.860000px;}
.ws5a{word-spacing:-11.456250px;}
.wsa9{word-spacing:-10.481250px;}
.ws83{word-spacing:-9.506250px;}
.ws8a{word-spacing:-9.316125px;}
.ws76{word-spacing:-1.741500px;}
.ws27{word-spacing:-0.903000px;}
.ws3{word-spacing:-0.840000px;}
.ws7d{word-spacing:-0.838500px;}
.ws4{word-spacing:-0.617400px;}
.ws26{word-spacing:-0.367500px;}
.ws29{word-spacing:-0.129000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.064500px;}
.ws6f{word-spacing:0.070500px;}
.ws67{word-spacing:0.129000px;}
.ws44{word-spacing:0.141000px;}
.wsaa{word-spacing:0.193500px;}
.ws81{word-spacing:0.211500px;}
.ws7{word-spacing:0.258000px;}
.ws39{word-spacing:0.282000px;}
.ws45{word-spacing:0.352500px;}
.ws9f{word-spacing:0.387000px;}
.ws57{word-spacing:0.423000px;}
.ws21{word-spacing:0.432000px;}
.ws4f{word-spacing:0.564000px;}
.wsab{word-spacing:0.580500px;}
.ws1b{word-spacing:0.585000px;}
.ws62{word-spacing:0.634500px;}
.wsa2{word-spacing:0.645000px;}
.ws38{word-spacing:0.705000px;}
.ws4a{word-spacing:0.775500px;}
.ws6d{word-spacing:0.846000px;}
.ws74{word-spacing:0.916500px;}
.ws12{word-spacing:0.967500px;}
.ws56{word-spacing:0.987000px;}
.wsa8{word-spacing:1.032000px;}
.ws97{word-spacing:1.096500px;}
.ws78{word-spacing:1.128000px;}
.ws35{word-spacing:1.198500px;}
.ws5c{word-spacing:1.269000px;}
.ws84{word-spacing:1.290000px;}
.ws75{word-spacing:1.339500px;}
.wsa4{word-spacing:1.354500px;}
.ws36{word-spacing:1.410000px;}
.wsa5{word-spacing:1.483500px;}
.ws87{word-spacing:1.521000px;}
.wse{word-spacing:1.548000px;}
.ws4c{word-spacing:1.551000px;}
.wsa3{word-spacing:1.677000px;}
.ws5d{word-spacing:1.692000px;}
.ws53{word-spacing:1.762500px;}
.ws41{word-spacing:1.833000px;}
.ws95{word-spacing:1.870500px;}
.ws3c{word-spacing:1.903500px;}
.ws17{word-spacing:1.989000px;}
.ws10{word-spacing:1.999500px;}
.ws48{word-spacing:2.044500px;}
.ws50{word-spacing:2.115000px;}
.ws4b{word-spacing:2.185500px;}
.ws52{word-spacing:2.256000px;}
.ws5e{word-spacing:2.326500px;}
.ws9c{word-spacing:2.451000px;}
.ws72{word-spacing:2.467500px;}
.ws3b{word-spacing:2.538000px;}
.ws99{word-spacing:2.580000px;}
.ws73{word-spacing:2.608500px;}
.ws11{word-spacing:2.644500px;}
.ws71{word-spacing:2.679000px;}
.ws1c{word-spacing:2.749500px;}
.wsb{word-spacing:2.773500px;}
.ws1d{word-spacing:2.925000px;}
.ws94{word-spacing:2.961000px;}
.ws22{word-spacing:3.024000px;}
.ws59{word-spacing:3.031500px;}
.ws19{word-spacing:3.042000px;}
.ws3f{word-spacing:3.172500px;}
.ws61{word-spacing:3.243000px;}
.ws9a{word-spacing:3.289500px;}
.ws5b{word-spacing:3.313500px;}
.ws6{word-spacing:3.418500px;}
.wsa1{word-spacing:3.483000px;}
.ws51{word-spacing:3.525000px;}
.ws43{word-spacing:3.595500px;}
.ws32{word-spacing:3.666000px;}
.wsa0{word-spacing:3.676500px;}
.ws58{word-spacing:3.736500px;}
.ws9b{word-spacing:3.741000px;}
.ws9d{word-spacing:3.805500px;}
.ws68{word-spacing:3.807000px;}
.ws9{word-spacing:3.870000px;}
.ws69{word-spacing:3.877500px;}
.ws1a{word-spacing:3.919500px;}
.ws2b{word-spacing:4.063500px;}
.ws30{word-spacing:4.089000px;}
.wsa{word-spacing:4.128000px;}
.ws3d{word-spacing:4.230000px;}
.ws8{word-spacing:4.257000px;}
.ws47{word-spacing:4.300500px;}
.wsd{word-spacing:4.321500px;}
.ws37{word-spacing:4.371000px;}
.ws4d{word-spacing:4.441500px;}
.ws7c{word-spacing:4.512000px;}
.ws7b{word-spacing:4.582500px;}
.ws49{word-spacing:4.653000px;}
.ws1f{word-spacing:4.680000px;}
.wsa6{word-spacing:4.708500px;}
.ws80{word-spacing:4.723500px;}
.ws7f{word-spacing:4.794000px;}
.ws3a{word-spacing:4.864500px;}
.ws5f{word-spacing:4.935000px;}
.ws64{word-spacing:5.076000px;}
.ws13{word-spacing:5.224500px;}
.ws6e{word-spacing:5.287500px;}
.ws9e{word-spacing:5.289000px;}
.ws4e{word-spacing:5.358000px;}
.ws1e{word-spacing:5.382000px;}
.ws54{word-spacing:5.499000px;}
.ws91{word-spacing:5.569500px;}
.ws20{word-spacing:5.616000px;}
.ws88{word-spacing:5.674500px;}
.ws14{word-spacing:5.676000px;}
.ws70{word-spacing:5.710500px;}
.wsc{word-spacing:5.805000px;}
.wsf{word-spacing:5.869500px;}
.ws40{word-spacing:5.922000px;}
.ws18{word-spacing:5.967000px;}
.ws77{word-spacing:5.992500px;}
.ws31{word-spacing:6.063000px;}
.ws2e{word-spacing:6.133500px;}
.ws65{word-spacing:6.204000px;}
.wsa7{word-spacing:6.256500px;}
.ws66{word-spacing:6.274500px;}
.ws92{word-spacing:6.345000px;}
.ws7a{word-spacing:6.415500px;}
.ws46{word-spacing:6.486000px;}
.ws79{word-spacing:6.556500px;}
.ws7e{word-spacing:6.627000px;}
.ws6c{word-spacing:6.768000px;}
.ws2f{word-spacing:6.838500px;}
.ws98{word-spacing:7.030500px;}
.ws93{word-spacing:7.050000px;}
.ws2a{word-spacing:7.224000px;}
.ws15{word-spacing:7.254000px;}
.ws16{word-spacing:7.312500px;}
.ws33{word-spacing:7.332000px;}
.ws34{word-spacing:7.402500px;}
.ws55{word-spacing:7.543500px;}
.ws42{word-spacing:7.684500px;}
.ws2c{word-spacing:7.740000px;}
.ws85{word-spacing:7.998000px;}
.ws28{word-spacing:8.062500px;}
.ws63{word-spacing:8.178000px;}
.ws60{word-spacing:8.742000px;}
.ws3e{word-spacing:8.812500px;}
.ws24{word-spacing:10.656000px;}
.ws86{word-spacing:11.352000px;}
.ws23{word-spacing:13.344000px;}
.ws2{word-spacing:14.178000px;}
.ws8b{word-spacing:61.776000px;}
.ws8c{word-spacing:87.867000px;}
.ws8d{word-spacing:94.009500px;}
.ws8f{word-spacing:104.598000px;}
.ws8e{word-spacing:118.638000px;}
.ws90{word-spacing:121.338000px;}
._7{margin-left:-24.000000px;}
._1{margin-left:-14.178000px;}
._6{margin-left:-12.514800px;}
._2{margin-left:-1.680000px;}
._a{width:1.410000px;}
._d{width:3.102000px;}
._b{width:4.159500px;}
._c{width:5.929050px;}
._4{width:7.371000px;}
._e{width:8.833650px;}
._3{width:9.871500px;}
._5{width:13.344000px;}
._8{width:15.351000px;}
._12{width:22.278000px;}
._13{width:25.098000px;}
._10{width:27.988500px;}
._f{width:29.046000px;}
._11{width:30.597000px;}
._14{width:79.806000px;}
._16{width:98.162100px;}
._1d{width:103.572000px;}
._1e{width:106.662000px;}
._1c{width:111.456000px;}
._17{width:114.468000px;}
._1b{width:118.206000px;}
._1f{width:120.258000px;}
._1a{width:121.338000px;}
._19{width:125.982000px;}
._22{width:127.462500px;}
._20{width:129.816000px;}
._15{width:133.087500px;}
._18{width:142.668000px;}
._21{width:401.220000px;}
._9{width:1435.497000px;}
._0{width:1961.001000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.025000px;}
.fsd{font-size:41.925000px;}
.fsa{font-size:45.825000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs9{font-size:52.500000px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:58.500000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:64.500000px;}
.fs8{font-size:69.000000px;}
.fs4{font-size:70.500000px;}
.fs3{font-size:88.200000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:75.319350px;}
.y33{bottom:76.777350px;}
.y31{bottom:131.812500px;}
.yc2{bottom:132.282300px;}
.y11c{bottom:132.392175px;}
.y6d{bottom:132.399225px;}
.y14c{bottom:132.408225px;}
.y84{bottom:132.999000px;}
.y104{bottom:133.767375px;}
.y9c{bottom:134.958675px;}
.yd6{bottom:135.531150px;}
.yf7{bottom:135.862650px;}
.yf8{bottom:136.384950px;}
.ya8{bottom:136.821450px;}
.yb2{bottom:142.339800px;}
.y30{bottom:144.604500px;}
.y11b{bottom:149.984550px;}
.y14b{bottom:150.000600px;}
.y6c{bottom:151.592850px;}
.yd5{bottom:153.123525px;}
.y103{bottom:154.140000px;}
.y9b{bottom:154.152300px;}
.ya7{bottom:154.413825px;}
.y2f{bottom:163.765350px;}
.y14a{bottom:167.592975px;}
.yd4{bottom:170.715900px;}
.y6b{bottom:170.786475px;}
.y11a{bottom:179.165100px;}
.y2e{bottom:182.941350px;}
.y149{bottom:185.185350px;}
.ye4{bottom:185.884050px;}
.y6a{bottom:189.980100px;}
.y9a{bottom:192.519075px;}
.y102{bottom:195.746100px;}
.y119{bottom:200.765100px;}
.y2d{bottom:202.117350px;}
.y148{bottom:202.777725px;}
.ye3{bottom:203.476425px;}
.y69{bottom:209.173725px;}
.y101{bottom:213.346725px;}
.y2c{bottom:214.909350px;}
.ya6{bottom:216.704700px;}
.y118{bottom:218.112600px;}
.y147{bottom:220.370100px;}
.ye2{bottom:221.068800px;}
.y68{bottom:228.367350px;}
.y100{bottom:230.939100px;}
.y2b{bottom:234.085350px;}
.y146{bottom:237.962475px;}
.y117{bottom:243.207000px;}
.y2a{bottom:246.877350px;}
.y67{bottom:247.560975px;}
.y145{bottom:255.554850px;}
.y66{bottom:266.754600px;}
.y99{bottom:267.677700px;}
.y144{bottom:273.147225px;}
.y65{bottom:285.948225px;}
.y22{bottom:289.825950px;}
.y29{bottom:289.840575px;}
.y143{bottom:290.739600px;}
.y64{bottom:305.141850px;}
.y21{bottom:305.811075px;}
.y28{bottom:305.825700px;}
.y116{bottom:306.088725px;}
.y142{bottom:308.331975px;}
.y20{bottom:321.796200px;}
.y27{bottom:321.810825px;}
.y63{bottom:324.335475px;}
.y115{bottom:325.282350px;}
.y141{bottom:325.924350px;}
.y1f{bottom:337.781325px;}
.y26{bottom:337.795950px;}
.y140{bottom:343.516725px;}
.y62{bottom:343.529100px;}
.y114{bottom:344.475975px;}
.y1e{bottom:353.766450px;}
.y25{bottom:353.781075px;}
.y13f{bottom:361.109100px;}
.y61{bottom:362.722725px;}
.y113{bottom:363.669600px;}
.y1d{bottom:369.751575px;}
.y24{bottom:369.766200px;}
.y13e{bottom:378.701475px;}
.y60{bottom:381.916350px;}
.y112{bottom:382.863225px;}
.y1c{bottom:385.736700px;}
.y23{bottom:385.751325px;}
.y13d{bottom:396.293850px;}
.y5f{bottom:401.109975px;}
.y111{bottom:402.056850px;}
.y13c{bottom:413.886225px;}
.yb1{bottom:414.706500px;}
.y5e{bottom:420.303600px;}
.y110{bottom:421.250475px;}
.y13b{bottom:431.478600px;}
.yc1{bottom:431.625150px;}
.y1b{bottom:431.731350px;}
.yb0{bottom:433.900125px;}
.y5d{bottom:439.497225px;}
.y10f{bottom:440.444100px;}
.y13a{bottom:449.070975px;}
.y1a{bottom:449.323725px;}
.yc0{bottom:450.818775px;}
.yaf{bottom:453.093750px;}
.y5c{bottom:458.690850px;}
.yf6{bottom:458.713350px;}
.y10e{bottom:459.637725px;}
.y139{bottom:466.663350px;}
.ybf{bottom:470.012400px;}
.yae{bottom:472.287375px;}
.ya5{bottom:472.719525px;}
.y19{bottom:475.720350px;}
.y5b{bottom:477.884475px;}
.yf5{bottom:477.906975px;}
.y10d{bottom:478.831350px;}
.y138{bottom:484.255725px;}
.ybe{bottom:489.206025px;}
.yad{bottom:491.481000px;}
.ya4{bottom:491.913150px;}
.y18{bottom:493.312725px;}
.y83{bottom:497.032200px;}
.y5a{bottom:497.078100px;}
.yf4{bottom:497.100600px;}
.y10c{bottom:498.024975px;}
.y137{bottom:501.848100px;}
.ybd{bottom:508.391400px;}
.y17{bottom:510.905100px;}
.ya3{bottom:511.106775px;}
.y82{bottom:516.225825px;}
.y59{bottom:516.271725px;}
.yf3{bottom:516.294225px;}
.y10b{bottom:517.218600px;}
.y136{bottom:519.440475px;}
.ybc{bottom:527.585025px;}
.y16{bottom:528.497475px;}
.yac{bottom:529.865925px;}
.ya2{bottom:530.300400px;}
.yf2{bottom:535.401825px;}
.y81{bottom:535.419450px;}
.y58{bottom:535.465350px;}
.y10a{bottom:536.412225px;}
.y135{bottom:537.032850px;}
.yff{bottom:539.138850px;}
.y15{bottom:546.089850px;}
.ybb{bottom:546.778650px;}
.yab{bottom:547.458300px;}
.yd3{bottom:547.629600px;}
.ya1{bottom:549.494025px;}
.yf1{bottom:554.595450px;}
.y80{bottom:554.613075px;}
.y134{bottom:554.625225px;}
.y57{bottom:554.658975px;}
.y109{bottom:555.605850px;}
.yfe{bottom:556.731225px;}
.y14{bottom:563.682225px;}
.yaa{bottom:565.050675px;}
.yd2{bottom:566.823225px;}
.ya0{bottom:568.687650px;}
.y133{bottom:572.217600px;}
.yf0{bottom:573.789075px;}
.y7f{bottom:573.806700px;}
.y56{bottom:573.852600px;}
.yfd{bottom:574.323600px;}
.y108{bottom:574.799475px;}
.y13{bottom:581.274600px;}
.yba{bottom:585.159450px;}
.yd1{bottom:586.016850px;}
.y132{bottom:589.809975px;}
.yef{bottom:592.982700px;}
.y7e{bottom:593.000325px;}
.y55{bottom:593.046225px;}
.y98{bottom:593.993100px;}
.y12{bottom:598.866975px;}
.yb9{bottom:602.751825px;}
.yd0{bottom:605.210475px;}
.y9f{bottom:607.068450px;}
.y131{bottom:607.402350px;}
.yee{bottom:612.176325px;}
.y7d{bottom:612.193950px;}
.y54{bottom:612.239850px;}
.y97{bottom:613.186725px;}
.y11{bottom:616.459350px;}
.ycf{bottom:624.404100px;}
.y9e{bottom:624.660825px;}
.y130{bottom:624.994725px;}
.ya9{bottom:627.341550px;}
.yed{bottom:631.369950px;}
.y7c{bottom:631.387575px;}
.y96{bottom:632.380350px;}
.y10{bottom:634.051725px;}
.y12f{bottom:642.587100px;}
.yce{bottom:643.597725px;}
.yec{bottom:650.563575px;}
.y7b{bottom:650.581200px;}
.y53{bottom:650.609475px;}
.y95{bottom:651.573975px;}
.yf{bottom:651.644100px;}
.y12e{bottom:660.179475px;}
.ycd{bottom:662.791350px;}
.yb8{bottom:665.042700px;}
.ye{bottom:669.236475px;}
.yeb{bottom:669.757200px;}
.y7a{bottom:669.774825px;}
.y94{bottom:670.767600px;}
.y12d{bottom:677.771850px;}
.ye1{bottom:679.345200px;}
.ycc{bottom:681.984975px;}
.yd{bottom:686.828850px;}
.y9d{bottom:686.951700px;}
.yea{bottom:688.950825px;}
.y79{bottom:688.968450px;}
.y93{bottom:689.961225px;}
.y12c{bottom:695.364225px;}
.ye0{bottom:698.538825px;}
.ycb{bottom:701.178600px;}
.ye9{bottom:708.144450px;}
.y78{bottom:708.162075px;}
.y52{bottom:708.172725px;}
.y92{bottom:709.154850px;}
.y12b{bottom:712.956600px;}
.ydf{bottom:717.732450px;}
.yca{bottom:720.372225px;}
.y43{bottom:724.335825px;}
.ye8{bottom:727.338075px;}
.y77{bottom:727.355700px;}
.y51{bottom:727.366350px;}
.y91{bottom:728.348475px;}
.y12a{bottom:730.548975px;}
.yde{bottom:736.926075px;}
.yc9{bottom:739.565850px;}
.y42{bottom:741.928200px;}
.ye7{bottom:746.531700px;}
.y76{bottom:746.549325px;}
.y50{bottom:746.559975px;}
.y90{bottom:747.542100px;}
.y129{bottom:748.141350px;}
.yc{bottom:756.031575px;}
.ydd{bottom:756.119700px;}
.yc8{bottom:758.759475px;}
.ye6{bottom:765.725325px;}
.y128{bottom:765.733725px;}
.y75{bottom:765.742950px;}
.y4f{bottom:765.753600px;}
.y8f{bottom:766.735725px;}
.y41{bottom:768.324825px;}
.yb{bottom:775.225200px;}
.ydc{bottom:775.313325px;}
.yc7{bottom:777.953100px;}
.y127{bottom:783.326100px;}
.ye5{bottom:784.918950px;}
.y74{bottom:784.936575px;}
.y4e{bottom:784.947225px;}
.y40{bottom:785.917200px;}
.y8e{bottom:785.929350px;}
.ydb{bottom:794.506950px;}
.y126{bottom:800.918475px;}
.y3f{bottom:803.509575px;}
.y4d{bottom:804.112575px;}
.y73{bottom:804.130200px;}
.y8d{bottom:805.122975px;}
.yc6{bottom:806.734725px;}
.yda{bottom:813.700575px;}
.ya{bottom:815.696100px;}
.y125{bottom:818.510850px;}
.y3e{bottom:821.101950px;}
.y4c{bottom:823.306200px;}
.y8c{bottom:824.316600px;}
.yc5{bottom:825.928350px;}
.yd9{bottom:832.894200px;}
.y124{bottom:836.103225px;}
.y3d{bottom:838.694325px;}
.y4b{bottom:842.499825px;}
.y9{bottom:842.685300px;}
.y8b{bottom:843.510225px;}
.yc4{bottom:845.121975px;}
.yd8{bottom:852.087825px;}
.y123{bottom:853.695600px;}
.y3c{bottom:856.286700px;}
.y4a{bottom:861.693450px;}
.y8a{bottom:862.699575px;}
.y107{bottom:862.703850px;}
.yb7{bottom:864.280350px;}
.y8{bottom:869.674500px;}
.y122{bottom:871.287975px;}
.y3b{bottom:873.879075px;}
.yd7{bottom:880.869450px;}
.y49{bottom:880.887075px;}
.y89{bottom:881.885100px;}
.y106{bottom:881.893200px;}
.yb6{bottom:883.473975px;}
.yc3{bottom:883.491600px;}
.y121{bottom:888.880350px;}
.y3a{bottom:891.471450px;}
.y72{bottom:900.063075px;}
.y48{bottom:900.080700px;}
.yfc{bottom:900.088200px;}
.y88{bottom:901.078725px;}
.y105{bottom:901.082850px;}
.yb5{bottom:902.667600px;}
.y120{bottom:906.472725px;}
.y39{bottom:909.063825px;}
.y71{bottom:919.256700px;}
.yfb{bottom:919.273725px;}
.y47{bottom:919.274325px;}
.y87{bottom:920.264100px;}
.yb4{bottom:921.861225px;}
.y11f{bottom:924.065100px;}
.y38{bottom:926.656200px;}
.y7{bottom:927.046500px;}
.y70{bottom:938.450325px;}
.yfa{bottom:938.467350px;}
.y46{bottom:938.467950px;}
.y86{bottom:939.457725px;}
.yb3{bottom:941.054850px;}
.y11e{bottom:941.657475px;}
.y37{bottom:944.248575px;}
.y6{bottom:957.436500px;}
.y6f{bottom:957.643950px;}
.yf9{bottom:957.656850px;}
.y45{bottom:957.661575px;}
.y85{bottom:958.651350px;}
.y11d{bottom:959.249850px;}
.y36{bottom:961.840950px;}
.y6e{bottom:976.837575px;}
.y35{bottom:979.433325px;}
.y5{bottom:987.826500px;}
.y44{bottom:996.031200px;}
.y34{bottom:997.025700px;}
.y32{bottom:1028.954250px;}
.y2{bottom:1058.013000px;}
.y4{bottom:1082.778450px;}
.y3{bottom:1096.280700px;}
.h17{height:32.935500px;}
.hb{height:35.328000px;}
.ha{height:36.000000px;}
.hc{height:36.567000px;}
.h4{height:37.536000px;}
.h3{height:38.250000px;}
.h19{height:41.133857px;}
.h2{height:42.792000px;}
.h1c{height:45.144000px;}
.h1a{height:46.602000px;}
.h1b{height:47.142000px;}
.h9{height:50.485500px;}
.h13{height:53.922000px;}
.h8{height:55.663500px;}
.h1d{height:56.308500px;}
.hf{height:57.476807px;}
.h7{height:60.841500px;}
.h16{height:60.858000px;}
.h12{height:60.858600px;}
.h11{height:60.873900px;}
.h10{height:60.874500px;}
.he{height:60.954600px;}
.h15{height:61.185600px;}
.hd{height:61.546500px;}
.h14{height:62.823486px;}
.h6{height:76.116600px;}
.h5{height:103.560000px;}
.h18{height:114.426000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x11{left:85.039350px;}
.x2{left:93.883500px;}
.x5{left:96.174600px;}
.x4{left:101.874600px;}
.x16{left:106.295100px;}
.x28{left:108.420600px;}
.xc{left:110.891400px;}
.x7{left:112.998150px;}
.x15{left:115.139250px;}
.x29{left:117.264825px;}
.xe{left:119.395500px;}
.x3{left:125.664600px;}
.x20{left:131.802675px;}
.x1f{left:140.646675px;}
.x19{left:142.598100px;}
.x6{left:147.837150px;}
.x17{left:151.438200px;}
.xf{left:154.039800px;}
.x1b{left:155.667900px;}
.x10{left:160.039800px;}
.x22{left:165.826800px;}
.x18{left:170.349150px;}
.x14{left:180.970725px;}
.x23{left:187.426800px;}
.xb{left:189.798600px;}
.x1e{left:191.521200px;}
.x13{left:202.336350px;}
.x25{left:208.346550px;}
.xa{left:211.180350px;}
.x1a{left:213.668700px;}
.x27{left:215.750100px;}
.x1d{left:217.183800px;}
.x8{left:223.027650px;}
.x1c{left:231.075000px;}
.x21{left:242.362200px;}
.x24{left:267.874050px;}
.x9{left:344.517750px;}
.x26{left:439.957800px;}
.xd{left:448.816650px;}
.x12{left:629.624850px;}
.x1{left:743.484750px;}
@media print{
.v2{vertical-align:-15.600000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.200000pt;}
.v1{vertical-align:18.900533pt;}
.v3{vertical-align:56.836000pt;}
.ls19{letter-spacing:-1.253333pt;}
.ls22{letter-spacing:-1.146667pt;}
.ls5{letter-spacing:-0.860000pt;}
.ls18{letter-spacing:-0.626667pt;}
.ls28{letter-spacing:-0.313333pt;}
.ls4{letter-spacing:-0.057333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000267pt;}
.ls17{letter-spacing:0.062667pt;}
.ls6{letter-spacing:0.104000pt;}
.lsc{letter-spacing:0.114667pt;}
.ls1d{letter-spacing:0.125333pt;}
.ls11{letter-spacing:0.172000pt;}
.ls1a{letter-spacing:0.188000pt;}
.lse{letter-spacing:0.229333pt;}
.ls8{letter-spacing:0.260000pt;}
.lsf{letter-spacing:0.286667pt;}
.ls10{letter-spacing:0.372667pt;}
.ls20{letter-spacing:0.376000pt;}
.ls1f{letter-spacing:0.630667pt;}
.lsa{letter-spacing:0.653333pt;}
.ls21{letter-spacing:0.716667pt;}
.ls23{letter-spacing:0.752667pt;}
.ls2{letter-spacing:0.802667pt;}
.lsd{letter-spacing:0.917333pt;}
.ls2c{letter-spacing:1.032000pt;}
.ls2b{letter-spacing:1.060667pt;}
.ls1{letter-spacing:1.097600pt;}
.ls12{letter-spacing:1.204000pt;}
.ls7{letter-spacing:1.404000pt;}
.ls0{letter-spacing:1.493333pt;}
.ls1e{letter-spacing:1.548000pt;}
.ls24{letter-spacing:1.892000pt;}
.ls2d{letter-spacing:2.064000pt;}
.lsb{letter-spacing:2.264667pt;}
.ls2a{letter-spacing:3.382667pt;}
.ls16{letter-spacing:3.864133pt;}
.ls2e{letter-spacing:5.504000pt;}
.ls29{letter-spacing:6.249333pt;}
.ls1c{letter-spacing:7.582667pt;}
.ls15{letter-spacing:16.293333pt;}
.ls25{letter-spacing:79.495733pt;}
.ls26{letter-spacing:105.177333pt;}
.ls27{letter-spacing:106.238133pt;}
.ls14{letter-spacing:265.024000pt;}
.ls13{letter-spacing:355.024000pt;}
.ls9{letter-spacing:810.325867pt;}
.ws6b{word-spacing:-62.666667pt;}
.ws0{word-spacing:-28.160000pt;}
.ws25{word-spacing:-15.666667pt;}
.ws96{word-spacing:-15.394000pt;}
.ws6a{word-spacing:-15.040000pt;}
.ws82{word-spacing:-14.333333pt;}
.ws89{word-spacing:-12.740000pt;}
.ws2d{word-spacing:-12.320000pt;}
.ws5a{word-spacing:-10.183333pt;}
.wsa9{word-spacing:-9.316667pt;}
.ws83{word-spacing:-8.450000pt;}
.ws8a{word-spacing:-8.281000pt;}
.ws76{word-spacing:-1.548000pt;}
.ws27{word-spacing:-0.802667pt;}
.ws3{word-spacing:-0.746667pt;}
.ws7d{word-spacing:-0.745333pt;}
.ws4{word-spacing:-0.548800pt;}
.ws26{word-spacing:-0.326667pt;}
.ws29{word-spacing:-0.114667pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.057333pt;}
.ws6f{word-spacing:0.062667pt;}
.ws67{word-spacing:0.114667pt;}
.ws44{word-spacing:0.125333pt;}
.wsaa{word-spacing:0.172000pt;}
.ws81{word-spacing:0.188000pt;}
.ws7{word-spacing:0.229333pt;}
.ws39{word-spacing:0.250667pt;}
.ws45{word-spacing:0.313333pt;}
.ws9f{word-spacing:0.344000pt;}
.ws57{word-spacing:0.376000pt;}
.ws21{word-spacing:0.384000pt;}
.ws4f{word-spacing:0.501333pt;}
.wsab{word-spacing:0.516000pt;}
.ws1b{word-spacing:0.520000pt;}
.ws62{word-spacing:0.564000pt;}
.wsa2{word-spacing:0.573333pt;}
.ws38{word-spacing:0.626667pt;}
.ws4a{word-spacing:0.689333pt;}
.ws6d{word-spacing:0.752000pt;}
.ws74{word-spacing:0.814667pt;}
.ws12{word-spacing:0.860000pt;}
.ws56{word-spacing:0.877333pt;}
.wsa8{word-spacing:0.917333pt;}
.ws97{word-spacing:0.974667pt;}
.ws78{word-spacing:1.002667pt;}
.ws35{word-spacing:1.065333pt;}
.ws5c{word-spacing:1.128000pt;}
.ws84{word-spacing:1.146667pt;}
.ws75{word-spacing:1.190667pt;}
.wsa4{word-spacing:1.204000pt;}
.ws36{word-spacing:1.253333pt;}
.wsa5{word-spacing:1.318667pt;}
.ws87{word-spacing:1.352000pt;}
.wse{word-spacing:1.376000pt;}
.ws4c{word-spacing:1.378667pt;}
.wsa3{word-spacing:1.490667pt;}
.ws5d{word-spacing:1.504000pt;}
.ws53{word-spacing:1.566667pt;}
.ws41{word-spacing:1.629333pt;}
.ws95{word-spacing:1.662667pt;}
.ws3c{word-spacing:1.692000pt;}
.ws17{word-spacing:1.768000pt;}
.ws10{word-spacing:1.777333pt;}
.ws48{word-spacing:1.817333pt;}
.ws50{word-spacing:1.880000pt;}
.ws4b{word-spacing:1.942667pt;}
.ws52{word-spacing:2.005333pt;}
.ws5e{word-spacing:2.068000pt;}
.ws9c{word-spacing:2.178667pt;}
.ws72{word-spacing:2.193333pt;}
.ws3b{word-spacing:2.256000pt;}
.ws99{word-spacing:2.293333pt;}
.ws73{word-spacing:2.318667pt;}
.ws11{word-spacing:2.350667pt;}
.ws71{word-spacing:2.381333pt;}
.ws1c{word-spacing:2.444000pt;}
.wsb{word-spacing:2.465333pt;}
.ws1d{word-spacing:2.600000pt;}
.ws94{word-spacing:2.632000pt;}
.ws22{word-spacing:2.688000pt;}
.ws59{word-spacing:2.694667pt;}
.ws19{word-spacing:2.704000pt;}
.ws3f{word-spacing:2.820000pt;}
.ws61{word-spacing:2.882667pt;}
.ws9a{word-spacing:2.924000pt;}
.ws5b{word-spacing:2.945333pt;}
.ws6{word-spacing:3.038667pt;}
.wsa1{word-spacing:3.096000pt;}
.ws51{word-spacing:3.133333pt;}
.ws43{word-spacing:3.196000pt;}
.ws32{word-spacing:3.258667pt;}
.wsa0{word-spacing:3.268000pt;}
.ws58{word-spacing:3.321333pt;}
.ws9b{word-spacing:3.325333pt;}
.ws9d{word-spacing:3.382667pt;}
.ws68{word-spacing:3.384000pt;}
.ws9{word-spacing:3.440000pt;}
.ws69{word-spacing:3.446667pt;}
.ws1a{word-spacing:3.484000pt;}
.ws2b{word-spacing:3.612000pt;}
.ws30{word-spacing:3.634667pt;}
.wsa{word-spacing:3.669333pt;}
.ws3d{word-spacing:3.760000pt;}
.ws8{word-spacing:3.784000pt;}
.ws47{word-spacing:3.822667pt;}
.wsd{word-spacing:3.841333pt;}
.ws37{word-spacing:3.885333pt;}
.ws4d{word-spacing:3.948000pt;}
.ws7c{word-spacing:4.010667pt;}
.ws7b{word-spacing:4.073333pt;}
.ws49{word-spacing:4.136000pt;}
.ws1f{word-spacing:4.160000pt;}
.wsa6{word-spacing:4.185333pt;}
.ws80{word-spacing:4.198667pt;}
.ws7f{word-spacing:4.261333pt;}
.ws3a{word-spacing:4.324000pt;}
.ws5f{word-spacing:4.386667pt;}
.ws64{word-spacing:4.512000pt;}
.ws13{word-spacing:4.644000pt;}
.ws6e{word-spacing:4.700000pt;}
.ws9e{word-spacing:4.701333pt;}
.ws4e{word-spacing:4.762667pt;}
.ws1e{word-spacing:4.784000pt;}
.ws54{word-spacing:4.888000pt;}
.ws91{word-spacing:4.950667pt;}
.ws20{word-spacing:4.992000pt;}
.ws88{word-spacing:5.044000pt;}
.ws14{word-spacing:5.045333pt;}
.ws70{word-spacing:5.076000pt;}
.wsc{word-spacing:5.160000pt;}
.wsf{word-spacing:5.217333pt;}
.ws40{word-spacing:5.264000pt;}
.ws18{word-spacing:5.304000pt;}
.ws77{word-spacing:5.326667pt;}
.ws31{word-spacing:5.389333pt;}
.ws2e{word-spacing:5.452000pt;}
.ws65{word-spacing:5.514667pt;}
.wsa7{word-spacing:5.561333pt;}
.ws66{word-spacing:5.577333pt;}
.ws92{word-spacing:5.640000pt;}
.ws7a{word-spacing:5.702667pt;}
.ws46{word-spacing:5.765333pt;}
.ws79{word-spacing:5.828000pt;}
.ws7e{word-spacing:5.890667pt;}
.ws6c{word-spacing:6.016000pt;}
.ws2f{word-spacing:6.078667pt;}
.ws98{word-spacing:6.249333pt;}
.ws93{word-spacing:6.266667pt;}
.ws2a{word-spacing:6.421333pt;}
.ws15{word-spacing:6.448000pt;}
.ws16{word-spacing:6.500000pt;}
.ws33{word-spacing:6.517333pt;}
.ws34{word-spacing:6.580000pt;}
.ws55{word-spacing:6.705333pt;}
.ws42{word-spacing:6.830667pt;}
.ws2c{word-spacing:6.880000pt;}
.ws85{word-spacing:7.109333pt;}
.ws28{word-spacing:7.166667pt;}
.ws63{word-spacing:7.269333pt;}
.ws60{word-spacing:7.770667pt;}
.ws3e{word-spacing:7.833333pt;}
.ws24{word-spacing:9.472000pt;}
.ws86{word-spacing:10.090667pt;}
.ws23{word-spacing:11.861333pt;}
.ws2{word-spacing:12.602667pt;}
.ws8b{word-spacing:54.912000pt;}
.ws8c{word-spacing:78.104000pt;}
.ws8d{word-spacing:83.564000pt;}
.ws8f{word-spacing:92.976000pt;}
.ws8e{word-spacing:105.456000pt;}
.ws90{word-spacing:107.856000pt;}
._7{margin-left:-21.333333pt;}
._1{margin-left:-12.602667pt;}
._6{margin-left:-11.124267pt;}
._2{margin-left:-1.493333pt;}
._a{width:1.253333pt;}
._d{width:2.757333pt;}
._b{width:3.697333pt;}
._c{width:5.270267pt;}
._4{width:6.552000pt;}
._e{width:7.852133pt;}
._3{width:8.774667pt;}
._5{width:11.861333pt;}
._8{width:13.645333pt;}
._12{width:19.802667pt;}
._13{width:22.309333pt;}
._10{width:24.878667pt;}
._f{width:25.818667pt;}
._11{width:27.197333pt;}
._14{width:70.938667pt;}
._16{width:87.255200pt;}
._1d{width:92.064000pt;}
._1e{width:94.810667pt;}
._1c{width:99.072000pt;}
._17{width:101.749333pt;}
._1b{width:105.072000pt;}
._1f{width:106.896000pt;}
._1a{width:107.856000pt;}
._19{width:111.984000pt;}
._22{width:113.300000pt;}
._20{width:115.392000pt;}
._15{width:118.300000pt;}
._18{width:126.816000pt;}
._21{width:356.640000pt;}
._9{width:1275.997333pt;}
._0{width:1743.112000pt;}
.fsb{font-size:33.800000pt;}
.fsd{font-size:37.266667pt;}
.fsa{font-size:40.733333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs9{font-size:46.666667pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:52.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:57.333333pt;}
.fs8{font-size:61.333333pt;}
.fs4{font-size:62.666667pt;}
.fs3{font-size:78.400000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.950533pt;}
.y33{bottom:68.246533pt;}
.y31{bottom:117.166667pt;}
.yc2{bottom:117.584267pt;}
.y11c{bottom:117.681933pt;}
.y6d{bottom:117.688200pt;}
.y14c{bottom:117.696200pt;}
.y84{bottom:118.221333pt;}
.y104{bottom:118.904333pt;}
.y9c{bottom:119.963267pt;}
.yd6{bottom:120.472133pt;}
.yf7{bottom:120.766800pt;}
.yf8{bottom:121.231067pt;}
.ya8{bottom:121.619067pt;}
.yb2{bottom:126.524267pt;}
.y30{bottom:128.537333pt;}
.y11b{bottom:133.319600pt;}
.y14b{bottom:133.333867pt;}
.y6c{bottom:134.749200pt;}
.yd5{bottom:136.109800pt;}
.y103{bottom:137.013333pt;}
.y9b{bottom:137.024267pt;}
.ya7{bottom:137.256733pt;}
.y2f{bottom:145.569200pt;}
.y14a{bottom:148.971533pt;}
.yd4{bottom:151.747467pt;}
.y6b{bottom:151.810200pt;}
.y11a{bottom:159.257867pt;}
.y2e{bottom:162.614533pt;}
.y149{bottom:164.609200pt;}
.ye4{bottom:165.230267pt;}
.y6a{bottom:168.871200pt;}
.y9a{bottom:171.128067pt;}
.y102{bottom:173.996533pt;}
.y119{bottom:178.457867pt;}
.y2d{bottom:179.659867pt;}
.y148{bottom:180.246867pt;}
.ye3{bottom:180.867933pt;}
.y69{bottom:185.932200pt;}
.y101{bottom:189.641533pt;}
.y2c{bottom:191.030533pt;}
.ya6{bottom:192.626400pt;}
.y118{bottom:193.877867pt;}
.y147{bottom:195.884533pt;}
.ye2{bottom:196.505600pt;}
.y68{bottom:202.993200pt;}
.y100{bottom:205.279200pt;}
.y2b{bottom:208.075867pt;}
.y146{bottom:211.522200pt;}
.y117{bottom:216.184000pt;}
.y2a{bottom:219.446533pt;}
.y67{bottom:220.054200pt;}
.y145{bottom:227.159867pt;}
.y66{bottom:237.115200pt;}
.y99{bottom:237.935733pt;}
.y144{bottom:242.797533pt;}
.y65{bottom:254.176200pt;}
.y22{bottom:257.623067pt;}
.y29{bottom:257.636067pt;}
.y143{bottom:258.435200pt;}
.y64{bottom:271.237200pt;}
.y21{bottom:271.832067pt;}
.y28{bottom:271.845067pt;}
.y116{bottom:272.078867pt;}
.y142{bottom:274.072867pt;}
.y20{bottom:286.041067pt;}
.y27{bottom:286.054067pt;}
.y63{bottom:288.298200pt;}
.y115{bottom:289.139867pt;}
.y141{bottom:289.710533pt;}
.y1f{bottom:300.250067pt;}
.y26{bottom:300.263067pt;}
.y140{bottom:305.348200pt;}
.y62{bottom:305.359200pt;}
.y114{bottom:306.200867pt;}
.y1e{bottom:314.459067pt;}
.y25{bottom:314.472067pt;}
.y13f{bottom:320.985867pt;}
.y61{bottom:322.420200pt;}
.y113{bottom:323.261867pt;}
.y1d{bottom:328.668067pt;}
.y24{bottom:328.681067pt;}
.y13e{bottom:336.623533pt;}
.y60{bottom:339.481200pt;}
.y112{bottom:340.322867pt;}
.y1c{bottom:342.877067pt;}
.y23{bottom:342.890067pt;}
.y13d{bottom:352.261200pt;}
.y5f{bottom:356.542200pt;}
.y111{bottom:357.383867pt;}
.y13c{bottom:367.898867pt;}
.yb1{bottom:368.628000pt;}
.y5e{bottom:373.603200pt;}
.y110{bottom:374.444867pt;}
.y13b{bottom:383.536533pt;}
.yc1{bottom:383.666800pt;}
.y1b{bottom:383.761200pt;}
.yb0{bottom:385.689000pt;}
.y5d{bottom:390.664200pt;}
.y10f{bottom:391.505867pt;}
.y13a{bottom:399.174200pt;}
.y1a{bottom:399.398867pt;}
.yc0{bottom:400.727800pt;}
.yaf{bottom:402.750000pt;}
.y5c{bottom:407.725200pt;}
.yf6{bottom:407.745200pt;}
.y10e{bottom:408.566867pt;}
.y139{bottom:414.811867pt;}
.ybf{bottom:417.788800pt;}
.yae{bottom:419.811000pt;}
.ya5{bottom:420.195133pt;}
.y19{bottom:422.862533pt;}
.y5b{bottom:424.786200pt;}
.yf5{bottom:424.806200pt;}
.y10d{bottom:425.627867pt;}
.y138{bottom:430.449533pt;}
.ybe{bottom:434.849800pt;}
.yad{bottom:436.872000pt;}
.ya4{bottom:437.256133pt;}
.y18{bottom:438.500200pt;}
.y83{bottom:441.806400pt;}
.y5a{bottom:441.847200pt;}
.yf4{bottom:441.867200pt;}
.y10c{bottom:442.688867pt;}
.y137{bottom:446.087200pt;}
.ybd{bottom:451.903467pt;}
.y17{bottom:454.137867pt;}
.ya3{bottom:454.317133pt;}
.y82{bottom:458.867400pt;}
.y59{bottom:458.908200pt;}
.yf3{bottom:458.928200pt;}
.y10b{bottom:459.749867pt;}
.y136{bottom:461.724867pt;}
.ybc{bottom:468.964467pt;}
.y16{bottom:469.775533pt;}
.yac{bottom:470.991933pt;}
.ya2{bottom:471.378133pt;}
.yf2{bottom:475.912733pt;}
.y81{bottom:475.928400pt;}
.y58{bottom:475.969200pt;}
.y10a{bottom:476.810867pt;}
.y135{bottom:477.362533pt;}
.yff{bottom:479.234533pt;}
.y15{bottom:485.413200pt;}
.ybb{bottom:486.025467pt;}
.yab{bottom:486.629600pt;}
.yd3{bottom:486.781867pt;}
.ya1{bottom:488.439133pt;}
.yf1{bottom:492.973733pt;}
.y80{bottom:492.989400pt;}
.y134{bottom:493.000200pt;}
.y57{bottom:493.030200pt;}
.y109{bottom:493.871867pt;}
.yfe{bottom:494.872200pt;}
.y14{bottom:501.050867pt;}
.yaa{bottom:502.267267pt;}
.yd2{bottom:503.842867pt;}
.ya0{bottom:505.500133pt;}
.y133{bottom:508.637867pt;}
.yf0{bottom:510.034733pt;}
.y7f{bottom:510.050400pt;}
.y56{bottom:510.091200pt;}
.yfd{bottom:510.509867pt;}
.y108{bottom:510.932867pt;}
.y13{bottom:516.688533pt;}
.yba{bottom:520.141733pt;}
.yd1{bottom:520.903867pt;}
.y132{bottom:524.275533pt;}
.yef{bottom:527.095733pt;}
.y7e{bottom:527.111400pt;}
.y55{bottom:527.152200pt;}
.y98{bottom:527.993867pt;}
.y12{bottom:532.326200pt;}
.yb9{bottom:535.779400pt;}
.yd0{bottom:537.964867pt;}
.y9f{bottom:539.616400pt;}
.y131{bottom:539.913200pt;}
.yee{bottom:544.156733pt;}
.y7d{bottom:544.172400pt;}
.y54{bottom:544.213200pt;}
.y97{bottom:545.054867pt;}
.y11{bottom:547.963867pt;}
.ycf{bottom:555.025867pt;}
.y9e{bottom:555.254067pt;}
.y130{bottom:555.550867pt;}
.ya9{bottom:557.636933pt;}
.yed{bottom:561.217733pt;}
.y7c{bottom:561.233400pt;}
.y96{bottom:562.115867pt;}
.y10{bottom:563.601533pt;}
.y12f{bottom:571.188533pt;}
.yce{bottom:572.086867pt;}
.yec{bottom:578.278733pt;}
.y7b{bottom:578.294400pt;}
.y53{bottom:578.319533pt;}
.y95{bottom:579.176867pt;}
.yf{bottom:579.239200pt;}
.y12e{bottom:586.826200pt;}
.ycd{bottom:589.147867pt;}
.yb8{bottom:591.149067pt;}
.ye{bottom:594.876867pt;}
.yeb{bottom:595.339733pt;}
.y7a{bottom:595.355400pt;}
.y94{bottom:596.237867pt;}
.y12d{bottom:602.463867pt;}
.ye1{bottom:603.862400pt;}
.ycc{bottom:606.208867pt;}
.yd{bottom:610.514533pt;}
.y9d{bottom:610.623733pt;}
.yea{bottom:612.400733pt;}
.y79{bottom:612.416400pt;}
.y93{bottom:613.298867pt;}
.y12c{bottom:618.101533pt;}
.ye0{bottom:620.923400pt;}
.ycb{bottom:623.269867pt;}
.ye9{bottom:629.461733pt;}
.y78{bottom:629.477400pt;}
.y52{bottom:629.486867pt;}
.y92{bottom:630.359867pt;}
.y12b{bottom:633.739200pt;}
.ydf{bottom:637.984400pt;}
.yca{bottom:640.330867pt;}
.y43{bottom:643.854067pt;}
.ye8{bottom:646.522733pt;}
.y77{bottom:646.538400pt;}
.y51{bottom:646.547867pt;}
.y91{bottom:647.420867pt;}
.y12a{bottom:649.376867pt;}
.yde{bottom:655.045400pt;}
.yc9{bottom:657.391867pt;}
.y42{bottom:659.491733pt;}
.ye7{bottom:663.583733pt;}
.y76{bottom:663.599400pt;}
.y50{bottom:663.608867pt;}
.y90{bottom:664.481867pt;}
.y129{bottom:665.014533pt;}
.yc{bottom:672.028067pt;}
.ydd{bottom:672.106400pt;}
.yc8{bottom:674.452867pt;}
.ye6{bottom:680.644733pt;}
.y128{bottom:680.652200pt;}
.y75{bottom:680.660400pt;}
.y4f{bottom:680.669867pt;}
.y8f{bottom:681.542867pt;}
.y41{bottom:682.955400pt;}
.yb{bottom:689.089067pt;}
.ydc{bottom:689.167400pt;}
.yc7{bottom:691.513867pt;}
.y127{bottom:696.289867pt;}
.ye5{bottom:697.705733pt;}
.y74{bottom:697.721400pt;}
.y4e{bottom:697.730867pt;}
.y40{bottom:698.593067pt;}
.y8e{bottom:698.603867pt;}
.ydb{bottom:706.228400pt;}
.y126{bottom:711.927533pt;}
.y3f{bottom:714.230733pt;}
.y4d{bottom:714.766733pt;}
.y73{bottom:714.782400pt;}
.y8d{bottom:715.664867pt;}
.yc6{bottom:717.097533pt;}
.yda{bottom:723.289400pt;}
.ya{bottom:725.063200pt;}
.y125{bottom:727.565200pt;}
.y3e{bottom:729.868400pt;}
.y4c{bottom:731.827733pt;}
.y8c{bottom:732.725867pt;}
.yc5{bottom:734.158533pt;}
.yd9{bottom:740.350400pt;}
.y124{bottom:743.202867pt;}
.y3d{bottom:745.506067pt;}
.y4b{bottom:748.888733pt;}
.y9{bottom:749.053600pt;}
.y8b{bottom:749.786867pt;}
.yc4{bottom:751.219533pt;}
.yd8{bottom:757.411400pt;}
.y123{bottom:758.840533pt;}
.y3c{bottom:761.143733pt;}
.y4a{bottom:765.949733pt;}
.y8a{bottom:766.844067pt;}
.y107{bottom:766.847867pt;}
.yb7{bottom:768.249200pt;}
.y8{bottom:773.044000pt;}
.y122{bottom:774.478200pt;}
.y3b{bottom:776.781400pt;}
.yd7{bottom:782.995067pt;}
.y49{bottom:783.010733pt;}
.y89{bottom:783.897867pt;}
.y106{bottom:783.905067pt;}
.yb6{bottom:785.310200pt;}
.yc3{bottom:785.325867pt;}
.y121{bottom:790.115867pt;}
.y3a{bottom:792.419067pt;}
.y72{bottom:800.056067pt;}
.y48{bottom:800.071733pt;}
.yfc{bottom:800.078400pt;}
.y88{bottom:800.958867pt;}
.y105{bottom:800.962533pt;}
.yb5{bottom:802.371200pt;}
.y120{bottom:805.753533pt;}
.y39{bottom:808.056733pt;}
.y71{bottom:817.117067pt;}
.yfb{bottom:817.132200pt;}
.y47{bottom:817.132733pt;}
.y87{bottom:818.012533pt;}
.yb4{bottom:819.432200pt;}
.y11f{bottom:821.391200pt;}
.y38{bottom:823.694400pt;}
.y7{bottom:824.041333pt;}
.y70{bottom:834.178067pt;}
.yfa{bottom:834.193200pt;}
.y46{bottom:834.193733pt;}
.y86{bottom:835.073533pt;}
.yb3{bottom:836.493200pt;}
.y11e{bottom:837.028867pt;}
.y37{bottom:839.332067pt;}
.y6{bottom:851.054667pt;}
.y6f{bottom:851.239067pt;}
.yf9{bottom:851.250533pt;}
.y45{bottom:851.254733pt;}
.y85{bottom:852.134533pt;}
.y11d{bottom:852.666533pt;}
.y36{bottom:854.969733pt;}
.y6e{bottom:868.300067pt;}
.y35{bottom:870.607400pt;}
.y5{bottom:878.068000pt;}
.y44{bottom:885.361067pt;}
.y34{bottom:886.245067pt;}
.y32{bottom:914.626000pt;}
.y2{bottom:940.456000pt;}
.y4{bottom:962.469733pt;}
.y3{bottom:974.471733pt;}
.h17{height:29.276000pt;}
.hb{height:31.402667pt;}
.ha{height:32.000000pt;}
.hc{height:32.504000pt;}
.h4{height:33.365333pt;}
.h3{height:34.000000pt;}
.h19{height:36.563429pt;}
.h2{height:38.037333pt;}
.h1c{height:40.128000pt;}
.h1a{height:41.424000pt;}
.h1b{height:41.904000pt;}
.h9{height:44.876000pt;}
.h13{height:47.930667pt;}
.h8{height:49.478667pt;}
.h1d{height:50.052000pt;}
.hf{height:51.090495pt;}
.h7{height:54.081333pt;}
.h16{height:54.096000pt;}
.h12{height:54.096533pt;}
.h11{height:54.110133pt;}
.h10{height:54.110667pt;}
.he{height:54.181867pt;}
.h15{height:54.387200pt;}
.hd{height:54.708000pt;}
.h14{height:55.843099pt;}
.h6{height:67.659200pt;}
.h5{height:92.053333pt;}
.h18{height:101.712000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x11{left:75.590533pt;}
.x2{left:83.452000pt;}
.x5{left:85.488533pt;}
.x4{left:90.555200pt;}
.x16{left:94.484533pt;}
.x28{left:96.373867pt;}
.xc{left:98.570133pt;}
.x7{left:100.442800pt;}
.x15{left:102.346000pt;}
.x29{left:104.235400pt;}
.xe{left:106.129333pt;}
.x3{left:111.701867pt;}
.x20{left:117.157933pt;}
.x1f{left:125.019267pt;}
.x19{left:126.753867pt;}
.x6{left:131.410800pt;}
.x17{left:134.611733pt;}
.xf{left:136.924267pt;}
.x1b{left:138.371467pt;}
.x10{left:142.257600pt;}
.x22{left:147.401600pt;}
.x18{left:151.421467pt;}
.x14{left:160.862867pt;}
.x23{left:166.601600pt;}
.xb{left:168.709867pt;}
.x1e{left:170.241067pt;}
.x13{left:179.854533pt;}
.x25{left:185.196933pt;}
.xa{left:187.715867pt;}
.x1a{left:189.927733pt;}
.x27{left:191.777867pt;}
.x1d{left:193.052267pt;}
.x8{left:198.246800pt;}
.x1c{left:205.400000pt;}
.x21{left:215.433067pt;}
.x24{left:238.110267pt;}
.x9{left:306.238000pt;}
.x26{left:391.073600pt;}
.xd{left:398.948133pt;}
.x12{left:559.666533pt;}
.x1{left:660.875333pt;}
}




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