
    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_a8492b8b6b9b1cad158498fe.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_fd688436f3e0476441678804.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_ab9dec149d07f83ed753223a.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:16.410000px;}
.ls56{letter-spacing:-1.650000px;}
.ls57{letter-spacing:-1.584000px;}
.ls5c{letter-spacing:-1.518000px;}
.ls52{letter-spacing:-1.452000px;}
.ls67{letter-spacing:-1.386000px;}
.lsd{letter-spacing:-1.320000px;}
.ls54{letter-spacing:-1.254000px;}
.ls47{letter-spacing:-1.188000px;}
.ls59{letter-spacing:-1.134000px;}
.ls50{letter-spacing:-1.122000px;}
.ls6c{letter-spacing:-1.089000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls4c{letter-spacing:-1.056000px;}
.lse{letter-spacing:-0.990000px;}
.ls24{letter-spacing:-0.972000px;}
.ls45{letter-spacing:-0.924000px;}
.ls66{letter-spacing:-0.918000px;}
.ls7{letter-spacing:-0.912000px;}
.ls48{letter-spacing:-0.891000px;}
.lsc{letter-spacing:-0.858000px;}
.ls51{letter-spacing:-0.841500px;}
.ls53{letter-spacing:-0.792000px;}
.ls4f{letter-spacing:-0.726000px;}
.ls1d{letter-spacing:-0.702000px;}
.ls1b{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.594000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.528000px;}
.ls61{letter-spacing:-0.495000px;}
.ls62{letter-spacing:-0.486000px;}
.ls3a{letter-spacing:-0.462000px;}
.ls49{letter-spacing:-0.445500px;}
.ls4a{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.399000px;}
.ls19{letter-spacing:-0.396000px;}
.ls5a{letter-spacing:-0.378000px;}
.ls3b{letter-spacing:-0.346500px;}
.ls1a{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.324000px;}
.ls55{letter-spacing:-0.297000px;}
.ls9{letter-spacing:-0.285000px;}
.ls23{letter-spacing:-0.270000px;}
.ls44{letter-spacing:-0.264000px;}
.ls3c{letter-spacing:-0.247500px;}
.ls38{letter-spacing:-0.198000px;}
.ls63{letter-spacing:-0.162000px;}
.ls6b{letter-spacing:-0.148500px;}
.lsa{letter-spacing:-0.132000px;}
.ls20{letter-spacing:-0.108000px;}
.ls65{letter-spacing:-0.099000px;}
.ls39{letter-spacing:-0.066000px;}
.ls58{letter-spacing:-0.054000px;}
.ls46{letter-spacing:-0.049500px;}
.ls18{letter-spacing:-0.048000px;}
.ls41{letter-spacing:-0.040500px;}
.ls6{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.040500px;}
.ls4d{letter-spacing:0.049500px;}
.ls60{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.066000px;}
.ls15{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.132000px;}
.ls4e{letter-spacing:0.148500px;}
.ls17{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.171000px;}
.ls3{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.243000px;}
.ls2{letter-spacing:0.264000px;}
.ls25{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.283500px;}
.ls43{letter-spacing:0.297000px;}
.ls35{letter-spacing:0.324000px;}
.ls30{letter-spacing:0.330000px;}
.ls5b{letter-spacing:0.346500px;}
.ls36{letter-spacing:0.364500px;}
.ls37{letter-spacing:0.378000px;}
.ls2f{letter-spacing:0.390000px;}
.lsf{letter-spacing:0.396000px;}
.ls1{letter-spacing:0.399000px;}
.ls69{letter-spacing:0.405000px;}
.ls5f{letter-spacing:0.432000px;}
.ls6a{letter-spacing:0.445500px;}
.ls10{letter-spacing:0.462000px;}
.ls40{letter-spacing:0.486000px;}
.lsb{letter-spacing:0.528000px;}
.ls2b{letter-spacing:0.594000px;}
.ls5e{letter-spacing:0.648000px;}
.ls28{letter-spacing:0.660000px;}
.ls64{letter-spacing:0.702000px;}
.ls42{letter-spacing:0.726000px;}
.ls13{letter-spacing:0.792000px;}
.ls4b{letter-spacing:0.858000px;}
.ls2d{letter-spacing:0.924000px;}
.ls27{letter-spacing:0.990000px;}
.ls2c{letter-spacing:1.056000px;}
.ls14{letter-spacing:1.122000px;}
.ls33{letter-spacing:1.350000px;}
.ls31{letter-spacing:1.377000px;}
.ls68{letter-spacing:1.386000px;}
.ls32{letter-spacing:1.404000px;}
.ls2e{letter-spacing:1.452000px;}
.ls5d{letter-spacing:1.518000px;}
.ls29{letter-spacing:1.584000px;}
.ls12{letter-spacing:1.650000px;}
.ls11{letter-spacing:15.390000px;}
.ls4{letter-spacing:18.270000px;}
.ls2a{letter-spacing:19.410000px;}
.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;}
}
.wsac{word-spacing:-18.150000px;}
.wsa0{word-spacing:-18.018000px;}
.ws4c{word-spacing:-17.952000px;}
.wsb1{word-spacing:-17.886000px;}
.ws92{word-spacing:-17.622000px;}
.ws46{word-spacing:-17.490000px;}
.ws9b{word-spacing:-17.358000px;}
.ws7d{word-spacing:-17.292000px;}
.ws79{word-spacing:-17.160000px;}
.ws1e{word-spacing:-17.028000px;}
.ws4d{word-spacing:-16.962000px;}
.ws1c{word-spacing:-16.896000px;}
.ws60{word-spacing:-16.830000px;}
.ws21{word-spacing:-16.764000px;}
.ws9f{word-spacing:-16.698000px;}
.ws77{word-spacing:-16.632000px;}
.ws1d{word-spacing:-16.566000px;}
.ws1a{word-spacing:-16.500000px;}
.ws44{word-spacing:-16.434000px;}
.ws7f{word-spacing:-16.368000px;}
.ws64{word-spacing:-16.302000px;}
.ws63{word-spacing:-16.236000px;}
.ws19{word-spacing:-16.170000px;}
.ws18{word-spacing:-16.104000px;}
.ws48{word-spacing:-16.038000px;}
.ws49{word-spacing:-15.972000px;}
.ws62{word-spacing:-15.906000px;}
.ws7a{word-spacing:-15.840000px;}
.ws7c{word-spacing:-15.774000px;}
.ws8e{word-spacing:-15.708000px;}
.ws90{word-spacing:-15.642000px;}
.ws67{word-spacing:-15.576000px;}
.ws9e{word-spacing:-15.444000px;}
.ws80{word-spacing:-15.312000px;}
.ws81{word-spacing:-15.246000px;}
.ws2{word-spacing:-15.180000px;}
.ws91{word-spacing:-15.048000px;}
.ws8b{word-spacing:-14.916000px;}
.ws4f{word-spacing:-14.904000px;}
.wsa9{word-spacing:-14.850000px;}
.ws0{word-spacing:-14.535000px;}
.wsae{word-spacing:-14.202000px;}
.ws55{word-spacing:-13.986000px;}
.wsb3{word-spacing:-13.932000px;}
.wsa5{word-spacing:-13.878000px;}
.wsa3{word-spacing:-13.824000px;}
.ws52{word-spacing:-13.770000px;}
.ws28{word-spacing:-13.662000px;}
.ws6a{word-spacing:-13.608000px;}
.ws25{word-spacing:-13.500000px;}
.ws94{word-spacing:-13.446000px;}
.wsa6{word-spacing:-13.338000px;}
.ws82{word-spacing:-13.230000px;}
.wsa4{word-spacing:-13.176000px;}
.ws96{word-spacing:-13.122000px;}
.ws95{word-spacing:-12.960000px;}
.ws23{word-spacing:-12.798000px;}
.ws99{word-spacing:-12.721500px;}
.ws61{word-spacing:-12.672000px;}
.wsad{word-spacing:-12.582000px;}
.ws76{word-spacing:-12.573000px;}
.ws26{word-spacing:-12.528000px;}
.ws7b{word-spacing:-12.523500px;}
.ws9c{word-spacing:-12.424500px;}
.ws20{word-spacing:-12.375000px;}
.ws65{word-spacing:-12.325500px;}
.wsab{word-spacing:-12.276000px;}
.wsb8{word-spacing:-12.226500px;}
.ws8c{word-spacing:-12.177000px;}
.ws47{word-spacing:-12.127500px;}
.ws86{word-spacing:-12.078000px;}
.ws45{word-spacing:-12.028500px;}
.ws17{word-spacing:-11.952000px;}
.ws9d{word-spacing:-11.929500px;}
.wsa2{word-spacing:-11.880000px;}
.ws4e{word-spacing:-11.502000px;}
.ws68{word-spacing:-11.484000px;}
.ws3{word-spacing:-11.385000px;}
.wsb9{word-spacing:-11.286000px;}
.wsb4{word-spacing:-10.570500px;}
.wsb2{word-spacing:-10.530000px;}
.ws54{word-spacing:-10.489500px;}
.ws50{word-spacing:-10.408500px;}
.ws51{word-spacing:-10.368000px;}
.ws53{word-spacing:-10.165500px;}
.ws5{word-spacing:-10.125000px;}
.ws56{word-spacing:-10.084500px;}
.ws6b{word-spacing:-9.679500px;}
.ws71{word-spacing:-0.858000px;}
.ws35{word-spacing:-0.792000px;}
.wse{word-spacing:-0.726000px;}
.ws15{word-spacing:-0.660000px;}
.wsa7{word-spacing:-0.648000px;}
.ws6f{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.540000px;}
.ws33{word-spacing:-0.528000px;}
.wsa8{word-spacing:-0.486000px;}
.ws29{word-spacing:-0.462000px;}
.wsd{word-spacing:-0.456000px;}
.ws3e{word-spacing:-0.432000px;}
.ws43{word-spacing:-0.396000px;}
.ws1{word-spacing:-0.381000px;}
.ws3d{word-spacing:-0.378000px;}
.ws2b{word-spacing:-0.346500px;}
.wsb{word-spacing:-0.342000px;}
.ws70{word-spacing:-0.330000px;}
.ws3c{word-spacing:-0.324000px;}
.ws1b{word-spacing:-0.264000px;}
.ws75{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.198000px;}
.ws39{word-spacing:-0.162000px;}
.ws5a{word-spacing:-0.132000px;}
.ws37{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.066000px;}
.ws36{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws38{word-spacing:0.054000px;}
.wsc{word-spacing:0.057000px;}
.ws4a{word-spacing:0.066000px;}
.ws72{word-spacing:0.108000px;}
.ws31{word-spacing:0.132000px;}
.wsb5{word-spacing:0.148500px;}
.ws5e{word-spacing:0.162000px;}
.ws9{word-spacing:0.171000px;}
.ws57{word-spacing:0.198000px;}
.ws24{word-spacing:0.216000px;}
.ws84{word-spacing:0.264000px;}
.ws3f{word-spacing:0.270000px;}
.ws73{word-spacing:0.324000px;}
.ws34{word-spacing:0.330000px;}
.ws27{word-spacing:0.378000px;}
.ws4b{word-spacing:0.396000px;}
.ws3a{word-spacing:0.432000px;}
.ws14{word-spacing:0.462000px;}
.ws40{word-spacing:0.486000px;}
.ws5b{word-spacing:0.528000px;}
.ws59{word-spacing:0.594000px;}
.ws98{word-spacing:0.648000px;}
.ws83{word-spacing:0.660000px;}
.wsb0{word-spacing:0.702000px;}
.ws5d{word-spacing:0.726000px;}
.ws1f{word-spacing:0.792000px;}
.ws30{word-spacing:0.858000px;}
.ws6c{word-spacing:0.864000px;}
.ws5c{word-spacing:0.891000px;}
.wsb6{word-spacing:0.918000px;}
.ws6e{word-spacing:0.924000px;}
.ws8a{word-spacing:0.940500px;}
.ws5f{word-spacing:0.972000px;}
.wsaa{word-spacing:0.990000px;}
.wsa{word-spacing:1.026000px;}
.ws2d{word-spacing:1.056000px;}
.ws41{word-spacing:1.080000px;}
.ws12{word-spacing:1.089000px;}
.ws10{word-spacing:1.122000px;}
.ws42{word-spacing:1.134000px;}
.ws2a{word-spacing:1.188000px;}
.ws74{word-spacing:1.242000px;}
.ws8{word-spacing:1.254000px;}
.ws97{word-spacing:1.296000px;}
.ws6d{word-spacing:1.320000px;}
.ws7{word-spacing:1.368000px;}
.wsf{word-spacing:1.386000px;}
.ws11{word-spacing:1.452000px;}
.ws2c{word-spacing:1.518000px;}
.ws13{word-spacing:1.584000px;}
.ws58{word-spacing:1.650000px;}
.ws66{word-spacing:1.716000px;}
.ws2f{word-spacing:3.168000px;}
.ws9a{word-spacing:3.345000px;}
.ws22{word-spacing:3.366000px;}
.wsa1{word-spacing:3.585000px;}
.ws87{word-spacing:3.630000px;}
.ws93{word-spacing:3.693000px;}
.ws89{word-spacing:3.696000px;}
.ws8f{word-spacing:3.927000px;}
.ws7e{word-spacing:4.129500px;}
.wsaf{word-spacing:4.818000px;}
.wsb7{word-spacing:5.385000px;}
.ws88{word-spacing:5.454000px;}
.ws78{word-spacing:5.776500px;}
.ws85{word-spacing:6.270000px;}
.ws69{word-spacing:9.018000px;}
.ws8d{word-spacing:24.024000px;}
.ws16{word-spacing:35.904000px;}
.ws4{word-spacing:36.018000px;}
._c{margin-left:-10.449000px;}
._15{margin-left:-9.091500px;}
._b{margin-left:-7.956000px;}
._e{margin-left:-6.768000px;}
._4{margin-left:-5.676000px;}
._5{margin-left:-3.924000px;}
._0{margin-left:-1.944000px;}
._1{width:1.659000px;}
._a{width:3.762000px;}
._12{width:4.809000px;}
._13{width:6.318000px;}
._11{width:7.404000px;}
._10{width:8.916000px;}
._14{width:11.826000px;}
._2{width:13.401000px;}
._6{width:15.708000px;}
._f{width:16.992000px;}
._9{width:19.434000px;}
._d{width:41.184000px;}
._3{width:47.928000px;}
._8{width:621.504000px;}
._7{width:1061.400000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:45.969000px;}
.y1c{bottom:46.044000px;}
.y146{bottom:47.076000px;}
.y4b{bottom:47.094000px;}
.y185{bottom:47.178000px;}
.y74{bottom:47.214000px;}
.y1d2{bottom:47.238000px;}
.y109{bottom:60.159000px;}
.y1de{bottom:60.219000px;}
.y166{bottom:60.225000px;}
.y1b{bottom:60.300000px;}
.y145{bottom:61.332000px;}
.y4a{bottom:61.350000px;}
.y184{bottom:61.434000px;}
.y98{bottom:61.458000px;}
.y73{bottom:61.464000px;}
.y1b7{bottom:61.470000px;}
.y1d1{bottom:61.494000px;}
.y108{bottom:74.415000px;}
.y1dd{bottom:74.469000px;}
.y144{bottom:75.588000px;}
.y49{bottom:75.606000px;}
.y183{bottom:75.690000px;}
.yd3{bottom:75.708000px;}
.y72{bottom:75.714000px;}
.y12d{bottom:75.720000px;}
.y1d0{bottom:75.744000px;}
.y107{bottom:88.671000px;}
.y1dc{bottom:88.719000px;}
.y143{bottom:89.844000px;}
.y48{bottom:89.862000px;}
.y182{bottom:89.946000px;}
.y71{bottom:89.958000px;}
.y97{bottom:89.964000px;}
.y1cf{bottom:90.000000px;}
.y1b6{bottom:101.167500px;}
.y165{bottom:101.175000px;}
.y106{bottom:102.927000px;}
.y1db{bottom:102.969000px;}
.y142{bottom:104.100000px;}
.y47{bottom:104.118000px;}
.y96{bottom:104.196000px;}
.y181{bottom:104.202000px;}
.y70{bottom:104.214000px;}
.yad{bottom:104.220000px;}
.y1a{bottom:109.117500px;}
.y105{bottom:117.183000px;}
.y1da{bottom:117.225000px;}
.y141{bottom:118.356000px;}
.y46{bottom:118.374000px;}
.y198{bottom:118.380000px;}
.y1b5{bottom:118.410000px;}
.y164{bottom:118.417500px;}
.y95{bottom:118.452000px;}
.y6f{bottom:118.458000px;}
.y11a{bottom:118.470000px;}
.y12c{bottom:123.594000px;}
.y19{bottom:126.382500px;}
.y104{bottom:131.439000px;}
.y140{bottom:132.612000px;}
.y45{bottom:132.630000px;}
.y94{bottom:132.708000px;}
.y6e{bottom:132.714000px;}
.y1ce{bottom:135.525000px;}
.y197{bottom:135.622500px;}
.y1b4{bottom:135.652500px;}
.y163{bottom:135.660000px;}
.y12b{bottom:140.836500px;}
.y18{bottom:143.625000px;}
.y103{bottom:145.695000px;}
.y13f{bottom:146.868000px;}
.y44{bottom:146.886000px;}
.y93{bottom:146.964000px;}
.y6d{bottom:146.970000px;}
.yac{bottom:152.787000px;}
.yd2{bottom:152.790000px;}
.y196{bottom:152.865000px;}
.ye8{bottom:152.893500px;}
.y1b3{bottom:152.895000px;}
.y162{bottom:152.902500px;}
.y12a{bottom:158.079000px;}
.y102{bottom:159.951000px;}
.y17{bottom:160.867500px;}
.y13e{bottom:161.124000px;}
.y43{bottom:161.142000px;}
.y92{bottom:161.220000px;}
.yab{bottom:170.029500px;}
.yd1{bottom:170.032500px;}
.y119{bottom:170.047500px;}
.y195{bottom:170.107500px;}
.ye7{bottom:170.136000px;}
.y1b2{bottom:170.137500px;}
.y161{bottom:170.145000px;}
.y101{bottom:174.207000px;}
.y129{bottom:175.321500px;}
.y13d{bottom:175.380000px;}
.y42{bottom:175.398000px;}
.y16{bottom:178.132500px;}
.yaa{bottom:187.272000px;}
.y118{bottom:187.290000px;}
.y6c{bottom:187.320000px;}
.y1cd{bottom:187.327500px;}
.yd0{bottom:187.335000px;}
.y194{bottom:187.350000px;}
.ye6{bottom:187.378500px;}
.y1b1{bottom:187.380000px;}
.y160{bottom:187.387500px;}
.y100{bottom:188.463000px;}
.y13c{bottom:189.636000px;}
.y41{bottom:189.654000px;}
.y15{bottom:195.375000px;}
.yff{bottom:202.719000px;}
.y13b{bottom:203.892000px;}
.y40{bottom:203.910000px;}
.y91{bottom:204.532500px;}
.y6b{bottom:204.562500px;}
.y1cc{bottom:204.570000px;}
.ycf{bottom:204.577500px;}
.y193{bottom:204.592500px;}
.ye5{bottom:204.621000px;}
.y1b0{bottom:204.622500px;}
.y15f{bottom:204.630000px;}
.y128{bottom:209.823000px;}
.y14{bottom:212.617500px;}
.yfe{bottom:216.969000px;}
.y13a{bottom:218.148000px;}
.y3f{bottom:218.166000px;}
.ya9{bottom:221.773500px;}
.y6a{bottom:221.805000px;}
.y90{bottom:221.812500px;}
.yce{bottom:221.820000px;}
.y180{bottom:221.827500px;}
.y192{bottom:221.835000px;}
.y117{bottom:221.841000px;}
.ye4{bottom:221.863500px;}
.y1af{bottom:221.865000px;}
.y15e{bottom:221.872500px;}
.y13{bottom:229.860000px;}
.yfd{bottom:231.225000px;}
.y139{bottom:232.404000px;}
.y3e{bottom:232.422000px;}
.y69{bottom:239.047500px;}
.y8f{bottom:239.055000px;}
.ycd{bottom:239.062500px;}
.y17f{bottom:239.070000px;}
.y191{bottom:239.077500px;}
.y116{bottom:239.083500px;}
.ye3{bottom:239.106000px;}
.y1ae{bottom:239.107500px;}
.y15d{bottom:239.115000px;}
.y138{bottom:246.660000px;}
.y3d{bottom:246.678000px;}
.ya8{bottom:256.282500px;}
.y68{bottom:256.290000px;}
.y8e{bottom:256.297500px;}
.ycc{bottom:256.305000px;}
.y17e{bottom:256.312500px;}
.y127{bottom:256.320000px;}
.y115{bottom:256.326000px;}
.ye2{bottom:256.348500px;}
.y1ad{bottom:256.350000px;}
.y15c{bottom:256.357500px;}
.y137{bottom:260.916000px;}
.y3c{bottom:260.934000px;}
.y67{bottom:273.532500px;}
.y8d{bottom:273.540000px;}
.ycb{bottom:273.547500px;}
.y17d{bottom:273.555000px;}
.y126{bottom:273.562500px;}
.y114{bottom:273.568500px;}
.ya7{bottom:273.577500px;}
.ye1{bottom:273.591000px;}
.y1ac{bottom:273.592500px;}
.y15b{bottom:273.600000px;}
.y136{bottom:275.172000px;}
.y3b{bottom:275.190000px;}
.y135{bottom:289.428000px;}
.y3a{bottom:289.446000px;}
.y8c{bottom:290.782500px;}
.yca{bottom:290.790000px;}
.y17c{bottom:290.797500px;}
.y125{bottom:290.805000px;}
.y113{bottom:290.811000px;}
.y66{bottom:290.812500px;}
.ya6{bottom:290.820000px;}
.ye0{bottom:290.833500px;}
.y1ab{bottom:290.835000px;}
.y15a{bottom:290.842500px;}
.yfc{bottom:290.860500px;}
.y134{bottom:303.684000px;}
.y39{bottom:303.702000px;}
.y11{bottom:307.575000px;}
.yc9{bottom:308.032500px;}
.y17b{bottom:308.040000px;}
.y124{bottom:308.047500px;}
.y65{bottom:308.055000px;}
.ya5{bottom:308.062500px;}
.y8b{bottom:308.070000px;}
.ydf{bottom:308.076000px;}
.y1aa{bottom:308.077500px;}
.y159{bottom:308.085000px;}
.yfb{bottom:308.103000px;}
.y1cb{bottom:308.226000px;}
.y133{bottom:317.940000px;}
.y38{bottom:317.958000px;}
.y17a{bottom:325.282500px;}
.y123{bottom:325.290000px;}
.y64{bottom:325.297500px;}
.ya4{bottom:325.305000px;}
.y8a{bottom:325.312500px;}
.yde{bottom:325.318500px;}
.y1a9{bottom:325.320000px;}
.y158{bottom:325.327500px;}
.yfa{bottom:325.345500px;}
.yc8{bottom:325.425000px;}
.y1ca{bottom:325.468500px;}
.y132{bottom:332.196000px;}
.y37{bottom:332.214000px;}
.y10{bottom:333.183000px;}
.y122{bottom:342.532500px;}
.y63{bottom:342.540000px;}
.ya3{bottom:342.547500px;}
.y179{bottom:342.553500px;}
.y89{bottom:342.555000px;}
.ydd{bottom:342.561000px;}
.y1a8{bottom:342.562500px;}
.y157{bottom:342.570000px;}
.yf9{bottom:342.588000px;}
.yc7{bottom:342.667500px;}
.y1c9{bottom:342.711000px;}
.y131{bottom:346.452000px;}
.y36{bottom:346.470000px;}
.yf{bottom:348.188250px;}
.y62{bottom:359.782500px;}
.ya2{bottom:359.790000px;}
.y178{bottom:359.796000px;}
.y88{bottom:359.797500px;}
.y1a7{bottom:359.805000px;}
.y156{bottom:359.812500px;}
.yf8{bottom:359.830500px;}
.yc6{bottom:359.910000px;}
.y121{bottom:359.925000px;}
.y190{bottom:359.947500px;}
.y1c8{bottom:359.953500px;}
.y130{bottom:360.708000px;}
.ye{bottom:363.193500px;}
.y12f{bottom:374.964000px;}
.ya1{bottom:377.032500px;}
.y177{bottom:377.038500px;}
.y87{bottom:377.040000px;}
.y1a6{bottom:377.047500px;}
.y155{bottom:377.055000px;}
.ydc{bottom:377.062500px;}
.yf7{bottom:377.073000px;}
.y61{bottom:377.077500px;}
.yc5{bottom:377.152500px;}
.y120{bottom:377.167500px;}
.y18f{bottom:377.190000px;}
.y1c7{bottom:377.196000px;}
.yd{bottom:378.198750px;}
.y12e{bottom:389.220000px;}
.y176{bottom:394.281000px;}
.y86{bottom:394.282500px;}
.y1a5{bottom:394.290000px;}
.y154{bottom:394.297500px;}
.ydb{bottom:394.305000px;}
.ya0{bottom:394.312500px;}
.y60{bottom:394.320000px;}
.y35{bottom:394.335000px;}
.yc4{bottom:394.395000px;}
.y11f{bottom:394.410000px;}
.y18e{bottom:394.432500px;}
.y1c6{bottom:394.438500px;}
.yf6{bottom:402.945000px;}
.yc{bottom:408.195000px;}
.y175{bottom:411.523500px;}
.y1a4{bottom:411.532500px;}
.y153{bottom:411.540000px;}
.yda{bottom:411.547500px;}
.y9f{bottom:411.555000px;}
.y5f{bottom:411.562500px;}
.y112{bottom:411.576000px;}
.y34{bottom:411.577500px;}
.yc3{bottom:411.637500px;}
.y11e{bottom:411.652500px;}
.y18d{bottom:411.675000px;}
.y1c5{bottom:411.681000px;}
.y85{bottom:411.697500px;}
.yf5{bottom:420.187500px;}
.y152{bottom:428.782500px;}
.yd9{bottom:428.790000px;}
.y9e{bottom:428.797500px;}
.y5e{bottom:428.805000px;}
.y111{bottom:428.818500px;}
.y33{bottom:428.820000px;}
.y1a3{bottom:428.839500px;}
.yc2{bottom:428.880000px;}
.y11d{bottom:428.895000px;}
.y18c{bottom:428.917500px;}
.y1c4{bottom:428.923500px;}
.y84{bottom:428.940000px;}
.yf4{bottom:437.430000px;}
.yd8{bottom:446.032500px;}
.y9d{bottom:446.040000px;}
.y5d{bottom:446.047500px;}
.y110{bottom:446.061000px;}
.y32{bottom:446.062500px;}
.y1a2{bottom:446.082000px;}
.y151{bottom:446.098500px;}
.yc1{bottom:446.122500px;}
.y11c{bottom:446.137500px;}
.y174{bottom:446.158500px;}
.y18b{bottom:446.160000px;}
.y1c3{bottom:446.166000px;}
.y83{bottom:446.182500px;}
.yb{bottom:452.951250px;}
.yf3{bottom:454.672500px;}
.y9c{bottom:463.282500px;}
.y5c{bottom:463.290000px;}
.y10f{bottom:463.303500px;}
.y31{bottom:463.305000px;}
.y1a1{bottom:463.324500px;}
.y150{bottom:463.341000px;}
.yc0{bottom:463.365000px;}
.y11b{bottom:463.380000px;}
.y173{bottom:463.401000px;}
.y18a{bottom:463.402500px;}
.y1c2{bottom:463.408500px;}
.y82{bottom:463.425000px;}
.yf2{bottom:471.915000px;}
.ya{bottom:478.572750px;}
.y5b{bottom:480.532500px;}
.y10e{bottom:480.546000px;}
.y30{bottom:480.547500px;}
.y1a0{bottom:480.567000px;}
.y14f{bottom:480.583500px;}
.y1d9{bottom:480.600000px;}
.ybf{bottom:480.607500px;}
.y9b{bottom:480.622500px;}
.y172{bottom:480.643500px;}
.y189{bottom:480.645000px;}
.y1c1{bottom:480.651000px;}
.y81{bottom:480.667500px;}
.yf1{bottom:489.157500px;}
.y9{bottom:493.578000px;}
.y2f{bottom:497.790000px;}
.y5a{bottom:497.797500px;}
.y19f{bottom:497.809500px;}
.y14e{bottom:497.826000px;}
.y1d8{bottom:497.842500px;}
.ybe{bottom:497.850000px;}
.y9a{bottom:497.865000px;}
.y171{bottom:497.886000px;}
.y188{bottom:497.887500px;}
.y1c0{bottom:497.893500px;}
.y80{bottom:497.910000px;}
.yf0{bottom:506.430000px;}
.y8{bottom:508.583250px;}
.y2e{bottom:515.032500px;}
.y59{bottom:515.040000px;}
.y10d{bottom:515.047500px;}
.y19e{bottom:515.052000px;}
.y14d{bottom:515.068500px;}
.y1d7{bottom:515.085000px;}
.ybd{bottom:515.092500px;}
.y99{bottom:515.107500px;}
.y170{bottom:515.128500px;}
.y187{bottom:515.130000px;}
.y1bf{bottom:515.136000px;}
.y7f{bottom:515.152500px;}
.y7{bottom:523.588500px;}
.yef{bottom:523.672500px;}
.y58{bottom:532.282500px;}
.y10c{bottom:532.290000px;}
.y19d{bottom:532.294500px;}
.y14c{bottom:532.311000px;}
.y1d6{bottom:532.327500px;}
.ybc{bottom:532.335000px;}
.y2d{bottom:532.350000px;}
.y16f{bottom:532.371000px;}
.y186{bottom:532.372500px;}
.y1be{bottom:532.378500px;}
.y7e{bottom:532.395000px;}
.y6{bottom:538.593750px;}
.yee{bottom:540.915000px;}
.y10b{bottom:549.532500px;}
.y19c{bottom:549.537000px;}
.y14b{bottom:549.553500px;}
.y1d5{bottom:549.570000px;}
.ybb{bottom:549.577500px;}
.y2c{bottom:549.592500px;}
.y16e{bottom:549.613500px;}
.y57{bottom:549.615000px;}
.y1bd{bottom:549.621000px;}
.y7d{bottom:549.637500px;}
.yed{bottom:558.157500px;}
.y19b{bottom:566.779500px;}
.y1d4{bottom:566.812500px;}
.yba{bottom:566.820000px;}
.y2b{bottom:566.835000px;}
.y16d{bottom:566.856000px;}
.y56{bottom:566.857500px;}
.y1bc{bottom:566.863500px;}
.y7c{bottom:566.880000px;}
.y5{bottom:568.590000px;}
.yec{bottom:575.425500px;}
.y14a{bottom:584.055000px;}
.yb9{bottom:584.062500px;}
.y2a{bottom:584.077500px;}
.y16c{bottom:584.098500px;}
.y55{bottom:584.100000px;}
.y1bb{bottom:584.106000px;}
.y7b{bottom:584.122500px;}
.yeb{bottom:592.668000px;}
.y19a{bottom:601.281000px;}
.y149{bottom:601.297500px;}
.yb8{bottom:601.305000px;}
.y29{bottom:601.320000px;}
.y16b{bottom:601.341000px;}
.y54{bottom:601.342500px;}
.y1ba{bottom:601.348500px;}
.y7a{bottom:601.365000px;}
.yea{bottom:609.910500px;}
.y199{bottom:618.523500px;}
.y148{bottom:618.540000px;}
.yb7{bottom:618.547500px;}
.y28{bottom:618.562500px;}
.y16a{bottom:618.583500px;}
.y53{bottom:618.585000px;}
.y1b9{bottom:618.591000px;}
.y79{bottom:618.607500px;}
.ye9{bottom:627.153000px;}
.y147{bottom:635.782500px;}
.yb6{bottom:635.790000px;}
.y27{bottom:635.805000px;}
.y169{bottom:635.826000px;}
.y52{bottom:635.827500px;}
.y1b8{bottom:635.833500px;}
.y78{bottom:635.850000px;}
.yb5{bottom:653.032500px;}
.y26{bottom:653.047500px;}
.y168{bottom:653.068500px;}
.y51{bottom:653.070000px;}
.y77{bottom:653.092500px;}
.yd7{bottom:670.275000px;}
.y25{bottom:670.290000px;}
.y1d3{bottom:670.305000px;}
.y167{bottom:670.311000px;}
.y50{bottom:670.312500px;}
.yb4{bottom:670.327500px;}
.y76{bottom:670.335000px;}
.y24{bottom:687.532500px;}
.yd6{bottom:687.547500px;}
.y4f{bottom:687.555000px;}
.yb3{bottom:687.570000px;}
.y75{bottom:687.577500px;}
.yd5{bottom:704.790000px;}
.y4e{bottom:704.797500px;}
.yb2{bottom:704.812500px;}
.y23{bottom:704.820000px;}
.y4{bottom:713.205000px;}
.yd4{bottom:722.032500px;}
.y4d{bottom:722.040000px;}
.yb1{bottom:722.055000px;}
.y22{bottom:722.062500px;}
.y3{bottom:731.955000px;}
.y4c{bottom:739.282500px;}
.yb0{bottom:739.297500px;}
.y21{bottom:739.305000px;}
.yaf{bottom:756.540000px;}
.y20{bottom:756.547500px;}
.yae{bottom:773.782500px;}
.y1f{bottom:773.790000px;}
.y2{bottom:776.955000px;}
.y1e{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y1d{bottom:808.275000px;}
.y12{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.he{height:57.642000px;}
.hc{height:57.666000px;}
.h11{height:57.882000px;}
.ha{height:58.536000px;}
.hb{height:58.560000px;}
.hd{height:58.584000px;}
.hf{height:58.632000px;}
.h12{height:59.112000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.h7{height:70.422000px;}
.h10{height:71.334000px;}
.h8{height:71.454000px;}
.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;}
.x3{left:54.915000px;}
.x6{left:76.192500px;}
.x5{left:77.418000px;}
.x4{left:86.485500px;}
.x8{left:98.694000px;}
.xa{left:99.927000px;}
.x9{left:289.564500px;}
.x7{left:291.115500px;}
.x2{left:412.515000px;}
@media print{
.v2{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.586667pt;}
.ls56{letter-spacing:-1.466667pt;}
.ls57{letter-spacing:-1.408000pt;}
.ls5c{letter-spacing:-1.349333pt;}
.ls52{letter-spacing:-1.290667pt;}
.ls67{letter-spacing:-1.232000pt;}
.lsd{letter-spacing:-1.173333pt;}
.ls54{letter-spacing:-1.114667pt;}
.ls47{letter-spacing:-1.056000pt;}
.ls59{letter-spacing:-1.008000pt;}
.ls50{letter-spacing:-0.997333pt;}
.ls6c{letter-spacing:-0.968000pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls4c{letter-spacing:-0.938667pt;}
.lse{letter-spacing:-0.880000pt;}
.ls24{letter-spacing:-0.864000pt;}
.ls45{letter-spacing:-0.821333pt;}
.ls66{letter-spacing:-0.816000pt;}
.ls7{letter-spacing:-0.810667pt;}
.ls48{letter-spacing:-0.792000pt;}
.lsc{letter-spacing:-0.762667pt;}
.ls51{letter-spacing:-0.748000pt;}
.ls53{letter-spacing:-0.704000pt;}
.ls4f{letter-spacing:-0.645333pt;}
.ls1d{letter-spacing:-0.624000pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.528000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.469333pt;}
.ls61{letter-spacing:-0.440000pt;}
.ls62{letter-spacing:-0.432000pt;}
.ls3a{letter-spacing:-0.410667pt;}
.ls49{letter-spacing:-0.396000pt;}
.ls4a{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.354667pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls5a{letter-spacing:-0.336000pt;}
.ls3b{letter-spacing:-0.308000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls55{letter-spacing:-0.264000pt;}
.ls9{letter-spacing:-0.253333pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls44{letter-spacing:-0.234667pt;}
.ls3c{letter-spacing:-0.220000pt;}
.ls38{letter-spacing:-0.176000pt;}
.ls63{letter-spacing:-0.144000pt;}
.ls6b{letter-spacing:-0.132000pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls65{letter-spacing:-0.088000pt;}
.ls39{letter-spacing:-0.058667pt;}
.ls58{letter-spacing:-0.048000pt;}
.ls46{letter-spacing:-0.044000pt;}
.ls18{letter-spacing:-0.042667pt;}
.ls41{letter-spacing:-0.036000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.036000pt;}
.ls4d{letter-spacing:0.044000pt;}
.ls60{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.058667pt;}
.ls15{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.117333pt;}
.ls4e{letter-spacing:0.132000pt;}
.ls17{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.152000pt;}
.ls3{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.216000pt;}
.ls2{letter-spacing:0.234667pt;}
.ls25{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.252000pt;}
.ls43{letter-spacing:0.264000pt;}
.ls35{letter-spacing:0.288000pt;}
.ls30{letter-spacing:0.293333pt;}
.ls5b{letter-spacing:0.308000pt;}
.ls36{letter-spacing:0.324000pt;}
.ls37{letter-spacing:0.336000pt;}
.ls2f{letter-spacing:0.346667pt;}
.lsf{letter-spacing:0.352000pt;}
.ls1{letter-spacing:0.354667pt;}
.ls69{letter-spacing:0.360000pt;}
.ls5f{letter-spacing:0.384000pt;}
.ls6a{letter-spacing:0.396000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls40{letter-spacing:0.432000pt;}
.lsb{letter-spacing:0.469333pt;}
.ls2b{letter-spacing:0.528000pt;}
.ls5e{letter-spacing:0.576000pt;}
.ls28{letter-spacing:0.586667pt;}
.ls64{letter-spacing:0.624000pt;}
.ls42{letter-spacing:0.645333pt;}
.ls13{letter-spacing:0.704000pt;}
.ls4b{letter-spacing:0.762667pt;}
.ls2d{letter-spacing:0.821333pt;}
.ls27{letter-spacing:0.880000pt;}
.ls2c{letter-spacing:0.938667pt;}
.ls14{letter-spacing:0.997333pt;}
.ls33{letter-spacing:1.200000pt;}
.ls31{letter-spacing:1.224000pt;}
.ls68{letter-spacing:1.232000pt;}
.ls32{letter-spacing:1.248000pt;}
.ls2e{letter-spacing:1.290667pt;}
.ls5d{letter-spacing:1.349333pt;}
.ls29{letter-spacing:1.408000pt;}
.ls12{letter-spacing:1.466667pt;}
.ls11{letter-spacing:13.680000pt;}
.ls4{letter-spacing:16.240000pt;}
.ls2a{letter-spacing:17.253333pt;}
.wsac{word-spacing:-16.133333pt;}
.wsa0{word-spacing:-16.016000pt;}
.ws4c{word-spacing:-15.957333pt;}
.wsb1{word-spacing:-15.898667pt;}
.ws92{word-spacing:-15.664000pt;}
.ws46{word-spacing:-15.546667pt;}
.ws9b{word-spacing:-15.429333pt;}
.ws7d{word-spacing:-15.370667pt;}
.ws79{word-spacing:-15.253333pt;}
.ws1e{word-spacing:-15.136000pt;}
.ws4d{word-spacing:-15.077333pt;}
.ws1c{word-spacing:-15.018667pt;}
.ws60{word-spacing:-14.960000pt;}
.ws21{word-spacing:-14.901333pt;}
.ws9f{word-spacing:-14.842667pt;}
.ws77{word-spacing:-14.784000pt;}
.ws1d{word-spacing:-14.725333pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws44{word-spacing:-14.608000pt;}
.ws7f{word-spacing:-14.549333pt;}
.ws64{word-spacing:-14.490667pt;}
.ws63{word-spacing:-14.432000pt;}
.ws19{word-spacing:-14.373333pt;}
.ws18{word-spacing:-14.314667pt;}
.ws48{word-spacing:-14.256000pt;}
.ws49{word-spacing:-14.197333pt;}
.ws62{word-spacing:-14.138667pt;}
.ws7a{word-spacing:-14.080000pt;}
.ws7c{word-spacing:-14.021333pt;}
.ws8e{word-spacing:-13.962667pt;}
.ws90{word-spacing:-13.904000pt;}
.ws67{word-spacing:-13.845333pt;}
.ws9e{word-spacing:-13.728000pt;}
.ws80{word-spacing:-13.610667pt;}
.ws81{word-spacing:-13.552000pt;}
.ws2{word-spacing:-13.493333pt;}
.ws91{word-spacing:-13.376000pt;}
.ws8b{word-spacing:-13.258667pt;}
.ws4f{word-spacing:-13.248000pt;}
.wsa9{word-spacing:-13.200000pt;}
.ws0{word-spacing:-12.920000pt;}
.wsae{word-spacing:-12.624000pt;}
.ws55{word-spacing:-12.432000pt;}
.wsb3{word-spacing:-12.384000pt;}
.wsa5{word-spacing:-12.336000pt;}
.wsa3{word-spacing:-12.288000pt;}
.ws52{word-spacing:-12.240000pt;}
.ws28{word-spacing:-12.144000pt;}
.ws6a{word-spacing:-12.096000pt;}
.ws25{word-spacing:-12.000000pt;}
.ws94{word-spacing:-11.952000pt;}
.wsa6{word-spacing:-11.856000pt;}
.ws82{word-spacing:-11.760000pt;}
.wsa4{word-spacing:-11.712000pt;}
.ws96{word-spacing:-11.664000pt;}
.ws95{word-spacing:-11.520000pt;}
.ws23{word-spacing:-11.376000pt;}
.ws99{word-spacing:-11.308000pt;}
.ws61{word-spacing:-11.264000pt;}
.wsad{word-spacing:-11.184000pt;}
.ws76{word-spacing:-11.176000pt;}
.ws26{word-spacing:-11.136000pt;}
.ws7b{word-spacing:-11.132000pt;}
.ws9c{word-spacing:-11.044000pt;}
.ws20{word-spacing:-11.000000pt;}
.ws65{word-spacing:-10.956000pt;}
.wsab{word-spacing:-10.912000pt;}
.wsb8{word-spacing:-10.868000pt;}
.ws8c{word-spacing:-10.824000pt;}
.ws47{word-spacing:-10.780000pt;}
.ws86{word-spacing:-10.736000pt;}
.ws45{word-spacing:-10.692000pt;}
.ws17{word-spacing:-10.624000pt;}
.ws9d{word-spacing:-10.604000pt;}
.wsa2{word-spacing:-10.560000pt;}
.ws4e{word-spacing:-10.224000pt;}
.ws68{word-spacing:-10.208000pt;}
.ws3{word-spacing:-10.120000pt;}
.wsb9{word-spacing:-10.032000pt;}
.wsb4{word-spacing:-9.396000pt;}
.wsb2{word-spacing:-9.360000pt;}
.ws54{word-spacing:-9.324000pt;}
.ws50{word-spacing:-9.252000pt;}
.ws51{word-spacing:-9.216000pt;}
.ws53{word-spacing:-9.036000pt;}
.ws5{word-spacing:-9.000000pt;}
.ws56{word-spacing:-8.964000pt;}
.ws6b{word-spacing:-8.604000pt;}
.ws71{word-spacing:-0.762667pt;}
.ws35{word-spacing:-0.704000pt;}
.wse{word-spacing:-0.645333pt;}
.ws15{word-spacing:-0.586667pt;}
.wsa7{word-spacing:-0.576000pt;}
.ws6f{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws33{word-spacing:-0.469333pt;}
.wsa8{word-spacing:-0.432000pt;}
.ws29{word-spacing:-0.410667pt;}
.wsd{word-spacing:-0.405333pt;}
.ws3e{word-spacing:-0.384000pt;}
.ws43{word-spacing:-0.352000pt;}
.ws1{word-spacing:-0.338667pt;}
.ws3d{word-spacing:-0.336000pt;}
.ws2b{word-spacing:-0.308000pt;}
.wsb{word-spacing:-0.304000pt;}
.ws70{word-spacing:-0.293333pt;}
.ws3c{word-spacing:-0.288000pt;}
.ws1b{word-spacing:-0.234667pt;}
.ws75{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.176000pt;}
.ws39{word-spacing:-0.144000pt;}
.ws5a{word-spacing:-0.117333pt;}
.ws37{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.058667pt;}
.ws36{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws38{word-spacing:0.048000pt;}
.wsc{word-spacing:0.050667pt;}
.ws4a{word-spacing:0.058667pt;}
.ws72{word-spacing:0.096000pt;}
.ws31{word-spacing:0.117333pt;}
.wsb5{word-spacing:0.132000pt;}
.ws5e{word-spacing:0.144000pt;}
.ws9{word-spacing:0.152000pt;}
.ws57{word-spacing:0.176000pt;}
.ws24{word-spacing:0.192000pt;}
.ws84{word-spacing:0.234667pt;}
.ws3f{word-spacing:0.240000pt;}
.ws73{word-spacing:0.288000pt;}
.ws34{word-spacing:0.293333pt;}
.ws27{word-spacing:0.336000pt;}
.ws4b{word-spacing:0.352000pt;}
.ws3a{word-spacing:0.384000pt;}
.ws14{word-spacing:0.410667pt;}
.ws40{word-spacing:0.432000pt;}
.ws5b{word-spacing:0.469333pt;}
.ws59{word-spacing:0.528000pt;}
.ws98{word-spacing:0.576000pt;}
.ws83{word-spacing:0.586667pt;}
.wsb0{word-spacing:0.624000pt;}
.ws5d{word-spacing:0.645333pt;}
.ws1f{word-spacing:0.704000pt;}
.ws30{word-spacing:0.762667pt;}
.ws6c{word-spacing:0.768000pt;}
.ws5c{word-spacing:0.792000pt;}
.wsb6{word-spacing:0.816000pt;}
.ws6e{word-spacing:0.821333pt;}
.ws8a{word-spacing:0.836000pt;}
.ws5f{word-spacing:0.864000pt;}
.wsaa{word-spacing:0.880000pt;}
.wsa{word-spacing:0.912000pt;}
.ws2d{word-spacing:0.938667pt;}
.ws41{word-spacing:0.960000pt;}
.ws12{word-spacing:0.968000pt;}
.ws10{word-spacing:0.997333pt;}
.ws42{word-spacing:1.008000pt;}
.ws2a{word-spacing:1.056000pt;}
.ws74{word-spacing:1.104000pt;}
.ws8{word-spacing:1.114667pt;}
.ws97{word-spacing:1.152000pt;}
.ws6d{word-spacing:1.173333pt;}
.ws7{word-spacing:1.216000pt;}
.wsf{word-spacing:1.232000pt;}
.ws11{word-spacing:1.290667pt;}
.ws2c{word-spacing:1.349333pt;}
.ws13{word-spacing:1.408000pt;}
.ws58{word-spacing:1.466667pt;}
.ws66{word-spacing:1.525333pt;}
.ws2f{word-spacing:2.816000pt;}
.ws9a{word-spacing:2.973333pt;}
.ws22{word-spacing:2.992000pt;}
.wsa1{word-spacing:3.186667pt;}
.ws87{word-spacing:3.226667pt;}
.ws93{word-spacing:3.282667pt;}
.ws89{word-spacing:3.285333pt;}
.ws8f{word-spacing:3.490667pt;}
.ws7e{word-spacing:3.670667pt;}
.wsaf{word-spacing:4.282667pt;}
.wsb7{word-spacing:4.786667pt;}
.ws88{word-spacing:4.848000pt;}
.ws78{word-spacing:5.134667pt;}
.ws85{word-spacing:5.573333pt;}
.ws69{word-spacing:8.016000pt;}
.ws8d{word-spacing:21.354667pt;}
.ws16{word-spacing:31.914667pt;}
.ws4{word-spacing:32.016000pt;}
._c{margin-left:-9.288000pt;}
._15{margin-left:-8.081333pt;}
._b{margin-left:-7.072000pt;}
._e{margin-left:-6.016000pt;}
._4{margin-left:-5.045333pt;}
._5{margin-left:-3.488000pt;}
._0{margin-left:-1.728000pt;}
._1{width:1.474667pt;}
._a{width:3.344000pt;}
._12{width:4.274667pt;}
._13{width:5.616000pt;}
._11{width:6.581333pt;}
._10{width:7.925333pt;}
._14{width:10.512000pt;}
._2{width:11.912000pt;}
._6{width:13.962667pt;}
._f{width:15.104000pt;}
._9{width:17.274667pt;}
._d{width:36.608000pt;}
._3{width:42.602667pt;}
._8{width:552.448000pt;}
._7{width:943.466667pt;}
.fs7{font-size:36.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:40.861333pt;}
.y1c{bottom:40.928000pt;}
.y146{bottom:41.845333pt;}
.y4b{bottom:41.861333pt;}
.y185{bottom:41.936000pt;}
.y74{bottom:41.968000pt;}
.y1d2{bottom:41.989333pt;}
.y109{bottom:53.474667pt;}
.y1de{bottom:53.528000pt;}
.y166{bottom:53.533333pt;}
.y1b{bottom:53.600000pt;}
.y145{bottom:54.517333pt;}
.y4a{bottom:54.533333pt;}
.y184{bottom:54.608000pt;}
.y98{bottom:54.629333pt;}
.y73{bottom:54.634667pt;}
.y1b7{bottom:54.640000pt;}
.y1d1{bottom:54.661333pt;}
.y108{bottom:66.146667pt;}
.y1dd{bottom:66.194667pt;}
.y144{bottom:67.189333pt;}
.y49{bottom:67.205333pt;}
.y183{bottom:67.280000pt;}
.yd3{bottom:67.296000pt;}
.y72{bottom:67.301333pt;}
.y12d{bottom:67.306667pt;}
.y1d0{bottom:67.328000pt;}
.y107{bottom:78.818667pt;}
.y1dc{bottom:78.861333pt;}
.y143{bottom:79.861333pt;}
.y48{bottom:79.877333pt;}
.y182{bottom:79.952000pt;}
.y71{bottom:79.962667pt;}
.y97{bottom:79.968000pt;}
.y1cf{bottom:80.000000pt;}
.y1b6{bottom:89.926667pt;}
.y165{bottom:89.933333pt;}
.y106{bottom:91.490667pt;}
.y1db{bottom:91.528000pt;}
.y142{bottom:92.533333pt;}
.y47{bottom:92.549333pt;}
.y96{bottom:92.618667pt;}
.y181{bottom:92.624000pt;}
.y70{bottom:92.634667pt;}
.yad{bottom:92.640000pt;}
.y1a{bottom:96.993333pt;}
.y105{bottom:104.162667pt;}
.y1da{bottom:104.200000pt;}
.y141{bottom:105.205333pt;}
.y46{bottom:105.221333pt;}
.y198{bottom:105.226667pt;}
.y1b5{bottom:105.253333pt;}
.y164{bottom:105.260000pt;}
.y95{bottom:105.290667pt;}
.y6f{bottom:105.296000pt;}
.y11a{bottom:105.306667pt;}
.y12c{bottom:109.861333pt;}
.y19{bottom:112.340000pt;}
.y104{bottom:116.834667pt;}
.y140{bottom:117.877333pt;}
.y45{bottom:117.893333pt;}
.y94{bottom:117.962667pt;}
.y6e{bottom:117.968000pt;}
.y1ce{bottom:120.466667pt;}
.y197{bottom:120.553333pt;}
.y1b4{bottom:120.580000pt;}
.y163{bottom:120.586667pt;}
.y12b{bottom:125.188000pt;}
.y18{bottom:127.666667pt;}
.y103{bottom:129.506667pt;}
.y13f{bottom:130.549333pt;}
.y44{bottom:130.565333pt;}
.y93{bottom:130.634667pt;}
.y6d{bottom:130.640000pt;}
.yac{bottom:135.810667pt;}
.yd2{bottom:135.813333pt;}
.y196{bottom:135.880000pt;}
.ye8{bottom:135.905333pt;}
.y1b3{bottom:135.906667pt;}
.y162{bottom:135.913333pt;}
.y12a{bottom:140.514667pt;}
.y102{bottom:142.178667pt;}
.y17{bottom:142.993333pt;}
.y13e{bottom:143.221333pt;}
.y43{bottom:143.237333pt;}
.y92{bottom:143.306667pt;}
.yab{bottom:151.137333pt;}
.yd1{bottom:151.140000pt;}
.y119{bottom:151.153333pt;}
.y195{bottom:151.206667pt;}
.ye7{bottom:151.232000pt;}
.y1b2{bottom:151.233333pt;}
.y161{bottom:151.240000pt;}
.y101{bottom:154.850667pt;}
.y129{bottom:155.841333pt;}
.y13d{bottom:155.893333pt;}
.y42{bottom:155.909333pt;}
.y16{bottom:158.340000pt;}
.yaa{bottom:166.464000pt;}
.y118{bottom:166.480000pt;}
.y6c{bottom:166.506667pt;}
.y1cd{bottom:166.513333pt;}
.yd0{bottom:166.520000pt;}
.y194{bottom:166.533333pt;}
.ye6{bottom:166.558667pt;}
.y1b1{bottom:166.560000pt;}
.y160{bottom:166.566667pt;}
.y100{bottom:167.522667pt;}
.y13c{bottom:168.565333pt;}
.y41{bottom:168.581333pt;}
.y15{bottom:173.666667pt;}
.yff{bottom:180.194667pt;}
.y13b{bottom:181.237333pt;}
.y40{bottom:181.253333pt;}
.y91{bottom:181.806667pt;}
.y6b{bottom:181.833333pt;}
.y1cc{bottom:181.840000pt;}
.ycf{bottom:181.846667pt;}
.y193{bottom:181.860000pt;}
.ye5{bottom:181.885333pt;}
.y1b0{bottom:181.886667pt;}
.y15f{bottom:181.893333pt;}
.y128{bottom:186.509333pt;}
.y14{bottom:188.993333pt;}
.yfe{bottom:192.861333pt;}
.y13a{bottom:193.909333pt;}
.y3f{bottom:193.925333pt;}
.ya9{bottom:197.132000pt;}
.y6a{bottom:197.160000pt;}
.y90{bottom:197.166667pt;}
.yce{bottom:197.173333pt;}
.y180{bottom:197.180000pt;}
.y192{bottom:197.186667pt;}
.y117{bottom:197.192000pt;}
.ye4{bottom:197.212000pt;}
.y1af{bottom:197.213333pt;}
.y15e{bottom:197.220000pt;}
.y13{bottom:204.320000pt;}
.yfd{bottom:205.533333pt;}
.y139{bottom:206.581333pt;}
.y3e{bottom:206.597333pt;}
.y69{bottom:212.486667pt;}
.y8f{bottom:212.493333pt;}
.ycd{bottom:212.500000pt;}
.y17f{bottom:212.506667pt;}
.y191{bottom:212.513333pt;}
.y116{bottom:212.518667pt;}
.ye3{bottom:212.538667pt;}
.y1ae{bottom:212.540000pt;}
.y15d{bottom:212.546667pt;}
.y138{bottom:219.253333pt;}
.y3d{bottom:219.269333pt;}
.ya8{bottom:227.806667pt;}
.y68{bottom:227.813333pt;}
.y8e{bottom:227.820000pt;}
.ycc{bottom:227.826667pt;}
.y17e{bottom:227.833333pt;}
.y127{bottom:227.840000pt;}
.y115{bottom:227.845333pt;}
.ye2{bottom:227.865333pt;}
.y1ad{bottom:227.866667pt;}
.y15c{bottom:227.873333pt;}
.y137{bottom:231.925333pt;}
.y3c{bottom:231.941333pt;}
.y67{bottom:243.140000pt;}
.y8d{bottom:243.146667pt;}
.ycb{bottom:243.153333pt;}
.y17d{bottom:243.160000pt;}
.y126{bottom:243.166667pt;}
.y114{bottom:243.172000pt;}
.ya7{bottom:243.180000pt;}
.ye1{bottom:243.192000pt;}
.y1ac{bottom:243.193333pt;}
.y15b{bottom:243.200000pt;}
.y136{bottom:244.597333pt;}
.y3b{bottom:244.613333pt;}
.y135{bottom:257.269333pt;}
.y3a{bottom:257.285333pt;}
.y8c{bottom:258.473333pt;}
.yca{bottom:258.480000pt;}
.y17c{bottom:258.486667pt;}
.y125{bottom:258.493333pt;}
.y113{bottom:258.498667pt;}
.y66{bottom:258.500000pt;}
.ya6{bottom:258.506667pt;}
.ye0{bottom:258.518667pt;}
.y1ab{bottom:258.520000pt;}
.y15a{bottom:258.526667pt;}
.yfc{bottom:258.542667pt;}
.y134{bottom:269.941333pt;}
.y39{bottom:269.957333pt;}
.y11{bottom:273.400000pt;}
.yc9{bottom:273.806667pt;}
.y17b{bottom:273.813333pt;}
.y124{bottom:273.820000pt;}
.y65{bottom:273.826667pt;}
.ya5{bottom:273.833333pt;}
.y8b{bottom:273.840000pt;}
.ydf{bottom:273.845333pt;}
.y1aa{bottom:273.846667pt;}
.y159{bottom:273.853333pt;}
.yfb{bottom:273.869333pt;}
.y1cb{bottom:273.978667pt;}
.y133{bottom:282.613333pt;}
.y38{bottom:282.629333pt;}
.y17a{bottom:289.140000pt;}
.y123{bottom:289.146667pt;}
.y64{bottom:289.153333pt;}
.ya4{bottom:289.160000pt;}
.y8a{bottom:289.166667pt;}
.yde{bottom:289.172000pt;}
.y1a9{bottom:289.173333pt;}
.y158{bottom:289.180000pt;}
.yfa{bottom:289.196000pt;}
.yc8{bottom:289.266667pt;}
.y1ca{bottom:289.305333pt;}
.y132{bottom:295.285333pt;}
.y37{bottom:295.301333pt;}
.y10{bottom:296.162667pt;}
.y122{bottom:304.473333pt;}
.y63{bottom:304.480000pt;}
.ya3{bottom:304.486667pt;}
.y179{bottom:304.492000pt;}
.y89{bottom:304.493333pt;}
.ydd{bottom:304.498667pt;}
.y1a8{bottom:304.500000pt;}
.y157{bottom:304.506667pt;}
.yf9{bottom:304.522667pt;}
.yc7{bottom:304.593333pt;}
.y1c9{bottom:304.632000pt;}
.y131{bottom:307.957333pt;}
.y36{bottom:307.973333pt;}
.yf{bottom:309.500667pt;}
.y62{bottom:319.806667pt;}
.ya2{bottom:319.813333pt;}
.y178{bottom:319.818667pt;}
.y88{bottom:319.820000pt;}
.y1a7{bottom:319.826667pt;}
.y156{bottom:319.833333pt;}
.yf8{bottom:319.849333pt;}
.yc6{bottom:319.920000pt;}
.y121{bottom:319.933333pt;}
.y190{bottom:319.953333pt;}
.y1c8{bottom:319.958667pt;}
.y130{bottom:320.629333pt;}
.ye{bottom:322.838667pt;}
.y12f{bottom:333.301333pt;}
.ya1{bottom:335.140000pt;}
.y177{bottom:335.145333pt;}
.y87{bottom:335.146667pt;}
.y1a6{bottom:335.153333pt;}
.y155{bottom:335.160000pt;}
.ydc{bottom:335.166667pt;}
.yf7{bottom:335.176000pt;}
.y61{bottom:335.180000pt;}
.yc5{bottom:335.246667pt;}
.y120{bottom:335.260000pt;}
.y18f{bottom:335.280000pt;}
.y1c7{bottom:335.285333pt;}
.yd{bottom:336.176667pt;}
.y12e{bottom:345.973333pt;}
.y176{bottom:350.472000pt;}
.y86{bottom:350.473333pt;}
.y1a5{bottom:350.480000pt;}
.y154{bottom:350.486667pt;}
.ydb{bottom:350.493333pt;}
.ya0{bottom:350.500000pt;}
.y60{bottom:350.506667pt;}
.y35{bottom:350.520000pt;}
.yc4{bottom:350.573333pt;}
.y11f{bottom:350.586667pt;}
.y18e{bottom:350.606667pt;}
.y1c6{bottom:350.612000pt;}
.yf6{bottom:358.173333pt;}
.yc{bottom:362.840000pt;}
.y175{bottom:365.798667pt;}
.y1a4{bottom:365.806667pt;}
.y153{bottom:365.813333pt;}
.yda{bottom:365.820000pt;}
.y9f{bottom:365.826667pt;}
.y5f{bottom:365.833333pt;}
.y112{bottom:365.845333pt;}
.y34{bottom:365.846667pt;}
.yc3{bottom:365.900000pt;}
.y11e{bottom:365.913333pt;}
.y18d{bottom:365.933333pt;}
.y1c5{bottom:365.938667pt;}
.y85{bottom:365.953333pt;}
.yf5{bottom:373.500000pt;}
.y152{bottom:381.140000pt;}
.yd9{bottom:381.146667pt;}
.y9e{bottom:381.153333pt;}
.y5e{bottom:381.160000pt;}
.y111{bottom:381.172000pt;}
.y33{bottom:381.173333pt;}
.y1a3{bottom:381.190667pt;}
.yc2{bottom:381.226667pt;}
.y11d{bottom:381.240000pt;}
.y18c{bottom:381.260000pt;}
.y1c4{bottom:381.265333pt;}
.y84{bottom:381.280000pt;}
.yf4{bottom:388.826667pt;}
.yd8{bottom:396.473333pt;}
.y9d{bottom:396.480000pt;}
.y5d{bottom:396.486667pt;}
.y110{bottom:396.498667pt;}
.y32{bottom:396.500000pt;}
.y1a2{bottom:396.517333pt;}
.y151{bottom:396.532000pt;}
.yc1{bottom:396.553333pt;}
.y11c{bottom:396.566667pt;}
.y174{bottom:396.585333pt;}
.y18b{bottom:396.586667pt;}
.y1c3{bottom:396.592000pt;}
.y83{bottom:396.606667pt;}
.yb{bottom:402.623333pt;}
.yf3{bottom:404.153333pt;}
.y9c{bottom:411.806667pt;}
.y5c{bottom:411.813333pt;}
.y10f{bottom:411.825333pt;}
.y31{bottom:411.826667pt;}
.y1a1{bottom:411.844000pt;}
.y150{bottom:411.858667pt;}
.yc0{bottom:411.880000pt;}
.y11b{bottom:411.893333pt;}
.y173{bottom:411.912000pt;}
.y18a{bottom:411.913333pt;}
.y1c2{bottom:411.918667pt;}
.y82{bottom:411.933333pt;}
.yf2{bottom:419.480000pt;}
.ya{bottom:425.398000pt;}
.y5b{bottom:427.140000pt;}
.y10e{bottom:427.152000pt;}
.y30{bottom:427.153333pt;}
.y1a0{bottom:427.170667pt;}
.y14f{bottom:427.185333pt;}
.y1d9{bottom:427.200000pt;}
.ybf{bottom:427.206667pt;}
.y9b{bottom:427.220000pt;}
.y172{bottom:427.238667pt;}
.y189{bottom:427.240000pt;}
.y1c1{bottom:427.245333pt;}
.y81{bottom:427.260000pt;}
.yf1{bottom:434.806667pt;}
.y9{bottom:438.736000pt;}
.y2f{bottom:442.480000pt;}
.y5a{bottom:442.486667pt;}
.y19f{bottom:442.497333pt;}
.y14e{bottom:442.512000pt;}
.y1d8{bottom:442.526667pt;}
.ybe{bottom:442.533333pt;}
.y9a{bottom:442.546667pt;}
.y171{bottom:442.565333pt;}
.y188{bottom:442.566667pt;}
.y1c0{bottom:442.572000pt;}
.y80{bottom:442.586667pt;}
.yf0{bottom:450.160000pt;}
.y8{bottom:452.074000pt;}
.y2e{bottom:457.806667pt;}
.y59{bottom:457.813333pt;}
.y10d{bottom:457.820000pt;}
.y19e{bottom:457.824000pt;}
.y14d{bottom:457.838667pt;}
.y1d7{bottom:457.853333pt;}
.ybd{bottom:457.860000pt;}
.y99{bottom:457.873333pt;}
.y170{bottom:457.892000pt;}
.y187{bottom:457.893333pt;}
.y1bf{bottom:457.898667pt;}
.y7f{bottom:457.913333pt;}
.y7{bottom:465.412000pt;}
.yef{bottom:465.486667pt;}
.y58{bottom:473.140000pt;}
.y10c{bottom:473.146667pt;}
.y19d{bottom:473.150667pt;}
.y14c{bottom:473.165333pt;}
.y1d6{bottom:473.180000pt;}
.ybc{bottom:473.186667pt;}
.y2d{bottom:473.200000pt;}
.y16f{bottom:473.218667pt;}
.y186{bottom:473.220000pt;}
.y1be{bottom:473.225333pt;}
.y7e{bottom:473.240000pt;}
.y6{bottom:478.750000pt;}
.yee{bottom:480.813333pt;}
.y10b{bottom:488.473333pt;}
.y19c{bottom:488.477333pt;}
.y14b{bottom:488.492000pt;}
.y1d5{bottom:488.506667pt;}
.ybb{bottom:488.513333pt;}
.y2c{bottom:488.526667pt;}
.y16e{bottom:488.545333pt;}
.y57{bottom:488.546667pt;}
.y1bd{bottom:488.552000pt;}
.y7d{bottom:488.566667pt;}
.yed{bottom:496.140000pt;}
.y19b{bottom:503.804000pt;}
.y1d4{bottom:503.833333pt;}
.yba{bottom:503.840000pt;}
.y2b{bottom:503.853333pt;}
.y16d{bottom:503.872000pt;}
.y56{bottom:503.873333pt;}
.y1bc{bottom:503.878667pt;}
.y7c{bottom:503.893333pt;}
.y5{bottom:505.413333pt;}
.yec{bottom:511.489333pt;}
.y14a{bottom:519.160000pt;}
.yb9{bottom:519.166667pt;}
.y2a{bottom:519.180000pt;}
.y16c{bottom:519.198667pt;}
.y55{bottom:519.200000pt;}
.y1bb{bottom:519.205333pt;}
.y7b{bottom:519.220000pt;}
.yeb{bottom:526.816000pt;}
.y19a{bottom:534.472000pt;}
.y149{bottom:534.486667pt;}
.yb8{bottom:534.493333pt;}
.y29{bottom:534.506667pt;}
.y16b{bottom:534.525333pt;}
.y54{bottom:534.526667pt;}
.y1ba{bottom:534.532000pt;}
.y7a{bottom:534.546667pt;}
.yea{bottom:542.142667pt;}
.y199{bottom:549.798667pt;}
.y148{bottom:549.813333pt;}
.yb7{bottom:549.820000pt;}
.y28{bottom:549.833333pt;}
.y16a{bottom:549.852000pt;}
.y53{bottom:549.853333pt;}
.y1b9{bottom:549.858667pt;}
.y79{bottom:549.873333pt;}
.ye9{bottom:557.469333pt;}
.y147{bottom:565.140000pt;}
.yb6{bottom:565.146667pt;}
.y27{bottom:565.160000pt;}
.y169{bottom:565.178667pt;}
.y52{bottom:565.180000pt;}
.y1b8{bottom:565.185333pt;}
.y78{bottom:565.200000pt;}
.yb5{bottom:580.473333pt;}
.y26{bottom:580.486667pt;}
.y168{bottom:580.505333pt;}
.y51{bottom:580.506667pt;}
.y77{bottom:580.526667pt;}
.yd7{bottom:595.800000pt;}
.y25{bottom:595.813333pt;}
.y1d3{bottom:595.826667pt;}
.y167{bottom:595.832000pt;}
.y50{bottom:595.833333pt;}
.yb4{bottom:595.846667pt;}
.y76{bottom:595.853333pt;}
.y24{bottom:611.140000pt;}
.yd6{bottom:611.153333pt;}
.y4f{bottom:611.160000pt;}
.yb3{bottom:611.173333pt;}
.y75{bottom:611.180000pt;}
.yd5{bottom:626.480000pt;}
.y4e{bottom:626.486667pt;}
.yb2{bottom:626.500000pt;}
.y23{bottom:626.506667pt;}
.y4{bottom:633.960000pt;}
.yd4{bottom:641.806667pt;}
.y4d{bottom:641.813333pt;}
.yb1{bottom:641.826667pt;}
.y22{bottom:641.833333pt;}
.y3{bottom:650.626667pt;}
.y4c{bottom:657.140000pt;}
.yb0{bottom:657.153333pt;}
.y21{bottom:657.160000pt;}
.yaf{bottom:672.480000pt;}
.y20{bottom:672.486667pt;}
.yae{bottom:687.806667pt;}
.y1f{bottom:687.813333pt;}
.y2{bottom:690.626667pt;}
.y1e{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y1d{bottom:718.466667pt;}
.y12{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.he{height:51.237333pt;}
.hc{height:51.258667pt;}
.h11{height:51.450667pt;}
.ha{height:52.032000pt;}
.hb{height:52.053333pt;}
.hd{height:52.074667pt;}
.hf{height:52.117333pt;}
.h12{height:52.544000pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.h7{height:62.597333pt;}
.h10{height:63.408000pt;}
.h8{height:63.514667pt;}
.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;}
.x3{left:48.813333pt;}
.x6{left:67.726667pt;}
.x5{left:68.816000pt;}
.x4{left:76.876000pt;}
.x8{left:87.728000pt;}
.xa{left:88.824000pt;}
.x9{left:257.390667pt;}
.x7{left:258.769333pt;}
.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; }
  