
    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_b4851b1a94d2ebe7fae0f322.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_a781a19279f1cacd8b7c869d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.730000;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_7cdcb8a449c43210f8fa9ee8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_437447bc79d45674e05f739a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.838000;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_a90f194265fcb9233e70bfdc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_85febe4442c6cd782402aa8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.825000;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_f208d9f3fd807a92794a9072.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_373d68acf06acafca61356b8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.858000;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;}
.m17{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{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);}
.m13{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);}
.mc{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m11{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);}
.m7{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);}
.m6{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);}
.m20{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);}
.mb{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);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.mf{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);}
.m12{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);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.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);}
.m18{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);}
.m8{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);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.me{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);}
.md{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);}
.m1e{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m19{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);}
.m1{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.v4{vertical-align:-24.312000px;}
.v1{vertical-align:-19.104000px;}
.v6{vertical-align:-16.212000px;}
.va{vertical-align:-13.272000px;}
.v8{vertical-align:-11.946000px;}
.v9{vertical-align:-7.115407px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.266000px;}
.v7{vertical-align:20.262000px;}
.v3{vertical-align:24.312000px;}
.v2{vertical-align:29.178000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000262px;}
.ls9{letter-spacing:0.418623px;}
.lsa{letter-spacing:1.192897px;}
.ls7{letter-spacing:2.150765px;}
.ls8{letter-spacing:2.156765px;}
.lsb{letter-spacing:2.392563px;}
.ls2{letter-spacing:2.867670px;}
.ls1{letter-spacing:3.448080px;}
.ls3{letter-spacing:5.981670px;}
.ls4{letter-spacing:13.973077px;}
.lsc{letter-spacing:17.332563px;}
.ls5{letter-spacing:17.935260px;}
.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;}
}
.ws2{word-spacing:-71.731020px;}
.ws0{word-spacing:-64.557897px;}
.ws37{word-spacing:-59.775840px;}
.ws67{word-spacing:-53.798280px;}
.ws1{word-spacing:-53.798263px;}
.ws47{word-spacing:-50.032378px;}
.ws56{word-spacing:-49.793274px;}
.ws1c{word-spacing:-49.673722px;}
.ws24{word-spacing:-49.613946px;}
.ws31{word-spacing:-49.554171px;}
.ws5f{word-spacing:-49.434618px;}
.ws14{word-spacing:-48.836860px;}
.ws39{word-spacing:-48.657534px;}
.ws4c{word-spacing:-48.119550px;}
.ws50{word-spacing:-48.059774px;}
.ws23{word-spacing:-47.999998px;}
.ws15{word-spacing:-47.880448px;}
.ws49{word-spacing:-47.820671px;}
.ws29{word-spacing:-47.820660px;}
.ws2a{word-spacing:-47.282690px;}
.ws2b{word-spacing:-47.222912px;}
.ws3d{word-spacing:-46.983810px;}
.ws3e{word-spacing:-46.924034px;}
.wsa{word-spacing:-46.804483px;}
.ws4a{word-spacing:-46.744705px;}
.ws54{word-spacing:-46.699419px;}
.ws18{word-spacing:-46.505602px;}
.ws30{word-spacing:-46.445828px;}
.ws22{word-spacing:-46.266499px;}
.ws35{word-spacing:-46.146947px;}
.ws2d{word-spacing:-45.848067px;}
.ws42{word-spacing:-45.728516px;}
.ws43{word-spacing:-45.668741px;}
.ws4b{word-spacing:-45.608964px;}
.ws16{word-spacing:-45.489414px;}
.ws58{word-spacing:-45.369863px;}
.ws33{word-spacing:-45.190535px;}
.ws4{word-spacing:-45.130760px;}
.ws3{word-spacing:-45.070983px;}
.ws9{word-spacing:-45.011208px;}
.ws1f{word-spacing:-44.951430px;}
.ws17{word-spacing:-44.891655px;}
.ws4f{word-spacing:-44.867764px;}
.ws10{word-spacing:-44.831880px;}
.wsc{word-spacing:-44.772103px;}
.ws6e{word-spacing:-44.760169px;}
.wsb{word-spacing:-44.712328px;}
.ws74{word-spacing:-44.652571px;}
.ws13{word-spacing:-44.652553px;}
.ws61{word-spacing:-44.611607px;}
.ws1b{word-spacing:-44.592775px;}
.ws19{word-spacing:-44.549357px;}
.ws2c{word-spacing:-44.533001px;}
.ws3c{word-spacing:-44.473225px;}
.ws11{word-spacing:-44.413447px;}
.ws3b{word-spacing:-43.935240px;}
.ws20{word-spacing:-43.875467px;}
.ws69{word-spacing:-43.845598px;}
.ws38{word-spacing:-43.815688px;}
.ws46{word-spacing:-43.696137px;}
.ws32{word-spacing:-43.576585px;}
.ws45{word-spacing:-43.516812px;}
.ws63{word-spacing:-43.457033px;}
.ws4d{word-spacing:-43.397257px;}
.ws34{word-spacing:-42.620174px;}
.ws26{word-spacing:-42.500622px;}
.ws44{word-spacing:-42.440844px;}
.wsd{word-spacing:-42.261519px;}
.ws59{word-spacing:-42.141965px;}
.ws48{word-spacing:-41.902864px;}
.ws55{word-spacing:-41.843088px;}
.ws53{word-spacing:-41.814876px;}
.ws8{word-spacing:-41.783310px;}
.ws51{word-spacing:-41.544206px;}
.ws4e{word-spacing:-41.484431px;}
.ws71{word-spacing:-41.478474px;}
.ws70{word-spacing:-41.451301px;}
.ws5c{word-spacing:-41.245327px;}
.ws6{word-spacing:-40.886675px;}
.ws5{word-spacing:-40.826899px;}
.ws6b{word-spacing:-40.671500px;}
.ws25{word-spacing:-40.647571px;}
.ws6d{word-spacing:-40.617700px;}
.ws52{word-spacing:-40.528017px;}
.ws6a{word-spacing:-40.510104px;}
.ws7a{word-spacing:-40.498410px;}
.ws7{word-spacing:-40.468244px;}
.ws1d{word-spacing:-40.408465px;}
.ws66{word-spacing:-40.402507px;}
.ws41{word-spacing:-40.348710px;}
.ws6c{word-spacing:-40.345417px;}
.ws72{word-spacing:-40.294909px;}
.ws6f{word-spacing:-40.241113px;}
.ws65{word-spacing:-40.187316px;}
.ws64{word-spacing:-40.169364px;}
.ws60{word-spacing:-40.049813px;}
.ws76{word-spacing:-40.025920px;}
.ws75{word-spacing:-39.972122px;}
.ws5b{word-spacing:-39.810707px;}
.ws3a{word-spacing:-39.631382px;}
.ws1a{word-spacing:-39.511828px;}
.wsf{word-spacing:-38.914072px;}
.ws5e{word-spacing:-38.854296px;}
.wse{word-spacing:-38.674968px;}
.ws68{word-spacing:-38.089180px;}
.ws5d{word-spacing:-38.077210px;}
.ws2e{word-spacing:-38.017434px;}
.ws62{word-spacing:-37.957658px;}
.ws21{word-spacing:-36.403487px;}
.ws28{word-spacing:-35.865494px;}
.ws78{word-spacing:-35.130275px;}
.ws79{word-spacing:-35.076476px;}
.ws77{word-spacing:-35.073739px;}
.ws27{word-spacing:-34.526515px;}
.ws12{word-spacing:-33.534246px;}
.ws2f{word-spacing:-32.757158px;}
.ws36{word-spacing:-31.880043px;}
.ws1e{word-spacing:-30.246575px;}
.ws73{word-spacing:-28.835876px;}
.ws40{word-spacing:0.000000px;}
.ws3f{word-spacing:24.508100px;}
.ws57{word-spacing:96.890249px;}
.ws5a{word-spacing:107.991818px;}
._2a{margin-left:-331.084076px;}
._26{margin-left:-242.393378px;}
._29{margin-left:-231.750529px;}
._28{margin-left:-217.968841px;}
._27{margin-left:-204.167117px;}
._5{margin-left:-11.190037px;}
._2c{margin-left:-9.176640px;}
._1{margin-left:-6.369713px;}
._3{margin-left:-5.164632px;}
._c{margin-left:-4.124533px;}
._4{margin-left:-3.012702px;}
._2{margin-left:-1.721544px;}
._6{width:1.994120px;}
._2f{width:8.769121px;}
._a{width:9.863014px;}
._12{width:11.303720px;}
._e{width:12.337735px;}
._11{width:13.509341px;}
._10{width:14.511185px;}
._f{width:15.914719px;}
._24{width:17.012209px;}
._14{width:18.638107px;}
._8{width:19.752333px;}
._13{width:21.041096px;}
._d{width:22.583314px;}
._7{width:24.173353px;}
._2b{width:27.650628px;}
._0{width:28.663711px;}
._25{width:29.672721px;}
._9{width:33.462515px;}
._2d{width:34.610211px;}
._2e{width:35.650319px;}
._b{width:37.957664px;}
._17{width:105.863019px;}
._1a{width:122.480696px;}
._1c{width:124.154438px;}
._1e{width:139.098398px;}
._1d{width:250.819466px;}
._15{width:262.941965px;}
._16{width:311.216975px;}
._19{width:368.697381px;}
._18{width:400.318842px;}
._1b{width:411.580569px;}
._21{width:483.573240px;}
._1f{width:500.015880px;}
._20{width:801.009000px;}
._23{width:1905.636000px;}
._22{width:2225.382000px;}
.fc2{color:transparent;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.359070px;}
.fsb{font-size:31.624110px;}
.fs5{font-size:35.865480px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:43.370100px;}
.fs4{font-size:44.234100px;}
.fsa{font-size:45.177300px;}
.fs3{font-size:47.820660px;}
.fs7{font-size:53.798280px;}
.fsc{font-size:54.212760px;}
.fs1{font-size:59.775840px;}
.fs2{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y75{bottom:6.600001px;}
.ya1{bottom:13.801631px;}
.yc7{bottom:17.247375px;}
.yb5{bottom:17.368554px;}
.yb6{bottom:21.692163px;}
.y77{bottom:22.500000px;}
.ya0{bottom:27.185373px;}
.yb4{bottom:31.028805px;}
.yc6{bottom:33.377084px;}
.y78{bottom:42.000000px;}
.yc8{bottom:45.677310px;}
.ya5{bottom:52.415091px;}
.ya4{bottom:60.156295px;}
.yac{bottom:60.797630px;}
.ybc{bottom:67.456732px;}
.yb8{bottom:71.337050px;}
.ybe{bottom:75.217373px;}
.ya3{bottom:76.271186px;}
.yb9{bottom:77.157535px;}
.ya9{bottom:88.324633px;}
.y9e{bottom:90.508500px;}
.yc9{bottom:93.079595px;}
.y47{bottom:94.561500px;}
.yb7{bottom:100.066545px;}
.y46{bottom:104.881500px;}
.yb2{bottom:105.123000px;}
.ya2{bottom:105.348684px;}
.yed{bottom:106.797000px;}
.y9d{bottom:108.441000px;}
.ybb{bottom:108.588151px;}
.yec{bottom:110.113500px;}
.ybd{bottom:110.140285px;}
.y45{bottom:119.077500px;}
.y73{bottom:121.953000px;}
.y9c{bottom:126.373500px;}
.y126{bottom:126.552000px;}
.ycd{bottom:126.999278px;}
.yeb{bottom:128.046000px;}
.y79{bottom:130.500000px;}
.ya8{bottom:132.245179px;}
.y44{bottom:133.275000px;}
.yba{bottom:133.422210px;}
.y43{bottom:137.328000px;}
.yca{bottom:140.481879px;}
.yad{bottom:142.462488px;}
.yea{bottom:142.662000px;}
.y125{bottom:142.990500px;}
.y72{bottom:144.138000px;}
.y9b{bottom:144.306000px;}
.ye9{bottom:145.980000px;}
.y124{bottom:159.429000px;}
.y42{bottom:159.852000px;}
.ye8{bottom:160.594500px;}
.y9a{bottom:162.238500px;}
.ye7{bottom:163.912500px;}
.y71{bottom:166.323000px;}
.y41{bottom:177.786000px;}
.y123{bottom:179.947500px;}
.y99{bottom:180.172500px;}
.ye6{bottom:181.845000px;}
.ycb{bottom:187.884161px;}
.y70{bottom:188.508000px;}
.y40{bottom:195.718500px;}
.y122{bottom:196.386000px;}
.ycf{bottom:198.046938px;}
.y98{bottom:198.105000px;}
.ye5{bottom:199.777500px;}
.yb1{bottom:208.551000px;}
.y3f{bottom:210.333000px;}
.y6f{bottom:210.693000px;}
.yb0{bottom:211.869000px;}
.y121{bottom:212.823000px;}
.y3e{bottom:213.651000px;}
.y97{bottom:216.037500px;}
.ye4{bottom:217.710000px;}
.yce{bottom:217.941417px;}
.yaf{bottom:229.801500px;}
.y96{bottom:230.652000px;}
.y3d{bottom:231.583500px;}
.y120{bottom:233.341500px;}
.y95{bottom:233.970000px;}
.ycc{bottom:235.286450px;}
.ye3{bottom:235.642500px;}
.y6e{bottom:236.136000px;}
.y3c{bottom:249.516000px;}
.y11f{bottom:249.780000px;}
.ye2{bottom:250.258500px;}
.y93{bottom:251.902500px;}
.ye1{bottom:253.576500px;}
.yae{bottom:254.758500px;}
.y94{bottom:256.969500px;}
.y3b{bottom:264.132000px;}
.y11e{bottom:266.218500px;}
.y6d{bottom:266.922000px;}
.y3a{bottom:267.448500px;}
.ye0{bottom:268.191000px;}
.y92{bottom:269.835000px;}
.ydf{bottom:271.509000px;}
.yab{bottom:275.232000px;}
.y39{bottom:282.064500px;}
.y11d{bottom:282.657000px;}
.y37{bottom:285.382500px;}
.y91{bottom:287.769000px;}
.y38{bottom:290.448000px;}
.yde{bottom:290.821500px;}
.y6c{bottom:300.882000px;}
.y11c{bottom:303.174000px;}
.y35{bottom:303.315000px;}
.y90{bottom:306.702000px;}
.y36{bottom:308.380500px;}
.ydd{bottom:308.755500px;}
.y6b{bottom:318.814500px;}
.y11b{bottom:319.612500px;}
.y34{bottom:321.247500px;}
.y8f{bottom:324.636000px;}
.ydc{bottom:326.688000px;}
.y6a{bottom:333.430500px;}
.y11a{bottom:336.051000px;}
.y69{bottom:336.748500px;}
.y33{bottom:339.180000px;}
.y8e{bottom:342.568500px;}
.ydb{bottom:344.620500px;}
.y68{bottom:354.681000px;}
.y119{bottom:356.569500px;}
.y32{bottom:357.112500px;}
.yda{bottom:359.235000px;}
.y8d{bottom:360.501000px;}
.yd9{bottom:362.553000px;}
.y31{bottom:371.728500px;}
.y67{bottom:372.613500px;}
.y118{bottom:373.008000px;}
.y30{bottom:375.045000px;}
.y8c{bottom:375.115500px;}
.yd8{bottom:377.169000px;}
.y8b{bottom:378.433500px;}
.yd7{bottom:380.485500px;}
.y117{bottom:389.446500px;}
.y66{bottom:390.546000px;}
.y2f{bottom:392.979000px;}
.y8a{bottom:396.366000px;}
.yd6{bottom:398.418000px;}
.y116{bottom:405.885000px;}
.y2e{bottom:407.593500px;}
.y65{bottom:408.478500px;}
.y2d{bottom:410.911500px;}
.yd5{bottom:413.034000px;}
.y89{bottom:414.298500px;}
.yd4{bottom:416.352000px;}
.y2c{bottom:425.526000px;}
.y115{bottom:426.402000px;}
.y64{bottom:426.411000px;}
.y2b{bottom:428.844000px;}
.y88{bottom:428.914500px;}
.y87{bottom:432.232500px;}
.y114{bottom:442.840500px;}
.y63{bottom:444.345000px;}
.y2a{bottom:446.991000px;}
.y86{bottom:450.165000px;}
.yd3{bottom:451.392000px;}
.y113{bottom:459.279000px;}
.y62{bottom:462.277500px;}
.y85{bottom:464.779500px;}
.y29{bottom:464.925000px;}
.y84{bottom:468.097500px;}
.yd2{bottom:469.324500px;}
.y112{bottom:479.797500px;}
.y28{bottom:482.857500px;}
.yd1{bottom:483.940500px;}
.y61{bottom:485.781000px;}
.y83{bottom:486.030000px;}
.yd0{bottom:487.257000px;}
.y111{bottom:496.236000px;}
.y82{bottom:500.646000px;}
.y27{bottom:500.790000px;}
.y81{bottom:503.962500px;}
.yc5{bottom:507.282000px;}
.y110{bottom:512.674500px;}
.y60{bottom:516.615000px;}
.y26{bottom:518.722500px;}
.y10f{bottom:529.111500px;}
.y80{bottom:530.523000px;}
.y25{bottom:533.338500px;}
.y5f{bottom:534.547500px;}
.y24{bottom:536.655000px;}
.yaa{bottom:541.876500px;}
.y10e{bottom:545.550000px;}
.y23{bottom:551.271000px;}
.y7f{bottom:551.445000px;}
.y5e{bottom:552.480000px;}
.y22{bottom:554.587500px;}
.ya7{bottom:562.350000px;}
.y10d{bottom:566.068500px;}
.y21{bottom:569.203500px;}
.y5d{bottom:570.412500px;}
.y20{bottom:572.521500px;}
.y10c{bottom:582.507000px;}
.y7e{bottom:585.727500px;}
.y1f{bottom:587.136000px;}
.y5b{bottom:588.346500px;}
.y1e{bottom:590.454000px;}
.y5c{bottom:593.412000px;}
.y10b{bottom:598.945500px;}
.y7d{bottom:600.342000px;}
.y7c{bottom:603.660000px;}
.y5a{bottom:606.279000px;}
.y1d{bottom:608.386500px;}
.y10a{bottom:615.384000px;}
.y59{bottom:624.211500px;}
.y1c{bottom:626.319000px;}
.y7b{bottom:628.615500px;}
.y109{bottom:638.547000px;}
.y57{bottom:642.144000px;}
.y1b{bottom:644.251500px;}
.y58{bottom:647.209500px;}
.y56{bottom:660.076500px;}
.y1a{bottom:662.184000px;}
.y108{bottom:672.555000px;}
.y55{bottom:678.009000px;}
.y19{bottom:687.250500px;}
.y107{bottom:690.487500px;}
.y54{bottom:695.943000px;}
.y106{bottom:708.420000px;}
.y53{bottom:713.875500px;}
.y18{bottom:722.610000px;}
.y105{bottom:723.036000px;}
.y104{bottom:726.352500px;}
.y52{bottom:737.379000px;}
.y17{bottom:740.542500px;}
.y103{bottom:744.285000px;}
.y16{bottom:758.475000px;}
.y102{bottom:762.219000px;}
.y51{bottom:765.231000px;}
.y15{bottom:773.091000px;}
.yc4{bottom:775.644000px;}
.y14{bottom:776.407500px;}
.y101{bottom:780.151500px;}
.yc3{bottom:790.258500px;}
.yc2{bottom:793.576500px;}
.y13{bottom:794.341500px;}
.y50{bottom:800.100000px;}
.y100{bottom:804.808500px;}
.y12{bottom:808.956000px;}
.yc1{bottom:811.509000px;}
.y11{bottom:812.274000px;}
.y4f{bottom:818.032500px;}
.yc0{bottom:826.123500px;}
.ya6{bottom:828.994500px;}
.ybf{bottom:829.441500px;}
.y10{bottom:830.206500px;}
.y4e{bottom:835.965000px;}
.yff{bottom:838.816500px;}
.yf{bottom:848.139000px;}
.yb3{bottom:849.466500px;}
.y9f{bottom:849.468000px;}
.y4d{bottom:853.897500px;}
.yfe{bottom:856.749000px;}
.ye{bottom:862.753500px;}
.yd{bottom:866.071500px;}
.y4c{bottom:871.831500px;}
.y7a{bottom:872.364000px;}
.yfd{bottom:874.681500px;}
.yc{bottom:884.004000px;}
.y4b{bottom:889.764000px;}
.yfc{bottom:892.615500px;}
.yb{bottom:898.620000px;}
.ya{bottom:901.938000px;}
.yfb{bottom:907.230000px;}
.y4a{bottom:907.696500px;}
.yfa{bottom:910.548000px;}
.y9{bottom:916.552500px;}
.y8{bottom:919.870500px;}
.y49{bottom:925.629000px;}
.yf9{bottom:928.480500px;}
.y48{bottom:940.245000px;}
.y7{bottom:943.561500px;}
.yf8{bottom:946.413000px;}
.yf7{bottom:964.345500px;}
.y6{bottom:978.333000px;}
.yf6{bottom:978.961500px;}
.yf5{bottom:982.278000px;}
.y5{bottom:993.175500px;}
.yf4{bottom:996.894000px;}
.yf3{bottom:1000.212000px;}
.y4{bottom:1014.097500px;}
.yf2{bottom:1024.869000px;}
.y3{bottom:1035.019500px;}
.yf1{bottom:1058.877000px;}
.y2{bottom:1063.413000px;}
.yf0{bottom:1073.491500px;}
.yef{bottom:1076.809500px;}
.y1{bottom:1090.311000px;}
.yee{bottom:1094.742000px;}
.y76{bottom:1131.000000px;}
.y74{bottom:1150.500000px;}
.hf{height:15.000000px;}
.hc{height:24.245064px;}
.h17{height:29.378798px;}
.h8{height:30.433061px;}
.h5{height:32.900614px;}
.h1a{height:36.636629px;}
.h12{height:37.013217px;}
.h14{height:40.290823px;}
.h9{height:40.408468px;}
.h19{height:40.826899px;}
.h7{height:41.125778px;}
.he{height:41.364881px;}
.h16{height:41.969712px;}
.h10{height:43.804688px;}
.h6{height:48.992287px;}
.h4{height:49.350942px;}
.ha{height:49.637866px;}
.h18{height:50.363654px;}
.hd{height:50.695061px;}
.hb{height:53.674468px;}
.h3{height:57.212614px;}
.h1{height:59.565422px;}
.h2{height:69.586468px;}
.h15{height:260.220495px;}
.h13{height:260.220600px;}
.h11{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w3{width:260.220600px;}
.w4{width:346.960911px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x40{left:8.399999px;}
.x51{left:19.859892px;}
.x6f{left:24.857868px;}
.x6e{left:30.693269px;}
.x6d{left:42.158184px;}
.x60{left:44.250000px;}
.x52{left:61.181208px;}
.x50{left:82.547757px;}
.x6{left:84.483000px;}
.x3e{left:85.500000px;}
.x61{left:86.955000px;}
.x64{left:92.512283px;}
.x2b{left:93.634500px;}
.x7{left:99.984000px;}
.x57{left:109.606333px;}
.x1e{left:110.676000px;}
.x1f{left:117.577500px;}
.x45{left:123.516000px;}
.x27{left:125.494500px;}
.x17{left:128.703000px;}
.xa{left:130.510500px;}
.x18{left:135.604500px;}
.xb{left:137.410500px;}
.x77{left:139.299000px;}
.x53{left:140.822140px;}
.x65{left:156.184048px;}
.x47{left:162.295500px;}
.x1b{left:163.426500px;}
.x5{left:168.684000px;}
.x66{left:171.619625px;}
.x1{left:174.919500px;}
.x4{left:175.923000px;}
.x5b{left:177.277351px;}
.x41{left:179.904000px;}
.x56{left:182.153672px;}
.x62{left:186.419894px;}
.x14{left:188.971500px;}
.x63{left:191.565761px;}
.x42{left:194.092500px;}
.x3{left:200.931000px;}
.x46{left:205.630500px;}
.x5a{left:207.077431px;}
.x75{left:210.343500px;}
.x28{left:211.381500px;}
.x4f{left:214.212947px;}
.x29{left:218.283000px;}
.x70{left:221.913000px;}
.x55{left:222.984810px;}
.x59{left:225.742744px;}
.x6b{left:227.910000px;}
.x10{left:232.650000px;}
.x6c{left:234.810000px;}
.x11{left:239.551500px;}
.x43{left:247.096500px;}
.x4a{left:250.555500px;}
.x44{left:253.998000px;}
.x73{left:257.200500px;}
.x19{left:258.745500px;}
.x4b{left:261.559500px;}
.x2{left:263.368500px;}
.x1a{left:267.637500px;}
.x22{left:270.783000px;}
.x23{left:280.318500px;}
.x67{left:281.598122px;}
.x74{left:298.198500px;}
.x68{left:304.751489px;}
.xe{left:310.167000px;}
.xf{left:320.104500px;}
.x24{left:327.345000px;}
.x8{left:329.587500px;}
.x1c{left:331.164000px;}
.x9{left:336.489000px;}
.x1d{left:341.101500px;}
.x76{left:343.581000px;}
.xc{left:348.684000px;}
.x4d{left:353.805000px;}
.xd{left:354.898500px;}
.x12{left:362.985000px;}
.x20{left:366.733500px;}
.x21{left:372.949500px;}
.x13{left:374.581500px;}
.x48{left:385.335000px;}
.x71{left:387.591000px;}
.x69{left:390.385500px;}
.x49{left:392.236500px;}
.x72{left:394.492500px;}
.x6a{left:397.287000px;}
.x4c{left:404.046000px;}
.x15{left:416.611500px;}
.x25{left:420.373500px;}
.x16{left:423.513000px;}
.x26{left:426.058500px;}
.x2a{left:429.612000px;}
.x2f{left:457.086000px;}
.x80{left:458.829000px;}
.x7d{left:464.836500px;}
.x2c{left:472.030500px;}
.x85{left:480.195000px;}
.x81{left:481.983000px;}
.x82{left:494.833500px;}
.x83{left:499.312500px;}
.x4e{left:502.369500px;}
.x5f{left:505.720500px;}
.x3d{left:508.288500px;}
.x3c{left:511.132500px;}
.x30{left:518.455500px;}
.x5d{left:520.273500px;}
.x5e{left:527.175000px;}
.x7f{left:541.566000px;}
.x2d{left:548.241000px;}
.x2e{left:555.141000px;}
.x7e{left:564.784500px;}
.x7a{left:572.289000px;}
.x58{left:609.282000px;}
.x54{left:610.411500px;}
.x5c{left:611.527500px;}
.x35{left:623.181000px;}
.x36{left:631.401000px;}
.x37{left:646.404000px;}
.x38{left:663.096000px;}
.x78{left:666.933000px;}
.x79{left:678.714000px;}
.x3a{left:680.196000px;}
.x3b{left:689.553000px;}
.x84{left:713.962500px;}
.x31{left:726.778500px;}
.x7b{left:729.379500px;}
.x7c{left:734.677500px;}
.x32{left:736.716000px;}
.x33{left:762.072000px;}
.x34{left:767.755500px;}
.x39{left:776.542500px;}
.x3f{left:836.250000px;}
@media print{
.v4{vertical-align:-21.610667pt;}
.v1{vertical-align:-16.981333pt;}
.v6{vertical-align:-14.410667pt;}
.va{vertical-align:-11.797333pt;}
.v8{vertical-align:-10.618667pt;}
.v9{vertical-align:-6.324807pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.792000pt;}
.v7{vertical-align:18.010667pt;}
.v3{vertical-align:21.610667pt;}
.v2{vertical-align:25.936000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000233pt;}
.ls9{letter-spacing:0.372109pt;}
.lsa{letter-spacing:1.060353pt;}
.ls7{letter-spacing:1.911791pt;}
.ls8{letter-spacing:1.917125pt;}
.lsb{letter-spacing:2.126723pt;}
.ls2{letter-spacing:2.549040pt;}
.ls1{letter-spacing:3.064960pt;}
.ls3{letter-spacing:5.317040pt;}
.ls4{letter-spacing:12.420513pt;}
.lsc{letter-spacing:15.406723pt;}
.ls5{letter-spacing:15.942453pt;}
.ws2{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384798pt;}
.ws37{word-spacing:-53.134080pt;}
.ws67{word-spacing:-47.820693pt;}
.ws1{word-spacing:-47.820678pt;}
.ws47{word-spacing:-44.473225pt;}
.ws56{word-spacing:-44.260688pt;}
.ws1c{word-spacing:-44.154419pt;}
.ws24{word-spacing:-44.101285pt;}
.ws31{word-spacing:-44.048152pt;}
.ws5f{word-spacing:-43.941883pt;}
.ws14{word-spacing:-43.410542pt;}
.ws39{word-spacing:-43.251141pt;}
.ws4c{word-spacing:-42.772933pt;}
.ws50{word-spacing:-42.719799pt;}
.ws23{word-spacing:-42.666665pt;}
.ws15{word-spacing:-42.560398pt;}
.ws49{word-spacing:-42.507263pt;}
.ws29{word-spacing:-42.507253pt;}
.ws2a{word-spacing:-42.029058pt;}
.ws2b{word-spacing:-41.975922pt;}
.ws3d{word-spacing:-41.763387pt;}
.ws3e{word-spacing:-41.710253pt;}
.wsa{word-spacing:-41.603985pt;}
.ws4a{word-spacing:-41.550849pt;}
.ws54{word-spacing:-41.510595pt;}
.ws18{word-spacing:-41.338313pt;}
.ws30{word-spacing:-41.285180pt;}
.ws22{word-spacing:-41.125777pt;}
.ws35{word-spacing:-41.019509pt;}
.ws2d{word-spacing:-40.753838pt;}
.ws42{word-spacing:-40.647570pt;}
.ws43{word-spacing:-40.594436pt;}
.ws4b{word-spacing:-40.541301pt;}
.ws16{word-spacing:-40.435035pt;}
.ws58{word-spacing:-40.328767pt;}
.ws33{word-spacing:-40.169364pt;}
.ws4{word-spacing:-40.116231pt;}
.ws3{word-spacing:-40.063096pt;}
.ws9{word-spacing:-40.009962pt;}
.ws1f{word-spacing:-39.956827pt;}
.ws17{word-spacing:-39.903693pt;}
.ws4f{word-spacing:-39.882457pt;}
.ws10{word-spacing:-39.850560pt;}
.wsc{word-spacing:-39.797425pt;}
.ws6e{word-spacing:-39.786817pt;}
.wsb{word-spacing:-39.744292pt;}
.ws74{word-spacing:-39.691175pt;}
.ws13{word-spacing:-39.691158pt;}
.ws61{word-spacing:-39.654762pt;}
.ws1b{word-spacing:-39.638023pt;}
.ws19{word-spacing:-39.599428pt;}
.ws2c{word-spacing:-39.584890pt;}
.ws3c{word-spacing:-39.531756pt;}
.ws11{word-spacing:-39.478619pt;}
.ws3b{word-spacing:-39.053547pt;}
.ws20{word-spacing:-39.000415pt;}
.ws69{word-spacing:-38.973865pt;}
.ws38{word-spacing:-38.947279pt;}
.ws46{word-spacing:-38.841010pt;}
.ws32{word-spacing:-38.734742pt;}
.ws45{word-spacing:-38.681610pt;}
.ws63{word-spacing:-38.628474pt;}
.ws4d{word-spacing:-38.575340pt;}
.ws34{word-spacing:-37.884599pt;}
.ws26{word-spacing:-37.778331pt;}
.ws44{word-spacing:-37.725195pt;}
.wsd{word-spacing:-37.565795pt;}
.ws59{word-spacing:-37.459524pt;}
.ws48{word-spacing:-37.246990pt;}
.ws55{word-spacing:-37.193856pt;}
.ws53{word-spacing:-37.168779pt;}
.ws8{word-spacing:-37.140720pt;}
.ws51{word-spacing:-36.928183pt;}
.ws4e{word-spacing:-36.875049pt;}
.ws71{word-spacing:-36.869755pt;}
.ws70{word-spacing:-36.845601pt;}
.ws5c{word-spacing:-36.662513pt;}
.ws6{word-spacing:-36.343711pt;}
.ws5{word-spacing:-36.290577pt;}
.ws6b{word-spacing:-36.152444pt;}
.ws25{word-spacing:-36.131174pt;}
.ws6d{word-spacing:-36.104623pt;}
.ws52{word-spacing:-36.024904pt;}
.ws6a{word-spacing:-36.008981pt;}
.ws7a{word-spacing:-35.998587pt;}
.ws7{word-spacing:-35.971772pt;}
.ws1d{word-spacing:-35.918636pt;}
.ws66{word-spacing:-35.913340pt;}
.ws41{word-spacing:-35.865520pt;}
.ws6c{word-spacing:-35.862593pt;}
.ws72{word-spacing:-35.817697pt;}
.ws6f{word-spacing:-35.769879pt;}
.ws65{word-spacing:-35.722058pt;}
.ws64{word-spacing:-35.706102pt;}
.ws60{word-spacing:-35.599834pt;}
.ws76{word-spacing:-35.578596pt;}
.ws75{word-spacing:-35.530775pt;}
.ws5b{word-spacing:-35.387295pt;}
.ws3a{word-spacing:-35.227895pt;}
.ws1a{word-spacing:-35.121625pt;}
.wsf{word-spacing:-34.590286pt;}
.ws5e{word-spacing:-34.537152pt;}
.wse{word-spacing:-34.377750pt;}
.ws68{word-spacing:-33.857049pt;}
.ws5d{word-spacing:-33.846409pt;}
.ws2e{word-spacing:-33.793275pt;}
.ws62{word-spacing:-33.740141pt;}
.ws21{word-spacing:-32.358655pt;}
.ws28{word-spacing:-31.880439pt;}
.ws78{word-spacing:-31.226911pt;}
.ws79{word-spacing:-31.179090pt;}
.ws77{word-spacing:-31.176657pt;}
.ws27{word-spacing:-30.690235pt;}
.ws12{word-spacing:-29.808219pt;}
.ws2f{word-spacing:-29.117474pt;}
.ws36{word-spacing:-28.337816pt;}
.ws1e{word-spacing:-26.885844pt;}
.ws73{word-spacing:-25.631890pt;}
.ws40{word-spacing:0.000000pt;}
.ws3f{word-spacing:21.784978pt;}
.ws57{word-spacing:86.124666pt;}
.ws5a{word-spacing:95.992727pt;}
._2a{margin-left:-294.296957pt;}
._26{margin-left:-215.460781pt;}
._29{margin-left:-206.000470pt;}
._28{margin-left:-193.750081pt;}
._27{margin-left:-181.481881pt;}
._5{margin-left:-9.946700pt;}
._2c{margin-left:-8.157013pt;}
._1{margin-left:-5.661967pt;}
._3{margin-left:-4.590784pt;}
._c{margin-left:-3.666252pt;}
._4{margin-left:-2.677958pt;}
._2{margin-left:-1.530262pt;}
._6{width:1.772552pt;}
._2f{width:7.794774pt;}
._a{width:8.767123pt;}
._12{width:10.047751pt;}
._e{width:10.966875pt;}
._11{width:12.008303pt;}
._10{width:12.898831pt;}
._f{width:14.146417pt;}
._24{width:15.121963pt;}
._14{width:16.567206pt;}
._8{width:17.557629pt;}
._13{width:18.703196pt;}
._d{width:20.074057pt;}
._7{width:21.487425pt;}
._2b{width:24.578336pt;}
._0{width:25.478854pt;}
._25{width:26.375752pt;}
._9{width:29.744458pt;}
._2d{width:30.764632pt;}
._2e{width:31.689172pt;}
._b{width:33.740146pt;}
._17{width:94.100461pt;}
._1a{width:108.871730pt;}
._1c{width:110.359500pt;}
._1e{width:123.643020pt;}
._1d{width:222.950637pt;}
._15{width:233.726191pt;}
._16{width:276.637312pt;}
._19{width:327.731005pt;}
._18{width:355.838971pt;}
._1b{width:365.849395pt;}
._21{width:429.842880pt;}
._1f{width:444.458560pt;}
._20{width:712.008000pt;}
._23{width:1693.898667pt;}
._22{width:1978.117333pt;}
.fs9{font-size:26.985840pt;}
.fsb{font-size:28.110320pt;}
.fs5{font-size:31.880427pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:38.551200pt;}
.fs4{font-size:39.319200pt;}
.fsa{font-size:40.157600pt;}
.fs3{font-size:42.507253pt;}
.fs7{font-size:47.820693pt;}
.fsc{font-size:48.189120pt;}
.fs1{font-size:53.134080pt;}
.fs2{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:5.866668pt;}
.ya1{bottom:12.268116pt;}
.yc7{bottom:15.331000pt;}
.yb5{bottom:15.438715pt;}
.yb6{bottom:19.281923pt;}
.y77{bottom:20.000000pt;}
.ya0{bottom:24.164776pt;}
.yb4{bottom:27.581160pt;}
.yc6{bottom:29.668519pt;}
.y78{bottom:37.333333pt;}
.yc8{bottom:40.602054pt;}
.ya5{bottom:46.591192pt;}
.ya4{bottom:53.472262pt;}
.yac{bottom:54.042338pt;}
.ybc{bottom:59.961540pt;}
.yb8{bottom:63.410711pt;}
.ybe{bottom:66.859887pt;}
.ya3{bottom:67.796609pt;}
.yb9{bottom:68.584476pt;}
.ya9{bottom:78.510785pt;}
.y9e{bottom:80.452000pt;}
.yc9{bottom:82.737418pt;}
.y47{bottom:84.054667pt;}
.yb7{bottom:88.948040pt;}
.y46{bottom:93.228000pt;}
.yb2{bottom:93.442667pt;}
.ya2{bottom:93.643274pt;}
.yed{bottom:94.930667pt;}
.y9d{bottom:96.392000pt;}
.ybb{bottom:96.522801pt;}
.yec{bottom:97.878667pt;}
.ybd{bottom:97.902475pt;}
.y45{bottom:105.846667pt;}
.y73{bottom:108.402667pt;}
.y9c{bottom:112.332000pt;}
.y126{bottom:112.490667pt;}
.ycd{bottom:112.888247pt;}
.yeb{bottom:113.818667pt;}
.y79{bottom:116.000000pt;}
.ya8{bottom:117.551270pt;}
.y44{bottom:118.466667pt;}
.yba{bottom:118.597520pt;}
.y43{bottom:122.069333pt;}
.yca{bottom:124.872781pt;}
.yad{bottom:126.633322pt;}
.yea{bottom:126.810667pt;}
.y125{bottom:127.102667pt;}
.y72{bottom:128.122667pt;}
.y9b{bottom:128.272000pt;}
.ye9{bottom:129.760000pt;}
.y124{bottom:141.714667pt;}
.y42{bottom:142.090667pt;}
.ye8{bottom:142.750667pt;}
.y9a{bottom:144.212000pt;}
.ye7{bottom:145.700000pt;}
.y71{bottom:147.842667pt;}
.y41{bottom:158.032000pt;}
.y123{bottom:159.953333pt;}
.y99{bottom:160.153333pt;}
.ye6{bottom:161.640000pt;}
.ycb{bottom:167.008143pt;}
.y70{bottom:167.562667pt;}
.y40{bottom:173.972000pt;}
.y122{bottom:174.565333pt;}
.ycf{bottom:176.041722pt;}
.y98{bottom:176.093333pt;}
.ye5{bottom:177.580000pt;}
.yb1{bottom:185.378667pt;}
.y3f{bottom:186.962667pt;}
.y6f{bottom:187.282667pt;}
.yb0{bottom:188.328000pt;}
.y121{bottom:189.176000pt;}
.y3e{bottom:189.912000pt;}
.y97{bottom:192.033333pt;}
.ye4{bottom:193.520000pt;}
.yce{bottom:193.725704pt;}
.yaf{bottom:204.268000pt;}
.y96{bottom:205.024000pt;}
.y3d{bottom:205.852000pt;}
.y120{bottom:207.414667pt;}
.y95{bottom:207.973333pt;}
.ycc{bottom:209.143512pt;}
.ye3{bottom:209.460000pt;}
.y6e{bottom:209.898667pt;}
.y3c{bottom:221.792000pt;}
.y11f{bottom:222.026667pt;}
.ye2{bottom:222.452000pt;}
.y93{bottom:223.913333pt;}
.ye1{bottom:225.401333pt;}
.yae{bottom:226.452000pt;}
.y94{bottom:228.417333pt;}
.y3b{bottom:234.784000pt;}
.y11e{bottom:236.638667pt;}
.y6d{bottom:237.264000pt;}
.y3a{bottom:237.732000pt;}
.ye0{bottom:238.392000pt;}
.y92{bottom:239.853333pt;}
.ydf{bottom:241.341333pt;}
.yab{bottom:244.650667pt;}
.y39{bottom:250.724000pt;}
.y11d{bottom:251.250667pt;}
.y37{bottom:253.673333pt;}
.y91{bottom:255.794667pt;}
.y38{bottom:258.176000pt;}
.yde{bottom:258.508000pt;}
.y6c{bottom:267.450667pt;}
.y11c{bottom:269.488000pt;}
.y35{bottom:269.613333pt;}
.y90{bottom:272.624000pt;}
.y36{bottom:274.116000pt;}
.ydd{bottom:274.449333pt;}
.y6b{bottom:283.390667pt;}
.y11b{bottom:284.100000pt;}
.y34{bottom:285.553333pt;}
.y8f{bottom:288.565333pt;}
.ydc{bottom:290.389333pt;}
.y6a{bottom:296.382667pt;}
.y11a{bottom:298.712000pt;}
.y69{bottom:299.332000pt;}
.y33{bottom:301.493333pt;}
.y8e{bottom:304.505333pt;}
.ydb{bottom:306.329333pt;}
.y68{bottom:315.272000pt;}
.y119{bottom:316.950667pt;}
.y32{bottom:317.433333pt;}
.yda{bottom:319.320000pt;}
.y8d{bottom:320.445333pt;}
.yd9{bottom:322.269333pt;}
.y31{bottom:330.425333pt;}
.y67{bottom:331.212000pt;}
.y118{bottom:331.562667pt;}
.y30{bottom:333.373333pt;}
.y8c{bottom:333.436000pt;}
.yd8{bottom:335.261333pt;}
.y8b{bottom:336.385333pt;}
.yd7{bottom:338.209333pt;}
.y117{bottom:346.174667pt;}
.y66{bottom:347.152000pt;}
.y2f{bottom:349.314667pt;}
.y8a{bottom:352.325333pt;}
.yd6{bottom:354.149333pt;}
.y116{bottom:360.786667pt;}
.y2e{bottom:362.305333pt;}
.y65{bottom:363.092000pt;}
.y2d{bottom:365.254667pt;}
.yd5{bottom:367.141333pt;}
.y89{bottom:368.265333pt;}
.yd4{bottom:370.090667pt;}
.y2c{bottom:378.245333pt;}
.y115{bottom:379.024000pt;}
.y64{bottom:379.032000pt;}
.y2b{bottom:381.194667pt;}
.y88{bottom:381.257333pt;}
.y87{bottom:384.206667pt;}
.y114{bottom:393.636000pt;}
.y63{bottom:394.973333pt;}
.y2a{bottom:397.325333pt;}
.y86{bottom:400.146667pt;}
.yd3{bottom:401.237333pt;}
.y113{bottom:408.248000pt;}
.y62{bottom:410.913333pt;}
.y85{bottom:413.137333pt;}
.y29{bottom:413.266667pt;}
.y84{bottom:416.086667pt;}
.yd2{bottom:417.177333pt;}
.y112{bottom:426.486667pt;}
.y28{bottom:429.206667pt;}
.yd1{bottom:430.169333pt;}
.y61{bottom:431.805333pt;}
.y83{bottom:432.026667pt;}
.yd0{bottom:433.117333pt;}
.y111{bottom:441.098667pt;}
.y82{bottom:445.018667pt;}
.y27{bottom:445.146667pt;}
.y81{bottom:447.966667pt;}
.yc5{bottom:450.917333pt;}
.y110{bottom:455.710667pt;}
.y60{bottom:459.213333pt;}
.y26{bottom:461.086667pt;}
.y10f{bottom:470.321333pt;}
.y80{bottom:471.576000pt;}
.y25{bottom:474.078667pt;}
.y5f{bottom:475.153333pt;}
.y24{bottom:477.026667pt;}
.yaa{bottom:481.668000pt;}
.y10e{bottom:484.933333pt;}
.y23{bottom:490.018667pt;}
.y7f{bottom:490.173333pt;}
.y5e{bottom:491.093333pt;}
.y22{bottom:492.966667pt;}
.ya7{bottom:499.866667pt;}
.y10d{bottom:503.172000pt;}
.y21{bottom:505.958667pt;}
.y5d{bottom:507.033333pt;}
.y20{bottom:508.908000pt;}
.y10c{bottom:517.784000pt;}
.y7e{bottom:520.646667pt;}
.y1f{bottom:521.898667pt;}
.y5b{bottom:522.974667pt;}
.y1e{bottom:524.848000pt;}
.y5c{bottom:527.477333pt;}
.y10b{bottom:532.396000pt;}
.y7d{bottom:533.637333pt;}
.y7c{bottom:536.586667pt;}
.y5a{bottom:538.914667pt;}
.y1d{bottom:540.788000pt;}
.y10a{bottom:547.008000pt;}
.y59{bottom:554.854667pt;}
.y1c{bottom:556.728000pt;}
.y7b{bottom:558.769333pt;}
.y109{bottom:567.597333pt;}
.y57{bottom:570.794667pt;}
.y1b{bottom:572.668000pt;}
.y58{bottom:575.297333pt;}
.y56{bottom:586.734667pt;}
.y1a{bottom:588.608000pt;}
.y108{bottom:597.826667pt;}
.y55{bottom:602.674667pt;}
.y19{bottom:610.889333pt;}
.y107{bottom:613.766667pt;}
.y54{bottom:618.616000pt;}
.y106{bottom:629.706667pt;}
.y53{bottom:634.556000pt;}
.y18{bottom:642.320000pt;}
.y105{bottom:642.698667pt;}
.y104{bottom:645.646667pt;}
.y52{bottom:655.448000pt;}
.y17{bottom:658.260000pt;}
.y103{bottom:661.586667pt;}
.y16{bottom:674.200000pt;}
.y102{bottom:677.528000pt;}
.y51{bottom:680.205333pt;}
.y15{bottom:687.192000pt;}
.yc4{bottom:689.461333pt;}
.y14{bottom:690.140000pt;}
.y101{bottom:693.468000pt;}
.yc3{bottom:702.452000pt;}
.yc2{bottom:705.401333pt;}
.y13{bottom:706.081333pt;}
.y50{bottom:711.200000pt;}
.y100{bottom:715.385333pt;}
.y12{bottom:719.072000pt;}
.yc1{bottom:721.341333pt;}
.y11{bottom:722.021333pt;}
.y4f{bottom:727.140000pt;}
.yc0{bottom:734.332000pt;}
.ya6{bottom:736.884000pt;}
.ybf{bottom:737.281333pt;}
.y10{bottom:737.961333pt;}
.y4e{bottom:743.080000pt;}
.yff{bottom:745.614667pt;}
.yf{bottom:753.901333pt;}
.yb3{bottom:755.081333pt;}
.y9f{bottom:755.082667pt;}
.y4d{bottom:759.020000pt;}
.yfe{bottom:761.554667pt;}
.ye{bottom:766.892000pt;}
.yd{bottom:769.841333pt;}
.y4c{bottom:774.961333pt;}
.y7a{bottom:775.434667pt;}
.yfd{bottom:777.494667pt;}
.yc{bottom:785.781333pt;}
.y4b{bottom:790.901333pt;}
.yfc{bottom:793.436000pt;}
.yb{bottom:798.773333pt;}
.ya{bottom:801.722667pt;}
.yfb{bottom:806.426667pt;}
.y4a{bottom:806.841333pt;}
.yfa{bottom:809.376000pt;}
.y9{bottom:814.713333pt;}
.y8{bottom:817.662667pt;}
.y49{bottom:822.781333pt;}
.yf9{bottom:825.316000pt;}
.y48{bottom:835.773333pt;}
.y7{bottom:838.721333pt;}
.yf8{bottom:841.256000pt;}
.yf7{bottom:857.196000pt;}
.y6{bottom:869.629333pt;}
.yf6{bottom:870.188000pt;}
.yf5{bottom:873.136000pt;}
.y5{bottom:882.822667pt;}
.yf4{bottom:886.128000pt;}
.yf3{bottom:889.077333pt;}
.y4{bottom:901.420000pt;}
.yf2{bottom:910.994667pt;}
.y3{bottom:920.017333pt;}
.yf1{bottom:941.224000pt;}
.y2{bottom:945.256000pt;}
.yf0{bottom:954.214667pt;}
.yef{bottom:957.164000pt;}
.y1{bottom:969.165333pt;}
.yee{bottom:973.104000pt;}
.y76{bottom:1005.333333pt;}
.y74{bottom:1022.666667pt;}
.hf{height:13.333333pt;}
.hc{height:21.551168pt;}
.h17{height:26.114487pt;}
.h8{height:27.051610pt;}
.h5{height:29.244990pt;}
.h1a{height:32.565892pt;}
.h12{height:32.900637pt;}
.h14{height:35.814065pt;}
.h9{height:35.918638pt;}
.h19{height:36.290577pt;}
.h7{height:36.556247pt;}
.he{height:36.768783pt;}
.h16{height:37.306410pt;}
.h10{height:38.937500pt;}
.h6{height:43.548699pt;}
.h4{height:43.867504pt;}
.ha{height:44.122547pt;}
.h18{height:44.767692pt;}
.hd{height:45.062276pt;}
.hb{height:47.710638pt;}
.h3{height:50.855657pt;}
.h1{height:52.947042pt;}
.h2{height:61.854638pt;}
.h15{height:231.307107pt;}
.h13{height:231.307200pt;}
.h11{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w3{width:231.307200pt;}
.w4{width:308.409699pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x40{left:7.466666pt;}
.x51{left:17.653237pt;}
.x6f{left:22.095883pt;}
.x6e{left:27.282906pt;}
.x6d{left:37.473941pt;}
.x60{left:39.333333pt;}
.x52{left:54.383296pt;}
.x50{left:73.375784pt;}
.x6{left:75.096000pt;}
.x3e{left:76.000000pt;}
.x61{left:77.293333pt;}
.x64{left:82.233140pt;}
.x2b{left:83.230667pt;}
.x7{left:88.874667pt;}
.x57{left:97.427852pt;}
.x1e{left:98.378667pt;}
.x1f{left:104.513333pt;}
.x45{left:109.792000pt;}
.x27{left:111.550667pt;}
.x17{left:114.402667pt;}
.xa{left:116.009333pt;}
.x18{left:120.537333pt;}
.xb{left:122.142667pt;}
.x77{left:123.821333pt;}
.x53{left:125.175236pt;}
.x65{left:138.830265pt;}
.x47{left:144.262667pt;}
.x1b{left:145.268000pt;}
.x5{left:149.941333pt;}
.x66{left:152.550778pt;}
.x1{left:155.484000pt;}
.x4{left:156.376000pt;}
.x5b{left:157.579868pt;}
.x41{left:159.914667pt;}
.x56{left:161.914375pt;}
.x62{left:165.706572pt;}
.x14{left:167.974667pt;}
.x63{left:170.280676pt;}
.x42{left:172.526667pt;}
.x3{left:178.605333pt;}
.x46{left:182.782667pt;}
.x5a{left:184.068828pt;}
.x75{left:186.972000pt;}
.x28{left:187.894667pt;}
.x4f{left:190.411509pt;}
.x29{left:194.029333pt;}
.x70{left:197.256000pt;}
.x55{left:198.208720pt;}
.x59{left:200.660217pt;}
.x6b{left:202.586667pt;}
.x10{left:206.800000pt;}
.x6c{left:208.720000pt;}
.x11{left:212.934667pt;}
.x43{left:219.641333pt;}
.x4a{left:222.716000pt;}
.x44{left:225.776000pt;}
.x73{left:228.622667pt;}
.x19{left:229.996000pt;}
.x4b{left:232.497333pt;}
.x2{left:234.105333pt;}
.x1a{left:237.900000pt;}
.x22{left:240.696000pt;}
.x23{left:249.172000pt;}
.x67{left:250.309442pt;}
.x74{left:265.065333pt;}
.x68{left:270.890212pt;}
.xe{left:275.704000pt;}
.xf{left:284.537333pt;}
.x24{left:290.973333pt;}
.x8{left:292.966667pt;}
.x1c{left:294.368000pt;}
.x9{left:299.101333pt;}
.x1d{left:303.201333pt;}
.x76{left:305.405333pt;}
.xc{left:309.941333pt;}
.x4d{left:314.493333pt;}
.xd{left:315.465333pt;}
.x12{left:322.653333pt;}
.x20{left:325.985333pt;}
.x21{left:331.510667pt;}
.x13{left:332.961333pt;}
.x48{left:342.520000pt;}
.x71{left:344.525333pt;}
.x69{left:347.009333pt;}
.x49{left:348.654667pt;}
.x72{left:350.660000pt;}
.x6a{left:353.144000pt;}
.x4c{left:359.152000pt;}
.x15{left:370.321333pt;}
.x25{left:373.665333pt;}
.x16{left:376.456000pt;}
.x26{left:378.718667pt;}
.x2a{left:381.877333pt;}
.x2f{left:406.298667pt;}
.x80{left:407.848000pt;}
.x7d{left:413.188000pt;}
.x2c{left:419.582667pt;}
.x85{left:426.840000pt;}
.x81{left:428.429333pt;}
.x82{left:439.852000pt;}
.x83{left:443.833333pt;}
.x4e{left:446.550667pt;}
.x5f{left:449.529333pt;}
.x3d{left:451.812000pt;}
.x3c{left:454.340000pt;}
.x30{left:460.849333pt;}
.x5d{left:462.465333pt;}
.x5e{left:468.600000pt;}
.x7f{left:481.392000pt;}
.x2d{left:487.325333pt;}
.x2e{left:493.458667pt;}
.x7e{left:502.030667pt;}
.x7a{left:508.701333pt;}
.x58{left:541.584000pt;}
.x54{left:542.588000pt;}
.x5c{left:543.580000pt;}
.x35{left:553.938667pt;}
.x36{left:561.245333pt;}
.x37{left:574.581333pt;}
.x38{left:589.418667pt;}
.x78{left:592.829333pt;}
.x79{left:603.301333pt;}
.x3a{left:604.618667pt;}
.x3b{left:612.936000pt;}
.x84{left:634.633333pt;}
.x31{left:646.025333pt;}
.x7b{left:648.337333pt;}
.x7c{left:653.046667pt;}
.x32{left:654.858667pt;}
.x33{left:677.397333pt;}
.x34{left:682.449333pt;}
.x39{left:690.260000pt;}
.x3f{left:743.333333pt;}
}




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