
    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_6f7ba777060d18e136197d0b.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_2e5a0f4c09f479a677980448.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_f761400f558de89e3e3290d9.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ca91b33602da3d9504fdb901.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-21.780000px;}
.v5{vertical-align:-1.020000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.680000px;}
.v3{vertical-align:19.800000px;}
.v2{vertical-align:21.018000px;}
.ls1c{letter-spacing:-1.452000px;}
.ls50{letter-spacing:-1.386000px;}
.ls16{letter-spacing:-1.320000px;}
.ls19{letter-spacing:-1.122000px;}
.ls24{letter-spacing:-1.056000px;}
.ls65{letter-spacing:-1.020000px;}
.ls26{letter-spacing:-0.990000px;}
.ls58{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.912000px;}
.ls28{letter-spacing:-0.858000px;}
.ls39{letter-spacing:-0.841500px;}
.ls25{letter-spacing:-0.792000px;}
.ls64{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.726000px;}
.ls6d{letter-spacing:-0.720000px;}
.ls56{letter-spacing:-0.693000px;}
.lse{letter-spacing:-0.672000px;}
.ls47{letter-spacing:-0.660000px;}
.ls38{letter-spacing:-0.646800px;}
.ls3e{letter-spacing:-0.594000px;}
.ls63{letter-spacing:-0.567000px;}
.ls57{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.528000px;}
.ls68{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.462000px;}
.ls3{letter-spacing:-0.456000px;}
.ls35{letter-spacing:-0.396000px;}
.ls45{letter-spacing:-0.369600px;}
.ls30{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.330000px;}
.ls67{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.285000px;}
.ls1e{letter-spacing:-0.283500px;}
.ls36{letter-spacing:-0.277200px;}
.ls1f{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.264000px;}
.ls6c{letter-spacing:-0.240000px;}
.ls54{letter-spacing:-0.216000px;}
.ls53{letter-spacing:-0.202500px;}
.ls29{letter-spacing:-0.198000px;}
.ls34{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.171000px;}
.ls55{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.132000px;}
.ls32{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.114000px;}
.ls42{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.081000px;}
.ls37{letter-spacing:-0.066000px;}
.ls5a{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.057000px;}
.ls41{letter-spacing:-0.054000px;}
.ls52{letter-spacing:-0.040500px;}
.ls2{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.066000px;}
.ls5f{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.114000px;}
.ls3c{letter-spacing:0.120000px;}
.ls6b{letter-spacing:0.121500px;}
.ls11{letter-spacing:0.132000px;}
.ls5b{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.171000px;}
.ls69{letter-spacing:0.180000px;}
.ls46{letter-spacing:0.184800px;}
.ls20{letter-spacing:0.198000px;}
.ls5c{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.231000px;}
.ls59{letter-spacing:0.240000px;}
.ls2e{letter-spacing:0.243000px;}
.ls10{letter-spacing:0.264000px;}
.ls2f{letter-spacing:0.270000px;}
.ls44{letter-spacing:0.283500px;}
.ls33{letter-spacing:0.300000px;}
.ls51{letter-spacing:0.324000px;}
.ls3f{letter-spacing:0.330000px;}
.ls0{letter-spacing:0.342000px;}
.ls6a{letter-spacing:0.372000px;}
.ls43{letter-spacing:0.396000px;}
.ls2c{letter-spacing:0.405000px;}
.ls4f{letter-spacing:0.415800px;}
.ls48{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.462000px;}
.ls6e{letter-spacing:0.480000px;}
.ls4c{letter-spacing:0.486000px;}
.ls3b{letter-spacing:0.528000px;}
.ls2d{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.570000px;}
.ls4a{letter-spacing:0.594000px;}
.ls60{letter-spacing:0.607500px;}
.ls3d{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.726000px;}
.ls4{letter-spacing:0.741000px;}
.ls62{letter-spacing:0.756000px;}
.ls22{letter-spacing:0.792000px;}
.ls5e{letter-spacing:0.810000px;}
.ls4e{letter-spacing:0.831600px;}
.ls31{letter-spacing:0.840000px;}
.ls6{letter-spacing:0.855000px;}
.ls13{letter-spacing:0.858000px;}
.lsa{letter-spacing:0.912000px;}
.ls21{letter-spacing:0.924000px;}
.ls2b{letter-spacing:0.990000px;}
.ls66{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.122000px;}
.ls5d{letter-spacing:1.134000px;}
.ls61{letter-spacing:1.155000px;}
.ls3a{letter-spacing:1.188000px;}
.ls6f{letter-spacing:1.440000px;}
.ls4b{letter-spacing:1.452000px;}
.ls49{letter-spacing:1.650000px;}
.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;}
}
.ws70{word-spacing:-16.764000px;}
.ws56{word-spacing:-16.698000px;}
.ws14{word-spacing:-16.500000px;}
.ws84{word-spacing:-16.302000px;}
.ws7e{word-spacing:-16.038000px;}
.ws3d{word-spacing:-15.576000px;}
.ws3e{word-spacing:-15.510000px;}
.ws73{word-spacing:-14.634000px;}
.ws5a{word-spacing:-13.932000px;}
.ws1a{word-spacing:-13.500000px;}
.ws78{word-spacing:-12.705000px;}
.ws60{word-spacing:-12.381600px;}
.ws61{word-spacing:-11.965800px;}
.ws5f{word-spacing:-11.781000px;}
.ws57{word-spacing:-11.734800px;}
.ws15{word-spacing:-11.550000px;}
.ws3c{word-spacing:-11.533500px;}
.ws39{word-spacing:-11.272800px;}
.ws55{word-spacing:-11.180400px;}
.ws74{word-spacing:-10.935000px;}
.ws3a{word-spacing:-10.903200px;}
.ws6b{word-spacing:-10.857000px;}
.ws7a{word-spacing:-10.732500px;}
.ws85{word-spacing:-10.611000px;}
.ws3f{word-spacing:-10.530000px;}
.ws38{word-spacing:-10.500000px;}
.ws59{word-spacing:-10.408500px;}
.ws40{word-spacing:-10.368000px;}
.ws72{word-spacing:-10.287000px;}
.ws86{word-spacing:-10.246500px;}
.ws1b{word-spacing:-10.125000px;}
.ws62{word-spacing:-10.084500px;}
.ws4d{word-spacing:-10.044000px;}
.ws7f{word-spacing:-9.963000px;}
.ws64{word-spacing:-9.922500px;}
.ws18{word-spacing:-9.841500px;}
.ws7b{word-spacing:-9.558000px;}
.ws13{word-spacing:-7.680000px;}
.ws1c{word-spacing:-0.726000px;}
.ws2a{word-spacing:-0.660000px;}
.ws69{word-spacing:-0.648000px;}
.ws7{word-spacing:-0.627000px;}
.ws43{word-spacing:-0.600000px;}
.ws28{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.570000px;}
.ws68{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.528000px;}
.wsc{word-spacing:-0.513000px;}
.ws53{word-spacing:-0.486000px;}
.ws46{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.462000px;}
.ws8{word-spacing:-0.456000px;}
.ws54{word-spacing:-0.432000px;}
.ws48{word-spacing:-0.420000px;}
.ws77{word-spacing:-0.405000px;}
.wsd{word-spacing:-0.399000px;}
.ws24{word-spacing:-0.396000px;}
.ws82{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.342000px;}
.ws20{word-spacing:-0.330000px;}
.ws42{word-spacing:-0.300000px;}
.ws2d{word-spacing:-0.270000px;}
.ws35{word-spacing:-0.264000px;}
.ws87{word-spacing:-0.240000px;}
.ws6{word-spacing:-0.228000px;}
.ws33{word-spacing:-0.198000px;}
.ws8c{word-spacing:-0.180000px;}
.ws1{word-spacing:-0.171000px;}
.ws27{word-spacing:-0.132000px;}
.ws83{word-spacing:-0.120000px;}
.ws4a{word-spacing:-0.066000px;}
.ws49{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws6f{word-spacing:0.054000px;}
.ws8b{word-spacing:0.060000px;}
.ws30{word-spacing:0.066000px;}
.ws75{word-spacing:0.108000px;}
.ws89{word-spacing:0.120000px;}
.ws31{word-spacing:0.132000px;}
.ws7d{word-spacing:0.162000px;}
.ws25{word-spacing:0.198000px;}
.ws6a{word-spacing:0.216000px;}
.ws2e{word-spacing:0.264000px;}
.ws9{word-spacing:0.285000px;}
.ws6d{word-spacing:0.300000px;}
.ws2f{word-spacing:0.330000px;}
.ws76{word-spacing:0.378000px;}
.ws36{word-spacing:0.396000px;}
.ws3{word-spacing:0.399000px;}
.ws81{word-spacing:0.420000px;}
.ws11{word-spacing:0.456000px;}
.ws29{word-spacing:0.462000px;}
.ws44{word-spacing:0.480000px;}
.ws5{word-spacing:0.513000px;}
.ws65{word-spacing:0.528000px;}
.ws5c{word-spacing:0.540000px;}
.ws10{word-spacing:0.570000px;}
.ws22{word-spacing:0.594000px;}
.ws2{word-spacing:0.627000px;}
.ws67{word-spacing:0.648000px;}
.ws41{word-spacing:0.660000px;}
.ws8f{word-spacing:0.702000px;}
.ws34{word-spacing:0.726000px;}
.ws8e{word-spacing:0.729000px;}
.ws4b{word-spacing:0.756000px;}
.ws26{word-spacing:0.792000px;}
.ws88{word-spacing:0.840000px;}
.wse{word-spacing:0.855000px;}
.ws37{word-spacing:0.858000px;}
.ws66{word-spacing:0.864000px;}
.ws5b{word-spacing:0.918000px;}
.ws2c{word-spacing:0.924000px;}
.ws5e{word-spacing:0.972000px;}
.ws51{word-spacing:0.990000px;}
.ws52{word-spacing:1.016400px;}
.ws8a{word-spacing:1.020000px;}
.ws50{word-spacing:1.056000px;}
.ws4c{word-spacing:1.080000px;}
.ws1d{word-spacing:1.122000px;}
.ws8d{word-spacing:1.134000px;}
.ws4e{word-spacing:1.188000px;}
.ws47{word-spacing:1.200000px;}
.ws12{word-spacing:1.254000px;}
.ws6e{word-spacing:1.260000px;}
.ws5d{word-spacing:1.296000px;}
.wsf{word-spacing:1.311000px;}
.ws1e{word-spacing:1.320000px;}
.ws32{word-spacing:1.386000px;}
.ws45{word-spacing:1.440000px;}
.ws1f{word-spacing:1.452000px;}
.ws6c{word-spacing:1.500000px;}
.ws2b{word-spacing:1.518000px;}
.ws21{word-spacing:1.584000px;}
.ws19{word-spacing:3.286500px;}
.ws3b{word-spacing:3.649500px;}
.ws80{word-spacing:4.290000px;}
.ws79{word-spacing:4.950000px;}
.wsb{word-spacing:6.783000px;}
.ws71{word-spacing:8.532000px;}
.ws58{word-spacing:9.018000px;}
.ws63{word-spacing:9.720000px;}
.ws7c{word-spacing:9.834000px;}
.ws16{word-spacing:35.712000px;}
.ws17{word-spacing:36.018000px;}
._e{margin-left:-13.107000px;}
._d{margin-left:-11.814000px;}
._8{margin-left:-8.580000px;}
._7{margin-left:-6.882000px;}
._11{margin-left:-5.439000px;}
._9{margin-left:-4.026000px;}
._5{margin-left:-2.226000px;}
._1{margin-left:-1.083000px;}
._6{width:1.188000px;}
._2{width:7.068000px;}
._0{width:11.514000px;}
._12{width:12.669000px;}
._14{width:13.887000px;}
._10{width:15.576000px;}
._13{width:22.518000px;}
._b{width:35.772000px;}
._a{width:42.108000px;}
._4{width:47.952000px;}
._3{width:68.742000px;}
._f{width:1019.616000px;}
._c{width:1097.232000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.500000px;}
.fsa{font-size:42.000000px;}
.fs7{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fsb{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:57.540000px;}
.y13c{bottom:57.564000px;}
.y4f{bottom:57.618000px;}
.y103{bottom:57.669000px;}
.yb5{bottom:57.684000px;}
.y90{bottom:57.759000px;}
.y1a1{bottom:57.789000px;}
.ydd{bottom:57.903000px;}
.y15a{bottom:58.029000px;}
.y6c{bottom:59.682000px;}
.y13b{bottom:71.808000px;}
.y4e{bottom:71.874000px;}
.y102{bottom:71.913000px;}
.yb4{bottom:71.928000px;}
.y8f{bottom:72.009000px;}
.y1a0{bottom:72.039000px;}
.ydc{bottom:72.159000px;}
.y159{bottom:72.273000px;}
.y6b{bottom:76.924500px;}
.y13a{bottom:86.064000px;}
.y4d{bottom:86.130000px;}
.y101{bottom:86.169000px;}
.yb3{bottom:86.184000px;}
.y8e{bottom:86.259000px;}
.y121{bottom:86.265000px;}
.y19f{bottom:86.283000px;}
.ydb{bottom:86.403000px;}
.y158{bottom:86.529000px;}
.y6a{bottom:94.167000px;}
.y139{bottom:100.308000px;}
.y100{bottom:100.407000px;}
.yb2{bottom:100.440000px;}
.y8d{bottom:100.515000px;}
.y19e{bottom:100.539000px;}
.yda{bottom:100.659000px;}
.y179{bottom:100.773000px;}
.y157{bottom:100.779000px;}
.y1e{bottom:106.605000px;}
.y138{bottom:114.564000px;}
.yff{bottom:114.663000px;}
.y19d{bottom:114.783000px;}
.yd9{bottom:114.903000px;}
.y156{bottom:115.029000px;}
.y1d{bottom:121.546500px;}
.y4c{bottom:128.448000px;}
.y69{bottom:128.668500px;}
.y137{bottom:128.814000px;}
.yfe{bottom:128.919000px;}
.y19c{bottom:129.039000px;}
.yd8{bottom:129.159000px;}
.y155{bottom:129.285000px;}
.y8c{bottom:141.157500px;}
.y1c{bottom:142.551000px;}
.y136{bottom:143.070000px;}
.yfd{bottom:143.163000px;}
.y19b{bottom:143.283000px;}
.y120{bottom:143.392500px;}
.yd7{bottom:143.409000px;}
.yb1{bottom:145.672500px;}
.y4b{bottom:145.690500px;}
.y68{bottom:145.911000px;}
.yfc{bottom:157.419000px;}
.y19a{bottom:157.539000px;}
.y1b{bottom:157.556250px;}
.yd6{bottom:157.665000px;}
.y8b{bottom:158.400000px;}
.y11f{bottom:160.744500px;}
.yb0{bottom:162.915000px;}
.y4a{bottom:162.933000px;}
.y67{bottom:163.153500px;}
.yfb{bottom:171.679125px;}
.y199{bottom:171.795000px;}
.y1a{bottom:172.561500px;}
.y178{bottom:174.885000px;}
.y8a{bottom:175.642500px;}
.y11e{bottom:177.987000px;}
.yaf{bottom:180.157500px;}
.y49{bottom:180.175500px;}
.y154{bottom:180.285000px;}
.y66{bottom:180.396000px;}
.yfa{bottom:185.925000px;}
.y19{bottom:187.566750px;}
.y177{bottom:190.635000px;}
.y89{bottom:192.885000px;}
.y11d{bottom:195.229500px;}
.yae{bottom:197.400000px;}
.y48{bottom:197.418000px;}
.yd5{bottom:197.467500px;}
.y153{bottom:197.527500px;}
.y135{bottom:197.625000px;}
.y65{bottom:197.638500px;}
.y18{bottom:202.572000px;}
.y176{bottom:206.385000px;}
.y88{bottom:210.127500px;}
.y11c{bottom:212.472000px;}
.yad{bottom:214.642500px;}
.yd4{bottom:214.710000px;}
.y152{bottom:214.770000px;}
.y134{bottom:214.867500px;}
.y64{bottom:214.881000px;}
.y17{bottom:217.577250px;}
.y175{bottom:222.135000px;}
.y47{bottom:223.290000px;}
.y87{bottom:227.377500px;}
.y11b{bottom:229.714500px;}
.yd3{bottom:231.952500px;}
.yf9{bottom:232.005000px;}
.y151{bottom:232.012500px;}
.y133{bottom:232.110000px;}
.y63{bottom:232.123500px;}
.yac{bottom:232.140000px;}
.y16{bottom:232.582500px;}
.y174{bottom:237.885000px;}
.y46{bottom:240.532500px;}
.y86{bottom:244.635000px;}
.y11a{bottom:246.957000px;}
.y15{bottom:247.587750px;}
.yd2{bottom:249.195000px;}
.yf8{bottom:249.247500px;}
.y150{bottom:249.255000px;}
.y132{bottom:249.352500px;}
.y62{bottom:249.366000px;}
.yab{bottom:249.382500px;}
.y173{bottom:253.635000px;}
.y45{bottom:257.775000px;}
.y85{bottom:261.877500px;}
.y14{bottom:262.593000px;}
.y119{bottom:264.199500px;}
.yd1{bottom:266.437500px;}
.yf7{bottom:266.490000px;}
.y14f{bottom:266.497500px;}
.y131{bottom:266.595000px;}
.y61{bottom:266.608500px;}
.yaa{bottom:266.625000px;}
.y172{bottom:269.385000px;}
.y44{bottom:275.017500px;}
.y13{bottom:277.598250px;}
.y84{bottom:279.162000px;}
.y118{bottom:281.442000px;}
.yd0{bottom:283.680000px;}
.yf6{bottom:283.732500px;}
.y14e{bottom:283.740000px;}
.y130{bottom:283.837500px;}
.y60{bottom:283.851000px;}
.ya9{bottom:283.867500px;}
.y171{bottom:285.135000px;}
.y198{bottom:290.407500px;}
.y43{bottom:292.260000px;}
.y12{bottom:292.603500px;}
.y83{bottom:296.404500px;}
.ycf{bottom:300.922500px;}
.yf5{bottom:300.975000px;}
.y14d{bottom:300.982500px;}
.y12f{bottom:301.080000px;}
.y5f{bottom:301.093500px;}
.ya8{bottom:301.110000px;}
.y117{bottom:307.314000px;}
.y11{bottom:307.608750px;}
.y197{bottom:307.650000px;}
.y82{bottom:313.647000px;}
.y42{bottom:318.129000px;}
.y170{bottom:318.150000px;}
.yce{bottom:318.165000px;}
.yf4{bottom:318.217500px;}
.y14c{bottom:318.225000px;}
.y12e{bottom:318.322500px;}
.y5e{bottom:318.336000px;}
.ya7{bottom:318.352500px;}
.y196{bottom:324.892500px;}
.y16f{bottom:335.392500px;}
.ycd{bottom:335.407500px;}
.yf3{bottom:335.460000px;}
.y14b{bottom:335.467500px;}
.y12d{bottom:335.565000px;}
.y5d{bottom:335.578500px;}
.ya6{bottom:335.595000px;}
.y10{bottom:337.605000px;}
.y81{bottom:339.519000px;}
.y195{bottom:342.157500px;}
.y116{bottom:350.445000px;}
.yf{bottom:352.551000px;}
.ycc{bottom:352.650000px;}
.y16e{bottom:352.687500px;}
.yf2{bottom:352.702500px;}
.y14a{bottom:352.710000px;}
.y12c{bottom:352.807500px;}
.y5c{bottom:352.821000px;}
.ya5{bottom:352.837500px;}
.y194{bottom:359.400000px;}
.y41{bottom:361.450500px;}
.y115{bottom:367.687500px;}
.ycb{bottom:369.892500px;}
.y16d{bottom:369.930000px;}
.yf1{bottom:369.945000px;}
.y149{bottom:369.952500px;}
.y12b{bottom:370.050000px;}
.y5b{bottom:370.063500px;}
.ya4{bottom:370.080000px;}
.y193{bottom:376.642500px;}
.y40{bottom:378.693000px;}
.y80{bottom:382.650000px;}
.y114{bottom:384.930000px;}
.y16c{bottom:387.172500px;}
.yca{bottom:387.180000px;}
.yf0{bottom:387.187500px;}
.y148{bottom:387.195000px;}
.y12a{bottom:387.292500px;}
.y5a{bottom:387.306000px;}
.ya3{bottom:387.322500px;}
.ye{bottom:388.546500px;}
.y192{bottom:393.945000px;}
.y3f{bottom:395.935500px;}
.y7f{bottom:399.892500px;}
.y113{bottom:402.172500px;}
.yd{bottom:403.551750px;}
.y16b{bottom:404.415000px;}
.yc9{bottom:404.422500px;}
.yef{bottom:404.430000px;}
.y147{bottom:404.437500px;}
.y129{bottom:404.535000px;}
.y59{bottom:404.548500px;}
.ya2{bottom:404.565000px;}
.y191{bottom:411.187500px;}
.y3e{bottom:413.178000px;}
.y7e{bottom:417.135000px;}
.y112{bottom:419.415000px;}
.y16a{bottom:421.657500px;}
.yc8{bottom:421.665000px;}
.yee{bottom:421.672500px;}
.y146{bottom:421.680000px;}
.y128{bottom:421.777500px;}
.y58{bottom:421.791000px;}
.ya1{bottom:421.807500px;}
.yc{bottom:424.556250px;}
.y190{bottom:428.430000px;}
.y3d{bottom:430.420500px;}
.y7d{bottom:434.377500px;}
.y111{bottom:436.657500px;}
.y169{bottom:438.900000px;}
.yc7{bottom:438.907500px;}
.yed{bottom:438.915000px;}
.y145{bottom:438.922500px;}
.y127{bottom:439.020000px;}
.y57{bottom:439.033500px;}
.ya0{bottom:439.050000px;}
.yb{bottom:439.561500px;}
.y18f{bottom:445.672500px;}
.y3c{bottom:447.663000px;}
.y7c{bottom:451.620000px;}
.y110{bottom:453.900000px;}
.ya{bottom:454.566750px;}
.y168{bottom:456.142500px;}
.yc6{bottom:456.150000px;}
.yec{bottom:456.157500px;}
.y144{bottom:456.165000px;}
.y126{bottom:456.262500px;}
.y56{bottom:456.276000px;}
.y9f{bottom:456.292500px;}
.y18e{bottom:462.915000px;}
.y3b{bottom:464.905500px;}
.y9{bottom:469.572000px;}
.y10f{bottom:471.142500px;}
.yc5{bottom:473.392500px;}
.yeb{bottom:473.400000px;}
.y143{bottom:473.407500px;}
.y167{bottom:473.482500px;}
.y125{bottom:473.505000px;}
.y55{bottom:473.518500px;}
.y9e{bottom:473.535000px;}
.y18d{bottom:480.157500px;}
.y7b{bottom:481.635000px;}
.y3a{bottom:482.148000px;}
.y8{bottom:484.577250px;}
.y10e{bottom:488.385000px;}
.yea{bottom:490.642500px;}
.y142{bottom:490.650000px;}
.yc4{bottom:490.657500px;}
.y166{bottom:490.725000px;}
.y124{bottom:490.747500px;}
.y9d{bottom:490.777500px;}
.y7a{bottom:497.385000px;}
.y18c{bottom:497.400000px;}
.y39{bottom:499.390500px;}
.y7{bottom:499.582500px;}
.y141{bottom:507.892500px;}
.yc3{bottom:507.900000px;}
.ye9{bottom:507.915000px;}
.y165{bottom:507.967500px;}
.y123{bottom:507.990000px;}
.y9c{bottom:508.020000px;}
.y79{bottom:513.135000px;}
.y6{bottom:514.587750px;}
.y18b{bottom:514.642500px;}
.y38{bottom:516.633000px;}
.y10d{bottom:522.885000px;}
.yc2{bottom:525.142500px;}
.ye8{bottom:525.157500px;}
.y164{bottom:525.210000px;}
.y122{bottom:525.232500px;}
.y9b{bottom:525.262500px;}
.y78{bottom:528.885000px;}
.y5{bottom:529.593000px;}
.y18a{bottom:531.885000px;}
.y37{bottom:533.875500px;}
.y10c{bottom:538.635000px;}
.y140{bottom:542.397000px;}
.ye7{bottom:542.400000px;}
.y163{bottom:542.452500px;}
.yc1{bottom:542.475000px;}
.y9a{bottom:542.505000px;}
.y4{bottom:544.598250px;}
.y77{bottom:544.635000px;}
.y36{bottom:551.118000px;}
.y10b{bottom:554.385000px;}
.y3{bottom:559.603500px;}
.y13f{bottom:559.639500px;}
.ye6{bottom:559.642500px;}
.y162{bottom:559.695000px;}
.yc0{bottom:559.717500px;}
.y99{bottom:559.747500px;}
.y76{bottom:560.385000px;}
.y189{bottom:566.385000px;}
.y35{bottom:568.360500px;}
.y10a{bottom:570.135000px;}
.y2{bottom:574.608750px;}
.y75{bottom:576.135000px;}
.y13e{bottom:576.882000px;}
.ye5{bottom:576.892500px;}
.y161{bottom:576.937500px;}
.ybf{bottom:576.960000px;}
.y98{bottom:576.990000px;}
.y188{bottom:582.135000px;}
.y34{bottom:585.603000px;}
.y109{bottom:585.885000px;}
.y74{bottom:591.885000px;}
.ye4{bottom:594.142500px;}
.y160{bottom:594.180000px;}
.ybe{bottom:594.202500px;}
.y97{bottom:594.232500px;}
.y187{bottom:597.885000px;}
.y108{bottom:601.635000px;}
.y13d{bottom:602.754000px;}
.y33{bottom:602.845500px;}
.y1{bottom:604.605000px;}
.y73{bottom:607.635000px;}
.y15f{bottom:611.422500px;}
.ye3{bottom:611.442000px;}
.ybd{bottom:611.445000px;}
.y96{bottom:611.475000px;}
.y186{bottom:613.635000px;}
.y107{bottom:617.385000px;}
.y32{bottom:620.088000px;}
.y72{bottom:623.385000px;}
.y15e{bottom:628.665000px;}
.ye2{bottom:628.684500px;}
.ybc{bottom:628.687500px;}
.y95{bottom:628.717500px;}
.y185{bottom:629.385000px;}
.y106{bottom:633.135000px;}
.y25{bottom:636.465000px;}
.y31{bottom:637.330500px;}
.y71{bottom:639.135000px;}
.y184{bottom:645.135000px;}
.y15d{bottom:645.907500px;}
.ye1{bottom:645.927000px;}
.ybb{bottom:645.930000px;}
.y94{bottom:645.960000px;}
.y105{bottom:648.885000px;}
.y30{bottom:654.573000px;}
.y70{bottom:654.885000px;}
.y183{bottom:660.885000px;}
.y15c{bottom:663.150000px;}
.ye0{bottom:663.169500px;}
.yba{bottom:663.172500px;}
.y93{bottom:663.202500px;}
.y104{bottom:664.635000px;}
.y6f{bottom:670.635000px;}
.y2f{bottom:671.815500px;}
.y182{bottom:676.635000px;}
.y15b{bottom:680.392500px;}
.ydf{bottom:680.412000px;}
.yb9{bottom:680.415000px;}
.y92{bottom:680.445000px;}
.y6e{bottom:686.385000px;}
.y2e{bottom:689.058000px;}
.y181{bottom:692.385000px;}
.yb8{bottom:697.657500px;}
.y91{bottom:697.687500px;}
.yde{bottom:706.284000px;}
.y2d{bottom:706.300500px;}
.y180{bottom:708.135000px;}
.yb7{bottom:714.900000px;}
.y6d{bottom:714.930000px;}
.y2c{bottom:723.543000px;}
.y17f{bottom:723.885000px;}
.y24{bottom:727.605000px;}
.yb6{bottom:732.142500px;}
.y54{bottom:732.172500px;}
.y17e{bottom:739.635000px;}
.y2b{bottom:740.785500px;}
.y23{bottom:745.605000px;}
.y53{bottom:749.415000px;}
.y17d{bottom:755.385000px;}
.y2a{bottom:758.028000px;}
.y52{bottom:766.657500px;}
.y17c{bottom:771.135000px;}
.y29{bottom:775.270500px;}
.y51{bottom:783.900000px;}
.y17b{bottom:786.885000px;}
.y22{bottom:790.605000px;}
.y28{bottom:792.513000px;}
.y50{bottom:801.142500px;}
.y17a{bottom:802.635000px;}
.y21{bottom:814.605000px;}
.y27{bottom:818.385000px;}
.y20{bottom:865.605000px;}
.y26{bottom:928.500000px;}
.h7{height:47.085938px;}
.h4{height:51.216000px;}
.h3{height:57.618000px;}
.h20{height:57.642000px;}
.h19{height:57.666000px;}
.h1a{height:57.690000px;}
.h18{height:58.519500px;}
.ha{height:58.536000px;}
.h11{height:58.560000px;}
.hb{height:58.584000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.hc{height:64.020000px;}
.hd{height:64.614000px;}
.h8{height:70.422000px;}
.h1c{height:70.637400px;}
.h21{height:70.685400px;}
.h13{height:70.715400px;}
.h1e{height:70.775400px;}
.h22{height:70.835400px;}
.h16{height:70.847400px;}
.h1b{height:70.865400px;}
.h15{height:70.895400px;}
.he{height:70.907400px;}
.h12{height:70.955400px;}
.h14{height:70.985400px;}
.hf{height:71.015400px;}
.h1f{height:71.027400px;}
.h17{height:71.045400px;}
.h1d{height:71.075400px;}
.h9{height:71.099400px;}
.h10{height:71.544000px;}
.h6{height:76.824000px;}
.h5{height:102.432000px;}
.h0{height:904.500000px;}
.w0{width:634.500000px;}
.x0{left:0.000000px;}
.x4{left:3.000000px;}
.x1{left:73.200000px;}
.x5{left:74.415000px;}
.x8{left:81.165000px;}
.x7{left:95.706000px;}
.x6{left:96.921000px;}
.x2{left:428.775000px;}
.x3{left:449.580000px;}
@media print{
.v4{vertical-align:-19.360000pt;}
.v5{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.160000pt;}
.v3{vertical-align:17.600000pt;}
.v2{vertical-align:18.682667pt;}
.ls1c{letter-spacing:-1.290667pt;}
.ls50{letter-spacing:-1.232000pt;}
.ls16{letter-spacing:-1.173333pt;}
.ls19{letter-spacing:-0.997333pt;}
.ls24{letter-spacing:-0.938667pt;}
.ls65{letter-spacing:-0.906667pt;}
.ls26{letter-spacing:-0.880000pt;}
.ls58{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.810667pt;}
.ls28{letter-spacing:-0.762667pt;}
.ls39{letter-spacing:-0.748000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls64{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.645333pt;}
.ls6d{letter-spacing:-0.640000pt;}
.ls56{letter-spacing:-0.616000pt;}
.lse{letter-spacing:-0.597333pt;}
.ls47{letter-spacing:-0.586667pt;}
.ls38{letter-spacing:-0.574933pt;}
.ls3e{letter-spacing:-0.528000pt;}
.ls63{letter-spacing:-0.504000pt;}
.ls57{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.469333pt;}
.ls68{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.410667pt;}
.ls3{letter-spacing:-0.405333pt;}
.ls35{letter-spacing:-0.352000pt;}
.ls45{letter-spacing:-0.328533pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.293333pt;}
.ls67{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.253333pt;}
.ls1e{letter-spacing:-0.252000pt;}
.ls36{letter-spacing:-0.246400pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.234667pt;}
.ls6c{letter-spacing:-0.213333pt;}
.ls54{letter-spacing:-0.192000pt;}
.ls53{letter-spacing:-0.180000pt;}
.ls29{letter-spacing:-0.176000pt;}
.ls34{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.152000pt;}
.ls55{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.117333pt;}
.ls32{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.101333pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.072000pt;}
.ls37{letter-spacing:-0.058667pt;}
.ls5a{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls41{letter-spacing:-0.048000pt;}
.ls52{letter-spacing:-0.036000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.058667pt;}
.ls5f{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.101333pt;}
.ls3c{letter-spacing:0.106667pt;}
.ls6b{letter-spacing:0.108000pt;}
.ls11{letter-spacing:0.117333pt;}
.ls5b{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.152000pt;}
.ls69{letter-spacing:0.160000pt;}
.ls46{letter-spacing:0.164267pt;}
.ls20{letter-spacing:0.176000pt;}
.ls5c{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.205333pt;}
.ls59{letter-spacing:0.213333pt;}
.ls2e{letter-spacing:0.216000pt;}
.ls10{letter-spacing:0.234667pt;}
.ls2f{letter-spacing:0.240000pt;}
.ls44{letter-spacing:0.252000pt;}
.ls33{letter-spacing:0.266667pt;}
.ls51{letter-spacing:0.288000pt;}
.ls3f{letter-spacing:0.293333pt;}
.ls0{letter-spacing:0.304000pt;}
.ls6a{letter-spacing:0.330667pt;}
.ls43{letter-spacing:0.352000pt;}
.ls2c{letter-spacing:0.360000pt;}
.ls4f{letter-spacing:0.369600pt;}
.ls48{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.410667pt;}
.ls6e{letter-spacing:0.426667pt;}
.ls4c{letter-spacing:0.432000pt;}
.ls3b{letter-spacing:0.469333pt;}
.ls2d{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.506667pt;}
.ls4a{letter-spacing:0.528000pt;}
.ls60{letter-spacing:0.540000pt;}
.ls3d{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.645333pt;}
.ls4{letter-spacing:0.658667pt;}
.ls62{letter-spacing:0.672000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls5e{letter-spacing:0.720000pt;}
.ls4e{letter-spacing:0.739200pt;}
.ls31{letter-spacing:0.746667pt;}
.ls6{letter-spacing:0.760000pt;}
.ls13{letter-spacing:0.762667pt;}
.lsa{letter-spacing:0.810667pt;}
.ls21{letter-spacing:0.821333pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls66{letter-spacing:0.960000pt;}
.ls23{letter-spacing:0.997333pt;}
.ls5d{letter-spacing:1.008000pt;}
.ls61{letter-spacing:1.026667pt;}
.ls3a{letter-spacing:1.056000pt;}
.ls6f{letter-spacing:1.280000pt;}
.ls4b{letter-spacing:1.290667pt;}
.ls49{letter-spacing:1.466667pt;}
.ws70{word-spacing:-14.901333pt;}
.ws56{word-spacing:-14.842667pt;}
.ws14{word-spacing:-14.666667pt;}
.ws84{word-spacing:-14.490667pt;}
.ws7e{word-spacing:-14.256000pt;}
.ws3d{word-spacing:-13.845333pt;}
.ws3e{word-spacing:-13.786667pt;}
.ws73{word-spacing:-13.008000pt;}
.ws5a{word-spacing:-12.384000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws78{word-spacing:-11.293333pt;}
.ws60{word-spacing:-11.005867pt;}
.ws61{word-spacing:-10.636267pt;}
.ws5f{word-spacing:-10.472000pt;}
.ws57{word-spacing:-10.430933pt;}
.ws15{word-spacing:-10.266667pt;}
.ws3c{word-spacing:-10.252000pt;}
.ws39{word-spacing:-10.020267pt;}
.ws55{word-spacing:-9.938133pt;}
.ws74{word-spacing:-9.720000pt;}
.ws3a{word-spacing:-9.691733pt;}
.ws6b{word-spacing:-9.650667pt;}
.ws7a{word-spacing:-9.540000pt;}
.ws85{word-spacing:-9.432000pt;}
.ws3f{word-spacing:-9.360000pt;}
.ws38{word-spacing:-9.333333pt;}
.ws59{word-spacing:-9.252000pt;}
.ws40{word-spacing:-9.216000pt;}
.ws72{word-spacing:-9.144000pt;}
.ws86{word-spacing:-9.108000pt;}
.ws1b{word-spacing:-9.000000pt;}
.ws62{word-spacing:-8.964000pt;}
.ws4d{word-spacing:-8.928000pt;}
.ws7f{word-spacing:-8.856000pt;}
.ws64{word-spacing:-8.820000pt;}
.ws18{word-spacing:-8.748000pt;}
.ws7b{word-spacing:-8.496000pt;}
.ws13{word-spacing:-6.826667pt;}
.ws1c{word-spacing:-0.645333pt;}
.ws2a{word-spacing:-0.586667pt;}
.ws69{word-spacing:-0.576000pt;}
.ws7{word-spacing:-0.557333pt;}
.ws43{word-spacing:-0.533333pt;}
.ws28{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.506667pt;}
.ws68{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.469333pt;}
.wsc{word-spacing:-0.456000pt;}
.ws53{word-spacing:-0.432000pt;}
.ws46{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.410667pt;}
.ws8{word-spacing:-0.405333pt;}
.ws54{word-spacing:-0.384000pt;}
.ws48{word-spacing:-0.373333pt;}
.ws77{word-spacing:-0.360000pt;}
.wsd{word-spacing:-0.354667pt;}
.ws24{word-spacing:-0.352000pt;}
.ws82{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.304000pt;}
.ws20{word-spacing:-0.293333pt;}
.ws42{word-spacing:-0.266667pt;}
.ws2d{word-spacing:-0.240000pt;}
.ws35{word-spacing:-0.234667pt;}
.ws87{word-spacing:-0.213333pt;}
.ws6{word-spacing:-0.202667pt;}
.ws33{word-spacing:-0.176000pt;}
.ws8c{word-spacing:-0.160000pt;}
.ws1{word-spacing:-0.152000pt;}
.ws27{word-spacing:-0.117333pt;}
.ws83{word-spacing:-0.106667pt;}
.ws4a{word-spacing:-0.058667pt;}
.ws49{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.048000pt;}
.ws8b{word-spacing:0.053333pt;}
.ws30{word-spacing:0.058667pt;}
.ws75{word-spacing:0.096000pt;}
.ws89{word-spacing:0.106667pt;}
.ws31{word-spacing:0.117333pt;}
.ws7d{word-spacing:0.144000pt;}
.ws25{word-spacing:0.176000pt;}
.ws6a{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.234667pt;}
.ws9{word-spacing:0.253333pt;}
.ws6d{word-spacing:0.266667pt;}
.ws2f{word-spacing:0.293333pt;}
.ws76{word-spacing:0.336000pt;}
.ws36{word-spacing:0.352000pt;}
.ws3{word-spacing:0.354667pt;}
.ws81{word-spacing:0.373333pt;}
.ws11{word-spacing:0.405333pt;}
.ws29{word-spacing:0.410667pt;}
.ws44{word-spacing:0.426667pt;}
.ws5{word-spacing:0.456000pt;}
.ws65{word-spacing:0.469333pt;}
.ws5c{word-spacing:0.480000pt;}
.ws10{word-spacing:0.506667pt;}
.ws22{word-spacing:0.528000pt;}
.ws2{word-spacing:0.557333pt;}
.ws67{word-spacing:0.576000pt;}
.ws41{word-spacing:0.586667pt;}
.ws8f{word-spacing:0.624000pt;}
.ws34{word-spacing:0.645333pt;}
.ws8e{word-spacing:0.648000pt;}
.ws4b{word-spacing:0.672000pt;}
.ws26{word-spacing:0.704000pt;}
.ws88{word-spacing:0.746667pt;}
.wse{word-spacing:0.760000pt;}
.ws37{word-spacing:0.762667pt;}
.ws66{word-spacing:0.768000pt;}
.ws5b{word-spacing:0.816000pt;}
.ws2c{word-spacing:0.821333pt;}
.ws5e{word-spacing:0.864000pt;}
.ws51{word-spacing:0.880000pt;}
.ws52{word-spacing:0.903467pt;}
.ws8a{word-spacing:0.906667pt;}
.ws50{word-spacing:0.938667pt;}
.ws4c{word-spacing:0.960000pt;}
.ws1d{word-spacing:0.997333pt;}
.ws8d{word-spacing:1.008000pt;}
.ws4e{word-spacing:1.056000pt;}
.ws47{word-spacing:1.066667pt;}
.ws12{word-spacing:1.114667pt;}
.ws6e{word-spacing:1.120000pt;}
.ws5d{word-spacing:1.152000pt;}
.wsf{word-spacing:1.165333pt;}
.ws1e{word-spacing:1.173333pt;}
.ws32{word-spacing:1.232000pt;}
.ws45{word-spacing:1.280000pt;}
.ws1f{word-spacing:1.290667pt;}
.ws6c{word-spacing:1.333333pt;}
.ws2b{word-spacing:1.349333pt;}
.ws21{word-spacing:1.408000pt;}
.ws19{word-spacing:2.921333pt;}
.ws3b{word-spacing:3.244000pt;}
.ws80{word-spacing:3.813333pt;}
.ws79{word-spacing:4.400000pt;}
.wsb{word-spacing:6.029333pt;}
.ws71{word-spacing:7.584000pt;}
.ws58{word-spacing:8.016000pt;}
.ws63{word-spacing:8.640000pt;}
.ws7c{word-spacing:8.741333pt;}
.ws16{word-spacing:31.744000pt;}
.ws17{word-spacing:32.016000pt;}
._e{margin-left:-11.650667pt;}
._d{margin-left:-10.501333pt;}
._8{margin-left:-7.626667pt;}
._7{margin-left:-6.117333pt;}
._11{margin-left:-4.834667pt;}
._9{margin-left:-3.578667pt;}
._5{margin-left:-1.978667pt;}
._1{margin-left:-0.962667pt;}
._6{width:1.056000pt;}
._2{width:6.282667pt;}
._0{width:10.234667pt;}
._12{width:11.261333pt;}
._14{width:12.344000pt;}
._10{width:13.845333pt;}
._13{width:20.016000pt;}
._b{width:31.797333pt;}
._a{width:37.429333pt;}
._4{width:42.624000pt;}
._3{width:61.104000pt;}
._f{width:906.325333pt;}
._c{width:975.317333pt;}
.fs8{font-size:36.000000pt;}
.fsa{font-size:37.333333pt;}
.fs7{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fsb{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:51.146667pt;}
.y13c{bottom:51.168000pt;}
.y4f{bottom:51.216000pt;}
.y103{bottom:51.261333pt;}
.yb5{bottom:51.274667pt;}
.y90{bottom:51.341333pt;}
.y1a1{bottom:51.368000pt;}
.ydd{bottom:51.469333pt;}
.y15a{bottom:51.581333pt;}
.y6c{bottom:53.050667pt;}
.y13b{bottom:63.829333pt;}
.y4e{bottom:63.888000pt;}
.y102{bottom:63.922667pt;}
.yb4{bottom:63.936000pt;}
.y8f{bottom:64.008000pt;}
.y1a0{bottom:64.034667pt;}
.ydc{bottom:64.141333pt;}
.y159{bottom:64.242667pt;}
.y6b{bottom:68.377333pt;}
.y13a{bottom:76.501333pt;}
.y4d{bottom:76.560000pt;}
.y101{bottom:76.594667pt;}
.yb3{bottom:76.608000pt;}
.y8e{bottom:76.674667pt;}
.y121{bottom:76.680000pt;}
.y19f{bottom:76.696000pt;}
.ydb{bottom:76.802667pt;}
.y158{bottom:76.914667pt;}
.y6a{bottom:83.704000pt;}
.y139{bottom:89.162667pt;}
.y100{bottom:89.250667pt;}
.yb2{bottom:89.280000pt;}
.y8d{bottom:89.346667pt;}
.y19e{bottom:89.368000pt;}
.yda{bottom:89.474667pt;}
.y179{bottom:89.576000pt;}
.y157{bottom:89.581333pt;}
.y1e{bottom:94.760000pt;}
.y138{bottom:101.834667pt;}
.yff{bottom:101.922667pt;}
.y19d{bottom:102.029333pt;}
.yd9{bottom:102.136000pt;}
.y156{bottom:102.248000pt;}
.y1d{bottom:108.041333pt;}
.y4c{bottom:114.176000pt;}
.y69{bottom:114.372000pt;}
.y137{bottom:114.501333pt;}
.yfe{bottom:114.594667pt;}
.y19c{bottom:114.701333pt;}
.yd8{bottom:114.808000pt;}
.y155{bottom:114.920000pt;}
.y8c{bottom:125.473333pt;}
.y1c{bottom:126.712000pt;}
.y136{bottom:127.173333pt;}
.yfd{bottom:127.256000pt;}
.y19b{bottom:127.362667pt;}
.y120{bottom:127.460000pt;}
.yd7{bottom:127.474667pt;}
.yb1{bottom:129.486667pt;}
.y4b{bottom:129.502667pt;}
.y68{bottom:129.698667pt;}
.yfc{bottom:139.928000pt;}
.y19a{bottom:140.034667pt;}
.y1b{bottom:140.050000pt;}
.yd6{bottom:140.146667pt;}
.y8b{bottom:140.800000pt;}
.y11f{bottom:142.884000pt;}
.yb0{bottom:144.813333pt;}
.y4a{bottom:144.829333pt;}
.y67{bottom:145.025333pt;}
.yfb{bottom:152.603667pt;}
.y199{bottom:152.706667pt;}
.y1a{bottom:153.388000pt;}
.y178{bottom:155.453333pt;}
.y8a{bottom:156.126667pt;}
.y11e{bottom:158.210667pt;}
.yaf{bottom:160.140000pt;}
.y49{bottom:160.156000pt;}
.y154{bottom:160.253333pt;}
.y66{bottom:160.352000pt;}
.yfa{bottom:165.266667pt;}
.y19{bottom:166.726000pt;}
.y177{bottom:169.453333pt;}
.y89{bottom:171.453333pt;}
.y11d{bottom:173.537333pt;}
.yae{bottom:175.466667pt;}
.y48{bottom:175.482667pt;}
.yd5{bottom:175.526667pt;}
.y153{bottom:175.580000pt;}
.y135{bottom:175.666667pt;}
.y65{bottom:175.678667pt;}
.y18{bottom:180.064000pt;}
.y176{bottom:183.453333pt;}
.y88{bottom:186.780000pt;}
.y11c{bottom:188.864000pt;}
.yad{bottom:190.793333pt;}
.yd4{bottom:190.853333pt;}
.y152{bottom:190.906667pt;}
.y134{bottom:190.993333pt;}
.y64{bottom:191.005333pt;}
.y17{bottom:193.402000pt;}
.y175{bottom:197.453333pt;}
.y47{bottom:198.480000pt;}
.y87{bottom:202.113333pt;}
.y11b{bottom:204.190667pt;}
.yd3{bottom:206.180000pt;}
.yf9{bottom:206.226667pt;}
.y151{bottom:206.233333pt;}
.y133{bottom:206.320000pt;}
.y63{bottom:206.332000pt;}
.yac{bottom:206.346667pt;}
.y16{bottom:206.740000pt;}
.y174{bottom:211.453333pt;}
.y46{bottom:213.806667pt;}
.y86{bottom:217.453333pt;}
.y11a{bottom:219.517333pt;}
.y15{bottom:220.078000pt;}
.yd2{bottom:221.506667pt;}
.yf8{bottom:221.553333pt;}
.y150{bottom:221.560000pt;}
.y132{bottom:221.646667pt;}
.y62{bottom:221.658667pt;}
.yab{bottom:221.673333pt;}
.y173{bottom:225.453333pt;}
.y45{bottom:229.133333pt;}
.y85{bottom:232.780000pt;}
.y14{bottom:233.416000pt;}
.y119{bottom:234.844000pt;}
.yd1{bottom:236.833333pt;}
.yf7{bottom:236.880000pt;}
.y14f{bottom:236.886667pt;}
.y131{bottom:236.973333pt;}
.y61{bottom:236.985333pt;}
.yaa{bottom:237.000000pt;}
.y172{bottom:239.453333pt;}
.y44{bottom:244.460000pt;}
.y13{bottom:246.754000pt;}
.y84{bottom:248.144000pt;}
.y118{bottom:250.170667pt;}
.yd0{bottom:252.160000pt;}
.yf6{bottom:252.206667pt;}
.y14e{bottom:252.213333pt;}
.y130{bottom:252.300000pt;}
.y60{bottom:252.312000pt;}
.ya9{bottom:252.326667pt;}
.y171{bottom:253.453333pt;}
.y198{bottom:258.140000pt;}
.y43{bottom:259.786667pt;}
.y12{bottom:260.092000pt;}
.y83{bottom:263.470667pt;}
.ycf{bottom:267.486667pt;}
.yf5{bottom:267.533333pt;}
.y14d{bottom:267.540000pt;}
.y12f{bottom:267.626667pt;}
.y5f{bottom:267.638667pt;}
.ya8{bottom:267.653333pt;}
.y117{bottom:273.168000pt;}
.y11{bottom:273.430000pt;}
.y197{bottom:273.466667pt;}
.y82{bottom:278.797333pt;}
.y42{bottom:282.781333pt;}
.y170{bottom:282.800000pt;}
.yce{bottom:282.813333pt;}
.yf4{bottom:282.860000pt;}
.y14c{bottom:282.866667pt;}
.y12e{bottom:282.953333pt;}
.y5e{bottom:282.965333pt;}
.ya7{bottom:282.980000pt;}
.y196{bottom:288.793333pt;}
.y16f{bottom:298.126667pt;}
.ycd{bottom:298.140000pt;}
.yf3{bottom:298.186667pt;}
.y14b{bottom:298.193333pt;}
.y12d{bottom:298.280000pt;}
.y5d{bottom:298.292000pt;}
.ya6{bottom:298.306667pt;}
.y10{bottom:300.093333pt;}
.y81{bottom:301.794667pt;}
.y195{bottom:304.140000pt;}
.y116{bottom:311.506667pt;}
.yf{bottom:313.378667pt;}
.ycc{bottom:313.466667pt;}
.y16e{bottom:313.500000pt;}
.yf2{bottom:313.513333pt;}
.y14a{bottom:313.520000pt;}
.y12c{bottom:313.606667pt;}
.y5c{bottom:313.618667pt;}
.ya5{bottom:313.633333pt;}
.y194{bottom:319.466667pt;}
.y41{bottom:321.289333pt;}
.y115{bottom:326.833333pt;}
.ycb{bottom:328.793333pt;}
.y16d{bottom:328.826667pt;}
.yf1{bottom:328.840000pt;}
.y149{bottom:328.846667pt;}
.y12b{bottom:328.933333pt;}
.y5b{bottom:328.945333pt;}
.ya4{bottom:328.960000pt;}
.y193{bottom:334.793333pt;}
.y40{bottom:336.616000pt;}
.y80{bottom:340.133333pt;}
.y114{bottom:342.160000pt;}
.y16c{bottom:344.153333pt;}
.yca{bottom:344.160000pt;}
.yf0{bottom:344.166667pt;}
.y148{bottom:344.173333pt;}
.y12a{bottom:344.260000pt;}
.y5a{bottom:344.272000pt;}
.ya3{bottom:344.286667pt;}
.ye{bottom:345.374667pt;}
.y192{bottom:350.173333pt;}
.y3f{bottom:351.942667pt;}
.y7f{bottom:355.460000pt;}
.y113{bottom:357.486667pt;}
.yd{bottom:358.712667pt;}
.y16b{bottom:359.480000pt;}
.yc9{bottom:359.486667pt;}
.yef{bottom:359.493333pt;}
.y147{bottom:359.500000pt;}
.y129{bottom:359.586667pt;}
.y59{bottom:359.598667pt;}
.ya2{bottom:359.613333pt;}
.y191{bottom:365.500000pt;}
.y3e{bottom:367.269333pt;}
.y7e{bottom:370.786667pt;}
.y112{bottom:372.813333pt;}
.y16a{bottom:374.806667pt;}
.yc8{bottom:374.813333pt;}
.yee{bottom:374.820000pt;}
.y146{bottom:374.826667pt;}
.y128{bottom:374.913333pt;}
.y58{bottom:374.925333pt;}
.ya1{bottom:374.940000pt;}
.yc{bottom:377.383333pt;}
.y190{bottom:380.826667pt;}
.y3d{bottom:382.596000pt;}
.y7d{bottom:386.113333pt;}
.y111{bottom:388.140000pt;}
.y169{bottom:390.133333pt;}
.yc7{bottom:390.140000pt;}
.yed{bottom:390.146667pt;}
.y145{bottom:390.153333pt;}
.y127{bottom:390.240000pt;}
.y57{bottom:390.252000pt;}
.ya0{bottom:390.266667pt;}
.yb{bottom:390.721333pt;}
.y18f{bottom:396.153333pt;}
.y3c{bottom:397.922667pt;}
.y7c{bottom:401.440000pt;}
.y110{bottom:403.466667pt;}
.ya{bottom:404.059333pt;}
.y168{bottom:405.460000pt;}
.yc6{bottom:405.466667pt;}
.yec{bottom:405.473333pt;}
.y144{bottom:405.480000pt;}
.y126{bottom:405.566667pt;}
.y56{bottom:405.578667pt;}
.y9f{bottom:405.593333pt;}
.y18e{bottom:411.480000pt;}
.y3b{bottom:413.249333pt;}
.y9{bottom:417.397333pt;}
.y10f{bottom:418.793333pt;}
.yc5{bottom:420.793333pt;}
.yeb{bottom:420.800000pt;}
.y143{bottom:420.806667pt;}
.y167{bottom:420.873333pt;}
.y125{bottom:420.893333pt;}
.y55{bottom:420.905333pt;}
.y9e{bottom:420.920000pt;}
.y18d{bottom:426.806667pt;}
.y7b{bottom:428.120000pt;}
.y3a{bottom:428.576000pt;}
.y8{bottom:430.735333pt;}
.y10e{bottom:434.120000pt;}
.yea{bottom:436.126667pt;}
.y142{bottom:436.133333pt;}
.yc4{bottom:436.140000pt;}
.y166{bottom:436.200000pt;}
.y124{bottom:436.220000pt;}
.y9d{bottom:436.246667pt;}
.y7a{bottom:442.120000pt;}
.y18c{bottom:442.133333pt;}
.y39{bottom:443.902667pt;}
.y7{bottom:444.073333pt;}
.y141{bottom:451.460000pt;}
.yc3{bottom:451.466667pt;}
.ye9{bottom:451.480000pt;}
.y165{bottom:451.526667pt;}
.y123{bottom:451.546667pt;}
.y9c{bottom:451.573333pt;}
.y79{bottom:456.120000pt;}
.y6{bottom:457.411333pt;}
.y18b{bottom:457.460000pt;}
.y38{bottom:459.229333pt;}
.y10d{bottom:464.786667pt;}
.yc2{bottom:466.793333pt;}
.ye8{bottom:466.806667pt;}
.y164{bottom:466.853333pt;}
.y122{bottom:466.873333pt;}
.y9b{bottom:466.900000pt;}
.y78{bottom:470.120000pt;}
.y5{bottom:470.749333pt;}
.y18a{bottom:472.786667pt;}
.y37{bottom:474.556000pt;}
.y10c{bottom:478.786667pt;}
.y140{bottom:482.130667pt;}
.ye7{bottom:482.133333pt;}
.y163{bottom:482.180000pt;}
.yc1{bottom:482.200000pt;}
.y9a{bottom:482.226667pt;}
.y4{bottom:484.087333pt;}
.y77{bottom:484.120000pt;}
.y36{bottom:489.882667pt;}
.y10b{bottom:492.786667pt;}
.y3{bottom:497.425333pt;}
.y13f{bottom:497.457333pt;}
.ye6{bottom:497.460000pt;}
.y162{bottom:497.506667pt;}
.yc0{bottom:497.526667pt;}
.y99{bottom:497.553333pt;}
.y76{bottom:498.120000pt;}
.y189{bottom:503.453333pt;}
.y35{bottom:505.209333pt;}
.y10a{bottom:506.786667pt;}
.y2{bottom:510.763333pt;}
.y75{bottom:512.120000pt;}
.y13e{bottom:512.784000pt;}
.ye5{bottom:512.793333pt;}
.y161{bottom:512.833333pt;}
.ybf{bottom:512.853333pt;}
.y98{bottom:512.880000pt;}
.y188{bottom:517.453333pt;}
.y34{bottom:520.536000pt;}
.y109{bottom:520.786667pt;}
.y74{bottom:526.120000pt;}
.ye4{bottom:528.126667pt;}
.y160{bottom:528.160000pt;}
.ybe{bottom:528.180000pt;}
.y97{bottom:528.206667pt;}
.y187{bottom:531.453333pt;}
.y108{bottom:534.786667pt;}
.y13d{bottom:535.781333pt;}
.y33{bottom:535.862667pt;}
.y1{bottom:537.426667pt;}
.y73{bottom:540.120000pt;}
.y15f{bottom:543.486667pt;}
.ye3{bottom:543.504000pt;}
.ybd{bottom:543.506667pt;}
.y96{bottom:543.533333pt;}
.y186{bottom:545.453333pt;}
.y107{bottom:548.786667pt;}
.y32{bottom:551.189333pt;}
.y72{bottom:554.120000pt;}
.y15e{bottom:558.813333pt;}
.ye2{bottom:558.830667pt;}
.ybc{bottom:558.833333pt;}
.y95{bottom:558.860000pt;}
.y185{bottom:559.453333pt;}
.y106{bottom:562.786667pt;}
.y25{bottom:565.746667pt;}
.y31{bottom:566.516000pt;}
.y71{bottom:568.120000pt;}
.y184{bottom:573.453333pt;}
.y15d{bottom:574.140000pt;}
.ye1{bottom:574.157333pt;}
.ybb{bottom:574.160000pt;}
.y94{bottom:574.186667pt;}
.y105{bottom:576.786667pt;}
.y30{bottom:581.842667pt;}
.y70{bottom:582.120000pt;}
.y183{bottom:587.453333pt;}
.y15c{bottom:589.466667pt;}
.ye0{bottom:589.484000pt;}
.yba{bottom:589.486667pt;}
.y93{bottom:589.513333pt;}
.y104{bottom:590.786667pt;}
.y6f{bottom:596.120000pt;}
.y2f{bottom:597.169333pt;}
.y182{bottom:601.453333pt;}
.y15b{bottom:604.793333pt;}
.ydf{bottom:604.810667pt;}
.yb9{bottom:604.813333pt;}
.y92{bottom:604.840000pt;}
.y6e{bottom:610.120000pt;}
.y2e{bottom:612.496000pt;}
.y181{bottom:615.453333pt;}
.yb8{bottom:620.140000pt;}
.y91{bottom:620.166667pt;}
.yde{bottom:627.808000pt;}
.y2d{bottom:627.822667pt;}
.y180{bottom:629.453333pt;}
.yb7{bottom:635.466667pt;}
.y6d{bottom:635.493333pt;}
.y2c{bottom:643.149333pt;}
.y17f{bottom:643.453333pt;}
.y24{bottom:646.760000pt;}
.yb6{bottom:650.793333pt;}
.y54{bottom:650.820000pt;}
.y17e{bottom:657.453333pt;}
.y2b{bottom:658.476000pt;}
.y23{bottom:662.760000pt;}
.y53{bottom:666.146667pt;}
.y17d{bottom:671.453333pt;}
.y2a{bottom:673.802667pt;}
.y52{bottom:681.473333pt;}
.y17c{bottom:685.453333pt;}
.y29{bottom:689.129333pt;}
.y51{bottom:696.800000pt;}
.y17b{bottom:699.453333pt;}
.y22{bottom:702.760000pt;}
.y28{bottom:704.456000pt;}
.y50{bottom:712.126667pt;}
.y17a{bottom:713.453333pt;}
.y21{bottom:724.093333pt;}
.y27{bottom:727.453333pt;}
.y20{bottom:769.426667pt;}
.y26{bottom:825.333333pt;}
.h7{height:41.854167pt;}
.h4{height:45.525333pt;}
.h3{height:51.216000pt;}
.h20{height:51.237333pt;}
.h19{height:51.258667pt;}
.h1a{height:51.280000pt;}
.h18{height:52.017333pt;}
.ha{height:52.032000pt;}
.h11{height:52.053333pt;}
.hb{height:52.074667pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.hc{height:56.906667pt;}
.hd{height:57.434667pt;}
.h8{height:62.597333pt;}
.h1c{height:62.788800pt;}
.h21{height:62.831467pt;}
.h13{height:62.858133pt;}
.h1e{height:62.911467pt;}
.h22{height:62.964800pt;}
.h16{height:62.975467pt;}
.h1b{height:62.991467pt;}
.h15{height:63.018133pt;}
.he{height:63.028800pt;}
.h12{height:63.071467pt;}
.h14{height:63.098133pt;}
.hf{height:63.124800pt;}
.h1f{height:63.135467pt;}
.h17{height:63.151467pt;}
.h1d{height:63.178133pt;}
.h9{height:63.199467pt;}
.h10{height:63.594667pt;}
.h6{height:68.288000pt;}
.h5{height:91.050667pt;}
.h0{height:804.000000pt;}
.w0{width:564.000000pt;}
.x0{left:0.000000pt;}
.x4{left:2.666667pt;}
.x1{left:65.066667pt;}
.x5{left:66.146667pt;}
.x8{left:72.146667pt;}
.x7{left:85.072000pt;}
.x6{left:86.152000pt;}
.x2{left:381.133333pt;}
.x3{left:399.626667pt;}
}




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