
    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_9cd37966d05563dc0f6b6a23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_522b224e07b138585a0ca931.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_483f1191f07066412b106d56.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_d2e9efd9d03aed044cf52929.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_a5b98569bd82b29f67e44cbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_1d33a5df9fe55c66626bbf98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;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_0843adf737099620224da002.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_bbb8c33bf4fdace7114288f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_ae5ee7c43af9e841e11d964b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_064a867bd7f928bc2a18719b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_d2c0448d7b3a3b0474afdf6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_af6ed04d98cc21863ff3d3e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_3a8fc00e505aefdf3b0f3414.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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_4260ef41dcac1d4b617849e4.woff2')format("woff");}.fff{font-family:fff;line-height:1.093262;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_54be42a53580d2f1ca92ee96.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_c5966cd5ce06491f5864c77a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688477;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_0b84eeabdae758c9a46bda49.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.401855;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.850586;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_5d1da60de0a4cfd7d2e47094.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_0a211b681c4c3574bfd2bdff.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_93bbb7ea714234001f42ff26.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.108000;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_11ed10a8157537aabac7a786.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.892000;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,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);}
.v1{vertical-align:-47.520000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020880px;}
.ls5{letter-spacing:0.026496px;}
.lsd{letter-spacing:0.034560px;}
.lsa{letter-spacing:0.088560px;}
.ls8{letter-spacing:0.095760px;}
.lsf{letter-spacing:0.096000px;}
.ls15{letter-spacing:0.158826px;}
.ls10{letter-spacing:0.178800px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.189257px;}
.ls1a{letter-spacing:0.189300px;}
.ls4{letter-spacing:0.215760px;}
.ls11{letter-spacing:0.244200px;}
.ls9{letter-spacing:0.265680px;}
.lse{letter-spacing:0.265800px;}
.ls17{letter-spacing:0.378514px;}
.ls19{letter-spacing:0.378602px;}
.ls6{letter-spacing:0.445680px;}
.ls3{letter-spacing:0.488880px;}
.ls2{letter-spacing:0.503280px;}
.ls12{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.815760px;}
.ls16{letter-spacing:3.071039px;}
.ls18{letter-spacing:5.232418px;}
.ls7{letter-spacing:497.245680px;}
.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;}
}
.ws9{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.999993px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.915711px;}
.ws8{word-spacing:-15.343320px;}
.ws10{word-spacing:-15.318596px;}
.wse{word-spacing:-15.318508px;}
.ws5{word-spacing:-15.277920px;}
.ws3{word-spacing:-15.144192px;}
.ws4{word-spacing:-15.133680px;}
.ws2{word-spacing:-15.099120px;}
.wsd{word-spacing:-14.939994px;}
.wsc{word-spacing:-14.219994px;}
.ws6{word-spacing:-14.176512px;}
.ws1{word-spacing:-14.134320px;}
.wsb{word-spacing:-12.059995px;}
.wsf{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-12.968129px;}
._20{margin-left:-11.598915px;}
._15{margin-left:-9.250744px;}
._e{margin-left:-4.513865px;}
._2{margin-left:-3.051312px;}
._1{margin-left:-1.302480px;}
._0{width:1.229481px;}
._4{width:3.124224px;}
._3{width:4.181760px;}
._5{width:5.208615px;}
._6{width:6.987303px;}
._c{width:7.996176px;}
._a{width:9.216000px;}
._b{width:11.154519px;}
._19{width:12.496629px;}
._f{width:13.585356px;}
._10{width:14.595590px;}
._1c{width:16.028100px;}
._1b{width:17.391328px;}
._1f{width:18.416546px;}
._1e{width:19.429195px;}
._1a{width:20.569921px;}
._23{width:21.630972px;}
._1d{width:22.791456px;}
._16{width:24.744549px;}
._17{width:26.852281px;}
._11{width:27.952170px;}
._d{width:29.094480px;}
._8{width:30.384000px;}
._9{width:32.449037px;}
._13{width:34.321738px;}
._14{width:35.371690px;}
._18{width:75.655410px;}
._21{width:84.785287px;}
._22{width:85.961785px;}
._7{width:161.796000px;}
.fca{color:rgb(31,78,121);}
.fc8{color:rgb(0,86,150);}
.fcb{color:rgb(0,32,96);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(128,0,0);}
.fcc{color:rgb(126,0,126);}
.fc5{color:rgb(0,0,153);}
.fc4{color:rgb(0,0,128);}
.fc9{color:rgb(0,0,255);}
.fc3{color:rgb(165,0,33);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(0,102,204);}
.fs14{font-size:38.879984px;}
.fs12{font-size:48.239981px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fsb{font-size:50.848916px;}
.fs13{font-size:56.879977px;}
.fs10{font-size:59.759976px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:59.904000px;}
.fsf{font-size:66.239974px;}
.fsc{font-size:66.240000px;}
.fse{font-size:69.822393px;}
.fs11{font-size:71.999971px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fs4{font-size:81.965417px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:3.240015px;}
.ya0{bottom:7.380000px;}
.y79{bottom:7.410000px;}
.yb2{bottom:14.040000px;}
.y82{bottom:14.400000px;}
.y7f{bottom:14.610000px;}
.ya3{bottom:14.760000px;}
.y78{bottom:31.170000px;}
.y9f{bottom:31.320000px;}
.y6d{bottom:34.020000px;}
.yb1{bottom:37.980000px;}
.ya2{bottom:38.520000px;}
.y7e{bottom:38.550000px;}
.y6c{bottom:46.080000px;}
.y9e{bottom:55.116000px;}
.y81{bottom:55.980000px;}
.y83{bottom:56.160000px;}
.ybc{bottom:57.900277px;}
.y6b{bottom:58.140000px;}
.yb0{bottom:61.740000px;}
.y77{bottom:61.950000px;}
.y7d{bottom:62.310000px;}
.y6a{bottom:70.020000px;}
.yf7{bottom:76.980269px;}
.ybb{bottom:77.160269px;}
.y69{bottom:82.080000px;}
.yaf{bottom:85.500000px;}
.y76{bottom:85.710000px;}
.y7c{bottom:86.070000px;}
.y84{bottom:93.960000px;}
.y68{bottom:94.140000px;}
.y136{bottom:94.260262px;}
.yba{bottom:94.440262px;}
.y67{bottom:106.020000px;}
.yb8{bottom:108.480240px;}
.yae{bottom:109.305000px;}
.y75{bottom:109.470000px;}
.y9d{bottom:109.650000px;}
.y7b{bottom:109.830000px;}
.ya1{bottom:110.010000px;}
.yb3{bottom:110.025000px;}
.yb7{bottom:111.720255px;}
.y66{bottom:118.080000px;}
.yb6{bottom:128.640249px;}
.y65{bottom:130.140000px;}
.y14b{bottom:131.519947px;}
.y134{bottom:131.520247px;}
.yad{bottom:133.245000px;}
.y74{bottom:133.410000px;}
.y7a{bottom:133.770000px;}
.y64{bottom:142.056000px;}
.yf4{bottom:146.279941px;}
.y14a{bottom:148.799940px;}
.y133{bottom:148.800240px;}
.y15d{bottom:154.019938px;}
.y63{bottom:154.110000px;}
.yac{bottom:157.005000px;}
.y9c{bottom:157.530000px;}
.yf3{bottom:163.379935px;}
.y132{bottom:165.899934px;}
.y62{bottom:166.170000px;}
.y131{bottom:171.119932px;}
.y61{bottom:178.050000px;}
.yf2{bottom:180.659928px;}
.yab{bottom:180.765000px;}
.y9b{bottom:181.290000px;}
.y130{bottom:183.179927px;}
.yf1{bottom:185.879926px;}
.y149{bottom:188.399925px;}
.y60{bottom:190.110000px;}
.yf0{bottom:197.939921px;}
.y12f{bottom:200.459920px;}
.y179{bottom:201.359919px;}
.y5f{bottom:202.170000px;}
.yaa{bottom:204.525000px;}
.y9a{bottom:205.050000px;}
.y12e{bottom:205.679918px;}
.y5e{bottom:214.050000px;}
.yef{bottom:215.219914px;}
.y176{bottom:217.559913px;}
.y12d{bottom:217.739913px;}
.y175{bottom:222.779911px;}
.y160{bottom:222.959911px;}
.y5d{bottom:226.110000px;}
.ya9{bottom:228.465000px;}
.y99{bottom:228.990000px;}
.yee{bottom:232.499907px;}
.y12c{bottom:235.019906px;}
.y174{bottom:235.739906px;}
.y5c{bottom:238.170000px;}
.y178{bottom:238.259905px;}
.y155{bottom:240.239904px;}
.y173{bottom:240.959904px;}
.yed{bottom:249.779900px;}
.y5b{bottom:250.050000px;}
.ya8{bottom:252.225000px;}
.y12b{bottom:252.299899px;}
.y98{bottom:252.750000px;}
.y172{bottom:253.919898px;}
.y5a{bottom:262.110000px;}
.y177{bottom:262.199895px;}
.yec{bottom:266.879893px;}
.y12a{bottom:269.399892px;}
.y59{bottom:274.170000px;}
.y15c{bottom:274.619890px;}
.ya7{bottom:275.985000px;}
.y97{bottom:276.510000px;}
.yeb{bottom:284.159886px;}
.y171{bottom:285.959886px;}
.y58{bottom:286.050000px;}
.y129{bottom:286.679885px;}
.y154{bottom:291.899883px;}
.y57{bottom:298.110000px;}
.ya6{bottom:299.745000px;}
.y96{bottom:300.315000px;}
.yea{bottom:301.439879px;}
.y128{bottom:303.959878px;}
.y169{bottom:309.179876px;}
.y170{bottom:309.719876px;}
.y56{bottom:310.170000px;}
.ye9{bottom:318.719873px;}
.y127{bottom:321.239872px;}
.y55{bottom:322.050000px;}
.ya5{bottom:323.685000px;}
.y95{bottom:324.255000px;}
.y16e{bottom:333.479867px;}
.y54{bottom:334.110000px;}
.ye8{bottom:335.999866px;}
.y126{bottom:338.519865px;}
.y16f{bottom:340.319864px;}
.y153{bottom:343.739863px;}
.y53{bottom:346.170000px;}
.y94{bottom:348.015000px;}
.ye7{bottom:353.279859px;}
.y125{bottom:355.619858px;}
.y152{bottom:356.699857px;}
.y16d{bottom:357.419857px;}
.y52{bottom:358.050000px;}
.y148{bottom:360.839856px;}
.y51{bottom:370.110000px;}
.ye6{bottom:370.379852px;}
.y93{bottom:371.775000px;}
.y124{bottom:372.899851px;}
.ya{bottom:373.170000px;}
.y147{bottom:373.799850px;}
.ye5{bottom:375.599850px;}
.y15b{bottom:378.119849px;}
.y151{bottom:381.179848px;}
.y50{bottom:382.170000px;}
.ye4{bottom:387.659845px;}
.y123{bottom:390.179844px;}
.y168{bottom:391.079844px;}
.y4f{bottom:394.095000px;}
.y92{bottom:395.535000px;}
.y9{bottom:397.155000px;}
.ye3{bottom:404.939838px;}
.y4e{bottom:406.155000px;}
.y122{bottom:407.459837px;}
.ye2{bottom:410.159836px;}
.y146{bottom:411.779835px;}
.y121{bottom:412.679835px;}
.y8{bottom:416.595000px;}
.y4d{bottom:418.215000px;}
.y91{bottom:419.475000px;}
.ye1{bottom:422.219831px;}
.y120{bottom:424.739830px;}
.y15a{bottom:425.639830px;}
.y145{bottom:428.699829px;}
.y11f{bottom:429.959828px;}
.y4c{bottom:430.095000px;}
.y7{bottom:436.575000px;}
.ye0{bottom:439.499824px;}
.y11e{bottom:442.019823px;}
.y4b{bottom:442.155000px;}
.y90{bottom:443.235000px;}
.y150{bottom:452.279819px;}
.y144{bottom:452.639819px;}
.y4a{bottom:454.215000px;}
.ydf{bottom:456.599817px;}
.y6{bottom:457.095000px;}
.y11d{bottom:459.119816px;}
.y159{bottom:459.479816px;}
.y49{bottom:466.095000px;}
.y8f{bottom:466.995000px;}
.yde{bottom:473.879810px;}
.y14f{bottom:476.039810px;}
.y11c{bottom:476.399809px;}
.y48{bottom:478.155000px;}
.y5{bottom:478.695000px;}
.y15f{bottom:481.619807px;}
.y167{bottom:483.239807px;}
.y47{bottom:490.215000px;}
.y8e{bottom:490.755000px;}
.ydd{bottom:491.159804px;}
.y11b{bottom:493.679803px;}
.ydc{bottom:496.379801px;}
.y143{bottom:500.159800px;}
.y46{bottom:502.095000px;}
.y4{bottom:508.215000px;}
.ydb{bottom:508.439797px;}
.y11a{bottom:510.959796px;}
.y45{bottom:514.155000px;}
.y8d{bottom:514.695000px;}
.y142{bottom:523.919790px;}
.yda{bottom:525.719790px;}
.y44{bottom:526.215000px;}
.y119{bottom:528.239789px;}
.y3{bottom:535.215000px;}
.y43{bottom:538.095000px;}
.y8c{bottom:538.455000px;}
.yd9{bottom:542.999783px;}
.y118{bottom:545.519782px;}
.y141{bottom:547.859781px;}
.y42{bottom:550.155000px;}
.y16c{bottom:554.699778px;}
.y2{bottom:559.875000px;}
.yd8{bottom:560.099776px;}
.y41{bottom:562.215000px;}
.y8b{bottom:562.245000px;}
.y117{bottom:562.619775px;}
.y116{bottom:567.839773px;}
.y140{bottom:571.619771px;}
.y40{bottom:574.095000px;}
.yd7{bottom:577.379769px;}
.y115{bottom:579.899768px;}
.y15e{bottom:585.119766px;}
.y8a{bottom:586.005000px;}
.y3f{bottom:586.155000px;}
.y13f{bottom:595.379762px;}
.yd6{bottom:595.559762px;}
.y114{bottom:597.179761px;}
.y3e{bottom:598.215000px;}
.y158{bottom:602.219759px;}
.y89{bottom:609.945000px;}
.y3d{bottom:610.095000px;}
.y113{bottom:614.459754px;}
.y13e{bottom:619.139752px;}
.y112{bottom:619.679752px;}
.yd4{bottom:621.479751px;}
.y3c{bottom:622.155000px;}
.y166{bottom:625.979750px;}
.yd5{bottom:628.319749px;}
.y111{bottom:632.639747px;}
.y88{bottom:633.705000px;}
.y3b{bottom:634.215000px;}
.y13d{bottom:642.899743px;}
.yd3{bottom:645.239742px;}
.y3a{bottom:646.125000px;}
.y162{bottom:649.739740px;}
.y87{bottom:657.465000px;}
.y39{bottom:658.185000px;}
.y13b{bottom:666.839733px;}
.yd2{bottom:668.999732px;}
.y38{bottom:670.245000px;}
.y13c{bottom:673.679731px;}
.y86{bottom:681.225000px;}
.y37{bottom:682.125000px;}
.y10f{bottom:690.599724px;}
.yd1{bottom:692.759723px;}
.y36{bottom:694.185000px;}
.y110{bottom:697.439721px;}
.y85{bottom:704.985000px;}
.y35{bottom:706.245000px;}
.y16b{bottom:713.999714px;}
.y10e{bottom:714.359714px;}
.ycf{bottom:716.699713px;}
.y34{bottom:718.125000px;}
.y157{bottom:721.199712px;}
.yd0{bottom:723.539711px;}
.y33{bottom:730.185000px;}
.y16a{bottom:737.759705px;}
.y10c{bottom:738.119705px;}
.ycd{bottom:740.459704px;}
.y32{bottom:742.245000px;}
.y10d{bottom:744.959702px;}
.yce{bottom:747.299701px;}
.y31{bottom:754.125000px;}
.y10a{bottom:762.059695px;}
.ycc{bottom:764.219694px;}
.y30{bottom:766.185000px;}
.y10b{bottom:768.899692px;}
.yb4{bottom:777.705000px;}
.y108{bottom:785.819686px;}
.ycb{bottom:787.979685px;}
.y2f{bottom:790.125000px;}
.y109{bottom:792.659683px;}
.ya4{bottom:793.185000px;}
.y2e{bottom:802.185000px;}
.y107{bottom:809.579676px;}
.yca{bottom:811.559675px;}
.y2d{bottom:814.245000px;}
.y80{bottom:815.325000px;}
.y2c{bottom:826.125000px;}
.y106{bottom:833.339667px;}
.yc9{bottom:835.679666px;}
.y2b{bottom:838.185000px;}
.y13a{bottom:840.179664px;}
.y2a{bottom:850.245000px;}
.y104{bottom:857.279657px;}
.yc8{bottom:859.439656px;}
.y29{bottom:862.125000px;}
.y105{bottom:864.119654px;}
.y28{bottom:874.185000px;}
.y103{bottom:881.039648px;}
.yc7{bottom:883.199647px;}
.y27{bottom:886.245000px;}
.y73{bottom:887.880000px;}
.y26{bottom:898.170000px;}
.y102{bottom:904.799638px;}
.yc6{bottom:907.139637px;}
.y25{bottom:910.230000px;}
.y165{bottom:911.639635px;}
.y24{bottom:922.290000px;}
.y101{bottom:928.559629px;}
.yc5{bottom:930.899628px;}
.y23{bottom:934.170000px;}
.y156{bottom:935.399626px;}
.y22{bottom:946.230000px;}
.y100{bottom:952.499619px;}
.yc4{bottom:954.659618px;}
.y21{bottom:958.290000px;}
.y20{bottom:970.170000px;}
.yff{bottom:976.259609px;}
.yc3{bottom:979.139608px;}
.y1f{bottom:982.230000px;}
.y161{bottom:983.099607px;}
.y1e{bottom:994.290000px;}
.yfe{bottom:1000.019600px;}
.yc1{bottom:1003.799598px;}
.y1d{bottom:1006.170000px;}
.y14e{bottom:1006.859597px;}
.yc2{bottom:1010.639596px;}
.y1c{bottom:1018.230000px;}
.y139{bottom:1023.419591px;}
.yfd{bottom:1023.779590px;}
.yc0{bottom:1027.559589px;}
.y1b{bottom:1030.290000px;}
.y164{bottom:1030.619588px;}
.y1a{bottom:1042.170000px;}
.y72{bottom:1045.050000px;}
.y138{bottom:1047.359581px;}
.yfb{bottom:1047.719581px;}
.ybf{bottom:1051.319579px;}
.y19{bottom:1054.230000px;}
.yfc{bottom:1054.559578px;}
.y18{bottom:1066.290000px;}
.y71{bottom:1068.810000px;}
.y137{bottom:1071.119572px;}
.yfa{bottom:1071.479571px;}
.ybe{bottom:1075.079570px;}
.y17{bottom:1078.170000px;}
.y14d{bottom:1078.319569px;}
.y16{bottom:1090.230000px;}
.y70{bottom:1092.570000px;}
.yf9{bottom:1095.239562px;}
.ybd{bottom:1099.019560px;}
.y14c{bottom:1102.079559px;}
.y15{bottom:1102.290000px;}
.y14{bottom:1114.170000px;}
.yb5{bottom:1115.399554px;}
.y6f{bottom:1116.510000px;}
.yf8{bottom:1118.999552px;}
.y163{bottom:1125.839550px;}
.y13{bottom:1126.230000px;}
.y6e{bottom:1133.250000px;}
.y12{bottom:1138.290000px;}
.y11{bottom:1150.200000px;}
.y1{bottom:1159.020000px;}
.y10{bottom:1162.260000px;}
.yf{bottom:1174.320000px;}
.y135{bottom:1177.139529px;}
.yf6{bottom:1179.119528px;}
.ye{bottom:1186.200000px;}
.yf5{bottom:1196.399521px;}
.yd{bottom:1198.260000px;}
.yc{bottom:1210.320000px;}
.yb{bottom:1222.200000px;}
.h1e{height:16.740000px;}
.h24{height:34.603186px;}
.hc{height:39.477656px;}
.hd{height:39.595500px;}
.h2{height:40.569750px;}
.h25{height:40.816064px;}
.h1c{height:41.353903px;}
.h3{height:41.493516px;}
.hf{height:41.612687px;}
.h20{height:42.933583px;}
.h1b{height:44.149201px;}
.h18{height:47.286943px;}
.h21{height:47.988262px;}
.hb{height:48.263555px;}
.he{height:48.407625px;}
.h23{height:49.823980px;}
.h22{height:50.623180px;}
.h1d{height:53.186379px;}
.h1a{height:55.825312px;}
.h8{height:59.421094px;}
.h9{height:59.531133px;}
.h6{height:62.634706px;}
.h17{height:63.175781px;}
.h1f{height:64.079974px;}
.h7{height:64.372852px;}
.ha{height:64.853086px;}
.h10{height:65.884219px;}
.h14{height:70.628906px;}
.h13{height:70.664062px;}
.h15{height:72.540000px;}
.h11{height:72.562500px;}
.h4{height:82.529297px;}
.h5{height:91.354219px;}
.h12{height:150.135000px;}
.h19{height:340.050000px;}
.h16{height:721.365000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:3.960000px;}
.w3{width:69.330000px;}
.w5{width:73.065000px;}
.w4{width:575.010000px;}
.w2{width:701.730000px;}
.w6{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:8.091000px;}
.x13{left:59.940000px;}
.x4f{left:61.230000px;}
.x2d{left:80.100000px;}
.x22{left:82.116000px;}
.x17{left:87.516000px;}
.x1{left:90.756000px;}
.x4a{left:93.636000px;}
.x1d{left:112.716000px;}
.x18{left:122.616000px;}
.x53{left:127.619949px;}
.x62{left:132.479947px;}
.x91{left:136.079946px;}
.x59{left:137.699945px;}
.x51{left:142.005000px;}
.x28{left:147.636000px;}
.x3e{left:150.510000px;}
.x3c{left:152.670000px;}
.x3b{left:155.190000px;}
.x7e{left:156.779937px;}
.x25{left:158.070000px;}
.x30{left:160.230000px;}
.x1f{left:161.490000px;}
.x41{left:163.290000px;}
.x21{left:169.590000px;}
.x48{left:170.670000px;}
.x2c{left:172.650000px;}
.x1e{left:174.810000px;}
.x7b{left:175.859930px;}
.x15{left:178.590000px;}
.xa3{left:179.819928px;}
.xe{left:180.930000px;}
.x84{left:186.839925px;}
.x16{left:191.550000px;}
.x87{left:193.499923px;}
.x2e{left:195.150000px;}
.x3d{left:196.770000px;}
.x38{left:198.030000px;}
.x27{left:200.370000px;}
.x1c{left:202.530000px;}
.x40{left:204.150000px;}
.x88{left:205.739918px;}
.x37{left:207.030000px;}
.xc{left:210.630000px;}
.x7f{left:211.679915px;}
.x26{left:212.970000px;}
.x35{left:216.030000px;}
.x7{left:217.830000px;}
.x11{left:219.090000px;}
.x2a{left:220.530000px;}
.x2b{left:223.230000px;}
.x1b{left:225.390000px;}
.x34{left:228.990000px;}
.x29{left:230.790000px;}
.x31{left:232.050000px;}
.x23{left:235.110000px;}
.x3a{left:236.550000px;}
.x80{left:238.499905px;}
.x24{left:240.870000px;}
.x42{left:242.490000px;}
.xd{left:250.230000px;}
.x39{left:251.670000px;}
.x20{left:253.110000px;}
.x36{left:255.090000px;}
.x7a{left:259.019896px;}
.x10{left:264.675000px;}
.x14{left:266.655000px;}
.x32{left:270.975000px;}
.x33{left:273.495000px;}
.x3{left:275.295000px;}
.x71{left:278.819888px;}
.x47{left:288.435000px;}
.x2f{left:292.755000px;}
.x19{left:293.835000px;}
.x12{left:298.695000px;}
.x9e{left:300.419880px;}
.x8b{left:302.579879px;}
.x4{left:306.075000px;}
.x97{left:309.959876px;}
.x9f{left:312.659875px;}
.x8c{left:314.819874px;}
.x72{left:316.079874px;}
.x96{left:318.239873px;}
.x43{left:323.355000px;}
.x5{left:330.375000px;}
.x44{left:338.295000px;}
.x45{left:341.895000px;}
.xa1{left:353.699859px;}
.x3f{left:361.155000px;}
.xf{left:366.015000px;}
.x1a{left:368.715000px;}
.x95{left:372.239851px;}
.x55{left:377.639243px;}
.x4b{left:379.695000px;}
.x46{left:381.135000px;}
.x56{left:383.760526px;}
.x94{left:389.519844px;}
.xb{left:396.075000px;}
.x81{left:399.239840px;}
.x6{left:401.655000px;}
.x9{left:405.795000px;}
.x63{left:407.339837px;}
.x9b{left:408.419837px;}
.x4c{left:410.115000px;}
.x65{left:426.959829px;}
.xa0{left:429.299828px;}
.x64{left:434.519826px;}
.xa{left:439.485000px;}
.x8{left:441.465000px;}
.x2{left:445.785000px;}
.x85{left:452.879819px;}
.x86{left:465.119814px;}
.x9c{left:468.359813px;}
.x92{left:477.719809px;}
.x9d{left:480.599808px;}
.xa4{left:490.319804px;}
.x66{left:494.819802px;}
.x7c{left:495.899802px;}
.x57{left:497.339801px;}
.x67{left:498.599801px;}
.x49{left:503.925000px;}
.x58{left:509.219796px;}
.x52{left:514.259794px;}
.x68{left:517.679793px;}
.xa2{left:520.019792px;}
.x69{left:522.179791px;}
.x6a{left:532.079787px;}
.x7d{left:540.539784px;}
.x93{left:543.419783px;}
.x8d{left:552.059779px;}
.x98{left:553.679779px;}
.x5a{left:558.359777px;}
.x82{left:559.439776px;}
.x78{left:560.699776px;}
.x5b{left:564.479774px;}
.x79{left:566.819773px;}
.x83{left:571.679771px;}
.x99{left:580.679768px;}
.x6b{left:584.639766px;}
.x9a{left:592.919763px;}
.xa5{left:596.339761px;}
.xa6{left:608.579757px;}
.x6c{left:613.079755px;}
.x89{left:625.319750px;}
.x5e{left:626.759749px;}
.x60{left:629.639748px;}
.x5f{left:632.879747px;}
.x61{left:635.759746px;}
.x8a{left:637.559745px;}
.x50{left:668.670000px;}
.x74{left:672.479731px;}
.x75{left:678.599729px;}
.x6d{left:680.759728px;}
.x6e{left:684.539726px;}
.x6f{left:688.319725px;}
.x8e{left:695.699722px;}
.x70{left:718.199713px;}
.x76{left:734.939706px;}
.x77{left:741.059704px;}
.x73{left:742.859703px;}
.x8f{left:746.639701px;}
.x90{left:750.779700px;}
.x5c{left:759.239696px;}
.x5d{left:765.359694px;}
.x4e{left:795.390000px;}
.x54{left:888.480000px;}
@media print{
.v1{vertical-align:-42.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018560pt;}
.ls5{letter-spacing:0.023552pt;}
.lsd{letter-spacing:0.030720pt;}
.lsa{letter-spacing:0.078720pt;}
.ls8{letter-spacing:0.085120pt;}
.lsf{letter-spacing:0.085333pt;}
.ls15{letter-spacing:0.141178pt;}
.ls10{letter-spacing:0.158933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.168228pt;}
.ls1a{letter-spacing:0.168267pt;}
.ls4{letter-spacing:0.191787pt;}
.ls11{letter-spacing:0.217067pt;}
.ls9{letter-spacing:0.236160pt;}
.lse{letter-spacing:0.236267pt;}
.ls17{letter-spacing:0.336457pt;}
.ls19{letter-spacing:0.336535pt;}
.ls6{letter-spacing:0.396160pt;}
.ls3{letter-spacing:0.434560pt;}
.ls2{letter-spacing:0.447360pt;}
.ls12{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.725120pt;}
.ls16{letter-spacing:2.729812pt;}
.ls18{letter-spacing:4.651038pt;}
.ls7{letter-spacing:441.996160pt;}
.ws9{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.999994pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.147298pt;}
.ws8{word-spacing:-13.638507pt;}
.ws10{word-spacing:-13.616529pt;}
.wse{word-spacing:-13.616451pt;}
.ws5{word-spacing:-13.580373pt;}
.ws3{word-spacing:-13.461504pt;}
.ws4{word-spacing:-13.452160pt;}
.ws2{word-spacing:-13.421440pt;}
.wsd{word-spacing:-13.279995pt;}
.wsc{word-spacing:-12.639995pt;}
.ws6{word-spacing:-12.601344pt;}
.ws1{word-spacing:-12.563840pt;}
.wsb{word-spacing:-10.719996pt;}
.wsf{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-11.527226pt;}
._20{margin-left:-10.310146pt;}
._15{margin-left:-8.222883pt;}
._e{margin-left:-4.012325pt;}
._2{margin-left:-2.712277pt;}
._1{margin-left:-1.157760pt;}
._0{width:1.092872pt;}
._4{width:2.777088pt;}
._3{width:3.717120pt;}
._5{width:4.629880pt;}
._6{width:6.210936pt;}
._c{width:7.107712pt;}
._a{width:8.192000pt;}
._b{width:9.915128pt;}
._19{width:11.108114pt;}
._f{width:12.075872pt;}
._10{width:12.973858pt;}
._1c{width:14.247200pt;}
._1b{width:15.458958pt;}
._1f{width:16.370263pt;}
._1e{width:17.270395pt;}
._1a{width:18.284374pt;}
._23{width:19.227531pt;}
._1d{width:20.259072pt;}
._16{width:21.995155pt;}
._17{width:23.868694pt;}
._11{width:24.846373pt;}
._d{width:25.861760pt;}
._8{width:27.008000pt;}
._9{width:28.843589pt;}
._13{width:30.508212pt;}
._14{width:31.441503pt;}
._18{width:67.249253pt;}
._21{width:75.364700pt;}
._22{width:76.410476pt;}
._7{width:143.818667pt;}
.fs14{font-size:34.559986pt;}
.fs12{font-size:42.879983pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fsb{font-size:45.199037pt;}
.fs13{font-size:50.559980pt;}
.fs10{font-size:53.119979pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:53.248000pt;}
.fsf{font-size:58.879976pt;}
.fsc{font-size:58.880000pt;}
.fse{font-size:62.064349pt;}
.fs11{font-size:63.999974pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fs4{font-size:72.858149pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:2.880014pt;}
.ya0{bottom:6.560000pt;}
.y79{bottom:6.586667pt;}
.yb2{bottom:12.480000pt;}
.y82{bottom:12.800000pt;}
.y7f{bottom:12.986667pt;}
.ya3{bottom:13.120000pt;}
.y78{bottom:27.706667pt;}
.y9f{bottom:27.840000pt;}
.y6d{bottom:30.240000pt;}
.yb1{bottom:33.760000pt;}
.ya2{bottom:34.240000pt;}
.y7e{bottom:34.266667pt;}
.y6c{bottom:40.960000pt;}
.y9e{bottom:48.992000pt;}
.y81{bottom:49.760000pt;}
.y83{bottom:49.920000pt;}
.ybc{bottom:51.466913pt;}
.y6b{bottom:51.680000pt;}
.yb0{bottom:54.880000pt;}
.y77{bottom:55.066667pt;}
.y7d{bottom:55.386667pt;}
.y6a{bottom:62.240000pt;}
.yf7{bottom:68.426906pt;}
.ybb{bottom:68.586906pt;}
.y69{bottom:72.960000pt;}
.yaf{bottom:76.000000pt;}
.y76{bottom:76.186667pt;}
.y7c{bottom:76.506667pt;}
.y84{bottom:83.520000pt;}
.y68{bottom:83.680000pt;}
.y136{bottom:83.786900pt;}
.yba{bottom:83.946900pt;}
.y67{bottom:94.240000pt;}
.yb8{bottom:96.426880pt;}
.yae{bottom:97.160000pt;}
.y75{bottom:97.306667pt;}
.y9d{bottom:97.466667pt;}
.y7b{bottom:97.626667pt;}
.ya1{bottom:97.786667pt;}
.yb3{bottom:97.800000pt;}
.yb7{bottom:99.306894pt;}
.y66{bottom:104.960000pt;}
.yb6{bottom:114.346888pt;}
.y65{bottom:115.680000pt;}
.y14b{bottom:116.906620pt;}
.y134{bottom:116.906887pt;}
.yad{bottom:118.440000pt;}
.y74{bottom:118.586667pt;}
.y7a{bottom:118.906667pt;}
.y64{bottom:126.272000pt;}
.yf4{bottom:130.026615pt;}
.y14a{bottom:132.266614pt;}
.y133{bottom:132.266880pt;}
.y15d{bottom:136.906612pt;}
.y63{bottom:136.986667pt;}
.yac{bottom:139.560000pt;}
.y9c{bottom:140.026667pt;}
.yf3{bottom:145.226609pt;}
.y132{bottom:147.466608pt;}
.y62{bottom:147.706667pt;}
.y131{bottom:152.106606pt;}
.y61{bottom:158.266667pt;}
.yf2{bottom:160.586602pt;}
.yab{bottom:160.680000pt;}
.y9b{bottom:161.146667pt;}
.y130{bottom:162.826602pt;}
.yf1{bottom:165.226601pt;}
.y149{bottom:167.466600pt;}
.y60{bottom:168.986667pt;}
.yf0{bottom:175.946596pt;}
.y12f{bottom:178.186595pt;}
.y179{bottom:178.986595pt;}
.y5f{bottom:179.706667pt;}
.yaa{bottom:181.800000pt;}
.y9a{bottom:182.266667pt;}
.y12e{bottom:182.826594pt;}
.y5e{bottom:190.266667pt;}
.yef{bottom:191.306590pt;}
.y176{bottom:193.386589pt;}
.y12d{bottom:193.546589pt;}
.y175{bottom:198.026587pt;}
.y160{bottom:198.186587pt;}
.y5d{bottom:200.986667pt;}
.ya9{bottom:203.080000pt;}
.y99{bottom:203.546667pt;}
.yee{bottom:206.666584pt;}
.y12c{bottom:208.906583pt;}
.y174{bottom:209.546583pt;}
.y5c{bottom:211.706667pt;}
.y178{bottom:211.786582pt;}
.y155{bottom:213.546581pt;}
.y173{bottom:214.186581pt;}
.yed{bottom:222.026578pt;}
.y5b{bottom:222.266667pt;}
.ya8{bottom:224.200000pt;}
.y12b{bottom:224.266577pt;}
.y98{bottom:224.666667pt;}
.y172{bottom:225.706576pt;}
.y5a{bottom:232.986667pt;}
.y177{bottom:233.066573pt;}
.yec{bottom:237.226572pt;}
.y12a{bottom:239.466571pt;}
.y59{bottom:243.706667pt;}
.y15c{bottom:244.106569pt;}
.ya7{bottom:245.320000pt;}
.y97{bottom:245.786667pt;}
.yeb{bottom:252.586566pt;}
.y171{bottom:254.186565pt;}
.y58{bottom:254.266667pt;}
.y129{bottom:254.826565pt;}
.y154{bottom:259.466563pt;}
.y57{bottom:264.986667pt;}
.ya6{bottom:266.440000pt;}
.y96{bottom:266.946667pt;}
.yea{bottom:267.946559pt;}
.y128{bottom:270.186559pt;}
.y169{bottom:274.826557pt;}
.y170{bottom:275.306557pt;}
.y56{bottom:275.706667pt;}
.ye9{bottom:283.306553pt;}
.y127{bottom:285.546552pt;}
.y55{bottom:286.266667pt;}
.ya5{bottom:287.720000pt;}
.y95{bottom:288.226667pt;}
.y16e{bottom:296.426548pt;}
.y54{bottom:296.986667pt;}
.ye8{bottom:298.666547pt;}
.y126{bottom:300.906546pt;}
.y16f{bottom:302.506546pt;}
.y153{bottom:305.546544pt;}
.y53{bottom:307.706667pt;}
.y94{bottom:309.346667pt;}
.ye7{bottom:314.026541pt;}
.y125{bottom:316.106540pt;}
.y152{bottom:317.066540pt;}
.y16d{bottom:317.706540pt;}
.y52{bottom:318.266667pt;}
.y148{bottom:320.746538pt;}
.y51{bottom:328.986667pt;}
.ye6{bottom:329.226535pt;}
.y93{bottom:330.466667pt;}
.y124{bottom:331.466534pt;}
.ya{bottom:331.706667pt;}
.y147{bottom:332.266534pt;}
.ye5{bottom:333.866533pt;}
.y15b{bottom:336.106532pt;}
.y151{bottom:338.826531pt;}
.y50{bottom:339.706667pt;}
.ye4{bottom:344.586529pt;}
.y123{bottom:346.826528pt;}
.y168{bottom:347.626528pt;}
.y4f{bottom:350.306667pt;}
.y92{bottom:351.586667pt;}
.y9{bottom:353.026667pt;}
.ye3{bottom:359.946523pt;}
.y4e{bottom:361.026667pt;}
.y122{bottom:362.186522pt;}
.ye2{bottom:364.586521pt;}
.y146{bottom:366.026520pt;}
.y121{bottom:366.826520pt;}
.y8{bottom:370.306667pt;}
.y4d{bottom:371.746667pt;}
.y91{bottom:372.866667pt;}
.ye1{bottom:375.306517pt;}
.y120{bottom:377.546516pt;}
.y15a{bottom:378.346515pt;}
.y145{bottom:381.066514pt;}
.y11f{bottom:382.186514pt;}
.y4c{bottom:382.306667pt;}
.y7{bottom:388.066667pt;}
.ye0{bottom:390.666510pt;}
.y11e{bottom:392.906510pt;}
.y4b{bottom:393.026667pt;}
.y90{bottom:393.986667pt;}
.y150{bottom:402.026506pt;}
.y144{bottom:402.346506pt;}
.y4a{bottom:403.746667pt;}
.ydf{bottom:405.866504pt;}
.y6{bottom:406.306667pt;}
.y11d{bottom:408.106503pt;}
.y159{bottom:408.426503pt;}
.y49{bottom:414.306667pt;}
.y8f{bottom:415.106667pt;}
.yde{bottom:421.226498pt;}
.y14f{bottom:423.146497pt;}
.y11c{bottom:423.466497pt;}
.y48{bottom:425.026667pt;}
.y5{bottom:425.506667pt;}
.y15f{bottom:428.106495pt;}
.y167{bottom:429.546495pt;}
.y47{bottom:435.746667pt;}
.y8e{bottom:436.226667pt;}
.ydd{bottom:436.586492pt;}
.y11b{bottom:438.826491pt;}
.ydc{bottom:441.226490pt;}
.y143{bottom:444.586489pt;}
.y46{bottom:446.306667pt;}
.y4{bottom:451.746667pt;}
.ydb{bottom:451.946486pt;}
.y11a{bottom:454.186485pt;}
.y45{bottom:457.026667pt;}
.y8d{bottom:457.506667pt;}
.y142{bottom:465.706480pt;}
.yda{bottom:467.306480pt;}
.y44{bottom:467.746667pt;}
.y119{bottom:469.546479pt;}
.y3{bottom:475.746667pt;}
.y43{bottom:478.306667pt;}
.y8c{bottom:478.626667pt;}
.yd9{bottom:482.666474pt;}
.y118{bottom:484.906473pt;}
.y141{bottom:486.986472pt;}
.y42{bottom:489.026667pt;}
.y16c{bottom:493.066469pt;}
.y2{bottom:497.666667pt;}
.yd8{bottom:497.866468pt;}
.y41{bottom:499.746667pt;}
.y8b{bottom:499.773333pt;}
.y117{bottom:500.106467pt;}
.y116{bottom:504.746465pt;}
.y140{bottom:508.106463pt;}
.y40{bottom:510.306667pt;}
.yd7{bottom:513.226461pt;}
.y115{bottom:515.466460pt;}
.y15e{bottom:520.106459pt;}
.y8a{bottom:520.893333pt;}
.y3f{bottom:521.026667pt;}
.y13f{bottom:529.226455pt;}
.yd6{bottom:529.386455pt;}
.y114{bottom:530.826454pt;}
.y3e{bottom:531.746667pt;}
.y158{bottom:535.306453pt;}
.y89{bottom:542.173333pt;}
.y3d{bottom:542.306667pt;}
.y113{bottom:546.186448pt;}
.y13e{bottom:550.346447pt;}
.y112{bottom:550.826446pt;}
.yd4{bottom:552.426446pt;}
.y3c{bottom:553.026667pt;}
.y166{bottom:556.426444pt;}
.yd5{bottom:558.506443pt;}
.y111{bottom:562.346442pt;}
.y88{bottom:563.293333pt;}
.y3b{bottom:563.746667pt;}
.y13d{bottom:571.466438pt;}
.yd3{bottom:573.546437pt;}
.y3a{bottom:574.333333pt;}
.y162{bottom:577.546436pt;}
.y87{bottom:584.413333pt;}
.y39{bottom:585.053333pt;}
.y13b{bottom:592.746430pt;}
.yd2{bottom:594.666429pt;}
.y38{bottom:595.773333pt;}
.y13c{bottom:598.826427pt;}
.y86{bottom:605.533333pt;}
.y37{bottom:606.333333pt;}
.y10f{bottom:613.866421pt;}
.yd1{bottom:615.786420pt;}
.y36{bottom:617.053333pt;}
.y110{bottom:619.946419pt;}
.y85{bottom:626.653333pt;}
.y35{bottom:627.773333pt;}
.y16b{bottom:634.666413pt;}
.y10e{bottom:634.986413pt;}
.ycf{bottom:637.066412pt;}
.y34{bottom:638.333333pt;}
.y157{bottom:641.066410pt;}
.yd0{bottom:643.146409pt;}
.y33{bottom:649.053333pt;}
.y16a{bottom:655.786404pt;}
.y10c{bottom:656.106404pt;}
.ycd{bottom:658.186403pt;}
.y32{bottom:659.773333pt;}
.y10d{bottom:662.186402pt;}
.yce{bottom:664.266401pt;}
.y31{bottom:670.333333pt;}
.y10a{bottom:677.386396pt;}
.ycc{bottom:679.306395pt;}
.y30{bottom:681.053333pt;}
.y10b{bottom:683.466393pt;}
.yb4{bottom:691.293333pt;}
.y108{bottom:698.506387pt;}
.ycb{bottom:700.426386pt;}
.y2f{bottom:702.333333pt;}
.y109{bottom:704.586385pt;}
.ya4{bottom:705.053333pt;}
.y2e{bottom:713.053333pt;}
.y107{bottom:719.626379pt;}
.yca{bottom:721.386378pt;}
.y2d{bottom:723.773333pt;}
.y80{bottom:724.733333pt;}
.y2c{bottom:734.333333pt;}
.y106{bottom:740.746370pt;}
.yc9{bottom:742.826370pt;}
.y2b{bottom:745.053333pt;}
.y13a{bottom:746.826368pt;}
.y2a{bottom:755.773333pt;}
.y104{bottom:762.026362pt;}
.yc8{bottom:763.946361pt;}
.y29{bottom:766.333333pt;}
.y105{bottom:768.106359pt;}
.y28{bottom:777.053333pt;}
.y103{bottom:783.146353pt;}
.yc7{bottom:785.066353pt;}
.y27{bottom:787.773333pt;}
.y73{bottom:789.226667pt;}
.y26{bottom:798.373333pt;}
.y102{bottom:804.266345pt;}
.yc6{bottom:806.346344pt;}
.y25{bottom:809.093333pt;}
.y165{bottom:810.346343pt;}
.y24{bottom:819.813333pt;}
.y101{bottom:825.386337pt;}
.yc5{bottom:827.466336pt;}
.y23{bottom:830.373333pt;}
.y156{bottom:831.466334pt;}
.y22{bottom:841.093333pt;}
.y100{bottom:846.666328pt;}
.yc4{bottom:848.586327pt;}
.y21{bottom:851.813333pt;}
.y20{bottom:862.373333pt;}
.yff{bottom:867.786320pt;}
.yc3{bottom:870.346319pt;}
.y1f{bottom:873.093333pt;}
.y161{bottom:873.866317pt;}
.y1e{bottom:883.813333pt;}
.yfe{bottom:888.906311pt;}
.yc1{bottom:892.266310pt;}
.y1d{bottom:894.373333pt;}
.y14e{bottom:894.986309pt;}
.yc2{bottom:898.346307pt;}
.y1c{bottom:905.093333pt;}
.y139{bottom:909.706303pt;}
.yfd{bottom:910.026303pt;}
.yc0{bottom:913.386301pt;}
.y1b{bottom:915.813333pt;}
.y164{bottom:916.106300pt;}
.y1a{bottom:926.373333pt;}
.y72{bottom:928.933333pt;}
.y138{bottom:930.986294pt;}
.yfb{bottom:931.306294pt;}
.ybf{bottom:934.506293pt;}
.y19{bottom:937.093333pt;}
.yfc{bottom:937.386292pt;}
.y18{bottom:947.813333pt;}
.y71{bottom:950.053333pt;}
.y137{bottom:952.106286pt;}
.yfa{bottom:952.426286pt;}
.ybe{bottom:955.626284pt;}
.y17{bottom:958.373333pt;}
.y14d{bottom:958.506283pt;}
.y16{bottom:969.093333pt;}
.y70{bottom:971.173333pt;}
.yf9{bottom:973.546277pt;}
.ybd{bottom:976.906276pt;}
.y14c{bottom:979.626275pt;}
.y15{bottom:979.813333pt;}
.y14{bottom:990.373333pt;}
.yb5{bottom:991.466270pt;}
.y6f{bottom:992.453333pt;}
.yf8{bottom:994.666269pt;}
.y163{bottom:1000.746266pt;}
.y13{bottom:1001.093333pt;}
.y6e{bottom:1007.333333pt;}
.y12{bottom:1011.813333pt;}
.y11{bottom:1022.400000pt;}
.y1{bottom:1030.240000pt;}
.y10{bottom:1033.120000pt;}
.yf{bottom:1043.840000pt;}
.y135{bottom:1046.346248pt;}
.yf6{bottom:1048.106247pt;}
.ye{bottom:1054.400000pt;}
.yf5{bottom:1063.466241pt;}
.yd{bottom:1065.120000pt;}
.yc{bottom:1075.840000pt;}
.yb{bottom:1086.400000pt;}
.h1e{height:14.880000pt;}
.h24{height:30.758388pt;}
.hc{height:35.091250pt;}
.hd{height:35.196000pt;}
.h2{height:36.062000pt;}
.h25{height:36.280945pt;}
.h1c{height:36.759025pt;}
.h3{height:36.883125pt;}
.hf{height:36.989055pt;}
.h20{height:38.163185pt;}
.h1b{height:39.243734pt;}
.h18{height:42.032838pt;}
.h21{height:42.656233pt;}
.hb{height:42.900937pt;}
.he{height:43.029000pt;}
.h23{height:44.287982pt;}
.h22{height:44.998382pt;}
.h1d{height:47.276781pt;}
.h1a{height:49.622500pt;}
.h8{height:52.818750pt;}
.h9{height:52.916562pt;}
.h6{height:55.675294pt;}
.h17{height:56.156250pt;}
.h1f{height:56.959977pt;}
.h7{height:57.220312pt;}
.ha{height:57.647187pt;}
.h10{height:58.563750pt;}
.h14{height:62.781250pt;}
.h13{height:62.812500pt;}
.h15{height:64.480000pt;}
.h11{height:64.500000pt;}
.h4{height:73.359375pt;}
.h5{height:81.203750pt;}
.h12{height:133.453333pt;}
.h19{height:302.266667pt;}
.h16{height:641.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:3.520000pt;}
.w3{width:61.626667pt;}
.w5{width:64.946667pt;}
.w4{width:511.120000pt;}
.w2{width:623.760000pt;}
.w6{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:7.192000pt;}
.x13{left:53.280000pt;}
.x4f{left:54.426667pt;}
.x2d{left:71.200000pt;}
.x22{left:72.992000pt;}
.x17{left:77.792000pt;}
.x1{left:80.672000pt;}
.x4a{left:83.232000pt;}
.x1d{left:100.192000pt;}
.x18{left:108.992000pt;}
.x53{left:113.439955pt;}
.x62{left:117.759953pt;}
.x91{left:120.959952pt;}
.x59{left:122.399951pt;}
.x51{left:126.226667pt;}
.x28{left:131.232000pt;}
.x3e{left:133.786667pt;}
.x3c{left:135.706667pt;}
.x3b{left:137.946667pt;}
.x7e{left:139.359944pt;}
.x25{left:140.506667pt;}
.x30{left:142.426667pt;}
.x1f{left:143.546667pt;}
.x41{left:145.146667pt;}
.x21{left:150.746667pt;}
.x48{left:151.706667pt;}
.x2c{left:153.466667pt;}
.x1e{left:155.386667pt;}
.x7b{left:156.319937pt;}
.x15{left:158.746667pt;}
.xa3{left:159.839936pt;}
.xe{left:160.826667pt;}
.x84{left:166.079934pt;}
.x16{left:170.266667pt;}
.x87{left:171.999931pt;}
.x2e{left:173.466667pt;}
.x3d{left:174.906667pt;}
.x38{left:176.026667pt;}
.x27{left:178.106667pt;}
.x1c{left:180.026667pt;}
.x40{left:181.466667pt;}
.x88{left:182.879927pt;}
.x37{left:184.026667pt;}
.xc{left:187.226667pt;}
.x7f{left:188.159925pt;}
.x26{left:189.306667pt;}
.x35{left:192.026667pt;}
.x7{left:193.626667pt;}
.x11{left:194.746667pt;}
.x2a{left:196.026667pt;}
.x2b{left:198.426667pt;}
.x1b{left:200.346667pt;}
.x34{left:203.546667pt;}
.x29{left:205.146667pt;}
.x31{left:206.266667pt;}
.x23{left:208.986667pt;}
.x3a{left:210.266667pt;}
.x80{left:211.999915pt;}
.x24{left:214.106667pt;}
.x42{left:215.546667pt;}
.xd{left:222.426667pt;}
.x39{left:223.706667pt;}
.x20{left:224.986667pt;}
.x36{left:226.746667pt;}
.x7a{left:230.239908pt;}
.x10{left:235.266667pt;}
.x14{left:237.026667pt;}
.x32{left:240.866667pt;}
.x33{left:243.106667pt;}
.x3{left:244.706667pt;}
.x71{left:247.839901pt;}
.x47{left:256.386667pt;}
.x2f{left:260.226667pt;}
.x19{left:261.186667pt;}
.x12{left:265.506667pt;}
.x9e{left:267.039893pt;}
.x8b{left:268.959892pt;}
.x4{left:272.066667pt;}
.x97{left:275.519890pt;}
.x9f{left:277.919889pt;}
.x8c{left:279.839888pt;}
.x72{left:280.959888pt;}
.x96{left:282.879887pt;}
.x43{left:287.426667pt;}
.x5{left:293.666667pt;}
.x44{left:300.706667pt;}
.x45{left:303.906667pt;}
.xa1{left:314.399874pt;}
.x3f{left:321.026667pt;}
.xf{left:325.346667pt;}
.x1a{left:327.746667pt;}
.x95{left:330.879868pt;}
.x55{left:335.679327pt;}
.x4b{left:337.506667pt;}
.x46{left:338.786667pt;}
.x56{left:341.120467pt;}
.x94{left:346.239862pt;}
.xb{left:352.066667pt;}
.x81{left:354.879858pt;}
.x6{left:357.026667pt;}
.x9{left:360.706667pt;}
.x63{left:362.079855pt;}
.x9b{left:363.039855pt;}
.x4c{left:364.546667pt;}
.x65{left:379.519848pt;}
.xa0{left:381.599847pt;}
.x64{left:386.239846pt;}
.xa{left:390.653333pt;}
.x8{left:392.413333pt;}
.x2{left:396.253333pt;}
.x85{left:402.559839pt;}
.x86{left:413.439835pt;}
.x9c{left:416.319833pt;}
.x92{left:424.639830pt;}
.x9d{left:427.199829pt;}
.xa4{left:435.839826pt;}
.x66{left:439.839824pt;}
.x7c{left:440.799824pt;}
.x57{left:442.079823pt;}
.x67{left:443.199823pt;}
.x49{left:447.933333pt;}
.x58{left:452.639819pt;}
.x52{left:457.119817pt;}
.x68{left:460.159816pt;}
.xa2{left:462.239815pt;}
.x69{left:464.159814pt;}
.x6a{left:472.959811pt;}
.x7d{left:480.479808pt;}
.x93{left:483.039807pt;}
.x8d{left:490.719804pt;}
.x98{left:492.159803pt;}
.x5a{left:496.319801pt;}
.x82{left:497.279801pt;}
.x78{left:498.399801pt;}
.x5b{left:501.759799pt;}
.x79{left:503.839798pt;}
.x83{left:508.159797pt;}
.x99{left:516.159794pt;}
.x6b{left:519.679792pt;}
.x9a{left:527.039789pt;}
.xa5{left:530.079788pt;}
.xa6{left:540.959784pt;}
.x6c{left:544.959782pt;}
.x89{left:555.839778pt;}
.x5e{left:557.119777pt;}
.x60{left:559.679776pt;}
.x5f{left:562.559775pt;}
.x61{left:565.119774pt;}
.x8a{left:566.719773pt;}
.x50{left:594.373333pt;}
.x74{left:597.759761pt;}
.x75{left:603.199759pt;}
.x6d{left:605.119758pt;}
.x6e{left:608.479757pt;}
.x6f{left:611.839755pt;}
.x8e{left:618.399753pt;}
.x70{left:638.399745pt;}
.x76{left:653.279739pt;}
.x77{left:658.719737pt;}
.x73{left:660.319736pt;}
.x8f{left:663.679735pt;}
.x90{left:667.359733pt;}
.x5c{left:674.879730pt;}
.x5d{left:680.319728pt;}
.x4e{left:707.013333pt;}
.x54{left:789.760000pt;}
}




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