
    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_81d5cf93fb4db7f242cea5d2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895000;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_4c5e997c028c00f5397c68a5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_3dab084e2f707e792bad83d8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.213000;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_55f5e6b742dab4efb44cd02f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.726000;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_4f2a489f3e08014da94aba84.woff')format("woff");}.ff5{font-family:ff5;line-height:0.709000;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_e1482cf0f7c05c09c4b602c8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1db6146e6b878c9cd5a3ee94.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_59aa8fdb4b4e93ed508ce347.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1096bfc6f11e05ac36b1ed23.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683000;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_2efe6835dab199d0655ecc62.woff')format("woff");}.ffa{font-family:ffa;line-height:1.115000;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_25d2bac72de8c2df97d52d60.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_955f2ac3dfd40f04a9546261.woff')format("woff");}.ffc{font-family:ffc;line-height:0.735000;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_787cb5c18d08a47d45f1ebbe.woff')format("woff");}.ffd{font-family:ffd;line-height:0.697000;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_9fd40bc47f5c5342c050d1b9.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2e424e44130dd1b9ac246418.woff')format("woff");}.fff{font-family:fff;line-height:0.046000;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_3ad047995628e78693e1f705.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4b63d0effc70c36ae1b89746.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_aee6adb0bcd304a1c76ef08c.woff')format("woff");}.ff12{font-family:ff12;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-10.134000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.754000px;}
