
    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_77f464f6506990e0f6888c3c.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_842380ff94bbe2515458a5d4.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_a3b86e72bb9d8fb7b56a9de4.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);}
.v2{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.960000px;}
.ls58{letter-spacing:-1.650000px;}
.ls3f{letter-spacing:-1.584000px;}
.ls29{letter-spacing:-1.518000px;}
.ls38{letter-spacing:-1.452000px;}
.ls4a{letter-spacing:-1.386000px;}
.ls6b{letter-spacing:-1.320000px;}
.ls59{letter-spacing:-1.254000px;}
.ls60{letter-spacing:-1.242000px;}
.ls3b{letter-spacing:-1.188000px;}
.ls4b{letter-spacing:-1.138500px;}
.ls1d{letter-spacing:-1.122000px;}
.ls31{letter-spacing:-1.056000px;}
.ls6c{letter-spacing:-1.035000px;}
.ls6d{letter-spacing:-1.020000px;}
.ls2f{letter-spacing:-0.990000px;}
.ls30{letter-spacing:-0.924000px;}
.ls1e{letter-spacing:-0.858000px;}
.ls39{letter-spacing:-0.810000px;}
.ls4c{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.726000px;}
.ls3c{letter-spacing:-0.702000px;}
.ls40{letter-spacing:-0.693000px;}
.ls57{letter-spacing:-0.660000px;}
.ls5c{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.594000px;}
.lsd{letter-spacing:-0.570000px;}
.ls46{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.513000px;}
.ls53{letter-spacing:-0.486000px;}
.ls1f{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.456000px;}
.ls5f{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.396000px;}
.ls45{letter-spacing:-0.378000px;}
.ls70{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.342000px;}
.ls25{letter-spacing:-0.330000px;}
.ls3a{letter-spacing:-0.324000px;}
.ls6f{letter-spacing:-0.315000px;}
.ls6e{letter-spacing:-0.300000px;}
.ls5a{letter-spacing:-0.297000px;}
.lsa{letter-spacing:-0.285000px;}
.ls44{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.264000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.198000px;}
.ls41{letter-spacing:-0.162000px;}
.ls1b{letter-spacing:-0.132000px;}
.lsc{letter-spacing:-0.114000px;}
.ls3d{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.066000px;}
.ls9{letter-spacing:-0.057000px;}
.ls43{letter-spacing:-0.054000px;}
.lsf{letter-spacing:-0.048000px;}
.ls71{letter-spacing:-0.045000px;}
.ls7{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.030000px;}
.ls3e{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.057000px;}
.ls16{letter-spacing:0.066000px;}
.ls36{letter-spacing:0.108000px;}
.ls67{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.132000px;}
.ls56{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.198000px;}
.ls4f{letter-spacing:0.210000px;}
.ls47{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.264000px;}
.ls34{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.285000px;}
.ls5b{letter-spacing:0.297000px;}
.ls64{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.342000px;}
.ls62{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.390000px;}
.ls13{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.399000px;}
.ls66{letter-spacing:0.420000px;}
.ls42{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.456000px;}
.ls2e{letter-spacing:0.462000px;}
.ls37{letter-spacing:0.486000px;}
.ls51{letter-spacing:0.495000px;}
.ls10{letter-spacing:0.528000px;}
.ls5e{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.594000px;}
.ls32{letter-spacing:0.660000px;}
.ls18{letter-spacing:0.726000px;}
.ls52{letter-spacing:0.792000px;}
.ls49{letter-spacing:0.810000px;}
.ls4d{letter-spacing:0.858000px;}
.ls48{letter-spacing:0.918000px;}
.ls11{letter-spacing:0.924000px;}
.ls2b{letter-spacing:0.990000px;}
.ls2d{letter-spacing:1.056000px;}
.ls24{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.122000px;}
.ls4e{letter-spacing:1.188000px;}
.ls68{letter-spacing:1.260000px;}
.ls6a{letter-spacing:1.305000px;}
.ls54{letter-spacing:1.320000px;}
.ls69{letter-spacing:1.380000px;}
.ls12{letter-spacing:1.518000px;}
.ls50{letter-spacing:1.584000px;}
.ls55{letter-spacing:1.620000px;}
.ls22{letter-spacing:1.650000px;}
.ls61{letter-spacing:1.716000px;}
.ls33{letter-spacing:2.178000px;}
.ls65{letter-spacing:30.000000px;}
.ls63{letter-spacing:36.018000px;}
.ls5{letter-spacing:41.088000px;}
.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;}
}
.wsab{word-spacing:-18.678000px;}
.wsa0{word-spacing:-18.216000px;}
.ws80{word-spacing:-17.688000px;}
.ws4b{word-spacing:-17.490000px;}
.ws3c{word-spacing:-17.424000px;}
.ws1e{word-spacing:-17.226000px;}
.ws81{word-spacing:-17.160000px;}
.ws53{word-spacing:-17.094000px;}
.ws4e{word-spacing:-16.962000px;}
.ws88{word-spacing:-16.896000px;}
.ws6e{word-spacing:-16.830000px;}
.ws38{word-spacing:-16.764000px;}
.ws39{word-spacing:-16.698000px;}
.ws3a{word-spacing:-16.632000px;}
.ws3b{word-spacing:-16.566000px;}
.ws19{word-spacing:-16.500000px;}
.ws1a{word-spacing:-16.434000px;}
.ws7f{word-spacing:-16.368000px;}
.ws8f{word-spacing:-16.302000px;}
.ws20{word-spacing:-16.236000px;}
.ws95{word-spacing:-16.170000px;}
.ws72{word-spacing:-16.104000px;}
.ws1f{word-spacing:-16.038000px;}
.ws5f{word-spacing:-15.972000px;}
.wsac{word-spacing:-15.906000px;}
.wsa4{word-spacing:-15.840000px;}
.wsa1{word-spacing:-15.774000px;}
.ws8b{word-spacing:-15.708000px;}
.ws4c{word-spacing:-15.576000px;}
.ws71{word-spacing:-15.444000px;}
.wsaf{word-spacing:-15.420000px;}
.wsb3{word-spacing:-15.120000px;}
.wsad{word-spacing:-15.000000px;}
.ws6f{word-spacing:-14.982000px;}
.ws73{word-spacing:-14.916000px;}
.wsb8{word-spacing:-14.700000px;}
.wsb7{word-spacing:-14.640000px;}
.ws3{word-spacing:-14.592000px;}
.ws0{word-spacing:-14.535000px;}
.wsb1{word-spacing:-14.340000px;}
.ws78{word-spacing:-14.310000px;}
.ws2{word-spacing:-14.307000px;}
.ws4{word-spacing:-14.250000px;}
.ws55{word-spacing:-13.986000px;}
.ws98{word-spacing:-13.932000px;}
.ws6{word-spacing:-13.908000px;}
.wsa5{word-spacing:-13.878000px;}
.ws1{word-spacing:-13.794000px;}
.wsa2{word-spacing:-13.716000px;}
.wsa7{word-spacing:-13.662000px;}
.ws85{word-spacing:-13.608000px;}
.ws76{word-spacing:-13.554000px;}
.ws3f{word-spacing:-13.500000px;}
.ws77{word-spacing:-13.446000px;}
.ws9a{word-spacing:-13.392000px;}
.ws63{word-spacing:-13.338000px;}
.ws62{word-spacing:-13.230000px;}
.ws83{word-spacing:-13.167000px;}
.wsa6{word-spacing:-13.068000px;}
.ws92{word-spacing:-12.906000px;}
.ws82{word-spacing:-12.870000px;}
.ws8d{word-spacing:-12.672000px;}
.ws94{word-spacing:-12.573000px;}
.wsb9{word-spacing:-12.555000px;}
.wsb4{word-spacing:-12.510000px;}
.ws74{word-spacing:-12.375000px;}
.ws99{word-spacing:-12.258000px;}
.ws7{word-spacing:-12.240000px;}
.ws8{word-spacing:-12.000000px;}
.ws91{word-spacing:-11.979000px;}
.ws9{word-spacing:-11.952000px;}
.ws60{word-spacing:-11.682000px;}
.ws9f{word-spacing:-11.583000px;}
.wsae{word-spacing:-11.250000px;}
.ws70{word-spacing:-11.236500px;}
.wsba{word-spacing:-11.205000px;}
.ws89{word-spacing:-11.187000px;}
.wsb5{word-spacing:-10.935000px;}
.wsb2{word-spacing:-10.215000px;}
.wsa9{word-spacing:-0.858000px;}
.ws24{word-spacing:-0.792000px;}
.ws28{word-spacing:-0.726000px;}
.ws9c{word-spacing:-0.702000px;}
.wsf{word-spacing:-0.684000px;}
.ws47{word-spacing:-0.660000px;}
.ws67{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.627000px;}
.ws37{word-spacing:-0.594000px;}
.ws64{word-spacing:-0.544500px;}
.ws5e{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.528000px;}
.ws12{word-spacing:-0.513000px;}
.ws66{word-spacing:-0.486000px;}
.wsc1{word-spacing:-0.480000px;}
.ws33{word-spacing:-0.462000px;}
.ws18{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.399000px;}
.ws32{word-spacing:-0.396000px;}
.ws5{word-spacing:-0.381000px;}
.ws49{word-spacing:-0.378000px;}
.ws86{word-spacing:-0.346500px;}
.ws35{word-spacing:-0.330000px;}
.ws79{word-spacing:-0.324000px;}
.ws17{word-spacing:-0.288000px;}
.ws68{word-spacing:-0.270000px;}
.ws44{word-spacing:-0.264000px;}
.wsc{word-spacing:-0.228000px;}
.ws69{word-spacing:-0.216000px;}
.ws51{word-spacing:-0.198000px;}
.ws15{word-spacing:-0.171000px;}
.ws9d{word-spacing:-0.162000px;}
.ws31{word-spacing:-0.132000px;}
.wse{word-spacing:-0.114000px;}
.ws7b{word-spacing:-0.108000px;}
.ws2d{word-spacing:-0.066000px;}
.wsbe{word-spacing:-0.060000px;}
.ws6b{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.ws3e{word-spacing:0.054000px;}
.ws57{word-spacing:0.066000px;}
.ws59{word-spacing:0.108000px;}
.ws25{word-spacing:0.132000px;}
.ws7e{word-spacing:0.162000px;}
.wsc2{word-spacing:0.180000px;}
.ws42{word-spacing:0.198000px;}
.ws5d{word-spacing:0.216000px;}
.wsbf{word-spacing:0.240000px;}
.ws2a{word-spacing:0.264000px;}
.ws4a{word-spacing:0.270000px;}
.ws30{word-spacing:0.330000px;}
.ws9b{word-spacing:0.378000px;}
.ws4f{word-spacing:0.396000px;}
.ws13{word-spacing:0.399000px;}
.ws6d{word-spacing:0.432000px;}
.ws50{word-spacing:0.462000px;}
.ws87{word-spacing:0.486000px;}
.ws46{word-spacing:0.528000px;}
.ws48{word-spacing:0.540000px;}
.ws52{word-spacing:0.594000px;}
.ws93{word-spacing:0.648000px;}
.ws22{word-spacing:0.660000px;}
.ws7c{word-spacing:0.702000px;}
.ws65{word-spacing:0.726000px;}
.ws9e{word-spacing:0.756000px;}
.ws45{word-spacing:0.792000px;}
.ws7d{word-spacing:0.810000px;}
.ws23{word-spacing:0.858000px;}
.ws5b{word-spacing:0.864000px;}
.wsaa{word-spacing:0.918000px;}
.ws2f{word-spacing:0.924000px;}
.wsb{word-spacing:0.969000px;}
.ws36{word-spacing:0.990000px;}
.ws16{word-spacing:1.008000px;}
.ws6c{word-spacing:1.026000px;}
.ws34{word-spacing:1.056000px;}
.ws7a{word-spacing:1.080000px;}
.ws10{word-spacing:1.083000px;}
.ws58{word-spacing:1.122000px;}
.ws6a{word-spacing:1.134000px;}
.ws26{word-spacing:1.188000px;}
.wsbd{word-spacing:1.200000px;}
.ws5a{word-spacing:1.242000px;}
.ws2b{word-spacing:1.254000px;}
.wsbc{word-spacing:1.260000px;}
.ws5c{word-spacing:1.296000px;}
.ws41{word-spacing:1.320000px;}
.wsd{word-spacing:1.368000px;}
.wsc0{word-spacing:1.380000px;}
.ws2e{word-spacing:1.386000px;}
.ws29{word-spacing:1.452000px;}
.ws2c{word-spacing:1.518000px;}
.ws27{word-spacing:1.584000px;}
.ws40{word-spacing:1.650000px;}
.wsa3{word-spacing:1.914000px;}
.wsb6{word-spacing:3.390000px;}
.ws8a{word-spacing:3.576000px;}
.wsb0{word-spacing:3.720000px;}
.ws8e{word-spacing:7.524000px;}
.ws56{word-spacing:7.986000px;}
.ws8c{word-spacing:8.154000px;}
.ws90{word-spacing:8.184000px;}
.ws84{word-spacing:9.018000px;}
.ws97{word-spacing:9.450000px;}
.wsbb{word-spacing:13.596000px;}
.ws54{word-spacing:20.856000px;}
.ws4d{word-spacing:21.714000px;}
.ws1c{word-spacing:21.846000px;}
.ws96{word-spacing:22.308000px;}
.wsa8{word-spacing:22.518000px;}
.ws1b{word-spacing:23.100000px;}
.ws1d{word-spacing:30.294000px;}
.ws75{word-spacing:35.370000px;}
.ws21{word-spacing:35.712000px;}
.ws3d{word-spacing:36.018000px;}
.ws61{word-spacing:36.666000px;}
._f{margin-left:-10.830000px;}
._d{margin-left:-8.646000px;}
._4{margin-left:-7.467000px;}
._b{margin-left:-5.994000px;}
._5{margin-left:-4.860000px;}
._2{margin-left:-3.513000px;}
._0{margin-left:-2.016000px;}
._3{margin-left:-1.005000px;}
._1{width:1.152000px;}
._c{width:2.280000px;}
._a{width:3.366000px;}
._9{width:4.590000px;}
._e{width:36.018000px;}
._6{width:47.952000px;}
._8{width:1101.213000px;}
._7{width:1111.152000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y217{bottom:45.807000px;}
.y15a{bottom:45.850500px;}
.y1f7{bottom:45.855000px;}
.y117{bottom:45.867000px;}
.y1ce{bottom:46.290000px;}
.y17c{bottom:46.422000px;}
.y1e{bottom:46.734000px;}
.yf0{bottom:47.040000px;}
.y133{bottom:47.136000px;}
.yc1{bottom:47.166000px;}
.y74{bottom:47.196000px;}
.y1a4{bottom:47.208000px;}
.y22e{bottom:48.555000px;}
.y43{bottom:48.912000px;}
.y9a{bottom:49.522500px;}
.y1d{bottom:59.490000px;}
.y216{bottom:60.063000px;}
.y159{bottom:60.106500px;}
.y1f6{bottom:60.111000px;}
.y116{bottom:60.123000px;}
.y1cd{bottom:60.546000px;}
.y17b{bottom:60.678000px;}
.yef{bottom:61.296000px;}
.y132{bottom:61.392000px;}
.yc0{bottom:61.422000px;}
.y73{bottom:61.452000px;}
.y1a3{bottom:61.464000px;}
.y42{bottom:66.154500px;}
.y99{bottom:66.765000px;}
.y22d{bottom:67.275000px;}
.y1c{bottom:72.246000px;}
.y215{bottom:74.319000px;}
.y158{bottom:74.362500px;}
.y1f5{bottom:74.367000px;}
.y115{bottom:74.379000px;}
.y1cc{bottom:74.802000px;}
.y17a{bottom:74.934000px;}
.yee{bottom:75.552000px;}
.y131{bottom:75.648000px;}
.ybf{bottom:75.678000px;}
.y72{bottom:75.708000px;}
.y1a2{bottom:75.720000px;}
.y41{bottom:83.397000px;}
.y98{bottom:84.007500px;}
.y1b{bottom:84.990000px;}
.y22c{bottom:86.010000px;}
.y214{bottom:88.575000px;}
.y157{bottom:88.618500px;}
.y1f4{bottom:88.623000px;}
.y114{bottom:88.635000px;}
.y1cb{bottom:89.058000px;}
.y179{bottom:89.190000px;}
.yed{bottom:89.808000px;}
.y130{bottom:89.904000px;}
.ybe{bottom:89.934000px;}
.y71{bottom:89.964000px;}
.y40{bottom:100.639500px;}
.y97{bottom:101.250000px;}
.y22b{bottom:101.760000px;}
.y213{bottom:102.831000px;}
.y1f3{bottom:102.879000px;}
.y113{bottom:102.891000px;}
.y1ca{bottom:103.314000px;}
.y178{bottom:103.446000px;}
.yec{bottom:104.064000px;}
.y12f{bottom:104.160000px;}
.ybd{bottom:104.190000px;}
.y70{bottom:104.220000px;}
.y156{bottom:107.127000px;}
.y212{bottom:117.087000px;}
.y1f2{bottom:117.135000px;}
.y112{bottom:117.147000px;}
.y1c9{bottom:117.570000px;}
.y177{bottom:117.702000px;}
.y3f{bottom:117.882000px;}
.yeb{bottom:118.320000px;}
.y12e{bottom:118.416000px;}
.ybc{bottom:118.446000px;}
.y1a1{bottom:118.534500px;}
.y22a{bottom:120.480000px;}
.y155{bottom:121.383000px;}
.y211{bottom:131.343000px;}
.y1f1{bottom:131.391000px;}
.y111{bottom:131.403000px;}
.y1c8{bottom:131.826000px;}
.y176{bottom:131.958000px;}
.yea{bottom:132.576000px;}
.y12d{bottom:132.672000px;}
.ybb{bottom:132.702000px;}
.y3e{bottom:135.124500px;}
.y154{bottom:135.639000px;}
.y96{bottom:135.751500px;}
.y1a0{bottom:135.777000px;}
.y229{bottom:136.230000px;}
.y6f{bottom:144.262500px;}
.y210{bottom:145.599000px;}
.y1f0{bottom:145.647000px;}
.y110{bottom:145.659000px;}
.y1c7{bottom:146.082000px;}
.y175{bottom:146.214000px;}
.ye9{bottom:146.832000px;}
.y12c{bottom:146.928000px;}
.yba{bottom:146.958000px;}
.y153{bottom:149.895000px;}
.y228{bottom:151.980000px;}
.y3d{bottom:152.367000px;}
.y95{bottom:152.994000px;}
.y19f{bottom:153.019500px;}
.y20f{bottom:159.855000px;}
.y1ef{bottom:159.903000px;}
.y10f{bottom:159.915000px;}
.y1c6{bottom:160.338000px;}
.y174{bottom:160.470000px;}
.ye8{bottom:161.088000px;}
.y12b{bottom:161.184000px;}
.yb9{bottom:161.214000px;}
.y6e{bottom:161.505000px;}
.y152{bottom:164.151000px;}
.y3c{bottom:169.609500px;}
.y94{bottom:170.236500px;}
.y19e{bottom:170.262000px;}
.y227{bottom:170.715000px;}
.y20e{bottom:174.111000px;}
.y1ee{bottom:174.159000px;}
.y10e{bottom:174.171000px;}
.y1c5{bottom:174.594000px;}
.y173{bottom:174.726000px;}
.ye7{bottom:175.344000px;}
.y12a{bottom:175.440000px;}
.yb8{bottom:175.470000px;}
.y151{bottom:178.407000px;}
.y6d{bottom:178.747500px;}
.y19{bottom:183.705000px;}
.y3b{bottom:186.852000px;}
.y93{bottom:187.479000px;}
.y19d{bottom:187.504500px;}
.y20d{bottom:188.367000px;}
.y1ed{bottom:188.415000px;}
.y10d{bottom:188.427000px;}
.y1c4{bottom:188.850000px;}
.y172{bottom:188.982000px;}
.y226{bottom:189.435000px;}
.ye6{bottom:189.600000px;}
.y129{bottom:189.696000px;}
.y150{bottom:192.663000px;}
.y6c{bottom:195.990000px;}
.y20c{bottom:202.623000px;}
.y1ec{bottom:202.671000px;}
.y10c{bottom:202.683000px;}
.y1c3{bottom:203.106000px;}
.y171{bottom:203.238000px;}
.ye5{bottom:203.856000px;}
.y128{bottom:203.952000px;}
.y3a{bottom:204.094500px;}
.y92{bottom:204.721500px;}
.y19c{bottom:204.747000px;}
.y14f{bottom:206.919000px;}
.y225{bottom:208.155000px;}
.y18{bottom:209.307000px;}
.y6b{bottom:213.232500px;}
.y20b{bottom:216.879000px;}
.y1eb{bottom:216.927000px;}
.y10b{bottom:216.939000px;}
.y1c2{bottom:217.362000px;}
.y170{bottom:217.494000px;}
.ye4{bottom:218.112000px;}
.y127{bottom:218.208000px;}
.y14e{bottom:221.175000px;}
.y39{bottom:221.337000px;}
.y91{bottom:221.964000px;}
.y19b{bottom:221.989500px;}
.y224{bottom:223.905000px;}
.y17{bottom:224.312250px;}
.y6a{bottom:230.475000px;}
.yb7{bottom:230.769000px;}
.y20a{bottom:231.135000px;}
.y1ea{bottom:231.183000px;}
.y10a{bottom:231.195000px;}
.y1c1{bottom:231.618000px;}
.y16f{bottom:231.750000px;}
.ye3{bottom:232.368000px;}
.y126{bottom:232.464000px;}
.y14d{bottom:235.431000px;}
.y38{bottom:238.579500px;}
.y90{bottom:239.206500px;}
.y19a{bottom:239.232000px;}
.y16{bottom:239.317500px;}
.y223{bottom:242.640000px;}
.y209{bottom:245.391000px;}
.y1e9{bottom:245.439000px;}
.y109{bottom:245.451000px;}
.y1c0{bottom:245.874000px;}
.ye2{bottom:246.624000px;}
.y125{bottom:246.720000px;}
.y69{bottom:247.717500px;}
.yb6{bottom:248.011500px;}
.y14c{bottom:249.687000px;}
.y15{bottom:254.322750px;}
.y37{bottom:255.822000px;}
.y8f{bottom:256.449000px;}
.y199{bottom:256.474500px;}
.y208{bottom:259.647000px;}
.y1e8{bottom:259.695000px;}
.y108{bottom:259.707000px;}
.y1bf{bottom:260.130000px;}
.ye1{bottom:260.880000px;}
.y222{bottom:261.360000px;}
.y14b{bottom:263.943000px;}
.y68{bottom:264.960000px;}
.yb5{bottom:265.254000px;}
.y14{bottom:269.328000px;}
.y16e{bottom:273.591000px;}
.y8e{bottom:273.691500px;}
.y198{bottom:273.717000px;}
.y207{bottom:273.903000px;}
.y1e7{bottom:273.951000px;}
.y107{bottom:273.963000px;}
.y1be{bottom:274.386000px;}
.ye0{bottom:275.136000px;}
.y221{bottom:277.110000px;}
.y14a{bottom:278.199000px;}
.y67{bottom:282.202500px;}
.yb4{bottom:282.496500px;}
.y13{bottom:284.333250px;}
.y206{bottom:288.159000px;}
.y1e6{bottom:288.207000px;}
.y106{bottom:288.219000px;}
.y1bd{bottom:288.642000px;}
.ydf{bottom:289.392000px;}
.y36{bottom:290.323500px;}
.y16d{bottom:290.833500px;}
.y8d{bottom:290.934000px;}
.y197{bottom:290.959500px;}
.y149{bottom:292.455000px;}
.y220{bottom:295.845000px;}
.y12{bottom:299.338500px;}
.y66{bottom:299.445000px;}
.yb3{bottom:299.739000px;}
.y205{bottom:302.415000px;}
.y1e5{bottom:302.463000px;}
.y105{bottom:302.475000px;}
.y1bc{bottom:302.898000px;}
.yde{bottom:303.648000px;}
.y148{bottom:306.711000px;}
.y35{bottom:307.566000px;}
.y124{bottom:308.032500px;}
.y16c{bottom:308.076000px;}
.y8c{bottom:308.176500px;}
.y196{bottom:308.202000px;}
.y11{bottom:314.343750px;}
.y21f{bottom:314.565000px;}
.y204{bottom:316.671000px;}
.y65{bottom:316.687500px;}
.y1e4{bottom:316.719000px;}
.yb2{bottom:316.981500px;}
.y1bb{bottom:317.154000px;}
.ydd{bottom:317.904000px;}
.y147{bottom:320.967000px;}
.y34{bottom:324.808500px;}
.y123{bottom:325.287000px;}
.y16b{bottom:325.318500px;}
.y8b{bottom:325.419000px;}
.y195{bottom:325.444500px;}
.y203{bottom:330.927000px;}
.y1e3{bottom:330.975000px;}
.y1ba{bottom:331.410000px;}
.ydc{bottom:332.160000px;}
.y21e{bottom:333.300000px;}
.y64{bottom:333.930000px;}
.yb1{bottom:334.224000px;}
.y146{bottom:339.462000px;}
.y33{bottom:342.051000px;}
.y122{bottom:342.529500px;}
.y16a{bottom:342.561000px;}
.y8a{bottom:342.661500px;}
.y194{bottom:342.687000px;}
.y10{bottom:344.340000px;}
.y202{bottom:345.183000px;}
.y1b9{bottom:345.666000px;}
.ydb{bottom:346.416000px;}
.y21d{bottom:349.050000px;}
.y63{bottom:351.172500px;}
.y104{bottom:351.300000px;}
.yb0{bottom:351.466500px;}
.y145{bottom:353.718000px;}
.y32{bottom:359.293500px;}
.y201{bottom:359.439000px;}
.y121{bottom:359.772000px;}
.y169{bottom:359.803500px;}
.y89{bottom:359.904000px;}
.y1b8{bottom:359.922000px;}
.y193{bottom:359.929500px;}
.yda{bottom:360.672000px;}
.y21c{bottom:367.770000px;}
.y144{bottom:367.974000px;}
.y62{bottom:368.415000px;}
.y103{bottom:368.542500px;}
.yaf{bottom:368.709000px;}
.y200{bottom:373.695000px;}
.y1b7{bottom:374.178000px;}
.yd9{bottom:374.928000px;}
.y31{bottom:376.536000px;}
.y168{bottom:377.046000px;}
.y1e2{bottom:377.107500px;}
.y88{bottom:377.146500px;}
.y192{bottom:377.172000px;}
.y143{bottom:382.230000px;}
.y120{bottom:385.644000px;}
.y61{bottom:385.657500px;}
.y102{bottom:385.785000px;}
.yae{bottom:385.951500px;}
.y21b{bottom:386.490000px;}
.y1ff{bottom:387.951000px;}
.y1b6{bottom:388.434000px;}
.yd8{bottom:389.184000px;}
.y30{bottom:393.778500px;}
.y1e1{bottom:394.350000px;}
.y87{bottom:394.389000px;}
.y191{bottom:394.414500px;}
.yf{bottom:397.566000px;}
.y1fe{bottom:402.207000px;}
.y21a{bottom:402.240000px;}
.y1b5{bottom:402.690000px;}
.y101{bottom:403.027500px;}
.y60{bottom:403.035000px;}
.yad{bottom:403.194000px;}
.yd7{bottom:403.440000px;}
.y2f{bottom:411.021000px;}
.y167{bottom:411.547500px;}
.y1e0{bottom:411.592500px;}
.y86{bottom:411.631500px;}
.y190{bottom:411.657000px;}
.ye{bottom:412.571250px;}
.y1fd{bottom:416.463000px;}
.y1b4{bottom:416.946000px;}
.yd6{bottom:417.696000px;}
.y219{bottom:417.990000px;}
.y100{bottom:420.270000px;}
.y5f{bottom:420.277500px;}
.yac{bottom:420.436500px;}
.y2e{bottom:428.263500px;}
.y166{bottom:428.790000px;}
.y11f{bottom:428.820000px;}
.y1df{bottom:428.835000px;}
.y85{bottom:428.874000px;}
.y18f{bottom:428.899500px;}
.y1fc{bottom:430.719000px;}
.y1b3{bottom:431.202000px;}
.yd5{bottom:431.952000px;}
.y142{bottom:433.324500px;}
.yff{bottom:437.512500px;}
.y5e{bottom:437.520000px;}
.yab{bottom:437.679000px;}
.yd{bottom:438.207000px;}
.y1fb{bottom:444.975000px;}
.y1b2{bottom:445.458000px;}
.y2d{bottom:445.506000px;}
.y165{bottom:446.032500px;}
.y11e{bottom:446.062500px;}
.y1de{bottom:446.077500px;}
.y84{bottom:446.116500px;}
.y18e{bottom:446.142000px;}
.yd4{bottom:446.208000px;}
.y218{bottom:446.644500px;}
.y141{bottom:450.567000px;}
.yc{bottom:453.212250px;}
.yfe{bottom:454.755000px;}
.y5d{bottom:454.762500px;}
.yaa{bottom:454.921500px;}
.y1b1{bottom:459.714000px;}
.yd3{bottom:460.464000px;}
.y2c{bottom:462.748500px;}
.y11d{bottom:463.305000px;}
.y1dd{bottom:463.320000px;}
.y83{bottom:463.359000px;}
.y164{bottom:463.375500px;}
.y18d{bottom:463.384500px;}
.y140{bottom:467.809500px;}
.yb{bottom:468.217500px;}
.yfd{bottom:471.997500px;}
.y5c{bottom:472.005000px;}
.ya9{bottom:472.164000px;}
.y1b0{bottom:473.970000px;}
.yd2{bottom:474.720000px;}
.y2b{bottom:479.991000px;}
.y11c{bottom:480.547500px;}
.y1dc{bottom:480.562500px;}
.y82{bottom:480.601500px;}
.y163{bottom:480.618000px;}
.y18c{bottom:480.627000px;}
.y1fa{bottom:480.667500px;}
.ya{bottom:483.222750px;}
.y13f{bottom:485.052000px;}
.yfc{bottom:489.240000px;}
.y5b{bottom:489.247500px;}
.ya8{bottom:489.406500px;}
.y11b{bottom:497.790000px;}
.y1db{bottom:497.805000px;}
.y162{bottom:497.860500px;}
.y18b{bottom:497.869500px;}
.y1f9{bottom:497.910000px;}
.y9{bottom:498.228000px;}
.y81{bottom:506.473500px;}
.yfb{bottom:506.482500px;}
.y5a{bottom:506.490000px;}
.ya7{bottom:506.649000px;}
.y13e{bottom:508.680000px;}
.y8{bottom:513.233250px;}
.y2a{bottom:514.492500px;}
.y11a{bottom:515.032500px;}
.yd1{bottom:515.047500px;}
.y161{bottom:515.103000px;}
.y18a{bottom:515.112000px;}
.y1f8{bottom:515.152500px;}
.yfa{bottom:523.725000px;}
.y59{bottom:523.732500px;}
.y13d{bottom:525.922500px;}
.y7{bottom:528.238500px;}
.y29{bottom:531.735000px;}
.yd0{bottom:532.290000px;}
.y1af{bottom:532.318500px;}
.y160{bottom:532.345500px;}
.y189{bottom:532.354500px;}
.y119{bottom:532.395000px;}
.ya6{bottom:532.521000px;}
.yf9{bottom:540.967500px;}
.y58{bottom:540.975000px;}
.y13c{bottom:543.165000px;}
.y6{bottom:543.243750px;}
.y28{bottom:548.977500px;}
.ycf{bottom:549.532500px;}
.y1ae{bottom:549.561000px;}
.y15f{bottom:549.588000px;}
.y188{bottom:549.597000px;}
.y80{bottom:549.604500px;}
.y118{bottom:549.637500px;}
.yf8{bottom:558.210000px;}
.y13b{bottom:560.407500px;}
.y27{bottom:566.220000px;}
.yce{bottom:566.797500px;}
.y1ad{bottom:566.803500px;}
.y1da{bottom:566.812500px;}
.y15e{bottom:566.830500px;}
.y187{bottom:566.839500px;}
.y57{bottom:566.847000px;}
.ya5{bottom:566.880000px;}
.y5{bottom:573.240000px;}
.yf7{bottom:575.452500px;}
.y13a{bottom:577.650000px;}
.y26{bottom:583.462500px;}
.ycd{bottom:584.040000px;}
.y1ac{bottom:584.046000px;}
.y1d9{bottom:584.055000px;}
.y15d{bottom:584.073000px;}
.y186{bottom:584.082000px;}
.y7f{bottom:584.089500px;}
.ya4{bottom:584.122500px;}
.yf6{bottom:592.695000px;}
.y139{bottom:594.892500px;}
.y25{bottom:600.705000px;}
.ycc{bottom:601.282500px;}
.y1ab{bottom:601.288500px;}
.y1d8{bottom:601.297500px;}
.y15c{bottom:601.315500px;}
.y185{bottom:601.324500px;}
.y7e{bottom:601.332000px;}
.ya3{bottom:601.365000px;}
.yf5{bottom:609.937500px;}
.y56{bottom:609.978000px;}
.y138{bottom:612.130500px;}
.y24{bottom:617.947500px;}
.y1aa{bottom:618.531000px;}
.y1d7{bottom:618.540000px;}
.y15b{bottom:618.558000px;}
.y184{bottom:618.567000px;}
.y7d{bottom:618.574500px;}
.ycb{bottom:618.600000px;}
.ya2{bottom:618.607500px;}
.yf4{bottom:627.180000px;}
.y55{bottom:627.220500px;}
.y23{bottom:635.190000px;}
.y1d6{bottom:635.782500px;}
.y137{bottom:635.805000px;}
.y183{bottom:635.809500px;}
.y7c{bottom:635.817000px;}
.yca{bottom:635.842500px;}
.ya1{bottom:635.850000px;}
.yf3{bottom:644.422500px;}
.y54{bottom:644.463000px;}
.y22{bottom:652.432500px;}
.y1a9{bottom:653.032500px;}
.y136{bottom:653.047500px;}
.y182{bottom:653.052000px;}
.y7b{bottom:653.059500px;}
.y1d5{bottom:653.076000px;}
.yc9{bottom:653.085000px;}
.ya0{bottom:653.092500px;}
.yf2{bottom:661.665000px;}
.y53{bottom:661.705500px;}
.y21{bottom:669.675000px;}
.y135{bottom:670.290000px;}
.y181{bottom:670.294500px;}
.y7a{bottom:670.302000px;}
.y1a8{bottom:670.305000px;}
.y1d4{bottom:670.318500px;}
.yc8{bottom:670.327500px;}
.y9f{bottom:670.335000px;}
.yf1{bottom:678.907500px;}
.y52{bottom:678.948000px;}
.y20{bottom:686.917500px;}
.y134{bottom:687.532500px;}
.y180{bottom:687.537000px;}
.y79{bottom:687.544500px;}
.y1a7{bottom:687.547500px;}
.y1d3{bottom:687.561000px;}
.yc7{bottom:687.570000px;}
.y9e{bottom:687.577500px;}
.y51{bottom:696.190500px;}
.y1f{bottom:704.160000px;}
.y17f{bottom:704.779500px;}
.y1a6{bottom:704.790000px;}
.y1d2{bottom:704.803500px;}
.yc6{bottom:704.812500px;}
.y9d{bottom:704.820000px;}
.y78{bottom:713.416500px;}
.y50{bottom:713.433000px;}
.y17e{bottom:722.022000px;}
.y1a5{bottom:722.032500px;}
.y1d1{bottom:722.046000px;}
.yc5{bottom:722.055000px;}
.y9c{bottom:722.062500px;}
.y4{bottom:722.206500px;}
.y4f{bottom:730.675500px;}
.y3{bottom:737.205000px;}
.y1d0{bottom:739.288500px;}
.yc4{bottom:739.297500px;}
.y9b{bottom:739.305000px;}
.y17d{bottom:747.894000px;}
.y4e{bottom:747.918000px;}
.y49{bottom:750.411000px;}
.y46{bottom:750.425250px;}
.y2{bottom:755.955000px;}
.y1cf{bottom:756.531000px;}
.yc3{bottom:756.540000px;}
.y77{bottom:756.547500px;}
.y4d{bottom:765.160500px;}
.y45{bottom:765.430500px;}
.y48{bottom:771.415500px;}
.yc2{bottom:773.782500px;}
.y76{bottom:773.790000px;}
.y4c{bottom:782.403000px;}
.y47{bottom:786.420750px;}
.y44{bottom:786.435000px;}
.y75{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y4b{bottom:808.275000px;}
.y4a{bottom:810.450000px;}
.y1a{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.h9{height:58.536000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.hc{height:64.020000px;}
.hb{height:65.040000px;}
.h7{height:70.422000px;}
.ha{height:70.440000px;}
.h8{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;}
.x4{left:54.915000px;}
.xc{left:61.665000px;}
.x3{left:68.700000px;}
.xb{left:76.156500px;}
.x5{left:77.437500px;}
.xd{left:99.924000px;}
.x7{left:111.528750px;}
.x8{left:120.791250px;}
.x6{left:176.010000px;}
.xa{left:274.245000px;}
.x9{left:311.385000px;}
.x2{left:424.755000px;}
@media print{
.v2{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.186667pt;}
.ls58{letter-spacing:-1.466667pt;}
.ls3f{letter-spacing:-1.408000pt;}
.ls29{letter-spacing:-1.349333pt;}
.ls38{letter-spacing:-1.290667pt;}
.ls4a{letter-spacing:-1.232000pt;}
.ls6b{letter-spacing:-1.173333pt;}
.ls59{letter-spacing:-1.114667pt;}
.ls60{letter-spacing:-1.104000pt;}
.ls3b{letter-spacing:-1.056000pt;}
.ls4b{letter-spacing:-1.012000pt;}
.ls1d{letter-spacing:-0.997333pt;}
.ls31{letter-spacing:-0.938667pt;}
.ls6c{letter-spacing:-0.920000pt;}
.ls6d{letter-spacing:-0.906667pt;}
.ls2f{letter-spacing:-0.880000pt;}
.ls30{letter-spacing:-0.821333pt;}
.ls1e{letter-spacing:-0.762667pt;}
.ls39{letter-spacing:-0.720000pt;}
.ls4c{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.645333pt;}
.ls3c{letter-spacing:-0.624000pt;}
.ls40{letter-spacing:-0.616000pt;}
.ls57{letter-spacing:-0.586667pt;}
.ls5c{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.528000pt;}
.lsd{letter-spacing:-0.506667pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.456000pt;}
.ls53{letter-spacing:-0.432000pt;}
.ls1f{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.405333pt;}
.ls5f{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.352000pt;}
.ls45{letter-spacing:-0.336000pt;}
.ls70{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls25{letter-spacing:-0.293333pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls6f{letter-spacing:-0.280000pt;}
.ls6e{letter-spacing:-0.266667pt;}
.ls5a{letter-spacing:-0.264000pt;}
.lsa{letter-spacing:-0.253333pt;}
.ls44{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.234667pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.176000pt;}
.ls41{letter-spacing:-0.144000pt;}
.ls1b{letter-spacing:-0.117333pt;}
.lsc{letter-spacing:-0.101333pt;}
.ls3d{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.058667pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls43{letter-spacing:-0.048000pt;}
.lsf{letter-spacing:-0.042667pt;}
.ls71{letter-spacing:-0.040000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.026667pt;}
.ls3e{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls16{letter-spacing:0.058667pt;}
.ls36{letter-spacing:0.096000pt;}
.ls67{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.117333pt;}
.ls56{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.176000pt;}
.ls4f{letter-spacing:0.186667pt;}
.ls47{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.234667pt;}
.ls34{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.253333pt;}
.ls5b{letter-spacing:0.264000pt;}
.ls64{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.304000pt;}
.ls62{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.346667pt;}
.ls13{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.354667pt;}
.ls66{letter-spacing:0.373333pt;}
.ls42{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.405333pt;}
.ls2e{letter-spacing:0.410667pt;}
.ls37{letter-spacing:0.432000pt;}
.ls51{letter-spacing:0.440000pt;}
.ls10{letter-spacing:0.469333pt;}
.ls5e{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.528000pt;}
.ls32{letter-spacing:0.586667pt;}
.ls18{letter-spacing:0.645333pt;}
.ls52{letter-spacing:0.704000pt;}
.ls49{letter-spacing:0.720000pt;}
.ls4d{letter-spacing:0.762667pt;}
.ls48{letter-spacing:0.816000pt;}
.ls11{letter-spacing:0.821333pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls2d{letter-spacing:0.938667pt;}
.ls24{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:0.997333pt;}
.ls4e{letter-spacing:1.056000pt;}
.ls68{letter-spacing:1.120000pt;}
.ls6a{letter-spacing:1.160000pt;}
.ls54{letter-spacing:1.173333pt;}
.ls69{letter-spacing:1.226667pt;}
.ls12{letter-spacing:1.349333pt;}
.ls50{letter-spacing:1.408000pt;}
.ls55{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.466667pt;}
.ls61{letter-spacing:1.525333pt;}
.ls33{letter-spacing:1.936000pt;}
.ls65{letter-spacing:26.666667pt;}
.ls63{letter-spacing:32.016000pt;}
.ls5{letter-spacing:36.522667pt;}
.wsab{word-spacing:-16.602667pt;}
.wsa0{word-spacing:-16.192000pt;}
.ws80{word-spacing:-15.722667pt;}
.ws4b{word-spacing:-15.546667pt;}
.ws3c{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-15.312000pt;}
.ws81{word-spacing:-15.253333pt;}
.ws53{word-spacing:-15.194667pt;}
.ws4e{word-spacing:-15.077333pt;}
.ws88{word-spacing:-15.018667pt;}
.ws6e{word-spacing:-14.960000pt;}
.ws38{word-spacing:-14.901333pt;}
.ws39{word-spacing:-14.842667pt;}
.ws3a{word-spacing:-14.784000pt;}
.ws3b{word-spacing:-14.725333pt;}
.ws19{word-spacing:-14.666667pt;}
.ws1a{word-spacing:-14.608000pt;}
.ws7f{word-spacing:-14.549333pt;}
.ws8f{word-spacing:-14.490667pt;}
.ws20{word-spacing:-14.432000pt;}
.ws95{word-spacing:-14.373333pt;}
.ws72{word-spacing:-14.314667pt;}
.ws1f{word-spacing:-14.256000pt;}
.ws5f{word-spacing:-14.197333pt;}
.wsac{word-spacing:-14.138667pt;}
.wsa4{word-spacing:-14.080000pt;}
.wsa1{word-spacing:-14.021333pt;}
.ws8b{word-spacing:-13.962667pt;}
.ws4c{word-spacing:-13.845333pt;}
.ws71{word-spacing:-13.728000pt;}
.wsaf{word-spacing:-13.706667pt;}
.wsb3{word-spacing:-13.440000pt;}
.wsad{word-spacing:-13.333333pt;}
.ws6f{word-spacing:-13.317333pt;}
.ws73{word-spacing:-13.258667pt;}
.wsb8{word-spacing:-13.066667pt;}
.wsb7{word-spacing:-13.013333pt;}
.ws3{word-spacing:-12.970667pt;}
.ws0{word-spacing:-12.920000pt;}
.wsb1{word-spacing:-12.746667pt;}
.ws78{word-spacing:-12.720000pt;}
.ws2{word-spacing:-12.717333pt;}
.ws4{word-spacing:-12.666667pt;}
.ws55{word-spacing:-12.432000pt;}
.ws98{word-spacing:-12.384000pt;}
.ws6{word-spacing:-12.362667pt;}
.wsa5{word-spacing:-12.336000pt;}
.ws1{word-spacing:-12.261333pt;}
.wsa2{word-spacing:-12.192000pt;}
.wsa7{word-spacing:-12.144000pt;}
.ws85{word-spacing:-12.096000pt;}
.ws76{word-spacing:-12.048000pt;}
.ws3f{word-spacing:-12.000000pt;}
.ws77{word-spacing:-11.952000pt;}
.ws9a{word-spacing:-11.904000pt;}
.ws63{word-spacing:-11.856000pt;}
.ws62{word-spacing:-11.760000pt;}
.ws83{word-spacing:-11.704000pt;}
.wsa6{word-spacing:-11.616000pt;}
.ws92{word-spacing:-11.472000pt;}
.ws82{word-spacing:-11.440000pt;}
.ws8d{word-spacing:-11.264000pt;}
.ws94{word-spacing:-11.176000pt;}
.wsb9{word-spacing:-11.160000pt;}
.wsb4{word-spacing:-11.120000pt;}
.ws74{word-spacing:-11.000000pt;}
.ws99{word-spacing:-10.896000pt;}
.ws7{word-spacing:-10.880000pt;}
.ws8{word-spacing:-10.666667pt;}
.ws91{word-spacing:-10.648000pt;}
.ws9{word-spacing:-10.624000pt;}
.ws60{word-spacing:-10.384000pt;}
.ws9f{word-spacing:-10.296000pt;}
.wsae{word-spacing:-10.000000pt;}
.ws70{word-spacing:-9.988000pt;}
.wsba{word-spacing:-9.960000pt;}
.ws89{word-spacing:-9.944000pt;}
.wsb5{word-spacing:-9.720000pt;}
.wsb2{word-spacing:-9.080000pt;}
.wsa9{word-spacing:-0.762667pt;}
.ws24{word-spacing:-0.704000pt;}
.ws28{word-spacing:-0.645333pt;}
.ws9c{word-spacing:-0.624000pt;}
.wsf{word-spacing:-0.608000pt;}
.ws47{word-spacing:-0.586667pt;}
.ws67{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.557333pt;}
.ws37{word-spacing:-0.528000pt;}
.ws64{word-spacing:-0.484000pt;}
.ws5e{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.469333pt;}
.ws12{word-spacing:-0.456000pt;}
.ws66{word-spacing:-0.432000pt;}
.wsc1{word-spacing:-0.426667pt;}
.ws33{word-spacing:-0.410667pt;}
.ws18{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.354667pt;}
.ws32{word-spacing:-0.352000pt;}
.ws5{word-spacing:-0.338667pt;}
.ws49{word-spacing:-0.336000pt;}
.ws86{word-spacing:-0.308000pt;}
.ws35{word-spacing:-0.293333pt;}
.ws79{word-spacing:-0.288000pt;}
.ws17{word-spacing:-0.256000pt;}
.ws68{word-spacing:-0.240000pt;}
.ws44{word-spacing:-0.234667pt;}
.wsc{word-spacing:-0.202667pt;}
.ws69{word-spacing:-0.192000pt;}
.ws51{word-spacing:-0.176000pt;}
.ws15{word-spacing:-0.152000pt;}
.ws9d{word-spacing:-0.144000pt;}
.ws31{word-spacing:-0.117333pt;}
.wse{word-spacing:-0.101333pt;}
.ws7b{word-spacing:-0.096000pt;}
.ws2d{word-spacing:-0.058667pt;}
.wsbe{word-spacing:-0.053333pt;}
.ws6b{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.048000pt;}
.ws57{word-spacing:0.058667pt;}
.ws59{word-spacing:0.096000pt;}
.ws25{word-spacing:0.117333pt;}
.ws7e{word-spacing:0.144000pt;}
.wsc2{word-spacing:0.160000pt;}
.ws42{word-spacing:0.176000pt;}
.ws5d{word-spacing:0.192000pt;}
.wsbf{word-spacing:0.213333pt;}
.ws2a{word-spacing:0.234667pt;}
.ws4a{word-spacing:0.240000pt;}
.ws30{word-spacing:0.293333pt;}
.ws9b{word-spacing:0.336000pt;}
.ws4f{word-spacing:0.352000pt;}
.ws13{word-spacing:0.354667pt;}
.ws6d{word-spacing:0.384000pt;}
.ws50{word-spacing:0.410667pt;}
.ws87{word-spacing:0.432000pt;}
.ws46{word-spacing:0.469333pt;}
.ws48{word-spacing:0.480000pt;}
.ws52{word-spacing:0.528000pt;}
.ws93{word-spacing:0.576000pt;}
.ws22{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.624000pt;}
.ws65{word-spacing:0.645333pt;}
.ws9e{word-spacing:0.672000pt;}
.ws45{word-spacing:0.704000pt;}
.ws7d{word-spacing:0.720000pt;}
.ws23{word-spacing:0.762667pt;}
.ws5b{word-spacing:0.768000pt;}
.wsaa{word-spacing:0.816000pt;}
.ws2f{word-spacing:0.821333pt;}
.wsb{word-spacing:0.861333pt;}
.ws36{word-spacing:0.880000pt;}
.ws16{word-spacing:0.896000pt;}
.ws6c{word-spacing:0.912000pt;}
.ws34{word-spacing:0.938667pt;}
.ws7a{word-spacing:0.960000pt;}
.ws10{word-spacing:0.962667pt;}
.ws58{word-spacing:0.997333pt;}
.ws6a{word-spacing:1.008000pt;}
.ws26{word-spacing:1.056000pt;}
.wsbd{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.104000pt;}
.ws2b{word-spacing:1.114667pt;}
.wsbc{word-spacing:1.120000pt;}
.ws5c{word-spacing:1.152000pt;}
.ws41{word-spacing:1.173333pt;}
.wsd{word-spacing:1.216000pt;}
.wsc0{word-spacing:1.226667pt;}
.ws2e{word-spacing:1.232000pt;}
.ws29{word-spacing:1.290667pt;}
.ws2c{word-spacing:1.349333pt;}
.ws27{word-spacing:1.408000pt;}
.ws40{word-spacing:1.466667pt;}
.wsa3{word-spacing:1.701333pt;}
.wsb6{word-spacing:3.013333pt;}
.ws8a{word-spacing:3.178667pt;}
.wsb0{word-spacing:3.306667pt;}
.ws8e{word-spacing:6.688000pt;}
.ws56{word-spacing:7.098667pt;}
.ws8c{word-spacing:7.248000pt;}
.ws90{word-spacing:7.274667pt;}
.ws84{word-spacing:8.016000pt;}
.ws97{word-spacing:8.400000pt;}
.wsbb{word-spacing:12.085333pt;}
.ws54{word-spacing:18.538667pt;}
.ws4d{word-spacing:19.301333pt;}
.ws1c{word-spacing:19.418667pt;}
.ws96{word-spacing:19.829333pt;}
.wsa8{word-spacing:20.016000pt;}
.ws1b{word-spacing:20.533333pt;}
.ws1d{word-spacing:26.928000pt;}
.ws75{word-spacing:31.440000pt;}
.ws21{word-spacing:31.744000pt;}
.ws3d{word-spacing:32.016000pt;}
.ws61{word-spacing:32.592000pt;}
._f{margin-left:-9.626667pt;}
._d{margin-left:-7.685333pt;}
._4{margin-left:-6.637333pt;}
._b{margin-left:-5.328000pt;}
._5{margin-left:-4.320000pt;}
._2{margin-left:-3.122667pt;}
._0{margin-left:-1.792000pt;}
._3{margin-left:-0.893333pt;}
._1{width:1.024000pt;}
._c{width:2.026667pt;}
._a{width:2.992000pt;}
._9{width:4.080000pt;}
._e{width:32.016000pt;}
._6{width:42.624000pt;}
._8{width:978.856000pt;}
._7{width:987.690667pt;}
.fs9{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y217{bottom:40.717333pt;}
.y15a{bottom:40.756000pt;}
.y1f7{bottom:40.760000pt;}
.y117{bottom:40.770667pt;}
.y1ce{bottom:41.146667pt;}
.y17c{bottom:41.264000pt;}
.y1e{bottom:41.541333pt;}
.yf0{bottom:41.813333pt;}
.y133{bottom:41.898667pt;}
.yc1{bottom:41.925333pt;}
.y74{bottom:41.952000pt;}
.y1a4{bottom:41.962667pt;}
.y22e{bottom:43.160000pt;}
.y43{bottom:43.477333pt;}
.y9a{bottom:44.020000pt;}
.y1d{bottom:52.880000pt;}
.y216{bottom:53.389333pt;}
.y159{bottom:53.428000pt;}
.y1f6{bottom:53.432000pt;}
.y116{bottom:53.442667pt;}
.y1cd{bottom:53.818667pt;}
.y17b{bottom:53.936000pt;}
.yef{bottom:54.485333pt;}
.y132{bottom:54.570667pt;}
.yc0{bottom:54.597333pt;}
.y73{bottom:54.624000pt;}
.y1a3{bottom:54.634667pt;}
.y42{bottom:58.804000pt;}
.y99{bottom:59.346667pt;}
.y22d{bottom:59.800000pt;}
.y1c{bottom:64.218667pt;}
.y215{bottom:66.061333pt;}
.y158{bottom:66.100000pt;}
.y1f5{bottom:66.104000pt;}
.y115{bottom:66.114667pt;}
.y1cc{bottom:66.490667pt;}
.y17a{bottom:66.608000pt;}
.yee{bottom:67.157333pt;}
.y131{bottom:67.242667pt;}
.ybf{bottom:67.269333pt;}
.y72{bottom:67.296000pt;}
.y1a2{bottom:67.306667pt;}
.y41{bottom:74.130667pt;}
.y98{bottom:74.673333pt;}
.y1b{bottom:75.546667pt;}
.y22c{bottom:76.453333pt;}
.y214{bottom:78.733333pt;}
.y157{bottom:78.772000pt;}
.y1f4{bottom:78.776000pt;}
.y114{bottom:78.786667pt;}
.y1cb{bottom:79.162667pt;}
.y179{bottom:79.280000pt;}
.yed{bottom:79.829333pt;}
.y130{bottom:79.914667pt;}
.ybe{bottom:79.941333pt;}
.y71{bottom:79.968000pt;}
.y40{bottom:89.457333pt;}
.y97{bottom:90.000000pt;}
.y22b{bottom:90.453333pt;}
.y213{bottom:91.405333pt;}
.y1f3{bottom:91.448000pt;}
.y113{bottom:91.458667pt;}
.y1ca{bottom:91.834667pt;}
.y178{bottom:91.952000pt;}
.yec{bottom:92.501333pt;}
.y12f{bottom:92.586667pt;}
.ybd{bottom:92.613333pt;}
.y70{bottom:92.640000pt;}
.y156{bottom:95.224000pt;}
.y212{bottom:104.077333pt;}
.y1f2{bottom:104.120000pt;}
.y112{bottom:104.130667pt;}
.y1c9{bottom:104.506667pt;}
.y177{bottom:104.624000pt;}
.y3f{bottom:104.784000pt;}
.yeb{bottom:105.173333pt;}
.y12e{bottom:105.258667pt;}
.ybc{bottom:105.285333pt;}
.y1a1{bottom:105.364000pt;}
.y22a{bottom:107.093333pt;}
.y155{bottom:107.896000pt;}
.y211{bottom:116.749333pt;}
.y1f1{bottom:116.792000pt;}
.y111{bottom:116.802667pt;}
.y1c8{bottom:117.178667pt;}
.y176{bottom:117.296000pt;}
.yea{bottom:117.845333pt;}
.y12d{bottom:117.930667pt;}
.ybb{bottom:117.957333pt;}
.y3e{bottom:120.110667pt;}
.y154{bottom:120.568000pt;}
.y96{bottom:120.668000pt;}
.y1a0{bottom:120.690667pt;}
.y229{bottom:121.093333pt;}
.y6f{bottom:128.233333pt;}
.y210{bottom:129.421333pt;}
.y1f0{bottom:129.464000pt;}
.y110{bottom:129.474667pt;}
.y1c7{bottom:129.850667pt;}
.y175{bottom:129.968000pt;}
.ye9{bottom:130.517333pt;}
.y12c{bottom:130.602667pt;}
.yba{bottom:130.629333pt;}
.y153{bottom:133.240000pt;}
.y228{bottom:135.093333pt;}
.y3d{bottom:135.437333pt;}
.y95{bottom:135.994667pt;}
.y19f{bottom:136.017333pt;}
.y20f{bottom:142.093333pt;}
.y1ef{bottom:142.136000pt;}
.y10f{bottom:142.146667pt;}
.y1c6{bottom:142.522667pt;}
.y174{bottom:142.640000pt;}
.ye8{bottom:143.189333pt;}
.y12b{bottom:143.274667pt;}
.yb9{bottom:143.301333pt;}
.y6e{bottom:143.560000pt;}
.y152{bottom:145.912000pt;}
.y3c{bottom:150.764000pt;}
.y94{bottom:151.321333pt;}
.y19e{bottom:151.344000pt;}
.y227{bottom:151.746667pt;}
.y20e{bottom:154.765333pt;}
.y1ee{bottom:154.808000pt;}
.y10e{bottom:154.818667pt;}
.y1c5{bottom:155.194667pt;}
.y173{bottom:155.312000pt;}
.ye7{bottom:155.861333pt;}
.y12a{bottom:155.946667pt;}
.yb8{bottom:155.973333pt;}
.y151{bottom:158.584000pt;}
.y6d{bottom:158.886667pt;}
.y19{bottom:163.293333pt;}
.y3b{bottom:166.090667pt;}
.y93{bottom:166.648000pt;}
.y19d{bottom:166.670667pt;}
.y20d{bottom:167.437333pt;}
.y1ed{bottom:167.480000pt;}
.y10d{bottom:167.490667pt;}
.y1c4{bottom:167.866667pt;}
.y172{bottom:167.984000pt;}
.y226{bottom:168.386667pt;}
.ye6{bottom:168.533333pt;}
.y129{bottom:168.618667pt;}
.y150{bottom:171.256000pt;}
.y6c{bottom:174.213333pt;}
.y20c{bottom:180.109333pt;}
.y1ec{bottom:180.152000pt;}
.y10c{bottom:180.162667pt;}
.y1c3{bottom:180.538667pt;}
.y171{bottom:180.656000pt;}
.ye5{bottom:181.205333pt;}
.y128{bottom:181.290667pt;}
.y3a{bottom:181.417333pt;}
.y92{bottom:181.974667pt;}
.y19c{bottom:181.997333pt;}
.y14f{bottom:183.928000pt;}
.y225{bottom:185.026667pt;}
.y18{bottom:186.050667pt;}
.y6b{bottom:189.540000pt;}
.y20b{bottom:192.781333pt;}
.y1eb{bottom:192.824000pt;}
.y10b{bottom:192.834667pt;}
.y1c2{bottom:193.210667pt;}
.y170{bottom:193.328000pt;}
.ye4{bottom:193.877333pt;}
.y127{bottom:193.962667pt;}
.y14e{bottom:196.600000pt;}
.y39{bottom:196.744000pt;}
.y91{bottom:197.301333pt;}
.y19b{bottom:197.324000pt;}
.y224{bottom:199.026667pt;}
.y17{bottom:199.388667pt;}
.y6a{bottom:204.866667pt;}
.yb7{bottom:205.128000pt;}
.y20a{bottom:205.453333pt;}
.y1ea{bottom:205.496000pt;}
.y10a{bottom:205.506667pt;}
.y1c1{bottom:205.882667pt;}
.y16f{bottom:206.000000pt;}
.ye3{bottom:206.549333pt;}
.y126{bottom:206.634667pt;}
.y14d{bottom:209.272000pt;}
.y38{bottom:212.070667pt;}
.y90{bottom:212.628000pt;}
.y19a{bottom:212.650667pt;}
.y16{bottom:212.726667pt;}
.y223{bottom:215.680000pt;}
.y209{bottom:218.125333pt;}
.y1e9{bottom:218.168000pt;}
.y109{bottom:218.178667pt;}
.y1c0{bottom:218.554667pt;}
.ye2{bottom:219.221333pt;}
.y125{bottom:219.306667pt;}
.y69{bottom:220.193333pt;}
.yb6{bottom:220.454667pt;}
.y14c{bottom:221.944000pt;}
.y15{bottom:226.064667pt;}
.y37{bottom:227.397333pt;}
.y8f{bottom:227.954667pt;}
.y199{bottom:227.977333pt;}
.y208{bottom:230.797333pt;}
.y1e8{bottom:230.840000pt;}
.y108{bottom:230.850667pt;}
.y1bf{bottom:231.226667pt;}
.ye1{bottom:231.893333pt;}
.y222{bottom:232.320000pt;}
.y14b{bottom:234.616000pt;}
.y68{bottom:235.520000pt;}
.yb5{bottom:235.781333pt;}
.y14{bottom:239.402667pt;}
.y16e{bottom:243.192000pt;}
.y8e{bottom:243.281333pt;}
.y198{bottom:243.304000pt;}
.y207{bottom:243.469333pt;}
.y1e7{bottom:243.512000pt;}
.y107{bottom:243.522667pt;}
.y1be{bottom:243.898667pt;}
.ye0{bottom:244.565333pt;}
.y221{bottom:246.320000pt;}
.y14a{bottom:247.288000pt;}
.y67{bottom:250.846667pt;}
.yb4{bottom:251.108000pt;}
.y13{bottom:252.740667pt;}
.y206{bottom:256.141333pt;}
.y1e6{bottom:256.184000pt;}
.y106{bottom:256.194667pt;}
.y1bd{bottom:256.570667pt;}
.ydf{bottom:257.237333pt;}
.y36{bottom:258.065333pt;}
.y16d{bottom:258.518667pt;}
.y8d{bottom:258.608000pt;}
.y197{bottom:258.630667pt;}
.y149{bottom:259.960000pt;}
.y220{bottom:262.973333pt;}
.y12{bottom:266.078667pt;}
.y66{bottom:266.173333pt;}
.yb3{bottom:266.434667pt;}
.y205{bottom:268.813333pt;}
.y1e5{bottom:268.856000pt;}
.y105{bottom:268.866667pt;}
.y1bc{bottom:269.242667pt;}
.yde{bottom:269.909333pt;}
.y148{bottom:272.632000pt;}
.y35{bottom:273.392000pt;}
.y124{bottom:273.806667pt;}
.y16c{bottom:273.845333pt;}
.y8c{bottom:273.934667pt;}
.y196{bottom:273.957333pt;}
.y11{bottom:279.416667pt;}
.y21f{bottom:279.613333pt;}
.y204{bottom:281.485333pt;}
.y65{bottom:281.500000pt;}
.y1e4{bottom:281.528000pt;}
.yb2{bottom:281.761333pt;}
.y1bb{bottom:281.914667pt;}
.ydd{bottom:282.581333pt;}
.y147{bottom:285.304000pt;}
.y34{bottom:288.718667pt;}
.y123{bottom:289.144000pt;}
.y16b{bottom:289.172000pt;}
.y8b{bottom:289.261333pt;}
.y195{bottom:289.284000pt;}
.y203{bottom:294.157333pt;}
.y1e3{bottom:294.200000pt;}
.y1ba{bottom:294.586667pt;}
.ydc{bottom:295.253333pt;}
.y21e{bottom:296.266667pt;}
.y64{bottom:296.826667pt;}
.yb1{bottom:297.088000pt;}
.y146{bottom:301.744000pt;}
.y33{bottom:304.045333pt;}
.y122{bottom:304.470667pt;}
.y16a{bottom:304.498667pt;}
.y8a{bottom:304.588000pt;}
.y194{bottom:304.610667pt;}
.y10{bottom:306.080000pt;}
.y202{bottom:306.829333pt;}
.y1b9{bottom:307.258667pt;}
.ydb{bottom:307.925333pt;}
.y21d{bottom:310.266667pt;}
.y63{bottom:312.153333pt;}
.y104{bottom:312.266667pt;}
.yb0{bottom:312.414667pt;}
.y145{bottom:314.416000pt;}
.y32{bottom:319.372000pt;}
.y201{bottom:319.501333pt;}
.y121{bottom:319.797333pt;}
.y169{bottom:319.825333pt;}
.y89{bottom:319.914667pt;}
.y1b8{bottom:319.930667pt;}
.y193{bottom:319.937333pt;}
.yda{bottom:320.597333pt;}
.y21c{bottom:326.906667pt;}
.y144{bottom:327.088000pt;}
.y62{bottom:327.480000pt;}
.y103{bottom:327.593333pt;}
.yaf{bottom:327.741333pt;}
.y200{bottom:332.173333pt;}
.y1b7{bottom:332.602667pt;}
.yd9{bottom:333.269333pt;}
.y31{bottom:334.698667pt;}
.y168{bottom:335.152000pt;}
.y1e2{bottom:335.206667pt;}
.y88{bottom:335.241333pt;}
.y192{bottom:335.264000pt;}
.y143{bottom:339.760000pt;}
.y120{bottom:342.794667pt;}
.y61{bottom:342.806667pt;}
.y102{bottom:342.920000pt;}
.yae{bottom:343.068000pt;}
.y21b{bottom:343.546667pt;}
.y1ff{bottom:344.845333pt;}
.y1b6{bottom:345.274667pt;}
.yd8{bottom:345.941333pt;}
.y30{bottom:350.025333pt;}
.y1e1{bottom:350.533333pt;}
.y87{bottom:350.568000pt;}
.y191{bottom:350.590667pt;}
.yf{bottom:353.392000pt;}
.y1fe{bottom:357.517333pt;}
.y21a{bottom:357.546667pt;}
.y1b5{bottom:357.946667pt;}
.y101{bottom:358.246667pt;}
.y60{bottom:358.253333pt;}
.yad{bottom:358.394667pt;}
.yd7{bottom:358.613333pt;}
.y2f{bottom:365.352000pt;}
.y167{bottom:365.820000pt;}
.y1e0{bottom:365.860000pt;}
.y86{bottom:365.894667pt;}
.y190{bottom:365.917333pt;}
.ye{bottom:366.730000pt;}
.y1fd{bottom:370.189333pt;}
.y1b4{bottom:370.618667pt;}
.yd6{bottom:371.285333pt;}
.y219{bottom:371.546667pt;}
.y100{bottom:373.573333pt;}
.y5f{bottom:373.580000pt;}
.yac{bottom:373.721333pt;}
.y2e{bottom:380.678667pt;}
.y166{bottom:381.146667pt;}
.y11f{bottom:381.173333pt;}
.y1df{bottom:381.186667pt;}
.y85{bottom:381.221333pt;}
.y18f{bottom:381.244000pt;}
.y1fc{bottom:382.861333pt;}
.y1b3{bottom:383.290667pt;}
.yd5{bottom:383.957333pt;}
.y142{bottom:385.177333pt;}
.yff{bottom:388.900000pt;}
.y5e{bottom:388.906667pt;}
.yab{bottom:389.048000pt;}
.yd{bottom:389.517333pt;}
.y1fb{bottom:395.533333pt;}
.y1b2{bottom:395.962667pt;}
.y2d{bottom:396.005333pt;}
.y165{bottom:396.473333pt;}
.y11e{bottom:396.500000pt;}
.y1de{bottom:396.513333pt;}
.y84{bottom:396.548000pt;}
.y18e{bottom:396.570667pt;}
.yd4{bottom:396.629333pt;}
.y218{bottom:397.017333pt;}
.y141{bottom:400.504000pt;}
.yc{bottom:402.855333pt;}
.yfe{bottom:404.226667pt;}
.y5d{bottom:404.233333pt;}
.yaa{bottom:404.374667pt;}
.y1b1{bottom:408.634667pt;}
.yd3{bottom:409.301333pt;}
.y2c{bottom:411.332000pt;}
.y11d{bottom:411.826667pt;}
.y1dd{bottom:411.840000pt;}
.y83{bottom:411.874667pt;}
.y164{bottom:411.889333pt;}
.y18d{bottom:411.897333pt;}
.y140{bottom:415.830667pt;}
.yb{bottom:416.193333pt;}
.yfd{bottom:419.553333pt;}
.y5c{bottom:419.560000pt;}
.ya9{bottom:419.701333pt;}
.y1b0{bottom:421.306667pt;}
.yd2{bottom:421.973333pt;}
.y2b{bottom:426.658667pt;}
.y11c{bottom:427.153333pt;}
.y1dc{bottom:427.166667pt;}
.y82{bottom:427.201333pt;}
.y163{bottom:427.216000pt;}
.y18c{bottom:427.224000pt;}
.y1fa{bottom:427.260000pt;}
.ya{bottom:429.531333pt;}
.y13f{bottom:431.157333pt;}
.yfc{bottom:434.880000pt;}
.y5b{bottom:434.886667pt;}
.ya8{bottom:435.028000pt;}
.y11b{bottom:442.480000pt;}
.y1db{bottom:442.493333pt;}
.y162{bottom:442.542667pt;}
.y18b{bottom:442.550667pt;}
.y1f9{bottom:442.586667pt;}
.y9{bottom:442.869333pt;}
.y81{bottom:450.198667pt;}
.yfb{bottom:450.206667pt;}
.y5a{bottom:450.213333pt;}
.ya7{bottom:450.354667pt;}
.y13e{bottom:452.160000pt;}
.y8{bottom:456.207333pt;}
.y2a{bottom:457.326667pt;}
.y11a{bottom:457.806667pt;}
.yd1{bottom:457.820000pt;}
.y161{bottom:457.869333pt;}
.y18a{bottom:457.877333pt;}
.y1f8{bottom:457.913333pt;}
.yfa{bottom:465.533333pt;}
.y59{bottom:465.540000pt;}
.y13d{bottom:467.486667pt;}
.y7{bottom:469.545333pt;}
.y29{bottom:472.653333pt;}
.yd0{bottom:473.146667pt;}
.y1af{bottom:473.172000pt;}
.y160{bottom:473.196000pt;}
.y189{bottom:473.204000pt;}
.y119{bottom:473.240000pt;}
.ya6{bottom:473.352000pt;}
.yf9{bottom:480.860000pt;}
.y58{bottom:480.866667pt;}
.y13c{bottom:482.813333pt;}
.y6{bottom:482.883333pt;}
.y28{bottom:487.980000pt;}
.ycf{bottom:488.473333pt;}
.y1ae{bottom:488.498667pt;}
.y15f{bottom:488.522667pt;}
.y188{bottom:488.530667pt;}
.y80{bottom:488.537333pt;}
.y118{bottom:488.566667pt;}
.yf8{bottom:496.186667pt;}
.y13b{bottom:498.140000pt;}
.y27{bottom:503.306667pt;}
.yce{bottom:503.820000pt;}
.y1ad{bottom:503.825333pt;}
.y1da{bottom:503.833333pt;}
.y15e{bottom:503.849333pt;}
.y187{bottom:503.857333pt;}
.y57{bottom:503.864000pt;}
.ya5{bottom:503.893333pt;}
.y5{bottom:509.546667pt;}
.yf7{bottom:511.513333pt;}
.y13a{bottom:513.466667pt;}
.y26{bottom:518.633333pt;}
.ycd{bottom:519.146667pt;}
.y1ac{bottom:519.152000pt;}
.y1d9{bottom:519.160000pt;}
.y15d{bottom:519.176000pt;}
.y186{bottom:519.184000pt;}
.y7f{bottom:519.190667pt;}
.ya4{bottom:519.220000pt;}
.yf6{bottom:526.840000pt;}
.y139{bottom:528.793333pt;}
.y25{bottom:533.960000pt;}
.ycc{bottom:534.473333pt;}
.y1ab{bottom:534.478667pt;}
.y1d8{bottom:534.486667pt;}
.y15c{bottom:534.502667pt;}
.y185{bottom:534.510667pt;}
.y7e{bottom:534.517333pt;}
.ya3{bottom:534.546667pt;}
.yf5{bottom:542.166667pt;}
.y56{bottom:542.202667pt;}
.y138{bottom:544.116000pt;}
.y24{bottom:549.286667pt;}
.y1aa{bottom:549.805333pt;}
.y1d7{bottom:549.813333pt;}
.y15b{bottom:549.829333pt;}
.y184{bottom:549.837333pt;}
.y7d{bottom:549.844000pt;}
.ycb{bottom:549.866667pt;}
.ya2{bottom:549.873333pt;}
.yf4{bottom:557.493333pt;}
.y55{bottom:557.529333pt;}
.y23{bottom:564.613333pt;}
.y1d6{bottom:565.140000pt;}
.y137{bottom:565.160000pt;}
.y183{bottom:565.164000pt;}
.y7c{bottom:565.170667pt;}
.yca{bottom:565.193333pt;}
.ya1{bottom:565.200000pt;}
.yf3{bottom:572.820000pt;}
.y54{bottom:572.856000pt;}
.y22{bottom:579.940000pt;}
.y1a9{bottom:580.473333pt;}
.y136{bottom:580.486667pt;}
.y182{bottom:580.490667pt;}
.y7b{bottom:580.497333pt;}
.y1d5{bottom:580.512000pt;}
.yc9{bottom:580.520000pt;}
.ya0{bottom:580.526667pt;}
.yf2{bottom:588.146667pt;}
.y53{bottom:588.182667pt;}
.y21{bottom:595.266667pt;}
.y135{bottom:595.813333pt;}
.y181{bottom:595.817333pt;}
.y7a{bottom:595.824000pt;}
.y1a8{bottom:595.826667pt;}
.y1d4{bottom:595.838667pt;}
.yc8{bottom:595.846667pt;}
.y9f{bottom:595.853333pt;}
.yf1{bottom:603.473333pt;}
.y52{bottom:603.509333pt;}
.y20{bottom:610.593333pt;}
.y134{bottom:611.140000pt;}
.y180{bottom:611.144000pt;}
.y79{bottom:611.150667pt;}
.y1a7{bottom:611.153333pt;}
.y1d3{bottom:611.165333pt;}
.yc7{bottom:611.173333pt;}
.y9e{bottom:611.180000pt;}
.y51{bottom:618.836000pt;}
.y1f{bottom:625.920000pt;}
.y17f{bottom:626.470667pt;}
.y1a6{bottom:626.480000pt;}
.y1d2{bottom:626.492000pt;}
.yc6{bottom:626.500000pt;}
.y9d{bottom:626.506667pt;}
.y78{bottom:634.148000pt;}
.y50{bottom:634.162667pt;}
.y17e{bottom:641.797333pt;}
.y1a5{bottom:641.806667pt;}
.y1d1{bottom:641.818667pt;}
.yc5{bottom:641.826667pt;}
.y9c{bottom:641.833333pt;}
.y4{bottom:641.961333pt;}
.y4f{bottom:649.489333pt;}
.y3{bottom:655.293333pt;}
.y1d0{bottom:657.145333pt;}
.yc4{bottom:657.153333pt;}
.y9b{bottom:657.160000pt;}
.y17d{bottom:664.794667pt;}
.y4e{bottom:664.816000pt;}
.y49{bottom:667.032000pt;}
.y46{bottom:667.044667pt;}
.y2{bottom:671.960000pt;}
.y1cf{bottom:672.472000pt;}
.yc3{bottom:672.480000pt;}
.y77{bottom:672.486667pt;}
.y4d{bottom:680.142667pt;}
.y45{bottom:680.382667pt;}
.y48{bottom:685.702667pt;}
.yc2{bottom:687.806667pt;}
.y76{bottom:687.813333pt;}
.y4c{bottom:695.469333pt;}
.y47{bottom:699.040667pt;}
.y44{bottom:699.053333pt;}
.y75{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y4b{bottom:718.466667pt;}
.y4a{bottom:720.400000pt;}
.y1a{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.h9{height:52.032000pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.hc{height:56.906667pt;}
.hb{height:57.813333pt;}
.h7{height:62.597333pt;}
.ha{height:62.613333pt;}
.h8{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;}
.x4{left:48.813333pt;}
.xc{left:54.813333pt;}
.x3{left:61.066667pt;}
.xb{left:67.694667pt;}
.x5{left:68.833333pt;}
.xd{left:88.821333pt;}
.x7{left:99.136667pt;}
.x8{left:107.370000pt;}
.x6{left:156.453333pt;}
.xa{left:243.773333pt;}
.x9{left:276.786667pt;}
.x2{left:377.560000pt;}
}




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