
    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_7dd2bd70d2407265690a1a62.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_218ee13d64aec0bd4208f633.woff')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_65514a595454b81a554b94a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.222000;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_9ffa50e5a7a0165398c4c606.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_52f88753ec5192351cff03d8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_7dd2bd70d2407265690a1a62.woff')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_9ffa50e5a7a0165398c4c606.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_52f88753ec5192351cff03d8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.203000;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_d294699ea198f39e9bcd5c67.woff')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_50d0e6de4ec58e7732e53725.woff')format("woff");}.ffa{font-family:ffa;line-height:1.444000;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_9ffa50e5a7a0165398c4c606.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_52f88753ec5192351cff03d8.woff')format("woff");}.ffc{font-family:ffc;line-height:1.203000;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_1b57e736e8022d5858544838.woff')format("woff");}.ffd{font-family:ffd;line-height:1.483000;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_253c0f1544c3c6bb84f34563.woff')format("woff");}.ffe{font-family:ffe;line-height:1.303000;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_9ffa50e5a7a0165398c4c606.woff')format("woff");}.fff{font-family:fff;line-height:1.202000;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_52f88753ec5192351cff03d8.woff')format("woff");}.ff10{font-family:ff10;line-height:1.203000;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_4c56ad0ed2c8e4b7ec0f5caf.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:23.519989px;}
.v4{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.ls2{letter-spacing:-1.050000px;}
.ls8{letter-spacing:-0.705600px;}
.ls3{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.470400px;}
.ls9{letter-spacing:-0.294000px;}
.lsa{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000005px;}
.ls4{letter-spacing:0.000009px;}
.ls5{letter-spacing:0.000013px;}
.lsb{letter-spacing:0.000097px;}
.ls6{letter-spacing:0.000100px;}
.ls7{letter-spacing:0.000111px;}
.ls0{letter-spacing:9.360000px;}
.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;}
}
.ws63{word-spacing:-14.700000px;}
.ws12{word-spacing:-13.818000px;}
.ws155{word-spacing:-13.347600px;}
.ws62{word-spacing:-13.112400px;}
.ws5{word-spacing:-12.483600px;}
.ws6{word-spacing:-12.420000px;}
.ws7{word-spacing:-11.880000px;}
.wsea{word-spacing:-11.448000px;}
.wsb6{word-spacing:-11.426400px;}
.ws156{word-spacing:-10.665000px;}
.wsb7{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.117800px;}
.wsde{word-spacing:-9.936000px;}
.ws3{word-spacing:-9.855000px;}
.wsb5{word-spacing:-9.672600px;}
.ws189{word-spacing:-9.315000px;}
.ws1{word-spacing:-8.148000px;}
.ws13{word-spacing:-7.465500px;}
.ws4{word-spacing:-6.898500px;}
.ws95{word-spacing:-6.468000px;}
.ws11{word-spacing:-3.108000px;}
.ws136{word-spacing:-2.352000px;}
.ws10{word-spacing:-1.344000px;}
.wsc8{word-spacing:-1.234800px;}
.ws66{word-spacing:-1.117200px;}
.ws145{word-spacing:-1.058400px;}
.ws15a{word-spacing:-0.940800px;}
.ws13c{word-spacing:-0.882000px;}
.ws104{word-spacing:-0.588000px;}
.ws16{word-spacing:-0.529200px;}
.ws2c{word-spacing:-0.470400px;}
.ws8c{word-spacing:-0.411600px;}
.wsc6{word-spacing:-0.405000px;}
.ws33{word-spacing:-0.352800px;}
.ws76{word-spacing:-0.294000px;}
.ws11b{word-spacing:-0.235200px;}
.ws77{word-spacing:-0.176400px;}
.ws6d{word-spacing:-0.117600px;}
.ws10e{word-spacing:-0.058800px;}
.ws192{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.wse7{word-spacing:0.048000px;}
.ws101{word-spacing:0.058800px;}
.ws141{word-spacing:0.117600px;}
.ws64{word-spacing:0.176400px;}
.wse{word-spacing:0.210000px;}
.ws74{word-spacing:0.235200px;}
.wsc9{word-spacing:0.294000px;}
.wsce{word-spacing:0.352800px;}
.ws79{word-spacing:0.411600px;}
.ws7e{word-spacing:0.470400px;}
.ws36{word-spacing:0.529200px;}
.ws6f{word-spacing:0.588000px;}
.ws139{word-spacing:0.646800px;}
.ws86{word-spacing:0.705600px;}
.wsab{word-spacing:0.764400px;}
.ws130{word-spacing:0.823200px;}
.ws17f{word-spacing:0.882000px;}
.ws99{word-spacing:0.940800px;}
.ws87{word-spacing:0.999600px;}
.wsf{word-spacing:1.050000px;}
.ws65{word-spacing:1.058400px;}
.ws31{word-spacing:1.117200px;}
.wsad{word-spacing:1.176000px;}
.ws4c{word-spacing:1.234800px;}
.wsb{word-spacing:1.260000px;}
.wsd2{word-spacing:1.293600px;}
.wsc{word-spacing:1.302000px;}
.wsa{word-spacing:1.344000px;}
.ws134{word-spacing:1.352400px;}
.ws15e{word-spacing:1.411200px;}
.wsd{word-spacing:1.470000px;}
.ws81{word-spacing:1.528800px;}
.ws107{word-spacing:1.587600px;}
.ws37{word-spacing:1.646400px;}
.ws14c{word-spacing:1.705200px;}
.ws3d{word-spacing:1.710000px;}
.ws78{word-spacing:1.822800px;}
.ws93{word-spacing:1.881600px;}
.ws9e{word-spacing:1.940400px;}
.wsd0{word-spacing:1.999200px;}
.ws24{word-spacing:2.058000px;}
.ws127{word-spacing:2.116800px;}
.ws85{word-spacing:2.175600px;}
.ws17c{word-spacing:2.234400px;}
.ws26{word-spacing:2.293200px;}
.ws9a{word-spacing:2.352000px;}
.ws48{word-spacing:2.410800px;}
.ws188{word-spacing:2.469600px;}
.ws25{word-spacing:2.528400px;}
.wsf7{word-spacing:2.587200px;}
.ws15{word-spacing:2.640000px;}
.wsb0{word-spacing:2.646000px;}
.ws82{word-spacing:2.704800px;}
.ws6c{word-spacing:2.763600px;}
.ws2a{word-spacing:2.822400px;}
.ws40{word-spacing:2.881200px;}
.ws169{word-spacing:2.925000px;}
.ws68{word-spacing:2.940000px;}
.wsac{word-spacing:2.998800px;}
.ws11e{word-spacing:3.057600px;}
.ws14{word-spacing:3.072000px;}
.ws7f{word-spacing:3.116400px;}
.wsbf{word-spacing:3.175200px;}
.ws8b{word-spacing:3.234000px;}
.ws80{word-spacing:3.292800px;}
.ws49{word-spacing:3.351600px;}
.ws105{word-spacing:3.410400px;}
.ws73{word-spacing:3.469200px;}
.wsdc{word-spacing:3.528000px;}
.ws52{word-spacing:3.586800px;}
.wsa2{word-spacing:3.645600px;}
.ws173{word-spacing:3.704400px;}
.ws35{word-spacing:3.763200px;}
.ws5e{word-spacing:3.822000px;}
.wseb{word-spacing:3.880800px;}
.ws110{word-spacing:3.939600px;}
.wsbb{word-spacing:3.998400px;}
.ws7c{word-spacing:4.057200px;}
.ws1d{word-spacing:4.116000px;}
.ws91{word-spacing:4.174800px;}
.ws34{word-spacing:4.233600px;}
.wscc{word-spacing:4.292400px;}
.ws13b{word-spacing:4.351200px;}
.ws142{word-spacing:4.410000px;}
.ws3f{word-spacing:4.468800px;}
.ws10f{word-spacing:4.527600px;}
.ws157{word-spacing:4.586400px;}
.ws59{word-spacing:4.645200px;}
.ws75{word-spacing:4.704000px;}
.ws12b{word-spacing:4.762800px;}
.ws10a{word-spacing:4.821600px;}
.ws5f{word-spacing:4.880400px;}
.wsa8{word-spacing:4.939200px;}
.wsd5{word-spacing:4.998000px;}
.ws39{word-spacing:5.056800px;}
.wsae{word-spacing:5.115600px;}
.ws3c{word-spacing:5.174400px;}
.wsbd{word-spacing:5.233200px;}
.ws22{word-spacing:5.292000px;}
.ws67{word-spacing:5.350800px;}
.wsf0{word-spacing:5.409600px;}
.ws9f{word-spacing:5.468400px;}
.ws38{word-spacing:5.527200px;}
.ws1a{word-spacing:5.586000px;}
.wsdd{word-spacing:5.644800px;}
.wsa4{word-spacing:5.703600px;}
.ws149{word-spacing:5.762400px;}
.wsfb{word-spacing:5.821200px;}
.ws60{word-spacing:5.880000px;}
.ws98{word-spacing:5.938800px;}
.ws4b{word-spacing:5.997600px;}
.ws3a{word-spacing:6.056400px;}
.ws41{word-spacing:6.115200px;}
.wsda{word-spacing:6.174000px;}
.wsca{word-spacing:6.232800px;}
.ws6e{word-spacing:6.291600px;}
.ws128{word-spacing:6.350400px;}
.ws29{word-spacing:6.409200px;}
.wsdb{word-spacing:6.468000px;}
.wsba{word-spacing:6.526800px;}
.ws10c{word-spacing:6.585600px;}
.ws96{word-spacing:6.644400px;}
.ws144{word-spacing:6.703200px;}
.wsfe{word-spacing:6.762000px;}
.ws7d{word-spacing:6.820800px;}
.ws47{word-spacing:6.879600px;}
.wsc5{word-spacing:6.938400px;}
.ws9d{word-spacing:6.997200px;}
.ws14a{word-spacing:7.056000px;}
.ws42{word-spacing:7.114800px;}
.ws11d{word-spacing:7.173600px;}
.ws20{word-spacing:7.232400px;}
.ws8d{word-spacing:7.291200px;}
.ws179{word-spacing:7.350000px;}
.ws51{word-spacing:7.408800px;}
.wsa5{word-spacing:7.526400px;}
.ws109{word-spacing:7.585200px;}
.wsbe{word-spacing:7.644000px;}
.wsed{word-spacing:7.702800px;}
.ws5b{word-spacing:7.761600px;}
.ws7a{word-spacing:7.820400px;}
.wsb4{word-spacing:7.879200px;}
.wsd9{word-spacing:7.938000px;}
.ws44{word-spacing:7.996800px;}
.ws19{word-spacing:8.055600px;}
.ws112{word-spacing:8.114400px;}
.ws16d{word-spacing:8.173200px;}
.wsd1{word-spacing:8.232000px;}
.ws5a{word-spacing:8.290800px;}
.ws153{word-spacing:8.349600px;}
.ws23{word-spacing:8.408400px;}
.ws125{word-spacing:8.467200px;}
.ws12e{word-spacing:8.526000px;}
.ws53{word-spacing:8.584800px;}
.wsd4{word-spacing:8.643600px;}
.ws1e{word-spacing:8.702400px;}
.wsc7{word-spacing:8.761200px;}
.ws4f{word-spacing:8.820000px;}
.ws175{word-spacing:8.878800px;}
.ws55{word-spacing:8.937600px;}
.wsf8{word-spacing:8.996400px;}
.wsc4{word-spacing:9.055200px;}
.wsd7{word-spacing:9.114000px;}
.wsf3{word-spacing:9.172800px;}
.wsfd{word-spacing:9.231600px;}
.ws90{word-spacing:9.290400px;}
.ws138{word-spacing:9.349200px;}
.wsa0{word-spacing:9.408000px;}
.ws184{word-spacing:9.466800px;}
.ws56{word-spacing:9.525600px;}
.ws12f{word-spacing:9.584400px;}
.ws16f{word-spacing:9.643200px;}
.ws17a{word-spacing:9.702000px;}
.ws116{word-spacing:9.760800px;}
.wsa3{word-spacing:9.819600px;}
.wsee{word-spacing:9.878400px;}
.ws28{word-spacing:9.937200px;}
.ws27{word-spacing:9.996000px;}
.ws97{word-spacing:10.054800px;}
.ws2b{word-spacing:10.113600px;}
.ws16b{word-spacing:10.172400px;}
.ws117{word-spacing:10.290000px;}
.ws174{word-spacing:10.348800px;}
.ws89{word-spacing:10.407600px;}
.wsb2{word-spacing:10.525200px;}
.ws124{word-spacing:10.584000px;}
.ws137{word-spacing:10.642800px;}
.wsbc{word-spacing:10.701600px;}
.ws8f{word-spacing:10.760400px;}
.ws5d{word-spacing:10.819200px;}
.wsaa{word-spacing:10.878000px;}
.ws8e{word-spacing:10.936800px;}
.ws126{word-spacing:10.995600px;}
.ws14b{word-spacing:11.054400px;}
.ws159{word-spacing:11.113200px;}
.ws18{word-spacing:11.172000px;}
.ws70{word-spacing:11.230800px;}
.ws5c{word-spacing:11.289600px;}
.wsb1{word-spacing:11.348400px;}
.ws32{word-spacing:11.407200px;}
.wscd{word-spacing:11.466000px;}
.ws71{word-spacing:11.524800px;}
.ws6b{word-spacing:11.583600px;}
.ws11a{word-spacing:11.642400px;}
.wsf1{word-spacing:11.701200px;}
.ws148{word-spacing:11.760000px;}
.ws6a{word-spacing:11.818800px;}
.ws100{word-spacing:11.877600px;}
.ws3e{word-spacing:11.880000px;}
.wsc1{word-spacing:11.936400px;}
.ws14d{word-spacing:11.995200px;}
.ws161{word-spacing:12.054000px;}
.ws30{word-spacing:12.112800px;}
.ws15c{word-spacing:12.171600px;}
.ws83{word-spacing:12.230400px;}
.ws17{word-spacing:12.289200px;}
.wsb9{word-spacing:12.348000px;}
.ws140{word-spacing:12.406800px;}
.ws11f{word-spacing:12.465600px;}
.ws15d{word-spacing:12.583200px;}
.ws1b{word-spacing:12.642000px;}
.wsc0{word-spacing:12.700800px;}
.ws135{word-spacing:12.759600px;}
.ws18f{word-spacing:12.818400px;}
.ws13d{word-spacing:12.877200px;}
.ws111{word-spacing:12.936000px;}
.wsef{word-spacing:12.994800px;}
.ws12a{word-spacing:13.053600px;}
.ws123{word-spacing:13.112400px;}
.ws120{word-spacing:13.230000px;}
.ws8a{word-spacing:13.347600px;}
.ws4d{word-spacing:13.406400px;}
.ws2f{word-spacing:13.465200px;}
.ws46{word-spacing:13.524000px;}
.ws121{word-spacing:13.582800px;}
.wsfa{word-spacing:13.641600px;}
.wsb3{word-spacing:13.700400px;}
.ws50{word-spacing:13.759200px;}
.ws2d{word-spacing:13.818000px;}
.ws183{word-spacing:13.876800px;}
.wsd3{word-spacing:13.994400px;}
.wsa6{word-spacing:14.112000px;}
.ws45{word-spacing:14.170800px;}
.wsff{word-spacing:14.229600px;}
.wsfc{word-spacing:14.288400px;}
.ws13f{word-spacing:14.347200px;}
.ws129{word-spacing:14.406000px;}
.ws190{word-spacing:14.464800px;}
.ws163{word-spacing:14.523600px;}
.ws143{word-spacing:14.582400px;}
.wsf6{word-spacing:14.641200px;}
.ws106{word-spacing:14.700000px;}
.wsf4{word-spacing:14.758800px;}
.ws21{word-spacing:14.817600px;}
.ws162{word-spacing:14.935200px;}
.ws12c{word-spacing:14.994000px;}
.ws13a{word-spacing:15.052800px;}
.wsf2{word-spacing:15.111600px;}
.ws113{word-spacing:15.170400px;}
.ws146{word-spacing:15.229200px;}
.ws3b{word-spacing:15.288000px;}
.ws102{word-spacing:15.346800px;}
.ws167{word-spacing:15.405600px;}
.wsf5{word-spacing:15.523200px;}
.ws164{word-spacing:15.582000px;}
.ws69{word-spacing:15.640800px;}
.wsaf{word-spacing:15.699600px;}
.ws94{word-spacing:15.817200px;}
.ws18a{word-spacing:15.876000px;}
.ws15f{word-spacing:15.993600px;}
.ws132{word-spacing:16.052400px;}
.ws115{word-spacing:16.111200px;}
.wsa7{word-spacing:16.170000px;}
.ws14f{word-spacing:16.228800px;}
.ws58{word-spacing:16.287600px;}
.ws15b{word-spacing:16.346400px;}
.ws11c{word-spacing:16.464000px;}
.ws108{word-spacing:16.522800px;}
.ws177{word-spacing:16.581600px;}
.wsd8{word-spacing:16.640400px;}
.ws150{word-spacing:16.699200px;}
.ws178{word-spacing:16.758000px;}
.ws1c{word-spacing:16.816800px;}
.ws43{word-spacing:16.934400px;}
.wsc2{word-spacing:17.052000px;}
.ws7b{word-spacing:17.110800px;}
.ws18e{word-spacing:17.169600px;}
.wsc3{word-spacing:17.346000px;}
.ws186{word-spacing:17.404800px;}
.ws72{word-spacing:17.463600px;}
.ws180{word-spacing:17.640000px;}
.ws2e{word-spacing:17.698800px;}
.wsa1{word-spacing:17.992800px;}
.ws16c{word-spacing:18.051600px;}
.ws9b{word-spacing:18.110400px;}
.ws17d{word-spacing:18.228000px;}
.ws84{word-spacing:18.463200px;}
.ws147{word-spacing:18.580800px;}
.ws122{word-spacing:18.639600px;}
.ws171{word-spacing:18.816000px;}
.ws18c{word-spacing:18.874800px;}
.ws4a{word-spacing:18.933600px;}
.wscf{word-spacing:19.110000px;}
.ws88{word-spacing:19.227600px;}
.ws166{word-spacing:19.286400px;}
.ws61{word-spacing:19.345200px;}
.ws160{word-spacing:19.462800px;}
.ws103{word-spacing:19.698000px;}
.wsd6{word-spacing:19.815600px;}
.ws4e{word-spacing:19.874400px;}
.ws154{word-spacing:19.992000px;}
.ws176{word-spacing:20.050800px;}
.ws1f{word-spacing:20.168400px;}
.ws131{word-spacing:20.344800px;}
.ws17e{word-spacing:20.403600px;}
.ws170{word-spacing:20.580000px;}
.ws185{word-spacing:20.697600px;}
.ws151{word-spacing:20.815200px;}
.ws187{word-spacing:20.991600px;}
.ws181{word-spacing:21.050400px;}
.ws10b{word-spacing:21.109200px;}
.ws118{word-spacing:21.226800px;}
.ws54{word-spacing:21.285600px;}
.ws119{word-spacing:21.403200px;}
.ws17b{word-spacing:21.579600px;}
.ws10d{word-spacing:21.697200px;}
.ws114{word-spacing:21.873600px;}
.wsec{word-spacing:21.991200px;}
.ws133{word-spacing:22.520400px;}
.ws182{word-spacing:22.696800px;}
.ws12d{word-spacing:22.814400px;}
.ws13e{word-spacing:23.461200px;}
.wsb8{word-spacing:24.049200px;}
.ws14e{word-spacing:24.108000px;}
.ws18d{word-spacing:24.813600px;}
.wsa9{word-spacing:25.048800px;}
.wscb{word-spacing:25.636800px;}
.ws18b{word-spacing:25.930800px;}
.ws16e{word-spacing:26.577600px;}
.ws172{word-spacing:27.812400px;}
.ws152{word-spacing:28.047600px;}
.ws191{word-spacing:29.400000px;}
.ws168{word-spacing:30.282000px;}
.ws92{word-spacing:31.516800px;}
.wsdf{word-spacing:31.922868px;}
.ws57{word-spacing:32.222400px;}
.wsf9{word-spacing:33.045600px;}
.ws165{word-spacing:33.398400px;}
.ws9c{word-spacing:34.868400px;}
.ws16a{word-spacing:36.750000px;}
.ws158{word-spacing:39.278400px;}
.wse1{word-spacing:172.068546px;}
.wse0{word-spacing:182.528996px;}
.wse3{word-spacing:227.698368px;}
.wse4{word-spacing:277.295413px;}
.wse8{word-spacing:282.217200px;}
.wse6{word-spacing:304.078068px;}
.wse5{word-spacing:480.467960px;}
.wse2{word-spacing:998.104191px;}
.ws2{word-spacing:1389.664768px;}
.ws0{word-spacing:1945.846745px;}
.wse9{word-spacing:2036.630346px;}
._8{margin-left:-2890.932630px;}
._13{margin-left:-40.760943px;}
._15{margin-left:-24.243079px;}
._f{margin-left:-22.505994px;}
._b{margin-left:-18.874682px;}
._d{margin-left:-15.949635px;}
._5f{margin-left:-12.294878px;}
._e{margin-left:-10.863007px;}
._11{margin-left:-9.433063px;}
._12{margin-left:-7.629594px;}
._3{margin-left:-6.249000px;}
._17{margin-left:-5.083288px;}
._6{margin-left:-3.960000px;}
._2{margin-left:-2.891812px;}
._0{margin-left:-1.716000px;}
._1{width:1.085812px;}
._7{width:2.502376px;}
._c{width:3.571148px;}
._18{width:4.609381px;}
._a{width:6.549410px;}
._61{width:7.590321px;}
._9{width:8.684579px;}
._1a{width:10.416627px;}
._19{width:11.477660px;}
._14{width:12.645065px;}
._5{width:14.636990px;}
._5e{width:16.486175px;}
._4{width:17.551798px;}
._60{width:18.649176px;}
._10{width:22.936573px;}
._16{width:24.224789px;}
._63{width:33.120000px;}
._40{width:39.853790px;}
._22{width:52.644546px;}
._62{width:55.080000px;}
._23{width:72.508196px;}
._5a{width:84.769790px;}
._21{width:89.123413px;}
._32{width:95.203978px;}
._5c{width:116.593790px;}
._4c{width:134.305790px;}
._34{width:148.801790px;}
._2e{width:165.229790px;}
._24{width:169.117790px;}
._3c{width:172.297602px;}
._55{width:176.941790px;}
._56{width:179.629790px;}
._1b{width:180.833412px;}
._1e{width:185.345412px;}
._59{width:190.441602px;}
._2c{width:193.040996px;}
._49{width:198.877790px;}
._2f{width:208.621790px;}
._39{width:238.210368px;}
._1c{width:245.237412px;}
._4d{width:247.873790px;}
._51{width:251.533790px;}
._3d{width:255.709790px;}
._41{width:260.749790px;}
._28{width:280.573790px;}
._58{width:281.725790px;}
._29{width:287.807413px;}
._25{width:292.729200px;}
._57{width:305.911978px;}
._36{width:313.836445px;}
._1d{width:315.479600px;}
._1f{width:319.649412px;}
._3a{width:322.573790px;}
._20{width:384.577790px;}
._3b{width:387.302990px;}
._43{width:400.394990px;}
._50{width:405.866990px;}
._2a{width:414.631755px;}
._54{width:427.862990px;}
._45{width:429.062990px;}
._52{width:488.073178px;}
._26{width:490.979960px;}
._4b{width:492.134990px;}
._46{width:528.223063px;}
._4f{width:543.338990px;}
._47{width:568.214990px;}
._2b{width:573.392436px;}
._35{width:601.128613px;}
._48{width:618.760680px;}
._5b{width:635.930990px;}
._38{width:643.802990px;}
._27{width:673.434123px;}
._33{width:760.406404px;}
._30{width:804.301160px;}
._53{width:864.314950px;}
._4e{width:871.562404px;}
._2d{width:874.838404px;}
._4a{width:875.994669px;}
._3f{width:877.430404px;}
._31{width:1008.616191px;}
._3e{width:1080.602950px;}
._37{width:1155.374950px;}
._44{width:1185.006083px;}
._42{width:1211.788737px;}
._5d{width:1222.504609px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.500000px;}
.fsc{font-size:41.160000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fsa{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fsd{font-size:55.199999px;}
.fsb{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.800000px;}
.fs9{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:90.000149px;}
.y9{bottom:91.500000px;}
.y76{bottom:92.551203px;}
.y156{bottom:97.613697px;}
.y8{bottom:103.500000px;}
.y67{bottom:103.500149px;}
.y79{bottom:108.000149px;}
.y75{bottom:110.551197px;}
.yce{bottom:110.989803px;}
.y155{bottom:111.113697px;}
.y7{bottom:115.500000px;}
.ye6{bottom:116.787449px;}
.y158{bottom:119.551197px;}
.y66{bottom:121.500149px;}
.y11f{bottom:124.105797px;}
.y154{bottom:124.613697px;}
.y6{bottom:127.500000px;}
.ycd{bottom:128.493748px;}
.y74{bottom:128.551197px;}
.ye5{bottom:130.287449px;}
.y157{bottom:133.051197px;}
.y11e{bottom:137.605797px;}
.y153{bottom:138.113697px;}
.y5{bottom:139.500000px;}
.ye4{bottom:143.787449px;}
.ycc{bottom:145.997704px;}
.y73{bottom:146.551197px;}
.y11d{bottom:151.105797px;}
.y4{bottom:151.500000px;}
.y152{bottom:151.613697px;}
.ye3{bottom:157.287449px;}
.ycb{bottom:160.997704px;}
.y3{bottom:163.500000px;}
.y72{bottom:164.551197px;}
.y65{bottom:164.551346px;}
.y11c{bottom:164.605797px;}
.y151{bottom:165.113697px;}
.y2{bottom:175.500000px;}
.y11b{bottom:178.105797px;}
.yca{bottom:178.501648px;}
.y150{bottom:178.613697px;}
.y71{bottom:182.551197px;}
.y64{bottom:182.551346px;}
.y11a{bottom:191.605797px;}
.y14f{bottom:192.113708px;}
.yc9{bottom:193.501648px;}
.ye2{bottom:197.043297px;}
.y70{bottom:200.551208px;}
.y63{bottom:200.551346px;}
.y119{bottom:205.105797px;}
.y14e{bottom:205.613708px;}
.yc8{bottom:211.005455px;}
.y11{bottom:213.431694px;}
.y6f{bottom:218.551208px;}
.y62{bottom:218.551346px;}
.y118{bottom:218.605797px;}
.y14d{bottom:219.113708px;}
.y10{bottom:226.931694px;}
.ye1{bottom:227.551208px;}
.yc7{bottom:228.509560px;}
.y15{bottom:231.431694px;}
.y117{bottom:232.105797px;}
.y14c{bottom:232.613708px;}
.y6e{bottom:236.551208px;}
.y61{bottom:236.551346px;}
.y14{bottom:240.431694px;}
.ye0{bottom:241.051208px;}
.yf{bottom:244.931694px;}
.y116{bottom:245.605797px;}
.yc6{bottom:246.013504px;}
.y14b{bottom:246.113708px;}
.ye{bottom:253.931694px;}
.y6d{bottom:254.551208px;}
.y60{bottom:254.551346px;}
.y13{bottom:258.431694px;}
.y115{bottom:259.105797px;}
.y14a{bottom:259.613708px;}
.yc5{bottom:263.517448px;}
.yd{bottom:267.431694px;}
.y6c{bottom:272.551208px;}
.y5f{bottom:272.551346px;}
.y114{bottom:272.605797px;}
.y149{bottom:273.113708px;}
.yc4{bottom:278.517448px;}
.yc{bottom:280.931694px;}
.y12{bottom:285.431694px;}
.y113{bottom:286.105797px;}
.y148{bottom:286.613708px;}
.y6b{bottom:290.551208px;}
.y5e{bottom:290.551346px;}
.yc3{bottom:296.021255px;}
.y112{bottom:299.605797px;}
.y147{bottom:300.113708px;}
.y5d{bottom:308.551208px;}
.y111{bottom:313.105797px;}
.yc2{bottom:313.525200px;}
.y146{bottom:313.613708px;}
.y5c{bottom:326.551208px;}
.y110{bottom:326.605797px;}
.y145{bottom:327.113708px;}
.yc1{bottom:331.029144px;}
.y10f{bottom:340.105797px;}
.y144{bottom:340.613708px;}
.y5b{bottom:344.551208px;}
.yc0{bottom:348.533089px;}
.y2e{bottom:351.354149px;}
.y10e{bottom:353.605797px;}
.y143{bottom:354.113708px;}
.y5a{bottom:362.551208px;}
.ybf{bottom:366.037056px;}
.y10d{bottom:367.105797px;}
.y142{bottom:367.613708px;}
.y2d{bottom:369.354149px;}
.y59{bottom:380.551208px;}
.y10c{bottom:380.605797px;}
.y141{bottom:381.113708px;}
.ybe{bottom:383.541000px;}
.y2c{bottom:391.854172px;}
.y10b{bottom:394.105820px;}
.y140{bottom:394.613708px;}
.y58{bottom:398.551208px;}
.ybd{bottom:401.044968px;}
.y10a{bottom:407.605820px;}
.y13f{bottom:408.113708px;}
.y2b{bottom:409.854172px;}
.y57{bottom:416.551208px;}
.ybc{bottom:418.548889px;}
.y109{bottom:421.105820px;}
.y13e{bottom:421.613708px;}
.y77{bottom:423.751328px;}
.y2a{bottom:427.854172px;}
.y56{bottom:434.551208px;}
.y108{bottom:434.605820px;}
.y13d{bottom:435.113708px;}
.ybb{bottom:436.052856px;}
.y29{bottom:445.854172px;}
.y107{bottom:448.105820px;}
.y13c{bottom:448.613708px;}
.y55{bottom:452.551208px;}
.yba{bottom:453.556778px;}
.y106{bottom:461.605820px;}
.y13b{bottom:462.113708px;}
.y28{bottom:468.354172px;}
.y54{bottom:470.551208px;}
.yb9{bottom:471.060745px;}
.y105{bottom:475.105820px;}
.y13a{bottom:475.613708px;}
.y27{bottom:486.354172px;}
.y53{bottom:488.551208px;}
.yb8{bottom:488.564529px;}
.y104{bottom:488.605820px;}
.y139{bottom:489.113708px;}
.y103{bottom:502.105820px;}
.y138{bottom:502.613708px;}
.y26{bottom:504.354172px;}
.yb7{bottom:506.068497px;}
.y52{bottom:506.551208px;}
.y102{bottom:515.605820px;}
.y137{bottom:516.113708px;}
.y25{bottom:522.354172px;}
.yb6{bottom:523.572464px;}
.y51{bottom:524.551208px;}
.y136{bottom:529.613708px;}
.y24{bottom:540.354172px;}
.yb5{bottom:541.076385px;}
.y50{bottom:542.551208px;}
.y135{bottom:543.113708px;}
.y134{bottom:556.613708px;}
.y23{bottom:558.354172px;}
.yb4{bottom:558.580353px;}
.y4f{bottom:560.551208px;}
.y133{bottom:570.113708px;}
.yb3{bottom:576.084320px;}
.y22{bottom:576.354172px;}
.y4e{bottom:578.551208px;}
.y132{bottom:583.613708px;}
.y101{bottom:584.605820px;}
.y97{bottom:591.026230px;}
.yb2{bottom:593.588242px;}
.y4d{bottom:596.551208px;}
.y131{bottom:597.113708px;}
.y21{bottom:598.854172px;}
.y96{bottom:606.026230px;}
.y130{bottom:610.613708px;}
.yb1{bottom:611.092209px;}
.y4c{bottom:614.551208px;}
.y100{bottom:615.113708px;}
.y20{bottom:616.854172px;}
.y95{bottom:621.026230px;}
.y12f{bottom:624.113708px;}
.yb0{bottom:628.596130px;}
.yff{bottom:628.613708px;}
.y4b{bottom:632.551208px;}
.y1f{bottom:634.854172px;}
.y12e{bottom:637.613708px;}
.y94{bottom:638.530197px;}
.yaf{bottom:646.100098px;}
.y4a{bottom:650.551208px;}
.y12d{bottom:651.113708px;}
.y1e{bottom:652.854172px;}
.y93{bottom:653.530197px;}
.yfe{bottom:655.613708px;}
.yae{bottom:663.603882px;}
.y12c{bottom:664.613708px;}
.y92{bottom:668.530197px;}
.y49{bottom:668.551208px;}
.yfd{bottom:669.113708px;}
.y1d{bottom:670.854172px;}
.y12b{bottom:678.113708px;}
.yad{bottom:681.107986px;}
.y91{bottom:686.034164px;}
.y48{bottom:686.551208px;}
.y12a{bottom:691.613708px;}
.y1c{bottom:693.354172px;}
.yfc{bottom:696.113708px;}
.yac{bottom:698.611816px;}
.y90{bottom:701.034164px;}
.y47{bottom:704.551208px;}
.y129{bottom:705.113708px;}
.yfb{bottom:709.613708px;}
.y1b{bottom:711.354172px;}
.yab{bottom:716.115738px;}
.y8f{bottom:718.538086px;}
.y128{bottom:718.613708px;}
.y46{bottom:722.551208px;}
.y1a{bottom:729.354172px;}
.yaa{bottom:731.115738px;}
.y127{bottom:732.113708px;}
.y8e{bottom:733.538086px;}
.yfa{bottom:736.613708px;}
.y45{bottom:740.551208px;}
.y126{bottom:745.613708px;}
.y19{bottom:747.354172px;}
.y8d{bottom:748.538086px;}
.ya9{bottom:748.619705px;}
.yf9{bottom:750.113708px;}
.y44{bottom:758.551208px;}
.y125{bottom:759.113708px;}
.y18{bottom:765.354172px;}
.y8c{bottom:766.042053px;}
.ya8{bottom:766.123672px;}
.y124{bottom:772.613708px;}
.y43{bottom:776.551208px;}
.yf8{bottom:777.113708px;}
.ydf{bottom:779.488037px;}
.y8b{bottom:781.042053px;}
.y17{bottom:783.354126px;}
.ya7{bottom:783.627594px;}
.y123{bottom:786.113708px;}
.y42{bottom:794.551208px;}
.y8a{bottom:796.042053px;}
.yde{bottom:796.992004px;}
.y122{bottom:799.613708px;}
.ya6{bottom:801.131561px;}
.y16{bottom:805.854126px;}
.y89{bottom:811.042053px;}
.y41{bottom:812.551208px;}
.yf7{bottom:813.113708px;}
.ydd{bottom:814.495972px;}
.ya5{bottom:816.131561px;}
.y88{bottom:826.042053px;}
.yf6{bottom:826.613708px;}
.y40{bottom:830.551208px;}
.ydc{bottom:831.999939px;}
.ya4{bottom:833.635529px;}
.yf5{bottom:840.113708px;}
.y87{bottom:843.546021px;}
.y3f{bottom:848.551208px;}
.ydb{bottom:849.503815px;}
.ya3{bottom:851.139404px;}
.yf4{bottom:853.613708px;}
.y86{bottom:858.546021px;}
.y32{bottom:864.316681px;}
.y3e{bottom:866.551208px;}
.yda{bottom:867.007690px;}
.y121{bottom:867.113708px;}
.ya2{bottom:868.643372px;}
.y85{bottom:876.049988px;}
.yf3{bottom:880.613708px;}
.yd9{bottom:884.511566px;}
.y3d{bottom:884.551208px;}
.y31{bottom:885.316681px;}
.ya1{bottom:886.147339px;}
.y84{bottom:891.049988px;}
.yf2{bottom:894.113708px;}
.yd8{bottom:902.015533px;}
.y3c{bottom:902.551208px;}
.ya0{bottom:903.651123px;}
.y83{bottom:906.049988px;}
.yf1{bottom:907.613708px;}
.yd7{bottom:917.015533px;}
.y3b{bottom:920.551208px;}
.yf0{bottom:921.113708px;}
.y9f{bottom:921.155273px;}
.y82{bottom:923.553864px;}
.yd6{bottom:934.519500px;}
.y120{bottom:934.613708px;}
.y30{bottom:936.316681px;}
.y3a{bottom:938.551208px;}
.y81{bottom:938.553864px;}
.y9e{bottom:938.659058px;}
.yef{bottom:948.113708px;}
.yd5{bottom:952.023468px;}
.y80{bottom:953.553864px;}
.y9d{bottom:956.163025px;}
.y39{bottom:956.551208px;}
.yee{bottom:961.613708px;}
.y7f{bottom:968.553864px;}
.yd4{bottom:969.527435px;}
.y9c{bottom:973.779419px;}
.y38{bottom:974.551208px;}
.yed{bottom:975.113708px;}
.y2f{bottom:975.316681px;}
.y7e{bottom:983.553864px;}
.yd3{bottom:984.527435px;}
.yec{bottom:988.613708px;}
.y9b{bottom:988.779419px;}
.y37{bottom:992.551208px;}
.y7d{bottom:998.553864px;}
.yd2{bottom:999.527435px;}
.yeb{bottom:1002.113708px;}
.y9a{bottom:1003.779419px;}
.y36{bottom:1010.551208px;}
.yd1{bottom:1014.527435px;}
.yea{bottom:1015.613708px;}
.y7c{bottom:1016.170349px;}
.y99{bottom:1018.779419px;}
.y6a{bottom:1028.551208px;}
.y35{bottom:1028.551392px;}
.ye9{bottom:1029.113708px;}
.yd0{bottom:1032.031769px;}
.y7b{bottom:1033.674133px;}
.y98{bottom:1036.284027px;}
.y1{bottom:1036.426208px;}
.ye8{bottom:1042.613708px;}
.y69{bottom:1046.551208px;}
.y34{bottom:1046.551392px;}
.y7a{bottom:1050.174133px;}
.y78{bottom:1052.070740px;}
.ycf{bottom:1054.426208px;}
.ye7{bottom:1056.113708px;}
.yb{bottom:1114.051208px;}
.ya{bottom:1129.051208px;}
.y33{bottom:1129.426208px;}
.h10{height:29.263500px;}
.h8{height:29.452500px;}
.h4{height:39.270000px;}
.h3{height:40.824000px;}
.h11{height:41.805000px;}
.h7{height:42.075000px;}
.h1c{height:42.840000px;}
.h1b{height:43.740000px;}
.h19{height:44.880000px;}
.h5{height:45.744000px;}
.h18{height:46.656000px;}
.h1d{height:47.452500px;}
.h14{height:47.472000px;}
.h15{height:47.988281px;}
.h17{height:50.490000px;}
.h16{height:53.406000px;}
.h12{height:53.654399px;}
.he{height:55.860000px;}
.hb{height:56.100000px;}
.ha{height:58.320000px;}
.h13{height:59.388000px;}
.h9{height:61.120200px;}
.h1a{height:62.621897px;}
.hf{height:62.621989px;}
.hd{height:69.596779px;}
.h2{height:78.896517px;}
.h6{height:116.732582px;}
.hc{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x5{left:94.789352px;}
.x7{left:97.039352px;}
.x12{left:107.539352px;}
.x9{left:197.327705px;}
.xa{left:224.890800px;}
.x2{left:271.062904px;}
.xb{left:303.221100px;}
.xc{left:431.114090px;}
.x4{left:457.547241px;}
.x11{left:465.590561px;}
.x8{left:469.086731px;}
.x13{left:479.586594px;}
.xd{left:539.920029px;}
.xe{left:604.620621px;}
.x10{left:738.661789px;}
.xf{left:741.824387px;}
.x6{left:744.817657px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:20.906657pt;}
.v4{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls8{letter-spacing:-0.627200pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.418133pt;}
.ls9{letter-spacing:-0.261333pt;}
.lsa{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000005pt;}
.ls4{letter-spacing:0.000008pt;}
.ls5{letter-spacing:0.000012pt;}
.lsb{letter-spacing:0.000086pt;}
.ls6{letter-spacing:0.000089pt;}
.ls7{letter-spacing:0.000099pt;}
.ls0{letter-spacing:8.320000pt;}
.ws63{word-spacing:-13.066667pt;}
.ws12{word-spacing:-12.282667pt;}
.ws155{word-spacing:-11.864533pt;}
.ws62{word-spacing:-11.655467pt;}
.ws5{word-spacing:-11.096533pt;}
.ws6{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.560000pt;}
.wsea{word-spacing:-10.176000pt;}
.wsb6{word-spacing:-10.156800pt;}
.ws156{word-spacing:-9.480000pt;}
.wsb7{word-spacing:-9.344000pt;}
.ws8{word-spacing:-8.993600pt;}
.wsde{word-spacing:-8.832000pt;}
.ws3{word-spacing:-8.760000pt;}
.wsb5{word-spacing:-8.597867pt;}
.ws189{word-spacing:-8.280000pt;}
.ws1{word-spacing:-7.242667pt;}
.ws13{word-spacing:-6.636000pt;}
.ws4{word-spacing:-6.132000pt;}
.ws95{word-spacing:-5.749333pt;}
.ws11{word-spacing:-2.762667pt;}
.ws136{word-spacing:-2.090667pt;}
.ws10{word-spacing:-1.194667pt;}
.wsc8{word-spacing:-1.097600pt;}
.ws66{word-spacing:-0.993067pt;}
.ws145{word-spacing:-0.940800pt;}
.ws15a{word-spacing:-0.836267pt;}
.ws13c{word-spacing:-0.784000pt;}
.ws104{word-spacing:-0.522667pt;}
.ws16{word-spacing:-0.470400pt;}
.ws2c{word-spacing:-0.418133pt;}
.ws8c{word-spacing:-0.365867pt;}
.wsc6{word-spacing:-0.360000pt;}
.ws33{word-spacing:-0.313600pt;}
.ws76{word-spacing:-0.261333pt;}
.ws11b{word-spacing:-0.209067pt;}
.ws77{word-spacing:-0.156800pt;}
.ws6d{word-spacing:-0.104533pt;}
.ws10e{word-spacing:-0.052267pt;}
.ws192{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.wse7{word-spacing:0.042667pt;}
.ws101{word-spacing:0.052267pt;}
.ws141{word-spacing:0.104533pt;}
.ws64{word-spacing:0.156800pt;}
.wse{word-spacing:0.186667pt;}
.ws74{word-spacing:0.209067pt;}
.wsc9{word-spacing:0.261333pt;}
.wsce{word-spacing:0.313600pt;}
.ws79{word-spacing:0.365867pt;}
.ws7e{word-spacing:0.418133pt;}
.ws36{word-spacing:0.470400pt;}
.ws6f{word-spacing:0.522667pt;}
.ws139{word-spacing:0.574933pt;}
.ws86{word-spacing:0.627200pt;}
.wsab{word-spacing:0.679467pt;}
.ws130{word-spacing:0.731733pt;}
.ws17f{word-spacing:0.784000pt;}
.ws99{word-spacing:0.836267pt;}
.ws87{word-spacing:0.888533pt;}
.wsf{word-spacing:0.933333pt;}
.ws65{word-spacing:0.940800pt;}
.ws31{word-spacing:0.993067pt;}
.wsad{word-spacing:1.045333pt;}
.ws4c{word-spacing:1.097600pt;}
.wsb{word-spacing:1.120000pt;}
.wsd2{word-spacing:1.149867pt;}
.wsc{word-spacing:1.157333pt;}
.wsa{word-spacing:1.194667pt;}
.ws134{word-spacing:1.202133pt;}
.ws15e{word-spacing:1.254400pt;}
.wsd{word-spacing:1.306667pt;}
.ws81{word-spacing:1.358933pt;}
.ws107{word-spacing:1.411200pt;}
.ws37{word-spacing:1.463467pt;}
.ws14c{word-spacing:1.515733pt;}
.ws3d{word-spacing:1.520000pt;}
.ws78{word-spacing:1.620267pt;}
.ws93{word-spacing:1.672533pt;}
.ws9e{word-spacing:1.724800pt;}
.wsd0{word-spacing:1.777067pt;}
.ws24{word-spacing:1.829333pt;}
.ws127{word-spacing:1.881600pt;}
.ws85{word-spacing:1.933867pt;}
.ws17c{word-spacing:1.986133pt;}
.ws26{word-spacing:2.038400pt;}
.ws9a{word-spacing:2.090667pt;}
.ws48{word-spacing:2.142933pt;}
.ws188{word-spacing:2.195200pt;}
.ws25{word-spacing:2.247467pt;}
.wsf7{word-spacing:2.299733pt;}
.ws15{word-spacing:2.346667pt;}
.wsb0{word-spacing:2.352000pt;}
.ws82{word-spacing:2.404267pt;}
.ws6c{word-spacing:2.456533pt;}
.ws2a{word-spacing:2.508800pt;}
.ws40{word-spacing:2.561067pt;}
.ws169{word-spacing:2.600000pt;}
.ws68{word-spacing:2.613333pt;}
.wsac{word-spacing:2.665600pt;}
.ws11e{word-spacing:2.717867pt;}
.ws14{word-spacing:2.730667pt;}
.ws7f{word-spacing:2.770133pt;}
.wsbf{word-spacing:2.822400pt;}
.ws8b{word-spacing:2.874667pt;}
.ws80{word-spacing:2.926933pt;}
.ws49{word-spacing:2.979200pt;}
.ws105{word-spacing:3.031467pt;}
.ws73{word-spacing:3.083733pt;}
.wsdc{word-spacing:3.136000pt;}
.ws52{word-spacing:3.188267pt;}
.wsa2{word-spacing:3.240533pt;}
.ws173{word-spacing:3.292800pt;}
.ws35{word-spacing:3.345067pt;}
.ws5e{word-spacing:3.397333pt;}
.wseb{word-spacing:3.449600pt;}
.ws110{word-spacing:3.501867pt;}
.wsbb{word-spacing:3.554133pt;}
.ws7c{word-spacing:3.606400pt;}
.ws1d{word-spacing:3.658667pt;}
.ws91{word-spacing:3.710933pt;}
.ws34{word-spacing:3.763200pt;}
.wscc{word-spacing:3.815467pt;}
.ws13b{word-spacing:3.867733pt;}
.ws142{word-spacing:3.920000pt;}
.ws3f{word-spacing:3.972267pt;}
.ws10f{word-spacing:4.024533pt;}
.ws157{word-spacing:4.076800pt;}
.ws59{word-spacing:4.129067pt;}
.ws75{word-spacing:4.181333pt;}
.ws12b{word-spacing:4.233600pt;}
.ws10a{word-spacing:4.285867pt;}
.ws5f{word-spacing:4.338133pt;}
.wsa8{word-spacing:4.390400pt;}
.wsd5{word-spacing:4.442667pt;}
.ws39{word-spacing:4.494933pt;}
.wsae{word-spacing:4.547200pt;}
.ws3c{word-spacing:4.599467pt;}
.wsbd{word-spacing:4.651733pt;}
.ws22{word-spacing:4.704000pt;}
.ws67{word-spacing:4.756267pt;}
.wsf0{word-spacing:4.808533pt;}
.ws9f{word-spacing:4.860800pt;}
.ws38{word-spacing:4.913067pt;}
.ws1a{word-spacing:4.965333pt;}
.wsdd{word-spacing:5.017600pt;}
.wsa4{word-spacing:5.069867pt;}
.ws149{word-spacing:5.122133pt;}
.wsfb{word-spacing:5.174400pt;}
.ws60{word-spacing:5.226667pt;}
.ws98{word-spacing:5.278933pt;}
.ws4b{word-spacing:5.331200pt;}
.ws3a{word-spacing:5.383467pt;}
.ws41{word-spacing:5.435733pt;}
.wsda{word-spacing:5.488000pt;}
.wsca{word-spacing:5.540267pt;}
.ws6e{word-spacing:5.592533pt;}
.ws128{word-spacing:5.644800pt;}
.ws29{word-spacing:5.697067pt;}
.wsdb{word-spacing:5.749333pt;}
.wsba{word-spacing:5.801600pt;}
.ws10c{word-spacing:5.853867pt;}
.ws96{word-spacing:5.906133pt;}
.ws144{word-spacing:5.958400pt;}
.wsfe{word-spacing:6.010667pt;}
.ws7d{word-spacing:6.062933pt;}
.ws47{word-spacing:6.115200pt;}
.wsc5{word-spacing:6.167467pt;}
.ws9d{word-spacing:6.219733pt;}
.ws14a{word-spacing:6.272000pt;}
.ws42{word-spacing:6.324267pt;}
.ws11d{word-spacing:6.376533pt;}
.ws20{word-spacing:6.428800pt;}
.ws8d{word-spacing:6.481067pt;}
.ws179{word-spacing:6.533333pt;}
.ws51{word-spacing:6.585600pt;}
.wsa5{word-spacing:6.690133pt;}
.ws109{word-spacing:6.742400pt;}
.wsbe{word-spacing:6.794667pt;}
.wsed{word-spacing:6.846933pt;}
.ws5b{word-spacing:6.899200pt;}
.ws7a{word-spacing:6.951467pt;}
.wsb4{word-spacing:7.003733pt;}
.wsd9{word-spacing:7.056000pt;}
.ws44{word-spacing:7.108267pt;}
.ws19{word-spacing:7.160533pt;}
.ws112{word-spacing:7.212800pt;}
.ws16d{word-spacing:7.265067pt;}
.wsd1{word-spacing:7.317333pt;}
.ws5a{word-spacing:7.369600pt;}
.ws153{word-spacing:7.421867pt;}
.ws23{word-spacing:7.474133pt;}
.ws125{word-spacing:7.526400pt;}
.ws12e{word-spacing:7.578667pt;}
.ws53{word-spacing:7.630933pt;}
.wsd4{word-spacing:7.683200pt;}
.ws1e{word-spacing:7.735467pt;}
.wsc7{word-spacing:7.787733pt;}
.ws4f{word-spacing:7.840000pt;}
.ws175{word-spacing:7.892267pt;}
.ws55{word-spacing:7.944533pt;}
.wsf8{word-spacing:7.996800pt;}
.wsc4{word-spacing:8.049067pt;}
.wsd7{word-spacing:8.101333pt;}
.wsf3{word-spacing:8.153600pt;}
.wsfd{word-spacing:8.205867pt;}
.ws90{word-spacing:8.258133pt;}
.ws138{word-spacing:8.310400pt;}
.wsa0{word-spacing:8.362667pt;}
.ws184{word-spacing:8.414933pt;}
.ws56{word-spacing:8.467200pt;}
.ws12f{word-spacing:8.519467pt;}
.ws16f{word-spacing:8.571733pt;}
.ws17a{word-spacing:8.624000pt;}
.ws116{word-spacing:8.676267pt;}
.wsa3{word-spacing:8.728533pt;}
.wsee{word-spacing:8.780800pt;}
.ws28{word-spacing:8.833067pt;}
.ws27{word-spacing:8.885333pt;}
.ws97{word-spacing:8.937600pt;}
.ws2b{word-spacing:8.989867pt;}
.ws16b{word-spacing:9.042133pt;}
.ws117{word-spacing:9.146667pt;}
.ws174{word-spacing:9.198933pt;}
.ws89{word-spacing:9.251200pt;}
.wsb2{word-spacing:9.355733pt;}
.ws124{word-spacing:9.408000pt;}
.ws137{word-spacing:9.460267pt;}
.wsbc{word-spacing:9.512533pt;}
.ws8f{word-spacing:9.564800pt;}
.ws5d{word-spacing:9.617067pt;}
.wsaa{word-spacing:9.669333pt;}
.ws8e{word-spacing:9.721600pt;}
.ws126{word-spacing:9.773867pt;}
.ws14b{word-spacing:9.826133pt;}
.ws159{word-spacing:9.878400pt;}
.ws18{word-spacing:9.930667pt;}
.ws70{word-spacing:9.982933pt;}
.ws5c{word-spacing:10.035200pt;}
.wsb1{word-spacing:10.087467pt;}
.ws32{word-spacing:10.139733pt;}
.wscd{word-spacing:10.192000pt;}
.ws71{word-spacing:10.244267pt;}
.ws6b{word-spacing:10.296533pt;}
.ws11a{word-spacing:10.348800pt;}
.wsf1{word-spacing:10.401067pt;}
.ws148{word-spacing:10.453333pt;}
.ws6a{word-spacing:10.505600pt;}
.ws100{word-spacing:10.557867pt;}
.ws3e{word-spacing:10.560000pt;}
.wsc1{word-spacing:10.610133pt;}
.ws14d{word-spacing:10.662400pt;}
.ws161{word-spacing:10.714667pt;}
.ws30{word-spacing:10.766933pt;}
.ws15c{word-spacing:10.819200pt;}
.ws83{word-spacing:10.871467pt;}
.ws17{word-spacing:10.923733pt;}
.wsb9{word-spacing:10.976000pt;}
.ws140{word-spacing:11.028267pt;}
.ws11f{word-spacing:11.080533pt;}
.ws15d{word-spacing:11.185067pt;}
.ws1b{word-spacing:11.237333pt;}
.wsc0{word-spacing:11.289600pt;}
.ws135{word-spacing:11.341867pt;}
.ws18f{word-spacing:11.394133pt;}
.ws13d{word-spacing:11.446400pt;}
.ws111{word-spacing:11.498667pt;}
.wsef{word-spacing:11.550933pt;}
.ws12a{word-spacing:11.603200pt;}
.ws123{word-spacing:11.655467pt;}
.ws120{word-spacing:11.760000pt;}
.ws8a{word-spacing:11.864533pt;}
.ws4d{word-spacing:11.916800pt;}
.ws2f{word-spacing:11.969067pt;}
.ws46{word-spacing:12.021333pt;}
.ws121{word-spacing:12.073600pt;}
.wsfa{word-spacing:12.125867pt;}
.wsb3{word-spacing:12.178133pt;}
.ws50{word-spacing:12.230400pt;}
.ws2d{word-spacing:12.282667pt;}
.ws183{word-spacing:12.334933pt;}
.wsd3{word-spacing:12.439467pt;}
.wsa6{word-spacing:12.544000pt;}
.ws45{word-spacing:12.596267pt;}
.wsff{word-spacing:12.648533pt;}
.wsfc{word-spacing:12.700800pt;}
.ws13f{word-spacing:12.753067pt;}
.ws129{word-spacing:12.805333pt;}
.ws190{word-spacing:12.857600pt;}
.ws163{word-spacing:12.909867pt;}
.ws143{word-spacing:12.962133pt;}
.wsf6{word-spacing:13.014400pt;}
.ws106{word-spacing:13.066667pt;}
.wsf4{word-spacing:13.118933pt;}
.ws21{word-spacing:13.171200pt;}
.ws162{word-spacing:13.275733pt;}
.ws12c{word-spacing:13.328000pt;}
.ws13a{word-spacing:13.380267pt;}
.wsf2{word-spacing:13.432533pt;}
.ws113{word-spacing:13.484800pt;}
.ws146{word-spacing:13.537067pt;}
.ws3b{word-spacing:13.589333pt;}
.ws102{word-spacing:13.641600pt;}
.ws167{word-spacing:13.693867pt;}
.wsf5{word-spacing:13.798400pt;}
.ws164{word-spacing:13.850667pt;}
.ws69{word-spacing:13.902933pt;}
.wsaf{word-spacing:13.955200pt;}
.ws94{word-spacing:14.059733pt;}
.ws18a{word-spacing:14.112000pt;}
.ws15f{word-spacing:14.216533pt;}
.ws132{word-spacing:14.268800pt;}
.ws115{word-spacing:14.321067pt;}
.wsa7{word-spacing:14.373333pt;}
.ws14f{word-spacing:14.425600pt;}
.ws58{word-spacing:14.477867pt;}
.ws15b{word-spacing:14.530133pt;}
.ws11c{word-spacing:14.634667pt;}
.ws108{word-spacing:14.686933pt;}
.ws177{word-spacing:14.739200pt;}
.wsd8{word-spacing:14.791467pt;}
.ws150{word-spacing:14.843733pt;}
.ws178{word-spacing:14.896000pt;}
.ws1c{word-spacing:14.948267pt;}
.ws43{word-spacing:15.052800pt;}
.wsc2{word-spacing:15.157333pt;}
.ws7b{word-spacing:15.209600pt;}
.ws18e{word-spacing:15.261867pt;}
.wsc3{word-spacing:15.418667pt;}
.ws186{word-spacing:15.470933pt;}
.ws72{word-spacing:15.523200pt;}
.ws180{word-spacing:15.680000pt;}
.ws2e{word-spacing:15.732267pt;}
.wsa1{word-spacing:15.993600pt;}
.ws16c{word-spacing:16.045867pt;}
.ws9b{word-spacing:16.098133pt;}
.ws17d{word-spacing:16.202667pt;}
.ws84{word-spacing:16.411733pt;}
.ws147{word-spacing:16.516267pt;}
.ws122{word-spacing:16.568533pt;}
.ws171{word-spacing:16.725333pt;}
.ws18c{word-spacing:16.777600pt;}
.ws4a{word-spacing:16.829867pt;}
.wscf{word-spacing:16.986667pt;}
.ws88{word-spacing:17.091200pt;}
.ws166{word-spacing:17.143467pt;}
.ws61{word-spacing:17.195733pt;}
.ws160{word-spacing:17.300267pt;}
.ws103{word-spacing:17.509333pt;}
.wsd6{word-spacing:17.613867pt;}
.ws4e{word-spacing:17.666133pt;}
.ws154{word-spacing:17.770667pt;}
.ws176{word-spacing:17.822933pt;}
.ws1f{word-spacing:17.927467pt;}
.ws131{word-spacing:18.084267pt;}
.ws17e{word-spacing:18.136533pt;}
.ws170{word-spacing:18.293333pt;}
.ws185{word-spacing:18.397867pt;}
.ws151{word-spacing:18.502400pt;}
.ws187{word-spacing:18.659200pt;}
.ws181{word-spacing:18.711467pt;}
.ws10b{word-spacing:18.763733pt;}
.ws118{word-spacing:18.868267pt;}
.ws54{word-spacing:18.920533pt;}
.ws119{word-spacing:19.025067pt;}
.ws17b{word-spacing:19.181867pt;}
.ws10d{word-spacing:19.286400pt;}
.ws114{word-spacing:19.443200pt;}
.wsec{word-spacing:19.547733pt;}
.ws133{word-spacing:20.018133pt;}
.ws182{word-spacing:20.174933pt;}
.ws12d{word-spacing:20.279467pt;}
.ws13e{word-spacing:20.854400pt;}
.wsb8{word-spacing:21.377067pt;}
.ws14e{word-spacing:21.429333pt;}
.ws18d{word-spacing:22.056533pt;}
.wsa9{word-spacing:22.265600pt;}
.wscb{word-spacing:22.788267pt;}
.ws18b{word-spacing:23.049600pt;}
.ws16e{word-spacing:23.624533pt;}
.ws172{word-spacing:24.722133pt;}
.ws152{word-spacing:24.931200pt;}
.ws191{word-spacing:26.133333pt;}
.ws168{word-spacing:26.917333pt;}
.ws92{word-spacing:28.014933pt;}
.wsdf{word-spacing:28.375883pt;}
.ws57{word-spacing:28.642133pt;}
.wsf9{word-spacing:29.373867pt;}
.ws165{word-spacing:29.687467pt;}
.ws9c{word-spacing:30.994133pt;}
.ws16a{word-spacing:32.666667pt;}
.ws158{word-spacing:34.914133pt;}
.wse1{word-spacing:152.949819pt;}
.wse0{word-spacing:162.247996pt;}
.wse3{word-spacing:202.398549pt;}
.wse4{word-spacing:246.484812pt;}
.wse8{word-spacing:250.859733pt;}
.wse6{word-spacing:270.291616pt;}
.wse5{word-spacing:427.082631pt;}
.wse2{word-spacing:887.203725pt;}
.ws2{word-spacing:1235.257571pt;}
.ws0{word-spacing:1729.641551pt;}
.wse9{word-spacing:1810.338086pt;}
._8{margin-left:-2569.717893pt;}
._13{margin-left:-36.231949pt;}
._15{margin-left:-21.549404pt;}
._f{margin-left:-20.005328pt;}
._b{margin-left:-16.777495pt;}
._d{margin-left:-14.177453pt;}
._5f{margin-left:-10.928781pt;}
._e{margin-left:-9.656006pt;}
._11{margin-left:-8.384945pt;}
._12{margin-left:-6.781861pt;}
._3{margin-left:-5.554667pt;}
._17{margin-left:-4.518478pt;}
._6{margin-left:-3.520000pt;}
._2{margin-left:-2.570500pt;}
._0{margin-left:-1.525333pt;}
._1{width:0.965166pt;}
._7{width:2.224334pt;}
._c{width:3.174354pt;}
._18{width:4.097228pt;}
._a{width:5.821697pt;}
._61{width:6.746952pt;}
._9{width:7.719626pt;}
._1a{width:9.259224pt;}
._19{width:10.202364pt;}
._14{width:11.240058pt;}
._5{width:13.010658pt;}
._5e{width:14.654378pt;}
._4{width:15.601598pt;}
._60{width:16.577045pt;}
._10{width:20.388065pt;}
._16{width:21.533146pt;}
._63{width:29.440000pt;}
._40{width:35.425591pt;}
._22{width:46.795152pt;}
._62{width:48.960000pt;}
._23{width:64.451729pt;}
._5a{width:75.350925pt;}
._21{width:79.220812pt;}
._32{width:84.625759pt;}
._5c{width:103.638925pt;}
._4c{width:119.382925pt;}
._34{width:132.268258pt;}
._2e{width:146.870925pt;}
._24{width:150.326925pt;}
._3c{width:153.153424pt;}
._55{width:157.281591pt;}
._56{width:159.670925pt;}
._1b{width:160.740811pt;}
._1e{width:164.751477pt;}
._59{width:169.281424pt;}
._2c{width:171.591996pt;}
._49{width:176.780258pt;}
._2f{width:185.441591pt;}
._39{width:211.742549pt;}
._1c{width:217.988811pt;}
._4d{width:220.332258pt;}
._51{width:223.585591pt;}
._3d{width:227.297591pt;}
._41{width:231.777591pt;}
._28{width:249.398925pt;}
._58{width:250.422925pt;}
._29{width:255.828812pt;}
._25{width:260.203733pt;}
._57{width:271.921759pt;}
._36{width:278.965729pt;}
._1d{width:280.426311pt;}
._1f{width:284.132811pt;}
._3a{width:286.732258pt;}
._20{width:341.846925pt;}
._3b{width:344.269325pt;}
._43{width:355.906658pt;}
._50{width:360.770658pt;}
._2a{width:368.561560pt;}
._54{width:380.322658pt;}
._45{width:381.389325pt;}
._52{width:433.842825pt;}
._26{width:436.426631pt;}
._4b{width:437.453325pt;}
._46{width:469.531612pt;}
._4f{width:482.967991pt;}
._47{width:505.079991pt;}
._2b{width:509.682165pt;}
._35{width:534.336545pt;}
._48{width:550.009493pt;}
._5b{width:565.271991pt;}
._38{width:572.269325pt;}
._27{width:598.608109pt;}
._33{width:675.916803pt;}
._30{width:714.934364pt;}
._53{width:768.279956pt;}
._4e{width:774.722137pt;}
._2d{width:777.634137pt;}
._4a{width:778.661928pt;}
._3f{width:779.938137pt;}
._31{width:896.547725pt;}
._3e{width:960.535956pt;}
._37{width:1026.999956pt;}
._44{width:1053.338740pt;}
._42{width:1077.145544pt;}
._5d{width:1086.670763pt;}
.fs5{font-size:28.000000pt;}
.fsc{font-size:36.586667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fsa{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fsd{font-size:49.066666pt;}
.fsb{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.933333pt;}
.fs9{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:80.000132pt;}
.y9{bottom:81.333333pt;}
.y76{bottom:82.267736pt;}
.y156{bottom:86.767731pt;}
.y8{bottom:92.000000pt;}
.y67{bottom:92.000132pt;}
.y79{bottom:96.000132pt;}
.y75{bottom:98.267731pt;}
.yce{bottom:98.657603pt;}
.y155{bottom:98.767731pt;}
.y7{bottom:102.666667pt;}
.ye6{bottom:103.811066pt;}
.y158{bottom:106.267731pt;}
.y66{bottom:108.000132pt;}
.y11f{bottom:110.316264pt;}
.y154{bottom:110.767731pt;}
.y6{bottom:113.333333pt;}
.ycd{bottom:114.216665pt;}
.y74{bottom:114.267731pt;}
.ye5{bottom:115.811066pt;}
.y157{bottom:118.267731pt;}
.y11e{bottom:122.316264pt;}
.y153{bottom:122.767731pt;}
.y5{bottom:124.000000pt;}
.ye4{bottom:127.811066pt;}
.ycc{bottom:129.775736pt;}
.y73{bottom:130.267731pt;}
.y11d{bottom:134.316264pt;}
.y4{bottom:134.666667pt;}
.y152{bottom:134.767731pt;}
.ye3{bottom:139.811066pt;}
.ycb{bottom:143.109070pt;}
.y3{bottom:145.333333pt;}
.y72{bottom:146.267731pt;}
.y65{bottom:146.267863pt;}
.y11c{bottom:146.316264pt;}
.y151{bottom:146.767731pt;}
.y2{bottom:156.000000pt;}
.y11b{bottom:158.316264pt;}
.yca{bottom:158.668132pt;}
.y150{bottom:158.767731pt;}
.y71{bottom:162.267731pt;}
.y64{bottom:162.267863pt;}
.y11a{bottom:170.316264pt;}
.y14f{bottom:170.767741pt;}
.yc9{bottom:172.001465pt;}
.ye2{bottom:175.149597pt;}
.y70{bottom:178.267741pt;}
.y63{bottom:178.267863pt;}
.y119{bottom:182.316264pt;}
.y14e{bottom:182.767741pt;}
.yc8{bottom:187.560404pt;}
.y11{bottom:189.717061pt;}
.y6f{bottom:194.267741pt;}
.y62{bottom:194.267863pt;}
.y118{bottom:194.316264pt;}
.y14d{bottom:194.767741pt;}
.y10{bottom:201.717061pt;}
.ye1{bottom:202.267741pt;}
.yc7{bottom:203.119609pt;}
.y15{bottom:205.717061pt;}
.y117{bottom:206.316264pt;}
.y14c{bottom:206.767741pt;}
.y6e{bottom:210.267741pt;}
.y61{bottom:210.267863pt;}
.y14{bottom:213.717061pt;}
.ye0{bottom:214.267741pt;}
.yf{bottom:217.717061pt;}
.y116{bottom:218.316264pt;}
.yc6{bottom:218.678670pt;}
.y14b{bottom:218.767741pt;}
.ye{bottom:225.717061pt;}
.y6d{bottom:226.267741pt;}
.y60{bottom:226.267863pt;}
.y13{bottom:229.717061pt;}
.y115{bottom:230.316264pt;}
.y14a{bottom:230.767741pt;}
.yc5{bottom:234.237732pt;}
.yd{bottom:237.717061pt;}
.y6c{bottom:242.267741pt;}
.y5f{bottom:242.267863pt;}
.y114{bottom:242.316264pt;}
.y149{bottom:242.767741pt;}
.yc4{bottom:247.571065pt;}
.yc{bottom:249.717061pt;}
.y12{bottom:253.717061pt;}
.y113{bottom:254.316264pt;}
.y148{bottom:254.767741pt;}
.y6b{bottom:258.267741pt;}
.y5e{bottom:258.267863pt;}
.yc3{bottom:263.130005pt;}
.y112{bottom:266.316264pt;}
.y147{bottom:266.767741pt;}
.y5d{bottom:274.267741pt;}
.y111{bottom:278.316264pt;}
.yc2{bottom:278.689067pt;}
.y146{bottom:278.767741pt;}
.y5c{bottom:290.267741pt;}
.y110{bottom:290.316264pt;}
.y145{bottom:290.767741pt;}
.yc1{bottom:294.248128pt;}
.y10f{bottom:302.316264pt;}
.y144{bottom:302.767741pt;}
.y5b{bottom:306.267741pt;}
.yc0{bottom:309.807190pt;}
.y2e{bottom:312.314799pt;}
.y10e{bottom:314.316264pt;}
.y143{bottom:314.767741pt;}
.y5a{bottom:322.267741pt;}
.ybf{bottom:325.366272pt;}
.y10d{bottom:326.316264pt;}
.y142{bottom:326.767741pt;}
.y2d{bottom:328.314799pt;}
.y59{bottom:338.267741pt;}
.y10c{bottom:338.316264pt;}
.y141{bottom:338.767741pt;}
.ybe{bottom:340.925333pt;}
.y2c{bottom:348.314819pt;}
.y10b{bottom:350.316284pt;}
.y140{bottom:350.767741pt;}
.y58{bottom:354.267741pt;}
.ybd{bottom:356.484416pt;}
.y10a{bottom:362.316284pt;}
.y13f{bottom:362.767741pt;}
.y2b{bottom:364.314819pt;}
.y57{bottom:370.267741pt;}
.ybc{bottom:372.043457pt;}
.y109{bottom:374.316284pt;}
.y13e{bottom:374.767741pt;}
.y77{bottom:376.667847pt;}
.y2a{bottom:380.314819pt;}
.y56{bottom:386.267741pt;}
.y108{bottom:386.316284pt;}
.y13d{bottom:386.767741pt;}
.ybb{bottom:387.602539pt;}
.y29{bottom:396.314819pt;}
.y107{bottom:398.316284pt;}
.y13c{bottom:398.767741pt;}
.y55{bottom:402.267741pt;}
.yba{bottom:403.161580pt;}
.y106{bottom:410.316284pt;}
.y13b{bottom:410.767741pt;}
.y28{bottom:416.314819pt;}
.y54{bottom:418.267741pt;}
.yb9{bottom:418.720662pt;}
.y105{bottom:422.316284pt;}
.y13a{bottom:422.767741pt;}
.y27{bottom:432.314819pt;}
.y53{bottom:434.267741pt;}
.yb8{bottom:434.279582pt;}
.y104{bottom:434.316284pt;}
.y139{bottom:434.767741pt;}
.y103{bottom:446.316284pt;}
.y138{bottom:446.767741pt;}
.y26{bottom:448.314819pt;}
.yb7{bottom:449.838664pt;}
.y52{bottom:450.267741pt;}
.y102{bottom:458.316284pt;}
.y137{bottom:458.767741pt;}
.y25{bottom:464.314819pt;}
.yb6{bottom:465.397746pt;}
.y51{bottom:466.267741pt;}
.y136{bottom:470.767741pt;}
.y24{bottom:480.314819pt;}
.yb5{bottom:480.956787pt;}
.y50{bottom:482.267741pt;}
.y135{bottom:482.767741pt;}
.y134{bottom:494.767741pt;}
.y23{bottom:496.314819pt;}
.yb4{bottom:496.515869pt;}
.y4f{bottom:498.267741pt;}
.y133{bottom:506.767741pt;}
.yb3{bottom:512.074951pt;}
.y22{bottom:512.314819pt;}
.y4e{bottom:514.267741pt;}
.y132{bottom:518.767741pt;}
.y101{bottom:519.649618pt;}
.y97{bottom:525.356649pt;}
.yb2{bottom:527.633993pt;}
.y4d{bottom:530.267741pt;}
.y131{bottom:530.767741pt;}
.y21{bottom:532.314819pt;}
.y96{bottom:538.689982pt;}
.y130{bottom:542.767741pt;}
.yb1{bottom:543.193075pt;}
.y4c{bottom:546.267741pt;}
.y100{bottom:546.767741pt;}
.y20{bottom:548.314819pt;}
.y95{bottom:552.023315pt;}
.y12f{bottom:554.767741pt;}
.yb0{bottom:558.752116pt;}
.yff{bottom:558.767741pt;}
.y4b{bottom:562.267741pt;}
.y1f{bottom:564.314819pt;}
.y12e{bottom:566.767741pt;}
.y94{bottom:567.582397pt;}
.yaf{bottom:574.311198pt;}
.y4a{bottom:578.267741pt;}
.y12d{bottom:578.767741pt;}
.y1e{bottom:580.314819pt;}
.y93{bottom:580.915731pt;}
.yfe{bottom:582.767741pt;}
.yae{bottom:589.870117pt;}
.y12c{bottom:590.767741pt;}
.y92{bottom:594.249064pt;}
.y49{bottom:594.267741pt;}
.yfd{bottom:594.767741pt;}
.y1d{bottom:596.314819pt;}
.y12b{bottom:602.767741pt;}
.yad{bottom:605.429321pt;}
.y91{bottom:609.808146pt;}
.y48{bottom:610.267741pt;}
.y12a{bottom:614.767741pt;}
.y1c{bottom:616.314819pt;}
.yfc{bottom:618.767741pt;}
.yac{bottom:620.988281pt;}
.y90{bottom:623.141479pt;}
.y47{bottom:626.267741pt;}
.y129{bottom:626.767741pt;}
.yfb{bottom:630.767741pt;}
.y1b{bottom:632.314819pt;}
.yab{bottom:636.547323pt;}
.y8f{bottom:638.700521pt;}
.y128{bottom:638.767741pt;}
.y46{bottom:642.267741pt;}
.y1a{bottom:648.314819pt;}
.yaa{bottom:649.880656pt;}
.y127{bottom:650.767741pt;}
.y8e{bottom:652.033854pt;}
.yfa{bottom:654.767741pt;}
.y45{bottom:658.267741pt;}
.y126{bottom:662.767741pt;}
.y19{bottom:664.314819pt;}
.y8d{bottom:665.367188pt;}
.ya9{bottom:665.439738pt;}
.yf9{bottom:666.767741pt;}
.y44{bottom:674.267741pt;}
.y125{bottom:674.767741pt;}
.y18{bottom:680.314819pt;}
.y8c{bottom:680.926270pt;}
.ya8{bottom:680.998820pt;}
.y124{bottom:686.767741pt;}
.y43{bottom:690.267741pt;}
.yf8{bottom:690.767741pt;}
.ydf{bottom:692.878255pt;}
.y8b{bottom:694.259603pt;}
.y17{bottom:696.314779pt;}
.ya7{bottom:696.557861pt;}
.y123{bottom:698.767741pt;}
.y42{bottom:706.267741pt;}
.y8a{bottom:707.592936pt;}
.yde{bottom:708.437337pt;}
.y122{bottom:710.767741pt;}
.ya6{bottom:712.116943pt;}
.y16{bottom:716.314779pt;}
.y89{bottom:720.926270pt;}
.y41{bottom:722.267741pt;}
.yf7{bottom:722.767741pt;}
.ydd{bottom:723.996419pt;}
.ya5{bottom:725.450277pt;}
.y88{bottom:734.259603pt;}
.yf6{bottom:734.767741pt;}
.y40{bottom:738.267741pt;}
.ydc{bottom:739.555501pt;}
.ya4{bottom:741.009359pt;}
.yf5{bottom:746.767741pt;}
.y87{bottom:749.818685pt;}
.y3f{bottom:754.267741pt;}
.ydb{bottom:755.114502pt;}
.ya3{bottom:756.568359pt;}
.yf4{bottom:758.767741pt;}
.y86{bottom:763.152018pt;}
.y32{bottom:768.281494pt;}
.y3e{bottom:770.267741pt;}
.yda{bottom:770.673503pt;}
.y121{bottom:770.767741pt;}
.ya2{bottom:772.127441pt;}
.y85{bottom:778.711100pt;}
.yf3{bottom:782.767741pt;}
.yd9{bottom:786.232503pt;}
.y3d{bottom:786.267741pt;}
.y31{bottom:786.948161pt;}
.ya1{bottom:787.686523pt;}
.y84{bottom:792.044434pt;}
.yf2{bottom:794.767741pt;}
.yd8{bottom:801.791585pt;}
.y3c{bottom:802.267741pt;}
.ya0{bottom:803.245443pt;}
.y83{bottom:805.377767pt;}
.yf1{bottom:806.767741pt;}
.yd7{bottom:815.124919pt;}
.y3b{bottom:818.267741pt;}
.yf0{bottom:818.767741pt;}
.y9f{bottom:818.804688pt;}
.y82{bottom:820.936768pt;}
.yd6{bottom:830.684000pt;}
.y120{bottom:830.767741pt;}
.y30{bottom:832.281494pt;}
.y3a{bottom:834.267741pt;}
.y81{bottom:834.270101pt;}
.y9e{bottom:834.363607pt;}
.yef{bottom:842.767741pt;}
.yd5{bottom:846.243083pt;}
.y80{bottom:847.603434pt;}
.y9d{bottom:849.922689pt;}
.y39{bottom:850.267741pt;}
.yee{bottom:854.767741pt;}
.y7f{bottom:860.936768pt;}
.yd4{bottom:861.802165pt;}
.y9c{bottom:865.581706pt;}
.y38{bottom:866.267741pt;}
.yed{bottom:866.767741pt;}
.y2f{bottom:866.948161pt;}
.y7e{bottom:874.270101pt;}
.yd3{bottom:875.135498pt;}
.yec{bottom:878.767741pt;}
.y9b{bottom:878.915039pt;}
.y37{bottom:882.267741pt;}
.y7d{bottom:887.603434pt;}
.yd2{bottom:888.468831pt;}
.yeb{bottom:890.767741pt;}
.y9a{bottom:892.248372pt;}
.y36{bottom:898.267741pt;}
.yd1{bottom:901.802165pt;}
.yea{bottom:902.767741pt;}
.y7c{bottom:903.262533pt;}
.y99{bottom:905.581706pt;}
.y6a{bottom:914.267741pt;}
.y35{bottom:914.267904pt;}
.ye9{bottom:914.767741pt;}
.yd0{bottom:917.361572pt;}
.y7b{bottom:918.821452pt;}
.y98{bottom:921.141357pt;}
.y1{bottom:921.267741pt;}
.ye8{bottom:926.767741pt;}
.y69{bottom:930.267741pt;}
.y34{bottom:930.267904pt;}
.y7a{bottom:933.488118pt;}
.y78{bottom:935.173991pt;}
.ycf{bottom:937.267741pt;}
.ye7{bottom:938.767741pt;}
.yb{bottom:990.267741pt;}
.ya{bottom:1003.601074pt;}
.y33{bottom:1003.934408pt;}
.h10{height:26.012000pt;}
.h8{height:26.180000pt;}
.h4{height:34.906667pt;}
.h3{height:36.288000pt;}
.h11{height:37.160000pt;}
.h7{height:37.400000pt;}
.h1c{height:38.080000pt;}
.h1b{height:38.880000pt;}
.h19{height:39.893333pt;}
.h5{height:40.661333pt;}
.h18{height:41.472000pt;}
.h1d{height:42.180000pt;}
.h14{height:42.197333pt;}
.h15{height:42.656250pt;}
.h17{height:44.880000pt;}
.h16{height:47.472000pt;}
.h12{height:47.692799pt;}
.he{height:49.653333pt;}
.hb{height:49.866667pt;}
.ha{height:51.840000pt;}
.h13{height:52.789333pt;}
.h9{height:54.329067pt;}
.h1a{height:55.663909pt;}
.hf{height:55.663990pt;}
.hd{height:61.863804pt;}
.h2{height:70.130237pt;}
.h6{height:103.762295pt;}
.hc{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x5{left:84.257202pt;}
.x7{left:86.257202pt;}
.x12{left:95.590535pt;}
.x9{left:175.402405pt;}
.xa{left:199.902933pt;}
.x2{left:240.944804pt;}
.xb{left:269.529867pt;}
.xc{left:383.212524pt;}
.x4{left:406.708659pt;}
.x11{left:413.858276pt;}
.x8{left:416.965983pt;}
.x13{left:426.299194pt;}
.xd{left:479.928914pt;}
.xe{left:537.440552pt;}
.x10{left:656.588257pt;}
.xf{left:659.399455pt;}
.x6{left:662.060140pt;}
}




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