
    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_b5aefb65a3cb9838023d9fee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3c8826916d4b418a16afbc82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_533c26b7ce4f7f94c8856a67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d07c67697e5c50424ef203ef.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_83eb959944441610ee969f3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.146000;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_bcaec0232d909a868189a20b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.848000;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_77af6ad793506bb9791d28c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c811912a33a961354db8ebf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.607000;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_f4acd2e488e75e12a30cda56.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-19.200073px;}
.v2{vertical-align:-1.776000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls10{letter-spacing:-1.824000px;}
.lsd{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.624000px;}
.ls21{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls20{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.120000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000085px;}
.ls11{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.120000px;}
.ls1b{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.671967px;}
.ls24{letter-spacing:0.672000px;}
.ls1c{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.780000px;}
.ls23{letter-spacing:0.810000px;}
.ls3{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.900000px;}
.ls5{letter-spacing:1.020000px;}
.ls1{letter-spacing:3.360000px;}
.lsb{letter-spacing:195.792000px;}
.lse{letter-spacing:306.100800px;}
.lsa{letter-spacing:341.424000px;}
.lsf{letter-spacing:351.460800px;}
.lsc{letter-spacing:424.272000px;}
.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;}
}
.wsbf{word-spacing:-15.300000px;}
.ws77{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.976000px;}
.ws1b{word-spacing:-13.332000px;}
.ws3{word-spacing:-13.296000px;}
.ws136{word-spacing:-12.672000px;}
.ws5{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.120000px;}
.ws8e{word-spacing:-12.000000px;}
.ws8{word-spacing:-11.520000px;}
.ws2{word-spacing:-9.408000px;}
.wsd4{word-spacing:-9.216000px;}
.ws6{word-spacing:-8.694000px;}
.ws14a{word-spacing:-8.400000px;}
.ws9f{word-spacing:-6.000000px;}
.ws97{word-spacing:-1.800000px;}
.wsbd{word-spacing:-1.500000px;}
.wsc4{word-spacing:-1.380000px;}
.wsa8{word-spacing:-1.320000px;}
.ws9b{word-spacing:-1.260000px;}
.wsbe{word-spacing:-1.200000px;}
.wse4{word-spacing:-1.152000px;}
.ws68{word-spacing:-1.080000px;}
.wsc0{word-spacing:-0.960000px;}
.wsc5{word-spacing:-0.900000px;}
.wse3{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.840000px;}
.wsaf{word-spacing:-0.780000px;}
.ws2a{word-spacing:-0.720000px;}
.ws135{word-spacing:-0.672000px;}
.wsc1{word-spacing:-0.660000px;}
.ws61{word-spacing:-0.600000px;}
.wsa5{word-spacing:-0.540000px;}
.wsea{word-spacing:-0.528000px;}
.ws4b{word-spacing:-0.480000px;}
.wsc3{word-spacing:-0.420000px;}
.ws42{word-spacing:-0.360000px;}
.ws75{word-spacing:-0.300000px;}
.wsa2{word-spacing:-0.288000px;}
.wsa3{word-spacing:-0.240000px;}
.wsa1{word-spacing:-0.192000px;}
.wsc2{word-spacing:-0.180000px;}
.ws47{word-spacing:-0.120000px;}
.ws102{word-spacing:-0.096000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws87{word-spacing:0.060000px;}
.ws35{word-spacing:0.120000px;}
.wsc8{word-spacing:0.180000px;}
.ws5c{word-spacing:0.240000px;}
.ws13f{word-spacing:0.336000px;}
.ws6f{word-spacing:0.360000px;}
.ws140{word-spacing:0.384000px;}
.wsce{word-spacing:0.420000px;}
.ws64{word-spacing:0.480000px;}
.ws12c{word-spacing:0.528000px;}
.ws103{word-spacing:0.576000px;}
.ws4d{word-spacing:0.600000px;}
.ws9e{word-spacing:0.624000px;}
.ws98{word-spacing:0.660000px;}
.ws12a{word-spacing:0.672000px;}
.ws21{word-spacing:0.720000px;}
.ws129{word-spacing:0.768000px;}
.wse{word-spacing:0.780000px;}
.ws33{word-spacing:0.840000px;}
.ws9{word-spacing:0.900000px;}
.wsed{word-spacing:0.912000px;}
.wsa6{word-spacing:0.960000px;}
.ws138{word-spacing:1.008000px;}
.wsd7{word-spacing:1.080000px;}
.wsf9{word-spacing:1.104000px;}
.ws48{word-spacing:1.140000px;}
.wsf8{word-spacing:1.152000px;}
.ws31{word-spacing:1.200000px;}
.ws115{word-spacing:1.248000px;}
.ws45{word-spacing:1.260000px;}
.ws101{word-spacing:1.296000px;}
.ws55{word-spacing:1.320000px;}
.wsf{word-spacing:1.380000px;}
.ws3d{word-spacing:1.440000px;}
.ws65{word-spacing:1.500000px;}
.wscf{word-spacing:1.560000px;}
.ws130{word-spacing:1.584000px;}
.ws53{word-spacing:1.620000px;}
.ws141{word-spacing:1.632000px;}
.ws5e{word-spacing:1.680000px;}
.ws4e{word-spacing:1.740000px;}
.wse6{word-spacing:1.776000px;}
.ws54{word-spacing:1.800000px;}
.ws114{word-spacing:1.824000px;}
.ws2c{word-spacing:1.860000px;}
.wsf7{word-spacing:1.872000px;}
.ws128{word-spacing:1.920000px;}
.ws13d{word-spacing:1.968000px;}
.ws60{word-spacing:1.980000px;}
.wsf3{word-spacing:2.016000px;}
.ws58{word-spacing:2.040000px;}
.wse7{word-spacing:2.064000px;}
.ws67{word-spacing:2.100000px;}
.ws76{word-spacing:2.160000px;}
.ws5a{word-spacing:2.220000px;}
.wse0{word-spacing:2.256000px;}
.wsda{word-spacing:2.280000px;}
.ws137{word-spacing:2.304000px;}
.ws3c{word-spacing:2.340000px;}
.wsdb{word-spacing:2.352000px;}
.ws8b{word-spacing:2.400000px;}
.ws11a{word-spacing:2.448000px;}
.wsa9{word-spacing:2.460000px;}
.ws17{word-spacing:2.520000px;}
.ws104{word-spacing:2.544000px;}
.ws12b{word-spacing:2.592000px;}
.wsb5{word-spacing:2.640000px;}
.ws57{word-spacing:2.700000px;}
.ws147{word-spacing:2.736000px;}
.ws4a{word-spacing:2.760000px;}
.ws144{word-spacing:2.784000px;}
.ws52{word-spacing:2.820000px;}
.ws109{word-spacing:2.832000px;}
.ws32{word-spacing:2.880000px;}
.ws63{word-spacing:2.940000px;}
.ws118{word-spacing:2.976000px;}
.ws90{word-spacing:3.000000px;}
.ws10f{word-spacing:3.024000px;}
.ws16{word-spacing:3.060000px;}
.wsdc{word-spacing:3.072000px;}
.ws73{word-spacing:3.120000px;}
.wsee{word-spacing:3.168000px;}
.ws14{word-spacing:3.180000px;}
.wsdd{word-spacing:3.216000px;}
.ws37{word-spacing:3.240000px;}
.wse8{word-spacing:3.264000px;}
.ws69{word-spacing:3.300000px;}
.ws22{word-spacing:3.360000px;}
.wsf0{word-spacing:3.408000px;}
.wsf6{word-spacing:3.504000px;}
.ws24{word-spacing:3.540000px;}
.ws11b{word-spacing:3.552000px;}
.ws23{word-spacing:3.600000px;}
.ws49{word-spacing:3.660000px;}
.ws112{word-spacing:3.696000px;}
.ws5f{word-spacing:3.720000px;}
.ws145{word-spacing:3.744000px;}
.ws4c{word-spacing:3.780000px;}
.ws113{word-spacing:3.792000px;}
.ws70{word-spacing:3.840000px;}
.ws13b{word-spacing:3.888000px;}
.ws27{word-spacing:3.900000px;}
.ws119{word-spacing:3.936000px;}
.ws25{word-spacing:3.960000px;}
.wse5{word-spacing:4.032000px;}
.ws6b{word-spacing:4.080000px;}
.ws91{word-spacing:4.140000px;}
.wsf4{word-spacing:4.176000px;}
.wsa{word-spacing:4.200000px;}
.ws6d{word-spacing:4.260000px;}
.ws10a{word-spacing:4.272000px;}
.ws4f{word-spacing:4.320000px;}
.ws10e{word-spacing:4.368000px;}
.ws9d{word-spacing:4.380000px;}
.ws142{word-spacing:4.416000px;}
.ws34{word-spacing:4.440000px;}
.ws86{word-spacing:4.500000px;}
.ws149{word-spacing:4.512000px;}
.ws95{word-spacing:4.560000px;}
.ws29{word-spacing:4.620000px;}
.ws134{word-spacing:4.704000px;}
.wsd{word-spacing:4.740000px;}
.ws44{word-spacing:4.800000px;}
.ws20{word-spacing:4.860000px;}
.ws10c{word-spacing:4.896000px;}
.ws7c{word-spacing:4.980000px;}
.ws125{word-spacing:4.992000px;}
.wsd5{word-spacing:5.040000px;}
.ws3e{word-spacing:5.100000px;}
.ws19{word-spacing:5.160000px;}
.ws133{word-spacing:5.184000px;}
.wsad{word-spacing:5.220000px;}
.wscc{word-spacing:5.280000px;}
.wsc{word-spacing:5.340000px;}
.wsfd{word-spacing:5.376000px;}
.wsd9{word-spacing:5.400000px;}
.ws78{word-spacing:5.460000px;}
.wsfc{word-spacing:5.472000px;}
.ws59{word-spacing:5.520000px;}
.wsec{word-spacing:5.568000px;}
.ws2e{word-spacing:5.580000px;}
.wsb0{word-spacing:5.640000px;}
.ws9a{word-spacing:5.700000px;}
.ws74{word-spacing:5.760000px;}
.ws12e{word-spacing:5.808000px;}
.ws6e{word-spacing:5.820000px;}
.ws13e{word-spacing:5.856000px;}
.wsc6{word-spacing:5.880000px;}
.wsef{word-spacing:5.904000px;}
.wsd6{word-spacing:5.940000px;}
.wsf5{word-spacing:5.952000px;}
.wsb4{word-spacing:6.000000px;}
.wsfa{word-spacing:6.096000px;}
.ws50{word-spacing:6.120000px;}
.ws3a{word-spacing:6.180000px;}
.wsdf{word-spacing:6.192000px;}
.ws2b{word-spacing:6.240000px;}
.ws10d{word-spacing:6.288000px;}
.ws124{word-spacing:6.336000px;}
.ws38{word-spacing:6.360000px;}
.wsa7{word-spacing:6.420000px;}
.wsfb{word-spacing:6.432000px;}
.ws148{word-spacing:6.480000px;}
.ws13{word-spacing:6.540000px;}
.ws43{word-spacing:6.600000px;}
.wsde{word-spacing:6.624000px;}
.ws12{word-spacing:6.660000px;}
.ws5d{word-spacing:6.720000px;}
.ws6c{word-spacing:6.780000px;}
.ws18{word-spacing:6.840000px;}
.ws110{word-spacing:6.864000px;}
.ws62{word-spacing:6.900000px;}
.ws11c{word-spacing:6.912000px;}
.ws111{word-spacing:6.960000px;}
.wsd1{word-spacing:7.020000px;}
.ws106{word-spacing:7.104000px;}
.wsf1{word-spacing:7.296000px;}
.ws66{word-spacing:7.320000px;}
.ws11f{word-spacing:7.344000px;}
.ws2d{word-spacing:7.440000px;}
.ws117{word-spacing:7.488000px;}
.ws5b{word-spacing:7.500000px;}
.ws79{word-spacing:7.560000px;}
.wsf2{word-spacing:7.584000px;}
.ws7b{word-spacing:7.620000px;}
.ws10{word-spacing:7.680000px;}
.ws1c{word-spacing:7.740000px;}
.ws126{word-spacing:7.776000px;}
.ws7d{word-spacing:7.800000px;}
.ws12d{word-spacing:7.824000px;}
.ws7e{word-spacing:7.920000px;}
.ws46{word-spacing:7.980000px;}
.ws146{word-spacing:8.016000px;}
.ws84{word-spacing:8.040000px;}
.ws143{word-spacing:8.064000px;}
.wsb7{word-spacing:8.100000px;}
.ws105{word-spacing:8.208000px;}
.wsb1{word-spacing:8.220000px;}
.ws3f{word-spacing:8.280000px;}
.ws127{word-spacing:8.304000px;}
.ws2f{word-spacing:8.340000px;}
.wseb{word-spacing:8.352000px;}
.wscb{word-spacing:8.400000px;}
.ws28{word-spacing:8.460000px;}
.ws36{word-spacing:8.520000px;}
.ws132{word-spacing:8.544000px;}
.ws82{word-spacing:8.580000px;}
.ws123{word-spacing:8.592000px;}
.ws40{word-spacing:8.640000px;}
.ws39{word-spacing:8.700000px;}
.ws11{word-spacing:8.760000px;}
.wse9{word-spacing:8.784000px;}
.ws1d{word-spacing:8.820000px;}
.ws81{word-spacing:8.940000px;}
.ws9c{word-spacing:9.000000px;}
.wse1{word-spacing:9.120000px;}
.wsbb{word-spacing:9.180000px;}
.wsb6{word-spacing:9.240000px;}
.ws6a{word-spacing:9.360000px;}
.wsca{word-spacing:9.480000px;}
.ws13c{word-spacing:9.552000px;}
.ws51{word-spacing:9.600000px;}
.ws11d{word-spacing:9.696000px;}
.ws83{word-spacing:9.780000px;}
.ws41{word-spacing:9.840000px;}
.ws121{word-spacing:9.888000px;}
.ws80{word-spacing:10.080000px;}
.ws71{word-spacing:10.140000px;}
.wsc9{word-spacing:10.320000px;}
.ws99{word-spacing:10.500000px;}
.wsb9{word-spacing:10.560000px;}
.ws93{word-spacing:10.620000px;}
.ws12f{word-spacing:10.656000px;}
.wsba{word-spacing:10.680000px;}
.ws1a{word-spacing:10.860000px;}
.ws7a{word-spacing:10.920000px;}
.ws89{word-spacing:10.980000px;}
.ws107{word-spacing:10.992000px;}
.wsd2{word-spacing:11.100000px;}
.wsfe{word-spacing:11.136000px;}
.wsd3{word-spacing:11.160000px;}
.ws3b{word-spacing:11.280000px;}
.wsd8{word-spacing:11.340000px;}
.ws85{word-spacing:11.400000px;}
.ws26{word-spacing:11.460000px;}
.ws30{word-spacing:11.520000px;}
.ws15{word-spacing:11.640000px;}
.wse2{word-spacing:11.856000px;}
.ws139{word-spacing:11.952000px;}
.wsab{word-spacing:12.000000px;}
.wsd0{word-spacing:12.240000px;}
.ws96{word-spacing:12.300000px;}
.ws72{word-spacing:12.960000px;}
.wscd{word-spacing:13.020000px;}
.ws8f{word-spacing:13.080000px;}
.ws108{word-spacing:13.104000px;}
.ws8d{word-spacing:13.140000px;}
.wsae{word-spacing:13.380000px;}
.wsb3{word-spacing:13.620000px;}
.ws8a{word-spacing:13.740000px;}
.wsb{word-spacing:13.800000px;}
.ws56{word-spacing:14.100000px;}
.ws1e{word-spacing:14.460000px;}
.ws131{word-spacing:14.496000px;}
.wsbc{word-spacing:14.640000px;}
.ws116{word-spacing:14.880000px;}
.ws13a{word-spacing:15.312000px;}
.ws8c{word-spacing:15.360000px;}
.wsac{word-spacing:15.840000px;}
.ws94{word-spacing:15.960000px;}
.ws120{word-spacing:16.752000px;}
.ws100{word-spacing:16.800000px;}
.ws92{word-spacing:16.860000px;}
.wsaa{word-spacing:17.100000px;}
.wsb8{word-spacing:18.060000px;}
.wsff{word-spacing:18.528000px;}
.ws88{word-spacing:18.660000px;}
.ws7f{word-spacing:19.980000px;}
.wsb2{word-spacing:20.220000px;}
.ws10b{word-spacing:20.688000px;}
.wsc7{word-spacing:21.840000px;}
.ws122{word-spacing:25.152000px;}
.ws11e{word-spacing:29.952000px;}
.ws14b{word-spacing:73.056000px;}
.wsa4{word-spacing:546.288000px;}
.wsa0{word-spacing:585.792000px;}
._7b{margin-left:-15.600000px;}
._7a{margin-left:-11.676028px;}
._15{margin-left:-6.432000px;}
._2{margin-left:-4.854000px;}
._10{margin-left:-3.684000px;}
._5{margin-left:-2.682000px;}
._0{margin-left:-1.632000px;}
._4{width:1.137560px;}
._1{width:2.176200px;}
._19{width:3.180000px;}
._8{width:4.314000px;}
._9{width:5.706000px;}
._f{width:7.694440px;}
._18{width:9.485987px;}
._a{width:11.248881px;}
._79{width:12.878440px;}
._11{width:14.784000px;}
._12{width:17.634000px;}
._28{width:18.852000px;}
._7c{width:22.320000px;}
._c{width:31.632000px;}
._e{width:33.420000px;}
._d{width:34.620000px;}
._4c{width:36.048000px;}
._7{width:38.592000px;}
._3{width:40.090810px;}
._21{width:43.823986px;}
._13{width:50.160000px;}
._6e{width:51.833986px;}
._69{width:53.460000px;}
._2e{width:55.104000px;}
._7e{width:56.255991px;}
._46{width:65.678440px;}
._75{width:68.687995px;}
._22{width:70.032000px;}
._7d{width:73.056000px;}
._6c{width:76.943986px;}
._76{width:81.599995px;}
._50{width:88.224000px;}
._74{width:92.030398px;}
._14{width:96.516000px;}
._20{width:98.928000px;}
._48{width:109.152000px;}
._6f{width:137.020881px;}
._5d{width:162.431986px;}
._64{width:164.159986px;}
._4f{width:165.936000px;}
._1f{width:167.006426px;}
._5a{width:181.103986px;}
._72{width:185.711995px;}
._51{width:192.192000px;}
._77{width:193.727995px;}
._55{width:197.136000px;}
._44{width:201.696000px;}
._6d{width:203.759986px;}
._5e{width:224.640000px;}
._66{width:230.495986px;}
._29{width:241.838440px;}
._65{width:246.480000px;}
._78{width:247.727958px;}
._25{width:263.616000px;}
._57{width:265.584000px;}
._53{width:268.320000px;}
._2c{width:269.424000px;}
._5b{width:278.798440px;}
._6b{width:284.928000px;}
._70{width:289.598426px;}
._1a{width:291.791986px;}
._62{width:293.184000px;}
._30{width:296.592000px;}
._4d{width:297.648000px;}
._52{width:300.288000px;}
._39{width:312.336000px;}
._24{width:314.736000px;}
._43{width:316.670440px;}
._33{width:317.918440px;}
._58{width:318.960000px;}
._3b{width:324.336000px;}
._36{width:325.669176px;}
._34{width:330.660000px;}
._3f{width:334.896000px;}
._60{width:337.598426px;}
._2d{width:339.840000px;}
._3d{width:341.316000px;}
._5c{width:342.480000px;}
._63{width:349.041545px;}
._6a{width:353.616000px;}
._27{width:355.824000px;}
._31{width:358.464000px;}
._17{width:361.104000px;}
._4e{width:367.440000px;}
._2f{width:370.848000px;}
._16{width:372.816000px;}
._68{width:375.888000px;}
._2b{width:377.088000px;}
._54{width:378.192000px;}
._59{width:379.824000px;}
._56{width:384.900000px;}
._4b{width:392.880000px;}
._49{width:400.272000px;}
._3a{width:413.568000px;}
._42{width:416.256000px;}
._2a{width:429.504000px;}
._1e{width:431.898000px;}
._1d{width:434.400000px;}
._38{width:441.710440px;}
._73{width:464.537957px;}
._5f{width:477.204000px;}
._41{width:491.034000px;}
._26{width:502.848000px;}
._37{width:510.864000px;}
._35{width:515.136000px;}
._1c{width:530.990440px;}
._47{width:536.448000px;}
._40{width:537.504000px;}
._1b{width:548.208000px;}
._45{width:550.848000px;}
._67{width:555.899986px;}
._23{width:558.816000px;}
._3e{width:572.208000px;}
._61{width:573.360000px;}
._4a{width:574.800000px;}
._3c{width:590.832000px;}
._71{width:684.857965px;}
._32{width:1177.631952px;}
._b{width:1200.432061px;}
._6{width:1553.136067px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y24{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.y1c9{bottom:89.939833px;}
.y1c5{bottom:89.951866px;}
.y179{bottom:89.951998px;}
.y16c{bottom:89.952013px;}
.y1c1{bottom:89.963900px;}
.y16f{bottom:89.963921px;}
.y1bd{bottom:89.975933px;}
.y13f{bottom:89.975947px;}
.y155{bottom:89.975982px;}
.y1b9{bottom:89.987967px;}
.y138{bottom:89.987974px;}
.y47{bottom:90.000000px;}
.y18b{bottom:90.120003px;}
.ya2{bottom:90.797516px;}
.y268{bottom:91.139516px;}
.y17c{bottom:91.500000px;}
.y196{bottom:91.502516px;}
.ye1{bottom:91.511708px;}
.y137{bottom:91.513206px;}
.y4{bottom:97.125005px;}
.y1ca{bottom:98.939833px;}
.y1c6{bottom:98.951866px;}
.y1c2{bottom:98.963900px;}
.y1be{bottom:98.975933px;}
.y1ba{bottom:98.987967px;}
.ye9{bottom:99.761559px;}
.yfb{bottom:103.687042px;}
.y267{bottom:105.383516px;}
.y1ff{bottom:105.911552px;}
.yc4{bottom:107.297516px;}
.y74{bottom:107.672516px;}
.ya1{bottom:108.797516px;}
.y17b{bottom:109.500000px;}
.y195{bottom:109.502516px;}
.ye0{bottom:109.511708px;}
.y136{bottom:109.513206px;}
.ye8{bottom:117.761559px;}
.y266{bottom:119.627516px;}
.y1fe{bottom:120.155552px;}
.yfa{bottom:121.687042px;}
.yc3{bottom:125.297516px;}
.y73{bottom:125.672516px;}
.y230{bottom:126.773589px;}
.ya0{bottom:126.797516px;}
.y17a{bottom:127.500000px;}
.y194{bottom:127.502516px;}
.ydf{bottom:127.511708px;}
.y135{bottom:127.513206px;}
.y265{bottom:133.871516px;}
.y1fd{bottom:134.399552px;}
.ye7{bottom:135.761559px;}
.y23{bottom:139.264499px;}
.yf9{bottom:139.687042px;}
.y22f{bottom:141.017589px;}
.yc2{bottom:143.297516px;}
.y72{bottom:143.672516px;}
.y9f{bottom:144.797516px;}
.y1e9{bottom:145.500000px;}
.y1b8{bottom:145.502516px;}
.yde{bottom:145.511708px;}
.y134{bottom:145.513206px;}
.y264{bottom:148.115516px;}
.y1fc{bottom:148.643552px;}
.ye6{bottom:153.761559px;}
.y22e{bottom:155.261589px;}
.yf8{bottom:157.687042px;}
.yc1{bottom:161.297516px;}
.y71{bottom:161.672516px;}
.y263{bottom:162.359516px;}
.y9e{bottom:162.797516px;}
.y1fb{bottom:162.887552px;}
.y1e8{bottom:163.500000px;}
.y1b7{bottom:163.502516px;}
.ydd{bottom:163.511708px;}
.y133{bottom:163.513206px;}
.y193{bottom:164.252516px;}
.y22d{bottom:169.505589px;}
.ye5{bottom:171.761559px;}
.yf7{bottom:175.687042px;}
.y262{bottom:176.603516px;}
.y1fa{bottom:177.131552px;}
.yc0{bottom:179.297516px;}
.y70{bottom:179.672516px;}
.y9d{bottom:180.797516px;}
.y1e7{bottom:181.500000px;}
.y1b6{bottom:181.502516px;}
.ydc{bottom:181.511708px;}
.y132{bottom:181.513206px;}
.y192{bottom:182.252516px;}
.y22c{bottom:183.749589px;}
.ye4{bottom:189.761559px;}
.y261{bottom:190.847516px;}
.y1f9{bottom:191.375552px;}
.yf6{bottom:193.687042px;}
.y1a{bottom:196.933500px;}
.ybf{bottom:197.297516px;}
.y6f{bottom:197.672516px;}
.y22b{bottom:197.993589px;}
.y9c{bottom:198.797516px;}
.y1e6{bottom:199.500000px;}
.y1b5{bottom:199.502516px;}
.ydb{bottom:199.511708px;}
.y131{bottom:199.513206px;}
.y191{bottom:200.252516px;}
.y164{bottom:202.884002px;}
.y15d{bottom:202.895994px;}
.y152{bottom:202.896029px;}
.y142{bottom:202.907952px;}
.y15a{bottom:202.907986px;}
.y14d{bottom:202.908021px;}
.y172{bottom:202.919978px;}
.y148{bottom:202.920013px;}
.y145{bottom:202.932004px;}
.y260{bottom:205.091516px;}
.y46{bottom:207.317093px;}
.ye3{bottom:207.761559px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y17e{bottom:209.890343px;}
.y15e{bottom:211.895994px;}
.y175{bottom:211.932004px;}
.y22a{bottom:212.237589px;}
.ybe{bottom:215.297516px;}
.y6e{bottom:215.672516px;}
.y9b{bottom:216.797516px;}
.y1e5{bottom:217.500000px;}
.y1b4{bottom:217.502516px;}
.yda{bottom:217.511708px;}
.y130{bottom:217.513206px;}
.y190{bottom:218.252516px;}
.y25f{bottom:219.335516px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y45{bottom:225.317093px;}
.y229{bottom:226.481589px;}
.y1f8{bottom:227.363552px;}
.yf5{bottom:229.687042px;}
.ybd{bottom:233.297516px;}
.y25e{bottom:233.579516px;}
.y6d{bottom:233.672516px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y9a{bottom:234.797516px;}
.y1e4{bottom:235.500000px;}
.y1b3{bottom:235.502516px;}
.yd9{bottom:235.511708px;}
.y12f{bottom:235.513206px;}
.y18f{bottom:236.252516px;}
.y228{bottom:240.725589px;}
.y44{bottom:243.317093px;}
.ye2{bottom:243.761559px;}
.y25d{bottom:247.823516px;}
.ybc{bottom:251.297516px;}
.y6c{bottom:251.672516px;}
.y99{bottom:252.797516px;}
.y1e3{bottom:253.500000px;}
.y1b2{bottom:253.502516px;}
.yd8{bottom:253.511708px;}
.y12e{bottom:253.513206px;}
.y18e{bottom:254.252516px;}
.y227{bottom:254.969589px;}
.y1f7{bottom:255.863552px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y25c{bottom:262.067516px;}
.y226{bottom:269.213589px;}
.ybb{bottom:269.297516px;}
.y6b{bottom:269.672516px;}
.y1f6{bottom:270.107552px;}
.y98{bottom:270.797516px;}
.y1e2{bottom:271.500000px;}
.y1b1{bottom:271.502516px;}
.yd7{bottom:271.511708px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y25b{bottom:276.311516px;}
.y43{bottom:280.067093px;}
.y225{bottom:283.457589px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yba{bottom:287.297516px;}
.y6a{bottom:287.672516px;}
.y97{bottom:288.797516px;}
.yf4{bottom:288.937042px;}
.y1e1{bottom:289.500000px;}
.y1b0{bottom:289.502516px;}
.yd6{bottom:289.511708px;}
.y12d{bottom:289.513206px;}
.y18d{bottom:290.252516px;}
.y25a{bottom:290.555516px;}
.y224{bottom:297.701589px;}
.y42{bottom:298.067093px;}
.y1f5{bottom:298.607552px;}
.y259{bottom:304.799516px;}
.yb9{bottom:305.297516px;}
.y69{bottom:305.672516px;}
.y96{bottom:306.797516px;}
.yf3{bottom:306.937042px;}
.y1e0{bottom:307.500000px;}
.y1af{bottom:307.502516px;}
.y18c{bottom:308.252516px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y223{bottom:311.945589px;}
.yea{bottom:314.539055px;}
.y41{bottom:316.067093px;}
.y258{bottom:319.043516px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yb8{bottom:323.297516px;}
.y68{bottom:323.672516px;}
.y95{bottom:324.797516px;}
.yf2{bottom:324.937042px;}
.y1df{bottom:325.500000px;}
.y1ae{bottom:325.502516px;}
.yd5{bottom:325.511708px;}
.y222{bottom:326.189589px;}
.y1f4{bottom:327.107552px;}
.y12c{bottom:330.958206px;}
.y257{bottom:333.287516px;}
.y40{bottom:334.067093px;}
.y221{bottom:340.433589px;}
.yb7{bottom:341.297516px;}
.y67{bottom:341.672516px;}
.y94{bottom:342.797516px;}
.yf1{bottom:342.937042px;}
.y1de{bottom:343.500000px;}
.y1ad{bottom:343.502516px;}
.y256{bottom:347.531516px;}
.y11{bottom:348.133500px;}
.y1cb{bottom:348.455824px;}
.y1c7{bottom:348.467857px;}
.y1c3{bottom:348.479891px;}
.y1bf{bottom:348.491924px;}
.y1bb{bottom:348.503958px;}
.y12b{bottom:348.958206px;}
.y3f{bottom:352.067093px;}
.y220{bottom:354.677589px;}
.y1f3{bottom:355.607552px;}
.y1cc{bottom:357.455824px;}
.yb6{bottom:359.297516px;}
.y66{bottom:359.672516px;}
.y93{bottom:360.797516px;}
.yf0{bottom:360.937042px;}
.y1dd{bottom:361.500000px;}
.y1ac{bottom:361.502516px;}
.y255{bottom:361.775516px;}
.y12a{bottom:366.958206px;}
.y21f{bottom:368.921589px;}
.y3e{bottom:370.067093px;}
.yd4{bottom:374.771708px;}
.y15f{bottom:375.287994px;}
.y176{bottom:375.324004px;}
.y254{bottom:376.019516px;}
.yb5{bottom:377.297516px;}
.y65{bottom:377.672516px;}
.y92{bottom:378.797516px;}
.yef{bottom:378.937042px;}
.y1dc{bottom:379.500000px;}
.y1ab{bottom:379.502516px;}
.y21e{bottom:383.165589px;}
.y177{bottom:384.300021px;}
.y149{bottom:384.312013px;}
.y139{bottom:384.323970px;}
.y129{bottom:384.958206px;}
.y10{bottom:386.785499px;}
.y1f2{bottom:387.881562px;}
.y3d{bottom:388.067093px;}
.y253{bottom:390.263516px;}
.y18a{bottom:392.297562px;}
.yd3{bottom:392.771708px;}
.yb4{bottom:395.297516px;}
.y64{bottom:395.672516px;}
.y91{bottom:396.797516px;}
.yee{bottom:396.937042px;}
.y21d{bottom:397.409589px;}
.y1db{bottom:397.500000px;}
.y1aa{bottom:397.502516px;}
.y1f1{bottom:402.125562px;}
.y128{bottom:402.958206px;}
.y252{bottom:404.507516px;}
.y3c{bottom:406.067093px;}
.yf{bottom:408.044999px;}
.y189{bottom:410.297562px;}
.yd2{bottom:410.771708px;}
.y21c{bottom:411.653589px;}
.yb3{bottom:413.297516px;}
.y63{bottom:413.672516px;}
.y90{bottom:414.797516px;}
.yed{bottom:414.937042px;}
.y1da{bottom:415.500000px;}
.y1a9{bottom:415.502516px;}
.y251{bottom:418.751516px;}
.y127{bottom:420.958206px;}
.y3b{bottom:424.067093px;}
.y21b{bottom:425.897589px;}
.y188{bottom:428.297562px;}
.y1cd{bottom:429.551823px;}
.y1f0{bottom:430.601562px;}
.yb2{bottom:431.297516px;}
.y62{bottom:431.672516px;}
.y8f{bottom:432.797516px;}
.yec{bottom:432.937042px;}
.y250{bottom:432.995516px;}
.y1d9{bottom:433.500000px;}
.y1a8{bottom:433.502516px;}
.y126{bottom:438.958206px;}
.y21a{bottom:440.141589px;}
.y3a{bottom:442.067093px;}
.y187{bottom:446.297562px;}
.yd1{bottom:446.771708px;}
.y24f{bottom:447.239516px;}
.yb1{bottom:449.297516px;}
.y61{bottom:449.672516px;}
.y8e{bottom:450.797516px;}
.yeb{bottom:450.937042px;}
.y1d8{bottom:451.500000px;}
.y1a7{bottom:451.502516px;}
.y219{bottom:454.385589px;}
.y125{bottom:456.958206px;}
.y1ef{bottom:459.077562px;}
.y39{bottom:460.067093px;}
.y24e{bottom:461.483516px;}
.y186{bottom:464.297562px;}
.yb0{bottom:467.297516px;}
.y60{bottom:467.672516px;}
.y218{bottom:468.629589px;}
.y8d{bottom:468.797516px;}
.y1d7{bottom:469.500000px;}
.y1a6{bottom:469.502516px;}
.y1ee{bottom:473.321562px;}
.y124{bottom:474.958206px;}
.y24d{bottom:475.727516px;}
.y38{bottom:478.067093px;}
.y185{bottom:482.297562px;}
.y217{bottom:482.873589px;}
.ye{bottom:484.864502px;}
.yaf{bottom:485.297516px;}
.y5f{bottom:485.672516px;}
.y8c{bottom:486.797516px;}
.y1d6{bottom:487.500000px;}
.y1a5{bottom:487.502516px;}
.y1ed{bottom:487.565562px;}
.y24c{bottom:489.971516px;}
.y123{bottom:492.958206px;}
.yd0{bottom:496.031708px;}
.y37{bottom:496.067093px;}
.y216{bottom:497.117589px;}
.y1ec{bottom:501.809562px;}
.yd{bottom:502.864502px;}
.yae{bottom:503.297516px;}
.y5e{bottom:503.672516px;}
.y24b{bottom:504.215516px;}
.y8b{bottom:504.797516px;}
.y1d5{bottom:505.500000px;}
.y1a4{bottom:505.502516px;}
.y122{bottom:510.958206px;}
.y215{bottom:511.361589px;}
.ycf{bottom:514.031708px;}
.y36{bottom:514.067093px;}
.y115{bottom:514.260734px;}
.y1eb{bottom:516.053562px;}
.y184{bottom:518.297562px;}
.y24a{bottom:518.459516px;}
.yc{bottom:520.864502px;}
.yad{bottom:521.297516px;}
.y5d{bottom:521.672516px;}
.y8a{bottom:522.797516px;}
.y1d4{bottom:523.500000px;}
.y1a3{bottom:523.502516px;}
.y214{bottom:525.605589px;}
.y114{bottom:528.504734px;}
.y1ea{bottom:530.297562px;}
.yce{bottom:532.031708px;}
.y35{bottom:532.067093px;}
.y249{bottom:532.703516px;}
.y183{bottom:536.297562px;}
.yb{bottom:538.864499px;}
.yac{bottom:539.297516px;}
.y5c{bottom:539.672516px;}
.y213{bottom:539.849589px;}
.y89{bottom:540.797516px;}
.y1d3{bottom:541.500000px;}
.y1a2{bottom:541.502516px;}
.y113{bottom:542.748734px;}
.y248{bottom:546.947516px;}
.y121{bottom:546.958206px;}
.y160{bottom:547.655994px;}
.y178{bottom:547.668021px;}
.y14a{bottom:547.680013px;}
.y13a{bottom:547.691970px;}
.y16b{bottom:547.692004px;}
.ycd{bottom:550.031708px;}
.y34{bottom:550.067093px;}
.y212{bottom:554.093589px;}
.y173{bottom:556.667986px;}
.y14e{bottom:556.668021px;}
.y156{bottom:556.679978px;}
.y169{bottom:556.680013px;}
.y13b{bottom:556.691970px;}
.y167{bottom:556.692004px;}
.ya{bottom:556.864499px;}
.y112{bottom:556.992734px;}
.yab{bottom:557.297516px;}
.y5b{bottom:557.672516px;}
.y88{bottom:558.797516px;}
.y1d2{bottom:559.500000px;}
.y1a1{bottom:559.502516px;}
.y247{bottom:561.191516px;}
.ycc{bottom:568.031708px;}
.y33{bottom:568.067093px;}
.y211{bottom:568.337589px;}
.y111{bottom:571.236734px;}
.yaa{bottom:575.297516px;}
.y246{bottom:575.435516px;}
.y5a{bottom:575.672516px;}
.y87{bottom:576.797516px;}
.y182{bottom:576.797562px;}
.y1d1{bottom:577.500000px;}
.y1a0{bottom:577.502516px;}
.y210{bottom:582.581589px;}
.y110{bottom:585.480734px;}
.ycb{bottom:586.031708px;}
.y32{bottom:586.067093px;}
.y120{bottom:588.403206px;}
.y245{bottom:589.679516px;}
.y59{bottom:593.672516px;}
.y86{bottom:594.797516px;}
.y181{bottom:594.797562px;}
.y1d0{bottom:595.500000px;}
.y19f{bottom:595.502516px;}
.y17d{bottom:596.599045px;}
.y20f{bottom:596.825589px;}
.y10f{bottom:599.724734px;}
.y244{bottom:603.923516px;}
.yca{bottom:604.031708px;}
.y31{bottom:604.067093px;}
.y11f{bottom:606.403206px;}
.y20e{bottom:611.069589px;}
.y58{bottom:611.672516px;}
.ya9{bottom:612.047516px;}
.y85{bottom:612.797516px;}
.y180{bottom:612.797562px;}
.y19e{bottom:613.502516px;}
.y10e{bottom:617.952734px;}
.y243{bottom:618.167516px;}
.yc9{bottom:622.031708px;}
.y30{bottom:622.067093px;}
.y11e{bottom:624.403206px;}
.y20d{bottom:625.313589px;}
.y57{bottom:629.672516px;}
.ya8{bottom:630.047516px;}
.y84{bottom:630.797516px;}
.y1cf{bottom:631.500000px;}
.y19d{bottom:631.502516px;}
.y10d{bottom:632.196734px;}
.y242{bottom:632.411516px;}
.y20c{bottom:639.557589px;}
.yc8{bottom:640.031708px;}
.y2f{bottom:640.067093px;}
.y11d{bottom:642.403206px;}
.y9{bottom:645.510000px;}
.y10c{bottom:646.440734px;}
.y241{bottom:646.655516px;}
.y56{bottom:647.672516px;}
.ya7{bottom:648.047516px;}
.y83{bottom:648.797516px;}
.y17f{bottom:648.797562px;}
.y19c{bottom:649.502516px;}
.y20b{bottom:653.801589px;}
.yc7{bottom:658.031708px;}
.y271{bottom:659.483688px;}
.y11c{bottom:660.403206px;}
.y240{bottom:660.899516px;}
.y1ce{bottom:662.987812px;}
.y1c8{bottom:662.999845px;}
.y1c4{bottom:663.011879px;}
.y1c0{bottom:663.023912px;}
.y1bc{bottom:663.035946px;}
.y10b{bottom:664.584734px;}
.y55{bottom:665.672516px;}
.ya6{bottom:666.047516px;}
.y8{bottom:666.771000px;}
.y82{bottom:666.797516px;}
.y19b{bottom:667.502516px;}
.y20a{bottom:668.045589px;}
.y23f{bottom:675.143516px;}
.yc6{bottom:676.031708px;}
.y10a{bottom:678.828734px;}
.y270{bottom:681.280930px;}
.y209{bottom:682.289589px;}
.y54{bottom:683.672516px;}
.ya5{bottom:684.047516px;}
.y81{bottom:684.797516px;}
.y19a{bottom:685.502516px;}
.y2e{bottom:688.559696px;}
.y23e{bottom:689.387516px;}
.y109{bottom:693.072734px;}
.y11b{bottom:696.403206px;}
.y208{bottom:696.533589px;}
.y26f{bottom:698.284061px;}
.y53{bottom:701.672516px;}
.ya4{bottom:702.047516px;}
.y80{bottom:702.797516px;}
.y2d{bottom:702.803696px;}
.y23d{bottom:703.631516px;}
.y108{bottom:707.316734px;}
.y207{bottom:710.777589px;}
.yc5{bottom:712.031708px;}
.y26e{bottom:717.328033px;}
.y23c{bottom:717.875516px;}
.y52{bottom:719.672516px;}
.ya3{bottom:720.047516px;}
.y7f{bottom:720.797516px;}
.y161{bottom:720.923994px;}
.y174{bottom:720.935986px;}
.y14f{bottom:720.936021px;}
.y157{bottom:720.947978px;}
.y16a{bottom:720.948013px;}
.y13c{bottom:720.959970px;}
.y168{bottom:720.960004px;}
.y199{bottom:721.502516px;}
.y107{bottom:721.560734px;}
.y206{bottom:725.021589px;}
.y7{bottom:726.298500px;}
.y165{bottom:729.912002px;}
.y162{bottom:729.923994px;}
.y16d{bottom:729.924009px;}
.y153{bottom:729.924029px;}
.y170{bottom:729.935918px;}
.y143{bottom:729.935952px;}
.y15b{bottom:729.935986px;}
.y150{bottom:729.936021px;}
.y140{bottom:729.947944px;}
.y158{bottom:729.947978px;}
.y14b{bottom:729.948013px;}
.y13d{bottom:729.959970px;}
.y146{bottom:729.960004px;}
.y23b{bottom:732.119516px;}
.y106{bottom:735.804734px;}
.y51{bottom:737.672516px;}
.y11a{bottom:737.848206px;}
.y7e{bottom:738.797516px;}
.y26d{bottom:739.125320px;}
.y205{bottom:739.265589px;}
.y198{bottom:739.502516px;}
.y2c{bottom:740.652145px;}
.y23a{bottom:746.363516px;}
.y3{bottom:752.599495px;}
.y204{bottom:753.509589px;}
.y105{bottom:753.948734px;}
.y50{bottom:755.672516px;}
.y119{bottom:755.848206px;}
.y7d{bottom:756.797516px;}
.y197{bottom:757.502516px;}
.y2b{bottom:758.652145px;}
.y239{bottom:760.607516px;}
.y26c{bottom:762.992736px;}
.y203{bottom:767.753589px;}
.y104{bottom:768.192734px;}
.y4f{bottom:773.672516px;}
.y118{bottom:773.848206px;}
.y7c{bottom:774.797516px;}
.y238{bottom:774.851516px;}
.y26b{bottom:777.236736px;}
.y202{bottom:781.997589px;}
.y103{bottom:782.436734px;}
.y237{bottom:789.095516px;}
.y4e{bottom:791.672516px;}
.y117{bottom:791.848206px;}
.y7b{bottom:792.797516px;}
.y102{bottom:796.680734px;}
.y26a{bottom:799.028736px;}
.y2a{bottom:801.392529px;}
.y236{bottom:803.339516px;}
.y4d{bottom:809.672516px;}
.y7a{bottom:810.797516px;}
.y101{bottom:810.924734px;}
.y269{bottom:813.272736px;}
.y201{bottom:814.547516px;}
.y235{bottom:817.583516px;}
.y29{bottom:823.895529px;}
.y100{bottom:825.168734px;}
.y4c{bottom:827.672516px;}
.y116{bottom:827.848206px;}
.y79{bottom:828.797516px;}
.y234{bottom:831.827516px;}
.yff{bottom:839.412734px;}
.y4b{bottom:845.672516px;}
.y233{bottom:846.071516px;}
.y28{bottom:846.398529px;}
.y78{bottom:846.797516px;}
.yfe{bottom:853.656734px;}
.y232{bottom:860.315516px;}
.y4a{bottom:863.672516px;}
.y77{bottom:864.797516px;}
.y231{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.yfd{bottom:881.664734px;}
.y76{bottom:882.797516px;}
.y200{bottom:888.803516px;}
.y166{bottom:893.220002px;}
.y163{bottom:893.231994px;}
.y16e{bottom:893.232009px;}
.y154{bottom:893.232029px;}
.y171{bottom:893.243918px;}
.y144{bottom:893.243952px;}
.y15c{bottom:893.243986px;}
.y151{bottom:893.244021px;}
.y141{bottom:893.255944px;}
.y159{bottom:893.255978px;}
.y14c{bottom:893.256013px;}
.y13e{bottom:893.267970px;}
.y147{bottom:893.268004px;}
.y49{bottom:899.672516px;}
.y27{bottom:899.785217px;}
.y75{bottom:900.797516px;}
.yfc{bottom:903.047516px;}
.y26{bottom:925.867084px;}
.y25{bottom:940.111084px;}
.y48{bottom:940.520691px;}
.y1{bottom:966.726000px;}
.h17{height:31.180800px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.hb{height:42.048000px;}
.h11{height:44.544000px;}
.h14{height:45.696000px;}
.h6{height:45.900000px;}
.hc{height:46.704000px;}
.h12{height:47.472000px;}
.h3{height:48.195000px;}
.h16{height:50.640000px;}
.h15{height:53.640000px;}
.h2{height:55.080000px;}
.h10{height:55.680000px;}
.hf{height:59.340000px;}
.he{height:64.866000px;}
.h13{height:65.274000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:80.907303px;}
.xc{left:85.535402px;}
.x8{left:93.545402px;}
.x6d{left:97.799400px;}
.x9{left:100.535402px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x54{left:118.600204px;}
.x3e{left:133.906652px;}
.xd{left:134.926200px;}
.x55{left:139.982998px;}
.xe{left:149.170200px;}
.xf{left:163.414200px;}
.x56{left:167.990998px;}
.x10{left:177.658200px;}
.x57{left:182.234998px;}
.x11{left:191.902200px;}
.x58{left:196.478998px;}
.x4{left:203.484001px;}
.x12{left:206.146200px;}
.x59{left:210.722998px;}
.xa{left:214.405060px;}
.x13{left:220.390200px;}
.xb{left:223.405060px;}
.x5a{left:224.966998px;}
.x14{left:234.634200px;}
.x2b{left:237.574649px;}
.x5b{left:243.098998px;}
.x15{left:248.878200px;}
.x2c{left:251.818649px;}
.x5c{left:257.342998px;}
.x16{left:263.122200px;}
.x2d{left:266.062649px;}
.x5d{left:271.586998px;}
.x17{left:277.366200px;}
.x2e{left:280.306649px;}
.x5e{left:285.818998px;}
.x18{left:291.610200px;}
.x2f{left:294.550649px;}
.x5f{left:300.062998px;}
.x19{left:305.854200px;}
.x30{left:308.794649px;}
.x4a{left:312.670649px;}
.x60{left:318.206998px;}
.x1a{left:320.098200px;}
.x3f{left:323.038650px;}
.x31{left:326.950649px;}
.x61{left:332.450998px;}
.x1b{left:334.342200px;}
.x40{left:337.282650px;}
.x32{left:341.194649px;}
.x62{left:346.694998px;}
.x1c{left:348.586200px;}
.x4d{left:351.526649px;}
.x33{left:355.438649px;}
.x63{left:360.938998px;}
.x1d{left:366.742200px;}
.x34{left:369.682649px;}
.x64{left:375.182998px;}
.x1e{left:380.986200px;}
.x35{left:383.926649px;}
.x65{left:389.426998px;}
.x1f{left:395.230200px;}
.x36{left:398.170649px;}
.x43{left:402.070648px;}
.x66{left:407.570998px;}
.x20{left:409.474200px;}
.x37{left:412.414649px;}
.x44{left:416.314648px;}
.x67{left:421.814998px;}
.x21{left:423.718200px;}
.x41{left:426.646650px;}
.x38{left:430.558649px;}
.x68{left:436.058998px;}
.x22{left:437.962200px;}
.x42{left:440.890650px;}
.x39{left:444.802649px;}
.x4e{left:451.234650px;}
.x3{left:454.959000px;}
.x23{left:456.118200px;}
.x3a{left:459.046649px;}
.x4f{left:465.478650px;}
.x51{left:469.354650px;}
.x24{left:470.362200px;}
.x3b{left:473.290649px;}
.x69{left:478.790998px;}
.x52{left:483.598650px;}
.x25{left:484.606200px;}
.x5{left:485.858414px;}
.x3c{left:487.534649px;}
.x45{left:491.446648px;}
.x53{left:497.842650px;}
.x26{left:498.850200px;}
.x3d{left:501.778649px;}
.x46{left:505.690648px;}
.x6a{left:511.251000px;}
.x27{left:513.094200px;}
.x4b{left:515.986650px;}
.x47{left:519.934648px;}
.x6b{left:525.495000px;}
.x28{left:527.338200px;}
.x4c{left:530.230650px;}
.x48{left:534.178648px;}
.x6c{left:539.739000px;}
.x29{left:541.582200px;}
.x50{left:544.510651px;}
.x49{left:548.422648px;}
.x2a{left:555.826200px;}
@media print{
.v3{vertical-align:-17.066732pt;}
.v2{vertical-align:-1.578667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls10{letter-spacing:-1.621333pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.554667pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000076pt;}
.ls11{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.106667pt;}
.ls1b{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.597304pt;}
.ls24{letter-spacing:0.597333pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.693333pt;}
.ls23{letter-spacing:0.720000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.906667pt;}
.ls1{letter-spacing:2.986667pt;}
.lsb{letter-spacing:174.037333pt;}
.lse{letter-spacing:272.089600pt;}
.lsa{letter-spacing:303.488000pt;}
.lsf{letter-spacing:312.409600pt;}
.lsc{letter-spacing:377.130667pt;}
.wsbf{word-spacing:-13.600000pt;}
.ws77{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.312000pt;}
.ws1b{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.818667pt;}
.ws136{word-spacing:-11.264000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.773333pt;}
.ws8e{word-spacing:-10.666667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws2{word-spacing:-8.362667pt;}
.wsd4{word-spacing:-8.192000pt;}
.ws6{word-spacing:-7.728000pt;}
.ws14a{word-spacing:-7.466667pt;}
.ws9f{word-spacing:-5.333333pt;}
.ws97{word-spacing:-1.600000pt;}
.wsbd{word-spacing:-1.333333pt;}
.wsc4{word-spacing:-1.226667pt;}
.wsa8{word-spacing:-1.173333pt;}
.ws9b{word-spacing:-1.120000pt;}
.wsbe{word-spacing:-1.066667pt;}
.wse4{word-spacing:-1.024000pt;}
.ws68{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.853333pt;}
.wsc5{word-spacing:-0.800000pt;}
.wse3{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.746667pt;}
.wsaf{word-spacing:-0.693333pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws135{word-spacing:-0.597333pt;}
.wsc1{word-spacing:-0.586667pt;}
.ws61{word-spacing:-0.533333pt;}
.wsa5{word-spacing:-0.480000pt;}
.wsea{word-spacing:-0.469333pt;}
.ws4b{word-spacing:-0.426667pt;}
.wsc3{word-spacing:-0.373333pt;}
.ws42{word-spacing:-0.320000pt;}
.ws75{word-spacing:-0.266667pt;}
.wsa2{word-spacing:-0.256000pt;}
.wsa3{word-spacing:-0.213333pt;}
.wsa1{word-spacing:-0.170667pt;}
.wsc2{word-spacing:-0.160000pt;}
.ws47{word-spacing:-0.106667pt;}
.ws102{word-spacing:-0.085333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws87{word-spacing:0.053333pt;}
.ws35{word-spacing:0.106667pt;}
.wsc8{word-spacing:0.160000pt;}
.ws5c{word-spacing:0.213333pt;}
.ws13f{word-spacing:0.298667pt;}
.ws6f{word-spacing:0.320000pt;}
.ws140{word-spacing:0.341333pt;}
.wsce{word-spacing:0.373333pt;}
.ws64{word-spacing:0.426667pt;}
.ws12c{word-spacing:0.469333pt;}
.ws103{word-spacing:0.512000pt;}
.ws4d{word-spacing:0.533333pt;}
.ws9e{word-spacing:0.554667pt;}
.ws98{word-spacing:0.586667pt;}
.ws12a{word-spacing:0.597333pt;}
.ws21{word-spacing:0.640000pt;}
.ws129{word-spacing:0.682667pt;}
.wse{word-spacing:0.693333pt;}
.ws33{word-spacing:0.746667pt;}
.ws9{word-spacing:0.800000pt;}
.wsed{word-spacing:0.810667pt;}
.wsa6{word-spacing:0.853333pt;}
.ws138{word-spacing:0.896000pt;}
.wsd7{word-spacing:0.960000pt;}
.wsf9{word-spacing:0.981333pt;}
.ws48{word-spacing:1.013333pt;}
.wsf8{word-spacing:1.024000pt;}
.ws31{word-spacing:1.066667pt;}
.ws115{word-spacing:1.109333pt;}
.ws45{word-spacing:1.120000pt;}
.ws101{word-spacing:1.152000pt;}
.ws55{word-spacing:1.173333pt;}
.wsf{word-spacing:1.226667pt;}
.ws3d{word-spacing:1.280000pt;}
.ws65{word-spacing:1.333333pt;}
.wscf{word-spacing:1.386667pt;}
.ws130{word-spacing:1.408000pt;}
.ws53{word-spacing:1.440000pt;}
.ws141{word-spacing:1.450667pt;}
.ws5e{word-spacing:1.493333pt;}
.ws4e{word-spacing:1.546667pt;}
.wse6{word-spacing:1.578667pt;}
.ws54{word-spacing:1.600000pt;}
.ws114{word-spacing:1.621333pt;}
.ws2c{word-spacing:1.653333pt;}
.wsf7{word-spacing:1.664000pt;}
.ws128{word-spacing:1.706667pt;}
.ws13d{word-spacing:1.749333pt;}
.ws60{word-spacing:1.760000pt;}
.wsf3{word-spacing:1.792000pt;}
.ws58{word-spacing:1.813333pt;}
.wse7{word-spacing:1.834667pt;}
.ws67{word-spacing:1.866667pt;}
.ws76{word-spacing:1.920000pt;}
.ws5a{word-spacing:1.973333pt;}
.wse0{word-spacing:2.005333pt;}
.wsda{word-spacing:2.026667pt;}
.ws137{word-spacing:2.048000pt;}
.ws3c{word-spacing:2.080000pt;}
.wsdb{word-spacing:2.090667pt;}
.ws8b{word-spacing:2.133333pt;}
.ws11a{word-spacing:2.176000pt;}
.wsa9{word-spacing:2.186667pt;}
.ws17{word-spacing:2.240000pt;}
.ws104{word-spacing:2.261333pt;}
.ws12b{word-spacing:2.304000pt;}
.wsb5{word-spacing:2.346667pt;}
.ws57{word-spacing:2.400000pt;}
.ws147{word-spacing:2.432000pt;}
.ws4a{word-spacing:2.453333pt;}
.ws144{word-spacing:2.474667pt;}
.ws52{word-spacing:2.506667pt;}
.ws109{word-spacing:2.517333pt;}
.ws32{word-spacing:2.560000pt;}
.ws63{word-spacing:2.613333pt;}
.ws118{word-spacing:2.645333pt;}
.ws90{word-spacing:2.666667pt;}
.ws10f{word-spacing:2.688000pt;}
.ws16{word-spacing:2.720000pt;}
.wsdc{word-spacing:2.730667pt;}
.ws73{word-spacing:2.773333pt;}
.wsee{word-spacing:2.816000pt;}
.ws14{word-spacing:2.826667pt;}
.wsdd{word-spacing:2.858667pt;}
.ws37{word-spacing:2.880000pt;}
.wse8{word-spacing:2.901333pt;}
.ws69{word-spacing:2.933333pt;}
.ws22{word-spacing:2.986667pt;}
.wsf0{word-spacing:3.029333pt;}
.wsf6{word-spacing:3.114667pt;}
.ws24{word-spacing:3.146667pt;}
.ws11b{word-spacing:3.157333pt;}
.ws23{word-spacing:3.200000pt;}
.ws49{word-spacing:3.253333pt;}
.ws112{word-spacing:3.285333pt;}
.ws5f{word-spacing:3.306667pt;}
.ws145{word-spacing:3.328000pt;}
.ws4c{word-spacing:3.360000pt;}
.ws113{word-spacing:3.370667pt;}
.ws70{word-spacing:3.413333pt;}
.ws13b{word-spacing:3.456000pt;}
.ws27{word-spacing:3.466667pt;}
.ws119{word-spacing:3.498667pt;}
.ws25{word-spacing:3.520000pt;}
.wse5{word-spacing:3.584000pt;}
.ws6b{word-spacing:3.626667pt;}
.ws91{word-spacing:3.680000pt;}
.wsf4{word-spacing:3.712000pt;}
.wsa{word-spacing:3.733333pt;}
.ws6d{word-spacing:3.786667pt;}
.ws10a{word-spacing:3.797333pt;}
.ws4f{word-spacing:3.840000pt;}
.ws10e{word-spacing:3.882667pt;}
.ws9d{word-spacing:3.893333pt;}
.ws142{word-spacing:3.925333pt;}
.ws34{word-spacing:3.946667pt;}
.ws86{word-spacing:4.000000pt;}
.ws149{word-spacing:4.010667pt;}
.ws95{word-spacing:4.053333pt;}
.ws29{word-spacing:4.106667pt;}
.ws134{word-spacing:4.181333pt;}
.wsd{word-spacing:4.213333pt;}
.ws44{word-spacing:4.266667pt;}
.ws20{word-spacing:4.320000pt;}
.ws10c{word-spacing:4.352000pt;}
.ws7c{word-spacing:4.426667pt;}
.ws125{word-spacing:4.437333pt;}
.wsd5{word-spacing:4.480000pt;}
.ws3e{word-spacing:4.533333pt;}
.ws19{word-spacing:4.586667pt;}
.ws133{word-spacing:4.608000pt;}
.wsad{word-spacing:4.640000pt;}
.wscc{word-spacing:4.693333pt;}
.wsc{word-spacing:4.746667pt;}
.wsfd{word-spacing:4.778667pt;}
.wsd9{word-spacing:4.800000pt;}
.ws78{word-spacing:4.853333pt;}
.wsfc{word-spacing:4.864000pt;}
.ws59{word-spacing:4.906667pt;}
.wsec{word-spacing:4.949333pt;}
.ws2e{word-spacing:4.960000pt;}
.wsb0{word-spacing:5.013333pt;}
.ws9a{word-spacing:5.066667pt;}
.ws74{word-spacing:5.120000pt;}
.ws12e{word-spacing:5.162667pt;}
.ws6e{word-spacing:5.173333pt;}
.ws13e{word-spacing:5.205333pt;}
.wsc6{word-spacing:5.226667pt;}
.wsef{word-spacing:5.248000pt;}
.wsd6{word-spacing:5.280000pt;}
.wsf5{word-spacing:5.290667pt;}
.wsb4{word-spacing:5.333333pt;}
.wsfa{word-spacing:5.418667pt;}
.ws50{word-spacing:5.440000pt;}
.ws3a{word-spacing:5.493333pt;}
.wsdf{word-spacing:5.504000pt;}
.ws2b{word-spacing:5.546667pt;}
.ws10d{word-spacing:5.589333pt;}
.ws124{word-spacing:5.632000pt;}
.ws38{word-spacing:5.653333pt;}
.wsa7{word-spacing:5.706667pt;}
.wsfb{word-spacing:5.717333pt;}
.ws148{word-spacing:5.760000pt;}
.ws13{word-spacing:5.813333pt;}
.ws43{word-spacing:5.866667pt;}
.wsde{word-spacing:5.888000pt;}
.ws12{word-spacing:5.920000pt;}
.ws5d{word-spacing:5.973333pt;}
.ws6c{word-spacing:6.026667pt;}
.ws18{word-spacing:6.080000pt;}
.ws110{word-spacing:6.101333pt;}
.ws62{word-spacing:6.133333pt;}
.ws11c{word-spacing:6.144000pt;}
.ws111{word-spacing:6.186667pt;}
.wsd1{word-spacing:6.240000pt;}
.ws106{word-spacing:6.314667pt;}
.wsf1{word-spacing:6.485333pt;}
.ws66{word-spacing:6.506667pt;}
.ws11f{word-spacing:6.528000pt;}
.ws2d{word-spacing:6.613333pt;}
.ws117{word-spacing:6.656000pt;}
.ws5b{word-spacing:6.666667pt;}
.ws79{word-spacing:6.720000pt;}
.wsf2{word-spacing:6.741333pt;}
.ws7b{word-spacing:6.773333pt;}
.ws10{word-spacing:6.826667pt;}
.ws1c{word-spacing:6.880000pt;}
.ws126{word-spacing:6.912000pt;}
.ws7d{word-spacing:6.933333pt;}
.ws12d{word-spacing:6.954667pt;}
.ws7e{word-spacing:7.040000pt;}
.ws46{word-spacing:7.093333pt;}
.ws146{word-spacing:7.125333pt;}
.ws84{word-spacing:7.146667pt;}
.ws143{word-spacing:7.168000pt;}
.wsb7{word-spacing:7.200000pt;}
.ws105{word-spacing:7.296000pt;}
.wsb1{word-spacing:7.306667pt;}
.ws3f{word-spacing:7.360000pt;}
.ws127{word-spacing:7.381333pt;}
.ws2f{word-spacing:7.413333pt;}
.wseb{word-spacing:7.424000pt;}
.wscb{word-spacing:7.466667pt;}
.ws28{word-spacing:7.520000pt;}
.ws36{word-spacing:7.573333pt;}
.ws132{word-spacing:7.594667pt;}
.ws82{word-spacing:7.626667pt;}
.ws123{word-spacing:7.637333pt;}
.ws40{word-spacing:7.680000pt;}
.ws39{word-spacing:7.733333pt;}
.ws11{word-spacing:7.786667pt;}
.wse9{word-spacing:7.808000pt;}
.ws1d{word-spacing:7.840000pt;}
.ws81{word-spacing:7.946667pt;}
.ws9c{word-spacing:8.000000pt;}
.wse1{word-spacing:8.106667pt;}
.wsbb{word-spacing:8.160000pt;}
.wsb6{word-spacing:8.213333pt;}
.ws6a{word-spacing:8.320000pt;}
.wsca{word-spacing:8.426667pt;}
.ws13c{word-spacing:8.490667pt;}
.ws51{word-spacing:8.533333pt;}
.ws11d{word-spacing:8.618667pt;}
.ws83{word-spacing:8.693333pt;}
.ws41{word-spacing:8.746667pt;}
.ws121{word-spacing:8.789333pt;}
.ws80{word-spacing:8.960000pt;}
.ws71{word-spacing:9.013333pt;}
.wsc9{word-spacing:9.173333pt;}
.ws99{word-spacing:9.333333pt;}
.wsb9{word-spacing:9.386667pt;}
.ws93{word-spacing:9.440000pt;}
.ws12f{word-spacing:9.472000pt;}
.wsba{word-spacing:9.493333pt;}
.ws1a{word-spacing:9.653333pt;}
.ws7a{word-spacing:9.706667pt;}
.ws89{word-spacing:9.760000pt;}
.ws107{word-spacing:9.770667pt;}
.wsd2{word-spacing:9.866667pt;}
.wsfe{word-spacing:9.898667pt;}
.wsd3{word-spacing:9.920000pt;}
.ws3b{word-spacing:10.026667pt;}
.wsd8{word-spacing:10.080000pt;}
.ws85{word-spacing:10.133333pt;}
.ws26{word-spacing:10.186667pt;}
.ws30{word-spacing:10.240000pt;}
.ws15{word-spacing:10.346667pt;}
.wse2{word-spacing:10.538667pt;}
.ws139{word-spacing:10.624000pt;}
.wsab{word-spacing:10.666667pt;}
.wsd0{word-spacing:10.880000pt;}
.ws96{word-spacing:10.933333pt;}
.ws72{word-spacing:11.520000pt;}
.wscd{word-spacing:11.573333pt;}
.ws8f{word-spacing:11.626667pt;}
.ws108{word-spacing:11.648000pt;}
.ws8d{word-spacing:11.680000pt;}
.wsae{word-spacing:11.893333pt;}
.wsb3{word-spacing:12.106667pt;}
.ws8a{word-spacing:12.213333pt;}
.wsb{word-spacing:12.266667pt;}
.ws56{word-spacing:12.533333pt;}
.ws1e{word-spacing:12.853333pt;}
.ws131{word-spacing:12.885333pt;}
.wsbc{word-spacing:13.013333pt;}
.ws116{word-spacing:13.226667pt;}
.ws13a{word-spacing:13.610667pt;}
.ws8c{word-spacing:13.653333pt;}
.wsac{word-spacing:14.080000pt;}
.ws94{word-spacing:14.186667pt;}
.ws120{word-spacing:14.890667pt;}
.ws100{word-spacing:14.933333pt;}
.ws92{word-spacing:14.986667pt;}
.wsaa{word-spacing:15.200000pt;}
.wsb8{word-spacing:16.053333pt;}
.wsff{word-spacing:16.469333pt;}
.ws88{word-spacing:16.586667pt;}
.ws7f{word-spacing:17.760000pt;}
.wsb2{word-spacing:17.973333pt;}
.ws10b{word-spacing:18.389333pt;}
.wsc7{word-spacing:19.413333pt;}
.ws122{word-spacing:22.357333pt;}
.ws11e{word-spacing:26.624000pt;}
.ws14b{word-spacing:64.938667pt;}
.wsa4{word-spacing:485.589333pt;}
.wsa0{word-spacing:520.704000pt;}
._7b{margin-left:-13.866667pt;}
._7a{margin-left:-10.378691pt;}
._15{margin-left:-5.717333pt;}
._2{margin-left:-4.314667pt;}
._10{margin-left:-3.274667pt;}
._5{margin-left:-2.384000pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.011164pt;}
._1{width:1.934400pt;}
._19{width:2.826667pt;}
._8{width:3.834667pt;}
._9{width:5.072000pt;}
._f{width:6.839502pt;}
._18{width:8.431988pt;}
._a{width:9.999005pt;}
._79{width:11.447503pt;}
._11{width:13.141333pt;}
._12{width:15.674667pt;}
._28{width:16.757333pt;}
._7c{width:19.840000pt;}
._c{width:28.117333pt;}
._e{width:29.706667pt;}
._d{width:30.773333pt;}
._4c{width:32.042667pt;}
._7{width:34.304000pt;}
._3{width:35.636275pt;}
._21{width:38.954654pt;}
._13{width:44.586667pt;}
._6e{width:46.074654pt;}
._69{width:47.520000pt;}
._2e{width:48.981333pt;}
._7e{width:50.005325pt;}
._46{width:58.380836pt;}
._75{width:61.055996pt;}
._22{width:62.250667pt;}
._7d{width:64.938667pt;}
._6c{width:68.394654pt;}
._76{width:72.533329pt;}
._50{width:78.421333pt;}
._74{width:81.804798pt;}
._14{width:85.792000pt;}
._20{width:87.936000pt;}
._48{width:97.024000pt;}
._6f{width:121.796339pt;}
._5d{width:144.383987pt;}
._64{width:145.919987pt;}
._4f{width:147.498667pt;}
._1f{width:148.450157pt;}
._5a{width:160.981321pt;}
._72{width:165.077329pt;}
._51{width:170.837333pt;}
._77{width:172.202662pt;}
._55{width:175.232000pt;}
._44{width:179.285333pt;}
._6d{width:181.119987pt;}
._5e{width:199.680000pt;}
._66{width:204.885321pt;}
._29{width:214.967503pt;}
._65{width:219.093333pt;}
._78{width:220.202629pt;}
._25{width:234.325333pt;}
._57{width:236.074667pt;}
._53{width:238.506667pt;}
._2c{width:239.488000pt;}
._5b{width:247.820836pt;}
._6b{width:253.269333pt;}
._70{width:257.420823pt;}
._1a{width:259.370654pt;}
._62{width:260.608000pt;}
._30{width:263.637333pt;}
._4d{width:264.576000pt;}
._52{width:266.922667pt;}
._39{width:277.632000pt;}
._24{width:279.765333pt;}
._43{width:281.484836pt;}
._33{width:282.594169pt;}
._58{width:283.520000pt;}
._3b{width:288.298667pt;}
._36{width:289.483712pt;}
._34{width:293.920000pt;}
._3f{width:297.685333pt;}
._60{width:300.087490pt;}
._2d{width:302.080000pt;}
._3d{width:303.392000pt;}
._5c{width:304.426667pt;}
._63{width:310.259151pt;}
._6a{width:314.325333pt;}
._27{width:316.288000pt;}
._31{width:318.634667pt;}
._17{width:320.981333pt;}
._4e{width:326.613333pt;}
._2f{width:329.642667pt;}
._16{width:331.392000pt;}
._68{width:334.122667pt;}
._2b{width:335.189333pt;}
._54{width:336.170667pt;}
._59{width:337.621333pt;}
._56{width:342.133333pt;}
._4b{width:349.226667pt;}
._49{width:355.797333pt;}
._3a{width:367.616000pt;}
._42{width:370.005333pt;}
._2a{width:381.781333pt;}
._1e{width:383.909333pt;}
._1d{width:386.133333pt;}
._38{width:392.631503pt;}
._73{width:412.922629pt;}
._5f{width:424.181333pt;}
._41{width:436.474667pt;}
._26{width:446.976000pt;}
._37{width:454.101333pt;}
._35{width:457.898667pt;}
._1c{width:471.991503pt;}
._47{width:476.842667pt;}
._40{width:477.781333pt;}
._1b{width:487.296000pt;}
._45{width:489.642667pt;}
._67{width:494.133321pt;}
._23{width:496.725333pt;}
._3e{width:508.629333pt;}
._61{width:509.653333pt;}
._4a{width:510.933333pt;}
._3c{width:525.184000pt;}
._71{width:608.762635pt;}
._32{width:1046.783957pt;}
._b{width:1067.050721pt;}
._6{width:1380.565393pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y24{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.y1c9{bottom:79.946518pt;}
.y1c5{bottom:79.957214pt;}
.y179{bottom:79.957331pt;}
.y16c{bottom:79.957344pt;}
.y1c1{bottom:79.967911pt;}
.y16f{bottom:79.967930pt;}
.y1bd{bottom:79.978607pt;}
.y13f{bottom:79.978620pt;}
.y155{bottom:79.978650pt;}
.y1b9{bottom:79.989304pt;}
.y138{bottom:79.989310pt;}
.y47{bottom:80.000000pt;}
.y18b{bottom:80.106669pt;}
.ya2{bottom:80.708903pt;}
.y268{bottom:81.012903pt;}
.y17c{bottom:81.333333pt;}
.y196{bottom:81.335570pt;}
.ye1{bottom:81.343740pt;}
.y137{bottom:81.345072pt;}
.y4{bottom:86.333337pt;}
.y1ca{bottom:87.946518pt;}
.y1c6{bottom:87.957214pt;}
.y1c2{bottom:87.967911pt;}
.y1be{bottom:87.978607pt;}
.y1ba{bottom:87.989304pt;}
.ye9{bottom:88.676941pt;}
.yfb{bottom:92.166260pt;}
.y267{bottom:93.674236pt;}
.y1ff{bottom:94.143601pt;}
.yc4{bottom:95.375570pt;}
.y74{bottom:95.708903pt;}
.ya1{bottom:96.708903pt;}
.y17b{bottom:97.333333pt;}
.y195{bottom:97.335570pt;}
.ye0{bottom:97.343740pt;}
.y136{bottom:97.345072pt;}
.ye8{bottom:104.676941pt;}
.y266{bottom:106.335570pt;}
.y1fe{bottom:106.804935pt;}
.yfa{bottom:108.166260pt;}
.yc3{bottom:111.375570pt;}
.y73{bottom:111.708903pt;}
.y230{bottom:112.687635pt;}
.ya0{bottom:112.708903pt;}
.y17a{bottom:113.333333pt;}
.y194{bottom:113.335570pt;}
.ydf{bottom:113.343740pt;}
.y135{bottom:113.345072pt;}
.y265{bottom:118.996903pt;}
.y1fd{bottom:119.466268pt;}
.ye7{bottom:120.676941pt;}
.y23{bottom:123.790666pt;}
.yf9{bottom:124.166260pt;}
.y22f{bottom:125.348968pt;}
.yc2{bottom:127.375570pt;}
.y72{bottom:127.708903pt;}
.y9f{bottom:128.708903pt;}
.y1e9{bottom:129.333333pt;}
.y1b8{bottom:129.335570pt;}
.yde{bottom:129.343740pt;}
.y134{bottom:129.345072pt;}
.y264{bottom:131.658236pt;}
.y1fc{bottom:132.127601pt;}
.ye6{bottom:136.676941pt;}
.y22e{bottom:138.010301pt;}
.yf8{bottom:140.166260pt;}
.yc1{bottom:143.375570pt;}
.y71{bottom:143.708903pt;}
.y263{bottom:144.319570pt;}
.y9e{bottom:144.708903pt;}
.y1fb{bottom:144.788935pt;}
.y1e8{bottom:145.333333pt;}
.y1b7{bottom:145.335570pt;}
.ydd{bottom:145.343740pt;}
.y133{bottom:145.345072pt;}
.y193{bottom:146.002236pt;}
.y22d{bottom:150.671635pt;}
.ye5{bottom:152.676941pt;}
.yf7{bottom:156.166260pt;}
.y262{bottom:156.980903pt;}
.y1fa{bottom:157.450268pt;}
.yc0{bottom:159.375570pt;}
.y70{bottom:159.708903pt;}
.y9d{bottom:160.708903pt;}
.y1e7{bottom:161.333333pt;}
.y1b6{bottom:161.335570pt;}
.ydc{bottom:161.343740pt;}
.y132{bottom:161.345072pt;}
.y192{bottom:162.002236pt;}
.y22c{bottom:163.332968pt;}
.ye4{bottom:168.676941pt;}
.y261{bottom:169.642236pt;}
.y1f9{bottom:170.111601pt;}
.yf6{bottom:172.166260pt;}
.y1a{bottom:175.052000pt;}
.ybf{bottom:175.375570pt;}
.y6f{bottom:175.708903pt;}
.y22b{bottom:175.994301pt;}
.y9c{bottom:176.708903pt;}
.y1e6{bottom:177.333333pt;}
.y1b5{bottom:177.335570pt;}
.ydb{bottom:177.343740pt;}
.y131{bottom:177.345072pt;}
.y191{bottom:178.002236pt;}
.y164{bottom:180.341335pt;}
.y15d{bottom:180.351995pt;}
.y152{bottom:180.352025pt;}
.y142{bottom:180.362624pt;}
.y15a{bottom:180.362654pt;}
.y14d{bottom:180.362685pt;}
.y172{bottom:180.373314pt;}
.y148{bottom:180.373344pt;}
.y145{bottom:180.384004pt;}
.y260{bottom:182.303570pt;}
.y46{bottom:184.281860pt;}
.ye3{bottom:184.676941pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y17e{bottom:186.569194pt;}
.y15e{bottom:188.351995pt;}
.y175{bottom:188.384004pt;}
.y22a{bottom:188.655635pt;}
.ybe{bottom:191.375570pt;}
.y6e{bottom:191.708903pt;}
.y9b{bottom:192.708903pt;}
.y1e5{bottom:193.333333pt;}
.y1b4{bottom:193.335570pt;}
.yda{bottom:193.343740pt;}
.y130{bottom:193.345072pt;}
.y190{bottom:194.002236pt;}
.y25f{bottom:194.964903pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y45{bottom:200.281860pt;}
.y229{bottom:201.316968pt;}
.y1f8{bottom:202.100935pt;}
.yf5{bottom:204.166260pt;}
.ybd{bottom:207.375570pt;}
.y25e{bottom:207.626236pt;}
.y6d{bottom:207.708903pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y9a{bottom:208.708903pt;}
.y1e4{bottom:209.333333pt;}
.y1b3{bottom:209.335570pt;}
.yd9{bottom:209.343740pt;}
.y12f{bottom:209.345072pt;}
.y18f{bottom:210.002236pt;}
.y228{bottom:213.978301pt;}
.y44{bottom:216.281860pt;}
.ye2{bottom:216.676941pt;}
.y25d{bottom:220.287570pt;}
.ybc{bottom:223.375570pt;}
.y6c{bottom:223.708903pt;}
.y99{bottom:224.708903pt;}
.y1e3{bottom:225.333333pt;}
.y1b2{bottom:225.335570pt;}
.yd8{bottom:225.343740pt;}
.y12e{bottom:225.345072pt;}
.y18e{bottom:226.002236pt;}
.y227{bottom:226.639635pt;}
.y1f7{bottom:227.434268pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y25c{bottom:232.948903pt;}
.y226{bottom:239.300968pt;}
.ybb{bottom:239.375570pt;}
.y6b{bottom:239.708903pt;}
.y1f6{bottom:240.095601pt;}
.y98{bottom:240.708903pt;}
.y1e2{bottom:241.333333pt;}
.y1b1{bottom:241.335570pt;}
.yd7{bottom:241.343740pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y25b{bottom:245.610236pt;}
.y43{bottom:248.948527pt;}
.y225{bottom:251.962301pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yba{bottom:255.375570pt;}
.y6a{bottom:255.708903pt;}
.y97{bottom:256.708903pt;}
.yf4{bottom:256.832926pt;}
.y1e1{bottom:257.333333pt;}
.y1b0{bottom:257.335570pt;}
.yd6{bottom:257.343740pt;}
.y12d{bottom:257.345072pt;}
.y18d{bottom:258.002236pt;}
.y25a{bottom:258.271570pt;}
.y224{bottom:264.623635pt;}
.y42{bottom:264.948527pt;}
.y1f5{bottom:265.428935pt;}
.y259{bottom:270.932903pt;}
.yb9{bottom:271.375570pt;}
.y69{bottom:271.708903pt;}
.y96{bottom:272.708903pt;}
.yf3{bottom:272.832926pt;}
.y1e0{bottom:273.333333pt;}
.y1af{bottom:273.335570pt;}
.y18c{bottom:274.002236pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y223{bottom:277.284968pt;}
.yea{bottom:279.590271pt;}
.y41{bottom:280.948527pt;}
.y258{bottom:283.594236pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yb8{bottom:287.375570pt;}
.y68{bottom:287.708903pt;}
.y95{bottom:288.708903pt;}
.yf2{bottom:288.832926pt;}
.y1df{bottom:289.333333pt;}
.y1ae{bottom:289.335570pt;}
.yd5{bottom:289.343740pt;}
.y222{bottom:289.946301pt;}
.y1f4{bottom:290.762268pt;}
.y12c{bottom:294.185072pt;}
.y257{bottom:296.255570pt;}
.y40{bottom:296.948527pt;}
.y221{bottom:302.607635pt;}
.yb7{bottom:303.375570pt;}
.y67{bottom:303.708903pt;}
.y94{bottom:304.708903pt;}
.yf1{bottom:304.832926pt;}
.y1de{bottom:305.333333pt;}
.y1ad{bottom:305.335570pt;}
.y256{bottom:308.916903pt;}
.y11{bottom:309.452000pt;}
.y1cb{bottom:309.738510pt;}
.y1c7{bottom:309.749207pt;}
.y1c3{bottom:309.759903pt;}
.y1bf{bottom:309.770599pt;}
.y1bb{bottom:309.781296pt;}
.y12b{bottom:310.185072pt;}
.y3f{bottom:312.948527pt;}
.y220{bottom:315.268968pt;}
.y1f3{bottom:316.095601pt;}
.y1cc{bottom:317.738510pt;}
.yb6{bottom:319.375570pt;}
.y66{bottom:319.708903pt;}
.y93{bottom:320.708903pt;}
.yf0{bottom:320.832926pt;}
.y1dd{bottom:321.333333pt;}
.y1ac{bottom:321.335570pt;}
.y255{bottom:321.578236pt;}
.y12a{bottom:326.185072pt;}
.y21f{bottom:327.930301pt;}
.y3e{bottom:328.948527pt;}
.yd4{bottom:333.130407pt;}
.y15f{bottom:333.589328pt;}
.y176{bottom:333.621337pt;}
.y254{bottom:334.239570pt;}
.yb5{bottom:335.375570pt;}
.y65{bottom:335.708903pt;}
.y92{bottom:336.708903pt;}
.yef{bottom:336.832926pt;}
.y1dc{bottom:337.333333pt;}
.y1ab{bottom:337.335570pt;}
.y21e{bottom:340.591635pt;}
.y177{bottom:341.600018pt;}
.y149{bottom:341.610678pt;}
.y139{bottom:341.621307pt;}
.y129{bottom:342.185072pt;}
.y10{bottom:343.809333pt;}
.y1f2{bottom:344.783610pt;}
.y3d{bottom:344.948527pt;}
.y253{bottom:346.900903pt;}
.y18a{bottom:348.708944pt;}
.yd3{bottom:349.130407pt;}
.yb4{bottom:351.375570pt;}
.y64{bottom:351.708903pt;}
.y91{bottom:352.708903pt;}
.yee{bottom:352.832926pt;}
.y21d{bottom:353.252968pt;}
.y1db{bottom:353.333333pt;}
.y1aa{bottom:353.335570pt;}
.y1f1{bottom:357.444944pt;}
.y128{bottom:358.185072pt;}
.y252{bottom:359.562236pt;}
.y3c{bottom:360.948527pt;}
.yf{bottom:362.706666pt;}
.y189{bottom:364.708944pt;}
.yd2{bottom:365.130407pt;}
.y21c{bottom:365.914301pt;}
.yb3{bottom:367.375570pt;}
.y63{bottom:367.708903pt;}
.y90{bottom:368.708903pt;}
.yed{bottom:368.832926pt;}
.y1da{bottom:369.333333pt;}
.y1a9{bottom:369.335570pt;}
.y251{bottom:372.223570pt;}
.y127{bottom:374.185072pt;}
.y3b{bottom:376.948527pt;}
.y21b{bottom:378.575635pt;}
.y188{bottom:380.708944pt;}
.y1cd{bottom:381.823842pt;}
.y1f0{bottom:382.756944pt;}
.yb2{bottom:383.375570pt;}
.y62{bottom:383.708903pt;}
.y8f{bottom:384.708903pt;}
.yec{bottom:384.832926pt;}
.y250{bottom:384.884903pt;}
.y1d9{bottom:385.333333pt;}
.y1a8{bottom:385.335570pt;}
.y126{bottom:390.185072pt;}
.y21a{bottom:391.236968pt;}
.y3a{bottom:392.948527pt;}
.y187{bottom:396.708944pt;}
.yd1{bottom:397.130407pt;}
.y24f{bottom:397.546236pt;}
.yb1{bottom:399.375570pt;}
.y61{bottom:399.708903pt;}
.y8e{bottom:400.708903pt;}
.yeb{bottom:400.832926pt;}
.y1d8{bottom:401.333333pt;}
.y1a7{bottom:401.335570pt;}
.y219{bottom:403.898301pt;}
.y125{bottom:406.185072pt;}
.y1ef{bottom:408.068944pt;}
.y39{bottom:408.948527pt;}
.y24e{bottom:410.207570pt;}
.y186{bottom:412.708944pt;}
.yb0{bottom:415.375570pt;}
.y60{bottom:415.708903pt;}
.y218{bottom:416.559635pt;}
.y8d{bottom:416.708903pt;}
.y1d7{bottom:417.333333pt;}
.y1a6{bottom:417.335570pt;}
.y1ee{bottom:420.730277pt;}
.y124{bottom:422.185072pt;}
.y24d{bottom:422.868903pt;}
.y38{bottom:424.948527pt;}
.y185{bottom:428.708944pt;}
.y217{bottom:429.220968pt;}
.ye{bottom:430.990669pt;}
.yaf{bottom:431.375570pt;}
.y5f{bottom:431.708903pt;}
.y8c{bottom:432.708903pt;}
.y1d6{bottom:433.333333pt;}
.y1a5{bottom:433.335570pt;}
.y1ed{bottom:433.391610pt;}
.y24c{bottom:435.530236pt;}
.y123{bottom:438.185072pt;}
.yd0{bottom:440.917074pt;}
.y37{bottom:440.948527pt;}
.y216{bottom:441.882301pt;}
.y1ec{bottom:446.052944pt;}
.yd{bottom:446.990669pt;}
.yae{bottom:447.375570pt;}
.y5e{bottom:447.708903pt;}
.y24b{bottom:448.191570pt;}
.y8b{bottom:448.708903pt;}
.y1d5{bottom:449.333333pt;}
.y1a4{bottom:449.335570pt;}
.y122{bottom:454.185072pt;}
.y215{bottom:454.543635pt;}
.ycf{bottom:456.917074pt;}
.y36{bottom:456.948527pt;}
.y115{bottom:457.120652pt;}
.y1eb{bottom:458.714277pt;}
.y184{bottom:460.708944pt;}
.y24a{bottom:460.852903pt;}
.yc{bottom:462.990669pt;}
.yad{bottom:463.375570pt;}
.y5d{bottom:463.708903pt;}
.y8a{bottom:464.708903pt;}
.y1d4{bottom:465.333333pt;}
.y1a3{bottom:465.335570pt;}
.y214{bottom:467.204968pt;}
.y114{bottom:469.781986pt;}
.y1ea{bottom:471.375610pt;}
.yce{bottom:472.917074pt;}
.y35{bottom:472.948527pt;}
.y249{bottom:473.514236pt;}
.y183{bottom:476.708944pt;}
.yb{bottom:478.990666pt;}
.yac{bottom:479.375570pt;}
.y5c{bottom:479.708903pt;}
.y213{bottom:479.866301pt;}
.y89{bottom:480.708903pt;}
.y1d3{bottom:481.333333pt;}
.y1a2{bottom:481.335570pt;}
.y113{bottom:482.443319pt;}
.y248{bottom:486.175570pt;}
.y121{bottom:486.185072pt;}
.y160{bottom:486.805328pt;}
.y178{bottom:486.816018pt;}
.y14a{bottom:486.826678pt;}
.y13a{bottom:486.837307pt;}
.y16b{bottom:486.837337pt;}
.ycd{bottom:488.917074pt;}
.y34{bottom:488.948527pt;}
.y212{bottom:492.527635pt;}
.y173{bottom:494.815988pt;}
.y14e{bottom:494.816018pt;}
.y156{bottom:494.826647pt;}
.y169{bottom:494.826678pt;}
.y13b{bottom:494.837307pt;}
.y167{bottom:494.837337pt;}
.ya{bottom:494.990666pt;}
.y112{bottom:495.104652pt;}
.yab{bottom:495.375570pt;}
.y5b{bottom:495.708903pt;}
.y88{bottom:496.708903pt;}
.y1d2{bottom:497.333333pt;}
.y1a1{bottom:497.335570pt;}
.y247{bottom:498.836903pt;}
.ycc{bottom:504.917074pt;}
.y33{bottom:504.948527pt;}
.y211{bottom:505.188968pt;}
.y111{bottom:507.765986pt;}
.yaa{bottom:511.375570pt;}
.y246{bottom:511.498236pt;}
.y5a{bottom:511.708903pt;}
.y87{bottom:512.708903pt;}
.y182{bottom:512.708944pt;}
.y1d1{bottom:513.333333pt;}
.y1a0{bottom:513.335570pt;}
.y210{bottom:517.850301pt;}
.y110{bottom:520.427319pt;}
.ycb{bottom:520.917074pt;}
.y32{bottom:520.948527pt;}
.y120{bottom:523.025072pt;}
.y245{bottom:524.159570pt;}
.y59{bottom:527.708903pt;}
.y86{bottom:528.708903pt;}
.y181{bottom:528.708944pt;}
.y1d0{bottom:529.333333pt;}
.y19f{bottom:529.335570pt;}
.y17d{bottom:530.310262pt;}
.y20f{bottom:530.511635pt;}
.y10f{bottom:533.088652pt;}
.y244{bottom:536.820903pt;}
.yca{bottom:536.917074pt;}
.y31{bottom:536.948527pt;}
.y11f{bottom:539.025072pt;}
.y20e{bottom:543.172968pt;}
.y58{bottom:543.708903pt;}
.ya9{bottom:544.042236pt;}
.y85{bottom:544.708903pt;}
.y180{bottom:544.708944pt;}
.y19e{bottom:545.335570pt;}
.y10e{bottom:549.291319pt;}
.y243{bottom:549.482236pt;}
.yc9{bottom:552.917074pt;}
.y30{bottom:552.948527pt;}
.y11e{bottom:555.025072pt;}
.y20d{bottom:555.834301pt;}
.y57{bottom:559.708903pt;}
.ya8{bottom:560.042236pt;}
.y84{bottom:560.708903pt;}
.y1cf{bottom:561.333333pt;}
.y19d{bottom:561.335570pt;}
.y10d{bottom:561.952652pt;}
.y242{bottom:562.143570pt;}
.y20c{bottom:568.495635pt;}
.yc8{bottom:568.917074pt;}
.y2f{bottom:568.948527pt;}
.y11d{bottom:571.025072pt;}
.y9{bottom:573.786667pt;}
.y10c{bottom:574.613986pt;}
.y241{bottom:574.804903pt;}
.y56{bottom:575.708903pt;}
.ya7{bottom:576.042236pt;}
.y83{bottom:576.708903pt;}
.y17f{bottom:576.708944pt;}
.y19c{bottom:577.335570pt;}
.y20b{bottom:581.156968pt;}
.yc7{bottom:584.917074pt;}
.y271{bottom:586.207723pt;}
.y11c{bottom:587.025072pt;}
.y240{bottom:587.466236pt;}
.y1ce{bottom:589.322500pt;}
.y1c8{bottom:589.333196pt;}
.y1c4{bottom:589.343892pt;}
.y1c0{bottom:589.354589pt;}
.y1bc{bottom:589.365285pt;}
.y10b{bottom:590.741986pt;}
.y55{bottom:591.708903pt;}
.ya6{bottom:592.042236pt;}
.y8{bottom:592.685334pt;}
.y82{bottom:592.708903pt;}
.y19b{bottom:593.335570pt;}
.y20a{bottom:593.818301pt;}
.y23f{bottom:600.127570pt;}
.yc6{bottom:600.917074pt;}
.y10a{bottom:603.403319pt;}
.y270{bottom:605.583049pt;}
.y209{bottom:606.479635pt;}
.y54{bottom:607.708903pt;}
.ya5{bottom:608.042236pt;}
.y81{bottom:608.708903pt;}
.y19a{bottom:609.335570pt;}
.y2e{bottom:612.053063pt;}
.y23e{bottom:612.788903pt;}
.y109{bottom:616.064652pt;}
.y11b{bottom:619.025072pt;}
.y208{bottom:619.140968pt;}
.y26f{bottom:620.696943pt;}
.y53{bottom:623.708903pt;}
.ya4{bottom:624.042236pt;}
.y80{bottom:624.708903pt;}
.y2d{bottom:624.714396pt;}
.y23d{bottom:625.450236pt;}
.y108{bottom:628.725986pt;}
.y207{bottom:631.802301pt;}
.yc5{bottom:632.917074pt;}
.y26e{bottom:637.624919pt;}
.y23c{bottom:638.111570pt;}
.y52{bottom:639.708903pt;}
.ya3{bottom:640.042236pt;}
.y7f{bottom:640.708903pt;}
.y161{bottom:640.821328pt;}
.y174{bottom:640.831988pt;}
.y14f{bottom:640.832018pt;}
.y157{bottom:640.842647pt;}
.y16a{bottom:640.842678pt;}
.y13c{bottom:640.853307pt;}
.y168{bottom:640.853337pt;}
.y199{bottom:641.335570pt;}
.y107{bottom:641.387319pt;}
.y206{bottom:644.463635pt;}
.y7{bottom:645.598667pt;}
.y165{bottom:648.810669pt;}
.y162{bottom:648.821328pt;}
.y16d{bottom:648.821341pt;}
.y153{bottom:648.821359pt;}
.y170{bottom:648.831927pt;}
.y143{bottom:648.831957pt;}
.y15b{bottom:648.831988pt;}
.y150{bottom:648.832018pt;}
.y140{bottom:648.842617pt;}
.y158{bottom:648.842647pt;}
.y14b{bottom:648.842678pt;}
.y13d{bottom:648.853307pt;}
.y146{bottom:648.853337pt;}
.y23b{bottom:650.772903pt;}
.y106{bottom:654.048652pt;}
.y51{bottom:655.708903pt;}
.y11a{bottom:655.865072pt;}
.y7e{bottom:656.708903pt;}
.y26d{bottom:657.000285pt;}
.y205{bottom:657.124968pt;}
.y198{bottom:657.335570pt;}
.y2c{bottom:658.357463pt;}
.y23a{bottom:663.434236pt;}
.y3{bottom:668.977329pt;}
.y204{bottom:669.786301pt;}
.y105{bottom:670.176652pt;}
.y50{bottom:671.708903pt;}
.y119{bottom:671.865072pt;}
.y7d{bottom:672.708903pt;}
.y197{bottom:673.335570pt;}
.y2b{bottom:674.357463pt;}
.y239{bottom:676.095570pt;}
.y26c{bottom:678.215765pt;}
.y203{bottom:682.447635pt;}
.y104{bottom:682.837986pt;}
.y4f{bottom:687.708903pt;}
.y118{bottom:687.865072pt;}
.y7c{bottom:688.708903pt;}
.y238{bottom:688.756903pt;}
.y26b{bottom:690.877098pt;}
.y202{bottom:695.108968pt;}
.y103{bottom:695.499319pt;}
.y237{bottom:701.418236pt;}
.y4e{bottom:703.708903pt;}
.y117{bottom:703.865072pt;}
.y7b{bottom:704.708903pt;}
.y102{bottom:708.160652pt;}
.y26a{bottom:710.247765pt;}
.y2a{bottom:712.348915pt;}
.y236{bottom:714.079570pt;}
.y4d{bottom:719.708903pt;}
.y7a{bottom:720.708903pt;}
.y101{bottom:720.821986pt;}
.y269{bottom:722.909098pt;}
.y201{bottom:724.042236pt;}
.y235{bottom:726.740903pt;}
.y29{bottom:732.351581pt;}
.y100{bottom:733.483319pt;}
.y4c{bottom:735.708903pt;}
.y116{bottom:735.865072pt;}
.y79{bottom:736.708903pt;}
.y234{bottom:739.402236pt;}
.yff{bottom:746.144652pt;}
.y4b{bottom:751.708903pt;}
.y233{bottom:752.063570pt;}
.y28{bottom:752.354248pt;}
.y78{bottom:752.708903pt;}
.yfe{bottom:758.805986pt;}
.y232{bottom:764.724903pt;}
.y4a{bottom:767.708903pt;}
.y77{bottom:768.708903pt;}
.y231{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.yfd{bottom:783.701986pt;}
.y76{bottom:784.708903pt;}
.y200{bottom:790.047570pt;}
.y166{bottom:793.973335pt;}
.y163{bottom:793.983995pt;}
.y16e{bottom:793.984008pt;}
.y154{bottom:793.984025pt;}
.y171{bottom:793.994593pt;}
.y144{bottom:793.994624pt;}
.y15c{bottom:793.994654pt;}
.y151{bottom:793.994685pt;}
.y141{bottom:794.005283pt;}
.y159{bottom:794.005314pt;}
.y14c{bottom:794.005344pt;}
.y13e{bottom:794.015973pt;}
.y147{bottom:794.016004pt;}
.y49{bottom:799.708903pt;}
.y27{bottom:799.809082pt;}
.y75{bottom:800.708903pt;}
.yfc{bottom:802.708903pt;}
.y26{bottom:822.992964pt;}
.y25{bottom:835.654297pt;}
.y48{bottom:836.018392pt;}
.y1{bottom:859.312000pt;}
.h17{height:27.716267pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.hb{height:37.376000pt;}
.h11{height:39.594667pt;}
.h14{height:40.618667pt;}
.h6{height:40.800000pt;}
.hc{height:41.514667pt;}
.h12{height:42.197333pt;}
.h3{height:42.840000pt;}
.h16{height:45.013333pt;}
.h15{height:47.680000pt;}
.h2{height:48.960000pt;}
.h10{height:49.493333pt;}
.hf{height:52.746667pt;}
.he{height:57.658667pt;}
.h13{height:58.021333pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:71.917603pt;}
.xc{left:76.031469pt;}
.x8{left:83.151469pt;}
.x6d{left:86.932800pt;}
.x9{left:89.364802pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x54{left:105.422404pt;}
.x3e{left:119.028135pt;}
.xd{left:119.934400pt;}
.x55{left:124.429331pt;}
.xe{left:132.595733pt;}
.xf{left:145.257067pt;}
.x56{left:149.325331pt;}
.x10{left:157.918400pt;}
.x57{left:161.986665pt;}
.x11{left:170.579733pt;}
.x58{left:174.647998pt;}
.x4{left:180.874667pt;}
.x12{left:183.241067pt;}
.x59{left:187.309331pt;}
.xa{left:190.582275pt;}
.x13{left:195.902400pt;}
.xb{left:198.582275pt;}
.x5a{left:199.970665pt;}
.x14{left:208.563733pt;}
.x2b{left:211.177466pt;}
.x5b{left:216.087998pt;}
.x15{left:221.225067pt;}
.x2c{left:223.838799pt;}
.x5c{left:228.749331pt;}
.x16{left:233.886400pt;}
.x2d{left:236.500132pt;}
.x5d{left:241.410665pt;}
.x17{left:246.547733pt;}
.x2e{left:249.161466pt;}
.x5e{left:254.061331pt;}
.x18{left:259.209067pt;}
.x2f{left:261.822799pt;}
.x5f{left:266.722665pt;}
.x19{left:271.870400pt;}
.x30{left:274.484132pt;}
.x4a{left:277.929466pt;}
.x60{left:282.850665pt;}
.x1a{left:284.531733pt;}
.x3f{left:287.145466pt;}
.x31{left:290.622799pt;}
.x61{left:295.511998pt;}
.x1b{left:297.193067pt;}
.x40{left:299.806800pt;}
.x32{left:303.284132pt;}
.x62{left:308.173331pt;}
.x1c{left:309.854400pt;}
.x4d{left:312.468132pt;}
.x33{left:315.945466pt;}
.x63{left:320.834665pt;}
.x1d{left:325.993067pt;}
.x34{left:328.606799pt;}
.x64{left:333.495998pt;}
.x1e{left:338.654400pt;}
.x35{left:341.268132pt;}
.x65{left:346.157331pt;}
.x1f{left:351.315733pt;}
.x36{left:353.929466pt;}
.x43{left:357.396131pt;}
.x66{left:362.285332pt;}
.x20{left:363.977067pt;}
.x37{left:366.590799pt;}
.x44{left:370.057465pt;}
.x67{left:374.946665pt;}
.x21{left:376.638400pt;}
.x41{left:379.241466pt;}
.x38{left:382.718799pt;}
.x68{left:387.607998pt;}
.x22{left:389.299733pt;}
.x42{left:391.902800pt;}
.x39{left:395.380132pt;}
.x4e{left:401.097466pt;}
.x3{left:404.408000pt;}
.x23{left:405.438400pt;}
.x3a{left:408.041466pt;}
.x4f{left:413.758800pt;}
.x51{left:417.204133pt;}
.x24{left:418.099733pt;}
.x3b{left:420.702799pt;}
.x69{left:425.591998pt;}
.x52{left:429.865466pt;}
.x25{left:430.761067pt;}
.x5{left:431.874146pt;}
.x3c{left:433.364132pt;}
.x45{left:436.841465pt;}
.x53{left:442.526800pt;}
.x26{left:443.422400pt;}
.x3d{left:446.025466pt;}
.x46{left:449.502798pt;}
.x6a{left:454.445334pt;}
.x27{left:456.083733pt;}
.x4b{left:458.654800pt;}
.x47{left:462.164131pt;}
.x6b{left:467.106667pt;}
.x28{left:468.745067pt;}
.x4c{left:471.316133pt;}
.x48{left:474.825465pt;}
.x6c{left:479.768000pt;}
.x29{left:481.406400pt;}
.x50{left:484.009467pt;}
.x49{left:487.486798pt;}
.x2a{left:494.067733pt;}
}




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