
    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_5f826f16dd7ab1986b771d2f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_96bbb587455f70cf68498fdc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_774267aafdf1dd3bf7ae4963.woff')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_d33e20b4d184f778f1baa072.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_fa60ede4711df65851ad8606.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_e1e366d547e5d3a7d8b0db65.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d846e1d08c5b1a7b1e0e8278.woff')format("woff");}.ff7{font-family:ff7;line-height:0.713000;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_2c3dc1326901f92d9be6c522.woff')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_21280b856a28f49857972c3f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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;}
.m3{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);}
.m1a{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);}
.m14{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);}
.m8{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);}
.m16{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);}
.m0{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);}
.m15{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);}
.m13{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);}
.mf{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);}
.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);}
.m11{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);}
.m19{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m6{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);}
.me{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);}
.m5{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);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17{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.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);}
.ma{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);}
.m9{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);}
.md{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);}
.m2{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);}
.mb{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);}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.598124px;}
.v1{vertical-align:21.702000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.689902px;}
.ls7{letter-spacing:2.988780px;}
.ls11{letter-spacing:2.989200px;}
.lsf{letter-spacing:3.206239px;}
.lsd{letter-spacing:4.998418px;}
.lse{letter-spacing:5.003873px;}
.lsc{letter-spacing:5.004418px;}
.ls8{letter-spacing:11.955150px;}
.lsb{letter-spacing:12.493100px;}
.ls6{letter-spacing:12.672427px;}
.ls0{letter-spacing:13.150632px;}
.ls5{letter-spacing:14.166817px;}
.ls15{letter-spacing:14.884124px;}
.ls4{letter-spacing:14.943900px;}
.ls2{letter-spacing:16.019861px;}
.ls1{letter-spacing:17.454475px;}
.lsa{letter-spacing:27.437000px;}
.ls10{letter-spacing:138.753568px;}
.ls13{letter-spacing:238.325317px;}
.ls12{letter-spacing:305.247900px;}
.ls14{letter-spacing:339.047203px;}
.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;}
}
.ws14{word-spacing:-14.943900px;}
.ws86{word-spacing:-13.449600px;}
.ws7d{word-spacing:-4.782048px;}
.ws78{word-spacing:-4.542946px;}
.ws96{word-spacing:-4.363619px;}
.ws97{word-spacing:-3.407209px;}
.ws73{word-spacing:-3.347434px;}
.ws8f{word-spacing:-3.108331px;}
.ws99{word-spacing:-2.809453px;}
.ws9c{word-spacing:-1.912819px;}
.ws9b{word-spacing:-1.853044px;}
.ws18{word-spacing:-1.494390px;}
.ws7c{word-spacing:-0.836858px;}
.ws7a{word-spacing:-0.717307px;}
.ws7e{word-spacing:-0.418429px;}
.ws24{word-spacing:-0.358654px;}
.ws1a{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.239102px;}
.ws1c{word-spacing:-0.143462px;}
.ws21{word-spacing:-0.119551px;}
.wsc{word-spacing:-0.059776px;}
.ws6b{word-spacing:-0.053798px;}
.ws58{word-spacing:-0.052965px;}
.ws62{word-spacing:-0.052338px;}
.ws6{word-spacing:0.000000px;}
.ws5f{word-spacing:0.047821px;}
.ws4{word-spacing:0.053798px;}
.wsa{word-spacing:0.059776px;}
.ws1e{word-spacing:0.095641px;}
.ws11{word-spacing:0.119551px;}
.ws77{word-spacing:0.179327px;}
.ws1d{word-spacing:0.191282px;}
.ws17{word-spacing:0.239102px;}
.wsf{word-spacing:0.298878px;}
.ws2f{word-spacing:0.358654px;}
.ws2b{word-spacing:0.777083px;}
.ws19{word-spacing:0.836858px;}
.ws22{word-spacing:0.956410px;}
.wsa0{word-spacing:1.255288px;}
.ws2c{word-spacing:1.554166px;}
.ws26{word-spacing:1.673717px;}
.ws25{word-spacing:1.733492px;}
.ws10{word-spacing:1.793268px;}
.wsb{word-spacing:1.912819px;}
.ws3{word-spacing:2.313331px;}
.ws28{word-spacing:2.749678px;}
.ws13{word-spacing:3.227882px;}
.ws12{word-spacing:3.466985px;}
.wse{word-spacing:3.646312px;}
.ws9f{word-spacing:4.363619px;}
.ws16{word-spacing:5.499355px;}
.ws9a{word-spacing:6.097111px;}
.ws8{word-spacing:6.515540px;}
.ws95{word-spacing:10.580281px;}
.ws70{word-spacing:11.058458px;}
.ws6c{word-spacing:11.383676px;}
.ws74{word-spacing:11.536691px;}
.ws90{word-spacing:11.716018px;}
.ws1f{word-spacing:11.907329px;}
.ws5e{word-spacing:11.955150px;}
.ws7f{word-spacing:12.104640px;}
.ws98{word-spacing:12.851754px;}
.ws60{word-spacing:13.032242px;}
.ws56{word-spacing:13.188227px;}
.ws2{word-spacing:13.395802px;}
.ws5{word-spacing:13.449600px;}
.ws7b{word-spacing:14.166817px;}
.ws41{word-spacing:14.518719px;}
.ws23{word-spacing:14.525471px;}
.ws3a{word-spacing:14.712362px;}
.ws20{word-spacing:14.764573px;}
.ws2e{word-spacing:14.824349px;}
.ws7{word-spacing:14.884124px;}
.ws9{word-spacing:14.943900px;}
.ws2d{word-spacing:15.003676px;}
.ws76{word-spacing:15.063451px;}
.ws79{word-spacing:15.183002px;}
.ws9e{word-spacing:15.242778px;}
.ws85{word-spacing:15.493939px;}
.ws2a{word-spacing:15.661207px;}
.ws72{word-spacing:15.960085px;}
.ws9d{word-spacing:16.318739px;}
.ws91{word-spacing:16.438290px;}
.ws93{word-spacing:16.498066px;}
.ws75{word-spacing:16.617617px;}
.ws94{word-spacing:17.095822px;}
.wsa1{word-spacing:17.514251px;}
.ws27{word-spacing:17.633802px;}
.ws29{word-spacing:18.351109px;}
.ws92{word-spacing:18.470660px;}
.wsd{word-spacing:18.530436px;}
.ws6a{word-spacing:18.721843px;}
.ws15{word-spacing:20.383480px;}
.wsa2{word-spacing:21.280114px;}
.ws1{word-spacing:21.433223px;}
.ws0{word-spacing:21.691454px;}
.ws71{word-spacing:33.308608px;}
.ws6f{word-spacing:34.288181px;}
.ws61{word-spacing:39.253740px;}
.ws57{word-spacing:39.723576px;}
.ws42{word-spacing:43.731082px;}
.ws3b{word-spacing:44.314342px;}
.ws59{word-spacing:45.553781px;}
.ws3c{word-spacing:50.818331px;}
.ws69{word-spacing:56.525385px;}
.ws34{word-spacing:57.011295px;}
.ws30{word-spacing:57.106243px;}
.ws5d{word-spacing:57.201950px;}
.ws4b{word-spacing:59.715824px;}
.ws63{word-spacing:61.078819px;}
.ws39{word-spacing:61.919174px;}
.ws33{word-spacing:62.022296px;}
.ws4a{word-spacing:62.972758px;}
.ws48{word-spacing:63.701646px;}
.ws40{word-spacing:63.812653px;}
.ws6e{word-spacing:65.604719px;}
.ws43{word-spacing:67.112633px;}
.ws64{word-spacing:68.039816px;}
.ws45{word-spacing:68.045563px;}
.ws5a{word-spacing:68.854199px;}
.ws53{word-spacing:75.800542px;}
.ws65{word-spacing:76.047579px;}
.ws3d{word-spacing:76.811526px;}
.ws55{word-spacing:81.631353px;}
.ws47{word-spacing:84.721682px;}
.ws6d{word-spacing:86.863391px;}
.ws35{word-spacing:87.714074px;}
.ws37{word-spacing:87.771142px;}
.ws67{word-spacing:88.242407px;}
.ws46{word-spacing:89.328023px;}
.ws52{word-spacing:90.519430px;}
.ws66{word-spacing:92.377135px;}
.ws5b{word-spacing:93.482816px;}
.ws4e{word-spacing:95.581184px;}
.ws44{word-spacing:98.307472px;}
.ws36{word-spacing:101.011003px;}
.ws31{word-spacing:101.179229px;}
.ws54{word-spacing:102.913812px;}
.ws3e{word-spacing:104.286419px;}
.ws4f{word-spacing:108.731816px;}
.ws50{word-spacing:122.599756px;}
.ws4c{word-spacing:136.527470px;}
.ws83{word-spacing:148.183712px;}
.ws80{word-spacing:152.248453px;}
.ws8e{word-spacing:174.305650px;}
.ws87{word-spacing:178.370390px;}
.ws8d{word-spacing:220.452413px;}
.ws81{word-spacing:222.723886px;}
.ws88{word-spacing:223.381417px;}
.ws82{word-spacing:243.167141px;}
.ws89{word-spacing:251.954154px;}
.ws8a{word-spacing:290.449640px;}
.ws8b{word-spacing:292.242908px;}
.ws84{word-spacing:316.810680px;}
.ws68{word-spacing:335.070958px;}
.ws5c{word-spacing:335.482316px;}
.ws32{word-spacing:371.647416px;}
.ws49{word-spacing:373.289666px;}
.ws3f{word-spacing:374.253268px;}
.ws38{word-spacing:374.913254px;}
.ws4d{word-spacing:403.996572px;}
.ws51{word-spacing:408.058572px;}
.ws8c{word-spacing:479.041658px;}
._0{margin-left:-4.906400px;}
._50{margin-left:-3.885414px;}
._2{margin-left:-2.851315px;}
._1{margin-left:-1.829146px;}
._3{width:1.075968px;}
._7e{width:2.809453px;}
._7{width:3.825631px;}
._92{width:12.827856px;}
._8{width:13.987490px;}
._6{width:15.840534px;}
._a{width:17.155597px;}
._b{width:18.727727px;}
._5{width:20.383480px;}
._9{width:21.949625px;}
._c{width:27.114394px;}
._78{width:46.720874px;}
._7a{width:47.768423px;}
._62{width:54.553711px;}
._76{width:56.533133px;}
._61{width:57.731597px;}
._4{width:59.775600px;}
._24{width:60.858363px;}
._65{width:63.283337px;}
._23{width:64.403511px;}
._66{width:66.258925px;}
._6e{width:67.797103px;}
._5f{width:68.861877px;}
._31{width:69.895971px;}
._30{width:71.092888px;}
._20{width:72.908129px;}
._32{width:73.916323px;}
._6a{width:74.978232px;}
._35{width:77.083320px;}
._5e{width:79.133403px;}
._5c{width:80.285858px;}
._45{width:81.689661px;}
._43{width:82.759121px;}
._e{width:85.406304px;}
._33{width:87.328797px;}
._1f{width:88.513031px;}
._36{width:89.858892px;}
._44{width:91.368807px;}
._63{width:93.535781px;}
._5d{width:95.217142px;}
._39{width:96.286603px;}
._5a{width:97.432467px;}
._3d{width:99.435241px;}
._5b{width:100.941763px;}
._11{width:102.151007px;}
._25{width:104.345504px;}
._2f{width:106.238567px;}
._41{width:108.227143px;}
._3a{width:109.353715px;}
._27{width:111.199456px;}
._3e{width:112.439206px;}
._2a{width:113.503802px;}
._19{width:115.392230px;}
._48{width:117.490840px;}
._26{width:119.057866px;}
._29{width:120.062324px;}
._4c{width:123.675716px;}
._15{width:124.817204px;}
._40{width:126.852434px;}
._28{width:128.097992px;}
._1a{width:130.322786px;}
._7b{width:132.257380px;}
._4a{width:137.927039px;}
._46{width:139.265775px;}
._37{width:140.639806px;}
._2d{width:142.455839px;}
._f{width:143.883494px;}
._51{width:144.896054px;}
._6c{width:146.050115px;}
._53{width:150.819803px;}
._54{width:152.217760px;}
._7c{width:153.663712px;}
._2b{width:155.277455px;}
._47{width:162.708815px;}
._57{width:165.110524px;}
._3b{width:166.119155px;}
._21{width:168.809769px;}
._68{width:173.789424px;}
._7d{width:177.201795px;}
._59{width:178.281850px;}
._73{width:184.470413px;}
._18{width:185.789351px;}
._71{width:187.076314px;}
._3f{width:188.189459px;}
._1d{width:193.748644px;}
._69{width:199.016494px;}
._74{width:208.700727px;}
._2e{width:210.290878px;}
._13{width:213.019618px;}
._56{width:218.299787px;}
._72{width:220.130121px;}
._38{width:221.716621px;}
._1b{width:226.562953px;}
._7f{width:236.711376px;}
._4e{width:238.119966px;}
._70{width:242.211709px;}
._1c{width:243.542535px;}
._86{width:249.682681px;}
._3c{width:252.619919px;}
._16{width:260.771756px;}
._14{width:267.643243px;}
._55{width:270.455825px;}
._91{width:275.804618px;}
._77{width:277.704969px;}
._12{width:281.934095px;}
._75{width:286.054863px;}
._6d{width:290.900926px;}
._89{width:292.302684px;}
._4f{width:295.233725px;}
._84{width:296.307649px;}
._90{width:301.926556px;}
._8d{width:307.485686px;}
._4d{width:310.177625px;}
._60{width:311.300430px;}
._82{width:313.582798px;}
._6b{width:315.312241px;}
._79{width:320.162342px;}
._67{width:323.347399px;}
._d{width:331.168907px;}
._17{width:334.473062px;}
._8e{width:336.297526px;}
._88{width:338.090794px;}
._1e{width:340.102205px;}
._83{width:341.856656px;}
._49{width:345.088460px;}
._22{width:347.276734px;}
._52{width:349.150460px;}
._42{width:351.277240px;}
._6f{width:355.865599px;}
._34{width:360.228900px;}
._8f{width:367.978594px;}
._58{width:371.596140px;}
._8c{width:382.922494px;}
._64{width:384.051615px;}
._81{width:392.247487px;}
._8b{width:397.866394px;}
._2c{width:428.435613px;}
._87{width:430.802749px;}
._10{width:437.361396px;}
._85{width:442.996972px;}
._4b{width:458.811481px;}
._80{width:534.274313px;}
._8a{width:560.396250px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.373838px;}
.fsd{font-size:35.865600px;}
.fs4{font-size:43.636200px;}
.fse{font-size:44.411478px;}
.fsb{font-size:45.717574px;}
.fs3{font-size:47.820600px;}
.fsa{font-size:52.338320px;}
.fs9{font-size:52.964768px;}
.fs1{font-size:53.798400px;}
.fs6{font-size:57.068363px;}
.fs5{font-size:57.163406px;}
.fs8{font-size:58.308109px;}
.fs7{font-size:59.085790px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2b{bottom:59.328000px;}
.ycf{bottom:95.295000px;}
.y2a{bottom:95.764500px;}
.yf0{bottom:95.970000px;}
.y29{bottom:110.709000px;}
.yce{bottom:113.227500px;}
.yef{bottom:113.902500px;}
.y28{bottom:125.652000px;}
.ycd{bottom:131.160000px;}
.y27{bottom:142.090500px;}
.yee{bottom:142.353000px;}
.ycc{bottom:149.094000px;}
.y26{bottom:158.529000px;}
.yed{bottom:160.287000px;}
.ycb{bottom:167.026500px;}
.y25{bottom:173.473500px;}
.yec{bottom:178.219500px;}
.yca{bottom:184.959000px;}
.y24{bottom:188.418000px;}
.ya0{bottom:192.921000px;}
.yeb{bottom:196.152000px;}
.yc9{bottom:202.891500px;}
.y23{bottom:203.361000px;}
.yea{bottom:214.084500px;}
.y22{bottom:218.305500px;}
.yc8{bottom:220.824000px;}
.ye9{bottom:232.017000px;}
.yc7{bottom:238.756500px;}
.y9f{bottom:241.488000px;}
.y21{bottom:249.397500px;}
.ye8{bottom:249.949500px;}
.y9e{bottom:256.431000px;}
.yc6{bottom:256.690500px;}
.y9d{bottom:278.401350px;}
.y20{bottom:279.534000px;}
.y67{bottom:280.963222px;}
.yc5{bottom:283.792500px;}
.y4b{bottom:286.063454px;}
.y1f{bottom:297.466500px;}
.y9c{bottom:300.672165px;}
.yc4{bottom:301.726500px;}
.ye7{bottom:302.668500px;}
.y80{bottom:303.989778px;}
.y66{bottom:305.775743px;}
.y4a{bottom:310.388857px;}
.y1e{bottom:315.399000px;}
.y9b{bottom:316.374817px;}
.yc3{bottom:319.659000px;}
.ye6{bottom:320.602500px;}
.y65{bottom:323.268001px;}
.y49{bottom:327.537707px;}
.y7f{bottom:329.133235px;}
.y9a{bottom:332.076155px;}
.y1d{bottom:333.331500px;}
.yc2{bottom:337.591500px;}
.ye5{bottom:338.535000px;}
.y64{bottom:340.760258px;}
.y48{bottom:344.686557px;}
.y7e{bottom:346.858794px;}
.y99{bottom:347.777493px;}
.y1c{bottom:351.265500px;}
.yc1{bottom:355.524000px;}
.ye4{bottom:356.467500px;}
.y63{bottom:358.252515px;}
.y47{bottom:361.835407px;}
.y98{bottom:363.478832px;}
.y7d{bottom:364.584353px;}
.y1b{bottom:369.198000px;}
.yc0{bottom:373.456500px;}
.ye3{bottom:374.400000px;}
.y62{bottom:375.744772px;}
.y46{bottom:378.984256px;}
.y97{bottom:379.180170px;}
.y7c{bottom:382.309912px;}
.y1a{bottom:387.130500px;}
.ye2{bottom:392.332500px;}
.y61{bottom:393.238492px;}
.y96{bottom:394.881508px;}
.ybf{bottom:395.872500px;}
.y7b{bottom:400.035471px;}
.y45{bottom:403.308225px;}
.y19{bottom:405.063000px;}
.ye1{bottom:410.265000px;}
.y60{bottom:410.730749px;}
.y95{bottom:417.153637px;}
.y7a{bottom:425.177445px;}
.y18{bottom:433.105500px;}
.y5f{bottom:435.541808px;}
.ye0{bottom:435.702000px;}
.ybe{bottom:440.846886px;}
.y44{bottom:443.320500px;}
.y17{bottom:451.038000px;}
.ydf{bottom:453.634500px;}
.ybd{bottom:454.170195px;}
.y94{bottom:455.716500px;}
.y79{bottom:465.766500px;}
.ybc{bottom:467.493505px;}
.y16{bottom:468.972000px;}
.yde{bottom:471.567000px;}
.y5e{bottom:475.896000px;}
.y43{bottom:480.747000px;}
.ybb{bottom:480.816814px;}
.y15{bottom:486.904500px;}
.ydd{bottom:489.499500px;}
.yba{bottom:494.140124px;}
.y42{bottom:503.163000px;}
.y14{bottom:504.837000px;}
.y93{bottom:505.845000px;}
.ydc{bottom:507.432000px;}
.yb9{bottom:507.463434px;}
.yb8{bottom:520.787858px;}
.y92{bottom:520.789500px;}
.y78{bottom:522.288000px;}
.y5d{bottom:532.312261px;}
.ydb{bottom:532.869000px;}
.y13{bottom:532.879500px;}
.yb7{bottom:534.111167px;}
.y41{bottom:534.546000px;}
.y91{bottom:542.854974px;}
.yb6{bottom:547.434477px;}
.y77{bottom:547.723500px;}
.y12{bottom:550.812000px;}
.y40{bottom:552.478500px;}
.y5c{bottom:557.454235px;}
.yb5{bottom:560.757786px;}
.y90{bottom:565.393682px;}
.y76{bottom:565.656000px;}
.y11{bottom:568.744500px;}
.y3f{bottom:570.411000px;}
.yda{bottom:573.663000px;}
.yb4{bottom:574.081096px;}
.y5b{bottom:575.179794px;}
.y8f{bottom:581.282953px;}
.y75{bottom:583.588500px;}
.y10{bottom:586.678500px;}
.yb3{bottom:587.404405px;}
.y3e{bottom:588.343500px;}
.yd9{bottom:590.101500px;}
.y5a{bottom:592.906835px;}
.y8e{bottom:597.172224px;}
.y74{bottom:601.522500px;}
.yf{bottom:604.611000px;}
.yfc{bottom:606.276000px;}
.yb2{bottom:606.303333px;}
.y59{bottom:610.632394px;}
.y8d{bottom:613.061495px;}
.y3d{bottom:615.243000px;}
.y73{bottom:619.455000px;}
.ye{bottom:622.543500px;}
.y58{bottom:628.357953px;}
.y8c{bottom:628.950766px;}
.yd8{bottom:631.359000px;}
.y3c{bottom:633.175500px;}
.y72{bottom:637.387500px;}
.yb1{bottom:642.489000px;}
.yd{bottom:650.586000px;}
.y3b{bottom:651.108000px;}
.y8b{bottom:651.488145px;}
.yd7{bottom:652.308000px;}
.y57{bottom:653.499928px;}
.y71{bottom:655.320000px;}
.yc{bottom:668.518500px;}
.y3a{bottom:669.040500px;}
.yd6{bottom:677.979000px;}
.yb0{bottom:679.702500px;}
.y70{bottom:680.755500px;}
.yb{bottom:686.451000px;}
.yfb{bottom:686.974500px;}
.y8a{bottom:690.240000px;}
.y56{bottom:694.089000px;}
.yd5{bottom:695.911500px;}
.y39{bottom:695.940000px;}
.yaf{bottom:698.496942px;}
.ya{bottom:704.385000px;}
.yfa{bottom:704.907000px;}
.yd4{bottom:713.844000px;}
.y38{bottom:713.872500px;}
.yae{bottom:718.131784px;}
.y6f{bottom:721.551000px;}
.yd3{bottom:731.776500px;}
.y37{bottom:731.805000px;}
.yad{bottom:731.846918px;}
.y9{bottom:732.427500px;}
.yac{bottom:745.562053px;}
.y89{bottom:746.537685px;}
.yd2{bottom:749.709000px;}
.yf9{bottom:749.739000px;}
.y55{bottom:750.194963px;}
.y8{bottom:750.360000px;}
.y36{bottom:758.704500px;}
.yab{bottom:759.277188px;}
.yd1{bottom:767.643000px;}
.yf8{bottom:767.671500px;}
.y88{bottom:771.348743px;}
.y7{bottom:772.776000px;}
.yaa{bottom:772.992322px;}
.y54{bottom:774.479921px;}
.y35{bottom:776.637000px;}
.y6e{bottom:778.072500px;}
.yd0{bottom:785.575500px;}
.yf7{bottom:785.604000px;}
.ya9{bottom:786.707457px;}
.y87{bottom:788.841001px;}
.y53{bottom:791.600258px;}
.y34{bottom:794.571000px;}
.ya8{bottom:800.423739px;}
.y6d{bottom:803.508000px;}
.yf6{bottom:803.536500px;}
.y86{bottom:806.333258px;}
.y6{bottom:808.065000px;}
.y52{bottom:808.720595px;}
.ya7{bottom:814.138873px;}
.y6c{bottom:821.440500px;}
.y33{bottom:821.469000px;}
.y85{bottom:823.825515px;}
.y5{bottom:824.503500px;}
.y51{bottom:825.840932px;}
.ya6{bottom:827.854008px;}
.yf5{bottom:830.436000px;}
.y6b{bottom:839.373000px;}
.y32{bottom:839.401500px;}
.y4{bottom:840.942000px;}
.y84{bottom:841.319235px;}
.ya5{bottom:841.569143px;}
.y50{bottom:842.961269px;}
.yf4{bottom:848.368500px;}
.ya4{bottom:855.284277px;}
.y6a{bottom:857.305500px;}
.y31{bottom:857.335500px;}
.y3{bottom:857.379000px;}
.y83{bottom:858.811492px;}
.y4f{bottom:860.081606px;}
.yf3{bottom:866.301000px;}
.ya3{bottom:868.999412px;}
.y69{bottom:875.239500px;}
.y30{bottom:875.268000px;}
.y82{bottom:876.303749px;}
.y4e{bottom:877.203375px;}
.yf2{bottom:884.233500px;}
.ya2{bottom:888.454138px;}
.y2f{bottom:893.200500px;}
.y68{bottom:900.675000px;}
.y81{bottom:901.114808px;}
.y4d{bottom:901.486902px;}
.yf1{bottom:902.167500px;}
.y2{bottom:912.648000px;}
.y2e{bottom:920.100000px;}
.ya1{bottom:925.030500px;}
.y2d{bottom:938.032500px;}
.y1{bottom:938.052000px;}
.y4c{bottom:941.469000px;}
.y2c{bottom:978.381000px;}
.h18{height:25.715635px;}
.h19{height:31.976264px;}
.h1a{height:32.686847px;}
.h15{height:32.916654px;}
.h16{height:33.648135px;}
.h8{height:33.856985px;}
.h7{height:35.195962px;}
.hb{height:38.089267px;}
.h14{height:38.521003px;}
.h2{height:38.734848px;}
.h13{height:38.982069px;}
.h3{height:39.595622px;}
.h6{height:40.109428px;}
.h17{height:40.527166px;}
.he{height:41.089221px;}
.hc{height:41.157653px;}
.h4{height:41.723369px;}
.hf{height:42.002315px;}
.hd{height:42.072267px;}
.h1b{height:42.859105px;}
.h11{height:42.914768px;}
.h12{height:43.038432px;}
.h10{height:43.487141px;}
.h5{height:43.994842px;}
.ha{height:52.983155px;}
.h9{height:52.989155px;}
.h1{height:60.081886px;}
.h0{height:1080.000000px;}
.w0{width:729.000000px;}
.x0{left:0.000000px;}
.x1{left:67.989000px;}
.x2f{left:77.314103px;}
.x26{left:79.460210px;}
.x2{left:83.686500px;}
.x1b{left:90.087000px;}
.x3f{left:91.158000px;}
.x4b{left:94.899000px;}
.x40{left:99.874500px;}
.x2b{left:108.603000px;}
.x38{left:110.071500px;}
.x29{left:113.962500px;}
.x2a{left:120.600000px;}
.x41{left:122.290500px;}
.x28{left:125.959500px;}
.x2e{left:138.420000px;}
.x27{left:152.280000px;}
.x2c{left:153.544500px;}
.x1f{left:155.922000px;}
.x25{left:164.277000px;}
.x20{left:173.775000px;}
.x30{left:189.007500px;}
.x37{left:194.445000px;}
.x52{left:214.411500px;}
.x47{left:225.171000px;}
.x53{left:233.454000px;}
.x3{left:241.212000px;}
.x42{left:252.721500px;}
.x48{left:255.058500px;}
.x14{left:260.515500px;}
.x4{left:271.099500px;}
.x1c{left:274.332000px;}
.x43{left:282.610500px;}
.x1d{left:287.542500px;}
.x2d{left:291.316500px;}
.x4f{left:292.896000px;}
.x44{left:320.955000px;}
.x8{left:322.257000px;}
.x31{left:323.530500px;}
.x9{left:330.073500px;}
.xc{left:338.233500px;}
.x54{left:340.716000px;}
.x5{left:345.634500px;}
.x50{left:348.922500px;}
.xd{left:350.295000px;}
.x6{left:382.995000px;}
.x7{left:395.154000px;}
.x17{left:396.273000px;}
.x18{left:413.220000px;}
.x32{left:433.063500px;}
.x12{left:439.687500px;}
.xe{left:444.013500px;}
.x13{left:447.504000px;}
.xf{left:456.076500px;}
.x39{left:458.149500px;}
.x35{left:462.499500px;}
.x33{left:466.443000px;}
.x45{left:471.408000px;}
.x51{left:474.912000px;}
.x4c{left:487.119000px;}
.x3a{left:490.933500px;}
.x10{left:494.350500px;}
.x36{left:501.022500px;}
.xa{left:502.638000px;}
.x15{left:503.688000px;}
.x11{left:506.686500px;}
.xb{left:514.174500px;}
.x16{left:515.235000px;}
.x3c{left:523.270500px;}
.x4d{left:525.526500px;}
.x46{left:535.923000px;}
.x3b{left:545.758500px;}
.x19{left:546.801000px;}
.x49{left:548.397000px;}
.x21{left:549.478500px;}
.x1a{left:564.654000px;}
.x3d{left:568.102500px;}
.x22{left:571.234500px;}
.x4a{left:574.561500px;}
.x4e{left:602.503500px;}
.x34{left:630.370500px;}
.x3e{left:636.214500px;}
.x23{left:644.511000px;}
.x1e{left:647.047500px;}
.x24{left:657.721500px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.753888pt;}
.v1{vertical-align:19.290667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.391024pt;}
.ls7{letter-spacing:2.656693pt;}
.ls11{letter-spacing:2.657067pt;}
.lsf{letter-spacing:2.849990pt;}
.lsd{letter-spacing:4.443038pt;}
.lse{letter-spacing:4.447887pt;}
.lsc{letter-spacing:4.448371pt;}
.ls8{letter-spacing:10.626800pt;}
.lsb{letter-spacing:11.104978pt;}
.ls6{letter-spacing:11.264380pt;}
.ls0{letter-spacing:11.689451pt;}
.ls5{letter-spacing:12.592726pt;}
.ls15{letter-spacing:13.230333pt;}
.ls4{letter-spacing:13.283467pt;}
.ls2{letter-spacing:14.239876pt;}
.ls1{letter-spacing:15.515089pt;}
.lsa{letter-spacing:24.388445pt;}
.ls10{letter-spacing:123.336505pt;}
.ls13{letter-spacing:211.844726pt;}
.ls12{letter-spacing:271.331467pt;}
.ls14{letter-spacing:301.375292pt;}
.ws14{word-spacing:-13.283467pt;}
.ws86{word-spacing:-11.955200pt;}
.ws7d{word-spacing:-4.250709pt;}
.ws78{word-spacing:-4.038174pt;}
.ws96{word-spacing:-3.878772pt;}
.ws97{word-spacing:-3.028630pt;}
.ws73{word-spacing:-2.975497pt;}
.ws8f{word-spacing:-2.762961pt;}
.ws99{word-spacing:-2.497292pt;}
.ws9c{word-spacing:-1.700284pt;}
.ws9b{word-spacing:-1.647150pt;}
.ws18{word-spacing:-1.328347pt;}
.ws7c{word-spacing:-0.743874pt;}
.ws7a{word-spacing:-0.637606pt;}
.ws7e{word-spacing:-0.371937pt;}
.ws24{word-spacing:-0.318803pt;}
.ws1a{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.212535pt;}
.ws1c{word-spacing:-0.127522pt;}
.ws21{word-spacing:-0.106268pt;}
.wsc{word-spacing:-0.053134pt;}
.ws6b{word-spacing:-0.047821pt;}
.ws58{word-spacing:-0.047080pt;}
.ws62{word-spacing:-0.046523pt;}
.ws6{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.042507pt;}
.ws4{word-spacing:0.047821pt;}
.wsa{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.085014pt;}
.ws11{word-spacing:0.106268pt;}
.ws77{word-spacing:0.159402pt;}
.ws1d{word-spacing:0.170029pt;}
.ws17{word-spacing:0.212535pt;}
.wsf{word-spacing:0.265669pt;}
.ws2f{word-spacing:0.318803pt;}
.ws2b{word-spacing:0.690740pt;}
.ws19{word-spacing:0.743874pt;}
.ws22{word-spacing:0.850142pt;}
.wsa0{word-spacing:1.115811pt;}
.ws2c{word-spacing:1.381481pt;}
.ws26{word-spacing:1.487748pt;}
.ws25{word-spacing:1.540882pt;}
.ws10{word-spacing:1.594016pt;}
.wsb{word-spacing:1.700284pt;}
.ws3{word-spacing:2.056294pt;}
.ws28{word-spacing:2.444158pt;}
.ws13{word-spacing:2.869229pt;}
.ws12{word-spacing:3.081764pt;}
.wse{word-spacing:3.241166pt;}
.ws9f{word-spacing:3.878772pt;}
.ws16{word-spacing:4.888316pt;}
.ws9a{word-spacing:5.419654pt;}
.ws8{word-spacing:5.791591pt;}
.ws95{word-spacing:9.404694pt;}
.ws70{word-spacing:9.829740pt;}
.ws6c{word-spacing:10.118823pt;}
.ws74{word-spacing:10.254836pt;}
.ws90{word-spacing:10.414238pt;}
.ws1f{word-spacing:10.584293pt;}
.ws5e{word-spacing:10.626800pt;}
.ws7f{word-spacing:10.759680pt;}
.ws98{word-spacing:11.423781pt;}
.ws60{word-spacing:11.584215pt;}
.ws56{word-spacing:11.722869pt;}
.ws2{word-spacing:11.907379pt;}
.ws5{word-spacing:11.955200pt;}
.ws7b{word-spacing:12.592726pt;}
.ws41{word-spacing:12.905528pt;}
.ws23{word-spacing:12.911530pt;}
.ws3a{word-spacing:13.077655pt;}
.ws20{word-spacing:13.124065pt;}
.ws2e{word-spacing:13.177199pt;}
.ws7{word-spacing:13.230333pt;}
.ws9{word-spacing:13.283467pt;}
.ws2d{word-spacing:13.336601pt;}
.ws76{word-spacing:13.389734pt;}
.ws79{word-spacing:13.496002pt;}
.ws9e{word-spacing:13.549136pt;}
.ws85{word-spacing:13.772390pt;}
.ws2a{word-spacing:13.921073pt;}
.ws72{word-spacing:14.186742pt;}
.ws9d{word-spacing:14.505546pt;}
.ws91{word-spacing:14.611813pt;}
.ws93{word-spacing:14.664947pt;}
.ws75{word-spacing:14.771215pt;}
.ws94{word-spacing:15.196286pt;}
.wsa1{word-spacing:15.568223pt;}
.ws27{word-spacing:15.674491pt;}
.ws29{word-spacing:16.312097pt;}
.ws92{word-spacing:16.418365pt;}
.wsd{word-spacing:16.471499pt;}
.ws6a{word-spacing:16.641638pt;}
.ws15{word-spacing:18.118649pt;}
.wsa2{word-spacing:18.915657pt;}
.ws1{word-spacing:19.051754pt;}
.ws0{word-spacing:19.281293pt;}
.ws71{word-spacing:29.607652pt;}
.ws6f{word-spacing:30.478383pt;}
.ws61{word-spacing:34.892213pt;}
.ws57{word-spacing:35.309845pt;}
.ws42{word-spacing:38.872073pt;}
.ws3b{word-spacing:39.390526pt;}
.ws59{word-spacing:40.492250pt;}
.ws3c{word-spacing:45.171850pt;}
.ws69{word-spacing:50.244787pt;}
.ws34{word-spacing:50.676706pt;}
.ws30{word-spacing:50.761105pt;}
.ws5d{word-spacing:50.846177pt;}
.ws4b{word-spacing:53.080733pt;}
.ws63{word-spacing:54.292284pt;}
.ws39{word-spacing:55.039266pt;}
.ws33{word-spacing:55.130930pt;}
.ws4a{word-spacing:55.975785pt;}
.ws48{word-spacing:56.623685pt;}
.ws40{word-spacing:56.722358pt;}
.ws6e{word-spacing:58.315306pt;}
.ws43{word-spacing:59.655674pt;}
.ws64{word-spacing:60.479836pt;}
.ws45{word-spacing:60.484945pt;}
.ws5a{word-spacing:61.203732pt;}
.ws53{word-spacing:67.378259pt;}
.ws65{word-spacing:67.597848pt;}
.ws3d{word-spacing:68.276912pt;}
.ws55{word-spacing:72.561202pt;}
.ws47{word-spacing:75.308162pt;}
.ws6d{word-spacing:77.211903pt;}
.ws35{word-spacing:77.968066pt;}
.ws37{word-spacing:78.018793pt;}
.ws67{word-spacing:78.437695pt;}
.ws46{word-spacing:79.402687pt;}
.ws52{word-spacing:80.461715pt;}
.ws66{word-spacing:82.113008pt;}
.ws5b{word-spacing:83.095836pt;}
.ws4e{word-spacing:84.961053pt;}
.ws44{word-spacing:87.384419pt;}
.ws36{word-spacing:89.787558pt;}
.ws31{word-spacing:89.937093pt;}
.ws54{word-spacing:91.478944pt;}
.ws3e{word-spacing:92.699039pt;}
.ws4f{word-spacing:96.650503pt;}
.ws50{word-spacing:108.977561pt;}
.ws4c{word-spacing:121.357751pt;}
.ws83{word-spacing:131.718855pt;}
.ws80{word-spacing:135.331958pt;}
.ws8e{word-spacing:154.938355pt;}
.ws87{word-spacing:158.551458pt;}
.ws8d{word-spacing:195.957700pt;}
.ws81{word-spacing:197.976787pt;}
.ws88{word-spacing:198.561260pt;}
.ws82{word-spacing:216.148570pt;}
.ws89{word-spacing:223.959248pt;}
.ws8a{word-spacing:258.177458pt;}
.ws8b{word-spacing:259.771474pt;}
.ws84{word-spacing:281.609493pt;}
.ws68{word-spacing:297.840851pt;}
.ws5c{word-spacing:298.206503pt;}
.ws32{word-spacing:330.353259pt;}
.ws49{word-spacing:331.813036pt;}
.ws3f{word-spacing:332.669571pt;}
.ws38{word-spacing:333.256225pt;}
.ws4d{word-spacing:359.108064pt;}
.ws51{word-spacing:362.718731pt;}
.ws8c{word-spacing:425.814807pt;}
._0{margin-left:-4.361245pt;}
._50{margin-left:-3.453701pt;}
._2{margin-left:-2.534502pt;}
._1{margin-left:-1.625907pt;}
._3{width:0.956416pt;}
._7e{width:2.497292pt;}
._7{width:3.400561pt;}
._92{width:11.402539pt;}
._8{width:12.433325pt;}
._6{width:14.080475pt;}
._a{width:15.249420pt;}
._b{width:16.646868pt;}
._5{width:18.118649pt;}
._9{width:19.510778pt;}
._c{width:24.101683pt;}
._78{width:41.529666pt;}
._7a{width:42.460821pt;}
._62{width:48.492188pt;}
._76{width:50.251674pt;}
._61{width:51.316975pt;}
._4{width:53.133867pt;}
._24{width:54.096323pt;}
._65{width:56.251855pt;}
._23{width:57.247565pt;}
._66{width:58.896822pt;}
._6e{width:60.264091pt;}
._5f{width:61.210557pt;}
._31{width:62.129752pt;}
._30{width:63.193678pt;}
._20{width:64.807226pt;}
._32{width:65.703398pt;}
._6a{width:66.647317pt;}
._35{width:68.518507pt;}
._5e{width:70.340802pt;}
._5c{width:71.365207pt;}
._45{width:72.613032pt;}
._43{width:73.563664pt;}
._e{width:75.916714pt;}
._33{width:77.625597pt;}
._1f{width:78.678250pt;}
._36{width:79.874571pt;}
._44{width:81.216717pt;}
._63{width:83.142916pt;}
._5d{width:84.637460pt;}
._39{width:85.588091pt;}
._5a{width:86.606637pt;}
._3d{width:88.386881pt;}
._5b{width:89.726011pt;}
._11{width:90.800895pt;}
._25{width:92.751559pt;}
._2f{width:94.434281pt;}
._41{width:96.201905pt;}
._3a{width:97.203302pt;}
._27{width:98.843961pt;}
._3e{width:99.945961pt;}
._2a{width:100.892268pt;}
._19{width:102.570871pt;}
._48{width:104.436302pt;}
._26{width:105.829214pt;}
._29{width:106.722066pt;}
._4c{width:109.933970pt;}
._15{width:110.948626pt;}
._40{width:112.757720pt;}
._28{width:113.864882pt;}
._1a{width:115.842477pt;}
._7b{width:117.562116pt;}
._4a{width:122.601812pt;}
._46{width:123.791800pt;}
._37{width:125.013161pt;}
._2d{width:126.627412pt;}
._f{width:127.896439pt;}
._51{width:128.796493pt;}
._6c{width:129.822324pt;}
._53{width:134.062047pt;}
._54{width:135.304675pt;}
._7c{width:136.589966pt;}
._2b{width:138.024404pt;}
._47{width:144.630058pt;}
._57{width:146.764910pt;}
._3b{width:147.661471pt;}
._21{width:150.053128pt;}
._68{width:154.479488pt;}
._7d{width:157.512707pt;}
._59{width:158.472755pt;}
._73{width:163.973700pt;}
._18{width:165.146090pt;}
._71{width:166.290057pt;}
._3f{width:167.279519pt;}
._1d{width:172.221017pt;}
._69{width:176.903551pt;}
._74{width:185.511757pt;}
._2e{width:186.925224pt;}
._13{width:189.350771pt;}
._56{width:194.044255pt;}
._72{width:195.671218pt;}
._38{width:197.081441pt;}
._1b{width:201.389291pt;}
._7f{width:210.410112pt;}
._4e{width:211.662192pt;}
._70{width:215.299297pt;}
._1c{width:216.482253pt;}
._86{width:221.940161pt;}
._3c{width:224.551039pt;}
._16{width:231.797117pt;}
._14{width:237.905105pt;}
._55{width:240.405178pt;}
._91{width:245.159661pt;}
._77{width:246.848861pt;}
._12{width:250.608084pt;}
._75{width:254.270989pt;}
._6d{width:258.578601pt;}
._89{width:259.824608pt;}
._4f{width:262.429978pt;}
._84{width:263.384577pt;}
._90{width:268.379161pt;}
._8d{width:273.320610pt;}
._4d{width:275.713444pt;}
._60{width:276.711493pt;}
._82{width:278.740265pt;}
._6b{width:280.277548pt;}
._79{width:284.588748pt;}
._67{width:287.419910pt;}
._d{width:294.372362pt;}
._17{width:297.309388pt;}
._8e{width:298.931134pt;}
._88{width:300.525150pt;}
._1e{width:302.313071pt;}
._83{width:303.872583pt;}
._49{width:306.745298pt;}
._22{width:308.690430pt;}
._52{width:310.355965pt;}
._42{width:312.246435pt;}
._6f{width:316.324977pt;}
._34{width:320.203467pt;}
._8f{width:327.092083pt;}
._58{width:330.307680pt;}
._8c{width:340.375550pt;}
._64{width:341.379213pt;}
._81{width:348.664433pt;}
._8b{width:353.659017pt;}
._2c{width:380.831656pt;}
._87{width:382.935777pt;}
._10{width:388.765686pt;}
._85{width:393.775086pt;}
._4b{width:407.832428pt;}
._80{width:474.910500pt;}
._8a{width:498.130000pt;}
.fsc{font-size:29.665634pt;}
.fsd{font-size:31.880533pt;}
.fs4{font-size:38.787733pt;}
.fse{font-size:39.476869pt;}
.fsb{font-size:40.637844pt;}
.fs3{font-size:42.507200pt;}
.fsa{font-size:46.522951pt;}
.fs9{font-size:47.079794pt;}
.fs1{font-size:47.820800pt;}
.fs6{font-size:50.727434pt;}
.fs5{font-size:50.811917pt;}
.fs8{font-size:51.829430pt;}
.fs7{font-size:52.520702pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:52.736000pt;}
.ycf{bottom:84.706667pt;}
.y2a{bottom:85.124000pt;}
.yf0{bottom:85.306667pt;}
.y29{bottom:98.408000pt;}
.yce{bottom:100.646667pt;}
.yef{bottom:101.246667pt;}
.y28{bottom:111.690667pt;}
.ycd{bottom:116.586667pt;}
.y27{bottom:126.302667pt;}
.yee{bottom:126.536000pt;}
.ycc{bottom:132.528000pt;}
.y26{bottom:140.914667pt;}
.yed{bottom:142.477333pt;}
.ycb{bottom:148.468000pt;}
.y25{bottom:154.198667pt;}
.yec{bottom:158.417333pt;}
.yca{bottom:164.408000pt;}
.y24{bottom:167.482667pt;}
.ya0{bottom:171.485333pt;}
.yeb{bottom:174.357333pt;}
.yc9{bottom:180.348000pt;}
.y23{bottom:180.765333pt;}
.yea{bottom:190.297333pt;}
.y22{bottom:194.049333pt;}
.yc8{bottom:196.288000pt;}
.ye9{bottom:206.237333pt;}
.yc7{bottom:212.228000pt;}
.y9f{bottom:214.656000pt;}
.y21{bottom:221.686667pt;}
.ye8{bottom:222.177333pt;}
.y9e{bottom:227.938667pt;}
.yc6{bottom:228.169333pt;}
.y9d{bottom:247.467866pt;}
.y20{bottom:248.474667pt;}
.y67{bottom:249.745086pt;}
.yc5{bottom:252.260000pt;}
.y4b{bottom:254.278626pt;}
.y1f{bottom:264.414667pt;}
.y9c{bottom:267.264146pt;}
.yc4{bottom:268.201333pt;}
.ye7{bottom:269.038667pt;}
.y80{bottom:270.213136pt;}
.y66{bottom:271.800661pt;}
.y4a{bottom:275.901207pt;}
.y1e{bottom:280.354667pt;}
.y9b{bottom:281.222059pt;}
.yc3{bottom:284.141333pt;}
.ye6{bottom:284.980000pt;}
.y65{bottom:287.349334pt;}
.y49{bottom:291.144629pt;}
.y7f{bottom:292.562875pt;}
.y9a{bottom:295.178804pt;}
.y1d{bottom:296.294667pt;}
.yc2{bottom:300.081333pt;}
.ye5{bottom:300.920000pt;}
.y64{bottom:302.898007pt;}
.y48{bottom:306.388051pt;}
.y7e{bottom:308.318928pt;}
.y99{bottom:309.135550pt;}
.y1c{bottom:312.236000pt;}
.yc1{bottom:316.021333pt;}
.ye4{bottom:316.860000pt;}
.y63{bottom:318.446680pt;}
.y47{bottom:321.631473pt;}
.y98{bottom:323.092295pt;}
.y7d{bottom:324.074980pt;}
.y1b{bottom:328.176000pt;}
.yc0{bottom:331.961333pt;}
.ye3{bottom:332.800000pt;}
.y62{bottom:333.995353pt;}
.y46{bottom:336.874895pt;}
.y97{bottom:337.049040pt;}
.y7c{bottom:339.831033pt;}
.y1a{bottom:344.116000pt;}
.ye2{bottom:348.740000pt;}
.y61{bottom:349.545326pt;}
.y96{bottom:351.005785pt;}
.ybf{bottom:351.886667pt;}
.y7b{bottom:355.587085pt;}
.y45{bottom:358.496200pt;}
.y19{bottom:360.056000pt;}
.ye1{bottom:364.680000pt;}
.y60{bottom:365.093999pt;}
.y95{bottom:370.803233pt;}
.y7a{bottom:377.935507pt;}
.y18{bottom:384.982667pt;}
.y5f{bottom:387.148274pt;}
.ye0{bottom:387.290667pt;}
.ybe{bottom:391.863899pt;}
.y44{bottom:394.062667pt;}
.y17{bottom:400.922667pt;}
.ydf{bottom:403.230667pt;}
.ybd{bottom:403.706840pt;}
.y94{bottom:405.081333pt;}
.y79{bottom:414.014667pt;}
.ybc{bottom:415.549782pt;}
.y16{bottom:416.864000pt;}
.yde{bottom:419.170667pt;}
.y5e{bottom:423.018667pt;}
.y43{bottom:427.330667pt;}
.ybb{bottom:427.392724pt;}
.y15{bottom:432.804000pt;}
.ydd{bottom:435.110667pt;}
.yba{bottom:439.235666pt;}
.y42{bottom:447.256000pt;}
.y14{bottom:448.744000pt;}
.y93{bottom:449.640000pt;}
.ydc{bottom:451.050667pt;}
.yb9{bottom:451.078608pt;}
.yb8{bottom:462.922540pt;}
.y92{bottom:462.924000pt;}
.y78{bottom:464.256000pt;}
.y5d{bottom:473.166454pt;}
.ydb{bottom:473.661333pt;}
.y13{bottom:473.670667pt;}
.yb7{bottom:474.765482pt;}
.y41{bottom:475.152000pt;}
.y91{bottom:482.537755pt;}
.yb6{bottom:486.608424pt;}
.y77{bottom:486.865333pt;}
.y12{bottom:489.610667pt;}
.y40{bottom:491.092000pt;}
.y5c{bottom:495.514875pt;}
.yb5{bottom:498.451365pt;}
.y90{bottom:502.572162pt;}
.y76{bottom:502.805333pt;}
.y11{bottom:505.550667pt;}
.y3f{bottom:507.032000pt;}
.yda{bottom:509.922667pt;}
.yb4{bottom:510.294307pt;}
.y5b{bottom:511.270928pt;}
.y8f{bottom:516.695958pt;}
.y75{bottom:518.745333pt;}
.y10{bottom:521.492000pt;}
.yb3{bottom:522.137249pt;}
.y3e{bottom:522.972000pt;}
.yd9{bottom:524.534667pt;}
.y5a{bottom:527.028298pt;}
.y8e{bottom:530.819755pt;}
.y74{bottom:534.686667pt;}
.yf{bottom:537.432000pt;}
.yfc{bottom:538.912000pt;}
.yb2{bottom:538.936296pt;}
.y59{bottom:542.784351pt;}
.y8d{bottom:544.943551pt;}
.y3d{bottom:546.882667pt;}
.y73{bottom:550.626667pt;}
.ye{bottom:553.372000pt;}
.y58{bottom:558.540403pt;}
.y8c{bottom:559.067347pt;}
.yd8{bottom:561.208000pt;}
.y3c{bottom:562.822667pt;}
.y72{bottom:566.566667pt;}
.yb1{bottom:571.101333pt;}
.yd{bottom:578.298667pt;}
.y3b{bottom:578.762667pt;}
.y8b{bottom:579.100573pt;}
.yd7{bottom:579.829333pt;}
.y57{bottom:580.888825pt;}
.y71{bottom:582.506667pt;}
.yc{bottom:594.238667pt;}
.y3a{bottom:594.702667pt;}
.yd6{bottom:602.648000pt;}
.yb0{bottom:604.180000pt;}
.y70{bottom:605.116000pt;}
.yb{bottom:610.178667pt;}
.yfb{bottom:610.644000pt;}
.y8a{bottom:613.546667pt;}
.y56{bottom:616.968000pt;}
.yd5{bottom:618.588000pt;}
.y39{bottom:618.613333pt;}
.yaf{bottom:620.886171pt;}
.ya{bottom:626.120000pt;}
.yfa{bottom:626.584000pt;}
.yd4{bottom:634.528000pt;}
.y38{bottom:634.553333pt;}
.yae{bottom:638.339363pt;}
.y6f{bottom:641.378667pt;}
.yd3{bottom:650.468000pt;}
.y37{bottom:650.493333pt;}
.yad{bottom:650.530594pt;}
.y9{bottom:651.046667pt;}
.yac{bottom:662.721825pt;}
.y89{bottom:663.589053pt;}
.yd2{bottom:666.408000pt;}
.yf9{bottom:666.434667pt;}
.y55{bottom:666.839967pt;}
.y8{bottom:666.986667pt;}
.y36{bottom:674.404000pt;}
.yab{bottom:674.913056pt;}
.yd1{bottom:682.349333pt;}
.yf8{bottom:682.374667pt;}
.y88{bottom:685.643327pt;}
.y7{bottom:686.912000pt;}
.yaa{bottom:687.104286pt;}
.y54{bottom:688.426596pt;}
.y35{bottom:690.344000pt;}
.y6e{bottom:691.620000pt;}
.yd0{bottom:698.289333pt;}
.yf7{bottom:698.314667pt;}
.ya9{bottom:699.295517pt;}
.y87{bottom:701.192000pt;}
.y53{bottom:703.644674pt;}
.y34{bottom:706.285333pt;}
.ya8{bottom:711.487768pt;}
.y6d{bottom:714.229333pt;}
.yf6{bottom:714.254667pt;}
.y86{bottom:716.740673pt;}
.y6{bottom:718.280000pt;}
.y52{bottom:718.862751pt;}
.ya7{bottom:723.678999pt;}
.y6c{bottom:730.169333pt;}
.y33{bottom:730.194667pt;}
.y85{bottom:732.289346pt;}
.y5{bottom:732.892000pt;}
.y51{bottom:734.080829pt;}
.ya6{bottom:735.870229pt;}
.yf5{bottom:738.165333pt;}
.y6b{bottom:746.109333pt;}
.y32{bottom:746.134667pt;}
.y4{bottom:747.504000pt;}
.y84{bottom:747.839320pt;}
.ya5{bottom:748.061460pt;}
.y50{bottom:749.298906pt;}
.yf4{bottom:754.105333pt;}
.ya4{bottom:760.252691pt;}
.y6a{bottom:762.049333pt;}
.y31{bottom:762.076000pt;}
.y3{bottom:762.114667pt;}
.y83{bottom:763.387993pt;}
.y4f{bottom:764.516983pt;}
.yf3{bottom:770.045333pt;}
.ya3{bottom:772.443922pt;}
.y69{bottom:777.990667pt;}
.y30{bottom:778.016000pt;}
.y82{bottom:778.936666pt;}
.y4e{bottom:779.736334pt;}
.yf2{bottom:785.985333pt;}
.ya2{bottom:789.737012pt;}
.y2f{bottom:793.956000pt;}
.y68{bottom:800.600000pt;}
.y81{bottom:800.990940pt;}
.y4d{bottom:801.321690pt;}
.yf1{bottom:801.926667pt;}
.y2{bottom:811.242667pt;}
.y2e{bottom:817.866667pt;}
.ya1{bottom:822.249333pt;}
.y2d{bottom:833.806667pt;}
.y1{bottom:833.824000pt;}
.y4c{bottom:836.861333pt;}
.y2c{bottom:869.672000pt;}
.h18{height:22.858342pt;}
.h19{height:28.423346pt;}
.h1a{height:29.054976pt;}
.h15{height:29.259248pt;}
.h16{height:29.909453pt;}
.h8{height:30.095098pt;}
.h7{height:31.285299pt;}
.hb{height:33.857126pt;}
.h14{height:34.240892pt;}
.h2{height:34.430976pt;}
.h13{height:34.650728pt;}
.h3{height:35.196109pt;}
.h6{height:35.652825pt;}
.h17{height:36.024147pt;}
.he{height:36.523752pt;}
.hc{height:36.584580pt;}
.h4{height:37.087439pt;}
.hf{height:37.335391pt;}
.hd{height:37.397571pt;}
.h1b{height:38.096982pt;}
.h11{height:38.146461pt;}
.h12{height:38.256384pt;}
.h10{height:38.655237pt;}
.h5{height:39.106526pt;}
.ha{height:47.096138pt;}
.h9{height:47.101471pt;}
.h1{height:53.406121pt;}
.h0{height:960.000000pt;}
.w0{width:648.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.434667pt;}
.x2f{left:68.723647pt;}
.x26{left:70.631298pt;}
.x2{left:74.388000pt;}
.x1b{left:80.077333pt;}
.x3f{left:81.029333pt;}
.x4b{left:84.354667pt;}
.x40{left:88.777333pt;}
.x2b{left:96.536000pt;}
.x38{left:97.841333pt;}
.x29{left:101.300000pt;}
.x2a{left:107.200000pt;}
.x41{left:108.702667pt;}
.x28{left:111.964000pt;}
.x2e{left:123.040000pt;}
.x27{left:135.360000pt;}
.x2c{left:136.484000pt;}
.x1f{left:138.597333pt;}
.x25{left:146.024000pt;}
.x20{left:154.466667pt;}
.x30{left:168.006667pt;}
.x37{left:172.840000pt;}
.x52{left:190.588000pt;}
.x47{left:200.152000pt;}
.x53{left:207.514667pt;}
.x3{left:214.410667pt;}
.x42{left:224.641333pt;}
.x48{left:226.718667pt;}
.x14{left:231.569333pt;}
.x4{left:240.977333pt;}
.x1c{left:243.850667pt;}
.x43{left:251.209333pt;}
.x1d{left:255.593333pt;}
.x2d{left:258.948000pt;}
.x4f{left:260.352000pt;}
.x44{left:285.293333pt;}
.x8{left:286.450667pt;}
.x31{left:287.582667pt;}
.x9{left:293.398667pt;}
.xc{left:300.652000pt;}
.x54{left:302.858667pt;}
.x5{left:307.230667pt;}
.x50{left:310.153333pt;}
.xd{left:311.373333pt;}
.x6{left:340.440000pt;}
.x7{left:351.248000pt;}
.x17{left:352.242667pt;}
.x18{left:367.306667pt;}
.x32{left:384.945333pt;}
.x12{left:390.833333pt;}
.xe{left:394.678667pt;}
.x13{left:397.781333pt;}
.xf{left:405.401333pt;}
.x39{left:407.244000pt;}
.x35{left:411.110667pt;}
.x33{left:414.616000pt;}
.x45{left:419.029333pt;}
.x51{left:422.144000pt;}
.x4c{left:432.994667pt;}
.x3a{left:436.385333pt;}
.x10{left:439.422667pt;}
.x36{left:445.353333pt;}
.xa{left:446.789333pt;}
.x15{left:447.722667pt;}
.x11{left:450.388000pt;}
.xb{left:457.044000pt;}
.x16{left:457.986667pt;}
.x3c{left:465.129333pt;}
.x4d{left:467.134667pt;}
.x46{left:476.376000pt;}
.x3b{left:485.118667pt;}
.x19{left:486.045333pt;}
.x49{left:487.464000pt;}
.x21{left:488.425333pt;}
.x1a{left:501.914667pt;}
.x3d{left:504.980000pt;}
.x22{left:507.764000pt;}
.x4a{left:510.721333pt;}
.x4e{left:535.558667pt;}
.x34{left:560.329333pt;}
.x3e{left:565.524000pt;}
.x23{left:572.898667pt;}
.x1e{left:575.153333pt;}
.x24{left:584.641333pt;}
}




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