
    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_f92f6ba108451b3c8f5b9805.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_5b6708a76fee9b0f3bef0465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984333;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_7a305669d7d29334dbb3dfb1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984048;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_366db6e88126e305aa2cc502.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_267e42273f09339c7ac2428f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9735314d76565b4a3b04261b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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;}
.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);}
.m1{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);}
.v2{vertical-align:-19.800000px;}
.v5{vertical-align:-7.287000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.746600px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:21.201000px;}
.ls5b{letter-spacing:-1.254000px;}
.ls23{letter-spacing:-1.140000px;}
.ls4f{letter-spacing:-1.020000px;}
.ls4d{letter-spacing:-0.900000px;}
.ls5c{letter-spacing:-0.858000px;}
.ls5a{letter-spacing:-0.792000px;}
.ls3c{letter-spacing:-0.756000px;}
.ls1e{letter-spacing:-0.726000px;}
.ls81{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.660000px;}
.ls4e{letter-spacing:-0.600000px;}
.ls41{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.570000px;}
.ls3a{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.528000px;}
.lsd{letter-spacing:-0.513000px;}
.ls57{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.462000px;}
.lsb{letter-spacing:-0.456000px;}
.ls63{letter-spacing:-0.450000px;}
.ls39{letter-spacing:-0.432000px;}
.ls4c{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.399000px;}
.ls2d{letter-spacing:-0.396000px;}
.ls38{letter-spacing:-0.378000px;}
.ls53{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.342000px;}
.ls20{letter-spacing:-0.330000px;}
.ls55{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.285000px;}
.ls2c{letter-spacing:-0.264000px;}
.ls4b{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.228000px;}
.ls3b{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.198000px;}
.ls51{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.171000px;}
.ls1f{letter-spacing:-0.132000px;}
.ls54{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.114000px;}
.ls2f{letter-spacing:-0.066000px;}
.ls59{letter-spacing:-0.060000px;}
.lsf{letter-spacing:-0.057000px;}
.ls7{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.023400px;}
.ls30{letter-spacing:0.049200px;}
.ls37{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.057000px;}
.ls47{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.066000px;}
.ls7b{letter-spacing:0.074400px;}
.ls69{letter-spacing:0.090000px;}
.ls26{letter-spacing:0.093600px;}
.ls31{letter-spacing:0.100200px;}
.ls68{letter-spacing:0.106800px;}
.ls34{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.114000px;}
.ls4a{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.132000px;}
.ls75{letter-spacing:0.169800px;}
.ls10{letter-spacing:0.171000px;}
.ls44{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.198000px;}
.ls76{letter-spacing:0.208800px;}
.ls35{letter-spacing:0.216000px;}
.ls77{letter-spacing:0.225000px;}
.ls43{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.247500px;}
.ls2a{letter-spacing:0.264000px;}
.ls6c{letter-spacing:0.268200px;}
.ls1a{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.285000px;}
.ls49{letter-spacing:0.300000px;}
.ls83{letter-spacing:0.303600px;}
.ls74{letter-spacing:0.315000px;}
.ls73{letter-spacing:0.315600px;}
.ls27{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.342000px;}
.ls7a{letter-spacing:0.349800px;}
.ls61{letter-spacing:0.360000px;}
.ls79{letter-spacing:0.360600px;}
.ls78{letter-spacing:0.361800px;}
.ls28{letter-spacing:0.370200px;}
.ls3e{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.399000px;}
.ls72{letter-spacing:0.405000px;}
.ls71{letter-spacing:0.409800px;}
.ls5e{letter-spacing:0.420000px;}
.ls29{letter-spacing:0.462000px;}
.ls56{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.513000px;}
.ls14{letter-spacing:0.528000px;}
.ls5d{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.570000px;}
.ls70{letter-spacing:0.585000px;}
.ls17{letter-spacing:0.594000px;}
.ls45{letter-spacing:0.600000px;}
.ls6f{letter-spacing:0.602400px;}
.ls6d{letter-spacing:0.603000px;}
.ls6e{letter-spacing:0.603600px;}
.ls11{letter-spacing:0.627000px;}
.ls25{letter-spacing:0.660000px;}
.ls50{letter-spacing:0.720000px;}
.ls3d{letter-spacing:0.726000px;}
.ls80{letter-spacing:0.738000px;}
.ls46{letter-spacing:0.780000px;}
.ls84{letter-spacing:0.789600px;}
.ls32{letter-spacing:0.792000px;}
.ls13{letter-spacing:0.798000px;}
.ls2b{letter-spacing:0.810000px;}
.ls48{letter-spacing:0.840000px;}
.ls12{letter-spacing:0.855000px;}
.ls3f{letter-spacing:0.858000px;}
.ls52{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912600px;}
.ls36{letter-spacing:0.918000px;}
.ls40{letter-spacing:0.924000px;}
.ls5f{letter-spacing:0.960000px;}
.ls64{letter-spacing:0.990000px;}
.ls82{letter-spacing:0.997200px;}
.ls67{letter-spacing:1.020000px;}
.ls65{letter-spacing:1.030200px;}
.ls66{letter-spacing:1.035000px;}
.ls33{letter-spacing:1.056000px;}
.ls62{letter-spacing:1.080000px;}
.ls42{letter-spacing:1.122000px;}
.ls7f{letter-spacing:1.125000px;}
.ls7d{letter-spacing:1.140000px;}
.ls7e{letter-spacing:1.146000px;}
.ls7c{letter-spacing:1.146600px;}
.ls24{letter-spacing:1.188000px;}
.ls58{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.440000px;}
.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;}
}
.ws28{word-spacing:-16.566000px;}
.wsb{word-spacing:-15.390000px;}
.ws74{word-spacing:-15.240000px;}
.ws6c{word-spacing:-15.000000px;}
.ws7a{word-spacing:-14.580000px;}
.wse{word-spacing:-13.770000px;}
.wsc{word-spacing:-12.622500px;}
.wsd{word-spacing:-12.375000px;}
.ws6e{word-spacing:-12.285000px;}
.wsa{word-spacing:-12.240000px;}
.ws73{word-spacing:-12.150000px;}
.ws65{word-spacing:-12.060000px;}
.ws75{word-spacing:-11.835000px;}
.ws76{word-spacing:-11.655000px;}
.ws7b{word-spacing:-11.610000px;}
.ws77{word-spacing:-11.565000px;}
.ws79{word-spacing:-11.475000px;}
.ws78{word-spacing:-11.430000px;}
.ws6f{word-spacing:-11.340000px;}
.ws6d{word-spacing:-11.250000px;}
.ws27{word-spacing:-10.725000px;}
.ws8{word-spacing:-2.166000px;}
.ws15{word-spacing:-0.858000px;}
.ws12{word-spacing:-0.792000px;}
.ws47{word-spacing:-0.780000px;}
.ws1{word-spacing:-0.741000px;}
.ws4a{word-spacing:-0.726000px;}
.wsf{word-spacing:-0.720000px;}
.ws2c{word-spacing:-0.702000px;}
.ws3{word-spacing:-0.684000px;}
.ws40{word-spacing:-0.660000px;}
.ws2e{word-spacing:-0.648000px;}
.ws37{word-spacing:-0.594000px;}
.ws6{word-spacing:-0.570000px;}
.ws7d{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.528000px;}
.ws60{word-spacing:-0.480000px;}
.ws29{word-spacing:-0.462000px;}
.ws24{word-spacing:-0.432000px;}
.ws64{word-spacing:-0.420000px;}
.ws4{word-spacing:-0.399000px;}
.ws20{word-spacing:-0.396000px;}
.ws4e{word-spacing:-0.360000px;}
.ws17{word-spacing:-0.330000px;}
.ws55{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.264000px;}
.ws5f{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.198000px;}
.ws56{word-spacing:-0.180000px;}
.ws3a{word-spacing:-0.132000px;}
.ws16{word-spacing:-0.066000px;}
.ws62{word-spacing:-0.060000px;}
.ws2d{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws31{word-spacing:0.066000px;}
.ws43{word-spacing:0.120000px;}
.ws3c{word-spacing:0.132000px;}
.ws7{word-spacing:0.171000px;}
.ws46{word-spacing:0.180000px;}
.ws39{word-spacing:0.198000px;}
.ws7e{word-spacing:0.240000px;}
.ws1f{word-spacing:0.264000px;}
.ws49{word-spacing:0.300000px;}
.ws3d{word-spacing:0.330000px;}
.ws48{word-spacing:0.360000px;}
.ws33{word-spacing:0.396000px;}
.ws6b{word-spacing:0.450000px;}
.ws34{word-spacing:0.462000px;}
.ws5d{word-spacing:0.480000px;}
.ws30{word-spacing:0.528000px;}
.ws61{word-spacing:0.540000px;}
.ws3f{word-spacing:0.594000px;}
.ws4d{word-spacing:0.600000px;}
.ws25{word-spacing:0.648000px;}
.ws44{word-spacing:0.660000px;}
.ws54{word-spacing:0.720000px;}
.ws3b{word-spacing:0.726000px;}
.ws45{word-spacing:0.780000px;}
.ws52{word-spacing:0.792000px;}
.ws63{word-spacing:0.840000px;}
.ws1e{word-spacing:0.858000px;}
.ws18{word-spacing:0.924000px;}
.ws7c{word-spacing:0.960000px;}
.ws21{word-spacing:0.990000px;}
.ws58{word-spacing:1.020000px;}
.ws5{word-spacing:1.026000px;}
.ws36{word-spacing:1.056000px;}
.ws51{word-spacing:1.080000px;}
.ws2f{word-spacing:1.122000px;}
.ws5c{word-spacing:1.200000px;}
.ws23{word-spacing:1.254000px;}
.ws5e{word-spacing:1.260000px;}
.ws1b{word-spacing:1.320000px;}
.ws19{word-spacing:1.350000px;}
.ws9{word-spacing:1.368000px;}
.ws2a{word-spacing:1.386000px;}
.ws2{word-spacing:1.425000px;}
.ws41{word-spacing:1.452000px;}
.ws42{word-spacing:1.500000px;}
.ws1c{word-spacing:1.518000px;}
.ws50{word-spacing:1.560000px;}
.ws4b{word-spacing:1.584000px;}
.ws26{word-spacing:1.620000px;}
.ws13{word-spacing:1.650000px;}
.ws10{word-spacing:1.653000px;}
.ws4c{word-spacing:1.680000px;}
.ws32{word-spacing:1.716000px;}
.ws71{word-spacing:1.740000px;}
.ws11{word-spacing:1.782000px;}
.ws4f{word-spacing:1.860000px;}
.ws14{word-spacing:1.914000px;}
.ws5a{word-spacing:1.920000px;}
.ws70{word-spacing:1.980000px;}
.ws59{word-spacing:2.046000px;}
.ws72{word-spacing:2.100000px;}
.ws38{word-spacing:2.112000px;}
.ws2b{word-spacing:2.178000px;}
.ws57{word-spacing:2.244000px;}
.ws5b{word-spacing:2.280000px;}
.ws1d{word-spacing:2.310000px;}
.ws53{word-spacing:2.340000px;}
.ws35{word-spacing:2.376000px;}
.ws6a{word-spacing:301.249200px;}
.ws67{word-spacing:306.946200px;}
.ws66{word-spacing:313.899000px;}
.ws69{word-spacing:576.790800px;}
.ws68{word-spacing:629.152800px;}
._f{margin-left:-958.865400px;}
._9{margin-left:-16.831800px;}
._a{margin-left:-4.800000px;}
._5{margin-left:-3.744000px;}
._0{margin-left:-2.016000px;}
._3{margin-left:-1.005000px;}
._2{width:1.604400px;}
._e{width:2.932800px;}
._10{width:18.060000px;}
._6{width:33.858000px;}
._1{width:35.998200px;}
._8{width:37.854000px;}
._7{width:71.472000px;}
._c{width:189.183000px;}
._d{width:349.270800px;}
._b{width:363.138000px;}
._4{width:1101.964800px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:42.000000px;}
.fs6{font-size:42.900000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:89.291250px;}
.yf7{bottom:90.360300px;}
.y7c{bottom:91.417350px;}
.y185{bottom:92.480400px;}
.y119{bottom:92.716500px;}
.ydc{bottom:92.728350px;}
.y8b{bottom:92.988150px;}
.y15b{bottom:94.984350px;}
.y198{bottom:95.211000px;}
.y167{bottom:95.238150px;}
.yac{bottom:95.462550px;}
.y25{bottom:95.704800px;}
.y1ee{bottom:95.988150px;}
.y1cb{bottom:96.738150px;}
.y13d{bottom:97.488150px;}
.yb2{bottom:97.978350px;}
.y43{bottom:103.541250px;}
.y7b{bottom:105.667350px;}
.yf6{bottom:107.610300px;}
.y118{bottom:108.466500px;}
.y184{bottom:109.730400px;}
.ydb{bottom:109.978350px;}
.y8a{bottom:110.238150px;}
.y24{bottom:110.704800px;}
.y15a{bottom:110.734200px;}
.y166{bottom:110.988150px;}
.y1ed{bottom:111.738150px;}
.y197{bottom:112.461000px;}
.y1ca{bottom:112.488150px;}
.yab{bottom:112.712700px;}
.yb1{bottom:113.728350px;}
.y13c{bottom:114.738150px;}
.y7a{bottom:119.917350px;}
.y117{bottom:124.216500px;}
.yf5{bottom:124.860300px;}
.y23{bottom:125.704800px;}
.y159{bottom:126.484200px;}
.y165{bottom:126.738150px;}
.yda{bottom:127.228350px;}
.y89{bottom:127.488150px;}
.y1c9{bottom:128.238150px;}
.yb0{bottom:129.478350px;}
.y196{bottom:129.711000px;}
.yaa{bottom:129.962700px;}
.y13b{bottom:131.988150px;}
.y79{bottom:134.167350px;}
.y183{bottom:135.605400px;}
.y116{bottom:139.966500px;}
.y22{bottom:140.704800px;}
.y42{bottom:141.862200px;}
.yf4{bottom:142.110300px;}
.y158{bottom:142.234200px;}
.y164{bottom:142.488150px;}
.y1ec{bottom:143.238150px;}
.y1c8{bottom:143.988150px;}
.yd9{bottom:144.478350px;}
.y88{bottom:144.738150px;}
.yaf{bottom:145.228350px;}
.y195{bottom:146.961000px;}
.ya9{bottom:147.212700px;}
.y78{bottom:148.417350px;}
.y21{bottom:155.704800px;}
.y115{bottom:155.716500px;}
.y13a{bottom:157.863150px;}
.y157{bottom:157.984200px;}
.y163{bottom:158.238150px;}
.y1eb{bottom:158.988150px;}
.y41{bottom:159.112200px;}
.yf3{bottom:159.360300px;}
.y1c7{bottom:159.738150px;}
.yae{bottom:160.978350px;}
.yd8{bottom:161.728350px;}
.y87{bottom:161.988150px;}
.y82{bottom:162.667350px;}
.y194{bottom:164.211000px;}
.y20{bottom:170.704800px;}
.y114{bottom:171.466500px;}
.y156{bottom:173.734200px;}
.y162{bottom:173.988150px;}
.y1ea{bottom:174.738150px;}
.y1c6{bottom:175.488150px;}
.y40{bottom:176.362200px;}
.yf2{bottom:176.610300px;}
.yad{bottom:176.728350px;}
.y81{bottom:176.917350px;}
.y182{bottom:178.730400px;}
.yd7{bottom:178.978350px;}
.y86{bottom:179.238150px;}
.y193{bottom:181.461000px;}
.ya8{bottom:183.596400px;}
.y113{bottom:187.216500px;}
.y155{bottom:189.484200px;}
.y161{bottom:189.738150px;}
.y1e9{bottom:190.488150px;}
.y80{bottom:191.167350px;}
.y1c5{bottom:191.238150px;}
.y3f{bottom:193.612200px;}
.yf1{bottom:193.860300px;}
.y181{bottom:195.980400px;}
.yd6{bottom:196.228350px;}
.y77{bottom:196.488150px;}
.y192{bottom:198.711000px;}
.ya7{bottom:199.346400px;}
.y1f{bottom:200.704800px;}
.y139{bottom:200.988150px;}
.y154{bottom:205.234200px;}
.y7f{bottom:205.417350px;}
.y160{bottom:205.488150px;}
.y1e8{bottom:206.238150px;}
.y1c4{bottom:206.988150px;}
.y3e{bottom:210.862200px;}
.yf0{bottom:211.110300px;}
.y112{bottom:211.470450px;}
.y180{bottom:213.230400px;}
.yd5{bottom:213.478350px;}
.y76{bottom:213.738150px;}
.ya6{bottom:215.096400px;}
.y1e{bottom:215.704800px;}
.y191{bottom:215.961000px;}
.y138{bottom:218.238150px;}
.y7e{bottom:219.667350px;}
.y153{bottom:220.984200px;}
.y15f{bottom:221.238150px;}
.y1e7{bottom:221.988150px;}
.y1c3{bottom:222.738150px;}
.y111{bottom:227.220450px;}
.y3d{bottom:228.112200px;}
.yef{bottom:228.360300px;}
.y17f{bottom:230.480400px;}
.yd4{bottom:230.728350px;}
.ya5{bottom:230.846400px;}
.y75{bottom:230.988150px;}
.y190{bottom:233.211000px;}
.y7d{bottom:233.917350px;}
.y137{bottom:235.488150px;}
.y152{bottom:236.734200px;}
.y15e{bottom:236.988150px;}
.y1e6{bottom:237.738150px;}
.y1c2{bottom:238.488150px;}
.y110{bottom:242.970450px;}
.y3c{bottom:245.362200px;}
.yee{bottom:245.610300px;}
.ya4{bottom:246.596400px;}
.y17e{bottom:247.730400px;}
.yd3{bottom:247.978350px;}
.y74{bottom:248.238150px;}
.y18f{bottom:250.461000px;}
.y1d{bottom:251.704800px;}
.y151{bottom:252.484200px;}
.y136{bottom:252.738150px;}
.y1e5{bottom:253.488150px;}
.y1c1{bottom:254.238150px;}
.y10f{bottom:258.720450px;}
.ya3{bottom:262.346400px;}
.y3b{bottom:262.612200px;}
.yed{bottom:262.860300px;}
.y17d{bottom:264.980400px;}
.yd2{bottom:265.228350px;}
.y73{bottom:265.488150px;}
.y1c{bottom:266.704800px;}
.y18e{bottom:267.711000px;}
.y150{bottom:268.234200px;}
.y15d{bottom:268.488150px;}
.y1e4{bottom:269.238150px;}
.y135{bottom:269.988150px;}
.y10e{bottom:274.470450px;}
.ya2{bottom:278.096400px;}
.y3a{bottom:279.862200px;}
.yec{bottom:280.110300px;}
.yd1{bottom:282.478350px;}
.y72{bottom:282.738150px;}
.y14f{bottom:283.984200px;}
.y15c{bottom:284.238150px;}
.y18d{bottom:284.961000px;}
.y1e3{bottom:284.988150px;}
.y1c0{bottom:285.738150px;}
.y134{bottom:287.238150px;}
.y1b{bottom:287.704800px;}
.y10d{bottom:290.220450px;}
.ya1{bottom:293.846400px;}
.y39{bottom:297.112200px;}
.yeb{bottom:297.360300px;}
.y17c{bottom:299.480400px;}
.yd0{bottom:299.728350px;}
.y14e{bottom:299.734200px;}
.y71{bottom:299.988150px;}
.y1e2{bottom:300.738150px;}
.y1bf{bottom:301.488150px;}
.y18c{bottom:302.211000px;}
.y1a{bottom:302.704800px;}
.y133{bottom:304.488150px;}
.y10c{bottom:305.970450px;}
.ya0{bottom:309.596400px;}
.y38{bottom:314.362200px;}
.y17b{bottom:315.230400px;}
.y14d{bottom:315.484200px;}
.y1e1{bottom:316.488150px;}
.ycf{bottom:316.978350px;}
.y70{bottom:317.238150px;}
.y19{bottom:317.704800px;}
.y18b{bottom:319.461000px;}
.y132{bottom:321.738150px;}
.y9f{bottom:325.346400px;}
.y1be{bottom:325.863150px;}
.y17a{bottom:330.980400px;}
.y14c{bottom:331.234200px;}
.y37{bottom:331.612200px;}
.yea{bottom:331.860300px;}
.y1e0{bottom:332.238150px;}
.y18{bottom:332.704800px;}
.yce{bottom:334.228350px;}
.y6f{bottom:334.488150px;}
.y10b{bottom:336.602400px;}
.y18a{bottom:336.711000px;}
.y131{bottom:338.988150px;}
.y179{bottom:346.730400px;}
.y14b{bottom:346.984200px;}
.ye9{bottom:347.610300px;}
.y17{bottom:347.704800px;}
.y1df{bottom:347.988150px;}
.y36{bottom:348.862200px;}
.y9e{bottom:349.600500px;}
.ycd{bottom:351.478350px;}
.y6e{bottom:351.738150px;}
.y10a{bottom:353.852400px;}
.y189{bottom:353.961000px;}
.y130{bottom:356.238150px;}
.y8d{bottom:360.363150px;}
.y178{bottom:362.480400px;}
.y16{bottom:362.704800px;}
.y14a{bottom:362.734200px;}
.ye8{bottom:363.360300px;}
.y1de{bottom:363.738150px;}
.y9d{bottom:365.350500px;}
.y35{bottom:366.112200px;}
.y6d{bottom:368.988150px;}
.y109{bottom:371.102400px;}
.y188{bottom:371.211000px;}
.y12f{bottom:373.488150px;}
.ycc{bottom:377.353350px;}
.y8c{bottom:377.613150px;}
.y15{bottom:377.704800px;}
.y177{bottom:378.230400px;}
.y149{bottom:378.484200px;}
.ye7{bottom:379.110300px;}
.y1dd{bottom:379.488150px;}
.y9c{bottom:381.100500px;}
.y34{bottom:383.362200px;}
.y6c{bottom:386.238150px;}
.y108{bottom:388.352400px;}
.y187{bottom:388.461000px;}
.y12e{bottom:390.738150px;}
.y14{bottom:392.704800px;}
.y176{bottom:393.980400px;}
.y148{bottom:394.234200px;}
.ycb{bottom:394.603350px;}
.ye6{bottom:394.860300px;}
.y85{bottom:394.863150px;}
.y1dc{bottom:395.238150px;}
.y9b{bottom:396.850500px;}
.y33{bottom:400.612200px;}
.y6b{bottom:403.488150px;}
.y107{bottom:405.602400px;}
.y186{bottom:405.711000px;}
.y13{bottom:407.704800px;}
.y12d{bottom:407.988150px;}
.y175{bottom:409.730400px;}
.y147{bottom:409.984200px;}
.ye5{bottom:410.610300px;}
.y1db{bottom:410.988150px;}
.y9a{bottom:412.600500px;}
.y32{bottom:417.862200px;}
.y6a{bottom:420.738150px;}
.y12{bottom:422.704800px;}
.y106{bottom:422.852400px;}
.y12c{bottom:425.238150px;}
.y174{bottom:425.480400px;}
.ye4{bottom:426.360300px;}
.y1da{bottom:426.738150px;}
.y99{bottom:428.350500px;}
.y146{bottom:434.238150px;}
.y11{bottom:437.704800px;}
.yca{bottom:437.728350px;}
.y69{bottom:437.988150px;}
.y105{bottom:440.102400px;}
.y173{bottom:441.230400px;}
.y12b{bottom:442.488150px;}
.y31{bottom:443.737200px;}
.y98{bottom:444.100500px;}
.y1bd{bottom:444.322650px;}
.ye3{bottom:448.488150px;}
.y145{bottom:449.988150px;}
.y10{bottom:452.704800px;}
.yc9{bottom:454.978350px;}
.y68{bottom:455.238150px;}
.y172{bottom:456.980400px;}
.y104{bottom:457.352400px;}
.y1d9{bottom:458.238150px;}
.y12a{bottom:459.738150px;}
.y97{bottom:459.850500px;}
.ye2{bottom:464.238150px;}
.y1bb{bottom:464.356650px;}
.y144{bottom:465.738150px;}
.yf{bottom:467.704800px;}
.yc8{bottom:472.228350px;}
.y67{bottom:472.488150px;}
.y171{bottom:472.730400px;}
.y1d8{bottom:473.988150px;}
.y103{bottom:474.602400px;}
.y129{bottom:476.988150px;}
.y1ba{bottom:477.856650px;}
.ye1{bottom:479.988150px;}
.y143{bottom:481.488150px;}
.ye{bottom:482.704800px;}
.y96{bottom:484.104300px;}
.y170{bottom:488.480400px;}
.yc7{bottom:489.478350px;}
.y66{bottom:489.738150px;}
.y1bc{bottom:490.134300px;}
.y1b9{bottom:491.356650px;}
.y102{bottom:491.852400px;}
.y128{bottom:494.238150px;}
.ye0{bottom:495.738150px;}
.y142{bottom:497.238150px;}
.yd{bottom:497.704800px;}
.y95{bottom:499.854300px;}
.y16f{bottom:504.230400px;}
.y1b8{bottom:504.856650px;}
.y1d7{bottom:505.488150px;}
.yc6{bottom:506.728350px;}
.y65{bottom:506.988150px;}
.y101{bottom:509.102400px;}
.ydf{bottom:511.488150px;}
.yc{bottom:512.704800px;}
.y141{bottom:512.988150px;}
.y94{bottom:515.604300px;}
.y50{bottom:516.363300px;}
.y1b7{bottom:518.356650px;}
.y16e{bottom:519.980400px;}
.y127{bottom:520.113150px;}
.y1d6{bottom:521.238150px;}
.y4c{bottom:522.363300px;}
.yc5{bottom:523.978350px;}
.y64{bottom:524.238150px;}
.y100{bottom:526.352400px;}
.yde{bottom:527.238150px;}
.yb{bottom:527.704800px;}
.y140{bottom:528.738150px;}
.y93{bottom:531.354300px;}
.y16d{bottom:535.730400px;}
.y1d5{bottom:536.988150px;}
.y4b{bottom:537.363300px;}
.y1b6{bottom:538.872450px;}
.y1b4{bottom:538.996050px;}
.yc4{bottom:541.228350px;}
.y63{bottom:541.488150px;}
.ydd{bottom:542.988150px;}
.yff{bottom:543.602400px;}
.y13f{bottom:544.488150px;}
.y92{bottom:547.104300px;}
.y16c{bottom:551.480400px;}
.y4a{bottom:552.363300px;}
.y1b5{bottom:552.372450px;}
.y1b3{bottom:552.496050px;}
.y1d4{bottom:552.738150px;}
.ya{bottom:557.704800px;}
.y4f{bottom:558.363300px;}
.yc3{bottom:558.478350px;}
.y62{bottom:558.738150px;}
.y13e{bottom:560.238150px;}
.y91{bottom:562.854300px;}
.y126{bottom:563.238150px;}
.y16b{bottom:567.230400px;}
.y1d3{bottom:568.488150px;}
.y49{bottom:573.363300px;}
.y1b2{bottom:573.632250px;}
.yc2{bottom:575.728350px;}
.yfe{bottom:575.734200px;}
.y61{bottom:575.988150px;}
.y90{bottom:578.604300px;}
.y125{bottom:580.488150px;}
.y16a{bottom:582.980400px;}
.y1d2{bottom:584.238150px;}
.y48{bottom:588.363300px;}
.yfd{bottom:591.484200px;}
.yc1{bottom:592.978350px;}
.y60{bottom:593.238150px;}
.y1b1{bottom:594.148050px;}
.y8f{bottom:594.354300px;}
.y4e{bottom:594.363300px;}
.y124{bottom:597.738150px;}
.y1d1{bottom:599.988150px;}
.y47{bottom:603.363300px;}
.yfc{bottom:607.234200px;}
.y1b0{bottom:607.648050px;}
.y4d{bottom:609.363300px;}
.y8e{bottom:610.104300px;}
.y5f{bottom:610.488150px;}
.y123{bottom:614.988150px;}
.y1d0{bottom:615.738150px;}
.yc0{bottom:622.984200px;}
.y46{bottom:624.363300px;}
.y5e{bottom:627.738150px;}
.y1af{bottom:628.163700px;}
.y1ad{bottom:628.287300px;}
.y1cf{bottom:631.488150px;}
.y122{bottom:632.238150px;}
.y9{bottom:636.454800px;}
.ybf{bottom:638.734200px;}
.y1ae{bottom:641.663700px;}
.y1ac{bottom:641.787300px;}
.y5d{bottom:644.988150px;}
.y45{bottom:646.740450px;}
.y1ce{bottom:647.238150px;}
.y121{bottom:649.488150px;}
.y8{bottom:650.704800px;}
.ybe{bottom:654.484200px;}
.y1ab{bottom:662.179500px;}
.y5c{bottom:662.238150px;}
.y1cd{bottom:662.988150px;}
.y120{bottom:666.738150px;}
.ybd{bottom:670.234200px;}
.y1aa{bottom:675.679500px;}
.y1cc{bottom:678.738150px;}
.y5b{bottom:679.488150px;}
.y11f{bottom:683.988150px;}
.ybc{bottom:685.984200px;}
.y30{bottom:693.862200px;}
.yfb{bottom:694.488150px;}
.y1a8{bottom:695.451150px;}
.y5a{bottom:696.738150px;}
.y11e{bottom:701.238150px;}
.ybb{bottom:701.734200px;}
.y1a9{bottom:706.759800px;}
.y2f{bottom:708.862200px;}
.y1a7{bottom:708.951150px;}
.y1a5{bottom:709.074750px;}
.yfa{bottom:710.238150px;}
.y59{bottom:713.988150px;}
.yba{bottom:717.484200px;}
.y11d{bottom:718.488150px;}
.y7{bottom:721.954800px;}
.y1a6{bottom:722.451150px;}
.y1a4{bottom:722.574750px;}
.y84{bottom:722.613150px;}
.yf9{bottom:725.988150px;}
.y2e{bottom:729.862200px;}
.y58{bottom:731.238150px;}
.yb9{bottom:733.234200px;}
.y11c{bottom:735.738150px;}
.y6{bottom:736.204800px;}
.y83{bottom:739.863150px;}
.y1a2{bottom:740.486550px;}
.yf8{bottom:741.738150px;}
.y2d{bottom:744.862200px;}
.y57{bottom:748.488150px;}
.y169{bottom:748.984200px;}
.y11b{bottom:752.988150px;}
.y1a1{bottom:753.986550px;}
.y5{bottom:754.204800px;}
.yb8{bottom:757.488150px;}
.y2c{bottom:759.862200px;}
.y168{bottom:764.734200px;}
.y56{bottom:765.738150px;}
.y1a0{bottom:767.486550px;}
.y1a3{bottom:769.414650px;}
.y11a{bottom:770.238150px;}
.yb7{bottom:773.238150px;}
.y2b{bottom:774.862200px;}
.y55{bottom:782.988150px;}
.y19f{bottom:785.486550px;}
.y19d{bottom:785.610150px;}
.yb6{bottom:788.988150px;}
.y2a{bottom:789.862200px;}
.y19e{bottom:798.986550px;}
.y19c{bottom:799.110150px;}
.y4{bottom:799.204800px;}
.y54{bottom:800.238150px;}
.yb5{bottom:804.738150px;}
.y29{bottom:804.862200px;}
.y53{bottom:817.488150px;}
.y19a{bottom:818.503950px;}
.y28{bottom:819.862200px;}
.yb4{bottom:820.488150px;}
.y3{bottom:823.204800px;}
.y19b{bottom:832.003950px;}
.y52{bottom:834.738150px;}
.y27{bottom:834.862200px;}
.yb3{bottom:836.238150px;}
.y2{bottom:847.204800px;}
.y26{bottom:849.862200px;}
.y51{bottom:851.988150px;}
.y199{bottom:852.144150px;}
.y1{bottom:897.960300px;}
.h15{height:30.702000px;}
.hf{height:32.895000px;}
.he{height:35.088000px;}
.h10{height:39.474000px;}
.h2{height:40.368000px;}
.h8{height:40.757714px;}
.h6{height:40.774000px;}
.h5{height:45.414000px;}
.hc{height:47.193143px;}
.hb{height:47.212000px;}
.h7{height:47.937000px;}
.hd{height:50.460000px;}
.h11{height:54.096000px;}
.ha{height:55.506000px;}
.h9{height:55.878900px;}
.h14{height:56.220000px;}
.h12{height:56.220600px;}
.h13{height:56.670000px;}
.h4{height:60.552000px;}
.h3{height:80.736000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x2{left:95.669250px;}
.xd{left:112.498800px;}
.xb{left:114.246300px;}
.x5{left:118.169250px;}
.xf{left:124.544250px;}
.xa{left:136.565850px;}
.xe{left:140.669250px;}
.x8{left:154.788300px;}
.x9{left:186.993000px;}
.x16{left:235.984350px;}
.x7{left:238.064550px;}
.x10{left:255.165900px;}
.x11{left:296.532750px;}
.x6{left:315.856650px;}
.xc{left:352.894650px;}
.x12{left:414.262350px;}
.x13{left:427.123050px;}
.x1{left:447.534600px;}
.x17{left:448.722600px;}
.x4{left:466.224900px;}
.x3{left:468.681750px;}
.x14{left:501.427650px;}
.x15{left:513.713550px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v5{vertical-align:-6.477333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.885867pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:18.845333pt;}
.ls5b{letter-spacing:-1.114667pt;}
.ls23{letter-spacing:-1.013333pt;}
.ls4f{letter-spacing:-0.906667pt;}
.ls4d{letter-spacing:-0.800000pt;}
.ls5c{letter-spacing:-0.762667pt;}
.ls5a{letter-spacing:-0.704000pt;}
.ls3c{letter-spacing:-0.672000pt;}
.ls1e{letter-spacing:-0.645333pt;}
.ls81{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls4e{letter-spacing:-0.533333pt;}
.ls41{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.506667pt;}
.ls3a{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.469333pt;}
.lsd{letter-spacing:-0.456000pt;}
.ls57{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.410667pt;}
.lsb{letter-spacing:-0.405333pt;}
.ls63{letter-spacing:-0.400000pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls4c{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.354667pt;}
.ls2d{letter-spacing:-0.352000pt;}
.ls38{letter-spacing:-0.336000pt;}
.ls53{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.304000pt;}
.ls20{letter-spacing:-0.293333pt;}
.ls55{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.253333pt;}
.ls2c{letter-spacing:-0.234667pt;}
.ls4b{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.202667pt;}
.ls3b{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.176000pt;}
.ls51{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.152000pt;}
.ls1f{letter-spacing:-0.117333pt;}
.ls54{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.101333pt;}
.ls2f{letter-spacing:-0.058667pt;}
.ls59{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:-0.050667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.020800pt;}
.ls30{letter-spacing:0.043733pt;}
.ls37{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.050667pt;}
.ls47{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.058667pt;}
.ls7b{letter-spacing:0.066133pt;}
.ls69{letter-spacing:0.080000pt;}
.ls26{letter-spacing:0.083200pt;}
.ls31{letter-spacing:0.089067pt;}
.ls68{letter-spacing:0.094933pt;}
.ls34{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.101333pt;}
.ls4a{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.117333pt;}
.ls75{letter-spacing:0.150933pt;}
.ls10{letter-spacing:0.152000pt;}
.ls44{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls76{letter-spacing:0.185600pt;}
.ls35{letter-spacing:0.192000pt;}
.ls77{letter-spacing:0.200000pt;}
.ls43{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.220000pt;}
.ls2a{letter-spacing:0.234667pt;}
.ls6c{letter-spacing:0.238400pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.253333pt;}
.ls49{letter-spacing:0.266667pt;}
.ls83{letter-spacing:0.269867pt;}
.ls74{letter-spacing:0.280000pt;}
.ls73{letter-spacing:0.280533pt;}
.ls27{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.304000pt;}
.ls7a{letter-spacing:0.310933pt;}
.ls61{letter-spacing:0.320000pt;}
.ls79{letter-spacing:0.320533pt;}
.ls78{letter-spacing:0.321600pt;}
.ls28{letter-spacing:0.329067pt;}
.ls3e{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.354667pt;}
.ls72{letter-spacing:0.360000pt;}
.ls71{letter-spacing:0.364267pt;}
.ls5e{letter-spacing:0.373333pt;}
.ls29{letter-spacing:0.410667pt;}
.ls56{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.456000pt;}
.ls14{letter-spacing:0.469333pt;}
.ls5d{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.506667pt;}
.ls70{letter-spacing:0.520000pt;}
.ls17{letter-spacing:0.528000pt;}
.ls45{letter-spacing:0.533333pt;}
.ls6f{letter-spacing:0.535467pt;}
.ls6d{letter-spacing:0.536000pt;}
.ls6e{letter-spacing:0.536533pt;}
.ls11{letter-spacing:0.557333pt;}
.ls25{letter-spacing:0.586667pt;}
.ls50{letter-spacing:0.640000pt;}
.ls3d{letter-spacing:0.645333pt;}
.ls80{letter-spacing:0.656000pt;}
.ls46{letter-spacing:0.693333pt;}
.ls84{letter-spacing:0.701867pt;}
.ls32{letter-spacing:0.704000pt;}
.ls13{letter-spacing:0.709333pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls48{letter-spacing:0.746667pt;}
.ls12{letter-spacing:0.760000pt;}
.ls3f{letter-spacing:0.762667pt;}
.ls52{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.811200pt;}
.ls36{letter-spacing:0.816000pt;}
.ls40{letter-spacing:0.821333pt;}
.ls5f{letter-spacing:0.853333pt;}
.ls64{letter-spacing:0.880000pt;}
.ls82{letter-spacing:0.886400pt;}
.ls67{letter-spacing:0.906667pt;}
.ls65{letter-spacing:0.915733pt;}
.ls66{letter-spacing:0.920000pt;}
.ls33{letter-spacing:0.938667pt;}
.ls62{letter-spacing:0.960000pt;}
.ls42{letter-spacing:0.997333pt;}
.ls7f{letter-spacing:1.000000pt;}
.ls7d{letter-spacing:1.013333pt;}
.ls7e{letter-spacing:1.018667pt;}
.ls7c{letter-spacing:1.019200pt;}
.ls24{letter-spacing:1.056000pt;}
.ls58{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.280000pt;}
.ws28{word-spacing:-14.725333pt;}
.wsb{word-spacing:-13.680000pt;}
.ws74{word-spacing:-13.546667pt;}
.ws6c{word-spacing:-13.333333pt;}
.ws7a{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.240000pt;}
.wsc{word-spacing:-11.220000pt;}
.wsd{word-spacing:-11.000000pt;}
.ws6e{word-spacing:-10.920000pt;}
.wsa{word-spacing:-10.880000pt;}
.ws73{word-spacing:-10.800000pt;}
.ws65{word-spacing:-10.720000pt;}
.ws75{word-spacing:-10.520000pt;}
.ws76{word-spacing:-10.360000pt;}
.ws7b{word-spacing:-10.320000pt;}
.ws77{word-spacing:-10.280000pt;}
.ws79{word-spacing:-10.200000pt;}
.ws78{word-spacing:-10.160000pt;}
.ws6f{word-spacing:-10.080000pt;}
.ws6d{word-spacing:-10.000000pt;}
.ws27{word-spacing:-9.533333pt;}
.ws8{word-spacing:-1.925333pt;}
.ws15{word-spacing:-0.762667pt;}
.ws12{word-spacing:-0.704000pt;}
.ws47{word-spacing:-0.693333pt;}
.ws1{word-spacing:-0.658667pt;}
.ws4a{word-spacing:-0.645333pt;}
.wsf{word-spacing:-0.640000pt;}
.ws2c{word-spacing:-0.624000pt;}
.ws3{word-spacing:-0.608000pt;}
.ws40{word-spacing:-0.586667pt;}
.ws2e{word-spacing:-0.576000pt;}
.ws37{word-spacing:-0.528000pt;}
.ws6{word-spacing:-0.506667pt;}
.ws7d{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.469333pt;}
.ws60{word-spacing:-0.426667pt;}
.ws29{word-spacing:-0.410667pt;}
.ws24{word-spacing:-0.384000pt;}
.ws64{word-spacing:-0.373333pt;}
.ws4{word-spacing:-0.354667pt;}
.ws20{word-spacing:-0.352000pt;}
.ws4e{word-spacing:-0.320000pt;}
.ws17{word-spacing:-0.293333pt;}
.ws55{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.234667pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.176000pt;}
.ws56{word-spacing:-0.160000pt;}
.ws3a{word-spacing:-0.117333pt;}
.ws16{word-spacing:-0.058667pt;}
.ws62{word-spacing:-0.053333pt;}
.ws2d{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws31{word-spacing:0.058667pt;}
.ws43{word-spacing:0.106667pt;}
.ws3c{word-spacing:0.117333pt;}
.ws7{word-spacing:0.152000pt;}
.ws46{word-spacing:0.160000pt;}
.ws39{word-spacing:0.176000pt;}
.ws7e{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.234667pt;}
.ws49{word-spacing:0.266667pt;}
.ws3d{word-spacing:0.293333pt;}
.ws48{word-spacing:0.320000pt;}
.ws33{word-spacing:0.352000pt;}
.ws6b{word-spacing:0.400000pt;}
.ws34{word-spacing:0.410667pt;}
.ws5d{word-spacing:0.426667pt;}
.ws30{word-spacing:0.469333pt;}
.ws61{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.528000pt;}
.ws4d{word-spacing:0.533333pt;}
.ws25{word-spacing:0.576000pt;}
.ws44{word-spacing:0.586667pt;}
.ws54{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.645333pt;}
.ws45{word-spacing:0.693333pt;}
.ws52{word-spacing:0.704000pt;}
.ws63{word-spacing:0.746667pt;}
.ws1e{word-spacing:0.762667pt;}
.ws18{word-spacing:0.821333pt;}
.ws7c{word-spacing:0.853333pt;}
.ws21{word-spacing:0.880000pt;}
.ws58{word-spacing:0.906667pt;}
.ws5{word-spacing:0.912000pt;}
.ws36{word-spacing:0.938667pt;}
.ws51{word-spacing:0.960000pt;}
.ws2f{word-spacing:0.997333pt;}
.ws5c{word-spacing:1.066667pt;}
.ws23{word-spacing:1.114667pt;}
.ws5e{word-spacing:1.120000pt;}
.ws1b{word-spacing:1.173333pt;}
.ws19{word-spacing:1.200000pt;}
.ws9{word-spacing:1.216000pt;}
.ws2a{word-spacing:1.232000pt;}
.ws2{word-spacing:1.266667pt;}
.ws41{word-spacing:1.290667pt;}
.ws42{word-spacing:1.333333pt;}
.ws1c{word-spacing:1.349333pt;}
.ws50{word-spacing:1.386667pt;}
.ws4b{word-spacing:1.408000pt;}
.ws26{word-spacing:1.440000pt;}
.ws13{word-spacing:1.466667pt;}
.ws10{word-spacing:1.469333pt;}
.ws4c{word-spacing:1.493333pt;}
.ws32{word-spacing:1.525333pt;}
.ws71{word-spacing:1.546667pt;}
.ws11{word-spacing:1.584000pt;}
.ws4f{word-spacing:1.653333pt;}
.ws14{word-spacing:1.701333pt;}
.ws5a{word-spacing:1.706667pt;}
.ws70{word-spacing:1.760000pt;}
.ws59{word-spacing:1.818667pt;}
.ws72{word-spacing:1.866667pt;}
.ws38{word-spacing:1.877333pt;}
.ws2b{word-spacing:1.936000pt;}
.ws57{word-spacing:1.994667pt;}
.ws5b{word-spacing:2.026667pt;}
.ws1d{word-spacing:2.053333pt;}
.ws53{word-spacing:2.080000pt;}
.ws35{word-spacing:2.112000pt;}
.ws6a{word-spacing:267.777067pt;}
.ws67{word-spacing:272.841067pt;}
.ws66{word-spacing:279.021333pt;}
.ws69{word-spacing:512.702933pt;}
.ws68{word-spacing:559.246933pt;}
._f{margin-left:-852.324800pt;}
._9{margin-left:-14.961600pt;}
._a{margin-left:-4.266667pt;}
._5{margin-left:-3.328000pt;}
._0{margin-left:-1.792000pt;}
._3{margin-left:-0.893333pt;}
._2{width:1.426133pt;}
._e{width:2.606933pt;}
._10{width:16.053333pt;}
._6{width:30.096000pt;}
._1{width:31.998400pt;}
._8{width:33.648000pt;}
._7{width:63.530667pt;}
._c{width:168.162667pt;}
._d{width:310.462933pt;}
._b{width:322.789333pt;}
._4{width:979.524267pt;}
.fsa{font-size:37.333333pt;}
.fs6{font-size:38.133333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:79.370000pt;}
.yf7{bottom:80.320267pt;}
.y7c{bottom:81.259867pt;}
.y185{bottom:82.204800pt;}
.y119{bottom:82.414667pt;}
.ydc{bottom:82.425200pt;}
.y8b{bottom:82.656133pt;}
.y15b{bottom:84.430533pt;}
.y198{bottom:84.632000pt;}
.y167{bottom:84.656133pt;}
.yac{bottom:84.855600pt;}
.y25{bottom:85.070933pt;}
.y1ee{bottom:85.322800pt;}
.y1cb{bottom:85.989467pt;}
.y13d{bottom:86.656133pt;}
.yb2{bottom:87.091867pt;}
.y43{bottom:92.036667pt;}
.y7b{bottom:93.926533pt;}
.yf6{bottom:95.653600pt;}
.y118{bottom:96.414667pt;}
.y184{bottom:97.538133pt;}
.ydb{bottom:97.758533pt;}
.y8a{bottom:97.989467pt;}
.y24{bottom:98.404267pt;}
.y15a{bottom:98.430400pt;}
.y166{bottom:98.656133pt;}
.y1ed{bottom:99.322800pt;}
.y197{bottom:99.965333pt;}
.y1ca{bottom:99.989467pt;}
.yab{bottom:100.189067pt;}
.yb1{bottom:101.091867pt;}
.y13c{bottom:101.989467pt;}
.y7a{bottom:106.593200pt;}
.y117{bottom:110.414667pt;}
.yf5{bottom:110.986933pt;}
.y23{bottom:111.737600pt;}
.y159{bottom:112.430400pt;}
.y165{bottom:112.656133pt;}
.yda{bottom:113.091867pt;}
.y89{bottom:113.322800pt;}
.y1c9{bottom:113.989467pt;}
.yb0{bottom:115.091867pt;}
.y196{bottom:115.298667pt;}
.yaa{bottom:115.522400pt;}
.y13b{bottom:117.322800pt;}
.y79{bottom:119.259867pt;}
.y183{bottom:120.538133pt;}
.y116{bottom:124.414667pt;}
.y22{bottom:125.070933pt;}
.y42{bottom:126.099733pt;}
.yf4{bottom:126.320267pt;}
.y158{bottom:126.430400pt;}
.y164{bottom:126.656133pt;}
.y1ec{bottom:127.322800pt;}
.y1c8{bottom:127.989467pt;}
.yd9{bottom:128.425200pt;}
.y88{bottom:128.656133pt;}
.yaf{bottom:129.091867pt;}
.y195{bottom:130.632000pt;}
.ya9{bottom:130.855733pt;}
.y78{bottom:131.926533pt;}
.y21{bottom:138.404267pt;}
.y115{bottom:138.414667pt;}
.y13a{bottom:140.322800pt;}
.y157{bottom:140.430400pt;}
.y163{bottom:140.656133pt;}
.y1eb{bottom:141.322800pt;}
.y41{bottom:141.433067pt;}
.yf3{bottom:141.653600pt;}
.y1c7{bottom:141.989467pt;}
.yae{bottom:143.091867pt;}
.yd8{bottom:143.758533pt;}
.y87{bottom:143.989467pt;}
.y82{bottom:144.593200pt;}
.y194{bottom:145.965333pt;}
.y20{bottom:151.737600pt;}
.y114{bottom:152.414667pt;}
.y156{bottom:154.430400pt;}
.y162{bottom:154.656133pt;}
.y1ea{bottom:155.322800pt;}
.y1c6{bottom:155.989467pt;}
.y40{bottom:156.766400pt;}
.yf2{bottom:156.986933pt;}
.yad{bottom:157.091867pt;}
.y81{bottom:157.259867pt;}
.y182{bottom:158.871467pt;}
.yd7{bottom:159.091867pt;}
.y86{bottom:159.322800pt;}
.y193{bottom:161.298667pt;}
.ya8{bottom:163.196800pt;}
.y113{bottom:166.414667pt;}
.y155{bottom:168.430400pt;}
.y161{bottom:168.656133pt;}
.y1e9{bottom:169.322800pt;}
.y80{bottom:169.926533pt;}
.y1c5{bottom:169.989467pt;}
.y3f{bottom:172.099733pt;}
.yf1{bottom:172.320267pt;}
.y181{bottom:174.204800pt;}
.yd6{bottom:174.425200pt;}
.y77{bottom:174.656133pt;}
.y192{bottom:176.632000pt;}
.ya7{bottom:177.196800pt;}
.y1f{bottom:178.404267pt;}
.y139{bottom:178.656133pt;}
.y154{bottom:182.430400pt;}
.y7f{bottom:182.593200pt;}
.y160{bottom:182.656133pt;}
.y1e8{bottom:183.322800pt;}
.y1c4{bottom:183.989467pt;}
.y3e{bottom:187.433067pt;}
.yf0{bottom:187.653600pt;}
.y112{bottom:187.973733pt;}
.y180{bottom:189.538133pt;}
.yd5{bottom:189.758533pt;}
.y76{bottom:189.989467pt;}
.ya6{bottom:191.196800pt;}
.y1e{bottom:191.737600pt;}
.y191{bottom:191.965333pt;}
.y138{bottom:193.989467pt;}
.y7e{bottom:195.259867pt;}
.y153{bottom:196.430400pt;}
.y15f{bottom:196.656133pt;}
.y1e7{bottom:197.322800pt;}
.y1c3{bottom:197.989467pt;}
.y111{bottom:201.973733pt;}
.y3d{bottom:202.766400pt;}
.yef{bottom:202.986933pt;}
.y17f{bottom:204.871467pt;}
.yd4{bottom:205.091867pt;}
.ya5{bottom:205.196800pt;}
.y75{bottom:205.322800pt;}
.y190{bottom:207.298667pt;}
.y7d{bottom:207.926533pt;}
.y137{bottom:209.322800pt;}
.y152{bottom:210.430400pt;}
.y15e{bottom:210.656133pt;}
.y1e6{bottom:211.322800pt;}
.y1c2{bottom:211.989467pt;}
.y110{bottom:215.973733pt;}
.y3c{bottom:218.099733pt;}
.yee{bottom:218.320267pt;}
.ya4{bottom:219.196800pt;}
.y17e{bottom:220.204800pt;}
.yd3{bottom:220.425200pt;}
.y74{bottom:220.656133pt;}
.y18f{bottom:222.632000pt;}
.y1d{bottom:223.737600pt;}
.y151{bottom:224.430400pt;}
.y136{bottom:224.656133pt;}
.y1e5{bottom:225.322800pt;}
.y1c1{bottom:225.989467pt;}
.y10f{bottom:229.973733pt;}
.ya3{bottom:233.196800pt;}
.y3b{bottom:233.433067pt;}
.yed{bottom:233.653600pt;}
.y17d{bottom:235.538133pt;}
.yd2{bottom:235.758533pt;}
.y73{bottom:235.989467pt;}
.y1c{bottom:237.070933pt;}
.y18e{bottom:237.965333pt;}
.y150{bottom:238.430400pt;}
.y15d{bottom:238.656133pt;}
.y1e4{bottom:239.322800pt;}
.y135{bottom:239.989467pt;}
.y10e{bottom:243.973733pt;}
.ya2{bottom:247.196800pt;}
.y3a{bottom:248.766400pt;}
.yec{bottom:248.986933pt;}
.yd1{bottom:251.091867pt;}
.y72{bottom:251.322800pt;}
.y14f{bottom:252.430400pt;}
.y15c{bottom:252.656133pt;}
.y18d{bottom:253.298667pt;}
.y1e3{bottom:253.322800pt;}
.y1c0{bottom:253.989467pt;}
.y134{bottom:255.322800pt;}
.y1b{bottom:255.737600pt;}
.y10d{bottom:257.973733pt;}
.ya1{bottom:261.196800pt;}
.y39{bottom:264.099733pt;}
.yeb{bottom:264.320267pt;}
.y17c{bottom:266.204800pt;}
.yd0{bottom:266.425200pt;}
.y14e{bottom:266.430400pt;}
.y71{bottom:266.656133pt;}
.y1e2{bottom:267.322800pt;}
.y1bf{bottom:267.989467pt;}
.y18c{bottom:268.632000pt;}
.y1a{bottom:269.070933pt;}
.y133{bottom:270.656133pt;}
.y10c{bottom:271.973733pt;}
.ya0{bottom:275.196800pt;}
.y38{bottom:279.433067pt;}
.y17b{bottom:280.204800pt;}
.y14d{bottom:280.430400pt;}
.y1e1{bottom:281.322800pt;}
.ycf{bottom:281.758533pt;}
.y70{bottom:281.989467pt;}
.y19{bottom:282.404267pt;}
.y18b{bottom:283.965333pt;}
.y132{bottom:285.989467pt;}
.y9f{bottom:289.196800pt;}
.y1be{bottom:289.656133pt;}
.y17a{bottom:294.204800pt;}
.y14c{bottom:294.430400pt;}
.y37{bottom:294.766400pt;}
.yea{bottom:294.986933pt;}
.y1e0{bottom:295.322800pt;}
.y18{bottom:295.737600pt;}
.yce{bottom:297.091867pt;}
.y6f{bottom:297.322800pt;}
.y10b{bottom:299.202133pt;}
.y18a{bottom:299.298667pt;}
.y131{bottom:301.322800pt;}
.y179{bottom:308.204800pt;}
.y14b{bottom:308.430400pt;}
.ye9{bottom:308.986933pt;}
.y17{bottom:309.070933pt;}
.y1df{bottom:309.322800pt;}
.y36{bottom:310.099733pt;}
.y9e{bottom:310.756000pt;}
.ycd{bottom:312.425200pt;}
.y6e{bottom:312.656133pt;}
.y10a{bottom:314.535467pt;}
.y189{bottom:314.632000pt;}
.y130{bottom:316.656133pt;}
.y8d{bottom:320.322800pt;}
.y178{bottom:322.204800pt;}
.y16{bottom:322.404267pt;}
.y14a{bottom:322.430400pt;}
.ye8{bottom:322.986933pt;}
.y1de{bottom:323.322800pt;}
.y9d{bottom:324.756000pt;}
.y35{bottom:325.433067pt;}
.y6d{bottom:327.989467pt;}
.y109{bottom:329.868800pt;}
.y188{bottom:329.965333pt;}
.y12f{bottom:331.989467pt;}
.ycc{bottom:335.425200pt;}
.y8c{bottom:335.656133pt;}
.y15{bottom:335.737600pt;}
.y177{bottom:336.204800pt;}
.y149{bottom:336.430400pt;}
.ye7{bottom:336.986933pt;}
.y1dd{bottom:337.322800pt;}
.y9c{bottom:338.756000pt;}
.y34{bottom:340.766400pt;}
.y6c{bottom:343.322800pt;}
.y108{bottom:345.202133pt;}
.y187{bottom:345.298667pt;}
.y12e{bottom:347.322800pt;}
.y14{bottom:349.070933pt;}
.y176{bottom:350.204800pt;}
.y148{bottom:350.430400pt;}
.ycb{bottom:350.758533pt;}
.ye6{bottom:350.986933pt;}
.y85{bottom:350.989467pt;}
.y1dc{bottom:351.322800pt;}
.y9b{bottom:352.756000pt;}
.y33{bottom:356.099733pt;}
.y6b{bottom:358.656133pt;}
.y107{bottom:360.535467pt;}
.y186{bottom:360.632000pt;}
.y13{bottom:362.404267pt;}
.y12d{bottom:362.656133pt;}
.y175{bottom:364.204800pt;}
.y147{bottom:364.430400pt;}
.ye5{bottom:364.986933pt;}
.y1db{bottom:365.322800pt;}
.y9a{bottom:366.756000pt;}
.y32{bottom:371.433067pt;}
.y6a{bottom:373.989467pt;}
.y12{bottom:375.737600pt;}
.y106{bottom:375.868800pt;}
.y12c{bottom:377.989467pt;}
.y174{bottom:378.204800pt;}
.ye4{bottom:378.986933pt;}
.y1da{bottom:379.322800pt;}
.y99{bottom:380.756000pt;}
.y146{bottom:385.989467pt;}
.y11{bottom:389.070933pt;}
.yca{bottom:389.091867pt;}
.y69{bottom:389.322800pt;}
.y105{bottom:391.202133pt;}
.y173{bottom:392.204800pt;}
.y12b{bottom:393.322800pt;}
.y31{bottom:394.433067pt;}
.y98{bottom:394.756000pt;}
.y1bd{bottom:394.953467pt;}
.ye3{bottom:398.656133pt;}
.y145{bottom:399.989467pt;}
.y10{bottom:402.404267pt;}
.yc9{bottom:404.425200pt;}
.y68{bottom:404.656133pt;}
.y172{bottom:406.204800pt;}
.y104{bottom:406.535467pt;}
.y1d9{bottom:407.322800pt;}
.y12a{bottom:408.656133pt;}
.y97{bottom:408.756000pt;}
.ye2{bottom:412.656133pt;}
.y1bb{bottom:412.761467pt;}
.y144{bottom:413.989467pt;}
.yf{bottom:415.737600pt;}
.yc8{bottom:419.758533pt;}
.y67{bottom:419.989467pt;}
.y171{bottom:420.204800pt;}
.y1d8{bottom:421.322800pt;}
.y103{bottom:421.868800pt;}
.y129{bottom:423.989467pt;}
.y1ba{bottom:424.761467pt;}
.ye1{bottom:426.656133pt;}
.y143{bottom:427.989467pt;}
.ye{bottom:429.070933pt;}
.y96{bottom:430.314933pt;}
.y170{bottom:434.204800pt;}
.yc7{bottom:435.091867pt;}
.y66{bottom:435.322800pt;}
.y1bc{bottom:435.674933pt;}
.y1b9{bottom:436.761467pt;}
.y102{bottom:437.202133pt;}
.y128{bottom:439.322800pt;}
.ye0{bottom:440.656133pt;}
.y142{bottom:441.989467pt;}
.yd{bottom:442.404267pt;}
.y95{bottom:444.314933pt;}
.y16f{bottom:448.204800pt;}
.y1b8{bottom:448.761467pt;}
.y1d7{bottom:449.322800pt;}
.yc6{bottom:450.425200pt;}
.y65{bottom:450.656133pt;}
.y101{bottom:452.535467pt;}
.ydf{bottom:454.656133pt;}
.yc{bottom:455.737600pt;}
.y141{bottom:455.989467pt;}
.y94{bottom:458.314933pt;}
.y50{bottom:458.989600pt;}
.y1b7{bottom:460.761467pt;}
.y16e{bottom:462.204800pt;}
.y127{bottom:462.322800pt;}
.y1d6{bottom:463.322800pt;}
.y4c{bottom:464.322933pt;}
.yc5{bottom:465.758533pt;}
.y64{bottom:465.989467pt;}
.y100{bottom:467.868800pt;}
.yde{bottom:468.656133pt;}
.yb{bottom:469.070933pt;}
.y140{bottom:469.989467pt;}
.y93{bottom:472.314933pt;}
.y16d{bottom:476.204800pt;}
.y1d5{bottom:477.322800pt;}
.y4b{bottom:477.656267pt;}
.y1b6{bottom:478.997733pt;}
.y1b4{bottom:479.107600pt;}
.yc4{bottom:481.091867pt;}
.y63{bottom:481.322800pt;}
.ydd{bottom:482.656133pt;}
.yff{bottom:483.202133pt;}
.y13f{bottom:483.989467pt;}
.y92{bottom:486.314933pt;}
.y16c{bottom:490.204800pt;}
.y4a{bottom:490.989600pt;}
.y1b5{bottom:490.997733pt;}
.y1b3{bottom:491.107600pt;}
.y1d4{bottom:491.322800pt;}
.ya{bottom:495.737600pt;}
.y4f{bottom:496.322933pt;}
.yc3{bottom:496.425200pt;}
.y62{bottom:496.656133pt;}
.y13e{bottom:497.989467pt;}
.y91{bottom:500.314933pt;}
.y126{bottom:500.656133pt;}
.y16b{bottom:504.204800pt;}
.y1d3{bottom:505.322800pt;}
.y49{bottom:509.656267pt;}
.y1b2{bottom:509.895333pt;}
.yc2{bottom:511.758533pt;}
.yfe{bottom:511.763733pt;}
.y61{bottom:511.989467pt;}
.y90{bottom:514.314933pt;}
.y125{bottom:515.989467pt;}
.y16a{bottom:518.204800pt;}
.y1d2{bottom:519.322800pt;}
.y48{bottom:522.989600pt;}
.yfd{bottom:525.763733pt;}
.yc1{bottom:527.091867pt;}
.y60{bottom:527.322800pt;}
.y1b1{bottom:528.131600pt;}
.y8f{bottom:528.314933pt;}
.y4e{bottom:528.322933pt;}
.y124{bottom:531.322800pt;}
.y1d1{bottom:533.322800pt;}
.y47{bottom:536.322933pt;}
.yfc{bottom:539.763733pt;}
.y1b0{bottom:540.131600pt;}
.y4d{bottom:541.656267pt;}
.y8e{bottom:542.314933pt;}
.y5f{bottom:542.656133pt;}
.y123{bottom:546.656133pt;}
.y1d0{bottom:547.322800pt;}
.yc0{bottom:553.763733pt;}
.y46{bottom:554.989600pt;}
.y5e{bottom:557.989467pt;}
.y1af{bottom:558.367733pt;}
.y1ad{bottom:558.477600pt;}
.y1cf{bottom:561.322800pt;}
.y122{bottom:561.989467pt;}
.y9{bottom:565.737600pt;}
.ybf{bottom:567.763733pt;}
.y1ae{bottom:570.367733pt;}
.y1ac{bottom:570.477600pt;}
.y5d{bottom:573.322800pt;}
.y45{bottom:574.880400pt;}
.y1ce{bottom:575.322800pt;}
.y121{bottom:577.322800pt;}
.y8{bottom:578.404267pt;}
.ybe{bottom:581.763733pt;}
.y1ab{bottom:588.604000pt;}
.y5c{bottom:588.656133pt;}
.y1cd{bottom:589.322800pt;}
.y120{bottom:592.656133pt;}
.ybd{bottom:595.763733pt;}
.y1aa{bottom:600.604000pt;}
.y1cc{bottom:603.322800pt;}
.y5b{bottom:603.989467pt;}
.y11f{bottom:607.989467pt;}
.ybc{bottom:609.763733pt;}
.y30{bottom:616.766400pt;}
.yfb{bottom:617.322800pt;}
.y1a8{bottom:618.178800pt;}
.y5a{bottom:619.322800pt;}
.y11e{bottom:623.322800pt;}
.ybb{bottom:623.763733pt;}
.y1a9{bottom:628.230933pt;}
.y2f{bottom:630.099733pt;}
.y1a7{bottom:630.178800pt;}
.y1a5{bottom:630.288667pt;}
.yfa{bottom:631.322800pt;}
.y59{bottom:634.656133pt;}
.yba{bottom:637.763733pt;}
.y11d{bottom:638.656133pt;}
.y7{bottom:641.737600pt;}
.y1a6{bottom:642.178800pt;}
.y1a4{bottom:642.288667pt;}
.y84{bottom:642.322800pt;}
.yf9{bottom:645.322800pt;}
.y2e{bottom:648.766400pt;}
.y58{bottom:649.989467pt;}
.yb9{bottom:651.763733pt;}
.y11c{bottom:653.989467pt;}
.y6{bottom:654.404267pt;}
.y83{bottom:657.656133pt;}
.y1a2{bottom:658.210267pt;}
.yf8{bottom:659.322800pt;}
.y2d{bottom:662.099733pt;}
.y57{bottom:665.322800pt;}
.y169{bottom:665.763733pt;}
.y11b{bottom:669.322800pt;}
.y1a1{bottom:670.210267pt;}
.y5{bottom:670.404267pt;}
.yb8{bottom:673.322800pt;}
.y2c{bottom:675.433067pt;}
.y168{bottom:679.763733pt;}
.y56{bottom:680.656133pt;}
.y1a0{bottom:682.210267pt;}
.y1a3{bottom:683.924133pt;}
.y11a{bottom:684.656133pt;}
.yb7{bottom:687.322800pt;}
.y2b{bottom:688.766400pt;}
.y55{bottom:695.989467pt;}
.y19f{bottom:698.210267pt;}
.y19d{bottom:698.320133pt;}
.yb6{bottom:701.322800pt;}
.y2a{bottom:702.099733pt;}
.y19e{bottom:710.210267pt;}
.y19c{bottom:710.320133pt;}
.y4{bottom:710.404267pt;}
.y54{bottom:711.322800pt;}
.yb5{bottom:715.322800pt;}
.y29{bottom:715.433067pt;}
.y53{bottom:726.656133pt;}
.y19a{bottom:727.559067pt;}
.y28{bottom:728.766400pt;}
.yb4{bottom:729.322800pt;}
.y3{bottom:731.737600pt;}
.y19b{bottom:739.559067pt;}
.y52{bottom:741.989467pt;}
.y27{bottom:742.099733pt;}
.yb3{bottom:743.322800pt;}
.y2{bottom:753.070933pt;}
.y26{bottom:755.433067pt;}
.y51{bottom:757.322800pt;}
.y199{bottom:757.461467pt;}
.y1{bottom:798.186933pt;}
.h15{height:27.290667pt;}
.hf{height:29.240000pt;}
.he{height:31.189333pt;}
.h10{height:35.088000pt;}
.h2{height:35.882667pt;}
.h8{height:36.229079pt;}
.h6{height:36.243556pt;}
.h5{height:40.368000pt;}
.hc{height:41.949460pt;}
.hb{height:41.966222pt;}
.h7{height:42.610667pt;}
.hd{height:44.853333pt;}
.h11{height:48.085333pt;}
.ha{height:49.338667pt;}
.h9{height:49.670133pt;}
.h14{height:49.973333pt;}
.h12{height:49.973867pt;}
.h13{height:50.373333pt;}
.h4{height:53.824000pt;}
.h3{height:71.765333pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x2{left:85.039333pt;}
.xd{left:99.998933pt;}
.xb{left:101.552267pt;}
.x5{left:105.039333pt;}
.xf{left:110.706000pt;}
.xa{left:121.391867pt;}
.xe{left:125.039333pt;}
.x8{left:137.589600pt;}
.x9{left:166.216000pt;}
.x16{left:209.763867pt;}
.x7{left:211.612933pt;}
.x10{left:226.814133pt;}
.x11{left:263.584667pt;}
.x6{left:280.761467pt;}
.xc{left:313.684133pt;}
.x12{left:368.233200pt;}
.x13{left:379.664933pt;}
.x1{left:397.808533pt;}
.x17{left:398.864533pt;}
.x4{left:414.422133pt;}
.x3{left:416.606000pt;}
.x14{left:445.713467pt;}
.x15{left:456.634267pt;}
}




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