
    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_e22377e2ae52dbe5e1d3e2c3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_9acc0739a111a26ccd2cf810.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_71bf447243e049fb1f9a97a8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_c334eed1d7b99941ff54baa8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b4595cee2ae5aa9802dbce0f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bf22bdce75d53be4a3554a11.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a617cdfaa6e29a31feda6fc6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e7140f2d59fb7d78ac0513b8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.679688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m3{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);}
.v4{vertical-align:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:22.206000px;}
.v3{vertical-align:26.568000px;}
.ls32{letter-spacing:-13.320000px;}
.ls4b{letter-spacing:-13.032000px;}
.ls20{letter-spacing:-7.344000px;}
.ls5d{letter-spacing:-7.200000px;}
.ls51{letter-spacing:-5.760000px;}
.ls45{letter-spacing:-3.168000px;}
.ls6b{letter-spacing:-2.808000px;}
.ls4a{letter-spacing:-2.592000px;}
.ls72{letter-spacing:-2.574000px;}
.ls42{letter-spacing:-2.160000px;}
.ls50{letter-spacing:-1.800000px;}
.ls59{letter-spacing:-1.008000px;}
.ls5a{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.864000px;}
.ls3a{letter-spacing:-0.792000px;}
.ls80{letter-spacing:-0.726000px;}
.ls25{letter-spacing:-0.720000px;}
.ls7f{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls41{letter-spacing:-0.576000px;}
.ls2e{letter-spacing:-0.570000px;}
.ls56{letter-spacing:-0.513000px;}
.ls33{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.396000px;}
.ls3e{letter-spacing:-0.388800px;}
.ls27{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.330000px;}
.ls24{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.285000px;}
.ls71{letter-spacing:-0.264000px;}
.ls16{letter-spacing:-0.228000px;}
.ls11{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.198000px;}
.ls19{letter-spacing:-0.144000px;}
.ls81{letter-spacing:-0.132000px;}
.ls47{letter-spacing:-0.114000px;}
.ls10{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.057000px;}
.ls7{letter-spacing:0.000000px;}
.ls65{letter-spacing:0.036000px;}
.ls5f{letter-spacing:0.051600px;}
.ls2b{letter-spacing:0.057000px;}
.ls73{letter-spacing:0.066000px;}
.lse{letter-spacing:0.072000px;}
.ls7d{letter-spacing:0.132000px;}
.ls17{letter-spacing:0.144000px;}
.ls55{letter-spacing:0.172800px;}
.ls7c{letter-spacing:0.198000px;}
.ls12{letter-spacing:0.216000px;}
.ls76{letter-spacing:0.264000px;}
.ls48{letter-spacing:0.273600px;}
.ls36{letter-spacing:0.285000px;}
.ls5{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.300000px;}
.ls7a{letter-spacing:0.330000px;}
.ls1c{letter-spacing:0.360000px;}
.ls69{letter-spacing:0.388800px;}
.ls70{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.475200px;}
.ls6{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls6e{letter-spacing:0.594000px;}
.ls1e{letter-spacing:0.648000px;}
.ls77{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.720000px;}
.ls78{letter-spacing:0.726000px;}
.ls14{letter-spacing:0.792000px;}
.ls21{letter-spacing:0.864000px;}
.ls2c{letter-spacing:0.914400px;}
.ls2d{letter-spacing:0.936000px;}
.ls5b{letter-spacing:1.008000px;}
.ls1b{letter-spacing:1.080000px;}
.ls67{letter-spacing:1.152000px;}
.ls4c{letter-spacing:1.224000px;}
.ls4e{letter-spacing:1.296000px;}
.ls6a{letter-spacing:1.368000px;}
.ls43{letter-spacing:1.584000px;}
.ls2a{letter-spacing:1.656000px;}
.ls2f{letter-spacing:2.016000px;}
.ls5e{letter-spacing:2.304000px;}
.ls54{letter-spacing:2.419200px;}
.ls30{letter-spacing:2.448000px;}
.ls57{letter-spacing:2.592000px;}
.ls52{letter-spacing:2.664000px;}
.ls22{letter-spacing:2.808000px;}
.ls64{letter-spacing:2.952000px;}
.ls39{letter-spacing:3.240000px;}
.ls61{letter-spacing:3.312000px;}
.ls38{letter-spacing:3.600000px;}
.ls62{letter-spacing:3.744000px;}
.ls6c{letter-spacing:4.026000px;}
.ls60{letter-spacing:4.190400px;}
.ls0{letter-spacing:4.200000px;}
.ls53{letter-spacing:4.248000px;}
.ls31{letter-spacing:4.320000px;}
.ls18{letter-spacing:4.392000px;}
.ls3f{letter-spacing:4.752000px;}
.ls13{letter-spacing:4.896000px;}
.ls29{letter-spacing:5.184000px;}
.ls3b{letter-spacing:5.256000px;}
.ls68{letter-spacing:5.299200px;}
.ls28{letter-spacing:5.544000px;}
.ls66{letter-spacing:5.623200px;}
.ls40{letter-spacing:5.774400px;}
.ls3{letter-spacing:6.000000px;}
.ls34{letter-spacing:6.012000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls3c{letter-spacing:7.898400px;}
.ls23{letter-spacing:8.856000px;}
.lsf{letter-spacing:9.057300px;}
.ls49{letter-spacing:9.072000px;}
.ls35{letter-spacing:9.612000px;}
.ls63{letter-spacing:10.152000px;}
.ls2{letter-spacing:10.200000px;}
.ls5c{letter-spacing:10.512000px;}
.ls6d{letter-spacing:10.626000px;}
.ls7e{letter-spacing:10.692000px;}
.ls6f{letter-spacing:10.956000px;}
.ls7b{letter-spacing:11.154000px;}
.ls58{letter-spacing:11.160000px;}
.ls75{letter-spacing:11.220000px;}
.ls4f{letter-spacing:11.318400px;}
.ls74{letter-spacing:12.190200px;}
.ls79{letter-spacing:19.800000px;}
.ls44{letter-spacing:38.923200px;}
.ls3d{letter-spacing:38.923800px;}
.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;}
}
.ws56{word-spacing:-53.640000px;}
.ws64{word-spacing:-53.352000px;}
.ws29{word-spacing:-53.136000px;}
.ws47{word-spacing:-52.920000px;}
.ws67{word-spacing:-52.848000px;}
.ws63{word-spacing:-52.776000px;}
.ws31{word-spacing:-52.704000px;}
.ws66{word-spacing:-52.632000px;}
.ws22{word-spacing:-52.560000px;}
.ws36{word-spacing:-52.488000px;}
.ws4f{word-spacing:-52.416000px;}
.ws1e{word-spacing:-52.344000px;}
.ws20{word-spacing:-52.272000px;}
.ws34{word-spacing:-52.200000px;}
.ws1d{word-spacing:-52.128000px;}
.ws32{word-spacing:-52.056000px;}
.ws2b{word-spacing:-51.984000px;}
.ws46{word-spacing:-51.912000px;}
.ws4d{word-spacing:-51.840000px;}
.ws1f{word-spacing:-51.696000px;}
.ws60{word-spacing:-51.624000px;}
.ws5e{word-spacing:-41.154000px;}
.ws7c{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws71{word-spacing:-22.860000px;}
.ws5b{word-spacing:-20.520000px;}
.ws21{word-spacing:-20.232000px;}
.ws48{word-spacing:-19.872000px;}
.ws8a{word-spacing:-19.800000px;}
.ws79{word-spacing:-18.612000px;}
.ws24{word-spacing:-18.576000px;}
.ws7a{word-spacing:-18.546000px;}
.ws23{word-spacing:-18.360000px;}
.ws49{word-spacing:-18.216000px;}
.ws55{word-spacing:-18.144000px;}
.ws4b{word-spacing:-18.072000px;}
.ws6f{word-spacing:-18.000000px;}
.ws7b{word-spacing:-17.886000px;}
.ws4e{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws69{word-spacing:-17.712000px;}
.ws3a{word-spacing:-17.640000px;}
.ws40{word-spacing:-17.424000px;}
.ws6b{word-spacing:-17.280000px;}
.ws68{word-spacing:-17.208000px;}
.ws3b{word-spacing:-17.160000px;}
.ws4a{word-spacing:-17.136000px;}
.ws2a{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws3c{word-spacing:-16.302000px;}
.ws72{word-spacing:-16.038000px;}
.ws15{word-spacing:-14.079000px;}
.ws5d{word-spacing:-13.794000px;}
.ws6e{word-spacing:-12.528000px;}
.ws5c{word-spacing:-12.312000px;}
.wsf{word-spacing:-12.139200px;}
.ws44{word-spacing:-11.750400px;}
.ws82{word-spacing:-11.220000px;}
.ws7d{word-spacing:-11.154000px;}
.ws78{word-spacing:-10.956000px;}
.ws80{word-spacing:-10.692000px;}
.ws75{word-spacing:-10.626000px;}
.ws6{word-spacing:-10.200000px;}
.ws8{word-spacing:-7.200000px;}
.ws5{word-spacing:-6.600000px;}
.ws7{word-spacing:-6.000000px;}
.ws4{word-spacing:-4.200000px;}
.ws41{word-spacing:-3.600000px;}
.ws3d{word-spacing:-3.528000px;}
.ws73{word-spacing:-3.234000px;}
.ws6c{word-spacing:-1.296000px;}
.ws57{word-spacing:-1.224000px;}
.ws6d{word-spacing:-1.152000px;}
.ws59{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.008000px;}
.ws38{word-spacing:-0.936000px;}
.ws28{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.792000px;}
.ws87{word-spacing:-0.726000px;}
.ws2d{word-spacing:-0.720000px;}
.ws86{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.594000px;}
.ws10{word-spacing:-0.576000px;}
.wse{word-spacing:-0.504000px;}
.ws11{word-spacing:-0.432000px;}
.ws74{word-spacing:-0.396000px;}
.ws25{word-spacing:-0.360000px;}
.ws88{word-spacing:-0.330000px;}
.wsc{word-spacing:-0.288000px;}
.ws3f{word-spacing:-0.285000px;}
.ws83{word-spacing:-0.264000px;}
.ws16{word-spacing:-0.216000px;}
.ws7e{word-spacing:-0.198000px;}
.ws1b{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.132000px;}
.ws13{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:0.057000px;}
.ws12{word-spacing:0.072000px;}
.ws52{word-spacing:0.114000px;}
.ws89{word-spacing:0.132000px;}
.ws1a{word-spacing:0.144000px;}
.wsb{word-spacing:0.198000px;}
.ws14{word-spacing:0.216000px;}
.ws19{word-spacing:0.228000px;}
.ws81{word-spacing:0.264000px;}
.ws18{word-spacing:0.285000px;}
.ws2c{word-spacing:0.288000px;}
.ws9{word-spacing:0.330000px;}
.ws51{word-spacing:0.342000px;}
.ws30{word-spacing:0.360000px;}
.wsa{word-spacing:0.396000px;}
.wsd{word-spacing:0.432000px;}
.ws39{word-spacing:0.504000px;}
.ws5f{word-spacing:0.513000px;}
.ws33{word-spacing:0.570000px;}
.ws4c{word-spacing:0.576000px;}
.ws43{word-spacing:0.648000px;}
.ws84{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws85{word-spacing:0.726000px;}
.ws42{word-spacing:0.792000px;}
.ws2e{word-spacing:0.864000px;}
.ws62{word-spacing:0.936000px;}
.ws61{word-spacing:1.008000px;}
.ws58{word-spacing:1.800000px;}
.ws76{word-spacing:2.574000px;}
.ws53{word-spacing:2.592000px;}
.ws70{word-spacing:2.808000px;}
.ws50{word-spacing:3.168000px;}
.ws5a{word-spacing:5.760000px;}
.ws37{word-spacing:6.364800px;}
.ws35{word-spacing:6.465600px;}
.ws65{word-spacing:7.200000px;}
.ws26{word-spacing:7.344000px;}
.ws45{word-spacing:9.000000px;}
.ws54{word-spacing:13.032000px;}
.ws3e{word-spacing:13.320000px;}
._15{margin-left:-12.615600px;}
._5{margin-left:-11.189400px;}
._14{margin-left:-9.991800px;}
._3{margin-left:-8.965800px;}
._11{margin-left:-7.865400px;}
._2{margin-left:-6.745200px;}
._f{margin-left:-5.630400px;}
._10{margin-left:-4.284000px;}
._c{margin-left:-2.871000px;}
._7{margin-left:-1.777800px;}
._e{width:1.005600px;}
._8{width:2.052600px;}
._d{width:3.150000px;}
._0{width:4.200000px;}
._6{width:5.779200px;}
._9{width:7.001400px;}
._a{width:8.221800px;}
._b{width:9.571200px;}
._1{width:11.220000px;}
._13{width:12.642600px;}
._16{width:13.857600px;}
._18{width:16.137000px;}
._4{width:17.391000px;}
._17{width:20.222400px;}
._19{width:21.243000px;}
._12{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y6b{bottom:140.305950px;}
.y161{bottom:140.307450px;}
.y46{bottom:140.308950px;}
.y175{bottom:140.310450px;}
.y8c{bottom:140.311950px;}
.ycb{bottom:140.313450px;}
.y21b{bottom:141.361800px;}
.y1a6{bottom:141.610350px;}
.y174{bottom:142.836300px;}
.y1af{bottom:143.472300px;}
.y166{bottom:143.964300px;}
.yad{bottom:144.930300px;}
.y1fa{bottom:145.548300px;}
.y1f{bottom:145.642650px;}
.y12f{bottom:146.010300px;}
.y1d5{bottom:146.115600px;}
.y6a{bottom:156.807450px;}
.y160{bottom:156.808950px;}
.y45{bottom:156.810450px;}
.y10c{bottom:156.811950px;}
.y8b{bottom:156.813450px;}
.y21a{bottom:159.361800px;}
.yca{bottom:162.364950px;}
.y1a5{bottom:163.210350px;}
.y173{bottom:164.580300px;}
.y1f9{bottom:164.902800px;}
.y1ae{bottom:165.378300px;}
.y165{bottom:165.564300px;}
.y1d4{bottom:166.064100px;}
.yac{bottom:166.674300px;}
.y1e{bottom:167.098650px;}
.y12e{bottom:167.916300px;}
.y132{bottom:173.299950px;}
.y69{bottom:173.308950px;}
.y15f{bottom:173.310450px;}
.y44{bottom:173.311950px;}
.yed{bottom:173.313450px;}
.y219{bottom:177.361800px;}
.y8a{bottom:178.864950px;}
.y1f8{bottom:184.257300px;}
.y1a4{bottom:184.810350px;}
.y1d3{bottom:186.012600px;}
.y172{bottom:186.324300px;}
.y164{bottom:187.164300px;}
.y1ad{bottom:187.284300px;}
.yab{bottom:188.418300px;}
.y1d{bottom:188.554650px;}
.y131{bottom:189.801450px;}
.y68{bottom:189.810450px;}
.y15e{bottom:189.811950px;}
.y43{bottom:189.813450px;}
.y12d{bottom:189.822300px;}
.y218{bottom:195.361800px;}
.yec{bottom:195.364950px;}
.y1f7{bottom:203.611800px;}
.yc9{bottom:204.936300px;}
.y1d2{bottom:205.961100px;}
.y130{bottom:206.302950px;}
.y67{bottom:206.311950px;}
.y15d{bottom:206.313450px;}
.y1a3{bottom:206.410350px;}
.y171{bottom:208.068300px;}
.y163{bottom:208.764300px;}
.y1ac{bottom:209.190300px;}
.y1c{bottom:210.010650px;}
.yaa{bottom:210.162300px;}
.y12c{bottom:211.728300px;}
.y42{bottom:211.864950px;}
.y13d{bottom:218.214300px;}
.y89{bottom:218.368350px;}
.y41{bottom:222.804450px;}
.y66{bottom:222.813450px;}
.y1d1{bottom:225.909600px;}
.yc8{bottom:226.842300px;}
.y1a2{bottom:228.010350px;}
.y15c{bottom:228.364950px;}
.y170{bottom:229.812300px;}
.y1ab{bottom:231.096300px;}
.y1b{bottom:231.466650px;}
.ya9{bottom:231.906300px;}
.y12b{bottom:233.634300px;}
.y217{bottom:234.961800px;}
.yeb{bottom:236.514300px;}
.y10b{bottom:237.640350px;}
.y40{bottom:239.305950px;}
.y195{bottom:239.311950px;}
.y13c{bottom:239.814300px;}
.y88{bottom:240.274350px;}
.y1f6{bottom:240.511800px;}
.y65{bottom:244.864950px;}
.y162{bottom:245.364300px;}
.y1d0{bottom:245.858100px;}
.yc7{bottom:248.748300px;}
.y1a1{bottom:249.610350px;}
.y16f{bottom:251.556300px;}
.y1a{bottom:252.922650px;}
.y1aa{bottom:253.002300px;}
.ya8{bottom:253.650300px;}
.y12a{bottom:255.540300px;}
.y3f{bottom:255.807450px;}
.y194{bottom:255.813450px;}
.yea{bottom:258.114300px;}
.y10a{bottom:258.934350px;}
.y13b{bottom:261.414300px;}
.y87{bottom:262.180350px;}
.y1cf{bottom:265.806600px;}
.y15b{bottom:268.152300px;}
.yc6{bottom:270.654300px;}
.y1a0{bottom:271.210350px;}
.y3e{bottom:272.308950px;}
.y216{bottom:272.776800px;}
.y16e{bottom:273.300300px;}
.y19{bottom:274.378650px;}
.y1a9{bottom:274.908300px;}
.ya7{bottom:275.394300px;}
.y1f5{bottom:277.411800px;}
.y129{bottom:277.446300px;}
.y193{bottom:277.864950px;}
.ye9{bottom:279.714300px;}
.y109{bottom:280.228350px;}
.y13a{bottom:283.014300px;}
.y64{bottom:284.034300px;}
.y86{bottom:284.086350px;}
.y1ce{bottom:285.755100px;}
.y3d{bottom:288.810450px;}
.y15a{bottom:289.896300px;}
.yc5{bottom:292.560300px;}
.y215{bottom:292.725300px;}
.y19f{bottom:292.810350px;}
.y16d{bottom:295.044300px;}
.y18{bottom:295.834650px;}
.y1a8{bottom:296.814300px;}
.ya6{bottom:297.138300px;}
.y1f4{bottom:298.561800px;}
.y128{bottom:299.352300px;}
.ye8{bottom:301.314300px;}
.y108{bottom:301.522350px;}
.y139{bottom:304.614300px;}
.y3c{bottom:305.311950px;}
.y63{bottom:305.490300px;}
.y1cd{bottom:305.703600px;}
.y85{bottom:305.992350px;}
.y159{bottom:311.046300px;}
.y214{bottom:312.673800px;}
.y19e{bottom:314.410350px;}
.yc4{bottom:314.466300px;}
.y16c{bottom:316.788300px;}
.y192{bottom:318.000300px;}
.y1a7{bottom:318.720300px;}
.ya5{bottom:318.882300px;}
.y1f3{bottom:319.711800px;}
.y127{bottom:321.258300px;}
.y3b{bottom:321.813450px;}
.y107{bottom:322.816350px;}
.ye7{bottom:322.914300px;}
.y1cc{bottom:325.652100px;}
.y17{bottom:325.788600px;}
.y138{bottom:326.214300px;}
.y62{bottom:326.946300px;}
.y84{bottom:327.898350px;}
.y158{bottom:332.196300px;}
.y213{bottom:332.622300px;}
.y19d{bottom:336.010350px;}
.yc3{bottom:336.372300px;}
.y16b{bottom:338.532300px;}
.y191{bottom:339.600300px;}
.ya4{bottom:340.626300px;}
.y126{bottom:343.164300px;}
.y3a{bottom:343.864950px;}
.y106{bottom:344.110350px;}
.ye6{bottom:344.514300px;}
.y1cb{bottom:345.600600px;}
.y137{bottom:347.682300px;}
.y61{bottom:348.402300px;}
.y83{bottom:349.804350px;}
.y212{bottom:352.570800px;}
.y157{bottom:353.346300px;}
.y19c{bottom:357.610350px;}
.yc2{bottom:358.278300px;}
.y1f2{bottom:358.417800px;}
.y16a{bottom:360.276300px;}
.y190{bottom:360.606300px;}
.ya3{bottom:362.370300px;}
.y125{bottom:365.070300px;}
.y1ca{bottom:365.549100px;}
.ye5{bottom:366.114300px;}
.y136{bottom:369.282300px;}
.y60{bottom:369.858300px;}
.y82{bottom:371.710350px;}
.y211{bottom:372.519300px;}
.y105{bottom:373.914300px;}
.y156{bottom:374.496300px;}
.y1f1{bottom:375.061800px;}
.y19b{bottom:379.210350px;}
.yc1{bottom:380.184300px;}
.y18f{bottom:381.612300px;}
.y169{bottom:382.020300px;}
.y39{bottom:384.096300px;}
.ya2{bottom:384.114300px;}
.y1c9{bottom:385.497600px;}
.y124{bottom:386.976300px;}
.ye4{bottom:387.714300px;}
.y16{bottom:390.129600px;}
.y135{bottom:390.882300px;}
.y5f{bottom:391.314300px;}
.y210{bottom:392.467800px;}
.y155{bottom:395.646300px;}
.y19a{bottom:400.810350px;}
.yc0{bottom:402.090300px;}
.y81{bottom:402.114300px;}
.y18e{bottom:402.618300px;}
.y168{bottom:403.764300px;}
.y38{bottom:405.840300px;}
.ya1{bottom:405.858300px;}
.y1f0{bottom:406.140300px;}
.y123{bottom:408.882300px;}
.ye3{bottom:409.314300px;}
.y15{bottom:409.781100px;}
.y20f{bottom:412.416300px;}
.y134{bottom:412.482300px;}
.y5e{bottom:412.770300px;}
.y1c8{bottom:413.951550px;}
.y154{bottom:416.796300px;}
.y199{bottom:422.410350px;}
.y18d{bottom:423.624300px;}
.ybf{bottom:423.996300px;}
.y1ef{bottom:425.494800px;}
.y37{bottom:427.584300px;}
.ya0{bottom:427.602300px;}
.y14{bottom:429.432600px;}
.y122{bottom:430.788300px;}
.ye2{bottom:430.914300px;}
.y20e{bottom:432.364800px;}
.y133{bottom:434.082300px;}
.y5d{bottom:434.226300px;}
.y104{bottom:437.928300px;}
.y153{bottom:437.946300px;}
.y167{bottom:440.664300px;}
.y198{bottom:444.010350px;}
.y18c{bottom:444.630300px;}
.y1ee{bottom:444.849300px;}
.ybe{bottom:445.902300px;}
.y13{bottom:449.084100px;}
.y36{bottom:449.328300px;}
.y9f{bottom:449.346300px;}
.y20d{bottom:452.313300px;}
.ye1{bottom:452.514300px;}
.y121{bottom:452.694300px;}
.y5c{bottom:455.682300px;}
.y103{bottom:459.222300px;}
.y152{bottom:459.240300px;}
.y1c7{bottom:462.388500px;}
.y1ed{bottom:464.203800px;}
.y197{bottom:465.610350px;}
.y18b{bottom:465.636300px;}
.y80{bottom:467.718300px;}
.ybd{bottom:467.808300px;}
.y12{bottom:468.735600px;}
.y35{bottom:471.072300px;}
.y9e{bottom:471.090300px;}
.y20c{bottom:472.261800px;}
.ye0{bottom:474.114300px;}
.y120{bottom:474.600300px;}
.y5b{bottom:477.138300px;}
.y102{bottom:480.516300px;}
.y151{bottom:480.534300px;}
.y1c6{bottom:482.337000px;}
.y1ec{bottom:483.558300px;}
.y18a{bottom:486.642300px;}
.y196{bottom:487.210350px;}
.y11{bottom:488.387100px;}
.ybc{bottom:489.594300px;}
.y7f{bottom:489.624300px;}
.y34{bottom:492.816300px;}
.y9d{bottom:492.834300px;}
.ydf{bottom:495.714300px;}
.y11f{bottom:496.506300px;}
.y5a{bottom:498.594300px;}
.y101{bottom:501.810300px;}
.y150{bottom:501.828300px;}
.y1c5{bottom:502.285500px;}
.y1eb{bottom:502.912800px;}
.y189{bottom:507.648300px;}
.y10{bottom:508.038600px;}
.y20b{bottom:510.211800px;}
.ybb{bottom:511.500300px;}
.y7e{bottom:511.530300px;}
.y33{bottom:514.560300px;}
.y9c{bottom:514.578300px;}
.yde{bottom:517.314300px;}
.y11e{bottom:518.412300px;}
.y59{bottom:520.050300px;}
.y1c4{bottom:522.234000px;}
.y1ea{bottom:522.267300px;}
.y100{bottom:523.104300px;}
.y14f{bottom:523.122300px;}
.y188{bottom:528.654300px;}
.yba{bottom:533.406300px;}
.y7d{bottom:533.436300px;}
.yf{bottom:536.192550px;}
.y32{bottom:536.304300px;}
.y9b{bottom:536.322300px;}
.ydd{bottom:538.914300px;}
.y11d{bottom:540.318300px;}
.y58{bottom:541.506300px;}
.y1e9{bottom:541.621800px;}
.y1c3{bottom:542.182500px;}
.yff{bottom:544.398300px;}
.y14e{bottom:544.416300px;}
.y20a{bottom:548.011800px;}
.y187{bottom:549.660300px;}
.yb9{bottom:555.312300px;}
.y7c{bottom:555.342300px;}
.y31{bottom:558.048300px;}
.y9a{bottom:558.066300px;}
.ydc{bottom:560.514300px;}
.y1e8{bottom:560.976300px;}
.y1c2{bottom:562.131000px;}
.y11c{bottom:562.224300px;}
.y57{bottom:562.962300px;}
.yfe{bottom:565.692300px;}
.y14d{bottom:565.710300px;}
.y209{bottom:569.611800px;}
.y186{bottom:570.666300px;}
.yb8{bottom:577.218300px;}
.y7b{bottom:577.248300px;}
.ye{bottom:579.085050px;}
.y30{bottom:579.792300px;}
.y99{bottom:579.810300px;}
.y1e7{bottom:580.330800px;}
.y1c1{bottom:582.079500px;}
.ydb{bottom:582.114300px;}
.y11b{bottom:584.130300px;}
.y56{bottom:584.418300px;}
.yfd{bottom:586.986300px;}
.y14c{bottom:587.004300px;}
.y208{bottom:591.211800px;}
.y185{bottom:591.672300px;}
.yd{bottom:598.736550px;}
.yb7{bottom:599.124300px;}
.y7a{bottom:599.154300px;}
.y1e6{bottom:599.685300px;}
.y2f{bottom:601.536300px;}
.y98{bottom:601.554300px;}
.y1c0{bottom:602.028000px;}
.yda{bottom:603.714300px;}
.y55{bottom:605.874300px;}
.y11a{bottom:606.036300px;}
.yfc{bottom:608.280300px;}
.y14b{bottom:608.298300px;}
.y184{bottom:612.678300px;}
.yc{bottom:618.388050px;}
.y1e5{bottom:619.039800px;}
.yb6{bottom:621.030300px;}
.y79{bottom:621.060300px;}
.y1bf{bottom:621.976500px;}
.y2e{bottom:623.280300px;}
.y97{bottom:623.298300px;}
.yd9{bottom:625.314300px;}
.y54{bottom:627.330300px;}
.y119{bottom:627.942300px;}
.yfb{bottom:629.574300px;}
.y14a{bottom:629.592300px;}
.y183{bottom:633.684300px;}
.yb{bottom:638.039550px;}
.y1e4{bottom:638.394300px;}
.y207{bottom:639.211800px;}
.y1be{bottom:641.925000px;}
.yb5{bottom:642.936300px;}
.y78{bottom:642.966300px;}
.y2d{bottom:645.024300px;}
.y96{bottom:645.042300px;}
.yd8{bottom:646.914300px;}
.y53{bottom:648.786300px;}
.y118{bottom:649.848300px;}
.yfa{bottom:650.868300px;}
.y149{bottom:650.886300px;}
.y182{bottom:654.690300px;}
.y206{bottom:657.211800px;}
.ya{bottom:657.691050px;}
.y1e3{bottom:657.748800px;}
.y1bd{bottom:661.873500px;}
.yb4{bottom:664.842300px;}
.y77{bottom:664.872300px;}
.y2c{bottom:666.768300px;}
.y95{bottom:666.786300px;}
.yd7{bottom:668.514300px;}
.y52{bottom:670.242300px;}
.y117{bottom:671.754300px;}
.yf9{bottom:672.162300px;}
.y148{bottom:672.180300px;}
.y205{bottom:675.211800px;}
.y181{bottom:675.696300px;}
.y1e2{bottom:677.103300px;}
.y9{bottom:677.342550px;}
.y1bc{bottom:681.822000px;}
.yb3{bottom:686.748300px;}
.y76{bottom:686.778300px;}
.y2b{bottom:688.512300px;}
.y94{bottom:688.530300px;}
.yd6{bottom:690.114300px;}
.y51{bottom:691.698300px;}
.y204{bottom:693.211800px;}
.yf8{bottom:693.456300px;}
.y147{bottom:693.474300px;}
.y116{bottom:693.660300px;}
.y1e1{bottom:696.457800px;}
.y180{bottom:696.702300px;}
.y1bb{bottom:701.770500px;}
.y8{bottom:705.496500px;}
.yb2{bottom:708.654300px;}
.y75{bottom:708.684300px;}
.y2a{bottom:710.256300px;}
.y93{bottom:710.274300px;}
.yd5{bottom:711.714300px;}
.y50{bottom:713.154300px;}
.yf7{bottom:714.750300px;}
.y146{bottom:714.768300px;}
.y115{bottom:715.566300px;}
.y1e0{bottom:715.812300px;}
.y17f{bottom:717.708300px;}
.y1ba{bottom:721.719000px;}
.yb1{bottom:730.560300px;}
.y74{bottom:730.590300px;}
.y29{bottom:732.000300px;}
.y92{bottom:732.018300px;}
.y203{bottom:732.811800px;}
.yd4{bottom:733.314300px;}
.y4f{bottom:734.610300px;}
.y1df{bottom:735.166800px;}
.yf6{bottom:736.044300px;}
.y145{bottom:736.062300px;}
.y114{bottom:737.472300px;}
.y17e{bottom:738.678300px;}
.y1b9{bottom:741.667500px;}
.yb0{bottom:752.466300px;}
.y73{bottom:752.496300px;}
.y28{bottom:753.744300px;}
.y91{bottom:753.762300px;}
.y1de{bottom:754.521300px;}
.yd3{bottom:754.914300px;}
.y4e{bottom:756.066300px;}
.y7{bottom:756.946500px;}
.yf5{bottom:757.338300px;}
.y144{bottom:757.356300px;}
.y113{bottom:759.378300px;}
.y17d{bottom:759.684300px;}
.y1b8{bottom:761.616000px;}
.y202{bottom:770.311800px;}
.y1dd{bottom:773.875800px;}
.yaf{bottom:774.372300px;}
.y72{bottom:774.402300px;}
.y27{bottom:775.488300px;}
.y90{bottom:775.506300px;}
.yd2{bottom:776.514300px;}
.y4d{bottom:777.522300px;}
.yf4{bottom:778.632300px;}
.y143{bottom:778.650300px;}
.y17c{bottom:780.690300px;}
.y112{bottom:781.284300px;}
.y1b7{bottom:781.564500px;}
.y201{bottom:790.111800px;}
.y1dc{bottom:793.230300px;}
.yae{bottom:796.278300px;}
.y71{bottom:796.308300px;}
.y26{bottom:797.232300px;}
.y8f{bottom:797.250300px;}
.yd1{bottom:798.114300px;}
.y6{bottom:798.346500px;}
.y4c{bottom:798.978300px;}
.yf3{bottom:799.926300px;}
.y142{bottom:799.944300px;}
.y1b6{bottom:801.513000px;}
.y17b{bottom:801.696300px;}
.y111{bottom:803.190300px;}
.y200{bottom:809.911800px;}
.y1db{bottom:812.584800px;}
.y70{bottom:818.184300px;}
.y25{bottom:818.976300px;}
.y8e{bottom:818.994300px;}
.yd0{bottom:819.714300px;}
.y4b{bottom:820.434300px;}
.yf2{bottom:821.220300px;}
.y141{bottom:821.238300px;}
.y1b5{bottom:821.461500px;}
.y17a{bottom:822.702300px;}
.y110{bottom:825.096300px;}
.y5{bottom:828.946500px;}
.y1ff{bottom:829.711800px;}
.y1da{bottom:831.939300px;}
.y6f{bottom:840.090300px;}
.y24{bottom:840.720300px;}
.y8d{bottom:840.738300px;}
.ycf{bottom:841.314300px;}
.y1b4{bottom:841.410000px;}
.y4a{bottom:841.890300px;}
.y140{bottom:842.532300px;}
.yf1{bottom:842.538300px;}
.y179{bottom:843.708300px;}
.y10f{bottom:847.002300px;}
.y1fe{bottom:849.511800px;}
.y1d9{bottom:851.293800px;}
.y1b3{bottom:861.358500px;}
.y6e{bottom:861.996300px;}
.y23{bottom:862.482300px;}
.yce{bottom:862.914300px;}
.y49{bottom:863.346300px;}
.y13f{bottom:863.826300px;}
.yf0{bottom:863.832300px;}
.y178{bottom:864.696300px;}
.y10e{bottom:868.908300px;}
.y1fd{bottom:869.311800px;}
.y1d8{bottom:870.648300px;}
.y1b2{bottom:881.307000px;}
.y6d{bottom:883.902300px;}
.y4{bottom:884.206800px;}
.y22{bottom:884.226300px;}
.ycd{bottom:884.514300px;}
.y48{bottom:884.802300px;}
.y13e{bottom:885.120300px;}
.yef{bottom:885.126300px;}
.y177{bottom:885.702300px;}
.y1fc{bottom:889.111800px;}
.y1d7{bottom:890.002800px;}
.y10d{bottom:890.814300px;}
.y1b1{bottom:901.255500px;}
.y6c{bottom:905.808300px;}
.y21{bottom:905.970300px;}
.ycc{bottom:906.114300px;}
.y47{bottom:906.258300px;}
.yee{bottom:906.420300px;}
.y176{bottom:906.708300px;}
.y1fb{bottom:908.911800px;}
.y1d6{bottom:909.357300px;}
.y3{bottom:910.711800px;}
.y20{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y1b0{bottom:929.709450px;}
.h10{height:26.199902px;}
.hb{height:30.568359px;}
.h3{height:35.663086px;}
.h8{height:40.757812px;}
.h2{height:41.396484px;}
.hc{height:48.399902px;}
.h5{height:50.947266px;}
.h12{height:50.959266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.hf{height:61.616719px;}
.ha{height:62.794031px;}
.h11{height:63.226031px;}
.h9{height:63.250031px;}
.h15{height:63.298031px;}
.h13{height:63.322031px;}
.h16{height:63.394031px;}
.he{height:63.442031px;}
.h17{height:63.466031px;}
.h14{height:63.850031px;}
.hd{height:64.042031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.x1{left:97.795350px;}
.x7{left:119.071350px;}
.xb{left:140.307150px;}
.x2{left:143.170350px;}
.x8{left:150.670350px;}
.x9{left:190.601700px;}
.x4{left:198.101700px;}
.xe{left:200.113200px;}
.x3{left:260.997600px;}
.xd{left:509.980350px;}
.xc{left:518.943600px;}
.xa{left:575.539350px;}
.x5{left:583.039350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:19.738667pt;}
.v3{vertical-align:23.616000pt;}
.ls32{letter-spacing:-11.840000pt;}
.ls4b{letter-spacing:-11.584000pt;}
.ls20{letter-spacing:-6.528000pt;}
.ls5d{letter-spacing:-6.400000pt;}
.ls51{letter-spacing:-5.120000pt;}
.ls45{letter-spacing:-2.816000pt;}
.ls6b{letter-spacing:-2.496000pt;}
.ls4a{letter-spacing:-2.304000pt;}
.ls72{letter-spacing:-2.288000pt;}
.ls42{letter-spacing:-1.920000pt;}
.ls50{letter-spacing:-1.600000pt;}
.ls59{letter-spacing:-0.896000pt;}
.ls5a{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls3a{letter-spacing:-0.704000pt;}
.ls80{letter-spacing:-0.645333pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls7f{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls41{letter-spacing:-0.512000pt;}
.ls2e{letter-spacing:-0.506667pt;}
.ls56{letter-spacing:-0.456000pt;}
.ls33{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls3e{letter-spacing:-0.345600pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.253333pt;}
.ls71{letter-spacing:-0.234667pt;}
.ls16{letter-spacing:-0.202667pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.176000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls81{letter-spacing:-0.117333pt;}
.ls47{letter-spacing:-0.101333pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.050667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls65{letter-spacing:0.032000pt;}
.ls5f{letter-spacing:0.045867pt;}
.ls2b{letter-spacing:0.050667pt;}
.ls73{letter-spacing:0.058667pt;}
.lse{letter-spacing:0.064000pt;}
.ls7d{letter-spacing:0.117333pt;}
.ls17{letter-spacing:0.128000pt;}
.ls55{letter-spacing:0.153600pt;}
.ls7c{letter-spacing:0.176000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls76{letter-spacing:0.234667pt;}
.ls48{letter-spacing:0.243200pt;}
.ls36{letter-spacing:0.253333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.266667pt;}
.ls7a{letter-spacing:0.293333pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls69{letter-spacing:0.345600pt;}
.ls70{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.422400pt;}
.ls6{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls6e{letter-spacing:0.528000pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls77{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls78{letter-spacing:0.645333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:0.812800pt;}
.ls2d{letter-spacing:0.832000pt;}
.ls5b{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls67{letter-spacing:1.024000pt;}
.ls4c{letter-spacing:1.088000pt;}
.ls4e{letter-spacing:1.152000pt;}
.ls6a{letter-spacing:1.216000pt;}
.ls43{letter-spacing:1.408000pt;}
.ls2a{letter-spacing:1.472000pt;}
.ls2f{letter-spacing:1.792000pt;}
.ls5e{letter-spacing:2.048000pt;}
.ls54{letter-spacing:2.150400pt;}
.ls30{letter-spacing:2.176000pt;}
.ls57{letter-spacing:2.304000pt;}
.ls52{letter-spacing:2.368000pt;}
.ls22{letter-spacing:2.496000pt;}
.ls64{letter-spacing:2.624000pt;}
.ls39{letter-spacing:2.880000pt;}
.ls61{letter-spacing:2.944000pt;}
.ls38{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.328000pt;}
.ls6c{letter-spacing:3.578667pt;}
.ls60{letter-spacing:3.724800pt;}
.ls0{letter-spacing:3.733333pt;}
.ls53{letter-spacing:3.776000pt;}
.ls31{letter-spacing:3.840000pt;}
.ls18{letter-spacing:3.904000pt;}
.ls3f{letter-spacing:4.224000pt;}
.ls13{letter-spacing:4.352000pt;}
.ls29{letter-spacing:4.608000pt;}
.ls3b{letter-spacing:4.672000pt;}
.ls68{letter-spacing:4.710400pt;}
.ls28{letter-spacing:4.928000pt;}
.ls66{letter-spacing:4.998400pt;}
.ls40{letter-spacing:5.132800pt;}
.ls3{letter-spacing:5.333333pt;}
.ls34{letter-spacing:5.344000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls3c{letter-spacing:7.020800pt;}
.ls23{letter-spacing:7.872000pt;}
.lsf{letter-spacing:8.050933pt;}
.ls49{letter-spacing:8.064000pt;}
.ls35{letter-spacing:8.544000pt;}
.ls63{letter-spacing:9.024000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls5c{letter-spacing:9.344000pt;}
.ls6d{letter-spacing:9.445333pt;}
.ls7e{letter-spacing:9.504000pt;}
.ls6f{letter-spacing:9.738667pt;}
.ls7b{letter-spacing:9.914667pt;}
.ls58{letter-spacing:9.920000pt;}
.ls75{letter-spacing:9.973333pt;}
.ls4f{letter-spacing:10.060800pt;}
.ls74{letter-spacing:10.835733pt;}
.ls79{letter-spacing:17.600000pt;}
.ls44{letter-spacing:34.598400pt;}
.ls3d{letter-spacing:34.598933pt;}
.ws56{word-spacing:-47.680000pt;}
.ws64{word-spacing:-47.424000pt;}
.ws29{word-spacing:-47.232000pt;}
.ws47{word-spacing:-47.040000pt;}
.ws67{word-spacing:-46.976000pt;}
.ws63{word-spacing:-46.912000pt;}
.ws31{word-spacing:-46.848000pt;}
.ws66{word-spacing:-46.784000pt;}
.ws22{word-spacing:-46.720000pt;}
.ws36{word-spacing:-46.656000pt;}
.ws4f{word-spacing:-46.592000pt;}
.ws1e{word-spacing:-46.528000pt;}
.ws20{word-spacing:-46.464000pt;}
.ws34{word-spacing:-46.400000pt;}
.ws1d{word-spacing:-46.336000pt;}
.ws32{word-spacing:-46.272000pt;}
.ws2b{word-spacing:-46.208000pt;}
.ws46{word-spacing:-46.144000pt;}
.ws4d{word-spacing:-46.080000pt;}
.ws1f{word-spacing:-45.952000pt;}
.ws60{word-spacing:-45.888000pt;}
.ws5e{word-spacing:-36.581333pt;}
.ws7c{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws71{word-spacing:-20.320000pt;}
.ws5b{word-spacing:-18.240000pt;}
.ws21{word-spacing:-17.984000pt;}
.ws48{word-spacing:-17.664000pt;}
.ws8a{word-spacing:-17.600000pt;}
.ws79{word-spacing:-16.544000pt;}
.ws24{word-spacing:-16.512000pt;}
.ws7a{word-spacing:-16.485333pt;}
.ws23{word-spacing:-16.320000pt;}
.ws49{word-spacing:-16.192000pt;}
.ws55{word-spacing:-16.128000pt;}
.ws4b{word-spacing:-16.064000pt;}
.ws6f{word-spacing:-16.000000pt;}
.ws7b{word-spacing:-15.898667pt;}
.ws4e{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws69{word-spacing:-15.744000pt;}
.ws3a{word-spacing:-15.680000pt;}
.ws40{word-spacing:-15.488000pt;}
.ws6b{word-spacing:-15.360000pt;}
.ws68{word-spacing:-15.296000pt;}
.ws3b{word-spacing:-15.253333pt;}
.ws4a{word-spacing:-15.232000pt;}
.ws2a{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws3c{word-spacing:-14.490667pt;}
.ws72{word-spacing:-14.256000pt;}
.ws15{word-spacing:-12.514667pt;}
.ws5d{word-spacing:-12.261333pt;}
.ws6e{word-spacing:-11.136000pt;}
.ws5c{word-spacing:-10.944000pt;}
.wsf{word-spacing:-10.790400pt;}
.ws44{word-spacing:-10.444800pt;}
.ws82{word-spacing:-9.973333pt;}
.ws7d{word-spacing:-9.914667pt;}
.ws78{word-spacing:-9.738667pt;}
.ws80{word-spacing:-9.504000pt;}
.ws75{word-spacing:-9.445333pt;}
.ws6{word-spacing:-9.066667pt;}
.ws8{word-spacing:-6.400000pt;}
.ws5{word-spacing:-5.866667pt;}
.ws7{word-spacing:-5.333333pt;}
.ws4{word-spacing:-3.733333pt;}
.ws41{word-spacing:-3.200000pt;}
.ws3d{word-spacing:-3.136000pt;}
.ws73{word-spacing:-2.874667pt;}
.ws6c{word-spacing:-1.152000pt;}
.ws57{word-spacing:-1.088000pt;}
.ws6d{word-spacing:-1.024000pt;}
.ws59{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.896000pt;}
.ws38{word-spacing:-0.832000pt;}
.ws28{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.704000pt;}
.ws87{word-spacing:-0.645333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws86{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.528000pt;}
.ws10{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.448000pt;}
.ws11{word-spacing:-0.384000pt;}
.ws74{word-spacing:-0.352000pt;}
.ws25{word-spacing:-0.320000pt;}
.ws88{word-spacing:-0.293333pt;}
.wsc{word-spacing:-0.256000pt;}
.ws3f{word-spacing:-0.253333pt;}
.ws83{word-spacing:-0.234667pt;}
.ws16{word-spacing:-0.192000pt;}
.ws7e{word-spacing:-0.176000pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.117333pt;}
.ws13{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.050667pt;}
.ws12{word-spacing:0.064000pt;}
.ws52{word-spacing:0.101333pt;}
.ws89{word-spacing:0.117333pt;}
.ws1a{word-spacing:0.128000pt;}
.wsb{word-spacing:0.176000pt;}
.ws14{word-spacing:0.192000pt;}
.ws19{word-spacing:0.202667pt;}
.ws81{word-spacing:0.234667pt;}
.ws18{word-spacing:0.253333pt;}
.ws2c{word-spacing:0.256000pt;}
.ws9{word-spacing:0.293333pt;}
.ws51{word-spacing:0.304000pt;}
.ws30{word-spacing:0.320000pt;}
.wsa{word-spacing:0.352000pt;}
.wsd{word-spacing:0.384000pt;}
.ws39{word-spacing:0.448000pt;}
.ws5f{word-spacing:0.456000pt;}
.ws33{word-spacing:0.506667pt;}
.ws4c{word-spacing:0.512000pt;}
.ws43{word-spacing:0.576000pt;}
.ws84{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws85{word-spacing:0.645333pt;}
.ws42{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.768000pt;}
.ws62{word-spacing:0.832000pt;}
.ws61{word-spacing:0.896000pt;}
.ws58{word-spacing:1.600000pt;}
.ws76{word-spacing:2.288000pt;}
.ws53{word-spacing:2.304000pt;}
.ws70{word-spacing:2.496000pt;}
.ws50{word-spacing:2.816000pt;}
.ws5a{word-spacing:5.120000pt;}
.ws37{word-spacing:5.657600pt;}
.ws35{word-spacing:5.747200pt;}
.ws65{word-spacing:6.400000pt;}
.ws26{word-spacing:6.528000pt;}
.ws45{word-spacing:8.000000pt;}
.ws54{word-spacing:11.584000pt;}
.ws3e{word-spacing:11.840000pt;}
._15{margin-left:-11.213867pt;}
._5{margin-left:-9.946133pt;}
._14{margin-left:-8.881600pt;}
._3{margin-left:-7.969600pt;}
._11{margin-left:-6.991467pt;}
._2{margin-left:-5.995733pt;}
._f{margin-left:-5.004800pt;}
._10{margin-left:-3.808000pt;}
._c{margin-left:-2.552000pt;}
._7{margin-left:-1.580267pt;}
._e{width:0.893867pt;}
._8{width:1.824533pt;}
._d{width:2.800000pt;}
._0{width:3.733333pt;}
._6{width:5.137067pt;}
._9{width:6.223467pt;}
._a{width:7.308267pt;}
._b{width:8.507733pt;}
._1{width:9.973333pt;}
._13{width:11.237867pt;}
._16{width:12.317867pt;}
._18{width:14.344000pt;}
._4{width:15.458667pt;}
._17{width:17.975467pt;}
._19{width:18.882667pt;}
._12{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y6b{bottom:124.716400pt;}
.y161{bottom:124.717733pt;}
.y46{bottom:124.719067pt;}
.y175{bottom:124.720400pt;}
.y8c{bottom:124.721733pt;}
.ycb{bottom:124.723067pt;}
.y21b{bottom:125.654933pt;}
.y1a6{bottom:125.875867pt;}
.y174{bottom:126.965600pt;}
.y1af{bottom:127.530933pt;}
.y166{bottom:127.968267pt;}
.yad{bottom:128.826933pt;}
.y1fa{bottom:129.376267pt;}
.y1f{bottom:129.460133pt;}
.y12f{bottom:129.786933pt;}
.y1d5{bottom:129.880533pt;}
.y6a{bottom:139.384400pt;}
.y160{bottom:139.385733pt;}
.y45{bottom:139.387067pt;}
.y10c{bottom:139.388400pt;}
.y8b{bottom:139.389733pt;}
.y21a{bottom:141.654933pt;}
.yca{bottom:144.324400pt;}
.y1a5{bottom:145.075867pt;}
.y173{bottom:146.293600pt;}
.y1f9{bottom:146.580267pt;}
.y1ae{bottom:147.002933pt;}
.y165{bottom:147.168267pt;}
.y1d4{bottom:147.612533pt;}
.yac{bottom:148.154933pt;}
.y1e{bottom:148.532133pt;}
.y12e{bottom:149.258933pt;}
.y132{bottom:154.044400pt;}
.y69{bottom:154.052400pt;}
.y15f{bottom:154.053733pt;}
.y44{bottom:154.055067pt;}
.yed{bottom:154.056400pt;}
.y219{bottom:157.654933pt;}
.y8a{bottom:158.991067pt;}
.y1f8{bottom:163.784267pt;}
.y1a4{bottom:164.275867pt;}
.y1d3{bottom:165.344533pt;}
.y172{bottom:165.621600pt;}
.y164{bottom:166.368267pt;}
.y1ad{bottom:166.474933pt;}
.yab{bottom:167.482933pt;}
.y1d{bottom:167.604133pt;}
.y131{bottom:168.712400pt;}
.y68{bottom:168.720400pt;}
.y15e{bottom:168.721733pt;}
.y43{bottom:168.723067pt;}
.y12d{bottom:168.730933pt;}
.y218{bottom:173.654933pt;}
.yec{bottom:173.657733pt;}
.y1f7{bottom:180.988267pt;}
.yc9{bottom:182.165600pt;}
.y1d2{bottom:183.076533pt;}
.y130{bottom:183.380400pt;}
.y67{bottom:183.388400pt;}
.y15d{bottom:183.389733pt;}
.y1a3{bottom:183.475867pt;}
.y171{bottom:184.949600pt;}
.y163{bottom:185.568267pt;}
.y1ac{bottom:185.946933pt;}
.y1c{bottom:186.676133pt;}
.yaa{bottom:186.810933pt;}
.y12c{bottom:188.202933pt;}
.y42{bottom:188.324400pt;}
.y13d{bottom:193.968267pt;}
.y89{bottom:194.105200pt;}
.y41{bottom:198.048400pt;}
.y66{bottom:198.056400pt;}
.y1d1{bottom:200.808533pt;}
.yc8{bottom:201.637600pt;}
.y1a2{bottom:202.675867pt;}
.y15c{bottom:202.991067pt;}
.y170{bottom:204.277600pt;}
.y1ab{bottom:205.418933pt;}
.y1b{bottom:205.748133pt;}
.ya9{bottom:206.138933pt;}
.y12b{bottom:207.674933pt;}
.y217{bottom:208.854933pt;}
.yeb{bottom:210.234933pt;}
.y10b{bottom:211.235867pt;}
.y40{bottom:212.716400pt;}
.y195{bottom:212.721733pt;}
.y13c{bottom:213.168267pt;}
.y88{bottom:213.577200pt;}
.y1f6{bottom:213.788267pt;}
.y65{bottom:217.657733pt;}
.y162{bottom:218.101600pt;}
.y1d0{bottom:218.540533pt;}
.yc7{bottom:221.109600pt;}
.y1a1{bottom:221.875867pt;}
.y16f{bottom:223.605600pt;}
.y1a{bottom:224.820133pt;}
.y1aa{bottom:224.890933pt;}
.ya8{bottom:225.466933pt;}
.y12a{bottom:227.146933pt;}
.y3f{bottom:227.384400pt;}
.y194{bottom:227.389733pt;}
.yea{bottom:229.434933pt;}
.y10a{bottom:230.163867pt;}
.y13b{bottom:232.368267pt;}
.y87{bottom:233.049200pt;}
.y1cf{bottom:236.272533pt;}
.y15b{bottom:238.357600pt;}
.yc6{bottom:240.581600pt;}
.y1a0{bottom:241.075867pt;}
.y3e{bottom:242.052400pt;}
.y216{bottom:242.468267pt;}
.y16e{bottom:242.933600pt;}
.y19{bottom:243.892133pt;}
.y1a9{bottom:244.362933pt;}
.ya7{bottom:244.794933pt;}
.y1f5{bottom:246.588267pt;}
.y129{bottom:246.618933pt;}
.y193{bottom:246.991067pt;}
.ye9{bottom:248.634933pt;}
.y109{bottom:249.091867pt;}
.y13a{bottom:251.568267pt;}
.y64{bottom:252.474933pt;}
.y86{bottom:252.521200pt;}
.y1ce{bottom:254.004533pt;}
.y3d{bottom:256.720400pt;}
.y15a{bottom:257.685600pt;}
.yc5{bottom:260.053600pt;}
.y215{bottom:260.200267pt;}
.y19f{bottom:260.275867pt;}
.y16d{bottom:262.261600pt;}
.y18{bottom:262.964133pt;}
.y1a8{bottom:263.834933pt;}
.ya6{bottom:264.122933pt;}
.y1f4{bottom:265.388267pt;}
.y128{bottom:266.090933pt;}
.ye8{bottom:267.834933pt;}
.y108{bottom:268.019867pt;}
.y139{bottom:270.768267pt;}
.y3c{bottom:271.388400pt;}
.y63{bottom:271.546933pt;}
.y1cd{bottom:271.736533pt;}
.y85{bottom:271.993200pt;}
.y159{bottom:276.485600pt;}
.y214{bottom:277.932267pt;}
.y19e{bottom:279.475867pt;}
.yc4{bottom:279.525600pt;}
.y16c{bottom:281.589600pt;}
.y192{bottom:282.666933pt;}
.y1a7{bottom:283.306933pt;}
.ya5{bottom:283.450933pt;}
.y1f3{bottom:284.188267pt;}
.y127{bottom:285.562933pt;}
.y3b{bottom:286.056400pt;}
.y107{bottom:286.947867pt;}
.ye7{bottom:287.034933pt;}
.y1cc{bottom:289.468533pt;}
.y17{bottom:289.589867pt;}
.y138{bottom:289.968267pt;}
.y62{bottom:290.618933pt;}
.y84{bottom:291.465200pt;}
.y158{bottom:295.285600pt;}
.y213{bottom:295.664267pt;}
.y19d{bottom:298.675867pt;}
.yc3{bottom:298.997600pt;}
.y16b{bottom:300.917600pt;}
.y191{bottom:301.866933pt;}
.ya4{bottom:302.778933pt;}
.y126{bottom:305.034933pt;}
.y3a{bottom:305.657733pt;}
.y106{bottom:305.875867pt;}
.ye6{bottom:306.234933pt;}
.y1cb{bottom:307.200533pt;}
.y137{bottom:309.050933pt;}
.y61{bottom:309.690933pt;}
.y83{bottom:310.937200pt;}
.y212{bottom:313.396267pt;}
.y157{bottom:314.085600pt;}
.y19c{bottom:317.875867pt;}
.yc2{bottom:318.469600pt;}
.y1f2{bottom:318.593600pt;}
.y16a{bottom:320.245600pt;}
.y190{bottom:320.538933pt;}
.ya3{bottom:322.106933pt;}
.y125{bottom:324.506933pt;}
.y1ca{bottom:324.932533pt;}
.ye5{bottom:325.434933pt;}
.y136{bottom:328.250933pt;}
.y60{bottom:328.762933pt;}
.y82{bottom:330.409200pt;}
.y211{bottom:331.128267pt;}
.y105{bottom:332.368267pt;}
.y156{bottom:332.885600pt;}
.y1f1{bottom:333.388267pt;}
.y19b{bottom:337.075867pt;}
.yc1{bottom:337.941600pt;}
.y18f{bottom:339.210933pt;}
.y169{bottom:339.573600pt;}
.y39{bottom:341.418933pt;}
.ya2{bottom:341.434933pt;}
.y1c9{bottom:342.664533pt;}
.y124{bottom:343.978933pt;}
.ye4{bottom:344.634933pt;}
.y16{bottom:346.781867pt;}
.y135{bottom:347.450933pt;}
.y5f{bottom:347.834933pt;}
.y210{bottom:348.860267pt;}
.y155{bottom:351.685600pt;}
.y19a{bottom:356.275867pt;}
.yc0{bottom:357.413600pt;}
.y81{bottom:357.434933pt;}
.y18e{bottom:357.882933pt;}
.y168{bottom:358.901600pt;}
.y38{bottom:360.746933pt;}
.ya1{bottom:360.762933pt;}
.y1f0{bottom:361.013600pt;}
.y123{bottom:363.450933pt;}
.ye3{bottom:363.834933pt;}
.y15{bottom:364.249867pt;}
.y20f{bottom:366.592267pt;}
.y134{bottom:366.650933pt;}
.y5e{bottom:366.906933pt;}
.y1c8{bottom:367.956933pt;}
.y154{bottom:370.485600pt;}
.y199{bottom:375.475867pt;}
.y18d{bottom:376.554933pt;}
.ybf{bottom:376.885600pt;}
.y1ef{bottom:378.217600pt;}
.y37{bottom:380.074933pt;}
.ya0{bottom:380.090933pt;}
.y14{bottom:381.717867pt;}
.y122{bottom:382.922933pt;}
.ye2{bottom:383.034933pt;}
.y20e{bottom:384.324267pt;}
.y133{bottom:385.850933pt;}
.y5d{bottom:385.978933pt;}
.y104{bottom:389.269600pt;}
.y153{bottom:389.285600pt;}
.y167{bottom:391.701600pt;}
.y198{bottom:394.675867pt;}
.y18c{bottom:395.226933pt;}
.y1ee{bottom:395.421600pt;}
.ybe{bottom:396.357600pt;}
.y13{bottom:399.185867pt;}
.y36{bottom:399.402933pt;}
.y9f{bottom:399.418933pt;}
.y20d{bottom:402.056267pt;}
.ye1{bottom:402.234933pt;}
.y121{bottom:402.394933pt;}
.y5c{bottom:405.050933pt;}
.y103{bottom:408.197600pt;}
.y152{bottom:408.213600pt;}
.y1c7{bottom:411.012000pt;}
.y1ed{bottom:412.625600pt;}
.y197{bottom:413.875867pt;}
.y18b{bottom:413.898933pt;}
.y80{bottom:415.749600pt;}
.ybd{bottom:415.829600pt;}
.y12{bottom:416.653867pt;}
.y35{bottom:418.730933pt;}
.y9e{bottom:418.746933pt;}
.y20c{bottom:419.788267pt;}
.ye0{bottom:421.434933pt;}
.y120{bottom:421.866933pt;}
.y5b{bottom:424.122933pt;}
.y102{bottom:427.125600pt;}
.y151{bottom:427.141600pt;}
.y1c6{bottom:428.744000pt;}
.y1ec{bottom:429.829600pt;}
.y18a{bottom:432.570933pt;}
.y196{bottom:433.075867pt;}
.y11{bottom:434.121867pt;}
.ybc{bottom:435.194933pt;}
.y7f{bottom:435.221600pt;}
.y34{bottom:438.058933pt;}
.y9d{bottom:438.074933pt;}
.ydf{bottom:440.634933pt;}
.y11f{bottom:441.338933pt;}
.y5a{bottom:443.194933pt;}
.y101{bottom:446.053600pt;}
.y150{bottom:446.069600pt;}
.y1c5{bottom:446.476000pt;}
.y1eb{bottom:447.033600pt;}
.y189{bottom:451.242933pt;}
.y10{bottom:451.589867pt;}
.y20b{bottom:453.521600pt;}
.ybb{bottom:454.666933pt;}
.y7e{bottom:454.693600pt;}
.y33{bottom:457.386933pt;}
.y9c{bottom:457.402933pt;}
.yde{bottom:459.834933pt;}
.y11e{bottom:460.810933pt;}
.y59{bottom:462.266933pt;}
.y1c4{bottom:464.208000pt;}
.y1ea{bottom:464.237600pt;}
.y100{bottom:464.981600pt;}
.y14f{bottom:464.997600pt;}
.y188{bottom:469.914933pt;}
.yba{bottom:474.138933pt;}
.y7d{bottom:474.165600pt;}
.yf{bottom:476.615600pt;}
.y32{bottom:476.714933pt;}
.y9b{bottom:476.730933pt;}
.ydd{bottom:479.034933pt;}
.y11d{bottom:480.282933pt;}
.y58{bottom:481.338933pt;}
.y1e9{bottom:481.441600pt;}
.y1c3{bottom:481.940000pt;}
.yff{bottom:483.909600pt;}
.y14e{bottom:483.925600pt;}
.y20a{bottom:487.121600pt;}
.y187{bottom:488.586933pt;}
.yb9{bottom:493.610933pt;}
.y7c{bottom:493.637600pt;}
.y31{bottom:496.042933pt;}
.y9a{bottom:496.058933pt;}
.ydc{bottom:498.234933pt;}
.y1e8{bottom:498.645600pt;}
.y1c2{bottom:499.672000pt;}
.y11c{bottom:499.754933pt;}
.y57{bottom:500.410933pt;}
.yfe{bottom:502.837600pt;}
.y14d{bottom:502.853600pt;}
.y209{bottom:506.321600pt;}
.y186{bottom:507.258933pt;}
.yb8{bottom:513.082933pt;}
.y7b{bottom:513.109600pt;}
.ye{bottom:514.742267pt;}
.y30{bottom:515.370933pt;}
.y99{bottom:515.386933pt;}
.y1e7{bottom:515.849600pt;}
.y1c1{bottom:517.404000pt;}
.ydb{bottom:517.434933pt;}
.y11b{bottom:519.226933pt;}
.y56{bottom:519.482933pt;}
.yfd{bottom:521.765600pt;}
.y14c{bottom:521.781600pt;}
.y208{bottom:525.521600pt;}
.y185{bottom:525.930933pt;}
.yd{bottom:532.210267pt;}
.yb7{bottom:532.554933pt;}
.y7a{bottom:532.581600pt;}
.y1e6{bottom:533.053600pt;}
.y2f{bottom:534.698933pt;}
.y98{bottom:534.714933pt;}
.y1c0{bottom:535.136000pt;}
.yda{bottom:536.634933pt;}
.y55{bottom:538.554933pt;}
.y11a{bottom:538.698933pt;}
.yfc{bottom:540.693600pt;}
.y14b{bottom:540.709600pt;}
.y184{bottom:544.602933pt;}
.yc{bottom:549.678267pt;}
.y1e5{bottom:550.257600pt;}
.yb6{bottom:552.026933pt;}
.y79{bottom:552.053600pt;}
.y1bf{bottom:552.868000pt;}
.y2e{bottom:554.026933pt;}
.y97{bottom:554.042933pt;}
.yd9{bottom:555.834933pt;}
.y54{bottom:557.626933pt;}
.y119{bottom:558.170933pt;}
.yfb{bottom:559.621600pt;}
.y14a{bottom:559.637600pt;}
.y183{bottom:563.274933pt;}
.yb{bottom:567.146267pt;}
.y1e4{bottom:567.461600pt;}
.y207{bottom:568.188267pt;}
.y1be{bottom:570.600000pt;}
.yb5{bottom:571.498933pt;}
.y78{bottom:571.525600pt;}
.y2d{bottom:573.354933pt;}
.y96{bottom:573.370933pt;}
.yd8{bottom:575.034933pt;}
.y53{bottom:576.698933pt;}
.y118{bottom:577.642933pt;}
.yfa{bottom:578.549600pt;}
.y149{bottom:578.565600pt;}
.y182{bottom:581.946933pt;}
.y206{bottom:584.188267pt;}
.ya{bottom:584.614267pt;}
.y1e3{bottom:584.665600pt;}
.y1bd{bottom:588.332000pt;}
.yb4{bottom:590.970933pt;}
.y77{bottom:590.997600pt;}
.y2c{bottom:592.682933pt;}
.y95{bottom:592.698933pt;}
.yd7{bottom:594.234933pt;}
.y52{bottom:595.770933pt;}
.y117{bottom:597.114933pt;}
.yf9{bottom:597.477600pt;}
.y148{bottom:597.493600pt;}
.y205{bottom:600.188267pt;}
.y181{bottom:600.618933pt;}
.y1e2{bottom:601.869600pt;}
.y9{bottom:602.082267pt;}
.y1bc{bottom:606.064000pt;}
.yb3{bottom:610.442933pt;}
.y76{bottom:610.469600pt;}
.y2b{bottom:612.010933pt;}
.y94{bottom:612.026933pt;}
.yd6{bottom:613.434933pt;}
.y51{bottom:614.842933pt;}
.y204{bottom:616.188267pt;}
.yf8{bottom:616.405600pt;}
.y147{bottom:616.421600pt;}
.y116{bottom:616.586933pt;}
.y1e1{bottom:619.073600pt;}
.y180{bottom:619.290933pt;}
.y1bb{bottom:623.796000pt;}
.y8{bottom:627.108000pt;}
.yb2{bottom:629.914933pt;}
.y75{bottom:629.941600pt;}
.y2a{bottom:631.338933pt;}
.y93{bottom:631.354933pt;}
.yd5{bottom:632.634933pt;}
.y50{bottom:633.914933pt;}
.yf7{bottom:635.333600pt;}
.y146{bottom:635.349600pt;}
.y115{bottom:636.058933pt;}
.y1e0{bottom:636.277600pt;}
.y17f{bottom:637.962933pt;}
.y1ba{bottom:641.528000pt;}
.yb1{bottom:649.386933pt;}
.y74{bottom:649.413600pt;}
.y29{bottom:650.666933pt;}
.y92{bottom:650.682933pt;}
.y203{bottom:651.388267pt;}
.yd4{bottom:651.834933pt;}
.y4f{bottom:652.986933pt;}
.y1df{bottom:653.481600pt;}
.yf6{bottom:654.261600pt;}
.y145{bottom:654.277600pt;}
.y114{bottom:655.530933pt;}
.y17e{bottom:656.602933pt;}
.y1b9{bottom:659.260000pt;}
.yb0{bottom:668.858933pt;}
.y73{bottom:668.885600pt;}
.y28{bottom:669.994933pt;}
.y91{bottom:670.010933pt;}
.y1de{bottom:670.685600pt;}
.yd3{bottom:671.034933pt;}
.y4e{bottom:672.058933pt;}
.y7{bottom:672.841333pt;}
.yf5{bottom:673.189600pt;}
.y144{bottom:673.205600pt;}
.y113{bottom:675.002933pt;}
.y17d{bottom:675.274933pt;}
.y1b8{bottom:676.992000pt;}
.y202{bottom:684.721600pt;}
.y1dd{bottom:687.889600pt;}
.yaf{bottom:688.330933pt;}
.y72{bottom:688.357600pt;}
.y27{bottom:689.322933pt;}
.y90{bottom:689.338933pt;}
.yd2{bottom:690.234933pt;}
.y4d{bottom:691.130933pt;}
.yf4{bottom:692.117600pt;}
.y143{bottom:692.133600pt;}
.y17c{bottom:693.946933pt;}
.y112{bottom:694.474933pt;}
.y1b7{bottom:694.724000pt;}
.y201{bottom:702.321600pt;}
.y1dc{bottom:705.093600pt;}
.yae{bottom:707.802933pt;}
.y71{bottom:707.829600pt;}
.y26{bottom:708.650933pt;}
.y8f{bottom:708.666933pt;}
.yd1{bottom:709.434933pt;}
.y6{bottom:709.641333pt;}
.y4c{bottom:710.202933pt;}
.yf3{bottom:711.045600pt;}
.y142{bottom:711.061600pt;}
.y1b6{bottom:712.456000pt;}
.y17b{bottom:712.618933pt;}
.y111{bottom:713.946933pt;}
.y200{bottom:719.921600pt;}
.y1db{bottom:722.297600pt;}
.y70{bottom:727.274933pt;}
.y25{bottom:727.978933pt;}
.y8e{bottom:727.994933pt;}
.yd0{bottom:728.634933pt;}
.y4b{bottom:729.274933pt;}
.yf2{bottom:729.973600pt;}
.y141{bottom:729.989600pt;}
.y1b5{bottom:730.188000pt;}
.y17a{bottom:731.290933pt;}
.y110{bottom:733.418933pt;}
.y5{bottom:736.841333pt;}
.y1ff{bottom:737.521600pt;}
.y1da{bottom:739.501600pt;}
.y6f{bottom:746.746933pt;}
.y24{bottom:747.306933pt;}
.y8d{bottom:747.322933pt;}
.ycf{bottom:747.834933pt;}
.y1b4{bottom:747.920000pt;}
.y4a{bottom:748.346933pt;}
.y140{bottom:748.917600pt;}
.yf1{bottom:748.922933pt;}
.y179{bottom:749.962933pt;}
.y10f{bottom:752.890933pt;}
.y1fe{bottom:755.121600pt;}
.y1d9{bottom:756.705600pt;}
.y1b3{bottom:765.652000pt;}
.y6e{bottom:766.218933pt;}
.y23{bottom:766.650933pt;}
.yce{bottom:767.034933pt;}
.y49{bottom:767.418933pt;}
.y13f{bottom:767.845600pt;}
.yf0{bottom:767.850933pt;}
.y178{bottom:768.618933pt;}
.y10e{bottom:772.362933pt;}
.y1fd{bottom:772.721600pt;}
.y1d8{bottom:773.909600pt;}
.y1b2{bottom:783.384000pt;}
.y6d{bottom:785.690933pt;}
.y4{bottom:785.961600pt;}
.y22{bottom:785.978933pt;}
.ycd{bottom:786.234933pt;}
.y48{bottom:786.490933pt;}
.y13e{bottom:786.773600pt;}
.yef{bottom:786.778933pt;}
.y177{bottom:787.290933pt;}
.y1fc{bottom:790.321600pt;}
.y1d7{bottom:791.113600pt;}
.y10d{bottom:791.834933pt;}
.y1b1{bottom:801.116000pt;}
.y6c{bottom:805.162933pt;}
.y21{bottom:805.306933pt;}
.ycc{bottom:805.434933pt;}
.y47{bottom:805.562933pt;}
.yee{bottom:805.706933pt;}
.y176{bottom:805.962933pt;}
.y1fb{bottom:807.921600pt;}
.y1d6{bottom:808.317600pt;}
.y3{bottom:809.521600pt;}
.y20{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y1b0{bottom:826.408400pt;}
.h10{height:23.288802pt;}
.hb{height:27.171875pt;}
.h3{height:31.700521pt;}
.h8{height:36.229167pt;}
.h2{height:36.796875pt;}
.hc{height:43.022135pt;}
.h5{height:45.286458pt;}
.h12{height:45.297125pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.hf{height:54.770417pt;}
.ha{height:55.816917pt;}
.h11{height:56.200917pt;}
.h9{height:56.222250pt;}
.h15{height:56.264917pt;}
.h13{height:56.286250pt;}
.h16{height:56.350250pt;}
.he{height:56.392917pt;}
.h17{height:56.414250pt;}
.h14{height:56.755583pt;}
.hd{height:56.926250pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.x1{left:86.929200pt;}
.x7{left:105.841200pt;}
.xb{left:124.717467pt;}
.x2{left:127.262533pt;}
.x8{left:133.929200pt;}
.x9{left:169.423733pt;}
.x4{left:176.090400pt;}
.xe{left:177.878400pt;}
.x3{left:231.997867pt;}
.xd{left:453.315867pt;}
.xc{left:461.283200pt;}
.xa{left:511.590533pt;}
.x5{left:518.257200pt;}
}




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