
    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_01503a2c9861f7dccd1149b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_89445dee913c782ec8fce924.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.111816;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_8a51154064c267378be2e341.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_aa2449cd6838c5436bf514e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_039dab045d01d77369c94482.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_200daf851cc665718a029d9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.154000;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_8f7ffb1d31fae385ba8691ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981000;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_a16869247717f9fb05d207c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.844000;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_aa2449cd6838c5436bf514e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_039dab045d01d77369c94482.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_200daf851cc665718a029d9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.154000;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_8f7ffb1d31fae385ba8691ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.981000;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_a16869247717f9fb05d207c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844000;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_aa2449cd6838c5436bf514e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;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_039dab045d01d77369c94482.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;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_200daf851cc665718a029d9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.154000;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_8f7ffb1d31fae385ba8691ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.981000;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_a16869247717f9fb05d207c6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.844000;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_aa2449cd6838c5436bf514e9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940000;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_039dab045d01d77369c94482.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.921000;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_200daf851cc665718a029d9d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.154000;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_8f7ffb1d31fae385ba8691ba.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.981000;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_a16869247717f9fb05d207c6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.844000;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_aa2449cd6838c5436bf514e9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940000;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_039dab045d01d77369c94482.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.921000;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_200daf851cc665718a029d9d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.154000;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_8f7ffb1d31fae385ba8691ba.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.981000;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:ff1c;src:url('chunks/assets/font_a16869247717f9fb05d207c6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.844000;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:ff1d;src:url('chunks/assets/font_aa2449cd6838c5436bf514e9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;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:ff1e;src:url('chunks/assets/font_039dab045d01d77369c94482.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.921000;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:ff1f;src:url('chunks/assets/font_200daf851cc665718a029d9d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.154000;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:ff20;src:url('chunks/assets/font_8f7ffb1d31fae385ba8691ba.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.981000;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:ff21;src:url('chunks/assets/font_a16869247717f9fb05d207c6.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.217391,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.217391,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.217391,0.250000,0.000000,0,0);}
.m3{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);}
.m5{transform:matrix(0.210312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210312,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217391,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.223724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223724,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.223726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223726,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.223728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223728,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240658,-0.067703,0.067703,0.240658,0,0);-ms-transform:matrix(0.240658,-0.067703,0.067703,0.240658,0,0);-webkit-transform:matrix(0.240658,-0.067703,0.067703,0.240658,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.096600px;}
.ls7{letter-spacing:0.289800px;}
.ls5{letter-spacing:0.531300px;}
.ls1{letter-spacing:0.759000px;}
.ls12{letter-spacing:1.157022px;}
.lsd{letter-spacing:1.222830px;}
.lsf{letter-spacing:1.242000px;}
.ls6{letter-spacing:1.304100px;}
.ls13{letter-spacing:1.349874px;}
.ls8{letter-spacing:1.449000px;}
.ls10{letter-spacing:1.656000px;}
.lsc{letter-spacing:2.038044px;}
.ls3{letter-spacing:2.208000px;}
.lsb{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.318400px;}
.ls11{letter-spacing:2.892582px;}
.lse{letter-spacing:3.105000px;}
.ls9{letter-spacing:3.284400px;}
.ls2{letter-spacing:4.140000px;}
.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;}
}
.ws8{word-spacing:-42.000000px;}
.ws9{word-spacing:-25.271746px;}
.ws1{word-spacing:-23.018400px;}
.ws2{word-spacing:-12.461400px;}
.ws3{word-spacing:-3.421811px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:13.189620px;}
.ws5{word-spacing:16.399826px;}
.ws6{word-spacing:16.604824px;}
.ws4{word-spacing:56.579401px;}
._1d{margin-left:-402.744084px;}
._15{margin-left:-294.376884px;}
._17{margin-left:-261.577231px;}
._21{margin-left:-44.940000px;}
._20{margin-left:-33.859111px;}
._22{margin-left:-14.734950px;}
._23{margin-left:-8.156835px;}
._1{margin-left:-5.071500px;}
._24{margin-left:-3.893670px;}
._0{margin-left:-2.710665px;}
._3{margin-left:-1.153335px;}
._6{width:1.105035px;}
._5{width:2.179365px;}
._4{width:3.477600px;}
._2{width:4.494315px;}
._9{width:5.646270px;}
._8{width:6.665400px;}
._f{width:7.736625px;}
._7{width:8.790600px;}
._d{width:10.143000px;}
._11{width:11.157300px;}
._12{width:12.606300px;}
._e{width:13.862100px;}
._a{width:14.876400px;}
._13{width:15.944865px;}
._b{width:17.582580px;}
._c{width:18.737640px;}
._1a{width:21.046444px;}
._10{width:31.008600px;}
._19{width:34.439635px;}
._1f{width:36.899609px;}
._1b{width:47.627829px;}
._18{width:54.392758px;}
._1c{width:58.894390px;}
._16{width:65.667638px;}
._14{width:67.034290px;}
._1e{width:94.162336px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(27,19,16);}
.fc5{color:rgb(156,158,159);}
.fc4{color:rgb(226,0,32);}
.fc3{color:rgb(255,113,0);}
.fc2{color:transparent;}
.fc8{color:rgb(131,131,131);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:10.582800px;}
.fse{font-size:11.758800px;}
.fsd{font-size:28.220400px;}
.fs17{font-size:38.567400px;}
.fs9{font-size:39.000000px;}
.fs11{font-size:39.968545px;}
.fs15{font-size:40.761000px;}
.fs4{font-size:41.400000px;}
.fs2{font-size:42.000000px;}
.fs13{font-size:44.850000px;}
.fs18{font-size:44.995800px;}
.fsa{font-size:45.000000px;}
.fs3{font-size:48.300000px;}
.fs7{font-size:55.200000px;}
.fs1{font-size:60.237000px;}
.fs10{font-size:68.332610px;}
.fs5{font-size:75.900000px;}
.fs6{font-size:82.800000px;}
.fs16{font-size:96.419400px;}
.fs14{font-size:101.902200px;}
.fs8{font-size:103.500000px;}
.fsb{font-size:107.743200px;}
.fsc{font-size:115.280400px;}
.fs12{font-size:124.200000px;}
.fs0{font-size:200.100000px;}
.y0{bottom:0.000000px;}
.y26{bottom:19.660200px;}
.y41{bottom:19.660350px;}
.y44{bottom:19.884450px;}
.y4{bottom:19.884600px;}
.y2c{bottom:19.884750px;}
.y45{bottom:20.217750px;}
.y46{bottom:20.229900px;}
.y42{bottom:20.230200px;}
.yc2{bottom:20.454300px;}
.y15b{bottom:26.863359px;}
.yc5{bottom:28.752600px;}
.ye6{bottom:29.763000px;}
.ye5{bottom:30.414000px;}
.y19f{bottom:31.822050px;}
.y3f{bottom:34.753200px;}
.y108{bottom:40.641180px;}
.y15a{bottom:41.629031px;}
.y107{bottom:45.232991px;}
.y6b{bottom:46.756425px;}
.y19e{bottom:46.819200px;}
.y25{bottom:46.913250px;}
.y106{bottom:54.472469px;}
.y159{bottom:56.394704px;}
.y183{bottom:58.819200px;}
.y105{bottom:59.064280px;}
.y19d{bottom:61.816350px;}
.y104{bottom:63.682549px;}
.y6a{bottom:64.760250px;}
.y24{bottom:64.913250px;}
.y158{bottom:71.160376px;}
.y103{bottom:72.922026px;}
.y182{bottom:73.816350px;}
.y3e{bottom:75.253200px;}
.y19c{bottom:76.813500px;}
.y102{bottom:77.513837px;}
.y101{bottom:82.132106px;}
.y69{bottom:82.764075px;}
.y157{bottom:85.926048px;}
.y181{bottom:88.813500px;}
.y100{bottom:91.371583px;}
.y3d{bottom:91.753200px;}
.yff{bottom:95.963394px;}
.yfe{bottom:100.581663px;}
.y156{bottom:100.691720px;}
.y68{bottom:100.767900px;}
.yb9{bottom:100.913250px;}
.y180{bottom:103.810650px;}
.y19b{bottom:106.807800px;}
.y164{bottom:106.942050px;}
.yfd{bottom:109.794683px;}
.y149{bottom:112.135875px;}
.yfc{bottom:114.386494px;}
.y155{bottom:115.457392px;}
.y67{bottom:118.771725px;}
.y17f{bottom:118.807800px;}
.yb8{bottom:118.913250px;}
.yfb{bottom:119.004763px;}
.y19a{bottom:121.804950px;}
.y163{bottom:124.937250px;}
.y148{bottom:127.138200px;}
.yfa{bottom:128.244240px;}
.y154{bottom:130.223065px;}
.yf9{bottom:132.836051px;}
.y17e{bottom:133.804950px;}
.y3c{bottom:135.253200px;}
.y66{bottom:136.775550px;}
.y199{bottom:136.802100px;}
.y23{bottom:136.848000px;}
.y5f{bottom:136.913250px;}
.yf8{bottom:137.427863px;}
.yf7{bottom:142.046132px;}
.y147{bottom:142.140525px;}
.y162{bottom:142.932450px;}
.y153{bottom:144.988737px;}
.y17d{bottom:148.802100px;}
.yf6{bottom:151.285609px;}
.y3b{bottom:151.753200px;}
.y198{bottom:151.799250px;}
.y65{bottom:154.779375px;}
.y22{bottom:154.851825px;}
.yb7{bottom:154.913250px;}
.yf5{bottom:155.877420px;}
.y146{bottom:157.142850px;}
.y152{bottom:159.754409px;}
.yf4{bottom:160.469231px;}
.y161{bottom:160.927650px;}
.y17c{bottom:163.799250px;}
.yf3{bottom:165.061043px;}
.yf2{bottom:169.652854px;}
.y145{bottom:172.145175px;}
.y5e{bottom:172.783200px;}
.yf1{bottom:174.271123px;}
.y151{bottom:174.520081px;}
.y17b{bottom:178.796400px;}
.y160{bottom:178.922850px;}
.y197{bottom:181.793550px;}
.yf0{bottom:183.510600px;}
.y144{bottom:187.147500px;}
.yef{bottom:188.013705px;}
.y150{bottom:189.285754px;}
.y5d{bottom:190.787025px;}
.y21{bottom:190.847400px;}
.yb6{bottom:190.913250px;}
.yee{bottom:192.170100px;}
.y17a{bottom:193.793550px;}
.y3a{bottom:195.253200px;}
.y196{bottom:196.790700px;}
.y15f{bottom:196.918050px;}
.yed{bottom:201.040351px;}
.y143{bottom:202.149825px;}
.y14f{bottom:204.051426px;}
.yec{bottom:205.658620px;}
.y179{bottom:208.790700px;}
.y5c{bottom:208.790850px;}
.y20{bottom:208.851225px;}
.yeb{bottom:210.276889px;}
.y39{bottom:211.753200px;}
.y195{bottom:211.787850px;}
.yea{bottom:214.868700px;}
.y15e{bottom:214.913250px;}
.y142{bottom:217.152150px;}
.yc1{bottom:217.913250px;}
.y14e{bottom:218.817098px;}
.y178{bottom:223.787850px;}
.y194{bottom:226.787850px;}
.y5b{bottom:226.794675px;}
.yb5{bottom:226.913250px;}
.y141{bottom:232.154475px;}
.yc0{bottom:232.909500px;}
.y14d{bottom:233.582770px;}
.y9f{bottom:240.065100px;}
.ye4{bottom:244.665675px;}
.y5a{bottom:244.798500px;}
.y1f{bottom:244.846800px;}
.y140{bottom:247.156800px;}
.y15d{bottom:253.787850px;}
.y38{bottom:255.253200px;}
.y9e{bottom:258.068925px;}
.y117{bottom:260.010413px;}
.y14c{bottom:260.464650px;}
.y13f{bottom:262.159125px;}
.y59{bottom:262.802325px;}
.y1e{bottom:262.850625px;}
.yb4{bottom:262.913250px;}
.y15c{bottom:264.587850px;}
.y116{bottom:264.602225px;}
.y14b{bottom:271.098000px;}
.y37{bottom:271.753200px;}
.y115{bottom:273.788787px;}
.y9d{bottom:276.072750px;}
.y13e{bottom:277.161450px;}
.y114{bottom:278.380598px;}
.ye3{bottom:280.661250px;}
.y58{bottom:280.806150px;}
.yb3{bottom:280.913250px;}
.y14a{bottom:287.305800px;}
.y113{bottom:287.567161px;}
.y112{bottom:292.158972px;}
.y13d{bottom:292.163775px;}
.y9c{bottom:294.076575px;}
.y57{bottom:298.809975px;}
.y1d{bottom:298.846200px;}
.y111{bottom:301.345535px;}
.y110{bottom:305.963804px;}
.y13c{bottom:307.166100px;}
.y10f{bottom:310.555615px;}
.y9b{bottom:312.080400px;}
.y36{bottom:313.753200px;}
.ye2{bottom:316.656825px;}
.y56{bottom:316.813800px;}
.y1c{bottom:316.850025px;}
.yb2{bottom:316.913250px;}
.y10e{bottom:319.768635px;}
.y13b{bottom:322.168425px;}
.y10d{bottom:324.386903px;}
.y9a{bottom:330.084225px;}
.y35{bottom:330.253200px;}
.y10c{bottom:333.573466px;}
.ye1{bottom:334.660650px;}
.y55{bottom:334.817625px;}
.yb1{bottom:334.913250px;}
.y13a{bottom:337.170750px;}
.y10b{bottom:338.191735px;}
.y10a{bottom:347.404754px;}
.y99{bottom:348.088050px;}
.y109{bottom:351.996566px;}
.y139{bottom:352.173075px;}
.ye0{bottom:352.664475px;}
.y54{bottom:352.821450px;}
.y1b{bottom:352.845600px;}
.ybf{bottom:352.913250px;}
.y98{bottom:366.091875px;}
.y138{bottom:367.175400px;}
.ydf{bottom:370.668300px;}
.y53{bottom:370.825275px;}
.y1a{bottom:370.849425px;}
.yb0{bottom:370.913250px;}
.y34{bottom:372.253200px;}
.y137{bottom:382.177725px;}
.y3{bottom:382.220700px;}
.y97{bottom:384.095700px;}
.yde{bottom:388.672125px;}
.y33{bottom:388.753200px;}
.y52{bottom:388.829100px;}
.y19{bottom:388.853250px;}
.ybe{bottom:388.913250px;}
.y136{bottom:397.180050px;}
.y96{bottom:402.099525px;}
.ydd{bottom:406.675950px;}
.y51{bottom:406.832925px;}
.y18{bottom:406.857075px;}
.yaf{bottom:406.913250px;}
.y135{bottom:412.182375px;}
.y16c{bottom:412.937250px;}
.y95{bottom:420.103350px;}
.ydc{bottom:424.679775px;}
.y50{bottom:424.836750px;}
.y17{bottom:424.860900px;}
.ybd{bottom:424.913250px;}
.y134{bottom:427.184700px;}
.y32{bottom:429.253200px;}
.y16b{bottom:430.932450px;}
.y94{bottom:438.107175px;}
.ydb{bottom:442.683600px;}
.y4f{bottom:442.840575px;}
.y16{bottom:442.864725px;}
.yae{bottom:442.913250px;}
.y31{bottom:445.753200px;}
.y16a{bottom:448.927650px;}
.y93{bottom:456.111000px;}
.y7f{bottom:456.183450px;}
.y133{bottom:457.189350px;}
.yda{bottom:460.687425px;}
.y4e{bottom:460.844400px;}
.y15{bottom:460.868550px;}
.y169{bottom:466.922850px;}
.y43{bottom:467.012400px;}
.y132{bottom:472.191675px;}
.y92{bottom:474.114825px;}
.y7e{bottom:474.187275px;}
.yd9{bottom:478.691250px;}
.y4d{bottom:478.848225px;}
.yad{bottom:478.913250px;}
.y168{bottom:484.918050px;}
.y131{bottom:487.194000px;}
.y30{bottom:490.753200px;}
.y91{bottom:492.118650px;}
.y7d{bottom:492.191100px;}
.yd8{bottom:496.695075px;}
.y4c{bottom:496.852050px;}
.y14{bottom:496.864125px;}
.yac{bottom:496.913250px;}
.y167{bottom:502.913250px;}
.y130{bottom:503.698800px;}
.y2f{bottom:507.253200px;}
.y90{bottom:510.122475px;}
.y7c{bottom:510.194925px;}
.yd7{bottom:514.698900px;}
.y4b{bottom:514.855875px;}
.y13{bottom:514.867950px;}
.yab{bottom:514.913250px;}
.y11a{bottom:515.284246px;}
.y12f{bottom:520.203600px;}
.y11b{bottom:520.463550px;}
.y8f{bottom:528.126300px;}
.y7b{bottom:528.198750px;}
.yd6{bottom:532.702725px;}
.y4a{bottom:532.859700px;}
.y12{bottom:532.871775px;}
.y12e{bottom:536.708400px;}
.y119{bottom:538.577455px;}
.y8e{bottom:546.130125px;}
.y7a{bottom:546.202575px;}
.y166{bottom:547.825650px;}
.y2e{bottom:549.253200px;}
.yd3{bottom:550.706550px;}
.y49{bottom:550.863525px;}
.y11{bottom:550.875600px;}
.yaa{bottom:550.913250px;}
.y12d{bottom:553.213200px;}
.y118{bottom:561.824400px;}
.y165{bottom:562.225650px;}
.y8d{bottom:564.133950px;}
.y79{bottom:564.206400px;}
.y2d{bottom:565.753200px;}
.yd2{bottom:568.710375px;}
.y48{bottom:568.867350px;}
.y10{bottom:568.879425px;}
.ybc{bottom:568.913250px;}
.y12c{bottom:569.718000px;}
.y8c{bottom:582.137775px;}
.y78{bottom:582.210225px;}
.y12b{bottom:586.222800px;}
.yd1{bottom:586.714200px;}
.y47{bottom:586.871175px;}
.ya9{bottom:586.913250px;}
.y8b{bottom:600.141600px;}
.y77{bottom:600.214050px;}
.y12a{bottom:602.727600px;}
.yd0{bottom:604.718025px;}
.yf{bottom:604.875000px;}
.ya8{bottom:604.913250px;}
.y193{bottom:605.605180px;}
.y8a{bottom:618.145425px;}
.y76{bottom:618.217875px;}
.y129{bottom:619.232400px;}
.ycf{bottom:622.721850px;}
.ye{bottom:622.878825px;}
.ybb{bottom:622.913250px;}
.y192{bottom:623.772235px;}
.y177{bottom:628.890000px;}
.y128{bottom:635.737200px;}
.y89{bottom:636.149250px;}
.y75{bottom:636.221700px;}
.y191{bottom:636.348561px;}
.yce{bottom:640.725675px;}
.yd{bottom:640.882650px;}
.ya7{bottom:640.913250px;}
.y176{bottom:646.893825px;}
.y190{bottom:648.924887px;}
.y127{bottom:652.242000px;}
.y88{bottom:654.153075px;}
.y74{bottom:654.225525px;}
.y2a{bottom:657.952575px;}
.ycd{bottom:658.729500px;}
.yc{bottom:658.886475px;}
.ya6{bottom:658.913250px;}
.y18f{bottom:661.501213px;}
.y175{bottom:664.897650px;}
.y11d{bottom:666.884100px;}
.y11c{bottom:667.068300px;}
.ye9{bottom:667.105800px;}
.y126{bottom:668.746800px;}
.y87{bottom:672.156900px;}
.y73{bottom:672.229350px;}
.y18e{bottom:674.077539px;}
.ycc{bottom:676.733325px;}
.yb{bottom:676.890300px;}
.ya5{bottom:676.913250px;}
.y29{bottom:681.955950px;}
.y174{bottom:682.901475px;}
.y125{bottom:685.251600px;}
.y18d{bottom:686.653865px;}
.y86{bottom:690.160725px;}
.y72{bottom:690.233175px;}
.ycb{bottom:694.737150px;}
.ya{bottom:694.894125px;}
.y173{bottom:700.905300px;}
.y124{bottom:701.756400px;}
.y2b{bottom:701.852250px;}
.y85{bottom:708.164550px;}
.y71{bottom:708.237000px;}
.y18c{bottom:711.806517px;}
.yca{bottom:712.740975px;}
.y9{bottom:712.897950px;}
.ya4{bottom:712.913250px;}
.y123{bottom:718.261200px;}
.y172{bottom:718.909125px;}
.y84{bottom:726.168375px;}
.y70{bottom:726.240825px;}
.yc9{bottom:730.744800px;}
.y8{bottom:730.901775px;}
.ya3{bottom:730.913250px;}
.y122{bottom:734.766000px;}
.y171{bottom:736.912950px;}
.y18b{bottom:736.959169px;}
.y28{bottom:739.438725px;}
.y83{bottom:744.172200px;}
.y6f{bottom:744.244650px;}
.yc8{bottom:748.748625px;}
.y7{bottom:748.905600px;}
.yba{bottom:748.913250px;}
.y18a{bottom:749.535496px;}
.y121{bottom:751.270800px;}
.y170{bottom:754.916775px;}
.y189{bottom:762.111822px;}
.y82{bottom:762.176025px;}
.y6e{bottom:762.248475px;}
.yc7{bottom:766.752450px;}
.y6{bottom:766.909425px;}
.ya2{bottom:766.913250px;}
.y120{bottom:767.775600px;}
.y2{bottom:772.521375px;}
.y188{bottom:774.688148px;}
.y81{bottom:780.179850px;}
.y6d{bottom:780.252300px;}
.yc6{bottom:784.756275px;}
.y5{bottom:784.913250px;}
.y16f{bottom:786.299700px;}
.y187{bottom:787.264474px;}
.y27{bottom:791.614800px;}
.y80{bottom:798.183675px;}
.y6c{bottom:798.256125px;}
.y186{bottom:799.840800px;}
.y11f{bottom:800.775600px;}
.yd5{bottom:802.356225px;}
.y40{bottom:814.782600px;}
.ya1{bottom:816.280650px;}
.yc4{bottom:818.761050px;}
.y16e{bottom:819.299700px;}
.ye7{bottom:823.668900px;}
.y1{bottom:824.697450px;}
.y11e{bottom:825.133800px;}
.y185{bottom:827.788350px;}
.ya0{bottom:828.280650px;}
.y64{bottom:829.342350px;}
.yd4{bottom:829.343850px;}
.y16d{bottom:830.099700px;}
.yc3{bottom:830.761050px;}
.y63{bottom:830.843100px;}
.y62{bottom:832.343850px;}
.ye8{bottom:832.646100px;}
.y60{bottom:836.099700px;}
.y184{bottom:841.762200px;}
.y61{bottom:871.863450px;}
.h14{height:8.011180px;}
.h13{height:8.901412px;}
.h12{height:10.829855px;}
.h11{height:25.990988px;}
.h16{height:26.659020px;}
.hb{height:27.916992px;}
.h4{height:30.064453px;}
.h1c{height:34.763389px;}
.h1a{height:36.740628px;}
.h6{height:37.316602px;}
.hc{height:37.857422px;}
.h18{height:40.426318px;}
.h1d{height:40.557738px;}
.hd{height:40.561523px;}
.h5{height:43.536035px;}
.h15{height:45.577851px;}
.h9{height:49.755469px;}
.h3{height:54.295655px;}
.h7{height:68.413770px;}
.h1b{height:70.195960px;}
.h19{height:74.187588px;}
.h8{height:74.633203px;}
.ha{height:75.350830px;}
.he{height:78.868022px;}
.h10{height:84.385253px;}
.h17{height:90.420996px;}
.h2{height:145.678271px;}
.hf{height:833.386500px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w3{width:175.201500px;}
.w2{width:175.203000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-892.913400px;}
.x0{left:0.000000px;}
.x3{left:29.244000px;}
.x16{left:35.861250px;}
.xd{left:46.771650px;}
.x15{left:65.861250px;}
.x3c{left:66.993000px;}
.x17{left:79.680600px;}
.x2{left:81.718200px;}
.x1{left:85.039350px;}
.x19{left:96.562893px;}
.x3b{left:102.853500px;}
.x1a{left:106.158600px;}
.x18{left:107.662800px;}
.x3d{left:116.672700px;}
.x6{left:119.998800px;}
.x40{left:122.290788px;}
.x3f{left:133.555143px;}
.x42{left:142.105350px;}
.x41{left:143.150700px;}
.x3e{left:144.655050px;}
.x11{left:311.102400px;}
.xc{left:315.608400px;}
.x13{left:328.110150px;}
.xe{left:331.647150px;}
.x24{left:339.969000px;}
.x5{left:369.389700px;}
.x23{left:375.829800px;}
.x34{left:376.960500px;}
.x25{left:389.649150px;}
.x26{left:391.765650px;}
.x29{left:395.267088px;}
.x28{left:406.531443px;}
.x33{left:412.822050px;}
.x2a{left:416.127150px;}
.x27{left:417.631350px;}
.x35{left:426.641250px;}
.x39{left:432.259338px;}
.x36{left:439.340400px;}
.x38{left:443.523693px;}
.x9{left:450.236250px;}
.x8{left:451.769550px;}
.x3a{left:453.119250px;}
.x37{left:454.623600px;}
.x43{left:467.124300px;}
.x7{left:468.779550px;}
.x12{left:592.442400px;}
.xb{left:599.940900px;}
.x14{left:609.447150px;}
.xf{left:616.522650px;}
.x1c{left:649.938000px;}
.x1b{left:685.798350px;}
.x2c{left:686.928000px;}
.x1e{left:691.037550px;}
.x1d{left:699.617550px;}
.x21{left:705.235638px;}
.x20{left:716.499993px;}
.x2b{left:722.790600px;}
.x22{left:726.095550px;}
.x1f{left:727.599900px;}
.x2d{left:736.609800px;}
.x2e{left:740.842950px;}
.x31{left:742.227888px;}
.x30{left:753.492243px;}
.x32{left:763.087800px;}
.x2f{left:764.592150px;}
.x10{left:851.806500px;}
.x4{left:857.425650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.085867pt;}
.ls7{letter-spacing:0.257600pt;}
.ls5{letter-spacing:0.472267pt;}
.ls1{letter-spacing:0.674667pt;}
.ls12{letter-spacing:1.028464pt;}
.lsd{letter-spacing:1.086960pt;}
.lsf{letter-spacing:1.104000pt;}
.ls6{letter-spacing:1.159200pt;}
.ls13{letter-spacing:1.199888pt;}
.ls8{letter-spacing:1.288000pt;}
.ls10{letter-spacing:1.472000pt;}
.lsc{letter-spacing:1.811595pt;}
.ls3{letter-spacing:1.962667pt;}
.lsb{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.060800pt;}
.ls11{letter-spacing:2.571184pt;}
.lse{letter-spacing:2.760000pt;}
.ls9{letter-spacing:2.919467pt;}
.ls2{letter-spacing:3.680000pt;}
.ws8{word-spacing:-37.333333pt;}
.ws9{word-spacing:-22.463774pt;}
.ws1{word-spacing:-20.460800pt;}
.ws2{word-spacing:-11.076800pt;}
.ws3{word-spacing:-3.041610pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:11.724107pt;}
.ws5{word-spacing:14.577623pt;}
.ws6{word-spacing:14.759844pt;}
.ws4{word-spacing:50.292801pt;}
._1d{margin-left:-357.994741pt;}
._15{margin-left:-261.668341pt;}
._17{margin-left:-232.513094pt;}
._21{margin-left:-39.946667pt;}
._20{margin-left:-30.096987pt;}
._22{margin-left:-13.097733pt;}
._23{margin-left:-7.250520pt;}
._1{margin-left:-4.508000pt;}
._24{margin-left:-3.461040pt;}
._0{margin-left:-2.409480pt;}
._3{margin-left:-1.025187pt;}
._6{width:0.982253pt;}
._5{width:1.937213pt;}
._4{width:3.091200pt;}
._2{width:3.994947pt;}
._9{width:5.018907pt;}
._8{width:5.924800pt;}
._f{width:6.877000pt;}
._7{width:7.813867pt;}
._d{width:9.016000pt;}
._11{width:9.917600pt;}
._12{width:11.205600pt;}
._e{width:12.321867pt;}
._a{width:13.223467pt;}
._13{width:14.173213pt;}
._b{width:15.628960pt;}
._c{width:16.655680pt;}
._1a{width:18.707950pt;}
._10{width:27.563200pt;}
._19{width:30.613009pt;}
._1f{width:32.799653pt;}
._1b{width:42.335848pt;}
._18{width:48.349118pt;}
._1c{width:52.350569pt;}
._16{width:58.371234pt;}
._14{width:59.586036pt;}
._1e{width:83.699855pt;}
.fsf{font-size:9.406933pt;}
.fse{font-size:10.452267pt;}
.fsd{font-size:25.084800pt;}
.fs17{font-size:34.282133pt;}
.fs9{font-size:34.666667pt;}
.fs11{font-size:35.527596pt;}
.fs15{font-size:36.232000pt;}
.fs4{font-size:36.800000pt;}
.fs2{font-size:37.333333pt;}
.fs13{font-size:39.866667pt;}
.fs18{font-size:39.996267pt;}
.fsa{font-size:40.000000pt;}
.fs3{font-size:42.933333pt;}
.fs7{font-size:49.066667pt;}
.fs1{font-size:53.544000pt;}
.fs10{font-size:60.740098pt;}
.fs5{font-size:67.466667pt;}
.fs6{font-size:73.600000pt;}
.fs16{font-size:85.706133pt;}
.fs14{font-size:90.579733pt;}
.fs8{font-size:92.000000pt;}
.fsb{font-size:95.771733pt;}
.fsc{font-size:102.471467pt;}
.fs12{font-size:110.400000pt;}
.fs0{font-size:177.866667pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:17.475733pt;}
.y41{bottom:17.475867pt;}
.y44{bottom:17.675067pt;}
.y4{bottom:17.675200pt;}
.y2c{bottom:17.675333pt;}
.y45{bottom:17.971333pt;}
.y46{bottom:17.982133pt;}
.y42{bottom:17.982400pt;}
.yc2{bottom:18.181600pt;}
.y15b{bottom:23.878541pt;}
.yc5{bottom:25.557867pt;}
.ye6{bottom:26.456000pt;}
.ye5{bottom:27.034667pt;}
.y19f{bottom:28.286267pt;}
.y3f{bottom:30.891733pt;}
.y108{bottom:36.125493pt;}
.y15a{bottom:37.003583pt;}
.y107{bottom:40.207103pt;}
.y6b{bottom:41.561267pt;}
.y19e{bottom:41.617067pt;}
.y25{bottom:41.700667pt;}
.y106{bottom:48.419972pt;}
.y159{bottom:50.128625pt;}
.y183{bottom:52.283733pt;}
.y105{bottom:52.501582pt;}
.y19d{bottom:54.947867pt;}
.y104{bottom:56.606710pt;}
.y6a{bottom:57.564667pt;}
.y24{bottom:57.700667pt;}
.y158{bottom:63.253667pt;}
.y103{bottom:64.819578pt;}
.y182{bottom:65.614533pt;}
.y3e{bottom:66.891733pt;}
.y19c{bottom:68.278667pt;}
.y102{bottom:68.901189pt;}
.y101{bottom:73.006316pt;}
.y69{bottom:73.568067pt;}
.y157{bottom:76.378709pt;}
.y181{bottom:78.945333pt;}
.y100{bottom:81.219185pt;}
.y3d{bottom:81.558400pt;}
.yff{bottom:85.300795pt;}
.yfe{bottom:89.405923pt;}
.y156{bottom:89.503751pt;}
.y68{bottom:89.571467pt;}
.yb9{bottom:89.700667pt;}
.y180{bottom:92.276133pt;}
.y19b{bottom:94.940267pt;}
.y164{bottom:95.059600pt;}
.yfd{bottom:97.595274pt;}
.y149{bottom:99.676333pt;}
.yfc{bottom:101.676884pt;}
.y155{bottom:102.628793pt;}
.y67{bottom:105.574867pt;}
.y17f{bottom:105.606933pt;}
.yb8{bottom:105.700667pt;}
.yfb{bottom:105.782011pt;}
.y19a{bottom:108.271067pt;}
.y163{bottom:111.055333pt;}
.y148{bottom:113.011733pt;}
.yfa{bottom:113.994880pt;}
.y154{bottom:115.753835pt;}
.yf9{bottom:118.076490pt;}
.y17e{bottom:118.937733pt;}
.y3c{bottom:120.225067pt;}
.y66{bottom:121.578267pt;}
.y199{bottom:121.601867pt;}
.y23{bottom:121.642667pt;}
.y5f{bottom:121.700667pt;}
.yf8{bottom:122.158100pt;}
.yf7{bottom:126.263228pt;}
.y147{bottom:126.347133pt;}
.y162{bottom:127.051067pt;}
.y153{bottom:128.878877pt;}
.y17d{bottom:132.268533pt;}
.yf6{bottom:134.476097pt;}
.y3b{bottom:134.891733pt;}
.y198{bottom:134.932667pt;}
.y65{bottom:137.581667pt;}
.y22{bottom:137.646067pt;}
.yb7{bottom:137.700667pt;}
.yf5{bottom:138.557707pt;}
.y146{bottom:139.682533pt;}
.y152{bottom:142.003919pt;}
.yf4{bottom:142.639317pt;}
.y161{bottom:143.046800pt;}
.y17c{bottom:145.599333pt;}
.yf3{bottom:146.720927pt;}
.yf2{bottom:150.802537pt;}
.y145{bottom:153.017933pt;}
.y5e{bottom:153.585067pt;}
.yf1{bottom:154.907665pt;}
.y151{bottom:155.128961pt;}
.y17b{bottom:158.930133pt;}
.y160{bottom:159.042533pt;}
.y197{bottom:161.594267pt;}
.yf0{bottom:163.120533pt;}
.y144{bottom:166.353333pt;}
.yef{bottom:167.123294pt;}
.y150{bottom:168.254003pt;}
.y5d{bottom:169.588467pt;}
.y21{bottom:169.642133pt;}
.yb6{bottom:169.700667pt;}
.yee{bottom:170.817867pt;}
.y17a{bottom:172.260933pt;}
.y3a{bottom:173.558400pt;}
.y196{bottom:174.925067pt;}
.y15f{bottom:175.038267pt;}
.yed{bottom:178.702534pt;}
.y143{bottom:179.688733pt;}
.y14f{bottom:181.379045pt;}
.yec{bottom:182.807662pt;}
.y179{bottom:185.591733pt;}
.y5c{bottom:185.591867pt;}
.y20{bottom:185.645533pt;}
.yeb{bottom:186.912790pt;}
.y39{bottom:188.225067pt;}
.y195{bottom:188.255867pt;}
.yea{bottom:190.994400pt;}
.y15e{bottom:191.034000pt;}
.y142{bottom:193.024133pt;}
.yc1{bottom:193.700667pt;}
.y14e{bottom:194.504087pt;}
.y178{bottom:198.922533pt;}
.y194{bottom:201.589200pt;}
.y5b{bottom:201.595267pt;}
.yb5{bottom:201.700667pt;}
.y141{bottom:206.359533pt;}
.yc0{bottom:207.030667pt;}
.y14d{bottom:207.629129pt;}
.y9f{bottom:213.391200pt;}
.ye4{bottom:217.480600pt;}
.y5a{bottom:217.598667pt;}
.y1f{bottom:217.641600pt;}
.y140{bottom:219.694933pt;}
.y15d{bottom:225.589200pt;}
.y38{bottom:226.891733pt;}
.y9e{bottom:229.394600pt;}
.y117{bottom:231.120367pt;}
.y14c{bottom:231.524133pt;}
.y13f{bottom:233.030333pt;}
.y59{bottom:233.602067pt;}
.y1e{bottom:233.645000pt;}
.yb4{bottom:233.700667pt;}
.y15c{bottom:235.189200pt;}
.y116{bottom:235.201977pt;}
.y14b{bottom:240.976000pt;}
.y37{bottom:241.558400pt;}
.y115{bottom:243.367811pt;}
.y9d{bottom:245.398000pt;}
.y13e{bottom:246.365733pt;}
.y114{bottom:247.449421pt;}
.ye3{bottom:249.476667pt;}
.y58{bottom:249.605467pt;}
.yb3{bottom:249.700667pt;}
.y14a{bottom:255.382933pt;}
.y113{bottom:255.615254pt;}
.y112{bottom:259.696864pt;}
.y13d{bottom:259.701133pt;}
.y9c{bottom:261.401400pt;}
.y57{bottom:265.608867pt;}
.y1d{bottom:265.641067pt;}
.y111{bottom:267.862698pt;}
.y110{bottom:271.967825pt;}
.y13c{bottom:273.036533pt;}
.y10f{bottom:276.049435pt;}
.y9b{bottom:277.404800pt;}
.y36{bottom:278.891733pt;}
.ye2{bottom:281.472733pt;}
.y56{bottom:281.612267pt;}
.y1c{bottom:281.644467pt;}
.yb2{bottom:281.700667pt;}
.y10e{bottom:284.238786pt;}
.y13b{bottom:286.371933pt;}
.y10d{bottom:288.343914pt;}
.y9a{bottom:293.408200pt;}
.y35{bottom:293.558400pt;}
.y10c{bottom:296.509747pt;}
.ye1{bottom:297.476133pt;}
.y55{bottom:297.615667pt;}
.yb1{bottom:297.700667pt;}
.y13a{bottom:299.707333pt;}
.y10b{bottom:300.614875pt;}
.y10a{bottom:308.804226pt;}
.y99{bottom:309.411600pt;}
.y109{bottom:312.885836pt;}
.y139{bottom:313.042733pt;}
.ye0{bottom:313.479533pt;}
.y54{bottom:313.619067pt;}
.y1b{bottom:313.640533pt;}
.ybf{bottom:313.700667pt;}
.y98{bottom:325.415000pt;}
.y138{bottom:326.378133pt;}
.ydf{bottom:329.482933pt;}
.y53{bottom:329.622467pt;}
.y1a{bottom:329.643933pt;}
.yb0{bottom:329.700667pt;}
.y34{bottom:330.891733pt;}
.y137{bottom:339.713533pt;}
.y3{bottom:339.751733pt;}
.y97{bottom:341.418400pt;}
.yde{bottom:345.486333pt;}
.y33{bottom:345.558400pt;}
.y52{bottom:345.625867pt;}
.y19{bottom:345.647333pt;}
.ybe{bottom:345.700667pt;}
.y136{bottom:353.048933pt;}
.y96{bottom:357.421800pt;}
.ydd{bottom:361.489733pt;}
.y51{bottom:361.629267pt;}
.y18{bottom:361.650733pt;}
.yaf{bottom:361.700667pt;}
.y135{bottom:366.384333pt;}
.y16c{bottom:367.055333pt;}
.y95{bottom:373.425200pt;}
.ydc{bottom:377.493133pt;}
.y50{bottom:377.632667pt;}
.y17{bottom:377.654133pt;}
.ybd{bottom:377.700667pt;}
.y134{bottom:379.719733pt;}
.y32{bottom:381.558400pt;}
.y16b{bottom:383.051067pt;}
.y94{bottom:389.428600pt;}
.ydb{bottom:393.496533pt;}
.y4f{bottom:393.636067pt;}
.y16{bottom:393.657533pt;}
.yae{bottom:393.700667pt;}
.y31{bottom:396.225067pt;}
.y16a{bottom:399.046800pt;}
.y93{bottom:405.432000pt;}
.y7f{bottom:405.496400pt;}
.y133{bottom:406.390533pt;}
.yda{bottom:409.499933pt;}
.y4e{bottom:409.639467pt;}
.y15{bottom:409.660933pt;}
.y169{bottom:415.042533pt;}
.y43{bottom:415.122133pt;}
.y132{bottom:419.725933pt;}
.y92{bottom:421.435400pt;}
.y7e{bottom:421.499800pt;}
.yd9{bottom:425.503333pt;}
.y4d{bottom:425.642867pt;}
.yad{bottom:425.700667pt;}
.y168{bottom:431.038267pt;}
.y131{bottom:433.061333pt;}
.y30{bottom:436.225067pt;}
.y91{bottom:437.438800pt;}
.y7d{bottom:437.503200pt;}
.yd8{bottom:441.506733pt;}
.y4c{bottom:441.646267pt;}
.y14{bottom:441.657000pt;}
.yac{bottom:441.700667pt;}
.y167{bottom:447.034000pt;}
.y130{bottom:447.732267pt;}
.y2f{bottom:450.891733pt;}
.y90{bottom:453.442200pt;}
.y7c{bottom:453.506600pt;}
.yd7{bottom:457.510133pt;}
.y4b{bottom:457.649667pt;}
.y13{bottom:457.660400pt;}
.yab{bottom:457.700667pt;}
.y11a{bottom:458.030441pt;}
.y12f{bottom:462.403200pt;}
.y11b{bottom:462.634267pt;}
.y8f{bottom:469.445600pt;}
.y7b{bottom:469.510000pt;}
.yd6{bottom:473.513533pt;}
.y4a{bottom:473.653067pt;}
.y12{bottom:473.663800pt;}
.y12e{bottom:477.074133pt;}
.y119{bottom:478.735515pt;}
.y8e{bottom:485.449000pt;}
.y7a{bottom:485.513400pt;}
.y166{bottom:486.956133pt;}
.y2e{bottom:488.225067pt;}
.yd3{bottom:489.516933pt;}
.y49{bottom:489.656467pt;}
.y11{bottom:489.667200pt;}
.yaa{bottom:489.700667pt;}
.y12d{bottom:491.745067pt;}
.y118{bottom:499.399467pt;}
.y165{bottom:499.756133pt;}
.y8d{bottom:501.452400pt;}
.y79{bottom:501.516800pt;}
.y2d{bottom:502.891733pt;}
.yd2{bottom:505.520333pt;}
.y48{bottom:505.659867pt;}
.y10{bottom:505.670600pt;}
.ybc{bottom:505.700667pt;}
.y12c{bottom:506.416000pt;}
.y8c{bottom:517.455800pt;}
.y78{bottom:517.520200pt;}
.y12b{bottom:521.086933pt;}
.yd1{bottom:521.523733pt;}
.y47{bottom:521.663267pt;}
.ya9{bottom:521.700667pt;}
.y8b{bottom:533.459200pt;}
.y77{bottom:533.523600pt;}
.y12a{bottom:535.757867pt;}
.yd0{bottom:537.527133pt;}
.yf{bottom:537.666667pt;}
.ya8{bottom:537.700667pt;}
.y193{bottom:538.315716pt;}
.y8a{bottom:549.462600pt;}
.y76{bottom:549.527000pt;}
.y129{bottom:550.428800pt;}
.ycf{bottom:553.530533pt;}
.ye{bottom:553.670067pt;}
.ybb{bottom:553.700667pt;}
.y192{bottom:554.464209pt;}
.y177{bottom:559.013333pt;}
.y128{bottom:565.099733pt;}
.y89{bottom:565.466000pt;}
.y75{bottom:565.530400pt;}
.y191{bottom:565.643165pt;}
.yce{bottom:569.533933pt;}
.yd{bottom:569.673467pt;}
.ya7{bottom:569.700667pt;}
.y176{bottom:575.016733pt;}
.y190{bottom:576.822122pt;}
.y127{bottom:579.770667pt;}
.y88{bottom:581.469400pt;}
.y74{bottom:581.533800pt;}
.y2a{bottom:584.846733pt;}
.ycd{bottom:585.537333pt;}
.yc{bottom:585.676867pt;}
.ya6{bottom:585.700667pt;}
.y18f{bottom:588.001078pt;}
.y175{bottom:591.020133pt;}
.y11d{bottom:592.785867pt;}
.y11c{bottom:592.949600pt;}
.ye9{bottom:592.982933pt;}
.y126{bottom:594.441600pt;}
.y87{bottom:597.472800pt;}
.y73{bottom:597.537200pt;}
.y18e{bottom:599.180035pt;}
.ycc{bottom:601.540733pt;}
.yb{bottom:601.680267pt;}
.ya5{bottom:601.700667pt;}
.y29{bottom:606.183067pt;}
.y174{bottom:607.023533pt;}
.y125{bottom:609.112533pt;}
.y18d{bottom:610.358991pt;}
.y86{bottom:613.476200pt;}
.y72{bottom:613.540600pt;}
.ycb{bottom:617.544133pt;}
.ya{bottom:617.683667pt;}
.y173{bottom:623.026933pt;}
.y124{bottom:623.783467pt;}
.y2b{bottom:623.868667pt;}
.y85{bottom:629.479600pt;}
.y71{bottom:629.544000pt;}
.y18c{bottom:632.716904pt;}
.yca{bottom:633.547533pt;}
.y9{bottom:633.687067pt;}
.ya4{bottom:633.700667pt;}
.y123{bottom:638.454400pt;}
.y172{bottom:639.030333pt;}
.y84{bottom:645.483000pt;}
.y70{bottom:645.547400pt;}
.yc9{bottom:649.550933pt;}
.y8{bottom:649.690467pt;}
.ya3{bottom:649.700667pt;}
.y122{bottom:653.125333pt;}
.y171{bottom:655.033733pt;}
.y18b{bottom:655.074817pt;}
.y28{bottom:657.278867pt;}
.y83{bottom:661.486400pt;}
.y6f{bottom:661.550800pt;}
.yc8{bottom:665.554333pt;}
.y7{bottom:665.693867pt;}
.yba{bottom:665.700667pt;}
.y18a{bottom:666.253774pt;}
.y121{bottom:667.796267pt;}
.y170{bottom:671.037133pt;}
.y189{bottom:677.432730pt;}
.y82{bottom:677.489800pt;}
.y6e{bottom:677.554200pt;}
.yc7{bottom:681.557733pt;}
.y6{bottom:681.697267pt;}
.ya2{bottom:681.700667pt;}
.y120{bottom:682.467200pt;}
.y2{bottom:686.685667pt;}
.y188{bottom:688.611687pt;}
.y81{bottom:693.493200pt;}
.y6d{bottom:693.557600pt;}
.yc6{bottom:697.561133pt;}
.y5{bottom:697.700667pt;}
.y16f{bottom:698.933067pt;}
.y187{bottom:699.790643pt;}
.y27{bottom:703.657600pt;}
.y80{bottom:709.496600pt;}
.y6c{bottom:709.561000pt;}
.y186{bottom:710.969600pt;}
.y11f{bottom:711.800533pt;}
.yd5{bottom:713.205533pt;}
.y40{bottom:724.251200pt;}
.ya1{bottom:725.582800pt;}
.yc4{bottom:727.787600pt;}
.y16e{bottom:728.266400pt;}
.ye7{bottom:732.150133pt;}
.y1{bottom:733.064400pt;}
.y11e{bottom:733.452267pt;}
.y185{bottom:735.811867pt;}
.ya0{bottom:736.249467pt;}
.y64{bottom:737.193200pt;}
.yd4{bottom:737.194533pt;}
.y16d{bottom:737.866400pt;}
.yc3{bottom:738.454267pt;}
.y63{bottom:738.527200pt;}
.y62{bottom:739.861200pt;}
.ye8{bottom:740.129867pt;}
.y60{bottom:743.199733pt;}
.y184{bottom:748.233067pt;}
.y61{bottom:774.989733pt;}
.h14{height:7.121049pt;}
.h13{height:7.912366pt;}
.h12{height:9.626538pt;}
.h11{height:23.103101pt;}
.h16{height:23.696906pt;}
.hb{height:24.815104pt;}
.h4{height:26.723958pt;}
.h1c{height:30.900790pt;}
.h1a{height:32.658336pt;}
.h6{height:33.170313pt;}
.hc{height:33.651042pt;}
.h18{height:35.934505pt;}
.h1d{height:36.051322pt;}
.hd{height:36.054688pt;}
.h5{height:38.698698pt;}
.h15{height:40.513645pt;}
.h9{height:44.227083pt;}
.h3{height:48.262805pt;}
.h7{height:60.812240pt;}
.h1b{height:62.396409pt;}
.h19{height:65.944523pt;}
.h8{height:66.340625pt;}
.ha{height:66.978516pt;}
.he{height:70.104909pt;}
.h10{height:75.009114pt;}
.h17{height:80.374219pt;}
.h2{height:129.491797pt;}
.hf{height:740.788000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w3{width:155.734667pt;}
.w2{width:155.736000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-793.700800pt;}
.x0{left:0.000000pt;}
.x3{left:25.994667pt;}
.x16{left:31.876667pt;}
.xd{left:41.574800pt;}
.x15{left:58.543333pt;}
.x3c{left:59.549333pt;}
.x17{left:70.827200pt;}
.x2{left:72.638400pt;}
.x1{left:75.590533pt;}
.x19{left:85.833683pt;}
.x3b{left:91.425333pt;}
.x1a{left:94.363200pt;}
.x18{left:95.700267pt;}
.x3d{left:103.709067pt;}
.x6{left:106.665600pt;}
.x40{left:108.702923pt;}
.x3f{left:118.715683pt;}
.x42{left:126.315867pt;}
.x41{left:127.245067pt;}
.x3e{left:128.582267pt;}
.x11{left:276.535467pt;}
.xc{left:280.540800pt;}
.x13{left:291.653467pt;}
.xe{left:294.797467pt;}
.x24{left:302.194667pt;}
.x5{left:328.346400pt;}
.x23{left:334.070933pt;}
.x34{left:335.076000pt;}
.x25{left:346.354800pt;}
.x26{left:348.236133pt;}
.x29{left:351.348523pt;}
.x28{left:361.361283pt;}
.x33{left:366.952933pt;}
.x2a{left:369.890800pt;}
.x27{left:371.227867pt;}
.x35{left:379.236667pt;}
.x39{left:384.230523pt;}
.x36{left:390.524800pt;}
.x38{left:394.243283pt;}
.x9{left:400.210000pt;}
.x8{left:401.572933pt;}
.x3a{left:402.772667pt;}
.x37{left:404.109867pt;}
.x43{left:415.221600pt;}
.x7{left:416.692933pt;}
.x12{left:526.615467pt;}
.xb{left:533.280800pt;}
.x14{left:541.730800pt;}
.xf{left:548.020133pt;}
.x1c{left:577.722667pt;}
.x1b{left:609.598533pt;}
.x2c{left:610.602667pt;}
.x1e{left:614.255600pt;}
.x1d{left:621.882267pt;}
.x21{left:626.876123pt;}
.x20{left:636.888883pt;}
.x2b{left:642.480533pt;}
.x22{left:645.418267pt;}
.x1f{left:646.755467pt;}
.x2d{left:654.764267pt;}
.x2e{left:658.527067pt;}
.x31{left:659.758123pt;}
.x30{left:669.770883pt;}
.x32{left:678.300267pt;}
.x2f{left:679.637467pt;}
.x10{left:757.161333pt;}
.x4{left:762.156133pt;}
}




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