
    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_8f49bf4cac74e497a2f807d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_9539b84c6c98845c536b7abb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_a0343d6686f3cd8c2540ecf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064000;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_c8c1d8fc3f45c93dd8ea07ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_2e833f3bc1fa014e1ca4b29e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_12c1f482a46fb0d0bfebf64c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_419d9e87167870d11e3f2da2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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_bb3e30bf326d1d8ff2248d0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.032000;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_b7c4342a787efde7b893c098.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-21.780000px;}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800000px;}
.v1{vertical-align:21.792000px;}
.ls20{letter-spacing:-3.240000px;}
.ls38{letter-spacing:-2.760000px;}
.ls3{letter-spacing:-2.046000px;}
.ls40{letter-spacing:-1.320000px;}
.ls30{letter-spacing:-0.792000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.486000px;}
.lsa{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.462000px;}
.ls1d{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.396000px;}
.ls23{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.264000px;}
.ls35{letter-spacing:-0.240000px;}
.ls2a{letter-spacing:-0.198000px;}
.lsb{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.132000px;}
.ls8{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.066000px;}
.ls3e{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000120px;}
.ls29{letter-spacing:0.066000px;}
.ls3a{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.132000px;}
.ls11{letter-spacing:0.162000px;}
.ls3f{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.264000px;}
.ls34{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.481920px;}
.ls2e{letter-spacing:0.486000px;}
.ls16{letter-spacing:0.528000px;}
.ls7{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.ls32{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.780000px;}
.ls39{letter-spacing:0.840000px;}
.ls3d{letter-spacing:0.900000px;}
.ls31{letter-spacing:0.924000px;}
.ls1e{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.056000px;}
.ls13{letter-spacing:1.188000px;}
.ls41{letter-spacing:1.320000px;}
.ls36{letter-spacing:1.380000px;}
.ls2d{letter-spacing:1.386000px;}
.ls2c{letter-spacing:1.423920px;}
.ls18{letter-spacing:1.620000px;}
.ls14{letter-spacing:1.728000px;}
.ls24{letter-spacing:1.848000px;}
.ls3c{letter-spacing:1.860000px;}
.ls4{letter-spacing:1.998120px;}
.ls37{letter-spacing:2.040000px;}
.ls28{letter-spacing:2.112000px;}
.lse{letter-spacing:2.244000px;}
.ls15{letter-spacing:2.442000px;}
.lsd{letter-spacing:3.247320px;}
.ls33{letter-spacing:5.874000px;}
.ls2f{letter-spacing:5.934600px;}
.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;}
}
.ws9a{word-spacing:-13.926000px;}
.ws3c{word-spacing:-13.728000px;}
.wscc{word-spacing:-13.440000px;}
.wsce{word-spacing:-13.260000px;}
.ws62{word-spacing:-13.002000px;}
.ws8c{word-spacing:-12.804000px;}
.wscb{word-spacing:-12.780000px;}
.wsd1{word-spacing:-12.720000px;}
.ws78{word-spacing:-12.408000px;}
.wscf{word-spacing:-12.300000px;}
.wsac{word-spacing:-12.144000px;}
.ws3d{word-spacing:-11.556000px;}
.wsca{word-spacing:-11.160000px;}
.ws9c{word-spacing:-10.746000px;}
.wscd{word-spacing:-10.740000px;}
.ws0{word-spacing:-10.494000px;}
.wsd0{word-spacing:-8.640000px;}
.ws9b{word-spacing:-7.273200px;}
.ws63{word-spacing:-6.612000px;}
.ws1{word-spacing:-5.950800px;}
.ws68{word-spacing:-3.762000px;}
.ws41{word-spacing:-3.168000px;}
.ws34{word-spacing:-3.102000px;}
.wsa1{word-spacing:-3.036000px;}
.ws94{word-spacing:-2.970000px;}
.wsc6{word-spacing:-2.904000px;}
.ws28{word-spacing:-2.880000px;}
.ws25{word-spacing:-2.820000px;}
.wsa2{word-spacing:-2.772000px;}
.ws30{word-spacing:-2.760000px;}
.ws7b{word-spacing:-2.442000px;}
.ws32{word-spacing:-2.400000px;}
.ws39{word-spacing:-2.376000px;}
.ws20{word-spacing:-2.310000px;}
.wsa0{word-spacing:-2.178000px;}
.ws86{word-spacing:-2.112000px;}
.wsbe{word-spacing:-2.106000px;}
.ws91{word-spacing:-2.046000px;}
.ws5e{word-spacing:-1.890000px;}
.ws7c{word-spacing:-1.848000px;}
.ws6e{word-spacing:-1.800000px;}
.wsc1{word-spacing:-1.782000px;}
.ws61{word-spacing:-1.728000px;}
.ws8e{word-spacing:-1.716000px;}
.ws2d{word-spacing:-1.680000px;}
.ws55{word-spacing:-1.674000px;}
.ws40{word-spacing:-1.650000px;}
.ws9d{word-spacing:-1.584000px;}
.ws73{word-spacing:-1.566000px;}
.ws89{word-spacing:-1.518000px;}
.ws19{word-spacing:-1.512000px;}
.ws4d{word-spacing:-1.458000px;}
.ws9e{word-spacing:-1.452000px;}
.wsc{word-spacing:-1.404000px;}
.wsa6{word-spacing:-1.386000px;}
.ws5{word-spacing:-1.320000px;}
.ws1b{word-spacing:-1.254000px;}
.ws71{word-spacing:-1.242000px;}
.ws18{word-spacing:-1.218000px;}
.ws7d{word-spacing:-1.188000px;}
.ws22{word-spacing:-1.122000px;}
.wsc9{word-spacing:-1.056000px;}
.ws49{word-spacing:-0.972000px;}
.wsd5{word-spacing:-0.960000px;}
.ws1a{word-spacing:-0.924000px;}
.ws15{word-spacing:-0.864000px;}
.wsd6{word-spacing:-0.840000px;}
.ws3f{word-spacing:-0.726000px;}
.wsdc{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.600000px;}
.wsa4{word-spacing:-0.594000px;}
.ws67{word-spacing:-0.528000px;}
.ws80{word-spacing:-0.462000px;}
.ws4c{word-spacing:-0.432000px;}
.ws7e{word-spacing:-0.396000px;}
.ws33{word-spacing:-0.330000px;}
.ws3a{word-spacing:-0.270000px;}
.ws24{word-spacing:-0.264000px;}
.wsb4{word-spacing:-0.216000px;}
.ws90{word-spacing:-0.198000px;}
.ws16{word-spacing:-0.168000px;}
.ws3b{word-spacing:-0.162000px;}
.ws8a{word-spacing:-0.132000px;}
.ws8d{word-spacing:-0.066000px;}
.ws54{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:0.054000px;}
.wsdb{word-spacing:0.060000px;}
.ws88{word-spacing:0.066000px;}
.ws87{word-spacing:0.132000px;}
.ws97{word-spacing:0.198000px;}
.ws75{word-spacing:0.216000px;}
.ws6f{word-spacing:0.240000px;}
.ws4{word-spacing:0.264000px;}
.ws5d{word-spacing:0.270000px;}
.ws70{word-spacing:0.300000px;}
.wsc0{word-spacing:0.396000px;}
.ws2f{word-spacing:0.420000px;}
.ws81{word-spacing:0.462000px;}
.ws43{word-spacing:0.486000px;}
.ws96{word-spacing:0.528000px;}
.ws3{word-spacing:0.576000px;}
.ws46{word-spacing:0.594000px;}
.wsbc{word-spacing:0.648000px;}
.ws7f{word-spacing:0.660000px;}
.ws47{word-spacing:0.702000px;}
.ws8{word-spacing:0.726000px;}
.ws14{word-spacing:0.756000px;}
.ws2a{word-spacing:0.780000px;}
.wsae{word-spacing:0.792000px;}
.wsb3{word-spacing:0.864000px;}
.ws98{word-spacing:0.924000px;}
.ws1c{word-spacing:0.990000px;}
.wsbf{word-spacing:1.026000px;}
.ws79{word-spacing:1.056000px;}
.wsc5{word-spacing:1.122000px;}
.ws74{word-spacing:1.188000px;}
.ws1e{word-spacing:1.254000px;}
.ws8f{word-spacing:1.320000px;}
.ws9f{word-spacing:1.386000px;}
.ws5b{word-spacing:1.404000px;}
.ws84{word-spacing:1.452000px;}
.ws53{word-spacing:1.458000px;}
.ws2b{word-spacing:1.500000px;}
.ws52{word-spacing:1.512000px;}
.ws17{word-spacing:1.554000px;}
.ws29{word-spacing:1.560000px;}
.ws1f{word-spacing:1.584000px;}
.ws56{word-spacing:1.620000px;}
.ws66{word-spacing:1.650000px;}
.ws3e{word-spacing:1.716000px;}
.ws2c{word-spacing:1.740000px;}
.ws6{word-spacing:1.782000px;}
.wsb7{word-spacing:1.836000px;}
.ws7a{word-spacing:1.848000px;}
.ws5f{word-spacing:1.890000px;}
.ws38{word-spacing:1.914000px;}
.wsc4{word-spacing:1.980000px;}
.wsbd{word-spacing:1.998000px;}
.ws69{word-spacing:2.040000px;}
.ws21{word-spacing:2.046000px;}
.ws72{word-spacing:2.052000px;}
.wsda{word-spacing:2.100000px;}
.wsbb{word-spacing:2.106000px;}
.wsb5{word-spacing:2.160000px;}
.ws57{word-spacing:2.214000px;}
.ws85{word-spacing:2.244000px;}
.wsd2{word-spacing:2.310000px;}
.ws6b{word-spacing:2.340000px;}
.ws5a{word-spacing:2.376000px;}
.wsdd{word-spacing:2.400000px;}
.ws10{word-spacing:2.430000px;}
.wsde{word-spacing:2.460000px;}
.ws4b{word-spacing:2.484000px;}
.ws8b{word-spacing:2.508000px;}
.ws4e{word-spacing:2.538000px;}
.ws95{word-spacing:2.574000px;}
.wsd3{word-spacing:2.580000px;}
.ws60{word-spacing:2.592000px;}
.wsa5{word-spacing:2.640000px;}
.ws4a{word-spacing:2.646000px;}
.wsb6{word-spacing:2.700000px;}
.wsd4{word-spacing:2.760000px;}
.wsa3{word-spacing:2.772000px;}
.wsab{word-spacing:2.862000px;}
.ws35{word-spacing:2.904000px;}
.wsb{word-spacing:2.916000px;}
.wsc7{word-spacing:2.970000px;}
.wsb1{word-spacing:3.036000px;}
.wsb2{word-spacing:3.078000px;}
.wsaf{word-spacing:3.102000px;}
.ws42{word-spacing:3.132000px;}
.ws99{word-spacing:3.186000px;}
.ws92{word-spacing:3.234000px;}
.ws77{word-spacing:3.240000px;}
.ws2e{word-spacing:3.300000px;}
.wsb8{word-spacing:3.348000px;}
.ws82{word-spacing:3.366000px;}
.ws51{word-spacing:3.402000px;}
.ws7{word-spacing:3.432000px;}
.ws6a{word-spacing:3.480000px;}
.wsc3{word-spacing:3.498000px;}
.ws9{word-spacing:3.510000px;}
.wsba{word-spacing:3.564000px;}
.ws45{word-spacing:3.618000px;}
.ws12{word-spacing:3.672000px;}
.ws93{word-spacing:3.696000px;}
.ws6c{word-spacing:3.720000px;}
.ws36{word-spacing:3.762000px;}
.wsb0{word-spacing:3.828000px;}
.wsaa{word-spacing:3.888000px;}
.ws44{word-spacing:3.942000px;}
.ws1d{word-spacing:3.960000px;}
.wsc8{word-spacing:4.026000px;}
.wsf{word-spacing:4.050000px;}
.wsa{word-spacing:4.104000px;}
.wsa8{word-spacing:4.158000px;}
.ws37{word-spacing:4.224000px;}
.wsd{word-spacing:4.266000px;}
.wsd8{word-spacing:4.320000px;}
.ws76{word-spacing:4.374000px;}
.wsd9{word-spacing:4.380000px;}
.ws59{word-spacing:4.428000px;}
.ws50{word-spacing:4.482000px;}
.ws83{word-spacing:4.488000px;}
.ws23{word-spacing:4.554000px;}
.ws58{word-spacing:4.752000px;}
.wsa7{word-spacing:4.860000px;}
.ws27{word-spacing:5.220000px;}
.wsc2{word-spacing:5.280000px;}
.ws4f{word-spacing:5.292000px;}
.ws11{word-spacing:5.346000px;}
.ws6d{word-spacing:5.640000px;}
.wsad{word-spacing:5.676000px;}
.ws26{word-spacing:5.700000px;}
.wsd7{word-spacing:5.760000px;}
.ws5c{word-spacing:5.778000px;}
.wse{word-spacing:5.832000px;}
.wsb9{word-spacing:5.886000px;}
.ws64{word-spacing:6.270000px;}
.ws65{word-spacing:6.336000px;}
.wsa9{word-spacing:6.750000px;}
.ws48{word-spacing:43.362000px;}
._c{margin-left:-43.852440px;}
._2{margin-left:-13.177080px;}
._9{margin-left:-8.292480px;}
._e{margin-left:-7.037280px;}
._b{margin-left:-5.995080px;}
._4{margin-left:-4.823280px;}
._1{margin-left:-3.054240px;}
._6{margin-left:-2.047080px;}
._0{margin-left:-1.005480px;}
._3{width:1.678320px;}
._5{width:3.101760px;}
._7{width:4.217640px;}
._f{width:5.741040px;}
._10{width:38.015880px;}
._8{width:39.365880px;}
._a{width:43.145880px;}
._d{width:46.596000px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.320000px;}
.fs9{font-size:34.800000px;}
.fs4{font-size:38.280000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y23{bottom:70.883850px;}
.y22{bottom:99.909750px;}
.y4e{bottom:99.922950px;}
.yee{bottom:99.927450px;}
.y9c{bottom:99.933450px;}
.y116{bottom:99.952950px;}
.y7a{bottom:99.963450px;}
.yc7{bottom:100.728150px;}
.y131{bottom:102.416400px;}
.y12c{bottom:109.659000px;}
.y21{bottom:111.911250px;}
.yed{bottom:114.925950px;}
.y9b{bottom:114.931950px;}
.y115{bottom:114.951450px;}
.y79{bottom:114.961950px;}
.yc6{bottom:118.729650px;}
.y4d{bottom:119.376450px;}
.y130{bottom:120.417900px;}
.y20{bottom:123.912750px;}
.y12b{bottom:127.660500px;}
.yec{bottom:129.924450px;}
.y9a{bottom:129.930450px;}
.y114{bottom:129.949950px;}
.y78{bottom:129.960450px;}
.y1f{bottom:135.914250px;}
.yc5{bottom:136.731150px;}
.y12f{bottom:138.419400px;}
.yeb{bottom:144.922950px;}
.y99{bottom:144.928950px;}
.y113{bottom:144.948450px;}
.y77{bottom:144.958950px;}
.y12a{bottom:145.662000px;}
.y1e{bottom:147.915750px;}
.yc4{bottom:154.732650px;}
.y12e{bottom:156.420900px;}
.y98{bottom:159.927450px;}
.y112{bottom:159.946950px;}
.y76{bottom:159.957450px;}
.y129{bottom:163.663500px;}
.y1d{bottom:164.169750px;}
.yea{bottom:164.376450px;}
.yc3{bottom:172.734150px;}
.y12d{bottom:174.422400px;}
.y4c{bottom:174.469050px;}
.ye3{bottom:174.480900px;}
.y97{bottom:174.925950px;}
.y111{bottom:174.945450px;}
.y75{bottom:174.955950px;}
.y1c{bottom:176.171250px;}
.ye9{bottom:177.053550px;}
.y128{bottom:181.665000px;}
.y96{bottom:189.924450px;}
.y110{bottom:189.943950px;}
.y74{bottom:189.954450px;}
.ye8{bottom:192.052050px;}
.ye2{bottom:192.423900px;}
.y1b{bottom:192.425250px;}
.y4b{bottom:192.470550px;}
.yc2{bottom:199.238100px;}
.y127{bottom:199.666500px;}
.y95{bottom:204.922950px;}
.y10f{bottom:204.942450px;}
.y73{bottom:204.952950px;}
.ye7{bottom:207.050550px;}
.ye1{bottom:210.425400px;}
.y4a{bottom:210.472050px;}
.y126{bottom:217.668000px;}
.y10e{bottom:219.940950px;}
.y72{bottom:219.951450px;}
.ye6{bottom:222.049050px;}
.y94{bottom:224.376450px;}
.ye0{bottom:228.426900px;}
.y49{bottom:228.473550px;}
.y10d{bottom:234.939450px;}
.y71{bottom:234.949950px;}
.y125{bottom:235.669500px;}
.yc1{bottom:238.448550px;}
.y1a{bottom:238.829850px;}
.ye5{bottom:241.502550px;}
.ydf{bottom:246.428400px;}
.y48{bottom:246.475050px;}
.y10c{bottom:249.937950px;}
.y70{bottom:249.948450px;}
.y124{bottom:253.671000px;}
.y19{bottom:253.828350px;}
.yc0{bottom:256.450050px;}
.yde{bottom:264.429900px;}
.y47{bottom:264.476550px;}
.y10b{bottom:264.936450px;}
.y6f{bottom:264.946950px;}
.y18{bottom:268.826850px;}
.y123{bottom:271.672500px;}
.ybf{bottom:274.451550px;}
.y93{bottom:274.476000px;}
.y10a{bottom:279.934950px;}
.y6e{bottom:279.945450px;}
.ydd{bottom:282.431400px;}
.y46{bottom:282.478050px;}
.y17{bottom:283.825350px;}
.y122{bottom:289.674000px;}
.ybe{bottom:292.453050px;}
.y92{bottom:292.476000px;}
.y109{bottom:294.933450px;}
.y6d{bottom:294.943950px;}
.y16{bottom:298.823850px;}
.ydc{bottom:300.432900px;}
.y45{bottom:300.479550px;}
.y121{bottom:307.675500px;}
.y108{bottom:309.931950px;}
.y6c{bottom:309.942450px;}
.ybd{bottom:310.454550px;}
.y91{bottom:310.476000px;}
.y15{bottom:313.822350px;}
.ydb{bottom:318.434400px;}
.y44{bottom:318.481050px;}
.y107{bottom:324.930450px;}
.y6b{bottom:324.940950px;}
.y120{bottom:325.677000px;}
.ybc{bottom:328.456050px;}
.y90{bottom:328.476000px;}
.y14{bottom:328.820850px;}
.yda{bottom:336.435900px;}
.y106{bottom:339.928950px;}
.y6a{bottom:339.939450px;}
.y11f{bottom:343.678500px;}
.y13{bottom:343.819350px;}
.y43{bottom:345.482400px;}
.ybb{bottom:346.457550px;}
.y8f{bottom:346.476000px;}
.yd9{bottom:354.437400px;}
.y105{bottom:354.927450px;}
.y69{bottom:354.937950px;}
.y12{bottom:358.817850px;}
.y11e{bottom:361.680000px;}
.y42{bottom:363.482400px;}
.yba{bottom:364.459050px;}
.y8e{bottom:364.476000px;}
.y104{bottom:369.925950px;}
.y68{bottom:369.936450px;}
.y146{bottom:370.476000px;}
.yd8{bottom:372.438900px;}
.y11{bottom:373.816350px;}
.y11d{bottom:379.681500px;}
.y41{bottom:381.482400px;}
.yb9{bottom:382.460550px;}
.y8d{bottom:382.476000px;}
.y103{bottom:384.924450px;}
.y67{bottom:384.934950px;}
.y145{bottom:386.976000px;}
.y10{bottom:388.814850px;}
.yd7{bottom:390.440400px;}
.y11c{bottom:397.683000px;}
.y40{bottom:399.482400px;}
.y102{bottom:399.922950px;}
.y66{bottom:399.933450px;}
.yb8{bottom:400.462050px;}
.y8c{bottom:400.476000px;}
.y144{bottom:403.476000px;}
.yf{bottom:403.813350px;}
.yd6{bottom:408.441900px;}
.y101{bottom:414.921450px;}
.y65{bottom:414.931950px;}
.y11b{bottom:415.684500px;}
.y3f{bottom:417.482400px;}
.yb7{bottom:418.463550px;}
.y8b{bottom:418.476000px;}
.ye{bottom:418.811850px;}
.y143{bottom:419.976000px;}
.yd5{bottom:426.443400px;}
.y64{bottom:429.930450px;}
.y11a{bottom:433.686000px;}
.y3e{bottom:435.482400px;}
.yb6{bottom:436.465050px;}
.y8a{bottom:436.476000px;}
.yd{bottom:438.265350px;}
.yd4{bottom:444.444900px;}
.y63{bottom:444.928950px;}
.y119{bottom:451.687500px;}
.y142{bottom:452.976000px;}
.y3d{bottom:453.482400px;}
.yb5{bottom:454.466550px;}
.y89{bottom:454.476000px;}
.y62{bottom:459.927450px;}
.yd3{bottom:462.446400px;}
.y141{bottom:469.476000px;}
.y118{bottom:469.689000px;}
.y3c{bottom:471.482400px;}
.yb4{bottom:472.468050px;}
.y88{bottom:472.476000px;}
.y61{bottom:474.925950px;}
.yd2{bottom:480.447900px;}
.y140{bottom:485.976000px;}
.y3b{bottom:489.482400px;}
.y60{bottom:489.924450px;}
.yb3{bottom:490.469550px;}
.y87{bottom:490.476000px;}
.yc{bottom:497.804400px;}
.yd1{bottom:498.449400px;}
.y100{bottom:499.451850px;}
.y13f{bottom:502.476000px;}
.y5f{bottom:504.922950px;}
.y117{bottom:507.189000px;}
.y3a{bottom:507.482400px;}
.yb2{bottom:508.471050px;}
.y86{bottom:508.476000px;}
.yb{bottom:515.805900px;}
.yd0{bottom:516.450900px;}
.yff{bottom:517.453350px;}
.y13e{bottom:518.976000px;}
.y5e{bottom:524.376450px;}
.y39{bottom:525.482400px;}
.yb1{bottom:526.472550px;}
.y85{bottom:526.476000px;}
.ya{bottom:533.807400px;}
.ycf{bottom:534.452400px;}
.yfe{bottom:535.454850px;}
.y13d{bottom:535.476000px;}
.y5d{bottom:537.056550px;}
.y38{bottom:543.482400px;}
.yb0{bottom:544.474050px;}
.y84{bottom:544.476000px;}
.y9{bottom:551.805900px;}
.y13c{bottom:551.976000px;}
.y5c{bottom:552.055050px;}
.yce{bottom:552.453900px;}
.yfd{bottom:553.456350px;}
.y37{bottom:561.482400px;}
.yaf{bottom:562.475550px;}
.y83{bottom:562.476000px;}
.y5b{bottom:567.053550px;}
.y13b{bottom:568.476000px;}
.y8{bottom:569.807400px;}
.ycd{bottom:570.455400px;}
.yfc{bottom:571.457850px;}
.y36{bottom:579.482400px;}
.y82{bottom:580.476000px;}
.yae{bottom:580.477050px;}
.y5a{bottom:582.052050px;}
.y13a{bottom:584.976000px;}
.y7{bottom:587.808900px;}
.ye4{bottom:588.456900px;}
.yfb{bottom:589.459350px;}
.y59{bottom:597.050550px;}
.y35{bottom:597.482400px;}
.y81{bottom:598.476000px;}
.yad{bottom:598.478550px;}
.y139{bottom:601.476000px;}
.ycc{bottom:606.458400px;}
.yfa{bottom:607.460850px;}
.y58{bottom:612.049050px;}
.y6{bottom:615.303600px;}
.y34{bottom:615.482400px;}
.y80{bottom:616.476000px;}
.yac{bottom:616.480050px;}
.y138{bottom:617.976000px;}
.ycb{bottom:624.459900px;}
.yf9{bottom:625.462350px;}
.y57{bottom:627.047550px;}
.y33{bottom:633.482400px;}
.y7f{bottom:634.476000px;}
.yab{bottom:634.481550px;}
.yca{bottom:642.461400px;}
.yf8{bottom:643.463850px;}
.y137{bottom:650.976000px;}
.y32{bottom:651.482400px;}
.y7e{bottom:652.476000px;}
.yaa{bottom:652.483050px;}
.yc9{bottom:660.462900px;}
.yf7{bottom:661.465350px;}
.y136{bottom:667.476000px;}
.y31{bottom:669.482400px;}
.y7d{bottom:670.476000px;}
.ya9{bottom:670.484550px;}
.yc8{bottom:678.464400px;}
.yf6{bottom:679.466850px;}
.y135{bottom:683.976000px;}
.y7c{bottom:688.476000px;}
.ya8{bottom:688.486050px;}
.y30{bottom:696.465900px;}
.y56{bottom:697.466850px;}
.yf5{bottom:697.468350px;}
.y134{bottom:700.476000px;}
.ya7{bottom:706.487550px;}
.y2f{bottom:714.467400px;}
.y55{bottom:715.468350px;}
.yf4{bottom:715.469850px;}
.y133{bottom:716.976000px;}
.ya6{bottom:724.489050px;}
.y7b{bottom:724.970550px;}
.y2e{bottom:732.468900px;}
.y54{bottom:733.469850px;}
.yf3{bottom:733.471350px;}
.ya5{bottom:742.490550px;}
.y132{bottom:742.970550px;}
.y2d{bottom:750.470400px;}
.y53{bottom:751.471350px;}
.yf2{bottom:751.472850px;}
.ya4{bottom:760.492050px;}
.y2c{bottom:768.471900px;}
.y52{bottom:769.472850px;}
.yf1{bottom:769.474350px;}
.ya3{bottom:778.493550px;}
.y5{bottom:784.815450px;}
.y2b{bottom:786.473400px;}
.y51{bottom:787.474350px;}
.yf0{bottom:787.475850px;}
.ya2{bottom:796.495050px;}
.y2a{bottom:804.474900px;}
.y50{bottom:805.475850px;}
.y4{bottom:814.319250px;}
.ya1{bottom:814.496550px;}
.yef{bottom:814.970550px;}
.y29{bottom:822.476400px;}
.ya0{bottom:832.498050px;}
.y4f{bottom:832.970550px;}
.y3{bottom:839.531850px;}
.y28{bottom:840.477900px;}
.y27{bottom:858.479400px;}
.y9f{bottom:859.499400px;}
.y2{bottom:864.725550px;}
.y26{bottom:876.480900px;}
.y9e{bottom:877.499400px;}
.y1{bottom:889.919250px;}
.y25{bottom:894.482400px;}
.y9d{bottom:895.499400px;}
.y24{bottom:934.435800px;}
.h7{height:25.164000px;}
.h9{height:30.618164px;}
.hb{height:33.156738px;}
.h4{height:39.788086px;}
.hf{height:40.500000px;}
.h8{height:42.984000px;}
.ha{height:44.208984px;}
.hc{height:47.760000px;}
.he{height:50.424000px;}
.h5{height:52.536000px;}
.h6{height:52.548000px;}
.hd{height:52.584000px;}
.h11{height:52.734000px;}
.h10{height:52.770000px;}
.h2{height:55.703320px;}
.h3{height:57.312000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.x5{left:102.050400px;}
.x1{left:106.299150px;}
.x3{left:123.310200px;}
.x2{left:127.559100px;}
.x7{left:393.507900px;}
.x6{left:570.248700px;}
@media print{
.v4{vertical-align:-19.360000pt;}
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600000pt;}
.v1{vertical-align:19.370667pt;}
.ls20{letter-spacing:-2.880000pt;}
.ls38{letter-spacing:-2.453333pt;}
.ls3{letter-spacing:-1.818667pt;}
.ls40{letter-spacing:-1.173333pt;}
.ls30{letter-spacing:-0.704000pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.432000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.410667pt;}
.ls1d{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.352000pt;}
.ls23{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.234667pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls2a{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls8{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.058667pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000107pt;}
.ls29{letter-spacing:0.058667pt;}
.ls3a{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.117333pt;}
.ls11{letter-spacing:0.144000pt;}
.ls3f{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.234667pt;}
.ls34{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.428373pt;}
.ls2e{letter-spacing:0.432000pt;}
.ls16{letter-spacing:0.469333pt;}
.ls7{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.ls32{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls39{letter-spacing:0.746667pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls31{letter-spacing:0.821333pt;}
.ls1e{letter-spacing:0.853333pt;}
.lsf{letter-spacing:0.938667pt;}
.ls13{letter-spacing:1.056000pt;}
.ls41{letter-spacing:1.173333pt;}
.ls36{letter-spacing:1.226667pt;}
.ls2d{letter-spacing:1.232000pt;}
.ls2c{letter-spacing:1.265707pt;}
.ls18{letter-spacing:1.440000pt;}
.ls14{letter-spacing:1.536000pt;}
.ls24{letter-spacing:1.642667pt;}
.ls3c{letter-spacing:1.653333pt;}
.ls4{letter-spacing:1.776107pt;}
.ls37{letter-spacing:1.813333pt;}
.ls28{letter-spacing:1.877333pt;}
.lse{letter-spacing:1.994667pt;}
.ls15{letter-spacing:2.170667pt;}
.lsd{letter-spacing:2.886507pt;}
.ls33{letter-spacing:5.221333pt;}
.ls2f{letter-spacing:5.275200pt;}
.ws9a{word-spacing:-12.378667pt;}
.ws3c{word-spacing:-12.202667pt;}
.wscc{word-spacing:-11.946667pt;}
.wsce{word-spacing:-11.786667pt;}
.ws62{word-spacing:-11.557333pt;}
.ws8c{word-spacing:-11.381333pt;}
.wscb{word-spacing:-11.360000pt;}
.wsd1{word-spacing:-11.306667pt;}
.ws78{word-spacing:-11.029333pt;}
.wscf{word-spacing:-10.933333pt;}
.wsac{word-spacing:-10.794667pt;}
.ws3d{word-spacing:-10.272000pt;}
.wsca{word-spacing:-9.920000pt;}
.ws9c{word-spacing:-9.552000pt;}
.wscd{word-spacing:-9.546667pt;}
.ws0{word-spacing:-9.328000pt;}
.wsd0{word-spacing:-7.680000pt;}
.ws9b{word-spacing:-6.465067pt;}
.ws63{word-spacing:-5.877333pt;}
.ws1{word-spacing:-5.289600pt;}
.ws68{word-spacing:-3.344000pt;}
.ws41{word-spacing:-2.816000pt;}
.ws34{word-spacing:-2.757333pt;}
.wsa1{word-spacing:-2.698667pt;}
.ws94{word-spacing:-2.640000pt;}
.wsc6{word-spacing:-2.581333pt;}
.ws28{word-spacing:-2.560000pt;}
.ws25{word-spacing:-2.506667pt;}
.wsa2{word-spacing:-2.464000pt;}
.ws30{word-spacing:-2.453333pt;}
.ws7b{word-spacing:-2.170667pt;}
.ws32{word-spacing:-2.133333pt;}
.ws39{word-spacing:-2.112000pt;}
.ws20{word-spacing:-2.053333pt;}
.wsa0{word-spacing:-1.936000pt;}
.ws86{word-spacing:-1.877333pt;}
.wsbe{word-spacing:-1.872000pt;}
.ws91{word-spacing:-1.818667pt;}
.ws5e{word-spacing:-1.680000pt;}
.ws7c{word-spacing:-1.642667pt;}
.ws6e{word-spacing:-1.600000pt;}
.wsc1{word-spacing:-1.584000pt;}
.ws61{word-spacing:-1.536000pt;}
.ws8e{word-spacing:-1.525333pt;}
.ws2d{word-spacing:-1.493333pt;}
.ws55{word-spacing:-1.488000pt;}
.ws40{word-spacing:-1.466667pt;}
.ws9d{word-spacing:-1.408000pt;}
.ws73{word-spacing:-1.392000pt;}
.ws89{word-spacing:-1.349333pt;}
.ws19{word-spacing:-1.344000pt;}
.ws4d{word-spacing:-1.296000pt;}
.ws9e{word-spacing:-1.290667pt;}
.wsc{word-spacing:-1.248000pt;}
.wsa6{word-spacing:-1.232000pt;}
.ws5{word-spacing:-1.173333pt;}
.ws1b{word-spacing:-1.114667pt;}
.ws71{word-spacing:-1.104000pt;}
.ws18{word-spacing:-1.082667pt;}
.ws7d{word-spacing:-1.056000pt;}
.ws22{word-spacing:-0.997333pt;}
.wsc9{word-spacing:-0.938667pt;}
.ws49{word-spacing:-0.864000pt;}
.wsd5{word-spacing:-0.853333pt;}
.ws1a{word-spacing:-0.821333pt;}
.ws15{word-spacing:-0.768000pt;}
.wsd6{word-spacing:-0.746667pt;}
.ws3f{word-spacing:-0.645333pt;}
.wsdc{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.533333pt;}
.wsa4{word-spacing:-0.528000pt;}
.ws67{word-spacing:-0.469333pt;}
.ws80{word-spacing:-0.410667pt;}
.ws4c{word-spacing:-0.384000pt;}
.ws7e{word-spacing:-0.352000pt;}
.ws33{word-spacing:-0.293333pt;}
.ws3a{word-spacing:-0.240000pt;}
.ws24{word-spacing:-0.234667pt;}
.wsb4{word-spacing:-0.192000pt;}
.ws90{word-spacing:-0.176000pt;}
.ws16{word-spacing:-0.149333pt;}
.ws3b{word-spacing:-0.144000pt;}
.ws8a{word-spacing:-0.117333pt;}
.ws8d{word-spacing:-0.058667pt;}
.ws54{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:0.048000pt;}
.wsdb{word-spacing:0.053333pt;}
.ws88{word-spacing:0.058667pt;}
.ws87{word-spacing:0.117333pt;}
.ws97{word-spacing:0.176000pt;}
.ws75{word-spacing:0.192000pt;}
.ws6f{word-spacing:0.213333pt;}
.ws4{word-spacing:0.234667pt;}
.ws5d{word-spacing:0.240000pt;}
.ws70{word-spacing:0.266667pt;}
.wsc0{word-spacing:0.352000pt;}
.ws2f{word-spacing:0.373333pt;}
.ws81{word-spacing:0.410667pt;}
.ws43{word-spacing:0.432000pt;}
.ws96{word-spacing:0.469333pt;}
.ws3{word-spacing:0.512000pt;}
.ws46{word-spacing:0.528000pt;}
.wsbc{word-spacing:0.576000pt;}
.ws7f{word-spacing:0.586667pt;}
.ws47{word-spacing:0.624000pt;}
.ws8{word-spacing:0.645333pt;}
.ws14{word-spacing:0.672000pt;}
.ws2a{word-spacing:0.693333pt;}
.wsae{word-spacing:0.704000pt;}
.wsb3{word-spacing:0.768000pt;}
.ws98{word-spacing:0.821333pt;}
.ws1c{word-spacing:0.880000pt;}
.wsbf{word-spacing:0.912000pt;}
.ws79{word-spacing:0.938667pt;}
.wsc5{word-spacing:0.997333pt;}
.ws74{word-spacing:1.056000pt;}
.ws1e{word-spacing:1.114667pt;}
.ws8f{word-spacing:1.173333pt;}
.ws9f{word-spacing:1.232000pt;}
.ws5b{word-spacing:1.248000pt;}
.ws84{word-spacing:1.290667pt;}
.ws53{word-spacing:1.296000pt;}
.ws2b{word-spacing:1.333333pt;}
.ws52{word-spacing:1.344000pt;}
.ws17{word-spacing:1.381333pt;}
.ws29{word-spacing:1.386667pt;}
.ws1f{word-spacing:1.408000pt;}
.ws56{word-spacing:1.440000pt;}
.ws66{word-spacing:1.466667pt;}
.ws3e{word-spacing:1.525333pt;}
.ws2c{word-spacing:1.546667pt;}
.ws6{word-spacing:1.584000pt;}
.wsb7{word-spacing:1.632000pt;}
.ws7a{word-spacing:1.642667pt;}
.ws5f{word-spacing:1.680000pt;}
.ws38{word-spacing:1.701333pt;}
.wsc4{word-spacing:1.760000pt;}
.wsbd{word-spacing:1.776000pt;}
.ws69{word-spacing:1.813333pt;}
.ws21{word-spacing:1.818667pt;}
.ws72{word-spacing:1.824000pt;}
.wsda{word-spacing:1.866667pt;}
.wsbb{word-spacing:1.872000pt;}
.wsb5{word-spacing:1.920000pt;}
.ws57{word-spacing:1.968000pt;}
.ws85{word-spacing:1.994667pt;}
.wsd2{word-spacing:2.053333pt;}
.ws6b{word-spacing:2.080000pt;}
.ws5a{word-spacing:2.112000pt;}
.wsdd{word-spacing:2.133333pt;}
.ws10{word-spacing:2.160000pt;}
.wsde{word-spacing:2.186667pt;}
.ws4b{word-spacing:2.208000pt;}
.ws8b{word-spacing:2.229333pt;}
.ws4e{word-spacing:2.256000pt;}
.ws95{word-spacing:2.288000pt;}
.wsd3{word-spacing:2.293333pt;}
.ws60{word-spacing:2.304000pt;}
.wsa5{word-spacing:2.346667pt;}
.ws4a{word-spacing:2.352000pt;}
.wsb6{word-spacing:2.400000pt;}
.wsd4{word-spacing:2.453333pt;}
.wsa3{word-spacing:2.464000pt;}
.wsab{word-spacing:2.544000pt;}
.ws35{word-spacing:2.581333pt;}
.wsb{word-spacing:2.592000pt;}
.wsc7{word-spacing:2.640000pt;}
.wsb1{word-spacing:2.698667pt;}
.wsb2{word-spacing:2.736000pt;}
.wsaf{word-spacing:2.757333pt;}
.ws42{word-spacing:2.784000pt;}
.ws99{word-spacing:2.832000pt;}
.ws92{word-spacing:2.874667pt;}
.ws77{word-spacing:2.880000pt;}
.ws2e{word-spacing:2.933333pt;}
.wsb8{word-spacing:2.976000pt;}
.ws82{word-spacing:2.992000pt;}
.ws51{word-spacing:3.024000pt;}
.ws7{word-spacing:3.050667pt;}
.ws6a{word-spacing:3.093333pt;}
.wsc3{word-spacing:3.109333pt;}
.ws9{word-spacing:3.120000pt;}
.wsba{word-spacing:3.168000pt;}
.ws45{word-spacing:3.216000pt;}
.ws12{word-spacing:3.264000pt;}
.ws93{word-spacing:3.285333pt;}
.ws6c{word-spacing:3.306667pt;}
.ws36{word-spacing:3.344000pt;}
.wsb0{word-spacing:3.402667pt;}
.wsaa{word-spacing:3.456000pt;}
.ws44{word-spacing:3.504000pt;}
.ws1d{word-spacing:3.520000pt;}
.wsc8{word-spacing:3.578667pt;}
.wsf{word-spacing:3.600000pt;}
.wsa{word-spacing:3.648000pt;}
.wsa8{word-spacing:3.696000pt;}
.ws37{word-spacing:3.754667pt;}
.wsd{word-spacing:3.792000pt;}
.wsd8{word-spacing:3.840000pt;}
.ws76{word-spacing:3.888000pt;}
.wsd9{word-spacing:3.893333pt;}
.ws59{word-spacing:3.936000pt;}
.ws50{word-spacing:3.984000pt;}
.ws83{word-spacing:3.989333pt;}
.ws23{word-spacing:4.048000pt;}
.ws58{word-spacing:4.224000pt;}
.wsa7{word-spacing:4.320000pt;}
.ws27{word-spacing:4.640000pt;}
.wsc2{word-spacing:4.693333pt;}
.ws4f{word-spacing:4.704000pt;}
.ws11{word-spacing:4.752000pt;}
.ws6d{word-spacing:5.013333pt;}
.wsad{word-spacing:5.045333pt;}
.ws26{word-spacing:5.066667pt;}
.wsd7{word-spacing:5.120000pt;}
.ws5c{word-spacing:5.136000pt;}
.wse{word-spacing:5.184000pt;}
.wsb9{word-spacing:5.232000pt;}
.ws64{word-spacing:5.573333pt;}
.ws65{word-spacing:5.632000pt;}
.wsa9{word-spacing:6.000000pt;}
.ws48{word-spacing:38.544000pt;}
._c{margin-left:-38.979947pt;}
._2{margin-left:-11.712960pt;}
._9{margin-left:-7.371093pt;}
._e{margin-left:-6.255360pt;}
._b{margin-left:-5.328960pt;}
._4{margin-left:-4.287360pt;}
._1{margin-left:-2.714880pt;}
._6{margin-left:-1.819627pt;}
._0{margin-left:-0.893760pt;}
._3{width:1.491840pt;}
._5{width:2.757120pt;}
._7{width:3.749013pt;}
._f{width:5.103147pt;}
._10{width:33.791893pt;}
._8{width:34.991893pt;}
._a{width:38.351893pt;}
._d{width:41.418667pt;}
.fs5{font-size:27.840000pt;}
.fs9{font-size:30.933333pt;}
.fs4{font-size:34.026667pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:63.007867pt;}
.y22{bottom:88.808667pt;}
.y4e{bottom:88.820400pt;}
.yee{bottom:88.824400pt;}
.y9c{bottom:88.829733pt;}
.y116{bottom:88.847067pt;}
.y7a{bottom:88.856400pt;}
.yc7{bottom:89.536133pt;}
.y131{bottom:91.036800pt;}
.y12c{bottom:97.474667pt;}
.y21{bottom:99.476667pt;}
.yed{bottom:102.156400pt;}
.y9b{bottom:102.161733pt;}
.y115{bottom:102.179067pt;}
.y79{bottom:102.188400pt;}
.yc6{bottom:105.537467pt;}
.y4d{bottom:106.112400pt;}
.y130{bottom:107.038133pt;}
.y20{bottom:110.144667pt;}
.y12b{bottom:113.476000pt;}
.yec{bottom:115.488400pt;}
.y9a{bottom:115.493733pt;}
.y114{bottom:115.511067pt;}
.y78{bottom:115.520400pt;}
.y1f{bottom:120.812667pt;}
.yc5{bottom:121.538800pt;}
.y12f{bottom:123.039467pt;}
.yeb{bottom:128.820400pt;}
.y99{bottom:128.825733pt;}
.y113{bottom:128.843067pt;}
.y77{bottom:128.852400pt;}
.y12a{bottom:129.477333pt;}
.y1e{bottom:131.480667pt;}
.yc4{bottom:137.540133pt;}
.y12e{bottom:139.040800pt;}
.y98{bottom:142.157733pt;}
.y112{bottom:142.175067pt;}
.y76{bottom:142.184400pt;}
.y129{bottom:145.478667pt;}
.y1d{bottom:145.928667pt;}
.yea{bottom:146.112400pt;}
.yc3{bottom:153.541467pt;}
.y12d{bottom:155.042133pt;}
.y4c{bottom:155.083600pt;}
.ye3{bottom:155.094133pt;}
.y97{bottom:155.489733pt;}
.y111{bottom:155.507067pt;}
.y75{bottom:155.516400pt;}
.y1c{bottom:156.596667pt;}
.ye9{bottom:157.380933pt;}
.y128{bottom:161.480000pt;}
.y96{bottom:168.821733pt;}
.y110{bottom:168.839067pt;}
.y74{bottom:168.848400pt;}
.ye8{bottom:170.712933pt;}
.ye2{bottom:171.043467pt;}
.y1b{bottom:171.044667pt;}
.y4b{bottom:171.084933pt;}
.yc2{bottom:177.100533pt;}
.y127{bottom:177.481333pt;}
.y95{bottom:182.153733pt;}
.y10f{bottom:182.171067pt;}
.y73{bottom:182.180400pt;}
.ye7{bottom:184.044933pt;}
.ye1{bottom:187.044800pt;}
.y4a{bottom:187.086267pt;}
.y126{bottom:193.482667pt;}
.y10e{bottom:195.503067pt;}
.y72{bottom:195.512400pt;}
.ye6{bottom:197.376933pt;}
.y94{bottom:199.445733pt;}
.ye0{bottom:203.046133pt;}
.y49{bottom:203.087600pt;}
.y10d{bottom:208.835067pt;}
.y71{bottom:208.844400pt;}
.y125{bottom:209.484000pt;}
.yc1{bottom:211.954267pt;}
.y1a{bottom:212.293200pt;}
.ye5{bottom:214.668933pt;}
.ydf{bottom:219.047467pt;}
.y48{bottom:219.088933pt;}
.y10c{bottom:222.167067pt;}
.y70{bottom:222.176400pt;}
.y124{bottom:225.485333pt;}
.y19{bottom:225.625200pt;}
.yc0{bottom:227.955600pt;}
.yde{bottom:235.048800pt;}
.y47{bottom:235.090267pt;}
.y10b{bottom:235.499067pt;}
.y6f{bottom:235.508400pt;}
.y18{bottom:238.957200pt;}
.y123{bottom:241.486667pt;}
.ybf{bottom:243.956933pt;}
.y93{bottom:243.978667pt;}
.y10a{bottom:248.831067pt;}
.y6e{bottom:248.840400pt;}
.ydd{bottom:251.050133pt;}
.y46{bottom:251.091600pt;}
.y17{bottom:252.289200pt;}
.y122{bottom:257.488000pt;}
.ybe{bottom:259.958267pt;}
.y92{bottom:259.978667pt;}
.y109{bottom:262.163067pt;}
.y6d{bottom:262.172400pt;}
.y16{bottom:265.621200pt;}
.ydc{bottom:267.051467pt;}
.y45{bottom:267.092933pt;}
.y121{bottom:273.489333pt;}
.y108{bottom:275.495067pt;}
.y6c{bottom:275.504400pt;}
.ybd{bottom:275.959600pt;}
.y91{bottom:275.978667pt;}
.y15{bottom:278.953200pt;}
.ydb{bottom:283.052800pt;}
.y44{bottom:283.094267pt;}
.y107{bottom:288.827067pt;}
.y6b{bottom:288.836400pt;}
.y120{bottom:289.490667pt;}
.ybc{bottom:291.960933pt;}
.y90{bottom:291.978667pt;}
.y14{bottom:292.285200pt;}
.yda{bottom:299.054133pt;}
.y106{bottom:302.159067pt;}
.y6a{bottom:302.168400pt;}
.y11f{bottom:305.492000pt;}
.y13{bottom:305.617200pt;}
.y43{bottom:307.095467pt;}
.ybb{bottom:307.962267pt;}
.y8f{bottom:307.978667pt;}
.yd9{bottom:315.055467pt;}
.y105{bottom:315.491067pt;}
.y69{bottom:315.500400pt;}
.y12{bottom:318.949200pt;}
.y11e{bottom:321.493333pt;}
.y42{bottom:323.095467pt;}
.yba{bottom:323.963600pt;}
.y8e{bottom:323.978667pt;}
.y104{bottom:328.823067pt;}
.y68{bottom:328.832400pt;}
.y146{bottom:329.312000pt;}
.yd8{bottom:331.056800pt;}
.y11{bottom:332.281200pt;}
.y11d{bottom:337.494667pt;}
.y41{bottom:339.095467pt;}
.yb9{bottom:339.964933pt;}
.y8d{bottom:339.978667pt;}
.y103{bottom:342.155067pt;}
.y67{bottom:342.164400pt;}
.y145{bottom:343.978667pt;}
.y10{bottom:345.613200pt;}
.yd7{bottom:347.058133pt;}
.y11c{bottom:353.496000pt;}
.y40{bottom:355.095467pt;}
.y102{bottom:355.487067pt;}
.y66{bottom:355.496400pt;}
.yb8{bottom:355.966267pt;}
.y8c{bottom:355.978667pt;}
.y144{bottom:358.645333pt;}
.yf{bottom:358.945200pt;}
.yd6{bottom:363.059467pt;}
.y101{bottom:368.819067pt;}
.y65{bottom:368.828400pt;}
.y11b{bottom:369.497333pt;}
.y3f{bottom:371.095467pt;}
.yb7{bottom:371.967600pt;}
.y8b{bottom:371.978667pt;}
.ye{bottom:372.277200pt;}
.y143{bottom:373.312000pt;}
.yd5{bottom:379.060800pt;}
.y64{bottom:382.160400pt;}
.y11a{bottom:385.498667pt;}
.y3e{bottom:387.095467pt;}
.yb6{bottom:387.968933pt;}
.y8a{bottom:387.978667pt;}
.yd{bottom:389.569200pt;}
.yd4{bottom:395.062133pt;}
.y63{bottom:395.492400pt;}
.y119{bottom:401.500000pt;}
.y142{bottom:402.645333pt;}
.y3d{bottom:403.095467pt;}
.yb5{bottom:403.970267pt;}
.y89{bottom:403.978667pt;}
.y62{bottom:408.824400pt;}
.yd3{bottom:411.063467pt;}
.y141{bottom:417.312000pt;}
.y118{bottom:417.501333pt;}
.y3c{bottom:419.095467pt;}
.yb4{bottom:419.971600pt;}
.y88{bottom:419.978667pt;}
.y61{bottom:422.156400pt;}
.yd2{bottom:427.064800pt;}
.y140{bottom:431.978667pt;}
.y3b{bottom:435.095467pt;}
.y60{bottom:435.488400pt;}
.yb3{bottom:435.972933pt;}
.y87{bottom:435.978667pt;}
.yc{bottom:442.492800pt;}
.yd1{bottom:443.066133pt;}
.y100{bottom:443.957200pt;}
.y13f{bottom:446.645333pt;}
.y5f{bottom:448.820400pt;}
.y117{bottom:450.834667pt;}
.y3a{bottom:451.095467pt;}
.yb2{bottom:451.974267pt;}
.y86{bottom:451.978667pt;}
.yb{bottom:458.494133pt;}
.yd0{bottom:459.067467pt;}
.yff{bottom:459.958533pt;}
.y13e{bottom:461.312000pt;}
.y5e{bottom:466.112400pt;}
.y39{bottom:467.095467pt;}
.yb1{bottom:467.975600pt;}
.y85{bottom:467.978667pt;}
.ya{bottom:474.495467pt;}
.ycf{bottom:475.068800pt;}
.yfe{bottom:475.959867pt;}
.y13d{bottom:475.978667pt;}
.y5d{bottom:477.383600pt;}
.y38{bottom:483.095467pt;}
.yb0{bottom:483.976933pt;}
.y84{bottom:483.978667pt;}
.y9{bottom:490.494133pt;}
.y13c{bottom:490.645333pt;}
.y5c{bottom:490.715600pt;}
.yce{bottom:491.070133pt;}
.yfd{bottom:491.961200pt;}
.y37{bottom:499.095467pt;}
.yaf{bottom:499.978267pt;}
.y83{bottom:499.978667pt;}
.y5b{bottom:504.047600pt;}
.y13b{bottom:505.312000pt;}
.y8{bottom:506.495467pt;}
.ycd{bottom:507.071467pt;}
.yfc{bottom:507.962533pt;}
.y36{bottom:515.095467pt;}
.y82{bottom:515.978667pt;}
.yae{bottom:515.979600pt;}
.y5a{bottom:517.379600pt;}
.y13a{bottom:519.978667pt;}
.y7{bottom:522.496800pt;}
.ye4{bottom:523.072800pt;}
.yfb{bottom:523.963867pt;}
.y59{bottom:530.711600pt;}
.y35{bottom:531.095467pt;}
.y81{bottom:531.978667pt;}
.yad{bottom:531.980933pt;}
.y139{bottom:534.645333pt;}
.ycc{bottom:539.074133pt;}
.yfa{bottom:539.965200pt;}
.y58{bottom:544.043600pt;}
.y6{bottom:546.936533pt;}
.y34{bottom:547.095467pt;}
.y80{bottom:547.978667pt;}
.yac{bottom:547.982267pt;}
.y138{bottom:549.312000pt;}
.ycb{bottom:555.075467pt;}
.yf9{bottom:555.966533pt;}
.y57{bottom:557.375600pt;}
.y33{bottom:563.095467pt;}
.y7f{bottom:563.978667pt;}
.yab{bottom:563.983600pt;}
.yca{bottom:571.076800pt;}
.yf8{bottom:571.967867pt;}
.y137{bottom:578.645333pt;}
.y32{bottom:579.095467pt;}
.y7e{bottom:579.978667pt;}
.yaa{bottom:579.984933pt;}
.yc9{bottom:587.078133pt;}
.yf7{bottom:587.969200pt;}
.y136{bottom:593.312000pt;}
.y31{bottom:595.095467pt;}
.y7d{bottom:595.978667pt;}
.ya9{bottom:595.986267pt;}
.yc8{bottom:603.079467pt;}
.yf6{bottom:603.970533pt;}
.y135{bottom:607.978667pt;}
.y7c{bottom:611.978667pt;}
.ya8{bottom:611.987600pt;}
.y30{bottom:619.080800pt;}
.y56{bottom:619.970533pt;}
.yf5{bottom:619.971867pt;}
.y134{bottom:622.645333pt;}
.ya7{bottom:627.988933pt;}
.y2f{bottom:635.082133pt;}
.y55{bottom:635.971867pt;}
.yf4{bottom:635.973200pt;}
.y133{bottom:637.312000pt;}
.ya6{bottom:643.990267pt;}
.y7b{bottom:644.418267pt;}
.y2e{bottom:651.083467pt;}
.y54{bottom:651.973200pt;}
.yf3{bottom:651.974533pt;}
.ya5{bottom:659.991600pt;}
.y132{bottom:660.418267pt;}
.y2d{bottom:667.084800pt;}
.y53{bottom:667.974533pt;}
.yf2{bottom:667.975867pt;}
.ya4{bottom:675.992933pt;}
.y2c{bottom:683.086133pt;}
.y52{bottom:683.975867pt;}
.yf1{bottom:683.977200pt;}
.ya3{bottom:691.994267pt;}
.y5{bottom:697.613733pt;}
.y2b{bottom:699.087467pt;}
.y51{bottom:699.977200pt;}
.yf0{bottom:699.978533pt;}
.ya2{bottom:707.995600pt;}
.y2a{bottom:715.088800pt;}
.y50{bottom:715.978533pt;}
.y4{bottom:723.839333pt;}
.ya1{bottom:723.996933pt;}
.yef{bottom:724.418267pt;}
.y29{bottom:731.090133pt;}
.ya0{bottom:739.998267pt;}
.y4f{bottom:740.418267pt;}
.y3{bottom:746.250533pt;}
.y28{bottom:747.091467pt;}
.y27{bottom:763.092800pt;}
.y9f{bottom:763.999467pt;}
.y2{bottom:768.644933pt;}
.y26{bottom:779.094133pt;}
.y9e{bottom:779.999467pt;}
.y1{bottom:791.039333pt;}
.y25{bottom:795.095467pt;}
.y9d{bottom:795.999467pt;}
.y24{bottom:830.609600pt;}
.h7{height:22.368000pt;}
.h9{height:27.216146pt;}
.hb{height:29.472656pt;}
.h4{height:35.367188pt;}
.hf{height:36.000000pt;}
.h8{height:38.208000pt;}
.ha{height:39.296875pt;}
.hc{height:42.453333pt;}
.he{height:44.821333pt;}
.h5{height:46.698667pt;}
.h6{height:46.709333pt;}
.hd{height:46.741333pt;}
.h11{height:46.874667pt;}
.h10{height:46.906667pt;}
.h2{height:49.514062pt;}
.h3{height:50.944000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.x5{left:90.711467pt;}
.x1{left:94.488133pt;}
.x3{left:109.609067pt;}
.x2{left:113.385867pt;}
.x7{left:349.784800pt;}
.x6{left:506.887733pt;}
}




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