
    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_918d4614517ed3571081d7ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e87372b66feff420747a6ed2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_545d6037f21eb18fee071d17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_10f5bf3abdbef942864b5976.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_f74239eb78c29660d8f09892.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.550000;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_ce20a6de99383fe74f61bae1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.705000;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_a9878ed78072d85829d387c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_b36c4b2e73e7cf7f14ff53cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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_b80217a1efafb13c091255ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714046;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_ae8fa25ca1124d5385a39d4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_560cef178c66e829774c8b12.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.111000;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_ba83d4af84bb6ab1988628db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_50840ff3135487c8a98ddd7a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a83d123ba48acdd2fa89b065.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.683000;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:fff;src:url('chunks/assets/font_75ecaaa48f4ee6c5a60a709f.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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:ff10;src:url('chunks/assets/font_54ea3a1484f25c825d3173be.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909000;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:ff11;src:url('chunks/assets/font_7a588d1acc98c417b6ecf7cc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.431000;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:ff12;src:url('chunks/assets/font_4bd3c5643bd45108cd6512bd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.906000;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:ff13;src:url('chunks/assets/font_27433348305f5e2651f206b0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.714232;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-21.696000px;}
.v8{vertical-align:-16.878000px;}
.v2{vertical-align:-15.054000px;}
.v6{vertical-align:-13.746000px;}
.v4{vertical-align:-9.822000px;}
.vd{vertical-align:-8.400000px;}
.v5{vertical-align:-5.976000px;}
.v3{vertical-align:-4.674000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:15.048000px;}
.v7{vertical-align:16.878000px;}
.v9{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.va{vertical-align:26.070000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000141px;}
.ls34{letter-spacing:0.000334px;}
.ls31{letter-spacing:0.000607px;}
.ls30{letter-spacing:0.001161px;}
.ls1c{letter-spacing:0.001604px;}
.ls1f{letter-spacing:0.002712px;}
.ls2c{letter-spacing:0.003201px;}
.lsf{letter-spacing:0.003242px;}
.ls3b{letter-spacing:0.004122px;}
.lsd{letter-spacing:0.004326px;}
.ls2a{letter-spacing:2.987468px;}
.lsb{letter-spacing:3.389236px;}
.ls23{letter-spacing:3.885338px;}
.ls10{letter-spacing:4.485619px;}
.ls9{letter-spacing:4.726344px;}
.ls12{letter-spacing:4.929619px;}
.ls14{letter-spacing:4.935619px;}
.lsa{letter-spacing:6.205608px;}
.ls28{letter-spacing:6.352669px;}
.ls21{letter-spacing:6.358669px;}
.ls8{letter-spacing:6.377236px;}
.lse{letter-spacing:7.473619px;}
.ls11{letter-spacing:10.904712px;}
.ls37{letter-spacing:12.701332px;}
.ls25{letter-spacing:14.109056px;}
.lsc{letter-spacing:14.543412px;}
.ls38{letter-spacing:15.691590px;}
.ls1{letter-spacing:15.692612px;}
.ls36{letter-spacing:15.692722px;}
.ls35{letter-spacing:16.235804px;}
.ls18{letter-spacing:18.179412px;}
.ls33{letter-spacing:18.450933px;}
.ls3a{letter-spacing:18.456933px;}
.ls32{letter-spacing:18.978933px;}
.ls39{letter-spacing:18.984933px;}
.ls13{letter-spacing:19.270344px;}
.ls6{letter-spacing:19.276344px;}
.ls20{letter-spacing:20.921236px;}
.ls24{letter-spacing:21.018607px;}
.ls15{letter-spacing:21.812712px;}
.ls4{letter-spacing:21.821400px;}
.ls2b{letter-spacing:22.676175px;}
.ls2f{letter-spacing:22.915409px;}
.ls17{letter-spacing:23.115619px;}
.ls2d{letter-spacing:24.342113px;}
.ls1e{letter-spacing:24.563236px;}
.ls19{letter-spacing:25.653619px;}
.ls1b{letter-spacing:25.840344px;}
.ls7{letter-spacing:26.008344px;}
.ls5{letter-spacing:26.548344px;}
.ls1d{letter-spacing:28.193236px;}
.ls16{letter-spacing:29.295619px;}
.ls1a{letter-spacing:52.290607px;}
.ls3{letter-spacing:52.748915px;}
.ls29{letter-spacing:78.636607px;}
.ls27{letter-spacing:84.366607px;}
.ls22{letter-spacing:120.420607px;}
.ls26{letter-spacing:222.936607px;}
.ls2e{letter-spacing:575.455409px;}
.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;}
}
.ws29{word-spacing:-65.454600px;}
.ws22{word-spacing:-42.637126px;}
.ws27{word-spacing:-33.211407px;}
.wsd{word-spacing:-31.688010px;}
.ws3b{word-spacing:-29.388273px;}
.ws2{word-spacing:-22.001332px;}
.ws17{word-spacing:-16.730196px;}
.ws1b{word-spacing:-15.637104px;}
.ws33{word-spacing:-14.280391px;}
.ws4{word-spacing:-12.122522px;}
.ws43{word-spacing:-9.091930px;}
.ws1c{word-spacing:-1.106183px;}
.ws1e{word-spacing:-0.065455px;}
.ws35{word-spacing:-0.059776px;}
.ws2e{word-spacing:-0.047821px;}
.ws3c{word-spacing:-0.035866px;}
.ws7{word-spacing:0.000000px;}
.ws21{word-spacing:2.559275px;}
.ws6{word-spacing:3.604493px;}
.ws42{word-spacing:3.611345px;}
.ws3a{word-spacing:3.640358px;}
.ws40{word-spacing:3.959562px;}
.ws3f{word-spacing:3.995428px;}
.ws1a{word-spacing:4.653822px;}
.ws15{word-spacing:4.668474px;}
.ws5{word-spacing:4.805970px;}
.ws12{word-spacing:4.850186px;}
.ws23{word-spacing:5.177459px;}
.ws18{word-spacing:5.242913px;}
.ws37{word-spacing:5.308368px;}
.ws1f{word-spacing:5.409449px;}
.wsf{word-spacing:5.439277px;}
.ws39{word-spacing:5.445557px;}
.ws25{word-spacing:5.504732px;}
.ws13{word-spacing:5.624884px;}
.ws1d{word-spacing:5.635641px;}
.ws14{word-spacing:5.684660px;}
.wse{word-spacing:5.766550px;}
.ws2d{word-spacing:5.832005px;}
.ws24{word-spacing:6.093823px;}
.ws28{word-spacing:6.152196px;}
.ws3{word-spacing:6.159278px;}
.ws26{word-spacing:6.183633px;}
.wsa{word-spacing:6.224732px;}
.ws11{word-spacing:7.226188px;}
.ws10{word-spacing:7.291642px;}
.ws0{word-spacing:9.502923px;}
.ws1{word-spacing:9.589000px;}
.ws16{word-spacing:12.356399px;}
.ws20{word-spacing:12.681449px;}
.ws19{word-spacing:13.424738px;}
.ws2a{word-spacing:13.686840px;}
.ws2b{word-spacing:13.810815px;}
.ws34{word-spacing:57.450329px;}
.ws30{word-spacing:59.608378px;}
.ws41{word-spacing:62.639270px;}
.ws32{word-spacing:65.012574px;}
.ws38{word-spacing:66.938876px;}
.ws2f{word-spacing:72.328657px;}
.ws3d{word-spacing:81.683904px;}
.ws36{word-spacing:87.338129px;}
.ws31{word-spacing:99.853226px;}
.ws3e{word-spacing:100.728538px;}
.ws2c{word-spacing:262.021309px;}
.ws9{word-spacing:1561.556938px;}
.ws8{word-spacing:1582.633319px;}
.wsc{word-spacing:1590.815144px;}
.wsb{word-spacing:1624.916990px;}
._1{margin-left:-25.392739px;}
._2{margin-left:-19.044634px;}
._56{margin-left:-11.405700px;}
._1b{margin-left:-7.660871px;}
._a{margin-left:-5.432732px;}
._1a{margin-left:-3.719250px;}
._0{margin-left:-2.668393px;}
._3{margin-left:-1.040102px;}
._4{width:1.832729px;}
._c{width:3.843225px;}
._3e{width:12.695222px;}
._3a{width:16.937140px;}
._14{width:20.104454px;}
._11{width:21.584773px;}
._d{width:22.828410px;}
._12{width:25.863358px;}
._13{width:27.277150px;}
._16{width:28.291633px;}
._10{width:29.962961px;}
._18{width:32.007299px;}
._19{width:42.091751px;}
._f{width:45.728640px;}
._38{width:67.104330px;}
._21{width:71.730900px;}
._35{width:74.125138px;}
._1f{width:79.190914px;}
._37{width:81.769857px;}
._44{width:90.775834px;}
._28{width:92.724143px;}
._40{width:94.071469px;}
._25{width:97.123639px;}
._31{width:101.620051px;}
._34{width:104.006938px;}
._42{width:112.216077px;}
._29{width:122.564198px;}
._33{width:124.108914px;}
._1d{width:125.920527px;}
._17{width:130.418423px;}
._4a{width:135.519573px;}
._4b{width:143.799279px;}
._30{width:148.123937px;}
._e{width:149.474423px;}
._22{width:153.101749px;}
._24{width:174.258266px;}
._2f{width:178.011737px;}
._2e{width:181.279300px;}
._39{width:183.153573px;}
._23{width:190.947656px;}
._27{width:192.215066px;}
._2b{width:199.651005px;}
._1e{width:202.888591px;}
._20{width:204.837462px;}
._4c{width:213.511018px;}
._2a{width:215.495645px;}
._26{width:216.927042px;}
._36{width:220.651390px;}
._3d{width:239.125018px;}
._3b{width:242.324336px;}
._3c{width:251.611018px;}
._2d{width:257.519103px;}
._55{width:337.320835px;}
._49{width:340.326835px;}
._4e{width:345.143267px;}
._1c{width:356.903265px;}
._48{width:359.382835px;}
._4d{width:364.304830px;}
._41{width:367.205267px;}
._54{width:383.276035px;}
._3f{width:386.366830px;}
._53{width:449.838866px;}
._47{width:452.844866px;}
._4f{width:457.945117px;}
._52{width:476.738066px;}
._43{width:480.007117px;}
._51{width:536.664866px;}
._32{width:541.982155px;}
._46{width:558.726866px;}
._50{width:563.252035px;}
._45{width:585.314035px;}
._15{width:719.108115px;}
._2c{width:748.378028px;}
._8{width:1245.716702px;}
._7{width:1280.095612px;}
._5{width:1312.022212px;}
._6{width:1327.484743px;}
._9{width:1593.557692px;}
._b{width:1598.466787px;}
.fca{color:transparent;}
.fc9{color:rgb(51,51,178);}
.fc7{color:rgb(0,255,0);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(235,235,247);}
.fc2{color:rgb(204,0,0);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(143,0,0);}
.fc4{color:rgb(242,242,242);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:29.887800px;}
.fs8{font-size:35.037360px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs5{font-size:123.975000px;}
.y13c{bottom:-31.047000px;}
.y13b{bottom:-13.114500px;}
.y0{bottom:0.000000px;}
.y138{bottom:2.271102px;}
.y27{bottom:4.483500px;}
.y12f{bottom:10.949175px;}
.y12e{bottom:15.279000px;}
.y130{bottom:17.234975px;}
.y118{bottom:17.635500px;}
.y4f{bottom:20.782500px;}
.y82{bottom:20.877000px;}
.yb{bottom:22.167000px;}
.y128{bottom:24.811500px;}
.ya8{bottom:27.168000px;}
.y72{bottom:28.644000px;}
.yc2{bottom:34.014000px;}
.ya{bottom:37.884000px;}
.y4e{bottom:38.715000px;}
.y117{bottom:40.992000px;}
.y81{bottom:41.202000px;}
.y127{bottom:45.135000px;}
.y26{bottom:47.343000px;}
.ya7{bottom:47.491500px;}
.yda{bottom:48.603000px;}
.y131{bottom:48.946705px;}
.y9{bottom:49.840500px;}
.yc1{bottom:50.053500px;}
.y71{bottom:52.810500px;}
.y116{bottom:52.821000px;}
.y8f{bottom:52.902000px;}
.y139{bottom:53.448033px;}
.y4d{bottom:56.647500px;}
.y105{bottom:59.317500px;}
.y17{bottom:59.730000px;}
.yb4{bottom:60.955500px;}
.y80{bottom:61.525500px;}
.y3d{bottom:62.227500px;}
.y126{bottom:65.458500px;}
.y25{bottom:67.666500px;}
.yd9{bottom:68.928000px;}
.y5c{bottom:69.405000px;}
.y104{bottom:69.817500px;}
.yc0{bottom:70.576500px;}
.y115{bottom:70.753500px;}
.ya6{bottom:71.194500px;}
.ycd{bottom:72.628500px;}
.y70{bottom:73.134000px;}
.y4c{bottom:74.580000px;}
.y8e{bottom:77.709000px;}
.y31{bottom:80.397000px;}
.y132{bottom:80.658923px;}
.y152{bottom:81.048000px;}
.yb3{bottom:81.279000px;}
.y7f{bottom:81.849000px;}
.y3c{bottom:82.551000px;}
.y103{bottom:84.015000px;}
.y125{bottom:85.782000px;}
.y168{bottom:87.324000px;}
.y151{bottom:87.745500px;}
.y24{bottom:87.991500px;}
.y114{bottom:88.686000px;}
.y16{bottom:88.843500px;}
.y5b{bottom:89.730000px;}
.ybf{bottom:90.900000px;}
.ya5{bottom:91.518000px;}
.y171{bottom:91.638000px;}
.yd8{bottom:91.783500px;}
.ydd{bottom:92.473500px;}
.y4b{bottom:92.512500px;}
.ycc{bottom:92.952000px;}
.y6f{bottom:93.457500px;}
.y167{bottom:94.023000px;}
.y30{bottom:96.436500px;}
.y98{bottom:97.017000px;}
.y102{bottom:98.211000px;}
.y150{bottom:98.605500px;}
.yb2{bottom:101.602500px;}
.y7e{bottom:102.172500px;}
.y8d{bottom:102.516000px;}
.y166{bottom:104.881500px;}
.y124{bottom:106.107000px;}
.y113{bottom:106.618500px;}
.y3b{bottom:107.358000px;}
.y8{bottom:108.057000px;}
.y14f{bottom:109.066500px;}
.y5a{bottom:110.053500px;}
.y4a{bottom:110.445000px;}
.ybe{bottom:111.223500px;}
.ya4{bottom:111.841500px;}
.y170{bottom:111.961500px;}
.y133{bottom:112.330263px;}
.y2f{bottom:112.477500px;}
.y23{bottom:112.798500px;}
.y101{bottom:113.005500px;}
.ycb{bottom:113.275500px;}
.ye4{bottom:113.856000px;}
.yd7{bottom:114.058500px;}
.y165{bottom:115.342500px;}
.y15{bottom:116.790000px;}
.y6e{bottom:117.625500px;}
.y14e{bottom:120.124500px;}
.y97{bottom:121.824000px;}
.yb1{bottom:121.926000px;}
.y7d{bottom:122.496000px;}
.y112{bottom:124.551000px;}
.yf0{bottom:126.043500px;}
.y164{bottom:126.400500px;}
.y7{bottom:126.505500px;}
.y123{bottom:126.981000px;}
.y100{bottom:127.203000px;}
.y8c{bottom:127.323000px;}
.y3a{bottom:127.681500px;}
.y49{bottom:128.379000px;}
.y59{bottom:130.377000px;}
.y14d{bottom:130.585500px;}
.y16f{bottom:132.285000px;}
.y22{bottom:133.122000px;}
.yd6{bottom:134.382000px;}
.ya3{bottom:135.543000px;}
.ybd{bottom:136.030500px;}
.y163{bottom:136.861500px;}
.yca{bottom:138.082500px;}
.y14{bottom:138.282000px;}
.ye3{bottom:138.663000px;}
.y6{bottom:140.701500px;}
.yff{bottom:141.399000px;}
.y14c{bottom:141.643500px;}
.y6d{bottom:141.792000px;}
.y64{bottom:142.027500px;}
.y96{bottom:142.147500px;}
.y7c{bottom:142.819500px;}
.y111{bottom:143.082000px;}
.y134{bottom:144.042480px;}
.ye9{bottom:144.897000px;}
.y48{bottom:146.311500px;}
.yef{bottom:146.367000px;}
.yb0{bottom:146.733000px;}
.y122{bottom:147.304500px;}
.y162{bottom:147.919500px;}
.y39{bottom:148.006500px;}
.y2e{bottom:150.238500px;}
.y14b{bottom:152.104500px;}
.y8b{bottom:152.130000px;}
.y21{bottom:153.445500px;}
.y5{bottom:154.899000px;}
.y58{bottom:155.184000px;}
.yfe{bottom:155.596500px;}
.ya2{bottom:155.868000px;}
.ybc{bottom:156.354000px;}
.y16e{bottom:157.092000px;}
.yd5{bottom:157.237500px;}
.y161{bottom:158.380500px;}
.yc9{bottom:158.407500px;}
.y63{bottom:159.886500px;}
.y110{bottom:161.014500px;}
.y6c{bottom:162.115500px;}
.y12a{bottom:162.889500px;}
.y7b{bottom:163.144500px;}
.y14a{bottom:163.162500px;}
.ye2{bottom:163.470000px;}
.y47{bottom:164.244000px;}
.y95{bottom:166.954500px;}
.yaf{bottom:167.056500px;}
.yee{bottom:167.289000px;}
.y121{bottom:167.628000px;}
.y38{bottom:168.330000px;}
.y160{bottom:169.440000px;}
.ye8{bottom:169.704000px;}
.yfd{bottom:169.792500px;}
.y2d{bottom:170.563500px;}
.y13{bottom:170.577000px;}
.y8a{bottom:172.455000px;}
.y149{bottom:173.623500px;}
.ydc{bottom:173.769000px;}
.y57{bottom:175.507500px;}
.y135{bottom:175.713820px;}
.ybb{bottom:176.679000px;}
.y62{bottom:176.835000px;}
.y20{bottom:178.252500px;}
.y10f{bottom:178.947000px;}
.yd4{bottom:179.512500px;}
.ya1{bottom:179.569500px;}
.y15f{bottom:179.901000px;}
.y16d{bottom:181.899000px;}
.y46{bottom:182.176500px;}
.yc8{bottom:183.214500px;}
.y7a{bottom:183.468000px;}
.yfc{bottom:183.990000px;}
.y148{bottom:184.683000px;}
.y6b{bottom:186.283500px;}
.yed{bottom:187.612500px;}
.y120{bottom:187.951500px;}
.ye1{bottom:188.277000px;}
.y89{bottom:188.494500px;}
.y4{bottom:188.605500px;}
.y15e{bottom:190.959000px;}
.y94{bottom:191.761500px;}
.yae{bottom:191.863500px;}
.y37{bottom:193.137000px;}
.ye7{bottom:194.511000px;}
.y147{bottom:195.142500px;}
.y2c{bottom:195.370500px;}
.y56{bottom:195.831000px;}
.y10e{bottom:196.879500px;}
.yfb{bottom:198.186000px;}
.y1f{bottom:198.576000px;}
.y45{bottom:200.109000px;}
.y61{bottom:201.378000px;}
.y15d{bottom:201.420000px;}
.yba{bottom:201.486000px;}
.y12{bottom:201.703500px;}
.yd3{bottom:202.369500px;}
.ya0{bottom:203.455500px;}
.y129{bottom:203.538000px;}
.y79{bottom:204.538500px;}
.y146{bottom:206.202000px;}
.y6a{bottom:206.607000px;}
.y136{bottom:207.426038px;}
.yc7{bottom:208.021500px;}
.yec{bottom:208.534500px;}
.y88{bottom:209.017500px;}
.y11f{bottom:209.482500px;}
.y16c{bottom:211.189500px;}
.y93{bottom:212.085000px;}
.yad{bottom:212.188500px;}
.yfa{bottom:212.383500px;}
.y15c{bottom:212.478000px;}
.ye0{bottom:213.084000px;}
.y36{bottom:213.460500px;}
.y10d{bottom:214.813500px;}
.y2b{bottom:215.694000px;}
.y55{bottom:216.156000px;}
.y145{bottom:217.260000px;}
.y60{bottom:217.419000px;}
.y44{bottom:218.041500px;}
.y1e{bottom:218.899500px;}
.ye6{bottom:219.318000px;}
.y11{bottom:222.027000px;}
.y15b{bottom:223.536000px;}
.yd2{bottom:224.643000px;}
.y78{bottom:225.610500px;}
.yb9{bottom:226.293000px;}
.yf9{bottom:226.579500px;}
.y69{bottom:226.930500px;}
.y18{bottom:227.017500px;}
.y144{bottom:227.721000px;}
.yc6{bottom:228.345000px;}
.yeb{bottom:228.858000px;}
.y5d{bottom:229.429500px;}
.y11e{bottom:229.806000px;}
.y16b{bottom:231.513000px;}
.y9f{bottom:232.284000px;}
.yac{bottom:232.512000px;}
.y10c{bottom:233.343000px;}
.y5f{bottom:233.458500px;}
.y87{bottom:233.824500px;}
.y15a{bottom:233.997000px;}
.y43{bottom:235.975500px;}
.y2a{bottom:236.017500px;}
.y92{bottom:236.892000px;}
.ydf{bottom:237.891000px;}
.y143{bottom:238.182000px;}
.y35{bottom:238.267500px;}
.y137{bottom:239.097475px;}
.yf8{bottom:240.777000px;}
.y54{bottom:240.963000px;}
.y10{bottom:242.352000px;}
.y1d{bottom:243.706500px;}
.ye5{bottom:244.125000px;}
.y159{bottom:244.458000px;}
.y3{bottom:244.905000px;}
.yd1{bottom:244.968000px;}
.yea{bottom:245.188500px;}
.y77{bottom:245.934000px;}
.yc5{bottom:248.668500px;}
.y9e{bottom:249.232500px;}
.y142{bottom:249.240000px;}
.y13a{bottom:249.276218px;}
.y68{bottom:251.098500px;}
.yb8{bottom:251.100000px;}
.y16a{bottom:251.836500px;}
.y10b{bottom:251.874000px;}
.y42{bottom:253.908000px;}
.y11d{bottom:254.508000px;}
.yf7{bottom:254.973000px;}
.y158{bottom:255.516000px;}
.y91{bottom:257.217000px;}
.yab{bottom:257.319000px;}
.y5e{bottom:258.001500px;}
.y34{bottom:258.591000px;}
.y86{bottom:258.631500px;}
.y141{bottom:260.298000px;}
.y29{bottom:260.824500px;}
.y53{bottom:261.286500px;}
.yf{bottom:262.675500px;}
.yde{bottom:262.698000px;}
.y1c{bottom:264.031500px;}
.y76{bottom:266.257500px;}
.y157{bottom:266.575500px;}
.y9d{bottom:267.090000px;}
.yd0{bottom:267.823500px;}
.yf6{bottom:269.170500px;}
.y140{bottom:270.759000px;}
.y10a{bottom:271.035000px;}
.yb7{bottom:271.423500px;}
.y2{bottom:271.804500px;}
.y41{bottom:271.840500px;}
.yc4{bottom:273.475500px;}
.y11c{bottom:274.831500px;}
.y67{bottom:275.265000px;}
.y169{bottom:276.643500px;}
.y156{bottom:277.036500px;}
.y52{bottom:277.326000px;}
.yaa{bottom:277.642500px;}
.y33{bottom:278.914500px;}
.y12d{bottom:280.359000px;}
.y28{bottom:281.148000px;}
.y90{bottom:282.024000px;}
.y13f{bottom:282.589500px;}
.yf5{bottom:283.366500px;}
.y85{bottom:283.438500px;}
.ye{bottom:284.167500px;}
.ydb{bottom:284.355000px;}
.y75{bottom:286.581000px;}
.y1b{bottom:288.838500px;}
.y155{bottom:288.867000px;}
.y9c{bottom:289.362000px;}
.y109{bottom:289.566000px;}
.y40{bottom:289.773000px;}
.ycf{bottom:292.630500px;}
.y51{bottom:293.365500px;}
.y13e{bottom:293.649000px;}
.y11b{bottom:295.155000px;}
.yb6{bottom:296.230500px;}
.yf4{bottom:297.564000px;}
.ya9{bottom:297.966000px;}
.yc3{bottom:298.282500px;}
.y12c{bottom:298.291500px;}
.y1{bottom:298.704000px;}
.y32{bottom:299.239500px;}
.y66{bottom:299.433000px;}
.y154{bottom:299.925000px;}
.y84{bottom:303.762000px;}
.y13d{bottom:304.108500px;}
.y9b{bottom:305.401500px;}
.y74{bottom:306.904500px;}
.y108{bottom:307.498500px;}
.y1a{bottom:309.162000px;}
.y50{bottom:309.406500px;}
.y3f{bottom:310.096500px;}
.y153{bottom:310.386000px;}
.yf3{bottom:311.760000px;}
.yd{bottom:313.281000px;}
.yce{bottom:314.905500px;}
.y11a{bottom:316.030500px;}
.y12b{bottom:316.224000px;}
.y65{bottom:319.756500px;}
.y83{bottom:319.801500px;}
.y9a{bottom:320.305500px;}
.y107{bottom:320.938500px;}
.yb5{bottom:321.037500px;}
.yf2{bottom:326.554500px;}
.y73{bottom:327.976500px;}
.y99{bottom:336.345000px;}
.y119{bottom:336.354000px;}
.y3e{bottom:336.753000px;}
.y106{bottom:338.871000px;}
.yf1{bottom:342.727500px;}
.yc{bottom:363.652500px;}
.y19{bottom:398.226000px;}
.h15{height:13.897827px;}
.he{height:18.987450px;}
.h5{height:22.415850px;}
.h10{height:23.135700px;}
.h6{height:26.899200px;}
.h13{height:28.945827px;}
.h4{height:35.865450px;}
.h12{height:36.542872px;}
.h16{height:37.463850px;}
.h14{height:37.469850px;}
.hd{height:38.956950px;}
.hc{height:38.962950px;}
.h7{height:44.416950px;}
.h9{height:44.422950px;}
.hb{height:44.831700px;}
.h8{height:49.090950px;}
.hf{height:55.318117px;}
.h3{height:59.619450px;}
.h2{height:64.557900px;}
.ha{height:92.981250px;}
.h11{height:255.967380px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w2{width:340.154370px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x25{left:6.488335px;}
.x23{left:10.665372px;}
.x9{left:12.756000px;}
.x8{left:16.363500px;}
.x21{left:19.383933px;}
.x22{left:20.398070px;}
.x1{left:26.178000px;}
.x10{left:31.254000px;}
.x26{left:36.132277px;}
.x20{left:40.224000px;}
.xc{left:42.519000px;}
.xd{left:49.090500px;}
.xa{left:52.726500px;}
.x29{left:61.939500px;}
.x2{left:65.187000px;}
.x1e{left:68.512500px;}
.x16{left:72.886500px;}
.xe{left:81.819000px;}
.x24{left:85.768538px;}
.x18{left:98.968500px;}
.x11{left:101.832000px;}
.x1b{left:123.261000px;}
.x19{left:129.604500px;}
.x28{left:135.198000px;}
.x27{left:139.132500px;}
.x1c{left:141.111000px;}
.x1d{left:145.510500px;}
.x2a{left:150.132000px;}
.x13{left:164.550000px;}
.x14{left:176.457000px;}
.xf{left:179.122500px;}
.xb{left:184.869000px;}
.x12{left:192.088500px;}
.x1a{left:194.907000px;}
.x3{left:214.800000px;}
.x17{left:226.347000px;}
.x4{left:231.295500px;}
.x5{left:234.205500px;}
.x7{left:246.586500px;}
.x6{left:248.766000px;}
.x1f{left:258.501000px;}
.x15{left:322.546500px;}
@media print{
.vb{vertical-align:-19.285333pt;}
.v8{vertical-align:-15.002667pt;}
.v2{vertical-align:-13.381333pt;}
.v6{vertical-align:-12.218667pt;}
.v4{vertical-align:-8.730667pt;}
.vd{vertical-align:-7.466667pt;}
.v5{vertical-align:-5.312000pt;}
.v3{vertical-align:-4.154667pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:13.376000pt;}
.v7{vertical-align:15.002667pt;}
.v9{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.va{vertical-align:23.173333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000125pt;}
.ls34{letter-spacing:0.000297pt;}
.ls31{letter-spacing:0.000539pt;}
.ls30{letter-spacing:0.001032pt;}
.ls1c{letter-spacing:0.001425pt;}
.ls1f{letter-spacing:0.002411pt;}
.ls2c{letter-spacing:0.002845pt;}
.lsf{letter-spacing:0.002881pt;}
.ls3b{letter-spacing:0.003664pt;}
.lsd{letter-spacing:0.003845pt;}
.ls2a{letter-spacing:2.655527pt;}
.lsb{letter-spacing:3.012654pt;}
.ls23{letter-spacing:3.453633pt;}
.ls10{letter-spacing:3.987217pt;}
.ls9{letter-spacing:4.201195pt;}
.ls12{letter-spacing:4.381883pt;}
.ls14{letter-spacing:4.387217pt;}
.lsa{letter-spacing:5.516096pt;}
.ls28{letter-spacing:5.646817pt;}
.ls21{letter-spacing:5.652150pt;}
.ls8{letter-spacing:5.668654pt;}
.lse{letter-spacing:6.643217pt;}
.ls11{letter-spacing:9.693077pt;}
.ls37{letter-spacing:11.290073pt;}
.ls25{letter-spacing:12.541383pt;}
.lsc{letter-spacing:12.927477pt;}
.ls38{letter-spacing:13.948080pt;}
.ls1{letter-spacing:13.948988pt;}
.ls36{letter-spacing:13.949086pt;}
.ls35{letter-spacing:14.431826pt;}
.ls18{letter-spacing:16.159477pt;}
.ls33{letter-spacing:16.400829pt;}
.ls3a{letter-spacing:16.406163pt;}
.ls32{letter-spacing:16.870163pt;}
.ls39{letter-spacing:16.875496pt;}
.ls13{letter-spacing:17.129195pt;}
.ls6{letter-spacing:17.134528pt;}
.ls20{letter-spacing:18.596654pt;}
.ls24{letter-spacing:18.683206pt;}
.ls15{letter-spacing:19.389077pt;}
.ls4{letter-spacing:19.396800pt;}
.ls2b{letter-spacing:20.156600pt;}
.ls2f{letter-spacing:20.369253pt;}
.ls17{letter-spacing:20.547217pt;}
.ls2d{letter-spacing:21.637433pt;}
.ls1e{letter-spacing:21.833987pt;}
.ls19{letter-spacing:22.803217pt;}
.ls1b{letter-spacing:22.969195pt;}
.ls7{letter-spacing:23.118528pt;}
.ls5{letter-spacing:23.598528pt;}
.ls1d{letter-spacing:25.060654pt;}
.ls16{letter-spacing:26.040550pt;}
.ls1a{letter-spacing:46.480539pt;}
.ls3{letter-spacing:46.887925pt;}
.ls29{letter-spacing:69.899206pt;}
.ls27{letter-spacing:74.992539pt;}
.ls22{letter-spacing:107.040539pt;}
.ls26{letter-spacing:198.165873pt;}
.ls2e{letter-spacing:511.515919pt;}
.ws29{word-spacing:-58.181867pt;}
.ws22{word-spacing:-37.899668pt;}
.ws27{word-spacing:-29.521250pt;}
.wsd{word-spacing:-28.167120pt;}
.ws3b{word-spacing:-26.122909pt;}
.ws2{word-spacing:-19.556740pt;}
.ws17{word-spacing:-14.871285pt;}
.ws1b{word-spacing:-13.899648pt;}
.ws33{word-spacing:-12.693681pt;}
.ws4{word-spacing:-10.775575pt;}
.ws43{word-spacing:-8.081715pt;}
.ws1c{word-spacing:-0.983274pt;}
.ws1e{word-spacing:-0.058182pt;}
.ws35{word-spacing:-0.053134pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws3c{word-spacing:-0.031881pt;}
.ws7{word-spacing:0.000000pt;}
.ws21{word-spacing:2.274911pt;}
.ws6{word-spacing:3.203994pt;}
.ws42{word-spacing:3.210085pt;}
.ws3a{word-spacing:3.235874pt;}
.ws40{word-spacing:3.519611pt;}
.ws3f{word-spacing:3.551491pt;}
.ws1a{word-spacing:4.136731pt;}
.ws15{word-spacing:4.149755pt;}
.ws5{word-spacing:4.271974pt;}
.ws12{word-spacing:4.311276pt;}
.ws23{word-spacing:4.602186pt;}
.ws18{word-spacing:4.660368pt;}
.ws37{word-spacing:4.718549pt;}
.ws1f{word-spacing:4.808399pt;}
.wsf{word-spacing:4.834913pt;}
.ws39{word-spacing:4.840495pt;}
.ws25{word-spacing:4.893095pt;}
.ws13{word-spacing:4.999897pt;}
.ws1d{word-spacing:5.009459pt;}
.ws14{word-spacing:5.053031pt;}
.wse{word-spacing:5.125822pt;}
.ws2d{word-spacing:5.184004pt;}
.ws24{word-spacing:5.416732pt;}
.ws28{word-spacing:5.468618pt;}
.ws3{word-spacing:5.474914pt;}
.ws26{word-spacing:5.496563pt;}
.wsa{word-spacing:5.533096pt;}
.ws11{word-spacing:6.423278pt;}
.ws10{word-spacing:6.481460pt;}
.ws0{word-spacing:8.447043pt;}
.ws1{word-spacing:8.523556pt;}
.ws16{word-spacing:10.983466pt;}
.ws20{word-spacing:11.272399pt;}
.ws19{word-spacing:11.933101pt;}
.ws2a{word-spacing:12.166080pt;}
.ws2b{word-spacing:12.276280pt;}
.ws34{word-spacing:51.066959pt;}
.ws30{word-spacing:52.985225pt;}
.ws41{word-spacing:55.679351pt;}
.ws32{word-spacing:57.788955pt;}
.ws38{word-spacing:59.501223pt;}
.ws2f{word-spacing:64.292140pt;}
.ws3d{word-spacing:72.607915pt;}
.ws36{word-spacing:77.633893pt;}
.ws31{word-spacing:88.758423pt;}
.ws3e{word-spacing:89.536478pt;}
.ws2c{word-spacing:232.907830pt;}
.ws9{word-spacing:1388.050611pt;}
.ws8{word-spacing:1406.785172pt;}
.wsc{word-spacing:1414.057906pt;}
.wsb{word-spacing:1444.370658pt;}
._1{margin-left:-22.571323pt;}
._2{margin-left:-16.928563pt;}
._56{margin-left:-10.138400pt;}
._1b{margin-left:-6.809663pt;}
._a{margin-left:-4.829095pt;}
._1a{margin-left:-3.306000pt;}
._0{margin-left:-2.371905pt;}
._3{margin-left:-0.924535pt;}
._4{width:1.629092pt;}
._c{width:3.416200pt;}
._3e{width:11.284642pt;}
._3a{width:15.055235pt;}
._14{width:17.870626pt;}
._11{width:19.186465pt;}
._d{width:20.291920pt;}
._12{width:22.989652pt;}
._13{width:24.246356pt;}
._16{width:25.148118pt;}
._10{width:26.633743pt;}
._18{width:28.450933pt;}
._19{width:37.414890pt;}
._f{width:40.647680pt;}
._38{width:59.648294pt;}
._21{width:63.760800pt;}
._35{width:65.889012pt;}
._1f{width:70.391923pt;}
._37{width:72.684317pt;}
._44{width:80.689630pt;}
._28{width:82.421461pt;}
._40{width:83.619084pt;}
._25{width:86.332123pt;}
._31{width:90.328934pt;}
._34{width:92.450612pt;}
._42{width:99.747624pt;}
._29{width:108.945954pt;}
._33{width:110.319035pt;}
._1d{width:111.929357pt;}
._17{width:115.927487pt;}
._4a{width:120.461843pt;}
._4b{width:127.821582pt;}
._30{width:131.665722pt;}
._e{width:132.866154pt;}
._22{width:136.090443pt;}
._24{width:154.896237pt;}
._2f{width:158.232655pt;}
._2e{width:161.137155pt;}
._39{width:162.803176pt;}
._23{width:169.731250pt;}
._27{width:170.857836pt;}
._2b{width:177.467560pt;}
._1e{width:180.345414pt;}
._20{width:182.077744pt;}
._4c{width:189.787571pt;}
._2a{width:191.551685pt;}
._26{width:192.824038pt;}
._36{width:196.134569pt;}
._3d{width:212.555571pt;}
._3b{width:215.399410pt;}
._3c{width:223.654238pt;}
._2d{width:228.905869pt;}
._55{width:299.840742pt;}
._49{width:302.512742pt;}
._4e{width:306.794015pt;}
._1c{width:317.247347pt;}
._48{width:319.451409pt;}
._4d{width:323.826515pt;}
._41{width:326.404681pt;}
._54{width:340.689809pt;}
._3f{width:343.437182pt;}
._53{width:399.856770pt;}
._47{width:402.528770pt;}
._4f{width:407.062327pt;}
._52{width:423.767170pt;}
._43{width:426.672993pt;}
._51{width:477.035436pt;}
._32{width:481.761916pt;}
._46{width:496.646103pt;}
._50{width:500.668476pt;}
._45{width:520.279142pt;}
._15{width:639.207214pt;}
._2c{width:665.224914pt;}
._8{width:1107.303735pt;}
._7{width:1137.862766pt;}
._5{width:1166.241966pt;}
._6{width:1179.986438pt;}
._9{width:1416.495726pt;}
._b{width:1420.859366pt;}
.fs3{font-size:26.566933pt;}
.fs8{font-size:31.144320pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs5{font-size:110.200000pt;}
.y13c{bottom:-27.597333pt;}
.y13b{bottom:-11.657333pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:2.018758pt;}
.y27{bottom:3.985333pt;}
.y12f{bottom:9.732600pt;}
.y12e{bottom:13.581333pt;}
.y130{bottom:15.319978pt;}
.y118{bottom:15.676000pt;}
.y4f{bottom:18.473333pt;}
.y82{bottom:18.557333pt;}
.yb{bottom:19.704000pt;}
.y128{bottom:22.054667pt;}
.ya8{bottom:24.149333pt;}
.y72{bottom:25.461333pt;}
.yc2{bottom:30.234667pt;}
.ya{bottom:33.674667pt;}
.y4e{bottom:34.413333pt;}
.y117{bottom:36.437333pt;}
.y81{bottom:36.624000pt;}
.y127{bottom:40.120000pt;}
.y26{bottom:42.082667pt;}
.ya7{bottom:42.214667pt;}
.yda{bottom:43.202667pt;}
.y131{bottom:43.508182pt;}
.y9{bottom:44.302667pt;}
.yc1{bottom:44.492000pt;}
.y71{bottom:46.942667pt;}
.y116{bottom:46.952000pt;}
.y8f{bottom:47.024000pt;}
.y139{bottom:47.509362pt;}
.y4d{bottom:50.353333pt;}
.y105{bottom:52.726667pt;}
.y17{bottom:53.093333pt;}
.yb4{bottom:54.182667pt;}
.y80{bottom:54.689333pt;}
.y3d{bottom:55.313333pt;}
.y126{bottom:58.185333pt;}
.y25{bottom:60.148000pt;}
.yd9{bottom:61.269333pt;}
.y5c{bottom:61.693333pt;}
.y104{bottom:62.060000pt;}
.yc0{bottom:62.734667pt;}
.y115{bottom:62.892000pt;}
.ya6{bottom:63.284000pt;}
.ycd{bottom:64.558667pt;}
.y70{bottom:65.008000pt;}
.y4c{bottom:66.293333pt;}
.y8e{bottom:69.074667pt;}
.y31{bottom:71.464000pt;}
.y132{bottom:71.696820pt;}
.y152{bottom:72.042667pt;}
.yb3{bottom:72.248000pt;}
.y7f{bottom:72.754667pt;}
.y3c{bottom:73.378667pt;}
.y103{bottom:74.680000pt;}
.y125{bottom:76.250667pt;}
.y168{bottom:77.621333pt;}
.y151{bottom:77.996000pt;}
.y24{bottom:78.214667pt;}
.y114{bottom:78.832000pt;}
.y16{bottom:78.972000pt;}
.y5b{bottom:79.760000pt;}
.ybf{bottom:80.800000pt;}
.ya5{bottom:81.349333pt;}
.y171{bottom:81.456000pt;}
.yd8{bottom:81.585333pt;}
.ydd{bottom:82.198667pt;}
.y4b{bottom:82.233333pt;}
.ycc{bottom:82.624000pt;}
.y6f{bottom:83.073333pt;}
.y167{bottom:83.576000pt;}
.y30{bottom:85.721333pt;}
.y98{bottom:86.237333pt;}
.y102{bottom:87.298667pt;}
.y150{bottom:87.649333pt;}
.yb2{bottom:90.313333pt;}
.y7e{bottom:90.820000pt;}
.y8d{bottom:91.125333pt;}
.y166{bottom:93.228000pt;}
.y124{bottom:94.317333pt;}
.y113{bottom:94.772000pt;}
.y3b{bottom:95.429333pt;}
.y8{bottom:96.050667pt;}
.y14f{bottom:96.948000pt;}
.y5a{bottom:97.825333pt;}
.y4a{bottom:98.173333pt;}
.ybe{bottom:98.865333pt;}
.ya4{bottom:99.414667pt;}
.y170{bottom:99.521333pt;}
.y133{bottom:99.849122pt;}
.y2f{bottom:99.980000pt;}
.y23{bottom:100.265333pt;}
.y101{bottom:100.449333pt;}
.ycb{bottom:100.689333pt;}
.ye4{bottom:101.205333pt;}
.yd7{bottom:101.385333pt;}
.y165{bottom:102.526667pt;}
.y15{bottom:103.813333pt;}
.y6e{bottom:104.556000pt;}
.y14e{bottom:106.777333pt;}
.y97{bottom:108.288000pt;}
.yb1{bottom:108.378667pt;}
.y7d{bottom:108.885333pt;}
.y112{bottom:110.712000pt;}
.yf0{bottom:112.038667pt;}
.y164{bottom:112.356000pt;}
.y7{bottom:112.449333pt;}
.y123{bottom:112.872000pt;}
.y100{bottom:113.069333pt;}
.y8c{bottom:113.176000pt;}
.y3a{bottom:113.494667pt;}
.y49{bottom:114.114667pt;}
.y59{bottom:115.890667pt;}
.y14d{bottom:116.076000pt;}
.y16f{bottom:117.586667pt;}
.y22{bottom:118.330667pt;}
.yd6{bottom:119.450667pt;}
.ya3{bottom:120.482667pt;}
.ybd{bottom:120.916000pt;}
.y163{bottom:121.654667pt;}
.yca{bottom:122.740000pt;}
.y14{bottom:122.917333pt;}
.ye3{bottom:123.256000pt;}
.y6{bottom:125.068000pt;}
.yff{bottom:125.688000pt;}
.y14c{bottom:125.905333pt;}
.y6d{bottom:126.037333pt;}
.y64{bottom:126.246667pt;}
.y96{bottom:126.353333pt;}
.y7c{bottom:126.950667pt;}
.y111{bottom:127.184000pt;}
.y134{bottom:128.037760pt;}
.ye9{bottom:128.797333pt;}
.y48{bottom:130.054667pt;}
.yef{bottom:130.104000pt;}
.yb0{bottom:130.429333pt;}
.y122{bottom:130.937333pt;}
.y162{bottom:131.484000pt;}
.y39{bottom:131.561333pt;}
.y2e{bottom:133.545333pt;}
.y14b{bottom:135.204000pt;}
.y8b{bottom:135.226667pt;}
.y21{bottom:136.396000pt;}
.y5{bottom:137.688000pt;}
.y58{bottom:137.941333pt;}
.yfe{bottom:138.308000pt;}
.ya2{bottom:138.549333pt;}
.ybc{bottom:138.981333pt;}
.y16e{bottom:139.637333pt;}
.yd5{bottom:139.766667pt;}
.y161{bottom:140.782667pt;}
.yc9{bottom:140.806667pt;}
.y63{bottom:142.121333pt;}
.y110{bottom:143.124000pt;}
.y6c{bottom:144.102667pt;}
.y12a{bottom:144.790667pt;}
.y7b{bottom:145.017333pt;}
.y14a{bottom:145.033333pt;}
.ye2{bottom:145.306667pt;}
.y47{bottom:145.994667pt;}
.y95{bottom:148.404000pt;}
.yaf{bottom:148.494667pt;}
.yee{bottom:148.701333pt;}
.y121{bottom:149.002667pt;}
.y38{bottom:149.626667pt;}
.y160{bottom:150.613333pt;}
.ye8{bottom:150.848000pt;}
.yfd{bottom:150.926667pt;}
.y2d{bottom:151.612000pt;}
.y13{bottom:151.624000pt;}
.y8a{bottom:153.293333pt;}
.y149{bottom:154.332000pt;}
.ydc{bottom:154.461333pt;}
.y57{bottom:156.006667pt;}
.y135{bottom:156.190062pt;}
.ybb{bottom:157.048000pt;}
.y62{bottom:157.186667pt;}
.y20{bottom:158.446667pt;}
.y10f{bottom:159.064000pt;}
.yd4{bottom:159.566667pt;}
.ya1{bottom:159.617333pt;}
.y15f{bottom:159.912000pt;}
.y16d{bottom:161.688000pt;}
.y46{bottom:161.934667pt;}
.yc8{bottom:162.857333pt;}
.y7a{bottom:163.082667pt;}
.yfc{bottom:163.546667pt;}
.y148{bottom:164.162667pt;}
.y6b{bottom:165.585333pt;}
.yed{bottom:166.766667pt;}
.y120{bottom:167.068000pt;}
.ye1{bottom:167.357333pt;}
.y89{bottom:167.550667pt;}
.y4{bottom:167.649333pt;}
.y15e{bottom:169.741333pt;}
.y94{bottom:170.454667pt;}
.yae{bottom:170.545333pt;}
.y37{bottom:171.677333pt;}
.ye7{bottom:172.898667pt;}
.y147{bottom:173.460000pt;}
.y2c{bottom:173.662667pt;}
.y56{bottom:174.072000pt;}
.y10e{bottom:175.004000pt;}
.yfb{bottom:176.165333pt;}
.y1f{bottom:176.512000pt;}
.y45{bottom:177.874667pt;}
.y61{bottom:179.002667pt;}
.y15d{bottom:179.040000pt;}
.yba{bottom:179.098667pt;}
.y12{bottom:179.292000pt;}
.yd3{bottom:179.884000pt;}
.ya0{bottom:180.849333pt;}
.y129{bottom:180.922667pt;}
.y79{bottom:181.812000pt;}
.y146{bottom:183.290667pt;}
.y6a{bottom:183.650667pt;}
.y136{bottom:184.378700pt;}
.yc7{bottom:184.908000pt;}
.yec{bottom:185.364000pt;}
.y88{bottom:185.793333pt;}
.y11f{bottom:186.206667pt;}
.y16c{bottom:187.724000pt;}
.y93{bottom:188.520000pt;}
.yad{bottom:188.612000pt;}
.yfa{bottom:188.785333pt;}
.y15c{bottom:188.869333pt;}
.ye0{bottom:189.408000pt;}
.y36{bottom:189.742667pt;}
.y10d{bottom:190.945333pt;}
.y2b{bottom:191.728000pt;}
.y55{bottom:192.138667pt;}
.y145{bottom:193.120000pt;}
.y60{bottom:193.261333pt;}
.y44{bottom:193.814667pt;}
.y1e{bottom:194.577333pt;}
.ye6{bottom:194.949333pt;}
.y11{bottom:197.357333pt;}
.y15b{bottom:198.698667pt;}
.yd2{bottom:199.682667pt;}
.y78{bottom:200.542667pt;}
.yb9{bottom:201.149333pt;}
.yf9{bottom:201.404000pt;}
.y69{bottom:201.716000pt;}
.y18{bottom:201.793333pt;}
.y144{bottom:202.418667pt;}
.yc6{bottom:202.973333pt;}
.yeb{bottom:203.429333pt;}
.y5d{bottom:203.937333pt;}
.y11e{bottom:204.272000pt;}
.y16b{bottom:205.789333pt;}
.y9f{bottom:206.474667pt;}
.yac{bottom:206.677333pt;}
.y10c{bottom:207.416000pt;}
.y5f{bottom:207.518667pt;}
.y87{bottom:207.844000pt;}
.y15a{bottom:207.997333pt;}
.y43{bottom:209.756000pt;}
.y2a{bottom:209.793333pt;}
.y92{bottom:210.570667pt;}
.ydf{bottom:211.458667pt;}
.y143{bottom:211.717333pt;}
.y35{bottom:211.793333pt;}
.y137{bottom:212.531089pt;}
.yf8{bottom:214.024000pt;}
.y54{bottom:214.189333pt;}
.y10{bottom:215.424000pt;}
.y1d{bottom:216.628000pt;}
.ye5{bottom:217.000000pt;}
.y159{bottom:217.296000pt;}
.y3{bottom:217.693333pt;}
.yd1{bottom:217.749333pt;}
.yea{bottom:217.945333pt;}
.y77{bottom:218.608000pt;}
.yc5{bottom:221.038667pt;}
.y9e{bottom:221.540000pt;}
.y142{bottom:221.546667pt;}
.y13a{bottom:221.578860pt;}
.y68{bottom:223.198667pt;}
.yb8{bottom:223.200000pt;}
.y16a{bottom:223.854667pt;}
.y10b{bottom:223.888000pt;}
.y42{bottom:225.696000pt;}
.y11d{bottom:226.229333pt;}
.yf7{bottom:226.642667pt;}
.y158{bottom:227.125333pt;}
.y91{bottom:228.637333pt;}
.yab{bottom:228.728000pt;}
.y5e{bottom:229.334667pt;}
.y34{bottom:229.858667pt;}
.y86{bottom:229.894667pt;}
.y141{bottom:231.376000pt;}
.y29{bottom:231.844000pt;}
.y53{bottom:232.254667pt;}
.yf{bottom:233.489333pt;}
.yde{bottom:233.509333pt;}
.y1c{bottom:234.694667pt;}
.y76{bottom:236.673333pt;}
.y157{bottom:236.956000pt;}
.y9d{bottom:237.413333pt;}
.yd0{bottom:238.065333pt;}
.yf6{bottom:239.262667pt;}
.y140{bottom:240.674667pt;}
.y10a{bottom:240.920000pt;}
.yb7{bottom:241.265333pt;}
.y2{bottom:241.604000pt;}
.y41{bottom:241.636000pt;}
.yc4{bottom:243.089333pt;}
.y11c{bottom:244.294667pt;}
.y67{bottom:244.680000pt;}
.y169{bottom:245.905333pt;}
.y156{bottom:246.254667pt;}
.y52{bottom:246.512000pt;}
.yaa{bottom:246.793333pt;}
.y33{bottom:247.924000pt;}
.y12d{bottom:249.208000pt;}
.y28{bottom:249.909333pt;}
.y90{bottom:250.688000pt;}
.y13f{bottom:251.190667pt;}
.yf5{bottom:251.881333pt;}
.y85{bottom:251.945333pt;}
.ye{bottom:252.593333pt;}
.ydb{bottom:252.760000pt;}
.y75{bottom:254.738667pt;}
.y1b{bottom:256.745333pt;}
.y155{bottom:256.770667pt;}
.y9c{bottom:257.210667pt;}
.y109{bottom:257.392000pt;}
.y40{bottom:257.576000pt;}
.ycf{bottom:260.116000pt;}
.y51{bottom:260.769333pt;}
.y13e{bottom:261.021333pt;}
.y11b{bottom:262.360000pt;}
.yb6{bottom:263.316000pt;}
.yf4{bottom:264.501333pt;}
.ya9{bottom:264.858667pt;}
.yc3{bottom:265.140000pt;}
.y12c{bottom:265.148000pt;}
.y1{bottom:265.514667pt;}
.y32{bottom:265.990667pt;}
.y66{bottom:266.162667pt;}
.y154{bottom:266.600000pt;}
.y84{bottom:270.010667pt;}
.y13d{bottom:270.318667pt;}
.y9b{bottom:271.468000pt;}
.y74{bottom:272.804000pt;}
.y108{bottom:273.332000pt;}
.y1a{bottom:274.810667pt;}
.y50{bottom:275.028000pt;}
.y3f{bottom:275.641333pt;}
.y153{bottom:275.898667pt;}
.yf3{bottom:277.120000pt;}
.yd{bottom:278.472000pt;}
.yce{bottom:279.916000pt;}
.y11a{bottom:280.916000pt;}
.y12b{bottom:281.088000pt;}
.y65{bottom:284.228000pt;}
.y83{bottom:284.268000pt;}
.y9a{bottom:284.716000pt;}
.y107{bottom:285.278667pt;}
.yb5{bottom:285.366667pt;}
.yf2{bottom:290.270667pt;}
.y73{bottom:291.534667pt;}
.y99{bottom:298.973333pt;}
.y119{bottom:298.981333pt;}
.y3e{bottom:299.336000pt;}
.y106{bottom:301.218667pt;}
.yf1{bottom:304.646667pt;}
.yc{bottom:323.246667pt;}
.y19{bottom:353.978667pt;}
.h15{height:12.353624pt;}
.he{height:16.877733pt;}
.h5{height:19.925200pt;}
.h10{height:20.565067pt;}
.h6{height:23.910400pt;}
.h13{height:25.729624pt;}
.h4{height:31.880400pt;}
.h12{height:32.482553pt;}
.h16{height:33.301200pt;}
.h14{height:33.306533pt;}
.hd{height:34.628400pt;}
.hc{height:34.633733pt;}
.h7{height:39.481733pt;}
.h9{height:39.487067pt;}
.hb{height:39.850400pt;}
.h8{height:43.636400pt;}
.hf{height:49.171660pt;}
.h3{height:52.995067pt;}
.h2{height:57.384800pt;}
.ha{height:82.650000pt;}
.h11{height:227.526560pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w2{width:302.359440pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x25{left:5.767409pt;}
.x23{left:9.480331pt;}
.x9{left:11.338667pt;}
.x8{left:14.545333pt;}
.x21{left:17.230162pt;}
.x22{left:18.131618pt;}
.x1{left:23.269333pt;}
.x10{left:27.781333pt;}
.x26{left:32.117580pt;}
.x20{left:35.754667pt;}
.xc{left:37.794667pt;}
.xd{left:43.636000pt;}
.xa{left:46.868000pt;}
.x29{left:55.057333pt;}
.x2{left:57.944000pt;}
.x1e{left:60.900000pt;}
.x16{left:64.788000pt;}
.xe{left:72.728000pt;}
.x24{left:76.238700pt;}
.x18{left:87.972000pt;}
.x11{left:90.517333pt;}
.x1b{left:109.565333pt;}
.x19{left:115.204000pt;}
.x28{left:120.176000pt;}
.x27{left:123.673333pt;}
.x1c{left:125.432000pt;}
.x1d{left:129.342667pt;}
.x2a{left:133.450667pt;}
.x13{left:146.266667pt;}
.x14{left:156.850667pt;}
.xf{left:159.220000pt;}
.xb{left:164.328000pt;}
.x12{left:170.745333pt;}
.x1a{left:173.250667pt;}
.x3{left:190.933333pt;}
.x17{left:201.197333pt;}
.x4{left:205.596000pt;}
.x5{left:208.182667pt;}
.x7{left:219.188000pt;}
.x6{left:221.125333pt;}
.x1f{left:229.778667pt;}
.x15{left:286.708000pt;}
}




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