
    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_595311e1b6fddc05ec27d6de.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_039f942e8c6d4c14d6598b8f.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_f9253e01335d430e71830619.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_80a82d6d434ca6498cc44855.woff')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_68aa87e3efa866504ef076db.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_9e226339bfd2334adc9868db.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f347bb318fae306ab59a39be.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_0268fa2ccc4d95932477aaac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_f67bec337382fecd720f4fef.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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:ffa;src:url('chunks/assets/font_3a430707e43a9e9278eaa018.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_942248fd964243eb2b5a5aa3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666992;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:ffc;src:url('chunks/assets/font_bd02cb5860e4e1c97adbe81e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858000;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:ffd;src:url('chunks/assets/font_018d213df0d7b497f07ba557.woff')format("woff");}.ffd{font-family:ffd;line-height:0.944336;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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-16.830000px;}
.v6{vertical-align:-14.400000px;}
.v7{vertical-align:-9.648000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.800000px;}
.v2{vertical-align:23.784000px;}
.v1{vertical-align:175.199400px;}
.ls32{letter-spacing:-7.200000px;}
.ls31{letter-spacing:-2.808000px;}
.ls45{letter-spacing:-1.872000px;}
.ls42{letter-spacing:-1.224000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls3e{letter-spacing:0.050400px;}
.ls2d{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.210000px;}
.ls5{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.252000px;}
.ls24{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.583200px;}
.ls21{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.936000px;}
.ls2a{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.080000px;}
.ls2b{letter-spacing:1.512000px;}
.ls2c{letter-spacing:1.656000px;}
.ls0{letter-spacing:2.850000px;}
.ls41{letter-spacing:2.966400px;}
.ls20{letter-spacing:3.456000px;}
.ls3b{letter-spacing:3.834000px;}
.ls27{letter-spacing:4.392000px;}
.ls43{letter-spacing:4.416000px;}
.ls35{letter-spacing:4.464000px;}
.ls2{letter-spacing:4.560000px;}
.ls40{letter-spacing:4.752000px;}
.ls9{letter-spacing:4.848000px;}
.ls25{letter-spacing:5.040000px;}
.ls3c{letter-spacing:5.080800px;}
.ls30{letter-spacing:5.508000px;}
.ls26{letter-spacing:7.502400px;}
.ls12{letter-spacing:7.920000px;}
.ls17{letter-spacing:8.064000px;}
.ls44{letter-spacing:8.100000px;}
.ls3d{letter-spacing:8.136000px;}
.ls16{letter-spacing:8.280000px;}
.ls3f{letter-spacing:8.436000px;}
.ls7{letter-spacing:8.460000px;}
.ls11{letter-spacing:8.640000px;}
.ls1e{letter-spacing:9.072000px;}
.ls3a{letter-spacing:9.720000px;}
.ls4{letter-spacing:10.371903px;}
.ls1{letter-spacing:10.740000px;}
.ls38{letter-spacing:13.795500px;}
.ls34{letter-spacing:13.796100px;}
.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;}
.ws66{word-spacing:-23.274000px;}
.ws13{word-spacing:-20.232000px;}
.ws38{word-spacing:-19.584000px;}
.ws3b{word-spacing:-19.296000px;}
.ws1{word-spacing:-18.867000px;}
.ws5c{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.784000px;}
.ws30{word-spacing:-17.496000px;}
.ws5b{word-spacing:-17.424000px;}
.ws41{word-spacing:-17.352000px;}
.ws2f{word-spacing:-17.136000px;}
.ws6b{word-spacing:-16.860000px;}
.ws3{word-spacing:-14.820000px;}
.ws5d{word-spacing:-14.212800px;}
.ws14{word-spacing:-14.162400px;}
.ws4f{word-spacing:-13.488000px;}
.ws50{word-spacing:-11.856000px;}
.ws59{word-spacing:-9.720000px;}
.ws65{word-spacing:-9.441600px;}
.ws33{word-spacing:-9.072000px;}
.ws4e{word-spacing:-8.940000px;}
.ws20{word-spacing:-8.640000px;}
.ws64{word-spacing:-8.496000px;}
.ws1e{word-spacing:-8.460000px;}
.ws2a{word-spacing:-8.280000px;}
.ws58{word-spacing:-8.136000px;}
.ws2b{word-spacing:-8.064000px;}
.ws23{word-spacing:-7.920000px;}
.ws4d{word-spacing:-6.846000px;}
.wsd{word-spacing:-4.848000px;}
.ws63{word-spacing:-4.752000px;}
.ws4b{word-spacing:-4.464000px;}
.ws3f{word-spacing:-1.656000px;}
.ws40{word-spacing:-1.512000px;}
.ws6a{word-spacing:-1.248000px;}
.ws3d{word-spacing:-1.080000px;}
.ws3e{word-spacing:-1.008000px;}
.ws45{word-spacing:-0.936000px;}
.ws28{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.720000px;}
.wse{word-spacing:-0.660000px;}
.ws32{word-spacing:-0.648000px;}
.ws3c{word-spacing:-0.576000px;}
.ws26{word-spacing:-0.504000px;}
.ws25{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.360000px;}
.ws53{word-spacing:-0.300000px;}
.ws34{word-spacing:-0.288000px;}
.ws55{word-spacing:-0.252000px;}
.wsf{word-spacing:-0.216000px;}
.ws35{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws31{word-spacing:0.072000px;}
.ws24{word-spacing:0.144000px;}
.ws11{word-spacing:0.216000px;}
.ws48{word-spacing:0.240000px;}
.ws42{word-spacing:0.288000px;}
.wsc{word-spacing:0.300000px;}
.ws29{word-spacing:0.360000px;}
.ws68{word-spacing:0.384000px;}
.ws2d{word-spacing:0.432000px;}
.ws15{word-spacing:0.504000px;}
.ws1b{word-spacing:0.576000px;}
.ws2c{word-spacing:0.648000px;}
.ws22{word-spacing:0.720000px;}
.ws43{word-spacing:0.864000px;}
.ws62{word-spacing:1.224000px;}
.ws69{word-spacing:1.248000px;}
.ws1c{word-spacing:1.440000px;}
.ws5f{word-spacing:1.728000px;}
.wsa{word-spacing:1.800000px;}
.ws67{word-spacing:1.872000px;}
.ws52{word-spacing:2.160000px;}
.ws51{word-spacing:2.400000px;}
.ws60{word-spacing:2.448000px;}
.wsb{word-spacing:2.592000px;}
.ws1d{word-spacing:2.976000px;}
.ws4a{word-spacing:3.024000px;}
.ws56{word-spacing:3.360000px;}
.ws39{word-spacing:3.456000px;}
.ws6{word-spacing:3.720000px;}
.ws5a{word-spacing:3.780000px;}
.ws49{word-spacing:4.176000px;}
.ws8{word-spacing:4.200000px;}
.ws4c{word-spacing:4.608000px;}
.ws19{word-spacing:4.752000px;}
.ws18{word-spacing:4.896000px;}
.ws46{word-spacing:4.968000px;}
.ws21{word-spacing:5.040000px;}
.ws37{word-spacing:6.048000px;}
.ws54{word-spacing:6.408000px;}
.ws3a{word-spacing:6.480000px;}
.ws47{word-spacing:7.200000px;}
.ws9{word-spacing:7.440000px;}
.ws17{word-spacing:7.488000px;}
.ws5e{word-spacing:7.704000px;}
.ws2e{word-spacing:8.064000px;}
.ws36{word-spacing:8.136000px;}
.ws16{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws57{word-spacing:8.640000px;}
.ws1f{word-spacing:10.584000px;}
.ws5{word-spacing:17.160000px;}
.ws7{word-spacing:73.140000px;}
.ws61{word-spacing:146.196000px;}
._1d{margin-left:-948.820800px;}
._12{margin-left:-940.386000px;}
._6{margin-left:-68.880000px;}
._1b{margin-left:-16.269600px;}
._8{margin-left:-14.520000px;}
._a{margin-left:-12.204000px;}
._1e{margin-left:-10.512000px;}
._17{margin-left:-8.959200px;}
._15{margin-left:-7.764000px;}
._11{margin-left:-6.552000px;}
._c{margin-left:-5.442000px;}
._3{margin-left:-4.056000px;}
._5{margin-left:-2.124000px;}
._2{margin-left:-1.068000px;}
._f{width:1.032000px;}
._4{width:2.124000px;}
._d{width:3.198000px;}
._1{width:4.284000px;}
._e{width:6.151200px;}
._9{width:7.932000px;}
._b{width:9.012000px;}
._10{width:10.123200px;}
._7{width:11.280000px;}
._14{width:12.540000px;}
._16{width:13.602000px;}
._1c{width:15.141000px;}
._1a{width:16.486200px;}
._18{width:19.104000px;}
._13{width:31.646100px;}
._19{width:72.362400px;}
._0{width:201.564000px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs7{font-size:35.700000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs5{font-size:414.925800px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y4a{bottom:117.000000px;}
.y23{bottom:118.371900px;}
.y193{bottom:119.244000px;}
.y91{bottom:119.994000px;}
.y1c2{bottom:120.536250px;}
.yb3{bottom:121.207500px;}
.y49{bottom:132.000000px;}
.y192{bottom:134.244000px;}
.y6d{bottom:136.207500px;}
.y1c1{bottom:139.436250px;}
.y154{bottom:139.500000px;}
.y22{bottom:140.277900px;}
.y90{bottom:142.800000px;}
.y48{bottom:147.000000px;}
.y191{bottom:149.244000px;}
.y6c{bottom:154.500000px;}
.y1c0{bottom:158.336250px;}
.yb2{bottom:158.560050px;}
.yf1{bottom:158.707500px;}
.y140{bottom:162.000000px;}
.y21{bottom:162.183900px;}
.y190{bottom:164.244000px;}
.y8f{bottom:165.606000px;}
.y47{bottom:166.207500px;}
.y131{bottom:169.500000px;}
.y6b{bottom:173.707500px;}
.y113{bottom:175.764000px;}
.y1bf{bottom:177.236250px;}
.y18f{bottom:179.244000px;}
.yb1{bottom:180.916050px;}
.y13f{bottom:181.207500px;}
.y20{bottom:184.089900px;}
.y46{bottom:184.500000px;}
.y8e{bottom:188.412000px;}
.y6a{bottom:192.000000px;}
.y18e{bottom:194.244000px;}
.y1be{bottom:196.136250px;}
.y112{bottom:198.570000px;}
.yf0{bottom:199.296000px;}
.y13e{bottom:199.500000px;}
.yb0{bottom:203.272050px;}
.y45{bottom:203.707500px;}
.y1f{bottom:205.995900px;}
.y153{bottom:207.000000px;}
.y18d{bottom:209.244000px;}
.y69{bottom:211.207500px;}
.y8d{bottom:211.218000px;}
.yd3{bottom:213.288000px;}
.y1bd{bottom:215.036250px;}
.y13d{bottom:218.707500px;}
.y111{bottom:221.376000px;}
.y44{bottom:222.000000px;}
.yef{bottom:222.102000px;}
.y18c{bottom:224.244000px;}
.yaf{bottom:225.628050px;}
.y1e{bottom:227.901900px;}
.y152{bottom:229.500000px;}
.y1bc{bottom:233.936250px;}
.y8c{bottom:234.024000px;}
.yd2{bottom:235.644000px;}
.y43{bottom:237.000000px;}
.y18b{bottom:239.244000px;}
.y182{bottom:243.900000px;}
.y130{bottom:243.992100px;}
.y110{bottom:244.182000px;}
.yee{bottom:244.908000px;}
.yae{bottom:247.984050px;}
.y1d{bottom:249.807900px;}
.y13c{bottom:252.000000px;}
.y68{bottom:252.346050px;}
.y1bb{bottom:252.836250px;}
.y18a{bottom:254.244000px;}
.y42{bottom:256.207500px;}
.y8b{bottom:256.830000px;}
.yd1{bottom:257.916000px;}
.y181{bottom:265.950000px;}
.y12f{bottom:266.950050px;}
.y10f{bottom:266.988000px;}
.yed{bottom:267.714000px;}
.y189{bottom:269.244000px;}
.yad{bottom:270.340050px;}
.y13b{bottom:270.960000px;}
.y1c{bottom:271.713900px;}
.y1a{bottom:271.726050px;}
.y1ba{bottom:271.736250px;}
.y67{bottom:275.296050px;}
.y8a{bottom:279.636000px;}
.yd0{bottom:280.272000px;}
.y188{bottom:284.244000px;}
.y162{bottom:284.251200px;}
.y180{bottom:288.000000px;}
.y10e{bottom:289.794000px;}
.y12e{bottom:289.900050px;}
.y15e{bottom:290.176800px;}
.yec{bottom:290.520000px;}
.y1b9{bottom:290.636250px;}
.y41{bottom:292.476000px;}
.yac{bottom:292.660050px;}
.y1b{bottom:293.619900px;}
.y66{bottom:298.246050px;}
.y161{bottom:300.451200px;}
.y89{bottom:302.442000px;}
.ycf{bottom:302.628000px;}
.y187{bottom:305.616000px;}
.y15d{bottom:306.376800px;}
.y13a{bottom:309.400200px;}
.y1b8{bottom:309.536250px;}
.y17f{bottom:310.050000px;}
.y10d{bottom:312.462000px;}
.y12d{bottom:312.850050px;}
.yeb{bottom:313.326000px;}
.y40{bottom:314.382000px;}
.yab{bottom:315.016050px;}
.y158{bottom:319.260450px;}
.y65{bottom:321.196050px;}
.y15c{bottom:322.576800px;}
.yce{bottom:324.984000px;}
.y88{bottom:325.248000px;}
.y1b7{bottom:328.436250px;}
.y17e{bottom:332.100000px;}
.y139{bottom:332.206200px;}
.y10c{bottom:335.268000px;}
.y157{bottom:335.460450px;}
.y12c{bottom:335.800050px;}
.yea{bottom:336.132000px;}
.y3f{bottom:336.288000px;}
.yaa{bottom:337.372050px;}
.y64{bottom:344.146050px;}
.y1b6{bottom:347.336250px;}
.ycd{bottom:347.340000px;}
.y87{bottom:348.054000px;}
.y186{bottom:350.616000px;}
.y156{bottom:351.660450px;}
.y17d{bottom:354.150000px;}
.y138{bottom:355.012200px;}
.y10b{bottom:358.074000px;}
.y3e{bottom:358.194000px;}
.ye9{bottom:358.938000px;}
.y19{bottom:359.325900px;}
.ya9{bottom:359.728050px;}
.y160{bottom:361.810200px;}
.y185{bottom:365.616000px;}
.y1b5{bottom:366.236250px;}
.y63{bottom:367.096050px;}
.y12b{bottom:367.246050px;}
.y155{bottom:367.860450px;}
.ycc{bottom:369.696000px;}
.y86{bottom:370.860000px;}
.y15b{bottom:371.247150px;}
.y17c{bottom:376.200000px;}
.y18{bottom:377.475900px;}
.y137{bottom:377.788200px;}
.y15f{bottom:378.010200px;}
.y3d{bottom:380.040000px;}
.y10a{bottom:380.880000px;}
.ye8{bottom:381.744000px;}
.ya8{bottom:382.084050px;}
.y184{bottom:387.000000px;}
.y15a{bottom:387.447150px;}
.y62{bottom:390.046050px;}
.y12a{bottom:390.196050px;}
.ycb{bottom:392.052000px;}
.y85{bottom:393.666000px;}
.y1b4{bottom:397.892100px;}
.y17b{bottom:398.250000px;}
.y136{bottom:400.594200px;}
.y3c{bottom:401.946000px;}
.y159{bottom:403.647150px;}
.y109{bottom:403.686000px;}
.y17{bottom:404.128800px;}
.ya7{bottom:404.440050px;}
.ye7{bottom:404.550000px;}
.y61{bottom:412.996050px;}
.y129{bottom:413.146050px;}
.yca{bottom:414.408000px;}
.y17a{bottom:420.300000px;}
.y16{bottom:422.278800px;}
.y135{bottom:423.400200px;}
.y3b{bottom:423.852000px;}
.y84{bottom:424.968000px;}
.y108{bottom:426.492000px;}
.ya6{bottom:426.796050px;}
.ye6{bottom:427.356000px;}
.y1b3{bottom:428.970000px;}
.y183{bottom:432.000000px;}
.y60{bottom:435.946050px;}
.y128{bottom:436.096050px;}
.yc9{bottom:436.764000px;}
.y15{bottom:440.428800px;}
.y179{bottom:442.350000px;}
.y1b2{bottom:445.614000px;}
.y3a{bottom:445.758000px;}
.y134{bottom:446.206200px;}
.y83{bottom:447.774000px;}
.ya5{bottom:449.146050px;}
.y107{bottom:449.298000px;}
.ye5{bottom:450.162000px;}
.y151{bottom:454.500000px;}
.y14{bottom:458.578800px;}
.y5f{bottom:458.896050px;}
.y127{bottom:459.046050px;}
.yc8{bottom:459.120000px;}
.y178{bottom:464.400000px;}
.y39{bottom:467.664000px;}
.y133{bottom:469.012200px;}
.y82{bottom:470.580000px;}
.y106{bottom:472.104000px;}
.ye4{bottom:472.968000px;}
.y13{bottom:476.728800px;}
.y150{bottom:477.000000px;}
.yc7{bottom:481.476000px;}
.y5e{bottom:481.846050px;}
.y126{bottom:481.996050px;}
.y177{bottom:486.450000px;}
.y38{bottom:489.570000px;}
.y132{bottom:491.818200px;}
.y81{bottom:493.386000px;}
.ya4{bottom:493.764000px;}
.y12{bottom:494.878800px;}
.y105{bottom:494.910000px;}
.y1b1{bottom:495.162000px;}
.ye3{bottom:495.774000px;}
.y14f{bottom:499.500000px;}
.yc6{bottom:503.832000px;}
.y5d{bottom:504.796050px;}
.y125{bottom:504.946050px;}
.y176{bottom:508.500000px;}
.y1b0{bottom:510.306000px;}
.y37{bottom:511.476000px;}
.ya3{bottom:516.120000px;}
.y80{bottom:516.192000px;}
.y104{bottom:517.716000px;}
.ye2{bottom:518.580000px;}
.y11{bottom:521.533800px;}
.y14e{bottom:522.000000px;}
.y1af{bottom:525.450000px;}
.yc5{bottom:526.188000px;}
.y5c{bottom:527.746050px;}
.y124{bottom:527.896050px;}
.y175{bottom:530.550000px;}
.y36{bottom:533.382000px;}
.ya2{bottom:538.476000px;}
.y7f{bottom:538.998000px;}
.y103{bottom:540.522000px;}
.y1ae{bottom:540.594000px;}
.ye1{bottom:541.224000px;}
.y14d{bottom:544.500000px;}
.yc4{bottom:548.544000px;}
.y5b{bottom:550.696050px;}
.y123{bottom:550.846050px;}
.y174{bottom:552.600000px;}
.y35{bottom:555.288000px;}
.y1ad{bottom:555.738000px;}
.ya1{bottom:560.832000px;}
.y7e{bottom:561.804000px;}
.y102{bottom:563.328000px;}
.ye0{bottom:563.868000px;}
.y10{bottom:565.333800px;}
.y14c{bottom:567.000000px;}
.yc3{bottom:570.876000px;}
.y1ac{bottom:570.882000px;}
.y5a{bottom:573.646050px;}
.y122{bottom:573.796050px;}
.y173{bottom:574.650000px;}
.y34{bottom:577.194000px;}
.ya0{bottom:583.188000px;}
.yf{bottom:583.483800px;}
.y7d{bottom:584.610000px;}
.y1ab{bottom:586.026000px;}
.y101{bottom:586.134000px;}
.ydf{bottom:586.512000px;}
.y14b{bottom:589.500000px;}
.yc2{bottom:593.232000px;}
.y59{bottom:596.596050px;}
.y172{bottom:596.700000px;}
.y121{bottom:596.746050px;}
.y33{bottom:599.016000px;}
.y1aa{bottom:601.170000px;}
.y9f{bottom:605.544000px;}
.y7c{bottom:607.416000px;}
.y100{bottom:608.940000px;}
.yde{bottom:609.156000px;}
.ye{bottom:610.136700px;}
.y14a{bottom:612.000000px;}
.yc1{bottom:615.588000px;}
.y1a9{bottom:616.314000px;}
.y171{bottom:618.750000px;}
.y58{bottom:619.546050px;}
.y120{bottom:619.696050px;}
.y32{bottom:620.922000px;}
.y9e{bottom:627.900000px;}
.yd{bottom:628.286700px;}
.y7b{bottom:630.222000px;}
.y1a8{bottom:631.458000px;}
.yff{bottom:631.746000px;}
.ydd{bottom:631.842000px;}
.y149{bottom:634.500000px;}
.yc0{bottom:637.944000px;}
.y170{bottom:640.800000px;}
.y57{bottom:642.496050px;}
.y11f{bottom:642.646050px;}
.y31{bottom:642.828000px;}
.yc{bottom:646.436700px;}
.y1a7{bottom:646.602000px;}
.y9d{bottom:650.256000px;}
.y7a{bottom:653.028000px;}
.y1cf{bottom:653.250000px;}
.ydc{bottom:654.486000px;}
.yfe{bottom:654.552000px;}
.y148{bottom:657.000000px;}
.ybf{bottom:660.300000px;}
.y1a6{bottom:661.746000px;}
.y16f{bottom:662.850000px;}
.yb{bottom:664.586700px;}
.y30{bottom:664.734000px;}
.y56{bottom:665.446050px;}
.y1ce{bottom:672.000000px;}
.y9c{bottom:672.612000px;}
.y79{bottom:675.834000px;}
.y1a5{bottom:676.890000px;}
.ydb{bottom:677.130000px;}
.yfd{bottom:677.358000px;}
.y147{bottom:679.500000px;}
.ybe{bottom:682.650000px;}
.ya{bottom:682.736700px;}
.y16e{bottom:684.900000px;}
.y2f{bottom:686.640000px;}
.y55{bottom:688.404000px;}
.y11e{bottom:688.554000px;}
.y1cd{bottom:690.750000px;}
.y1a4{bottom:692.034000px;}
.y9b{bottom:694.968000px;}
.y78{bottom:698.640000px;}
.yda{bottom:699.774000px;}
.yfc{bottom:700.164000px;}
.y9{bottom:700.886700px;}
.y146{bottom:702.000000px;}
.y16d{bottom:706.950000px;}
.y1a3{bottom:707.178000px;}
.y2e{bottom:708.546000px;}
.y54{bottom:711.354000px;}
.y11d{bottom:711.504000px;}
.y9a{bottom:717.324000px;}
.y1cc{bottom:720.750000px;}
.y77{bottom:721.446000px;}
.y1a2{bottom:722.322000px;}
.yd9{bottom:722.418000px;}
.yfb{bottom:722.970000px;}
.y145{bottom:724.500000px;}
.ybd{bottom:727.080000px;}
.y8{bottom:727.541700px;}
.y16c{bottom:729.000000px;}
.y2d{bottom:730.452000px;}
.y53{bottom:734.304000px;}
.y11c{bottom:734.454000px;}
.y1a1{bottom:737.466000px;}
.y76{bottom:744.252000px;}
.yd8{bottom:745.062000px;}
.yfa{bottom:745.776000px;}
.y144{bottom:747.000000px;}
.y99{bottom:748.176000px;}
.ybc{bottom:749.274000px;}
.y16b{bottom:751.050000px;}
.y2c{bottom:752.358000px;}
.y1a0{bottom:752.610000px;}
.y11b{bottom:757.404000px;}
.y1cb{bottom:762.000000px;}
.y52{bottom:765.750000px;}
.y75{bottom:767.058000px;}
.yd7{bottom:767.706000px;}
.y19f{bottom:767.754000px;}
.yf9{bottom:768.582000px;}
.y143{bottom:769.500000px;}
.y98{bottom:770.532000px;}
.ybb{bottom:771.468000px;}
.y7{bottom:772.827450px;}
.y16a{bottom:773.100000px;}
.y2b{bottom:774.264000px;}
.y11a{bottom:780.354000px;}
.y1ca{bottom:780.750000px;}
.y19e{bottom:782.898000px;}
.y51{bottom:788.700000px;}
.y74{bottom:789.864000px;}
.yd6{bottom:790.350000px;}
.yf8{bottom:791.388000px;}
.y142{bottom:792.000000px;}
.y97{bottom:792.888000px;}
.yba{bottom:793.662000px;}
.y6{bottom:794.727600px;}
.y169{bottom:795.150000px;}
.y2a{bottom:796.170000px;}
.y19d{bottom:798.042000px;}
.y1c9{bottom:799.500000px;}
.y119{bottom:803.304000px;}
.y50{bottom:811.650000px;}
.y73{bottom:812.670000px;}
.yd5{bottom:812.994000px;}
.y19c{bottom:813.186000px;}
.yf7{bottom:814.194000px;}
.y141{bottom:814.500000px;}
.y96{bottom:815.244000px;}
.yb9{bottom:815.856000px;}
.y168{bottom:817.200000px;}
.y29{bottom:818.076000px;}
.y1c8{bottom:818.250000px;}
.y118{bottom:826.254000px;}
.y19b{bottom:828.330000px;}
.y4f{bottom:834.600000px;}
.y72{bottom:835.476000px;}
.yd4{bottom:835.638000px;}
.yf6{bottom:837.000000px;}
.y95{bottom:837.600000px;}
.yb8{bottom:838.050000px;}
.y167{bottom:839.250000px;}
.y28{bottom:839.982000px;}
.y19a{bottom:843.474000px;}
.y1c7{bottom:855.750000px;}
.y4e{bottom:857.550000px;}
.y117{bottom:857.700000px;}
.y71{bottom:858.282000px;}
.y199{bottom:858.618000px;}
.yf5{bottom:859.500000px;}
.y94{bottom:859.956000px;}
.yb7{bottom:860.244000px;}
.y5{bottom:861.273150px;}
.y166{bottom:861.300000px;}
.y27{bottom:861.888000px;}
.y198{bottom:873.762000px;}
.y1c6{bottom:874.500000px;}
.y4d{bottom:880.500000px;}
.y116{bottom:880.650000px;}
.y70{bottom:881.088000px;}
.yf4{bottom:882.000000px;}
.y93{bottom:882.312000px;}
.yb6{bottom:882.438000px;}
.y165{bottom:883.350000px;}
.y26{bottom:883.794000px;}
.y197{bottom:888.906000px;}
.y4{bottom:891.273150px;}
.y1c5{bottom:893.250000px;}
.y4c{bottom:903.450000px;}
.y115{bottom:903.600000px;}
.y6f{bottom:903.894000px;}
.y196{bottom:904.062000px;}
.yf3{bottom:904.500000px;}
.y92{bottom:904.506000px;}
.yb5{bottom:904.794000px;}
.y164{bottom:905.400000px;}
.y25{bottom:905.694000px;}
.y1c4{bottom:912.000000px;}
.y195{bottom:919.206000px;}
.y4b{bottom:926.400000px;}
.y114{bottom:926.550000px;}
.y6e{bottom:926.700000px;}
.yf2{bottom:927.000000px;}
.yb4{bottom:927.150000px;}
.y163{bottom:927.450000px;}
.y24{bottom:927.600000px;}
.y1c3{bottom:930.750000px;}
.y194{bottom:934.350000px;}
.y3{bottom:940.023150px;}
.h9{height:24.630908px;}
.h14{height:24.917813px;}
.hc{height:30.313623px;}
.h16{height:37.256836px;}
.h18{height:39.072000px;}
.h3{height:39.326660px;}
.ha{height:40.757812px;}
.h2{height:41.396484px;}
.h15{height:45.852539px;}
.hd{height:49.675781px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.h12{height:53.988000px;}
.h6{height:61.136719px;}
.h8{height:61.160719px;}
.h11{height:61.688719px;}
.hb{height:66.523903px;}
.h17{height:66.555703px;}
.hf{height:66.651703px;}
.h13{height:66.675703px;}
.he{height:66.699703px;}
.h10{height:66.891703px;}
.h4{height:101.894531px;}
.h7{height:290.448060px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x8{left:82.381950px;}
.x9{left:88.771950px;}
.x3{left:97.263750px;}
.xa{left:110.029950px;}
.x6{left:112.500000px;}
.x4{left:118.328100px;}
.x7{left:127.394850px;}
.xb{left:133.794000px;}
.x2{left:135.000000px;}
.xd{left:142.250250px;}
.xc{left:155.017800px;}
.xe{left:256.839600px;}
.xf{left:417.989250px;}
.x10{left:625.781250px;}
.x5{left:635.390550px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-14.960000pt;}
.v6{vertical-align:-12.800000pt;}
.v7{vertical-align:-8.576000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.600000pt;}
.v2{vertical-align:21.141333pt;}
.v1{vertical-align:155.732800pt;}
.ls32{letter-spacing:-6.400000pt;}
.ls31{letter-spacing:-2.496000pt;}
.ls45{letter-spacing:-1.664000pt;}
.ls42{letter-spacing:-1.088000pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls3e{letter-spacing:0.044800pt;}
.ls2d{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.186667pt;}
.ls5{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.224000pt;}
.ls24{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.518400pt;}
.ls21{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.832000pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:1.344000pt;}
.ls2c{letter-spacing:1.472000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls41{letter-spacing:2.636800pt;}
.ls20{letter-spacing:3.072000pt;}
.ls3b{letter-spacing:3.408000pt;}
.ls27{letter-spacing:3.904000pt;}
.ls43{letter-spacing:3.925333pt;}
.ls35{letter-spacing:3.968000pt;}
.ls2{letter-spacing:4.053333pt;}
.ls40{letter-spacing:4.224000pt;}
.ls9{letter-spacing:4.309333pt;}
.ls25{letter-spacing:4.480000pt;}
.ls3c{letter-spacing:4.516267pt;}
.ls30{letter-spacing:4.896000pt;}
.ls26{letter-spacing:6.668800pt;}
.ls12{letter-spacing:7.040000pt;}
.ls17{letter-spacing:7.168000pt;}
.ls44{letter-spacing:7.200000pt;}
.ls3d{letter-spacing:7.232000pt;}
.ls16{letter-spacing:7.360000pt;}
.ls3f{letter-spacing:7.498667pt;}
.ls7{letter-spacing:7.520000pt;}
.ls11{letter-spacing:7.680000pt;}
.ls1e{letter-spacing:8.064000pt;}
.ls3a{letter-spacing:8.640000pt;}
.ls4{letter-spacing:9.219469pt;}
.ls1{letter-spacing:9.546667pt;}
.ls38{letter-spacing:12.262667pt;}
.ls34{letter-spacing:12.263200pt;}
.ws2{word-spacing:-22.506667pt;}
.ws66{word-spacing:-20.688000pt;}
.ws13{word-spacing:-17.984000pt;}
.ws38{word-spacing:-17.408000pt;}
.ws3b{word-spacing:-17.152000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws5c{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws30{word-spacing:-15.552000pt;}
.ws5b{word-spacing:-15.488000pt;}
.ws41{word-spacing:-15.424000pt;}
.ws2f{word-spacing:-15.232000pt;}
.ws6b{word-spacing:-14.986667pt;}
.ws3{word-spacing:-13.173333pt;}
.ws5d{word-spacing:-12.633600pt;}
.ws14{word-spacing:-12.588800pt;}
.ws4f{word-spacing:-11.989333pt;}
.ws50{word-spacing:-10.538667pt;}
.ws59{word-spacing:-8.640000pt;}
.ws65{word-spacing:-8.392533pt;}
.ws33{word-spacing:-8.064000pt;}
.ws4e{word-spacing:-7.946667pt;}
.ws20{word-spacing:-7.680000pt;}
.ws64{word-spacing:-7.552000pt;}
.ws1e{word-spacing:-7.520000pt;}
.ws2a{word-spacing:-7.360000pt;}
.ws58{word-spacing:-7.232000pt;}
.ws2b{word-spacing:-7.168000pt;}
.ws23{word-spacing:-7.040000pt;}
.ws4d{word-spacing:-6.085333pt;}
.wsd{word-spacing:-4.309333pt;}
.ws63{word-spacing:-4.224000pt;}
.ws4b{word-spacing:-3.968000pt;}
.ws3f{word-spacing:-1.472000pt;}
.ws40{word-spacing:-1.344000pt;}
.ws6a{word-spacing:-1.109333pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws3e{word-spacing:-0.896000pt;}
.ws45{word-spacing:-0.832000pt;}
.ws28{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.640000pt;}
.wse{word-spacing:-0.586667pt;}
.ws32{word-spacing:-0.576000pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws26{word-spacing:-0.448000pt;}
.ws25{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.320000pt;}
.ws53{word-spacing:-0.266667pt;}
.ws34{word-spacing:-0.256000pt;}
.ws55{word-spacing:-0.224000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws35{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws31{word-spacing:0.064000pt;}
.ws24{word-spacing:0.128000pt;}
.ws11{word-spacing:0.192000pt;}
.ws48{word-spacing:0.213333pt;}
.ws42{word-spacing:0.256000pt;}
.wsc{word-spacing:0.266667pt;}
.ws29{word-spacing:0.320000pt;}
.ws68{word-spacing:0.341333pt;}
.ws2d{word-spacing:0.384000pt;}
.ws15{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.512000pt;}
.ws2c{word-spacing:0.576000pt;}
.ws22{word-spacing:0.640000pt;}
.ws43{word-spacing:0.768000pt;}
.ws62{word-spacing:1.088000pt;}
.ws69{word-spacing:1.109333pt;}
.ws1c{word-spacing:1.280000pt;}
.ws5f{word-spacing:1.536000pt;}
.wsa{word-spacing:1.600000pt;}
.ws67{word-spacing:1.664000pt;}
.ws52{word-spacing:1.920000pt;}
.ws51{word-spacing:2.133333pt;}
.ws60{word-spacing:2.176000pt;}
.wsb{word-spacing:2.304000pt;}
.ws1d{word-spacing:2.645333pt;}
.ws4a{word-spacing:2.688000pt;}
.ws56{word-spacing:2.986667pt;}
.ws39{word-spacing:3.072000pt;}
.ws6{word-spacing:3.306667pt;}
.ws5a{word-spacing:3.360000pt;}
.ws49{word-spacing:3.712000pt;}
.ws8{word-spacing:3.733333pt;}
.ws4c{word-spacing:4.096000pt;}
.ws19{word-spacing:4.224000pt;}
.ws18{word-spacing:4.352000pt;}
.ws46{word-spacing:4.416000pt;}
.ws21{word-spacing:4.480000pt;}
.ws37{word-spacing:5.376000pt;}
.ws54{word-spacing:5.696000pt;}
.ws3a{word-spacing:5.760000pt;}
.ws47{word-spacing:6.400000pt;}
.ws9{word-spacing:6.613333pt;}
.ws17{word-spacing:6.656000pt;}
.ws5e{word-spacing:6.848000pt;}
.ws2e{word-spacing:7.168000pt;}
.ws36{word-spacing:7.232000pt;}
.ws16{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws57{word-spacing:7.680000pt;}
.ws1f{word-spacing:9.408000pt;}
.ws5{word-spacing:15.253333pt;}
.ws7{word-spacing:65.013333pt;}
.ws61{word-spacing:129.952000pt;}
._1d{margin-left:-843.396267pt;}
._12{margin-left:-835.898667pt;}
._6{margin-left:-61.226667pt;}
._1b{margin-left:-14.461867pt;}
._8{margin-left:-12.906667pt;}
._a{margin-left:-10.848000pt;}
._1e{margin-left:-9.344000pt;}
._17{margin-left:-7.963733pt;}
._15{margin-left:-6.901333pt;}
._11{margin-left:-5.824000pt;}
._c{margin-left:-4.837333pt;}
._3{margin-left:-3.605333pt;}
._5{margin-left:-1.888000pt;}
._2{margin-left:-0.949333pt;}
._f{width:0.917333pt;}
._4{width:1.888000pt;}
._d{width:2.842667pt;}
._1{width:3.808000pt;}
._e{width:5.467733pt;}
._9{width:7.050667pt;}
._b{width:8.010667pt;}
._10{width:8.998400pt;}
._7{width:10.026667pt;}
._14{width:11.146667pt;}
._16{width:12.090667pt;}
._1c{width:13.458667pt;}
._1a{width:14.654400pt;}
._18{width:16.981333pt;}
._13{width:28.129867pt;}
._19{width:64.322133pt;}
._0{width:179.168000pt;}
.fs9{font-size:29.866667pt;}
.fs7{font-size:31.733333pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:368.822933pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y4a{bottom:104.000000pt;}
.y23{bottom:105.219467pt;}
.y193{bottom:105.994667pt;}
.y91{bottom:106.661333pt;}
.y1c2{bottom:107.143333pt;}
.yb3{bottom:107.740000pt;}
.y49{bottom:117.333333pt;}
.y192{bottom:119.328000pt;}
.y6d{bottom:121.073333pt;}
.y1c1{bottom:123.943333pt;}
.y154{bottom:124.000000pt;}
.y22{bottom:124.691467pt;}
.y90{bottom:126.933333pt;}
.y48{bottom:130.666667pt;}
.y191{bottom:132.661333pt;}
.y6c{bottom:137.333333pt;}
.y1c0{bottom:140.743333pt;}
.yb2{bottom:140.942267pt;}
.yf1{bottom:141.073333pt;}
.y140{bottom:144.000000pt;}
.y21{bottom:144.163467pt;}
.y190{bottom:145.994667pt;}
.y8f{bottom:147.205333pt;}
.y47{bottom:147.740000pt;}
.y131{bottom:150.666667pt;}
.y6b{bottom:154.406667pt;}
.y113{bottom:156.234667pt;}
.y1bf{bottom:157.543333pt;}
.y18f{bottom:159.328000pt;}
.yb1{bottom:160.814267pt;}
.y13f{bottom:161.073333pt;}
.y20{bottom:163.635467pt;}
.y46{bottom:164.000000pt;}
.y8e{bottom:167.477333pt;}
.y6a{bottom:170.666667pt;}
.y18e{bottom:172.661333pt;}
.y1be{bottom:174.343333pt;}
.y112{bottom:176.506667pt;}
.yf0{bottom:177.152000pt;}
.y13e{bottom:177.333333pt;}
.yb0{bottom:180.686267pt;}
.y45{bottom:181.073333pt;}
.y1f{bottom:183.107467pt;}
.y153{bottom:184.000000pt;}
.y18d{bottom:185.994667pt;}
.y69{bottom:187.740000pt;}
.y8d{bottom:187.749333pt;}
.yd3{bottom:189.589333pt;}
.y1bd{bottom:191.143333pt;}
.y13d{bottom:194.406667pt;}
.y111{bottom:196.778667pt;}
.y44{bottom:197.333333pt;}
.yef{bottom:197.424000pt;}
.y18c{bottom:199.328000pt;}
.yaf{bottom:200.558267pt;}
.y1e{bottom:202.579467pt;}
.y152{bottom:204.000000pt;}
.y1bc{bottom:207.943333pt;}
.y8c{bottom:208.021333pt;}
.yd2{bottom:209.461333pt;}
.y43{bottom:210.666667pt;}
.y18b{bottom:212.661333pt;}
.y182{bottom:216.800000pt;}
.y130{bottom:216.881867pt;}
.y110{bottom:217.050667pt;}
.yee{bottom:217.696000pt;}
.yae{bottom:220.430267pt;}
.y1d{bottom:222.051467pt;}
.y13c{bottom:224.000000pt;}
.y68{bottom:224.307600pt;}
.y1bb{bottom:224.743333pt;}
.y18a{bottom:225.994667pt;}
.y42{bottom:227.740000pt;}
.y8b{bottom:228.293333pt;}
.yd1{bottom:229.258667pt;}
.y181{bottom:236.400000pt;}
.y12f{bottom:237.288933pt;}
.y10f{bottom:237.322667pt;}
.yed{bottom:237.968000pt;}
.y189{bottom:239.328000pt;}
.yad{bottom:240.302267pt;}
.y13b{bottom:240.853333pt;}
.y1c{bottom:241.523467pt;}
.y1a{bottom:241.534267pt;}
.y1ba{bottom:241.543333pt;}
.y67{bottom:244.707600pt;}
.y8a{bottom:248.565333pt;}
.yd0{bottom:249.130667pt;}
.y188{bottom:252.661333pt;}
.y162{bottom:252.667733pt;}
.y180{bottom:256.000000pt;}
.y10e{bottom:257.594667pt;}
.y12e{bottom:257.688933pt;}
.y15e{bottom:257.934933pt;}
.yec{bottom:258.240000pt;}
.y1b9{bottom:258.343333pt;}
.y41{bottom:259.978667pt;}
.yac{bottom:260.142267pt;}
.y1b{bottom:260.995467pt;}
.y66{bottom:265.107600pt;}
.y161{bottom:267.067733pt;}
.y89{bottom:268.837333pt;}
.ycf{bottom:269.002667pt;}
.y187{bottom:271.658667pt;}
.y15d{bottom:272.334933pt;}
.y13a{bottom:275.022400pt;}
.y1b8{bottom:275.143333pt;}
.y17f{bottom:275.600000pt;}
.y10d{bottom:277.744000pt;}
.y12d{bottom:278.088933pt;}
.yeb{bottom:278.512000pt;}
.y40{bottom:279.450667pt;}
.yab{bottom:280.014267pt;}
.y158{bottom:283.787067pt;}
.y65{bottom:285.507600pt;}
.y15c{bottom:286.734933pt;}
.yce{bottom:288.874667pt;}
.y88{bottom:289.109333pt;}
.y1b7{bottom:291.943333pt;}
.y17e{bottom:295.200000pt;}
.y139{bottom:295.294400pt;}
.y10c{bottom:298.016000pt;}
.y157{bottom:298.187067pt;}
.y12c{bottom:298.488933pt;}
.yea{bottom:298.784000pt;}
.y3f{bottom:298.922667pt;}
.yaa{bottom:299.886267pt;}
.y64{bottom:305.907600pt;}
.y1b6{bottom:308.743333pt;}
.ycd{bottom:308.746667pt;}
.y87{bottom:309.381333pt;}
.y186{bottom:311.658667pt;}
.y156{bottom:312.587067pt;}
.y17d{bottom:314.800000pt;}
.y138{bottom:315.566400pt;}
.y10b{bottom:318.288000pt;}
.y3e{bottom:318.394667pt;}
.ye9{bottom:319.056000pt;}
.y19{bottom:319.400800pt;}
.ya9{bottom:319.758267pt;}
.y160{bottom:321.609067pt;}
.y185{bottom:324.992000pt;}
.y1b5{bottom:325.543333pt;}
.y63{bottom:326.307600pt;}
.y12b{bottom:326.440933pt;}
.y155{bottom:326.987067pt;}
.ycc{bottom:328.618667pt;}
.y86{bottom:329.653333pt;}
.y15b{bottom:329.997467pt;}
.y17c{bottom:334.400000pt;}
.y18{bottom:335.534133pt;}
.y137{bottom:335.811733pt;}
.y15f{bottom:336.009067pt;}
.y3d{bottom:337.813333pt;}
.y10a{bottom:338.560000pt;}
.ye8{bottom:339.328000pt;}
.ya8{bottom:339.630267pt;}
.y184{bottom:344.000000pt;}
.y15a{bottom:344.397467pt;}
.y62{bottom:346.707600pt;}
.y12a{bottom:346.840933pt;}
.ycb{bottom:348.490667pt;}
.y85{bottom:349.925333pt;}
.y1b4{bottom:353.681867pt;}
.y17b{bottom:354.000000pt;}
.y136{bottom:356.083733pt;}
.y3c{bottom:357.285333pt;}
.y159{bottom:358.797467pt;}
.y109{bottom:358.832000pt;}
.y17{bottom:359.225600pt;}
.ya7{bottom:359.502267pt;}
.ye7{bottom:359.600000pt;}
.y61{bottom:367.107600pt;}
.y129{bottom:367.240933pt;}
.yca{bottom:368.362667pt;}
.y17a{bottom:373.600000pt;}
.y16{bottom:375.358933pt;}
.y135{bottom:376.355733pt;}
.y3b{bottom:376.757333pt;}
.y84{bottom:377.749333pt;}
.y108{bottom:379.104000pt;}
.ya6{bottom:379.374267pt;}
.ye6{bottom:379.872000pt;}
.y1b3{bottom:381.306667pt;}
.y183{bottom:384.000000pt;}
.y60{bottom:387.507600pt;}
.y128{bottom:387.640933pt;}
.yc9{bottom:388.234667pt;}
.y15{bottom:391.492267pt;}
.y179{bottom:393.200000pt;}
.y1b2{bottom:396.101333pt;}
.y3a{bottom:396.229333pt;}
.y134{bottom:396.627733pt;}
.y83{bottom:398.021333pt;}
.ya5{bottom:399.240933pt;}
.y107{bottom:399.376000pt;}
.ye5{bottom:400.144000pt;}
.y151{bottom:404.000000pt;}
.y14{bottom:407.625600pt;}
.y5f{bottom:407.907600pt;}
.y127{bottom:408.040933pt;}
.yc8{bottom:408.106667pt;}
.y178{bottom:412.800000pt;}
.y39{bottom:415.701333pt;}
.y133{bottom:416.899733pt;}
.y82{bottom:418.293333pt;}
.y106{bottom:419.648000pt;}
.ye4{bottom:420.416000pt;}
.y13{bottom:423.758933pt;}
.y150{bottom:424.000000pt;}
.yc7{bottom:427.978667pt;}
.y5e{bottom:428.307600pt;}
.y126{bottom:428.440933pt;}
.y177{bottom:432.400000pt;}
.y38{bottom:435.173333pt;}
.y132{bottom:437.171733pt;}
.y81{bottom:438.565333pt;}
.ya4{bottom:438.901333pt;}
.y12{bottom:439.892267pt;}
.y105{bottom:439.920000pt;}
.y1b1{bottom:440.144000pt;}
.ye3{bottom:440.688000pt;}
.y14f{bottom:444.000000pt;}
.yc6{bottom:447.850667pt;}
.y5d{bottom:448.707600pt;}
.y125{bottom:448.840933pt;}
.y176{bottom:452.000000pt;}
.y1b0{bottom:453.605333pt;}
.y37{bottom:454.645333pt;}
.ya3{bottom:458.773333pt;}
.y80{bottom:458.837333pt;}
.y104{bottom:460.192000pt;}
.ye2{bottom:460.960000pt;}
.y11{bottom:463.585600pt;}
.y14e{bottom:464.000000pt;}
.y1af{bottom:467.066667pt;}
.yc5{bottom:467.722667pt;}
.y5c{bottom:469.107600pt;}
.y124{bottom:469.240933pt;}
.y175{bottom:471.600000pt;}
.y36{bottom:474.117333pt;}
.ya2{bottom:478.645333pt;}
.y7f{bottom:479.109333pt;}
.y103{bottom:480.464000pt;}
.y1ae{bottom:480.528000pt;}
.ye1{bottom:481.088000pt;}
.y14d{bottom:484.000000pt;}
.yc4{bottom:487.594667pt;}
.y5b{bottom:489.507600pt;}
.y123{bottom:489.640933pt;}
.y174{bottom:491.200000pt;}
.y35{bottom:493.589333pt;}
.y1ad{bottom:493.989333pt;}
.ya1{bottom:498.517333pt;}
.y7e{bottom:499.381333pt;}
.y102{bottom:500.736000pt;}
.ye0{bottom:501.216000pt;}
.y10{bottom:502.518933pt;}
.y14c{bottom:504.000000pt;}
.yc3{bottom:507.445333pt;}
.y1ac{bottom:507.450667pt;}
.y5a{bottom:509.907600pt;}
.y122{bottom:510.040933pt;}
.y173{bottom:510.800000pt;}
.y34{bottom:513.061333pt;}
.ya0{bottom:518.389333pt;}
.yf{bottom:518.652267pt;}
.y7d{bottom:519.653333pt;}
.y1ab{bottom:520.912000pt;}
.y101{bottom:521.008000pt;}
.ydf{bottom:521.344000pt;}
.y14b{bottom:524.000000pt;}
.yc2{bottom:527.317333pt;}
.y59{bottom:530.307600pt;}
.y172{bottom:530.400000pt;}
.y121{bottom:530.440933pt;}
.y33{bottom:532.458667pt;}
.y1aa{bottom:534.373333pt;}
.y9f{bottom:538.261333pt;}
.y7c{bottom:539.925333pt;}
.y100{bottom:541.280000pt;}
.yde{bottom:541.472000pt;}
.ye{bottom:542.343733pt;}
.y14a{bottom:544.000000pt;}
.yc1{bottom:547.189333pt;}
.y1a9{bottom:547.834667pt;}
.y171{bottom:550.000000pt;}
.y58{bottom:550.707600pt;}
.y120{bottom:550.840933pt;}
.y32{bottom:551.930667pt;}
.y9e{bottom:558.133333pt;}
.yd{bottom:558.477067pt;}
.y7b{bottom:560.197333pt;}
.y1a8{bottom:561.296000pt;}
.yff{bottom:561.552000pt;}
.ydd{bottom:561.637333pt;}
.y149{bottom:564.000000pt;}
.yc0{bottom:567.061333pt;}
.y170{bottom:569.600000pt;}
.y57{bottom:571.107600pt;}
.y11f{bottom:571.240933pt;}
.y31{bottom:571.402667pt;}
.yc{bottom:574.610400pt;}
.y1a7{bottom:574.757333pt;}
.y9d{bottom:578.005333pt;}
.y7a{bottom:580.469333pt;}
.y1cf{bottom:580.666667pt;}
.ydc{bottom:581.765333pt;}
.yfe{bottom:581.824000pt;}
.y148{bottom:584.000000pt;}
.ybf{bottom:586.933333pt;}
.y1a6{bottom:588.218667pt;}
.y16f{bottom:589.200000pt;}
.yb{bottom:590.743733pt;}
.y30{bottom:590.874667pt;}
.y56{bottom:591.507600pt;}
.y1ce{bottom:597.333333pt;}
.y9c{bottom:597.877333pt;}
.y79{bottom:600.741333pt;}
.y1a5{bottom:601.680000pt;}
.ydb{bottom:601.893333pt;}
.yfd{bottom:602.096000pt;}
.y147{bottom:604.000000pt;}
.ybe{bottom:606.800000pt;}
.ya{bottom:606.877067pt;}
.y16e{bottom:608.800000pt;}
.y2f{bottom:610.346667pt;}
.y55{bottom:611.914667pt;}
.y11e{bottom:612.048000pt;}
.y1cd{bottom:614.000000pt;}
.y1a4{bottom:615.141333pt;}
.y9b{bottom:617.749333pt;}
.y78{bottom:621.013333pt;}
.yda{bottom:622.021333pt;}
.yfc{bottom:622.368000pt;}
.y9{bottom:623.010400pt;}
.y146{bottom:624.000000pt;}
.y16d{bottom:628.400000pt;}
.y1a3{bottom:628.602667pt;}
.y2e{bottom:629.818667pt;}
.y54{bottom:632.314667pt;}
.y11d{bottom:632.448000pt;}
.y9a{bottom:637.621333pt;}
.y1cc{bottom:640.666667pt;}
.y77{bottom:641.285333pt;}
.y1a2{bottom:642.064000pt;}
.yd9{bottom:642.149333pt;}
.yfb{bottom:642.640000pt;}
.y145{bottom:644.000000pt;}
.ybd{bottom:646.293333pt;}
.y8{bottom:646.703733pt;}
.y16c{bottom:648.000000pt;}
.y2d{bottom:649.290667pt;}
.y53{bottom:652.714667pt;}
.y11c{bottom:652.848000pt;}
.y1a1{bottom:655.525333pt;}
.y76{bottom:661.557333pt;}
.yd8{bottom:662.277333pt;}
.yfa{bottom:662.912000pt;}
.y144{bottom:664.000000pt;}
.y99{bottom:665.045333pt;}
.ybc{bottom:666.021333pt;}
.y16b{bottom:667.600000pt;}
.y2c{bottom:668.762667pt;}
.y1a0{bottom:668.986667pt;}
.y11b{bottom:673.248000pt;}
.y1cb{bottom:677.333333pt;}
.y52{bottom:680.666667pt;}
.y75{bottom:681.829333pt;}
.yd7{bottom:682.405333pt;}
.y19f{bottom:682.448000pt;}
.yf9{bottom:683.184000pt;}
.y143{bottom:684.000000pt;}
.y98{bottom:684.917333pt;}
.ybb{bottom:685.749333pt;}
.y7{bottom:686.957733pt;}
.y16a{bottom:687.200000pt;}
.y2b{bottom:688.234667pt;}
.y11a{bottom:693.648000pt;}
.y1ca{bottom:694.000000pt;}
.y19e{bottom:695.909333pt;}
.y51{bottom:701.066667pt;}
.y74{bottom:702.101333pt;}
.yd6{bottom:702.533333pt;}
.yf8{bottom:703.456000pt;}
.y142{bottom:704.000000pt;}
.y97{bottom:704.789333pt;}
.yba{bottom:705.477333pt;}
.y6{bottom:706.424533pt;}
.y169{bottom:706.800000pt;}
.y2a{bottom:707.706667pt;}
.y19d{bottom:709.370667pt;}
.y1c9{bottom:710.666667pt;}
.y119{bottom:714.048000pt;}
.y50{bottom:721.466667pt;}
.y73{bottom:722.373333pt;}
.yd5{bottom:722.661333pt;}
.y19c{bottom:722.832000pt;}
.yf7{bottom:723.728000pt;}
.y141{bottom:724.000000pt;}
.y96{bottom:724.661333pt;}
.yb9{bottom:725.205333pt;}
.y168{bottom:726.400000pt;}
.y29{bottom:727.178667pt;}
.y1c8{bottom:727.333333pt;}
.y118{bottom:734.448000pt;}
.y19b{bottom:736.293333pt;}
.y4f{bottom:741.866667pt;}
.y72{bottom:742.645333pt;}
.yd4{bottom:742.789333pt;}
.yf6{bottom:744.000000pt;}
.y95{bottom:744.533333pt;}
.yb8{bottom:744.933333pt;}
.y167{bottom:746.000000pt;}
.y28{bottom:746.650667pt;}
.y19a{bottom:749.754667pt;}
.y1c7{bottom:760.666667pt;}
.y4e{bottom:762.266667pt;}
.y117{bottom:762.400000pt;}
.y71{bottom:762.917333pt;}
.y199{bottom:763.216000pt;}
.yf5{bottom:764.000000pt;}
.y94{bottom:764.405333pt;}
.yb7{bottom:764.661333pt;}
.y5{bottom:765.576133pt;}
.y166{bottom:765.600000pt;}
.y27{bottom:766.122667pt;}
.y198{bottom:776.677333pt;}
.y1c6{bottom:777.333333pt;}
.y4d{bottom:782.666667pt;}
.y116{bottom:782.800000pt;}
.y70{bottom:783.189333pt;}
.yf4{bottom:784.000000pt;}
.y93{bottom:784.277333pt;}
.yb6{bottom:784.389333pt;}
.y165{bottom:785.200000pt;}
.y26{bottom:785.594667pt;}
.y197{bottom:790.138667pt;}
.y4{bottom:792.242800pt;}
.y1c5{bottom:794.000000pt;}
.y4c{bottom:803.066667pt;}
.y115{bottom:803.200000pt;}
.y6f{bottom:803.461333pt;}
.y196{bottom:803.610667pt;}
.yf3{bottom:804.000000pt;}
.y92{bottom:804.005333pt;}
.yb5{bottom:804.261333pt;}
.y164{bottom:804.800000pt;}
.y25{bottom:805.061333pt;}
.y1c4{bottom:810.666667pt;}
.y195{bottom:817.072000pt;}
.y4b{bottom:823.466667pt;}
.y114{bottom:823.600000pt;}
.y6e{bottom:823.733333pt;}
.yf2{bottom:824.000000pt;}
.yb4{bottom:824.133333pt;}
.y163{bottom:824.400000pt;}
.y24{bottom:824.533333pt;}
.y1c3{bottom:827.333333pt;}
.y194{bottom:830.533333pt;}
.y3{bottom:835.576133pt;}
.h9{height:21.894141pt;}
.h14{height:22.149167pt;}
.hc{height:26.945443pt;}
.h16{height:33.117188pt;}
.h18{height:34.730667pt;}
.h3{height:34.957031pt;}
.ha{height:36.229167pt;}
.h2{height:36.796875pt;}
.h15{height:40.757812pt;}
.hd{height:44.156250pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.h12{height:47.989333pt;}
.h6{height:54.343750pt;}
.h8{height:54.365083pt;}
.h11{height:54.834417pt;}
.hb{height:59.132358pt;}
.h17{height:59.160625pt;}
.hf{height:59.245958pt;}
.h13{height:59.267292pt;}
.he{height:59.288625pt;}
.h10{height:59.459292pt;}
.h4{height:90.572917pt;}
.h7{height:258.176053pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x8{left:73.228400pt;}
.x9{left:78.908400pt;}
.x3{left:86.456667pt;}
.xa{left:97.804400pt;}
.x6{left:100.000000pt;}
.x4{left:105.180533pt;}
.x7{left:113.239867pt;}
.xb{left:118.928000pt;}
.x2{left:120.000000pt;}
.xd{left:126.444667pt;}
.xc{left:137.793600pt;}
.xe{left:228.301867pt;}
.xf{left:371.546000pt;}
.x10{left:556.250000pt;}
.x5{left:564.791600pt;}
}




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