
    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_dbe61914be083713bb7695e1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_67655dbab47e9b14f6a7143e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_32fbcf9fb56ec9d5a5da36a6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4e8e3bc5b2ab834d2a6ceaa3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1c{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);}
.m6{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);}
.m24{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);}
.m28{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.md{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);}
.m1{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);}
.m26{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);}
.m9{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);}
.mf{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);}
.m4{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);}
.m25{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);}
.m1f{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);}
.m16{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);}
.m1d{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);}
.m7{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);}
.me{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);}
.m22{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);}
.m17{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);}
.m27{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);}
.m5{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);}
.m14{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);}
.m13{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);}
.m23{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,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);}
.m8{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);}
.m15{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);}
.m19{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);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m1e{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);}
.m1b{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);}
.m3{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);}
.m29{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.443582px;}
.ls0{letter-spacing:2.988780px;}
.ls5{letter-spacing:16.223112px;}
.lsb{letter-spacing:16.979274px;}
.ls7{letter-spacing:17.185500px;}
.ls9{letter-spacing:17.254242px;}
.lsa{letter-spacing:17.460468px;}
.lsd{letter-spacing:19.453986px;}
.lsc{letter-spacing:20.966310px;}
.ls8{letter-spacing:21.103794px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws5f{word-spacing:-17.185500px;}
.ws110{word-spacing:-3.849552px;}
.ws125{word-spacing:-3.780810px;}
.ws8d{word-spacing:-3.712068px;}
.ws116{word-spacing:-3.643326px;}
.ws47{word-spacing:-3.574584px;}
.ws8e{word-spacing:-3.505842px;}
.ws6f{word-spacing:-3.437100px;}
.ws74{word-spacing:-3.368358px;}
.ws96{word-spacing:-3.299616px;}
.ws2f{word-spacing:-3.230874px;}
.wsf9{word-spacing:-3.162132px;}
.ws124{word-spacing:-3.093390px;}
.ws10f{word-spacing:-3.024648px;}
.ws14{word-spacing:-2.988780px;}
.ws70{word-spacing:-2.955906px;}
.ws100{word-spacing:-2.887164px;}
.ws10a{word-spacing:-2.818422px;}
.ws9d{word-spacing:-2.749680px;}
.ws18{word-spacing:-2.680938px;}
.ws1b{word-spacing:-2.612196px;}
.wsf7{word-spacing:-2.543454px;}
.wsc8{word-spacing:-2.474712px;}
.ws43{word-spacing:-2.405970px;}
.ws8b{word-spacing:-2.337228px;}
.wsfc{word-spacing:-2.268486px;}
.wsa{word-spacing:-2.211697px;}
.ws10c{word-spacing:-2.199744px;}
.ws81{word-spacing:-2.131002px;}
.ws27{word-spacing:-2.062260px;}
.wsf3{word-spacing:-1.993518px;}
.ws5c{word-spacing:-1.924776px;}
.ws48{word-spacing:-1.856034px;}
.wsd2{word-spacing:-1.787292px;}
.ws60{word-spacing:-1.718550px;}
.ws11b{word-spacing:-1.649808px;}
.wse0{word-spacing:-1.581066px;}
.wsc6{word-spacing:-1.512324px;}
.ws86{word-spacing:-1.443582px;}
.ws84{word-spacing:-1.374840px;}
.ws7{word-spacing:-1.315063px;}
.wsd0{word-spacing:-1.306098px;}
.ws10{word-spacing:-1.255288px;}
.ws109{word-spacing:-1.237356px;}
.wscd{word-spacing:-1.168614px;}
.ws65{word-spacing:-1.099872px;}
.wsf2{word-spacing:-1.031130px;}
.wsc3{word-spacing:-0.962388px;}
.ws38{word-spacing:-0.893646px;}
.wsf1{word-spacing:-0.824904px;}
.ws4e{word-spacing:-0.756162px;}
.wsaa{word-spacing:-0.687420px;}
.ws80{word-spacing:-0.618678px;}
.ws87{word-spacing:-0.549936px;}
.ws85{word-spacing:-0.481194px;}
.ws44{word-spacing:-0.412452px;}
.ws1c{word-spacing:-0.343710px;}
.ws13{word-spacing:-0.298878px;}
.ws2c{word-spacing:-0.274968px;}
.ws5{word-spacing:-0.239102px;}
.ws22{word-spacing:-0.206226px;}
.ws28{word-spacing:-0.137484px;}
.ws9{word-spacing:-0.119551px;}
.ws2e{word-spacing:-0.068742px;}
.wsd{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.059776px;}
.ws25{word-spacing:0.068742px;}
.ws15{word-spacing:0.107597px;}
.ws21{word-spacing:0.137484px;}
.wsf{word-spacing:0.179327px;}
.ws4b{word-spacing:0.206226px;}
.ws2{word-spacing:0.206585px;}
.ws12{word-spacing:0.239102px;}
.ws1a{word-spacing:0.274968px;}
.ws4f{word-spacing:0.343710px;}
.wsb{word-spacing:0.358654px;}
.ws71{word-spacing:0.412452px;}
.wsc{word-spacing:0.478205px;}
.wsb3{word-spacing:0.481194px;}
.ws4d{word-spacing:0.549936px;}
.ws11{word-spacing:0.597756px;}
.ws6c{word-spacing:0.618678px;}
.ws68{word-spacing:0.687420px;}
.wscc{word-spacing:0.756162px;}
.wsd3{word-spacing:0.824904px;}
.ws8a{word-spacing:0.893646px;}
.ws88{word-spacing:0.962388px;}
.ws46{word-spacing:1.031130px;}
.ws49{word-spacing:1.099872px;}
.ws73{word-spacing:1.168614px;}
.wse{word-spacing:1.195512px;}
.ws93{word-spacing:1.237356px;}
.wsdf{word-spacing:1.306098px;}
.wsff{word-spacing:1.374840px;}
.ws24{word-spacing:1.443582px;}
.ws3f{word-spacing:1.512324px;}
.ws55{word-spacing:1.581066px;}
.wsbc{word-spacing:1.649808px;}
.ws58{word-spacing:1.718550px;}
.ws3b{word-spacing:1.787292px;}
.ws7f{word-spacing:1.856034px;}
.ws6d{word-spacing:1.924776px;}
.wsfe{word-spacing:1.993518px;}
.wsb0{word-spacing:2.062260px;}
.wsac{word-spacing:2.131002px;}
.wsdd{word-spacing:2.199744px;}
.wseb{word-spacing:2.268486px;}
.ws64{word-spacing:2.337228px;}
.ws9f{word-spacing:2.405970px;}
.wsb5{word-spacing:2.474712px;}
.wsa7{word-spacing:2.543454px;}
.ws23{word-spacing:2.612196px;}
.ws83{word-spacing:2.680938px;}
.ws29{word-spacing:2.749680px;}
.wsae{word-spacing:2.818422px;}
.ws1f{word-spacing:2.887164px;}
.wsf5{word-spacing:2.955906px;}
.ws6{word-spacing:2.988780px;}
.wscb{word-spacing:3.024648px;}
.wsd1{word-spacing:3.093390px;}
.wsbd{word-spacing:3.162132px;}
.ws94{word-spacing:3.230874px;}
.wsf6{word-spacing:3.299616px;}
.ws36{word-spacing:3.368358px;}
.ws5d{word-spacing:3.437100px;}
.ws8f{word-spacing:3.505842px;}
.ws72{word-spacing:3.574584px;}
.ws41{word-spacing:3.643326px;}
.wse3{word-spacing:3.712068px;}
.ws1e{word-spacing:3.780810px;}
.wsec{word-spacing:3.849552px;}
.ws31{word-spacing:3.918294px;}
.ws19{word-spacing:3.987036px;}
.wsc0{word-spacing:4.055778px;}
.ws33{word-spacing:4.124520px;}
.ws103{word-spacing:4.193262px;}
.wsc9{word-spacing:4.262004px;}
.ws34{word-spacing:4.330746px;}
.ws1d{word-spacing:4.399488px;}
.ws53{word-spacing:4.468230px;}
.ws7e{word-spacing:4.536972px;}
.ws66{word-spacing:4.605714px;}
.ws62{word-spacing:4.674456px;}
.ws111{word-spacing:4.743198px;}
.ws61{word-spacing:4.811940px;}
.ws59{word-spacing:4.880682px;}
.ws5b{word-spacing:4.949424px;}
.ws67{word-spacing:5.018166px;}
.wsbe{word-spacing:5.086908px;}
.wscf{word-spacing:5.155650px;}
.ws4c{word-spacing:5.224392px;}
.ws8c{word-spacing:5.293134px;}
.wsb6{word-spacing:5.361876px;}
.wsdb{word-spacing:5.430618px;}
.wsef{word-spacing:5.499360px;}
.wsb4{word-spacing:5.568102px;}
.wsbb{word-spacing:5.636844px;}
.ws51{word-spacing:5.705586px;}
.ws52{word-spacing:5.774328px;}
.ws40{word-spacing:5.843070px;}
.wsca{word-spacing:5.911812px;}
.wsab{word-spacing:5.980554px;}
.ws2b{word-spacing:6.049296px;}
.ws32{word-spacing:6.118038px;}
.ws121{word-spacing:6.133018px;}
.ws101{word-spacing:6.186780px;}
.ws54{word-spacing:6.255522px;}
.wsa5{word-spacing:6.324264px;}
.ws4a{word-spacing:6.393006px;}
.ws45{word-spacing:6.461748px;}
.ws39{word-spacing:6.530490px;}
.ws3c{word-spacing:6.599232px;}
.ws5a{word-spacing:6.667974px;}
.ws56{word-spacing:6.736716px;}
.ws115{word-spacing:6.805458px;}
.ws106{word-spacing:6.874200px;}
.wsb8{word-spacing:6.942942px;}
.ws42{word-spacing:7.011684px;}
.wsba{word-spacing:7.080426px;}
.ws6e{word-spacing:7.149168px;}
.ws11c{word-spacing:7.217910px;}
.wsda{word-spacing:7.286652px;}
.wsaf{word-spacing:7.355394px;}
.wsc2{word-spacing:7.424136px;}
.wsad{word-spacing:7.492878px;}
.wsc4{word-spacing:7.561620px;}
.ws57{word-spacing:7.630362px;}
.ws50{word-spacing:7.699104px;}
.ws9e{word-spacing:7.767846px;}
.ws69{word-spacing:7.836588px;}
.ws104{word-spacing:7.905330px;}
.wsb2{word-spacing:7.974072px;}
.ws7c{word-spacing:8.042814px;}
.ws76{word-spacing:8.111556px;}
.wse6{word-spacing:8.180298px;}
.wsbf{word-spacing:8.249040px;}
.ws63{word-spacing:8.317782px;}
.ws2d{word-spacing:8.386524px;}
.wsce{word-spacing:8.455266px;}
.ws3a{word-spacing:8.524008px;}
.ws89{word-spacing:8.592750px;}
.ws26{word-spacing:8.661492px;}
.ws95{word-spacing:8.730234px;}
.ws9b{word-spacing:8.798976px;}
.wsc5{word-spacing:8.867718px;}
.ws20{word-spacing:8.936460px;}
.ws90{word-spacing:9.005202px;}
.ws10d{word-spacing:9.073944px;}
.ws9c{word-spacing:9.142686px;}
.wsea{word-spacing:9.211428px;}
.wse1{word-spacing:9.280170px;}
.ws35{word-spacing:9.348912px;}
.ws37{word-spacing:9.417654px;}
.wsb9{word-spacing:9.486396px;}
.wsf0{word-spacing:9.555138px;}
.ws123{word-spacing:9.623880px;}
.wsc1{word-spacing:9.692622px;}
.wsb7{word-spacing:9.761364px;}
.ws92{word-spacing:9.830106px;}
.ws17{word-spacing:9.898848px;}
.ws2a{word-spacing:9.967590px;}
.wsa4{word-spacing:10.036332px;}
.ws108{word-spacing:10.105074px;}
.ws7a{word-spacing:10.173816px;}
.ws113{word-spacing:10.242558px;}
.ws75{word-spacing:10.311300px;}
.wse8{word-spacing:10.380042px;}
.ws128{word-spacing:10.448784px;}
.ws107{word-spacing:10.517526px;}
.wsd5{word-spacing:10.586268px;}
.ws11f{word-spacing:10.655010px;}
.ws3d{word-spacing:10.723752px;}
.wsfb{word-spacing:10.792494px;}
.wsd4{word-spacing:10.861236px;}
.wsd6{word-spacing:10.929978px;}
.ws117{word-spacing:10.998720px;}
.wsd7{word-spacing:11.067462px;}
.ws79{word-spacing:11.204946px;}
.ws78{word-spacing:11.273688px;}
.wsd8{word-spacing:11.411172px;}
.ws11d{word-spacing:11.479914px;}
.ws118{word-spacing:11.617398px;}
.wse7{word-spacing:11.686140px;}
.ws6a{word-spacing:11.754882px;}
.wsd9{word-spacing:11.823624px;}
.wsb1{word-spacing:11.961108px;}
.wsed{word-spacing:12.098592px;}
.ws10b{word-spacing:12.167334px;}
.ws10e{word-spacing:12.236076px;}
.ws126{word-spacing:12.304818px;}
.ws3e{word-spacing:12.373560px;}
.wsdc{word-spacing:12.442302px;}
.ws112{word-spacing:12.579786px;}
.ws30{word-spacing:12.648528px;}
.ws5e{word-spacing:12.717270px;}
.wsee{word-spacing:12.854754px;}
.ws12c{word-spacing:12.923496px;}
.wsde{word-spacing:12.992238px;}
.ws6b{word-spacing:13.198464px;}
.wsf8{word-spacing:13.542174px;}
.ws11e{word-spacing:13.610916px;}
.wsfa{word-spacing:13.679658px;}
.ws12d{word-spacing:13.748400px;}
.wsa9{word-spacing:13.817142px;}
.wsc7{word-spacing:14.023368px;}
.wsa3{word-spacing:14.298336px;}
.ws9a{word-spacing:14.435820px;}
.wsf4{word-spacing:14.504562px;}
.wsa2{word-spacing:15.123240px;}
.wse5{word-spacing:15.329466px;}
.wsa1{word-spacing:15.398208px;}
.wse4{word-spacing:15.604434px;}
.wsa6{word-spacing:16.223112px;}
.ws120{word-spacing:16.360596px;}
.ws105{word-spacing:16.635564px;}
.ws127{word-spacing:16.704306px;}
.ws0{word-spacing:16.880672px;}
.wse9{word-spacing:17.391726px;}
.wsa8{word-spacing:17.666694px;}
.ws12a{word-spacing:17.735436px;}
.wsfd{word-spacing:18.491598px;}
.ws4{word-spacing:18.649987px;}
.ws7b{word-spacing:18.972792px;}
.ws114{word-spacing:19.349392px;}
.ws77{word-spacing:19.728954px;}
.ws7d{word-spacing:20.760084px;}
.ws12b{word-spacing:21.928698px;}
.ws129{word-spacing:26.121960px;}
.ws11a{word-spacing:27.290574px;}
.ws122{word-spacing:28.665414px;}
.ws91{word-spacing:31.002642px;}
.ws82{word-spacing:36.020808px;}
.ws102{word-spacing:37.120680px;}
.ws98{word-spacing:38.495520px;}
.ws99{word-spacing:38.564262px;}
.wsa0{word-spacing:50.181660px;}
.ws16{word-spacing:77.630692px;}
.ws97{word-spacing:82.834110px;}
.ws119{word-spacing:940.539258px;}
.wse2{word-spacing:943.119258px;}
._33{margin-left:-26.671896px;}
._32{margin-left:-24.815862px;}
._35{margin-left:-9.097259px;}
._1{margin-left:-7.230468px;}
._3{margin-left:-6.216672px;}
._4{margin-left:-4.662504px;}
._b{margin-left:-3.586536px;}
._7{margin-left:-2.450800px;}
._2{margin-left:-1.032924px;}
._0{width:1.386797px;}
._36{width:2.543454px;}
._34{width:4.756944px;}
._8{width:13.765120px;}
._19{width:15.329466px;}
._a{width:16.737168px;}
._9{width:18.410885px;}
._6{width:19.606404px;}
._10{width:21.423592px;}
._e{width:22.628070px;}
._1b{width:23.659200px;}
._1a{width:25.297056px;}
._30{width:26.328186px;}
._5{width:27.377225px;}
._12{width:29.352834px;}
._f{width:30.590190px;}
._2d{width:31.666150px;}
._d{width:33.197424px;}
._13{width:34.233516px;}
._1c{width:35.709976px;}
._23{width:36.914454px;}
._27{width:38.701746px;}
._1e{width:40.007844px;}
._26{width:41.015062px;}
._29{width:42.276330px;}
._20{width:43.513686px;}
._17{width:44.559785px;}
._25{width:46.194655px;}
._28{width:47.718900px;}
._2f{width:48.738078px;}
._15{width:49.837950px;}
._11{width:51.764520px;}
._31{width:53.000082px;}
._16{width:54.031212px;}
._2b{width:55.713898px;}
._24{width:56.918376px;}
._14{width:58.018248px;}
._c{width:59.177844px;}
._22{width:62.280252px;}
._1f{width:64.595362px;}
._18{width:67.367160px;}
._1d{width:68.742000px;}
._21{width:70.116840px;}
._2e{width:77.708400px;}
._2a{width:94.107798px;}
._2c{width:166.699350px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y70{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y7e{bottom:87.351000px;}
.y150{bottom:89.719500px;}
.y52{bottom:90.733500px;}
.y25{bottom:96.526500px;}
.y98{bottom:98.272500px;}
.yaf{bottom:99.286500px;}
.y6f{bottom:100.462500px;}
.y16d{bottom:102.717000px;}
.y175{bottom:103.731000px;}
.y1d4{bottom:104.295000px;}
.y198{bottom:104.740500px;}
.y124{bottom:105.567000px;}
.y1b3{bottom:105.754500px;}
.yf1{bottom:106.497000px;}
.y10d{bottom:107.511000px;}
.y7d{bottom:110.148000px;}
.y14f{bottom:112.516500px;}
.y51{bottom:113.530500px;}
.y24{bottom:119.323500px;}
.y97{bottom:121.069500px;}
.yae{bottom:122.083500px;}
.y6e{bottom:123.259500px;}
.y16c{bottom:125.515500px;}
.y174{bottom:126.528000px;}
.y1d3{bottom:127.092000px;}
.y197{bottom:127.537500px;}
.y123{bottom:128.364000px;}
.y1b2{bottom:128.551500px;}
.yf0{bottom:129.294000px;}
.y10c{bottom:130.308000px;}
.y17c{bottom:131.956500px;}
.y7c{bottom:132.946500px;}
.y14e{bottom:135.313500px;}
.y50{bottom:136.327500px;}
.y23{bottom:142.120500px;}
.y96{bottom:143.866500px;}
.yad{bottom:144.880500px;}
.yc5{bottom:145.042500px;}
.y6d{bottom:146.056500px;}
.y16b{bottom:148.312500px;}
.y173{bottom:149.326500px;}
.y1d2{bottom:149.889000px;}
.y196{bottom:150.336000px;}
.y122{bottom:151.161000px;}
.y1b1{bottom:151.350000px;}
.yef{bottom:152.091000px;}
.y10b{bottom:153.105000px;}
.y17b{bottom:154.753500px;}
.y7b{bottom:155.743500px;}
.y14d{bottom:158.110500px;}
.y4f{bottom:159.124500px;}
.y22{bottom:164.919000px;}
.y95{bottom:166.663500px;}
.yac{bottom:167.677500px;}
.yc4{bottom:167.839500px;}
.y6c{bottom:168.853500px;}
.y16a{bottom:171.109500px;}
.y172{bottom:172.123500px;}
.y1d1{bottom:172.686000px;}
.y195{bottom:173.133000px;}
.y121{bottom:173.958000px;}
.y1b0{bottom:174.147000px;}
.yee{bottom:174.888000px;}
.y10a{bottom:175.902000px;}
.y17a{bottom:177.550500px;}
.y7a{bottom:178.540500px;}
.y14c{bottom:180.907500px;}
.y4e{bottom:181.921500px;}
.y21{bottom:187.716000px;}
.y94{bottom:189.460500px;}
.yab{bottom:190.474500px;}
.yc3{bottom:190.636500px;}
.y6b{bottom:191.650500px;}
.y169{bottom:193.906500px;}
.y171{bottom:194.920500px;}
.y1d0{bottom:195.483000px;}
.y194{bottom:195.930000px;}
.y120{bottom:196.755000px;}
.y1af{bottom:196.944000px;}
.yed{bottom:197.685000px;}
.y109{bottom:198.699000px;}
.y179{bottom:200.347500px;}
.y79{bottom:201.337500px;}
.y14b{bottom:203.704500px;}
.y4d{bottom:204.718500px;}
.y20{bottom:210.513000px;}
.y93{bottom:212.257500px;}
.yaa{bottom:213.271500px;}
.yc2{bottom:213.433500px;}
.y6a{bottom:214.447500px;}
.y168{bottom:216.703500px;}
.y170{bottom:217.717500px;}
.y1cf{bottom:218.280000px;}
.y193{bottom:218.727000px;}
.y11f{bottom:219.552000px;}
.y1ae{bottom:219.741000px;}
.yec{bottom:220.482000px;}
.y108{bottom:221.496000px;}
.y178{bottom:223.144500px;}
.y78{bottom:224.134500px;}
.y14a{bottom:226.501500px;}
.y4c{bottom:227.515500px;}
.y1f{bottom:233.310000px;}
.y92{bottom:235.054500px;}
.ya9{bottom:236.068500px;}
.yc1{bottom:236.230500px;}
.y69{bottom:237.244500px;}
.y167{bottom:239.500500px;}
.y16f{bottom:240.514500px;}
.y1ce{bottom:241.078500px;}
.y192{bottom:241.524000px;}
.y11e{bottom:242.349000px;}
.y1ad{bottom:242.538000px;}
.yeb{bottom:243.280500px;}
.y107{bottom:244.294500px;}
.y177{bottom:245.941500px;}
.y77{bottom:246.931500px;}
.y149{bottom:249.298500px;}
.y4b{bottom:250.312500px;}
.y91{bottom:257.851500px;}
.ya8{bottom:258.865500px;}
.yc0{bottom:259.027500px;}
.y68{bottom:260.041500px;}
.y166{bottom:262.297500px;}
.y16e{bottom:263.311500px;}
.y1cd{bottom:263.875500px;}
.y191{bottom:264.321000px;}
.y11d{bottom:265.146000px;}
.y1ac{bottom:265.335000px;}
.yea{bottom:266.077500px;}
.y106{bottom:267.091500px;}
.y76{bottom:269.728500px;}
.yc7{bottom:269.829000px;}
.y148{bottom:272.097000px;}
.y4a{bottom:273.109500px;}
.y176{bottom:279.199500px;}
.y90{bottom:280.648500px;}
.ya7{bottom:281.662500px;}
.ybf{bottom:281.824500px;}
.y67{bottom:282.838500px;}
.y1e{bottom:284.500500px;}
.y1cc{bottom:286.672500px;}
.y190{bottom:287.118000px;}
.y11c{bottom:287.943000px;}
.y1ab{bottom:288.132000px;}
.ye9{bottom:288.874500px;}
.y105{bottom:289.888500px;}
.y75{bottom:292.525500px;}
.y147{bottom:294.894000px;}
.y49{bottom:295.908000px;}
.y8f{bottom:303.445500px;}
.ya6{bottom:304.459500px;}
.ybe{bottom:304.621500px;}
.y66{bottom:305.635500px;}
.y1cb{bottom:309.469500px;}
.y18f{bottom:309.915000px;}
.y11b{bottom:310.740000px;}
.y1aa{bottom:310.929000px;}
.ye8{bottom:311.671500px;}
.y104{bottom:312.685500px;}
.y74{bottom:315.322500px;}
.y146{bottom:317.691000px;}
.y48{bottom:318.705000px;}
.y165{bottom:321.973500px;}
.y1d{bottom:325.674000px;}
.y8e{bottom:326.242500px;}
.ya5{bottom:327.256500px;}
.ybd{bottom:327.418500px;}
.y65{bottom:328.432500px;}
.y1ca{bottom:332.266500px;}
.y18e{bottom:332.712000px;}
.y11a{bottom:333.537000px;}
.y1a9{bottom:333.726000px;}
.ye7{bottom:334.468500px;}
.y103{bottom:335.482500px;}
.y73{bottom:338.119500px;}
.y145{bottom:340.488000px;}
.y47{bottom:341.502000px;}
.y1c{bottom:344.248500px;}
.y164{bottom:344.770500px;}
.y8d{bottom:349.039500px;}
.ya4{bottom:350.053500px;}
.ybc{bottom:350.217000px;}
.y64{bottom:351.229500px;}
.y1c9{bottom:355.063500px;}
.y18d{bottom:355.509000px;}
.y119{bottom:356.334000px;}
.y1a8{bottom:356.523000px;}
.ye6{bottom:357.265500px;}
.y102{bottom:358.279500px;}
.y72{bottom:360.916500px;}
.y144{bottom:363.285000px;}
.y46{bottom:364.299000px;}
.y1b{bottom:366.070500px;}
.y163{bottom:367.567500px;}
.y8c{bottom:371.836500px;}
.ya3{bottom:372.850500px;}
.ybb{bottom:373.014000px;}
.y63{bottom:374.028000px;}
.y1c8{bottom:377.860500px;}
.y18c{bottom:378.306000px;}
.y118{bottom:379.132500px;}
.y1a7{bottom:379.320000px;}
.ye5{bottom:380.062500px;}
.y101{bottom:381.076500px;}
.y143{bottom:386.082000px;}
.y45{bottom:387.096000px;}
.y162{bottom:390.366000px;}
.y71{bottom:394.174500px;}
.y8b{bottom:394.635000px;}
.ya2{bottom:395.649000px;}
.yba{bottom:395.811000px;}
.y62{bottom:396.825000px;}
.y1a{bottom:399.721500px;}
.y1c7{bottom:400.657500px;}
.y18b{bottom:401.103000px;}
.y117{bottom:401.929500px;}
.y1a6{bottom:402.117000px;}
.ye4{bottom:402.859500px;}
.y100{bottom:403.873500px;}
.y142{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y161{bottom:413.163000px;}
.y8a{bottom:417.432000px;}
.ya1{bottom:418.446000px;}
.yb9{bottom:418.608000px;}
.y61{bottom:419.622000px;}
.y1c6{bottom:423.454500px;}
.y18a{bottom:423.900000px;}
.y116{bottom:424.726500px;}
.y1a5{bottom:424.914000px;}
.ye3{bottom:425.656500px;}
.yff{bottom:426.670500px;}
.y141{bottom:431.676000px;}
.y43{bottom:432.690000px;}
.y19{bottom:435.123000px;}
.y160{bottom:435.960000px;}
.y89{bottom:440.229000px;}
.ya0{bottom:441.243000px;}
.yb8{bottom:441.405000px;}
.y60{bottom:442.419000px;}
.y1c5{bottom:446.251500px;}
.y189{bottom:446.698500px;}
.y115{bottom:447.523500px;}
.y1a4{bottom:447.711000px;}
.ye2{bottom:448.453500px;}
.yfe{bottom:449.467500px;}
.y140{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.y18{bottom:457.077000px;}
.y15f{bottom:458.757000px;}
.y88{bottom:463.026000px;}
.y9f{bottom:464.040000px;}
.yb7{bottom:464.202000px;}
.y5f{bottom:465.216000px;}
.y1c4{bottom:469.048500px;}
.y188{bottom:469.495500px;}
.y114{bottom:470.320500px;}
.y1a3{bottom:470.509500px;}
.ye1{bottom:471.250500px;}
.yfd{bottom:472.264500px;}
.y13f{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y17{bottom:479.029500px;}
.y15e{bottom:481.554000px;}
.y87{bottom:485.823000px;}
.y9e{bottom:486.837000px;}
.yb6{bottom:486.999000px;}
.y5e{bottom:488.013000px;}
.y1c3{bottom:491.845500px;}
.y187{bottom:492.292500px;}
.y113{bottom:493.117500px;}
.y1a2{bottom:493.306500px;}
.ye0{bottom:494.047500px;}
.yfc{bottom:495.061500px;}
.y13e{bottom:500.067000px;}
.y16{bottom:500.982000px;}
.y40{bottom:501.081000px;}
.y15d{bottom:504.351000px;}
.y86{bottom:508.620000px;}
.y9d{bottom:509.634000px;}
.yb5{bottom:509.796000px;}
.y5d{bottom:510.810000px;}
.y1c2{bottom:514.642500px;}
.y186{bottom:515.089500px;}
.y112{bottom:515.914500px;}
.y1a1{bottom:516.103500px;}
.ydf{bottom:516.844500px;}
.yfb{bottom:517.858500px;}
.y13d{bottom:522.864000px;}
.y15{bottom:522.934500px;}
.y3f{bottom:523.878000px;}
.y15c{bottom:527.148000px;}
.y85{bottom:531.417000px;}
.y9c{bottom:532.431000px;}
.yb4{bottom:532.593000px;}
.y5c{bottom:533.607000px;}
.y1c1{bottom:537.439500px;}
.y185{bottom:537.886500px;}
.y1a0{bottom:538.900500px;}
.yde{bottom:539.643000px;}
.yfa{bottom:540.655500px;}
.y14{bottom:544.887000px;}
.y13c{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y15b{bottom:549.945000px;}
.y84{bottom:554.214000px;}
.y9b{bottom:555.228000px;}
.yb3{bottom:555.390000px;}
.y5b{bottom:556.404000px;}
.y1c0{bottom:560.238000px;}
.y184{bottom:560.683500px;}
.y19f{bottom:561.697500px;}
.ydd{bottom:562.440000px;}
.yf9{bottom:563.454000px;}
.y13{bottom:566.841000px;}
.y13b{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y15a{bottom:572.742000px;}
.y111{bottom:574.576500px;}
.y83{bottom:577.011000px;}
.y9a{bottom:578.025000px;}
.yb2{bottom:578.187000px;}
.y5a{bottom:579.201000px;}
.y1bf{bottom:583.035000px;}
.y183{bottom:583.480500px;}
.y19e{bottom:584.494500px;}
.ydc{bottom:585.237000px;}
.yf8{bottom:586.251000px;}
.y12{bottom:588.793500px;}
.y13a{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y159{bottom:595.539000px;}
.y110{bottom:597.373500px;}
.y82{bottom:599.808000px;}
.y99{bottom:600.822000px;}
.yb1{bottom:600.984000px;}
.y59{bottom:601.998000px;}
.y1be{bottom:605.832000px;}
.y182{bottom:606.277500px;}
.y19d{bottom:607.291500px;}
.ydb{bottom:608.034000px;}
.yf7{bottom:609.048000px;}
.y11{bottom:610.746000px;}
.y139{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y158{bottom:618.336000px;}
.y10f{bottom:620.172000px;}
.yb0{bottom:623.781000px;}
.yc6{bottom:624.795000px;}
.y1bd{bottom:628.629000px;}
.y181{bottom:629.074500px;}
.y19c{bottom:630.088500px;}
.yda{bottom:630.831000px;}
.yf6{bottom:631.845000px;}
.y10{bottom:632.698500px;}
.y138{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.y157{bottom:641.133000px;}
.y81{bottom:641.551500px;}
.y10e{bottom:641.955000px;}
.y58{bottom:642.729000px;}
.y1b9{bottom:651.426000px;}
.y1bc{bottom:651.511500px;}
.y180{bottom:651.871500px;}
.y19b{bottom:652.885500px;}
.yd9{bottom:653.628000px;}
.yf5{bottom:654.642000px;}
.yf{bottom:654.651000px;}
.y1bb{bottom:655.173000px;}
.y1ba{bottom:655.413000px;}
.y137{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y156{bottom:663.930000px;}
.y80{bottom:664.348500px;}
.y57{bottom:665.526000px;}
.y1b8{bottom:674.223000px;}
.y17f{bottom:674.668500px;}
.y19a{bottom:675.682500px;}
.yd8{bottom:676.425000px;}
.ye{bottom:676.603500px;}
.yf4{bottom:677.439000px;}
.y136{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.y7f{bottom:686.133000px;}
.y155{bottom:686.727000px;}
.y56{bottom:688.323000px;}
.y1b7{bottom:697.020000px;}
.y17e{bottom:697.465500px;}
.y199{bottom:698.479500px;}
.yd{bottom:698.557500px;}
.yd7{bottom:699.222000px;}
.yf3{bottom:700.236000px;}
.y135{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y154{bottom:709.525500px;}
.y55{bottom:711.120000px;}
.y1b6{bottom:719.817000px;}
.y17d{bottom:720.262500px;}
.yc{bottom:720.510000px;}
.yd6{bottom:722.019000px;}
.yf2{bottom:723.033000px;}
.y134{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y153{bottom:732.322500px;}
.yb{bottom:742.462500px;}
.y1b5{bottom:742.614000px;}
.y133{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y152{bottom:754.105500px;}
.yd5{bottom:763.762500px;}
.ya{bottom:764.415000px;}
.y132{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y1b4{bottom:775.872000px;}
.y151{bottom:776.902500px;}
.y9{bottom:786.367500px;}
.yd4{bottom:786.559500px;}
.y131{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y8{bottom:808.321500px;}
.yd3{bottom:809.356500px;}
.y130{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y7{bottom:830.274000px;}
.yd2{bottom:832.155000px;}
.y12f{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y6{bottom:852.226500px;}
.yd1{bottom:854.952000px;}
.y12e{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.yd0{bottom:877.749000px;}
.y12d{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.ycf{bottom:900.546000px;}
.y12c{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.yce{bottom:923.343000px;}
.y12b{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.ycd{bottom:946.140000px;}
.y12a{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.ycc{bottom:968.937000px;}
.y129{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.ycb{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y128{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.yca{bottom:1014.531000px;}
.y127{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.yc9{bottom:1037.328000px;}
.y126{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y125{bottom:1069.995000px;}
.yc8{bottom:1070.586000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.304940px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.h3{height:53.463379px;}
.h7{height:53.696504px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:125.274000px;}
.x1a{left:126.510000px;}
.x3{left:127.558500px;}
.x11{left:151.072500px;}
.xb{left:153.070500px;}
.x1c{left:165.528000px;}
.x1d{left:172.212000px;}
.x6{left:178.044000px;}
.x1b{left:181.026000px;}
.x9{left:182.308500px;}
.x19{left:183.963000px;}
.x12{left:190.990500px;}
.x13{left:194.805000px;}
.x31{left:203.755500px;}
.x32{left:209.478000px;}
.x4{left:257.134500px;}
.x1f{left:269.725500px;}
.x1e{left:273.067500px;}
.x8{left:286.566000px;}
.x14{left:297.145500px;}
.x18{left:315.997500px;}
.x21{left:332.748000px;}
.x20{left:336.091500px;}
.x23{left:359.436000px;}
.x22{left:362.779500px;}
.x5{left:383.653500px;}
.xd{left:404.373000px;}
.x7{left:410.130000px;}
.xa{left:432.832500px;}
.x25{left:436.689000px;}
.x24{left:440.032500px;}
.x15{left:447.636000px;}
.xe{left:452.577000px;}
.x26{left:457.128000px;}
.x17{left:461.493000px;}
.xc{left:463.813500px;}
.x27{left:469.632000px;}
.x28{left:477.261000px;}
.x10{left:489.858000px;}
.x2{left:573.774000px;}
.xf{left:578.070000px;}
.x29{left:583.305000px;}
.x2a{left:589.990500px;}
.x2b{left:643.102500px;}
.x2c{left:649.788000px;}
.x1{left:696.322500px;}
.x2e{left:718.647000px;}
.x2d{left:721.990500px;}
.x30{left:743.959500px;}
.x2f{left:745.393500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.283184pt;}
.ls0{letter-spacing:2.656693pt;}
.ls5{letter-spacing:14.420544pt;}
.lsb{letter-spacing:15.092688pt;}
.ls7{letter-spacing:15.276000pt;}
.ls9{letter-spacing:15.337104pt;}
.lsa{letter-spacing:15.520416pt;}
.lsd{letter-spacing:17.292432pt;}
.lsc{letter-spacing:18.636720pt;}
.ls8{letter-spacing:18.758928pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws5f{word-spacing:-15.276000pt;}
.ws110{word-spacing:-3.421824pt;}
.ws125{word-spacing:-3.360720pt;}
.ws8d{word-spacing:-3.299616pt;}
.ws116{word-spacing:-3.238512pt;}
.ws47{word-spacing:-3.177408pt;}
.ws8e{word-spacing:-3.116304pt;}
.ws6f{word-spacing:-3.055200pt;}
.ws74{word-spacing:-2.994096pt;}
.ws96{word-spacing:-2.932992pt;}
.ws2f{word-spacing:-2.871888pt;}
.wsf9{word-spacing:-2.810784pt;}
.ws124{word-spacing:-2.749680pt;}
.ws10f{word-spacing:-2.688576pt;}
.ws14{word-spacing:-2.656693pt;}
.ws70{word-spacing:-2.627472pt;}
.ws100{word-spacing:-2.566368pt;}
.ws10a{word-spacing:-2.505264pt;}
.ws9d{word-spacing:-2.444160pt;}
.ws18{word-spacing:-2.383056pt;}
.ws1b{word-spacing:-2.321952pt;}
.wsf7{word-spacing:-2.260848pt;}
.wsc8{word-spacing:-2.199744pt;}
.ws43{word-spacing:-2.138640pt;}
.ws8b{word-spacing:-2.077536pt;}
.wsfc{word-spacing:-2.016432pt;}
.wsa{word-spacing:-1.965953pt;}
.ws10c{word-spacing:-1.955328pt;}
.ws81{word-spacing:-1.894224pt;}
.ws27{word-spacing:-1.833120pt;}
.wsf3{word-spacing:-1.772016pt;}
.ws5c{word-spacing:-1.710912pt;}
.ws48{word-spacing:-1.649808pt;}
.wsd2{word-spacing:-1.588704pt;}
.ws60{word-spacing:-1.527600pt;}
.ws11b{word-spacing:-1.466496pt;}
.wse0{word-spacing:-1.405392pt;}
.wsc6{word-spacing:-1.344288pt;}
.ws86{word-spacing:-1.283184pt;}
.ws84{word-spacing:-1.222080pt;}
.ws7{word-spacing:-1.168945pt;}
.wsd0{word-spacing:-1.160976pt;}
.ws10{word-spacing:-1.115811pt;}
.ws109{word-spacing:-1.099872pt;}
.wscd{word-spacing:-1.038768pt;}
.ws65{word-spacing:-0.977664pt;}
.wsf2{word-spacing:-0.916560pt;}
.wsc3{word-spacing:-0.855456pt;}
.ws38{word-spacing:-0.794352pt;}
.wsf1{word-spacing:-0.733248pt;}
.ws4e{word-spacing:-0.672144pt;}
.wsaa{word-spacing:-0.611040pt;}
.ws80{word-spacing:-0.549936pt;}
.ws87{word-spacing:-0.488832pt;}
.ws85{word-spacing:-0.427728pt;}
.ws44{word-spacing:-0.366624pt;}
.ws1c{word-spacing:-0.305520pt;}
.ws13{word-spacing:-0.265669pt;}
.ws2c{word-spacing:-0.244416pt;}
.ws5{word-spacing:-0.212535pt;}
.ws22{word-spacing:-0.183312pt;}
.ws28{word-spacing:-0.122208pt;}
.ws9{word-spacing:-0.106268pt;}
.ws2e{word-spacing:-0.061104pt;}
.wsd{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053134pt;}
.ws25{word-spacing:0.061104pt;}
.ws15{word-spacing:0.095642pt;}
.ws21{word-spacing:0.122208pt;}
.wsf{word-spacing:0.159402pt;}
.ws4b{word-spacing:0.183312pt;}
.ws2{word-spacing:0.183631pt;}
.ws12{word-spacing:0.212535pt;}
.ws1a{word-spacing:0.244416pt;}
.ws4f{word-spacing:0.305520pt;}
.wsb{word-spacing:0.318803pt;}
.ws71{word-spacing:0.366624pt;}
.wsc{word-spacing:0.425071pt;}
.wsb3{word-spacing:0.427728pt;}
.ws4d{word-spacing:0.488832pt;}
.ws11{word-spacing:0.531339pt;}
.ws6c{word-spacing:0.549936pt;}
.ws68{word-spacing:0.611040pt;}
.wscc{word-spacing:0.672144pt;}
.wsd3{word-spacing:0.733248pt;}
.ws8a{word-spacing:0.794352pt;}
.ws88{word-spacing:0.855456pt;}
.ws46{word-spacing:0.916560pt;}
.ws49{word-spacing:0.977664pt;}
.ws73{word-spacing:1.038768pt;}
.wse{word-spacing:1.062677pt;}
.ws93{word-spacing:1.099872pt;}
.wsdf{word-spacing:1.160976pt;}
.wsff{word-spacing:1.222080pt;}
.ws24{word-spacing:1.283184pt;}
.ws3f{word-spacing:1.344288pt;}
.ws55{word-spacing:1.405392pt;}
.wsbc{word-spacing:1.466496pt;}
.ws58{word-spacing:1.527600pt;}
.ws3b{word-spacing:1.588704pt;}
.ws7f{word-spacing:1.649808pt;}
.ws6d{word-spacing:1.710912pt;}
.wsfe{word-spacing:1.772016pt;}
.wsb0{word-spacing:1.833120pt;}
.wsac{word-spacing:1.894224pt;}
.wsdd{word-spacing:1.955328pt;}
.wseb{word-spacing:2.016432pt;}
.ws64{word-spacing:2.077536pt;}
.ws9f{word-spacing:2.138640pt;}
.wsb5{word-spacing:2.199744pt;}
.wsa7{word-spacing:2.260848pt;}
.ws23{word-spacing:2.321952pt;}
.ws83{word-spacing:2.383056pt;}
.ws29{word-spacing:2.444160pt;}
.wsae{word-spacing:2.505264pt;}
.ws1f{word-spacing:2.566368pt;}
.wsf5{word-spacing:2.627472pt;}
.ws6{word-spacing:2.656693pt;}
.wscb{word-spacing:2.688576pt;}
.wsd1{word-spacing:2.749680pt;}
.wsbd{word-spacing:2.810784pt;}
.ws94{word-spacing:2.871888pt;}
.wsf6{word-spacing:2.932992pt;}
.ws36{word-spacing:2.994096pt;}
.ws5d{word-spacing:3.055200pt;}
.ws8f{word-spacing:3.116304pt;}
.ws72{word-spacing:3.177408pt;}
.ws41{word-spacing:3.238512pt;}
.wse3{word-spacing:3.299616pt;}
.ws1e{word-spacing:3.360720pt;}
.wsec{word-spacing:3.421824pt;}
.ws31{word-spacing:3.482928pt;}
.ws19{word-spacing:3.544032pt;}
.wsc0{word-spacing:3.605136pt;}
.ws33{word-spacing:3.666240pt;}
.ws103{word-spacing:3.727344pt;}
.wsc9{word-spacing:3.788448pt;}
.ws34{word-spacing:3.849552pt;}
.ws1d{word-spacing:3.910656pt;}
.ws53{word-spacing:3.971760pt;}
.ws7e{word-spacing:4.032864pt;}
.ws66{word-spacing:4.093968pt;}
.ws62{word-spacing:4.155072pt;}
.ws111{word-spacing:4.216176pt;}
.ws61{word-spacing:4.277280pt;}
.ws59{word-spacing:4.338384pt;}
.ws5b{word-spacing:4.399488pt;}
.ws67{word-spacing:4.460592pt;}
.wsbe{word-spacing:4.521696pt;}
.wscf{word-spacing:4.582800pt;}
.ws4c{word-spacing:4.643904pt;}
.ws8c{word-spacing:4.705008pt;}
.wsb6{word-spacing:4.766112pt;}
.wsdb{word-spacing:4.827216pt;}
.wsef{word-spacing:4.888320pt;}
.wsb4{word-spacing:4.949424pt;}
.wsbb{word-spacing:5.010528pt;}
.ws51{word-spacing:5.071632pt;}
.ws52{word-spacing:5.132736pt;}
.ws40{word-spacing:5.193840pt;}
.wsca{word-spacing:5.254944pt;}
.wsab{word-spacing:5.316048pt;}
.ws2b{word-spacing:5.377152pt;}
.ws32{word-spacing:5.438256pt;}
.ws121{word-spacing:5.451571pt;}
.ws101{word-spacing:5.499360pt;}
.ws54{word-spacing:5.560464pt;}
.wsa5{word-spacing:5.621568pt;}
.ws4a{word-spacing:5.682672pt;}
.ws45{word-spacing:5.743776pt;}
.ws39{word-spacing:5.804880pt;}
.ws3c{word-spacing:5.865984pt;}
.ws5a{word-spacing:5.927088pt;}
.ws56{word-spacing:5.988192pt;}
.ws115{word-spacing:6.049296pt;}
.ws106{word-spacing:6.110400pt;}
.wsb8{word-spacing:6.171504pt;}
.ws42{word-spacing:6.232608pt;}
.wsba{word-spacing:6.293712pt;}
.ws6e{word-spacing:6.354816pt;}
.ws11c{word-spacing:6.415920pt;}
.wsda{word-spacing:6.477024pt;}
.wsaf{word-spacing:6.538128pt;}
.wsc2{word-spacing:6.599232pt;}
.wsad{word-spacing:6.660336pt;}
.wsc4{word-spacing:6.721440pt;}
.ws57{word-spacing:6.782544pt;}
.ws50{word-spacing:6.843648pt;}
.ws9e{word-spacing:6.904752pt;}
.ws69{word-spacing:6.965856pt;}
.ws104{word-spacing:7.026960pt;}
.wsb2{word-spacing:7.088064pt;}
.ws7c{word-spacing:7.149168pt;}
.ws76{word-spacing:7.210272pt;}
.wse6{word-spacing:7.271376pt;}
.wsbf{word-spacing:7.332480pt;}
.ws63{word-spacing:7.393584pt;}
.ws2d{word-spacing:7.454688pt;}
.wsce{word-spacing:7.515792pt;}
.ws3a{word-spacing:7.576896pt;}
.ws89{word-spacing:7.638000pt;}
.ws26{word-spacing:7.699104pt;}
.ws95{word-spacing:7.760208pt;}
.ws9b{word-spacing:7.821312pt;}
.wsc5{word-spacing:7.882416pt;}
.ws20{word-spacing:7.943520pt;}
.ws90{word-spacing:8.004624pt;}
.ws10d{word-spacing:8.065728pt;}
.ws9c{word-spacing:8.126832pt;}
.wsea{word-spacing:8.187936pt;}
.wse1{word-spacing:8.249040pt;}
.ws35{word-spacing:8.310144pt;}
.ws37{word-spacing:8.371248pt;}
.wsb9{word-spacing:8.432352pt;}
.wsf0{word-spacing:8.493456pt;}
.ws123{word-spacing:8.554560pt;}
.wsc1{word-spacing:8.615664pt;}
.wsb7{word-spacing:8.676768pt;}
.ws92{word-spacing:8.737872pt;}
.ws17{word-spacing:8.798976pt;}
.ws2a{word-spacing:8.860080pt;}
.wsa4{word-spacing:8.921184pt;}
.ws108{word-spacing:8.982288pt;}
.ws7a{word-spacing:9.043392pt;}
.ws113{word-spacing:9.104496pt;}
.ws75{word-spacing:9.165600pt;}
.wse8{word-spacing:9.226704pt;}
.ws128{word-spacing:9.287808pt;}
.ws107{word-spacing:9.348912pt;}
.wsd5{word-spacing:9.410016pt;}
.ws11f{word-spacing:9.471120pt;}
.ws3d{word-spacing:9.532224pt;}
.wsfb{word-spacing:9.593328pt;}
.wsd4{word-spacing:9.654432pt;}
.wsd6{word-spacing:9.715536pt;}
.ws117{word-spacing:9.776640pt;}
.wsd7{word-spacing:9.837744pt;}
.ws79{word-spacing:9.959952pt;}
.ws78{word-spacing:10.021056pt;}
.wsd8{word-spacing:10.143264pt;}
.ws11d{word-spacing:10.204368pt;}
.ws118{word-spacing:10.326576pt;}
.wse7{word-spacing:10.387680pt;}
.ws6a{word-spacing:10.448784pt;}
.wsd9{word-spacing:10.509888pt;}
.wsb1{word-spacing:10.632096pt;}
.wsed{word-spacing:10.754304pt;}
.ws10b{word-spacing:10.815408pt;}
.ws10e{word-spacing:10.876512pt;}
.ws126{word-spacing:10.937616pt;}
.ws3e{word-spacing:10.998720pt;}
.wsdc{word-spacing:11.059824pt;}
.ws112{word-spacing:11.182032pt;}
.ws30{word-spacing:11.243136pt;}
.ws5e{word-spacing:11.304240pt;}
.wsee{word-spacing:11.426448pt;}
.ws12c{word-spacing:11.487552pt;}
.wsde{word-spacing:11.548656pt;}
.ws6b{word-spacing:11.731968pt;}
.wsf8{word-spacing:12.037488pt;}
.ws11e{word-spacing:12.098592pt;}
.wsfa{word-spacing:12.159696pt;}
.ws12d{word-spacing:12.220800pt;}
.wsa9{word-spacing:12.281904pt;}
.wsc7{word-spacing:12.465216pt;}
.wsa3{word-spacing:12.709632pt;}
.ws9a{word-spacing:12.831840pt;}
.wsf4{word-spacing:12.892944pt;}
.wsa2{word-spacing:13.442880pt;}
.wse5{word-spacing:13.626192pt;}
.wsa1{word-spacing:13.687296pt;}
.wse4{word-spacing:13.870608pt;}
.wsa6{word-spacing:14.420544pt;}
.ws120{word-spacing:14.542752pt;}
.ws105{word-spacing:14.787168pt;}
.ws127{word-spacing:14.848272pt;}
.ws0{word-spacing:15.005042pt;}
.wse9{word-spacing:15.459312pt;}
.wsa8{word-spacing:15.703728pt;}
.ws12a{word-spacing:15.764832pt;}
.wsfd{word-spacing:16.436976pt;}
.ws4{word-spacing:16.577766pt;}
.ws7b{word-spacing:16.864704pt;}
.ws114{word-spacing:17.199459pt;}
.ws77{word-spacing:17.536848pt;}
.ws7d{word-spacing:18.453408pt;}
.ws12b{word-spacing:19.492176pt;}
.ws129{word-spacing:23.219520pt;}
.ws11a{word-spacing:24.258288pt;}
.ws122{word-spacing:25.480368pt;}
.ws91{word-spacing:27.557904pt;}
.ws82{word-spacing:32.018496pt;}
.ws102{word-spacing:32.996160pt;}
.ws98{word-spacing:34.218240pt;}
.ws99{word-spacing:34.279344pt;}
.wsa0{word-spacing:44.605920pt;}
.ws16{word-spacing:69.005059pt;}
.ws97{word-spacing:73.630320pt;}
.ws119{word-spacing:836.034896pt;}
.wse2{word-spacing:838.328229pt;}
._33{margin-left:-23.708352pt;}
._32{margin-left:-22.058544pt;}
._35{margin-left:-8.086452pt;}
._1{margin-left:-6.427083pt;}
._3{margin-left:-5.525931pt;}
._4{margin-left:-4.144448pt;}
._b{margin-left:-3.188032pt;}
._7{margin-left:-2.178489pt;}
._2{margin-left:-0.918155pt;}
._0{width:1.232709pt;}
._36{width:2.260848pt;}
._34{width:4.228395pt;}
._8{width:12.235662pt;}
._19{width:13.626192pt;}
._a{width:14.877483pt;}
._9{width:16.365231pt;}
._6{width:17.427915pt;}
._10{width:19.043193pt;}
._e{width:20.113840pt;}
._1b{width:21.030400pt;}
._1a{width:22.486272pt;}
._30{width:23.402832pt;}
._5{width:24.335311pt;}
._12{width:26.091408pt;}
._f{width:27.191280pt;}
._2d{width:28.147689pt;}
._d{width:29.508821pt;}
._13{width:30.429792pt;}
._1c{width:31.742201pt;}
._23{width:32.812848pt;}
._27{width:34.401552pt;}
._1e{width:35.562528pt;}
._26{width:36.457833pt;}
._29{width:37.578960pt;}
._20{width:38.678832pt;}
._17{width:39.608698pt;}
._25{width:41.061916pt;}
._28{width:42.416800pt;}
._2f{width:43.322736pt;}
._15{width:44.300400pt;}
._11{width:46.012907pt;}
._31{width:47.111184pt;}
._16{width:48.027744pt;}
._2b{width:49.523465pt;}
._24{width:50.594112pt;}
._14{width:51.571776pt;}
._c{width:52.602528pt;}
._22{width:55.360224pt;}
._1f{width:57.418099pt;}
._18{width:59.881920pt;}
._1d{width:61.104000pt;}
._21{width:62.326080pt;}
._2e{width:69.074133pt;}
._2a{width:83.651376pt;}
._2c{width:148.177200pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y70{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y7e{bottom:77.645333pt;}
.y150{bottom:79.750667pt;}
.y52{bottom:80.652000pt;}
.y25{bottom:85.801333pt;}
.y98{bottom:87.353333pt;}
.yaf{bottom:88.254667pt;}
.y6f{bottom:89.300000pt;}
.y16d{bottom:91.304000pt;}
.y175{bottom:92.205333pt;}
.y1d4{bottom:92.706667pt;}
.y198{bottom:93.102667pt;}
.y124{bottom:93.837333pt;}
.y1b3{bottom:94.004000pt;}
.yf1{bottom:94.664000pt;}
.y10d{bottom:95.565333pt;}
.y7d{bottom:97.909333pt;}
.y14f{bottom:100.014667pt;}
.y51{bottom:100.916000pt;}
.y24{bottom:106.065333pt;}
.y97{bottom:107.617333pt;}
.yae{bottom:108.518667pt;}
.y6e{bottom:109.564000pt;}
.y16c{bottom:111.569333pt;}
.y174{bottom:112.469333pt;}
.y1d3{bottom:112.970667pt;}
.y197{bottom:113.366667pt;}
.y123{bottom:114.101333pt;}
.y1b2{bottom:114.268000pt;}
.yf0{bottom:114.928000pt;}
.y10c{bottom:115.829333pt;}
.y17c{bottom:117.294667pt;}
.y7c{bottom:118.174667pt;}
.y14e{bottom:120.278667pt;}
.y50{bottom:121.180000pt;}
.y23{bottom:126.329333pt;}
.y96{bottom:127.881333pt;}
.yad{bottom:128.782667pt;}
.yc5{bottom:128.926667pt;}
.y6d{bottom:129.828000pt;}
.y16b{bottom:131.833333pt;}
.y173{bottom:132.734667pt;}
.y1d2{bottom:133.234667pt;}
.y196{bottom:133.632000pt;}
.y122{bottom:134.365333pt;}
.y1b1{bottom:134.533333pt;}
.yef{bottom:135.192000pt;}
.y10b{bottom:136.093333pt;}
.y17b{bottom:137.558667pt;}
.y7b{bottom:138.438667pt;}
.y14d{bottom:140.542667pt;}
.y4f{bottom:141.444000pt;}
.y22{bottom:146.594667pt;}
.y95{bottom:148.145333pt;}
.yac{bottom:149.046667pt;}
.yc4{bottom:149.190667pt;}
.y6c{bottom:150.092000pt;}
.y16a{bottom:152.097333pt;}
.y172{bottom:152.998667pt;}
.y1d1{bottom:153.498667pt;}
.y195{bottom:153.896000pt;}
.y121{bottom:154.629333pt;}
.y1b0{bottom:154.797333pt;}
.yee{bottom:155.456000pt;}
.y10a{bottom:156.357333pt;}
.y17a{bottom:157.822667pt;}
.y7a{bottom:158.702667pt;}
.y14c{bottom:160.806667pt;}
.y4e{bottom:161.708000pt;}
.y21{bottom:166.858667pt;}
.y94{bottom:168.409333pt;}
.yab{bottom:169.310667pt;}
.yc3{bottom:169.454667pt;}
.y6b{bottom:170.356000pt;}
.y169{bottom:172.361333pt;}
.y171{bottom:173.262667pt;}
.y1d0{bottom:173.762667pt;}
.y194{bottom:174.160000pt;}
.y120{bottom:174.893333pt;}
.y1af{bottom:175.061333pt;}
.yed{bottom:175.720000pt;}
.y109{bottom:176.621333pt;}
.y179{bottom:178.086667pt;}
.y79{bottom:178.966667pt;}
.y14b{bottom:181.070667pt;}
.y4d{bottom:181.972000pt;}
.y20{bottom:187.122667pt;}
.y93{bottom:188.673333pt;}
.yaa{bottom:189.574667pt;}
.yc2{bottom:189.718667pt;}
.y6a{bottom:190.620000pt;}
.y168{bottom:192.625333pt;}
.y170{bottom:193.526667pt;}
.y1cf{bottom:194.026667pt;}
.y193{bottom:194.424000pt;}
.y11f{bottom:195.157333pt;}
.y1ae{bottom:195.325333pt;}
.yec{bottom:195.984000pt;}
.y108{bottom:196.885333pt;}
.y178{bottom:198.350667pt;}
.y78{bottom:199.230667pt;}
.y14a{bottom:201.334667pt;}
.y4c{bottom:202.236000pt;}
.y1f{bottom:207.386667pt;}
.y92{bottom:208.937333pt;}
.ya9{bottom:209.838667pt;}
.yc1{bottom:209.982667pt;}
.y69{bottom:210.884000pt;}
.y167{bottom:212.889333pt;}
.y16f{bottom:213.790667pt;}
.y1ce{bottom:214.292000pt;}
.y192{bottom:214.688000pt;}
.y11e{bottom:215.421333pt;}
.y1ad{bottom:215.589333pt;}
.yeb{bottom:216.249333pt;}
.y107{bottom:217.150667pt;}
.y177{bottom:218.614667pt;}
.y77{bottom:219.494667pt;}
.y149{bottom:221.598667pt;}
.y4b{bottom:222.500000pt;}
.y91{bottom:229.201333pt;}
.ya8{bottom:230.102667pt;}
.yc0{bottom:230.246667pt;}
.y68{bottom:231.148000pt;}
.y166{bottom:233.153333pt;}
.y16e{bottom:234.054667pt;}
.y1cd{bottom:234.556000pt;}
.y191{bottom:234.952000pt;}
.y11d{bottom:235.685333pt;}
.y1ac{bottom:235.853333pt;}
.yea{bottom:236.513333pt;}
.y106{bottom:237.414667pt;}
.y76{bottom:239.758667pt;}
.yc7{bottom:239.848000pt;}
.y148{bottom:241.864000pt;}
.y4a{bottom:242.764000pt;}
.y176{bottom:248.177333pt;}
.y90{bottom:249.465333pt;}
.ya7{bottom:250.366667pt;}
.ybf{bottom:250.510667pt;}
.y67{bottom:251.412000pt;}
.y1e{bottom:252.889333pt;}
.y1cc{bottom:254.820000pt;}
.y190{bottom:255.216000pt;}
.y11c{bottom:255.949333pt;}
.y1ab{bottom:256.117333pt;}
.ye9{bottom:256.777333pt;}
.y105{bottom:257.678667pt;}
.y75{bottom:260.022667pt;}
.y147{bottom:262.128000pt;}
.y49{bottom:263.029333pt;}
.y8f{bottom:269.729333pt;}
.ya6{bottom:270.630667pt;}
.ybe{bottom:270.774667pt;}
.y66{bottom:271.676000pt;}
.y1cb{bottom:275.084000pt;}
.y18f{bottom:275.480000pt;}
.y11b{bottom:276.213333pt;}
.y1aa{bottom:276.381333pt;}
.ye8{bottom:277.041333pt;}
.y104{bottom:277.942667pt;}
.y74{bottom:280.286667pt;}
.y146{bottom:282.392000pt;}
.y48{bottom:283.293333pt;}
.y165{bottom:286.198667pt;}
.y1d{bottom:289.488000pt;}
.y8e{bottom:289.993333pt;}
.ya5{bottom:290.894667pt;}
.ybd{bottom:291.038667pt;}
.y65{bottom:291.940000pt;}
.y1ca{bottom:295.348000pt;}
.y18e{bottom:295.744000pt;}
.y11a{bottom:296.477333pt;}
.y1a9{bottom:296.645333pt;}
.ye7{bottom:297.305333pt;}
.y103{bottom:298.206667pt;}
.y73{bottom:300.550667pt;}
.y145{bottom:302.656000pt;}
.y47{bottom:303.557333pt;}
.y1c{bottom:305.998667pt;}
.y164{bottom:306.462667pt;}
.y8d{bottom:310.257333pt;}
.ya4{bottom:311.158667pt;}
.ybc{bottom:311.304000pt;}
.y64{bottom:312.204000pt;}
.y1c9{bottom:315.612000pt;}
.y18d{bottom:316.008000pt;}
.y119{bottom:316.741333pt;}
.y1a8{bottom:316.909333pt;}
.ye6{bottom:317.569333pt;}
.y102{bottom:318.470667pt;}
.y72{bottom:320.814667pt;}
.y144{bottom:322.920000pt;}
.y46{bottom:323.821333pt;}
.y1b{bottom:325.396000pt;}
.y163{bottom:326.726667pt;}
.y8c{bottom:330.521333pt;}
.ya3{bottom:331.422667pt;}
.ybb{bottom:331.568000pt;}
.y63{bottom:332.469333pt;}
.y1c8{bottom:335.876000pt;}
.y18c{bottom:336.272000pt;}
.y118{bottom:337.006667pt;}
.y1a7{bottom:337.173333pt;}
.ye5{bottom:337.833333pt;}
.y101{bottom:338.734667pt;}
.y143{bottom:343.184000pt;}
.y45{bottom:344.085333pt;}
.y162{bottom:346.992000pt;}
.y71{bottom:350.377333pt;}
.y8b{bottom:350.786667pt;}
.ya2{bottom:351.688000pt;}
.yba{bottom:351.832000pt;}
.y62{bottom:352.733333pt;}
.y1a{bottom:355.308000pt;}
.y1c7{bottom:356.140000pt;}
.y18b{bottom:356.536000pt;}
.y117{bottom:357.270667pt;}
.y1a6{bottom:357.437333pt;}
.ye4{bottom:358.097333pt;}
.y100{bottom:358.998667pt;}
.y142{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y161{bottom:367.256000pt;}
.y8a{bottom:371.050667pt;}
.ya1{bottom:371.952000pt;}
.yb9{bottom:372.096000pt;}
.y61{bottom:372.997333pt;}
.y1c6{bottom:376.404000pt;}
.y18a{bottom:376.800000pt;}
.y116{bottom:377.534667pt;}
.y1a5{bottom:377.701333pt;}
.ye3{bottom:378.361333pt;}
.yff{bottom:379.262667pt;}
.y141{bottom:383.712000pt;}
.y43{bottom:384.613333pt;}
.y19{bottom:386.776000pt;}
.y160{bottom:387.520000pt;}
.y89{bottom:391.314667pt;}
.ya0{bottom:392.216000pt;}
.yb8{bottom:392.360000pt;}
.y60{bottom:393.261333pt;}
.y1c5{bottom:396.668000pt;}
.y189{bottom:397.065333pt;}
.y115{bottom:397.798667pt;}
.y1a4{bottom:397.965333pt;}
.ye2{bottom:398.625333pt;}
.yfe{bottom:399.526667pt;}
.y140{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.y18{bottom:406.290667pt;}
.y15f{bottom:407.784000pt;}
.y88{bottom:411.578667pt;}
.y9f{bottom:412.480000pt;}
.yb7{bottom:412.624000pt;}
.y5f{bottom:413.525333pt;}
.y1c4{bottom:416.932000pt;}
.y188{bottom:417.329333pt;}
.y114{bottom:418.062667pt;}
.y1a3{bottom:418.230667pt;}
.ye1{bottom:418.889333pt;}
.yfd{bottom:419.790667pt;}
.y13f{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y17{bottom:425.804000pt;}
.y15e{bottom:428.048000pt;}
.y87{bottom:431.842667pt;}
.y9e{bottom:432.744000pt;}
.yb6{bottom:432.888000pt;}
.y5e{bottom:433.789333pt;}
.y1c3{bottom:437.196000pt;}
.y187{bottom:437.593333pt;}
.y113{bottom:438.326667pt;}
.y1a2{bottom:438.494667pt;}
.ye0{bottom:439.153333pt;}
.yfc{bottom:440.054667pt;}
.y13e{bottom:444.504000pt;}
.y16{bottom:445.317333pt;}
.y40{bottom:445.405333pt;}
.y15d{bottom:448.312000pt;}
.y86{bottom:452.106667pt;}
.y9d{bottom:453.008000pt;}
.yb5{bottom:453.152000pt;}
.y5d{bottom:454.053333pt;}
.y1c2{bottom:457.460000pt;}
.y186{bottom:457.857333pt;}
.y112{bottom:458.590667pt;}
.y1a1{bottom:458.758667pt;}
.ydf{bottom:459.417333pt;}
.yfb{bottom:460.318667pt;}
.y13d{bottom:464.768000pt;}
.y15{bottom:464.830667pt;}
.y3f{bottom:465.669333pt;}
.y15c{bottom:468.576000pt;}
.y85{bottom:472.370667pt;}
.y9c{bottom:473.272000pt;}
.yb4{bottom:473.416000pt;}
.y5c{bottom:474.317333pt;}
.y1c1{bottom:477.724000pt;}
.y185{bottom:478.121333pt;}
.y1a0{bottom:479.022667pt;}
.yde{bottom:479.682667pt;}
.yfa{bottom:480.582667pt;}
.y14{bottom:484.344000pt;}
.y13c{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y15b{bottom:488.840000pt;}
.y84{bottom:492.634667pt;}
.y9b{bottom:493.536000pt;}
.yb3{bottom:493.680000pt;}
.y5b{bottom:494.581333pt;}
.y1c0{bottom:497.989333pt;}
.y184{bottom:498.385333pt;}
.y19f{bottom:499.286667pt;}
.ydd{bottom:499.946667pt;}
.yf9{bottom:500.848000pt;}
.y13{bottom:503.858667pt;}
.y13b{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y15a{bottom:509.104000pt;}
.y111{bottom:510.734667pt;}
.y83{bottom:512.898667pt;}
.y9a{bottom:513.800000pt;}
.yb2{bottom:513.944000pt;}
.y5a{bottom:514.845333pt;}
.y1bf{bottom:518.253333pt;}
.y183{bottom:518.649333pt;}
.y19e{bottom:519.550667pt;}
.ydc{bottom:520.210667pt;}
.yf8{bottom:521.112000pt;}
.y12{bottom:523.372000pt;}
.y13a{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y159{bottom:529.368000pt;}
.y110{bottom:530.998667pt;}
.y82{bottom:533.162667pt;}
.y99{bottom:534.064000pt;}
.yb1{bottom:534.208000pt;}
.y59{bottom:535.109333pt;}
.y1be{bottom:538.517333pt;}
.y182{bottom:538.913333pt;}
.y19d{bottom:539.814667pt;}
.ydb{bottom:540.474667pt;}
.yf7{bottom:541.376000pt;}
.y11{bottom:542.885333pt;}
.y139{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y158{bottom:549.632000pt;}
.y10f{bottom:551.264000pt;}
.yb0{bottom:554.472000pt;}
.yc6{bottom:555.373333pt;}
.y1bd{bottom:558.781333pt;}
.y181{bottom:559.177333pt;}
.y19c{bottom:560.078667pt;}
.yda{bottom:560.738667pt;}
.yf6{bottom:561.640000pt;}
.y10{bottom:562.398667pt;}
.y138{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.y157{bottom:569.896000pt;}
.y81{bottom:570.268000pt;}
.y10e{bottom:570.626667pt;}
.y58{bottom:571.314667pt;}
.y1b9{bottom:579.045333pt;}
.y1bc{bottom:579.121333pt;}
.y180{bottom:579.441333pt;}
.y19b{bottom:580.342667pt;}
.yd9{bottom:581.002667pt;}
.yf5{bottom:581.904000pt;}
.yf{bottom:581.912000pt;}
.y1bb{bottom:582.376000pt;}
.y1ba{bottom:582.589333pt;}
.y137{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y156{bottom:590.160000pt;}
.y80{bottom:590.532000pt;}
.y57{bottom:591.578667pt;}
.y1b8{bottom:599.309333pt;}
.y17f{bottom:599.705333pt;}
.y19a{bottom:600.606667pt;}
.yd8{bottom:601.266667pt;}
.ye{bottom:601.425333pt;}
.yf4{bottom:602.168000pt;}
.y136{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.y7f{bottom:609.896000pt;}
.y155{bottom:610.424000pt;}
.y56{bottom:611.842667pt;}
.y1b7{bottom:619.573333pt;}
.y17e{bottom:619.969333pt;}
.y199{bottom:620.870667pt;}
.yd{bottom:620.940000pt;}
.yd7{bottom:621.530667pt;}
.yf3{bottom:622.432000pt;}
.y135{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y154{bottom:630.689333pt;}
.y55{bottom:632.106667pt;}
.y1b6{bottom:639.837333pt;}
.y17d{bottom:640.233333pt;}
.yc{bottom:640.453333pt;}
.yd6{bottom:641.794667pt;}
.yf2{bottom:642.696000pt;}
.y134{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y153{bottom:650.953333pt;}
.yb{bottom:659.966667pt;}
.y1b5{bottom:660.101333pt;}
.y133{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y152{bottom:670.316000pt;}
.yd5{bottom:678.900000pt;}
.ya{bottom:679.480000pt;}
.y132{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y1b4{bottom:689.664000pt;}
.y151{bottom:690.580000pt;}
.y9{bottom:698.993333pt;}
.yd4{bottom:699.164000pt;}
.y131{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y8{bottom:718.508000pt;}
.yd3{bottom:719.428000pt;}
.y130{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y7{bottom:738.021333pt;}
.yd2{bottom:739.693333pt;}
.y12f{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y6{bottom:757.534667pt;}
.yd1{bottom:759.957333pt;}
.y12e{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.yd0{bottom:780.221333pt;}
.y12d{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.ycf{bottom:800.485333pt;}
.y12c{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.yce{bottom:820.749333pt;}
.y12b{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.ycd{bottom:841.013333pt;}
.y12a{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.ycc{bottom:861.277333pt;}
.y129{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.ycb{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y128{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.yca{bottom:901.805333pt;}
.y127{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.yc9{bottom:922.069333pt;}
.y126{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y125{bottom:951.106667pt;}
.yc8{bottom:951.632000pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.715502pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.h3{height:47.523004pt;}
.h7{height:47.730226pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:111.354667pt;}
.x1a{left:112.453333pt;}
.x3{left:113.385333pt;}
.x11{left:134.286667pt;}
.xb{left:136.062667pt;}
.x1c{left:147.136000pt;}
.x1d{left:153.077333pt;}
.x6{left:158.261333pt;}
.x1b{left:160.912000pt;}
.x9{left:162.052000pt;}
.x19{left:163.522667pt;}
.x12{left:169.769333pt;}
.x13{left:173.160000pt;}
.x31{left:181.116000pt;}
.x32{left:186.202667pt;}
.x4{left:228.564000pt;}
.x1f{left:239.756000pt;}
.x1e{left:242.726667pt;}
.x8{left:254.725333pt;}
.x14{left:264.129333pt;}
.x18{left:280.886667pt;}
.x21{left:295.776000pt;}
.x20{left:298.748000pt;}
.x23{left:319.498667pt;}
.x22{left:322.470667pt;}
.x5{left:341.025333pt;}
.xd{left:359.442667pt;}
.x7{left:364.560000pt;}
.xa{left:384.740000pt;}
.x25{left:388.168000pt;}
.x24{left:391.140000pt;}
.x15{left:397.898667pt;}
.xe{left:402.290667pt;}
.x26{left:406.336000pt;}
.x17{left:410.216000pt;}
.xc{left:412.278667pt;}
.x27{left:417.450667pt;}
.x28{left:424.232000pt;}
.x10{left:435.429333pt;}
.x2{left:510.021333pt;}
.xf{left:513.840000pt;}
.x29{left:518.493333pt;}
.x2a{left:524.436000pt;}
.x2b{left:571.646667pt;}
.x2c{left:577.589333pt;}
.x1{left:618.953333pt;}
.x2e{left:638.797333pt;}
.x2d{left:641.769333pt;}
.x30{left:661.297333pt;}
.x2f{left:662.572000pt;}
}




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