
    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_aaba9ab610f08c6ac0c86054.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5613a9551f7ecaafac6afe24.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c4d1d1c1aea95dad132ea43.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0ff2e9dbab74bb0897aa8b57.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_df489aa5f7f2754deb1adb3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_cc996506e90c1d104b318924.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9848c8c02222075d176d3ea6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2a1c6d2c10476502987e4910.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_dca94375443aec1fbf757dde.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_ffb3e9db387eb2cf5f24d1e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_541d5de2e1a2669c93ffd579.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;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_31348052f47603696bbb2af2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703450;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_51f0a375b4c867a35c55185a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666000;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_a33859c3921781ee6a76a4cd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_afc4a08a900814134eb0f8b2.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7da3acbb0c3caf78de4f0535.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.239258;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_16272d65d0f794ccd3d1b8b8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.239258;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_8fb203a0b38efe3f9e7af585.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.239258;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_e2ff885515e6cc4889388ee1.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.239258;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_6ea23985df7580a573aa4b09.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.239258;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_ce15dfaaee0ed60b6d60f2d4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.239258;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_25668c3f97d7c3aa42447c8d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_25668c3f97d7c3aa42447c8d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_25668c3f97d7c3aa42447c8d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_25668c3f97d7c3aa42447c8d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_1da4001739fd5de2dc0b5371.woff2')format("woff");}.ff20{font-family:ff20;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;}
