
    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_2f585b439c1be5b433d6e8ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_e616e8a1f7172bcbfdec3f3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_d7e2572ec14d94a266a59a30.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_f748f8701030f7a7d5bb006d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_70a027ab69a299946795d054.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_55d0be4bc451dadf8c010ade.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_70fc4f9e28fec8f6ca994ef1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_70cfd2e612aa7b05331c8998.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_3e07e57dfd66c4ec3873f63a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_979933fc3ad32fd113870bae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2fd24a0515539b6611b6ef92.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_63eba82309b80b1d03f35fa3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls13{letter-spacing:-5.700000px;}
.ls2e{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls5d{letter-spacing:-0.408000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.306000px;}
.ls11{letter-spacing:-0.300000px;}
.ls5e{letter-spacing:-0.255000px;}
.ls2d{letter-spacing:-0.240000px;}
.ls4e{letter-spacing:-0.204000px;}
.ls38{letter-spacing:-0.180000px;}
.ls2c{letter-spacing:-0.120000px;}
.ls5c{letter-spacing:-0.102000px;}
.lsf{letter-spacing:-0.060000px;}
.ls5b{letter-spacing:-0.051000px;}
.lsd{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.030000px;}
.ls5a{letter-spacing:0.051000px;}
.ls1a{letter-spacing:0.059999px;}
.ls19{letter-spacing:0.060000px;}
.ls23{letter-spacing:0.090000px;}
.ls46{letter-spacing:0.102000px;}
.ls2a{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.150000px;}
.ls58{letter-spacing:0.153000px;}
.lsb{letter-spacing:0.178794px;}
.ls10{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.191983px;}
.ls41{letter-spacing:0.204000px;}
.ls22{letter-spacing:0.210000px;}
.ls28{letter-spacing:0.239965px;}
.ls39{letter-spacing:0.239989px;}
.ls0{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.246041px;}
.lsc{letter-spacing:0.255000px;}
.ls42{letter-spacing:0.264000px;}
.ls48{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.300011px;}
.ls15{letter-spacing:0.312000px;}
.ls4a{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.402028px;}
.ls1d{letter-spacing:0.420000px;}
.ls34{letter-spacing:0.425999px;}
.ls9{letter-spacing:0.444051px;}
.ls40{letter-spacing:0.459000px;}
.ls2{letter-spacing:0.480000px;}
.ls3d{letter-spacing:0.510000px;}
.ls8{letter-spacing:0.540000px;}
.ls45{letter-spacing:0.561000px;}
.ls3a{letter-spacing:0.570000px;}
.ls1b{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.612000px;}
.ls20{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.663000px;}
.ls55{letter-spacing:0.714000px;}
.ls3{letter-spacing:0.720000px;}
.ls47{letter-spacing:0.739500px;}
.ls37{letter-spacing:0.750000px;}
.ls56{letter-spacing:0.765000px;}
.ls1e{letter-spacing:0.780000px;}
.ls3c{letter-spacing:0.810000px;}
.ls36{letter-spacing:0.815996px;}
.ls3f{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls49{letter-spacing:0.867000px;}
.ls18{letter-spacing:0.900000px;}
.ls4d{letter-spacing:0.918000px;}
.ls16{letter-spacing:0.948016px;}
.ls7{letter-spacing:0.960000px;}
.ls57{letter-spacing:0.969000px;}
.ls6{letter-spacing:1.020000px;}
.ls25{letter-spacing:1.026007px;}
.ls24{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.110000px;}
.ls54{letter-spacing:1.122000px;}
.ls33{letter-spacing:1.140000px;}
.ls21{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.260000px;}
.ls59{letter-spacing:1.275000px;}
.ls53{letter-spacing:1.326000px;}
.ls50{letter-spacing:1.377000px;}
.ls3b{letter-spacing:1.380000px;}
.ls30{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.479000px;}
.ls5{letter-spacing:1.560000px;}
.ls51{letter-spacing:1.581000px;}
.ls2b{letter-spacing:1.620000px;}
.ls29{letter-spacing:1.680000px;}
.ls44{letter-spacing:1.836000px;}
.ls4c{letter-spacing:1.887000px;}
.ls32{letter-spacing:2.100000px;}
.ls43{letter-spacing:2.448000px;}
.lse{letter-spacing:3.990000px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.ws57{word-spacing:-15.600000px;}
.ws18{word-spacing:-15.300000px;}
.ws23{word-spacing:-15.000000px;}
.ws58{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.544000px;}
.ws66{word-spacing:-13.005000px;}
.wsb{word-spacing:-12.750000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws8{word-spacing:-11.520000px;}
.ws6{word-spacing:-11.460000px;}
.ws7{word-spacing:-11.220000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.wsa{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.wse{word-spacing:-3.990000px;}
.wsf{word-spacing:-2.160000px;}
.wsd{word-spacing:-1.890000px;}
.ws37{word-spacing:-1.560000px;}
.ws10{word-spacing:-1.500000px;}
.ws54{word-spacing:-1.440000px;}
.ws86{word-spacing:-1.326000px;}
.ws61{word-spacing:-1.275000px;}
.ws42{word-spacing:-1.260000px;}
.ws31{word-spacing:-1.200000px;}
.ws39{word-spacing:-1.080000px;}
.ws20{word-spacing:-1.020000px;}
.ws55{word-spacing:-0.960000px;}
.ws29{word-spacing:-0.900000px;}
.ws28{word-spacing:-0.840000px;}
.ws40{word-spacing:-0.780000px;}
.ws12{word-spacing:-0.720000px;}
.ws89{word-spacing:-0.663000px;}
.ws33{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws16{word-spacing:-0.600000px;}
.ws1f{word-spacing:-0.540000px;}
.ws1b{word-spacing:-0.480000px;}
.ws59{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.300000px;}
.ws6c{word-spacing:-0.255000px;}
.ws36{word-spacing:-0.240000px;}
.ws88{word-spacing:-0.204000px;}
.ws13{word-spacing:-0.180000px;}
.ws6e{word-spacing:-0.153000px;}
.ws50{word-spacing:-0.120000px;}
.ws2b{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.ws32{word-spacing:0.060000px;}
.ws52{word-spacing:0.180000px;}
.ws6d{word-spacing:0.204000px;}
.ws51{word-spacing:0.300000px;}
.ws56{word-spacing:0.360000px;}
.ws3d{word-spacing:0.420000px;}
.ws67{word-spacing:0.459000px;}
.ws3e{word-spacing:0.480000px;}
.ws2d{word-spacing:0.660000px;}
.ws87{word-spacing:0.663000px;}
.ws3f{word-spacing:0.720000px;}
.ws78{word-spacing:0.765000px;}
.ws15{word-spacing:0.780000px;}
.ws5d{word-spacing:0.840000px;}
.ws46{word-spacing:0.960000px;}
.ws65{word-spacing:0.969000px;}
.ws41{word-spacing:1.020000px;}
.ws7f{word-spacing:1.071000px;}
.ws4f{word-spacing:1.080000px;}
.ws7c{word-spacing:1.173000px;}
.ws5b{word-spacing:1.200000px;}
.ws14{word-spacing:1.260000px;}
.ws60{word-spacing:1.275000px;}
.ws47{word-spacing:1.320000px;}
.ws6f{word-spacing:1.428000px;}
.ws2c{word-spacing:1.440000px;}
.ws11{word-spacing:1.500000px;}
.ws85{word-spacing:1.530000px;}
.ws5c{word-spacing:1.560000px;}
.ws7a{word-spacing:1.581000px;}
.ws3b{word-spacing:1.620000px;}
.ws5e{word-spacing:1.632000px;}
.ws49{word-spacing:1.680000px;}
.ws68{word-spacing:1.734000px;}
.ws3a{word-spacing:1.740000px;}
.ws27{word-spacing:1.800000px;}
.ws34{word-spacing:1.860000px;}
.ws79{word-spacing:1.887000px;}
.ws77{word-spacing:1.989000px;}
.ws84{word-spacing:2.091000px;}
.ws24{word-spacing:2.100000px;}
.ws5f{word-spacing:2.142000px;}
.ws2f{word-spacing:2.160000px;}
.ws7b{word-spacing:2.193000px;}
.ws4c{word-spacing:2.220000px;}
.ws2a{word-spacing:2.280000px;}
.ws75{word-spacing:2.295000px;}
.ws4a{word-spacing:2.340000px;}
.ws6a{word-spacing:2.397000px;}
.ws1c{word-spacing:2.400000px;}
.ws82{word-spacing:2.448000px;}
.ws1e{word-spacing:2.460000px;}
.ws2e{word-spacing:2.520000px;}
.ws69{word-spacing:2.550000px;}
.ws43{word-spacing:2.580000px;}
.ws83{word-spacing:2.601000px;}
.ws1a{word-spacing:2.700000px;}
.ws53{word-spacing:2.760000px;}
.ws7d{word-spacing:2.856000px;}
.ws26{word-spacing:2.880000px;}
.ws7e{word-spacing:2.958000px;}
.ws72{word-spacing:3.111000px;}
.ws38{word-spacing:3.120000px;}
.ws4e{word-spacing:3.240000px;}
.ws48{word-spacing:3.300000px;}
.ws4d{word-spacing:3.480000px;}
.ws35{word-spacing:3.600000px;}
.ws76{word-spacing:3.621000px;}
.ws30{word-spacing:4.080000px;}
.ws80{word-spacing:4.539000px;}
.ws5a{word-spacing:4.680000px;}
.ws74{word-spacing:4.743000px;}
.ws70{word-spacing:4.845000px;}
.ws45{word-spacing:4.860000px;}
.ws81{word-spacing:4.896000px;}
.ws19{word-spacing:5.460000px;}
.ws3c{word-spacing:5.520000px;}
.ws73{word-spacing:5.559000px;}
.ws25{word-spacing:5.640000px;}
.ws71{word-spacing:6.120000px;}
.ws44{word-spacing:6.300000px;}
.ws64{word-spacing:7.191000px;}
.ws6b{word-spacing:7.344000px;}
.ws62{word-spacing:7.854000px;}
.ws4b{word-spacing:8.280000px;}
.ws63{word-spacing:10.200000px;}
.ws8a{word-spacing:13.668000px;}
.ws8b{word-spacing:17.799000px;}
.ws17{word-spacing:21.000000px;}
.ws21{word-spacing:72.267002px;}
._14{margin-left:-2959.376944px;}
._17{margin-left:-96.900000px;}
._11{margin-left:-16.575000px;}
._9{margin-left:-14.573995px;}
._24{margin-left:-11.373000px;}
._3{margin-left:-9.118173px;}
._1e{margin-left:-5.559001px;}
._10{margin-left:-3.941992px;}
._5{margin-left:-2.682012px;}
._0{margin-left:-1.632000px;}
._1{width:1.122000px;}
._6{width:2.184003px;}
._15{width:3.342000px;}
._16{width:4.680000px;}
._7{width:6.288012px;}
._1f{width:7.853999px;}
._1d{width:9.383999px;}
._19{width:11.270996px;}
._b{width:14.622000px;}
._4{width:15.900006px;}
._12{width:18.359999px;}
._23{width:20.246999px;}
._21{width:21.392999px;}
._22{width:23.318999px;}
._1a{width:24.872987px;}
._20{width:26.469000px;}
._1b{width:28.764003px;}
._1c{width:30.395999px;}
._2{width:39.603581px;}
._d{width:48.420000px;}
._13{width:54.621001px;}
._f{width:95.394001px;}
._8{width:98.694001px;}
._c{width:108.594001px;}
._a{width:115.956014px;}
._e{width:156.893994px;}
._18{width:1583.040003px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:68.547300px;}
.y1{bottom:69.499649px;}
.y3a{bottom:112.938301px;}
.y6d{bottom:113.415298px;}
.yf5{bottom:114.735260px;}
.y124{bottom:116.516994px;}
.ycf{bottom:120.844803px;}
.y2c{bottom:122.461349px;}
.yb9{bottom:127.395195px;}
.y123{bottom:131.510994px;}
.y6c{bottom:132.165298px;}
.y39{bottom:133.032303px;}
.yf4{bottom:133.485260px;}
.yce{bottom:139.594803px;}
.y2b{bottom:141.211349px;}
.yb8{bottom:146.145195px;}
.yad{bottom:146.145287px;}
.y122{bottom:146.504994px;}
.y38{bottom:150.491553px;}
.y6b{bottom:150.915298px;}
.yf3{bottom:152.235260px;}
.ycd{bottom:158.344803px;}
.y2a{bottom:159.961349px;}
.y121{bottom:161.498994px;}
.yb7{bottom:164.895195px;}
.yac{bottom:164.895287px;}
.y37{bottom:165.485553px;}
.y6a{bottom:169.665298px;}
.yf2{bottom:170.985260px;}
.y120{bottom:176.492994px;}
.ycc{bottom:177.094803px;}
.y29{bottom:178.711349px;}
.yb6{bottom:183.645195px;}
.yab{bottom:183.645287px;}
.y36{bottom:185.579556px;}
.y99{bottom:188.415298px;}
.yf1{bottom:189.735260px;}
.y11f{bottom:191.486994px;}
.ycb{bottom:195.844803px;}
.y28{bottom:197.461349px;}
.y35{bottom:203.032794px;}
.y11e{bottom:206.480994px;}
.y69{bottom:207.165298px;}
.yf0{bottom:208.485260px;}
.yca{bottom:214.594803px;}
.yba{bottom:214.789810px;}
.y27{bottom:216.211349px;}
.y11d{bottom:221.474994px;}
.y34{bottom:223.126808px;}
.y98{bottom:225.915298px;}
.yef{bottom:227.235260px;}
.yc9{bottom:233.344803px;}
.y26{bottom:234.961349px;}
.y11c{bottom:236.468994px;}
.y33{bottom:240.580059px;}
.yee{bottom:245.985260px;}
.y11b{bottom:251.462994px;}
.yc8{bottom:252.094803px;}
.y25{bottom:253.711349px;}
.y32{bottom:260.674049px;}
.y68{bottom:263.415344px;}
.yed{bottom:264.735260px;}
.y11a{bottom:266.456994px;}
.yc7{bottom:270.844803px;}
.y24{bottom:272.461349px;}
.y119{bottom:281.450994px;}
.y97{bottom:282.165298px;}
.y67{bottom:282.165344px;}
.yec{bottom:283.485260px;}
.y31{bottom:285.687150px;}
.yc6{bottom:289.594803px;}
.y23{bottom:291.211349px;}
.y118{bottom:296.444994px;}
.y30{bottom:300.681150px;}
.y96{bottom:300.915298px;}
.y66{bottom:300.915344px;}
.yeb{bottom:302.235260px;}
.yc5{bottom:308.344803px;}
.y117{bottom:311.438994px;}
.y95{bottom:319.665298px;}
.y65{bottom:319.665344px;}
.yea{bottom:320.985260px;}
.y116{bottom:326.432994px;}
.yc4{bottom:327.094803px;}
.y22{bottom:328.711349px;}
.y2f{bottom:331.497901px;}
.y94{bottom:338.415298px;}
.y64{bottom:338.415344px;}
.ye9{bottom:339.735260px;}
.y115{bottom:341.426994px;}
.yc3{bottom:345.844803px;}
.y2e{bottom:346.491901px;}
.y93{bottom:357.165298px;}
.y63{bottom:357.165344px;}
.ye8{bottom:358.485260px;}
.y2d{bottom:361.485901px;}
.yc2{bottom:364.594803px;}
.y114{bottom:375.176994px;}
.y92{bottom:375.915298px;}
.y62{bottom:375.915344px;}
.ye7{bottom:377.235260px;}
.yc1{bottom:383.344803px;}
.y21{bottom:384.961395px;}
.y91{bottom:394.665298px;}
.y61{bottom:394.665344px;}
.ye6{bottom:395.985260px;}
.yc0{bottom:402.094803px;}
.y20{bottom:403.711395px;}
.y90{bottom:413.415298px;}
.y60{bottom:413.415344px;}
.ye5{bottom:414.735260px;}
.ybf{bottom:420.844803px;}
.y1f{bottom:422.461395px;}
.y8f{bottom:432.165298px;}
.y5f{bottom:432.165344px;}
.ye4{bottom:433.485260px;}
.ybe{bottom:439.594803px;}
.y1e{bottom:441.211395px;}
.y113{bottom:450.220220px;}
.y8e{bottom:450.915298px;}
.y5e{bottom:450.915344px;}
.ye3{bottom:452.235260px;}
.ybd{bottom:458.344803px;}
.y112{bottom:465.214220px;}
.y8d{bottom:469.665298px;}
.y5d{bottom:469.665344px;}
.ye2{bottom:470.985260px;}
.ybc{bottom:477.094803px;}
.y1d{bottom:478.711395px;}
.y111{bottom:480.208220px;}
.y8c{bottom:488.415298px;}
.y5c{bottom:488.415344px;}
.ye1{bottom:489.735260px;}
.y110{bottom:495.202220px;}
.ybb{bottom:495.844803px;}
.y8b{bottom:507.165298px;}
.y5b{bottom:507.165344px;}
.ye0{bottom:508.485260px;}
.y10f{bottom:510.196220px;}
.y1c{bottom:516.211395px;}
.y10e{bottom:525.190220px;}
.y8a{bottom:525.915298px;}
.y5a{bottom:525.915344px;}
.ydf{bottom:527.235260px;}
.y1b{bottom:534.961395px;}
.yd0{bottom:543.130783px;}
.y89{bottom:544.665298px;}
.y59{bottom:544.665344px;}
.yde{bottom:545.985260px;}
.y149{bottom:551.440823px;}
.y1a{bottom:553.711395px;}
.y88{bottom:563.415298px;}
.y58{bottom:563.415344px;}
.ydd{bottom:564.735260px;}
.y10d{bottom:566.385469px;}
.y148{bottom:566.434823px;}
.y19{bottom:572.461395px;}
.y10c{bottom:581.379469px;}
.y147{bottom:581.428823px;}
.y87{bottom:582.165298px;}
.y57{bottom:582.165344px;}
.ydc{bottom:583.485260px;}
.y18{bottom:591.211395px;}
.y10b{bottom:596.373469px;}
.y146{bottom:596.422823px;}
.y86{bottom:600.915298px;}
.y56{bottom:600.915344px;}
.ydb{bottom:602.235260px;}
.y17{bottom:609.961395px;}
.y169{bottom:610.779332px;}
.y145{bottom:611.416823px;}
.y85{bottom:619.665298px;}
.y55{bottom:619.665344px;}
.yda{bottom:620.985260px;}
.y168{bottom:625.773332px;}
.y10a{bottom:626.335968px;}
.y144{bottom:626.410823px;}
.y16{bottom:628.711395px;}
.y84{bottom:638.415298px;}
.y54{bottom:638.415344px;}
.yd9{bottom:639.735260px;}
.y143{bottom:641.404823px;}
.y15{bottom:647.461395px;}
.y142{bottom:656.398823px;}
.y167{bottom:656.615581px;}
.y83{bottom:657.165298px;}
.y53{bottom:657.165344px;}
.yd8{bottom:658.485260px;}
.y109{bottom:660.085968px;}
.y14{bottom:666.211395px;}
.y141{bottom:671.392823px;}
.y166{bottom:671.609581px;}
.y82{bottom:675.915298px;}
.y52{bottom:675.915344px;}
.yd7{bottom:677.235260px;}
.y13{bottom:684.961395px;}
.y140{bottom:686.386823px;}
.y165{bottom:686.603581px;}
.y81{bottom:694.665298px;}
.y51{bottom:694.665344px;}
.yd6{bottom:695.985260px;}
.y108{bottom:697.637706px;}
.y13f{bottom:701.380823px;}
.y164{bottom:701.597581px;}
.y12{bottom:703.711395px;}
.y50{bottom:713.415344px;}
.yd5{bottom:714.735260px;}
.y13e{bottom:716.374823px;}
.y163{bottom:716.591581px;}
.y11{bottom:722.461395px;}
.y107{bottom:731.348707px;}
.y13d{bottom:731.368823px;}
.y162{bottom:731.585581px;}
.y80{bottom:732.165298px;}
.y4f{bottom:732.165344px;}
.yd4{bottom:733.485260px;}
.y10{bottom:741.211395px;}
.y106{bottom:746.342707px;}
.y13c{bottom:746.362823px;}
.y161{bottom:746.579581px;}
.y4e{bottom:750.915344px;}
.yd3{bottom:752.235260px;}
.yf{bottom:759.961395px;}
.y105{bottom:761.336707px;}
.y13b{bottom:761.356823px;}
.y160{bottom:761.573581px;}
.y7f{bottom:769.665298px;}
.y4d{bottom:769.665344px;}
.yd2{bottom:770.985260px;}
.y104{bottom:776.330707px;}
.y13a{bottom:776.350823px;}
.y15f{bottom:776.567581px;}
.ye{bottom:778.711395px;}
.y7e{bottom:788.415298px;}
.y4c{bottom:788.415344px;}
.yd1{bottom:789.735260px;}
.y103{bottom:791.324707px;}
.y139{bottom:791.344823px;}
.y15e{bottom:791.561581px;}
.yd{bottom:797.461395px;}
.y138{bottom:806.338823px;}
.y15d{bottom:806.555581px;}
.y7d{bottom:807.165298px;}
.y4b{bottom:807.165344px;}
.yb5{bottom:808.485168px;}
.yaa{bottom:808.485260px;}
.yc{bottom:816.211395px;}
.y137{bottom:821.332823px;}
.y15c{bottom:821.549581px;}
.y7c{bottom:825.915298px;}
.y4a{bottom:825.915344px;}
.yb4{bottom:827.235168px;}
.ya9{bottom:827.235260px;}
.yb{bottom:834.961395px;}
.y136{bottom:836.326823px;}
.y15b{bottom:836.543581px;}
.y102{bottom:843.783325px;}
.y7b{bottom:844.665298px;}
.y49{bottom:844.665344px;}
.yb3{bottom:845.985168px;}
.ya8{bottom:845.985260px;}
.y135{bottom:851.320823px;}
.y15a{bottom:851.537581px;}
.y101{bottom:862.533325px;}
.y7a{bottom:863.415298px;}
.y48{bottom:863.415344px;}
.yb2{bottom:864.735168px;}
.ya7{bottom:864.735260px;}
.y134{bottom:866.314823px;}
.y159{bottom:866.531581px;}
.ya{bottom:879.144153px;}
.y100{bottom:881.283325px;}
.y133{bottom:881.308823px;}
.y158{bottom:881.525581px;}
.y79{bottom:882.165298px;}
.y47{bottom:882.165344px;}
.yb1{bottom:883.485168px;}
.ya6{bottom:883.485260px;}
.y9{bottom:894.138153px;}
.y132{bottom:896.302823px;}
.y157{bottom:896.519581px;}
.yff{bottom:900.033325px;}
.y78{bottom:900.915298px;}
.y46{bottom:900.915344px;}
.yb0{bottom:902.235168px;}
.ya5{bottom:902.235260px;}
.y131{bottom:911.296823px;}
.y156{bottom:911.513581px;}
.yfe{bottom:918.783325px;}
.y77{bottom:919.665298px;}
.y45{bottom:919.665344px;}
.yaf{bottom:920.985168px;}
.ya4{bottom:920.985260px;}
.y130{bottom:926.290823px;}
.y155{bottom:926.507581px;}
.y8{bottom:936.738190px;}
.yfd{bottom:937.533325px;}
.y76{bottom:938.415298px;}
.y44{bottom:938.415344px;}
.ya3{bottom:939.735260px;}
.y12f{bottom:941.284823px;}
.y154{bottom:941.501581px;}
.y12e{bottom:956.278823px;}
.yfc{bottom:956.283325px;}
.y153{bottom:956.495581px;}
.y75{bottom:957.165298px;}
.y43{bottom:957.165344px;}
.yae{bottom:958.485168px;}
.ya2{bottom:958.485260px;}
.y12d{bottom:971.272823px;}
.y152{bottom:971.489581px;}
.yfb{bottom:975.033325px;}
.y74{bottom:975.915298px;}
.y42{bottom:975.915344px;}
.ya1{bottom:977.235260px;}
.y7{bottom:981.424622px;}
.y12c{bottom:986.266823px;}
.y151{bottom:986.483581px;}
.yfa{bottom:993.783325px;}
.y73{bottom:994.665298px;}
.y41{bottom:994.665344px;}
.ya0{bottom:995.985260px;}
.y12b{bottom:1001.260823px;}
.y150{bottom:1001.477581px;}
.y6{bottom:1008.424622px;}
.yf9{bottom:1012.533325px;}
.y72{bottom:1013.415298px;}
.y40{bottom:1013.415344px;}
.y9f{bottom:1014.735260px;}
.y12a{bottom:1016.254823px;}
.y14f{bottom:1016.471581px;}
.y129{bottom:1031.248823px;}
.yf8{bottom:1031.283325px;}
.y14e{bottom:1031.465581px;}
.y71{bottom:1032.165298px;}
.y3f{bottom:1032.165344px;}
.y9e{bottom:1033.485260px;}
.y128{bottom:1046.242823px;}
.y14d{bottom:1046.459581px;}
.yf7{bottom:1050.033325px;}
.y70{bottom:1050.915298px;}
.y3e{bottom:1050.915344px;}
.y9d{bottom:1052.235260px;}
.y127{bottom:1061.236823px;}
.y14c{bottom:1061.453581px;}
.y6f{bottom:1069.665298px;}
.y3d{bottom:1069.665344px;}
.y9c{bottom:1070.985260px;}
.y5{bottom:1076.132080px;}
.y126{bottom:1076.230823px;}
.y14b{bottom:1076.447581px;}
.yf6{bottom:1087.533325px;}
.y6e{bottom:1088.415298px;}
.y3c{bottom:1088.415344px;}
.y9b{bottom:1089.735260px;}
.y125{bottom:1091.224823px;}
.y14a{bottom:1091.441581px;}
.y3{bottom:1109.586557px;}
.y2{bottom:1126.582306px;}
.y9a{bottom:1127.482361px;}
.y3b{bottom:1127.482544px;}
.hf{height:25.204199px;}
.h2{height:33.840000px;}
.hd{height:36.006000px;}
.he{height:36.855469px;}
.ha{height:42.360000px;}
.h3{height:44.676000px;}
.hc{height:45.186000px;}
.h9{height:53.160000px;}
.h4{height:54.862258px;}
.h5{height:55.461000px;}
.h11{height:59.004000px;}
.h8{height:59.340000px;}
.h10{height:61.380000px;}
.h7{height:64.866000px;}
.hb{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.x2{left:78.746401px;}
.x3{left:85.181849px;}
.x8{left:93.545400px;}
.x5{left:97.796101px;}
.xb{left:102.048152px;}
.x4{left:459.215389px;}
.x9{left:476.225537px;}
.xa{left:484.725289px;}
.x7{left:755.489868px;}
.x6{left:792.153442px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls13{letter-spacing:-5.066667pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls5d{letter-spacing:-0.362667pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.272000pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls5e{letter-spacing:-0.226667pt;}
.ls2d{letter-spacing:-0.213333pt;}
.ls4e{letter-spacing:-0.181333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls2c{letter-spacing:-0.106667pt;}
.ls5c{letter-spacing:-0.090667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls5b{letter-spacing:-0.045333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.026667pt;}
.ls5a{letter-spacing:0.045333pt;}
.ls1a{letter-spacing:0.053332pt;}
.ls19{letter-spacing:0.053333pt;}
.ls23{letter-spacing:0.080000pt;}
.ls46{letter-spacing:0.090667pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.133333pt;}
.ls58{letter-spacing:0.136000pt;}
.lsb{letter-spacing:0.158928pt;}
.ls10{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.170651pt;}
.ls41{letter-spacing:0.181333pt;}
.ls22{letter-spacing:0.186667pt;}
.ls28{letter-spacing:0.213302pt;}
.ls39{letter-spacing:0.213324pt;}
.ls0{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.218703pt;}
.lsc{letter-spacing:0.226667pt;}
.ls42{letter-spacing:0.234667pt;}
.ls48{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.266676pt;}
.ls15{letter-spacing:0.277333pt;}
.ls4a{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.357358pt;}
.ls1d{letter-spacing:0.373333pt;}
.ls34{letter-spacing:0.378666pt;}
.ls9{letter-spacing:0.394712pt;}
.ls40{letter-spacing:0.408000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls3d{letter-spacing:0.453333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls45{letter-spacing:0.498667pt;}
.ls3a{letter-spacing:0.506667pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.544000pt;}
.ls20{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.589333pt;}
.ls55{letter-spacing:0.634667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls47{letter-spacing:0.657333pt;}
.ls37{letter-spacing:0.666667pt;}
.ls56{letter-spacing:0.680000pt;}
.ls1e{letter-spacing:0.693333pt;}
.ls3c{letter-spacing:0.720000pt;}
.ls36{letter-spacing:0.725330pt;}
.ls3f{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls49{letter-spacing:0.770667pt;}
.ls18{letter-spacing:0.800000pt;}
.ls4d{letter-spacing:0.816000pt;}
.ls16{letter-spacing:0.842681pt;}
.ls7{letter-spacing:0.853333pt;}
.ls57{letter-spacing:0.861333pt;}
.ls6{letter-spacing:0.906667pt;}
.ls25{letter-spacing:0.912006pt;}
.ls24{letter-spacing:0.960000pt;}
.ls31{letter-spacing:0.986667pt;}
.ls54{letter-spacing:0.997333pt;}
.ls33{letter-spacing:1.013333pt;}
.ls21{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.120000pt;}
.ls59{letter-spacing:1.133333pt;}
.ls53{letter-spacing:1.178667pt;}
.ls50{letter-spacing:1.224000pt;}
.ls3b{letter-spacing:1.226667pt;}
.ls30{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.314667pt;}
.ls5{letter-spacing:1.386667pt;}
.ls51{letter-spacing:1.405333pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls29{letter-spacing:1.493333pt;}
.ls44{letter-spacing:1.632000pt;}
.ls4c{letter-spacing:1.677333pt;}
.ls32{letter-spacing:1.866667pt;}
.ls43{letter-spacing:2.176000pt;}
.lse{letter-spacing:3.546667pt;}
.ws2{word-spacing:-16.384000pt;}
.ws57{word-spacing:-13.866667pt;}
.ws18{word-spacing:-13.600000pt;}
.ws23{word-spacing:-13.333333pt;}
.ws58{word-spacing:-13.184000pt;}
.ws9{word-spacing:-12.928000pt;}
.ws66{word-spacing:-11.560000pt;}
.wsb{word-spacing:-11.333333pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws6{word-spacing:-10.186667pt;}
.ws7{word-spacing:-9.973333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsa{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.wse{word-spacing:-3.546667pt;}
.wsf{word-spacing:-1.920000pt;}
.wsd{word-spacing:-1.680000pt;}
.ws37{word-spacing:-1.386667pt;}
.ws10{word-spacing:-1.333333pt;}
.ws54{word-spacing:-1.280000pt;}
.ws86{word-spacing:-1.178667pt;}
.ws61{word-spacing:-1.133333pt;}
.ws42{word-spacing:-1.120000pt;}
.ws31{word-spacing:-1.066667pt;}
.ws39{word-spacing:-0.960000pt;}
.ws20{word-spacing:-0.906667pt;}
.ws55{word-spacing:-0.853333pt;}
.ws29{word-spacing:-0.800000pt;}
.ws28{word-spacing:-0.746667pt;}
.ws40{word-spacing:-0.693333pt;}
.ws12{word-spacing:-0.640000pt;}
.ws89{word-spacing:-0.589333pt;}
.ws33{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws16{word-spacing:-0.533333pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws1b{word-spacing:-0.426667pt;}
.ws59{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.266667pt;}
.ws6c{word-spacing:-0.226667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws88{word-spacing:-0.181333pt;}
.ws13{word-spacing:-0.160000pt;}
.ws6e{word-spacing:-0.136000pt;}
.ws50{word-spacing:-0.106667pt;}
.ws2b{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.ws32{word-spacing:0.053333pt;}
.ws52{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.181333pt;}
.ws51{word-spacing:0.266667pt;}
.ws56{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.373333pt;}
.ws67{word-spacing:0.408000pt;}
.ws3e{word-spacing:0.426667pt;}
.ws2d{word-spacing:0.586667pt;}
.ws87{word-spacing:0.589333pt;}
.ws3f{word-spacing:0.640000pt;}
.ws78{word-spacing:0.680000pt;}
.ws15{word-spacing:0.693333pt;}
.ws5d{word-spacing:0.746667pt;}
.ws46{word-spacing:0.853333pt;}
.ws65{word-spacing:0.861333pt;}
.ws41{word-spacing:0.906667pt;}
.ws7f{word-spacing:0.952000pt;}
.ws4f{word-spacing:0.960000pt;}
.ws7c{word-spacing:1.042667pt;}
.ws5b{word-spacing:1.066667pt;}
.ws14{word-spacing:1.120000pt;}
.ws60{word-spacing:1.133333pt;}
.ws47{word-spacing:1.173333pt;}
.ws6f{word-spacing:1.269333pt;}
.ws2c{word-spacing:1.280000pt;}
.ws11{word-spacing:1.333333pt;}
.ws85{word-spacing:1.360000pt;}
.ws5c{word-spacing:1.386667pt;}
.ws7a{word-spacing:1.405333pt;}
.ws3b{word-spacing:1.440000pt;}
.ws5e{word-spacing:1.450667pt;}
.ws49{word-spacing:1.493333pt;}
.ws68{word-spacing:1.541333pt;}
.ws3a{word-spacing:1.546667pt;}
.ws27{word-spacing:1.600000pt;}
.ws34{word-spacing:1.653333pt;}
.ws79{word-spacing:1.677333pt;}
.ws77{word-spacing:1.768000pt;}
.ws84{word-spacing:1.858667pt;}
.ws24{word-spacing:1.866667pt;}
.ws5f{word-spacing:1.904000pt;}
.ws2f{word-spacing:1.920000pt;}
.ws7b{word-spacing:1.949333pt;}
.ws4c{word-spacing:1.973333pt;}
.ws2a{word-spacing:2.026667pt;}
.ws75{word-spacing:2.040000pt;}
.ws4a{word-spacing:2.080000pt;}
.ws6a{word-spacing:2.130667pt;}
.ws1c{word-spacing:2.133333pt;}
.ws82{word-spacing:2.176000pt;}
.ws1e{word-spacing:2.186667pt;}
.ws2e{word-spacing:2.240000pt;}
.ws69{word-spacing:2.266667pt;}
.ws43{word-spacing:2.293333pt;}
.ws83{word-spacing:2.312000pt;}
.ws1a{word-spacing:2.400000pt;}
.ws53{word-spacing:2.453333pt;}
.ws7d{word-spacing:2.538667pt;}
.ws26{word-spacing:2.560000pt;}
.ws7e{word-spacing:2.629333pt;}
.ws72{word-spacing:2.765333pt;}
.ws38{word-spacing:2.773333pt;}
.ws4e{word-spacing:2.880000pt;}
.ws48{word-spacing:2.933333pt;}
.ws4d{word-spacing:3.093333pt;}
.ws35{word-spacing:3.200000pt;}
.ws76{word-spacing:3.218667pt;}
.ws30{word-spacing:3.626667pt;}
.ws80{word-spacing:4.034667pt;}
.ws5a{word-spacing:4.160000pt;}
.ws74{word-spacing:4.216000pt;}
.ws70{word-spacing:4.306667pt;}
.ws45{word-spacing:4.320000pt;}
.ws81{word-spacing:4.352000pt;}
.ws19{word-spacing:4.853333pt;}
.ws3c{word-spacing:4.906667pt;}
.ws73{word-spacing:4.941333pt;}
.ws25{word-spacing:5.013333pt;}
.ws71{word-spacing:5.440000pt;}
.ws44{word-spacing:5.600000pt;}
.ws64{word-spacing:6.392000pt;}
.ws6b{word-spacing:6.528000pt;}
.ws62{word-spacing:6.981333pt;}
.ws4b{word-spacing:7.360000pt;}
.ws63{word-spacing:9.066667pt;}
.ws8a{word-spacing:12.149333pt;}
.ws8b{word-spacing:15.821333pt;}
.ws17{word-spacing:18.666667pt;}
.ws21{word-spacing:64.237335pt;}
._14{margin-left:-2630.557283pt;}
._17{margin-left:-86.133333pt;}
._11{margin-left:-14.733333pt;}
._9{margin-left:-12.954663pt;}
._24{margin-left:-10.109333pt;}
._3{margin-left:-8.105043pt;}
._1e{margin-left:-4.941334pt;}
._10{margin-left:-3.503993pt;}
._5{margin-left:-2.384011pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.997333pt;}
._6{width:1.941336pt;}
._15{width:2.970667pt;}
._16{width:4.160000pt;}
._7{width:5.589344pt;}
._1f{width:6.981332pt;}
._1d{width:8.341332pt;}
._19{width:10.018663pt;}
._b{width:12.997333pt;}
._4{width:14.133339pt;}
._12{width:16.319999pt;}
._23{width:17.997332pt;}
._21{width:19.015999pt;}
._22{width:20.727999pt;}
._1a{width:22.109322pt;}
._20{width:23.528000pt;}
._1b{width:25.568003pt;}
._1c{width:27.018666pt;}
._2{width:35.203183pt;}
._d{width:43.040000pt;}
._13{width:48.552000pt;}
._f{width:84.794668pt;}
._8{width:87.728001pt;}
._c{width:96.528001pt;}
._a{width:103.072012pt;}
._e{width:139.461328pt;}
._18{width:1407.146669pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:60.930934pt;}
.y1{bottom:61.777466pt;}
.y3a{bottom:100.389600pt;}
.y6d{bottom:100.813599pt;}
.yf5{bottom:101.986898pt;}
.y124{bottom:103.570662pt;}
.ycf{bottom:107.417603pt;}
.y2c{bottom:108.854533pt;}
.yb9{bottom:113.240173pt;}
.y123{bottom:116.898662pt;}
.y6c{bottom:117.480265pt;}
.y39{bottom:118.250936pt;}
.yf4{bottom:118.653564pt;}
.yce{bottom:124.084269pt;}
.y2b{bottom:125.521200pt;}
.yb8{bottom:129.906840pt;}
.yad{bottom:129.906921pt;}
.y122{bottom:130.226662pt;}
.y38{bottom:133.770270pt;}
.y6b{bottom:134.146932pt;}
.yf3{bottom:135.320231pt;}
.ycd{bottom:140.750936pt;}
.y2a{bottom:142.187866pt;}
.y121{bottom:143.554662pt;}
.yb7{bottom:146.573507pt;}
.yac{bottom:146.573588pt;}
.y37{bottom:147.098270pt;}
.y6a{bottom:150.813599pt;}
.yf2{bottom:151.986898pt;}
.y120{bottom:156.882662pt;}
.ycc{bottom:157.417603pt;}
.y29{bottom:158.854533pt;}
.yb6{bottom:163.240173pt;}
.yab{bottom:163.240255pt;}
.y36{bottom:164.959605pt;}
.y99{bottom:167.480265pt;}
.yf1{bottom:168.653564pt;}
.y11f{bottom:170.210662pt;}
.ycb{bottom:174.084269pt;}
.y28{bottom:175.521200pt;}
.y35{bottom:180.473595pt;}
.y11e{bottom:183.538662pt;}
.y69{bottom:184.146932pt;}
.yf0{bottom:185.320231pt;}
.yca{bottom:190.750936pt;}
.yba{bottom:190.924276pt;}
.y27{bottom:192.187866pt;}
.y11d{bottom:196.866662pt;}
.y34{bottom:198.334941pt;}
.y98{bottom:200.813599pt;}
.yef{bottom:201.986898pt;}
.yc9{bottom:207.417603pt;}
.y26{bottom:208.854533pt;}
.y11c{bottom:210.194662pt;}
.y33{bottom:213.848941pt;}
.yee{bottom:218.653564pt;}
.y11b{bottom:223.522662pt;}
.yc8{bottom:224.084269pt;}
.y25{bottom:225.521200pt;}
.y32{bottom:231.710266pt;}
.y68{bottom:234.146973pt;}
.yed{bottom:235.320231pt;}
.y11a{bottom:236.850662pt;}
.yc7{bottom:240.750936pt;}
.y24{bottom:242.187866pt;}
.y119{bottom:250.178662pt;}
.y97{bottom:250.813599pt;}
.y67{bottom:250.813639pt;}
.yec{bottom:251.986898pt;}
.y31{bottom:253.944134pt;}
.yc6{bottom:257.417603pt;}
.y23{bottom:258.854533pt;}
.y118{bottom:263.506662pt;}
.y30{bottom:267.272134pt;}
.y96{bottom:267.480265pt;}
.y66{bottom:267.480306pt;}
.yeb{bottom:268.653564pt;}
.yc5{bottom:274.084269pt;}
.y117{bottom:276.834662pt;}
.y95{bottom:284.146932pt;}
.y65{bottom:284.146973pt;}
.yea{bottom:285.320231pt;}
.y116{bottom:290.162662pt;}
.yc4{bottom:290.750936pt;}
.y22{bottom:292.187866pt;}
.y2f{bottom:294.664801pt;}
.y94{bottom:300.813599pt;}
.y64{bottom:300.813639pt;}
.ye9{bottom:301.986898pt;}
.y115{bottom:303.490662pt;}
.yc3{bottom:307.417603pt;}
.y2e{bottom:307.992801pt;}
.y93{bottom:317.480265pt;}
.y63{bottom:317.480306pt;}
.ye8{bottom:318.653564pt;}
.y2d{bottom:321.320801pt;}
.yc2{bottom:324.084269pt;}
.y114{bottom:333.490662pt;}
.y92{bottom:334.146932pt;}
.y62{bottom:334.146973pt;}
.ye7{bottom:335.320231pt;}
.yc1{bottom:340.750936pt;}
.y21{bottom:342.187907pt;}
.y91{bottom:350.813599pt;}
.y61{bottom:350.813639pt;}
.ye6{bottom:351.986898pt;}
.yc0{bottom:357.417603pt;}
.y20{bottom:358.854574pt;}
.y90{bottom:367.480265pt;}
.y60{bottom:367.480306pt;}
.ye5{bottom:368.653564pt;}
.ybf{bottom:374.084269pt;}
.y1f{bottom:375.521240pt;}
.y8f{bottom:384.146932pt;}
.y5f{bottom:384.146973pt;}
.ye4{bottom:385.320231pt;}
.ybe{bottom:390.750936pt;}
.y1e{bottom:392.187907pt;}
.y113{bottom:400.195751pt;}
.y8e{bottom:400.813599pt;}
.y5e{bottom:400.813639pt;}
.ye3{bottom:401.986898pt;}
.ybd{bottom:407.417603pt;}
.y112{bottom:413.523751pt;}
.y8d{bottom:417.480265pt;}
.y5d{bottom:417.480306pt;}
.ye2{bottom:418.653564pt;}
.ybc{bottom:424.084269pt;}
.y1d{bottom:425.521240pt;}
.y111{bottom:426.851751pt;}
.y8c{bottom:434.146932pt;}
.y5c{bottom:434.146973pt;}
.ye1{bottom:435.320231pt;}
.y110{bottom:440.179751pt;}
.ybb{bottom:440.750936pt;}
.y8b{bottom:450.813599pt;}
.y5b{bottom:450.813639pt;}
.ye0{bottom:451.986898pt;}
.y10f{bottom:453.507751pt;}
.y1c{bottom:458.854574pt;}
.y10e{bottom:466.835751pt;}
.y8a{bottom:467.480265pt;}
.y5a{bottom:467.480306pt;}
.ydf{bottom:468.653564pt;}
.y1b{bottom:475.521240pt;}
.yd0{bottom:482.782918pt;}
.y89{bottom:484.146932pt;}
.y59{bottom:484.146973pt;}
.yde{bottom:485.320231pt;}
.y149{bottom:490.169620pt;}
.y1a{bottom:492.187907pt;}
.y88{bottom:500.813599pt;}
.y58{bottom:500.813639pt;}
.ydd{bottom:501.986898pt;}
.y10d{bottom:503.453750pt;}
.y148{bottom:503.497620pt;}
.y19{bottom:508.854574pt;}
.y10c{bottom:516.781750pt;}
.y147{bottom:516.825620pt;}
.y87{bottom:517.480265pt;}
.y57{bottom:517.480306pt;}
.ydc{bottom:518.653564pt;}
.y18{bottom:525.521240pt;}
.y10b{bottom:530.109750pt;}
.y146{bottom:530.153620pt;}
.y86{bottom:534.146932pt;}
.y56{bottom:534.146973pt;}
.ydb{bottom:535.320231pt;}
.y17{bottom:542.187907pt;}
.y169{bottom:542.914962pt;}
.y145{bottom:543.481620pt;}
.y85{bottom:550.813599pt;}
.y55{bottom:550.813639pt;}
.yda{bottom:551.986898pt;}
.y168{bottom:556.242962pt;}
.y10a{bottom:556.743083pt;}
.y144{bottom:556.809620pt;}
.y16{bottom:558.854574pt;}
.y84{bottom:567.480265pt;}
.y54{bottom:567.480306pt;}
.yd9{bottom:568.653564pt;}
.y143{bottom:570.137620pt;}
.y15{bottom:575.521240pt;}
.y142{bottom:583.465620pt;}
.y167{bottom:583.658294pt;}
.y83{bottom:584.146932pt;}
.y53{bottom:584.146973pt;}
.yd8{bottom:585.320231pt;}
.y109{bottom:586.743083pt;}
.y14{bottom:592.187907pt;}
.y141{bottom:596.793620pt;}
.y166{bottom:596.986294pt;}
.y82{bottom:600.813599pt;}
.y52{bottom:600.813639pt;}
.yd7{bottom:601.986898pt;}
.y13{bottom:608.854574pt;}
.y140{bottom:610.121620pt;}
.y165{bottom:610.314294pt;}
.y81{bottom:617.480265pt;}
.y51{bottom:617.480306pt;}
.yd6{bottom:618.653564pt;}
.y108{bottom:620.122406pt;}
.y13f{bottom:623.449620pt;}
.y164{bottom:623.642294pt;}
.y12{bottom:625.521240pt;}
.y50{bottom:634.146973pt;}
.yd5{bottom:635.320231pt;}
.y13e{bottom:636.777620pt;}
.y163{bottom:636.970294pt;}
.y11{bottom:642.187907pt;}
.y107{bottom:650.087740pt;}
.y13d{bottom:650.105620pt;}
.y162{bottom:650.298294pt;}
.y80{bottom:650.813599pt;}
.y4f{bottom:650.813639pt;}
.yd4{bottom:651.986898pt;}
.y10{bottom:658.854574pt;}
.y106{bottom:663.415740pt;}
.y13c{bottom:663.433620pt;}
.y161{bottom:663.626294pt;}
.y4e{bottom:667.480306pt;}
.yd3{bottom:668.653564pt;}
.yf{bottom:675.521240pt;}
.y105{bottom:676.743740pt;}
.y13b{bottom:676.761620pt;}
.y160{bottom:676.954294pt;}
.y7f{bottom:684.146932pt;}
.y4d{bottom:684.146973pt;}
.yd2{bottom:685.320231pt;}
.y104{bottom:690.071740pt;}
.y13a{bottom:690.089620pt;}
.y15f{bottom:690.282294pt;}
.ye{bottom:692.187907pt;}
.y7e{bottom:700.813599pt;}
.y4c{bottom:700.813639pt;}
.yd1{bottom:701.986898pt;}
.y103{bottom:703.399740pt;}
.y139{bottom:703.417620pt;}
.y15e{bottom:703.610294pt;}
.yd{bottom:708.854574pt;}
.y138{bottom:716.745620pt;}
.y15d{bottom:716.938294pt;}
.y7d{bottom:717.480265pt;}
.y4b{bottom:717.480306pt;}
.yb5{bottom:718.653483pt;}
.yaa{bottom:718.653564pt;}
.yc{bottom:725.521240pt;}
.y137{bottom:730.073620pt;}
.y15c{bottom:730.266294pt;}
.y7c{bottom:734.146932pt;}
.y4a{bottom:734.146973pt;}
.yb4{bottom:735.320150pt;}
.ya9{bottom:735.320231pt;}
.yb{bottom:742.187907pt;}
.y136{bottom:743.401620pt;}
.y15b{bottom:743.594294pt;}
.y102{bottom:750.029622pt;}
.y7b{bottom:750.813599pt;}
.y49{bottom:750.813639pt;}
.yb3{bottom:751.986816pt;}
.ya8{bottom:751.986898pt;}
.y135{bottom:756.729620pt;}
.y15a{bottom:756.922294pt;}
.y101{bottom:766.696289pt;}
.y7a{bottom:767.480265pt;}
.y48{bottom:767.480306pt;}
.yb2{bottom:768.653483pt;}
.ya7{bottom:768.653564pt;}
.y134{bottom:770.057620pt;}
.y159{bottom:770.250294pt;}
.ya{bottom:781.461469pt;}
.y100{bottom:783.362956pt;}
.y133{bottom:783.385620pt;}
.y158{bottom:783.578294pt;}
.y79{bottom:784.146932pt;}
.y47{bottom:784.146973pt;}
.yb1{bottom:785.320150pt;}
.ya6{bottom:785.320231pt;}
.y9{bottom:794.789469pt;}
.y132{bottom:796.713620pt;}
.y157{bottom:796.906294pt;}
.yff{bottom:800.029622pt;}
.y78{bottom:800.813599pt;}
.y46{bottom:800.813639pt;}
.yb0{bottom:801.986816pt;}
.ya5{bottom:801.986898pt;}
.y131{bottom:810.041620pt;}
.y156{bottom:810.234294pt;}
.yfe{bottom:816.696289pt;}
.y77{bottom:817.480265pt;}
.y45{bottom:817.480306pt;}
.yaf{bottom:818.653483pt;}
.ya4{bottom:818.653564pt;}
.y130{bottom:823.369620pt;}
.y155{bottom:823.562294pt;}
.y8{bottom:832.656169pt;}
.yfd{bottom:833.362956pt;}
.y76{bottom:834.146932pt;}
.y44{bottom:834.146973pt;}
.ya3{bottom:835.320231pt;}
.y12f{bottom:836.697620pt;}
.y154{bottom:836.890294pt;}
.y12e{bottom:850.025620pt;}
.yfc{bottom:850.029622pt;}
.y153{bottom:850.218294pt;}
.y75{bottom:850.813599pt;}
.y43{bottom:850.813639pt;}
.yae{bottom:851.986816pt;}
.ya2{bottom:851.986898pt;}
.y12d{bottom:863.353620pt;}
.y152{bottom:863.546294pt;}
.yfb{bottom:866.696289pt;}
.y74{bottom:867.480265pt;}
.y42{bottom:867.480306pt;}
.ya1{bottom:868.653564pt;}
.y7{bottom:872.377441pt;}
.y12c{bottom:876.681620pt;}
.y151{bottom:876.874294pt;}
.yfa{bottom:883.362956pt;}
.y73{bottom:884.146932pt;}
.y41{bottom:884.146973pt;}
.ya0{bottom:885.320231pt;}
.y12b{bottom:890.009620pt;}
.y150{bottom:890.202294pt;}
.y6{bottom:896.377441pt;}
.yf9{bottom:900.029622pt;}
.y72{bottom:900.813599pt;}
.y40{bottom:900.813639pt;}
.y9f{bottom:901.986898pt;}
.y12a{bottom:903.337620pt;}
.y14f{bottom:903.530294pt;}
.y129{bottom:916.665620pt;}
.yf8{bottom:916.696289pt;}
.y14e{bottom:916.858294pt;}
.y71{bottom:917.480265pt;}
.y3f{bottom:917.480306pt;}
.y9e{bottom:918.653564pt;}
.y128{bottom:929.993620pt;}
.y14d{bottom:930.186294pt;}
.yf7{bottom:933.362956pt;}
.y70{bottom:934.146932pt;}
.y3e{bottom:934.146973pt;}
.y9d{bottom:935.320231pt;}
.y127{bottom:943.321620pt;}
.y14c{bottom:943.514294pt;}
.y6f{bottom:950.813599pt;}
.y3d{bottom:950.813639pt;}
.y9c{bottom:951.986898pt;}
.y5{bottom:956.561849pt;}
.y126{bottom:956.649620pt;}
.y14b{bottom:956.842294pt;}
.yf6{bottom:966.696289pt;}
.y6e{bottom:967.480265pt;}
.y3c{bottom:967.480306pt;}
.y9b{bottom:968.653564pt;}
.y125{bottom:969.977620pt;}
.y14a{bottom:970.170294pt;}
.y3{bottom:986.299162pt;}
.y2{bottom:1001.406494pt;}
.y9a{bottom:1002.206543pt;}
.y3b{bottom:1002.206706pt;}
.hf{height:22.403733pt;}
.h2{height:30.080000pt;}
.hd{height:32.005333pt;}
.he{height:32.760417pt;}
.ha{height:37.653333pt;}
.h3{height:39.712000pt;}
.hc{height:40.165333pt;}
.h9{height:47.253333pt;}
.h4{height:48.766452pt;}
.h5{height:49.298667pt;}
.h11{height:52.448000pt;}
.h8{height:52.746667pt;}
.h10{height:54.560000pt;}
.h7{height:57.658667pt;}
.hb{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.x2{left:69.996801pt;}
.x3{left:75.717199pt;}
.x8{left:83.151466pt;}
.x5{left:86.929867pt;}
.xb{left:90.709468pt;}
.x4{left:408.191457pt;}
.x9{left:423.311588pt;}
.xa{left:430.866924pt;}
.x7{left:671.546549pt;}
.x6{left:704.136393pt;}
}




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