
    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_50aaa8fb28495f7fd613d53d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f472ea90f101cc9d361ba40.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad2a53230c747db1ad896141.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_200b47e77a7588a10f8066b6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ff49d82ec291f497a2283689.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dac17f505c0bd70c27121f3d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_740a78ea1f465db3905547cd.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_819653cafc949cb64446a065.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_70fe1cbd014e2386486882cf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_5fbb912db699feecd48c546e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944824;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_e94c580c265a4e44ba24edb2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.082520;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.640000px;}
.v2{vertical-align:86.400000px;}
.ls2d{letter-spacing:-7.200000px;}
.ls5b{letter-spacing:-6.600000px;}
.ls27{letter-spacing:-6.480000px;}
.ls53{letter-spacing:-2.808000px;}
.ls60{letter-spacing:-2.574000px;}
.ls46{letter-spacing:-2.448000px;}
.ls45{letter-spacing:-1.656000px;}
.ls34{letter-spacing:-1.152000px;}
.ls35{letter-spacing:-1.008000px;}
.ls36{letter-spacing:-0.864000px;}
.ls63{letter-spacing:-0.858000px;}
.ls32{letter-spacing:-0.792000px;}
.ls72{letter-spacing:-0.726000px;}
.ls19{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.660000px;}
.ls4e{letter-spacing:-0.648000px;}
.ls67{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls73{letter-spacing:-0.528000px;}
.ls37{letter-spacing:-0.513000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls61{letter-spacing:-0.462000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls62{letter-spacing:-0.396000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls33{letter-spacing:-0.360000px;}
.ls59{letter-spacing:-0.330000px;}
.ls2e{letter-spacing:-0.315000px;}
.ls4d{letter-spacing:-0.288000px;}
.ls47{letter-spacing:-0.285000px;}
.ls58{letter-spacing:-0.264000px;}
.ls28{letter-spacing:-0.252000px;}
.ls31{letter-spacing:-0.228000px;}
.ls51{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.198000px;}
.ls1e{letter-spacing:-0.189000px;}
.ls2f{letter-spacing:-0.171000px;}
.ls17{letter-spacing:-0.144000px;}
.ls5a{letter-spacing:-0.132000px;}
.ls52{letter-spacing:-0.072000px;}
.ls6d{letter-spacing:-0.066000px;}
.ls30{letter-spacing:-0.057000px;}
.ls9{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.001800px;}
.ls5f{letter-spacing:0.066000px;}
.ls39{letter-spacing:0.068400px;}
.lse{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.084000px;}
.ls12{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.189000px;}
.ls56{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.215400px;}
.ls24{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.264000px;}
.lsf{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.315000px;}
.ls6{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.396000px;}
.ls18{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.441000px;}
.ls26{letter-spacing:0.446400px;}
.ls7{letter-spacing:0.462000px;}
.ls23{letter-spacing:0.504000px;}
.ls4a{letter-spacing:0.576000px;}
.ls55{letter-spacing:0.594000px;}
.ls49{letter-spacing:0.648000px;}
.ls54{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.726000px;}
.ls29{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.936000px;}
.ls15{letter-spacing:1.008000px;}
.ls2c{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.152000px;}
.ls25{letter-spacing:1.296000px;}
.lsd{letter-spacing:2.081937px;}
.ls74{letter-spacing:2.508000px;}
.ls68{letter-spacing:2.633400px;}
.ls4c{letter-spacing:3.096000px;}
.ls4f{letter-spacing:4.111200px;}
.ls0{letter-spacing:4.200000px;}
.ls1d{letter-spacing:4.960800px;}
.ls42{letter-spacing:5.047200px;}
.ls44{letter-spacing:5.112000px;}
.ls5d{letter-spacing:5.148000px;}
.ls21{letter-spacing:5.400000px;}
.ls5e{letter-spacing:5.775000px;}
.ls5c{letter-spacing:5.966400px;}
.ls57{letter-spacing:6.000000px;}
.lsa{letter-spacing:6.120000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls4b{letter-spacing:8.676000px;}
.ls3f{letter-spacing:8.798400px;}
.ls3d{letter-spacing:8.834400px;}
.ls3b{letter-spacing:8.928000px;}
.ls43{letter-spacing:9.216000px;}
.ls40{letter-spacing:9.403200px;}
.ls48{letter-spacing:10.080000px;}
.ls3c{letter-spacing:10.130400px;}
.ls3e{letter-spacing:10.152000px;}
.ls2{letter-spacing:10.200000px;}
.ls3a{letter-spacing:10.224000px;}
.ls65{letter-spacing:10.296000px;}
.ls70{letter-spacing:10.428000px;}
.ls69{letter-spacing:10.560000px;}
.ls6c{letter-spacing:10.758000px;}
.ls6e{letter-spacing:10.824000px;}
.ls6f{letter-spacing:10.890000px;}
.ls64{letter-spacing:10.956000px;}
.ls6a{letter-spacing:11.088000px;}
.ls6b{letter-spacing:11.550000px;}
.ls71{letter-spacing:19.800000px;}
.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;}
}
.ws79{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws78{word-spacing:-24.984000px;}
.ws34{word-spacing:-20.592000px;}
.ws55{word-spacing:-20.448000px;}
.ws47{word-spacing:-20.376000px;}
.ws48{word-spacing:-20.232000px;}
.ws54{word-spacing:-20.088000px;}
.ws81{word-spacing:-19.800000px;}
.ws3e{word-spacing:-19.728000px;}
.ws15{word-spacing:-18.648000px;}
.ws3{word-spacing:-18.546000px;}
.ws2a{word-spacing:-18.504000px;}
.ws2b{word-spacing:-18.288000px;}
.ws49{word-spacing:-18.144000px;}
.ws12{word-spacing:-17.928000px;}
.ws23{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.280000px;}
.ws40{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.698000px;}
.ws80{word-spacing:-16.566000px;}
.ws77{word-spacing:-16.368000px;}
.ws2{word-spacing:-16.302000px;}
.ws82{word-spacing:-16.170000px;}
.ws4a{word-spacing:-16.017000px;}
.ws6d{word-spacing:-15.642000px;}
.ws2d{word-spacing:-15.561000px;}
.ws2c{word-spacing:-15.372000px;}
.ws24{word-spacing:-15.174000px;}
.ws4b{word-spacing:-14.079000px;}
.ws14{word-spacing:-12.139200px;}
.ws72{word-spacing:-11.550000px;}
.ws76{word-spacing:-11.088000px;}
.ws70{word-spacing:-10.956000px;}
.ws7d{word-spacing:-10.890000px;}
.ws7a{word-spacing:-10.824000px;}
.ws73{word-spacing:-10.758000px;}
.ws75{word-spacing:-10.560000px;}
.ws7e{word-spacing:-10.428000px;}
.ws71{word-spacing:-10.296000px;}
.ws8{word-spacing:-10.200000px;}
.ws7f{word-spacing:-9.000000px;}
.ws5e{word-spacing:-7.200000px;}
.ws7{word-spacing:-6.600000px;}
.ws9{word-spacing:-6.120000px;}
.ws5f{word-spacing:-6.000000px;}
.ws29{word-spacing:-5.400000px;}
.ws6{word-spacing:-4.200000px;}
.ws32{word-spacing:-1.296000px;}
.ws36{word-spacing:-1.152000px;}
.ws3a{word-spacing:-1.080000px;}
.ws21{word-spacing:-1.008000px;}
.ws50{word-spacing:-0.936000px;}
.ws4c{word-spacing:-0.864000px;}
.ws35{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.726000px;}
.ws2e{word-spacing:-0.720000px;}
.ws62{word-spacing:-0.660000px;}
.ws56{word-spacing:-0.648000px;}
.ws63{word-spacing:-0.594000px;}
.ws59{word-spacing:-0.576000px;}
.ws30{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.462000px;}
.ws39{word-spacing:-0.441000px;}
.ws1e{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.396000px;}
.ws19{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.330000px;}
.ws28{word-spacing:-0.315000px;}
.ws18{word-spacing:-0.288000px;}
.wse{word-spacing:-0.264000px;}
.ws31{word-spacing:-0.216000px;}
.ws65{word-spacing:-0.198000px;}
.ws1c{word-spacing:-0.189000px;}
.ws1d{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.132000px;}
.ws1b{word-spacing:-0.126000px;}
.ws17{word-spacing:-0.072000px;}
.ws67{word-spacing:-0.066000px;}
.ws6c{word-spacing:-0.060000px;}
.ws3f{word-spacing:-0.043200px;}
.ws5{word-spacing:0.000000px;}
.ws3c{word-spacing:0.057000px;}
.ws74{word-spacing:0.066000px;}
.ws5c{word-spacing:0.072000px;}
.ws6a{word-spacing:0.132000px;}
.ws1a{word-spacing:0.144000px;}
.ws3b{word-spacing:0.171000px;}
.ws26{word-spacing:0.189000px;}
.wsc{word-spacing:0.198000px;}
.ws5b{word-spacing:0.216000px;}
.ws3d{word-spacing:0.228000px;}
.ws33{word-spacing:0.252000px;}
.ws60{word-spacing:0.264000px;}
.ws53{word-spacing:0.285000px;}
.ws57{word-spacing:0.288000px;}
.ws38{word-spacing:0.315000px;}
.ws61{word-spacing:0.330000px;}
.ws42{word-spacing:0.360000px;}
.ws27{word-spacing:0.378000px;}
.ws69{word-spacing:0.396000px;}
.ws22{word-spacing:0.432000px;}
.ws68{word-spacing:0.462000px;}
.ws43{word-spacing:0.504000px;}
.ws46{word-spacing:0.513000px;}
.ws7c{word-spacing:0.528000px;}
.ws20{word-spacing:0.576000px;}
.ws6f{word-spacing:0.594000px;}
.ws5a{word-spacing:0.648000px;}
.ws6e{word-spacing:0.660000px;}
.ws1f{word-spacing:0.720000px;}
.ws7b{word-spacing:0.726000px;}
.ws41{word-spacing:0.792000px;}
.ws6b{word-spacing:0.858000px;}
.ws45{word-spacing:1.008000px;}
.ws44{word-spacing:1.152000px;}
.ws4f{word-spacing:1.656000px;}
.ws51{word-spacing:2.448000px;}
.ws66{word-spacing:2.574000px;}
.ws5d{word-spacing:2.808000px;}
.ws16{word-spacing:2.940000px;}
.wsd{word-spacing:4.092000px;}
.ws25{word-spacing:4.464000px;}
.ws52{word-spacing:5.184000px;}
.ws2f{word-spacing:6.480000px;}
.ws64{word-spacing:6.600000px;}
.ws37{word-spacing:7.200000px;}
.ws4d{word-spacing:7.488000px;}
.ws58{word-spacing:8.856000px;}
.ws4e{word-spacing:10.152000px;}
._15{margin-left:-21.186000px;}
._19{margin-left:-18.345600px;}
._16{margin-left:-15.366000px;}
._12{margin-left:-13.819800px;}
._1a{margin-left:-12.771000px;}
._8{margin-left:-11.077200px;}
._11{margin-left:-8.626200px;}
._3{margin-left:-6.619800px;}
._1{margin-left:-4.956600px;}
._e{margin-left:-3.295200px;}
._6{margin-left:-2.152200px;}
._4{margin-left:-1.062000px;}
._5{width:1.230000px;}
._f{width:2.913000px;}
._0{width:4.200000px;}
._b{width:6.036600px;}
._7{width:7.221000px;}
._10{width:8.329200px;}
._d{width:9.332400px;}
._2{width:11.253000px;}
._14{width:12.837000px;}
._c{width:14.670000px;}
._9{width:16.422000px;}
._a{width:18.318600px;}
._18{width:19.602000px;}
._17{width:21.450000px;}
._13{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs6{font-size:210.891000px;}
.y0{bottom:0.000000px;}
.y20{bottom:61.939350px;}
.y1{bottom:76.339350px;}
.ya9{bottom:140.308950px;}
.y44{bottom:140.311950px;}
.ye3{bottom:140.313450px;}
.y60{bottom:140.314950px;}
.y116{bottom:141.610350px;}
.y1f{bottom:142.183200px;}
.y186{bottom:142.221900px;}
.y84{bottom:143.790450px;}
.y13a{bottom:144.750900px;}
.y1a9{bottom:144.801300px;}
.y161{bottom:144.928800px;}
.yfa{bottom:145.020300px;}
.y1cb{bottom:145.096800px;}
.y112{bottom:150.114300px;}
.ya8{bottom:156.810450px;}
.y43{bottom:156.813450px;}
.y5f{bottom:156.814950px;}
.ye2{bottom:162.364950px;}
.y185{bottom:162.467400px;}
.y1e{bottom:163.039200px;}
.y115{bottom:163.210350px;}
.y1a8{bottom:164.452800px;}
.y1ca{bottom:164.599800px;}
.y139{bottom:164.996400px;}
.y160{bottom:165.025800px;}
.y83{bottom:165.696450px;}
.yf9{bottom:167.070300px;}
.y111{bottom:171.714300px;}
.ye1{bottom:173.308950px;}
.ya7{bottom:173.311950px;}
.y5e{bottom:173.314950px;}
.y42{bottom:178.864950px;}
.y184{bottom:182.712900px;}
.y1d{bottom:183.895200px;}
.y1c9{bottom:184.102800px;}
.y1a7{bottom:184.104300px;}
.y114{bottom:184.810350px;}
.y15f{bottom:185.122800px;}
.y138{bottom:185.241900px;}
.y82{bottom:187.602450px;}
.yf8{bottom:189.120300px;}
.y41{bottom:189.810450px;}
.ya6{bottom:189.813450px;}
.y5d{bottom:189.814950px;}
.y110{bottom:193.314300px;}
.y183{bottom:202.958400px;}
.y1c8{bottom:203.605800px;}
.y1a6{bottom:203.755800px;}
.y1c{bottom:204.751200px;}
.y15e{bottom:205.219800px;}
.y137{bottom:205.487400px;}
.y40{bottom:206.311950px;}
.y5c{bottom:206.314950px;}
.y113{bottom:206.410350px;}
.yf7{bottom:211.170300px;}
.ya5{bottom:211.864950px;}
.y10f{bottom:214.914300px;}
.y81{bottom:222.246300px;}
.ya4{bottom:222.810450px;}
.y3f{bottom:222.813450px;}
.y1c7{bottom:223.108800px;}
.y182{bottom:223.203900px;}
.y1a5{bottom:223.407300px;}
.y15d{bottom:225.316800px;}
.y1b{bottom:225.607200px;}
.y136{bottom:225.732900px;}
.yc7{bottom:227.040300px;}
.y5b{bottom:228.364950px;}
.yf6{bottom:233.220300px;}
.y10e{bottom:236.514300px;}
.ya3{bottom:239.311950px;}
.y80{bottom:240.547800px;}
.y1c6{bottom:242.611800px;}
.y1a4{bottom:243.058800px;}
.y3e{bottom:244.864950px;}
.y15c{bottom:245.413800px;}
.y135{bottom:245.978400px;}
.y1a{bottom:246.463200px;}
.yc6{bottom:249.396300px;}
.y181{bottom:251.958000px;}
.yf5{bottom:255.270300px;}
.ya2{bottom:255.813450px;}
.y10d{bottom:258.114300px;}
.y7f{bottom:258.849300px;}
.y1a3{bottom:262.710300px;}
.y15b{bottom:265.510800px;}
.y134{bottom:266.223900px;}
.y19{bottom:267.319200px;}
.yc5{bottom:271.302300px;}
.y5a{bottom:274.436250px;}
.y7e{bottom:277.150800px;}
.yf4{bottom:277.320300px;}
.ya1{bottom:277.864950px;}
.y10c{bottom:279.714300px;}
.y1a2{bottom:282.361800px;}
.y1c5{bottom:283.411800px;}
.y15a{bottom:285.607800px;}
.y133{bottom:286.469400px;}
.y18{bottom:288.175200px;}
.yc4{bottom:293.208300px;}
.y3d{bottom:293.802450px;}
.y7d{bottom:295.452300px;}
.yf3{bottom:299.370300px;}
.y180{bottom:301.101300px;}
.y10b{bottom:301.314300px;}
.y159{bottom:305.704800px;}
.y132{bottom:306.714900px;}
.y59{bottom:308.812200px;}
.y17{bottom:309.031200px;}
.y7c{bottom:313.753800px;}
.yc3{bottom:314.958300px;}
.y3c{bottom:315.402450px;}
.y17f{bottom:321.346800px;}
.yf2{bottom:321.420300px;}
.ya0{bottom:322.902450px;}
.y10a{bottom:322.914300px;}
.y1a1{bottom:323.461800px;}
.y1c4{bottom:324.223800px;}
.y58{bottom:324.418200px;}
.ye0{bottom:324.460350px;}
.y158{bottom:325.801800px;}
.y131{bottom:326.960400px;}
.y7b{bottom:332.055300px;}
.yc2{bottom:336.864300px;}
.y3b{bottom:337.002450px;}
.y16{bottom:338.385150px;}
.y17e{bottom:341.592300px;}
.yf1{bottom:343.470300px;}
.y9f{bottom:344.502450px;}
.y109{bottom:344.514300px;}
.y1c3{bottom:345.517800px;}
.y157{bottom:345.898800px;}
.ydf{bottom:346.510350px;}
.y130{bottom:347.205900px;}
.y57{bottom:348.515700px;}
.y7a{bottom:350.356800px;}
.y3a{bottom:358.602450px;}
.yc1{bottom:358.770300px;}
.y17d{bottom:361.837800px;}
.y56{bottom:364.121700px;}
.y1a0{bottom:364.543800px;}
.yf0{bottom:365.520300px;}
.y156{bottom:365.995800px;}
.y9e{bottom:366.102450px;}
.y108{bottom:366.114300px;}
.y1c2{bottom:366.811800px;}
.y12f{bottom:367.451400px;}
.yde{bottom:368.560350px;}
.y79{bottom:368.658300px;}
.y39{bottom:380.202450px;}
.yc0{bottom:380.676300px;}
.y17c{bottom:382.083300px;}
.y19f{bottom:385.999800px;}
.y155{bottom:386.092800px;}
.yef{bottom:387.570300px;}
.y12e{bottom:387.696900px;}
.y9d{bottom:387.702450px;}
.y107{bottom:387.714300px;}
.y1c1{bottom:388.111800px;}
.y55{bottom:388.219200px;}
.ydd{bottom:390.610350px;}
.y15{bottom:392.146950px;}
.y78{bottom:399.666300px;}
.y38{bottom:401.802450px;}
.y17b{bottom:402.328800px;}
.ybf{bottom:402.582300px;}
.y54{bottom:403.825200px;}
.y154{bottom:406.189800px;}
.y19e{bottom:407.455800px;}
.y12d{bottom:407.942400px;}
.y9c{bottom:409.302450px;}
.y106{bottom:409.314300px;}
.yee{bottom:409.620300px;}
.ydc{bottom:412.660350px;}
.y14{bottom:413.002950px;}
.y77{bottom:421.572300px;}
.y17a{bottom:422.574300px;}
.y37{bottom:423.402450px;}
.ybe{bottom:424.488300px;}
.y153{bottom:426.286800px;}
.y53{bottom:427.922700px;}
.y12c{bottom:428.187900px;}
.y19d{bottom:428.911800px;}
.y9b{bottom:430.902450px;}
.y105{bottom:430.914300px;}
.yed{bottom:431.670300px;}
.y13{bottom:433.858950px;}
.ydb{bottom:434.710350px;}
.y179{bottom:442.819800px;}
.y76{bottom:443.478300px;}
.y52{bottom:443.528700px;}
.y36{bottom:445.002450px;}
.y152{bottom:446.383800px;}
.ybd{bottom:446.394300px;}
.y1c0{bottom:448.411800px;}
.y12b{bottom:448.433400px;}
.y19c{bottom:450.361800px;}
.y9a{bottom:452.502450px;}
.y104{bottom:452.514300px;}
.yec{bottom:453.720300px;}
.y12{bottom:454.714950px;}
.yda{bottom:456.760350px;}
.y1e1{bottom:458.911800px;}
.y178{bottom:463.065300px;}
.y75{bottom:465.384300px;}
.y1bf{bottom:466.111800px;}
.y151{bottom:466.480800px;}
.y35{bottom:466.602450px;}
.y51{bottom:467.626200px;}
.ybc{bottom:468.300300px;}
.y12a{bottom:468.678900px;}
.y99{bottom:474.102450px;}
.y103{bottom:474.114300px;}
.y11{bottom:475.570950px;}
.yeb{bottom:475.770300px;}
.y1e0{bottom:476.911800px;}
.yd9{bottom:478.810350px;}
.y50{bottom:483.232200px;}
.y177{bottom:483.310800px;}
.y1be{bottom:483.811800px;}
.y150{bottom:486.577800px;}
.y74{bottom:487.290300px;}
.y34{bottom:488.202450px;}
.y129{bottom:488.924400px;}
.ybb{bottom:490.206300px;}
.y1df{bottom:494.911800px;}
.y98{bottom:495.702450px;}
.y102{bottom:495.714300px;}
.y10{bottom:496.426950px;}
.yea{bottom:497.820300px;}
.yd8{bottom:500.860350px;}
.y1bd{bottom:501.511800px;}
.y176{bottom:503.556300px;}
.y14f{bottom:506.674800px;}
.y4f{bottom:507.329700px;}
.y128{bottom:509.021400px;}
.y73{bottom:509.196300px;}
.y33{bottom:509.802450px;}
.y19b{bottom:511.118550px;}
.yba{bottom:512.112300px;}
.y1de{bottom:512.911800px;}
.yf{bottom:517.282950px;}
.y101{bottom:517.314300px;}
.y1bc{bottom:519.211800px;}
.ye9{bottom:519.870300px;}
.yd7{bottom:522.910350px;}
.y4e{bottom:522.935700px;}
.y175{bottom:523.801800px;}
.y14e{bottom:526.771800px;}
.y19a{bottom:528.061800px;}
.y127{bottom:529.118400px;}
.y97{bottom:530.044950px;}
.y1dd{bottom:530.911800px;}
.y72{bottom:531.102300px;}
.y32{bottom:531.402450px;}
.yb9{bottom:534.018300px;}
.ye{bottom:538.138950px;}
.y100{bottom:538.914300px;}
.ye8{bottom:541.920300px;}
.y174{bottom:544.047300px;}
.yd6{bottom:544.960350px;}
.y14d{bottom:546.868800px;}
.y4d{bottom:547.033200px;}
.y96{bottom:548.047200px;}
.y126{bottom:549.215400px;}
.y71{bottom:553.008300px;}
.y199{bottom:555.333300px;}
.yb8{bottom:555.924300px;}
.y1bb{bottom:558.208800px;}
.yff{bottom:560.514300px;}
.y4c{bottom:562.639200px;}
.ye7{bottom:563.970300px;}
.y173{bottom:564.292800px;}
.y31{bottom:565.749300px;}
.y95{bottom:566.049450px;}
.y14c{bottom:566.965800px;}
.yd5{bottom:567.010350px;}
.yd{bottom:567.492900px;}
.y125{bottom:569.312400px;}
.y1dc{bottom:570.511800px;}
.y70{bottom:574.914300px;}
.y198{bottom:574.984800px;}
.y1ba{bottom:577.711800px;}
.yb7{bottom:577.830300px;}
.yfe{bottom:582.114300px;}
.y30{bottom:583.751550px;}
.y94{bottom:584.051700px;}
.y172{bottom:584.538300px;}
.ye6{bottom:586.020300px;}
.y14b{bottom:587.062800px;}
.yd4{bottom:589.060350px;}
.y124{bottom:589.409400px;}
.y1db{bottom:590.311800px;}
.y4b{bottom:592.602450px;}
.y197{bottom:594.636300px;}
.y6f{bottom:596.964300px;}
.yb6{bottom:599.736300px;}
.y2f{bottom:601.753800px;}
.y93{bottom:602.053950px;}
.yfd{bottom:603.714300px;}
.y171{bottom:604.783800px;}
.y14a{bottom:607.159800px;}
.ye5{bottom:608.070300px;}
.y123{bottom:609.506400px;}
.yd3{bottom:611.110350px;}
.y4a{bottom:614.202450px;}
.y196{bottom:614.287800px;}
.y1b9{bottom:616.663800px;}
.y6e{bottom:619.014300px;}
.y2e{bottom:619.756050px;}
.y92{bottom:620.056200px;}
.yb5{bottom:621.642300px;}
.yc{bottom:621.936900px;}
.y170{bottom:625.029300px;}
.yfc{bottom:625.314300px;}
.y149{bottom:627.256800px;}
.ye4{bottom:630.120300px;}
.y1da{bottom:631.711800px;}
.yd2{bottom:633.160350px;}
.y195{bottom:633.939300px;}
.y1b8{bottom:636.166800px;}
.y2d{bottom:637.758300px;}
.y91{bottom:638.058450px;}
.y122{bottom:638.110350px;}
.y6d{bottom:641.064300px;}
.yb{bottom:642.792900px;}
.yb4{bottom:643.548300px;}
.y16f{bottom:645.274800px;}
.yfb{bottom:646.914300px;}
.y148{bottom:647.353800px;}
.y49{bottom:648.551700px;}
.y1d9{bottom:651.511800px;}
.y194{bottom:653.590800px;}
.yd1{bottom:655.210350px;}
.y1b7{bottom:655.669800px;}
.y6c{bottom:663.114300px;}
.yb3{bottom:665.454300px;}
.y16e{bottom:665.520300px;}
.y48{bottom:666.553950px;}
.y147{bottom:667.450800px;}
.y2c{bottom:668.514300px;}
.y90{bottom:668.820300px;}
.y1d8{bottom:671.311800px;}
.y193{bottom:673.242300px;}
.y1b6{bottom:675.172800px;}
.yd0{bottom:677.260350px;}
.y47{bottom:684.556200px;}
.y6b{bottom:685.164300px;}
.y16d{bottom:685.765800px;}
.ya{bottom:686.306400px;}
.y121{bottom:686.748300px;}
.yb2{bottom:687.360300px;}
.y146{bottom:687.547800px;}
.y2b{bottom:690.114300px;}
.y8f{bottom:690.420300px;}
.y1d7{bottom:691.111800px;}
.y192{bottom:692.893800px;}
.y1b5{bottom:694.675800px;}
.ycf{bottom:699.310350px;}
.y46{bottom:702.558450px;}
.y16c{bottom:706.011300px;}
.y6a{bottom:707.214300px;}
.y145{bottom:707.644800px;}
.y120{bottom:708.654300px;}
.yb1{bottom:709.266300px;}
.y1d6{bottom:710.911800px;}
.y2a{bottom:711.714300px;}
.y8e{bottom:712.020300px;}
.y191{bottom:712.545300px;}
.y1b4{bottom:714.178800px;}
.y9{bottom:717.951900px;}
.yce{bottom:721.360350px;}
.y16b{bottom:726.256800px;}
.y144{bottom:727.741800px;}
.y69{bottom:729.264300px;}
.y11f{bottom:730.560300px;}
.y1d5{bottom:730.711800px;}
.yb0{bottom:731.172300px;}
.y190{bottom:732.196800px;}
.y29{bottom:733.314300px;}
.y8d{bottom:733.620300px;}
.y1b3{bottom:733.681800px;}
.ycd{bottom:743.410350px;}
.y16a{bottom:746.502300px;}
.y143{bottom:747.838800px;}
.y8{bottom:749.597400px;}
.y1d4{bottom:750.511800px;}
.y68{bottom:751.314300px;}
.y18f{bottom:751.848300px;}
.y11e{bottom:752.466300px;}
.yaf{bottom:753.078300px;}
.y1b2{bottom:753.184800px;}
.y28{bottom:754.914300px;}
.y8c{bottom:755.220300px;}
.ycc{bottom:765.460350px;}
.y169{bottom:766.747800px;}
.y142{bottom:767.935800px;}
.y1d3{bottom:770.311800px;}
.y18e{bottom:771.499800px;}
.y1b1{bottom:772.687800px;}
.y67{bottom:773.364300px;}
.y11d{bottom:774.372300px;}
.yae{bottom:774.984300px;}
.y27{bottom:776.514300px;}
.y8b{bottom:776.820300px;}
.y7{bottom:781.242900px;}
.y168{bottom:786.993300px;}
.ycb{bottom:787.510350px;}
.y141{bottom:788.032800px;}
.y1d2{bottom:790.111800px;}
.y18d{bottom:791.151300px;}
.y1b0{bottom:792.190800px;}
.y66{bottom:795.414300px;}
.y11c{bottom:796.278300px;}
.yad{bottom:796.890300px;}
.y26{bottom:798.114300px;}
.y8a{bottom:798.420300px;}
.y167{bottom:807.238800px;}
.y140{bottom:808.129800px;}
.y1d1{bottom:809.911800px;}
.y18c{bottom:810.802800px;}
.y1af{bottom:811.693800px;}
.y65{bottom:817.464300px;}
.yca{bottom:818.064300px;}
.y11b{bottom:818.184300px;}
.yac{bottom:818.796300px;}
.y25{bottom:819.714300px;}
.y89{bottom:820.020300px;}
.y166{bottom:827.484300px;}
.y13f{bottom:828.226800px;}
.y1d0{bottom:829.711800px;}
.y18b{bottom:830.454300px;}
.y1ae{bottom:831.196800px;}
.y6{bottom:837.556800px;}
.y64{bottom:839.514300px;}
.y11a{bottom:840.090300px;}
.yab{bottom:840.702300px;}
.y24{bottom:841.314300px;}
.y88{bottom:841.620300px;}
.y165{bottom:847.729800px;}
.y13e{bottom:848.323800px;}
.y1cf{bottom:849.511800px;}
.y18a{bottom:850.105800px;}
.y1ad{bottom:850.699800px;}
.y5{bottom:856.306800px;}
.y63{bottom:861.564300px;}
.y119{bottom:861.996300px;}
.yaa{bottom:862.608300px;}
.y23{bottom:862.914300px;}
.y87{bottom:863.220300px;}
.y164{bottom:867.975300px;}
.y13d{bottom:868.420800px;}
.y1ce{bottom:869.311800px;}
.y189{bottom:869.757300px;}
.y1ac{bottom:870.202800px;}
.y4{bottom:875.056800px;}
.yc9{bottom:883.002300px;}
.y62{bottom:883.614300px;}
.y118{bottom:883.902300px;}
.y22{bottom:884.514300px;}
.y86{bottom:884.820300px;}
.y163{bottom:888.220800px;}
.y13c{bottom:888.517800px;}
.y1cd{bottom:889.111800px;}
.y188{bottom:889.408800px;}
.y1ab{bottom:889.705800px;}
.yc8{bottom:905.358300px;}
.y61{bottom:905.664300px;}
.y117{bottom:905.808300px;}
.y21{bottom:906.114300px;}
.y85{bottom:906.420300px;}
.y162{bottom:908.466300px;}
.y13b{bottom:908.614800px;}
.y1cc{bottom:908.911800px;}
.y187{bottom:909.060300px;}
.y1aa{bottom:909.208800px;}
.y3{bottom:909.961800px;}
.y45{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.h7{height:28.977539px;}
.hd{height:30.568359px;}
.h3{height:35.663086px;}
.hf{height:35.991211px;}
.h9{height:40.757812px;}
.h8{height:41.396484px;}
.h10{height:45.852539px;}
.he{height:48.399902px;}
.h2{height:50.947266px;}
.hc{height:53.494629px;}
.h4{height:56.041992px;}
.h6{height:61.136719px;}
.h11{height:61.760719px;}
.hb{height:63.322031px;}
.h5{height:86.610352px;}
.ha{height:179.071997px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:76.535400px;}
.x1{left:97.795350px;}
.xa{left:113.592750px;}
.xb{left:119.066550px;}
.x17{left:140.274150px;}
.x2{left:143.170350px;}
.x1a{left:178.349700px;}
.x1b{left:262.532250px;}
.x3{left:265.039200px;}
.x16{left:275.223600px;}
.x4{left:293.630400px;}
.x14{left:304.073100px;}
.x7{left:325.435800px;}
.x13{left:326.631600px;}
.x11{left:340.901100px;}
.x12{left:343.115100px;}
.xd{left:347.853600px;}
.xf{left:349.109100px;}
.x15{left:361.718100px;}
.x10{left:364.229100px;}
.xe{left:366.834600px;}
.xc{left:369.440100px;}
.x5{left:410.018400px;}
.x6{left:415.291800px;}
.x19{left:531.240300px;}
.x18{left:540.203550px;}
.x8{left:610.039350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.680000pt;}
.v2{vertical-align:76.800000pt;}
.ls2d{letter-spacing:-6.400000pt;}
.ls5b{letter-spacing:-5.866667pt;}
.ls27{letter-spacing:-5.760000pt;}
.ls53{letter-spacing:-2.496000pt;}
.ls60{letter-spacing:-2.288000pt;}
.ls46{letter-spacing:-2.176000pt;}
.ls45{letter-spacing:-1.472000pt;}
.ls34{letter-spacing:-1.024000pt;}
.ls35{letter-spacing:-0.896000pt;}
.ls36{letter-spacing:-0.768000pt;}
.ls63{letter-spacing:-0.762667pt;}
.ls32{letter-spacing:-0.704000pt;}
.ls72{letter-spacing:-0.645333pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.586667pt;}
.ls4e{letter-spacing:-0.576000pt;}
.ls67{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls73{letter-spacing:-0.469333pt;}
.ls37{letter-spacing:-0.456000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls61{letter-spacing:-0.410667pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls62{letter-spacing:-0.352000pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls59{letter-spacing:-0.293333pt;}
.ls2e{letter-spacing:-0.280000pt;}
.ls4d{letter-spacing:-0.256000pt;}
.ls47{letter-spacing:-0.253333pt;}
.ls58{letter-spacing:-0.234667pt;}
.ls28{letter-spacing:-0.224000pt;}
.ls31{letter-spacing:-0.202667pt;}
.ls51{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.176000pt;}
.ls1e{letter-spacing:-0.168000pt;}
.ls2f{letter-spacing:-0.152000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls5a{letter-spacing:-0.117333pt;}
.ls52{letter-spacing:-0.064000pt;}
.ls6d{letter-spacing:-0.058667pt;}
.ls30{letter-spacing:-0.050667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.001600pt;}
.ls5f{letter-spacing:0.058667pt;}
.ls39{letter-spacing:0.060800pt;}
.lse{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.074667pt;}
.ls12{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.168000pt;}
.ls56{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.191467pt;}
.ls24{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.234667pt;}
.lsf{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.280000pt;}
.ls6{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.352000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.392000pt;}
.ls26{letter-spacing:0.396800pt;}
.ls7{letter-spacing:0.410667pt;}
.ls23{letter-spacing:0.448000pt;}
.ls4a{letter-spacing:0.512000pt;}
.ls55{letter-spacing:0.528000pt;}
.ls49{letter-spacing:0.576000pt;}
.ls54{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.645333pt;}
.ls29{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.896000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.024000pt;}
.ls25{letter-spacing:1.152000pt;}
.lsd{letter-spacing:1.850611pt;}
.ls74{letter-spacing:2.229333pt;}
.ls68{letter-spacing:2.340800pt;}
.ls4c{letter-spacing:2.752000pt;}
.ls4f{letter-spacing:3.654400pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1d{letter-spacing:4.409600pt;}
.ls42{letter-spacing:4.486400pt;}
.ls44{letter-spacing:4.544000pt;}
.ls5d{letter-spacing:4.576000pt;}
.ls21{letter-spacing:4.800000pt;}
.ls5e{letter-spacing:5.133333pt;}
.ls5c{letter-spacing:5.303467pt;}
.ls57{letter-spacing:5.333333pt;}
.lsa{letter-spacing:5.440000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls4b{letter-spacing:7.712000pt;}
.ls3f{letter-spacing:7.820800pt;}
.ls3d{letter-spacing:7.852800pt;}
.ls3b{letter-spacing:7.936000pt;}
.ls43{letter-spacing:8.192000pt;}
.ls40{letter-spacing:8.358400pt;}
.ls48{letter-spacing:8.960000pt;}
.ls3c{letter-spacing:9.004800pt;}
.ls3e{letter-spacing:9.024000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls3a{letter-spacing:9.088000pt;}
.ls65{letter-spacing:9.152000pt;}
.ls70{letter-spacing:9.269333pt;}
.ls69{letter-spacing:9.386667pt;}
.ls6c{letter-spacing:9.562667pt;}
.ls6e{letter-spacing:9.621333pt;}
.ls6f{letter-spacing:9.680000pt;}
.ls64{letter-spacing:9.738667pt;}
.ls6a{letter-spacing:9.856000pt;}
.ls6b{letter-spacing:10.266667pt;}
.ls71{letter-spacing:17.600000pt;}
.ws79{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws78{word-spacing:-22.208000pt;}
.ws34{word-spacing:-18.304000pt;}
.ws55{word-spacing:-18.176000pt;}
.ws47{word-spacing:-18.112000pt;}
.ws48{word-spacing:-17.984000pt;}
.ws54{word-spacing:-17.856000pt;}
.ws81{word-spacing:-17.600000pt;}
.ws3e{word-spacing:-17.536000pt;}
.ws15{word-spacing:-16.576000pt;}
.ws3{word-spacing:-16.485333pt;}
.ws2a{word-spacing:-16.448000pt;}
.ws2b{word-spacing:-16.256000pt;}
.ws49{word-spacing:-16.128000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.360000pt;}
.ws40{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.842667pt;}
.ws80{word-spacing:-14.725333pt;}
.ws77{word-spacing:-14.549333pt;}
.ws2{word-spacing:-14.490667pt;}
.ws82{word-spacing:-14.373333pt;}
.ws4a{word-spacing:-14.237333pt;}
.ws6d{word-spacing:-13.904000pt;}
.ws2d{word-spacing:-13.832000pt;}
.ws2c{word-spacing:-13.664000pt;}
.ws24{word-spacing:-13.488000pt;}
.ws4b{word-spacing:-12.514667pt;}
.ws14{word-spacing:-10.790400pt;}
.ws72{word-spacing:-10.266667pt;}
.ws76{word-spacing:-9.856000pt;}
.ws70{word-spacing:-9.738667pt;}
.ws7d{word-spacing:-9.680000pt;}
.ws7a{word-spacing:-9.621333pt;}
.ws73{word-spacing:-9.562667pt;}
.ws75{word-spacing:-9.386667pt;}
.ws7e{word-spacing:-9.269333pt;}
.ws71{word-spacing:-9.152000pt;}
.ws8{word-spacing:-9.066667pt;}
.ws7f{word-spacing:-8.000000pt;}
.ws5e{word-spacing:-6.400000pt;}
.ws7{word-spacing:-5.866667pt;}
.ws9{word-spacing:-5.440000pt;}
.ws5f{word-spacing:-5.333333pt;}
.ws29{word-spacing:-4.800000pt;}
.ws6{word-spacing:-3.733333pt;}
.ws32{word-spacing:-1.152000pt;}
.ws36{word-spacing:-1.024000pt;}
.ws3a{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.896000pt;}
.ws50{word-spacing:-0.832000pt;}
.ws4c{word-spacing:-0.768000pt;}
.ws35{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.645333pt;}
.ws2e{word-spacing:-0.640000pt;}
.ws62{word-spacing:-0.586667pt;}
.ws56{word-spacing:-0.576000pt;}
.ws63{word-spacing:-0.528000pt;}
.ws59{word-spacing:-0.512000pt;}
.ws30{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.410667pt;}
.ws39{word-spacing:-0.392000pt;}
.ws1e{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.352000pt;}
.ws19{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.293333pt;}
.ws28{word-spacing:-0.280000pt;}
.ws18{word-spacing:-0.256000pt;}
.wse{word-spacing:-0.234667pt;}
.ws31{word-spacing:-0.192000pt;}
.ws65{word-spacing:-0.176000pt;}
.ws1c{word-spacing:-0.168000pt;}
.ws1d{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.117333pt;}
.ws1b{word-spacing:-0.112000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws67{word-spacing:-0.058667pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws3f{word-spacing:-0.038400pt;}
.ws5{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.050667pt;}
.ws74{word-spacing:0.058667pt;}
.ws5c{word-spacing:0.064000pt;}
.ws6a{word-spacing:0.117333pt;}
.ws1a{word-spacing:0.128000pt;}
.ws3b{word-spacing:0.152000pt;}
.ws26{word-spacing:0.168000pt;}
.wsc{word-spacing:0.176000pt;}
.ws5b{word-spacing:0.192000pt;}
.ws3d{word-spacing:0.202667pt;}
.ws33{word-spacing:0.224000pt;}
.ws60{word-spacing:0.234667pt;}
.ws53{word-spacing:0.253333pt;}
.ws57{word-spacing:0.256000pt;}
.ws38{word-spacing:0.280000pt;}
.ws61{word-spacing:0.293333pt;}
.ws42{word-spacing:0.320000pt;}
.ws27{word-spacing:0.336000pt;}
.ws69{word-spacing:0.352000pt;}
.ws22{word-spacing:0.384000pt;}
.ws68{word-spacing:0.410667pt;}
.ws43{word-spacing:0.448000pt;}
.ws46{word-spacing:0.456000pt;}
.ws7c{word-spacing:0.469333pt;}
.ws20{word-spacing:0.512000pt;}
.ws6f{word-spacing:0.528000pt;}
.ws5a{word-spacing:0.576000pt;}
.ws6e{word-spacing:0.586667pt;}
.ws1f{word-spacing:0.640000pt;}
.ws7b{word-spacing:0.645333pt;}
.ws41{word-spacing:0.704000pt;}
.ws6b{word-spacing:0.762667pt;}
.ws45{word-spacing:0.896000pt;}
.ws44{word-spacing:1.024000pt;}
.ws4f{word-spacing:1.472000pt;}
.ws51{word-spacing:2.176000pt;}
.ws66{word-spacing:2.288000pt;}
.ws5d{word-spacing:2.496000pt;}
.ws16{word-spacing:2.613333pt;}
.wsd{word-spacing:3.637333pt;}
.ws25{word-spacing:3.968000pt;}
.ws52{word-spacing:4.608000pt;}
.ws2f{word-spacing:5.760000pt;}
.ws64{word-spacing:5.866667pt;}
.ws37{word-spacing:6.400000pt;}
.ws4d{word-spacing:6.656000pt;}
.ws58{word-spacing:7.872000pt;}
.ws4e{word-spacing:9.024000pt;}
._15{margin-left:-18.832000pt;}
._19{margin-left:-16.307200pt;}
._16{margin-left:-13.658667pt;}
._12{margin-left:-12.284267pt;}
._1a{margin-left:-11.352000pt;}
._8{margin-left:-9.846400pt;}
._11{margin-left:-7.667733pt;}
._3{margin-left:-5.884267pt;}
._1{margin-left:-4.405867pt;}
._e{margin-left:-2.929067pt;}
._6{margin-left:-1.913067pt;}
._4{margin-left:-0.944000pt;}
._5{width:1.093333pt;}
._f{width:2.589333pt;}
._0{width:3.733333pt;}
._b{width:5.365867pt;}
._7{width:6.418667pt;}
._10{width:7.403733pt;}
._d{width:8.295467pt;}
._2{width:10.002667pt;}
._14{width:11.410667pt;}
._c{width:13.040000pt;}
._9{width:14.597333pt;}
._a{width:16.283200pt;}
._18{width:17.424000pt;}
._17{width:19.066667pt;}
._13{width:50.598400pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs6{font-size:187.458667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:55.057200pt;}
.y1{bottom:67.857200pt;}
.ya9{bottom:124.719067pt;}
.y44{bottom:124.721733pt;}
.ye3{bottom:124.723067pt;}
.y60{bottom:124.724400pt;}
.y116{bottom:125.875867pt;}
.y1f{bottom:126.385067pt;}
.y186{bottom:126.419467pt;}
.y84{bottom:127.813733pt;}
.y13a{bottom:128.667467pt;}
.y1a9{bottom:128.712267pt;}
.y161{bottom:128.825600pt;}
.yfa{bottom:128.906933pt;}
.y1cb{bottom:128.974933pt;}
.y112{bottom:133.434933pt;}
.ya8{bottom:139.387067pt;}
.y43{bottom:139.389733pt;}
.y5f{bottom:139.391067pt;}
.ye2{bottom:144.324400pt;}
.y185{bottom:144.415467pt;}
.y1e{bottom:144.923733pt;}
.y115{bottom:145.075867pt;}
.y1a8{bottom:146.180267pt;}
.y1ca{bottom:146.310933pt;}
.y139{bottom:146.663467pt;}
.y160{bottom:146.689600pt;}
.y83{bottom:147.285733pt;}
.yf9{bottom:148.506933pt;}
.y111{bottom:152.634933pt;}
.ye1{bottom:154.052400pt;}
.ya7{bottom:154.055067pt;}
.y5e{bottom:154.057733pt;}
.y42{bottom:158.991067pt;}
.y184{bottom:162.411467pt;}
.y1d{bottom:163.462400pt;}
.y1c9{bottom:163.646933pt;}
.y1a7{bottom:163.648267pt;}
.y114{bottom:164.275867pt;}
.y15f{bottom:164.553600pt;}
.y138{bottom:164.659467pt;}
.y82{bottom:166.757733pt;}
.yf8{bottom:168.106933pt;}
.y41{bottom:168.720400pt;}
.ya6{bottom:168.723067pt;}
.y5d{bottom:168.724400pt;}
.y110{bottom:171.834933pt;}
.y183{bottom:180.407467pt;}
.y1c8{bottom:180.982933pt;}
.y1a6{bottom:181.116267pt;}
.y1c{bottom:182.001067pt;}
.y15e{bottom:182.417600pt;}
.y137{bottom:182.655467pt;}
.y40{bottom:183.388400pt;}
.y5c{bottom:183.391067pt;}
.y113{bottom:183.475867pt;}
.yf7{bottom:187.706933pt;}
.ya5{bottom:188.324400pt;}
.y10f{bottom:191.034933pt;}
.y81{bottom:197.552267pt;}
.ya4{bottom:198.053733pt;}
.y3f{bottom:198.056400pt;}
.y1c7{bottom:198.318933pt;}
.y182{bottom:198.403467pt;}
.y1a5{bottom:198.584267pt;}
.y15d{bottom:200.281600pt;}
.y1b{bottom:200.539733pt;}
.y136{bottom:200.651467pt;}
.yc7{bottom:201.813600pt;}
.y5b{bottom:202.991067pt;}
.yf6{bottom:207.306933pt;}
.y10e{bottom:210.234933pt;}
.ya3{bottom:212.721733pt;}
.y80{bottom:213.820267pt;}
.y1c6{bottom:215.654933pt;}
.y1a4{bottom:216.052267pt;}
.y3e{bottom:217.657733pt;}
.y15c{bottom:218.145600pt;}
.y135{bottom:218.647467pt;}
.y1a{bottom:219.078400pt;}
.yc6{bottom:221.685600pt;}
.y181{bottom:223.962667pt;}
.yf5{bottom:226.906933pt;}
.ya2{bottom:227.389733pt;}
.y10d{bottom:229.434933pt;}
.y7f{bottom:230.088267pt;}
.y1a3{bottom:233.520267pt;}
.y15b{bottom:236.009600pt;}
.y134{bottom:236.643467pt;}
.y19{bottom:237.617067pt;}
.yc5{bottom:241.157600pt;}
.y5a{bottom:243.943333pt;}
.y7e{bottom:246.356267pt;}
.yf4{bottom:246.506933pt;}
.ya1{bottom:246.991067pt;}
.y10c{bottom:248.634933pt;}
.y1a2{bottom:250.988267pt;}
.y1c5{bottom:251.921600pt;}
.y15a{bottom:253.873600pt;}
.y133{bottom:254.639467pt;}
.y18{bottom:256.155733pt;}
.yc4{bottom:260.629600pt;}
.y3d{bottom:261.157733pt;}
.y7d{bottom:262.624267pt;}
.yf3{bottom:266.106933pt;}
.y180{bottom:267.645600pt;}
.y10b{bottom:267.834933pt;}
.y159{bottom:271.737600pt;}
.y132{bottom:272.635467pt;}
.y59{bottom:274.499733pt;}
.y17{bottom:274.694400pt;}
.y7c{bottom:278.892267pt;}
.yc3{bottom:279.962933pt;}
.y3c{bottom:280.357733pt;}
.y17f{bottom:285.641600pt;}
.yf2{bottom:285.706933pt;}
.ya0{bottom:287.024400pt;}
.y10a{bottom:287.034933pt;}
.y1a1{bottom:287.521600pt;}
.y1c4{bottom:288.198933pt;}
.y58{bottom:288.371733pt;}
.ye0{bottom:288.409200pt;}
.y158{bottom:289.601600pt;}
.y131{bottom:290.631467pt;}
.y7b{bottom:295.160267pt;}
.yc2{bottom:299.434933pt;}
.y3b{bottom:299.557733pt;}
.y16{bottom:300.786800pt;}
.y17e{bottom:303.637600pt;}
.yf1{bottom:305.306933pt;}
.y9f{bottom:306.224400pt;}
.y109{bottom:306.234933pt;}
.y1c3{bottom:307.126933pt;}
.y157{bottom:307.465600pt;}
.ydf{bottom:308.009200pt;}
.y130{bottom:308.627467pt;}
.y57{bottom:309.791733pt;}
.y7a{bottom:311.428267pt;}
.y3a{bottom:318.757733pt;}
.yc1{bottom:318.906933pt;}
.y17d{bottom:321.633600pt;}
.y56{bottom:323.663733pt;}
.y1a0{bottom:324.038933pt;}
.yf0{bottom:324.906933pt;}
.y156{bottom:325.329600pt;}
.y9e{bottom:325.424400pt;}
.y108{bottom:325.434933pt;}
.y1c2{bottom:326.054933pt;}
.y12f{bottom:326.623467pt;}
.yde{bottom:327.609200pt;}
.y79{bottom:327.696267pt;}
.y39{bottom:337.957733pt;}
.yc0{bottom:338.378933pt;}
.y17c{bottom:339.629600pt;}
.y19f{bottom:343.110933pt;}
.y155{bottom:343.193600pt;}
.yef{bottom:344.506933pt;}
.y12e{bottom:344.619467pt;}
.y9d{bottom:344.624400pt;}
.y107{bottom:344.634933pt;}
.y1c1{bottom:344.988267pt;}
.y55{bottom:345.083733pt;}
.ydd{bottom:347.209200pt;}
.y15{bottom:348.575067pt;}
.y78{bottom:355.258933pt;}
.y38{bottom:357.157733pt;}
.y17b{bottom:357.625600pt;}
.ybf{bottom:357.850933pt;}
.y54{bottom:358.955733pt;}
.y154{bottom:361.057600pt;}
.y19e{bottom:362.182933pt;}
.y12d{bottom:362.615467pt;}
.y9c{bottom:363.824400pt;}
.y106{bottom:363.834933pt;}
.yee{bottom:364.106933pt;}
.ydc{bottom:366.809200pt;}
.y14{bottom:367.113733pt;}
.y77{bottom:374.730933pt;}
.y17a{bottom:375.621600pt;}
.y37{bottom:376.357733pt;}
.ybe{bottom:377.322933pt;}
.y153{bottom:378.921600pt;}
.y53{bottom:380.375733pt;}
.y12c{bottom:380.611467pt;}
.y19d{bottom:381.254933pt;}
.y9b{bottom:383.024400pt;}
.y105{bottom:383.034933pt;}
.yed{bottom:383.706933pt;}
.y13{bottom:385.652400pt;}
.ydb{bottom:386.409200pt;}
.y179{bottom:393.617600pt;}
.y76{bottom:394.202933pt;}
.y52{bottom:394.247733pt;}
.y36{bottom:395.557733pt;}
.y152{bottom:396.785600pt;}
.ybd{bottom:396.794933pt;}
.y1c0{bottom:398.588267pt;}
.y12b{bottom:398.607467pt;}
.y19c{bottom:400.321600pt;}
.y9a{bottom:402.224400pt;}
.y104{bottom:402.234933pt;}
.yec{bottom:403.306933pt;}
.y12{bottom:404.191067pt;}
.yda{bottom:406.009200pt;}
.y1e1{bottom:407.921600pt;}
.y178{bottom:411.613600pt;}
.y75{bottom:413.674933pt;}
.y1bf{bottom:414.321600pt;}
.y151{bottom:414.649600pt;}
.y35{bottom:414.757733pt;}
.y51{bottom:415.667733pt;}
.ybc{bottom:416.266933pt;}
.y12a{bottom:416.603467pt;}
.y99{bottom:421.424400pt;}
.y103{bottom:421.434933pt;}
.y11{bottom:422.729733pt;}
.yeb{bottom:422.906933pt;}
.y1e0{bottom:423.921600pt;}
.yd9{bottom:425.609200pt;}
.y50{bottom:429.539733pt;}
.y177{bottom:429.609600pt;}
.y1be{bottom:430.054933pt;}
.y150{bottom:432.513600pt;}
.y74{bottom:433.146933pt;}
.y34{bottom:433.957733pt;}
.y129{bottom:434.599467pt;}
.ybb{bottom:435.738933pt;}
.y1df{bottom:439.921600pt;}
.y98{bottom:440.624400pt;}
.y102{bottom:440.634933pt;}
.y10{bottom:441.268400pt;}
.yea{bottom:442.506933pt;}
.yd8{bottom:445.209200pt;}
.y1bd{bottom:445.788267pt;}
.y176{bottom:447.605600pt;}
.y14f{bottom:450.377600pt;}
.y4f{bottom:450.959733pt;}
.y128{bottom:452.463467pt;}
.y73{bottom:452.618933pt;}
.y33{bottom:453.157733pt;}
.y19b{bottom:454.327600pt;}
.yba{bottom:455.210933pt;}
.y1de{bottom:455.921600pt;}
.yf{bottom:459.807067pt;}
.y101{bottom:459.834933pt;}
.y1bc{bottom:461.521600pt;}
.ye9{bottom:462.106933pt;}
.yd7{bottom:464.809200pt;}
.y4e{bottom:464.831733pt;}
.y175{bottom:465.601600pt;}
.y14e{bottom:468.241600pt;}
.y19a{bottom:469.388267pt;}
.y127{bottom:470.327467pt;}
.y97{bottom:471.151067pt;}
.y1dd{bottom:471.921600pt;}
.y72{bottom:472.090933pt;}
.y32{bottom:472.357733pt;}
.yb9{bottom:474.682933pt;}
.ye{bottom:478.345733pt;}
.y100{bottom:479.034933pt;}
.ye8{bottom:481.706933pt;}
.y174{bottom:483.597600pt;}
.yd6{bottom:484.409200pt;}
.y14d{bottom:486.105600pt;}
.y4d{bottom:486.251733pt;}
.y96{bottom:487.153067pt;}
.y126{bottom:488.191467pt;}
.y71{bottom:491.562933pt;}
.y199{bottom:493.629600pt;}
.yb8{bottom:494.154933pt;}
.y1bb{bottom:496.185600pt;}
.yff{bottom:498.234933pt;}
.y4c{bottom:500.123733pt;}
.ye7{bottom:501.306933pt;}
.y173{bottom:501.593600pt;}
.y31{bottom:502.888267pt;}
.y95{bottom:503.155067pt;}
.y14c{bottom:503.969600pt;}
.yd5{bottom:504.009200pt;}
.yd{bottom:504.438133pt;}
.y125{bottom:506.055467pt;}
.y1dc{bottom:507.121600pt;}
.y70{bottom:511.034933pt;}
.y198{bottom:511.097600pt;}
.y1ba{bottom:513.521600pt;}
.yb7{bottom:513.626933pt;}
.yfe{bottom:517.434933pt;}
.y30{bottom:518.890267pt;}
.y94{bottom:519.157067pt;}
.y172{bottom:519.589600pt;}
.ye6{bottom:520.906933pt;}
.y14b{bottom:521.833600pt;}
.yd4{bottom:523.609200pt;}
.y124{bottom:523.919467pt;}
.y1db{bottom:524.721600pt;}
.y4b{bottom:526.757733pt;}
.y197{bottom:528.565600pt;}
.y6f{bottom:530.634933pt;}
.yb6{bottom:533.098933pt;}
.y2f{bottom:534.892267pt;}
.y93{bottom:535.159067pt;}
.yfd{bottom:536.634933pt;}
.y171{bottom:537.585600pt;}
.y14a{bottom:539.697600pt;}
.ye5{bottom:540.506933pt;}
.y123{bottom:541.783467pt;}
.yd3{bottom:543.209200pt;}
.y4a{bottom:545.957733pt;}
.y196{bottom:546.033600pt;}
.y1b9{bottom:548.145600pt;}
.y6e{bottom:550.234933pt;}
.y2e{bottom:550.894267pt;}
.y92{bottom:551.161067pt;}
.yb5{bottom:552.570933pt;}
.yc{bottom:552.832800pt;}
.y170{bottom:555.581600pt;}
.yfc{bottom:555.834933pt;}
.y149{bottom:557.561600pt;}
.ye4{bottom:560.106933pt;}
.y1da{bottom:561.521600pt;}
.yd2{bottom:562.809200pt;}
.y195{bottom:563.501600pt;}
.y1b8{bottom:565.481600pt;}
.y2d{bottom:566.896267pt;}
.y91{bottom:567.163067pt;}
.y122{bottom:567.209200pt;}
.y6d{bottom:569.834933pt;}
.yb{bottom:571.371467pt;}
.yb4{bottom:572.042933pt;}
.y16f{bottom:573.577600pt;}
.yfb{bottom:575.034933pt;}
.y148{bottom:575.425600pt;}
.y49{bottom:576.490400pt;}
.y1d9{bottom:579.121600pt;}
.y194{bottom:580.969600pt;}
.yd1{bottom:582.409200pt;}
.y1b7{bottom:582.817600pt;}
.y6c{bottom:589.434933pt;}
.yb3{bottom:591.514933pt;}
.y16e{bottom:591.573600pt;}
.y48{bottom:592.492400pt;}
.y147{bottom:593.289600pt;}
.y2c{bottom:594.234933pt;}
.y90{bottom:594.506933pt;}
.y1d8{bottom:596.721600pt;}
.y193{bottom:598.437600pt;}
.y1b6{bottom:600.153600pt;}
.yd0{bottom:602.009200pt;}
.y47{bottom:608.494400pt;}
.y6b{bottom:609.034933pt;}
.y16d{bottom:609.569600pt;}
.ya{bottom:610.050133pt;}
.y121{bottom:610.442933pt;}
.yb2{bottom:610.986933pt;}
.y146{bottom:611.153600pt;}
.y2b{bottom:613.434933pt;}
.y8f{bottom:613.706933pt;}
.y1d7{bottom:614.321600pt;}
.y192{bottom:615.905600pt;}
.y1b5{bottom:617.489600pt;}
.ycf{bottom:621.609200pt;}
.y46{bottom:624.496400pt;}
.y16c{bottom:627.565600pt;}
.y6a{bottom:628.634933pt;}
.y145{bottom:629.017600pt;}
.y120{bottom:629.914933pt;}
.yb1{bottom:630.458933pt;}
.y1d6{bottom:631.921600pt;}
.y2a{bottom:632.634933pt;}
.y8e{bottom:632.906933pt;}
.y191{bottom:633.373600pt;}
.y1b4{bottom:634.825600pt;}
.y9{bottom:638.179467pt;}
.yce{bottom:641.209200pt;}
.y16b{bottom:645.561600pt;}
.y144{bottom:646.881600pt;}
.y69{bottom:648.234933pt;}
.y11f{bottom:649.386933pt;}
.y1d5{bottom:649.521600pt;}
.yb0{bottom:649.930933pt;}
.y190{bottom:650.841600pt;}
.y29{bottom:651.834933pt;}
.y8d{bottom:652.106933pt;}
.y1b3{bottom:652.161600pt;}
.ycd{bottom:660.809200pt;}
.y16a{bottom:663.557600pt;}
.y143{bottom:664.745600pt;}
.y8{bottom:666.308800pt;}
.y1d4{bottom:667.121600pt;}
.y68{bottom:667.834933pt;}
.y18f{bottom:668.309600pt;}
.y11e{bottom:668.858933pt;}
.yaf{bottom:669.402933pt;}
.y1b2{bottom:669.497600pt;}
.y28{bottom:671.034933pt;}
.y8c{bottom:671.306933pt;}
.ycc{bottom:680.409200pt;}
.y169{bottom:681.553600pt;}
.y142{bottom:682.609600pt;}
.y1d3{bottom:684.721600pt;}
.y18e{bottom:685.777600pt;}
.y1b1{bottom:686.833600pt;}
.y67{bottom:687.434933pt;}
.y11d{bottom:688.330933pt;}
.yae{bottom:688.874933pt;}
.y27{bottom:690.234933pt;}
.y8b{bottom:690.506933pt;}
.y7{bottom:694.438133pt;}
.y168{bottom:699.549600pt;}
.ycb{bottom:700.009200pt;}
.y141{bottom:700.473600pt;}
.y1d2{bottom:702.321600pt;}
.y18d{bottom:703.245600pt;}
.y1b0{bottom:704.169600pt;}
.y66{bottom:707.034933pt;}
.y11c{bottom:707.802933pt;}
.yad{bottom:708.346933pt;}
.y26{bottom:709.434933pt;}
.y8a{bottom:709.706933pt;}
.y167{bottom:717.545600pt;}
.y140{bottom:718.337600pt;}
.y1d1{bottom:719.921600pt;}
.y18c{bottom:720.713600pt;}
.y1af{bottom:721.505600pt;}
.y65{bottom:726.634933pt;}
.yca{bottom:727.168267pt;}
.y11b{bottom:727.274933pt;}
.yac{bottom:727.818933pt;}
.y25{bottom:728.634933pt;}
.y89{bottom:728.906933pt;}
.y166{bottom:735.541600pt;}
.y13f{bottom:736.201600pt;}
.y1d0{bottom:737.521600pt;}
.y18b{bottom:738.181600pt;}
.y1ae{bottom:738.841600pt;}
.y6{bottom:744.494933pt;}
.y64{bottom:746.234933pt;}
.y11a{bottom:746.746933pt;}
.yab{bottom:747.290933pt;}
.y24{bottom:747.834933pt;}
.y88{bottom:748.106933pt;}
.y165{bottom:753.537600pt;}
.y13e{bottom:754.065600pt;}
.y1cf{bottom:755.121600pt;}
.y18a{bottom:755.649600pt;}
.y1ad{bottom:756.177600pt;}
.y5{bottom:761.161600pt;}
.y63{bottom:765.834933pt;}
.y119{bottom:766.218933pt;}
.yaa{bottom:766.762933pt;}
.y23{bottom:767.034933pt;}
.y87{bottom:767.306933pt;}
.y164{bottom:771.533600pt;}
.y13d{bottom:771.929600pt;}
.y1ce{bottom:772.721600pt;}
.y189{bottom:773.117600pt;}
.y1ac{bottom:773.513600pt;}
.y4{bottom:777.828267pt;}
.yc9{bottom:784.890933pt;}
.y62{bottom:785.434933pt;}
.y118{bottom:785.690933pt;}
.y22{bottom:786.234933pt;}
.y86{bottom:786.506933pt;}
.y163{bottom:789.529600pt;}
.y13c{bottom:789.793600pt;}
.y1cd{bottom:790.321600pt;}
.y188{bottom:790.585600pt;}
.y1ab{bottom:790.849600pt;}
.yc8{bottom:804.762933pt;}
.y61{bottom:805.034933pt;}
.y117{bottom:805.162933pt;}
.y21{bottom:805.434933pt;}
.y85{bottom:805.706933pt;}
.y162{bottom:807.525600pt;}
.y13b{bottom:807.657600pt;}
.y1cc{bottom:807.921600pt;}
.y187{bottom:808.053600pt;}
.y1aa{bottom:808.185600pt;}
.y3{bottom:808.854933pt;}
.y45{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.h7{height:25.757812pt;}
.hd{height:27.171875pt;}
.h3{height:31.700521pt;}
.hf{height:31.992188pt;}
.h9{height:36.229167pt;}
.h8{height:36.796875pt;}
.h10{height:40.757812pt;}
.he{height:43.022135pt;}
.h2{height:45.286458pt;}
.hc{height:47.550781pt;}
.h4{height:49.815104pt;}
.h6{height:54.343750pt;}
.h11{height:54.898417pt;}
.hb{height:56.286250pt;}
.h5{height:76.986979pt;}
.ha{height:159.175108pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:68.031467pt;}
.x1{left:86.929200pt;}
.xa{left:100.971333pt;}
.xb{left:105.836933pt;}
.x17{left:124.688133pt;}
.x2{left:127.262533pt;}
.x1a{left:158.533067pt;}
.x1b{left:233.362000pt;}
.x3{left:235.590400pt;}
.x16{left:244.643200pt;}
.x4{left:261.004800pt;}
.x14{left:270.287200pt;}
.x7{left:289.276267pt;}
.x13{left:290.339200pt;}
.x11{left:303.023200pt;}
.x12{left:304.991200pt;}
.xd{left:309.203200pt;}
.xf{left:310.319200pt;}
.x15{left:321.527200pt;}
.x10{left:323.759200pt;}
.xe{left:326.075200pt;}
.xc{left:328.391200pt;}
.x5{left:364.460800pt;}
.x6{left:369.148267pt;}
.x19{left:472.213600pt;}
.x18{left:480.180933pt;}
.x8{left:542.257200pt;}
}




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