.v3{vertical-align:27.024000px;}
.ls9{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.001287px;}
.ls21{letter-spacing:0.002688px;}
.ls1{letter-spacing:0.002823px;}
.ls29{letter-spacing:0.004335px;}
.ls12{letter-spacing:0.004587px;}
.ls10{letter-spacing:0.005317px;}
.ls2c{letter-spacing:0.007287px;}
.ls27{letter-spacing:0.009044px;}
.lsd{letter-spacing:0.011317px;}
.ls34{letter-spacing:0.012640px;}
.ls1d{letter-spacing:0.016837px;}
.ls7{letter-spacing:0.024544px;}
.ls26{letter-spacing:2.984915px;}
.ls30{letter-spacing:5.344571px;}
.ls2e{letter-spacing:5.350571px;}
.ls17{letter-spacing:10.865464px;}
.lsf{letter-spacing:10.930918px;}
.ls14{letter-spacing:14.530921px;}
.ls2b{letter-spacing:14.596376px;}
.ls8{letter-spacing:14.983295px;}
.ls2{letter-spacing:14.989295px;}
.ls31{letter-spacing:15.643649px;}
.ls1a{letter-spacing:16.252571px;}
.lse{letter-spacing:16.258571px;}
.ls6{letter-spacing:16.557841px;}
.ls32{letter-spacing:16.690923px;}
.ls11{letter-spacing:18.130924px;}
.lsc{letter-spacing:18.196379px;}
.ls1b{letter-spacing:19.505471px;}
.ls5{letter-spacing:20.084602px;}
.ls22{letter-spacing:21.170367px;}
.ls25{letter-spacing:21.170915px;}
.ls23{letter-spacing:21.176367px;}
.ls1f{letter-spacing:21.600018px;}
.ls18{letter-spacing:21.665473px;}
.lsa{letter-spacing:21.730927px;}
.ls33{letter-spacing:21.861836px;}
.lsb{letter-spacing:21.927291px;}
.ls19{letter-spacing:21.992746px;}
.ls3{letter-spacing:22.356074px;}
.ls2f{letter-spacing:22.450928px;}
.ls24{letter-spacing:23.530571px;}
.ls2a{letter-spacing:24.547460px;}
.ls1c{letter-spacing:25.461839px;}
.ls4{letter-spacing:26.241488px;}
.ls20{letter-spacing:26.770931px;}
.ls1e{letter-spacing:27.046571px;}
.ls0{letter-spacing:37.081972px;}
.ls28{letter-spacing:488.296571px;}
.ls2d{letter-spacing:603.232571px;}
.ls16{letter-spacing:992.272571px;}
.ls13{letter-spacing:1008.634571px;}
.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;}
}
.ws1c{word-spacing:-65.454600px;}
.ws5{word-spacing:-38.961736px;}
.ws19{word-spacing:-32.544027px;}
.ws60{word-spacing:-18.471288px;}
.ws23{word-spacing:-18.183288px;}
.ws42{word-spacing:-16.769469px;}
.ws44{word-spacing:-16.114923px;}
.ws61{word-spacing:-16.049468px;}
.ws51{word-spacing:-15.787650px;}
.ws53{word-spacing:-15.722195px;}
.ws76{word-spacing:-15.656740px;}
.ws77{word-spacing:-15.525831px;}
.ws75{word-spacing:-15.329467px;}
.ws65{word-spacing:-15.002194px;}
.ws66{word-spacing:-13.693102px;}
.ws34{word-spacing:-13.169466px;}
.ws2c{word-spacing:-12.645829px;}
.ws21{word-spacing:-12.580374px;}
.ws45{word-spacing:-12.449465px;}
.ws7a{word-spacing:-12.384010px;}
.ws3c{word-spacing:-12.253101px;}
.ws62{word-spacing:-12.187647px;}
.wsa{word-spacing:-11.829591px;}
.ws81{word-spacing:-11.794919px;}
.ws5e{word-spacing:-11.664010px;}
.ws7d{word-spacing:-11.533101px;}
.ws3e{word-spacing:-11.336737px;}
.ws28{word-spacing:-11.271282px;}
.ws2f{word-spacing:-11.205828px;}
.ws32{word-spacing:-11.140373px;}
.ws5f{word-spacing:-11.074918px;}
.ws31{word-spacing:-11.009464px;}
.ws1b{word-spacing:-10.944009px;}
.ws14{word-spacing:-10.878555px;}
.ws17{word-spacing:-10.813100px;}
.ws20{word-spacing:-10.747645px;}
.ws3b{word-spacing:-10.682191px;}
.ws29{word-spacing:-10.616736px;}
.ws39{word-spacing:-10.551282px;}
.ws1a{word-spacing:-10.485827px;}
.ws22{word-spacing:-10.420372px;}
.ws2a{word-spacing:-10.354918px;}
.ws10{word-spacing:-10.215650px;}
.ws49{word-spacing:-10.158554px;}
.ws5c{word-spacing:-10.093099px;}
.ws11{word-spacing:-10.036323px;}
.ws1f{word-spacing:-10.027645px;}
.wse{word-spacing:-9.976548px;}
.ws5d{word-spacing:-9.962190px;}
.ws79{word-spacing:-9.831281px;}
.wsb{word-spacing:-9.797221px;}
.ws72{word-spacing:-9.765826px;}
.wsd{word-spacing:-9.737445px;}
.ws71{word-spacing:-9.634917px;}
.ws56{word-spacing:-9.504008px;}
.ws30{word-spacing:-9.438553px;}
.ws33{word-spacing:-9.307644px;}
.ws47{word-spacing:-9.176735px;}
.ws64{word-spacing:-9.111280px;}
.ws7b{word-spacing:-8.980371px;}
.ws36{word-spacing:-8.914917px;}
.wsc{word-spacing:-8.840811px;}
.ws59{word-spacing:-8.784007px;}
.ws38{word-spacing:-8.718553px;}
.ws4{word-spacing:-8.601709px;}
.ws58{word-spacing:-8.587644px;}
.ws4b{word-spacing:-8.522189px;}
.ws6d{word-spacing:-8.456734px;}
.ws48{word-spacing:-8.260371px;}
.ws41{word-spacing:-8.129461px;}
.ws40{word-spacing:-8.064007px;}
.ws43{word-spacing:-7.933098px;}
.ws25{word-spacing:-7.867643px;}
.ws73{word-spacing:-7.605825px;}
.ws1e{word-spacing:-7.252370px;}
.ws35{word-spacing:-6.820369px;}
.ws7{word-spacing:-6.688890px;}
.ws3{word-spacing:-6.629114px;}
.ws2{word-spacing:-6.569338px;}
.ws27{word-spacing:-6.231278px;}
.ws3a{word-spacing:-6.165823px;}
.ws57{word-spacing:-6.100369px;}
.ws37{word-spacing:-6.034914px;}
.ws52{word-spacing:-5.773096px;}
.ws70{word-spacing:-5.511277px;}
.ws26{word-spacing:-4.987641px;}
.ws63{word-spacing:-4.660368px;}
.ws6b{word-spacing:-4.464004px;}
.ws74{word-spacing:-4.398549px;}
.ws3f{word-spacing:-4.071276px;}
.ws5b{word-spacing:-3.874912px;}
.ws6c{word-spacing:-3.678549px;}
.ws6f{word-spacing:-3.613094px;}
.ws4e{word-spacing:-3.586912px;}
.ws3d{word-spacing:-3.351276px;}
.ws6a{word-spacing:-2.238547px;}
.ws69{word-spacing:-0.314182px;}
.ws68{word-spacing:-0.117818px;}
.ws46{word-spacing:-0.065455px;}
.ws8{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.052364px;}
.ws5a{word-spacing:-0.047821px;}
.ws13{word-spacing:0.000000px;}
.ws1d{word-spacing:0.013091px;}
.ws78{word-spacing:0.209455px;}
.ws4a{word-spacing:1.453092px;}
.ws55{word-spacing:2.631275px;}
.ws12{word-spacing:3.299613px;}
.ws6{word-spacing:5.750413px;}
.ws9{word-spacing:7.059498px;}
.ws2d{word-spacing:10.800009px;}
.ws2e{word-spacing:10.865464px;}
.ws82{word-spacing:22.320019px;}
.ws80{word-spacing:23.105474px;}
.ws6e{word-spacing:23.170928px;}
.ws1{word-spacing:23.312640px;}
.ws7f{word-spacing:23.563656px;}
.ws4f{word-spacing:24.639066px;}
.ws7c{word-spacing:24.642010px;}
.wsf{word-spacing:26.181713px;}
.ws2b{word-spacing:26.755738px;}
.ws50{word-spacing:26.827469px;}
.ws67{word-spacing:28.341842px;}
.ws4c{word-spacing:31.418178px;}
.ws16{word-spacing:31.504255px;}
.ws0{word-spacing:37.081972px;}
.ws54{word-spacing:75.927336px;}
.ws24{word-spacing:1062.660010px;}
.ws4d{word-spacing:1123.999482px;}
.ws7e{word-spacing:2143.818592px;}
.ws15{word-spacing:2176.356592px;}
._6{margin-left:-22.356074px;}
._21{margin-left:-7.833025px;}
._18{margin-left:-6.010739px;}
._a{margin-left:-4.901599px;}
._0{margin-left:-3.098772px;}
._1{margin-left:-1.936742px;}
._3{width:1.793268px;}
._9{width:3.706087px;}
._11{width:4.778186px;}
._19{width:17.946803px;}
._1f{width:19.066510px;}
._e{width:21.049486px;}
._1b{width:22.085872px;}
._1d{width:23.105474px;}
._2{width:24.268894px;}
._8{width:26.062162px;}
._7{width:27.209892px;}
._c{width:28.442413px;}
._5{width:29.588922px;}
._4{width:31.322414px;}
._d{width:32.743309px;}
._12{width:34.518803px;}
._15{width:35.777672px;}
._1a{width:37.478590px;}
._17{width:38.607130px;}
._13{width:41.071999px;}
._14{width:43.111433px;}
._10{width:44.118625px;}
._20{width:46.065708px;}
._f{width:47.270786px;}
._1e{width:48.354796px;}
._16{width:50.357914px;}
._1c{width:919.601393px;}
._b{width:1089.557272px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y12{bottom:60.180000px;}
.ye9{bottom:105.010500px;}
.y2f{bottom:108.934500px;}
.yd0{bottom:124.441500px;}
.y69{bottom:125.070000px;}
.yb6{bottom:130.533000px;}
.y9b{bottom:131.974500px;}
.y2e{bottom:137.386500px;}
.y4c{bottom:142.485000px;}
.ye8{bottom:147.691500px;}
.y81{bottom:150.253500px;}
.ycf{bottom:152.895000px;}
.y68{bottom:153.523500px;}
.yb5{bottom:158.986500px;}
.y9a{bottom:160.426500px;}
.y2d{bottom:165.840000px;}
.y4b{bottom:170.938500px;}
.ye7{bottom:176.143500px;}
.y80{bottom:178.707000px;}
.yb4{bottom:187.440000px;}
.y99{bottom:188.880000px;}
.y2c{bottom:194.293500px;}
.yce{bottom:195.574500px;}
.y67{bottom:196.203000px;}
.y4a{bottom:199.390500px;}
.ye6{bottom:204.597000px;}
.y7f{bottom:207.160500px;}
.yb3{bottom:215.893500px;}
.y98{bottom:217.333500px;}
.y2b{bottom:222.747000px;}
.ycd{bottom:224.028000px;}
.y66{bottom:224.656500px;}
.y49{bottom:227.844000px;}
.y7e{bottom:235.612500px;}
.ye5{bottom:247.276500px;}
.y2a{bottom:251.199000px;}
.ycc{bottom:252.481500px;}
.y65{bottom:253.108500px;}
.y48{bottom:256.297500px;}
.yb2{bottom:258.573000px;}
.y97{bottom:260.013000px;}
.y7d{bottom:264.066000px;}
.ye4{bottom:275.730000px;}
.y29{bottom:279.652500px;}
.ycb{bottom:280.935000px;}
.yb1{bottom:287.026500px;}
.y96{bottom:288.466500px;}
.y7c{bottom:292.519500px;}
.y64{bottom:295.789500px;}
.y47{bottom:298.977000px;}
.ye3{bottom:308.409000px;}
.yb0{bottom:315.478500px;}
.y95{bottom:320.442000px;}
.yca{bottom:323.614500px;}
.y63{bottom:324.241500px;}
.y46{bottom:327.430500px;}
.y28{bottom:331.119000px;}
.y7b{bottom:335.199000px;}
.yaf{bottom:343.932000px;}
.yc9{bottom:352.068000px;}
.y62{bottom:352.695000px;}
.ye2{bottom:353.470500px;}
.y45{bottom:355.884000px;}
.y94{bottom:356.775000px;}
.y7a{bottom:363.652500px;}
.yae{bottom:372.385500px;}
.yc8{bottom:380.521500px;}
.y61{bottom:381.148500px;}
.y27{bottom:382.587000px;}
.y44{bottom:384.337500px;}
.y93{bottom:385.228500px;}
.y79{bottom:392.106000px;}
.ye1{bottom:396.150000px;}
.yc7{bottom:408.973500px;}
.y60{bottom:409.602000px;}
.y26{bottom:411.039000px;}
.y92{bottom:413.682000px;}
.yad{bottom:415.065000px;}
.y78{bottom:420.558000px;}
.ye0{bottom:424.603500px;}
.y43{bottom:427.017000px;}
.y25{bottom:439.492500px;}
.y91{bottom:442.134000px;}
.yac{bottom:447.040500px;}
.yc6{bottom:451.654500px;}
.y5f{bottom:452.281500px;}
.ydf{bottom:453.057000px;}
.y42{bottom:455.469000px;}
.y11{bottom:467.181000px;}
.y23{bottom:467.946000px;}
.y77{bottom:472.026000px;}
.y24{bottom:473.884500px;}
.yab{bottom:483.373500px;}
.y41{bottom:483.922500px;}
.y90{bottom:484.815000px;}
.y10{bottom:492.286500px;}
.yc5{bottom:494.334000px;}
.y5e{bottom:494.961000px;}
.yde{bottom:495.736500px;}
.y22{bottom:496.399500px;}
.yaa{bottom:511.827000px;}
.y8f{bottom:513.267000px;}
.yf{bottom:517.392000px;}
.y76{bottom:523.492500px;}
.ydd{bottom:524.190000px;}
.y40{bottom:526.602000px;}
.yc4{bottom:537.013500px;}
.y5d{bottom:537.640500px;}
.ya9{bottom:540.280500px;}
.y8e{bottom:541.720500px;}
.ye{bottom:542.497500px;}
.y21{bottom:547.866000px;}
.ydc{bottom:552.642000px;}
.y5c{bottom:566.094000px;}
.y75{bottom:566.172000px;}
.yd{bottom:567.603000px;}
.ya8{bottom:568.734000px;}
.yc3{bottom:568.989000px;}
.y3f{bottom:569.283000px;}
.ydb{bottom:581.095500px;}
.y8d{bottom:584.400000px;}
.yc{bottom:592.708500px;}
.y5b{bottom:594.547500px;}
.y74{bottom:594.625500px;}
.ya7{bottom:597.186000px;}
.y3e{bottom:597.735000px;}
.y20{bottom:599.332500px;}
.yc2{bottom:605.322000px;}
.y8c{bottom:612.853500px;}
.yb{bottom:622.297500px;}
.yda{bottom:623.775000px;}
.y3d{bottom:626.188500px;}
.y1f{bottom:627.786000px;}
.y5a{bottom:637.227000px;}
.y73{bottom:637.305000px;}
.ya6{bottom:639.867000px;}
.ya{bottom:647.404500px;}
.yc1{bottom:648.001500px;}
.yd9{bottom:652.228500px;}
.y8b{bottom:655.533000px;}
.y59{bottom:665.680500px;}
.y72{bottom:665.758500px;}
.ya5{bottom:668.319000px;}
.y3c{bottom:668.868000px;}
.y9{bottom:672.510000px;}
.yc0{bottom:676.455000px;}
.y1e{bottom:679.252500px;}
.yd8{bottom:680.682000px;}
.y8a{bottom:683.986500px;}
.y58{bottom:694.134000px;}
.y71{bottom:694.210500px;}
.ya4{bottom:696.772500px;}
.y3a{bottom:697.321500px;}
.y8{bottom:697.615500px;}
.y3b{bottom:703.260000px;}
.ybf{bottom:704.908500px;}
.y57{bottom:722.586000px;}
.y7{bottom:722.721000px;}
.yd7{bottom:723.361500px;}
.ya3{bottom:725.226000px;}
.y39{bottom:725.775000px;}
.y1d{bottom:730.719000px;}
.y89{bottom:735.453000px;}
.y70{bottom:736.891500px;}
.ybe{bottom:747.588000px;}
.yef{bottom:747.666000px;}
.y6{bottom:747.826500px;}
.yd6{bottom:751.815000px;}
.y38{bottom:754.228500px;}
.y1c{bottom:759.172500px;}
.y56{bottom:765.267000px;}
.ya2{bottom:767.905500px;}
.y6f{bottom:768.865500px;}
.y5{bottom:772.932000px;}
.ybd{bottom:776.041500px;}
.yee{bottom:776.119500px;}
.y88{bottom:786.921000px;}
.y55{bottom:793.719000px;}
.ya1{bottom:793.905000px;}
.yd5{bottom:794.494500px;}
.ya0{bottom:796.359000px;}
.y37{bottom:796.908000px;}
.y4{bottom:798.039000px;}
.ybc{bottom:804.495000px;}
.y6e{bottom:805.200000px;}
.y1b{bottom:810.639000px;}
.yed{bottom:818.799000px;}
.yd4{bottom:822.948000px;}
.y87{bottom:829.600500px;}
.ybb{bottom:832.947000px;}
.y54{bottom:836.400000px;}
.y3{bottom:837.747000px;}
.y9f{bottom:839.038500px;}
.y36{bottom:839.587500px;}
.yec{bottom:847.252500px;}
.y6d{bottom:847.879500px;}
.yd3{bottom:854.922000px;}
.y86{bottom:858.052500px;}
.y1a{bottom:862.105500px;}
.y9e{bottom:867.492000px;}
.y35{bottom:868.041000px;}
.y53{bottom:868.374000px;}
.yba{bottom:875.626500px;}
.y6c{bottom:876.333000px;}
.y85{bottom:886.506000px;}
.yd2{bottom:889.854000px;}
.yeb{bottom:889.932000px;}
.y19{bottom:890.559000px;}
.y9d{bottom:895.945500px;}
.yb9{bottom:904.080000px;}
.y52{bottom:904.708500px;}
.y6b{bottom:904.786500px;}
.y34{bottom:910.720500px;}
.y84{bottom:914.959500px;}
.yea{bottom:918.385500px;}
.y18{bottom:919.012500px;}
.y9c{bottom:924.397500px;}
.y2{bottom:928.308000px;}
.yb8{bottom:932.533500px;}
.y51{bottom:933.160500px;}
.y6a{bottom:947.466000px;}
.y33{bottom:953.400000px;}
.yb7{bottom:960.987000px;}
.y17{bottom:961.065000px;}
.y83{bottom:966.426000px;}
.y50{bottom:975.213000px;}
.y1{bottom:982.003500px;}
.yd1{bottom:989.440500px;}
.y16{bottom:989.517000px;}
.y32{bottom:996.079500px;}
.y4f{bottom:1003.666500px;}
.y82{bottom:1017.892500px;}
.y15{bottom:1017.970500px;}
.y31{bottom:1024.533000px;}
.y4e{bottom:1032.120000px;}
.y14{bottom:1050.651000px;}
.y30{bottom:1056.508500px;}
.y4d{bottom:1060.573500px;}
.y13{bottom:1120.468500px;}
.h9{height:32.326726px;}
.h3{height:41.783144px;}
.h5{height:44.831700px;}
.h4{height:44.891476px;}
.hf{height:46.800039px;}
.hc{height:47.585494px;}
.hb{height:49.090950px;}
.hd{height:49.156405px;}
.ha{height:50.283571px;}
.h2{height:50.642227px;}
.h6{height:56.618229px;}
.h8{height:59.350726px;}
.he{height:59.356726px;}
.h7{height:60.340117px;}
.h1{height:75.093575px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:108.000000px;}
.x4e{left:121.017000px;}
.x57{left:132.117000px;}
.x56{left:133.362000px;}
.x9{left:147.160500px;}
.x4{left:148.909500px;}
.x49{left:166.266000px;}
.x4c{left:170.577000px;}
.x4a{left:173.364000px;}
.x4d{left:186.106500px;}
.x3a{left:192.285000px;}
.xa{left:205.342500px;}
.xb{left:221.065500px;}
.x1a{left:239.341500px;}
.x22{left:249.670500px;}
.x40{left:255.762000px;}
.x3b{left:280.000500px;}
.x45{left:284.496000px;}
.x5{left:298.942500px;}
.x6{left:314.713500px;}
.x47{left:329.691000px;}
.x7{left:332.313000px;}
.x1{left:339.195000px;}
.x48{left:340.668000px;}
.x1b{left:357.294000px;}
.x8{left:365.323500px;}
.x19{left:373.620000px;}
.x29{left:374.745000px;}
.x13{left:377.712000px;}
.x53{left:380.296500px;}
.x14{left:391.821000px;}
.x54{left:396.810000px;}
.x12{left:399.247500px;}
.x2a{left:407.019000px;}
.x2{left:409.092000px;}
.x3c{left:412.429500px;}
.x2b{left:415.119000px;}
.x15{left:416.740500px;}
.x3{left:426.361500px;}
.x3f{left:433.264500px;}
.x2c{left:435.118500px;}
.x16{left:436.483500px;}
.x2d{left:443.218500px;}
.x55{left:451.128000px;}
.x10{left:454.932000px;}
.x2e{left:469.582500px;}
.x41{left:492.145500px;}
.x42{left:496.692000px;}
.x43{left:507.763500px;}
.x2f{left:511.791000px;}
.x44{left:527.200500px;}
.x46{left:554.041500px;}
.x38{left:562.780500px;}
.x30{left:564.726000px;}
.x31{left:572.826000px;}
.x17{left:577.653000px;}
.x39{left:578.773500px;}
.x33{left:581.379000px;}
.x3d{left:590.079000px;}
.x18{left:597.396000px;}
.x32{left:599.190000px;}
.x34{left:613.651500px;}
.x35{left:621.997500px;}
.x23{left:641.790000px;}
.xc{left:646.797000px;}
.x36{left:650.343000px;}
.x24{left:674.062500px;}
.xd{left:679.842000px;}
.x25{left:682.408500px;}
.x3e{left:688.341000px;}
.x26{left:702.408000px;}
.xe{left:705.196500px;}
.x4b{left:707.172000px;}
.x27{left:710.754000px;}
.x1c{left:717.504000px;}
.x37{left:719.047500px;}
.xf{left:723.262500px;}
.x1d{left:725.686500px;}
.x28{left:744.390000px;}
.x1e{left:751.413000px;}
.x4f{left:759.015000px;}
.x50{left:767.107500px;}
.x1f{left:768.685500px;}
.x51{left:771.652500px;}
.x20{left:785.262000px;}
.x52{left:790.563000px;}
.x21{left:808.591500px;}
@media print{
.v2{vertical-align:-9.008000pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.114667pt;}
.v3{vertical-align:24.021333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.001144pt;}
.ls21{letter-spacing:0.002389pt;}
.ls1{letter-spacing:0.002509pt;}
.ls29{letter-spacing:0.003854pt;}
.ls12{letter-spacing:0.004077pt;}
.ls10{letter-spacing:0.004726pt;}
.ls2c{letter-spacing:0.006477pt;}
.ls27{letter-spacing:0.008039pt;}
.lsd{letter-spacing:0.010059pt;}
.ls34{letter-spacing:0.011236pt;}
.ls1d{letter-spacing:0.014967pt;}
.ls7{letter-spacing:0.021817pt;}
.ls26{letter-spacing:2.653258pt;}
.ls30{letter-spacing:4.750730pt;}
.ls2e{letter-spacing:4.756063pt;}
.ls17{letter-spacing:9.658190pt;}
.lsf{letter-spacing:9.716372pt;}
.ls14{letter-spacing:12.916374pt;}
.ls2b{letter-spacing:12.974556pt;}
.ls8{letter-spacing:13.318484pt;}
.ls2{letter-spacing:13.323818pt;}
.ls31{letter-spacing:13.905466pt;}
.ls1a{letter-spacing:14.446730pt;}
.lse{letter-spacing:14.452063pt;}
.ls6{letter-spacing:14.718081pt;}
.ls32{letter-spacing:14.836376pt;}
.ls11{letter-spacing:16.116377pt;}
.lsc{letter-spacing:16.174559pt;}
.ls1b{letter-spacing:17.338196pt;}
.ls5{letter-spacing:17.852979pt;}
.ls22{letter-spacing:18.818104pt;}
.ls25{letter-spacing:18.818591pt;}
.ls23{letter-spacing:18.823437pt;}
.ls1f{letter-spacing:19.200016pt;}
.ls18{letter-spacing:19.258198pt;}
.lsa{letter-spacing:19.316380pt;}
.ls33{letter-spacing:19.432743pt;}
.lsb{letter-spacing:19.490925pt;}
.ls19{letter-spacing:19.549107pt;}
.ls3{letter-spacing:19.872066pt;}
.ls2f{letter-spacing:19.956380pt;}
.ls24{letter-spacing:20.916063pt;}
.ls2a{letter-spacing:21.819964pt;}
.ls1c{letter-spacing:22.632746pt;}
.ls4{letter-spacing:23.325767pt;}
.ls20{letter-spacing:23.796383pt;}
.ls1e{letter-spacing:24.041397pt;}
.ls0{letter-spacing:32.961753pt;}
.ls28{letter-spacing:434.041397pt;}
.ls2d{letter-spacing:536.206730pt;}
.ls16{letter-spacing:882.020063pt;}
.ls13{letter-spacing:896.564063pt;}
.ws1c{word-spacing:-58.181867pt;}
.ws5{word-spacing:-34.632654pt;}
.ws19{word-spacing:-28.928024pt;}
.ws60{word-spacing:-16.418923pt;}
.ws23{word-spacing:-16.162923pt;}
.ws42{word-spacing:-14.906194pt;}
.ws44{word-spacing:-14.324376pt;}
.ws61{word-spacing:-14.266194pt;}
.ws51{word-spacing:-14.033466pt;}
.ws53{word-spacing:-13.975284pt;}
.ws76{word-spacing:-13.917103pt;}
.ws77{word-spacing:-13.800739pt;}
.ws75{word-spacing:-13.626193pt;}
.ws65{word-spacing:-13.335284pt;}
.ws66{word-spacing:-12.171647pt;}
.ws34{word-spacing:-11.706192pt;}
.ws2c{word-spacing:-11.240737pt;}
.ws21{word-spacing:-11.182555pt;}
.ws45{word-spacing:-11.066191pt;}
.ws7a{word-spacing:-11.008009pt;}
.ws3c{word-spacing:-10.891645pt;}
.ws62{word-spacing:-10.833464pt;}
.wsa{word-spacing:-10.515192pt;}
.ws81{word-spacing:-10.484372pt;}
.ws5e{word-spacing:-10.368009pt;}
.ws7d{word-spacing:-10.251645pt;}
.ws3e{word-spacing:-10.077099pt;}
.ws28{word-spacing:-10.018917pt;}
.ws2f{word-spacing:-9.960736pt;}
.ws32{word-spacing:-9.902554pt;}
.ws5f{word-spacing:-9.844372pt;}
.ws31{word-spacing:-9.786190pt;}
.ws1b{word-spacing:-9.728008pt;}
.ws14{word-spacing:-9.669826pt;}
.ws17{word-spacing:-9.611644pt;}
.ws20{word-spacing:-9.553463pt;}
.ws3b{word-spacing:-9.495281pt;}
.ws29{word-spacing:-9.437099pt;}
.ws39{word-spacing:-9.378917pt;}
.ws1a{word-spacing:-9.320735pt;}
.ws22{word-spacing:-9.262553pt;}
.ws2a{word-spacing:-9.204371pt;}
.ws10{word-spacing:-9.080578pt;}
.ws49{word-spacing:-9.029826pt;}
.ws5c{word-spacing:-8.971644pt;}
.ws11{word-spacing:-8.921176pt;}
.ws1f{word-spacing:-8.913462pt;}
.wse{word-spacing:-8.868042pt;}
.ws5d{word-spacing:-8.855280pt;}
.ws79{word-spacing:-8.738916pt;}
.wsb{word-spacing:-8.708641pt;}
.ws72{word-spacing:-8.680735pt;}
.wsd{word-spacing:-8.655507pt;}
.ws71{word-spacing:-8.564371pt;}
.ws56{word-spacing:-8.448007pt;}
.ws30{word-spacing:-8.389825pt;}
.ws33{word-spacing:-8.273461pt;}
.ws47{word-spacing:-8.157098pt;}
.ws64{word-spacing:-8.098916pt;}
.ws7b{word-spacing:-7.982552pt;}
.ws36{word-spacing:-7.924370pt;}
.wsc{word-spacing:-7.858499pt;}
.ws59{word-spacing:-7.808007pt;}
.ws38{word-spacing:-7.749825pt;}
.ws4{word-spacing:-7.645963pt;}
.ws58{word-spacing:-7.633461pt;}
.ws4b{word-spacing:-7.575279pt;}
.ws6d{word-spacing:-7.517097pt;}
.ws48{word-spacing:-7.342552pt;}
.ws41{word-spacing:-7.226188pt;}
.ws40{word-spacing:-7.168006pt;}
.ws43{word-spacing:-7.051642pt;}
.ws25{word-spacing:-6.993460pt;}
.ws73{word-spacing:-6.760733pt;}
.ws1e{word-spacing:-6.446551pt;}
.ws35{word-spacing:-6.062551pt;}
.ws7{word-spacing:-5.945680pt;}
.ws3{word-spacing:-5.892546pt;}
.ws2{word-spacing:-5.839412pt;}
.ws27{word-spacing:-5.538914pt;}
.ws3a{word-spacing:-5.480732pt;}
.ws57{word-spacing:-5.422550pt;}
.ws37{word-spacing:-5.364368pt;}
.ws52{word-spacing:-5.131641pt;}
.ws70{word-spacing:-4.898913pt;}
.ws26{word-spacing:-4.433458pt;}
.ws63{word-spacing:-4.142549pt;}
.ws6b{word-spacing:-3.968003pt;}
.ws74{word-spacing:-3.909821pt;}
.ws3f{word-spacing:-3.618912pt;}
.ws5b{word-spacing:-3.444367pt;}
.ws6c{word-spacing:-3.269821pt;}
.ws6f{word-spacing:-3.211639pt;}
.ws4e{word-spacing:-3.188366pt;}
.ws3d{word-spacing:-2.978912pt;}
.ws6a{word-spacing:-1.989820pt;}
.ws69{word-spacing:-0.279273pt;}
.ws68{word-spacing:-0.104727pt;}
.ws46{word-spacing:-0.058182pt;}
.ws8{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.046545pt;}
.ws5a{word-spacing:-0.042507pt;}
.ws13{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.011636pt;}
.ws78{word-spacing:0.186182pt;}
.ws4a{word-spacing:1.291637pt;}
.ws55{word-spacing:2.338911pt;}
.ws12{word-spacing:2.932989pt;}
.ws6{word-spacing:5.111478pt;}
.ws9{word-spacing:6.275110pt;}
.ws2d{word-spacing:9.600008pt;}
.ws2e{word-spacing:9.658190pt;}
.ws82{word-spacing:19.840017pt;}
.ws80{word-spacing:20.538199pt;}
.ws6e{word-spacing:20.596381pt;}
.ws1{word-spacing:20.722347pt;}
.ws7f{word-spacing:20.945472pt;}
.ws4f{word-spacing:21.901392pt;}
.ws7c{word-spacing:21.904009pt;}
.wsf{word-spacing:23.272634pt;}
.ws2b{word-spacing:23.782878pt;}
.ws50{word-spacing:23.846639pt;}
.ws67{word-spacing:25.192748pt;}
.ws4c{word-spacing:27.927269pt;}
.ws16{word-spacing:28.003782pt;}
.ws0{word-spacing:32.961753pt;}
.ws54{word-spacing:67.490965pt;}
.ws24{word-spacing:944.586675pt;}
.ws4d{word-spacing:999.110651pt;}
.ws7e{word-spacing:1905.616526pt;}
.ws15{word-spacing:1934.539193pt;}
._6{margin-left:-19.872066pt;}
._21{margin-left:-6.962689pt;}
._18{margin-left:-5.342879pt;}
._a{margin-left:-4.356977pt;}
._0{margin-left:-2.754464pt;}
._1{margin-left:-1.721549pt;}
._3{width:1.594016pt;}
._9{width:3.294300pt;}
._11{width:4.247276pt;}
._19{width:15.952714pt;}
._1f{width:16.948009pt;}
._e{width:18.710654pt;}
._1b{width:19.631886pt;}
._1d{width:20.538199pt;}
._2{width:21.572350pt;}
._8{width:23.166366pt;}
._7{width:24.186571pt;}
._c{width:25.282145pt;}
._5{width:26.301264pt;}
._4{width:27.842146pt;}
._d{width:29.105163pt;}
._12{width:30.683380pt;}
._15{width:31.802375pt;}
._1a{width:33.314302pt;}
._17{width:34.317449pt;}
._13{width:36.508444pt;}
._14{width:38.321274pt;}
._10{width:39.216555pt;}
._20{width:40.947296pt;}
._f{width:42.018477pt;}
._1e{width:42.982041pt;}
._16{width:44.762590pt;}
._1c{width:817.423460pt;}
._b{width:968.495353pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:53.493333pt;}
.ye9{bottom:93.342667pt;}
.y2f{bottom:96.830667pt;}
.yd0{bottom:110.614667pt;}
.y69{bottom:111.173333pt;}
.yb6{bottom:116.029333pt;}
.y9b{bottom:117.310667pt;}
.y2e{bottom:122.121333pt;}
.y4c{bottom:126.653333pt;}
.ye8{bottom:131.281333pt;}
.y81{bottom:133.558667pt;}
.ycf{bottom:135.906667pt;}
.y68{bottom:136.465333pt;}
.yb5{bottom:141.321333pt;}
.y9a{bottom:142.601333pt;}
.y2d{bottom:147.413333pt;}
.y4b{bottom:151.945333pt;}
.ye7{bottom:156.572000pt;}
.y80{bottom:158.850667pt;}
.yb4{bottom:166.613333pt;}
.y99{bottom:167.893333pt;}
.y2c{bottom:172.705333pt;}
.yce{bottom:173.844000pt;}
.y67{bottom:174.402667pt;}
.y4a{bottom:177.236000pt;}
.ye6{bottom:181.864000pt;}
.y7f{bottom:184.142667pt;}
.yb3{bottom:191.905333pt;}
.y98{bottom:193.185333pt;}
.y2b{bottom:197.997333pt;}
.ycd{bottom:199.136000pt;}
.y66{bottom:199.694667pt;}
.y49{bottom:202.528000pt;}
.y7e{bottom:209.433333pt;}
.ye5{bottom:219.801333pt;}
.y2a{bottom:223.288000pt;}
.ycc{bottom:224.428000pt;}
.y65{bottom:224.985333pt;}
.y48{bottom:227.820000pt;}
.yb2{bottom:229.842667pt;}
.y97{bottom:231.122667pt;}
.y7d{bottom:234.725333pt;}
.ye4{bottom:245.093333pt;}
.y29{bottom:248.580000pt;}
.ycb{bottom:249.720000pt;}
.yb1{bottom:255.134667pt;}
.y96{bottom:256.414667pt;}
.y7c{bottom:260.017333pt;}
.y64{bottom:262.924000pt;}
.y47{bottom:265.757333pt;}
.ye3{bottom:274.141333pt;}
.yb0{bottom:280.425333pt;}
.y95{bottom:284.837333pt;}
.yca{bottom:287.657333pt;}
.y63{bottom:288.214667pt;}
.y46{bottom:291.049333pt;}
.y28{bottom:294.328000pt;}
.y7b{bottom:297.954667pt;}
.yaf{bottom:305.717333pt;}
.yc9{bottom:312.949333pt;}
.y62{bottom:313.506667pt;}
.ye2{bottom:314.196000pt;}
.y45{bottom:316.341333pt;}
.y94{bottom:317.133333pt;}
.y7a{bottom:323.246667pt;}
.yae{bottom:331.009333pt;}
.yc8{bottom:338.241333pt;}
.y61{bottom:338.798667pt;}
.y27{bottom:340.077333pt;}
.y44{bottom:341.633333pt;}
.y93{bottom:342.425333pt;}
.y79{bottom:348.538667pt;}
.ye1{bottom:352.133333pt;}
.yc7{bottom:363.532000pt;}
.y60{bottom:364.090667pt;}
.y26{bottom:365.368000pt;}
.y92{bottom:367.717333pt;}
.yad{bottom:368.946667pt;}
.y78{bottom:373.829333pt;}
.ye0{bottom:377.425333pt;}
.y43{bottom:379.570667pt;}
.y25{bottom:390.660000pt;}
.y91{bottom:393.008000pt;}
.yac{bottom:397.369333pt;}
.yc6{bottom:401.470667pt;}
.y5f{bottom:402.028000pt;}
.ydf{bottom:402.717333pt;}
.y42{bottom:404.861333pt;}
.y11{bottom:415.272000pt;}
.y23{bottom:415.952000pt;}
.y77{bottom:419.578667pt;}
.y24{bottom:421.230667pt;}
.yab{bottom:429.665333pt;}
.y41{bottom:430.153333pt;}
.y90{bottom:430.946667pt;}
.y10{bottom:437.588000pt;}
.yc5{bottom:439.408000pt;}
.y5e{bottom:439.965333pt;}
.yde{bottom:440.654667pt;}
.y22{bottom:441.244000pt;}
.yaa{bottom:454.957333pt;}
.y8f{bottom:456.237333pt;}
.yf{bottom:459.904000pt;}
.y76{bottom:465.326667pt;}
.ydd{bottom:465.946667pt;}
.y40{bottom:468.090667pt;}
.yc4{bottom:477.345333pt;}
.y5d{bottom:477.902667pt;}
.ya9{bottom:480.249333pt;}
.y8e{bottom:481.529333pt;}
.ye{bottom:482.220000pt;}
.y21{bottom:486.992000pt;}
.ydc{bottom:491.237333pt;}
.y5c{bottom:503.194667pt;}
.y75{bottom:503.264000pt;}
.yd{bottom:504.536000pt;}
.ya8{bottom:505.541333pt;}
.yc3{bottom:505.768000pt;}
.y3f{bottom:506.029333pt;}
.ydb{bottom:516.529333pt;}
.y8d{bottom:519.466667pt;}
.yc{bottom:526.852000pt;}
.y5b{bottom:528.486667pt;}
.y74{bottom:528.556000pt;}
.ya7{bottom:530.832000pt;}
.y3e{bottom:531.320000pt;}
.y20{bottom:532.740000pt;}
.yc2{bottom:538.064000pt;}
.y8c{bottom:544.758667pt;}
.yb{bottom:553.153333pt;}
.yda{bottom:554.466667pt;}
.y3d{bottom:556.612000pt;}
.y1f{bottom:558.032000pt;}
.y5a{bottom:566.424000pt;}
.y73{bottom:566.493333pt;}
.ya6{bottom:568.770667pt;}
.ya{bottom:575.470667pt;}
.yc1{bottom:576.001333pt;}
.yd9{bottom:579.758667pt;}
.y8b{bottom:582.696000pt;}
.y59{bottom:591.716000pt;}
.y72{bottom:591.785333pt;}
.ya5{bottom:594.061333pt;}
.y3c{bottom:594.549333pt;}
.y9{bottom:597.786667pt;}
.yc0{bottom:601.293333pt;}
.y1e{bottom:603.780000pt;}
.yd8{bottom:605.050667pt;}
.y8a{bottom:607.988000pt;}
.y58{bottom:617.008000pt;}
.y71{bottom:617.076000pt;}
.ya4{bottom:619.353333pt;}
.y3a{bottom:619.841333pt;}
.y8{bottom:620.102667pt;}
.y3b{bottom:625.120000pt;}
.ybf{bottom:626.585333pt;}
.y57{bottom:642.298667pt;}
.y7{bottom:642.418667pt;}
.yd7{bottom:642.988000pt;}
.ya3{bottom:644.645333pt;}
.y39{bottom:645.133333pt;}
.y1d{bottom:649.528000pt;}
.y89{bottom:653.736000pt;}
.y70{bottom:655.014667pt;}
.ybe{bottom:664.522667pt;}
.yef{bottom:664.592000pt;}
.y6{bottom:664.734667pt;}
.yd6{bottom:668.280000pt;}
.y38{bottom:670.425333pt;}
.y1c{bottom:674.820000pt;}
.y56{bottom:680.237333pt;}
.ya2{bottom:682.582667pt;}
.y6f{bottom:683.436000pt;}
.y5{bottom:687.050667pt;}
.ybd{bottom:689.814667pt;}
.yee{bottom:689.884000pt;}
.y88{bottom:699.485333pt;}
.y55{bottom:705.528000pt;}
.ya1{bottom:705.693333pt;}
.yd5{bottom:706.217333pt;}
.ya0{bottom:707.874667pt;}
.y37{bottom:708.362667pt;}
.y4{bottom:709.368000pt;}
.ybc{bottom:715.106667pt;}
.y6e{bottom:715.733333pt;}
.y1b{bottom:720.568000pt;}
.yed{bottom:727.821333pt;}
.yd4{bottom:731.509333pt;}
.y87{bottom:737.422667pt;}
.ybb{bottom:740.397333pt;}
.y54{bottom:743.466667pt;}
.y3{bottom:744.664000pt;}
.y9f{bottom:745.812000pt;}
.y36{bottom:746.300000pt;}
.yec{bottom:753.113333pt;}
.y6d{bottom:753.670667pt;}
.yd3{bottom:759.930667pt;}
.y86{bottom:762.713333pt;}
.y1a{bottom:766.316000pt;}
.y9e{bottom:771.104000pt;}
.y35{bottom:771.592000pt;}
.y53{bottom:771.888000pt;}
.yba{bottom:778.334667pt;}
.y6c{bottom:778.962667pt;}
.y85{bottom:788.005333pt;}
.yd2{bottom:790.981333pt;}
.yeb{bottom:791.050667pt;}
.y19{bottom:791.608000pt;}
.y9d{bottom:796.396000pt;}
.yb9{bottom:803.626667pt;}
.y52{bottom:804.185333pt;}
.y6b{bottom:804.254667pt;}
.y34{bottom:809.529333pt;}
.y84{bottom:813.297333pt;}
.yea{bottom:816.342667pt;}
.y18{bottom:816.900000pt;}
.y9c{bottom:821.686667pt;}
.y2{bottom:825.162667pt;}
.yb8{bottom:828.918667pt;}
.y51{bottom:829.476000pt;}
.y6a{bottom:842.192000pt;}
.y33{bottom:847.466667pt;}
.yb7{bottom:854.210667pt;}
.y17{bottom:854.280000pt;}
.y83{bottom:859.045333pt;}
.y50{bottom:866.856000pt;}
.y1{bottom:872.892000pt;}
.yd1{bottom:879.502667pt;}
.y16{bottom:879.570667pt;}
.y32{bottom:885.404000pt;}
.y4f{bottom:892.148000pt;}
.y82{bottom:904.793333pt;}
.y15{bottom:904.862667pt;}
.y31{bottom:910.696000pt;}
.y4e{bottom:917.440000pt;}
.y14{bottom:933.912000pt;}
.y30{bottom:939.118667pt;}
.y4d{bottom:942.732000pt;}
.y13{bottom:995.972000pt;}
.h9{height:28.734867pt;}
.h3{height:37.140573pt;}
.h5{height:39.850400pt;}
.h4{height:39.903534pt;}
.hf{height:41.600035pt;}
.hc{height:42.298217pt;}
.hb{height:43.636400pt;}
.hd{height:43.694582pt;}
.ha{height:44.696508pt;}
.h2{height:45.015313pt;}
.h6{height:50.327315pt;}
.h8{height:52.756201pt;}
.he{height:52.761534pt;}
.h7{height:53.635660pt;}
.h1{height:66.749844pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:96.000000pt;}
.x4e{left:107.570667pt;}
.x57{left:117.437333pt;}
.x56{left:118.544000pt;}
.x9{left:130.809333pt;}
.x4{left:132.364000pt;}
.x49{left:147.792000pt;}
.x4c{left:151.624000pt;}
.x4a{left:154.101333pt;}
.x4d{left:165.428000pt;}
.x3a{left:170.920000pt;}
.xa{left:182.526667pt;}
.xb{left:196.502667pt;}
.x1a{left:212.748000pt;}
.x22{left:221.929333pt;}
.x40{left:227.344000pt;}
.x3b{left:248.889333pt;}
.x45{left:252.885333pt;}
.x5{left:265.726667pt;}
.x6{left:279.745333pt;}
.x47{left:293.058667pt;}
.x7{left:295.389333pt;}
.x1{left:301.506667pt;}
.x48{left:302.816000pt;}
.x1b{left:317.594667pt;}
.x8{left:324.732000pt;}
.x19{left:332.106667pt;}
.x29{left:333.106667pt;}
.x13{left:335.744000pt;}
.x53{left:338.041333pt;}
.x14{left:348.285333pt;}
.x54{left:352.720000pt;}
.x12{left:354.886667pt;}
.x2a{left:361.794667pt;}
.x2{left:363.637333pt;}
.x3c{left:366.604000pt;}
.x2b{left:368.994667pt;}
.x15{left:370.436000pt;}
.x3{left:378.988000pt;}
.x3f{left:385.124000pt;}
.x2c{left:386.772000pt;}
.x16{left:387.985333pt;}
.x2d{left:393.972000pt;}
.x55{left:401.002667pt;}
.x10{left:404.384000pt;}
.x2e{left:417.406667pt;}
.x41{left:437.462667pt;}
.x42{left:441.504000pt;}
.x43{left:451.345333pt;}
.x2f{left:454.925333pt;}
.x44{left:468.622667pt;}
.x46{left:492.481333pt;}
.x38{left:500.249333pt;}
.x30{left:501.978667pt;}
.x31{left:509.178667pt;}
.x17{left:513.469333pt;}
.x39{left:514.465333pt;}
.x33{left:516.781333pt;}
.x3d{left:524.514667pt;}
.x18{left:531.018667pt;}
.x32{left:532.613333pt;}
.x34{left:545.468000pt;}
.x35{left:552.886667pt;}
.x23{left:570.480000pt;}
.xc{left:574.930667pt;}
.x36{left:578.082667pt;}
.x24{left:599.166667pt;}
.xd{left:604.304000pt;}
.x25{left:606.585333pt;}
.x3e{left:611.858667pt;}
.x26{left:624.362667pt;}
.xe{left:626.841333pt;}
.x4b{left:628.597333pt;}
.x27{left:631.781333pt;}
.x1c{left:637.781333pt;}
.x37{left:639.153333pt;}
.xf{left:642.900000pt;}
.x1d{left:645.054667pt;}
.x28{left:661.680000pt;}
.x1e{left:667.922667pt;}
.x4f{left:674.680000pt;}
.x50{left:681.873333pt;}
.x1f{left:683.276000pt;}
.x51{left:685.913333pt;}
.x20{left:698.010667pt;}
.x52{left:702.722667pt;}
.x21{left:718.748000pt;}
}




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