.m1{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);}
.v5{vertical-align:-20.855564px;}
.v6{vertical-align:-19.252859px;}
.v3{vertical-align:-16.860000px;}
.v2{vertical-align:-8.940000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.860000px;}
.v7{vertical-align:19.252859px;}
.v1{vertical-align:21.720000px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001591px;}
.lse{letter-spacing:0.004672px;}
.ls25{letter-spacing:0.006984px;}
.ls1a{letter-spacing:0.007363px;}
.ls1e{letter-spacing:0.013672px;}
.ls6{letter-spacing:0.016768px;}
.lsc{letter-spacing:0.017492px;}
.ls5{letter-spacing:0.031880px;}
.ls1b{letter-spacing:0.043582px;}
.ls8{letter-spacing:2.943935px;}
.ls9{letter-spacing:2.988181px;}
.ls11{letter-spacing:2.994026px;}
.ls10{letter-spacing:8.764672px;}
.lsf{letter-spacing:9.923148px;}
.ls1c{letter-spacing:11.044672px;}
.ls18{letter-spacing:12.604672px;}
.ls13{letter-spacing:13.264672px;}
.ls14{letter-spacing:13.924672px;}
.ls1d{letter-spacing:14.034026px;}
.lsb{letter-spacing:15.184672px;}
.ls0{letter-spacing:15.348707px;}
.ls19{letter-spacing:16.624672px;}
.ls1{letter-spacing:17.922113px;}
.ls22{letter-spacing:18.268166px;}
.ls23{letter-spacing:19.483230px;}
.ls12{letter-spacing:19.554026px;}
.ls17{letter-spacing:19.614026px;}
.ls15{letter-spacing:23.934026px;}
.ls16{letter-spacing:23.994026px;}
.ls20{letter-spacing:24.604672px;}
.ls1f{letter-spacing:26.248166px;}
.ls24{letter-spacing:27.103230px;}
.ls21{letter-spacing:27.223230px;}
.lsd{letter-spacing:29.704672px;}
.ls4{letter-spacing:175.734026px;}
.ls3{letter-spacing:261.883230px;}
.ls2{letter-spacing:262.708166px;}
.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;}
}
.ws74{word-spacing:-10.704590px;}
.ws42{word-spacing:-9.982926px;}
.ws76{word-spacing:-9.626430px;}
.ws73{word-spacing:-8.920491px;}
.ws75{word-spacing:-8.028442px;}
.ws78{word-spacing:-8.022025px;}
.ws77{word-spacing:-7.136393px;}
.ws9c{word-spacing:-0.071730px;}
.ws3{word-spacing:-0.059778px;}
.ws1a{word-spacing:-0.047820px;}
.ws11{word-spacing:-0.041844px;}
.ws1d{word-spacing:0.000000px;}
.wsa0{word-spacing:8.597854px;}
.wsa2{word-spacing:8.657854px;}
.ws6c{word-spacing:9.863370px;}
.ws88{word-spacing:9.897814px;}
.ws6b{word-spacing:9.909358px;}
.ws69{word-spacing:9.933222px;}
.ws41{word-spacing:9.934617px;}
.ws43{word-spacing:11.737290px;}
.ws51{word-spacing:12.565395px;}
.ws45{word-spacing:13.225617px;}
.ws8f{word-spacing:14.011260px;}
.ws54{word-spacing:14.017290px;}
.ws8d{word-spacing:14.059080px;}
.ws3e{word-spacing:14.167386px;}
.ws4a{word-spacing:14.346000px;}
.ws38{word-spacing:15.243390px;}
.ws99{word-spacing:15.781392px;}
.ws9d{word-spacing:16.020504px;}
.ws33{word-spacing:16.080282px;}
.ws57{word-spacing:16.259616px;}
.ws6a{word-spacing:16.379172px;}
.ws17{word-spacing:16.832640px;}
.ws66{word-spacing:16.857396px;}
.ws18{word-spacing:16.880460px;}
.ws91{word-spacing:17.008627px;}
.ws3a{word-spacing:17.036730px;}
.wsb{word-spacing:17.053332px;}
.ws8c{word-spacing:17.068627px;}
.ws97{word-spacing:17.096508px;}
.ws60{word-spacing:17.275842px;}
.ws26{word-spacing:17.514954px;}
.ws3f{word-spacing:17.574732px;}
.ws82{word-spacing:17.694288px;}
.ws72{word-spacing:17.754066px;}
.ws9e{word-spacing:17.933400px;}
.wsa5{word-spacing:17.993178px;}
.ws5e{word-spacing:18.112734px;}
.ws5f{word-spacing:18.232290px;}
.ws1c{word-spacing:18.267240px;}
.ws7f{word-spacing:18.292068px;}
.ws19{word-spacing:18.314070px;}
.ws34{word-spacing:18.351846px;}
.ws35{word-spacing:18.411624px;}
.ws98{word-spacing:18.471402px;}
.ws92{word-spacing:18.590958px;}
.ws5c{word-spacing:18.650736px;}
.ws4e{word-spacing:18.710514px;}
.ws28{word-spacing:18.770292px;}
.ws84{word-spacing:18.841080px;}
.ws2b{word-spacing:18.889848px;}
.ws8e{word-spacing:18.936720px;}
.ws8b{word-spacing:18.984540px;}
.ws4c{word-spacing:19.009404px;}
.ws24{word-spacing:19.128960px;}
.ws3b{word-spacing:19.248516px;}
.ws23{word-spacing:19.308294px;}
.wsc{word-spacing:19.312764px;}
.ws85{word-spacing:19.367100px;}
.ws90{word-spacing:19.414920px;}
.ws37{word-spacing:19.462740px;}
.ws52{word-spacing:19.487628px;}
.ws40{word-spacing:19.537290px;}
.ws53{word-spacing:19.538747px;}
.ws27{word-spacing:19.547406px;}
.ws2c{word-spacing:19.607184px;}
.ws65{word-spacing:19.726740px;}
.wsa3{word-spacing:19.786518px;}
.ws81{word-spacing:19.837290px;}
.ws6{word-spacing:19.846296px;}
.ws64{word-spacing:19.906074px;}
.ws80{word-spacing:20.025630px;}
.ws4b{word-spacing:20.036580px;}
.ws29{word-spacing:20.384298px;}
.ws7c{word-spacing:20.503854px;}
.ws7e{word-spacing:20.610420px;}
.ws4d{word-spacing:20.862522px;}
.ws4f{word-spacing:20.922300px;}
.wsd{word-spacing:21.141828px;}
.ws2{word-spacing:21.221190px;}
.ws5{word-spacing:21.280968px;}
.ws50{word-spacing:21.337290px;}
.ws7{word-spacing:21.340746px;}
.ws1b{word-spacing:21.367181px;}
.ws63{word-spacing:21.460302px;}
.ws2e{word-spacing:21.699414px;}
.ws89{word-spacing:21.817290px;}
.ws70{word-spacing:21.818970px;}
.ws71{word-spacing:21.878748px;}
.ws2d{word-spacing:21.938526px;}
.ws94{word-spacing:22.051352px;}
.ws5d{word-spacing:22.058082px;}
.ws9a{word-spacing:22.117860px;}
.ws49{word-spacing:22.236300px;}
.ws58{word-spacing:22.297194px;}
.ws21{word-spacing:22.356972px;}
.ws2a{word-spacing:22.476528px;}
.ws2f{word-spacing:22.596084px;}
.ws1f{word-spacing:22.655862px;}
.ws25{word-spacing:22.715640px;}
.ws32{word-spacing:22.775418px;}
.ws55{word-spacing:22.835196px;}
.ws67{word-spacing:22.894974px;}
.ws79{word-spacing:23.001420px;}
.ws30{word-spacing:23.014530px;}
.ws95{word-spacing:23.197290px;}
.ws7a{word-spacing:23.253642px;}
.ws59{word-spacing:23.373198px;}
.ws6f{word-spacing:23.492754px;}
.ws9b{word-spacing:23.552532px;}
.wsa1{word-spacing:23.672088px;}
.ws5b{word-spacing:23.791644px;}
.ws93{word-spacing:24.150312px;}
.ws83{word-spacing:24.210090px;}
.ws61{word-spacing:24.269868px;}
.ws20{word-spacing:24.329646px;}
.ws4{word-spacing:24.344152px;}
.ws87{word-spacing:24.457290px;}
.ws6e{word-spacing:24.508980px;}
.ws86{word-spacing:24.568758px;}
.ws68{word-spacing:24.628536px;}
.ws5a{word-spacing:24.688314px;}
.ws44{word-spacing:24.867648px;}
.ws22{word-spacing:24.987204px;}
.ws39{word-spacing:25.525206px;}
.ws96{word-spacing:25.584984px;}
.ws7b{word-spacing:25.764318px;}
.ws31{word-spacing:25.883874px;}
.ws56{word-spacing:26.182764px;}
.ws36{word-spacing:26.755290px;}
.ws62{word-spacing:26.900100px;}
.ws9f{word-spacing:27.378324px;}
.ws6d{word-spacing:27.577290px;}
.ws3c{word-spacing:27.736992px;}
.ws48{word-spacing:28.500720px;}
.wsa4{word-spacing:29.410776px;}
.ws9{word-spacing:30.125760px;}
.wsa{word-spacing:30.771312px;}
.ws8{word-spacing:31.147884px;}
.ws3d{word-spacing:32.704762px;}
.ws8a{word-spacing:36.034935px;}
.ws0{word-spacing:38.527170px;}
.ws1{word-spacing:38.630460px;}
.wse{word-spacing:75.987606px;}
.ws1e{word-spacing:80.552790px;}
.ws7d{word-spacing:92.895046px;}
.wsf{word-spacing:122.197290px;}
.ws13{word-spacing:139.128293px;}
.ws14{word-spacing:147.528293px;}
.ws15{word-spacing:151.308293px;}
.ws16{word-spacing:152.988293px;}
.ws10{word-spacing:158.722918px;}
.ws12{word-spacing:175.418747px;}
.ws47{word-spacing:713.105586px;}
.ws46{word-spacing:1280.226966px;}
._2{margin-left:-4.938586px;}
._0{margin-left:-3.098700px;}
._3{margin-left:-1.673784px;}
._1{width:1.661718px;}
._8{width:3.098700px;}
._1e{width:6.698136px;}
._19{width:14.014376px;}
._10{width:15.666598px;}
._23{width:16.700567px;}
._11{width:17.739548px;}
._e{width:19.432158px;}
._d{width:20.940410px;}
._b{width:23.911200px;}
._14{width:25.106760px;}
._7{width:27.005592px;}
._17{width:28.432404px;}
._18{width:29.590110px;}
._1b{width:30.785670px;}
._5{width:32.451054px;}
._9{width:34.781040px;}
._1c{width:36.895092px;}
._1d{width:38.389542px;}
._a{width:40.051260px;}
._c{width:41.629620px;}
._f{width:44.571400px;}
._1a{width:45.849726px;}
._4{width:48.201216px;}
._25{width:54.235305px;}
._6{width:55.469634px;}
._16{width:57.144900px;}
._24{width:62.530078px;}
._13{width:68.684922px;}
._12{width:81.186432px;}
._1f{width:111.175636px;}
._22{width:120.821318px;}
._21{width:129.520402px;}
._20{width:147.464067px;}
._15{width:825.480948px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:25.670479px;}
.fsa{font-size:28.879289px;}
.fs7{font-size:32.088099px;}
.fs5{font-size:35.868000px;}
.fs8{font-size:38.505719px;}
.fs9{font-size:41.714528px;}
.fs3{font-size:41.844000px;}
.fs6{font-size:47.820000px;}
.fs4{font-size:53.796000px;}
.fs2{font-size:59.778000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:7.353649px;}
.yad{bottom:7.354451px;}
.y83{bottom:11.967116px;}
.y81{bottom:14.707439px;}
.y86{bottom:17.849666px;}
.y77{bottom:17.917051px;}
.y91{bottom:18.117602px;}
.y92{bottom:24.868938px;}
.yaf{bottom:24.935521px;}
.y9c{bottom:24.936323px;}
.y74{bottom:27.543481px;}
.y78{bottom:31.955595px;}
.y22{bottom:34.770000px;}
.yc7{bottom:43.453563px;}
.y75{bottom:45.258518px;}
.y79{bottom:45.994138px;}
.ya5{bottom:47.531158px;}
.ydf{bottom:48.200195px;}
.y21{bottom:48.975000px;}
.yc0{bottom:52.077239px;}
.y93{bottom:54.016163px;}
.y7a{bottom:60.099264px;}
.yc8{bottom:61.970802px;}
.y76{bottom:62.906973px;}
.y20{bottom:63.165000px;}
.yd9{bottom:65.648098px;}
.y7b{bottom:68.789523px;}
.ya6{bottom:70.194180px;}
.yc1{bottom:79.218958px;}
.yc9{bottom:80.488844px;}
.y94{bottom:83.096002px;}
.yda{bottom:86.036876px;}
.y87{bottom:86.839079px;}
.y7c{bottom:89.913921px;}
.ya7{bottom:92.789015px;}
.y9b{bottom:93.791768px;}
.yae{bottom:98.337047px;}
.yca{bottom:99.006084px;}
.y84{bottom:102.080926px;}
.y88{bottom:104.955217px;}
.yc2{bottom:106.426457px;}
.y8d{bottom:106.827558px;}
.y7d{bottom:111.039121px;}
.y95{bottom:112.242424px;}
.y1f{bottom:112.245000px;}
.yf3{bottom:114.675000px;}
.ya8{bottom:115.451234px;}
.y44{bottom:117.255000px;}
.ycb{bottom:117.523323px;}
.y5c{bottom:118.755000px;}
.y89{bottom:123.005575px;}
.ydb{bottom:126.749454px;}
.y1e{bottom:126.945000px;}
.y8f{bottom:128.295000px;}
.y7e{bottom:132.163518px;}
.yf2{bottom:132.600000px;}
.yc3{bottom:133.567373px;}
.y43{bottom:135.180000px;}
.ycc{bottom:136.041365px;}
.y5b{bottom:136.695000px;}
.ya9{bottom:138.113454px;}
.y8a{bottom:141.121713px;}
.y96{bottom:141.322264px;}
.y1d{bottom:141.645000px;}
.y8e{bottom:142.485000px;}
.ydc{bottom:147.138232px;}
.yf1{bottom:150.540000px;}
.y42{bottom:153.120000px;}
.y7f{bottom:153.288718px;}
.ycd{bottom:154.558605px;}
.y5a{bottom:154.620000px;}
.yd3{bottom:155.970000px;}
.ya2{bottom:159.037301px;}
.y8b{bottom:159.171269px;}
.yb5{bottom:159.638953px;}
.yaa{bottom:160.709091px;}
.ydd{bottom:167.527010px;}
.yf0{bottom:168.465000px;}
.yd2{bottom:170.160000px;}
.ya1{bottom:170.268938px;}
.y97{bottom:170.468686px;}
.yb4{bottom:170.870590px;}
.yce{bottom:173.075844px;}
.y80{bottom:174.413116px;}
.y8c{bottom:177.220825px;}
.y85{bottom:178.350000px;}
.ya0{bottom:181.498970px;}
.yb3{bottom:182.100622px;}
.y59{bottom:182.205000px;}
.yab{bottom:183.371311px;}
.yd1{bottom:184.365000px;}
.yef{bottom:186.405000px;}
.yc4{bottom:187.917392px;}
.y41{bottom:189.660000px;}
.ycf{bottom:191.593886px;}
.y9f{bottom:192.797190px;}
.yb2{bottom:193.398842px;}
.y73{bottom:196.954621px;}
.ye2{bottom:198.746323px;}
.y98{bottom:199.548526px;}
.y9e{bottom:204.027222px;}
.yee{bottom:204.330000px;}
.yb1{bottom:204.629676px;}
.yac{bottom:206.032728px;}
.yde{bottom:208.306170px;}
.ye1{bottom:208.640689px;}
.yd0{bottom:210.111126px;}
.yc5{bottom:215.057506px;}
.ye0{bottom:218.534252px;}
.ya3{bottom:220.205240px;}
.yc6{bottom:220.230000px;}
.yb6{bottom:220.806891px;}
.y58{bottom:221.055000px;}
.y99{bottom:228.628365px;}
.yb0{bottom:228.761531px;}
.y9d{bottom:228.762333px;}
.yed{bottom:237.060000px;}
.ybf{bottom:238.819621px;}
.y57{bottom:238.980000px;}
.y82{bottom:243.134593px;}
.y56{bottom:256.920000px;}
.y55{bottom:274.845000px;}
.yec{bottom:280.500000px;}
.y54{bottom:292.785000px;}
.yeb{bottom:298.440000px;}
.y53{bottom:310.710000px;}
.yea{bottom:316.380000px;}
.y52{bottom:328.650000px;}
.ye9{bottom:334.305000px;}
.ye8{bottom:352.245000px;}
.y51{bottom:365.325000px;}
.y50{bottom:379.515000px;}
.y1c{bottom:382.185000px;}
.ye7{bottom:390.285000px;}
.y4f{bottom:393.720000px;}
.y1b{bottom:403.095000px;}
.ye6{bottom:404.475000px;}
.y4e{bottom:407.910000px;}
.y4d{bottom:422.100000px;}
.y1a{bottom:424.020000px;}
.ye5{bottom:440.340000px;}
.y19{bottom:444.945000px;}
.y4c{bottom:457.965000px;}
.ye4{bottom:458.944621px;}
.y72{bottom:465.270000px;}
.y18{bottom:465.870000px;}
.y71{bottom:483.210000px;}
.y17{bottom:486.795000px;}
.y70{bottom:501.135000px;}
.ybe{bottom:507.150000px;}
.y16{bottom:507.705000px;}
.y40{bottom:516.900000px;}
.y6f{bottom:519.075000px;}
.ybd{bottom:525.075000px;}
.y15{bottom:528.630000px;}
.y6e{bottom:537.000000px;}
.ybc{bottom:543.015000px;}
.y14{bottom:549.555000px;}
.y3f{bottom:549.630000px;}
.y6d{bottom:554.940000px;}
.ybb{bottom:560.940000px;}
.y13{bottom:570.480000px;}
.y6c{bottom:572.865000px;}
.yba{bottom:578.880000px;}
.y6b{bottom:590.805000px;}
.y12{bottom:591.390000px;}
.y3e{bottom:593.070000px;}
.yb9{bottom:606.465000px;}
.y3d{bottom:611.010000px;}
.y11{bottom:612.315000px;}
.y6a{bottom:618.390000px;}
.y3c{bottom:628.935000px;}
.y10{bottom:633.240000px;}
.y3b{bottom:646.875000px;}
.y69{bottom:657.225000px;}
.y3a{bottom:664.800000px;}
.yf{bottom:665.070000px;}
.yb8{bottom:665.415000px;}
.y68{bottom:675.165000px;}
.yb7{bottom:679.605000px;}
.y39{bottom:682.740000px;}
.y4b{bottom:686.220000px;}
.y104{bottom:688.650000px;}
.y67{bottom:693.090000px;}
.y38{bottom:700.665000px;}
.ye{bottom:708.510000px;}
.y103{bottom:712.005000px;}
.ya4{bottom:715.470000px;}
.y37{bottom:718.605000px;}
.ye3{bottom:723.750000px;}
.yd{bottom:724.950000px;}
.y66{bottom:725.820000px;}
.y102{bottom:729.945000px;}
.y90{bottom:734.074621px;}
.y36{bottom:736.530000px;}
.yc{bottom:741.390000px;}
.yd8{bottom:742.354621px;}
.y101{bottom:742.455000px;}
.y35{bottom:754.470000px;}
.yb{bottom:757.830000px;}
.y100{bottom:760.380000px;}
.y65{bottom:769.260000px;}
.y34{bottom:772.395000px;}
.ya{bottom:774.270000px;}
.yff{bottom:783.735000px;}
.y64{bottom:787.200000px;}
.y33{bottom:790.335000px;}
.y9{bottom:790.710000px;}
.yfe{bottom:796.245000px;}
.y63{bottom:805.125000px;}
.y32{bottom:808.260000px;}
.yfd{bottom:819.600000px;}
.y62{bottom:823.065000px;}
.y31{bottom:826.200000px;}
.yfc{bottom:832.110000px;}
.y8{bottom:840.480000px;}
.y61{bottom:841.005000px;}
.y30{bottom:844.125000px;}
.yfb{bottom:855.465000px;}
.y60{bottom:858.930000px;}
.y7{bottom:861.405000px;}
.y2f{bottom:862.065000px;}
.yfa{bottom:867.975000px;}
.y5f{bottom:876.870000px;}
.y2e{bottom:879.990000px;}
.yf9{bottom:891.330000px;}
.y6{bottom:894.795000px;}
.y2d{bottom:897.930000px;}
.yf8{bottom:903.840000px;}
.y5{bottom:912.735000px;}
.y2c{bottom:915.870000px;}
.yf7{bottom:927.195000px;}
.y4{bottom:930.660000px;}
.y2b{bottom:933.795000px;}
.y5e{bottom:948.600000px;}
.y2a{bottom:951.735000px;}
.yf6{bottom:954.510000px;}
.y3{bottom:963.540000px;}
.y5d{bottom:966.525000px;}
.y29{bottom:969.660000px;}
.y4a{bottom:984.465000px;}
.y28{bottom:987.600000px;}
.yf5{bottom:997.950000px;}
.y49{bottom:1002.390000px;}
.y27{bottom:1005.525000px;}
.yd7{bottom:1010.670000px;}
.y2{bottom:1011.360000px;}
.y48{bottom:1020.330000px;}
.y26{bottom:1023.465000px;}
.yd6{bottom:1028.610000px;}
.yf4{bottom:1030.680000px;}
.y47{bottom:1038.255000px;}
.y25{bottom:1041.390000px;}
.y1{bottom:1044.240000px;}
.yd5{bottom:1046.535000px;}
.y46{bottom:1056.195000px;}
.y24{bottom:1059.330000px;}
.yd4{bottom:1064.475000px;}
.y45{bottom:1074.120000px;}
.y23{bottom:1092.060000px;}
.h8{height:25.251072px;}
.h12{height:28.286544px;}
.he{height:33.466884px;}
.hb{height:34.143480px;}
.h9{height:35.865000px;}
.h6{height:37.657200px;}
.hf{height:40.160261px;}
.ha{height:41.732665px;}
.h4{height:42.801048px;}
.h10{height:43.506950px;}
.h7{height:44.833500px;}
.h11{height:49.373055px;}
.h2{height:50.211000px;}
.h3{height:50.759736px;}
.h5{height:51.118176px;}
.hc{height:51.178176px;}
.h1{height:72.303000px;}
.hd{height:252.827788px;}
.h0{height:1188.000000px;}
.w1{width:337.257962px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:11.096579px;}
.x27{left:14.506742px;}
.x32{left:15.843211px;}
.x20{left:20.523261px;}
.x23{left:24.600053px;}
.x2f{left:25.938127px;}
.x22{left:29.079552px;}
.x30{left:30.416824px;}
.x2d{left:32.488913px;}
.x21{left:33.559051px;}
.x2e{left:37.101577px;}
.x2a{left:42.315893px;}
.x25{left:44.655115px;}
.x38{left:55.285100px;}
.x3c{left:58.895011px;}
.x3a{left:61.769303px;}
.x1f{left:69.056510px;}
.x37{left:71.997384px;}
.x26{left:79.016656px;}
.x14{left:108.000000px;}
.x1{left:111.255000px;}
.x19{left:119.546902px;}
.x1e{left:121.934488px;}
.xe{left:124.395000px;}
.x13{left:130.410000px;}
.xa{left:145.365000px;}
.x31{left:150.747274px;}
.xc{left:152.790000px;}
.x36{left:162.779429px;}
.x9{left:166.095000px;}
.x8{left:167.895000px;}
.x16{left:172.680000px;}
.x1d{left:179.425130px;}
.x10{left:185.205000px;}
.x3b{left:189.118945px;}
.x1a{left:214.588873px;}
.x7{left:235.695000px;}
.x4{left:238.455000px;}
.x35{left:244.203782px;}
.x24{left:248.348762px;}
.x1b{left:253.161175px;}
.xd{left:255.090000px;}
.x5{left:259.605000px;}
.x34{left:263.390058px;}
.x17{left:270.435000px;}
.x39{left:271.879767px;}
.x18{left:273.900000px;}
.x28{left:277.440000px;}
.x2{left:280.020000px;}
.x1c{left:291.734278px;}
.x33{left:304.168417px;}
.x15{left:350.310000px;}
.x3d{left:379.920000px;}
.x12{left:386.850000px;}
.x3{left:392.415000px;}
.x6{left:395.700000px;}
.xb{left:397.020000px;}
.x11{left:402.345000px;}
.x3e{left:411.795000px;}
.xf{left:455.820000px;}
.x29{left:461.501902px;}
.x2c{left:619.035000px;}
@media print{
.v5{vertical-align:-18.538279pt;}
.v6{vertical-align:-17.113653pt;}
.v3{vertical-align:-14.986667pt;}
.v2{vertical-align:-7.946667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.986667pt;}
.v7{vertical-align:17.113653pt;}
.v1{vertical-align:19.306667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001414pt;}
.lse{letter-spacing:0.004153pt;}
.ls25{letter-spacing:0.006208pt;}
.ls1a{letter-spacing:0.006545pt;}
.ls1e{letter-spacing:0.012153pt;}
.ls6{letter-spacing:0.014905pt;}
.lsc{letter-spacing:0.015549pt;}
.ls5{letter-spacing:0.028338pt;}
.ls1b{letter-spacing:0.038739pt;}
.ls8{letter-spacing:2.616831pt;}
.ls9{letter-spacing:2.656161pt;}
.ls11{letter-spacing:2.661357pt;}
.ls10{letter-spacing:7.790819pt;}
.lsf{letter-spacing:8.820576pt;}
.ls1c{letter-spacing:9.817486pt;}
.ls18{letter-spacing:11.204153pt;}
.ls13{letter-spacing:11.790819pt;}
.ls14{letter-spacing:12.377486pt;}
.ls1d{letter-spacing:12.474690pt;}
.lsb{letter-spacing:13.497486pt;}
.ls0{letter-spacing:13.643295pt;}
.ls19{letter-spacing:14.777486pt;}
.ls1{letter-spacing:15.930767pt;}
.ls22{letter-spacing:16.238370pt;}
.ls23{letter-spacing:17.318427pt;}
.ls12{letter-spacing:17.381357pt;}
.ls17{letter-spacing:17.434690pt;}
.ls15{letter-spacing:21.274690pt;}
.ls16{letter-spacing:21.328023pt;}
.ls20{letter-spacing:21.870819pt;}
.ls1f{letter-spacing:23.331703pt;}
.ls24{letter-spacing:24.091760pt;}
.ls21{letter-spacing:24.198427pt;}
.lsd{letter-spacing:26.404153pt;}
.ls4{letter-spacing:156.208023pt;}
.ls3{letter-spacing:232.785093pt;}
.ls2{letter-spacing:233.518370pt;}
.ws74{word-spacing:-9.515191pt;}
.ws42{word-spacing:-8.873712pt;}
.ws76{word-spacing:-8.556826pt;}
.ws73{word-spacing:-7.929326pt;}
.ws75{word-spacing:-7.136393pt;}
.ws78{word-spacing:-7.130689pt;}
.ws77{word-spacing:-6.343461pt;}
.ws9c{word-spacing:-0.063760pt;}
.ws3{word-spacing:-0.053136pt;}
.ws1a{word-spacing:-0.042507pt;}
.ws11{word-spacing:-0.037195pt;}
.ws1d{word-spacing:0.000000pt;}
.wsa0{word-spacing:7.642537pt;}
.wsa2{word-spacing:7.695870pt;}
.ws6c{word-spacing:8.767440pt;}
.ws88{word-spacing:8.798057pt;}
.ws6b{word-spacing:8.808318pt;}
.ws69{word-spacing:8.829531pt;}
.ws41{word-spacing:8.830771pt;}
.ws43{word-spacing:10.433147pt;}
.ws51{word-spacing:11.169240pt;}
.ws45{word-spacing:11.756104pt;}
.ws8f{word-spacing:12.454453pt;}
.ws54{word-spacing:12.459813pt;}
.ws8d{word-spacing:12.496960pt;}
.ws3e{word-spacing:12.593232pt;}
.ws4a{word-spacing:12.752000pt;}
.ws38{word-spacing:13.549680pt;}
.ws99{word-spacing:14.027904pt;}
.ws9d{word-spacing:14.240448pt;}
.ws33{word-spacing:14.293584pt;}
.ws57{word-spacing:14.452992pt;}
.ws6a{word-spacing:14.559264pt;}
.ws17{word-spacing:14.962347pt;}
.ws66{word-spacing:14.984352pt;}
.ws18{word-spacing:15.004853pt;}
.ws91{word-spacing:15.118780pt;}
.ws3a{word-spacing:15.143760pt;}
.wsb{word-spacing:15.158517pt;}
.ws8c{word-spacing:15.172113pt;}
.ws97{word-spacing:15.196896pt;}
.ws60{word-spacing:15.356304pt;}
.ws26{word-spacing:15.568848pt;}
.ws3f{word-spacing:15.621984pt;}
.ws82{word-spacing:15.728256pt;}
.ws72{word-spacing:15.781392pt;}
.ws9e{word-spacing:15.940800pt;}
.wsa5{word-spacing:15.993936pt;}
.ws5e{word-spacing:16.100208pt;}
.ws5f{word-spacing:16.206480pt;}
.ws1c{word-spacing:16.237547pt;}
.ws7f{word-spacing:16.259616pt;}
.ws19{word-spacing:16.279173pt;}
.ws34{word-spacing:16.312752pt;}
.ws35{word-spacing:16.365888pt;}
.ws98{word-spacing:16.419024pt;}
.ws92{word-spacing:16.525296pt;}
.ws5c{word-spacing:16.578432pt;}
.ws4e{word-spacing:16.631568pt;}
.ws28{word-spacing:16.684704pt;}
.ws84{word-spacing:16.747627pt;}
.ws2b{word-spacing:16.790976pt;}
.ws8e{word-spacing:16.832640pt;}
.ws8b{word-spacing:16.875147pt;}
.ws4c{word-spacing:16.897248pt;}
.ws24{word-spacing:17.003520pt;}
.ws3b{word-spacing:17.109792pt;}
.ws23{word-spacing:17.162928pt;}
.wsc{word-spacing:17.166901pt;}
.ws85{word-spacing:17.215200pt;}
.ws90{word-spacing:17.257707pt;}
.ws37{word-spacing:17.300213pt;}
.ws52{word-spacing:17.322336pt;}
.ws40{word-spacing:17.366480pt;}
.ws53{word-spacing:17.367775pt;}
.ws27{word-spacing:17.375472pt;}
.ws2c{word-spacing:17.428608pt;}
.ws65{word-spacing:17.534880pt;}
.wsa3{word-spacing:17.588016pt;}
.ws81{word-spacing:17.633147pt;}
.ws6{word-spacing:17.641152pt;}
.ws64{word-spacing:17.694288pt;}
.ws80{word-spacing:17.800560pt;}
.ws4b{word-spacing:17.810293pt;}
.ws29{word-spacing:18.119376pt;}
.ws7c{word-spacing:18.225648pt;}
.ws7e{word-spacing:18.320373pt;}
.ws4d{word-spacing:18.544464pt;}
.ws4f{word-spacing:18.597600pt;}
.wsd{word-spacing:18.792736pt;}
.ws2{word-spacing:18.863280pt;}
.ws5{word-spacing:18.916416pt;}
.ws50{word-spacing:18.966480pt;}
.ws7{word-spacing:18.969552pt;}
.ws1b{word-spacing:18.993050pt;}
.ws63{word-spacing:19.075824pt;}
.ws2e{word-spacing:19.288368pt;}
.ws89{word-spacing:19.393147pt;}
.ws70{word-spacing:19.394640pt;}
.ws71{word-spacing:19.447776pt;}
.ws2d{word-spacing:19.500912pt;}
.ws94{word-spacing:19.601202pt;}
.ws5d{word-spacing:19.607184pt;}
.ws9a{word-spacing:19.660320pt;}
.ws49{word-spacing:19.765600pt;}
.ws58{word-spacing:19.819728pt;}
.ws21{word-spacing:19.872864pt;}
.ws2a{word-spacing:19.979136pt;}
.ws2f{word-spacing:20.085408pt;}
.ws1f{word-spacing:20.138544pt;}
.ws25{word-spacing:20.191680pt;}
.ws32{word-spacing:20.244816pt;}
.ws55{word-spacing:20.297952pt;}
.ws67{word-spacing:20.351088pt;}
.ws79{word-spacing:20.445707pt;}
.ws30{word-spacing:20.457360pt;}
.ws95{word-spacing:20.619813pt;}
.ws7a{word-spacing:20.669904pt;}
.ws59{word-spacing:20.776176pt;}
.ws6f{word-spacing:20.882448pt;}
.ws9b{word-spacing:20.935584pt;}
.wsa1{word-spacing:21.041856pt;}
.ws5b{word-spacing:21.148128pt;}
.ws93{word-spacing:21.466944pt;}
.ws83{word-spacing:21.520080pt;}
.ws61{word-spacing:21.573216pt;}
.ws20{word-spacing:21.626352pt;}
.ws4{word-spacing:21.639246pt;}
.ws87{word-spacing:21.739813pt;}
.ws6e{word-spacing:21.785760pt;}
.ws86{word-spacing:21.838896pt;}
.ws68{word-spacing:21.892032pt;}
.ws5a{word-spacing:21.945168pt;}
.ws44{word-spacing:22.104576pt;}
.ws22{word-spacing:22.210848pt;}
.ws39{word-spacing:22.689072pt;}
.ws96{word-spacing:22.742208pt;}
.ws7b{word-spacing:22.901616pt;}
.ws31{word-spacing:23.007888pt;}
.ws56{word-spacing:23.273568pt;}
.ws36{word-spacing:23.782480pt;}
.ws62{word-spacing:23.911200pt;}
.ws9f{word-spacing:24.336288pt;}
.ws6d{word-spacing:24.513147pt;}
.ws3c{word-spacing:24.655104pt;}
.ws48{word-spacing:25.333973pt;}
.wsa4{word-spacing:26.142912pt;}
.ws9{word-spacing:26.778453pt;}
.wsa{word-spacing:27.352277pt;}
.ws8{word-spacing:27.687008pt;}
.ws3d{word-spacing:29.070899pt;}
.ws8a{word-spacing:32.031053pt;}
.ws0{word-spacing:34.246373pt;}
.ws1{word-spacing:34.338187pt;}
.wse{word-spacing:67.544539pt;}
.ws1e{word-spacing:71.602480pt;}
.ws7d{word-spacing:82.573374pt;}
.wsf{word-spacing:108.619813pt;}
.ws13{word-spacing:123.669594pt;}
.ws14{word-spacing:131.136260pt;}
.ws15{word-spacing:134.496260pt;}
.ws16{word-spacing:135.989594pt;}
.ws10{word-spacing:141.087038pt;}
.ws12{word-spacing:155.927775pt;}
.ws47{word-spacing:633.871632pt;}
.ws46{word-spacing:1137.979525pt;}
._2{margin-left:-4.389854pt;}
._0{margin-left:-2.754400pt;}
._3{margin-left:-1.487808pt;}
._1{width:1.477083pt;}
._8{width:2.754400pt;}
._1e{width:5.953899pt;}
._19{width:12.457223pt;}
._10{width:13.925865pt;}
._23{width:14.844949pt;}
._11{width:15.768487pt;}
._e{width:17.273029pt;}
._d{width:18.613698pt;}
._b{width:21.254400pt;}
._14{width:22.317120pt;}
._7{width:24.004971pt;}
._17{width:25.273248pt;}
._18{width:26.302320pt;}
._1b{width:27.365040pt;}
._5{width:28.845381pt;}
._9{width:30.916480pt;}
._1c{width:32.795637pt;}
._1d{width:34.124037pt;}
._a{width:35.601120pt;}
._c{width:37.004107pt;}
._f{width:39.619022pt;}
._1a{width:40.755312pt;}
._4{width:42.845525pt;}
._25{width:48.209160pt;}
._6{width:49.306341pt;}
._16{width:50.795467pt;}
._24{width:55.582292pt;}
._13{width:61.053264pt;}
._12{width:72.165717pt;}
._1f{width:98.822788pt;}
._22{width:107.396728pt;}
._21{width:115.129246pt;}
._20{width:131.079171pt;}
._15{width:733.760843pt;}
.fsb{font-size:22.818204pt;}
.fsa{font-size:25.670479pt;}
.fs7{font-size:28.522755pt;}
.fs5{font-size:31.882667pt;}
.fs8{font-size:34.227305pt;}
.fs9{font-size:37.079581pt;}
.fs3{font-size:37.194667pt;}
.fs6{font-size:42.506667pt;}
.fs4{font-size:47.818667pt;}
.fs2{font-size:53.136000pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:6.536577pt;}
.yad{bottom:6.537290pt;}
.y83{bottom:10.637436pt;}
.y81{bottom:13.073279pt;}
.y86{bottom:15.866370pt;}
.y77{bottom:15.926268pt;}
.y91{bottom:16.104535pt;}
.y92{bottom:22.105723pt;}
.yaf{bottom:22.164907pt;}
.y9c{bottom:22.165620pt;}
.y74{bottom:24.483094pt;}
.y78{bottom:28.404973pt;}
.y22{bottom:30.906667pt;}
.yc7{bottom:38.625389pt;}
.y75{bottom:40.229794pt;}
.y79{bottom:40.883678pt;}
.ya5{bottom:42.249918pt;}
.ydf{bottom:42.844617pt;}
.y21{bottom:43.533333pt;}
.yc0{bottom:46.290879pt;}
.y93{bottom:48.014367pt;}
.y7a{bottom:53.421568pt;}
.yc8{bottom:55.085158pt;}
.y76{bottom:55.917309pt;}
.y20{bottom:56.146667pt;}
.yd9{bottom:58.353865pt;}
.y7b{bottom:61.146243pt;}
.ya6{bottom:62.394826pt;}
.yc1{bottom:70.416851pt;}
.yc9{bottom:71.545639pt;}
.y94{bottom:73.863113pt;}
.yda{bottom:76.477223pt;}
.y87{bottom:77.190292pt;}
.y7c{bottom:79.923485pt;}
.ya7{bottom:82.479124pt;}
.y9b{bottom:83.370460pt;}
.yae{bottom:87.410708pt;}
.yca{bottom:88.005408pt;}
.y84{bottom:90.738601pt;}
.y88{bottom:93.293526pt;}
.yc2{bottom:94.601295pt;}
.y8d{bottom:94.957829pt;}
.y7d{bottom:98.701441pt;}
.y95{bottom:99.771044pt;}
.y1f{bottom:99.773333pt;}
.yf3{bottom:101.933333pt;}
.ya8{bottom:102.623319pt;}
.y44{bottom:104.226667pt;}
.ycb{bottom:104.465176pt;}
.y5c{bottom:105.560000pt;}
.y89{bottom:109.338289pt;}
.ydb{bottom:112.666181pt;}
.y1e{bottom:112.840000pt;}
.y8f{bottom:114.040000pt;}
.y7e{bottom:117.478683pt;}
.yf2{bottom:117.866667pt;}
.yc3{bottom:118.726554pt;}
.y43{bottom:120.160000pt;}
.ycc{bottom:120.925658pt;}
.y5b{bottom:121.506667pt;}
.ya9{bottom:122.767515pt;}
.y8a{bottom:125.441523pt;}
.y96{bottom:125.619790pt;}
.y1d{bottom:125.906667pt;}
.y8e{bottom:126.653333pt;}
.ydc{bottom:130.789539pt;}
.yf1{bottom:133.813333pt;}
.y42{bottom:136.106667pt;}
.y7f{bottom:136.256638pt;}
.ycd{bottom:137.385426pt;}
.y5a{bottom:137.440000pt;}
.yd3{bottom:138.640000pt;}
.ya2{bottom:141.366490pt;}
.y8b{bottom:141.485572pt;}
.yb5{bottom:141.901292pt;}
.yaa{bottom:142.852525pt;}
.ydd{bottom:148.912898pt;}
.yf0{bottom:149.746667pt;}
.yd2{bottom:151.253333pt;}
.ya1{bottom:151.350167pt;}
.y97{bottom:151.527721pt;}
.yb4{bottom:151.884969pt;}
.yce{bottom:153.845195pt;}
.y80{bottom:155.033881pt;}
.y8c{bottom:157.529622pt;}
.y85{bottom:158.533333pt;}
.ya0{bottom:161.332418pt;}
.yb3{bottom:161.867220pt;}
.y59{bottom:161.960000pt;}
.yab{bottom:162.996721pt;}
.yd1{bottom:163.880000pt;}
.yef{bottom:165.693333pt;}
.yc4{bottom:167.037682pt;}
.y41{bottom:168.586667pt;}
.ycf{bottom:170.305677pt;}
.y9f{bottom:171.375280pt;}
.yb2{bottom:171.910082pt;}
.y73{bottom:175.070774pt;}
.ye2{bottom:176.663399pt;}
.y98{bottom:177.376467pt;}
.y9e{bottom:181.357531pt;}
.yee{bottom:181.626667pt;}
.yb1{bottom:181.893046pt;}
.yac{bottom:183.140203pt;}
.yde{bottom:185.161040pt;}
.ye1{bottom:185.458390pt;}
.yd0{bottom:186.765445pt;}
.yc5{bottom:191.162228pt;}
.ye0{bottom:194.252668pt;}
.ya3{bottom:195.737991pt;}
.yc6{bottom:195.760000pt;}
.yb6{bottom:196.272792pt;}
.y58{bottom:196.493333pt;}
.y99{bottom:203.225214pt;}
.yb0{bottom:203.343583pt;}
.y9d{bottom:203.344296pt;}
.yed{bottom:210.720000pt;}
.ybf{bottom:212.284107pt;}
.y57{bottom:212.426667pt;}
.y82{bottom:216.119638pt;}
.y56{bottom:228.373333pt;}
.y55{bottom:244.306667pt;}
.yec{bottom:249.333333pt;}
.y54{bottom:260.253333pt;}
.yeb{bottom:265.280000pt;}
.y53{bottom:276.186667pt;}
.yea{bottom:281.226667pt;}
.y52{bottom:292.133333pt;}
.ye9{bottom:297.160000pt;}
.ye8{bottom:313.106667pt;}
.y51{bottom:324.733333pt;}
.y50{bottom:337.346667pt;}
.y1c{bottom:339.720000pt;}
.ye7{bottom:346.920000pt;}
.y4f{bottom:349.973333pt;}
.y1b{bottom:358.306667pt;}
.ye6{bottom:359.533333pt;}
.y4e{bottom:362.586667pt;}
.y4d{bottom:375.200000pt;}
.y1a{bottom:376.906667pt;}
.ye5{bottom:391.413333pt;}
.y19{bottom:395.506667pt;}
.y4c{bottom:407.080000pt;}
.ye4{bottom:407.950774pt;}
.y72{bottom:413.573333pt;}
.y18{bottom:414.106667pt;}
.y71{bottom:429.520000pt;}
.y17{bottom:432.706667pt;}
.y70{bottom:445.453333pt;}
.ybe{bottom:450.800000pt;}
.y16{bottom:451.293333pt;}
.y40{bottom:459.466667pt;}
.y6f{bottom:461.400000pt;}
.ybd{bottom:466.733333pt;}
.y15{bottom:469.893333pt;}
.y6e{bottom:477.333333pt;}
.ybc{bottom:482.680000pt;}
.y14{bottom:488.493333pt;}
.y3f{bottom:488.560000pt;}
.y6d{bottom:493.280000pt;}
.ybb{bottom:498.613333pt;}
.y13{bottom:507.093333pt;}
.y6c{bottom:509.213333pt;}
.yba{bottom:514.560000pt;}
.y6b{bottom:525.160000pt;}
.y12{bottom:525.680000pt;}
.y3e{bottom:527.173333pt;}
.yb9{bottom:539.080000pt;}
.y3d{bottom:543.120000pt;}
.y11{bottom:544.280000pt;}
.y6a{bottom:549.680000pt;}
.y3c{bottom:559.053333pt;}
.y10{bottom:562.880000pt;}
.y3b{bottom:575.000000pt;}
.y69{bottom:584.200000pt;}
.y3a{bottom:590.933333pt;}
.yf{bottom:591.173333pt;}
.yb8{bottom:591.480000pt;}
.y68{bottom:600.146667pt;}
.yb7{bottom:604.093333pt;}
.y39{bottom:606.880000pt;}
.y4b{bottom:609.973333pt;}
.y104{bottom:612.133333pt;}
.y67{bottom:616.080000pt;}
.y38{bottom:622.813333pt;}
.ye{bottom:629.786667pt;}
.y103{bottom:632.893333pt;}
.ya4{bottom:635.973333pt;}
.y37{bottom:638.760000pt;}
.ye3{bottom:643.333333pt;}
.yd{bottom:644.400000pt;}
.y66{bottom:645.173333pt;}
.y102{bottom:648.840000pt;}
.y90{bottom:652.510774pt;}
.y36{bottom:654.693333pt;}
.yc{bottom:659.013333pt;}
.yd8{bottom:659.870774pt;}
.y101{bottom:659.960000pt;}
.y35{bottom:670.640000pt;}
.yb{bottom:673.626667pt;}
.y100{bottom:675.893333pt;}
.y65{bottom:683.786667pt;}
.y34{bottom:686.573333pt;}
.ya{bottom:688.240000pt;}
.yff{bottom:696.653333pt;}
.y64{bottom:699.733333pt;}
.y33{bottom:702.520000pt;}
.y9{bottom:702.853333pt;}
.yfe{bottom:707.773333pt;}
.y63{bottom:715.666667pt;}
.y32{bottom:718.453333pt;}
.yfd{bottom:728.533333pt;}
.y62{bottom:731.613333pt;}
.y31{bottom:734.400000pt;}
.yfc{bottom:739.653333pt;}
.y8{bottom:747.093333pt;}
.y61{bottom:747.560000pt;}
.y30{bottom:750.333333pt;}
.yfb{bottom:760.413333pt;}
.y60{bottom:763.493333pt;}
.y7{bottom:765.693333pt;}
.y2f{bottom:766.280000pt;}
.yfa{bottom:771.533333pt;}
.y5f{bottom:779.440000pt;}
.y2e{bottom:782.213333pt;}
.yf9{bottom:792.293333pt;}
.y6{bottom:795.373333pt;}
.y2d{bottom:798.160000pt;}
.yf8{bottom:803.413333pt;}
.y5{bottom:811.320000pt;}
.y2c{bottom:814.106667pt;}
.yf7{bottom:824.173333pt;}
.y4{bottom:827.253333pt;}
.y2b{bottom:830.040000pt;}
.y5e{bottom:843.200000pt;}
.y2a{bottom:845.986667pt;}
.yf6{bottom:848.453333pt;}
.y3{bottom:856.480000pt;}
.y5d{bottom:859.133333pt;}
.y29{bottom:861.920000pt;}
.y4a{bottom:875.080000pt;}
.y28{bottom:877.866667pt;}
.yf5{bottom:887.066667pt;}
.y49{bottom:891.013333pt;}
.y27{bottom:893.800000pt;}
.yd7{bottom:898.373333pt;}
.y2{bottom:898.986667pt;}
.y48{bottom:906.960000pt;}
.y26{bottom:909.746667pt;}
.yd6{bottom:914.320000pt;}
.yf4{bottom:916.160000pt;}
.y47{bottom:922.893333pt;}
.y25{bottom:925.680000pt;}
.y1{bottom:928.213333pt;}
.yd5{bottom:930.253333pt;}
.y46{bottom:938.840000pt;}
.y24{bottom:941.626667pt;}
.yd4{bottom:946.200000pt;}
.y45{bottom:954.773333pt;}
.y23{bottom:970.720000pt;}
.h8{height:22.445397pt;}
.h12{height:25.143595pt;}
.he{height:29.748342pt;}
.hb{height:30.349760pt;}
.h9{height:31.880000pt;}
.h6{height:33.473067pt;}
.hf{height:35.698010pt;}
.ha{height:37.095702pt;}
.h4{height:38.045376pt;}
.h10{height:38.672844pt;}
.h7{height:39.852000pt;}
.h11{height:43.887160pt;}
.h2{height:44.632000pt;}
.h3{height:45.119765pt;}
.h5{height:45.438379pt;}
.hc{height:45.491712pt;}
.h1{height:64.269333pt;}
.hd{height:224.735812pt;}
.h0{height:1056.000000pt;}
.w1{width:299.784855pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:9.863626pt;}
.x27{left:12.894882pt;}
.x32{left:14.082854pt;}
.x20{left:18.242898pt;}
.x23{left:21.866714pt;}
.x2f{left:23.056113pt;}
.x22{left:25.848491pt;}
.x30{left:27.037177pt;}
.x2d{left:28.879033pt;}
.x21{left:29.830267pt;}
.x2e{left:32.979179pt;}
.x2a{left:37.614127pt;}
.x25{left:39.693436pt;}
.x38{left:49.142311pt;}
.x3c{left:52.351121pt;}
.x3a{left:54.906047pt;}
.x1f{left:61.383564pt;}
.x37{left:63.997675pt;}
.x26{left:70.237027pt;}
.x14{left:96.000000pt;}
.x1{left:98.893333pt;}
.x19{left:106.263913pt;}
.x1e{left:108.386212pt;}
.xe{left:110.573333pt;}
.x13{left:115.920000pt;}
.xa{left:129.213333pt;}
.x31{left:133.997577pt;}
.xc{left:135.813333pt;}
.x36{left:144.692826pt;}
.x9{left:147.640000pt;}
.x8{left:149.240000pt;}
.x16{left:153.493333pt;}
.x1d{left:159.489005pt;}
.x10{left:164.626667pt;}
.x3b{left:168.105729pt;}
.x1a{left:190.745665pt;}
.x7{left:209.506667pt;}
.x4{left:211.960000pt;}
.x35{left:217.070028pt;}
.x24{left:220.754455pt;}
.x1b{left:225.032155pt;}
.xd{left:226.746667pt;}
.x5{left:230.760000pt;}
.x34{left:234.124496pt;}
.x17{left:240.386667pt;}
.x39{left:241.670904pt;}
.x18{left:243.466667pt;}
.x28{left:246.613333pt;}
.x2{left:248.906667pt;}
.x1c{left:259.319359pt;}
.x33{left:270.371926pt;}
.x15{left:311.386667pt;}
.x3d{left:337.706667pt;}
.x12{left:343.866667pt;}
.x3{left:348.813333pt;}
.x6{left:351.733333pt;}
.xb{left:352.906667pt;}
.x11{left:357.640000pt;}
.x3e{left:366.040000pt;}
.xf{left:405.173333pt;}
.x29{left:410.223913pt;}
.x2c{left:550.253333pt;}
}




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