
    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_baf6a70be462913f5efea8b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c75299370893e61dffbf6638.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_57b4b55cb8930f6387c9e908.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aa37182ad84509f0762d2da2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e8e6543f58a3eabe435b0512.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f57e26e8ba6082808b29636f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c39086d641a97dd1eb9dac2e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_863bcfa7b3f0484db5998058.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1f71a706b1eed76632994dec.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cc3d6ce655df6e168e2ac4ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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_e8be9ce7462faf01f104507f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783203;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_3eb2998e75e4377d917cb90f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8855fa4c42cc145052346622.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5766e355f3643a932cfebef1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.450000;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_5b59618af7fed876b7c6681c.woff2')format("woff");}.fff{font-family:fff;line-height:0.554000;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_14a0cd939fcaeeca6bbd59db.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.676000;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_4b863edbaf8e86f4ac1d8a76.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.554000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_62bc4a23119a3483549ab281.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_77c6741ce2f22c07fac8b8f2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.862000;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:ff14;src:url('chunks/assets/font_e8836ac1e3cf48c801175a40.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.704000;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:ff15;src:url('chunks/assets/font_fc2a9a86da5af0ea4c7fb6c9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.704000;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:ff16;src:url('chunks/assets/font_9c2fe5f0728cb81cc79a515d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938000;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:ff17;src:url('chunks/assets/font_a2f0977b76ab17d6407ca9a7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.862000;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:ff18;src:url('chunks/assets/font_10f5c7a7f08f77b7ca3a218f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.704000;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:ff19;src:url('chunks/assets/font_cbc6b46313e2433ec82f00e9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.862000;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:ff1a;src:url('chunks/assets/font_4d7f10316dbc1f23b14ae4b8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.908000;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:ff1b;src:url('chunks/assets/font_b68633e65f124acab449c94b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938000;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);}
.v4{vertical-align:-23.300171px;}
.v2{vertical-align:-19.199982px;}
.v3{vertical-align:-3.600037px;}
.v6{vertical-align:-1.704529px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.697937px;}
.v1{vertical-align:24.000000px;}
.ls9{letter-spacing:-1.860000px;}
.ls5{letter-spacing:-1.680000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.203916px;}
.ls17{letter-spacing:-0.153005px;}
.ls29{letter-spacing:-0.152937px;}
.ls18{letter-spacing:-0.102004px;}
.ls2f{letter-spacing:-0.101958px;}
.ls1c{letter-spacing:-0.051002px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.051002px;}
.ls2c{letter-spacing:0.203916px;}
.ls1b{letter-spacing:0.204007px;}
.ls1e{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.689989px;}
.ls4{letter-spacing:0.696000px;}
.ls2{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.840000px;}
.ls1f{letter-spacing:1.200000px;}
.ls2d{letter-spacing:1.325454px;}
.ls19{letter-spacing:1.326047px;}
.ls28{letter-spacing:1.376433px;}
.ls16{letter-spacing:1.377049px;}
.ls20{letter-spacing:8.976016px;}
.lsb{letter-spacing:10.656000px;}
.ls25{letter-spacing:11.177944px;}
.lsf{letter-spacing:12.672451px;}
.lse{letter-spacing:13.024199px;}
.ls22{letter-spacing:13.091946px;}
.ls7{letter-spacing:13.323329px;}
.lsc{letter-spacing:13.344000px;}
.ls8{letter-spacing:13.383344px;}
.ls24{letter-spacing:13.453217px;}
.ls13{letter-spacing:13.595852px;}
.ls11{letter-spacing:14.299805px;}
.ls14{letter-spacing:14.303925px;}
.ls2b{letter-spacing:19.270062px;}
.ls1a{letter-spacing:20.043707px;}
.ls23{letter-spacing:21.869991px;}
.ls12{letter-spacing:21.879772px;}
.ls21{letter-spacing:22.124886px;}
.ls2e{letter-spacing:48.518881px;}
.ls2a{letter-spacing:49.566805px;}
.ls26{letter-spacing:52.421211px;}
.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;}
}
.wsef{word-spacing:-52.421211px;}
.wsf0{word-spacing:-49.566805px;}
.wsf1{word-spacing:-48.518881px;}
.ws3e{word-spacing:-36.000000px;}
.wsd2{word-spacing:-28.800000px;}
.wsce{word-spacing:-20.094709px;}
.wse7{word-spacing:-19.321041px;}
.wse3{word-spacing:-16.200000px;}
.wsbe{word-spacing:-15.840000px;}
.ws3f{word-spacing:-15.000000px;}
.wsac{word-spacing:-14.760000px;}
.ws44{word-spacing:-13.332000px;}
.ws8a{word-spacing:-13.320000px;}
.wsab{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.120000px;}
.wsdb{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.520000px;}
.ws66{word-spacing:-11.340000px;}
.ws1{word-spacing:-9.408000px;}
.wsfe{word-spacing:-9.216000px;}
.ws3{word-spacing:-8.694000px;}
.ws6{word-spacing:-8.400000px;}
.ws8{word-spacing:-1.890000px;}
.wsf8{word-spacing:-1.500000px;}
.wsbc{word-spacing:-1.440000px;}
.wsc9{word-spacing:-1.428050px;}
.wse5{word-spacing:-1.427412px;}
.wscd{word-spacing:-1.377049px;}
.wse9{word-spacing:-1.376433px;}
.wsec{word-spacing:-1.200000px;}
.ws9{word-spacing:-1.140000px;}
.ws8f{word-spacing:-1.020000px;}
.ws91{word-spacing:-0.960000px;}
.wsd5{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.840000px;}
.ws7a{word-spacing:-0.780000px;}
.ws9c{word-spacing:-0.720000px;}
.wsd7{word-spacing:-0.660000px;}
.wsee{word-spacing:-0.600000px;}
.ws4b{word-spacing:-0.540000px;}
.ws67{word-spacing:-0.480000px;}
.ws11a{word-spacing:-0.384000px;}
.wsc2{word-spacing:-0.300000px;}
.wscf{word-spacing:-0.255009px;}
.wse8{word-spacing:-0.254895px;}
.ws37{word-spacing:-0.240000px;}
.ws8c{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.120000px;}
.ws123{word-spacing:-0.096000px;}
.ws4e{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws127{word-spacing:0.048000px;}
.wscb{word-spacing:0.051002px;}
.wsa3{word-spacing:0.060000px;}
.ws122{word-spacing:0.096000px;}
.wse6{word-spacing:0.101958px;}
.wsca{word-spacing:0.102004px;}
.ws58{word-spacing:0.120000px;}
.wse4{word-spacing:0.152937px;}
.ws31{word-spacing:0.180000px;}
.ws72{word-spacing:0.240000px;}
.ws5f{word-spacing:0.300000px;}
.ws120{word-spacing:0.336000px;}
.ws6a{word-spacing:0.360000px;}
.ws56{word-spacing:0.420000px;}
.ws54{word-spacing:0.540000px;}
.wsa{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.ws9e{word-spacing:0.720000px;}
.ws9f{word-spacing:0.780000px;}
.ws4d{word-spacing:0.840000px;}
.wsd6{word-spacing:0.900000px;}
.ws9a{word-spacing:0.960000px;}
.ws25{word-spacing:1.020000px;}
.wsd4{word-spacing:1.056000px;}
.ws63{word-spacing:1.080000px;}
.wsa9{word-spacing:1.140000px;}
.ws121{word-spacing:1.152000px;}
.ws7c{word-spacing:1.200000px;}
.ws11d{word-spacing:1.248000px;}
.ws4a{word-spacing:1.260000px;}
.ws103{word-spacing:1.296000px;}
.ws52{word-spacing:1.320000px;}
.wsc6{word-spacing:1.380000px;}
.ws10e{word-spacing:1.392000px;}
.wsa5{word-spacing:1.440000px;}
.ws112{word-spacing:1.488000px;}
.wsc3{word-spacing:1.500000px;}
.ws2f{word-spacing:1.560000px;}
.ws10c{word-spacing:1.584000px;}
.ws7f{word-spacing:1.620000px;}
.ws2b{word-spacing:1.680000px;}
.ws128{word-spacing:1.683000px;}
.wsaf{word-spacing:1.740000px;}
.ws109{word-spacing:1.776000px;}
.ws38{word-spacing:1.800000px;}
.ws26{word-spacing:1.860000px;}
.wsa8{word-spacing:1.920000px;}
.ws10d{word-spacing:1.968000px;}
.ws10a{word-spacing:2.064000px;}
.ws51{word-spacing:2.100000px;}
.ws129{word-spacing:2.142000px;}
.ws87{word-spacing:2.160000px;}
.ws49{word-spacing:2.220000px;}
.ws47{word-spacing:2.280000px;}
.ws116{word-spacing:2.304000px;}
.wsb3{word-spacing:2.340000px;}
.ws81{word-spacing:2.400000px;}
.ws41{word-spacing:2.460000px;}
.ws75{word-spacing:2.520000px;}
.ws8e{word-spacing:2.580000px;}
.ws125{word-spacing:2.592000px;}
.ws108{word-spacing:2.640000px;}
.ws12{word-spacing:2.700000px;}
.ws55{word-spacing:2.760000px;}
.ws35{word-spacing:2.820000px;}
.ws69{word-spacing:2.880000px;}
.ws60{word-spacing:2.940000px;}
.ws10f{word-spacing:2.976000px;}
.ws11{word-spacing:3.000000px;}
.wsc{word-spacing:3.060000px;}
.wsbd{word-spacing:3.120000px;}
.ws115{word-spacing:3.168000px;}
.ws6b{word-spacing:3.180000px;}
.ws117{word-spacing:3.216000px;}
.ws6c{word-spacing:3.240000px;}
.ws10b{word-spacing:3.264000px;}
.ws96{word-spacing:3.300000px;}
.ws106{word-spacing:3.312000px;}
.ws24{word-spacing:3.360000px;}
.wsa6{word-spacing:3.420000px;}
.ws118{word-spacing:3.456000px;}
.wsb4{word-spacing:3.480000px;}
.wsd{word-spacing:3.540000px;}
.ws32{word-spacing:3.600000px;}
.ws11e{word-spacing:3.648000px;}
.ws48{word-spacing:3.660000px;}
.wsb1{word-spacing:3.720000px;}
.ws22{word-spacing:3.780000px;}
.wsf3{word-spacing:3.792000px;}
.ws46{word-spacing:3.840000px;}
.ws98{word-spacing:3.900000px;}
.wsb5{word-spacing:3.960000px;}
.wsa2{word-spacing:4.020000px;}
.ws107{word-spacing:4.032000px;}
.wsb6{word-spacing:4.080000px;}
.ws93{word-spacing:4.140000px;}
.ws102{word-spacing:4.176000px;}
.ws84{word-spacing:4.200000px;}
.ws79{word-spacing:4.260000px;}
.ws101{word-spacing:4.272000px;}
.ws21{word-spacing:4.320000px;}
.ws6e{word-spacing:4.380000px;}
.ws92{word-spacing:4.440000px;}
.ws33{word-spacing:4.500000px;}
.ws90{word-spacing:4.560000px;}
.ws11c{word-spacing:4.608000px;}
.wsb{word-spacing:4.620000px;}
.ws68{word-spacing:4.680000px;}
.ws11b{word-spacing:4.704000px;}
.ws20{word-spacing:4.740000px;}
.ws110{word-spacing:4.752000px;}
.wsaa{word-spacing:4.800000px;}
.ws4c{word-spacing:4.860000px;}
.ws34{word-spacing:4.920000px;}
.ws124{word-spacing:4.944000px;}
.wsb8{word-spacing:4.980000px;}
.ws13{word-spacing:5.040000px;}
.ws82{word-spacing:5.100000px;}
.ws53{word-spacing:5.160000px;}
.ws114{word-spacing:5.184000px;}
.wsd3{word-spacing:5.220000px;}
.ws7e{word-spacing:5.280000px;}
.ws30{word-spacing:5.340000px;}
.ws3a{word-spacing:5.400000px;}
.ws83{word-spacing:5.460000px;}
.ws80{word-spacing:5.520000px;}
.ws3d{word-spacing:5.580000px;}
.ws104{word-spacing:5.616000px;}
.ws1a{word-spacing:5.640000px;}
.ws61{word-spacing:5.700000px;}
.ws39{word-spacing:5.760000px;}
.ws23{word-spacing:5.820000px;}
.ws64{word-spacing:5.880000px;}
.ws36{word-spacing:5.940000px;}
.ws113{word-spacing:5.952000px;}
.ws1c{word-spacing:6.000000px;}
.ws89{word-spacing:6.060000px;}
.ws71{word-spacing:6.120000px;}
.ws16{word-spacing:6.180000px;}
.ws119{word-spacing:6.192000px;}
.ws94{word-spacing:6.240000px;}
.wsad{word-spacing:6.300000px;}
.ws2a{word-spacing:6.360000px;}
.ws1f{word-spacing:6.420000px;}
.wsae{word-spacing:6.480000px;}
.ws27{word-spacing:6.600000px;}
.wsff{word-spacing:6.624000px;}
.ws5d{word-spacing:6.660000px;}
.wsed{word-spacing:6.720000px;}
.ws77{word-spacing:6.780000px;}
.wsf{word-spacing:6.840000px;}
.wse{word-spacing:6.900000px;}
.ws126{word-spacing:6.912000px;}
.ws88{word-spacing:6.960000px;}
.ws99{word-spacing:7.020000px;}
.ws76{word-spacing:7.080000px;}
.ws111{word-spacing:7.104000px;}
.ws42{word-spacing:7.140000px;}
.ws85{word-spacing:7.200000px;}
.ws11f{word-spacing:7.248000px;}
.wsc4{word-spacing:7.260000px;}
.ws2e{word-spacing:7.320000px;}
.wsba{word-spacing:7.380000px;}
.ws105{word-spacing:7.392000px;}
.ws9d{word-spacing:7.440000px;}
.ws4f{word-spacing:7.500000px;}
.ws62{word-spacing:7.560000px;}
.ws1d{word-spacing:7.620000px;}
.ws7b{word-spacing:7.680000px;}
.wsa7{word-spacing:7.740000px;}
.ws19{word-spacing:7.800000px;}
.ws8d{word-spacing:7.860000px;}
.wsb0{word-spacing:7.920000px;}
.wsfb{word-spacing:7.980000px;}
.ws28{word-spacing:8.040000px;}
.ws3b{word-spacing:8.100000px;}
.ws50{word-spacing:8.160000px;}
.ws10{word-spacing:8.220000px;}
.wsc7{word-spacing:8.280000px;}
.ws1e{word-spacing:8.340000px;}
.ws86{word-spacing:8.400000px;}
.ws74{word-spacing:8.460000px;}
.ws5c{word-spacing:8.520000px;}
.wsb9{word-spacing:8.580000px;}
.wse2{word-spacing:8.640000px;}
.wsbb{word-spacing:8.700000px;}
.ws7d{word-spacing:8.760000px;}
.wsc5{word-spacing:8.820000px;}
.ws2c{word-spacing:8.880000px;}
.ws40{word-spacing:8.940000px;}
.wsfc{word-spacing:9.000000px;}
.wsb7{word-spacing:9.120000px;}
.ws97{word-spacing:9.180000px;}
.ws57{word-spacing:9.420000px;}
.wsf5{word-spacing:9.480000px;}
.ws3c{word-spacing:9.540000px;}
.ws43{word-spacing:9.600000px;}
.ws73{word-spacing:9.720000px;}
.wsb2{word-spacing:9.900000px;}
.wsfd{word-spacing:10.020000px;}
.wsa1{word-spacing:10.200000px;}
.ws8b{word-spacing:10.440000px;}
.ws70{word-spacing:10.680000px;}
.ws6d{word-spacing:10.860000px;}
.wsa0{word-spacing:11.160000px;}
.ws29{word-spacing:11.220000px;}
.wsfa{word-spacing:12.000000px;}
.ws95{word-spacing:12.120000px;}
.ws59{word-spacing:12.180000px;}
.wsd8{word-spacing:12.480000px;}
.ws5b{word-spacing:12.780000px;}
.wsf9{word-spacing:12.900000px;}
.wsf7{word-spacing:12.960000px;}
.ws5e{word-spacing:13.080000px;}
.wsc0{word-spacing:13.320000px;}
.ws17{word-spacing:13.980000px;}
.ws15{word-spacing:15.900000px;}
.wsd9{word-spacing:16.500000px;}
.wscc{word-spacing:17.136605px;}
.wsc8{word-spacing:17.595621px;}
.ws6f{word-spacing:17.880000px;}
.ws45{word-spacing:19.260000px;}
.ws14{word-spacing:19.668000px;}
.wsa4{word-spacing:19.740000px;}
.wsf6{word-spacing:19.860000px;}
.wsf4{word-spacing:20.040000px;}
.wsea{word-spacing:21.105306px;}
.ws65{word-spacing:21.360000px;}
.ws9b{word-spacing:21.720000px;}
.wsd0{word-spacing:21.726767px;}
.wsd1{word-spacing:22.032778px;}
.wseb{word-spacing:22.073907px;}
.ws78{word-spacing:22.680000px;}
.ws100{word-spacing:22.704000px;}
.wsda{word-spacing:27.071989px;}
.wsdf{word-spacing:27.071995px;}
.wse0{word-spacing:51.071995px;}
.wsde{word-spacing:64.655993px;}
.ws18{word-spacing:73.056000px;}
.wsf2{word-spacing:83.729128px;}
.wsdc{word-spacing:87.071995px;}
.wsdd{word-spacing:111.071995px;}
.wse1{word-spacing:135.071995px;}
.wsc1{word-spacing:595.824000px;}
.wsbf{word-spacing:637.296000px;}
._32{margin-left:-19.617697px;}
._57{margin-left:-17.184000px;}
._7{margin-left:-15.600000px;}
._14{margin-left:-13.332000px;}
._23{margin-left:-11.806200px;}
._12{margin-left:-5.400000px;}
._4{margin-left:-3.758400px;}
._6{margin-left:-2.644200px;}
._0{margin-left:-1.632000px;}
._1{width:1.864200px;}
._5{width:3.246000px;}
._3d{width:4.420293px;}
._b{width:5.475507px;}
._d{width:7.092000px;}
._11{width:8.519967px;}
._e{width:10.426107px;}
._10{width:12.474000px;}
._17{width:15.705600px;}
._13{width:19.668000px;}
._8{width:22.320000px;}
._56{width:23.419707px;}
._51{width:24.765937px;}
._58{width:25.824000px;}
._54{width:27.288033px;}
._55{width:28.837893px;}
._15{width:30.000000px;}
._f{width:33.000000px;}
._16{width:35.489373px;}
._3{width:39.191440px;}
._2{width:40.375761px;}
._52{width:44.060992px;}
._50{width:46.156847px;}
._3c{width:47.304000px;}
._36{width:49.104000px;}
._a{width:56.255991px;}
._3b{width:62.820000px;}
._35{width:65.412000px;}
._3a{width:66.888000px;}
._34{width:69.120000px;}
._33{width:70.344000px;}
._38{width:72.036000px;}
._9{width:73.056000px;}
._4c{width:75.799793px;}
._53{width:80.794940px;}
._3f{width:85.776000px;}
._4b{width:87.072000px;}
._4f{width:88.211706px;}
._1a{width:97.838400px;}
._3e{width:109.056000px;}
._1b{width:119.375979px;}
._24{width:121.921181px;}
._42{width:123.072000px;}
._1d{width:127.440000px;}
._1c{width:132.494400px;}
._47{width:147.191448px;}
._4a{width:157.103989px;}
._21{width:164.167800px;}
._41{width:169.103989px;}
._4e{width:171.191448px;}
._40{width:173.663993px;}
._46{width:178.895993px;}
._44{width:192.984541px;}
._37{width:196.632000px;}
._18{width:203.424000px;}
._39{width:208.980000px;}
._4d{width:216.984541px;}
._49{width:223.462134px;}
._1f{width:267.264000px;}
._45{width:282.719994px;}
._20{width:293.807989px;}
._48{width:306.719994px;}
._31{width:325.060200px;}
._43{width:330.719994px;}
._1e{width:429.743989px;}
._29{width:447.175800px;}
._2a{width:457.296000px;}
._2e{width:467.904000px;}
._28{width:476.928000px;}
._19{width:489.743989px;}
._27{width:495.648000px;}
._25{width:502.272000px;}
._2b{width:509.040000px;}
._22{width:540.431989px;}
._2f{width:547.920000px;}
._30{width:555.888000px;}
._26{width:563.856000px;}
._2c{width:572.976000px;}
._2d{width:611.616000px;}
._c{width:1653.120076px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:28.206599px;}
.fsa{font-size:28.677600px;}
.fs14{font-size:31.438199px;}
.fs11{font-size:31.724399px;}
.fs6{font-size:33.600000px;}
.fs13{font-size:34.930800px;}
.fsd{font-size:35.251800px;}
.fse{font-size:35.253000px;}
.fsf{font-size:35.394599px;}
.fs9{font-size:36.000000px;}
.fs10{font-size:41.293800px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs12{font-size:50.979000px;}
.fs15{font-size:51.000000px;}
.fsb{font-size:51.001800px;}
.fs7{font-size:56.399998px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.014997px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:0.344559px;}
.y11f{bottom:0.345062px;}
.y18a{bottom:3.270149px;}
.y1ed{bottom:3.270721px;}
.y58{bottom:49.625399px;}
.y27{bottom:49.625999px;}
.y4{bottom:53.240250px;}
.y1{bottom:53.554802px;}
.y24a{bottom:89.855982px;}
.y25{bottom:90.006000px;}
.yf5{bottom:90.218102px;}
.y55{bottom:90.797516px;}
.yba{bottom:90.797539px;}
.y7d{bottom:90.797562px;}
.yf0{bottom:91.202516px;}
.ycc{bottom:93.959381px;}
.y117{bottom:95.437180px;}
.y12e{bottom:97.687054px;}
.y1a5{bottom:99.870450px;}
.ya7{bottom:102.757187px;}
.y249{bottom:104.099982px;}
.y21b{bottom:107.672516px;}
.y54{bottom:108.797516px;}
.yb9{bottom:108.797539px;}
.y7c{bottom:108.797562px;}
.y24{bottom:109.049995px;}
.y8a{bottom:109.193840px;}
.yef{bottom:109.202516px;}
.ycb{bottom:111.959381px;}
.y116{bottom:113.437180px;}
.yfc{bottom:115.521007px;}
.y12d{bottom:115.687054px;}
.y1a4{bottom:118.098450px;}
.y248{bottom:118.343982px;}
.ya6{bottom:120.757187px;}
.y21a{bottom:125.672516px;}
.y53{bottom:126.797516px;}
.yb8{bottom:126.797539px;}
.y7b{bottom:126.797562px;}
.y89{bottom:127.193840px;}
.yee{bottom:127.202516px;}
.yca{bottom:129.959381px;}
.y23{bottom:130.847248px;}
.y115{bottom:131.437180px;}
.y247{bottom:132.587982px;}
.y12c{bottom:133.687054px;}
.yfb{bottom:133.749007px;}
.y1a3{bottom:136.242450px;}
.ya5{bottom:138.757187px;}
.y1b4{bottom:140.986633px;}
.y219{bottom:143.672516px;}
.y52{bottom:144.797516px;}
.yb7{bottom:144.797539px;}
.y7a{bottom:144.797562px;}
.y88{bottom:145.193840px;}
.yed{bottom:145.202516px;}
.y246{bottom:146.831982px;}
.yc9{bottom:147.959381px;}
.y114{bottom:149.437180px;}
.y12b{bottom:151.687054px;}
.yfa{bottom:151.893007px;}
.y1a2{bottom:154.386450px;}
.y22{bottom:154.725756px;}
.ya4{bottom:156.757187px;}
.y1b3{bottom:158.986633px;}
.y245{bottom:161.075982px;}
.y218{bottom:161.672516px;}
.y51{bottom:162.797516px;}
.yb6{bottom:162.797539px;}
.y79{bottom:162.797562px;}
.y87{bottom:163.193840px;}
.yec{bottom:163.202516px;}
.yc8{bottom:165.959381px;}
.y113{bottom:167.437180px;}
.y21{bottom:168.969756px;}
.y12a{bottom:169.687054px;}
.yf9{bottom:170.049007px;}
.y1a1{bottom:172.530450px;}
.ya3{bottom:174.757187px;}
.y244{bottom:175.319982px;}
.y1b2{bottom:176.986633px;}
.y217{bottom:179.672516px;}
.y50{bottom:180.797516px;}
.yb5{bottom:180.797539px;}
.y78{bottom:180.797562px;}
.y86{bottom:181.193840px;}
.yeb{bottom:181.202516px;}
.yc7{bottom:183.959381px;}
.yf8{bottom:184.293007px;}
.y112{bottom:185.437180px;}
.y243{bottom:189.563982px;}
.y1a0{bottom:190.674450px;}
.y20{bottom:190.761756px;}
.ya2{bottom:192.757187px;}
.y1b1{bottom:194.986633px;}
.y216{bottom:197.672516px;}
.y4f{bottom:198.797516px;}
.yb4{bottom:198.797539px;}
.y77{bottom:198.797562px;}
.y85{bottom:199.193840px;}
.yea{bottom:199.202516px;}
.yc6{bottom:201.959381px;}
.yf7{bottom:202.437007px;}
.y111{bottom:203.437180px;}
.y242{bottom:203.807982px;}
.y1f{bottom:205.005756px;}
.y19f{bottom:208.818450px;}
.ya1{bottom:210.757187px;}
.y18c{bottom:211.926158px;}
.y1b0{bottom:212.986633px;}
.y215{bottom:215.672516px;}
.y4e{bottom:216.797516px;}
.yb3{bottom:216.797539px;}
.y76{bottom:216.797562px;}
.y84{bottom:217.193840px;}
.ye9{bottom:217.202516px;}
.y241{bottom:218.051982px;}
.yc5{bottom:219.959381px;}
.y110{bottom:221.437180px;}
.y18b{bottom:226.170158px;}
.y1e{bottom:226.797756px;}
.y19e{bottom:226.962450px;}
.ya0{bottom:228.757187px;}
.yf6{bottom:230.445007px;}
.y1af{bottom:230.986633px;}
.y240{bottom:232.295982px;}
.y214{bottom:233.672516px;}
.y4d{bottom:234.797516px;}
.yb2{bottom:234.797539px;}
.y75{bottom:234.797562px;}
.ye8{bottom:235.202516px;}
.yf4{bottom:236.270096px;}
.yc4{bottom:237.959381px;}
.y10f{bottom:239.437180px;}
.y1d{bottom:241.041756px;}
.y19d{bottom:245.106450px;}
.y277{bottom:245.954553px;}
.y23f{bottom:246.539982px;}
.y9f{bottom:246.757187px;}
.y1ae{bottom:248.986633px;}
.y213{bottom:251.672516px;}
.y138{bottom:252.178505px;}
.y4c{bottom:252.797516px;}
.yb1{bottom:252.797539px;}
.y74{bottom:252.797562px;}
.y83{bottom:253.193840px;}
.ye7{bottom:253.202516px;}
.yc3{bottom:255.959381px;}
.y10e{bottom:257.437180px;}
.y276{bottom:260.209053px;}
.y23e{bottom:260.783982px;}
.y19c{bottom:263.250450px;}
.y9e{bottom:264.757187px;}
.y1ad{bottom:266.986633px;}
.y212{bottom:269.672516px;}
.y4b{bottom:270.797516px;}
.y73{bottom:270.797562px;}
.ye6{bottom:271.202516px;}
.yb0{bottom:271.697548px;}
.y17d{bottom:271.798645px;}
.y195{bottom:273.095562px;}
.yc2{bottom:273.959381px;}
.y23d{bottom:275.027982px;}
.y10d{bottom:275.437180px;}
.y19b{bottom:281.394450px;}
.y9d{bottom:282.757187px;}
.y1c{bottom:283.817093px;}
.y1ac{bottom:284.986633px;}
.y17c{bottom:286.024658px;}
.y194{bottom:287.339562px;}
.y211{bottom:287.672516px;}
.y4a{bottom:288.797516px;}
.yaf{bottom:288.797539px;}
.y72{bottom:288.797562px;}
.ye5{bottom:289.202516px;}
.y23c{bottom:289.271982px;}
.y275{bottom:290.555516px;}
.yc1{bottom:291.959381px;}
.y10c{bottom:293.437180px;}
.y17e{bottom:293.958160px;}
.y19a{bottom:299.538450px;}
.y9c{bottom:300.757187px;}
.y193{bottom:301.583562px;}
.y1b{bottom:301.817093px;}
.y1ab{bottom:302.986633px;}
.y23b{bottom:303.515982px;}
.y274{bottom:304.799516px;}
.y210{bottom:305.672516px;}
.y49{bottom:306.797516px;}
.y71{bottom:306.797562px;}
.ye4{bottom:307.202516px;}
.yae{bottom:307.697548px;}
.y82{bottom:309.248840px;}
.yc0{bottom:309.959381px;}
.y10b{bottom:311.437180px;}
.y192{bottom:315.827562px;}
.y199{bottom:317.682450px;}
.y23a{bottom:317.759982px;}
.y9b{bottom:318.757187px;}
.y273{bottom:319.043516px;}
.y1a{bottom:319.817093px;}
.y17f{bottom:320.229160px;}
.y1aa{bottom:320.986633px;}
.y20f{bottom:323.672516px;}
.y48{bottom:324.797516px;}
.yad{bottom:324.797539px;}
.y70{bottom:324.797562px;}
.ye3{bottom:325.202516px;}
.y81{bottom:327.248840px;}
.ybf{bottom:327.959381px;}
.y10a{bottom:329.437180px;}
.y191{bottom:330.071562px;}
.y239{bottom:332.003982px;}
.y272{bottom:333.287516px;}
.y198{bottom:335.826450px;}
.y9a{bottom:336.757187px;}
.y1a9{bottom:338.986633px;}
.y20e{bottom:341.672516px;}
.y47{bottom:342.797516px;}
.yac{bottom:342.797539px;}
.y6f{bottom:342.797562px;}
.ye2{bottom:343.202516px;}
.y190{bottom:344.315562px;}
.y80{bottom:345.248840px;}
.ybe{bottom:345.959381px;}
.y238{bottom:346.247982px;}
.y180{bottom:346.491160px;}
.y109{bottom:347.437180px;}
.y271{bottom:347.531516px;}
.y197{bottom:353.970450px;}
.y99{bottom:354.757187px;}
.y19{bottom:355.817093px;}
.y1a8{bottom:356.986633px;}
.y18f{bottom:358.559562px;}
.y20d{bottom:359.672516px;}
.y237{bottom:360.491982px;}
.y185{bottom:360.565659px;}
.y46{bottom:360.797516px;}
.y6e{bottom:360.797562px;}
.ye1{bottom:361.202516px;}
.yab{bottom:361.697548px;}
.y270{bottom:361.775516px;}
.ybd{bottom:363.959381px;}
.y108{bottom:365.437180px;}
.y181{bottom:372.753160px;}
.y98{bottom:372.757187px;}
.y18e{bottom:372.803562px;}
.y236{bottom:374.735982px;}
.y1a7{bottom:374.986633px;}
.y26f{bottom:376.019516px;}
.y20c{bottom:377.672516px;}
.y45{bottom:378.797516px;}
.y6d{bottom:378.797562px;}
.ye0{bottom:379.202516px;}
.y196{bottom:381.222450px;}
.y7f{bottom:381.247340px;}
.ybc{bottom:381.959381px;}
.y107{bottom:383.437180px;}
.y18d{bottom:387.047562px;}
.y235{bottom:388.979982px;}
.y26e{bottom:390.263516px;}
.y97{bottom:390.757187px;}
.y1a6{bottom:392.986633px;}
.y20b{bottom:395.672516px;}
.yf2{bottom:396.447006px;}
.y44{bottom:396.797516px;}
.y6c{bottom:396.797562px;}
.ydf{bottom:397.202516px;}
.y182{bottom:399.015160px;}
.y7e{bottom:399.248840px;}
.y1be{bottom:399.939240px;}
.ybb{bottom:399.959381px;}
.y106{bottom:401.437180px;}
.y234{bottom:403.223982px;}
.y26d{bottom:404.507516px;}
.y96{bottom:408.757187px;}
.y18{bottom:409.817093px;}
.y20a{bottom:413.672516px;}
.y43{bottom:414.797516px;}
.y6b{bottom:414.797562px;}
.yde{bottom:415.202516px;}
.yaa{bottom:415.697571px;}
.y233{bottom:417.467982px;}
.y189{bottom:417.933150px;}
.y26c{bottom:418.751516px;}
.y105{bottom:419.437180px;}
.y183{bottom:425.286160px;}
.y188{bottom:426.697815px;}
.y95{bottom:426.757187px;}
.y17{bottom:427.817093px;}
.y209{bottom:431.672516px;}
.y232{bottom:431.711982px;}
.y42{bottom:432.797516px;}
.y6a{bottom:432.797562px;}
.y26b{bottom:432.995516px;}
.ydd{bottom:433.202516px;}
.y187{bottom:435.462158px;}
.y104{bottom:437.437180px;}
.y186{bottom:444.226639px;}
.y94{bottom:444.757187px;}
.y231{bottom:445.955982px;}
.y26a{bottom:447.239516px;}
.y208{bottom:449.672516px;}
.y41{bottom:450.797516px;}
.y69{bottom:450.797562px;}
.ydc{bottom:451.202516px;}
.y184{bottom:451.557160px;}
.ya9{bottom:451.697571px;}
.y103{bottom:455.437180px;}
.y230{bottom:460.199982px;}
.y269{bottom:461.483516px;}
.y93{bottom:462.757187px;}
.y1ef{bottom:464.157581px;}
.y16{bottom:464.567093px;}
.y207{bottom:467.672516px;}
.y40{bottom:468.797516px;}
.y68{bottom:468.797562px;}
.ydb{bottom:469.202516px;}
.y102{bottom:473.437180px;}
.y268{bottom:475.727516px;}
.y1ee{bottom:478.401581px;}
.y92{bottom:480.757187px;}
.y15{bottom:482.567093px;}
.y165{bottom:483.406631px;}
.y17b{bottom:484.921646px;}
.y206{bottom:485.672516px;}
.y3f{bottom:486.797516px;}
.y67{bottom:486.797562px;}
.yda{bottom:487.202516px;}
.y267{bottom:489.971516px;}
.y101{bottom:491.437180px;}
.y22f{bottom:492.750000px;}
.y91{bottom:498.757187px;}
.y151{bottom:500.416672px;}
.y14{bottom:500.567093px;}
.y205{bottom:503.672516px;}
.y266{bottom:504.215516px;}
.y1bd{bottom:504.409515px;}
.y3e{bottom:504.797516px;}
.y66{bottom:504.797562px;}
.yd9{bottom:505.202516px;}
.y100{bottom:509.437180px;}
.y1e1{bottom:510.609741px;}
.y167{bottom:514.936650px;}
.y90{bottom:516.757187px;}
.y265{bottom:518.459516px;}
.y13{bottom:518.567093px;}
.y204{bottom:521.672516px;}
.y152{bottom:522.343643px;}
.y3d{bottom:522.797516px;}
.y65{bottom:522.797562px;}
.yd8{bottom:523.202516px;}
.y168{bottom:523.635132px;}
.ya8{bottom:523.697571px;}
.yff{bottom:527.437180px;}
.y1e2{bottom:528.251083px;}
.y1d1{bottom:530.732117px;}
.y264{bottom:532.703516px;}
.y8f{bottom:534.757187px;}
.y12{bottom:536.567093px;}
.y1e3{bottom:537.870621px;}
.y153{bottom:538.102643px;}
.y169{bottom:539.133132px;}
.y203{bottom:539.672516px;}
.y1d3{bottom:540.281250px;}
.y3c{bottom:540.797516px;}
.y64{bottom:540.797562px;}
.yd7{bottom:541.202516px;}
.yfe{bottom:545.437180px;}
.y263{bottom:546.947516px;}
.y1e9{bottom:549.770233px;}
.y8e{bottom:552.757187px;}
.y1d2{bottom:553.088242px;}
.y154{bottom:553.861643px;}
.y11{bottom:554.567093px;}
.y16a{bottom:554.631132px;}
.y202{bottom:557.672516px;}
.y3b{bottom:558.797516px;}
.y63{bottom:558.797562px;}
.y1d4{bottom:558.951900px;}
.yd6{bottom:559.202516px;}
.y262{bottom:561.191516px;}
.yfd{bottom:563.437180px;}
.y22e{bottom:564.131516px;}
.y1e4{bottom:569.531089px;}
.y155{bottom:569.620643px;}
.y16b{bottom:570.129132px;}
.y8d{bottom:570.757187px;}
.y10{bottom:572.567093px;}
.y261{bottom:575.435516px;}
.y201{bottom:575.672516px;}
.y3a{bottom:576.797516px;}
.y62{bottom:576.797562px;}
.yd5{bottom:577.202516px;}
.y1d5{bottom:577.631400px;}
.y22d{bottom:578.375516px;}
.y156{bottom:585.379643px;}
.y16c{bottom:585.627132px;}
.y15d{bottom:588.525146px;}
.y173{bottom:588.729172px;}
.y260{bottom:589.679516px;}
.yf{bottom:590.567093px;}
.y22c{bottom:592.619516px;}
.y200{bottom:593.672516px;}
.y39{bottom:594.797516px;}
.y61{bottom:594.797562px;}
.yd4{bottom:595.202516px;}
.y1d6{bottom:596.302050px;}
.y16d{bottom:601.125132px;}
.y157{bottom:601.138643px;}
.y1e5{bottom:601.191558px;}
.y25f{bottom:603.923516px;}
.y22b{bottom:606.863516px;}
.ye{bottom:608.567093px;}
.y1ff{bottom:611.672516px;}
.y38{bottom:612.797516px;}
.y60{bottom:612.797562px;}
.yd3{bottom:613.202516px;}
.y1d7{bottom:614.972700px;}
.y129{bottom:615.088506px;}
.y16e{bottom:616.623132px;}
.y158{bottom:616.897643px;}
.y25e{bottom:618.167516px;}
.y17a{bottom:619.548294px;}
.y164{bottom:619.858658px;}
.y22a{bottom:621.107516px;}
.yd{bottom:626.567093px;}
.y179{bottom:628.194168px;}
.y163{bottom:628.648819px;}
.y1fe{bottom:629.672516px;}
.y37{bottom:630.797516px;}
.y5f{bottom:630.797562px;}
.yd2{bottom:631.202516px;}
.y16f{bottom:632.121132px;}
.y25d{bottom:632.411516px;}
.y159{bottom:632.656643px;}
.y1e6{bottom:632.852027px;}
.y128{bottom:633.316506px;}
.y1d8{bottom:633.643350px;}
.y229{bottom:635.351516px;}
.y178{bottom:636.840317px;}
.y162{bottom:637.438660px;}
.yc{bottom:644.567093px;}
.y177{bottom:645.486282px;}
.y161{bottom:646.228821px;}
.y25c{bottom:646.655516px;}
.y170{bottom:647.619132px;}
.y1fd{bottom:647.672516px;}
.y15a{bottom:648.415643px;}
.y36{bottom:648.797516px;}
.y5e{bottom:648.797562px;}
.yd1{bottom:649.202516px;}
.y228{bottom:649.595516px;}
.y127{bottom:651.460506px;}
.y139{bottom:652.147820px;}
.y1d9{bottom:652.446730px;}
.y176{bottom:654.130783px;}
.y160{bottom:655.017150px;}
.y1e0{bottom:660.130080px;}
.y25b{bottom:660.899516px;}
.yb{bottom:662.567093px;}
.y175{bottom:662.776794px;}
.y171{bottom:663.117132px;}
.y15f{bottom:663.807129px;}
.y227{bottom:663.839516px;}
.y15b{bottom:664.174643px;}
.y1e7{bottom:664.512496px;}
.y1fc{bottom:665.672516px;}
.y35{bottom:666.797516px;}
.y5d{bottom:666.797562px;}
.yd0{bottom:667.202516px;}
.y1ec{bottom:667.426355px;}
.y126{bottom:669.604506px;}
.y1df{bottom:669.954517px;}
.y1dc{bottom:670.874084px;}
.y1da{bottom:671.064289px;}
.y174{bottom:671.422806px;}
.y15e{bottom:672.598663px;}
.y25a{bottom:675.143516px;}
.y1eb{bottom:677.340230px;}
.y226{bottom:678.083516px;}
.y172{bottom:678.615132px;}
.y1de{bottom:679.676780px;}
.y15c{bottom:679.933643px;}
.ya{bottom:680.567093px;}
.y1fb{bottom:683.672516px;}
.y34{bottom:684.797516px;}
.y5c{bottom:684.797562px;}
.ycf{bottom:685.202516px;}
.y1ea{bottom:687.254105px;}
.y125{bottom:687.748506px;}
.y1dd{bottom:689.296869px;}
.y259{bottom:689.387516px;}
.y1db{bottom:689.681848px;}
.y1e8{bottom:696.172965px;}
.y1fa{bottom:701.672516px;}
.y33{bottom:702.797516px;}
.y5b{bottom:702.797562px;}
.yce{bottom:703.202516px;}
.y258{bottom:703.631516px;}
.y124{bottom:705.892506px;}
.y225{bottom:707.339516px;}
.y13f{bottom:707.794647px;}
.y150{bottom:708.219131px;}
.y257{bottom:717.875516px;}
.y1f9{bottom:719.672516px;}
.y32{bottom:720.797516px;}
.y5a{bottom:720.797562px;}
.y1c3{bottom:722.366272px;}
.y1d0{bottom:723.081757px;}
.y123{bottom:724.036506px;}
.y12f{bottom:724.543671px;}
.y9{bottom:729.059696px;}
.y256{bottom:732.119516px;}
.y224{bottom:736.595516px;}
.y1f8{bottom:737.672516px;}
.y166{bottom:738.370650px;}
.y31{bottom:738.797516px;}
.yf1{bottom:738.797562px;}
.ycd{bottom:739.202516px;}
.y1b5{bottom:741.659271px;}
.y122{bottom:742.180506px;}
.y1c4{bottom:742.353607px;}
.y8{bottom:743.303696px;}
.y140{bottom:743.755783px;}
.y255{bottom:746.363516px;}
.y130{bottom:746.731659px;}
.y1b6{bottom:750.435745px;}
.y223{bottom:750.839516px;}
.y1c5{bottom:751.058121px;}
.y1f7{bottom:755.672516px;}
.y30{bottom:756.797516px;}
.y59{bottom:756.797562px;}
.y121{bottom:760.324506px;}
.y254{bottom:760.607516px;}
.y1bf{bottom:763.357361px;}
.y141{bottom:764.239783px;}
.y222{bottom:765.083516px;}
.y1cb{bottom:765.121811px;}
.y131{bottom:766.432658px;}
.y1b7{bottom:772.424639px;}
.y1f6{bottom:773.672516px;}
.y2f{bottom:774.797516px;}
.y253{bottom:774.851516px;}
.y120{bottom:778.468506px;}
.y221{bottom:779.327516px;}
.y1c6{bottom:780.931162px;}
.y7{bottom:781.152191px;}
.y142{bottom:781.753783px;}
.y132{bottom:786.133657px;}
.y252{bottom:789.095516px;}
.y1f5{bottom:791.672516px;}
.y2e{bottom:792.797516px;}
.y220{bottom:793.571516px;}
.y1b8{bottom:794.413533px;}
.y11e{bottom:796.267456px;}
.y11d{bottom:796.638473px;}
.y143{bottom:799.267783px;}
.y251{bottom:803.339516px;}
.y133{bottom:805.834656px;}
.y21f{bottom:807.815516px;}
.y1f4{bottom:809.672516px;}
.y2d{bottom:810.797516px;}
.y1c7{bottom:810.804204px;}
.y13a{bottom:812.911194px;}
.y149{bottom:812.912659px;}
.y11c{bottom:814.782473px;}
.y1b9{bottom:816.402426px;}
.y144{bottom:816.781783px;}
.y250{bottom:817.583516px;}
.y21e{bottom:822.059516px;}
.y6{bottom:823.895529px;}
.y134{bottom:825.535655px;}
.y1f3{bottom:827.672516px;}
.y2c{bottom:828.797516px;}
.y24f{bottom:831.827516px;}
.y11b{bottom:832.926473px;}
.y145{bottom:834.295783px;}
.y21d{bottom:836.303516px;}
.y1ba{bottom:838.391320px;}
.y1c8{bottom:840.686094px;}
.y135{bottom:845.236654px;}
.y1f2{bottom:845.672516px;}
.y24e{bottom:846.071516px;}
.y5{bottom:846.398529px;}
.y2b{bottom:846.797516px;}
.y21c{bottom:850.547516px;}
.y11a{bottom:851.070473px;}
.y146{bottom:851.800783px;}
.y14f{bottom:853.130859px;}
.y24d{bottom:860.315516px;}
.y1bb{bottom:860.380214px;}
.y14e{bottom:861.902893px;}
.y1f1{bottom:863.672516px;}
.y2a{bottom:864.797516px;}
.y136{bottom:864.937653px;}
.y119{bottom:869.214473px;}
.y147{bottom:869.314783px;}
.y1cf{bottom:869.929585px;}
.y1c9{bottom:870.559135px;}
.y14d{bottom:870.676025px;}
.y13e{bottom:870.705322px;}
.y24c{bottom:874.559516px;}
.y14c{bottom:879.448059px;}
.y13d{bottom:879.469391px;}
.y1ce{bottom:879.754023px;}
.y1c2{bottom:879.991617px;}
.y1bc{bottom:882.369107px;}
.y29{bottom:882.797516px;}
.y137{bottom:884.638652px;}
.y148{bottom:886.828783px;}
.y14b{bottom:888.222565px;}
.y13c{bottom:888.234192px;}
.y24b{bottom:888.803516px;}
.y1cd{bottom:889.476286px;}
.y1c1{bottom:889.905492px;}
.y14a{bottom:896.994873px;}
.y13b{bottom:896.999268px;}
.y1cc{bottom:899.096374px;}
.y1f0{bottom:899.672516px;}
.y1c0{bottom:899.819366px;}
.y1ca{bottom:900.432177px;}
.y28{bottom:900.797516px;}
.y118{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y26{bottom:939.670349px;}
.y8c{bottom:940.110892px;}
.y57{bottom:940.111075px;}
.y2{bottom:940.111084px;}
.y8b{bottom:940.626892px;}
.y56{bottom:940.627075px;}
.hf{height:8.250000px;}
.h11{height:8.400000px;}
.h18{height:20.534404px;}
.h16{height:20.877293px;}
.h21{height:22.887009px;}
.h1f{height:23.095362px;}
.h20{height:25.429622px;}
.h19{height:25.663310px;}
.h1b{height:25.664184px;}
.h1c{height:25.767268px;}
.h14{height:26.208000px;}
.h1e{height:30.061886px;}
.h13{height:30.576000px;}
.hb{height:31.180800px;}
.h10{height:31.747934px;}
.h12{height:32.448000px;}
.h2{height:33.840000px;}
.h17{height:41.640000px;}
.h3{height:42.048000px;}
.ha{height:44.544000px;}
.h22{height:47.328000px;}
.h1a{height:49.104000px;}
.he{height:52.339198px;}
.hc{height:53.640000px;}
.h4{height:54.862258px;}
.h8{height:55.680000px;}
.h7{height:59.340000px;}
.hd{height:61.380000px;}
.h6{height:64.866000px;}
.h9{height:65.274000px;}
.h5{height:69.108000px;}
.h1d{height:407.638504px;}
.h15{height:659.869492px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w2{width:30.675000px;}
.w3{width:57.209999px;}
.w4{width:505.984497px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x13{left:18.610954px;}
.x33{left:20.992052px;}
.x2{left:76.535402px;}
.x8{left:77.598450px;}
.x3{left:78.746550px;}
.x1{left:88.228352px;}
.x14{left:89.689648px;}
.x7{left:93.545402px;}
.x12{left:95.146804px;}
.x9{left:96.307045px;}
.x4{left:97.799400px;}
.x11{left:100.150804px;}
.x20{left:101.851499px;}
.x39{left:103.380455px;}
.x10{left:105.154804px;}
.x1f{left:106.855499px;}
.x38{left:113.220154px;}
.x23{left:118.570644px;}
.x37{left:120.350395px;}
.x24{left:122.629648px;}
.x15{left:124.522202px;}
.x21{left:127.717804px;}
.x3a{left:139.960945px;}
.x16{left:144.119705px;}
.x22{left:156.974396px;}
.x3c{left:164.120544px;}
.x34{left:166.227000px;}
.xf{left:194.905792px;}
.x1e{left:199.777794px;}
.x31{left:205.228964px;}
.x2f{left:217.161896px;}
.x3b{left:219.083033px;}
.x2e{left:224.322460px;}
.x2d{left:234.330460px;}
.x2b{left:248.394447px;}
.xc{left:250.871402px;}
.x30{left:253.915947px;}
.x1b{left:270.873442px;}
.x32{left:308.284653px;}
.x2c{left:323.014961px;}
.x40{left:326.482664px;}
.xa{left:338.902496px;}
.x28{left:345.187958px;}
.x1a{left:347.404954px;}
.x19{left:351.130954px;}
.x27{left:352.605441px;}
.x18{left:355.486954px;}
.x3f{left:356.677792px;}
.x3e{left:361.597641px;}
.x26{left:362.613441px;}
.x35{left:365.359657px;}
.xb{left:369.577950px;}
.x1c{left:376.578461px;}
.x3d{left:377.766150px;}
.x29{left:383.196442px;}
.x1d{left:400.539322px;}
.x2a{left:430.521469px;}
.x17{left:446.962967px;}
.xe{left:449.110519px;}
.x25{left:454.032440px;}
.x36{left:473.220154px;}
.xd{left:520.554884px;}
.x6{left:521.631592px;}
.x5{left:554.020203px;}
@media print{
.v4{vertical-align:-20.711263pt;}
.v2{vertical-align:-17.066650pt;}
.v3{vertical-align:-3.200033pt;}
.v6{vertical-align:-1.515137pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.509277pt;}
.v1{vertical-align:21.333333pt;}
.ls9{letter-spacing:-1.653333pt;}
.ls5{letter-spacing:-1.493333pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.181259pt;}
.ls17{letter-spacing:-0.136005pt;}
.ls29{letter-spacing:-0.135944pt;}
.ls18{letter-spacing:-0.090670pt;}
.ls2f{letter-spacing:-0.090629pt;}
.ls1c{letter-spacing:-0.045335pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.045335pt;}
.ls2c{letter-spacing:0.181259pt;}
.ls1b{letter-spacing:0.181340pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.613324pt;}
.ls4{letter-spacing:0.618667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:1.178181pt;}
.ls19{letter-spacing:1.178708pt;}
.ls28{letter-spacing:1.223496pt;}
.ls16{letter-spacing:1.224043pt;}
.ls20{letter-spacing:7.978681pt;}
.lsb{letter-spacing:9.472000pt;}
.ls25{letter-spacing:9.935951pt;}
.lsf{letter-spacing:11.264401pt;}
.lse{letter-spacing:11.577065pt;}
.ls22{letter-spacing:11.637285pt;}
.ls7{letter-spacing:11.842960pt;}
.lsc{letter-spacing:11.861333pt;}
.ls8{letter-spacing:11.896306pt;}
.ls24{letter-spacing:11.958415pt;}
.ls13{letter-spacing:12.085202pt;}
.ls11{letter-spacing:12.710938pt;}
.ls14{letter-spacing:12.714600pt;}
.ls2b{letter-spacing:17.128944pt;}
.ls1a{letter-spacing:17.816629pt;}
.ls23{letter-spacing:19.439992pt;}
.ls12{letter-spacing:19.448686pt;}
.ls21{letter-spacing:19.666565pt;}
.ls2e{letter-spacing:43.127894pt;}
.ls2a{letter-spacing:44.059382pt;}
.ls26{letter-spacing:46.596632pt;}
.wsef{word-spacing:-46.596632pt;}
.wsf0{word-spacing:-44.059382pt;}
.wsf1{word-spacing:-43.127894pt;}
.ws3e{word-spacing:-32.000000pt;}
.wsd2{word-spacing:-25.600000pt;}
.wsce{word-spacing:-17.861964pt;}
.wse7{word-spacing:-17.174259pt;}
.wse3{word-spacing:-14.400000pt;}
.wsbe{word-spacing:-14.080000pt;}
.ws3f{word-spacing:-13.333333pt;}
.wsac{word-spacing:-13.120000pt;}
.ws44{word-spacing:-11.850667pt;}
.ws8a{word-spacing:-11.840000pt;}
.wsab{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.773333pt;}
.wsdb{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws66{word-spacing:-10.080000pt;}
.ws1{word-spacing:-8.362667pt;}
.wsfe{word-spacing:-8.192000pt;}
.ws3{word-spacing:-7.728000pt;}
.ws6{word-spacing:-7.466667pt;}
.ws8{word-spacing:-1.680000pt;}
.wsf8{word-spacing:-1.333333pt;}
.wsbc{word-spacing:-1.280000pt;}
.wsc9{word-spacing:-1.269378pt;}
.wse5{word-spacing:-1.268811pt;}
.wscd{word-spacing:-1.224043pt;}
.wse9{word-spacing:-1.223496pt;}
.wsec{word-spacing:-1.066667pt;}
.ws9{word-spacing:-1.013333pt;}
.ws8f{word-spacing:-0.906667pt;}
.ws91{word-spacing:-0.853333pt;}
.wsd5{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.746667pt;}
.ws7a{word-spacing:-0.693333pt;}
.ws9c{word-spacing:-0.640000pt;}
.wsd7{word-spacing:-0.586667pt;}
.wsee{word-spacing:-0.533333pt;}
.ws4b{word-spacing:-0.480000pt;}
.ws67{word-spacing:-0.426667pt;}
.ws11a{word-spacing:-0.341333pt;}
.wsc2{word-spacing:-0.266667pt;}
.wscf{word-spacing:-0.226675pt;}
.wse8{word-spacing:-0.226573pt;}
.ws37{word-spacing:-0.213333pt;}
.ws8c{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.106667pt;}
.ws123{word-spacing:-0.085333pt;}
.ws4e{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws127{word-spacing:0.042667pt;}
.wscb{word-spacing:0.045335pt;}
.wsa3{word-spacing:0.053333pt;}
.ws122{word-spacing:0.085333pt;}
.wse6{word-spacing:0.090629pt;}
.wsca{word-spacing:0.090670pt;}
.ws58{word-spacing:0.106667pt;}
.wse4{word-spacing:0.135944pt;}
.ws31{word-spacing:0.160000pt;}
.ws72{word-spacing:0.213333pt;}
.ws5f{word-spacing:0.266667pt;}
.ws120{word-spacing:0.298667pt;}
.ws6a{word-spacing:0.320000pt;}
.ws56{word-spacing:0.373333pt;}
.ws54{word-spacing:0.480000pt;}
.wsa{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.ws9e{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.693333pt;}
.ws4d{word-spacing:0.746667pt;}
.wsd6{word-spacing:0.800000pt;}
.ws9a{word-spacing:0.853333pt;}
.ws25{word-spacing:0.906667pt;}
.wsd4{word-spacing:0.938667pt;}
.ws63{word-spacing:0.960000pt;}
.wsa9{word-spacing:1.013333pt;}
.ws121{word-spacing:1.024000pt;}
.ws7c{word-spacing:1.066667pt;}
.ws11d{word-spacing:1.109333pt;}
.ws4a{word-spacing:1.120000pt;}
.ws103{word-spacing:1.152000pt;}
.ws52{word-spacing:1.173333pt;}
.wsc6{word-spacing:1.226667pt;}
.ws10e{word-spacing:1.237333pt;}
.wsa5{word-spacing:1.280000pt;}
.ws112{word-spacing:1.322667pt;}
.wsc3{word-spacing:1.333333pt;}
.ws2f{word-spacing:1.386667pt;}
.ws10c{word-spacing:1.408000pt;}
.ws7f{word-spacing:1.440000pt;}
.ws2b{word-spacing:1.493333pt;}
.ws128{word-spacing:1.496000pt;}
.wsaf{word-spacing:1.546667pt;}
.ws109{word-spacing:1.578667pt;}
.ws38{word-spacing:1.600000pt;}
.ws26{word-spacing:1.653333pt;}
.wsa8{word-spacing:1.706667pt;}
.ws10d{word-spacing:1.749333pt;}
.ws10a{word-spacing:1.834667pt;}
.ws51{word-spacing:1.866667pt;}
.ws129{word-spacing:1.904000pt;}
.ws87{word-spacing:1.920000pt;}
.ws49{word-spacing:1.973333pt;}
.ws47{word-spacing:2.026667pt;}
.ws116{word-spacing:2.048000pt;}
.wsb3{word-spacing:2.080000pt;}
.ws81{word-spacing:2.133333pt;}
.ws41{word-spacing:2.186667pt;}
.ws75{word-spacing:2.240000pt;}
.ws8e{word-spacing:2.293333pt;}
.ws125{word-spacing:2.304000pt;}
.ws108{word-spacing:2.346667pt;}
.ws12{word-spacing:2.400000pt;}
.ws55{word-spacing:2.453333pt;}
.ws35{word-spacing:2.506667pt;}
.ws69{word-spacing:2.560000pt;}
.ws60{word-spacing:2.613333pt;}
.ws10f{word-spacing:2.645333pt;}
.ws11{word-spacing:2.666667pt;}
.wsc{word-spacing:2.720000pt;}
.wsbd{word-spacing:2.773333pt;}
.ws115{word-spacing:2.816000pt;}
.ws6b{word-spacing:2.826667pt;}
.ws117{word-spacing:2.858667pt;}
.ws6c{word-spacing:2.880000pt;}
.ws10b{word-spacing:2.901333pt;}
.ws96{word-spacing:2.933333pt;}
.ws106{word-spacing:2.944000pt;}
.ws24{word-spacing:2.986667pt;}
.wsa6{word-spacing:3.040000pt;}
.ws118{word-spacing:3.072000pt;}
.wsb4{word-spacing:3.093333pt;}
.wsd{word-spacing:3.146667pt;}
.ws32{word-spacing:3.200000pt;}
.ws11e{word-spacing:3.242667pt;}
.ws48{word-spacing:3.253333pt;}
.wsb1{word-spacing:3.306667pt;}
.ws22{word-spacing:3.360000pt;}
.wsf3{word-spacing:3.370667pt;}
.ws46{word-spacing:3.413333pt;}
.ws98{word-spacing:3.466667pt;}
.wsb5{word-spacing:3.520000pt;}
.wsa2{word-spacing:3.573333pt;}
.ws107{word-spacing:3.584000pt;}
.wsb6{word-spacing:3.626667pt;}
.ws93{word-spacing:3.680000pt;}
.ws102{word-spacing:3.712000pt;}
.ws84{word-spacing:3.733333pt;}
.ws79{word-spacing:3.786667pt;}
.ws101{word-spacing:3.797333pt;}
.ws21{word-spacing:3.840000pt;}
.ws6e{word-spacing:3.893333pt;}
.ws92{word-spacing:3.946667pt;}
.ws33{word-spacing:4.000000pt;}
.ws90{word-spacing:4.053333pt;}
.ws11c{word-spacing:4.096000pt;}
.wsb{word-spacing:4.106667pt;}
.ws68{word-spacing:4.160000pt;}
.ws11b{word-spacing:4.181333pt;}
.ws20{word-spacing:4.213333pt;}
.ws110{word-spacing:4.224000pt;}
.wsaa{word-spacing:4.266667pt;}
.ws4c{word-spacing:4.320000pt;}
.ws34{word-spacing:4.373333pt;}
.ws124{word-spacing:4.394667pt;}
.wsb8{word-spacing:4.426667pt;}
.ws13{word-spacing:4.480000pt;}
.ws82{word-spacing:4.533333pt;}
.ws53{word-spacing:4.586667pt;}
.ws114{word-spacing:4.608000pt;}
.wsd3{word-spacing:4.640000pt;}
.ws7e{word-spacing:4.693333pt;}
.ws30{word-spacing:4.746667pt;}
.ws3a{word-spacing:4.800000pt;}
.ws83{word-spacing:4.853333pt;}
.ws80{word-spacing:4.906667pt;}
.ws3d{word-spacing:4.960000pt;}
.ws104{word-spacing:4.992000pt;}
.ws1a{word-spacing:5.013333pt;}
.ws61{word-spacing:5.066667pt;}
.ws39{word-spacing:5.120000pt;}
.ws23{word-spacing:5.173333pt;}
.ws64{word-spacing:5.226667pt;}
.ws36{word-spacing:5.280000pt;}
.ws113{word-spacing:5.290667pt;}
.ws1c{word-spacing:5.333333pt;}
.ws89{word-spacing:5.386667pt;}
.ws71{word-spacing:5.440000pt;}
.ws16{word-spacing:5.493333pt;}
.ws119{word-spacing:5.504000pt;}
.ws94{word-spacing:5.546667pt;}
.wsad{word-spacing:5.600000pt;}
.ws2a{word-spacing:5.653333pt;}
.ws1f{word-spacing:5.706667pt;}
.wsae{word-spacing:5.760000pt;}
.ws27{word-spacing:5.866667pt;}
.wsff{word-spacing:5.888000pt;}
.ws5d{word-spacing:5.920000pt;}
.wsed{word-spacing:5.973333pt;}
.ws77{word-spacing:6.026667pt;}
.wsf{word-spacing:6.080000pt;}
.wse{word-spacing:6.133333pt;}
.ws126{word-spacing:6.144000pt;}
.ws88{word-spacing:6.186667pt;}
.ws99{word-spacing:6.240000pt;}
.ws76{word-spacing:6.293333pt;}
.ws111{word-spacing:6.314667pt;}
.ws42{word-spacing:6.346667pt;}
.ws85{word-spacing:6.400000pt;}
.ws11f{word-spacing:6.442667pt;}
.wsc4{word-spacing:6.453333pt;}
.ws2e{word-spacing:6.506667pt;}
.wsba{word-spacing:6.560000pt;}
.ws105{word-spacing:6.570667pt;}
.ws9d{word-spacing:6.613333pt;}
.ws4f{word-spacing:6.666667pt;}
.ws62{word-spacing:6.720000pt;}
.ws1d{word-spacing:6.773333pt;}
.ws7b{word-spacing:6.826667pt;}
.wsa7{word-spacing:6.880000pt;}
.ws19{word-spacing:6.933333pt;}
.ws8d{word-spacing:6.986667pt;}
.wsb0{word-spacing:7.040000pt;}
.wsfb{word-spacing:7.093333pt;}
.ws28{word-spacing:7.146667pt;}
.ws3b{word-spacing:7.200000pt;}
.ws50{word-spacing:7.253333pt;}
.ws10{word-spacing:7.306667pt;}
.wsc7{word-spacing:7.360000pt;}
.ws1e{word-spacing:7.413333pt;}
.ws86{word-spacing:7.466667pt;}
.ws74{word-spacing:7.520000pt;}
.ws5c{word-spacing:7.573333pt;}
.wsb9{word-spacing:7.626667pt;}
.wse2{word-spacing:7.680000pt;}
.wsbb{word-spacing:7.733333pt;}
.ws7d{word-spacing:7.786667pt;}
.wsc5{word-spacing:7.840000pt;}
.ws2c{word-spacing:7.893333pt;}
.ws40{word-spacing:7.946667pt;}
.wsfc{word-spacing:8.000000pt;}
.wsb7{word-spacing:8.106667pt;}
.ws97{word-spacing:8.160000pt;}
.ws57{word-spacing:8.373333pt;}
.wsf5{word-spacing:8.426667pt;}
.ws3c{word-spacing:8.480000pt;}
.ws43{word-spacing:8.533333pt;}
.ws73{word-spacing:8.640000pt;}
.wsb2{word-spacing:8.800000pt;}
.wsfd{word-spacing:8.906667pt;}
.wsa1{word-spacing:9.066667pt;}
.ws8b{word-spacing:9.280000pt;}
.ws70{word-spacing:9.493333pt;}
.ws6d{word-spacing:9.653333pt;}
.wsa0{word-spacing:9.920000pt;}
.ws29{word-spacing:9.973333pt;}
.wsfa{word-spacing:10.666667pt;}
.ws95{word-spacing:10.773333pt;}
.ws59{word-spacing:10.826667pt;}
.wsd8{word-spacing:11.093333pt;}
.ws5b{word-spacing:11.360000pt;}
.wsf9{word-spacing:11.466667pt;}
.wsf7{word-spacing:11.520000pt;}
.ws5e{word-spacing:11.626667pt;}
.wsc0{word-spacing:11.840000pt;}
.ws17{word-spacing:12.426667pt;}
.ws15{word-spacing:14.133333pt;}
.wsd9{word-spacing:14.666667pt;}
.wscc{word-spacing:15.232538pt;}
.wsc8{word-spacing:15.640552pt;}
.ws6f{word-spacing:15.893333pt;}
.ws45{word-spacing:17.120000pt;}
.ws14{word-spacing:17.482667pt;}
.wsa4{word-spacing:17.546667pt;}
.wsf6{word-spacing:17.653333pt;}
.wsf4{word-spacing:17.813333pt;}
.wsea{word-spacing:18.760272pt;}
.ws65{word-spacing:18.986667pt;}
.ws9b{word-spacing:19.306667pt;}
.wsd0{word-spacing:19.312682pt;}
.wsd1{word-spacing:19.584691pt;}
.wseb{word-spacing:19.621251pt;}
.ws78{word-spacing:20.160000pt;}
.ws100{word-spacing:20.181333pt;}
.wsda{word-spacing:24.063990pt;}
.wsdf{word-spacing:24.063995pt;}
.wse0{word-spacing:45.397329pt;}
.wsde{word-spacing:57.471993pt;}
.ws18{word-spacing:64.938667pt;}
.wsf2{word-spacing:74.425891pt;}
.wsdc{word-spacing:77.397329pt;}
.wsdd{word-spacing:98.730662pt;}
.wse1{word-spacing:120.063995pt;}
.wsc1{word-spacing:529.621333pt;}
.wsbf{word-spacing:566.485333pt;}
._32{margin-left:-17.437953pt;}
._57{margin-left:-15.274667pt;}
._7{margin-left:-13.866667pt;}
._14{margin-left:-11.850667pt;}
._23{margin-left:-10.494400pt;}
._12{margin-left:-4.800000pt;}
._4{margin-left:-3.340800pt;}
._6{margin-left:-2.350400pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.657067pt;}
._5{width:2.885333pt;}
._3d{width:3.929150pt;}
._b{width:4.867117pt;}
._d{width:6.304000pt;}
._11{width:7.573304pt;}
._e{width:9.267650pt;}
._10{width:11.088000pt;}
._17{width:13.960533pt;}
._13{width:17.482667pt;}
._8{width:19.840000pt;}
._56{width:20.817517pt;}
._51{width:22.014166pt;}
._58{width:22.954667pt;}
._54{width:24.256029pt;}
._55{width:25.633683pt;}
._15{width:26.666667pt;}
._f{width:29.333333pt;}
._16{width:31.546109pt;}
._3{width:34.836836pt;}
._2{width:35.889566pt;}
._52{width:39.165327pt;}
._50{width:41.028309pt;}
._3c{width:42.048000pt;}
._36{width:43.648000pt;}
._a{width:50.005325pt;}
._3b{width:55.840000pt;}
._35{width:58.144000pt;}
._3a{width:59.456000pt;}
._34{width:61.440000pt;}
._33{width:62.528000pt;}
._38{width:64.032000pt;}
._9{width:64.938667pt;}
._4c{width:67.377593pt;}
._53{width:71.817725pt;}
._3f{width:76.245333pt;}
._4b{width:77.397333pt;}
._4f{width:78.410405pt;}
._1a{width:86.967467pt;}
._3e{width:96.938667pt;}
._1b{width:106.111982pt;}
._24{width:108.374383pt;}
._42{width:109.397333pt;}
._1d{width:113.280000pt;}
._1c{width:117.772800pt;}
._47{width:130.836842pt;}
._4a{width:139.647990pt;}
._21{width:145.926933pt;}
._41{width:150.314657pt;}
._4e{width:152.170176pt;}
._40{width:154.367993pt;}
._46{width:159.018660pt;}
._44{width:171.541814pt;}
._37{width:174.784000pt;}
._18{width:180.821333pt;}
._39{width:185.760000pt;}
._4d{width:192.875147pt;}
._49{width:198.633008pt;}
._1f{width:237.568000pt;}
._45{width:251.306661pt;}
._20{width:261.162657pt;}
._48{width:272.639994pt;}
._31{width:288.942400pt;}
._43{width:293.973328pt;}
._1e{width:381.994657pt;}
._29{width:397.489600pt;}
._2a{width:406.485333pt;}
._2e{width:415.914667pt;}
._28{width:423.936000pt;}
._19{width:435.327990pt;}
._27{width:440.576000pt;}
._25{width:446.464000pt;}
._2b{width:452.480000pt;}
._22{width:480.383990pt;}
._2f{width:487.040000pt;}
._30{width:494.122667pt;}
._26{width:501.205333pt;}
._2c{width:509.312000pt;}
._2d{width:543.658667pt;}
._c{width:1469.440068pt;}
.fsc{font-size:25.072533pt;}
.fsa{font-size:25.491200pt;}
.fs14{font-size:27.945066pt;}
.fs11{font-size:28.199465pt;}
.fs6{font-size:29.866667pt;}
.fs13{font-size:31.049600pt;}
.fsd{font-size:31.334933pt;}
.fse{font-size:31.336000pt;}
.fsf{font-size:31.461866pt;}
.fs9{font-size:32.000000pt;}
.fs10{font-size:36.705600pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs12{font-size:45.314667pt;}
.fs15{font-size:45.333333pt;}
.fsb{font-size:45.334933pt;}
.fs7{font-size:50.133331pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.346664pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:0.306274pt;}
.y11f{bottom:0.306722pt;}
.y18a{bottom:2.906799pt;}
.y1ed{bottom:2.907308pt;}
.y58{bottom:44.111465pt;}
.y27{bottom:44.112000pt;}
.y4{bottom:47.324666pt;}
.y1{bottom:47.604268pt;}
.y24a{bottom:79.871984pt;}
.y25{bottom:80.005333pt;}
.yf5{bottom:80.193868pt;}
.y55{bottom:80.708903pt;}
.yba{bottom:80.708923pt;}
.y7d{bottom:80.708944pt;}
.yf0{bottom:81.068903pt;}
.ycc{bottom:83.519450pt;}
.y117{bottom:84.833049pt;}
.y12e{bottom:86.832937pt;}
.y1a5{bottom:88.773733pt;}
.ya7{bottom:91.339722pt;}
.y249{bottom:92.533317pt;}
.y21b{bottom:95.708903pt;}
.y54{bottom:96.708903pt;}
.yb9{bottom:96.708923pt;}
.y7c{bottom:96.708944pt;}
.y24{bottom:96.933329pt;}
.y8a{bottom:97.061191pt;}
.yef{bottom:97.068903pt;}
.ycb{bottom:99.519450pt;}
.y116{bottom:100.833049pt;}
.yfc{bottom:102.685340pt;}
.y12d{bottom:102.832937pt;}
.y1a4{bottom:104.976400pt;}
.y248{bottom:105.194650pt;}
.ya6{bottom:107.339722pt;}
.y21a{bottom:111.708903pt;}
.y53{bottom:112.708903pt;}
.yb8{bottom:112.708923pt;}
.y7b{bottom:112.708944pt;}
.y89{bottom:113.061191pt;}
.yee{bottom:113.068903pt;}
.yca{bottom:115.519450pt;}
.y23{bottom:116.308665pt;}
.y115{bottom:116.833049pt;}
.y247{bottom:117.855984pt;}
.y12c{bottom:118.832937pt;}
.yfb{bottom:118.888007pt;}
.y1a3{bottom:121.104400pt;}
.ya5{bottom:123.339722pt;}
.y1b4{bottom:125.321452pt;}
.y219{bottom:127.708903pt;}
.y52{bottom:128.708903pt;}
.yb7{bottom:128.708923pt;}
.y7a{bottom:128.708944pt;}
.y88{bottom:129.061191pt;}
.yed{bottom:129.068903pt;}
.y246{bottom:130.517317pt;}
.yc9{bottom:131.519450pt;}
.y114{bottom:132.833049pt;}
.y12b{bottom:134.832937pt;}
.yfa{bottom:135.016007pt;}
.y1a2{bottom:137.232400pt;}
.y22{bottom:137.534005pt;}
.ya4{bottom:139.339722pt;}
.y1b3{bottom:141.321452pt;}
.y245{bottom:143.178650pt;}
.y218{bottom:143.708903pt;}
.y51{bottom:144.708903pt;}
.yb6{bottom:144.708923pt;}
.y79{bottom:144.708944pt;}
.y87{bottom:145.061191pt;}
.yec{bottom:145.068903pt;}
.yc8{bottom:147.519450pt;}
.y113{bottom:148.833049pt;}
.y21{bottom:150.195338pt;}
.y12a{bottom:150.832937pt;}
.yf9{bottom:151.154673pt;}
.y1a1{bottom:153.360400pt;}
.ya3{bottom:155.339722pt;}
.y244{bottom:155.839984pt;}
.y1b2{bottom:157.321452pt;}
.y217{bottom:159.708903pt;}
.y50{bottom:160.708903pt;}
.yb5{bottom:160.708923pt;}
.y78{bottom:160.708944pt;}
.y86{bottom:161.061191pt;}
.yeb{bottom:161.068903pt;}
.yc7{bottom:163.519450pt;}
.yf8{bottom:163.816007pt;}
.y112{bottom:164.833049pt;}
.y243{bottom:168.501317pt;}
.y1a0{bottom:169.488400pt;}
.y20{bottom:169.566005pt;}
.ya2{bottom:171.339722pt;}
.y1b1{bottom:173.321452pt;}
.y216{bottom:175.708903pt;}
.y4f{bottom:176.708903pt;}
.yb4{bottom:176.708923pt;}
.y77{bottom:176.708944pt;}
.y85{bottom:177.061191pt;}
.yea{bottom:177.068903pt;}
.yc6{bottom:179.519450pt;}
.yf7{bottom:179.944007pt;}
.y111{bottom:180.833049pt;}
.y242{bottom:181.162650pt;}
.y1f{bottom:182.227338pt;}
.y19f{bottom:185.616400pt;}
.ya1{bottom:187.339722pt;}
.y18c{bottom:188.378807pt;}
.y1b0{bottom:189.321452pt;}
.y215{bottom:191.708903pt;}
.y4e{bottom:192.708903pt;}
.yb3{bottom:192.708923pt;}
.y76{bottom:192.708944pt;}
.y84{bottom:193.061191pt;}
.ye9{bottom:193.068903pt;}
.y241{bottom:193.823984pt;}
.yc5{bottom:195.519450pt;}
.y110{bottom:196.833049pt;}
.y18b{bottom:201.040141pt;}
.y1e{bottom:201.598005pt;}
.y19e{bottom:201.744400pt;}
.ya0{bottom:203.339722pt;}
.yf6{bottom:204.840007pt;}
.y1af{bottom:205.321452pt;}
.y240{bottom:206.485317pt;}
.y214{bottom:207.708903pt;}
.y4d{bottom:208.708903pt;}
.yb2{bottom:208.708923pt;}
.y75{bottom:208.708944pt;}
.ye8{bottom:209.068903pt;}
.yf4{bottom:210.017863pt;}
.yc4{bottom:211.519450pt;}
.y10f{bottom:212.833049pt;}
.y1d{bottom:214.259338pt;}
.y19d{bottom:217.872400pt;}
.y277{bottom:218.626269pt;}
.y23f{bottom:219.146650pt;}
.y9f{bottom:219.339722pt;}
.y1ae{bottom:221.321452pt;}
.y213{bottom:223.708903pt;}
.y138{bottom:224.158671pt;}
.y4c{bottom:224.708903pt;}
.yb1{bottom:224.708923pt;}
.y74{bottom:224.708944pt;}
.y83{bottom:225.061191pt;}
.ye7{bottom:225.068903pt;}
.yc3{bottom:227.519450pt;}
.y10e{bottom:228.833049pt;}
.y276{bottom:231.296936pt;}
.y23e{bottom:231.807984pt;}
.y19c{bottom:234.000400pt;}
.y9e{bottom:235.339722pt;}
.y1ad{bottom:237.321452pt;}
.y212{bottom:239.708903pt;}
.y4b{bottom:240.708903pt;}
.y73{bottom:240.708944pt;}
.ye6{bottom:241.068903pt;}
.yb0{bottom:241.508931pt;}
.y17d{bottom:241.598796pt;}
.y195{bottom:242.751610pt;}
.yc2{bottom:243.519450pt;}
.y23d{bottom:244.469317pt;}
.y10d{bottom:244.833049pt;}
.y19b{bottom:250.128400pt;}
.y9d{bottom:251.339722pt;}
.y1c{bottom:252.281860pt;}
.y1ac{bottom:253.321452pt;}
.y17c{bottom:254.244141pt;}
.y194{bottom:255.412944pt;}
.y211{bottom:255.708903pt;}
.y4a{bottom:256.708903pt;}
.yaf{bottom:256.708923pt;}
.y72{bottom:256.708944pt;}
.ye5{bottom:257.068903pt;}
.y23c{bottom:257.130650pt;}
.y275{bottom:258.271570pt;}
.yc1{bottom:259.519450pt;}
.y10c{bottom:260.833049pt;}
.y17e{bottom:261.296143pt;}
.y19a{bottom:266.256400pt;}
.y9c{bottom:267.339722pt;}
.y193{bottom:268.074277pt;}
.y1b{bottom:268.281860pt;}
.y1ab{bottom:269.321452pt;}
.y23b{bottom:269.791984pt;}
.y274{bottom:270.932903pt;}
.y210{bottom:271.708903pt;}
.y49{bottom:272.708903pt;}
.y71{bottom:272.708944pt;}
.ye4{bottom:273.068903pt;}
.yae{bottom:273.508931pt;}
.y82{bottom:274.887858pt;}
.yc0{bottom:275.519450pt;}
.y10b{bottom:276.833049pt;}
.y192{bottom:280.735610pt;}
.y199{bottom:282.384400pt;}
.y23a{bottom:282.453317pt;}
.y9b{bottom:283.339722pt;}
.y273{bottom:283.594236pt;}
.y1a{bottom:284.281860pt;}
.y17f{bottom:284.648143pt;}
.y1aa{bottom:285.321452pt;}
.y20f{bottom:287.708903pt;}
.y48{bottom:288.708903pt;}
.yad{bottom:288.708923pt;}
.y70{bottom:288.708944pt;}
.ye3{bottom:289.068903pt;}
.y81{bottom:290.887858pt;}
.ybf{bottom:291.519450pt;}
.y10a{bottom:292.833049pt;}
.y191{bottom:293.396944pt;}
.y239{bottom:295.114650pt;}
.y272{bottom:296.255570pt;}
.y198{bottom:298.512400pt;}
.y9a{bottom:299.339722pt;}
.y1a9{bottom:301.321452pt;}
.y20e{bottom:303.708903pt;}
.y47{bottom:304.708903pt;}
.yac{bottom:304.708923pt;}
.y6f{bottom:304.708944pt;}
.ye2{bottom:305.068903pt;}
.y190{bottom:306.058277pt;}
.y80{bottom:306.887858pt;}
.ybe{bottom:307.519450pt;}
.y238{bottom:307.775984pt;}
.y180{bottom:307.992143pt;}
.y109{bottom:308.833049pt;}
.y271{bottom:308.916903pt;}
.y197{bottom:314.640400pt;}
.y99{bottom:315.339722pt;}
.y19{bottom:316.281860pt;}
.y1a8{bottom:317.321452pt;}
.y18f{bottom:318.719610pt;}
.y20d{bottom:319.708903pt;}
.y237{bottom:320.437317pt;}
.y185{bottom:320.502808pt;}
.y46{bottom:320.708903pt;}
.y6e{bottom:320.708944pt;}
.ye1{bottom:321.068903pt;}
.yab{bottom:321.508931pt;}
.y270{bottom:321.578236pt;}
.ybd{bottom:323.519450pt;}
.y108{bottom:324.833049pt;}
.y181{bottom:331.336143pt;}
.y98{bottom:331.339722pt;}
.y18e{bottom:331.380944pt;}
.y236{bottom:333.098650pt;}
.y1a7{bottom:333.321452pt;}
.y26f{bottom:334.239570pt;}
.y20c{bottom:335.708903pt;}
.y45{bottom:336.708903pt;}
.y6d{bottom:336.708944pt;}
.ye0{bottom:337.068903pt;}
.y196{bottom:338.864400pt;}
.y7f{bottom:338.886525pt;}
.ybc{bottom:339.519450pt;}
.y107{bottom:340.833049pt;}
.y18d{bottom:344.042277pt;}
.y235{bottom:345.759984pt;}
.y26e{bottom:346.900903pt;}
.y97{bottom:347.339722pt;}
.y1a6{bottom:349.321452pt;}
.y20b{bottom:351.708903pt;}
.yf2{bottom:352.397339pt;}
.y44{bottom:352.708903pt;}
.y6c{bottom:352.708944pt;}
.ydf{bottom:353.068903pt;}
.y182{bottom:354.680143pt;}
.y7e{bottom:354.887858pt;}
.y1be{bottom:355.501546pt;}
.ybb{bottom:355.519450pt;}
.y106{bottom:356.833049pt;}
.y234{bottom:358.421317pt;}
.y26d{bottom:359.562236pt;}
.y96{bottom:363.339722pt;}
.y18{bottom:364.281860pt;}
.y20a{bottom:367.708903pt;}
.y43{bottom:368.708903pt;}
.y6b{bottom:368.708944pt;}
.yde{bottom:369.068903pt;}
.yaa{bottom:369.508952pt;}
.y233{bottom:371.082650pt;}
.y189{bottom:371.496133pt;}
.y26c{bottom:372.223570pt;}
.y105{bottom:372.833049pt;}
.y183{bottom:378.032143pt;}
.y188{bottom:379.286947pt;}
.y95{bottom:379.339722pt;}
.y17{bottom:380.281860pt;}
.y209{bottom:383.708903pt;}
.y232{bottom:383.743984pt;}
.y42{bottom:384.708903pt;}
.y6a{bottom:384.708944pt;}
.y26b{bottom:384.884903pt;}
.ydd{bottom:385.068903pt;}
.y187{bottom:387.077474pt;}
.y104{bottom:388.833049pt;}
.y186{bottom:394.868123pt;}
.y94{bottom:395.339722pt;}
.y231{bottom:396.405317pt;}
.y26a{bottom:397.546236pt;}
.y208{bottom:399.708903pt;}
.y41{bottom:400.708903pt;}
.y69{bottom:400.708944pt;}
.ydc{bottom:401.068903pt;}
.y184{bottom:401.384143pt;}
.ya9{bottom:401.508952pt;}
.y103{bottom:404.833049pt;}
.y230{bottom:409.066650pt;}
.y269{bottom:410.207570pt;}
.y93{bottom:411.339722pt;}
.y1ef{bottom:412.584516pt;}
.y16{bottom:412.948527pt;}
.y207{bottom:415.708903pt;}
.y40{bottom:416.708903pt;}
.y68{bottom:416.708944pt;}
.ydb{bottom:417.068903pt;}
.y102{bottom:420.833049pt;}
.y268{bottom:422.868903pt;}
.y1ee{bottom:425.245850pt;}
.y92{bottom:427.339722pt;}
.y15{bottom:428.948527pt;}
.y165{bottom:429.694784pt;}
.y17b{bottom:431.041463pt;}
.y206{bottom:431.708903pt;}
.y3f{bottom:432.708903pt;}
.y67{bottom:432.708944pt;}
.yda{bottom:433.068903pt;}
.y267{bottom:435.530236pt;}
.y101{bottom:436.833049pt;}
.y22f{bottom:438.000000pt;}
.y91{bottom:443.339722pt;}
.y151{bottom:444.814819pt;}
.y14{bottom:444.948527pt;}
.y205{bottom:447.708903pt;}
.y266{bottom:448.191570pt;}
.y1bd{bottom:448.364014pt;}
.y3e{bottom:448.708903pt;}
.y66{bottom:448.708944pt;}
.yd9{bottom:449.068903pt;}
.y100{bottom:452.833049pt;}
.y1e1{bottom:453.875326pt;}
.y167{bottom:457.721467pt;}
.y90{bottom:459.339722pt;}
.y265{bottom:460.852903pt;}
.y13{bottom:460.948527pt;}
.y204{bottom:463.708903pt;}
.y152{bottom:464.305461pt;}
.y3d{bottom:464.708903pt;}
.y65{bottom:464.708944pt;}
.yd8{bottom:465.068903pt;}
.y168{bottom:465.453451pt;}
.ya8{bottom:465.508952pt;}
.yff{bottom:468.833049pt;}
.y1e2{bottom:469.556519pt;}
.y1d1{bottom:471.761882pt;}
.y264{bottom:473.514236pt;}
.y8f{bottom:475.339722pt;}
.y12{bottom:476.948527pt;}
.y1e3{bottom:478.107218pt;}
.y153{bottom:478.313461pt;}
.y169{bottom:479.229451pt;}
.y203{bottom:479.708903pt;}
.y1d3{bottom:480.250000pt;}
.y3c{bottom:480.708903pt;}
.y64{bottom:480.708944pt;}
.yd7{bottom:481.068903pt;}
.yfe{bottom:484.833049pt;}
.y263{bottom:486.175570pt;}
.y1e9{bottom:488.684652pt;}
.y8e{bottom:491.339722pt;}
.y1d2{bottom:491.633993pt;}
.y154{bottom:492.321461pt;}
.y11{bottom:492.948527pt;}
.y16a{bottom:493.005451pt;}
.y202{bottom:495.708903pt;}
.y3b{bottom:496.708903pt;}
.y63{bottom:496.708944pt;}
.y1d4{bottom:496.846133pt;}
.yd6{bottom:497.068903pt;}
.y262{bottom:498.836903pt;}
.yfd{bottom:500.833049pt;}
.y22e{bottom:501.450236pt;}
.y1e4{bottom:506.249857pt;}
.y155{bottom:506.329461pt;}
.y16b{bottom:506.781451pt;}
.y8d{bottom:507.339722pt;}
.y10{bottom:508.948527pt;}
.y261{bottom:511.498236pt;}
.y201{bottom:511.708903pt;}
.y3a{bottom:512.708903pt;}
.y62{bottom:512.708944pt;}
.yd5{bottom:513.068903pt;}
.y1d5{bottom:513.450133pt;}
.y22d{bottom:514.111570pt;}
.y156{bottom:520.337461pt;}
.y16c{bottom:520.557451pt;}
.y15d{bottom:523.133464pt;}
.y173{bottom:523.314819pt;}
.y260{bottom:524.159570pt;}
.yf{bottom:524.948527pt;}
.y22c{bottom:526.772903pt;}
.y200{bottom:527.708903pt;}
.y39{bottom:528.708903pt;}
.y61{bottom:528.708944pt;}
.yd4{bottom:529.068903pt;}
.y1d6{bottom:530.046266pt;}
.y16d{bottom:534.333451pt;}
.y157{bottom:534.345461pt;}
.y1e5{bottom:534.392496pt;}
.y25f{bottom:536.820903pt;}
.y22b{bottom:539.434236pt;}
.ye{bottom:540.948527pt;}
.y1ff{bottom:543.708903pt;}
.y38{bottom:544.708903pt;}
.y60{bottom:544.708944pt;}
.yd3{bottom:545.068903pt;}
.y1d7{bottom:546.642400pt;}
.y129{bottom:546.745339pt;}
.y16e{bottom:548.109451pt;}
.y158{bottom:548.353461pt;}
.y25e{bottom:549.482236pt;}
.y17a{bottom:550.709595pt;}
.y164{bottom:550.985474pt;}
.y22a{bottom:552.095570pt;}
.yd{bottom:556.948527pt;}
.y179{bottom:558.394816pt;}
.y163{bottom:558.798950pt;}
.y1fe{bottom:559.708903pt;}
.y37{bottom:560.708903pt;}
.y5f{bottom:560.708944pt;}
.yd2{bottom:561.068903pt;}
.y16f{bottom:561.885451pt;}
.y25d{bottom:562.143570pt;}
.y159{bottom:562.361461pt;}
.y1e6{bottom:562.535135pt;}
.y128{bottom:562.948005pt;}
.y1d8{bottom:563.238533pt;}
.y229{bottom:564.756903pt;}
.y178{bottom:566.080282pt;}
.y162{bottom:566.612142pt;}
.yc{bottom:572.948527pt;}
.y177{bottom:573.765584pt;}
.y161{bottom:574.425618pt;}
.y25c{bottom:574.804903pt;}
.y170{bottom:575.661451pt;}
.y1fd{bottom:575.708903pt;}
.y15a{bottom:576.369461pt;}
.y36{bottom:576.708903pt;}
.y5e{bottom:576.708944pt;}
.yd1{bottom:577.068903pt;}
.y228{bottom:577.418236pt;}
.y127{bottom:579.076005pt;}
.y139{bottom:579.686951pt;}
.y1d9{bottom:579.952649pt;}
.y176{bottom:581.449585pt;}
.y160{bottom:582.237467pt;}
.y1e0{bottom:586.782293pt;}
.y25b{bottom:587.466236pt;}
.yb{bottom:588.948527pt;}
.y175{bottom:589.134928pt;}
.y171{bottom:589.437451pt;}
.y15f{bottom:590.050781pt;}
.y227{bottom:590.079570pt;}
.y15b{bottom:590.377461pt;}
.y1e7{bottom:590.677774pt;}
.y1fc{bottom:591.708903pt;}
.y35{bottom:592.708903pt;}
.y5d{bottom:592.708944pt;}
.yd0{bottom:593.068903pt;}
.y1ec{bottom:593.267872pt;}
.y126{bottom:595.204005pt;}
.y1df{bottom:595.515126pt;}
.y1dc{bottom:596.332520pt;}
.y1da{bottom:596.501591pt;}
.y174{bottom:596.820272pt;}
.y15e{bottom:597.865479pt;}
.y25a{bottom:600.127570pt;}
.y1eb{bottom:602.080204pt;}
.y226{bottom:602.740903pt;}
.y172{bottom:603.213451pt;}
.y1de{bottom:604.157138pt;}
.y15c{bottom:604.385461pt;}
.ya{bottom:604.948527pt;}
.y1fb{bottom:607.708903pt;}
.y34{bottom:608.708903pt;}
.y5c{bottom:608.708944pt;}
.ycf{bottom:609.068903pt;}
.y1ea{bottom:610.892537pt;}
.y125{bottom:611.332005pt;}
.y1dd{bottom:612.708328pt;}
.y259{bottom:612.788903pt;}
.y1db{bottom:613.050532pt;}
.y1e8{bottom:618.820413pt;}
.y1fa{bottom:623.708903pt;}
.y33{bottom:624.708903pt;}
.y5b{bottom:624.708944pt;}
.yce{bottom:625.068903pt;}
.y258{bottom:625.450236pt;}
.y124{bottom:627.460005pt;}
.y225{bottom:628.746236pt;}
.y13f{bottom:629.150798pt;}
.y150{bottom:629.528117pt;}
.y257{bottom:638.111570pt;}
.y1f9{bottom:639.708903pt;}
.y32{bottom:640.708903pt;}
.y5a{bottom:640.708944pt;}
.y1c3{bottom:642.103353pt;}
.y1d0{bottom:642.739339pt;}
.y123{bottom:643.588005pt;}
.y12f{bottom:644.038818pt;}
.y9{bottom:648.053063pt;}
.y256{bottom:650.772903pt;}
.y224{bottom:654.751570pt;}
.y1f8{bottom:655.708903pt;}
.y166{bottom:656.329467pt;}
.y31{bottom:656.708903pt;}
.yf1{bottom:656.708944pt;}
.ycd{bottom:657.068903pt;}
.y1b5{bottom:659.252686pt;}
.y122{bottom:659.716005pt;}
.y1c4{bottom:659.869873pt;}
.y8{bottom:660.714396pt;}
.y140{bottom:661.116252pt;}
.y255{bottom:663.434236pt;}
.y130{bottom:663.761475pt;}
.y1b6{bottom:667.053996pt;}
.y223{bottom:667.412903pt;}
.y1c5{bottom:667.607218pt;}
.y1f7{bottom:671.708903pt;}
.y30{bottom:672.708903pt;}
.y59{bottom:672.708944pt;}
.y121{bottom:675.844005pt;}
.y254{bottom:676.095570pt;}
.y1bf{bottom:678.539876pt;}
.y141{bottom:679.324252pt;}
.y222{bottom:680.074236pt;}
.y1cb{bottom:680.108276pt;}
.y131{bottom:681.273474pt;}
.y1b7{bottom:686.599679pt;}
.y1f6{bottom:687.708903pt;}
.y2f{bottom:688.708903pt;}
.y253{bottom:688.756903pt;}
.y120{bottom:691.972005pt;}
.y221{bottom:692.735570pt;}
.y1c6{bottom:694.161033pt;}
.y7{bottom:694.357503pt;}
.y142{bottom:694.892252pt;}
.y132{bottom:698.785473pt;}
.y252{bottom:701.418236pt;}
.y1f5{bottom:703.708903pt;}
.y2e{bottom:704.708903pt;}
.y220{bottom:705.396903pt;}
.y1b8{bottom:706.145362pt;}
.y11e{bottom:707.793294pt;}
.y11d{bottom:708.123087pt;}
.y143{bottom:710.460252pt;}
.y251{bottom:714.079570pt;}
.y133{bottom:716.297472pt;}
.y21f{bottom:718.058236pt;}
.y1f4{bottom:719.708903pt;}
.y2d{bottom:720.708903pt;}
.y1c7{bottom:720.714848pt;}
.y13a{bottom:722.587728pt;}
.y149{bottom:722.589030pt;}
.y11c{bottom:724.251087pt;}
.y1b9{bottom:725.691046pt;}
.y144{bottom:726.028252pt;}
.y250{bottom:726.740903pt;}
.y21e{bottom:730.719570pt;}
.y6{bottom:732.351581pt;}
.y134{bottom:733.809471pt;}
.y1f3{bottom:735.708903pt;}
.y2c{bottom:736.708903pt;}
.y24f{bottom:739.402236pt;}
.y11b{bottom:740.379087pt;}
.y145{bottom:741.596252pt;}
.y21d{bottom:743.380903pt;}
.y1ba{bottom:745.236729pt;}
.y1c8{bottom:747.276528pt;}
.y135{bottom:751.321470pt;}
.y1f2{bottom:751.708903pt;}
.y24e{bottom:752.063570pt;}
.y5{bottom:752.354248pt;}
.y2b{bottom:752.708903pt;}
.y21c{bottom:756.042236pt;}
.y11a{bottom:756.507087pt;}
.y146{bottom:757.156252pt;}
.y14f{bottom:758.338542pt;}
.y24d{bottom:764.724903pt;}
.y1bb{bottom:764.782412pt;}
.y14e{bottom:766.135905pt;}
.y1f1{bottom:767.708903pt;}
.y2a{bottom:768.708903pt;}
.y136{bottom:768.833469pt;}
.y119{bottom:772.635087pt;}
.y147{bottom:772.724252pt;}
.y1cf{bottom:773.270743pt;}
.y1c9{bottom:773.830343pt;}
.y14d{bottom:773.934245pt;}
.y13e{bottom:773.960286pt;}
.y24c{bottom:777.386236pt;}
.y14c{bottom:781.731608pt;}
.y13d{bottom:781.750570pt;}
.y1ce{bottom:782.003576pt;}
.y1c2{bottom:782.214771pt;}
.y1bc{bottom:784.328095pt;}
.y29{bottom:784.708903pt;}
.y137{bottom:786.345469pt;}
.y148{bottom:788.292252pt;}
.y14b{bottom:789.531169pt;}
.y13c{bottom:789.541504pt;}
.y24b{bottom:790.047570pt;}
.y1cd{bottom:790.645587pt;}
.y1c1{bottom:791.027104pt;}
.y14a{bottom:797.328776pt;}
.y13b{bottom:797.332682pt;}
.y1cc{bottom:799.196777pt;}
.y1f0{bottom:799.708903pt;}
.y1c0{bottom:799.839437pt;}
.y1ca{bottom:800.384157pt;}
.y28{bottom:800.708903pt;}
.y118{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y26{bottom:835.262533pt;}
.y8c{bottom:835.654126pt;}
.y57{bottom:835.654289pt;}
.y2{bottom:835.654297pt;}
.y8b{bottom:836.112793pt;}
.y56{bottom:836.112956pt;}
.hf{height:7.333333pt;}
.h11{height:7.466667pt;}
.h18{height:18.252804pt;}
.h16{height:18.557594pt;}
.h21{height:20.344008pt;}
.h1f{height:20.529211pt;}
.h20{height:22.604109pt;}
.h19{height:22.811831pt;}
.h1b{height:22.812608pt;}
.h1c{height:22.904238pt;}
.h14{height:23.296000pt;}
.h1e{height:26.721677pt;}
.h13{height:27.178667pt;}
.hb{height:27.716267pt;}
.h10{height:28.220385pt;}
.h12{height:28.842667pt;}
.h2{height:30.080000pt;}
.h17{height:37.013333pt;}
.h3{height:37.376000pt;}
.ha{height:39.594667pt;}
.h22{height:42.069333pt;}
.h1a{height:43.648000pt;}
.he{height:46.523731pt;}
.hc{height:47.680000pt;}
.h4{height:48.766452pt;}
.h8{height:49.493333pt;}
.h7{height:52.746667pt;}
.hd{height:54.560000pt;}
.h6{height:57.658667pt;}
.h9{height:58.021333pt;}
.h5{height:61.429333pt;}
.h1d{height:362.345337pt;}
.h15{height:586.550659pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w2{width:27.266667pt;}
.w3{width:50.853333pt;}
.w4{width:449.763997pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x13{left:16.543070pt;}
.x33{left:18.659602pt;}
.x2{left:68.031469pt;}
.x8{left:68.976400pt;}
.x3{left:69.996933pt;}
.x1{left:78.425201pt;}
.x14{left:79.724131pt;}
.x7{left:83.151469pt;}
.x12{left:84.574937pt;}
.x9{left:85.606262pt;}
.x4{left:86.932800pt;}
.x11{left:89.022937pt;}
.x20{left:90.534666pt;}
.x39{left:91.893738pt;}
.x10{left:93.470937pt;}
.x1f{left:94.982666pt;}
.x38{left:100.640137pt;}
.x23{left:105.396128pt;}
.x37{left:106.978129pt;}
.x24{left:109.004132pt;}
.x15{left:110.686401pt;}
.x21{left:113.526937pt;}
.x3a{left:124.409729pt;}
.x16{left:128.106405pt;}
.x22{left:139.532796pt;}
.x3c{left:145.884928pt;}
.x34{left:147.757333pt;}
.xf{left:173.249593pt;}
.x1e{left:177.580261pt;}
.x31{left:182.425746pt;}
.x2f{left:193.032796pt;}
.x3b{left:194.740473pt;}
.x2e{left:199.397742pt;}
.x2d{left:208.293742pt;}
.x2b{left:220.795064pt;}
.xc{left:222.996802pt;}
.x30{left:225.703064pt;}
.x1b{left:240.776393pt;}
.x32{left:274.030802pt;}
.x2c{left:287.124410pt;}
.x40{left:290.206813pt;}
.xa{left:301.246663pt;}
.x28{left:306.833740pt;}
.x1a{left:308.804403pt;}
.x19{left:312.116403pt;}
.x27{left:313.427059pt;}
.x18{left:315.988403pt;}
.x3f{left:317.046926pt;}
.x3e{left:321.420125pt;}
.x26{left:322.323059pt;}
.x35{left:324.764140pt;}
.xb{left:328.513733pt;}
.x1c{left:334.736410pt;}
.x3d{left:335.792133pt;}
.x29{left:340.619059pt;}
.x1d{left:356.034953pt;}
.x2a{left:382.685750pt;}
.x17{left:397.300415pt;}
.xe{left:399.209351pt;}
.x25{left:403.584391pt;}
.x36{left:420.640137pt;}
.xd{left:462.715453pt;}
.x6{left:463.672526pt;}
.x5{left:492.462402pt;}
}




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