
    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_0bcbe4816a6ee288b66617a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038086;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_a157d7cd91ff0fb404655179.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_58a09083bd673c1634d5e5c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_42079a838c6b905424b10f0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4d3a0177c65bb287b792f838.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e6c6088d2ebfc4afe3aaf900.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-23.976000px;}
.v4{vertical-align:-1.904400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.869600px;}
.v3{vertical-align:21.978000px;}
.v2{vertical-align:23.976000px;}
.ls14{letter-spacing:-3.996000px;}
.lsb{letter-spacing:-2.880000px;}
.lsf{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-1.800000px;}
.ls10{letter-spacing:-1.762992px;}
.ls16{letter-spacing:-1.620000px;}
.ls11{letter-spacing:-1.553112px;}
.ls1d{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.259280px;}
.ls8{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.384780px;}
.lsc{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000600px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.798600px;}
.ls19{letter-spacing:0.906600px;}
.ls1b{letter-spacing:1.760400px;}
.lsa{letter-spacing:2.176800px;}
.ls9{letter-spacing:2.255400px;}
.ls1c{letter-spacing:2.400000px;}
.ls2{letter-spacing:2.700000px;}
.ls5{letter-spacing:2.832600px;}
.ls1e{letter-spacing:3.300000px;}
.ls1a{letter-spacing:3.694800px;}
.ls17{letter-spacing:11.245800px;}
.ls7{letter-spacing:11.753400px;}
.ls1f{letter-spacing:202.500000px;}
.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;}
}
.ws1e{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.784000px;}
.ws56{word-spacing:-17.640000px;}
.wse2{word-spacing:-16.200000px;}
.ws1b{word-spacing:-15.000000px;}
.ws58{word-spacing:-13.500000px;}
.ws1c{word-spacing:-10.494000px;}
.wsa1{word-spacing:-9.234720px;}
.ws79{word-spacing:-8.731008px;}
.ws50{word-spacing:-6.408000px;}
.ws6c{word-spacing:-5.184000px;}
.wse9{word-spacing:-3.894000px;}
.ws89{word-spacing:-3.888000px;}
.ws1{word-spacing:-3.840000px;}
.ws51{word-spacing:-3.744000px;}
.ws8d{word-spacing:-3.600000px;}
.ws60{word-spacing:-3.456000px;}
.wsbe{word-spacing:-3.384000px;}
.wsf5{word-spacing:-3.300000px;}
.ws5b{word-spacing:-3.240000px;}
.ws48{word-spacing:-3.168000px;}
.wsd2{word-spacing:-3.102000px;}
.ws97{word-spacing:-3.036000px;}
.ws49{word-spacing:-3.024000px;}
.ws90{word-spacing:-2.970000px;}
.wsb5{word-spacing:-2.952000px;}
.ws71{word-spacing:-2.880000px;}
.ws4{word-spacing:-2.820000px;}
.ws17{word-spacing:-2.808000px;}
.ws34{word-spacing:-2.736000px;}
.ws2{word-spacing:-2.700000px;}
.wsf4{word-spacing:-2.640000px;}
.ws4f{word-spacing:-2.592000px;}
.ws63{word-spacing:-2.520000px;}
.ws68{word-spacing:-2.448000px;}
.wse0{word-spacing:-2.376000px;}
.ws6e{word-spacing:-2.304000px;}
.ws33{word-spacing:-2.232000px;}
.wsf6{word-spacing:-2.220000px;}
.wsd9{word-spacing:-2.160000px;}
.ws18{word-spacing:-2.088000px;}
.wsa8{word-spacing:-1.998000px;}
.wsbf{word-spacing:-1.972872px;}
.ws36{word-spacing:-1.944000px;}
.wsc4{word-spacing:-1.872000px;}
.wseb{word-spacing:-1.864434px;}
.ws8a{word-spacing:-1.848000px;}
.wsdb{word-spacing:-1.728000px;}
.wsb6{word-spacing:-1.656000px;}
.ws8{word-spacing:-1.620000px;}
.ws27{word-spacing:-1.584000px;}
.ws92{word-spacing:-1.512000px;}
.wse{word-spacing:-1.500000px;}
.ws52{word-spacing:-1.368000px;}
.ws5{word-spacing:-1.320000px;}
.ws42{word-spacing:-1.296000px;}
.ws4d{word-spacing:-1.224000px;}
.ws19{word-spacing:-1.152000px;}
.wsb2{word-spacing:-1.122000px;}
.ws83{word-spacing:-1.080000px;}
.ws54{word-spacing:-0.972000px;}
.ws9{word-spacing:-0.960000px;}
.ws6f{word-spacing:-0.936000px;}
.wsc{word-spacing:-0.840000px;}
.wsb4{word-spacing:-0.792000px;}
.wsa3{word-spacing:-0.726000px;}
.wsa{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.648000px;}
.wsaa{word-spacing:-0.594000px;}
.wsd{word-spacing:-0.540000px;}
.ws99{word-spacing:-0.528000px;}
.ws84{word-spacing:-0.504000px;}
.ws6{word-spacing:-0.480000px;}
.ws8e{word-spacing:-0.432000px;}
.ws7{word-spacing:-0.360000px;}
.wse6{word-spacing:-0.330000px;}
.wsb{word-spacing:-0.300000px;}
.ws78{word-spacing:-0.288000px;}
.wsc1{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.072000px;}
.ws9a{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.wsa4{word-spacing:0.072000px;}
.ws5a{word-spacing:0.144000px;}
.ws62{word-spacing:0.288000px;}
.ws9d{word-spacing:0.360000px;}
.ws9b{word-spacing:0.384780px;}
.wsad{word-spacing:0.432000px;}
.ws1a{word-spacing:0.504000px;}
.ws32{word-spacing:0.576000px;}
.wsd5{word-spacing:0.648000px;}
.ws95{word-spacing:0.660000px;}
.wsc0{word-spacing:0.720000px;}
.wsc3{word-spacing:0.792000px;}
.ws2c{word-spacing:0.864000px;}
.wsf2{word-spacing:0.923472px;}
.ws40{word-spacing:0.936000px;}
.wsef{word-spacing:1.007424px;}
.ws3d{word-spacing:1.008000px;}
.wse3{word-spacing:1.056000px;}
.ws70{word-spacing:1.080000px;}
.wsf1{word-spacing:1.091376px;}
.wsf3{word-spacing:1.133352px;}
.ws9f{word-spacing:1.296000px;}
.ws4a{word-spacing:1.320000px;}
.wsed{word-spacing:1.343232px;}
.ws30{word-spacing:1.368000px;}
.wsba{word-spacing:1.440000px;}
.ws87{word-spacing:1.512000px;}
.ws85{word-spacing:1.553112px;}
.ws21{word-spacing:1.584000px;}
.wsa9{word-spacing:1.620000px;}
.wscf{word-spacing:1.656000px;}
.ws1f{word-spacing:1.728000px;}
.ws38{word-spacing:1.800000px;}
.wsf0{word-spacing:1.846944px;}
.wsc9{word-spacing:1.872000px;}
.ws94{word-spacing:1.914000px;}
.wsab{word-spacing:1.944000px;}
.ws66{word-spacing:2.016000px;}
.ws44{word-spacing:2.088000px;}
.wsee{word-spacing:2.098800px;}
.ws6b{word-spacing:2.125800px;}
.ws55{word-spacing:2.127600px;}
.ws1d{word-spacing:2.137800px;}
.ws57{word-spacing:2.148000px;}
.ws69{word-spacing:2.160000px;}
.ws6a{word-spacing:2.160600px;}
.ws96{word-spacing:2.178000px;}
.wsec{word-spacing:2.224728px;}
.ws4b{word-spacing:2.232000px;}
.wsa0{word-spacing:2.304000px;}
.ws29{word-spacing:2.340000px;}
.ws5f{word-spacing:2.376000px;}
.ws4e{word-spacing:2.448000px;}
.wsac{word-spacing:2.520000px;}
.ws35{word-spacing:2.592000px;}
.ws91{word-spacing:2.664000px;}
.ws26{word-spacing:2.736000px;}
.wsd3{word-spacing:2.772000px;}
.ws2a{word-spacing:2.808000px;}
.ws93{word-spacing:2.880000px;}
.ws47{word-spacing:2.952000px;}
.ws43{word-spacing:3.024000px;}
.ws3c{word-spacing:3.096000px;}
.wsce{word-spacing:3.168000px;}
.ws45{word-spacing:3.240000px;}
.wsb1{word-spacing:3.312000px;}
.ws3b{word-spacing:3.384000px;}
.ws3e{word-spacing:3.456000px;}
.ws2b{word-spacing:3.528000px;}
.ws98{word-spacing:3.564000px;}
.ws14{word-spacing:3.600000px;}
.ws2f{word-spacing:3.672000px;}
.ws77{word-spacing:3.816000px;}
.ws5e{word-spacing:3.888000px;}
.ws9e{word-spacing:3.960000px;}
.wsa7{word-spacing:3.996000px;}
.ws10{word-spacing:4.032000px;}
.ws4c{word-spacing:4.104000px;}
.ws88{word-spacing:4.158000px;}
.ws28{word-spacing:4.176000px;}
.wsb9{word-spacing:4.248000px;}
.ws31{word-spacing:4.320000px;}
.wse8{word-spacing:4.356000px;}
.ws8b{word-spacing:4.392000px;}
.ws59{word-spacing:4.464000px;}
.ws86{word-spacing:4.608000px;}
.wscb{word-spacing:4.680000px;}
.wsa6{word-spacing:4.752000px;}
.ws2e{word-spacing:4.896000px;}
.ws6d{word-spacing:4.968000px;}
.ws37{word-spacing:5.040000px;}
.wsb7{word-spacing:5.112000px;}
.ws41{word-spacing:5.184000px;}
.wsdf{word-spacing:5.328000px;}
.wsde{word-spacing:5.400000px;}
.wsd0{word-spacing:5.472000px;}
.wsbc{word-spacing:5.544000px;}
.wsb3{word-spacing:5.610000px;}
.ws15{word-spacing:5.616000px;}
.wsd4{word-spacing:5.688000px;}
.wsda{word-spacing:5.760000px;}
.ws39{word-spacing:5.904000px;}
.ws11{word-spacing:6.048000px;}
.ws53{word-spacing:6.120000px;}
.wsc7{word-spacing:6.264000px;}
.ws75{word-spacing:6.408000px;}
.wsd1{word-spacing:6.480000px;}
.ws24{word-spacing:6.552000px;}
.ws46{word-spacing:6.624000px;}
.wscd{word-spacing:6.696000px;}
.wsb0{word-spacing:6.768000px;}
.wscc{word-spacing:6.840000px;}
.ws8f{word-spacing:6.984000px;}
.ws73{word-spacing:7.056000px;}
.wsc6{word-spacing:7.128000px;}
.wsd8{word-spacing:7.200000px;}
.ws20{word-spacing:7.272000px;}
.ws61{word-spacing:7.344000px;}
.ws25{word-spacing:7.416000px;}
.ws64{word-spacing:7.560000px;}
.ws12{word-spacing:7.632000px;}
.ws74{word-spacing:7.704000px;}
.wsbb{word-spacing:7.776000px;}
.ws5d{word-spacing:7.920000px;}
.ws5c{word-spacing:8.136000px;}
.wse7{word-spacing:8.184000px;}
.ws23{word-spacing:8.424000px;}
.wse4{word-spacing:8.448000px;}
.ws80{word-spacing:8.712000px;}
.wsc8{word-spacing:8.784000px;}
.ws9c{word-spacing:8.856000px;}
.ws65{word-spacing:8.928000px;}
.wsae{word-spacing:9.000000px;}
.wsa5{word-spacing:9.072000px;}
.ws22{word-spacing:9.126000px;}
.wse1{word-spacing:9.144000px;}
.ws76{word-spacing:9.216000px;}
.wsb8{word-spacing:9.360000px;}
.wsa2{word-spacing:9.432000px;}
.ws67{word-spacing:9.504000px;}
.wsd7{word-spacing:9.720000px;}
.wsaf{word-spacing:9.792000px;}
.ws8c{word-spacing:10.080000px;}
.wsdc{word-spacing:10.152000px;}
.wsbd{word-spacing:10.296000px;}
.ws16{word-spacing:10.368000px;}
.wsc5{word-spacing:10.440000px;}
.ws13{word-spacing:10.584000px;}
.ws7f{word-spacing:10.728000px;}
.wse5{word-spacing:10.758000px;}
.wsc2{word-spacing:11.232000px;}
.wsd6{word-spacing:11.736000px;}
.ws7d{word-spacing:11.952000px;}
.ws7a{word-spacing:12.096000px;}
.wsca{word-spacing:12.240000px;}
.ws81{word-spacing:12.528000px;}
.ws72{word-spacing:12.888000px;}
.ws82{word-spacing:13.104000px;}
.ws7e{word-spacing:13.176000px;}
.ws7b{word-spacing:14.760000px;}
.ws7c{word-spacing:17.928000px;}
.wsdd{word-spacing:27.576000px;}
.wsf7{word-spacing:30.900000px;}
.ws3{word-spacing:201.000000px;}
.wsea{word-spacing:3746.577000px;}
._16{margin-left:-204.310200px;}
._18{margin-left:-201.000000px;}
._19{margin-left:-30.878400px;}
._f{margin-left:-13.029000px;}
._15{margin-left:-7.915200px;}
._d{margin-left:-6.640800px;}
._6{margin-left:-5.481600px;}
._3{margin-left:-4.296000px;}
._4{margin-left:-2.654400px;}
._0{margin-left:-1.308000px;}
._1{width:1.200000px;}
._5{width:2.947200px;}
._c{width:4.255200px;}
._2{width:6.282000px;}
._10{width:8.074800px;}
._11{width:9.464400px;}
._a{width:12.165600px;}
._13{width:16.336800px;}
._e{width:19.108800px;}
._b{width:20.203200px;}
._1a{width:30.900000px;}
._1b{width:31.980000px;}
._1c{width:34.200000px;}
._22{width:41.090400px;}
._1d{width:101.676000px;}
._1e{width:107.712000px;}
._23{width:130.368000px;}
._20{width:148.668000px;}
._1f{width:161.736000px;}
._24{width:182.061600px;}
._9{width:190.200000px;}
._21{width:195.636000px;}
._17{width:201.000000px;}
._7{width:202.860000px;}
._8{width:203.880000px;}
._12{width:1792.428600px;}
._14{width:4042.560000px;}
.fc3{color:rgb(145,143,143);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs8{font-size:45.474000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:68.722200px;}
.y82{bottom:74.716200px;}
.y1b{bottom:90.399450px;}
.y2c{bottom:91.449450px;}
.y3b{bottom:93.747900px;}
.y81{bottom:95.716200px;}
.ye0{bottom:100.478700px;}
.yc7{bottom:113.716200px;}
.ydb{bottom:114.072300px;}
.y80{bottom:116.716200px;}
.y49{bottom:117.466200px;}
.ydd{bottom:121.930350px;}
.y1a{bottom:123.399450px;}
.y2b{bottom:124.449450px;}
.y3a{bottom:126.747900px;}
.y112{bottom:130.898550px;}
.yc6{bottom:134.716200px;}
.yde{bottom:136.930350px;}
.yef{bottom:137.142300px;}
.y6d{bottom:137.716200px;}
.y48{bottom:138.466200px;}
.yd2{bottom:139.216200px;}
.ydc{bottom:142.930350px;}
.y19{bottom:156.399450px;}
.y2a{bottom:157.449450px;}
.y111{bottom:163.898550px;}
.yee{bottom:167.142300px;}
.yfb{bottom:168.427500px;}
.yfe{bottom:168.442200px;}
.yd9{bottom:172.913400px;}
.yda{bottom:172.934850px;}
.ydf{bottom:186.185400px;}
.y6c{bottom:188.123850px;}
.y18{bottom:189.399450px;}
.yfa{bottom:189.427500px;}
.yfd{bottom:189.442200px;}
.y29{bottom:190.449450px;}
.y5a{bottom:190.833750px;}
.yc5{bottom:190.913400px;}
.y6e{bottom:191.123850px;}
.y7f{bottom:194.106300px;}
.y110{bottom:196.898550px;}
.yed{bottom:197.142300px;}
.y100{bottom:205.986600px;}
.yb7{bottom:207.434850px;}
.yd0{bottom:207.640050px;}
.yd1{bottom:208.449150px;}
.y9b{bottom:208.913400px;}
.ycf{bottom:208.934850px;}
.ya4{bottom:209.512050px;}
.y90{bottom:212.123850px;}
.y120{bottom:215.938500px;}
.y17{bottom:222.399450px;}
.y39{bottom:222.747900px;}
.y28{bottom:223.449450px;}
.y59{bottom:223.833750px;}
.y6b{bottom:224.123850px;}
.yc4{bottom:226.913400px;}
.yff{bottom:226.986600px;}
.y7e{bottom:227.106300px;}
.yec{bottom:227.142300px;}
.y10f{bottom:229.898550px;}
.ya3{bottom:236.512050px;}
.y11f{bottom:239.938500px;}
.yb6{bottom:240.434850px;}
.ya2{bottom:241.913400px;}
.y9a{bottom:244.913400px;}
.yce{bottom:244.934850px;}
.y8f{bottom:248.123850px;}
.y16{bottom:255.399450px;}
.y38{bottom:255.747900px;}
.y27{bottom:256.449450px;}
.y58{bottom:256.833750px;}
.y6a{bottom:257.123850px;}
.yeb{bottom:257.142300px;}
.y7d{bottom:258.606300px;}
.y10e{bottom:262.898550px;}
.yc3{bottom:262.913400px;}
.y11e{bottom:263.938500px;}
.yf9{bottom:269.211150px;}
.yb5{bottom:274.934850px;}
.y99{bottom:280.913400px;}
.ycd{bottom:280.934850px;}
.y8e{bottom:284.123850px;}
.y15{bottom:288.399450px;}
.y37{bottom:288.747900px;}
.y26{bottom:289.449450px;}
.y7c{bottom:290.106300px;}
.y69{bottom:290.123850px;}
.y10d{bottom:295.898550px;}
.y11d{bottom:296.938500px;}
.yc2{bottom:298.913400px;}
.yf8{bottom:304.711650px;}
.yb4{bottom:309.434850px;}
.y98{bottom:316.913400px;}
.ycc{bottom:316.934850px;}
.y8d{bottom:320.123850px;}
.y14{bottom:321.399450px;}
.y36{bottom:321.747900px;}
.y25{bottom:322.449450px;}
.y57{bottom:322.833750px;}
.y7b{bottom:323.106300px;}
.y68{bottom:323.123850px;}
.y10c{bottom:328.898550px;}
.y11c{bottom:329.938500px;}
.yea{bottom:332.260350px;}
.y6{bottom:333.091050px;}
.yd8{bottom:334.913400px;}
.yf7{bottom:340.711650px;}
.yb3{bottom:343.934850px;}
.ya1{bottom:352.913400px;}
.ycb{bottom:352.934850px;}
.y13{bottom:354.399450px;}
.yc1{bottom:354.623850px;}
.y35{bottom:354.747900px;}
.y24{bottom:355.449450px;}
.y56{bottom:355.833750px;}
.y7a{bottom:356.106300px;}
.y67{bottom:356.123850px;}
.y10b{bottom:361.898550px;}
.ye9{bottom:362.260350px;}
.y11b{bottom:362.938500px;}
.y5{bottom:369.091050px;}
.yd7{bottom:370.913400px;}
.yf6{bottom:376.711650px;}
.yb2{bottom:378.434850px;}
.y47{bottom:386.873850px;}
.y12{bottom:387.399450px;}
.y34{bottom:387.747900px;}
.y23{bottom:388.449450px;}
.y55{bottom:388.833750px;}
.y97{bottom:388.913400px;}
.yca{bottom:388.934850px;}
.y79{bottom:389.106300px;}
.y66{bottom:389.123850px;}
.y4{bottom:390.091050px;}
.y8c{bottom:392.123850px;}
.ye8{bottom:392.260350px;}
.y10a{bottom:394.898550px;}
.y11a{bottom:395.938500px;}
.yf5{bottom:412.711650px;}
.yb1{bottom:412.934850px;}
.y11{bottom:420.399450px;}
.y33{bottom:420.747900px;}
.y22{bottom:421.449450px;}
.y54{bottom:421.833750px;}
.y78{bottom:422.106300px;}
.y65{bottom:422.123850px;}
.ye7{bottom:422.260350px;}
.y46{bottom:422.873850px;}
.yc0{bottom:423.623850px;}
.y96{bottom:424.913400px;}
.yc9{bottom:424.934850px;}
.y109{bottom:427.898550px;}
.y8b{bottom:428.123850px;}
.y119{bottom:428.938500px;}
.y3{bottom:429.091050px;}
.yd6{bottom:442.913400px;}
.yb0{bottom:447.434850px;}
.yf4{bottom:448.711650px;}
.y2{bottom:450.091050px;}
.y10{bottom:453.399450px;}
.y21{bottom:454.449450px;}
.y53{bottom:454.833750px;}
.y77{bottom:455.106300px;}
.y64{bottom:455.123850px;}
.y45{bottom:455.873850px;}
.ybf{bottom:458.123850px;}
.y108{bottom:460.898550px;}
.y95{bottom:460.913400px;}
.yc8{bottom:460.934850px;}
.y118{bottom:461.938500px;}
.y8a{bottom:464.123850px;}
.yd5{bottom:478.913400px;}
.yaf{bottom:481.934850px;}
.yf3{bottom:484.711650px;}
.yf{bottom:486.399450px;}
.y32{bottom:486.747900px;}
.y20{bottom:487.449450px;}
.y52{bottom:487.833750px;}
.y76{bottom:488.106300px;}
.y63{bottom:488.123850px;}
.y44{bottom:488.873850px;}
.ybe{bottom:492.623850px;}
.y107{bottom:493.898550px;}
.y94{bottom:496.913400px;}
.ybb{bottom:496.934850px;}
.y89{bottom:500.123850px;}
.yd4{bottom:514.913400px;}
.yae{bottom:516.434850px;}
.ye{bottom:519.399450px;}
.ye6{bottom:519.448050px;}
.y31{bottom:519.747900px;}
.y1f{bottom:520.449450px;}
.yf2{bottom:520.711650px;}
.y51{bottom:520.833750px;}
.y75{bottom:521.106300px;}
.y62{bottom:521.123850px;}
.y43{bottom:521.873850px;}
.y106{bottom:526.898550px;}
.ybd{bottom:527.123850px;}
.y117{bottom:527.938500px;}
.y1{bottom:529.280100px;}
.y93{bottom:532.913400px;}
.yba{bottom:532.934850px;}
.y88{bottom:536.123850px;}
.yd3{bottom:550.913400px;}
.yad{bottom:550.934850px;}
.yd{bottom:552.399450px;}
.y30{bottom:552.747900px;}
.y1e{bottom:553.449450px;}
.y50{bottom:553.833750px;}
.y74{bottom:554.106300px;}
.y61{bottom:554.123850px;}
.y42{bottom:554.873850px;}
.yf1{bottom:556.711650px;}
.ye5{bottom:556.948050px;}
.y105{bottom:559.898550px;}
.y92{bottom:568.913400px;}
.yb9{bottom:568.934850px;}
.y87{bottom:572.123850px;}
.yc{bottom:585.399450px;}
.y2f{bottom:585.747900px;}
.y1d{bottom:586.449450px;}
.y4f{bottom:586.833750px;}
.y73{bottom:587.106300px;}
.y60{bottom:587.123850px;}
.y41{bottom:587.873850px;}
.y104{bottom:592.898550px;}
.ye4{bottom:594.448050px;}
.y91{bottom:604.913400px;}
.yb8{bottom:604.934850px;}
.y86{bottom:608.123850px;}
.yf0{bottom:615.711300px;}
.yac{bottom:616.934850px;}
.yb{bottom:618.399450px;}
.y2e{bottom:618.747900px;}
.y1c{bottom:619.449450px;}
.y4e{bottom:619.833750px;}
.y72{bottom:620.106300px;}
.y5f{bottom:620.123850px;}
.y103{bottom:625.898550px;}
.y116{bottom:626.938500px;}
.ye3{bottom:631.948050px;}
.ya0{bottom:640.913400px;}
.ya8{bottom:640.934850px;}
.y85{bottom:644.123850px;}
.yab{bottom:649.934850px;}
.y2d{bottom:651.747900px;}
.y4d{bottom:652.833750px;}
.y5e{bottom:653.123850px;}
.y40{bottom:653.873850px;}
.y102{bottom:658.898550px;}
.y115{bottom:659.938500px;}
.y9f{bottom:676.913400px;}
.ya7{bottom:676.934850px;}
.y84{bottom:680.123850px;}
.yaa{bottom:682.934850px;}
.ya{bottom:684.399450px;}
.y4c{bottom:685.833750px;}
.y71{bottom:686.106300px;}
.y5d{bottom:686.123850px;}
.y3f{bottom:686.873850px;}
.y114{bottom:692.938500px;}
.ye2{bottom:705.448050px;}
.y9{bottom:711.399450px;}
.y9e{bottom:712.913400px;}
.ya6{bottom:712.934850px;}
.ya9{bottom:715.934850px;}
.y83{bottom:716.123850px;}
.y4b{bottom:718.833750px;}
.y70{bottom:719.106300px;}
.y5c{bottom:719.123850px;}
.y3e{bottom:719.873850px;}
.y101{bottom:724.898550px;}
.y113{bottom:725.938500px;}
.ye1{bottom:741.448050px;}
.y9d{bottom:748.913400px;}
.ya5{bottom:748.934850px;}
.y4a{bottom:751.833750px;}
.y6f{bottom:752.106300px;}
.y5b{bottom:752.123850px;}
.yfc{bottom:752.166450px;}
.y3d{bottom:752.873850px;}
.y8{bottom:765.399450px;}
.y3c{bottom:825.045600px;}
.y7{bottom:825.513000px;}
.ybc{bottom:826.085100px;}
.hb{height:36.831480px;}
.ha{height:39.199781px;}
.hf{height:39.900771px;}
.h10{height:41.689453px;}
.h3{height:43.031250px;}
.he{height:45.858398px;}
.hc{height:47.381836px;}
.h4{height:48.410156px;}
.h6{height:49.080000px;}
.h8{height:50.027344px;}
.h5{height:52.646484px;}
.h2{height:53.789062px;}
.hd{height:57.911133px;}
.h7{height:63.175781px;}
.h9{height:68.440430px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x15{left:96.519750px;}
.x12{left:97.795200px;}
.x2c{left:99.045750px;}
.x1b{left:139.039350px;}
.x45{left:140.314950px;}
.x2b{left:181.559100px;}
.x35{left:428.673750px;}
.x41{left:430.076400px;}
.x23{left:432.293850px;}
.x2f{left:444.184200px;}
.x25{left:445.858200px;}
.x3e{left:450.049500px;}
.x42{left:453.477300px;}
.x27{left:460.968150px;}
.xd{left:476.471550px;}
.x26{left:480.622650px;}
.xc{left:483.671400px;}
.x40{left:486.315450px;}
.x28{left:491.662050px;}
.x29{left:498.101850px;}
.x38{left:500.290050px;}
.x43{left:502.157700px;}
.x3b{left:504.498450px;}
.x36{left:506.735250px;}
.x24{left:508.560900px;}
.x8{left:510.944850px;}
.x34{left:513.407700px;}
.x32{left:516.655950px;}
.x3a{left:519.702900px;}
.x37{left:521.948850px;}
.xe{left:529.390200px;}
.xf{left:532.810050px;}
.x3d{left:534.615000px;}
.x3f{left:541.657200px;}
.x3c{left:564.018000px;}
.x30{left:637.764000px;}
.x10{left:641.167350px;}
.x13{left:662.427150px;}
.x2e{left:673.937100px;}
.x2d{left:675.187500px;}
.x19{left:704.196900px;}
.x1d{left:705.696900px;}
.x1a{left:725.456700px;}
.x39{left:739.471200px;}
.x20{left:791.588400px;}
.x1{left:847.682550px;}
.x16{left:860.817150px;}
.x1e{left:898.873650px;}
.x18{left:913.785750px;}
.x33{left:915.769200px;}
.x3{left:920.813100px;}
.x22{left:922.820400px;}
.x1c{left:940.551450px;}
.x17{left:943.646550px;}
.x1f{left:945.155400px;}
.x2{left:1000.213500px;}
.x4{left:1005.531300px;}
.x5{left:1009.992750px;}
.x21{left:1047.055500px;}
.x44{left:1052.443950px;}
.x2a{left:1055.603250px;}
.x11{left:1076.223750px;}
.x6{left:1092.170400px;}
.x31{left:1105.923450px;}
.x14{left:1114.246650px;}
.x7{left:1115.686350px;}
.x9{left:1140.157350px;}
.xb{left:1151.702400px;}
.xa{left:1158.902400px;}
@media print{
.v1{vertical-align:-21.312000pt;}
.v4{vertical-align:-1.692800pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.661867pt;}
.v3{vertical-align:19.536000pt;}
.v2{vertical-align:21.312000pt;}
.ls14{letter-spacing:-3.552000pt;}
.lsb{letter-spacing:-2.560000pt;}
.lsf{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-1.600000pt;}
.ls10{letter-spacing:-1.567104pt;}
.ls16{letter-spacing:-1.440000pt;}
.ls11{letter-spacing:-1.380544pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.119360pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.342027pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000533pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.709867pt;}
.ls19{letter-spacing:0.805867pt;}
.ls1b{letter-spacing:1.564800pt;}
.lsa{letter-spacing:1.934933pt;}
.ls9{letter-spacing:2.004800pt;}
.ls1c{letter-spacing:2.133333pt;}
.ls2{letter-spacing:2.400000pt;}
.ls5{letter-spacing:2.517867pt;}
.ls1e{letter-spacing:2.933333pt;}
.ls1a{letter-spacing:3.284267pt;}
.ls17{letter-spacing:9.996267pt;}
.ls7{letter-spacing:10.447467pt;}
.ls1f{letter-spacing:180.000000pt;}
.ws1e{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws56{word-spacing:-15.680000pt;}
.wse2{word-spacing:-14.400000pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws58{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-9.328000pt;}
.wsa1{word-spacing:-8.208640pt;}
.ws79{word-spacing:-7.760896pt;}
.ws50{word-spacing:-5.696000pt;}
.ws6c{word-spacing:-4.608000pt;}
.wse9{word-spacing:-3.461333pt;}
.ws89{word-spacing:-3.456000pt;}
.ws1{word-spacing:-3.413333pt;}
.ws51{word-spacing:-3.328000pt;}
.ws8d{word-spacing:-3.200000pt;}
.ws60{word-spacing:-3.072000pt;}
.wsbe{word-spacing:-3.008000pt;}
.wsf5{word-spacing:-2.933333pt;}
.ws5b{word-spacing:-2.880000pt;}
.ws48{word-spacing:-2.816000pt;}
.wsd2{word-spacing:-2.757333pt;}
.ws97{word-spacing:-2.698667pt;}
.ws49{word-spacing:-2.688000pt;}
.ws90{word-spacing:-2.640000pt;}
.wsb5{word-spacing:-2.624000pt;}
.ws71{word-spacing:-2.560000pt;}
.ws4{word-spacing:-2.506667pt;}
.ws17{word-spacing:-2.496000pt;}
.ws34{word-spacing:-2.432000pt;}
.ws2{word-spacing:-2.400000pt;}
.wsf4{word-spacing:-2.346667pt;}
.ws4f{word-spacing:-2.304000pt;}
.ws63{word-spacing:-2.240000pt;}
.ws68{word-spacing:-2.176000pt;}
.wse0{word-spacing:-2.112000pt;}
.ws6e{word-spacing:-2.048000pt;}
.ws33{word-spacing:-1.984000pt;}
.wsf6{word-spacing:-1.973333pt;}
.wsd9{word-spacing:-1.920000pt;}
.ws18{word-spacing:-1.856000pt;}
.wsa8{word-spacing:-1.776000pt;}
.wsbf{word-spacing:-1.753664pt;}
.ws36{word-spacing:-1.728000pt;}
.wsc4{word-spacing:-1.664000pt;}
.wseb{word-spacing:-1.657275pt;}
.ws8a{word-spacing:-1.642667pt;}
.wsdb{word-spacing:-1.536000pt;}
.wsb6{word-spacing:-1.472000pt;}
.ws8{word-spacing:-1.440000pt;}
.ws27{word-spacing:-1.408000pt;}
.ws92{word-spacing:-1.344000pt;}
.wse{word-spacing:-1.333333pt;}
.ws52{word-spacing:-1.216000pt;}
.ws5{word-spacing:-1.173333pt;}
.ws42{word-spacing:-1.152000pt;}
.ws4d{word-spacing:-1.088000pt;}
.ws19{word-spacing:-1.024000pt;}
.wsb2{word-spacing:-0.997333pt;}
.ws83{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.864000pt;}
.ws9{word-spacing:-0.853333pt;}
.ws6f{word-spacing:-0.832000pt;}
.wsc{word-spacing:-0.746667pt;}
.wsb4{word-spacing:-0.704000pt;}
.wsa3{word-spacing:-0.645333pt;}
.wsa{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.576000pt;}
.wsaa{word-spacing:-0.528000pt;}
.wsd{word-spacing:-0.480000pt;}
.ws99{word-spacing:-0.469333pt;}
.ws84{word-spacing:-0.448000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws8e{word-spacing:-0.384000pt;}
.ws7{word-spacing:-0.320000pt;}
.wse6{word-spacing:-0.293333pt;}
.wsb{word-spacing:-0.266667pt;}
.ws78{word-spacing:-0.256000pt;}
.wsc1{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.064000pt;}
.ws9a{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.064000pt;}
.ws5a{word-spacing:0.128000pt;}
.ws62{word-spacing:0.256000pt;}
.ws9d{word-spacing:0.320000pt;}
.ws9b{word-spacing:0.342027pt;}
.wsad{word-spacing:0.384000pt;}
.ws1a{word-spacing:0.448000pt;}
.ws32{word-spacing:0.512000pt;}
.wsd5{word-spacing:0.576000pt;}
.ws95{word-spacing:0.586667pt;}
.wsc0{word-spacing:0.640000pt;}
.wsc3{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.768000pt;}
.wsf2{word-spacing:0.820864pt;}
.ws40{word-spacing:0.832000pt;}
.wsef{word-spacing:0.895488pt;}
.ws3d{word-spacing:0.896000pt;}
.wse3{word-spacing:0.938667pt;}
.ws70{word-spacing:0.960000pt;}
.wsf1{word-spacing:0.970112pt;}
.wsf3{word-spacing:1.007424pt;}
.ws9f{word-spacing:1.152000pt;}
.ws4a{word-spacing:1.173333pt;}
.wsed{word-spacing:1.193984pt;}
.ws30{word-spacing:1.216000pt;}
.wsba{word-spacing:1.280000pt;}
.ws87{word-spacing:1.344000pt;}
.ws85{word-spacing:1.380544pt;}
.ws21{word-spacing:1.408000pt;}
.wsa9{word-spacing:1.440000pt;}
.wscf{word-spacing:1.472000pt;}
.ws1f{word-spacing:1.536000pt;}
.ws38{word-spacing:1.600000pt;}
.wsf0{word-spacing:1.641728pt;}
.wsc9{word-spacing:1.664000pt;}
.ws94{word-spacing:1.701333pt;}
.wsab{word-spacing:1.728000pt;}
.ws66{word-spacing:1.792000pt;}
.ws44{word-spacing:1.856000pt;}
.wsee{word-spacing:1.865600pt;}
.ws6b{word-spacing:1.889600pt;}
.ws55{word-spacing:1.891200pt;}
.ws1d{word-spacing:1.900267pt;}
.ws57{word-spacing:1.909333pt;}
.ws69{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.920533pt;}
.ws96{word-spacing:1.936000pt;}
.wsec{word-spacing:1.977536pt;}
.ws4b{word-spacing:1.984000pt;}
.wsa0{word-spacing:2.048000pt;}
.ws29{word-spacing:2.080000pt;}
.ws5f{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.176000pt;}
.wsac{word-spacing:2.240000pt;}
.ws35{word-spacing:2.304000pt;}
.ws91{word-spacing:2.368000pt;}
.ws26{word-spacing:2.432000pt;}
.wsd3{word-spacing:2.464000pt;}
.ws2a{word-spacing:2.496000pt;}
.ws93{word-spacing:2.560000pt;}
.ws47{word-spacing:2.624000pt;}
.ws43{word-spacing:2.688000pt;}
.ws3c{word-spacing:2.752000pt;}
.wsce{word-spacing:2.816000pt;}
.ws45{word-spacing:2.880000pt;}
.wsb1{word-spacing:2.944000pt;}
.ws3b{word-spacing:3.008000pt;}
.ws3e{word-spacing:3.072000pt;}
.ws2b{word-spacing:3.136000pt;}
.ws98{word-spacing:3.168000pt;}
.ws14{word-spacing:3.200000pt;}
.ws2f{word-spacing:3.264000pt;}
.ws77{word-spacing:3.392000pt;}
.ws5e{word-spacing:3.456000pt;}
.ws9e{word-spacing:3.520000pt;}
.wsa7{word-spacing:3.552000pt;}
.ws10{word-spacing:3.584000pt;}
.ws4c{word-spacing:3.648000pt;}
.ws88{word-spacing:3.696000pt;}
.ws28{word-spacing:3.712000pt;}
.wsb9{word-spacing:3.776000pt;}
.ws31{word-spacing:3.840000pt;}
.wse8{word-spacing:3.872000pt;}
.ws8b{word-spacing:3.904000pt;}
.ws59{word-spacing:3.968000pt;}
.ws86{word-spacing:4.096000pt;}
.wscb{word-spacing:4.160000pt;}
.wsa6{word-spacing:4.224000pt;}
.ws2e{word-spacing:4.352000pt;}
.ws6d{word-spacing:4.416000pt;}
.ws37{word-spacing:4.480000pt;}
.wsb7{word-spacing:4.544000pt;}
.ws41{word-spacing:4.608000pt;}
.wsdf{word-spacing:4.736000pt;}
.wsde{word-spacing:4.800000pt;}
.wsd0{word-spacing:4.864000pt;}
.wsbc{word-spacing:4.928000pt;}
.wsb3{word-spacing:4.986667pt;}
.ws15{word-spacing:4.992000pt;}
.wsd4{word-spacing:5.056000pt;}
.wsda{word-spacing:5.120000pt;}
.ws39{word-spacing:5.248000pt;}
.ws11{word-spacing:5.376000pt;}
.ws53{word-spacing:5.440000pt;}
.wsc7{word-spacing:5.568000pt;}
.ws75{word-spacing:5.696000pt;}
.wsd1{word-spacing:5.760000pt;}
.ws24{word-spacing:5.824000pt;}
.ws46{word-spacing:5.888000pt;}
.wscd{word-spacing:5.952000pt;}
.wsb0{word-spacing:6.016000pt;}
.wscc{word-spacing:6.080000pt;}
.ws8f{word-spacing:6.208000pt;}
.ws73{word-spacing:6.272000pt;}
.wsc6{word-spacing:6.336000pt;}
.wsd8{word-spacing:6.400000pt;}
.ws20{word-spacing:6.464000pt;}
.ws61{word-spacing:6.528000pt;}
.ws25{word-spacing:6.592000pt;}
.ws64{word-spacing:6.720000pt;}
.ws12{word-spacing:6.784000pt;}
.ws74{word-spacing:6.848000pt;}
.wsbb{word-spacing:6.912000pt;}
.ws5d{word-spacing:7.040000pt;}
.ws5c{word-spacing:7.232000pt;}
.wse7{word-spacing:7.274667pt;}
.ws23{word-spacing:7.488000pt;}
.wse4{word-spacing:7.509333pt;}
.ws80{word-spacing:7.744000pt;}
.wsc8{word-spacing:7.808000pt;}
.ws9c{word-spacing:7.872000pt;}
.ws65{word-spacing:7.936000pt;}
.wsae{word-spacing:8.000000pt;}
.wsa5{word-spacing:8.064000pt;}
.ws22{word-spacing:8.112000pt;}
.wse1{word-spacing:8.128000pt;}
.ws76{word-spacing:8.192000pt;}
.wsb8{word-spacing:8.320000pt;}
.wsa2{word-spacing:8.384000pt;}
.ws67{word-spacing:8.448000pt;}
.wsd7{word-spacing:8.640000pt;}
.wsaf{word-spacing:8.704000pt;}
.ws8c{word-spacing:8.960000pt;}
.wsdc{word-spacing:9.024000pt;}
.wsbd{word-spacing:9.152000pt;}
.ws16{word-spacing:9.216000pt;}
.wsc5{word-spacing:9.280000pt;}
.ws13{word-spacing:9.408000pt;}
.ws7f{word-spacing:9.536000pt;}
.wse5{word-spacing:9.562667pt;}
.wsc2{word-spacing:9.984000pt;}
.wsd6{word-spacing:10.432000pt;}
.ws7d{word-spacing:10.624000pt;}
.ws7a{word-spacing:10.752000pt;}
.wsca{word-spacing:10.880000pt;}
.ws81{word-spacing:11.136000pt;}
.ws72{word-spacing:11.456000pt;}
.ws82{word-spacing:11.648000pt;}
.ws7e{word-spacing:11.712000pt;}
.ws7b{word-spacing:13.120000pt;}
.ws7c{word-spacing:15.936000pt;}
.wsdd{word-spacing:24.512000pt;}
.wsf7{word-spacing:27.466667pt;}
.ws3{word-spacing:178.666667pt;}
.wsea{word-spacing:3330.290667pt;}
._16{margin-left:-181.609067pt;}
._18{margin-left:-178.666667pt;}
._19{margin-left:-27.447467pt;}
._f{margin-left:-11.581333pt;}
._15{margin-left:-7.035733pt;}
._d{margin-left:-5.902933pt;}
._6{margin-left:-4.872533pt;}
._3{margin-left:-3.818667pt;}
._4{margin-left:-2.359467pt;}
._0{margin-left:-1.162667pt;}
._1{width:1.066667pt;}
._5{width:2.619733pt;}
._c{width:3.782400pt;}
._2{width:5.584000pt;}
._10{width:7.177600pt;}
._11{width:8.412800pt;}
._a{width:10.813867pt;}
._13{width:14.521600pt;}
._e{width:16.985600pt;}
._b{width:17.958400pt;}
._1a{width:27.466667pt;}
._1b{width:28.426667pt;}
._1c{width:30.400000pt;}
._22{width:36.524800pt;}
._1d{width:90.378667pt;}
._1e{width:95.744000pt;}
._23{width:115.882667pt;}
._20{width:132.149333pt;}
._1f{width:143.765333pt;}
._24{width:161.832533pt;}
._9{width:169.066667pt;}
._21{width:173.898667pt;}
._17{width:178.666667pt;}
._7{width:180.320000pt;}
._8{width:181.226667pt;}
._12{width:1593.269867pt;}
._14{width:3593.386667pt;}
.fs7{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs8{font-size:40.421333pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:61.086400pt;}
.y82{bottom:66.414400pt;}
.y1b{bottom:80.355067pt;}
.y2c{bottom:81.288400pt;}
.y3b{bottom:83.331467pt;}
.y81{bottom:85.081067pt;}
.ye0{bottom:89.314400pt;}
.yc7{bottom:101.081067pt;}
.ydb{bottom:101.397600pt;}
.y80{bottom:103.747733pt;}
.y49{bottom:104.414400pt;}
.ydd{bottom:108.382533pt;}
.y1a{bottom:109.688400pt;}
.y2b{bottom:110.621733pt;}
.y3a{bottom:112.664800pt;}
.y112{bottom:116.354267pt;}
.yc6{bottom:119.747733pt;}
.yde{bottom:121.715867pt;}
.yef{bottom:121.904267pt;}
.y6d{bottom:122.414400pt;}
.y48{bottom:123.081067pt;}
.yd2{bottom:123.747733pt;}
.ydc{bottom:127.049200pt;}
.y19{bottom:139.021733pt;}
.y2a{bottom:139.955067pt;}
.y111{bottom:145.687600pt;}
.yee{bottom:148.570933pt;}
.yfb{bottom:149.713333pt;}
.yfe{bottom:149.726400pt;}
.yd9{bottom:153.700800pt;}
.yda{bottom:153.719867pt;}
.ydf{bottom:165.498133pt;}
.y6c{bottom:167.221200pt;}
.y18{bottom:168.355067pt;}
.yfa{bottom:168.380000pt;}
.yfd{bottom:168.393067pt;}
.y29{bottom:169.288400pt;}
.y5a{bottom:169.630000pt;}
.yc5{bottom:169.700800pt;}
.y6e{bottom:169.887867pt;}
.y7f{bottom:172.538933pt;}
.y110{bottom:175.020933pt;}
.yed{bottom:175.237600pt;}
.y100{bottom:183.099200pt;}
.yb7{bottom:184.386533pt;}
.yd0{bottom:184.568933pt;}
.yd1{bottom:185.288133pt;}
.y9b{bottom:185.700800pt;}
.ycf{bottom:185.719867pt;}
.ya4{bottom:186.232933pt;}
.y90{bottom:188.554533pt;}
.y120{bottom:191.945333pt;}
.y17{bottom:197.688400pt;}
.y39{bottom:197.998133pt;}
.y28{bottom:198.621733pt;}
.y59{bottom:198.963333pt;}
.y6b{bottom:199.221200pt;}
.yc4{bottom:201.700800pt;}
.yff{bottom:201.765867pt;}
.y7e{bottom:201.872267pt;}
.yec{bottom:201.904267pt;}
.y10f{bottom:204.354267pt;}
.ya3{bottom:210.232933pt;}
.y11f{bottom:213.278667pt;}
.yb6{bottom:213.719867pt;}
.ya2{bottom:215.034133pt;}
.y9a{bottom:217.700800pt;}
.yce{bottom:217.719867pt;}
.y8f{bottom:220.554533pt;}
.y16{bottom:227.021733pt;}
.y38{bottom:227.331467pt;}
.y27{bottom:227.955067pt;}
.y58{bottom:228.296667pt;}
.y6a{bottom:228.554533pt;}
.yeb{bottom:228.570933pt;}
.y7d{bottom:229.872267pt;}
.y10e{bottom:233.687600pt;}
.yc3{bottom:233.700800pt;}
.y11e{bottom:234.612000pt;}
.yf9{bottom:239.298800pt;}
.yb5{bottom:244.386533pt;}
.y99{bottom:249.700800pt;}
.ycd{bottom:249.719867pt;}
.y8e{bottom:252.554533pt;}
.y15{bottom:256.355067pt;}
.y37{bottom:256.664800pt;}
.y26{bottom:257.288400pt;}
.y7c{bottom:257.872267pt;}
.y69{bottom:257.887867pt;}
.y10d{bottom:263.020933pt;}
.y11d{bottom:263.945333pt;}
.yc2{bottom:265.700800pt;}
.yf8{bottom:270.854800pt;}
.yb4{bottom:275.053200pt;}
.y98{bottom:281.700800pt;}
.ycc{bottom:281.719867pt;}
.y8d{bottom:284.554533pt;}
.y14{bottom:285.688400pt;}
.y36{bottom:285.998133pt;}
.y25{bottom:286.621733pt;}
.y57{bottom:286.963333pt;}
.y7b{bottom:287.205600pt;}
.y68{bottom:287.221200pt;}
.y10c{bottom:292.354267pt;}
.y11c{bottom:293.278667pt;}
.yea{bottom:295.342533pt;}
.y6{bottom:296.080933pt;}
.yd8{bottom:297.700800pt;}
.yf7{bottom:302.854800pt;}
.yb3{bottom:305.719867pt;}
.ya1{bottom:313.700800pt;}
.ycb{bottom:313.719867pt;}
.y13{bottom:315.021733pt;}
.yc1{bottom:315.221200pt;}
.y35{bottom:315.331467pt;}
.y24{bottom:315.955067pt;}
.y56{bottom:316.296667pt;}
.y7a{bottom:316.538933pt;}
.y67{bottom:316.554533pt;}
.y10b{bottom:321.687600pt;}
.ye9{bottom:322.009200pt;}
.y11b{bottom:322.612000pt;}
.y5{bottom:328.080933pt;}
.yd7{bottom:329.700800pt;}
.yf6{bottom:334.854800pt;}
.yb2{bottom:336.386533pt;}
.y47{bottom:343.887867pt;}
.y12{bottom:344.355067pt;}
.y34{bottom:344.664800pt;}
.y23{bottom:345.288400pt;}
.y55{bottom:345.630000pt;}
.y97{bottom:345.700800pt;}
.yca{bottom:345.719867pt;}
.y79{bottom:345.872267pt;}
.y66{bottom:345.887867pt;}
.y4{bottom:346.747600pt;}
.y8c{bottom:348.554533pt;}
.ye8{bottom:348.675867pt;}
.y10a{bottom:351.020933pt;}
.y11a{bottom:351.945333pt;}
.yf5{bottom:366.854800pt;}
.yb1{bottom:367.053200pt;}
.y11{bottom:373.688400pt;}
.y33{bottom:373.998133pt;}
.y22{bottom:374.621733pt;}
.y54{bottom:374.963333pt;}
.y78{bottom:375.205600pt;}
.y65{bottom:375.221200pt;}
.ye7{bottom:375.342533pt;}
.y46{bottom:375.887867pt;}
.yc0{bottom:376.554533pt;}
.y96{bottom:377.700800pt;}
.yc9{bottom:377.719867pt;}
.y109{bottom:380.354267pt;}
.y8b{bottom:380.554533pt;}
.y119{bottom:381.278667pt;}
.y3{bottom:381.414267pt;}
.yd6{bottom:393.700800pt;}
.yb0{bottom:397.719867pt;}
.yf4{bottom:398.854800pt;}
.y2{bottom:400.080933pt;}
.y10{bottom:403.021733pt;}
.y21{bottom:403.955067pt;}
.y53{bottom:404.296667pt;}
.y77{bottom:404.538933pt;}
.y64{bottom:404.554533pt;}
.y45{bottom:405.221200pt;}
.ybf{bottom:407.221200pt;}
.y108{bottom:409.687600pt;}
.y95{bottom:409.700800pt;}
.yc8{bottom:409.719867pt;}
.y118{bottom:410.612000pt;}
.y8a{bottom:412.554533pt;}
.yd5{bottom:425.700800pt;}
.yaf{bottom:428.386533pt;}
.yf3{bottom:430.854800pt;}
.yf{bottom:432.355067pt;}
.y32{bottom:432.664800pt;}
.y20{bottom:433.288400pt;}
.y52{bottom:433.630000pt;}
.y76{bottom:433.872267pt;}
.y63{bottom:433.887867pt;}
.y44{bottom:434.554533pt;}
.ybe{bottom:437.887867pt;}
.y107{bottom:439.020933pt;}
.y94{bottom:441.700800pt;}
.ybb{bottom:441.719867pt;}
.y89{bottom:444.554533pt;}
.yd4{bottom:457.700800pt;}
.yae{bottom:459.053200pt;}
.ye{bottom:461.688400pt;}
.ye6{bottom:461.731600pt;}
.y31{bottom:461.998133pt;}
.y1f{bottom:462.621733pt;}
.yf2{bottom:462.854800pt;}
.y51{bottom:462.963333pt;}
.y75{bottom:463.205600pt;}
.y62{bottom:463.221200pt;}
.y43{bottom:463.887867pt;}
.y106{bottom:468.354267pt;}
.ybd{bottom:468.554533pt;}
.y117{bottom:469.278667pt;}
.y1{bottom:470.471200pt;}
.y93{bottom:473.700800pt;}
.yba{bottom:473.719867pt;}
.y88{bottom:476.554533pt;}
.yd3{bottom:489.700800pt;}
.yad{bottom:489.719867pt;}
.yd{bottom:491.021733pt;}
.y30{bottom:491.331467pt;}
.y1e{bottom:491.955067pt;}
.y50{bottom:492.296667pt;}
.y74{bottom:492.538933pt;}
.y61{bottom:492.554533pt;}
.y42{bottom:493.221200pt;}
.yf1{bottom:494.854800pt;}
.ye5{bottom:495.064933pt;}
.y105{bottom:497.687600pt;}
.y92{bottom:505.700800pt;}
.yb9{bottom:505.719867pt;}
.y87{bottom:508.554533pt;}
.yc{bottom:520.355067pt;}
.y2f{bottom:520.664800pt;}
.y1d{bottom:521.288400pt;}
.y4f{bottom:521.630000pt;}
.y73{bottom:521.872267pt;}
.y60{bottom:521.887867pt;}
.y41{bottom:522.554533pt;}
.y104{bottom:527.020933pt;}
.ye4{bottom:528.398267pt;}
.y91{bottom:537.700800pt;}
.yb8{bottom:537.719867pt;}
.y86{bottom:540.554533pt;}
.yf0{bottom:547.298933pt;}
.yac{bottom:548.386533pt;}
.yb{bottom:549.688400pt;}
.y2e{bottom:549.998133pt;}
.y1c{bottom:550.621733pt;}
.y4e{bottom:550.963333pt;}
.y72{bottom:551.205600pt;}
.y5f{bottom:551.221200pt;}
.y103{bottom:556.354267pt;}
.y116{bottom:557.278667pt;}
.ye3{bottom:561.731600pt;}
.ya0{bottom:569.700800pt;}
.ya8{bottom:569.719867pt;}
.y85{bottom:572.554533pt;}
.yab{bottom:577.719867pt;}
.y2d{bottom:579.331467pt;}
.y4d{bottom:580.296667pt;}
.y5e{bottom:580.554533pt;}
.y40{bottom:581.221200pt;}
.y102{bottom:585.687600pt;}
.y115{bottom:586.612000pt;}
.y9f{bottom:601.700800pt;}
.ya7{bottom:601.719867pt;}
.y84{bottom:604.554533pt;}
.yaa{bottom:607.053200pt;}
.ya{bottom:608.355067pt;}
.y4c{bottom:609.630000pt;}
.y71{bottom:609.872267pt;}
.y5d{bottom:609.887867pt;}
.y3f{bottom:610.554533pt;}
.y114{bottom:615.945333pt;}
.ye2{bottom:627.064933pt;}
.y9{bottom:632.355067pt;}
.y9e{bottom:633.700800pt;}
.ya6{bottom:633.719867pt;}
.ya9{bottom:636.386533pt;}
.y83{bottom:636.554533pt;}
.y4b{bottom:638.963333pt;}
.y70{bottom:639.205600pt;}
.y5c{bottom:639.221200pt;}
.y3e{bottom:639.887867pt;}
.y101{bottom:644.354267pt;}
.y113{bottom:645.278667pt;}
.ye1{bottom:659.064933pt;}
.y9d{bottom:665.700800pt;}
.ya5{bottom:665.719867pt;}
.y4a{bottom:668.296667pt;}
.y6f{bottom:668.538933pt;}
.y5b{bottom:668.554533pt;}
.yfc{bottom:668.592400pt;}
.y3d{bottom:669.221200pt;}
.y8{bottom:680.355067pt;}
.y3c{bottom:733.373867pt;}
.y7{bottom:733.789333pt;}
.ybc{bottom:734.297867pt;}
.hb{height:32.739094pt;}
.ha{height:34.844250pt;}
.hf{height:35.467352pt;}
.h10{height:37.057292pt;}
.h3{height:38.250000pt;}
.he{height:40.763021pt;}
.hc{height:42.117188pt;}
.h4{height:43.031250pt;}
.h6{height:43.626667pt;}
.h8{height:44.468750pt;}
.h5{height:46.796875pt;}
.h2{height:47.812500pt;}
.hd{height:51.476562pt;}
.h7{height:56.156250pt;}
.h9{height:60.835938pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x15{left:85.795333pt;}
.x12{left:86.929067pt;}
.x2c{left:88.040667pt;}
.x1b{left:123.590533pt;}
.x45{left:124.724400pt;}
.x2b{left:161.385867pt;}
.x35{left:381.043333pt;}
.x41{left:382.290133pt;}
.x23{left:384.261200pt;}
.x2f{left:394.830400pt;}
.x25{left:396.318400pt;}
.x3e{left:400.044000pt;}
.x42{left:403.090933pt;}
.x27{left:409.749467pt;}
.xd{left:423.530267pt;}
.x26{left:427.220133pt;}
.xc{left:429.930133pt;}
.x40{left:432.280400pt;}
.x28{left:437.032933pt;}
.x29{left:442.757200pt;}
.x38{left:444.702267pt;}
.x43{left:446.362400pt;}
.x3b{left:448.443067pt;}
.x36{left:450.431333pt;}
.x24{left:452.054133pt;}
.x8{left:454.173200pt;}
.x34{left:456.362400pt;}
.x32{left:459.249733pt;}
.x3a{left:461.958133pt;}
.x37{left:463.954533pt;}
.xe{left:470.569067pt;}
.xf{left:473.608933pt;}
.x3d{left:475.213333pt;}
.x3f{left:481.473067pt;}
.x3c{left:501.349333pt;}
.x30{left:566.901333pt;}
.x10{left:569.926533pt;}
.x13{left:588.824133pt;}
.x2e{left:599.055200pt;}
.x2d{left:600.166667pt;}
.x19{left:625.952800pt;}
.x1d{left:627.286133pt;}
.x1a{left:644.850400pt;}
.x39{left:657.307733pt;}
.x20{left:703.634133pt;}
.x1{left:753.495600pt;}
.x16{left:765.170800pt;}
.x1e{left:798.998800pt;}
.x18{left:812.254000pt;}
.x33{left:814.017067pt;}
.x3{left:818.500533pt;}
.x22{left:820.284800pt;}
.x1c{left:836.045733pt;}
.x17{left:838.796933pt;}
.x1f{left:840.138133pt;}
.x2{left:889.078667pt;}
.x4{left:893.805600pt;}
.x5{left:897.771333pt;}
.x21{left:930.716000pt;}
.x44{left:935.505733pt;}
.x2a{left:938.314000pt;}
.x11{left:956.643333pt;}
.x6{left:970.818133pt;}
.x31{left:983.043067pt;}
.x14{left:990.441467pt;}
.x7{left:991.721200pt;}
.x9{left:1013.473200pt;}
.xb{left:1023.735467pt;}
.xa{left:1030.135467pt;}
}




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