
    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_f82e8e0b6b20bac30cd02a20.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_5b5bd3a27b6eaefc007e9736.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_8fd3337121f327f108ce04ee.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_44d169e12b714b9f6d7e50c5.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;}
.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);}
.m22{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);}
.m1d{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);}
.m25{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);}
.m7{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);}
.m14{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);}
.m1b{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);}
.m19{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);}
.mf{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);}
.m9{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);}
.m24{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);}
.ma{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);}
.m21{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);}
.m5{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);}
.m12{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);}
.m23{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);}
.m3{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);}
.m20{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);}
.m28{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);}
.m27{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);}
.m11{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);}
.md{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);}
.m1a{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);}
.m1e{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);}
.m1f{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);}
.me{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);}
.mc{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);}
.m1c{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);}
.m13{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);}
.m6{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);}
.m16{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);}
.m8{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);}
.m2{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);}
.mb{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);}
.m15{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);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988780px;}
.ls7{letter-spacing:16.979274px;}
.ls5{letter-spacing:17.185500px;}
.ls6{letter-spacing:17.254242px;}
.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;}
}
.ws50{word-spacing:-17.185500px;}
.ws91{word-spacing:-3.849552px;}
.wsb8{word-spacing:-3.780810px;}
.ws110{word-spacing:-3.712068px;}
.ws10a{word-spacing:-3.643326px;}
.ws104{word-spacing:-3.574584px;}
.ws7a{word-spacing:-3.505842px;}
.ws10f{word-spacing:-3.368358px;}
.wsb6{word-spacing:-3.299616px;}
.ws53{word-spacing:-3.230874px;}
.wsda{word-spacing:-3.162132px;}
.wsd0{word-spacing:-3.093390px;}
.ws5a{word-spacing:-3.024648px;}
.ws11{word-spacing:-2.988780px;}
.ws30{word-spacing:-2.955906px;}
.ws5f{word-spacing:-2.818422px;}
.wsd1{word-spacing:-2.749680px;}
.ws40{word-spacing:-2.680938px;}
.ws8c{word-spacing:-2.612196px;}
.ws78{word-spacing:-2.543454px;}
.ws7b{word-spacing:-2.474712px;}
.ws4a{word-spacing:-2.405970px;}
.wsa6{word-spacing:-2.337228px;}
.ws51{word-spacing:-2.268486px;}
.wsd9{word-spacing:-2.199744px;}
.ws96{word-spacing:-2.131002px;}
.ws100{word-spacing:-2.062260px;}
.ws105{word-spacing:-1.993518px;}
.wsb{word-spacing:-1.972595px;}
.ws17{word-spacing:-1.924776px;}
.wsdf{word-spacing:-1.856034px;}
.ws68{word-spacing:-1.787292px;}
.wsef{word-spacing:-1.718550px;}
.wsd6{word-spacing:-1.649808px;}
.ws2d{word-spacing:-1.581066px;}
.ws8b{word-spacing:-1.512324px;}
.ws8a{word-spacing:-1.443582px;}
.wsf7{word-spacing:-1.374840px;}
.ws3a{word-spacing:-1.306098px;}
.wsc2{word-spacing:-1.237356px;}
.ws9c{word-spacing:-1.168614px;}
.wsc7{word-spacing:-1.099872px;}
.ws22{word-spacing:-1.031130px;}
.wsa3{word-spacing:-0.962388px;}
.wsd2{word-spacing:-0.893646px;}
.wsb2{word-spacing:-0.824904px;}
.wsc{word-spacing:-0.777083px;}
.wsc3{word-spacing:-0.756162px;}
.ws79{word-spacing:-0.687420px;}
.ws2a{word-spacing:-0.618678px;}
.ws29{word-spacing:-0.549936px;}
.ws7c{word-spacing:-0.481194px;}
.ws2b{word-spacing:-0.412452px;}
.ws1d{word-spacing:-0.343710px;}
.ws7{word-spacing:-0.298878px;}
.ws21{word-spacing:-0.274968px;}
.ws1e{word-spacing:-0.206226px;}
.ws19{word-spacing:-0.137484px;}
.wsf{word-spacing:-0.119551px;}
.ws42{word-spacing:-0.068742px;}
.wsfb{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:0.059776px;}
.ws48{word-spacing:0.068742px;}
.ws12{word-spacing:0.107597px;}
.ws9{word-spacing:0.119551px;}
.ws18{word-spacing:0.137484px;}
.wsf3{word-spacing:0.161395px;}
.ws2c{word-spacing:0.206226px;}
.ws3d{word-spacing:0.274968px;}
.ws8{word-spacing:0.298878px;}
.ws1c{word-spacing:0.343710px;}
.ws28{word-spacing:0.412452px;}
.ws44{word-spacing:0.481194px;}
.ws35{word-spacing:0.549936px;}
.ws98{word-spacing:0.618678px;}
.ws41{word-spacing:0.687420px;}
.ws31{word-spacing:0.756162px;}
.wsc6{word-spacing:0.824904px;}
.ws5e{word-spacing:0.893646px;}
.ws1f{word-spacing:0.962388px;}
.ws86{word-spacing:1.031130px;}
.ws23{word-spacing:1.099872px;}
.wsbb{word-spacing:1.168614px;}
.wsf6{word-spacing:1.237356px;}
.ws6{word-spacing:1.255288px;}
.ws8d{word-spacing:1.306098px;}
.ws49{word-spacing:1.374840px;}
.wsa5{word-spacing:1.443582px;}
.wse7{word-spacing:1.512324px;}
.ws36{word-spacing:1.581066px;}
.ws65{word-spacing:1.649808px;}
.ws1b{word-spacing:1.718550px;}
.ws27{word-spacing:1.787292px;}
.ws6b{word-spacing:1.856034px;}
.ws9f{word-spacing:1.924776px;}
.ws34{word-spacing:1.993518px;}
.wsb3{word-spacing:2.062260px;}
.ws7f{word-spacing:2.131002px;}
.ws3f{word-spacing:2.199744px;}
.ws4f{word-spacing:2.268486px;}
.ws45{word-spacing:2.337228px;}
.ws2e{word-spacing:2.405970px;}
.ws32{word-spacing:2.474712px;}
.ws106{word-spacing:2.543454px;}
.wsb5{word-spacing:2.612196px;}
.ws7d{word-spacing:2.680938px;}
.wsee{word-spacing:2.749680px;}
.ws6e{word-spacing:2.818422px;}
.ws82{word-spacing:2.887164px;}
.ws2f{word-spacing:2.955906px;}
.wsb7{word-spacing:3.024648px;}
.ws55{word-spacing:3.093390px;}
.ws8e{word-spacing:3.162132px;}
.ws9e{word-spacing:3.230874px;}
.ws85{word-spacing:3.299616px;}
.ws77{word-spacing:3.368358px;}
.wsd3{word-spacing:3.437100px;}
.ws59{word-spacing:3.505842px;}
.ws58{word-spacing:3.574584px;}
.ws99{word-spacing:3.643326px;}
.wsa{word-spacing:3.706087px;}
.ws14{word-spacing:3.712068px;}
.ws1a{word-spacing:3.780810px;}
.ws26{word-spacing:3.849552px;}
.wsb9{word-spacing:3.918294px;}
.ws5{word-spacing:3.945190px;}
.ws107{word-spacing:3.987036px;}
.wsc0{word-spacing:4.055778px;}
.ws47{word-spacing:4.124520px;}
.ws88{word-spacing:4.193262px;}
.ws4e{word-spacing:4.262004px;}
.ws4d{word-spacing:4.330746px;}
.ws80{word-spacing:4.399488px;}
.ws4{word-spacing:4.423394px;}
.ws76{word-spacing:4.468230px;}
.wse2{word-spacing:4.536972px;}
.ws25{word-spacing:4.605714px;}
.ws89{word-spacing:4.674456px;}
.ws5b{word-spacing:4.743198px;}
.ws62{word-spacing:4.811940px;}
.wsd8{word-spacing:4.880682px;}
.ws8f{word-spacing:4.949424px;}
.wse4{word-spacing:5.018166px;}
.wsa1{word-spacing:5.086908px;}
.ws81{word-spacing:5.155650px;}
.wsa4{word-spacing:5.224392px;}
.ws3b{word-spacing:5.293134px;}
.ws72{word-spacing:5.361876px;}
.ws74{word-spacing:5.430618px;}
.ws10{word-spacing:5.499355px;}
.wsec{word-spacing:5.499360px;}
.wsa7{word-spacing:5.568102px;}
.wsd4{word-spacing:5.636844px;}
.ws24{word-spacing:5.705586px;}
.ws95{word-spacing:5.774328px;}
.ws6f{word-spacing:5.843070px;}
.ws46{word-spacing:5.911812px;}
.wsba{word-spacing:5.980554px;}
.wsea{word-spacing:6.049296px;}
.ws56{word-spacing:6.118038px;}
.ws33{word-spacing:6.186780px;}
.ws3c{word-spacing:6.255522px;}
.wsc4{word-spacing:6.324264px;}
.wsf1{word-spacing:6.393006px;}
.ws3e{word-spacing:6.461748px;}
.wscf{word-spacing:6.530490px;}
.wsed{word-spacing:6.599232px;}
.wsb4{word-spacing:6.667974px;}
.ws92{word-spacing:6.736716px;}
.ws9a{word-spacing:6.805458px;}
.wsbc{word-spacing:6.874200px;}
.ws66{word-spacing:6.942942px;}
.wsf8{word-spacing:7.011684px;}
.wsa0{word-spacing:7.080426px;}
.ws37{word-spacing:7.149168px;}
.ws5d{word-spacing:7.217910px;}
.wseb{word-spacing:7.286652px;}
.wsc5{word-spacing:7.355394px;}
.ws73{word-spacing:7.424136px;}
.ws61{word-spacing:7.492878px;}
.wsbe{word-spacing:7.561620px;}
.ws7e{word-spacing:7.630362px;}
.ws6c{word-spacing:7.699104px;}
.ws39{word-spacing:7.767846px;}
.wse5{word-spacing:7.836588px;}
.ws4b{word-spacing:7.905330px;}
.wse{word-spacing:7.950155px;}
.ws15{word-spacing:7.974072px;}
.wse9{word-spacing:8.042814px;}
.ws71{word-spacing:8.111556px;}
.wsfd{word-spacing:8.180298px;}
.wse1{word-spacing:8.249040px;}
.wsd5{word-spacing:8.386524px;}
.wscd{word-spacing:8.455266px;}
.ws60{word-spacing:8.524008px;}
.ws52{word-spacing:8.592750px;}
.wsd7{word-spacing:8.661492px;}
.ws93{word-spacing:8.730234px;}
.ws84{word-spacing:8.798976px;}
.ws16{word-spacing:8.867718px;}
.wsf9{word-spacing:8.936460px;}
.ws102{word-spacing:9.005202px;}
.ws9b{word-spacing:9.073944px;}
.wsb0{word-spacing:9.142686px;}
.wsaf{word-spacing:9.211428px;}
.wsca{word-spacing:9.280170px;}
.ws109{word-spacing:9.348912px;}
.wscc{word-spacing:9.417654px;}
.wsfa{word-spacing:9.486396px;}
.wsbd{word-spacing:9.555138px;}
.ws5c{word-spacing:9.623880px;}
.wse6{word-spacing:9.692622px;}
.wsaa{word-spacing:9.761364px;}
.ws69{word-spacing:9.830106px;}
.wsce{word-spacing:9.898848px;}
.ws6d{word-spacing:9.967590px;}
.ws70{word-spacing:10.036332px;}
.ws67{word-spacing:10.173816px;}
.ws38{word-spacing:10.242558px;}
.ws57{word-spacing:10.311300px;}
.wsab{word-spacing:10.448784px;}
.wsa8{word-spacing:10.517526px;}
.wsc1{word-spacing:10.586268px;}
.ws54{word-spacing:10.723752px;}
.wsff{word-spacing:10.792494px;}
.ws97{word-spacing:10.998720px;}
.ws75{word-spacing:11.067462px;}
.wsf5{word-spacing:11.136204px;}
.ws10e{word-spacing:11.204946px;}
.wsf4{word-spacing:11.273688px;}
.wscb{word-spacing:11.411172px;}
.ws64{word-spacing:11.479914px;}
.wsc9{word-spacing:11.548656px;}
.wsfe{word-spacing:11.617398px;}
.ws43{word-spacing:11.686140px;}
.ws10d{word-spacing:11.823624px;}
.ws87{word-spacing:11.892366px;}
.wsf0{word-spacing:12.098592px;}
.wse8{word-spacing:12.236076px;}
.ws20{word-spacing:12.304818px;}
.wsbf{word-spacing:12.373560px;}
.ws63{word-spacing:12.511044px;}
.wsac{word-spacing:12.579786px;}
.ws4c{word-spacing:12.717270px;}
.ws94{word-spacing:12.854754px;}
.wsae{word-spacing:12.992238px;}
.ws6a{word-spacing:13.198464px;}
.wse3{word-spacing:13.335948px;}
.wsad{word-spacing:14.298336px;}
.wsf2{word-spacing:14.779530px;}
.ws101{word-spacing:15.054498px;}
.ws9d{word-spacing:15.191982px;}
.wsa2{word-spacing:15.535692px;}
.wsa9{word-spacing:15.810660px;}
.ws10c{word-spacing:16.704306px;}
.ws0{word-spacing:16.880672px;}
.wsde{word-spacing:16.979274px;}
.ws90{word-spacing:17.460468px;}
.wse0{word-spacing:17.597952px;}
.ws103{word-spacing:18.835308px;}
.wsdc{word-spacing:19.349392px;}
.wsfc{word-spacing:20.210148px;}
.wsb1{word-spacing:23.990958px;}
.ws3{word-spacing:32.278824px;}
.ws10b{word-spacing:41.038974px;}
.ws83{word-spacing:50.181660px;}
.wsdd{word-spacing:54.099954px;}
.wsc8{word-spacing:64.273770px;}
.ws13{word-spacing:77.630692px;}
.ws108{word-spacing:940.539258px;}
.wsdb{word-spacing:943.119258px;}
._2f{margin-left:-8.730234px;}
._3{margin-left:-7.230468px;}
._10{margin-left:-5.361876px;}
._5{margin-left:-3.765863px;}
._1{margin-left:-2.582310px;}
._2{margin-left:-1.549386px;}
._0{width:1.386797px;}
._30{width:3.407214px;}
._f{width:14.568599px;}
._d{width:16.236349px;}
._7{width:17.516651px;}
._8{width:18.649987px;}
._6{width:19.905275px;}
._11{width:20.966310px;}
._b{width:22.112192px;}
._18{width:23.394395px;}
._a{width:24.986201px;}
._13{width:26.121960px;}
._27{width:27.275627px;}
._15{width:28.540488px;}
._4{width:30.062347px;}
._12{width:31.290168px;}
._e{width:32.942678px;}
._1d{width:34.721878px;}
._2d{width:35.829529px;}
._22{width:37.189422px;}
._20{width:39.120199px;}
._16{width:40.764006px;}
._29{width:41.932620px;}
._9{width:43.098208px;}
._2b{width:44.291963px;}
._14{width:45.300978px;}
._2e{width:46.469592px;}
._1c{width:47.470836px;}
._24{width:49.288014px;}
._2c{width:50.456628px;}
._1f{width:51.625242px;}
._26{width:53.137566px;}
._21{width:55.199826px;}
._17{width:56.368440px;}
._c{width:59.775600px;}
._1e{width:61.455348px;}
._1b{width:67.367160px;}
._1a{width:68.742000px;}
._19{width:70.116840px;}
._2a{width:77.708400px;}
._23{width:78.778332px;}
._28{width:81.459270px;}
._25{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;}
.y54{bottom:41.308500px;}
.y101{bottom:41.592000px;}
.y55{bottom:43.522500px;}
.y173{bottom:87.351000px;}
.y1ed{bottom:90.733500px;}
.y25{bottom:93.198000px;}
.y19d{bottom:98.815500px;}
.y53{bottom:99.448500px;}
.y1a2{bottom:99.829500px;}
.y12a{bottom:100.462500px;}
.y99{bottom:103.680000px;}
.ya0{bottom:104.694000px;}
.ye6{bottom:106.497000px;}
.y100{bottom:107.511000px;}
.y20d{bottom:108.040500px;}
.y1c8{bottom:108.145500px;}
.y1e6{bottom:109.159500px;}
.y1ec{bottom:113.530500px;}
.y24{bottom:115.995000px;}
.ybc{bottom:121.467000px;}
.y19c{bottom:121.612500px;}
.y52{bottom:122.245500px;}
.y1a1{bottom:122.626500px;}
.y129{bottom:123.259500px;}
.y14e{bottom:126.136500px;}
.y98{bottom:126.477000px;}
.y23f{bottom:127.092000px;}
.y172{bottom:127.150500px;}
.y9f{bottom:127.491000px;}
.ye5{bottom:129.294000px;}
.yff{bottom:130.308000px;}
.y20c{bottom:130.837500px;}
.y1c7{bottom:130.942500px;}
.y1e5{bottom:131.956500px;}
.y1eb{bottom:136.327500px;}
.y23{bottom:138.792000px;}
.ybb{bottom:144.264000px;}
.y19b{bottom:144.409500px;}
.y51{bottom:145.042500px;}
.y1a0{bottom:145.423500px;}
.y128{bottom:146.056500px;}
.y14d{bottom:148.933500px;}
.y97{bottom:149.274000px;}
.y23e{bottom:149.889000px;}
.y171{bottom:149.947500px;}
.y9e{bottom:150.288000px;}
.ye4{bottom:152.091000px;}
.yfe{bottom:153.105000px;}
.y20b{bottom:153.634500px;}
.y1c6{bottom:153.739500px;}
.y1e4{bottom:154.753500px;}
.y1ea{bottom:159.124500px;}
.y22{bottom:161.589000px;}
.yba{bottom:167.061000px;}
.y19a{bottom:167.206500px;}
.y114{bottom:167.839500px;}
.y19f{bottom:168.220500px;}
.y127{bottom:168.853500px;}
.y14c{bottom:171.730500px;}
.y96{bottom:172.071000px;}
.y23d{bottom:172.686000px;}
.y170{bottom:172.744500px;}
.y9d{bottom:173.085000px;}
.ye3{bottom:174.888000px;}
.yfd{bottom:175.902000px;}
.y20a{bottom:176.431500px;}
.y1c5{bottom:176.536500px;}
.y1e3{bottom:177.550500px;}
.y1e9{bottom:181.921500px;}
.y21{bottom:184.386000px;}
.y4d{bottom:185.772000px;}
.y50{bottom:186.786000px;}
.y225{bottom:188.718000px;}
.yb9{bottom:189.858000px;}
.y199{bottom:190.003500px;}
.y113{bottom:190.636500px;}
.y19e{bottom:191.017500px;}
.y126{bottom:191.650500px;}
.y14b{bottom:194.527500px;}
.y95{bottom:194.868000px;}
.y23c{bottom:195.483000px;}
.y16f{bottom:195.541500px;}
.y9c{bottom:195.882000px;}
.ye2{bottom:197.685000px;}
.yfc{bottom:198.699000px;}
.y209{bottom:199.228500px;}
.y1c4{bottom:199.333500px;}
.y1e2{bottom:200.347500px;}
.y1e8{bottom:204.718500px;}
.y20{bottom:207.183000px;}
.y4c{bottom:208.569000px;}
.y4f{bottom:209.583000px;}
.y224{bottom:211.516500px;}
.yb8{bottom:212.655000px;}
.y112{bottom:213.433500px;}
.y125{bottom:214.447500px;}
.y14a{bottom:217.324500px;}
.y94{bottom:217.665000px;}
.y23b{bottom:218.280000px;}
.y16e{bottom:218.338500px;}
.y9b{bottom:218.679000px;}
.ye1{bottom:220.482000px;}
.yfb{bottom:221.496000px;}
.y208{bottom:222.025500px;}
.y1c3{bottom:222.130500px;}
.y1e1{bottom:223.144500px;}
.y1e7{bottom:227.515500px;}
.y1f{bottom:229.981500px;}
.y4b{bottom:231.366000px;}
.y4e{bottom:232.380000px;}
.y223{bottom:234.313500px;}
.yb7{bottom:235.452000px;}
.y111{bottom:236.230500px;}
.y124{bottom:237.244500px;}
.y149{bottom:240.121500px;}
.y93{bottom:240.462000px;}
.y23a{bottom:241.078500px;}
.y16d{bottom:241.135500px;}
.y9a{bottom:241.476000px;}
.ye0{bottom:243.280500px;}
.yfa{bottom:244.294500px;}
.y207{bottom:244.822500px;}
.y1c2{bottom:244.927500px;}
.y1e0{bottom:245.941500px;}
.y198{bottom:250.312500px;}
.y1e{bottom:252.778500px;}
.y1a3{bottom:256.192500px;}
.y222{bottom:257.110500px;}
.yb6{bottom:258.250500px;}
.y110{bottom:259.027500px;}
.y123{bottom:260.041500px;}
.y148{bottom:262.918500px;}
.y16c{bottom:263.932500px;}
.ydf{bottom:266.077500px;}
.yf9{bottom:267.091500px;}
.y206{bottom:267.621000px;}
.y1c1{bottom:267.726000px;}
.y1df{bottom:268.740000px;}
.y197{bottom:272.097000px;}
.y4a{bottom:273.109500px;}
.y239{bottom:274.335000px;}
.y1d{bottom:275.575500px;}
.y221{bottom:279.907500px;}
.yb5{bottom:281.047500px;}
.y10f{bottom:281.824500px;}
.y122{bottom:282.838500px;}
.y147{bottom:285.715500px;}
.y16b{bottom:286.729500px;}
.yde{bottom:288.874500px;}
.yf8{bottom:289.888500px;}
.y205{bottom:290.418000px;}
.y1c0{bottom:290.523000px;}
.y1de{bottom:291.537000px;}
.y196{bottom:294.894000px;}
.y49{bottom:295.908000px;}
.y1c{bottom:298.372500px;}
.y92{bottom:300.771000px;}
.y220{bottom:302.704500px;}
.yb4{bottom:303.844500px;}
.y10e{bottom:304.621500px;}
.y121{bottom:305.635500px;}
.y146{bottom:308.512500px;}
.y16a{bottom:309.526500px;}
.ydd{bottom:311.671500px;}
.yf7{bottom:312.685500px;}
.y204{bottom:313.215000px;}
.y1bf{bottom:313.320000px;}
.y1dd{bottom:314.334000px;}
.y195{bottom:317.691000px;}
.y48{bottom:318.705000px;}
.y1b{bottom:321.169500px;}
.y73{bottom:322.555500px;}
.y91{bottom:323.569500px;}
.y21f{bottom:325.501500px;}
.yb3{bottom:326.641500px;}
.y10d{bottom:327.418500px;}
.y120{bottom:328.432500px;}
.y1ef{bottom:330.151500px;}
.y145{bottom:331.309500px;}
.y169{bottom:332.323500px;}
.ydc{bottom:334.468500px;}
.yf6{bottom:335.482500px;}
.y203{bottom:336.012000px;}
.y1be{bottom:336.117000px;}
.y1dc{bottom:337.131000px;}
.y194{bottom:340.488000px;}
.y47{bottom:341.502000px;}
.y72{bottom:345.352500px;}
.y90{bottom:346.366500px;}
.y21e{bottom:348.298500px;}
.yb2{bottom:349.438500px;}
.y10c{bottom:350.217000px;}
.y11f{bottom:351.229500px;}
.y1ee{bottom:352.948500px;}
.y144{bottom:354.106500px;}
.y168{bottom:355.120500px;}
.ydb{bottom:357.265500px;}
.yf5{bottom:358.279500px;}
.y202{bottom:358.809000px;}
.y1bd{bottom:358.914000px;}
.y1db{bottom:359.928000px;}
.y193{bottom:363.285000px;}
.y46{bottom:364.299000px;}
.y71{bottom:368.149500px;}
.y8f{bottom:369.163500px;}
.y21d{bottom:371.095500px;}
.yb1{bottom:372.235500px;}
.y1a{bottom:372.360000px;}
.y10b{bottom:373.014000px;}
.y11e{bottom:374.028000px;}
.y143{bottom:376.903500px;}
.y167{bottom:377.917500px;}
.yda{bottom:380.062500px;}
.yf4{bottom:381.076500px;}
.y201{bottom:381.606000px;}
.y1bc{bottom:381.711000px;}
.y1da{bottom:382.725000px;}
.y192{bottom:386.082000px;}
.y45{bottom:387.096000px;}
.y70{bottom:390.946500px;}
.y8e{bottom:391.960500px;}
.y21c{bottom:393.892500px;}
.yb0{bottom:395.032500px;}
.y10a{bottom:395.811000px;}
.y11d{bottom:396.825000px;}
.y142{bottom:399.702000px;}
.y166{bottom:400.716000px;}
.yd9{bottom:402.859500px;}
.yf3{bottom:403.873500px;}
.y200{bottom:404.403000px;}
.y1bb{bottom:404.508000px;}
.y1d9{bottom:405.522000px;}
.y191{bottom:408.879000px;}
.y44{bottom:409.893000px;}
.y19{bottom:413.533500px;}
.y6f{bottom:413.743500px;}
.y8d{bottom:414.757500px;}
.y21b{bottom:416.689500px;}
.yaf{bottom:417.829500px;}
.y109{bottom:418.608000px;}
.y11c{bottom:419.622000px;}
.y141{bottom:422.499000px;}
.y165{bottom:423.513000px;}
.yd8{bottom:425.656500px;}
.yf2{bottom:426.670500px;}
.y1ff{bottom:427.200000px;}
.y1ba{bottom:427.305000px;}
.y1d8{bottom:428.319000px;}
.y190{bottom:431.676000px;}
.y18{bottom:432.109500px;}
.y43{bottom:432.690000px;}
.y6e{bottom:436.540500px;}
.y8c{bottom:437.554500px;}
.y21a{bottom:439.486500px;}
.yae{bottom:440.626500px;}
.y108{bottom:441.405000px;}
.y11b{bottom:442.419000px;}
.y140{bottom:445.296000px;}
.y164{bottom:446.310000px;}
.yd7{bottom:448.453500px;}
.yf1{bottom:449.467500px;}
.y1fe{bottom:449.997000px;}
.y1b9{bottom:450.102000px;}
.y1d7{bottom:451.116000px;}
.y17{bottom:453.931500px;}
.y18f{bottom:454.473000px;}
.y42{bottom:455.487000px;}
.y6d{bottom:459.337500px;}
.y8b{bottom:460.351500px;}
.y219{bottom:462.283500px;}
.yad{bottom:463.423500px;}
.y107{bottom:464.202000px;}
.y11a{bottom:465.216000px;}
.y13f{bottom:468.093000px;}
.y163{bottom:469.107000px;}
.yd6{bottom:471.250500px;}
.yf0{bottom:472.264500px;}
.y1fd{bottom:472.794000px;}
.y1b8{bottom:472.899000px;}
.y1d6{bottom:473.913000px;}
.y18e{bottom:477.270000px;}
.y41{bottom:478.284000px;}
.y6c{bottom:482.134500px;}
.y8a{bottom:483.148500px;}
.y218{bottom:485.080500px;}
.yac{bottom:486.220500px;}
.y106{bottom:486.999000px;}
.y16{bottom:487.581000px;}
.y119{bottom:488.013000px;}
.y13e{bottom:490.890000px;}
.y162{bottom:491.904000px;}
.yd5{bottom:494.047500px;}
.yef{bottom:495.061500px;}
.y1fc{bottom:495.591000px;}
.y1b7{bottom:495.696000px;}
.y1d5{bottom:496.710000px;}
.y18d{bottom:500.067000px;}
.y40{bottom:501.081000px;}
.y6b{bottom:504.931500px;}
.y89{bottom:505.945500px;}
.y217{bottom:507.877500px;}
.yab{bottom:509.017500px;}
.y105{bottom:509.796000px;}
.y118{bottom:510.810000px;}
.y13d{bottom:513.687000px;}
.y161{bottom:514.701000px;}
.yd4{bottom:516.844500px;}
.yee{bottom:517.858500px;}
.y1fb{bottom:518.388000px;}
.y1b6{bottom:518.493000px;}
.y1d4{bottom:519.507000px;}
.y18c{bottom:522.864000px;}
.y15{bottom:522.984000px;}
.y3f{bottom:523.878000px;}
.y6a{bottom:527.728500px;}
.y88{bottom:528.742500px;}
.y216{bottom:530.676000px;}
.yaa{bottom:531.814500px;}
.y104{bottom:532.593000px;}
.y117{bottom:533.607000px;}
.y13c{bottom:536.484000px;}
.y160{bottom:537.498000px;}
.yd3{bottom:539.643000px;}
.yed{bottom:540.655500px;}
.y1fa{bottom:541.185000px;}
.y1b5{bottom:541.290000px;}
.y1d3{bottom:542.304000px;}
.y14{bottom:544.936500px;}
.y18b{bottom:545.661000px;}
.y3e{bottom:546.675000px;}
.y69{bottom:550.525500px;}
.y87{bottom:551.539500px;}
.y215{bottom:553.473000px;}
.ya9{bottom:554.611500px;}
.y103{bottom:555.390000px;}
.y116{bottom:556.404000px;}
.y13b{bottom:559.281000px;}
.y15f{bottom:560.295000px;}
.yd2{bottom:562.440000px;}
.yec{bottom:563.454000px;}
.y1f9{bottom:563.982000px;}
.y1b4{bottom:564.088500px;}
.y1d2{bottom:565.101000px;}
.y13{bottom:566.889000px;}
.y18a{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y68{bottom:573.322500px;}
.y86{bottom:574.336500px;}
.y214{bottom:576.270000px;}
.ya8{bottom:577.410000px;}
.y102{bottom:578.187000px;}
.y115{bottom:579.201000px;}
.y13a{bottom:582.078000px;}
.y15e{bottom:583.092000px;}
.yd1{bottom:585.237000px;}
.yeb{bottom:586.251000px;}
.y1f8{bottom:586.780500px;}
.y1b3{bottom:586.885500px;}
.y1d1{bottom:587.899500px;}
.y12{bottom:588.841500px;}
.y189{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y238{bottom:592.270500px;}
.y67{bottom:596.119500px;}
.y85{bottom:597.133500px;}
.y213{bottom:599.067000px;}
.ya7{bottom:600.207000px;}
.y139{bottom:604.875000px;}
.y15d{bottom:605.889000px;}
.yd0{bottom:608.034000px;}
.yea{bottom:609.048000px;}
.y1f7{bottom:609.577500px;}
.y1b2{bottom:609.682500px;}
.y1d0{bottom:610.696500px;}
.y11{bottom:610.794000px;}
.y188{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y66{bottom:618.918000px;}
.y84{bottom:619.930500px;}
.y212{bottom:621.864000px;}
.ya6{bottom:623.004000px;}
.y138{bottom:627.672000px;}
.y15c{bottom:628.686000px;}
.ycf{bottom:630.831000px;}
.ye9{bottom:631.845000px;}
.y1f6{bottom:632.374500px;}
.y1b1{bottom:632.479500px;}
.y10{bottom:632.746500px;}
.y1cf{bottom:633.493500px;}
.y187{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.y65{bottom:641.715000px;}
.y83{bottom:642.729000px;}
.y211{bottom:644.661000px;}
.ya5{bottom:645.801000px;}
.y137{bottom:650.469000px;}
.y15b{bottom:651.483000px;}
.yce{bottom:653.628000px;}
.ye8{bottom:654.642000px;}
.yf{bottom:654.700500px;}
.y1f5{bottom:655.171500px;}
.y1b0{bottom:655.276500px;}
.y1ce{bottom:656.290500px;}
.y186{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y240{bottom:660.747000px;}
.y64{bottom:664.512000px;}
.y82{bottom:665.526000px;}
.y210{bottom:667.458000px;}
.ya4{bottom:668.598000px;}
.y136{bottom:673.266000px;}
.y15a{bottom:674.280000px;}
.ycd{bottom:676.425000px;}
.ye{bottom:676.653000px;}
.ye7{bottom:677.439000px;}
.y1f4{bottom:677.968500px;}
.y1af{bottom:678.073500px;}
.y1cd{bottom:679.087500px;}
.y185{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.y63{bottom:687.309000px;}
.y81{bottom:688.323000px;}
.y20f{bottom:690.255000px;}
.ya3{bottom:691.395000px;}
.y135{bottom:696.063000px;}
.y159{bottom:697.077000px;}
.yd{bottom:698.605500px;}
.y22e{bottom:699.222000px;}
.y237{bottom:700.236000px;}
.y1f3{bottom:700.765500px;}
.y1ae{bottom:700.870500px;}
.y1cc{bottom:701.884500px;}
.y184{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y62{bottom:710.106000px;}
.y80{bottom:711.120000px;}
.y20e{bottom:712.038000px;}
.ya2{bottom:714.192000px;}
.ycc{bottom:718.168500px;}
.y134{bottom:718.861500px;}
.y158{bottom:719.875500px;}
.yc{bottom:720.558000px;}
.y22d{bottom:722.019000px;}
.y236{bottom:723.033000px;}
.y1f2{bottom:723.562500px;}
.y1ad{bottom:723.667500px;}
.y1cb{bottom:724.681500px;}
.y183{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y61{bottom:732.903000px;}
.y7f{bottom:733.917000px;}
.ya1{bottom:735.975000px;}
.ycb{bottom:740.965500px;}
.y133{bottom:741.658500px;}
.yb{bottom:742.510500px;}
.y157{bottom:742.672500px;}
.y22c{bottom:744.816000px;}
.y1f1{bottom:745.345500px;}
.y235{bottom:745.830000px;}
.y1ac{bottom:746.464500px;}
.y1ca{bottom:747.478500px;}
.y182{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y60{bottom:755.700000px;}
.y7e{bottom:756.714000px;}
.yca{bottom:763.762500px;}
.y132{bottom:764.455500px;}
.ya{bottom:764.464500px;}
.y156{bottom:765.469500px;}
.y22b{bottom:767.613000px;}
.y1f0{bottom:768.142500px;}
.y234{bottom:768.627000px;}
.y1ab{bottom:769.261500px;}
.y1c9{bottom:770.275500px;}
.y181{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y5f{bottom:778.497000px;}
.y7d{bottom:779.511000px;}
.y9{bottom:786.417000px;}
.yc9{bottom:786.559500px;}
.y131{bottom:787.252500px;}
.y155{bottom:788.266500px;}
.y22a{bottom:790.410000px;}
.y233{bottom:791.424000px;}
.y180{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y5e{bottom:801.294000px;}
.y7c{bottom:802.308000px;}
.y8{bottom:808.369500px;}
.yc8{bottom:809.356500px;}
.y130{bottom:810.049500px;}
.y1aa{bottom:811.005000px;}
.y154{bottom:811.063500px;}
.y229{bottom:813.207000px;}
.y232{bottom:814.221000px;}
.y17f{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y5d{bottom:824.091000px;}
.y7b{bottom:825.105000px;}
.y7{bottom:830.322000px;}
.yc7{bottom:832.155000px;}
.y12f{bottom:832.846500px;}
.y1a9{bottom:833.802000px;}
.y153{bottom:833.860500px;}
.y228{bottom:836.004000px;}
.y231{bottom:837.018000px;}
.y17e{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y5c{bottom:846.888000px;}
.y7a{bottom:847.902000px;}
.y6{bottom:852.274500px;}
.yc6{bottom:854.952000px;}
.y12e{bottom:855.643500px;}
.y1a8{bottom:856.600500px;}
.y152{bottom:856.657500px;}
.y227{bottom:858.802500px;}
.y230{bottom:859.815000px;}
.y17d{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y5b{bottom:869.685000px;}
.y79{bottom:870.699000px;}
.yc5{bottom:877.749000px;}
.y12d{bottom:878.440500px;}
.y1a7{bottom:879.397500px;}
.y151{bottom:879.454500px;}
.y226{bottom:881.599500px;}
.y22f{bottom:882.613500px;}
.y17c{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y5a{bottom:892.482000px;}
.y78{bottom:893.496000px;}
.yc4{bottom:900.546000px;}
.y12c{bottom:901.237500px;}
.y1a6{bottom:902.194500px;}
.y150{bottom:902.251500px;}
.y17b{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y59{bottom:915.279000px;}
.y77{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.yc3{bottom:923.343000px;}
.y12b{bottom:924.034500px;}
.y1a5{bottom:924.991500px;}
.y14f{bottom:925.048500px;}
.y17a{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y58{bottom:938.077500px;}
.y76{bottom:939.090000px;}
.yc2{bottom:946.140000px;}
.y179{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y1a4{bottom:958.249500px;}
.y4{bottom:959.347500px;}
.y57{bottom:960.874500px;}
.y75{bottom:961.888500px;}
.yc1{bottom:968.937000px;}
.y178{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y56{bottom:983.671500px;}
.y74{bottom:984.685500px;}
.yc0{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y177{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.ybf{bottom:1014.531000px;}
.y176{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.ybe{bottom:1037.328000px;}
.y175{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y174{bottom:1069.995000px;}
.ybd{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;}
.h9{height:47.157012px;}
.h8{height:47.294496px;}
.h3{height:53.463379px;}
.h7{height:53.696504px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.ha{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:125.274000px;}
.xb{left:127.558500px;}
.x3{left:129.078000px;}
.xf{left:151.072500px;}
.xc{left:153.070500px;}
.x1b{left:164.250000px;}
.x6{left:178.044000px;}
.x1a{left:180.940500px;}
.x9{left:182.308500px;}
.x13{left:190.990500px;}
.x10{left:194.805000px;}
.x19{left:236.103000px;}
.x4{left:274.332000px;}
.x8{left:276.816000px;}
.x18{left:310.987500px;}
.x15{left:315.294000px;}
.x5{left:373.513500px;}
.xe{left:404.373000px;}
.x7{left:410.130000px;}
.xa{left:432.832500px;}
.x17{left:447.636000px;}
.x11{left:452.577000px;}
.xd{left:464.346000px;}
.x14{left:489.858000px;}
.x2{left:573.774000px;}
.x12{left:578.070000px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656693pt;}
.ls7{letter-spacing:15.092688pt;}
.ls5{letter-spacing:15.276000pt;}
.ls6{letter-spacing:15.337104pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws50{word-spacing:-15.276000pt;}
.ws91{word-spacing:-3.421824pt;}
.wsb8{word-spacing:-3.360720pt;}
.ws110{word-spacing:-3.299616pt;}
.ws10a{word-spacing:-3.238512pt;}
.ws104{word-spacing:-3.177408pt;}
.ws7a{word-spacing:-3.116304pt;}
.ws10f{word-spacing:-2.994096pt;}
.wsb6{word-spacing:-2.932992pt;}
.ws53{word-spacing:-2.871888pt;}
.wsda{word-spacing:-2.810784pt;}
.wsd0{word-spacing:-2.749680pt;}
.ws5a{word-spacing:-2.688576pt;}
.ws11{word-spacing:-2.656693pt;}
.ws30{word-spacing:-2.627472pt;}
.ws5f{word-spacing:-2.505264pt;}
.wsd1{word-spacing:-2.444160pt;}
.ws40{word-spacing:-2.383056pt;}
.ws8c{word-spacing:-2.321952pt;}
.ws78{word-spacing:-2.260848pt;}
.ws7b{word-spacing:-2.199744pt;}
.ws4a{word-spacing:-2.138640pt;}
.wsa6{word-spacing:-2.077536pt;}
.ws51{word-spacing:-2.016432pt;}
.wsd9{word-spacing:-1.955328pt;}
.ws96{word-spacing:-1.894224pt;}
.ws100{word-spacing:-1.833120pt;}
.ws105{word-spacing:-1.772016pt;}
.wsb{word-spacing:-1.753418pt;}
.ws17{word-spacing:-1.710912pt;}
.wsdf{word-spacing:-1.649808pt;}
.ws68{word-spacing:-1.588704pt;}
.wsef{word-spacing:-1.527600pt;}
.wsd6{word-spacing:-1.466496pt;}
.ws2d{word-spacing:-1.405392pt;}
.ws8b{word-spacing:-1.344288pt;}
.ws8a{word-spacing:-1.283184pt;}
.wsf7{word-spacing:-1.222080pt;}
.ws3a{word-spacing:-1.160976pt;}
.wsc2{word-spacing:-1.099872pt;}
.ws9c{word-spacing:-1.038768pt;}
.wsc7{word-spacing:-0.977664pt;}
.ws22{word-spacing:-0.916560pt;}
.wsa3{word-spacing:-0.855456pt;}
.wsd2{word-spacing:-0.794352pt;}
.wsb2{word-spacing:-0.733248pt;}
.wsc{word-spacing:-0.690740pt;}
.wsc3{word-spacing:-0.672144pt;}
.ws79{word-spacing:-0.611040pt;}
.ws2a{word-spacing:-0.549936pt;}
.ws29{word-spacing:-0.488832pt;}
.ws7c{word-spacing:-0.427728pt;}
.ws2b{word-spacing:-0.366624pt;}
.ws1d{word-spacing:-0.305520pt;}
.ws7{word-spacing:-0.265669pt;}
.ws21{word-spacing:-0.244416pt;}
.ws1e{word-spacing:-0.183312pt;}
.ws19{word-spacing:-0.122208pt;}
.wsf{word-spacing:-0.106268pt;}
.ws42{word-spacing:-0.061104pt;}
.wsfb{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053134pt;}
.ws48{word-spacing:0.061104pt;}
.ws12{word-spacing:0.095642pt;}
.ws9{word-spacing:0.106268pt;}
.ws18{word-spacing:0.122208pt;}
.wsf3{word-spacing:0.143462pt;}
.ws2c{word-spacing:0.183312pt;}
.ws3d{word-spacing:0.244416pt;}
.ws8{word-spacing:0.265669pt;}
.ws1c{word-spacing:0.305520pt;}
.ws28{word-spacing:0.366624pt;}
.ws44{word-spacing:0.427728pt;}
.ws35{word-spacing:0.488832pt;}
.ws98{word-spacing:0.549936pt;}
.ws41{word-spacing:0.611040pt;}
.ws31{word-spacing:0.672144pt;}
.wsc6{word-spacing:0.733248pt;}
.ws5e{word-spacing:0.794352pt;}
.ws1f{word-spacing:0.855456pt;}
.ws86{word-spacing:0.916560pt;}
.ws23{word-spacing:0.977664pt;}
.wsbb{word-spacing:1.038768pt;}
.wsf6{word-spacing:1.099872pt;}
.ws6{word-spacing:1.115811pt;}
.ws8d{word-spacing:1.160976pt;}
.ws49{word-spacing:1.222080pt;}
.wsa5{word-spacing:1.283184pt;}
.wse7{word-spacing:1.344288pt;}
.ws36{word-spacing:1.405392pt;}
.ws65{word-spacing:1.466496pt;}
.ws1b{word-spacing:1.527600pt;}
.ws27{word-spacing:1.588704pt;}
.ws6b{word-spacing:1.649808pt;}
.ws9f{word-spacing:1.710912pt;}
.ws34{word-spacing:1.772016pt;}
.wsb3{word-spacing:1.833120pt;}
.ws7f{word-spacing:1.894224pt;}
.ws3f{word-spacing:1.955328pt;}
.ws4f{word-spacing:2.016432pt;}
.ws45{word-spacing:2.077536pt;}
.ws2e{word-spacing:2.138640pt;}
.ws32{word-spacing:2.199744pt;}
.ws106{word-spacing:2.260848pt;}
.wsb5{word-spacing:2.321952pt;}
.ws7d{word-spacing:2.383056pt;}
.wsee{word-spacing:2.444160pt;}
.ws6e{word-spacing:2.505264pt;}
.ws82{word-spacing:2.566368pt;}
.ws2f{word-spacing:2.627472pt;}
.wsb7{word-spacing:2.688576pt;}
.ws55{word-spacing:2.749680pt;}
.ws8e{word-spacing:2.810784pt;}
.ws9e{word-spacing:2.871888pt;}
.ws85{word-spacing:2.932992pt;}
.ws77{word-spacing:2.994096pt;}
.wsd3{word-spacing:3.055200pt;}
.ws59{word-spacing:3.116304pt;}
.ws58{word-spacing:3.177408pt;}
.ws99{word-spacing:3.238512pt;}
.wsa{word-spacing:3.294300pt;}
.ws14{word-spacing:3.299616pt;}
.ws1a{word-spacing:3.360720pt;}
.ws26{word-spacing:3.421824pt;}
.wsb9{word-spacing:3.482928pt;}
.ws5{word-spacing:3.506835pt;}
.ws107{word-spacing:3.544032pt;}
.wsc0{word-spacing:3.605136pt;}
.ws47{word-spacing:3.666240pt;}
.ws88{word-spacing:3.727344pt;}
.ws4e{word-spacing:3.788448pt;}
.ws4d{word-spacing:3.849552pt;}
.ws80{word-spacing:3.910656pt;}
.ws4{word-spacing:3.931906pt;}
.ws76{word-spacing:3.971760pt;}
.wse2{word-spacing:4.032864pt;}
.ws25{word-spacing:4.093968pt;}
.ws89{word-spacing:4.155072pt;}
.ws5b{word-spacing:4.216176pt;}
.ws62{word-spacing:4.277280pt;}
.wsd8{word-spacing:4.338384pt;}
.ws8f{word-spacing:4.399488pt;}
.wse4{word-spacing:4.460592pt;}
.wsa1{word-spacing:4.521696pt;}
.ws81{word-spacing:4.582800pt;}
.wsa4{word-spacing:4.643904pt;}
.ws3b{word-spacing:4.705008pt;}
.ws72{word-spacing:4.766112pt;}
.ws74{word-spacing:4.827216pt;}
.ws10{word-spacing:4.888316pt;}
.wsec{word-spacing:4.888320pt;}
.wsa7{word-spacing:4.949424pt;}
.wsd4{word-spacing:5.010528pt;}
.ws24{word-spacing:5.071632pt;}
.ws95{word-spacing:5.132736pt;}
.ws6f{word-spacing:5.193840pt;}
.ws46{word-spacing:5.254944pt;}
.wsba{word-spacing:5.316048pt;}
.wsea{word-spacing:5.377152pt;}
.ws56{word-spacing:5.438256pt;}
.ws33{word-spacing:5.499360pt;}
.ws3c{word-spacing:5.560464pt;}
.wsc4{word-spacing:5.621568pt;}
.wsf1{word-spacing:5.682672pt;}
.ws3e{word-spacing:5.743776pt;}
.wscf{word-spacing:5.804880pt;}
.wsed{word-spacing:5.865984pt;}
.wsb4{word-spacing:5.927088pt;}
.ws92{word-spacing:5.988192pt;}
.ws9a{word-spacing:6.049296pt;}
.wsbc{word-spacing:6.110400pt;}
.ws66{word-spacing:6.171504pt;}
.wsf8{word-spacing:6.232608pt;}
.wsa0{word-spacing:6.293712pt;}
.ws37{word-spacing:6.354816pt;}
.ws5d{word-spacing:6.415920pt;}
.wseb{word-spacing:6.477024pt;}
.wsc5{word-spacing:6.538128pt;}
.ws73{word-spacing:6.599232pt;}
.ws61{word-spacing:6.660336pt;}
.wsbe{word-spacing:6.721440pt;}
.ws7e{word-spacing:6.782544pt;}
.ws6c{word-spacing:6.843648pt;}
.ws39{word-spacing:6.904752pt;}
.wse5{word-spacing:6.965856pt;}
.ws4b{word-spacing:7.026960pt;}
.wse{word-spacing:7.066804pt;}
.ws15{word-spacing:7.088064pt;}
.wse9{word-spacing:7.149168pt;}
.ws71{word-spacing:7.210272pt;}
.wsfd{word-spacing:7.271376pt;}
.wse1{word-spacing:7.332480pt;}
.wsd5{word-spacing:7.454688pt;}
.wscd{word-spacing:7.515792pt;}
.ws60{word-spacing:7.576896pt;}
.ws52{word-spacing:7.638000pt;}
.wsd7{word-spacing:7.699104pt;}
.ws93{word-spacing:7.760208pt;}
.ws84{word-spacing:7.821312pt;}
.ws16{word-spacing:7.882416pt;}
.wsf9{word-spacing:7.943520pt;}
.ws102{word-spacing:8.004624pt;}
.ws9b{word-spacing:8.065728pt;}
.wsb0{word-spacing:8.126832pt;}
.wsaf{word-spacing:8.187936pt;}
.wsca{word-spacing:8.249040pt;}
.ws109{word-spacing:8.310144pt;}
.wscc{word-spacing:8.371248pt;}
.wsfa{word-spacing:8.432352pt;}
.wsbd{word-spacing:8.493456pt;}
.ws5c{word-spacing:8.554560pt;}
.wse6{word-spacing:8.615664pt;}
.wsaa{word-spacing:8.676768pt;}
.ws69{word-spacing:8.737872pt;}
.wsce{word-spacing:8.798976pt;}
.ws6d{word-spacing:8.860080pt;}
.ws70{word-spacing:8.921184pt;}
.ws67{word-spacing:9.043392pt;}
.ws38{word-spacing:9.104496pt;}
.ws57{word-spacing:9.165600pt;}
.wsab{word-spacing:9.287808pt;}
.wsa8{word-spacing:9.348912pt;}
.wsc1{word-spacing:9.410016pt;}
.ws54{word-spacing:9.532224pt;}
.wsff{word-spacing:9.593328pt;}
.ws97{word-spacing:9.776640pt;}
.ws75{word-spacing:9.837744pt;}
.wsf5{word-spacing:9.898848pt;}
.ws10e{word-spacing:9.959952pt;}
.wsf4{word-spacing:10.021056pt;}
.wscb{word-spacing:10.143264pt;}
.ws64{word-spacing:10.204368pt;}
.wsc9{word-spacing:10.265472pt;}
.wsfe{word-spacing:10.326576pt;}
.ws43{word-spacing:10.387680pt;}
.ws10d{word-spacing:10.509888pt;}
.ws87{word-spacing:10.570992pt;}
.wsf0{word-spacing:10.754304pt;}
.wse8{word-spacing:10.876512pt;}
.ws20{word-spacing:10.937616pt;}
.wsbf{word-spacing:10.998720pt;}
.ws63{word-spacing:11.120928pt;}
.wsac{word-spacing:11.182032pt;}
.ws4c{word-spacing:11.304240pt;}
.ws94{word-spacing:11.426448pt;}
.wsae{word-spacing:11.548656pt;}
.ws6a{word-spacing:11.731968pt;}
.wse3{word-spacing:11.854176pt;}
.wsad{word-spacing:12.709632pt;}
.wsf2{word-spacing:13.137360pt;}
.ws101{word-spacing:13.381776pt;}
.ws9d{word-spacing:13.503984pt;}
.wsa2{word-spacing:13.809504pt;}
.wsa9{word-spacing:14.053920pt;}
.ws10c{word-spacing:14.848272pt;}
.ws0{word-spacing:15.005042pt;}
.wsde{word-spacing:15.092688pt;}
.ws90{word-spacing:15.520416pt;}
.wse0{word-spacing:15.642624pt;}
.ws103{word-spacing:16.742496pt;}
.wsdc{word-spacing:17.199459pt;}
.wsfc{word-spacing:17.964576pt;}
.wsb1{word-spacing:21.325296pt;}
.ws3{word-spacing:28.692288pt;}
.ws10b{word-spacing:36.479088pt;}
.ws83{word-spacing:44.605920pt;}
.wsdd{word-spacing:48.088848pt;}
.wsc8{word-spacing:57.132240pt;}
.ws13{word-spacing:69.005059pt;}
.ws108{word-spacing:836.034896pt;}
.wsdb{word-spacing:838.328229pt;}
._2f{margin-left:-7.760208pt;}
._3{margin-left:-6.427083pt;}
._10{margin-left:-4.766112pt;}
._5{margin-left:-3.347434pt;}
._1{margin-left:-2.295387pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._30{width:3.028635pt;}
._f{width:12.949866pt;}
._d{width:14.432310pt;}
._7{width:15.570356pt;}
._8{width:16.577766pt;}
._6{width:17.693578pt;}
._11{width:18.636720pt;}
._b{width:19.655282pt;}
._18{width:20.795018pt;}
._a{width:22.209956pt;}
._13{width:23.219520pt;}
._27{width:24.245002pt;}
._15{width:25.369323pt;}
._4{width:26.722086pt;}
._12{width:27.813483pt;}
._e{width:29.282381pt;}
._1d{width:30.863891pt;}
._2d{width:31.848470pt;}
._22{width:33.057264pt;}
._20{width:34.773510pt;}
._16{width:36.234672pt;}
._29{width:37.273440pt;}
._9{width:38.309518pt;}
._2b{width:39.370634pt;}
._14{width:40.267536pt;}
._2e{width:41.306304pt;}
._1c{width:42.196299pt;}
._24{width:43.811568pt;}
._2c{width:44.850336pt;}
._1f{width:45.889104pt;}
._26{width:47.233392pt;}
._21{width:49.066512pt;}
._17{width:50.105280pt;}
._c{width:53.133867pt;}
._1e{width:54.626976pt;}
._1b{width:59.881920pt;}
._1a{width:61.104000pt;}
._19{width:62.326080pt;}
._2a{width:69.074133pt;}
._23{width:70.025184pt;}
._28{width:72.408240pt;}
._25{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;}
.y54{bottom:36.718667pt;}
.y101{bottom:36.970667pt;}
.y55{bottom:38.686667pt;}
.y173{bottom:77.645333pt;}
.y1ed{bottom:80.652000pt;}
.y25{bottom:82.842667pt;}
.y19d{bottom:87.836000pt;}
.y53{bottom:88.398667pt;}
.y1a2{bottom:88.737333pt;}
.y12a{bottom:89.300000pt;}
.y99{bottom:92.160000pt;}
.ya0{bottom:93.061333pt;}
.ye6{bottom:94.664000pt;}
.y100{bottom:95.565333pt;}
.y20d{bottom:96.036000pt;}
.y1c8{bottom:96.129333pt;}
.y1e6{bottom:97.030667pt;}
.y1ec{bottom:100.916000pt;}
.y24{bottom:103.106667pt;}
.ybc{bottom:107.970667pt;}
.y19c{bottom:108.100000pt;}
.y52{bottom:108.662667pt;}
.y1a1{bottom:109.001333pt;}
.y129{bottom:109.564000pt;}
.y14e{bottom:112.121333pt;}
.y98{bottom:112.424000pt;}
.y23f{bottom:112.970667pt;}
.y172{bottom:113.022667pt;}
.y9f{bottom:113.325333pt;}
.ye5{bottom:114.928000pt;}
.yff{bottom:115.829333pt;}
.y20c{bottom:116.300000pt;}
.y1c7{bottom:116.393333pt;}
.y1e5{bottom:117.294667pt;}
.y1eb{bottom:121.180000pt;}
.y23{bottom:123.370667pt;}
.ybb{bottom:128.234667pt;}
.y19b{bottom:128.364000pt;}
.y51{bottom:128.926667pt;}
.y1a0{bottom:129.265333pt;}
.y128{bottom:129.828000pt;}
.y14d{bottom:132.385333pt;}
.y97{bottom:132.688000pt;}
.y23e{bottom:133.234667pt;}
.y171{bottom:133.286667pt;}
.y9e{bottom:133.589333pt;}
.ye4{bottom:135.192000pt;}
.yfe{bottom:136.093333pt;}
.y20b{bottom:136.564000pt;}
.y1c6{bottom:136.657333pt;}
.y1e4{bottom:137.558667pt;}
.y1ea{bottom:141.444000pt;}
.y22{bottom:143.634667pt;}
.yba{bottom:148.498667pt;}
.y19a{bottom:148.628000pt;}
.y114{bottom:149.190667pt;}
.y19f{bottom:149.529333pt;}
.y127{bottom:150.092000pt;}
.y14c{bottom:152.649333pt;}
.y96{bottom:152.952000pt;}
.y23d{bottom:153.498667pt;}
.y170{bottom:153.550667pt;}
.y9d{bottom:153.853333pt;}
.ye3{bottom:155.456000pt;}
.yfd{bottom:156.357333pt;}
.y20a{bottom:156.828000pt;}
.y1c5{bottom:156.921333pt;}
.y1e3{bottom:157.822667pt;}
.y1e9{bottom:161.708000pt;}
.y21{bottom:163.898667pt;}
.y4d{bottom:165.130667pt;}
.y50{bottom:166.032000pt;}
.y225{bottom:167.749333pt;}
.yb9{bottom:168.762667pt;}
.y199{bottom:168.892000pt;}
.y113{bottom:169.454667pt;}
.y19e{bottom:169.793333pt;}
.y126{bottom:170.356000pt;}
.y14b{bottom:172.913333pt;}
.y95{bottom:173.216000pt;}
.y23c{bottom:173.762667pt;}
.y16f{bottom:173.814667pt;}
.y9c{bottom:174.117333pt;}
.ye2{bottom:175.720000pt;}
.yfc{bottom:176.621333pt;}
.y209{bottom:177.092000pt;}
.y1c4{bottom:177.185333pt;}
.y1e2{bottom:178.086667pt;}
.y1e8{bottom:181.972000pt;}
.y20{bottom:184.162667pt;}
.y4c{bottom:185.394667pt;}
.y4f{bottom:186.296000pt;}
.y224{bottom:188.014667pt;}
.yb8{bottom:189.026667pt;}
.y112{bottom:189.718667pt;}
.y125{bottom:190.620000pt;}
.y14a{bottom:193.177333pt;}
.y94{bottom:193.480000pt;}
.y23b{bottom:194.026667pt;}
.y16e{bottom:194.078667pt;}
.y9b{bottom:194.381333pt;}
.ye1{bottom:195.984000pt;}
.yfb{bottom:196.885333pt;}
.y208{bottom:197.356000pt;}
.y1c3{bottom:197.449333pt;}
.y1e1{bottom:198.350667pt;}
.y1e7{bottom:202.236000pt;}
.y1f{bottom:204.428000pt;}
.y4b{bottom:205.658667pt;}
.y4e{bottom:206.560000pt;}
.y223{bottom:208.278667pt;}
.yb7{bottom:209.290667pt;}
.y111{bottom:209.982667pt;}
.y124{bottom:210.884000pt;}
.y149{bottom:213.441333pt;}
.y93{bottom:213.744000pt;}
.y23a{bottom:214.292000pt;}
.y16d{bottom:214.342667pt;}
.y9a{bottom:214.645333pt;}
.ye0{bottom:216.249333pt;}
.yfa{bottom:217.150667pt;}
.y207{bottom:217.620000pt;}
.y1c2{bottom:217.713333pt;}
.y1e0{bottom:218.614667pt;}
.y198{bottom:222.500000pt;}
.y1e{bottom:224.692000pt;}
.y1a3{bottom:227.726667pt;}
.y222{bottom:228.542667pt;}
.yb6{bottom:229.556000pt;}
.y110{bottom:230.246667pt;}
.y123{bottom:231.148000pt;}
.y148{bottom:233.705333pt;}
.y16c{bottom:234.606667pt;}
.ydf{bottom:236.513333pt;}
.yf9{bottom:237.414667pt;}
.y206{bottom:237.885333pt;}
.y1c1{bottom:237.978667pt;}
.y1df{bottom:238.880000pt;}
.y197{bottom:241.864000pt;}
.y4a{bottom:242.764000pt;}
.y239{bottom:243.853333pt;}
.y1d{bottom:244.956000pt;}
.y221{bottom:248.806667pt;}
.yb5{bottom:249.820000pt;}
.y10f{bottom:250.510667pt;}
.y122{bottom:251.412000pt;}
.y147{bottom:253.969333pt;}
.y16b{bottom:254.870667pt;}
.yde{bottom:256.777333pt;}
.yf8{bottom:257.678667pt;}
.y205{bottom:258.149333pt;}
.y1c0{bottom:258.242667pt;}
.y1de{bottom:259.144000pt;}
.y196{bottom:262.128000pt;}
.y49{bottom:263.029333pt;}
.y1c{bottom:265.220000pt;}
.y92{bottom:267.352000pt;}
.y220{bottom:269.070667pt;}
.yb4{bottom:270.084000pt;}
.y10e{bottom:270.774667pt;}
.y121{bottom:271.676000pt;}
.y146{bottom:274.233333pt;}
.y16a{bottom:275.134667pt;}
.ydd{bottom:277.041333pt;}
.yf7{bottom:277.942667pt;}
.y204{bottom:278.413333pt;}
.y1bf{bottom:278.506667pt;}
.y1dd{bottom:279.408000pt;}
.y195{bottom:282.392000pt;}
.y48{bottom:283.293333pt;}
.y1b{bottom:285.484000pt;}
.y73{bottom:286.716000pt;}
.y91{bottom:287.617333pt;}
.y21f{bottom:289.334667pt;}
.yb3{bottom:290.348000pt;}
.y10d{bottom:291.038667pt;}
.y120{bottom:291.940000pt;}
.y1ef{bottom:293.468000pt;}
.y145{bottom:294.497333pt;}
.y169{bottom:295.398667pt;}
.ydc{bottom:297.305333pt;}
.yf6{bottom:298.206667pt;}
.y203{bottom:298.677333pt;}
.y1be{bottom:298.770667pt;}
.y1dc{bottom:299.672000pt;}
.y194{bottom:302.656000pt;}
.y47{bottom:303.557333pt;}
.y72{bottom:306.980000pt;}
.y90{bottom:307.881333pt;}
.y21e{bottom:309.598667pt;}
.yb2{bottom:310.612000pt;}
.y10c{bottom:311.304000pt;}
.y11f{bottom:312.204000pt;}
.y1ee{bottom:313.732000pt;}
.y144{bottom:314.761333pt;}
.y168{bottom:315.662667pt;}
.ydb{bottom:317.569333pt;}
.yf5{bottom:318.470667pt;}
.y202{bottom:318.941333pt;}
.y1bd{bottom:319.034667pt;}
.y1db{bottom:319.936000pt;}
.y193{bottom:322.920000pt;}
.y46{bottom:323.821333pt;}
.y71{bottom:327.244000pt;}
.y8f{bottom:328.145333pt;}
.y21d{bottom:329.862667pt;}
.yb1{bottom:330.876000pt;}
.y1a{bottom:330.986667pt;}
.y10b{bottom:331.568000pt;}
.y11e{bottom:332.469333pt;}
.y143{bottom:335.025333pt;}
.y167{bottom:335.926667pt;}
.yda{bottom:337.833333pt;}
.yf4{bottom:338.734667pt;}
.y201{bottom:339.205333pt;}
.y1bc{bottom:339.298667pt;}
.y1da{bottom:340.200000pt;}
.y192{bottom:343.184000pt;}
.y45{bottom:344.085333pt;}
.y70{bottom:347.508000pt;}
.y8e{bottom:348.409333pt;}
.y21c{bottom:350.126667pt;}
.yb0{bottom:351.140000pt;}
.y10a{bottom:351.832000pt;}
.y11d{bottom:352.733333pt;}
.y142{bottom:355.290667pt;}
.y166{bottom:356.192000pt;}
.yd9{bottom:358.097333pt;}
.yf3{bottom:358.998667pt;}
.y200{bottom:359.469333pt;}
.y1bb{bottom:359.562667pt;}
.y1d9{bottom:360.464000pt;}
.y191{bottom:363.448000pt;}
.y44{bottom:364.349333pt;}
.y19{bottom:367.585333pt;}
.y6f{bottom:367.772000pt;}
.y8d{bottom:368.673333pt;}
.y21b{bottom:370.390667pt;}
.yaf{bottom:371.404000pt;}
.y109{bottom:372.096000pt;}
.y11c{bottom:372.997333pt;}
.y141{bottom:375.554667pt;}
.y165{bottom:376.456000pt;}
.yd8{bottom:378.361333pt;}
.yf2{bottom:379.262667pt;}
.y1ff{bottom:379.733333pt;}
.y1ba{bottom:379.826667pt;}
.y1d8{bottom:380.728000pt;}
.y190{bottom:383.712000pt;}
.y18{bottom:384.097333pt;}
.y43{bottom:384.613333pt;}
.y6e{bottom:388.036000pt;}
.y8c{bottom:388.937333pt;}
.y21a{bottom:390.654667pt;}
.yae{bottom:391.668000pt;}
.y108{bottom:392.360000pt;}
.y11b{bottom:393.261333pt;}
.y140{bottom:395.818667pt;}
.y164{bottom:396.720000pt;}
.yd7{bottom:398.625333pt;}
.yf1{bottom:399.526667pt;}
.y1fe{bottom:399.997333pt;}
.y1b9{bottom:400.090667pt;}
.y1d7{bottom:400.992000pt;}
.y17{bottom:403.494667pt;}
.y18f{bottom:403.976000pt;}
.y42{bottom:404.877333pt;}
.y6d{bottom:408.300000pt;}
.y8b{bottom:409.201333pt;}
.y219{bottom:410.918667pt;}
.yad{bottom:411.932000pt;}
.y107{bottom:412.624000pt;}
.y11a{bottom:413.525333pt;}
.y13f{bottom:416.082667pt;}
.y163{bottom:416.984000pt;}
.yd6{bottom:418.889333pt;}
.yf0{bottom:419.790667pt;}
.y1fd{bottom:420.261333pt;}
.y1b8{bottom:420.354667pt;}
.y1d6{bottom:421.256000pt;}
.y18e{bottom:424.240000pt;}
.y41{bottom:425.141333pt;}
.y6c{bottom:428.564000pt;}
.y8a{bottom:429.465333pt;}
.y218{bottom:431.182667pt;}
.yac{bottom:432.196000pt;}
.y106{bottom:432.888000pt;}
.y16{bottom:433.405333pt;}
.y119{bottom:433.789333pt;}
.y13e{bottom:436.346667pt;}
.y162{bottom:437.248000pt;}
.yd5{bottom:439.153333pt;}
.yef{bottom:440.054667pt;}
.y1fc{bottom:440.525333pt;}
.y1b7{bottom:440.618667pt;}
.y1d5{bottom:441.520000pt;}
.y18d{bottom:444.504000pt;}
.y40{bottom:445.405333pt;}
.y6b{bottom:448.828000pt;}
.y89{bottom:449.729333pt;}
.y217{bottom:451.446667pt;}
.yab{bottom:452.460000pt;}
.y105{bottom:453.152000pt;}
.y118{bottom:454.053333pt;}
.y13d{bottom:456.610667pt;}
.y161{bottom:457.512000pt;}
.yd4{bottom:459.417333pt;}
.yee{bottom:460.318667pt;}
.y1fb{bottom:460.789333pt;}
.y1b6{bottom:460.882667pt;}
.y1d4{bottom:461.784000pt;}
.y18c{bottom:464.768000pt;}
.y15{bottom:464.874667pt;}
.y3f{bottom:465.669333pt;}
.y6a{bottom:469.092000pt;}
.y88{bottom:469.993333pt;}
.y216{bottom:471.712000pt;}
.yaa{bottom:472.724000pt;}
.y104{bottom:473.416000pt;}
.y117{bottom:474.317333pt;}
.y13c{bottom:476.874667pt;}
.y160{bottom:477.776000pt;}
.yd3{bottom:479.682667pt;}
.yed{bottom:480.582667pt;}
.y1fa{bottom:481.053333pt;}
.y1b5{bottom:481.146667pt;}
.y1d3{bottom:482.048000pt;}
.y14{bottom:484.388000pt;}
.y18b{bottom:485.032000pt;}
.y3e{bottom:485.933333pt;}
.y69{bottom:489.356000pt;}
.y87{bottom:490.257333pt;}
.y215{bottom:491.976000pt;}
.ya9{bottom:492.988000pt;}
.y103{bottom:493.680000pt;}
.y116{bottom:494.581333pt;}
.y13b{bottom:497.138667pt;}
.y15f{bottom:498.040000pt;}
.yd2{bottom:499.946667pt;}
.yec{bottom:500.848000pt;}
.y1f9{bottom:501.317333pt;}
.y1b4{bottom:501.412000pt;}
.y1d2{bottom:502.312000pt;}
.y13{bottom:503.901333pt;}
.y18a{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y68{bottom:509.620000pt;}
.y86{bottom:510.521333pt;}
.y214{bottom:512.240000pt;}
.ya8{bottom:513.253333pt;}
.y102{bottom:513.944000pt;}
.y115{bottom:514.845333pt;}
.y13a{bottom:517.402667pt;}
.y15e{bottom:518.304000pt;}
.yd1{bottom:520.210667pt;}
.yeb{bottom:521.112000pt;}
.y1f8{bottom:521.582667pt;}
.y1b3{bottom:521.676000pt;}
.y1d1{bottom:522.577333pt;}
.y12{bottom:523.414667pt;}
.y189{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y238{bottom:526.462667pt;}
.y67{bottom:529.884000pt;}
.y85{bottom:530.785333pt;}
.y213{bottom:532.504000pt;}
.ya7{bottom:533.517333pt;}
.y139{bottom:537.666667pt;}
.y15d{bottom:538.568000pt;}
.yd0{bottom:540.474667pt;}
.yea{bottom:541.376000pt;}
.y1f7{bottom:541.846667pt;}
.y1b2{bottom:541.940000pt;}
.y1d0{bottom:542.841333pt;}
.y11{bottom:542.928000pt;}
.y188{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y66{bottom:550.149333pt;}
.y84{bottom:551.049333pt;}
.y212{bottom:552.768000pt;}
.ya6{bottom:553.781333pt;}
.y138{bottom:557.930667pt;}
.y15c{bottom:558.832000pt;}
.ycf{bottom:560.738667pt;}
.ye9{bottom:561.640000pt;}
.y1f6{bottom:562.110667pt;}
.y1b1{bottom:562.204000pt;}
.y10{bottom:562.441333pt;}
.y1cf{bottom:563.105333pt;}
.y187{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.y65{bottom:570.413333pt;}
.y83{bottom:571.314667pt;}
.y211{bottom:573.032000pt;}
.ya5{bottom:574.045333pt;}
.y137{bottom:578.194667pt;}
.y15b{bottom:579.096000pt;}
.yce{bottom:581.002667pt;}
.ye8{bottom:581.904000pt;}
.yf{bottom:581.956000pt;}
.y1f5{bottom:582.374667pt;}
.y1b0{bottom:582.468000pt;}
.y1ce{bottom:583.369333pt;}
.y186{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y240{bottom:587.330667pt;}
.y64{bottom:590.677333pt;}
.y82{bottom:591.578667pt;}
.y210{bottom:593.296000pt;}
.ya4{bottom:594.309333pt;}
.y136{bottom:598.458667pt;}
.y15a{bottom:599.360000pt;}
.ycd{bottom:601.266667pt;}
.ye{bottom:601.469333pt;}
.ye7{bottom:602.168000pt;}
.y1f4{bottom:602.638667pt;}
.y1af{bottom:602.732000pt;}
.y1cd{bottom:603.633333pt;}
.y185{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.y63{bottom:610.941333pt;}
.y81{bottom:611.842667pt;}
.y20f{bottom:613.560000pt;}
.ya3{bottom:614.573333pt;}
.y135{bottom:618.722667pt;}
.y159{bottom:619.624000pt;}
.yd{bottom:620.982667pt;}
.y22e{bottom:621.530667pt;}
.y237{bottom:622.432000pt;}
.y1f3{bottom:622.902667pt;}
.y1ae{bottom:622.996000pt;}
.y1cc{bottom:623.897333pt;}
.y184{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y62{bottom:631.205333pt;}
.y80{bottom:632.106667pt;}
.y20e{bottom:632.922667pt;}
.ya2{bottom:634.837333pt;}
.ycc{bottom:638.372000pt;}
.y134{bottom:638.988000pt;}
.y158{bottom:639.889333pt;}
.yc{bottom:640.496000pt;}
.y22d{bottom:641.794667pt;}
.y236{bottom:642.696000pt;}
.y1f2{bottom:643.166667pt;}
.y1ad{bottom:643.260000pt;}
.y1cb{bottom:644.161333pt;}
.y183{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y61{bottom:651.469333pt;}
.y7f{bottom:652.370667pt;}
.ya1{bottom:654.200000pt;}
.ycb{bottom:658.636000pt;}
.y133{bottom:659.252000pt;}
.yb{bottom:660.009333pt;}
.y157{bottom:660.153333pt;}
.y22c{bottom:662.058667pt;}
.y1f1{bottom:662.529333pt;}
.y235{bottom:662.960000pt;}
.y1ac{bottom:663.524000pt;}
.y1ca{bottom:664.425333pt;}
.y182{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y60{bottom:671.733333pt;}
.y7e{bottom:672.634667pt;}
.yca{bottom:678.900000pt;}
.y132{bottom:679.516000pt;}
.ya{bottom:679.524000pt;}
.y156{bottom:680.417333pt;}
.y22b{bottom:682.322667pt;}
.y1f0{bottom:682.793333pt;}
.y234{bottom:683.224000pt;}
.y1ab{bottom:683.788000pt;}
.y1c9{bottom:684.689333pt;}
.y181{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y5f{bottom:691.997333pt;}
.y7d{bottom:692.898667pt;}
.y9{bottom:699.037333pt;}
.yc9{bottom:699.164000pt;}
.y131{bottom:699.780000pt;}
.y155{bottom:700.681333pt;}
.y22a{bottom:702.586667pt;}
.y233{bottom:703.488000pt;}
.y180{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y5e{bottom:712.261333pt;}
.y7c{bottom:713.162667pt;}
.y8{bottom:718.550667pt;}
.yc8{bottom:719.428000pt;}
.y130{bottom:720.044000pt;}
.y1aa{bottom:720.893333pt;}
.y154{bottom:720.945333pt;}
.y229{bottom:722.850667pt;}
.y232{bottom:723.752000pt;}
.y17f{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y5d{bottom:732.525333pt;}
.y7b{bottom:733.426667pt;}
.y7{bottom:738.064000pt;}
.yc7{bottom:739.693333pt;}
.y12f{bottom:740.308000pt;}
.y1a9{bottom:741.157333pt;}
.y153{bottom:741.209333pt;}
.y228{bottom:743.114667pt;}
.y231{bottom:744.016000pt;}
.y17e{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y5c{bottom:752.789333pt;}
.y7a{bottom:753.690667pt;}
.y6{bottom:757.577333pt;}
.yc6{bottom:759.957333pt;}
.y12e{bottom:760.572000pt;}
.y1a8{bottom:761.422667pt;}
.y152{bottom:761.473333pt;}
.y227{bottom:763.380000pt;}
.y230{bottom:764.280000pt;}
.y17d{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y5b{bottom:773.053333pt;}
.y79{bottom:773.954667pt;}
.yc5{bottom:780.221333pt;}
.y12d{bottom:780.836000pt;}
.y1a7{bottom:781.686667pt;}
.y151{bottom:781.737333pt;}
.y226{bottom:783.644000pt;}
.y22f{bottom:784.545333pt;}
.y17c{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y5a{bottom:793.317333pt;}
.y78{bottom:794.218667pt;}
.yc4{bottom:800.485333pt;}
.y12c{bottom:801.100000pt;}
.y1a6{bottom:801.950667pt;}
.y150{bottom:802.001333pt;}
.y17b{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y59{bottom:813.581333pt;}
.y77{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.yc3{bottom:820.749333pt;}
.y12b{bottom:821.364000pt;}
.y1a5{bottom:822.214667pt;}
.y14f{bottom:822.265333pt;}
.y17a{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y58{bottom:833.846667pt;}
.y76{bottom:834.746667pt;}
.yc2{bottom:841.013333pt;}
.y179{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y1a4{bottom:851.777333pt;}
.y4{bottom:852.753333pt;}
.y57{bottom:854.110667pt;}
.y75{bottom:855.012000pt;}
.yc1{bottom:861.277333pt;}
.y178{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y56{bottom:874.374667pt;}
.y74{bottom:875.276000pt;}
.yc0{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y177{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.ybf{bottom:901.805333pt;}
.y176{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.ybe{bottom:922.069333pt;}
.y175{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y174{bottom:951.106667pt;}
.ybd{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;}
.h9{height:41.917344pt;}
.h8{height:42.039552pt;}
.h3{height:47.523004pt;}
.h7{height:47.730226pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.ha{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:111.354667pt;}
.xb{left:113.385333pt;}
.x3{left:114.736000pt;}
.xf{left:134.286667pt;}
.xc{left:136.062667pt;}
.x1b{left:146.000000pt;}
.x6{left:158.261333pt;}
.x1a{left:160.836000pt;}
.x9{left:162.052000pt;}
.x13{left:169.769333pt;}
.x10{left:173.160000pt;}
.x19{left:209.869333pt;}
.x4{left:243.850667pt;}
.x8{left:246.058667pt;}
.x18{left:276.433333pt;}
.x15{left:280.261333pt;}
.x5{left:332.012000pt;}
.xe{left:359.442667pt;}
.x7{left:364.560000pt;}
.xa{left:384.740000pt;}
.x17{left:397.898667pt;}
.x11{left:402.290667pt;}
.xd{left:412.752000pt;}
.x14{left:435.429333pt;}
.x2{left:510.021333pt;}
.x12{left:513.840000pt;}
.x1{left:618.953333pt;}
}




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