
    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_fd0b6a5edc255fe475bef6bb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6cbddc6f2d60a8e271e40425.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_bc86f81276c85273ac0fb572.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860000;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_92fddbd99bd7812414a061e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_20313a34d8d09020d6cbd680.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_91e157c8779b3373a8a705b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_f01b78522257f0f14d7c495e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_caab61895f05606631f151af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_9ffb640b9bb3934b5b810eeb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_e99ba511e1b19b0d6c876856.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.699707;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_8273b8b2e85a075a43f56c49.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_c2b9b5509263ec1ea37f81e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_5cd2379bc9aa217c10fa630d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.017800px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:21.978000px;}
.ls22{letter-spacing:-6.750000px;}
.ls2f{letter-spacing:-3.552000px;}
.ls2d{letter-spacing:-2.193246px;}
.ls3f{letter-spacing:-2.160000px;}
.ls27{letter-spacing:-2.046000px;}
.ls2b{letter-spacing:-1.716000px;}
.ls5{letter-spacing:-1.584000px;}
.ls29{letter-spacing:-1.452000px;}
.ls2c{letter-spacing:-1.386000px;}
.ls28{letter-spacing:-1.320000px;}
.ls2a{letter-spacing:-0.990000px;}
.ls9{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.858000px;}
.ls21{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.726000px;}
.ls44{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.528000px;}
.ls24{letter-spacing:-0.462000px;}
.ls3e{letter-spacing:-0.423258px;}
.ls1f{letter-spacing:-0.396000px;}
.ls13{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.300000px;}
.ls30{letter-spacing:-0.269346px;}
.ls18{letter-spacing:-0.264000px;}
.ls3d{letter-spacing:-0.230868px;}
.ls25{letter-spacing:-0.198000px;}
.ls41{letter-spacing:-0.153912px;}
.ls14{letter-spacing:-0.132000px;}
.ls40{letter-spacing:-0.115434px;}
.ls19{letter-spacing:-0.066000px;}
.ls42{letter-spacing:-0.038478px;}
.ls4{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.066000px;}
.ls43{letter-spacing:0.076956px;}
.ls33{letter-spacing:0.115434px;}
.ls12{letter-spacing:0.132000px;}
.ls35{letter-spacing:0.153912px;}
.lsf{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.252000px;}
.lsb{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.319800px;}
.ls1a{letter-spacing:0.330000px;}
.ls45{letter-spacing:0.346302px;}
.ls11{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.576000px;}
.ls34{letter-spacing:0.577170px;}
.lse{letter-spacing:0.594000px;}
.ls2e{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.726000px;}
.ls37{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.858000px;}
.ls1e{letter-spacing:0.924000px;}
.ls31{letter-spacing:0.990000px;}
.ls39{letter-spacing:1.056000px;}
.ls38{letter-spacing:1.122000px;}
.ls32{letter-spacing:1.188000px;}
.ls36{letter-spacing:1.254000px;}
.ls46{letter-spacing:1.320000px;}
.ls1d{letter-spacing:1.452000px;}
.ls1b{letter-spacing:1.518000px;}
.ls47{letter-spacing:1.741200px;}
.ls3c{letter-spacing:1.744800px;}
.ls23{letter-spacing:1.848000px;}
.ls3a{letter-spacing:1.914000px;}
.ls3b{letter-spacing:2.244000px;}
.ls1{letter-spacing:2.592000px;}
.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;}
}
.ws46{word-spacing:-17.490000px;}
.ws2f{word-spacing:-16.896000px;}
.ws59{word-spacing:-16.632000px;}
.ws5d{word-spacing:-16.566000px;}
.ws12{word-spacing:-16.500000px;}
.ws45{word-spacing:-16.302000px;}
.ws25{word-spacing:-16.236000px;}
.ws36{word-spacing:-15.972000px;}
.ws26{word-spacing:-15.708000px;}
.ws2{word-spacing:-13.500000px;}
.ws47{word-spacing:-10.196670px;}
.ws5c{word-spacing:-9.965802px;}
.ws48{word-spacing:-9.773412px;}
.ws44{word-spacing:-9.734934px;}
.ws5a{word-spacing:-9.696456px;}
.ws24{word-spacing:-9.619500px;}
.ws58{word-spacing:-9.581022px;}
.ws55{word-spacing:-9.504066px;}
.ws56{word-spacing:-9.465588px;}
.ws4e{word-spacing:-9.388632px;}
.ws3e{word-spacing:-9.350154px;}
.ws4f{word-spacing:-9.196242px;}
.ws1{word-spacing:-7.870500px;}
.ws37{word-spacing:-7.426254px;}
.ws5b{word-spacing:-5.280000px;}
.ws5{word-spacing:-3.240000px;}
.wse{word-spacing:-2.376000px;}
.ws52{word-spacing:-2.244000px;}
.wsf{word-spacing:-2.052000px;}
.wsb{word-spacing:-2.016000px;}
.ws51{word-spacing:-1.914000px;}
.ws31{word-spacing:-1.848000px;}
.ws43{word-spacing:-1.650000px;}
.ws29{word-spacing:-1.518000px;}
.ws7{word-spacing:-1.500000px;}
.ws28{word-spacing:-1.452000px;}
.ws42{word-spacing:-1.386000px;}
.ws41{word-spacing:-1.320000px;}
.ws21{word-spacing:-1.254000px;}
.ws22{word-spacing:-1.188000px;}
.ws4c{word-spacing:-1.122000px;}
.ws50{word-spacing:-1.056000px;}
.ws49{word-spacing:-0.990000px;}
.ws2a{word-spacing:-0.924000px;}
.ws2c{word-spacing:-0.858000px;}
.ws4b{word-spacing:-0.792000px;}
.ws1b{word-spacing:-0.726000px;}
.ws40{word-spacing:-0.660000px;}
.ws1c{word-spacing:-0.594000px;}
.ws1e{word-spacing:-0.528000px;}
.ws11{word-spacing:-0.462000px;}
.ws16{word-spacing:-0.396000px;}
.ws27{word-spacing:-0.330000px;}
.ws4d{word-spacing:-0.324000px;}
.ws4{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.264000px;}
.ws1d{word-spacing:-0.198000px;}
.ws23{word-spacing:-0.132000px;}
.ws0{word-spacing:-0.078000px;}
.ws19{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.066000px;}
.ws14{word-spacing:0.132000px;}
.ws32{word-spacing:0.198000px;}
.ws1a{word-spacing:0.264000px;}
.ws9{word-spacing:0.300000px;}
.ws13{word-spacing:0.330000px;}
.ws2b{word-spacing:0.396000px;}
.ws30{word-spacing:0.462000px;}
.ws34{word-spacing:0.528000px;}
.ws8{word-spacing:0.540000px;}
.ws15{word-spacing:0.594000px;}
.ws35{word-spacing:0.660000px;}
.ws4a{word-spacing:0.702000px;}
.ws18{word-spacing:0.726000px;}
.ws2d{word-spacing:0.792000px;}
.ws17{word-spacing:0.858000px;}
.ws3b{word-spacing:0.990000px;}
.ws20{word-spacing:1.122000px;}
.ws57{word-spacing:1.188000px;}
.ws39{word-spacing:1.320000px;}
.ws3d{word-spacing:1.386000px;}
.ws3a{word-spacing:1.452000px;}
.ws33{word-spacing:1.650000px;}
.ws3c{word-spacing:1.716000px;}
.ws53{word-spacing:1.728000px;}
.wsa{word-spacing:2.016000px;}
.ws38{word-spacing:2.046000px;}
.ws54{word-spacing:2.160000px;}
.ws3f{word-spacing:3.552000px;}
.wsd{word-spacing:4.320000px;}
.ws6{word-spacing:5.256000px;}
.wsc{word-spacing:5.700000px;}
.ws2e{word-spacing:6.750000px;}
._15{margin-left:-13.405800px;}
._b{margin-left:-9.057000px;}
._c{margin-left:-7.516200px;}
._3{margin-left:-6.240000px;}
._2{margin-left:-4.680000px;}
._0{margin-left:-3.011400px;}
._4{margin-left:-1.434600px;}
._5{width:1.260000px;}
._6{width:2.946000px;}
._7{width:4.131000px;}
._9{width:6.037200px;}
._8{width:7.106400px;}
._d{width:8.115000px;}
._e{width:9.228000px;}
._14{width:12.414600px;}
._11{width:13.561200px;}
._17{width:32.826000px;}
._13{width:36.522000px;}
._12{width:40.218000px;}
._16{width:51.174000px;}
._1{width:522.624600px;}
._f{width:1773.116400px;}
._10{width:1776.678600px;}
._a{width:1799.811600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fsa{font-size:38.478000px;}
.fs9{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:67.423050px;}
.yc3{bottom:106.299150px;}
.y62{bottom:106.299300px;}
.y92{bottom:106.299450px;}
.y1e{bottom:107.528100px;}
.y218{bottom:117.272700px;}
.yc2{bottom:121.299150px;}
.y61{bottom:121.299300px;}
.y91{bottom:121.299450px;}
.y1d{bottom:122.528100px;}
.y144{bottom:123.298800px;}
.y1af{bottom:129.803100px;}
.y16d{bottom:129.803250px;}
.y104{bottom:129.803400px;}
.y60{bottom:136.299300px;}
.y1a0{bottom:136.299450px;}
.y217{bottom:136.772700px;}
.y1c{bottom:137.528100px;}
.y1f5{bottom:142.782750px;}
.y143{bottom:142.798800px;}
.ye9{bottom:144.803100px;}
.y16c{bottom:144.803250px;}
.y103{bottom:144.803400px;}
.y90{bottom:144.803550px;}
.y19f{bottom:151.299450px;}
.y1ae{bottom:153.307050px;}
.y1da{bottom:153.307200px;}
.y18c{bottom:153.307500px;}
.y102{bottom:159.803400px;}
.y1b{bottom:161.529600px;}
.y1f4{bottom:162.282750px;}
.y16b{bottom:168.307200px;}
.y8f{bottom:168.307500px;}
.yc1{bottom:168.558600px;}
.y216{bottom:169.526100px;}
.y5f{bottom:172.989600px;}
.y19e{bottom:174.803400px;}
.y1ad{bottom:176.811000px;}
.y18b{bottom:176.811600px;}
.y142{bottom:178.550700px;}
.y101{bottom:183.307500px;}
.y1a{bottom:185.530950px;}
.ye8{bottom:187.314450px;}
.yc0{bottom:188.058600px;}
.y215{bottom:189.026100px;}
.y19d{bottom:189.803400px;}
.y16a{bottom:191.811150px;}
.y8e{bottom:191.811600px;}
.y5e{bottom:192.489600px;}
.y1f3{bottom:195.036000px;}
.y100{bottom:198.307500px;}
.y1ac{bottom:200.314950px;}
.y19{bottom:205.026450px;}
.y12b{bottom:206.811600px;}
.ye7{bottom:206.814450px;}
.ybf{bottom:207.558600px;}
.y141{bottom:211.304100px;}
.y5d{bottom:211.989600px;}
.yff{bottom:213.307500px;}
.y1f2{bottom:214.536000px;}
.y1ab{bottom:215.314950px;}
.y169{bottom:215.315100px;}
.y18a{bottom:215.315550px;}
.y8d{bottom:215.315700px;}
.y214{bottom:221.779500px;}
.y12a{bottom:221.811600px;}
.ybe{bottom:227.058600px;}
.y19c{bottom:228.307500px;}
.y1aa{bottom:230.314950px;}
.y189{bottom:230.315550px;}
.y140{bottom:230.804100px;}
.y5c{bottom:231.489600px;}
.y1f1{bottom:234.036000px;}
.yfe{bottom:236.811600px;}
.y1d9{bottom:238.818900px;}
.y168{bottom:238.819050px;}
.y8c{bottom:238.819800px;}
.ye6{bottom:239.567850px;}
.y19b{bottom:243.307500px;}
.y188{bottom:245.315550px;}
.yfd{bottom:251.811600px;}
.y1a9{bottom:253.818900px;}
.y167{bottom:253.819050px;}
.y213{bottom:254.532900px;}
.ye5{bottom:259.067850px;}
.ybd{bottom:259.811850px;}
.y8b{bottom:262.323900px;}
.y18{bottom:263.533800px;}
.y13f{bottom:263.557500px;}
.y5b{bottom:264.243000px;}
.y1f0{bottom:266.789550px;}
.y129{bottom:266.811600px;}
.y166{bottom:268.819050px;}
.y212{bottom:274.032900px;}
.y1a8{bottom:277.322850px;}
.y8a{bottom:277.323900px;}
.y187{bottom:277.813350px;}
.ye4{bottom:278.567850px;}
.ybc{bottom:279.311850px;}
.y128{bottom:281.811600px;}
.y5a{bottom:283.743000px;}
.y1ef{bottom:286.289550px;}
.y19a{bottom:290.315700px;}
.y13e{bottom:296.310900px;}
.y186{bottom:297.313350px;}
.ye3{bottom:298.067850px;}
.ybb{bottom:298.811850px;}
.y1a7{bottom:300.826800px;}
.y1bf{bottom:300.828000px;}
.y59{bottom:303.243000px;}
.yfc{bottom:303.317700px;}
.y1d8{bottom:306.055050px;}
.y211{bottom:306.786300px;}
.y89{bottom:309.564300px;}
.y199{bottom:313.819800px;}
.y127{bottom:314.053800px;}
.y13d{bottom:315.810900px;}
.y1a6{bottom:315.826800px;}
.y185{bottom:316.813350px;}
.ye2{bottom:317.567850px;}
.yba{bottom:318.311850px;}
.y1ee{bottom:319.042950px;}
.y58{bottom:322.743000px;}
.yfb{bottom:322.817700px;}
.y1d7{bottom:325.555050px;}
.y88{bottom:329.064300px;}
.y126{bottom:333.553800px;}
.y198{bottom:337.323900px;}
.yb9{bottom:337.811850px;}
.y1ed{bottom:338.542950px;}
.y210{bottom:339.539550px;}
.y57{bottom:342.243000px;}
.yfa{bottom:342.317700px;}
.y165{bottom:344.823150px;}
.y1d6{bottom:345.055050px;}
.y13c{bottom:348.066900px;}
.y87{bottom:348.564300px;}
.y184{bottom:349.566750px;}
.y1be{bottom:349.566900px;}
.ye1{bottom:350.321250px;}
.y125{bottom:353.053800px;}
.yb8{bottom:357.311850px;}
.y20f{bottom:359.039550px;}
.y56{bottom:361.743000px;}
.yf9{bottom:361.817700px;}
.y164{bottom:364.323150px;}
.y1d5{bottom:364.555050px;}
.y86{bottom:368.064300px;}
.y183{bottom:369.066750px;}
.y1bd{bottom:369.066900px;}
.ye0{bottom:369.821250px;}
.y1ec{bottom:371.296200px;}
.y124{bottom:372.553800px;}
.y1a5{bottom:376.828050px;}
.y55{bottom:381.243000px;}
.yf8{bottom:381.317700px;}
.y163{bottom:383.823150px;}
.y182{bottom:388.566750px;}
.y1bc{bottom:388.566900px;}
.ydf{bottom:389.321250px;}
.yb7{bottom:390.065250px;}
.y1eb{bottom:390.796350px;}
.y20e{bottom:391.792950px;}
.y123{bottom:392.053800px;}
.y197{bottom:395.573550px;}
.y13b{bottom:396.328050px;}
.y1d4{bottom:397.308450px;}
.y54{bottom:400.743000px;}
.y85{bottom:400.817700px;}
.y162{bottom:403.323150px;}
.yde{bottom:408.821250px;}
.yb6{bottom:409.565250px;}
.y20d{bottom:411.292950px;}
.y122{bottom:411.553800px;}
.y196{bottom:415.073550px;}
.y13a{bottom:415.828050px;}
.y1bb{bottom:416.570700px;}
.y1d3{bottom:416.808450px;}
.y53{bottom:420.243000px;}
.y84{bottom:420.317700px;}
.y181{bottom:421.320150px;}
.y1ea{bottom:423.549600px;}
.ydd{bottom:428.321250px;}
.yb5{bottom:429.065250px;}
.y1a4{bottom:429.081450px;}
.y121{bottom:431.053800px;}
.y1ba{bottom:434.570700px;}
.y195{bottom:434.573550px;}
.y139{bottom:435.328050px;}
.y1d2{bottom:436.308450px;}
.y17{bottom:437.306100px;}
.y161{bottom:439.075050px;}
.y83{bottom:439.817700px;}
.y180{bottom:440.820150px;}
.y1e9{bottom:443.049600px;}
.y20c{bottom:444.046350px;}
.yb4{bottom:448.565250px;}
.y1a3{bottom:448.581450px;}
.y120{bottom:450.553800px;}
.y52{bottom:452.499000px;}
.y194{bottom:454.073550px;}
.y1d1{bottom:455.808450px;}
.y160{bottom:458.575050px;}
.yf7{bottom:459.317700px;}
.y17f{bottom:460.320150px;}
.ydc{bottom:461.074650px;}
.y1e8{bottom:462.549600px;}
.y20b{bottom:463.546350px;}
.yb3{bottom:468.065250px;}
.y138{bottom:468.081450px;}
.y16{bottom:468.806100px;}
.y11f{bottom:470.053800px;}
.y82{bottom:472.073550px;}
.y193{bottom:473.573550px;}
.y1b9{bottom:474.328050px;}
.y1d0{bottom:475.308450px;}
.yf6{bottom:478.817700px;}
.y17e{bottom:479.820150px;}
.ydb{bottom:480.574650px;}
.y15{bottom:486.806100px;}
.yb2{bottom:487.565250px;}
.y137{bottom:487.581450px;}
.y11e{bottom:489.553800px;}
.y192{bottom:493.073550px;}
.y1b8{bottom:493.828050px;}
.y15f{bottom:494.327100px;}
.y1e7{bottom:495.303000px;}
.y20a{bottom:496.299750px;}
.yf5{bottom:498.317700px;}
.y17d{bottom:499.320150px;}
.yda{bottom:500.074650px;}
.y51{bottom:500.760150px;}
.y14{bottom:504.806100px;}
.yb1{bottom:507.065250px;}
.y136{bottom:507.081450px;}
.y1cf{bottom:508.061850px;}
.y191{bottom:512.573550px;}
.y1b7{bottom:513.328050px;}
.y15e{bottom:513.827100px;}
.y1e6{bottom:514.803000px;}
.y209{bottom:515.799750px;}
.yf4{bottom:517.817700px;}
.y17c{bottom:518.820150px;}
.yd9{bottom:519.574650px;}
.y50{bottom:520.260150px;}
.y81{bottom:520.334850px;}
.y11d{bottom:521.809650px;}
.y13{bottom:522.806100px;}
.yb0{bottom:526.565250px;}
.y135{bottom:526.581450px;}
.y1ce{bottom:527.561850px;}
.y1e5{bottom:534.303000px;}
.yf3{bottom:537.317700px;}
.yd8{bottom:539.074650px;}
.y4f{bottom:539.760150px;}
.y80{bottom:539.834850px;}
.y190{bottom:540.577500px;}
.yaf{bottom:546.065250px;}
.y134{bottom:546.081450px;}
.y1cd{bottom:547.061850px;}
.y208{bottom:548.553150px;}
.y15d{bottom:549.579000px;}
.y17b{bottom:551.573550px;}
.y12{bottom:557.814000px;}
.y18f{bottom:558.577500px;}
.y4e{bottom:559.260150px;}
.y7f{bottom:559.334850px;}
.yae{bottom:565.565250px;}
.y133{bottom:565.581450px;}
.y1e4{bottom:567.056400px;}
.y207{bottom:568.053150px;}
.y11c{bottom:570.070950px;}
.yf2{bottom:570.071100px;}
.y17a{bottom:571.073550px;}
.yd7{bottom:571.828050px;}
.y4d{bottom:578.760150px;}
.y7e{bottom:578.834850px;}
.y1cc{bottom:579.317700px;}
.yad{bottom:585.065250px;}
.y132{bottom:585.081450px;}
.y15c{bottom:585.331050px;}
.y1e3{bottom:586.556400px;}
.y11b{bottom:589.570950px;}
.yf1{bottom:589.571100px;}
.y179{bottom:590.573550px;}
.yd6{bottom:591.328050px;}
.y11{bottom:592.821900px;}
.y4c{bottom:598.260150px;}
.y7d{bottom:598.334850px;}
.y206{bottom:600.806550px;}
.y131{bottom:604.581450px;}
.y11a{bottom:609.070950px;}
.yf0{bottom:609.071100px;}
.y178{bottom:610.073550px;}
.yd5{bottom:610.828050px;}
.y10{bottom:613.821900px;}
.y4b{bottom:617.760150px;}
.yac{bottom:617.818800px;}
.y7c{bottom:617.834850px;}
.y1e2{bottom:619.309800px;}
.y205{bottom:620.306550px;}
.y15b{bottom:621.082950px;}
.y1b6{bottom:624.081450px;}
.y1cb{bottom:627.579000px;}
.y33{bottom:627.973050px;}
.y119{bottom:628.570950px;}
.yef{bottom:628.571100px;}
.y177{bottom:629.573550px;}
.yd4{bottom:630.328050px;}
.yf{bottom:634.821900px;}
.y4a{bottom:637.260150px;}
.yab{bottom:637.318800px;}
.y7b{bottom:637.334850px;}
.y1e1{bottom:638.809800px;}
.y15a{bottom:640.582950px;}
.y1b5{bottom:643.581450px;}
.y1ca{bottom:647.079000px;}
.y118{bottom:648.070950px;}
.yee{bottom:648.071100px;}
.yd3{bottom:649.828050px;}
.y204{bottom:653.059950px;}
.y49{bottom:656.760150px;}
.yaa{bottom:656.818800px;}
.y130{bottom:656.834850px;}
.y1e0{bottom:658.309800px;}
.y32{bottom:660.726300px;}
.y176{bottom:662.326800px;}
.y1b4{bottom:663.081450px;}
.y1c9{bottom:666.579000px;}
.y117{bottom:667.570950px;}
.yed{bottom:667.571100px;}
.yd2{bottom:669.328050px;}
.y7a{bottom:670.088250px;}
.y203{bottom:672.559950px;}
.y159{bottom:673.336350px;}
.y48{bottom:676.260150px;}
.ya9{bottom:676.318800px;}
.y12f{bottom:676.334850px;}
.y175{bottom:681.826800px;}
.y1b3{bottom:682.581450px;}
.y116{bottom:687.070950px;}
.yec{bottom:687.071100px;}
.yd1{bottom:688.828050px;}
.y79{bottom:689.588250px;}
.y1df{bottom:691.063200px;}
.y158{bottom:692.836350px;}
.y31{bottom:693.479700px;}
.ya8{bottom:695.818800px;}
.y12e{bottom:695.834850px;}
.ye{bottom:698.839050px;}
.y174{bottom:701.326800px;}
.y1c8{bottom:702.330900px;}
.y202{bottom:705.313350px;}
.y47{bottom:709.013550px;}
.y78{bottom:709.088250px;}
.y1de{bottom:710.563200px;}
.y157{bottom:712.336350px;}
.ya7{bottom:715.318800px;}
.y12d{bottom:715.334850px;}
.yd{bottom:716.839050px;}
.yeb{bottom:719.326950px;}
.y115{bottom:719.824350px;}
.y173{bottom:720.826800px;}
.yd0{bottom:721.581450px;}
.y1c7{bottom:721.830900px;}
.y201{bottom:724.813350px;}
.y30{bottom:726.233100px;}
.y46{bottom:728.513550px;}
.y77{bottom:728.588250px;}
.y1dd{bottom:730.063200px;}
.y156{bottom:731.836350px;}
.ya6{bottom:734.818800px;}
.y1a2{bottom:734.834850px;}
.y114{bottom:739.324350px;}
.y172{bottom:740.326800px;}
.ycf{bottom:741.081450px;}
.y1c6{bottom:741.330900px;}
.yc{bottom:743.840400px;}
.y45{bottom:748.013550px;}
.y76{bottom:748.088250px;}
.y155{bottom:751.336350px;}
.ya5{bottom:754.318800px;}
.y1a1{bottom:754.334850px;}
.y200{bottom:757.566750px;}
.y1dc{bottom:758.067150px;}
.y113{bottom:758.824350px;}
.y2f{bottom:758.986500px;}
.y171{bottom:759.826800px;}
.yce{bottom:760.581450px;}
.y1c5{bottom:760.830900px;}
.yb{bottom:761.840400px;}
.y44{bottom:767.513550px;}
.y75{bottom:767.588250px;}
.y154{bottom:770.836350px;}
.ya4{bottom:773.818800px;}
.y1b2{bottom:773.834850px;}
.y1ff{bottom:777.066750px;}
.y112{bottom:778.324350px;}
.y2e{bottom:778.486500px;}
.ya{bottom:779.840400px;}
.ycd{bottom:780.081450px;}
.y43{bottom:787.013550px;}
.y74{bottom:787.088250px;}
.y170{bottom:787.830900px;}
.y1b1{bottom:793.334850px;}
.y1c4{bottom:796.582800px;}
.y1db{bottom:797.326950px;}
.y111{bottom:797.824350px;}
.y9{bottom:797.840400px;}
.ycc{bottom:799.581450px;}
.y153{bottom:803.589600px;}
.y16f{bottom:805.830900px;}
.y42{bottom:806.513550px;}
.ya3{bottom:806.572050px;}
.y73{bottom:806.588250px;}
.y1fe{bottom:809.820150px;}
.y2d{bottom:811.239900px;}
.y1c3{bottom:816.082800px;}
.y110{bottom:817.324350px;}
.y152{bottom:823.089600px;}
.y41{bottom:826.013550px;}
.ya2{bottom:826.072050px;}
.y72{bottom:826.088250px;}
.y8{bottom:828.596400px;}
.y1fd{bottom:829.320150px;}
.y2c{bottom:830.739900px;}
.ycb{bottom:832.334850px;}
.y1c2{bottom:835.582800px;}
.y10f{bottom:836.824350px;}
.y18e{bottom:839.341650px;}
.y151{bottom:842.589600px;}
.y40{bottom:845.513550px;}
.ya1{bottom:845.572050px;}
.yea{bottom:845.588250px;}
.yca{bottom:851.834850px;}
.y71{bottom:858.841650px;}
.y1fc{bottom:862.073550px;}
.y150{bottom:862.089600px;}
.y2b{bottom:863.493300px;}
.y3f{bottom:865.013550px;}
.ya0{bottom:865.072050px;}
.y12c{bottom:865.088250px;}
.y10e{bottom:869.577900px;}
.y1c1{bottom:871.334850px;}
.y70{bottom:878.341650px;}
.y1fb{bottom:881.573550px;}
.y14f{bottom:881.589600px;}
.y2a{bottom:882.993300px;}
.y3e{bottom:884.513550px;}
.y9f{bottom:884.572050px;}
.yc9{bottom:884.588250px;}
.y10d{bottom:889.077900px;}
.y7{bottom:889.116000px;}
.y1c0{bottom:890.834850px;}
.y6f{bottom:897.841650px;}
.y14e{bottom:901.089600px;}
.yc8{bottom:904.088250px;}
.y10c{bottom:908.577900px;}
.y1fa{bottom:914.326950px;}
.y29{bottom:915.746700px;}
.y3d{bottom:917.267100px;}
.y9e{bottom:917.325600px;}
.y6e{bottom:917.341650px;}
.y14d{bottom:920.589600px;}
.yc7{bottom:923.588250px;}
.y10b{bottom:928.077900px;}
.y220{bottom:929.818800px;}
.y6{bottom:932.627850px;}
.y1f9{bottom:933.826950px;}
.y3c{bottom:936.767100px;}
.y9d{bottom:936.825600px;}
.y6d{bottom:936.841650px;}
.y14c{bottom:940.089600px;}
.yc6{bottom:943.088250px;}
.y10a{bottom:947.577900px;}
.y28{bottom:948.500100px;}
.y21f{bottom:949.318800px;}
.y5{bottom:953.627850px;}
.y3b{bottom:956.267100px;}
.y9c{bottom:956.325600px;}
.y6c{bottom:956.341650px;}
.y14b{bottom:959.589600px;}
.y1f8{bottom:961.830900px;}
.yc5{bottom:962.588250px;}
.y109{bottom:967.077900px;}
.y21e{bottom:968.818800px;}
.y4{bottom:974.627850px;}
.y3a{bottom:975.767100px;}
.y9b{bottom:975.825600px;}
.y6b{bottom:975.841650px;}
.y3{bottom:976.291800px;}
.y14a{bottom:979.089600px;}
.y27{bottom:981.253350px;}
.yc4{bottom:982.088250px;}
.y21d{bottom:988.318800px;}
.y39{bottom:995.267100px;}
.y9a{bottom:995.325600px;}
.y6a{bottom:995.341650px;}
.y149{bottom:998.589600px;}
.y108{bottom:999.333750px;}
.y1f7{bottom:1001.588250px;}
.y18d{bottom:1008.595050px;}
.y26{bottom:1014.006750px;}
.y38{bottom:1014.767100px;}
.y99{bottom:1014.825600px;}
.y69{bottom:1014.841650px;}
.y148{bottom:1018.089600px;}
.y21c{bottom:1021.072050px;}
.y1f6{bottom:1021.088250px;}
.y16e{bottom:1028.095050px;}
.y37{bottom:1034.267100px;}
.y98{bottom:1034.325600px;}
.y68{bottom:1034.341650px;}
.y2{bottom:1039.123650px;}
.y21b{bottom:1040.572050px;}
.y25{bottom:1046.760150px;}
.y107{bottom:1047.595050px;}
.y147{bottom:1050.843000px;}
.y36{bottom:1053.767100px;}
.y67{bottom:1053.841650px;}
.y97{bottom:1067.078850px;}
.y106{bottom:1067.095050px;}
.y146{bottom:1070.343000px;}
.y35{bottom:1073.267100px;}
.y21a{bottom:1073.325600px;}
.y66{bottom:1073.341650px;}
.y24{bottom:1079.513550px;}
.y96{bottom:1086.578850px;}
.y105{bottom:1086.595050px;}
.y145{bottom:1089.843000px;}
.y34{bottom:1092.767100px;}
.y219{bottom:1092.825600px;}
.y1b0{bottom:1092.841650px;}
.y1{bottom:1103.668650px;}
.y95{bottom:1106.078850px;}
.y65{bottom:1106.095050px;}
.y23{bottom:1112.267100px;}
.y94{bottom:1125.578850px;}
.y64{bottom:1125.595050px;}
.y22{bottom:1144.522950px;}
.y93{bottom:1145.078850px;}
.y63{bottom:1145.095050px;}
.y20{bottom:1206.627150px;}
.y1f{bottom:1221.027150px;}
.he{height:29.399836px;}
.h10{height:34.945312px;}
.hd{height:37.520508px;}
.hc{height:41.660156px;}
.h8{height:41.689453px;}
.h6{height:44.284951px;}
.h12{height:45.181641px;}
.h13{height:45.826172px;}
.h4{height:45.858398px;}
.hf{height:47.381836px;}
.hb{height:48.049805px;}
.ha{height:52.417969px;}
.h9{height:52.646484px;}
.h3{height:53.040000px;}
.h11{height:57.911133px;}
.h7{height:59.586914px;}
.h5{height:65.003906px;}
.h2{height:100.689675px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x6{left:119.055150px;}
.x7{left:127.599150px;}
.xa{left:130.322850px;}
.x8{left:136.063050px;}
.xb{left:148.818900px;}
.x9{left:157.322850px;}
.x1{left:195.590550px;}
.x2{left:197.239500px;}
.x5{left:216.026400px;}
.x4{left:705.665100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.460267pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:19.536000pt;}
.ls22{letter-spacing:-6.000000pt;}
.ls2f{letter-spacing:-3.157333pt;}
.ls2d{letter-spacing:-1.949552pt;}
.ls3f{letter-spacing:-1.920000pt;}
.ls27{letter-spacing:-1.818667pt;}
.ls2b{letter-spacing:-1.525333pt;}
.ls5{letter-spacing:-1.408000pt;}
.ls29{letter-spacing:-1.290667pt;}
.ls2c{letter-spacing:-1.232000pt;}
.ls28{letter-spacing:-1.173333pt;}
.ls2a{letter-spacing:-0.880000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.762667pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.645333pt;}
.ls44{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.469333pt;}
.ls24{letter-spacing:-0.410667pt;}
.ls3e{letter-spacing:-0.376229pt;}
.ls1f{letter-spacing:-0.352000pt;}
.ls13{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls30{letter-spacing:-0.239419pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls3d{letter-spacing:-0.205216pt;}
.ls25{letter-spacing:-0.176000pt;}
.ls41{letter-spacing:-0.136811pt;}
.ls14{letter-spacing:-0.117333pt;}
.ls40{letter-spacing:-0.102608pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls42{letter-spacing:-0.034203pt;}
.ls4{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.058667pt;}
.ls43{letter-spacing:0.068405pt;}
.ls33{letter-spacing:0.102608pt;}
.ls12{letter-spacing:0.117333pt;}
.ls35{letter-spacing:0.136811pt;}
.lsf{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.224000pt;}
.lsb{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.284267pt;}
.ls1a{letter-spacing:0.293333pt;}
.ls45{letter-spacing:0.307824pt;}
.ls11{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.512000pt;}
.ls34{letter-spacing:0.513040pt;}
.lse{letter-spacing:0.528000pt;}
.ls2e{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.645333pt;}
.ls37{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.762667pt;}
.ls1e{letter-spacing:0.821333pt;}
.ls31{letter-spacing:0.880000pt;}
.ls39{letter-spacing:0.938667pt;}
.ls38{letter-spacing:0.997333pt;}
.ls32{letter-spacing:1.056000pt;}
.ls36{letter-spacing:1.114667pt;}
.ls46{letter-spacing:1.173333pt;}
.ls1d{letter-spacing:1.290667pt;}
.ls1b{letter-spacing:1.349333pt;}
.ls47{letter-spacing:1.547733pt;}
.ls3c{letter-spacing:1.550933pt;}
.ls23{letter-spacing:1.642667pt;}
.ls3a{letter-spacing:1.701333pt;}
.ls3b{letter-spacing:1.994667pt;}
.ls1{letter-spacing:2.304000pt;}
.ws46{word-spacing:-15.546667pt;}
.ws2f{word-spacing:-15.018667pt;}
.ws59{word-spacing:-14.784000pt;}
.ws5d{word-spacing:-14.725333pt;}
.ws12{word-spacing:-14.666667pt;}
.ws45{word-spacing:-14.490667pt;}
.ws25{word-spacing:-14.432000pt;}
.ws36{word-spacing:-14.197333pt;}
.ws26{word-spacing:-13.962667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws47{word-spacing:-9.063707pt;}
.ws5c{word-spacing:-8.858491pt;}
.ws48{word-spacing:-8.687477pt;}
.ws44{word-spacing:-8.653275pt;}
.ws5a{word-spacing:-8.619072pt;}
.ws24{word-spacing:-8.550667pt;}
.ws58{word-spacing:-8.516464pt;}
.ws55{word-spacing:-8.448059pt;}
.ws56{word-spacing:-8.413856pt;}
.ws4e{word-spacing:-8.345451pt;}
.ws3e{word-spacing:-8.311248pt;}
.ws4f{word-spacing:-8.174437pt;}
.ws1{word-spacing:-6.996000pt;}
.ws37{word-spacing:-6.601115pt;}
.ws5b{word-spacing:-4.693333pt;}
.ws5{word-spacing:-2.880000pt;}
.wse{word-spacing:-2.112000pt;}
.ws52{word-spacing:-1.994667pt;}
.wsf{word-spacing:-1.824000pt;}
.wsb{word-spacing:-1.792000pt;}
.ws51{word-spacing:-1.701333pt;}
.ws31{word-spacing:-1.642667pt;}
.ws43{word-spacing:-1.466667pt;}
.ws29{word-spacing:-1.349333pt;}
.ws7{word-spacing:-1.333333pt;}
.ws28{word-spacing:-1.290667pt;}
.ws42{word-spacing:-1.232000pt;}
.ws41{word-spacing:-1.173333pt;}
.ws21{word-spacing:-1.114667pt;}
.ws22{word-spacing:-1.056000pt;}
.ws4c{word-spacing:-0.997333pt;}
.ws50{word-spacing:-0.938667pt;}
.ws49{word-spacing:-0.880000pt;}
.ws2a{word-spacing:-0.821333pt;}
.ws2c{word-spacing:-0.762667pt;}
.ws4b{word-spacing:-0.704000pt;}
.ws1b{word-spacing:-0.645333pt;}
.ws40{word-spacing:-0.586667pt;}
.ws1c{word-spacing:-0.528000pt;}
.ws1e{word-spacing:-0.469333pt;}
.ws11{word-spacing:-0.410667pt;}
.ws16{word-spacing:-0.352000pt;}
.ws27{word-spacing:-0.293333pt;}
.ws4d{word-spacing:-0.288000pt;}
.ws4{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.234667pt;}
.ws1d{word-spacing:-0.176000pt;}
.ws23{word-spacing:-0.117333pt;}
.ws0{word-spacing:-0.069333pt;}
.ws19{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.058667pt;}
.ws14{word-spacing:0.117333pt;}
.ws32{word-spacing:0.176000pt;}
.ws1a{word-spacing:0.234667pt;}
.ws9{word-spacing:0.266667pt;}
.ws13{word-spacing:0.293333pt;}
.ws2b{word-spacing:0.352000pt;}
.ws30{word-spacing:0.410667pt;}
.ws34{word-spacing:0.469333pt;}
.ws8{word-spacing:0.480000pt;}
.ws15{word-spacing:0.528000pt;}
.ws35{word-spacing:0.586667pt;}
.ws4a{word-spacing:0.624000pt;}
.ws18{word-spacing:0.645333pt;}
.ws2d{word-spacing:0.704000pt;}
.ws17{word-spacing:0.762667pt;}
.ws3b{word-spacing:0.880000pt;}
.ws20{word-spacing:0.997333pt;}
.ws57{word-spacing:1.056000pt;}
.ws39{word-spacing:1.173333pt;}
.ws3d{word-spacing:1.232000pt;}
.ws3a{word-spacing:1.290667pt;}
.ws33{word-spacing:1.466667pt;}
.ws3c{word-spacing:1.525333pt;}
.ws53{word-spacing:1.536000pt;}
.wsa{word-spacing:1.792000pt;}
.ws38{word-spacing:1.818667pt;}
.ws54{word-spacing:1.920000pt;}
.ws3f{word-spacing:3.157333pt;}
.wsd{word-spacing:3.840000pt;}
.ws6{word-spacing:4.672000pt;}
.wsc{word-spacing:5.066667pt;}
.ws2e{word-spacing:6.000000pt;}
._15{margin-left:-11.916267pt;}
._b{margin-left:-8.050667pt;}
._c{margin-left:-6.681067pt;}
._3{margin-left:-5.546667pt;}
._2{margin-left:-4.160000pt;}
._0{margin-left:-2.676800pt;}
._4{margin-left:-1.275200pt;}
._5{width:1.120000pt;}
._6{width:2.618667pt;}
._7{width:3.672000pt;}
._9{width:5.366400pt;}
._8{width:6.316800pt;}
._d{width:7.213333pt;}
._e{width:8.202667pt;}
._14{width:11.035200pt;}
._11{width:12.054400pt;}
._17{width:29.178667pt;}
._13{width:32.464000pt;}
._12{width:35.749333pt;}
._16{width:45.488000pt;}
._1{width:464.555200pt;}
._f{width:1576.103467pt;}
._10{width:1579.269867pt;}
._a{width:1599.832533pt;}
.fs8{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fsa{font-size:34.202667pt;}
.fs9{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:59.931600pt;}
.yc3{bottom:94.488133pt;}
.y62{bottom:94.488267pt;}
.y92{bottom:94.488400pt;}
.y1e{bottom:95.580533pt;}
.y218{bottom:104.242400pt;}
.yc2{bottom:107.821467pt;}
.y61{bottom:107.821600pt;}
.y91{bottom:107.821733pt;}
.y1d{bottom:108.913867pt;}
.y144{bottom:109.598933pt;}
.y1af{bottom:115.380533pt;}
.y16d{bottom:115.380667pt;}
.y104{bottom:115.380800pt;}
.y60{bottom:121.154933pt;}
.y1a0{bottom:121.155067pt;}
.y217{bottom:121.575733pt;}
.y1c{bottom:122.247200pt;}
.y1f5{bottom:126.918000pt;}
.y143{bottom:126.932267pt;}
.ye9{bottom:128.713867pt;}
.y16c{bottom:128.714000pt;}
.y103{bottom:128.714133pt;}
.y90{bottom:128.714267pt;}
.y19f{bottom:134.488400pt;}
.y1ae{bottom:136.272933pt;}
.y1da{bottom:136.273067pt;}
.y18c{bottom:136.273333pt;}
.y102{bottom:142.047467pt;}
.y1b{bottom:143.581867pt;}
.y1f4{bottom:144.251333pt;}
.y16b{bottom:149.606400pt;}
.y8f{bottom:149.606667pt;}
.yc1{bottom:149.829867pt;}
.y216{bottom:150.689867pt;}
.y5f{bottom:153.768533pt;}
.y19e{bottom:155.380800pt;}
.y1ad{bottom:157.165333pt;}
.y18b{bottom:157.165867pt;}
.y142{bottom:158.711733pt;}
.y101{bottom:162.940000pt;}
.y1a{bottom:164.916400pt;}
.ye8{bottom:166.501733pt;}
.yc0{bottom:167.163200pt;}
.y215{bottom:168.023200pt;}
.y19d{bottom:168.714133pt;}
.y16a{bottom:170.498800pt;}
.y8e{bottom:170.499200pt;}
.y5e{bottom:171.101867pt;}
.y1f3{bottom:173.365333pt;}
.y100{bottom:176.273333pt;}
.y1ac{bottom:178.057733pt;}
.y19{bottom:182.245733pt;}
.y12b{bottom:183.832533pt;}
.ye7{bottom:183.835067pt;}
.ybf{bottom:184.496533pt;}
.y141{bottom:187.825867pt;}
.y5d{bottom:188.435200pt;}
.yff{bottom:189.606667pt;}
.y1f2{bottom:190.698667pt;}
.y1ab{bottom:191.391067pt;}
.y169{bottom:191.391200pt;}
.y18a{bottom:191.391600pt;}
.y8d{bottom:191.391733pt;}
.y214{bottom:197.137333pt;}
.y12a{bottom:197.165867pt;}
.ybe{bottom:201.829867pt;}
.y19c{bottom:202.940000pt;}
.y1aa{bottom:204.724400pt;}
.y189{bottom:204.724933pt;}
.y140{bottom:205.159200pt;}
.y5c{bottom:205.768533pt;}
.y1f1{bottom:208.032000pt;}
.yfe{bottom:210.499200pt;}
.y1d9{bottom:212.283467pt;}
.y168{bottom:212.283600pt;}
.y8c{bottom:212.284267pt;}
.ye6{bottom:212.949200pt;}
.y19b{bottom:216.273333pt;}
.y188{bottom:218.058267pt;}
.yfd{bottom:223.832533pt;}
.y1a9{bottom:225.616800pt;}
.y167{bottom:225.616933pt;}
.y213{bottom:226.251467pt;}
.ye5{bottom:230.282533pt;}
.ybd{bottom:230.943867pt;}
.y8b{bottom:233.176800pt;}
.y18{bottom:234.252267pt;}
.y13f{bottom:234.273333pt;}
.y5b{bottom:234.882667pt;}
.y1f0{bottom:237.146267pt;}
.y129{bottom:237.165867pt;}
.y166{bottom:238.950267pt;}
.y212{bottom:243.584800pt;}
.y1a8{bottom:246.509200pt;}
.y8a{bottom:246.510133pt;}
.y187{bottom:246.945200pt;}
.ye4{bottom:247.615867pt;}
.ybc{bottom:248.277200pt;}
.y128{bottom:250.499200pt;}
.y5a{bottom:252.216000pt;}
.y1ef{bottom:254.479600pt;}
.y19a{bottom:258.058400pt;}
.y13e{bottom:263.387467pt;}
.y186{bottom:264.278533pt;}
.ye3{bottom:264.949200pt;}
.ybb{bottom:265.610533pt;}
.y1a7{bottom:267.401600pt;}
.y1bf{bottom:267.402667pt;}
.y59{bottom:269.549333pt;}
.yfc{bottom:269.615733pt;}
.y1d8{bottom:272.048933pt;}
.y211{bottom:272.698933pt;}
.y89{bottom:275.168267pt;}
.y199{bottom:278.950933pt;}
.y127{bottom:279.158933pt;}
.y13d{bottom:280.720800pt;}
.y1a6{bottom:280.734933pt;}
.y185{bottom:281.611867pt;}
.ye2{bottom:282.282533pt;}
.yba{bottom:282.943867pt;}
.y1ee{bottom:283.593733pt;}
.y58{bottom:286.882667pt;}
.yfb{bottom:286.949067pt;}
.y1d7{bottom:289.382267pt;}
.y88{bottom:292.501600pt;}
.y126{bottom:296.492267pt;}
.y198{bottom:299.843467pt;}
.yb9{bottom:300.277200pt;}
.y1ed{bottom:300.927067pt;}
.y210{bottom:301.812933pt;}
.y57{bottom:304.216000pt;}
.yfa{bottom:304.282400pt;}
.y165{bottom:306.509467pt;}
.y1d6{bottom:306.715600pt;}
.y13c{bottom:309.392800pt;}
.y87{bottom:309.834933pt;}
.y184{bottom:310.726000pt;}
.y1be{bottom:310.726133pt;}
.ye1{bottom:311.396667pt;}
.y125{bottom:313.825600pt;}
.yb8{bottom:317.610533pt;}
.y20f{bottom:319.146267pt;}
.y56{bottom:321.549333pt;}
.yf9{bottom:321.615733pt;}
.y164{bottom:323.842800pt;}
.y1d5{bottom:324.048933pt;}
.y86{bottom:327.168267pt;}
.y183{bottom:328.059333pt;}
.y1bd{bottom:328.059467pt;}
.ye0{bottom:328.730000pt;}
.y1ec{bottom:330.041067pt;}
.y124{bottom:331.158933pt;}
.y1a5{bottom:334.958267pt;}
.y55{bottom:338.882667pt;}
.yf8{bottom:338.949067pt;}
.y163{bottom:341.176133pt;}
.y182{bottom:345.392667pt;}
.y1bc{bottom:345.392800pt;}
.ydf{bottom:346.063333pt;}
.yb7{bottom:346.724667pt;}
.y1eb{bottom:347.374533pt;}
.y20e{bottom:348.260400pt;}
.y123{bottom:348.492267pt;}
.y197{bottom:351.620933pt;}
.y13b{bottom:352.291600pt;}
.y1d4{bottom:353.163067pt;}
.y54{bottom:356.216000pt;}
.y85{bottom:356.282400pt;}
.y162{bottom:358.509467pt;}
.yde{bottom:363.396667pt;}
.yb6{bottom:364.058000pt;}
.y20d{bottom:365.593733pt;}
.y122{bottom:365.825600pt;}
.y196{bottom:368.954267pt;}
.y13a{bottom:369.624933pt;}
.y1bb{bottom:370.285067pt;}
.y1d3{bottom:370.496400pt;}
.y53{bottom:373.549333pt;}
.y84{bottom:373.615733pt;}
.y181{bottom:374.506800pt;}
.y1ea{bottom:376.488533pt;}
.ydd{bottom:380.730000pt;}
.yb5{bottom:381.391333pt;}
.y1a4{bottom:381.405733pt;}
.y121{bottom:383.158933pt;}
.y1ba{bottom:386.285067pt;}
.y195{bottom:386.287600pt;}
.y139{bottom:386.958267pt;}
.y1d2{bottom:387.829733pt;}
.y17{bottom:388.716533pt;}
.y161{bottom:390.288933pt;}
.y83{bottom:390.949067pt;}
.y180{bottom:391.840133pt;}
.y1e9{bottom:393.821867pt;}
.y20c{bottom:394.707867pt;}
.yb4{bottom:398.724667pt;}
.y1a3{bottom:398.739067pt;}
.y120{bottom:400.492267pt;}
.y52{bottom:402.221333pt;}
.y194{bottom:403.620933pt;}
.y1d1{bottom:405.163067pt;}
.y160{bottom:407.622267pt;}
.yf7{bottom:408.282400pt;}
.y17f{bottom:409.173467pt;}
.ydc{bottom:409.844133pt;}
.y1e8{bottom:411.155200pt;}
.y20b{bottom:412.041200pt;}
.yb3{bottom:416.058000pt;}
.y138{bottom:416.072400pt;}
.y16{bottom:416.716533pt;}
.y11f{bottom:417.825600pt;}
.y82{bottom:419.620933pt;}
.y193{bottom:420.954267pt;}
.y1b9{bottom:421.624933pt;}
.y1d0{bottom:422.496400pt;}
.yf6{bottom:425.615733pt;}
.y17e{bottom:426.506800pt;}
.ydb{bottom:427.177467pt;}
.y15{bottom:432.716533pt;}
.yb2{bottom:433.391333pt;}
.y137{bottom:433.405733pt;}
.y11e{bottom:435.158933pt;}
.y192{bottom:438.287600pt;}
.y1b8{bottom:438.958267pt;}
.y15f{bottom:439.401867pt;}
.y1e7{bottom:440.269333pt;}
.y20a{bottom:441.155333pt;}
.yf5{bottom:442.949067pt;}
.y17d{bottom:443.840133pt;}
.yda{bottom:444.510800pt;}
.y51{bottom:445.120133pt;}
.y14{bottom:448.716533pt;}
.yb1{bottom:450.724667pt;}
.y136{bottom:450.739067pt;}
.y1cf{bottom:451.610533pt;}
.y191{bottom:455.620933pt;}
.y1b7{bottom:456.291600pt;}
.y15e{bottom:456.735200pt;}
.y1e6{bottom:457.602667pt;}
.y209{bottom:458.488667pt;}
.yf4{bottom:460.282400pt;}
.y17c{bottom:461.173467pt;}
.yd9{bottom:461.844133pt;}
.y50{bottom:462.453467pt;}
.y81{bottom:462.519867pt;}
.y11d{bottom:463.830800pt;}
.y13{bottom:464.716533pt;}
.yb0{bottom:468.058000pt;}
.y135{bottom:468.072400pt;}
.y1ce{bottom:468.943867pt;}
.y1e5{bottom:474.936000pt;}
.yf3{bottom:477.615733pt;}
.yd8{bottom:479.177467pt;}
.y4f{bottom:479.786800pt;}
.y80{bottom:479.853200pt;}
.y190{bottom:480.513333pt;}
.yaf{bottom:485.391333pt;}
.y134{bottom:485.405733pt;}
.y1cd{bottom:486.277200pt;}
.y208{bottom:487.602800pt;}
.y15d{bottom:488.514667pt;}
.y17b{bottom:490.287600pt;}
.y12{bottom:495.834667pt;}
.y18f{bottom:496.513333pt;}
.y4e{bottom:497.120133pt;}
.y7f{bottom:497.186533pt;}
.yae{bottom:502.724667pt;}
.y133{bottom:502.739067pt;}
.y1e4{bottom:504.050133pt;}
.y207{bottom:504.936133pt;}
.y11c{bottom:506.729733pt;}
.yf2{bottom:506.729867pt;}
.y17a{bottom:507.620933pt;}
.yd7{bottom:508.291600pt;}
.y4d{bottom:514.453467pt;}
.y7e{bottom:514.519867pt;}
.y1cc{bottom:514.949067pt;}
.yad{bottom:520.058000pt;}
.y132{bottom:520.072400pt;}
.y15c{bottom:520.294267pt;}
.y1e3{bottom:521.383467pt;}
.y11b{bottom:524.063067pt;}
.yf1{bottom:524.063200pt;}
.y179{bottom:524.954267pt;}
.yd6{bottom:525.624933pt;}
.y11{bottom:526.952800pt;}
.y4c{bottom:531.786800pt;}
.y7d{bottom:531.853200pt;}
.y206{bottom:534.050267pt;}
.y131{bottom:537.405733pt;}
.y11a{bottom:541.396400pt;}
.yf0{bottom:541.396533pt;}
.y178{bottom:542.287600pt;}
.yd5{bottom:542.958267pt;}
.y10{bottom:545.619467pt;}
.y4b{bottom:549.120133pt;}
.yac{bottom:549.172267pt;}
.y7c{bottom:549.186533pt;}
.y1e2{bottom:550.497600pt;}
.y205{bottom:551.383600pt;}
.y15b{bottom:552.073733pt;}
.y1b6{bottom:554.739067pt;}
.y1cb{bottom:557.848000pt;}
.y33{bottom:558.198267pt;}
.y119{bottom:558.729733pt;}
.yef{bottom:558.729867pt;}
.y177{bottom:559.620933pt;}
.yd4{bottom:560.291600pt;}
.yf{bottom:564.286133pt;}
.y4a{bottom:566.453467pt;}
.yab{bottom:566.505600pt;}
.y7b{bottom:566.519867pt;}
.y1e1{bottom:567.830933pt;}
.y15a{bottom:569.407067pt;}
.y1b5{bottom:572.072400pt;}
.y1ca{bottom:575.181333pt;}
.y118{bottom:576.063067pt;}
.yee{bottom:576.063200pt;}
.yd3{bottom:577.624933pt;}
.y204{bottom:580.497733pt;}
.y49{bottom:583.786800pt;}
.yaa{bottom:583.838933pt;}
.y130{bottom:583.853200pt;}
.y1e0{bottom:585.164267pt;}
.y32{bottom:587.312267pt;}
.y176{bottom:588.734933pt;}
.y1b4{bottom:589.405733pt;}
.y1c9{bottom:592.514667pt;}
.y117{bottom:593.396400pt;}
.yed{bottom:593.396533pt;}
.yd2{bottom:594.958267pt;}
.y7a{bottom:595.634000pt;}
.y203{bottom:597.831067pt;}
.y159{bottom:598.521200pt;}
.y48{bottom:601.120133pt;}
.ya9{bottom:601.172267pt;}
.y12f{bottom:601.186533pt;}
.y175{bottom:606.068267pt;}
.y1b3{bottom:606.739067pt;}
.y116{bottom:610.729733pt;}
.yec{bottom:610.729867pt;}
.yd1{bottom:612.291600pt;}
.y79{bottom:612.967333pt;}
.y1df{bottom:614.278400pt;}
.y158{bottom:615.854533pt;}
.y31{bottom:616.426400pt;}
.ya8{bottom:618.505600pt;}
.y12e{bottom:618.519867pt;}
.ye{bottom:621.190267pt;}
.y174{bottom:623.401600pt;}
.y1c8{bottom:624.294133pt;}
.y202{bottom:626.945200pt;}
.y47{bottom:630.234267pt;}
.y78{bottom:630.300667pt;}
.y1de{bottom:631.611733pt;}
.y157{bottom:633.187867pt;}
.ya7{bottom:635.838933pt;}
.y12d{bottom:635.853200pt;}
.yd{bottom:637.190267pt;}
.yeb{bottom:639.401733pt;}
.y115{bottom:639.843867pt;}
.y173{bottom:640.734933pt;}
.yd0{bottom:641.405733pt;}
.y1c7{bottom:641.627467pt;}
.y201{bottom:644.278533pt;}
.y30{bottom:645.540533pt;}
.y46{bottom:647.567600pt;}
.y77{bottom:647.634000pt;}
.y1dd{bottom:648.945067pt;}
.y156{bottom:650.521200pt;}
.ya6{bottom:653.172267pt;}
.y1a2{bottom:653.186533pt;}
.y114{bottom:657.177200pt;}
.y172{bottom:658.068267pt;}
.ycf{bottom:658.739067pt;}
.y1c6{bottom:658.960800pt;}
.yc{bottom:661.191467pt;}
.y45{bottom:664.900933pt;}
.y76{bottom:664.967333pt;}
.y155{bottom:667.854533pt;}
.ya5{bottom:670.505600pt;}
.y1a1{bottom:670.519867pt;}
.y200{bottom:673.392667pt;}
.y1dc{bottom:673.837467pt;}
.y113{bottom:674.510533pt;}
.y2f{bottom:674.654667pt;}
.y171{bottom:675.401600pt;}
.yce{bottom:676.072400pt;}
.y1c5{bottom:676.294133pt;}
.yb{bottom:677.191467pt;}
.y44{bottom:682.234267pt;}
.y75{bottom:682.300667pt;}
.y154{bottom:685.187867pt;}
.ya4{bottom:687.838933pt;}
.y1b2{bottom:687.853200pt;}
.y1ff{bottom:690.726000pt;}
.y112{bottom:691.843867pt;}
.y2e{bottom:691.988000pt;}
.ya{bottom:693.191467pt;}
.ycd{bottom:693.405733pt;}
.y43{bottom:699.567600pt;}
.y74{bottom:699.634000pt;}
.y170{bottom:700.294133pt;}
.y1b1{bottom:705.186533pt;}
.y1c4{bottom:708.073600pt;}
.y1db{bottom:708.735067pt;}
.y111{bottom:709.177200pt;}
.y9{bottom:709.191467pt;}
.ycc{bottom:710.739067pt;}
.y153{bottom:714.301867pt;}
.y16f{bottom:716.294133pt;}
.y42{bottom:716.900933pt;}
.ya3{bottom:716.952933pt;}
.y73{bottom:716.967333pt;}
.y1fe{bottom:719.840133pt;}
.y2d{bottom:721.102133pt;}
.y1c3{bottom:725.406933pt;}
.y110{bottom:726.510533pt;}
.y152{bottom:731.635200pt;}
.y41{bottom:734.234267pt;}
.ya2{bottom:734.286267pt;}
.y72{bottom:734.300667pt;}
.y8{bottom:736.530133pt;}
.y1fd{bottom:737.173467pt;}
.y2c{bottom:738.435467pt;}
.ycb{bottom:739.853200pt;}
.y1c2{bottom:742.740267pt;}
.y10f{bottom:743.843867pt;}
.y18e{bottom:746.081467pt;}
.y151{bottom:748.968533pt;}
.y40{bottom:751.567600pt;}
.ya1{bottom:751.619600pt;}
.yea{bottom:751.634000pt;}
.yca{bottom:757.186533pt;}
.y71{bottom:763.414800pt;}
.y1fc{bottom:766.287600pt;}
.y150{bottom:766.301867pt;}
.y2b{bottom:767.549600pt;}
.y3f{bottom:768.900933pt;}
.ya0{bottom:768.952933pt;}
.y12c{bottom:768.967333pt;}
.y10e{bottom:772.958133pt;}
.y1c1{bottom:774.519867pt;}
.y70{bottom:780.748133pt;}
.y1fb{bottom:783.620933pt;}
.y14f{bottom:783.635200pt;}
.y2a{bottom:784.882933pt;}
.y3e{bottom:786.234267pt;}
.y9f{bottom:786.286267pt;}
.yc9{bottom:786.300667pt;}
.y10d{bottom:790.291467pt;}
.y7{bottom:790.325333pt;}
.y1c0{bottom:791.853200pt;}
.y6f{bottom:798.081467pt;}
.y14e{bottom:800.968533pt;}
.yc8{bottom:803.634000pt;}
.y10c{bottom:807.624800pt;}
.y1fa{bottom:812.735067pt;}
.y29{bottom:813.997067pt;}
.y3d{bottom:815.348533pt;}
.y9e{bottom:815.400533pt;}
.y6e{bottom:815.414800pt;}
.y14d{bottom:818.301867pt;}
.yc7{bottom:820.967333pt;}
.y10b{bottom:824.958133pt;}
.y220{bottom:826.505600pt;}
.y6{bottom:829.002533pt;}
.y1f9{bottom:830.068400pt;}
.y3c{bottom:832.681867pt;}
.y9d{bottom:832.733867pt;}
.y6d{bottom:832.748133pt;}
.y14c{bottom:835.635200pt;}
.yc6{bottom:838.300667pt;}
.y10a{bottom:842.291467pt;}
.y28{bottom:843.111200pt;}
.y21f{bottom:843.838933pt;}
.y5{bottom:847.669200pt;}
.y3b{bottom:850.015200pt;}
.y9c{bottom:850.067200pt;}
.y6c{bottom:850.081467pt;}
.y14b{bottom:852.968533pt;}
.y1f8{bottom:854.960800pt;}
.yc5{bottom:855.634000pt;}
.y109{bottom:859.624800pt;}
.y21e{bottom:861.172267pt;}
.y4{bottom:866.335867pt;}
.y3a{bottom:867.348533pt;}
.y9b{bottom:867.400533pt;}
.y6b{bottom:867.414800pt;}
.y3{bottom:867.814933pt;}
.y14a{bottom:870.301867pt;}
.y27{bottom:872.225200pt;}
.yc4{bottom:872.967333pt;}
.y21d{bottom:878.505600pt;}
.y39{bottom:884.681867pt;}
.y9a{bottom:884.733867pt;}
.y6a{bottom:884.748133pt;}
.y149{bottom:887.635200pt;}
.y108{bottom:888.296667pt;}
.y1f7{bottom:890.300667pt;}
.y18d{bottom:896.528933pt;}
.y26{bottom:901.339333pt;}
.y38{bottom:902.015200pt;}
.y99{bottom:902.067200pt;}
.y69{bottom:902.081467pt;}
.y148{bottom:904.968533pt;}
.y21c{bottom:907.619600pt;}
.y1f6{bottom:907.634000pt;}
.y16e{bottom:913.862267pt;}
.y37{bottom:919.348533pt;}
.y98{bottom:919.400533pt;}
.y68{bottom:919.414800pt;}
.y2{bottom:923.665467pt;}
.y21b{bottom:924.952933pt;}
.y25{bottom:930.453467pt;}
.y107{bottom:931.195600pt;}
.y147{bottom:934.082667pt;}
.y36{bottom:936.681867pt;}
.y67{bottom:936.748133pt;}
.y97{bottom:948.514533pt;}
.y106{bottom:948.528933pt;}
.y146{bottom:951.416000pt;}
.y35{bottom:954.015200pt;}
.y21a{bottom:954.067200pt;}
.y66{bottom:954.081467pt;}
.y24{bottom:959.567600pt;}
.y96{bottom:965.847867pt;}
.y105{bottom:965.862267pt;}
.y145{bottom:968.749333pt;}
.y34{bottom:971.348533pt;}
.y219{bottom:971.400533pt;}
.y1b0{bottom:971.414800pt;}
.y1{bottom:981.038800pt;}
.y95{bottom:983.181200pt;}
.y65{bottom:983.195600pt;}
.y23{bottom:988.681867pt;}
.y94{bottom:1000.514533pt;}
.y64{bottom:1000.528933pt;}
.y22{bottom:1017.353733pt;}
.y93{bottom:1017.847867pt;}
.y63{bottom:1017.862267pt;}
.y20{bottom:1072.557467pt;}
.y1f{bottom:1085.357467pt;}
.he{height:26.133188pt;}
.h10{height:31.062500pt;}
.hd{height:33.351562pt;}
.hc{height:37.031250pt;}
.h8{height:37.057292pt;}
.h6{height:39.364401pt;}
.h12{height:40.161458pt;}
.h13{height:40.734375pt;}
.h4{height:40.763021pt;}
.hf{height:42.117188pt;}
.hb{height:42.710938pt;}
.ha{height:46.593750pt;}
.h9{height:46.796875pt;}
.h3{height:47.146667pt;}
.h11{height:51.476562pt;}
.h7{height:52.966146pt;}
.h5{height:57.781250pt;}
.h2{height:89.501933pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x6{left:105.826800pt;}
.x7{left:113.421467pt;}
.xa{left:115.842533pt;}
.x8{left:120.944933pt;}
.xb{left:132.283467pt;}
.x9{left:139.842533pt;}
.x1{left:173.858267pt;}
.x2{left:175.324000pt;}
.x5{left:192.023467pt;}
.x4{left:627.257867pt;}
}




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