
    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_e2e6c56b9d49816ee761424f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a503d100372beacb4859cbf1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_b32b1e5dacf55ecdfad0d2ae.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_2697634f82f0c781d70aad55.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_04cdb9c1262297540264b58d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.078613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_164ba26ece1235ff7f354e4a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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:ff7;src:url('chunks/assets/font_b93a60fd34d7ffc205e58c56.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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:ff8;src:url('chunks/assets/font_88c1857d5a0722836e0f666f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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:ff9;src:url('chunks/assets/font_b123ba10d905f25647e552f5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.192000px;}
.ls2b{letter-spacing:-7.200000px;}
.ls4f{letter-spacing:-5.040000px;}
.ls31{letter-spacing:-2.808000px;}
.ls30{letter-spacing:-2.448000px;}
.ls3b{letter-spacing:-2.376000px;}
.ls54{letter-spacing:-1.872000px;}
.lse{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.576000px;}
.ls32{letter-spacing:-0.504000px;}
.ls4e{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls57{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.288000px;}
.ls50{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.151200px;}
.ls22{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.252000px;}
.ls6{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.576000px;}
.ls20{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.864000px;}
.lsa{letter-spacing:0.936000px;}
.ls9{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.080000px;}
.ls2f{letter-spacing:1.087200px;}
.ls1a{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.224000px;}
.ls14{letter-spacing:1.296000px;}
.ls36{letter-spacing:1.584000px;}
.ls3f{letter-spacing:2.203200px;}
.ls33{letter-spacing:2.232000px;}
.ls45{letter-spacing:2.440800px;}
.ls1{letter-spacing:2.850000px;}
.ls4c{letter-spacing:2.889600px;}
.ls53{letter-spacing:2.928000px;}
.ls4d{letter-spacing:2.976000px;}
.ls52{letter-spacing:3.360000px;}
.ls51{letter-spacing:3.388800px;}
.ls55{letter-spacing:3.408000px;}
.ls46{letter-spacing:3.758400px;}
.lsd{letter-spacing:3.840000px;}
.ls49{letter-spacing:3.866400px;}
.ls26{letter-spacing:4.032000px;}
.ls25{letter-spacing:4.104000px;}
.ls28{letter-spacing:4.435200px;}
.ls3{letter-spacing:4.560000px;}
.ls4a{letter-spacing:4.752000px;}
.ls42{letter-spacing:5.076000px;}
.ls27{letter-spacing:5.112000px;}
.ls3d{letter-spacing:5.472000px;}
.ls34{letter-spacing:5.544000px;}
.ls2c{letter-spacing:5.616000px;}
.ls43{letter-spacing:6.696000px;}
.ls35{letter-spacing:6.912000px;}
.ls47{letter-spacing:6.984000px;}
.ls56{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls5{letter-spacing:8.460000px;}
.ls44{letter-spacing:8.488800px;}
.ls48{letter-spacing:8.496000px;}
.ls3a{letter-spacing:9.288000px;}
.ls40{letter-spacing:9.424800px;}
.ls41{letter-spacing:9.432000px;}
.ls2e{letter-spacing:9.648000px;}
.ls3e{letter-spacing:9.669600px;}
.ls37{letter-spacing:10.440000px;}
.ls39{letter-spacing:10.584000px;}
.ls2{letter-spacing:10.740000px;}
.ls38{letter-spacing:11.088000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-25.320000px;}
.ws83{word-spacing:-23.274000px;}
.ws49{word-spacing:-21.096000px;}
.ws52{word-spacing:-20.664000px;}
.ws20{word-spacing:-20.232000px;}
.ws3d{word-spacing:-19.872000px;}
.ws21{word-spacing:-18.936000px;}
.ws1{word-spacing:-18.867000px;}
.ws51{word-spacing:-18.864000px;}
.wse{word-spacing:-18.720000px;}
.ws71{word-spacing:-18.648000px;}
.ws5a{word-spacing:-18.576000px;}
.ws6a{word-spacing:-18.504000px;}
.ws5c{word-spacing:-18.360000px;}
.ws5d{word-spacing:-18.288000px;}
.ws3a{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws3e{word-spacing:-18.072000px;}
.ws2f{word-spacing:-17.928000px;}
.ws4b{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws4c{word-spacing:-17.712000px;}
.ws45{word-spacing:-17.640000px;}
.ws53{word-spacing:-17.568000px;}
.ws4d{word-spacing:-17.496000px;}
.ws2e{word-spacing:-17.424000px;}
.ws54{word-spacing:-17.352000px;}
.ws5b{word-spacing:-17.280000px;}
.ws44{word-spacing:-17.208000px;}
.ws30{word-spacing:-17.064000px;}
.ws4a{word-spacing:-16.776000px;}
.ws84{word-spacing:-14.820000px;}
.ws39{word-spacing:-14.162400px;}
.ws7c{word-spacing:-13.728000px;}
.ws7b{word-spacing:-13.488000px;}
.ws7a{word-spacing:-12.336000px;}
.ws7d{word-spacing:-11.856000px;}
.ws62{word-spacing:-11.088000px;}
.ws63{word-spacing:-10.584000px;}
.ws61{word-spacing:-10.440000px;}
.ws50{word-spacing:-9.648000px;}
.ws64{word-spacing:-9.288000px;}
.wsc{word-spacing:-8.496000px;}
.ws12{word-spacing:-8.460000px;}
.ws4{word-spacing:-7.380000px;}
.ws5f{word-spacing:-6.912000px;}
.ws5e{word-spacing:-5.544000px;}
.ws76{word-spacing:-4.752000px;}
.ws10{word-spacing:-3.840000px;}
.ws59{word-spacing:-2.232000px;}
.ws60{word-spacing:-1.584000px;}
.ws26{word-spacing:-1.296000px;}
.ws2a{word-spacing:-1.224000px;}
.ws55{word-spacing:-1.152000px;}
.ws29{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.008000px;}
.ws82{word-spacing:-0.960000px;}
.ws19{word-spacing:-0.936000px;}
.ws33{word-spacing:-0.864000px;}
.ws25{word-spacing:-0.792000px;}
.ws15{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.576000px;}
.ws2b{word-spacing:-0.504000px;}
.ws3b{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.288000px;}
.ws7f{word-spacing:-0.240000px;}
.ws36{word-spacing:-0.216000px;}
.ws43{word-spacing:-0.144000px;}
.ws1f{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:0.072000px;}
.ws47{word-spacing:0.144000px;}
.ws35{word-spacing:0.216000px;}
.ws81{word-spacing:0.240000px;}
.ws1e{word-spacing:0.288000px;}
.ws86{word-spacing:0.300000px;}
.ws31{word-spacing:0.360000px;}
.ws28{word-spacing:0.432000px;}
.ws7e{word-spacing:0.480000px;}
.ws58{word-spacing:0.504000px;}
.ws46{word-spacing:0.576000px;}
.ws1a{word-spacing:0.648000px;}
.ws38{word-spacing:0.720000px;}
.ws1d{word-spacing:0.792000px;}
.ws32{word-spacing:0.864000px;}
.ws22{word-spacing:0.936000px;}
.wsb{word-spacing:0.960000px;}
.ws4f{word-spacing:1.008000px;}
.ws11{word-spacing:1.080000px;}
.ws74{word-spacing:1.368000px;}
.ws85{word-spacing:1.440000px;}
.ws68{word-spacing:1.728000px;}
.ws9{word-spacing:1.800000px;}
.ws6d{word-spacing:1.872000px;}
.ws65{word-spacing:2.376000px;}
.ws69{word-spacing:2.400000px;}
.ws56{word-spacing:2.448000px;}
.ws57{word-spacing:2.808000px;}
.ws80{word-spacing:2.976000px;}
.ws2d{word-spacing:3.360000px;}
.ws70{word-spacing:3.528000px;}
.ws5{word-spacing:3.720000px;}
.ws17{word-spacing:4.032000px;}
.ws72{word-spacing:4.104000px;}
.ws7{word-spacing:4.200000px;}
.ws6f{word-spacing:4.248000px;}
.wsa{word-spacing:4.464000px;}
.ws66{word-spacing:4.536000px;}
.ws16{word-spacing:4.608000px;}
.ws3c{word-spacing:4.680000px;}
.ws78{word-spacing:4.968000px;}
.ws2c{word-spacing:5.040000px;}
.ws67{word-spacing:5.400000px;}
.ws42{word-spacing:5.616000px;}
.ws24{word-spacing:5.760000px;}
.ws27{word-spacing:5.832000px;}
.ws3f{word-spacing:5.976000px;}
.ws40{word-spacing:6.192000px;}
.ws23{word-spacing:6.552000px;}
.ws6b{word-spacing:6.984000px;}
.ws77{word-spacing:7.128000px;}
.ws48{word-spacing:7.200000px;}
.ws79{word-spacing:7.272000px;}
.ws41{word-spacing:7.560000px;}
.ws73{word-spacing:8.064000px;}
.ws6e{word-spacing:8.280000px;}
.ws6c{word-spacing:8.352000px;}
.ws8{word-spacing:8.400000px;}
.ws37{word-spacing:8.856000px;}
.ws4e{word-spacing:10.080000px;}
.ws75{word-spacing:10.152000px;}
.ws6{word-spacing:73.140000px;}
.ws0{word-spacing:146.196000px;}
._d{margin-left:-948.820800px;}
._7{margin-left:-84.720000px;}
._6{margin-left:-68.880000px;}
._19{margin-left:-14.774400px;}
._1b{margin-left:-13.111200px;}
._18{margin-left:-12.084000px;}
._1a{margin-left:-10.378800px;}
._8{margin-left:-8.520000px;}
._15{margin-left:-7.351200px;}
._e{margin-left:-5.964000px;}
._a{margin-left:-4.236000px;}
._17{margin-left:-3.139200px;}
._5{margin-left:-2.124000px;}
._c{margin-left:-1.122000px;}
._10{width:1.029600px;}
._4{width:2.124000px;}
._3{width:3.162000px;}
._0{width:4.212000px;}
._b{width:5.232000px;}
._11{width:6.832800px;}
._13{width:7.962000px;}
._9{width:9.168000px;}
._12{width:10.872000px;}
._f{width:12.378000px;}
._14{width:13.452000px;}
._1{width:14.562000px;}
._2{width:26.526000px;}
._16{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6d{bottom:117.000000px;}
.y139{bottom:117.078000px;}
.y24{bottom:118.228800px;}
.y1c8{bottom:119.058000px;}
.y48{bottom:119.182050px;}
.y191{bottom:119.406000px;}
.yeb{bottom:120.106050px;}
.yf0{bottom:120.366150px;}
.yd6{bottom:120.564000px;}
.y159{bottom:121.884000px;}
.y6c{bottom:132.000000px;}
.y1c7{bottom:133.602000px;}
.y1ef{bottom:134.036250px;}
.y190{bottom:134.106000px;}
.yb2{bottom:136.207500px;}
.y158{bottom:137.040000px;}
.y23{bottom:137.578800px;}
.y138{bottom:138.984000px;}
.y8f{bottom:139.500000px;}
.y47{bottom:141.826050px;}
.yef{bottom:142.866150px;}
.yea{bottom:142.912050px;}
.yd5{bottom:143.658000px;}
.y1c6{bottom:148.146000px;}
.y18f{bottom:148.806000px;}
.y6b{bottom:151.207500px;}
.y157{bottom:152.184000px;}
.y1ee{bottom:152.786250px;}
.y22{bottom:156.928800px;}
.y137{bottom:160.890000px;}
.y8e{bottom:162.000000px;}
.y1c5{bottom:162.690000px;}
.y18e{bottom:163.506000px;}
.y46{bottom:164.470050px;}
.yee{bottom:165.366150px;}
.ye9{bottom:165.718050px;}
.yd4{bottom:166.752000px;}
.y156{bottom:167.340000px;}
.y1ed{bottom:171.536250px;}
.yb1{bottom:174.102000px;}
.y21{bottom:176.278800px;}
.y1c4{bottom:177.234000px;}
.y113{bottom:177.750000px;}
.y18d{bottom:178.206000px;}
.y155{bottom:182.484000px;}
.y136{bottom:182.796000px;}
.y8d{bottom:184.500000px;}
.y45{bottom:187.114050px;}
.yed{bottom:187.866150px;}
.ye8{bottom:188.524050px;}
.y6a{bottom:189.222000px;}
.yd3{bottom:189.846000px;}
.y1ec{bottom:190.286250px;}
.y1c3{bottom:191.778000px;}
.y18c{bottom:192.906000px;}
.y20{bottom:195.628800px;}
.yb0{bottom:196.908000px;}
.y154{bottom:197.628000px;}
.y112{bottom:199.800000px;}
.y135{bottom:204.702000px;}
.y1c2{bottom:206.322000px;}
.y8c{bottom:207.000000px;}
.y18b{bottom:207.606000px;}
.y1eb{bottom:209.036250px;}
.y44{bottom:209.758050px;}
.yec{bottom:210.366150px;}
.ye7{bottom:211.330050px;}
.y69{bottom:211.578000px;}
.y153{bottom:212.772000px;}
.yd2{bottom:212.940000px;}
.y1f{bottom:214.978800px;}
.yaf{bottom:219.714000px;}
.y1c1{bottom:220.866000px;}
.y111{bottom:221.850000px;}
.y18a{bottom:222.306000px;}
.y134{bottom:226.608000px;}
.y1ea{bottom:227.786250px;}
.y152{bottom:227.916000px;}
.y8b{bottom:229.500000px;}
.y43{bottom:232.402050px;}
.y68{bottom:233.934000px;}
.ye6{bottom:234.136050px;}
.y1e{bottom:234.328800px;}
.y1c0{bottom:235.410000px;}
.yd1{bottom:236.034000px;}
.y189{bottom:237.006000px;}
.yae{bottom:242.520000px;}
.y151{bottom:243.060000px;}
.y110{bottom:243.900000px;}
.y1e9{bottom:246.536250px;}
.y133{bottom:248.514000px;}
.y1bf{bottom:249.954000px;}
.y188{bottom:251.706000px;}
.y8a{bottom:252.000000px;}
.y1d{bottom:253.678800px;}
.y42{bottom:255.046050px;}
.y67{bottom:256.290000px;}
.ye5{bottom:256.942050px;}
.y150{bottom:258.204000px;}
.yd0{bottom:259.128000px;}
.y1be{bottom:264.498000px;}
.y1e8{bottom:265.286250px;}
.yad{bottom:265.326000px;}
.y10f{bottom:265.950000px;}
.y187{bottom:266.406000px;}
.y132{bottom:270.420000px;}
.y1c{bottom:273.028800px;}
.y14f{bottom:273.348000px;}
.y89{bottom:274.500000px;}
.y41{bottom:277.690050px;}
.y66{bottom:278.646000px;}
.y1bd{bottom:279.042000px;}
.ye4{bottom:279.748050px;}
.y186{bottom:281.106000px;}
.ycf{bottom:282.222000px;}
.y1e7{bottom:284.036250px;}
.y10e{bottom:288.000000px;}
.yac{bottom:288.132000px;}
.y14e{bottom:288.492000px;}
.y131{bottom:292.326000px;}
.y1b{bottom:292.378800px;}
.y1bc{bottom:293.586000px;}
.y185{bottom:295.806000px;}
.y88{bottom:297.000000px;}
.y40{bottom:300.334050px;}
.y65{bottom:301.002000px;}
.ye3{bottom:302.554050px;}
.y1e6{bottom:302.786250px;}
.y14d{bottom:303.636000px;}
.yce{bottom:305.316000px;}
.y1bb{bottom:308.130000px;}
.y10d{bottom:310.050000px;}
.y184{bottom:310.506000px;}
.yab{bottom:310.938000px;}
.y1a{bottom:311.728800px;}
.y130{bottom:314.232000px;}
.y14c{bottom:318.780000px;}
.y87{bottom:319.500000px;}
.y1e5{bottom:321.536250px;}
.y1ba{bottom:322.674000px;}
.y3f{bottom:322.978050px;}
.y64{bottom:323.358000px;}
.y183{bottom:325.206000px;}
.ye2{bottom:325.360050px;}
.ycd{bottom:328.410000px;}
.y19{bottom:331.078800px;}
.y10c{bottom:332.100000px;}
.yaa{bottom:333.744000px;}
.y14b{bottom:333.924000px;}
.y12f{bottom:336.138000px;}
.y1b9{bottom:337.218000px;}
.y182{bottom:339.906000px;}
.y1e4{bottom:340.286250px;}
.y86{bottom:342.000000px;}
.y3e{bottom:345.622050px;}
.y63{bottom:345.714000px;}
.ye1{bottom:348.166050px;}
.y14a{bottom:349.068000px;}
.ycc{bottom:351.504000px;}
.y1b8{bottom:351.762000px;}
.y10b{bottom:354.150000px;}
.y181{bottom:354.606000px;}
.ya9{bottom:356.550000px;}
.y12e{bottom:358.044000px;}
.y18{bottom:358.933800px;}
.y1e3{bottom:359.036250px;}
.y149{bottom:364.212000px;}
.y85{bottom:364.500000px;}
.y1b7{bottom:366.306000px;}
.y62{bottom:368.070000px;}
.y3d{bottom:368.266050px;}
.y180{bottom:369.306000px;}
.ye0{bottom:370.972050px;}
.ycb{bottom:374.598000px;}
.y10a{bottom:376.200000px;}
.y1e2{bottom:377.786250px;}
.ya8{bottom:379.356000px;}
.y12d{bottom:379.950000px;}
.y1b6{bottom:380.850000px;}
.y17f{bottom:384.006000px;}
.y84{bottom:387.000000px;}
.y61{bottom:390.426000px;}
.y3c{bottom:390.910050px;}
.ydf{bottom:393.778050px;}
.y148{bottom:394.200000px;}
.y1b5{bottom:395.394000px;}
.y1e1{bottom:396.536250px;}
.yca{bottom:397.692000px;}
.y109{bottom:398.250000px;}
.y17e{bottom:398.850000px;}
.y12c{bottom:401.856000px;}
.ya7{bottom:402.162000px;}
.y17{bottom:405.133800px;}
.y147{bottom:409.044000px;}
.y83{bottom:409.500000px;}
.y1b4{bottom:409.938000px;}
.y60{bottom:412.782000px;}
.y3b{bottom:413.554050px;}
.y17d{bottom:413.694000px;}
.y1e0{bottom:415.286250px;}
.yde{bottom:416.584050px;}
.y108{bottom:420.300000px;}
.yc9{bottom:420.786000px;}
.y12b{bottom:423.762000px;}
.y146{bottom:423.888000px;}
.y1b3{bottom:424.482000px;}
.y16{bottom:424.483800px;}
.ya6{bottom:424.968000px;}
.y17c{bottom:428.538000px;}
.y82{bottom:432.000000px;}
.y1df{bottom:434.036250px;}
.y5f{bottom:435.138000px;}
.y3a{bottom:436.198050px;}
.y145{bottom:438.732000px;}
.y1b2{bottom:439.026000px;}
.ydd{bottom:439.390050px;}
.y107{bottom:442.350000px;}
.y17b{bottom:443.382000px;}
.yc8{bottom:443.880000px;}
.y12a{bottom:445.668000px;}
.ya5{bottom:447.774000px;}
.y15{bottom:452.336700px;}
.y1de{bottom:452.786250px;}
.y144{bottom:453.576000px;}
.y1b1{bottom:454.026000px;}
.y81{bottom:454.500000px;}
.y5e{bottom:457.494000px;}
.y17a{bottom:458.226000px;}
.y39{bottom:458.842050px;}
.ydc{bottom:462.196050px;}
.y106{bottom:464.400000px;}
.yc7{bottom:466.974000px;}
.y129{bottom:467.574000px;}
.y143{bottom:468.420000px;}
.y1b0{bottom:469.026000px;}
.ya4{bottom:470.580000px;}
.y1dd{bottom:471.536250px;}
.y14{bottom:471.836700px;}
.y179{bottom:473.070000px;}
.y80{bottom:477.000000px;}
.y5d{bottom:479.742000px;}
.y38{bottom:481.486050px;}
.y142{bottom:483.264000px;}
.y1af{bottom:484.170000px;}
.ydb{bottom:484.996050px;}
.y105{bottom:486.450000px;}
.y178{bottom:487.914000px;}
.y128{bottom:489.480000px;}
.yc6{bottom:490.068000px;}
.y1dc{bottom:490.286250px;}
.y13{bottom:491.336700px;}
.ya3{bottom:493.386000px;}
.y141{bottom:498.108000px;}
.y1ae{bottom:499.314000px;}
.y7f{bottom:499.500000px;}
.y5c{bottom:502.098000px;}
.y177{bottom:502.758000px;}
.y37{bottom:504.130050px;}
.yda{bottom:507.796050px;}
.y104{bottom:508.500000px;}
.y1db{bottom:509.036250px;}
.y12{bottom:510.836700px;}
.y127{bottom:511.386000px;}
.y140{bottom:512.952000px;}
.yc5{bottom:513.162000px;}
.y1ad{bottom:514.458000px;}
.ya2{bottom:516.192000px;}
.y176{bottom:517.602000px;}
.y7e{bottom:522.000000px;}
.y5b{bottom:524.454000px;}
.y36{bottom:526.774050px;}
.y1da{bottom:527.786250px;}
.y13f{bottom:527.796000px;}
.y1ac{bottom:529.602000px;}
.y11{bottom:530.336700px;}
.y103{bottom:530.550000px;}
.y175{bottom:532.446000px;}
.y126{bottom:533.292000px;}
.yc4{bottom:536.256000px;}
.ya1{bottom:538.998000px;}
.y13e{bottom:542.640000px;}
.y7d{bottom:544.500000px;}
.y1ab{bottom:544.746000px;}
.y1d9{bottom:546.536250px;}
.y5a{bottom:546.810000px;}
.y174{bottom:547.290000px;}
.y35{bottom:549.418050px;}
.y10{bottom:549.836700px;}
.y102{bottom:552.600000px;}
.yd9{bottom:553.308000px;}
.y1ff{bottom:554.745000px;}
.y125{bottom:555.198000px;}
.y13d{bottom:557.484000px;}
.yc3{bottom:559.350000px;}
.y1aa{bottom:559.890000px;}
.ya0{bottom:561.804000px;}
.y173{bottom:562.134000px;}
.y1d8{bottom:565.286250px;}
.y7c{bottom:567.000000px;}
.y59{bottom:569.166000px;}
.yf{bottom:569.336700px;}
.y34{bottom:572.062050px;}
.y13c{bottom:572.328000px;}
.y1fe{bottom:573.495000px;}
.y101{bottom:574.650000px;}
.y1a9{bottom:575.034000px;}
.yd8{bottom:576.114000px;}
.y172{bottom:576.978000px;}
.y124{bottom:577.104000px;}
.yc2{bottom:582.300000px;}
.y1d7{bottom:584.036250px;}
.y9f{bottom:584.610000px;}
.y13b{bottom:587.172000px;}
.ye{bottom:588.836700px;}
.y7b{bottom:589.500000px;}
.y1a8{bottom:590.178000px;}
.y58{bottom:591.522000px;}
.y171{bottom:591.822000px;}
.y1fd{bottom:592.245000px;}
.y33{bottom:594.706050px;}
.y100{bottom:596.700000px;}
.yd7{bottom:598.920000px;}
.y123{bottom:599.010000px;}
.y1d6{bottom:602.786250px;}
.yc1{bottom:605.250000px;}
.y1a7{bottom:605.322000px;}
.y170{bottom:606.666000px;}
.y9e{bottom:607.416000px;}
.yd{bottom:608.336700px;}
.y13a{bottom:608.400000px;}
.y7a{bottom:612.000000px;}
.y57{bottom:613.878000px;}
.y32{bottom:617.350050px;}
.yff{bottom:618.750000px;}
.y1fc{bottom:619.500000px;}
.y1a6{bottom:620.466000px;}
.y122{bottom:620.916000px;}
.y16f{bottom:621.510000px;}
.yc{bottom:627.836700px;}
.yc0{bottom:628.200000px;}
.y9d{bottom:630.222000px;}
.y1d5{bottom:634.292100px;}
.y79{bottom:634.500000px;}
.y1a5{bottom:635.466000px;}
.y56{bottom:636.234000px;}
.y16e{bottom:636.354000px;}
.y1fb{bottom:638.250000px;}
.y31{bottom:639.994050px;}
.yfe{bottom:640.800000px;}
.y121{bottom:642.822000px;}
.yb{bottom:647.336700px;}
.y1a4{bottom:650.466000px;}
.ybf{bottom:651.150000px;}
.y16d{bottom:651.198000px;}
.y9c{bottom:653.028000px;}
.y78{bottom:657.000000px;}
.y55{bottom:658.590000px;}
.y30{bottom:662.638050px;}
.yfd{bottom:662.850000px;}
.y120{bottom:664.728000px;}
.y1d4{bottom:665.052000px;}
.y1a3{bottom:665.466000px;}
.y16c{bottom:666.042000px;}
.ybe{bottom:674.100000px;}
.ya{bottom:675.341700px;}
.y9b{bottom:675.834000px;}
.y77{bottom:679.500000px;}
.y1a2{bottom:680.466000px;}
.y16b{bottom:680.886000px;}
.y54{bottom:680.946000px;}
.yfc{bottom:684.900000px;}
.y2f{bottom:685.282050px;}
.y11f{bottom:686.634000px;}
.y1fa{bottom:687.000000px;}
.y1a1{bottom:695.466000px;}
.y16a{bottom:695.730000px;}
.ybd{bottom:697.050000px;}
.y9a{bottom:698.640000px;}
.y76{bottom:702.000000px;}
.y53{bottom:703.302000px;}
.yfb{bottom:706.950000px;}
.y2e{bottom:707.926050px;}
.y11e{bottom:708.540000px;}
.y1a0{bottom:710.466000px;}
.y169{bottom:710.730000px;}
.y1d3{bottom:714.300000px;}
.ybc{bottom:720.000000px;}
.y99{bottom:721.446000px;}
.y9{bottom:721.827450px;}
.y75{bottom:724.500000px;}
.y19f{bottom:725.466000px;}
.y52{bottom:725.658000px;}
.y168{bottom:725.730000px;}
.yfa{bottom:729.000000px;}
.y11d{bottom:730.446000px;}
.y2d{bottom:730.570050px;}
.y19e{bottom:740.466000px;}
.y167{bottom:740.730000px;}
.ybb{bottom:742.950000px;}
.y1f9{bottom:743.250000px;}
.y8{bottom:743.427450px;}
.y1d2{bottom:743.700000px;}
.y98{bottom:744.252000px;}
.y74{bottom:747.000000px;}
.y51{bottom:748.014000px;}
.yf9{bottom:751.050000px;}
.y11c{bottom:752.352000px;}
.y2c{bottom:753.214050px;}
.y19d{bottom:755.466000px;}
.y166{bottom:755.730000px;}
.y1d1{bottom:758.400000px;}
.y1f8{bottom:762.000000px;}
.y7{bottom:765.027450px;}
.yba{bottom:765.900000px;}
.y97{bottom:767.058000px;}
.y73{bottom:769.500000px;}
.y50{bottom:770.370000px;}
.y19c{bottom:770.466000px;}
.y165{bottom:770.730000px;}
.yf8{bottom:773.100000px;}
.y11b{bottom:774.258000px;}
.y2b{bottom:775.858050px;}
.y1f7{bottom:780.750000px;}
.y19b{bottom:785.466000px;}
.y164{bottom:785.730000px;}
.y1d0{bottom:787.800000px;}
.yb9{bottom:788.850000px;}
.y96{bottom:789.864000px;}
.y72{bottom:792.000000px;}
.y4f{bottom:792.726000px;}
.yf7{bottom:795.150000px;}
.y11a{bottom:796.164000px;}
.y2a{bottom:798.502050px;}
.y1f6{bottom:799.500000px;}
.y19a{bottom:800.466000px;}
.y163{bottom:800.730000px;}
.y1cf{bottom:802.500000px;}
.yb8{bottom:811.800000px;}
.y95{bottom:812.670000px;}
.y71{bottom:814.500000px;}
.y4e{bottom:815.082000px;}
.y199{bottom:815.466000px;}
.y162{bottom:815.730000px;}
.yf6{bottom:817.200000px;}
.y119{bottom:818.070000px;}
.y1f5{bottom:818.250000px;}
.y29{bottom:821.146050px;}
.y198{bottom:830.466000px;}
.y161{bottom:830.730000px;}
.y6{bottom:831.273150px;}
.y1ce{bottom:831.900000px;}
.yb7{bottom:834.750000px;}
.y94{bottom:835.476000px;}
.y70{bottom:837.000000px;}
.y4d{bottom:837.438000px;}
.yf5{bottom:839.250000px;}
.y118{bottom:839.976000px;}
.y28{bottom:843.796050px;}
.y197{bottom:845.466000px;}
.y160{bottom:845.574000px;}
.y1cd{bottom:846.600000px;}
.y1f4{bottom:855.750000px;}
.yb6{bottom:857.700000px;}
.y93{bottom:858.282000px;}
.y6f{bottom:859.500000px;}
.y4c{bottom:859.794000px;}
.y15f{bottom:860.418000px;}
.y196{bottom:860.466000px;}
.y5{bottom:861.273150px;}
.yf4{bottom:861.300000px;}
.y117{bottom:861.882000px;}
.y1f3{bottom:874.500000px;}
.y15e{bottom:875.262000px;}
.y195{bottom:875.466000px;}
.y1cc{bottom:876.000000px;}
.yb5{bottom:880.650000px;}
.y92{bottom:881.088000px;}
.y6e{bottom:882.000000px;}
.y4b{bottom:882.150000px;}
.yf3{bottom:883.350000px;}
.y116{bottom:883.788000px;}
.y27{bottom:887.446050px;}
.y15d{bottom:890.118000px;}
.y194{bottom:890.466000px;}
.y1cb{bottom:890.700000px;}
.y4{bottom:891.273150px;}
.y1f2{bottom:893.250000px;}
.yb4{bottom:903.600000px;}
.y91{bottom:903.894000px;}
.y4a{bottom:904.500000px;}
.y15c{bottom:904.962000px;}
.yf2{bottom:905.400000px;}
.y193{bottom:905.466000px;}
.y115{bottom:905.694000px;}
.y1f1{bottom:912.000000px;}
.y26{bottom:913.800000px;}
.y15b{bottom:919.806000px;}
.y1ca{bottom:920.100000px;}
.yb3{bottom:926.550000px;}
.y90{bottom:926.700000px;}
.y192{bottom:926.850000px;}
.y49{bottom:927.000000px;}
.yf1{bottom:927.450000px;}
.y114{bottom:927.600000px;}
.y1f0{bottom:930.750000px;}
.y25{bottom:931.650000px;}
.y15a{bottom:934.650000px;}
.y1c9{bottom:934.800000px;}
.y3{bottom:940.023150px;}
.hb{height:23.927813px;}
.hf{height:31.992188px;}
.h3{height:37.990723px;}
.he{height:39.072000px;}
.h9{height:39.990234px;}
.hc{height:40.757812px;}
.h10{height:45.852539px;}
.hd{height:48.840000px;}
.h2{height:50.244141px;}
.h6{height:50.580000px;}
.h1{height:50.947266px;}
.h8{height:60.292969px;}
.h7{height:61.136719px;}
.ha{height:61.568719px;}
.h5{height:79.980469px;}
.h4{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x8{left:82.381950px;}
.xb{left:88.759800px;}
.x3{left:97.263750px;}
.xc{left:110.017800px;}
.x6{left:112.620000px;}
.x7{left:127.381950px;}
.x9{left:133.974000px;}
.x2{left:135.000000px;}
.x5{left:142.263750px;}
.xa{left:155.232000px;}
.xd{left:180.525000px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.504000pt;}
.ls2b{letter-spacing:-6.400000pt;}
.ls4f{letter-spacing:-4.480000pt;}
.ls31{letter-spacing:-2.496000pt;}
.ls30{letter-spacing:-2.176000pt;}
.ls3b{letter-spacing:-2.112000pt;}
.ls54{letter-spacing:-1.664000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.512000pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls4e{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls57{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls50{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.134400pt;}
.ls22{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.224000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls20{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.768000pt;}
.lsa{letter-spacing:0.832000pt;}
.ls9{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls2f{letter-spacing:0.966400pt;}
.ls1a{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.088000pt;}
.ls14{letter-spacing:1.152000pt;}
.ls36{letter-spacing:1.408000pt;}
.ls3f{letter-spacing:1.958400pt;}
.ls33{letter-spacing:1.984000pt;}
.ls45{letter-spacing:2.169600pt;}
.ls1{letter-spacing:2.533333pt;}
.ls4c{letter-spacing:2.568533pt;}
.ls53{letter-spacing:2.602667pt;}
.ls4d{letter-spacing:2.645333pt;}
.ls52{letter-spacing:2.986667pt;}
.ls51{letter-spacing:3.012267pt;}
.ls55{letter-spacing:3.029333pt;}
.ls46{letter-spacing:3.340800pt;}
.lsd{letter-spacing:3.413333pt;}
.ls49{letter-spacing:3.436800pt;}
.ls26{letter-spacing:3.584000pt;}
.ls25{letter-spacing:3.648000pt;}
.ls28{letter-spacing:3.942400pt;}
.ls3{letter-spacing:4.053333pt;}
.ls4a{letter-spacing:4.224000pt;}
.ls42{letter-spacing:4.512000pt;}
.ls27{letter-spacing:4.544000pt;}
.ls3d{letter-spacing:4.864000pt;}
.ls34{letter-spacing:4.928000pt;}
.ls2c{letter-spacing:4.992000pt;}
.ls43{letter-spacing:5.952000pt;}
.ls35{letter-spacing:6.144000pt;}
.ls47{letter-spacing:6.208000pt;}
.ls56{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5{letter-spacing:7.520000pt;}
.ls44{letter-spacing:7.545600pt;}
.ls48{letter-spacing:7.552000pt;}
.ls3a{letter-spacing:8.256000pt;}
.ls40{letter-spacing:8.377600pt;}
.ls41{letter-spacing:8.384000pt;}
.ls2e{letter-spacing:8.576000pt;}
.ls3e{letter-spacing:8.595200pt;}
.ls37{letter-spacing:9.280000pt;}
.ls39{letter-spacing:9.408000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls38{letter-spacing:9.856000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws83{word-spacing:-20.688000pt;}
.ws49{word-spacing:-18.752000pt;}
.ws52{word-spacing:-18.368000pt;}
.ws20{word-spacing:-17.984000pt;}
.ws3d{word-spacing:-17.664000pt;}
.ws21{word-spacing:-16.832000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws51{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.640000pt;}
.ws71{word-spacing:-16.576000pt;}
.ws5a{word-spacing:-16.512000pt;}
.ws6a{word-spacing:-16.448000pt;}
.ws5c{word-spacing:-16.320000pt;}
.ws5d{word-spacing:-16.256000pt;}
.ws3a{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws3e{word-spacing:-16.064000pt;}
.ws2f{word-spacing:-15.936000pt;}
.ws4b{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws4c{word-spacing:-15.744000pt;}
.ws45{word-spacing:-15.680000pt;}
.ws53{word-spacing:-15.616000pt;}
.ws4d{word-spacing:-15.552000pt;}
.ws2e{word-spacing:-15.488000pt;}
.ws54{word-spacing:-15.424000pt;}
.ws5b{word-spacing:-15.360000pt;}
.ws44{word-spacing:-15.296000pt;}
.ws30{word-spacing:-15.168000pt;}
.ws4a{word-spacing:-14.912000pt;}
.ws84{word-spacing:-13.173333pt;}
.ws39{word-spacing:-12.588800pt;}
.ws7c{word-spacing:-12.202667pt;}
.ws7b{word-spacing:-11.989333pt;}
.ws7a{word-spacing:-10.965333pt;}
.ws7d{word-spacing:-10.538667pt;}
.ws62{word-spacing:-9.856000pt;}
.ws63{word-spacing:-9.408000pt;}
.ws61{word-spacing:-9.280000pt;}
.ws50{word-spacing:-8.576000pt;}
.ws64{word-spacing:-8.256000pt;}
.wsc{word-spacing:-7.552000pt;}
.ws12{word-spacing:-7.520000pt;}
.ws4{word-spacing:-6.560000pt;}
.ws5f{word-spacing:-6.144000pt;}
.ws5e{word-spacing:-4.928000pt;}
.ws76{word-spacing:-4.224000pt;}
.ws10{word-spacing:-3.413333pt;}
.ws59{word-spacing:-1.984000pt;}
.ws60{word-spacing:-1.408000pt;}
.ws26{word-spacing:-1.152000pt;}
.ws2a{word-spacing:-1.088000pt;}
.ws55{word-spacing:-1.024000pt;}
.ws29{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.896000pt;}
.ws82{word-spacing:-0.853333pt;}
.ws19{word-spacing:-0.832000pt;}
.ws33{word-spacing:-0.768000pt;}
.ws25{word-spacing:-0.704000pt;}
.ws15{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.512000pt;}
.ws2b{word-spacing:-0.448000pt;}
.ws3b{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.256000pt;}
.ws7f{word-spacing:-0.213333pt;}
.ws36{word-spacing:-0.192000pt;}
.ws43{word-spacing:-0.128000pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.064000pt;}
.ws47{word-spacing:0.128000pt;}
.ws35{word-spacing:0.192000pt;}
.ws81{word-spacing:0.213333pt;}
.ws1e{word-spacing:0.256000pt;}
.ws86{word-spacing:0.266667pt;}
.ws31{word-spacing:0.320000pt;}
.ws28{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.426667pt;}
.ws58{word-spacing:0.448000pt;}
.ws46{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.576000pt;}
.ws38{word-spacing:0.640000pt;}
.ws1d{word-spacing:0.704000pt;}
.ws32{word-spacing:0.768000pt;}
.ws22{word-spacing:0.832000pt;}
.wsb{word-spacing:0.853333pt;}
.ws4f{word-spacing:0.896000pt;}
.ws11{word-spacing:0.960000pt;}
.ws74{word-spacing:1.216000pt;}
.ws85{word-spacing:1.280000pt;}
.ws68{word-spacing:1.536000pt;}
.ws9{word-spacing:1.600000pt;}
.ws6d{word-spacing:1.664000pt;}
.ws65{word-spacing:2.112000pt;}
.ws69{word-spacing:2.133333pt;}
.ws56{word-spacing:2.176000pt;}
.ws57{word-spacing:2.496000pt;}
.ws80{word-spacing:2.645333pt;}
.ws2d{word-spacing:2.986667pt;}
.ws70{word-spacing:3.136000pt;}
.ws5{word-spacing:3.306667pt;}
.ws17{word-spacing:3.584000pt;}
.ws72{word-spacing:3.648000pt;}
.ws7{word-spacing:3.733333pt;}
.ws6f{word-spacing:3.776000pt;}
.wsa{word-spacing:3.968000pt;}
.ws66{word-spacing:4.032000pt;}
.ws16{word-spacing:4.096000pt;}
.ws3c{word-spacing:4.160000pt;}
.ws78{word-spacing:4.416000pt;}
.ws2c{word-spacing:4.480000pt;}
.ws67{word-spacing:4.800000pt;}
.ws42{word-spacing:4.992000pt;}
.ws24{word-spacing:5.120000pt;}
.ws27{word-spacing:5.184000pt;}
.ws3f{word-spacing:5.312000pt;}
.ws40{word-spacing:5.504000pt;}
.ws23{word-spacing:5.824000pt;}
.ws6b{word-spacing:6.208000pt;}
.ws77{word-spacing:6.336000pt;}
.ws48{word-spacing:6.400000pt;}
.ws79{word-spacing:6.464000pt;}
.ws41{word-spacing:6.720000pt;}
.ws73{word-spacing:7.168000pt;}
.ws6e{word-spacing:7.360000pt;}
.ws6c{word-spacing:7.424000pt;}
.ws8{word-spacing:7.466667pt;}
.ws37{word-spacing:7.872000pt;}
.ws4e{word-spacing:8.960000pt;}
.ws75{word-spacing:9.024000pt;}
.ws6{word-spacing:65.013333pt;}
.ws0{word-spacing:129.952000pt;}
._d{margin-left:-843.396267pt;}
._7{margin-left:-75.306667pt;}
._6{margin-left:-61.226667pt;}
._19{margin-left:-13.132800pt;}
._1b{margin-left:-11.654400pt;}
._18{margin-left:-10.741333pt;}
._1a{margin-left:-9.225600pt;}
._8{margin-left:-7.573333pt;}
._15{margin-left:-6.534400pt;}
._e{margin-left:-5.301333pt;}
._a{margin-left:-3.765333pt;}
._17{margin-left:-2.790400pt;}
._5{margin-left:-1.888000pt;}
._c{margin-left:-0.997333pt;}
._10{width:0.915200pt;}
._4{width:1.888000pt;}
._3{width:2.810667pt;}
._0{width:3.744000pt;}
._b{width:4.650667pt;}
._11{width:6.073600pt;}
._13{width:7.077333pt;}
._9{width:8.149333pt;}
._12{width:9.664000pt;}
._f{width:11.002667pt;}
._14{width:11.957333pt;}
._1{width:12.944000pt;}
._2{width:23.578667pt;}
._16{width:28.129867pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6d{bottom:104.000000pt;}
.y139{bottom:104.069333pt;}
.y24{bottom:105.092267pt;}
.y1c8{bottom:105.829333pt;}
.y48{bottom:105.939600pt;}
.y191{bottom:106.138667pt;}
.yeb{bottom:106.760933pt;}
.yf0{bottom:106.992133pt;}
.yd6{bottom:107.168000pt;}
.y159{bottom:108.341333pt;}
.y6c{bottom:117.333333pt;}
.y1c7{bottom:118.757333pt;}
.y1ef{bottom:119.143333pt;}
.y190{bottom:119.205333pt;}
.yb2{bottom:121.073333pt;}
.y158{bottom:121.813333pt;}
.y23{bottom:122.292267pt;}
.y138{bottom:123.541333pt;}
.y8f{bottom:124.000000pt;}
.y47{bottom:126.067600pt;}
.yef{bottom:126.992133pt;}
.yea{bottom:127.032933pt;}
.yd5{bottom:127.696000pt;}
.y1c6{bottom:131.685333pt;}
.y18f{bottom:132.272000pt;}
.y6b{bottom:134.406667pt;}
.y157{bottom:135.274667pt;}
.y1ee{bottom:135.810000pt;}
.y22{bottom:139.492267pt;}
.y137{bottom:143.013333pt;}
.y8e{bottom:144.000000pt;}
.y1c5{bottom:144.613333pt;}
.y18e{bottom:145.338667pt;}
.y46{bottom:146.195600pt;}
.yee{bottom:146.992133pt;}
.ye9{bottom:147.304933pt;}
.yd4{bottom:148.224000pt;}
.y156{bottom:148.746667pt;}
.y1ed{bottom:152.476667pt;}
.yb1{bottom:154.757333pt;}
.y21{bottom:156.692267pt;}
.y1c4{bottom:157.541333pt;}
.y113{bottom:158.000000pt;}
.y18d{bottom:158.405333pt;}
.y155{bottom:162.208000pt;}
.y136{bottom:162.485333pt;}
.y8d{bottom:164.000000pt;}
.y45{bottom:166.323600pt;}
.yed{bottom:166.992133pt;}
.ye8{bottom:167.576933pt;}
.y6a{bottom:168.197333pt;}
.yd3{bottom:168.752000pt;}
.y1ec{bottom:169.143333pt;}
.y1c3{bottom:170.469333pt;}
.y18c{bottom:171.472000pt;}
.y20{bottom:173.892267pt;}
.yb0{bottom:175.029333pt;}
.y154{bottom:175.669333pt;}
.y112{bottom:177.600000pt;}
.y135{bottom:181.957333pt;}
.y1c2{bottom:183.397333pt;}
.y8c{bottom:184.000000pt;}
.y18b{bottom:184.538667pt;}
.y1eb{bottom:185.810000pt;}
.y44{bottom:186.451600pt;}
.yec{bottom:186.992133pt;}
.ye7{bottom:187.848933pt;}
.y69{bottom:188.069333pt;}
.y153{bottom:189.130667pt;}
.yd2{bottom:189.280000pt;}
.y1f{bottom:191.092267pt;}
.yaf{bottom:195.301333pt;}
.y1c1{bottom:196.325333pt;}
.y111{bottom:197.200000pt;}
.y18a{bottom:197.605333pt;}
.y134{bottom:201.429333pt;}
.y1ea{bottom:202.476667pt;}
.y152{bottom:202.592000pt;}
.y8b{bottom:204.000000pt;}
.y43{bottom:206.579600pt;}
.y68{bottom:207.941333pt;}
.ye6{bottom:208.120933pt;}
.y1e{bottom:208.292267pt;}
.y1c0{bottom:209.253333pt;}
.yd1{bottom:209.808000pt;}
.y189{bottom:210.672000pt;}
.yae{bottom:215.573333pt;}
.y151{bottom:216.053333pt;}
.y110{bottom:216.800000pt;}
.y1e9{bottom:219.143333pt;}
.y133{bottom:220.901333pt;}
.y1bf{bottom:222.181333pt;}
.y188{bottom:223.738667pt;}
.y8a{bottom:224.000000pt;}
.y1d{bottom:225.492267pt;}
.y42{bottom:226.707600pt;}
.y67{bottom:227.813333pt;}
.ye5{bottom:228.392933pt;}
.y150{bottom:229.514667pt;}
.yd0{bottom:230.336000pt;}
.y1be{bottom:235.109333pt;}
.y1e8{bottom:235.810000pt;}
.yad{bottom:235.845333pt;}
.y10f{bottom:236.400000pt;}
.y187{bottom:236.805333pt;}
.y132{bottom:240.373333pt;}
.y1c{bottom:242.692267pt;}
.y14f{bottom:242.976000pt;}
.y89{bottom:244.000000pt;}
.y41{bottom:246.835600pt;}
.y66{bottom:247.685333pt;}
.y1bd{bottom:248.037333pt;}
.ye4{bottom:248.664933pt;}
.y186{bottom:249.872000pt;}
.ycf{bottom:250.864000pt;}
.y1e7{bottom:252.476667pt;}
.y10e{bottom:256.000000pt;}
.yac{bottom:256.117333pt;}
.y14e{bottom:256.437333pt;}
.y131{bottom:259.845333pt;}
.y1b{bottom:259.892267pt;}
.y1bc{bottom:260.965333pt;}
.y185{bottom:262.938667pt;}
.y88{bottom:264.000000pt;}
.y40{bottom:266.963600pt;}
.y65{bottom:267.557333pt;}
.ye3{bottom:268.936933pt;}
.y1e6{bottom:269.143333pt;}
.y14d{bottom:269.898667pt;}
.yce{bottom:271.392000pt;}
.y1bb{bottom:273.893333pt;}
.y10d{bottom:275.600000pt;}
.y184{bottom:276.005333pt;}
.yab{bottom:276.389333pt;}
.y1a{bottom:277.092267pt;}
.y130{bottom:279.317333pt;}
.y14c{bottom:283.360000pt;}
.y87{bottom:284.000000pt;}
.y1e5{bottom:285.810000pt;}
.y1ba{bottom:286.821333pt;}
.y3f{bottom:287.091600pt;}
.y64{bottom:287.429333pt;}
.y183{bottom:289.072000pt;}
.ye2{bottom:289.208933pt;}
.ycd{bottom:291.920000pt;}
.y19{bottom:294.292267pt;}
.y10c{bottom:295.200000pt;}
.yaa{bottom:296.661333pt;}
.y14b{bottom:296.821333pt;}
.y12f{bottom:298.789333pt;}
.y1b9{bottom:299.749333pt;}
.y182{bottom:302.138667pt;}
.y1e4{bottom:302.476667pt;}
.y86{bottom:304.000000pt;}
.y3e{bottom:307.219600pt;}
.y63{bottom:307.301333pt;}
.ye1{bottom:309.480933pt;}
.y14a{bottom:310.282667pt;}
.ycc{bottom:312.448000pt;}
.y1b8{bottom:312.677333pt;}
.y10b{bottom:314.800000pt;}
.y181{bottom:315.205333pt;}
.ya9{bottom:316.933333pt;}
.y12e{bottom:318.261333pt;}
.y18{bottom:319.052267pt;}
.y1e3{bottom:319.143333pt;}
.y149{bottom:323.744000pt;}
.y85{bottom:324.000000pt;}
.y1b7{bottom:325.605333pt;}
.y62{bottom:327.173333pt;}
.y3d{bottom:327.347600pt;}
.y180{bottom:328.272000pt;}
.ye0{bottom:329.752933pt;}
.ycb{bottom:332.976000pt;}
.y10a{bottom:334.400000pt;}
.y1e2{bottom:335.810000pt;}
.ya8{bottom:337.205333pt;}
.y12d{bottom:337.733333pt;}
.y1b6{bottom:338.533333pt;}
.y17f{bottom:341.338667pt;}
.y84{bottom:344.000000pt;}
.y61{bottom:347.045333pt;}
.y3c{bottom:347.475600pt;}
.ydf{bottom:350.024933pt;}
.y148{bottom:350.400000pt;}
.y1b5{bottom:351.461333pt;}
.y1e1{bottom:352.476667pt;}
.yca{bottom:353.504000pt;}
.y109{bottom:354.000000pt;}
.y17e{bottom:354.533333pt;}
.y12c{bottom:357.205333pt;}
.ya7{bottom:357.477333pt;}
.y17{bottom:360.118933pt;}
.y147{bottom:363.594667pt;}
.y83{bottom:364.000000pt;}
.y1b4{bottom:364.389333pt;}
.y60{bottom:366.917333pt;}
.y3b{bottom:367.603600pt;}
.y17d{bottom:367.728000pt;}
.y1e0{bottom:369.143333pt;}
.yde{bottom:370.296933pt;}
.y108{bottom:373.600000pt;}
.yc9{bottom:374.032000pt;}
.y12b{bottom:376.677333pt;}
.y146{bottom:376.789333pt;}
.y1b3{bottom:377.317333pt;}
.y16{bottom:377.318933pt;}
.ya6{bottom:377.749333pt;}
.y17c{bottom:380.922667pt;}
.y82{bottom:384.000000pt;}
.y1df{bottom:385.810000pt;}
.y5f{bottom:386.789333pt;}
.y3a{bottom:387.731600pt;}
.y145{bottom:389.984000pt;}
.y1b2{bottom:390.245333pt;}
.ydd{bottom:390.568933pt;}
.y107{bottom:393.200000pt;}
.y17b{bottom:394.117333pt;}
.yc8{bottom:394.560000pt;}
.y12a{bottom:396.149333pt;}
.ya5{bottom:398.021333pt;}
.y15{bottom:402.077067pt;}
.y1de{bottom:402.476667pt;}
.y144{bottom:403.178667pt;}
.y1b1{bottom:403.578667pt;}
.y81{bottom:404.000000pt;}
.y5e{bottom:406.661333pt;}
.y17a{bottom:407.312000pt;}
.y39{bottom:407.859600pt;}
.ydc{bottom:410.840933pt;}
.y106{bottom:412.800000pt;}
.yc7{bottom:415.088000pt;}
.y129{bottom:415.621333pt;}
.y143{bottom:416.373333pt;}
.y1b0{bottom:416.912000pt;}
.ya4{bottom:418.293333pt;}
.y1dd{bottom:419.143333pt;}
.y14{bottom:419.410400pt;}
.y179{bottom:420.506667pt;}
.y80{bottom:424.000000pt;}
.y5d{bottom:426.437333pt;}
.y38{bottom:427.987600pt;}
.y142{bottom:429.568000pt;}
.y1af{bottom:430.373333pt;}
.ydb{bottom:431.107600pt;}
.y105{bottom:432.400000pt;}
.y178{bottom:433.701333pt;}
.y128{bottom:435.093333pt;}
.yc6{bottom:435.616000pt;}
.y1dc{bottom:435.810000pt;}
.y13{bottom:436.743733pt;}
.ya3{bottom:438.565333pt;}
.y141{bottom:442.762667pt;}
.y1ae{bottom:443.834667pt;}
.y7f{bottom:444.000000pt;}
.y5c{bottom:446.309333pt;}
.y177{bottom:446.896000pt;}
.y37{bottom:448.115600pt;}
.yda{bottom:451.374267pt;}
.y104{bottom:452.000000pt;}
.y1db{bottom:452.476667pt;}
.y12{bottom:454.077067pt;}
.y127{bottom:454.565333pt;}
.y140{bottom:455.957333pt;}
.yc5{bottom:456.144000pt;}
.y1ad{bottom:457.296000pt;}
.ya2{bottom:458.837333pt;}
.y176{bottom:460.090667pt;}
.y7e{bottom:464.000000pt;}
.y5b{bottom:466.181333pt;}
.y36{bottom:468.243600pt;}
.y1da{bottom:469.143333pt;}
.y13f{bottom:469.152000pt;}
.y1ac{bottom:470.757333pt;}
.y11{bottom:471.410400pt;}
.y103{bottom:471.600000pt;}
.y175{bottom:473.285333pt;}
.y126{bottom:474.037333pt;}
.yc4{bottom:476.672000pt;}
.ya1{bottom:479.109333pt;}
.y13e{bottom:482.346667pt;}
.y7d{bottom:484.000000pt;}
.y1ab{bottom:484.218667pt;}
.y1d9{bottom:485.810000pt;}
.y5a{bottom:486.053333pt;}
.y174{bottom:486.480000pt;}
.y35{bottom:488.371600pt;}
.y10{bottom:488.743733pt;}
.y102{bottom:491.200000pt;}
.yd9{bottom:491.829333pt;}
.y1ff{bottom:493.106667pt;}
.y125{bottom:493.509333pt;}
.y13d{bottom:495.541333pt;}
.yc3{bottom:497.200000pt;}
.y1aa{bottom:497.680000pt;}
.ya0{bottom:499.381333pt;}
.y173{bottom:499.674667pt;}
.y1d8{bottom:502.476667pt;}
.y7c{bottom:504.000000pt;}
.y59{bottom:505.925333pt;}
.yf{bottom:506.077067pt;}
.y34{bottom:508.499600pt;}
.y13c{bottom:508.736000pt;}
.y1fe{bottom:509.773333pt;}
.y101{bottom:510.800000pt;}
.y1a9{bottom:511.141333pt;}
.yd8{bottom:512.101333pt;}
.y172{bottom:512.869333pt;}
.y124{bottom:512.981333pt;}
.yc2{bottom:517.600000pt;}
.y1d7{bottom:519.143333pt;}
.y9f{bottom:519.653333pt;}
.y13b{bottom:521.930667pt;}
.ye{bottom:523.410400pt;}
.y7b{bottom:524.000000pt;}
.y1a8{bottom:524.602667pt;}
.y58{bottom:525.797333pt;}
.y171{bottom:526.064000pt;}
.y1fd{bottom:526.440000pt;}
.y33{bottom:528.627600pt;}
.y100{bottom:530.400000pt;}
.yd7{bottom:532.373333pt;}
.y123{bottom:532.453333pt;}
.y1d6{bottom:535.810000pt;}
.yc1{bottom:538.000000pt;}
.y1a7{bottom:538.064000pt;}
.y170{bottom:539.258667pt;}
.y9e{bottom:539.925333pt;}
.yd{bottom:540.743733pt;}
.y13a{bottom:540.800000pt;}
.y7a{bottom:544.000000pt;}
.y57{bottom:545.669333pt;}
.y32{bottom:548.755600pt;}
.yff{bottom:550.000000pt;}
.y1fc{bottom:550.666667pt;}
.y1a6{bottom:551.525333pt;}
.y122{bottom:551.925333pt;}
.y16f{bottom:552.453333pt;}
.yc{bottom:558.077067pt;}
.yc0{bottom:558.400000pt;}
.y9d{bottom:560.197333pt;}
.y1d5{bottom:563.815200pt;}
.y79{bottom:564.000000pt;}
.y1a5{bottom:564.858667pt;}
.y56{bottom:565.541333pt;}
.y16e{bottom:565.648000pt;}
.y1fb{bottom:567.333333pt;}
.y31{bottom:568.883600pt;}
.yfe{bottom:569.600000pt;}
.y121{bottom:571.397333pt;}
.yb{bottom:575.410400pt;}
.y1a4{bottom:578.192000pt;}
.ybf{bottom:578.800000pt;}
.y16d{bottom:578.842667pt;}
.y9c{bottom:580.469333pt;}
.y78{bottom:584.000000pt;}
.y55{bottom:585.413333pt;}
.y30{bottom:589.011600pt;}
.yfd{bottom:589.200000pt;}
.y120{bottom:590.869333pt;}
.y1d4{bottom:591.157333pt;}
.y1a3{bottom:591.525333pt;}
.y16c{bottom:592.037333pt;}
.ybe{bottom:599.200000pt;}
.ya{bottom:600.303733pt;}
.y9b{bottom:600.741333pt;}
.y77{bottom:604.000000pt;}
.y1a2{bottom:604.858667pt;}
.y16b{bottom:605.232000pt;}
.y54{bottom:605.285333pt;}
.yfc{bottom:608.800000pt;}
.y2f{bottom:609.139600pt;}
.y11f{bottom:610.341333pt;}
.y1fa{bottom:610.666667pt;}
.y1a1{bottom:618.192000pt;}
.y16a{bottom:618.426667pt;}
.ybd{bottom:619.600000pt;}
.y9a{bottom:621.013333pt;}
.y76{bottom:624.000000pt;}
.y53{bottom:625.157333pt;}
.yfb{bottom:628.400000pt;}
.y2e{bottom:629.267600pt;}
.y11e{bottom:629.813333pt;}
.y1a0{bottom:631.525333pt;}
.y169{bottom:631.760000pt;}
.y1d3{bottom:634.933333pt;}
.ybc{bottom:640.000000pt;}
.y99{bottom:641.285333pt;}
.y9{bottom:641.624400pt;}
.y75{bottom:644.000000pt;}
.y19f{bottom:644.858667pt;}
.y52{bottom:645.029333pt;}
.y168{bottom:645.093333pt;}
.yfa{bottom:648.000000pt;}
.y11d{bottom:649.285333pt;}
.y2d{bottom:649.395600pt;}
.y19e{bottom:658.192000pt;}
.y167{bottom:658.426667pt;}
.ybb{bottom:660.400000pt;}
.y1f9{bottom:660.666667pt;}
.y8{bottom:660.824400pt;}
.y1d2{bottom:661.066667pt;}
.y98{bottom:661.557333pt;}
.y74{bottom:664.000000pt;}
.y51{bottom:664.901333pt;}
.yf9{bottom:667.600000pt;}
.y11c{bottom:668.757333pt;}
.y2c{bottom:669.523600pt;}
.y19d{bottom:671.525333pt;}
.y166{bottom:671.760000pt;}
.y1d1{bottom:674.133333pt;}
.y1f8{bottom:677.333333pt;}
.y7{bottom:680.024400pt;}
.yba{bottom:680.800000pt;}
.y97{bottom:681.829333pt;}
.y73{bottom:684.000000pt;}
.y50{bottom:684.773333pt;}
.y19c{bottom:684.858667pt;}
.y165{bottom:685.093333pt;}
.yf8{bottom:687.200000pt;}
.y11b{bottom:688.229333pt;}
.y2b{bottom:689.651600pt;}
.y1f7{bottom:694.000000pt;}
.y19b{bottom:698.192000pt;}
.y164{bottom:698.426667pt;}
.y1d0{bottom:700.266667pt;}
.yb9{bottom:701.200000pt;}
.y96{bottom:702.101333pt;}
.y72{bottom:704.000000pt;}
.y4f{bottom:704.645333pt;}
.yf7{bottom:706.800000pt;}
.y11a{bottom:707.701333pt;}
.y2a{bottom:709.779600pt;}
.y1f6{bottom:710.666667pt;}
.y19a{bottom:711.525333pt;}
.y163{bottom:711.760000pt;}
.y1cf{bottom:713.333333pt;}
.yb8{bottom:721.600000pt;}
.y95{bottom:722.373333pt;}
.y71{bottom:724.000000pt;}
.y4e{bottom:724.517333pt;}
.y199{bottom:724.858667pt;}
.y162{bottom:725.093333pt;}
.yf6{bottom:726.400000pt;}
.y119{bottom:727.173333pt;}
.y1f5{bottom:727.333333pt;}
.y29{bottom:729.907600pt;}
.y198{bottom:738.192000pt;}
.y161{bottom:738.426667pt;}
.y6{bottom:738.909467pt;}
.y1ce{bottom:739.466667pt;}
.yb7{bottom:742.000000pt;}
.y94{bottom:742.645333pt;}
.y70{bottom:744.000000pt;}
.y4d{bottom:744.389333pt;}
.yf5{bottom:746.000000pt;}
.y118{bottom:746.645333pt;}
.y28{bottom:750.040933pt;}
.y197{bottom:751.525333pt;}
.y160{bottom:751.621333pt;}
.y1cd{bottom:752.533333pt;}
.y1f4{bottom:760.666667pt;}
.yb6{bottom:762.400000pt;}
.y93{bottom:762.917333pt;}
.y6f{bottom:764.000000pt;}
.y4c{bottom:764.261333pt;}
.y15f{bottom:764.816000pt;}
.y196{bottom:764.858667pt;}
.y5{bottom:765.576133pt;}
.yf4{bottom:765.600000pt;}
.y117{bottom:766.117333pt;}
.y1f3{bottom:777.333333pt;}
.y15e{bottom:778.010667pt;}
.y195{bottom:778.192000pt;}
.y1cc{bottom:778.666667pt;}
.yb5{bottom:782.800000pt;}
.y92{bottom:783.189333pt;}
.y6e{bottom:784.000000pt;}
.y4b{bottom:784.133333pt;}
.yf3{bottom:785.200000pt;}
.y116{bottom:785.589333pt;}
.y27{bottom:788.840933pt;}
.y15d{bottom:791.216000pt;}
.y194{bottom:791.525333pt;}
.y1cb{bottom:791.733333pt;}
.y4{bottom:792.242800pt;}
.y1f2{bottom:794.000000pt;}
.yb4{bottom:803.200000pt;}
.y91{bottom:803.461333pt;}
.y4a{bottom:804.000000pt;}
.y15c{bottom:804.410667pt;}
.yf2{bottom:804.800000pt;}
.y193{bottom:804.858667pt;}
.y115{bottom:805.061333pt;}
.y1f1{bottom:810.666667pt;}
.y26{bottom:812.266667pt;}
.y15b{bottom:817.605333pt;}
.y1ca{bottom:817.866667pt;}
.yb3{bottom:823.600000pt;}
.y90{bottom:823.733333pt;}
.y192{bottom:823.866667pt;}
.y49{bottom:824.000000pt;}
.yf1{bottom:824.400000pt;}
.y114{bottom:824.533333pt;}
.y1f0{bottom:827.333333pt;}
.y25{bottom:828.133333pt;}
.y15a{bottom:830.800000pt;}
.y1c9{bottom:830.933333pt;}
.y3{bottom:835.576133pt;}
.hb{height:21.269167pt;}
.hf{height:28.437500pt;}
.h3{height:33.769531pt;}
.he{height:34.730667pt;}
.h9{height:35.546875pt;}
.hc{height:36.229167pt;}
.h10{height:40.757812pt;}
.hd{height:43.413333pt;}
.h2{height:44.661458pt;}
.h6{height:44.960000pt;}
.h1{height:45.286458pt;}
.h8{height:53.593750pt;}
.h7{height:54.343750pt;}
.ha{height:54.727750pt;}
.h5{height:71.093750pt;}
.h4{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x8{left:73.228400pt;}
.xb{left:78.897600pt;}
.x3{left:86.456667pt;}
.xc{left:97.793600pt;}
.x6{left:100.106667pt;}
.x7{left:113.228400pt;}
.x9{left:119.088000pt;}
.x2{left:120.000000pt;}
.x5{left:126.456667pt;}
.xa{left:137.984000pt;}
.xd{left:160.466667pt;}
.x4{left:556.250000pt;}
}




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