
    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_eb5182e2209993ec1ec3fbc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_d308ac16d8aba1646ca3fe3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_8cc3fc7618ba3335efb8ea07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v4{vertical-align:-16.500000px;}
.v3{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.300000px;}
.v1{vertical-align:16.440000px;}
.ls69{letter-spacing:-2.046000px;}
.ls91{letter-spacing:-1.800000px;}
.ls6a{letter-spacing:-1.782000px;}
.ls7c{letter-spacing:-1.650000px;}
.ls3d{letter-spacing:-1.584000px;}
.ls5d{letter-spacing:-1.518000px;}
.ls6b{letter-spacing:-1.452000px;}
.ls88{letter-spacing:-1.440000px;}
.ls28{letter-spacing:-1.404000px;}
.ls4a{letter-spacing:-1.386000px;}
.ls5a{letter-spacing:-1.350000px;}
.ls57{letter-spacing:-1.320000px;}
.ls4c{letter-spacing:-1.254000px;}
.ls20{letter-spacing:-1.242000px;}
.ls4b{letter-spacing:-1.188000px;}
.ls4f{letter-spacing:-1.134000px;}
.ls49{letter-spacing:-1.122000px;}
.ls3e{letter-spacing:-1.056000px;}
.ls29{letter-spacing:-1.026000px;}
.ls1a{letter-spacing:-0.990000px;}
.ls67{letter-spacing:-0.972000px;}
.ls58{letter-spacing:-0.960000px;}
.ls3a{letter-spacing:-0.940500px;}
.ls38{letter-spacing:-0.924000px;}
.ls2a{letter-spacing:-0.918000px;}
.ls41{letter-spacing:-0.864000px;}
.ls39{letter-spacing:-0.858000px;}
.ls6f{letter-spacing:-0.810000px;}
.ls55{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.756000px;}
.ls1b{letter-spacing:-0.742500px;}
.ls64{letter-spacing:-0.726000px;}
.ls24{letter-spacing:-0.702000px;}
.ls35{letter-spacing:-0.660000px;}
.ls66{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.627000px;}
.ls3f{letter-spacing:-0.594000px;}
.ls68{letter-spacing:-0.540000px;}
.ls37{letter-spacing:-0.528000px;}
.ls3c{letter-spacing:-0.495000px;}
.ls21{letter-spacing:-0.486000px;}
.ls3b{letter-spacing:-0.462000px;}
.ls59{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.399000px;}
.ls1c{letter-spacing:-0.396000px;}
.ls26{letter-spacing:-0.378000px;}
.ls63{letter-spacing:-0.346500px;}
.ls40{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.330000px;}
.ls6d{letter-spacing:-0.324000px;}
.ls4d{letter-spacing:-0.297000px;}
.ls6c{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.285000px;}
.ls22{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.264000px;}
.ls7b{letter-spacing:-0.247500px;}
.ls7d{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.162000px;}
.ls4e{letter-spacing:-0.132000px;}
.ls89{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.114000px;}
.ls42{letter-spacing:-0.108000px;}
.ls73{letter-spacing:-0.096000px;}
.ls8a{letter-spacing:-0.090000px;}
.ls70{letter-spacing:-0.081000px;}
.ls34{letter-spacing:-0.066000px;}
.ls8b{letter-spacing:-0.060000px;}
.lsa{letter-spacing:-0.057000px;}
.ls1f{letter-spacing:-0.054000px;}
.ls72{letter-spacing:-0.049500px;}
.ls1e{letter-spacing:-0.048000px;}
.ls87{letter-spacing:-0.045000px;}
.ls5{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.030000px;}
.ls6e{letter-spacing:0.040500px;}
.ls12{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.114000px;}
.ls82{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.171000px;}
.ls83{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.216000px;}
.ls8e{letter-spacing:0.225000px;}
.ls32{letter-spacing:0.264000px;}
.ls46{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.285000px;}
.ls8c{letter-spacing:0.300000px;}
.ls8d{letter-spacing:0.315000px;}
.ls27{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.330000px;}
.ls60{letter-spacing:0.336000px;}
.ls62{letter-spacing:0.346500px;}
.ls18{letter-spacing:0.378000px;}
.lsc{letter-spacing:0.396000px;}
.ls85{letter-spacing:0.420000px;}
.ls47{letter-spacing:0.432000px;}
.ls86{letter-spacing:0.450000px;}
.ls2{letter-spacing:0.456000px;}
.lsb{letter-spacing:0.462000px;}
.ls84{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.486000px;}
.ls2d{letter-spacing:0.528000px;}
.ls65{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.570000px;}
.ls90{letter-spacing:0.585000px;}
.ls56{letter-spacing:0.594000px;}
.ls8f{letter-spacing:0.600000px;}
.ls48{letter-spacing:0.648000px;}
.ls52{letter-spacing:0.660000px;}
.ls45{letter-spacing:0.726000px;}
.ls30{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.858000px;}
.ls10{letter-spacing:0.924000px;}
.ls81{letter-spacing:0.945000px;}
.ls31{letter-spacing:0.990000px;}
.ls16{letter-spacing:1.026000px;}
.ls53{letter-spacing:1.056000px;}
.ls5f{letter-spacing:1.122000px;}
.ls13{letter-spacing:1.134000px;}
.ls43{letter-spacing:1.188000px;}
.ls71{letter-spacing:1.254000px;}
.ls79{letter-spacing:1.296000px;}
.ls74{letter-spacing:1.320000px;}
.ls75{letter-spacing:1.386000px;}
.ls7e{letter-spacing:1.440000px;}
.ls5c{letter-spacing:1.452000px;}
.ls7f{letter-spacing:1.485000px;}
.ls80{letter-spacing:1.500000px;}
.ls2f{letter-spacing:1.518000px;}
.ls61{letter-spacing:1.584000px;}
.ls7a{letter-spacing:1.620000px;}
.ls50{letter-spacing:1.650000px;}
.ls51{letter-spacing:1.683000px;}
.ls5e{letter-spacing:1.716000px;}
.ls76{letter-spacing:1.980000px;}
.ls54{letter-spacing:14.730000px;}
.ls78{letter-spacing:15.312000px;}
.ls44{letter-spacing:15.510000px;}
.lse{letter-spacing:16.650000px;}
.ls77{letter-spacing:18.414000px;}
.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;}
}
.ws83{word-spacing:-18.216000px;}
.ws78{word-spacing:-18.150000px;}
.ws85{word-spacing:-17.952000px;}
.wsa9{word-spacing:-17.754000px;}
.ws63{word-spacing:-17.688000px;}
.ws93{word-spacing:-17.622000px;}
.ws8a{word-spacing:-17.556000px;}
.ws45{word-spacing:-17.490000px;}
.ws89{word-spacing:-17.424000px;}
.ws8c{word-spacing:-17.358000px;}
.ws86{word-spacing:-17.292000px;}
.ws77{word-spacing:-17.028000px;}
.ws8b{word-spacing:-16.962000px;}
.ws84{word-spacing:-16.830000px;}
.ws46{word-spacing:-16.764000px;}
.ws47{word-spacing:-16.698000px;}
.wsa2{word-spacing:-16.566000px;}
.ws14{word-spacing:-16.500000px;}
.ws48{word-spacing:-16.434000px;}
.wsaa{word-spacing:-16.368000px;}
.ws64{word-spacing:-16.302000px;}
.wsaf{word-spacing:-16.236000px;}
.ws15{word-spacing:-16.170000px;}
.ws9f{word-spacing:-16.104000px;}
.ws4c{word-spacing:-16.038000px;}
.ws95{word-spacing:-15.972000px;}
.ws62{word-spacing:-15.906000px;}
.wsb6{word-spacing:-15.708000px;}
.ws49{word-spacing:-15.642000px;}
.wsd7{word-spacing:-15.600000px;}
.ws92{word-spacing:-15.576000px;}
.wsc3{word-spacing:-15.480000px;}
.wsd0{word-spacing:-15.300000px;}
.ws66{word-spacing:-15.246000px;}
.ws9d{word-spacing:-15.180000px;}
.ws65{word-spacing:-15.114000px;}
.ws9e{word-spacing:-15.048000px;}
.wsb9{word-spacing:-15.000000px;}
.ws82{word-spacing:-14.982000px;}
.wsc4{word-spacing:-14.880000px;}
.ws0{word-spacing:-14.535000px;}
.ws3{word-spacing:-14.478000px;}
.ws2{word-spacing:-14.250000px;}
.ws8e{word-spacing:-14.148000px;}
.ws1d{word-spacing:-13.986000px;}
.wsb1{word-spacing:-13.878000px;}
.ws69{word-spacing:-13.770000px;}
.wsa5{word-spacing:-13.716000px;}
.ws1c{word-spacing:-13.662000px;}
.ws1b{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.500000px;}
.ws97{word-spacing:-13.446000px;}
.wsa7{word-spacing:-13.392000px;}
.wsad{word-spacing:-13.338000px;}
.ws68{word-spacing:-13.284000px;}
.ws1e{word-spacing:-13.230000px;}
.wsd4{word-spacing:-13.200000px;}
.wsa1{word-spacing:-13.176000px;}
.ws98{word-spacing:-12.960000px;}
.wsb0{word-spacing:-12.906000px;}
.ws20{word-spacing:-12.744000px;}
.wsb8{word-spacing:-12.735000px;}
.ws91{word-spacing:-12.721500px;}
.wsb2{word-spacing:-12.636000px;}
.ws21{word-spacing:-12.582000px;}
.ws76{word-spacing:-12.375000px;}
.ws8d{word-spacing:-12.336000px;}
.wsab{word-spacing:-12.325500px;}
.wsb5{word-spacing:-12.127500px;}
.ws67{word-spacing:-12.078000px;}
.ws94{word-spacing:-12.028500px;}
.wsb3{word-spacing:-12.000000px;}
.ws18{word-spacing:-11.952000px;}
.wsac{word-spacing:-11.904000px;}
.wsd6{word-spacing:-11.835000px;}
.wsc0{word-spacing:-11.790000px;}
.wsb7{word-spacing:-11.760000px;}
.wsa0{word-spacing:-11.712000px;}
.wsc2{word-spacing:-11.700000px;}
.ws4d{word-spacing:-11.664000px;}
.ws16{word-spacing:-11.632500px;}
.wscf{word-spacing:-11.565000px;}
.wsd1{word-spacing:-11.475000px;}
.ws4a{word-spacing:-11.434500px;}
.wsbc{word-spacing:-11.430000px;}
.wsba{word-spacing:-11.250000px;}
.wsbb{word-spacing:-11.205000px;}
.wsc7{word-spacing:-11.160000px;}
.ws79{word-spacing:-11.040000px;}
.wsd5{word-spacing:-9.900000px;}
.wsbd{word-spacing:-9.810000px;}
.ws27{word-spacing:-0.858000px;}
.ws50{word-spacing:-0.792000px;}
.ws5c{word-spacing:-0.726000px;}
.wsda{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.684000px;}
.ws56{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.627000px;}
.wscd{word-spacing:-0.600000px;}
.ws2e{word-spacing:-0.594000px;}
.ws12{word-spacing:-0.570000px;}
.ws8f{word-spacing:-0.544500px;}
.ws3b{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.528000px;}
.ws6e{word-spacing:-0.486000px;}
.ws2d{word-spacing:-0.462000px;}
.wsa{word-spacing:-0.456000px;}
.ws7b{word-spacing:-0.396000px;}
.ws1{word-spacing:-0.381000px;}
.ws39{word-spacing:-0.378000px;}
.wscb{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.342000px;}
.ws58{word-spacing:-0.330000px;}
.ws43{word-spacing:-0.324000px;}
.ws3e{word-spacing:-0.270000px;}
.ws5d{word-spacing:-0.264000px;}
.ws80{word-spacing:-0.216000px;}
.ws54{word-spacing:-0.198000px;}
.ws38{word-spacing:-0.162000px;}
.ws6d{word-spacing:-0.148500px;}
.ws6b{word-spacing:-0.132000px;}
.wsd{word-spacing:-0.114000px;}
.ws60{word-spacing:-0.108000px;}
.ws7d{word-spacing:-0.066000px;}
.wsc1{word-spacing:-0.060000px;}
.ws44{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws42{word-spacing:0.054000px;}
.ws57{word-spacing:0.066000px;}
.ws25{word-spacing:0.099000px;}
.wsa8{word-spacing:0.108000px;}
.ws24{word-spacing:0.132000px;}
.ws29{word-spacing:0.148500px;}
.ws36{word-spacing:0.162000px;}
.ws28{word-spacing:0.198000px;}
.ws72{word-spacing:0.216000px;}
.ws7c{word-spacing:0.264000px;}
.ws3c{word-spacing:0.270000px;}
.ws34{word-spacing:0.324000px;}
.ws5f{word-spacing:0.330000px;}
.ws7f{word-spacing:0.346500px;}
.ws33{word-spacing:0.378000px;}
.ws90{word-spacing:0.396000px;}
.ws10{word-spacing:0.399000px;}
.ws2f{word-spacing:0.432000px;}
.ws7e{word-spacing:0.462000px;}
.ws70{word-spacing:0.486000px;}
.ws2a{word-spacing:0.528000px;}
.ws81{word-spacing:0.540000px;}
.ws35{word-spacing:0.594000px;}
.wsdb{word-spacing:0.600000px;}
.ws73{word-spacing:0.648000px;}
.ws59{word-spacing:0.660000px;}
.ws40{word-spacing:0.702000px;}
.ws2c{word-spacing:0.726000px;}
.ws41{word-spacing:0.756000px;}
.ws4e{word-spacing:0.792000px;}
.ws3a{word-spacing:0.810000px;}
.wsb{word-spacing:0.855000px;}
.ws51{word-spacing:0.858000px;}
.ws71{word-spacing:0.864000px;}
.wsdc{word-spacing:0.900000px;}
.ws9{word-spacing:0.912000px;}
.ws37{word-spacing:0.918000px;}
.ws5e{word-spacing:0.924000px;}
.ws26{word-spacing:0.940500px;}
.wscc{word-spacing:0.960000px;}
.wsc{word-spacing:0.969000px;}
.ws61{word-spacing:0.972000px;}
.ws6a{word-spacing:0.990000px;}
.ws6f{word-spacing:1.026000px;}
.ws55{word-spacing:1.056000px;}
.ws9c{word-spacing:1.080000px;}
.wse{word-spacing:1.083000px;}
.ws23{word-spacing:1.122000px;}
.ws3d{word-spacing:1.134000px;}
.ws6{word-spacing:1.140000px;}
.ws32{word-spacing:1.188000px;}
.ws7{word-spacing:1.197000px;}
.wsd8{word-spacing:1.200000px;}
.ws31{word-spacing:1.242000px;}
.ws8{word-spacing:1.254000px;}
.wsd9{word-spacing:1.260000px;}
.ws30{word-spacing:1.296000px;}
.wsf{word-spacing:1.311000px;}
.ws5a{word-spacing:1.320000px;}
.ws74{word-spacing:1.350000px;}
.ws5b{word-spacing:1.386000px;}
.ws52{word-spacing:1.452000px;}
.ws53{word-spacing:1.518000px;}
.ws2b{word-spacing:1.584000px;}
.ws4f{word-spacing:1.650000px;}
.ws88{word-spacing:1.716000px;}
.ws7a{word-spacing:1.848000px;}
.wsca{word-spacing:2.040000px;}
.ws87{word-spacing:2.310000px;}
.wsa6{word-spacing:2.871000px;}
.wsc5{word-spacing:3.105000px;}
.wsc6{word-spacing:3.165000px;}
.wsa3{word-spacing:3.405000px;}
.wsce{word-spacing:3.705000px;}
.wsd2{word-spacing:3.750000px;}
.wsbe{word-spacing:3.765000px;}
.wsc9{word-spacing:3.780000px;}
.wsd3{word-spacing:4.350000px;}
.ws4b{word-spacing:4.411500px;}
.wsae{word-spacing:4.575000px;}
.wsbf{word-spacing:4.665000px;}
.wsa4{word-spacing:4.744500px;}
.ws99{word-spacing:4.752000px;}
.ws9a{word-spacing:5.016000px;}
.wsc8{word-spacing:5.040000px;}
.ws75{word-spacing:5.791500px;}
.wsb4{word-spacing:8.154000px;}
.ws96{word-spacing:9.018000px;}
.ws6c{word-spacing:9.768000px;}
.ws9b{word-spacing:12.672000px;}
.ws17{word-spacing:35.904000px;}
.ws19{word-spacing:36.018000px;}
.ws1f{word-spacing:36.666000px;}
._d{margin-left:-10.890000px;}
._9{margin-left:-8.646000px;}
._a{margin-left:-6.930000px;}
._c{margin-left:-5.856000px;}
._3{margin-left:-4.686000px;}
._6{margin-left:-3.582000px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.152000px;}
._2{width:1.323000px;}
._7{width:2.430000px;}
._b{width:13.068000px;}
._f{width:14.832000px;}
._e{width:30.000000px;}
._4{width:48.504000px;}
._8{width:347.808000px;}
._5{width:1033.272000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:41.208000px;}
.y29{bottom:42.101250px;}
.y5b{bottom:45.771000px;}
.y1a1{bottom:45.807000px;}
.y17b{bottom:45.927000px;}
.y10e{bottom:45.957000px;}
.yad{bottom:46.896000px;}
.y135{bottom:47.130000px;}
.y82{bottom:47.196000px;}
.yf0{bottom:47.205000px;}
.y155{bottom:47.613000px;}
.y1fa{bottom:48.525000px;}
.y1b2{bottom:49.605000px;}
.yc7{bottom:55.464000px;}
.y5a{bottom:60.027000px;}
.y1a0{bottom:60.063000px;}
.y17a{bottom:60.183000px;}
.y10d{bottom:60.213000px;}
.yac{bottom:61.152000px;}
.y134{bottom:61.386000px;}
.y81{bottom:61.452000px;}
.yef{bottom:61.461000px;}
.y154{bottom:61.869000px;}
.y28{bottom:63.105750px;}
.y24{bottom:63.120000px;}
.y1f9{bottom:66.060000px;}
.y1b1{bottom:66.847500px;}
.yc6{bottom:69.720000px;}
.y59{bottom:74.283000px;}
.y19f{bottom:74.319000px;}
.y179{bottom:74.439000px;}
.y10c{bottom:74.469000px;}
.yab{bottom:75.408000px;}
.y133{bottom:75.642000px;}
.y80{bottom:75.708000px;}
.yee{bottom:75.717000px;}
.y153{bottom:76.125000px;}
.y27{bottom:78.111000px;}
.y23{bottom:78.125250px;}
.y1f8{bottom:83.610000px;}
.yc5{bottom:83.976000px;}
.y1b0{bottom:84.090000px;}
.y58{bottom:88.539000px;}
.y19e{bottom:88.575000px;}
.y178{bottom:88.695000px;}
.y10b{bottom:88.725000px;}
.yaa{bottom:89.664000px;}
.y132{bottom:89.898000px;}
.y7f{bottom:89.964000px;}
.yed{bottom:89.973000px;}
.yc4{bottom:98.232000px;}
.y26{bottom:99.115500px;}
.y22{bottom:99.129750px;}
.y1f7{bottom:101.145000px;}
.y1af{bottom:101.332500px;}
.y57{bottom:102.795000px;}
.y19d{bottom:102.831000px;}
.y177{bottom:102.951000px;}
.ya9{bottom:103.920000px;}
.y131{bottom:104.154000px;}
.y7e{bottom:104.220000px;}
.yec{bottom:104.229000px;}
.yc3{bottom:112.488000px;}
.y25{bottom:114.120750px;}
.y21{bottom:114.135000px;}
.y1f6{bottom:116.895000px;}
.y56{bottom:117.051000px;}
.y19c{bottom:117.087000px;}
.y176{bottom:117.207000px;}
.ya8{bottom:118.176000px;}
.y130{bottom:118.410000px;}
.yeb{bottom:118.485000px;}
.y152{bottom:118.575000px;}
.yc2{bottom:126.744000px;}
.y55{bottom:131.307000px;}
.y19b{bottom:131.343000px;}
.y175{bottom:131.463000px;}
.ya7{bottom:132.432000px;}
.y12f{bottom:132.666000px;}
.y1f5{bottom:134.430000px;}
.y10a{bottom:135.630000px;}
.y151{bottom:135.817500px;}
.y2a{bottom:139.140000px;}
.yc1{bottom:141.000000px;}
.y54{bottom:145.563000px;}
.y19a{bottom:145.599000px;}
.y174{bottom:145.719000px;}
.ya6{bottom:146.688000px;}
.y12e{bottom:146.922000px;}
.y1f4{bottom:151.965000px;}
.y7d{bottom:152.820000px;}
.y109{bottom:152.872500px;}
.yea{bottom:153.012000px;}
.y150{bottom:153.060000px;}
.y53{bottom:159.819000px;}
.y199{bottom:159.855000px;}
.y173{bottom:159.951000px;}
.y1d4{bottom:159.975000px;}
.ya5{bottom:160.944000px;}
.y12d{bottom:161.178000px;}
.y1f3{bottom:167.715000px;}
.y7c{bottom:170.062500px;}
.y1bb{bottom:170.070000px;}
.y108{bottom:170.115000px;}
.ye9{bottom:170.254500px;}
.y14f{bottom:170.302500px;}
.y52{bottom:174.075000px;}
.y198{bottom:174.111000px;}
.y172{bottom:174.207000px;}
.ya4{bottom:175.200000px;}
.y12c{bottom:175.434000px;}
.y1f{bottom:184.800000px;}
.y1f2{bottom:185.250000px;}
.y7b{bottom:187.305000px;}
.y1ba{bottom:187.312500px;}
.y107{bottom:187.357500px;}
.yc0{bottom:187.462500px;}
.ye8{bottom:187.497000px;}
.y14e{bottom:187.545000px;}
.y51{bottom:188.331000px;}
.y197{bottom:188.367000px;}
.y171{bottom:188.463000px;}
.ya3{bottom:189.456000px;}
.y12b{bottom:189.690000px;}
.y50{bottom:202.587000px;}
.y196{bottom:202.623000px;}
.y170{bottom:202.719000px;}
.y1f1{bottom:202.785000px;}
.ya2{bottom:203.712000px;}
.y12a{bottom:203.946000px;}
.y7a{bottom:204.547500px;}
.y1b9{bottom:204.555000px;}
.y106{bottom:204.600000px;}
.ybf{bottom:204.705000px;}
.ye7{bottom:204.739500px;}
.y14d{bottom:204.787500px;}
.y1e{bottom:206.138250px;}
.y4f{bottom:216.843000px;}
.y195{bottom:216.879000px;}
.y16f{bottom:216.975000px;}
.ya1{bottom:217.968000px;}
.y129{bottom:218.202000px;}
.y1f0{bottom:220.320000px;}
.y1d{bottom:221.143500px;}
.y79{bottom:221.790000px;}
.y1b8{bottom:221.797500px;}
.y105{bottom:221.842500px;}
.ybe{bottom:221.947500px;}
.ye6{bottom:221.982000px;}
.y14c{bottom:222.030000px;}
.y4e{bottom:231.099000px;}
.y194{bottom:231.135000px;}
.ya0{bottom:232.224000px;}
.y128{bottom:232.458000px;}
.y1ef{bottom:236.070000px;}
.y1c{bottom:236.148750px;}
.y78{bottom:239.032500px;}
.y1b7{bottom:239.040000px;}
.y104{bottom:239.085000px;}
.ybd{bottom:239.190000px;}
.ye5{bottom:239.224500px;}
.y14b{bottom:239.272500px;}
.y4d{bottom:245.355000px;}
.y193{bottom:245.391000px;}
.y9f{bottom:246.480000px;}
.y127{bottom:246.714000px;}
.y1b{bottom:251.154000px;}
.y1ee{bottom:253.605000px;}
.y1b6{bottom:256.282500px;}
.y77{bottom:256.297500px;}
.y103{bottom:256.327500px;}
.ybc{bottom:256.432500px;}
.ye4{bottom:256.467000px;}
.y14a{bottom:256.515000px;}
.y4c{bottom:259.611000px;}
.y192{bottom:259.647000px;}
.y126{bottom:260.970000px;}
.y1a{bottom:266.159250px;}
.y1ed{bottom:269.355000px;}
.y76{bottom:273.540000px;}
.y102{bottom:273.570000px;}
.ybb{bottom:273.675000px;}
.y1d3{bottom:273.690000px;}
.y16e{bottom:273.705000px;}
.ye3{bottom:273.709500px;}
.y1b5{bottom:273.724500px;}
.y149{bottom:273.757500px;}
.y4b{bottom:273.867000px;}
.y191{bottom:273.903000px;}
.y19{bottom:281.164500px;}
.y1ec{bottom:286.890000px;}
.y4a{bottom:288.123000px;}
.y190{bottom:288.159000px;}
.y75{bottom:290.782500px;}
.y101{bottom:290.812500px;}
.y9e{bottom:290.827500px;}
.yba{bottom:290.917500px;}
.y1d2{bottom:290.932500px;}
.y16d{bottom:290.947500px;}
.ye2{bottom:290.952000px;}
.y1b4{bottom:290.967000px;}
.y148{bottom:291.000000px;}
.y18{bottom:296.169750px;}
.y49{bottom:302.379000px;}
.y18f{bottom:302.415000px;}
.y1eb{bottom:304.425000px;}
.y125{bottom:308.032500px;}
.y100{bottom:308.055000px;}
.y9d{bottom:308.070000px;}
.yb9{bottom:308.160000px;}
.y1d1{bottom:308.175000px;}
.y16c{bottom:308.190000px;}
.ye1{bottom:308.194500px;}
.y74{bottom:308.209500px;}
.y147{bottom:308.242500px;}
.y17{bottom:311.175000px;}
.y48{bottom:316.635000px;}
.y18e{bottom:316.671000px;}
.y1ea{bottom:321.960000px;}
.yff{bottom:325.297500px;}
.y9c{bottom:325.312500px;}
.y1ae{bottom:325.357500px;}
.yb8{bottom:325.402500px;}
.y1d0{bottom:325.417500px;}
.y16b{bottom:325.432500px;}
.ye0{bottom:325.437000px;}
.y73{bottom:325.452000px;}
.y146{bottom:325.485000px;}
.y16{bottom:326.180250px;}
.y47{bottom:330.891000px;}
.y18d{bottom:330.927000px;}
.y1e9{bottom:339.495000px;}
.yfe{bottom:342.540000px;}
.y9b{bottom:342.555000px;}
.y1ad{bottom:342.600000px;}
.yb7{bottom:342.645000px;}
.y1cf{bottom:342.660000px;}
.y16a{bottom:342.675000px;}
.ydf{bottom:342.679500px;}
.y72{bottom:342.694500px;}
.y145{bottom:342.727500px;}
.y46{bottom:345.147000px;}
.y18c{bottom:345.183000px;}
.y15{bottom:353.925000px;}
.y1e8{bottom:357.030000px;}
.y45{bottom:359.403000px;}
.y18b{bottom:359.439000px;}
.yfd{bottom:359.782500px;}
.y9a{bottom:359.797500px;}
.y1ac{bottom:359.842500px;}
.yb6{bottom:359.887500px;}
.y1ce{bottom:359.902500px;}
.y169{bottom:359.917500px;}
.yde{bottom:359.922000px;}
.y71{bottom:359.937000px;}
.y144{bottom:359.970000px;}
.y44{bottom:373.659000px;}
.y18a{bottom:373.695000px;}
.y1e7{bottom:374.565000px;}
.y99{bottom:377.040000px;}
.y1ab{bottom:377.085000px;}
.yb5{bottom:377.130000px;}
.y1cd{bottom:377.145000px;}
.y168{bottom:377.160000px;}
.ydd{bottom:377.164500px;}
.y124{bottom:377.172000px;}
.yfc{bottom:377.175000px;}
.y70{bottom:377.179500px;}
.y143{bottom:377.212500px;}
.y14{bottom:385.883250px;}
.y43{bottom:387.915000px;}
.y189{bottom:387.951000px;}
.y1e6{bottom:392.100000px;}
.y98{bottom:394.282500px;}
.y1aa{bottom:394.327500px;}
.yb4{bottom:394.372500px;}
.y1cc{bottom:394.387500px;}
.y167{bottom:394.402500px;}
.ydc{bottom:394.407000px;}
.y123{bottom:394.414500px;}
.yfb{bottom:394.417500px;}
.y6f{bottom:394.422000px;}
.y142{bottom:394.455000px;}
.y42{bottom:402.171000px;}
.y188{bottom:402.207000px;}
.y13{bottom:407.258250px;}
.y1e5{bottom:409.635000px;}
.y1a9{bottom:411.570000px;}
.y97{bottom:411.615000px;}
.y1cb{bottom:411.630000px;}
.y166{bottom:411.645000px;}
.ydb{bottom:411.649500px;}
.y122{bottom:411.657000px;}
.yfa{bottom:411.660000px;}
.y6e{bottom:411.664500px;}
.y141{bottom:411.697500px;}
.y41{bottom:416.427000px;}
.y187{bottom:416.463000px;}
.y12{bottom:422.263500px;}
.y1e4{bottom:425.385000px;}
.y1a8{bottom:428.812500px;}
.y96{bottom:428.857500px;}
.y1ca{bottom:428.872500px;}
.y165{bottom:428.887500px;}
.yda{bottom:428.892000px;}
.y121{bottom:428.899500px;}
.yf9{bottom:428.902500px;}
.y6d{bottom:428.907000px;}
.y140{bottom:428.940000px;}
.y40{bottom:430.683000px;}
.y186{bottom:430.719000px;}
.y11{bottom:437.268750px;}
.y1e3{bottom:442.920000px;}
.y3f{bottom:444.939000px;}
.y185{bottom:444.975000px;}
.y1a7{bottom:446.055000px;}
.y95{bottom:446.100000px;}
.y1c9{bottom:446.115000px;}
.y164{bottom:446.130000px;}
.yd9{bottom:446.134500px;}
.y120{bottom:446.142000px;}
.yf8{bottom:446.145000px;}
.y6c{bottom:446.149500px;}
.y13f{bottom:446.182500px;}
.y10{bottom:452.274000px;}
.y1e2{bottom:458.670000px;}
.y3e{bottom:459.195000px;}
.y1a6{bottom:463.297500px;}
.y94{bottom:463.342500px;}
.y1c8{bottom:463.357500px;}
.y163{bottom:463.372500px;}
.yd8{bottom:463.377000px;}
.y11f{bottom:463.384500px;}
.yf7{bottom:463.387500px;}
.y6b{bottom:463.392000px;}
.y13e{bottom:463.425000px;}
.yf{bottom:467.279250px;}
.y3d{bottom:473.451000px;}
.y1e1{bottom:476.205000px;}
.y1a5{bottom:480.540000px;}
.y93{bottom:480.585000px;}
.y1c7{bottom:480.600000px;}
.y162{bottom:480.615000px;}
.yd7{bottom:480.619500px;}
.y11e{bottom:480.627000px;}
.yf6{bottom:480.630000px;}
.y6a{bottom:480.634500px;}
.y13d{bottom:480.667500px;}
.ye{bottom:482.284500px;}
.y3c{bottom:487.707000px;}
.y1e0{bottom:493.755000px;}
.yd{bottom:497.289750px;}
.y1a4{bottom:497.782500px;}
.y92{bottom:497.827500px;}
.y1c6{bottom:497.842500px;}
.y161{bottom:497.857500px;}
.yd6{bottom:497.862000px;}
.y11d{bottom:497.869500px;}
.yf5{bottom:497.872500px;}
.y69{bottom:497.877000px;}
.y13c{bottom:497.910000px;}
.y20c{bottom:499.890000px;}
.y3b{bottom:501.963000px;}
.y1df{bottom:511.290000px;}
.yc{bottom:512.295000px;}
.y91{bottom:515.070000px;}
.y184{bottom:515.082000px;}
.y1c5{bottom:515.085000px;}
.y160{bottom:515.100000px;}
.yd5{bottom:515.104500px;}
.y11c{bottom:515.112000px;}
.yf4{bottom:515.115000px;}
.y68{bottom:515.119500px;}
.y13b{bottom:515.152500px;}
.y20b{bottom:515.640000px;}
.y3a{bottom:516.219000px;}
.yb{bottom:527.300250px;}
.y1de{bottom:528.825000px;}
.y39{bottom:530.475000px;}
.y90{bottom:532.312500px;}
.y183{bottom:532.324500px;}
.y1c4{bottom:532.327500px;}
.y15f{bottom:532.342500px;}
.yd4{bottom:532.347000px;}
.y11b{bottom:532.354500px;}
.yf3{bottom:532.357500px;}
.y67{bottom:532.362000px;}
.y13a{bottom:532.395000px;}
.y20a{bottom:533.310000px;}
.ya{bottom:542.305500px;}
.y1dd{bottom:544.575000px;}
.y8f{bottom:549.555000px;}
.y182{bottom:549.567000px;}
.y1c3{bottom:549.570000px;}
.y15e{bottom:549.585000px;}
.yd3{bottom:549.589500px;}
.yf2{bottom:549.600000px;}
.y66{bottom:549.604500px;}
.y139{bottom:549.637500px;}
.y209{bottom:550.965000px;}
.y9{bottom:557.310750px;}
.y11a{bottom:558.226500px;}
.y1dc{bottom:562.110000px;}
.y8e{bottom:566.797500px;}
.y181{bottom:566.809500px;}
.y1c2{bottom:566.812500px;}
.y15d{bottom:566.827500px;}
.yd2{bottom:566.832000px;}
.yf1{bottom:566.842500px;}
.y65{bottom:566.847000px;}
.y138{bottom:566.880000px;}
.y208{bottom:568.635000px;}
.y8{bottom:572.316000px;}
.y1a3{bottom:575.476500px;}
.y1db{bottom:579.645000px;}
.y8d{bottom:584.040000px;}
.y180{bottom:584.052000px;}
.y1c1{bottom:584.055000px;}
.y15c{bottom:584.070000px;}
.yd1{bottom:584.074500px;}
.y38{bottom:584.085000px;}
.y64{bottom:584.089500px;}
.y137{bottom:584.122500px;}
.y207{bottom:584.385000px;}
.y1a2{bottom:592.719000px;}
.y1da{bottom:597.180000px;}
.y7{bottom:600.075000px;}
.y8c{bottom:601.282500px;}
.y17f{bottom:601.294500px;}
.y1c0{bottom:601.297500px;}
.y15b{bottom:601.312500px;}
.yd0{bottom:601.317000px;}
.y37{bottom:601.327500px;}
.y63{bottom:601.332000px;}
.y119{bottom:601.357500px;}
.y136{bottom:601.365000px;}
.y206{bottom:602.055000px;}
.y1d9{bottom:612.930000px;}
.y17e{bottom:618.537000px;}
.y1bf{bottom:618.540000px;}
.y15a{bottom:618.555000px;}
.y36{bottom:618.570000px;}
.y62{bottom:618.574500px;}
.yb3{bottom:618.585000px;}
.y118{bottom:618.600000px;}
.y8b{bottom:618.607500px;}
.y205{bottom:619.710000px;}
.ycf{bottom:627.189000px;}
.y1d8{bottom:630.465000px;}
.y204{bottom:635.460000px;}
.y17d{bottom:635.779500px;}
.y1be{bottom:635.782500px;}
.y159{bottom:635.797500px;}
.y35{bottom:635.812500px;}
.y61{bottom:635.817000px;}
.yb2{bottom:635.827500px;}
.y117{bottom:635.842500px;}
.y8a{bottom:635.850000px;}
.y1d7{bottom:648.000000px;}
.y158{bottom:653.040000px;}
.y34{bottom:653.055000px;}
.y60{bottom:653.059500px;}
.yb1{bottom:653.070000px;}
.y116{bottom:653.085000px;}
.y89{bottom:653.092500px;}
.y203{bottom:653.130000px;}
.y17c{bottom:661.651500px;}
.y1d6{bottom:663.750000px;}
.y157{bottom:670.282500px;}
.y33{bottom:670.297500px;}
.y5f{bottom:670.302000px;}
.yb0{bottom:670.312500px;}
.yce{bottom:670.320000px;}
.y115{bottom:670.327500px;}
.y88{bottom:670.335000px;}
.y202{bottom:670.785000px;}
.y6{bottom:674.206500px;}
.y201{bottom:686.535000px;}
.y156{bottom:687.532500px;}
.y32{bottom:687.540000px;}
.y5e{bottom:687.544500px;}
.yaf{bottom:687.555000px;}
.ycd{bottom:687.562500px;}
.y114{bottom:687.570000px;}
.y87{bottom:687.577500px;}
.y5{bottom:689.205000px;}
.y1d5{bottom:692.280000px;}
.y200{bottom:704.205000px;}
.y31{bottom:704.782500px;}
.y5d{bottom:704.787000px;}
.yae{bottom:704.797500px;}
.ycc{bottom:704.805000px;}
.y113{bottom:704.812500px;}
.y86{bottom:704.820000px;}
.y4{bottom:707.955000px;}
.y1b3{bottom:713.416500px;}
.y1ff{bottom:721.860000px;}
.y1bd{bottom:722.029500px;}
.y30{bottom:722.040000px;}
.ycb{bottom:722.047500px;}
.y112{bottom:722.055000px;}
.y85{bottom:722.062500px;}
.y5c{bottom:730.659000px;}
.y1fe{bottom:737.610000px;}
.y2f{bottom:739.282500px;}
.yca{bottom:739.290000px;}
.y111{bottom:739.297500px;}
.y84{bottom:739.305000px;}
.y1bc{bottom:747.901500px;}
.y3{bottom:752.955000px;}
.y1fd{bottom:755.280000px;}
.y2e{bottom:756.525000px;}
.yc9{bottom:756.532500px;}
.y110{bottom:756.540000px;}
.y83{bottom:756.547500px;}
.y1fc{bottom:772.935000px;}
.y10f{bottom:773.782500px;}
.y2d{bottom:773.790000px;}
.y2{bottom:776.955000px;}
.y1fb{bottom:790.605000px;}
.y2c{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y2b{bottom:808.275000px;}
.y20{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.ha{height:58.536000px;}
.hb{height:58.632000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.hd{height:64.020000px;}
.hc{height:65.040000px;}
.h7{height:70.422000px;}
.h8{height:71.394000px;}
.h9{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x9{left:54.915000px;}
.xb{left:76.222500px;}
.xa{left:77.419500px;}
.x5{left:83.882250px;}
.x3{left:103.305000px;}
.x4{left:135.880500px;}
.x6{left:173.928000px;}
.x8{left:273.030000px;}
.x7{left:310.200750px;}
.x2{left:412.515000px;}
@media print{
.v4{vertical-align:-14.666667pt;}
.v3{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.600000pt;}
.v1{vertical-align:14.613333pt;}
.ls69{letter-spacing:-1.818667pt;}
.ls91{letter-spacing:-1.600000pt;}
.ls6a{letter-spacing:-1.584000pt;}
.ls7c{letter-spacing:-1.466667pt;}
.ls3d{letter-spacing:-1.408000pt;}
.ls5d{letter-spacing:-1.349333pt;}
.ls6b{letter-spacing:-1.290667pt;}
.ls88{letter-spacing:-1.280000pt;}
.ls28{letter-spacing:-1.248000pt;}
.ls4a{letter-spacing:-1.232000pt;}
.ls5a{letter-spacing:-1.200000pt;}
.ls57{letter-spacing:-1.173333pt;}
.ls4c{letter-spacing:-1.114667pt;}
.ls20{letter-spacing:-1.104000pt;}
.ls4b{letter-spacing:-1.056000pt;}
.ls4f{letter-spacing:-1.008000pt;}
.ls49{letter-spacing:-0.997333pt;}
.ls3e{letter-spacing:-0.938667pt;}
.ls29{letter-spacing:-0.912000pt;}
.ls1a{letter-spacing:-0.880000pt;}
.ls67{letter-spacing:-0.864000pt;}
.ls58{letter-spacing:-0.853333pt;}
.ls3a{letter-spacing:-0.836000pt;}
.ls38{letter-spacing:-0.821333pt;}
.ls2a{letter-spacing:-0.816000pt;}
.ls41{letter-spacing:-0.768000pt;}
.ls39{letter-spacing:-0.762667pt;}
.ls6f{letter-spacing:-0.720000pt;}
.ls55{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.672000pt;}
.ls1b{letter-spacing:-0.660000pt;}
.ls64{letter-spacing:-0.645333pt;}
.ls24{letter-spacing:-0.624000pt;}
.ls35{letter-spacing:-0.586667pt;}
.ls66{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.557333pt;}
.ls3f{letter-spacing:-0.528000pt;}
.ls68{letter-spacing:-0.480000pt;}
.ls37{letter-spacing:-0.469333pt;}
.ls3c{letter-spacing:-0.440000pt;}
.ls21{letter-spacing:-0.432000pt;}
.ls3b{letter-spacing:-0.410667pt;}
.ls59{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.354667pt;}
.ls1c{letter-spacing:-0.352000pt;}
.ls26{letter-spacing:-0.336000pt;}
.ls63{letter-spacing:-0.308000pt;}
.ls40{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.293333pt;}
.ls6d{letter-spacing:-0.288000pt;}
.ls4d{letter-spacing:-0.264000pt;}
.ls6c{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.253333pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls7b{letter-spacing:-0.220000pt;}
.ls7d{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls4e{letter-spacing:-0.117333pt;}
.ls89{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.101333pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls73{letter-spacing:-0.085333pt;}
.ls8a{letter-spacing:-0.080000pt;}
.ls70{letter-spacing:-0.072000pt;}
.ls34{letter-spacing:-0.058667pt;}
.ls8b{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:-0.050667pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls72{letter-spacing:-0.044000pt;}
.ls1e{letter-spacing:-0.042667pt;}
.ls87{letter-spacing:-0.040000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.026667pt;}
.ls6e{letter-spacing:0.036000pt;}
.ls12{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.101333pt;}
.ls82{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.152000pt;}
.ls83{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls8e{letter-spacing:0.200000pt;}
.ls32{letter-spacing:0.234667pt;}
.ls46{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.253333pt;}
.ls8c{letter-spacing:0.266667pt;}
.ls8d{letter-spacing:0.280000pt;}
.ls27{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.293333pt;}
.ls60{letter-spacing:0.298667pt;}
.ls62{letter-spacing:0.308000pt;}
.ls18{letter-spacing:0.336000pt;}
.lsc{letter-spacing:0.352000pt;}
.ls85{letter-spacing:0.373333pt;}
.ls47{letter-spacing:0.384000pt;}
.ls86{letter-spacing:0.400000pt;}
.ls2{letter-spacing:0.405333pt;}
.lsb{letter-spacing:0.410667pt;}
.ls84{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.432000pt;}
.ls2d{letter-spacing:0.469333pt;}
.ls65{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.506667pt;}
.ls90{letter-spacing:0.520000pt;}
.ls56{letter-spacing:0.528000pt;}
.ls8f{letter-spacing:0.533333pt;}
.ls48{letter-spacing:0.576000pt;}
.ls52{letter-spacing:0.586667pt;}
.ls45{letter-spacing:0.645333pt;}
.ls30{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.762667pt;}
.ls10{letter-spacing:0.821333pt;}
.ls81{letter-spacing:0.840000pt;}
.ls31{letter-spacing:0.880000pt;}
.ls16{letter-spacing:0.912000pt;}
.ls53{letter-spacing:0.938667pt;}
.ls5f{letter-spacing:0.997333pt;}
.ls13{letter-spacing:1.008000pt;}
.ls43{letter-spacing:1.056000pt;}
.ls71{letter-spacing:1.114667pt;}
.ls79{letter-spacing:1.152000pt;}
.ls74{letter-spacing:1.173333pt;}
.ls75{letter-spacing:1.232000pt;}
.ls7e{letter-spacing:1.280000pt;}
.ls5c{letter-spacing:1.290667pt;}
.ls7f{letter-spacing:1.320000pt;}
.ls80{letter-spacing:1.333333pt;}
.ls2f{letter-spacing:1.349333pt;}
.ls61{letter-spacing:1.408000pt;}
.ls7a{letter-spacing:1.440000pt;}
.ls50{letter-spacing:1.466667pt;}
.ls51{letter-spacing:1.496000pt;}
.ls5e{letter-spacing:1.525333pt;}
.ls76{letter-spacing:1.760000pt;}
.ls54{letter-spacing:13.093333pt;}
.ls78{letter-spacing:13.610667pt;}
.ls44{letter-spacing:13.786667pt;}
.lse{letter-spacing:14.800000pt;}
.ls77{letter-spacing:16.368000pt;}
.ws83{word-spacing:-16.192000pt;}
.ws78{word-spacing:-16.133333pt;}
.ws85{word-spacing:-15.957333pt;}
.wsa9{word-spacing:-15.781333pt;}
.ws63{word-spacing:-15.722667pt;}
.ws93{word-spacing:-15.664000pt;}
.ws8a{word-spacing:-15.605333pt;}
.ws45{word-spacing:-15.546667pt;}
.ws89{word-spacing:-15.488000pt;}
.ws8c{word-spacing:-15.429333pt;}
.ws86{word-spacing:-15.370667pt;}
.ws77{word-spacing:-15.136000pt;}
.ws8b{word-spacing:-15.077333pt;}
.ws84{word-spacing:-14.960000pt;}
.ws46{word-spacing:-14.901333pt;}
.ws47{word-spacing:-14.842667pt;}
.wsa2{word-spacing:-14.725333pt;}
.ws14{word-spacing:-14.666667pt;}
.ws48{word-spacing:-14.608000pt;}
.wsaa{word-spacing:-14.549333pt;}
.ws64{word-spacing:-14.490667pt;}
.wsaf{word-spacing:-14.432000pt;}
.ws15{word-spacing:-14.373333pt;}
.ws9f{word-spacing:-14.314667pt;}
.ws4c{word-spacing:-14.256000pt;}
.ws95{word-spacing:-14.197333pt;}
.ws62{word-spacing:-14.138667pt;}
.wsb6{word-spacing:-13.962667pt;}
.ws49{word-spacing:-13.904000pt;}
.wsd7{word-spacing:-13.866667pt;}
.ws92{word-spacing:-13.845333pt;}
.wsc3{word-spacing:-13.760000pt;}
.wsd0{word-spacing:-13.600000pt;}
.ws66{word-spacing:-13.552000pt;}
.ws9d{word-spacing:-13.493333pt;}
.ws65{word-spacing:-13.434667pt;}
.ws9e{word-spacing:-13.376000pt;}
.wsb9{word-spacing:-13.333333pt;}
.ws82{word-spacing:-13.317333pt;}
.wsc4{word-spacing:-13.226667pt;}
.ws0{word-spacing:-12.920000pt;}
.ws3{word-spacing:-12.869333pt;}
.ws2{word-spacing:-12.666667pt;}
.ws8e{word-spacing:-12.576000pt;}
.ws1d{word-spacing:-12.432000pt;}
.wsb1{word-spacing:-12.336000pt;}
.ws69{word-spacing:-12.240000pt;}
.wsa5{word-spacing:-12.192000pt;}
.ws1c{word-spacing:-12.144000pt;}
.ws1b{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws97{word-spacing:-11.952000pt;}
.wsa7{word-spacing:-11.904000pt;}
.wsad{word-spacing:-11.856000pt;}
.ws68{word-spacing:-11.808000pt;}
.ws1e{word-spacing:-11.760000pt;}
.wsd4{word-spacing:-11.733333pt;}
.wsa1{word-spacing:-11.712000pt;}
.ws98{word-spacing:-11.520000pt;}
.wsb0{word-spacing:-11.472000pt;}
.ws20{word-spacing:-11.328000pt;}
.wsb8{word-spacing:-11.320000pt;}
.ws91{word-spacing:-11.308000pt;}
.wsb2{word-spacing:-11.232000pt;}
.ws21{word-spacing:-11.184000pt;}
.ws76{word-spacing:-11.000000pt;}
.ws8d{word-spacing:-10.965333pt;}
.wsab{word-spacing:-10.956000pt;}
.wsb5{word-spacing:-10.780000pt;}
.ws67{word-spacing:-10.736000pt;}
.ws94{word-spacing:-10.692000pt;}
.wsb3{word-spacing:-10.666667pt;}
.ws18{word-spacing:-10.624000pt;}
.wsac{word-spacing:-10.581333pt;}
.wsd6{word-spacing:-10.520000pt;}
.wsc0{word-spacing:-10.480000pt;}
.wsb7{word-spacing:-10.453333pt;}
.wsa0{word-spacing:-10.410667pt;}
.wsc2{word-spacing:-10.400000pt;}
.ws4d{word-spacing:-10.368000pt;}
.ws16{word-spacing:-10.340000pt;}
.wscf{word-spacing:-10.280000pt;}
.wsd1{word-spacing:-10.200000pt;}
.ws4a{word-spacing:-10.164000pt;}
.wsbc{word-spacing:-10.160000pt;}
.wsba{word-spacing:-10.000000pt;}
.wsbb{word-spacing:-9.960000pt;}
.wsc7{word-spacing:-9.920000pt;}
.ws79{word-spacing:-9.813333pt;}
.wsd5{word-spacing:-8.800000pt;}
.wsbd{word-spacing:-8.720000pt;}
.ws27{word-spacing:-0.762667pt;}
.ws50{word-spacing:-0.704000pt;}
.ws5c{word-spacing:-0.645333pt;}
.wsda{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.608000pt;}
.ws56{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.557333pt;}
.wscd{word-spacing:-0.533333pt;}
.ws2e{word-spacing:-0.528000pt;}
.ws12{word-spacing:-0.506667pt;}
.ws8f{word-spacing:-0.484000pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.469333pt;}
.ws6e{word-spacing:-0.432000pt;}
.ws2d{word-spacing:-0.410667pt;}
.wsa{word-spacing:-0.405333pt;}
.ws7b{word-spacing:-0.352000pt;}
.ws1{word-spacing:-0.338667pt;}
.ws39{word-spacing:-0.336000pt;}
.wscb{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.304000pt;}
.ws58{word-spacing:-0.293333pt;}
.ws43{word-spacing:-0.288000pt;}
.ws3e{word-spacing:-0.240000pt;}
.ws5d{word-spacing:-0.234667pt;}
.ws80{word-spacing:-0.192000pt;}
.ws54{word-spacing:-0.176000pt;}
.ws38{word-spacing:-0.144000pt;}
.ws6d{word-spacing:-0.132000pt;}
.ws6b{word-spacing:-0.117333pt;}
.wsd{word-spacing:-0.101333pt;}
.ws60{word-spacing:-0.096000pt;}
.ws7d{word-spacing:-0.058667pt;}
.wsc1{word-spacing:-0.053333pt;}
.ws44{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws42{word-spacing:0.048000pt;}
.ws57{word-spacing:0.058667pt;}
.ws25{word-spacing:0.088000pt;}
.wsa8{word-spacing:0.096000pt;}
.ws24{word-spacing:0.117333pt;}
.ws29{word-spacing:0.132000pt;}
.ws36{word-spacing:0.144000pt;}
.ws28{word-spacing:0.176000pt;}
.ws72{word-spacing:0.192000pt;}
.ws7c{word-spacing:0.234667pt;}
.ws3c{word-spacing:0.240000pt;}
.ws34{word-spacing:0.288000pt;}
.ws5f{word-spacing:0.293333pt;}
.ws7f{word-spacing:0.308000pt;}
.ws33{word-spacing:0.336000pt;}
.ws90{word-spacing:0.352000pt;}
.ws10{word-spacing:0.354667pt;}
.ws2f{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.410667pt;}
.ws70{word-spacing:0.432000pt;}
.ws2a{word-spacing:0.469333pt;}
.ws81{word-spacing:0.480000pt;}
.ws35{word-spacing:0.528000pt;}
.wsdb{word-spacing:0.533333pt;}
.ws73{word-spacing:0.576000pt;}
.ws59{word-spacing:0.586667pt;}
.ws40{word-spacing:0.624000pt;}
.ws2c{word-spacing:0.645333pt;}
.ws41{word-spacing:0.672000pt;}
.ws4e{word-spacing:0.704000pt;}
.ws3a{word-spacing:0.720000pt;}
.wsb{word-spacing:0.760000pt;}
.ws51{word-spacing:0.762667pt;}
.ws71{word-spacing:0.768000pt;}
.wsdc{word-spacing:0.800000pt;}
.ws9{word-spacing:0.810667pt;}
.ws37{word-spacing:0.816000pt;}
.ws5e{word-spacing:0.821333pt;}
.ws26{word-spacing:0.836000pt;}
.wscc{word-spacing:0.853333pt;}
.wsc{word-spacing:0.861333pt;}
.ws61{word-spacing:0.864000pt;}
.ws6a{word-spacing:0.880000pt;}
.ws6f{word-spacing:0.912000pt;}
.ws55{word-spacing:0.938667pt;}
.ws9c{word-spacing:0.960000pt;}
.wse{word-spacing:0.962667pt;}
.ws23{word-spacing:0.997333pt;}
.ws3d{word-spacing:1.008000pt;}
.ws6{word-spacing:1.013333pt;}
.ws32{word-spacing:1.056000pt;}
.ws7{word-spacing:1.064000pt;}
.wsd8{word-spacing:1.066667pt;}
.ws31{word-spacing:1.104000pt;}
.ws8{word-spacing:1.114667pt;}
.wsd9{word-spacing:1.120000pt;}
.ws30{word-spacing:1.152000pt;}
.wsf{word-spacing:1.165333pt;}
.ws5a{word-spacing:1.173333pt;}
.ws74{word-spacing:1.200000pt;}
.ws5b{word-spacing:1.232000pt;}
.ws52{word-spacing:1.290667pt;}
.ws53{word-spacing:1.349333pt;}
.ws2b{word-spacing:1.408000pt;}
.ws4f{word-spacing:1.466667pt;}
.ws88{word-spacing:1.525333pt;}
.ws7a{word-spacing:1.642667pt;}
.wsca{word-spacing:1.813333pt;}
.ws87{word-spacing:2.053333pt;}
.wsa6{word-spacing:2.552000pt;}
.wsc5{word-spacing:2.760000pt;}
.wsc6{word-spacing:2.813333pt;}
.wsa3{word-spacing:3.026667pt;}
.wsce{word-spacing:3.293333pt;}
.wsd2{word-spacing:3.333333pt;}
.wsbe{word-spacing:3.346667pt;}
.wsc9{word-spacing:3.360000pt;}
.wsd3{word-spacing:3.866667pt;}
.ws4b{word-spacing:3.921333pt;}
.wsae{word-spacing:4.066667pt;}
.wsbf{word-spacing:4.146667pt;}
.wsa4{word-spacing:4.217333pt;}
.ws99{word-spacing:4.224000pt;}
.ws9a{word-spacing:4.458667pt;}
.wsc8{word-spacing:4.480000pt;}
.ws75{word-spacing:5.148000pt;}
.wsb4{word-spacing:7.248000pt;}
.ws96{word-spacing:8.016000pt;}
.ws6c{word-spacing:8.682667pt;}
.ws9b{word-spacing:11.264000pt;}
.ws17{word-spacing:31.914667pt;}
.ws19{word-spacing:32.016000pt;}
.ws1f{word-spacing:32.592000pt;}
._d{margin-left:-9.680000pt;}
._9{margin-left:-7.685333pt;}
._a{margin-left:-6.160000pt;}
._c{margin-left:-5.205333pt;}
._3{margin-left:-4.165333pt;}
._6{margin-left:-3.184000pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.176000pt;}
._7{width:2.160000pt;}
._b{width:11.616000pt;}
._f{width:13.184000pt;}
._e{width:26.666667pt;}
._4{width:43.114667pt;}
._8{width:309.162667pt;}
._5{width:918.464000pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:36.629333pt;}
.y29{bottom:37.423333pt;}
.y5b{bottom:40.685333pt;}
.y1a1{bottom:40.717333pt;}
.y17b{bottom:40.824000pt;}
.y10e{bottom:40.850667pt;}
.yad{bottom:41.685333pt;}
.y135{bottom:41.893333pt;}
.y82{bottom:41.952000pt;}
.yf0{bottom:41.960000pt;}
.y155{bottom:42.322667pt;}
.y1fa{bottom:43.133333pt;}
.y1b2{bottom:44.093333pt;}
.yc7{bottom:49.301333pt;}
.y5a{bottom:53.357333pt;}
.y1a0{bottom:53.389333pt;}
.y17a{bottom:53.496000pt;}
.y10d{bottom:53.522667pt;}
.yac{bottom:54.357333pt;}
.y134{bottom:54.565333pt;}
.y81{bottom:54.624000pt;}
.yef{bottom:54.632000pt;}
.y154{bottom:54.994667pt;}
.y28{bottom:56.094000pt;}
.y24{bottom:56.106667pt;}
.y1f9{bottom:58.720000pt;}
.y1b1{bottom:59.420000pt;}
.yc6{bottom:61.973333pt;}
.y59{bottom:66.029333pt;}
.y19f{bottom:66.061333pt;}
.y179{bottom:66.168000pt;}
.y10c{bottom:66.194667pt;}
.yab{bottom:67.029333pt;}
.y133{bottom:67.237333pt;}
.y80{bottom:67.296000pt;}
.yee{bottom:67.304000pt;}
.y153{bottom:67.666667pt;}
.y27{bottom:69.432000pt;}
.y23{bottom:69.444667pt;}
.y1f8{bottom:74.320000pt;}
.yc5{bottom:74.645333pt;}
.y1b0{bottom:74.746667pt;}
.y58{bottom:78.701333pt;}
.y19e{bottom:78.733333pt;}
.y178{bottom:78.840000pt;}
.y10b{bottom:78.866667pt;}
.yaa{bottom:79.701333pt;}
.y132{bottom:79.909333pt;}
.y7f{bottom:79.968000pt;}
.yed{bottom:79.976000pt;}
.yc4{bottom:87.317333pt;}
.y26{bottom:88.102667pt;}
.y22{bottom:88.115333pt;}
.y1f7{bottom:89.906667pt;}
.y1af{bottom:90.073333pt;}
.y57{bottom:91.373333pt;}
.y19d{bottom:91.405333pt;}
.y177{bottom:91.512000pt;}
.ya9{bottom:92.373333pt;}
.y131{bottom:92.581333pt;}
.y7e{bottom:92.640000pt;}
.yec{bottom:92.648000pt;}
.yc3{bottom:99.989333pt;}
.y25{bottom:101.440667pt;}
.y21{bottom:101.453333pt;}
.y1f6{bottom:103.906667pt;}
.y56{bottom:104.045333pt;}
.y19c{bottom:104.077333pt;}
.y176{bottom:104.184000pt;}
.ya8{bottom:105.045333pt;}
.y130{bottom:105.253333pt;}
.yeb{bottom:105.320000pt;}
.y152{bottom:105.400000pt;}
.yc2{bottom:112.661333pt;}
.y55{bottom:116.717333pt;}
.y19b{bottom:116.749333pt;}
.y175{bottom:116.856000pt;}
.ya7{bottom:117.717333pt;}
.y12f{bottom:117.925333pt;}
.y1f5{bottom:119.493333pt;}
.y10a{bottom:120.560000pt;}
.y151{bottom:120.726667pt;}
.y2a{bottom:123.680000pt;}
.yc1{bottom:125.333333pt;}
.y54{bottom:129.389333pt;}
.y19a{bottom:129.421333pt;}
.y174{bottom:129.528000pt;}
.ya6{bottom:130.389333pt;}
.y12e{bottom:130.597333pt;}
.y1f4{bottom:135.080000pt;}
.y7d{bottom:135.840000pt;}
.y109{bottom:135.886667pt;}
.yea{bottom:136.010667pt;}
.y150{bottom:136.053333pt;}
.y53{bottom:142.061333pt;}
.y199{bottom:142.093333pt;}
.y173{bottom:142.178667pt;}
.y1d4{bottom:142.200000pt;}
.ya5{bottom:143.061333pt;}
.y12d{bottom:143.269333pt;}
.y1f3{bottom:149.080000pt;}
.y7c{bottom:151.166667pt;}
.y1bb{bottom:151.173333pt;}
.y108{bottom:151.213333pt;}
.ye9{bottom:151.337333pt;}
.y14f{bottom:151.380000pt;}
.y52{bottom:154.733333pt;}
.y198{bottom:154.765333pt;}
.y172{bottom:154.850667pt;}
.ya4{bottom:155.733333pt;}
.y12c{bottom:155.941333pt;}
.y1f{bottom:164.266667pt;}
.y1f2{bottom:164.666667pt;}
.y7b{bottom:166.493333pt;}
.y1ba{bottom:166.500000pt;}
.y107{bottom:166.540000pt;}
.yc0{bottom:166.633333pt;}
.ye8{bottom:166.664000pt;}
.y14e{bottom:166.706667pt;}
.y51{bottom:167.405333pt;}
.y197{bottom:167.437333pt;}
.y171{bottom:167.522667pt;}
.ya3{bottom:168.405333pt;}
.y12b{bottom:168.613333pt;}
.y50{bottom:180.077333pt;}
.y196{bottom:180.109333pt;}
.y170{bottom:180.194667pt;}
.y1f1{bottom:180.253333pt;}
.ya2{bottom:181.077333pt;}
.y12a{bottom:181.285333pt;}
.y7a{bottom:181.820000pt;}
.y1b9{bottom:181.826667pt;}
.y106{bottom:181.866667pt;}
.ybf{bottom:181.960000pt;}
.ye7{bottom:181.990667pt;}
.y14d{bottom:182.033333pt;}
.y1e{bottom:183.234000pt;}
.y4f{bottom:192.749333pt;}
.y195{bottom:192.781333pt;}
.y16f{bottom:192.866667pt;}
.ya1{bottom:193.749333pt;}
.y129{bottom:193.957333pt;}
.y1f0{bottom:195.840000pt;}
.y1d{bottom:196.572000pt;}
.y79{bottom:197.146667pt;}
.y1b8{bottom:197.153333pt;}
.y105{bottom:197.193333pt;}
.ybe{bottom:197.286667pt;}
.ye6{bottom:197.317333pt;}
.y14c{bottom:197.360000pt;}
.y4e{bottom:205.421333pt;}
.y194{bottom:205.453333pt;}
.ya0{bottom:206.421333pt;}
.y128{bottom:206.629333pt;}
.y1ef{bottom:209.840000pt;}
.y1c{bottom:209.910000pt;}
.y78{bottom:212.473333pt;}
.y1b7{bottom:212.480000pt;}
.y104{bottom:212.520000pt;}
.ybd{bottom:212.613333pt;}
.ye5{bottom:212.644000pt;}
.y14b{bottom:212.686667pt;}
.y4d{bottom:218.093333pt;}
.y193{bottom:218.125333pt;}
.y9f{bottom:219.093333pt;}
.y127{bottom:219.301333pt;}
.y1b{bottom:223.248000pt;}
.y1ee{bottom:225.426667pt;}
.y1b6{bottom:227.806667pt;}
.y77{bottom:227.820000pt;}
.y103{bottom:227.846667pt;}
.ybc{bottom:227.940000pt;}
.ye4{bottom:227.970667pt;}
.y14a{bottom:228.013333pt;}
.y4c{bottom:230.765333pt;}
.y192{bottom:230.797333pt;}
.y126{bottom:231.973333pt;}
.y1a{bottom:236.586000pt;}
.y1ed{bottom:239.426667pt;}
.y76{bottom:243.146667pt;}
.y102{bottom:243.173333pt;}
.ybb{bottom:243.266667pt;}
.y1d3{bottom:243.280000pt;}
.y16e{bottom:243.293333pt;}
.ye3{bottom:243.297333pt;}
.y1b5{bottom:243.310667pt;}
.y149{bottom:243.340000pt;}
.y4b{bottom:243.437333pt;}
.y191{bottom:243.469333pt;}
.y19{bottom:249.924000pt;}
.y1ec{bottom:255.013333pt;}
.y4a{bottom:256.109333pt;}
.y190{bottom:256.141333pt;}
.y75{bottom:258.473333pt;}
.y101{bottom:258.500000pt;}
.y9e{bottom:258.513333pt;}
.yba{bottom:258.593333pt;}
.y1d2{bottom:258.606667pt;}
.y16d{bottom:258.620000pt;}
.ye2{bottom:258.624000pt;}
.y1b4{bottom:258.637333pt;}
.y148{bottom:258.666667pt;}
.y18{bottom:263.262000pt;}
.y49{bottom:268.781333pt;}
.y18f{bottom:268.813333pt;}
.y1eb{bottom:270.600000pt;}
.y125{bottom:273.806667pt;}
.y100{bottom:273.826667pt;}
.y9d{bottom:273.840000pt;}
.yb9{bottom:273.920000pt;}
.y1d1{bottom:273.933333pt;}
.y16c{bottom:273.946667pt;}
.ye1{bottom:273.950667pt;}
.y74{bottom:273.964000pt;}
.y147{bottom:273.993333pt;}
.y17{bottom:276.600000pt;}
.y48{bottom:281.453333pt;}
.y18e{bottom:281.485333pt;}
.y1ea{bottom:286.186667pt;}
.yff{bottom:289.153333pt;}
.y9c{bottom:289.166667pt;}
.y1ae{bottom:289.206667pt;}
.yb8{bottom:289.246667pt;}
.y1d0{bottom:289.260000pt;}
.y16b{bottom:289.273333pt;}
.ye0{bottom:289.277333pt;}
.y73{bottom:289.290667pt;}
.y146{bottom:289.320000pt;}
.y16{bottom:289.938000pt;}
.y47{bottom:294.125333pt;}
.y18d{bottom:294.157333pt;}
.y1e9{bottom:301.773333pt;}
.yfe{bottom:304.480000pt;}
.y9b{bottom:304.493333pt;}
.y1ad{bottom:304.533333pt;}
.yb7{bottom:304.573333pt;}
.y1cf{bottom:304.586667pt;}
.y16a{bottom:304.600000pt;}
.ydf{bottom:304.604000pt;}
.y72{bottom:304.617333pt;}
.y145{bottom:304.646667pt;}
.y46{bottom:306.797333pt;}
.y18c{bottom:306.829333pt;}
.y15{bottom:314.600000pt;}
.y1e8{bottom:317.360000pt;}
.y45{bottom:319.469333pt;}
.y18b{bottom:319.501333pt;}
.yfd{bottom:319.806667pt;}
.y9a{bottom:319.820000pt;}
.y1ac{bottom:319.860000pt;}
.yb6{bottom:319.900000pt;}
.y1ce{bottom:319.913333pt;}
.y169{bottom:319.926667pt;}
.yde{bottom:319.930667pt;}
.y71{bottom:319.944000pt;}
.y144{bottom:319.973333pt;}
.y44{bottom:332.141333pt;}
.y18a{bottom:332.173333pt;}
.y1e7{bottom:332.946667pt;}
.y99{bottom:335.146667pt;}
.y1ab{bottom:335.186667pt;}
.yb5{bottom:335.226667pt;}
.y1cd{bottom:335.240000pt;}
.y168{bottom:335.253333pt;}
.ydd{bottom:335.257333pt;}
.y124{bottom:335.264000pt;}
.yfc{bottom:335.266667pt;}
.y70{bottom:335.270667pt;}
.y143{bottom:335.300000pt;}
.y14{bottom:343.007333pt;}
.y43{bottom:344.813333pt;}
.y189{bottom:344.845333pt;}
.y1e6{bottom:348.533333pt;}
.y98{bottom:350.473333pt;}
.y1aa{bottom:350.513333pt;}
.yb4{bottom:350.553333pt;}
.y1cc{bottom:350.566667pt;}
.y167{bottom:350.580000pt;}
.ydc{bottom:350.584000pt;}
.y123{bottom:350.590667pt;}
.yfb{bottom:350.593333pt;}
.y6f{bottom:350.597333pt;}
.y142{bottom:350.626667pt;}
.y42{bottom:357.485333pt;}
.y188{bottom:357.517333pt;}
.y13{bottom:362.007333pt;}
.y1e5{bottom:364.120000pt;}
.y1a9{bottom:365.840000pt;}
.y97{bottom:365.880000pt;}
.y1cb{bottom:365.893333pt;}
.y166{bottom:365.906667pt;}
.ydb{bottom:365.910667pt;}
.y122{bottom:365.917333pt;}
.yfa{bottom:365.920000pt;}
.y6e{bottom:365.924000pt;}
.y141{bottom:365.953333pt;}
.y41{bottom:370.157333pt;}
.y187{bottom:370.189333pt;}
.y12{bottom:375.345333pt;}
.y1e4{bottom:378.120000pt;}
.y1a8{bottom:381.166667pt;}
.y96{bottom:381.206667pt;}
.y1ca{bottom:381.220000pt;}
.y165{bottom:381.233333pt;}
.yda{bottom:381.237333pt;}
.y121{bottom:381.244000pt;}
.yf9{bottom:381.246667pt;}
.y6d{bottom:381.250667pt;}
.y140{bottom:381.280000pt;}
.y40{bottom:382.829333pt;}
.y186{bottom:382.861333pt;}
.y11{bottom:388.683333pt;}
.y1e3{bottom:393.706667pt;}
.y3f{bottom:395.501333pt;}
.y185{bottom:395.533333pt;}
.y1a7{bottom:396.493333pt;}
.y95{bottom:396.533333pt;}
.y1c9{bottom:396.546667pt;}
.y164{bottom:396.560000pt;}
.yd9{bottom:396.564000pt;}
.y120{bottom:396.570667pt;}
.yf8{bottom:396.573333pt;}
.y6c{bottom:396.577333pt;}
.y13f{bottom:396.606667pt;}
.y10{bottom:402.021333pt;}
.y1e2{bottom:407.706667pt;}
.y3e{bottom:408.173333pt;}
.y1a6{bottom:411.820000pt;}
.y94{bottom:411.860000pt;}
.y1c8{bottom:411.873333pt;}
.y163{bottom:411.886667pt;}
.yd8{bottom:411.890667pt;}
.y11f{bottom:411.897333pt;}
.yf7{bottom:411.900000pt;}
.y6b{bottom:411.904000pt;}
.y13e{bottom:411.933333pt;}
.yf{bottom:415.359333pt;}
.y3d{bottom:420.845333pt;}
.y1e1{bottom:423.293333pt;}
.y1a5{bottom:427.146667pt;}
.y93{bottom:427.186667pt;}
.y1c7{bottom:427.200000pt;}
.y162{bottom:427.213333pt;}
.yd7{bottom:427.217333pt;}
.y11e{bottom:427.224000pt;}
.yf6{bottom:427.226667pt;}
.y6a{bottom:427.230667pt;}
.y13d{bottom:427.260000pt;}
.ye{bottom:428.697333pt;}
.y3c{bottom:433.517333pt;}
.y1e0{bottom:438.893333pt;}
.yd{bottom:442.035333pt;}
.y1a4{bottom:442.473333pt;}
.y92{bottom:442.513333pt;}
.y1c6{bottom:442.526667pt;}
.y161{bottom:442.540000pt;}
.yd6{bottom:442.544000pt;}
.y11d{bottom:442.550667pt;}
.yf5{bottom:442.553333pt;}
.y69{bottom:442.557333pt;}
.y13c{bottom:442.586667pt;}
.y20c{bottom:444.346667pt;}
.y3b{bottom:446.189333pt;}
.y1df{bottom:454.480000pt;}
.yc{bottom:455.373333pt;}
.y91{bottom:457.840000pt;}
.y184{bottom:457.850667pt;}
.y1c5{bottom:457.853333pt;}
.y160{bottom:457.866667pt;}
.yd5{bottom:457.870667pt;}
.y11c{bottom:457.877333pt;}
.yf4{bottom:457.880000pt;}
.y68{bottom:457.884000pt;}
.y13b{bottom:457.913333pt;}
.y20b{bottom:458.346667pt;}
.y3a{bottom:458.861333pt;}
.yb{bottom:468.711333pt;}
.y1de{bottom:470.066667pt;}
.y39{bottom:471.533333pt;}
.y90{bottom:473.166667pt;}
.y183{bottom:473.177333pt;}
.y1c4{bottom:473.180000pt;}
.y15f{bottom:473.193333pt;}
.yd4{bottom:473.197333pt;}
.y11b{bottom:473.204000pt;}
.yf3{bottom:473.206667pt;}
.y67{bottom:473.210667pt;}
.y13a{bottom:473.240000pt;}
.y20a{bottom:474.053333pt;}
.ya{bottom:482.049333pt;}
.y1dd{bottom:484.066667pt;}
.y8f{bottom:488.493333pt;}
.y182{bottom:488.504000pt;}
.y1c3{bottom:488.506667pt;}
.y15e{bottom:488.520000pt;}
.yd3{bottom:488.524000pt;}
.yf2{bottom:488.533333pt;}
.y66{bottom:488.537333pt;}
.y139{bottom:488.566667pt;}
.y209{bottom:489.746667pt;}
.y9{bottom:495.387333pt;}
.y11a{bottom:496.201333pt;}
.y1dc{bottom:499.653333pt;}
.y8e{bottom:503.820000pt;}
.y181{bottom:503.830667pt;}
.y1c2{bottom:503.833333pt;}
.y15d{bottom:503.846667pt;}
.yd2{bottom:503.850667pt;}
.yf1{bottom:503.860000pt;}
.y65{bottom:503.864000pt;}
.y138{bottom:503.893333pt;}
.y208{bottom:505.453333pt;}
.y8{bottom:508.725333pt;}
.y1a3{bottom:511.534667pt;}
.y1db{bottom:515.240000pt;}
.y8d{bottom:519.146667pt;}
.y180{bottom:519.157333pt;}
.y1c1{bottom:519.160000pt;}
.y15c{bottom:519.173333pt;}
.yd1{bottom:519.177333pt;}
.y38{bottom:519.186667pt;}
.y64{bottom:519.190667pt;}
.y137{bottom:519.220000pt;}
.y207{bottom:519.453333pt;}
.y1a2{bottom:526.861333pt;}
.y1da{bottom:530.826667pt;}
.y7{bottom:533.400000pt;}
.y8c{bottom:534.473333pt;}
.y17f{bottom:534.484000pt;}
.y1c0{bottom:534.486667pt;}
.y15b{bottom:534.500000pt;}
.yd0{bottom:534.504000pt;}
.y37{bottom:534.513333pt;}
.y63{bottom:534.517333pt;}
.y119{bottom:534.540000pt;}
.y136{bottom:534.546667pt;}
.y206{bottom:535.160000pt;}
.y1d9{bottom:544.826667pt;}
.y17e{bottom:549.810667pt;}
.y1bf{bottom:549.813333pt;}
.y15a{bottom:549.826667pt;}
.y36{bottom:549.840000pt;}
.y62{bottom:549.844000pt;}
.yb3{bottom:549.853333pt;}
.y118{bottom:549.866667pt;}
.y8b{bottom:549.873333pt;}
.y205{bottom:550.853333pt;}
.ycf{bottom:557.501333pt;}
.y1d8{bottom:560.413333pt;}
.y204{bottom:564.853333pt;}
.y17d{bottom:565.137333pt;}
.y1be{bottom:565.140000pt;}
.y159{bottom:565.153333pt;}
.y35{bottom:565.166667pt;}
.y61{bottom:565.170667pt;}
.yb2{bottom:565.180000pt;}
.y117{bottom:565.193333pt;}
.y8a{bottom:565.200000pt;}
.y1d7{bottom:576.000000pt;}
.y158{bottom:580.480000pt;}
.y34{bottom:580.493333pt;}
.y60{bottom:580.497333pt;}
.yb1{bottom:580.506667pt;}
.y116{bottom:580.520000pt;}
.y89{bottom:580.526667pt;}
.y203{bottom:580.560000pt;}
.y17c{bottom:588.134667pt;}
.y1d6{bottom:590.000000pt;}
.y157{bottom:595.806667pt;}
.y33{bottom:595.820000pt;}
.y5f{bottom:595.824000pt;}
.yb0{bottom:595.833333pt;}
.yce{bottom:595.840000pt;}
.y115{bottom:595.846667pt;}
.y88{bottom:595.853333pt;}
.y202{bottom:596.253333pt;}
.y6{bottom:599.294667pt;}
.y201{bottom:610.253333pt;}
.y156{bottom:611.140000pt;}
.y32{bottom:611.146667pt;}
.y5e{bottom:611.150667pt;}
.yaf{bottom:611.160000pt;}
.ycd{bottom:611.166667pt;}
.y114{bottom:611.173333pt;}
.y87{bottom:611.180000pt;}
.y5{bottom:612.626667pt;}
.y1d5{bottom:615.360000pt;}
.y200{bottom:625.960000pt;}
.y31{bottom:626.473333pt;}
.y5d{bottom:626.477333pt;}
.yae{bottom:626.486667pt;}
.ycc{bottom:626.493333pt;}
.y113{bottom:626.500000pt;}
.y86{bottom:626.506667pt;}
.y4{bottom:629.293333pt;}
.y1b3{bottom:634.148000pt;}
.y1ff{bottom:641.653333pt;}
.y1bd{bottom:641.804000pt;}
.y30{bottom:641.813333pt;}
.ycb{bottom:641.820000pt;}
.y112{bottom:641.826667pt;}
.y85{bottom:641.833333pt;}
.y5c{bottom:649.474667pt;}
.y1fe{bottom:655.653333pt;}
.y2f{bottom:657.140000pt;}
.yca{bottom:657.146667pt;}
.y111{bottom:657.153333pt;}
.y84{bottom:657.160000pt;}
.y1bc{bottom:664.801333pt;}
.y3{bottom:669.293333pt;}
.y1fd{bottom:671.360000pt;}
.y2e{bottom:672.466667pt;}
.yc9{bottom:672.473333pt;}
.y110{bottom:672.480000pt;}
.y83{bottom:672.486667pt;}
.y1fc{bottom:687.053333pt;}
.y10f{bottom:687.806667pt;}
.y2d{bottom:687.813333pt;}
.y2{bottom:690.626667pt;}
.y1fb{bottom:702.760000pt;}
.y2c{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y2b{bottom:718.466667pt;}
.y20{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.ha{height:52.032000pt;}
.hb{height:52.117333pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.hd{height:56.906667pt;}
.hc{height:57.813333pt;}
.h7{height:62.597333pt;}
.h8{height:63.461333pt;}
.h9{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x9{left:48.813333pt;}
.xb{left:67.753333pt;}
.xa{left:68.817333pt;}
.x5{left:74.562000pt;}
.x3{left:91.826667pt;}
.x4{left:120.782667pt;}
.x6{left:154.602667pt;}
.x8{left:242.693333pt;}
.x7{left:275.734000pt;}
.x2{left:366.680000pt;}
}




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