
    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_d032be76b4d158ba5568e4c4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_15a1669c49a2aea30927b65d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_89957c2db2cf0ef8aeb634dc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_77f0a0076a0767e9e8254a08.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d720f7224e2742e4ce3d8a16.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8e4789b90085a7aad1e97b1c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_f7f1ab75fb1197edae83c6fc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8cfe2443ba9b3df3522aee1e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.692871;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_85ff8ad7543e73403dc5c9b0.woff')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_15a1669c49a2aea30927b65d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7a2b32a2d89999cecc5c467d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_29c2f48bedecb24112f15837.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_15a1669c49a2aea30927b65d.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_90fa5b4245e02812bb211813.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fa006bd3a7a545a71762d12f.woff')format("woff");}.fff{font-family:fff;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:20.579400px;}
.v6{vertical-align:21.978000px;}
.v1{vertical-align:27.972000px;}
.ls3{letter-spacing:-2.100000px;}
.ls12{letter-spacing:-1.333088px;}
.lsa{letter-spacing:-1.236000px;}
.lsc{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-1.035408px;}
.ls8{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.420000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.ls21{letter-spacing:0.000600px;}
.lsf{letter-spacing:0.120792px;}
.ls7{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.360294px;}
.ls10{letter-spacing:0.552792px;}
.ls14{letter-spacing:0.618000px;}
.lsd{letter-spacing:0.671592px;}
.ls1c{letter-spacing:0.720588px;}
.lse{letter-spacing:0.774192px;}
.ls1a{letter-spacing:1.120992px;}
.ls18{letter-spacing:1.236000px;}
.ls17{letter-spacing:1.363992px;}
.ls20{letter-spacing:1.365192px;}
.ls1d{letter-spacing:1.698192px;}
.ls1{letter-spacing:1.755000px;}
.ls9{letter-spacing:1.980000px;}
.ls1f{letter-spacing:2.106000px;}
.ls0{letter-spacing:2.145000px;}
.ls15{letter-spacing:2.746392px;}
.ls5{letter-spacing:2.772000px;}
.ls1e{letter-spacing:4.123992px;}
.ls19{letter-spacing:4.258392px;}
.ls23{letter-spacing:5.132400px;}
.ls11{letter-spacing:5.154792px;}
.ls1b{letter-spacing:6.712392px;}
.ls22{letter-spacing:7.328400px;}
.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;}
}
.ws1{word-spacing:-16.800000px;}
.ws11{word-spacing:-15.450000px;}
.ws0{word-spacing:-12.000000px;}
.ws5b{word-spacing:-9.727938px;}
.wsad{word-spacing:-9.619500px;}
.ws46{word-spacing:-9.367644px;}
.ws1c{word-spacing:-9.007350px;}
.ws69{word-spacing:-7.870500px;}
.ws36{word-spacing:-7.674262px;}
.ws64{word-spacing:-6.921600px;}
.ws22{word-spacing:-6.612600px;}
.ws48{word-spacing:-5.747400px;}
.ws55{word-spacing:-4.387800px;}
.wsc4{word-spacing:-4.326000px;}
.ws57{word-spacing:-3.893400px;}
.ws82{word-spacing:-3.831600px;}
.ws5{word-spacing:-3.780000px;}
.wsa7{word-spacing:-3.584400px;}
.ws73{word-spacing:-3.522600px;}
.wsd4{word-spacing:-3.399000px;}
.wsfc{word-spacing:-3.337200px;}
.wsd0{word-spacing:-3.275400px;}
.ws83{word-spacing:-3.213600px;}
.ws56{word-spacing:-3.090000px;}
.wse9{word-spacing:-3.028200px;}
.wse8{word-spacing:-2.904600px;}
.wsde{word-spacing:-2.719200px;}
.wsf6{word-spacing:-2.595600px;}
.ws71{word-spacing:-2.533800px;}
.wsa2{word-spacing:-2.472000px;}
.ws77{word-spacing:-2.410200px;}
.ws72{word-spacing:-2.348400px;}
.wsb5{word-spacing:-2.304000px;}
.wsf1{word-spacing:-2.286600px;}
.wsa6{word-spacing:-2.163000px;}
.ws4c{word-spacing:-2.101200px;}
.ws3e{word-spacing:-1.977600px;}
.ws94{word-spacing:-1.854000px;}
.ws4b{word-spacing:-1.792200px;}
.ws92{word-spacing:-1.730400px;}
.wsb{word-spacing:-1.680000px;}
.ws8f{word-spacing:-1.668600px;}
.wsb4{word-spacing:-1.566000px;}
.ws91{word-spacing:-1.545000px;}
.ws78{word-spacing:-1.536000px;}
.ws3c{word-spacing:-1.483200px;}
.ws3f{word-spacing:-1.440000px;}
.wse4{word-spacing:-1.421400px;}
.wsb0{word-spacing:-1.297800px;}
.ws28{word-spacing:-1.296000px;}
.ws5c{word-spacing:-1.236000px;}
.ws5f{word-spacing:-1.174200px;}
.wsa9{word-spacing:-1.112400px;}
.wsba{word-spacing:-1.056000px;}
.ws9f{word-spacing:-1.050600px;}
.wsd7{word-spacing:-1.008000px;}
.wsf3{word-spacing:-0.988800px;}
.wsbe{word-spacing:-0.972000px;}
.wse5{word-spacing:-0.927000px;}
.wsdc{word-spacing:-0.865200px;}
.ws8e{word-spacing:-0.803400px;}
.wsd6{word-spacing:-0.755568px;}
.ws3{word-spacing:-0.714000px;}
.ws49{word-spacing:-0.618000px;}
.ws50{word-spacing:-0.556200px;}
.ws99{word-spacing:-0.494400px;}
.ws34{word-spacing:-0.480000px;}
.ws8c{word-spacing:-0.432600px;}
.wsea{word-spacing:-0.247200px;}
.wsc9{word-spacing:-0.185400px;}
.wsc8{word-spacing:-0.123600px;}
.wsbf{word-spacing:-0.061800px;}
.wsc{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.048000px;}
.ws81{word-spacing:0.061800px;}
.ws45{word-spacing:0.096000px;}
.wsa3{word-spacing:0.123600px;}
.ws43{word-spacing:0.240000px;}
.ws7c{word-spacing:0.309000px;}
.ws93{word-spacing:0.370800px;}
.ws1e{word-spacing:0.420000px;}
.wsb6{word-spacing:0.432000px;}
.ws59{word-spacing:0.432600px;}
.ws53{word-spacing:0.494400px;}
.ws6{word-spacing:0.600000px;}
.ws4e{word-spacing:0.679800px;}
.ws15{word-spacing:0.741600px;}
.wsc0{word-spacing:0.803400px;}
.wsd5{word-spacing:0.865200px;}
.ws20{word-spacing:0.927000px;}
.ws3a{word-spacing:0.988800px;}
.ws41{word-spacing:1.035408px;}
.ws75{word-spacing:1.050600px;}
.ws4{word-spacing:1.080000px;}
.ws44{word-spacing:1.104000px;}
.ws63{word-spacing:1.112400px;}
.wsd2{word-spacing:1.174200px;}
.ws1d{word-spacing:1.200000px;}
.ws16{word-spacing:1.236000px;}
.wsc3{word-spacing:1.296000px;}
.ws1b{word-spacing:1.297800px;}
.ws40{word-spacing:1.344000px;}
.ws54{word-spacing:1.421400px;}
.wsb9{word-spacing:1.440000px;}
.wsf8{word-spacing:1.483200px;}
.ws14{word-spacing:1.545000px;}
.ws42{word-spacing:1.584000px;}
.ws7e{word-spacing:1.606800px;}
.ws88{word-spacing:1.854000px;}
.wsce{word-spacing:1.915800px;}
.wsbb{word-spacing:1.920000px;}
.ws5a{word-spacing:1.977600px;}
.ws65{word-spacing:2.039400px;}
.wsbd{word-spacing:2.052000px;}
.ws1a{word-spacing:2.101200px;}
.ws96{word-spacing:2.163000px;}
.ws67{word-spacing:2.256000px;}
.wsc2{word-spacing:2.286600px;}
.ws6b{word-spacing:2.322000px;}
.ws8{word-spacing:2.340000px;}
.ws6e{word-spacing:2.348400px;}
.ws68{word-spacing:2.400000px;}
.wscd{word-spacing:2.410200px;}
.wsc7{word-spacing:2.472000px;}
.ws8b{word-spacing:2.533800px;}
.ws17{word-spacing:2.595600px;}
.ws5e{word-spacing:2.657400px;}
.ws30{word-spacing:2.781000px;}
.ws32{word-spacing:2.842800px;}
.ws4f{word-spacing:2.904600px;}
.ws7b{word-spacing:2.966400px;}
.wsd3{word-spacing:3.090000px;}
.ws27{word-spacing:3.120000px;}
.ws76{word-spacing:3.151800px;}
.ws6d{word-spacing:3.213600px;}
.ws97{word-spacing:3.275400px;}
.ws2f{word-spacing:3.399000px;}
.ws79{word-spacing:3.456000px;}
.ws3d{word-spacing:3.460800px;}
.ws86{word-spacing:3.522600px;}
.ws6a{word-spacing:3.564000px;}
.wsdf{word-spacing:3.584400px;}
.wsf9{word-spacing:3.708000px;}
.ws51{word-spacing:3.769800px;}
.ws7{word-spacing:3.780000px;}
.wsf7{word-spacing:3.831600px;}
.ws90{word-spacing:3.893400px;}
.ws2c{word-spacing:3.955200px;}
.ws84{word-spacing:4.078800px;}
.ws2e{word-spacing:4.202400px;}
.wsae{word-spacing:4.224000px;}
.ws62{word-spacing:4.326000px;}
.ws6f{word-spacing:4.387800px;}
.ws25{word-spacing:4.449600px;}
.wsfd{word-spacing:4.511400px;}
.ws37{word-spacing:4.573200px;}
.wsb7{word-spacing:4.752000px;}
.wse0{word-spacing:4.882200px;}
.wsc5{word-spacing:5.005800px;}
.ws80{word-spacing:5.129400px;}
.ws35{word-spacing:5.184000px;}
.wsd{word-spacing:5.376000px;}
.wsb1{word-spacing:5.438400px;}
.wse3{word-spacing:5.500200px;}
.ws58{word-spacing:5.562000px;}
.wsb8{word-spacing:5.616000px;}
.ws19{word-spacing:5.685600px;}
.wsdb{word-spacing:5.747400px;}
.ws7d{word-spacing:5.871000px;}
.ws8a{word-spacing:5.932800px;}
.ws1f{word-spacing:5.994600px;}
.ws4d{word-spacing:6.056400px;}
.wsf5{word-spacing:6.180000px;}
.ws6c{word-spacing:6.264000px;}
.ws61{word-spacing:6.550800px;}
.ws9{word-spacing:6.768000px;}
.ws39{word-spacing:6.859800px;}
.wsa0{word-spacing:6.921600px;}
.wse7{word-spacing:6.983400px;}
.ws26{word-spacing:6.996000px;}
.wsef{word-spacing:7.045200px;}
.wse6{word-spacing:7.104000px;}
.ws52{word-spacing:7.168800px;}
.wscb{word-spacing:7.230600px;}
.wsf0{word-spacing:7.292400px;}
.wsdd{word-spacing:7.416000px;}
.wsee{word-spacing:7.477800px;}
.ws38{word-spacing:7.663200px;}
.wse2{word-spacing:7.725000px;}
.ws4a{word-spacing:7.786800px;}
.wsaf{word-spacing:7.848600px;}
.wsf2{word-spacing:7.910400px;}
.ws9c{word-spacing:7.972200px;}
.ws89{word-spacing:8.095800px;}
.wsfa{word-spacing:8.157600px;}
.wsf{word-spacing:8.160000px;}
.wsaa{word-spacing:8.281200px;}
.ws21{word-spacing:8.343000px;}
.wsfe{word-spacing:8.400000px;}
.wsc1{word-spacing:8.404800px;}
.ws23{word-spacing:8.590200px;}
.ws2d{word-spacing:8.713800px;}
.wsd8{word-spacing:8.837400px;}
.ws2a{word-spacing:9.022800px;}
.wse{word-spacing:9.024000px;}
.wsac{word-spacing:9.146400px;}
.wsbc{word-spacing:9.180000px;}
.ws66{word-spacing:9.270000px;}
.wsf4{word-spacing:9.331800px;}
.ws5d{word-spacing:9.393600px;}
.ws33{word-spacing:9.455400px;}
.wsec{word-spacing:9.517200px;}
.wsca{word-spacing:9.640800px;}
.wscc{word-spacing:9.702600px;}
.wsa8{word-spacing:9.826200px;}
.ws74{word-spacing:9.888000px;}
.ws87{word-spacing:10.011600px;}
.ws3b{word-spacing:10.135200px;}
.ws60{word-spacing:10.258800px;}
.ws7a{word-spacing:10.368000px;}
.wsb2{word-spacing:10.382400px;}
.wseb{word-spacing:10.753200px;}
.ws29{word-spacing:10.876800px;}
.ws9a{word-spacing:10.938600px;}
.ws98{word-spacing:11.000400px;}
.ws2b{word-spacing:11.309400px;}
.ws24{word-spacing:11.433000px;}
.ws31{word-spacing:11.494800px;}
.ws85{word-spacing:11.865600px;}
.ws70{word-spacing:12.545400px;}
.ws18{word-spacing:12.916200px;}
.wsa5{word-spacing:13.472400px;}
.wsb3{word-spacing:13.781400px;}
.wse1{word-spacing:14.152200px;}
.wsda{word-spacing:14.523000px;}
.wsd1{word-spacing:15.388200px;}
.wsd9{word-spacing:15.450000px;}
.wsab{word-spacing:16.315200px;}
.wsa1{word-spacing:17.180400px;}
.wscf{word-spacing:17.674800px;}
.ws9e{word-spacing:17.736600px;}
.wsc6{word-spacing:18.169200px;}
.wsa4{word-spacing:18.292800px;}
.ws47{word-spacing:18.478200px;}
.ws9d{word-spacing:18.725400px;}
.ws9b{word-spacing:20.332200px;}
.ws13{word-spacing:20.394000px;}
.ws8d{word-spacing:20.826600px;}
.ws7f{word-spacing:21.382800px;}
.wsed{word-spacing:21.444600px;}
.wsfb{word-spacing:23.298600px;}
.ws95{word-spacing:24.040200px;}
.ws12{word-spacing:40.788000px;}
.ws10{word-spacing:532.368600px;}
._19{margin-left:-17.613000px;}
._1d{margin-left:-14.599140px;}
._3{margin-left:-12.085200px;}
._f{margin-left:-7.023600px;}
._4{margin-left:-5.972400px;}
._1{margin-left:-3.985200px;}
._8{margin-left:-2.610000px;}
._0{margin-left:-1.549800px;}
._2{width:1.101600px;}
._6{width:2.348400px;}
._5{width:4.338000px;}
._9{width:5.387400px;}
._b{width:6.686400px;}
._a{width:8.131200px;}
._7{width:9.297600px;}
._d{width:10.864440px;}
._16{width:11.865600px;}
._10{width:13.027440px;}
._c{width:14.096580px;}
._e{width:16.970280px;}
._11{width:18.787200px;}
._12{width:20.270400px;}
._15{width:21.376620px;}
._17{width:23.249160px;}
._18{width:24.343020px;}
._1c{width:25.606680px;}
._1a{width:28.049640px;}
._1b{width:29.550960px;}
._14{width:30.757860px;}
._13{width:34.286640px;}
._1e{width:46.200000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.984000px;}
.fsd{font-size:31.482000px;}
.fsc{font-size:36.029400px;}
.fse{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fsa{font-size:67.200000px;}
.fs2{font-size:84.000000px;}
.fs9{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y20{bottom:76.500000px;}
.ycd{bottom:76.875150px;}
.y74{bottom:80.496000px;}
.yc3{bottom:80.871150px;}
.y45{bottom:85.088100px;}
.y1f{bottom:90.000000px;}
.ycc{bottom:90.375150px;}
.y179{bottom:92.636100px;}
.y6d{bottom:93.996000px;}
.yc2{bottom:94.371150px;}
.y1e{bottom:103.500000px;}
.y44{bottom:103.628100px;}
.ycb{bottom:103.875150px;}
.y9a{bottom:107.496000px;}
.yc1{bottom:107.871150px;}
.y178{bottom:111.176100px;}
.y1d{bottom:117.000000px;}
.yc0{bottom:117.375150px;}
.y155{bottom:120.996000px;}
.yca{bottom:121.371150px;}
.y43{bottom:122.168100px;}
.y11a{bottom:127.993950px;}
.y177{bottom:129.716100px;}
.y1c{bottom:130.500000px;}
.yc9{bottom:130.875150px;}
.y6c{bottom:134.496000px;}
.ybf{bottom:134.871150px;}
.y42{bottom:140.708100px;}
.y1b{bottom:144.000000px;}
.y119{bottom:146.533950px;}
.yf0{bottom:147.996000px;}
.yf4{bottom:148.256100px;}
.yc8{bottom:148.371150px;}
.y156{bottom:148.796100px;}
.y1a{bottom:157.500000px;}
.yc7{bottom:157.875150px;}
.y41{bottom:159.248100px;}
.y6b{bottom:161.496000px;}
.y176{bottom:161.848200px;}
.y118{bottom:165.073950px;}
.y99{bottom:166.418100px;}
.yf3{bottom:166.796100px;}
.y19{bottom:171.000000px;}
.yc6{bottom:171.375150px;}
.y154{bottom:174.996000px;}
.y40{bottom:177.788100px;}
.y175{bottom:180.388200px;}
.y117{bottom:183.613950px;}
.y18{bottom:184.500000px;}
.y98{bottom:184.958100px;}
.yf2{bottom:185.336100px;}
.ybe{bottom:185.711250px;}
.y6a{bottom:188.496000px;}
.yc5{bottom:188.871150px;}
.y3f{bottom:196.328100px;}
.y13b{bottom:198.000000px;}
.y174{bottom:198.928200px;}
.y17{bottom:201.996000px;}
.y116{bottom:202.153950px;}
.yc4{bottom:202.371150px;}
.y97{bottom:203.498100px;}
.yf1{bottom:203.876100px;}
.ybd{bottom:204.251250px;}
.y73{bottom:211.500000px;}
.y3e{bottom:214.868100px;}
.y13a{bottom:215.496000px;}
.y173{bottom:217.468200px;}
.y115{bottom:220.693950px;}
.y96{bottom:222.038100px;}
.y69{bottom:222.416100px;}
.ybc{bottom:222.791250px;}
.yef{bottom:224.488200px;}
.y139{bottom:225.000000px;}
.y72{bottom:228.996000px;}
.y3d{bottom:233.408100px;}
.y172{bottom:236.008200px;}
.y71{bottom:238.500000px;}
.y114{bottom:239.233950px;}
.y16{bottom:239.470650px;}
.y95{bottom:240.578100px;}
.y68{bottom:240.956100px;}
.ybb{bottom:241.331250px;}
.yee{bottom:243.028200px;}
.y3c{bottom:251.948100px;}
.y138{bottom:252.000000px;}
.y171{bottom:254.548200px;}
.y70{bottom:255.996000px;}
.y15{bottom:257.470650px;}
.y113{bottom:257.773950px;}
.y94{bottom:259.118100px;}
.y67{bottom:259.496100px;}
.yba{bottom:259.871250px;}
.yed{bottom:261.568200px;}
.y6f{bottom:265.500000px;}
.y137{bottom:269.496000px;}
.y3b{bottom:270.488100px;}
.y170{bottom:273.088200px;}
.y14{bottom:275.470650px;}
.y112{bottom:276.313950px;}
.y93{bottom:277.658100px;}
.y66{bottom:278.036100px;}
.yb9{bottom:278.411250px;}
.yec{bottom:280.108200px;}
.y6e{bottom:282.996000px;}
.y3a{bottom:289.028100px;}
.y16f{bottom:291.628200px;}
.y13{bottom:293.470650px;}
.y111{bottom:294.853950px;}
.y92{bottom:296.198100px;}
.y65{bottom:296.576100px;}
.yb8{bottom:296.951250px;}
.yeb{bottom:298.648200px;}
.y136{bottom:305.833950px;}
.y39{bottom:307.568100px;}
.y153{bottom:307.828200px;}
.y16e{bottom:310.168200px;}
.y12{bottom:311.470650px;}
.y110{bottom:313.393950px;}
.y91{bottom:314.738100px;}
.y64{bottom:315.116100px;}
.yb7{bottom:315.491250px;}
.yea{bottom:317.188200px;}
.y135{bottom:322.033950px;}
.y38{bottom:326.108100px;}
.y152{bottom:326.368200px;}
.y16d{bottom:328.708200px;}
.y10f{bottom:331.933950px;}
.y90{bottom:333.278100px;}
.y63{bottom:333.656100px;}
.yb6{bottom:334.031250px;}
.ye9{bottom:335.728200px;}
.y11{bottom:336.970650px;}
.y134{bottom:338.233950px;}
.y37{bottom:344.648100px;}
.y151{bottom:344.908200px;}
.y16c{bottom:347.248200px;}
.y10e{bottom:350.473950px;}
.y8f{bottom:351.818100px;}
.y62{bottom:352.196100px;}
.yb5{bottom:352.571250px;}
.ye8{bottom:354.268200px;}
.y133{bottom:354.433950px;}
.y36{bottom:363.188100px;}
.y150{bottom:363.448200px;}
.y16b{bottom:365.788200px;}
.y10d{bottom:369.013950px;}
.y8e{bottom:370.358100px;}
.y132{bottom:370.633950px;}
.y61{bottom:370.736100px;}
.yb4{bottom:371.111250px;}
.ye7{bottom:372.808200px;}
.y35{bottom:381.728100px;}
.y14f{bottom:381.988200px;}
.y16a{bottom:384.328200px;}
.y131{bottom:386.833950px;}
.y10c{bottom:387.553950px;}
.y8d{bottom:388.898100px;}
.y60{bottom:389.276100px;}
.yb3{bottom:389.651250px;}
.ye6{bottom:391.348200px;}
.y10{bottom:395.770650px;}
.y14e{bottom:400.528200px;}
.y169{bottom:402.868200px;}
.y130{bottom:405.373950px;}
.y10b{bottom:406.093950px;}
.y8c{bottom:407.438100px;}
.y5f{bottom:407.816100px;}
.yb2{bottom:408.191250px;}
.ye5{bottom:409.888200px;}
.yf{bottom:417.370650px;}
.y34{bottom:418.808100px;}
.y14d{bottom:419.068200px;}
.y168{bottom:421.408200px;}
.y12f{bottom:423.913950px;}
.y10a{bottom:424.633950px;}
.y8b{bottom:425.978100px;}
.y5e{bottom:426.356100px;}
.yb1{bottom:426.731250px;}
.ye4{bottom:428.428200px;}
.y14c{bottom:437.608200px;}
.y167{bottom:439.948200px;}
.y12e{bottom:442.453950px;}
.y109{bottom:443.173950px;}
.y8a{bottom:444.518100px;}
.y5d{bottom:444.896100px;}
.yb0{bottom:445.271250px;}
.ye3{bottom:446.968200px;}
.y14b{bottom:456.148200px;}
.ye{bottom:457.322550px;}
.y166{bottom:458.488200px;}
.y12d{bottom:460.993950px;}
.y108{bottom:461.713950px;}
.y89{bottom:463.058100px;}
.y5c{bottom:463.436100px;}
.yaf{bottom:463.811250px;}
.ye2{bottom:465.508200px;}
.y33{bottom:474.608100px;}
.y14a{bottom:474.688200px;}
.y165{bottom:477.028200px;}
.y12c{bottom:479.533950px;}
.y107{bottom:480.253950px;}
.y88{bottom:481.598100px;}
.y5b{bottom:481.976100px;}
.yae{bottom:482.351250px;}
.yd{bottom:482.874600px;}
.ye1{bottom:484.048200px;}
.y32{bottom:493.148100px;}
.y149{bottom:493.228200px;}
.y164{bottom:495.568200px;}
.y12b{bottom:498.073950px;}
.y106{bottom:498.793950px;}
.y87{bottom:500.138100px;}
.y5a{bottom:500.516100px;}
.yad{bottom:500.891400px;}
.ye0{bottom:502.588200px;}
.yc{bottom:509.574600px;}
.y148{bottom:511.768200px;}
.y163{bottom:514.108200px;}
.y12a{bottom:516.613950px;}
.y105{bottom:517.333950px;}
.y86{bottom:518.678100px;}
.y59{bottom:519.056100px;}
.yac{bottom:519.431250px;}
.ydf{bottom:521.128200px;}
.y31{bottom:530.228100px;}
.y147{bottom:530.308200px;}
.y162{bottom:532.648200px;}
.y129{bottom:535.153950px;}
.y104{bottom:535.873950px;}
.y85{bottom:537.218100px;}
.y58{bottom:537.596100px;}
.yab{bottom:537.971250px;}
.yde{bottom:539.668200px;}
.y17c{bottom:539.756100px;}
.y30{bottom:548.768100px;}
.y146{bottom:548.848200px;}
.y161{bottom:551.188200px;}
.yb{bottom:552.774600px;}
.y128{bottom:553.693950px;}
.y103{bottom:554.413950px;}
.y84{bottom:555.758100px;}
.y57{bottom:556.136100px;}
.yaa{bottom:556.511250px;}
.y17b{bottom:557.756100px;}
.ydd{bottom:558.208200px;}
.y2f{bottom:567.308100px;}
.y145{bottom:567.388200px;}
.y160{bottom:569.728200px;}
.y127{bottom:572.233950px;}
.y102{bottom:572.953950px;}
.y83{bottom:574.298100px;}
.y56{bottom:574.676100px;}
.ya9{bottom:575.051400px;}
.y17a{bottom:575.756100px;}
.ydc{bottom:576.748200px;}
.ya{bottom:579.774600px;}
.y2e{bottom:585.848100px;}
.y144{bottom:585.928200px;}
.y15f{bottom:588.268200px;}
.y126{bottom:590.773950px;}
.y101{bottom:591.493950px;}
.y82{bottom:592.838100px;}
.y55{bottom:593.216100px;}
.ya8{bottom:593.591250px;}
.ydb{bottom:595.288200px;}
.y2d{bottom:604.388100px;}
.y143{bottom:604.468200px;}
.y9{bottom:606.774600px;}
.y15e{bottom:606.808200px;}
.y125{bottom:609.313950px;}
.y100{bottom:610.033950px;}
.y81{bottom:611.378100px;}
.y54{bottom:611.756100px;}
.ya7{bottom:612.131250px;}
.yda{bottom:613.828200px;}
.y2c{bottom:622.928100px;}
.y142{bottom:623.008200px;}
.y15d{bottom:625.348200px;}
.y124{bottom:627.853950px;}
.yff{bottom:628.573950px;}
.y80{bottom:629.918100px;}
.y53{bottom:630.296100px;}
.ya6{bottom:630.671250px;}
.yd9{bottom:632.368200px;}
.y8{bottom:633.774600px;}
.y2b{bottom:641.468100px;}
.y141{bottom:641.548200px;}
.y15c{bottom:643.888200px;}
.y123{bottom:646.393950px;}
.yfe{bottom:647.113950px;}
.y7f{bottom:648.458100px;}
.y52{bottom:648.836100px;}
.ya5{bottom:649.211250px;}
.yd8{bottom:650.908200px;}
.y2a{bottom:660.008100px;}
.y140{bottom:660.088200px;}
.y15b{bottom:662.428200px;}
.y122{bottom:664.933950px;}
.yfd{bottom:665.653950px;}
.y7e{bottom:666.998100px;}
.y51{bottom:667.376100px;}
.ya4{bottom:667.751250px;}
.yd7{bottom:669.448200px;}
.y29{bottom:678.548100px;}
.y13f{bottom:678.628200px;}
.y15a{bottom:680.968200px;}
.y121{bottom:683.473950px;}
.yfc{bottom:684.193950px;}
.y7d{bottom:685.538100px;}
.y50{bottom:685.916100px;}
.ya3{bottom:686.291250px;}
.y7{bottom:687.774600px;}
.y13e{bottom:697.168200px;}
.y159{bottom:699.508200px;}
.y120{bottom:702.013950px;}
.yfb{bottom:702.733950px;}
.y7c{bottom:704.078100px;}
.y4f{bottom:704.456100px;}
.y28{bottom:704.588100px;}
.ya2{bottom:704.831250px;}
.yd6{bottom:705.988200px;}
.y6{bottom:714.774600px;}
.y13d{bottom:715.708200px;}
.y158{bottom:718.048200px;}
.y11f{bottom:720.553950px;}
.yfa{bottom:721.273950px;}
.yd5{bottom:722.188200px;}
.y7b{bottom:722.618100px;}
.y4e{bottom:722.996100px;}
.ya1{bottom:723.371250px;}
.y13c{bottom:734.248200px;}
.y157{bottom:736.588200px;}
.yd4{bottom:738.388200px;}
.y11e{bottom:739.093950px;}
.yf9{bottom:739.813950px;}
.y7a{bottom:741.158100px;}
.y4d{bottom:741.536100px;}
.y5{bottom:741.774600px;}
.ya0{bottom:741.911250px;}
.y27{bottom:742.928100px;}
.yd3{bottom:754.588200px;}
.y11d{bottom:757.633950px;}
.yf8{bottom:758.353950px;}
.y79{bottom:759.698100px;}
.y4c{bottom:760.076100px;}
.y9f{bottom:760.451250px;}
.y26{bottom:761.468100px;}
.y4{bottom:768.774600px;}
.yd2{bottom:770.788200px;}
.yf7{bottom:776.893950px;}
.y78{bottom:778.238100px;}
.y4b{bottom:778.616100px;}
.y9e{bottom:778.991250px;}
.yd1{bottom:786.988200px;}
.y11c{bottom:794.173950px;}
.yf6{bottom:795.433950px;}
.y3{bottom:795.774600px;}
.y77{bottom:796.778100px;}
.y4a{bottom:797.156100px;}
.y9d{bottom:797.531400px;}
.y25{bottom:798.548100px;}
.yd0{bottom:803.188200px;}
.y11b{bottom:813.973950px;}
.y76{bottom:815.318100px;}
.y49{bottom:815.696100px;}
.y9c{bottom:816.071250px;}
.y24{bottom:816.548100px;}
.ycf{bottom:819.388200px;}
.yf5{bottom:833.773950px;}
.y75{bottom:833.858100px;}
.y48{bottom:834.236100px;}
.y23{bottom:834.548100px;}
.y9b{bottom:834.611250px;}
.yce{bottom:835.588200px;}
.y21{bottom:860.719800px;}
.y47{bottom:891.220650px;}
.y46{bottom:904.720650px;}
.y22{bottom:906.525150px;}
.hf{height:24.554320px;}
.ha{height:26.133188px;}
.h2{height:36.852539px;}
.he{height:41.660156px;}
.hb{height:42.117188px;}
.h10{height:42.909961px;}
.h8{height:45.181641px;}
.h7{height:47.381836px;}
.h11{height:48.318896px;}
.h9{height:52.646484px;}
.hd{height:54.225879px;}
.h6{height:57.911133px;}
.hc{height:65.015625px;}
.h5{height:73.705078px;}
.h3{height:74.988281px;}
.h4{height:94.763672px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x6{left:55.062900px;}
.x7{left:56.976450px;}
.xc{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.xe{left:81.107550px;}
.x8{left:85.063050px;}
.x4{left:90.694500px;}
.xa{left:98.506950px;}
.xb{left:99.540600px;}
.xd{left:102.599100px;}
.x3{left:106.663050px;}
.x10{left:108.163050px;}
.xf{left:112.063050px;}
.x5{left:241.168800px;}
.x9{left:541.222350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:18.292800pt;}
.v6{vertical-align:19.536000pt;}
.v1{vertical-align:24.864000pt;}
.ls3{letter-spacing:-1.866667pt;}
.ls12{letter-spacing:-1.184967pt;}
.lsa{letter-spacing:-1.098667pt;}
.lsc{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.920363pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.ls21{letter-spacing:0.000533pt;}
.lsf{letter-spacing:0.107371pt;}
.ls7{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.320261pt;}
.ls10{letter-spacing:0.491371pt;}
.ls14{letter-spacing:0.549333pt;}
.lsd{letter-spacing:0.596971pt;}
.ls1c{letter-spacing:0.640523pt;}
.lse{letter-spacing:0.688171pt;}
.ls1a{letter-spacing:0.996437pt;}
.ls18{letter-spacing:1.098667pt;}
.ls17{letter-spacing:1.212437pt;}
.ls20{letter-spacing:1.213504pt;}
.ls1d{letter-spacing:1.509504pt;}
.ls1{letter-spacing:1.560000pt;}
.ls9{letter-spacing:1.760000pt;}
.ls1f{letter-spacing:1.872000pt;}
.ls0{letter-spacing:1.906667pt;}
.ls15{letter-spacing:2.441237pt;}
.ls5{letter-spacing:2.464000pt;}
.ls1e{letter-spacing:3.665771pt;}
.ls19{letter-spacing:3.785237pt;}
.ls23{letter-spacing:4.562133pt;}
.ls11{letter-spacing:4.582037pt;}
.ls1b{letter-spacing:5.966571pt;}
.ls22{letter-spacing:6.514133pt;}
.ws1{word-spacing:-14.933333pt;}
.ws11{word-spacing:-13.733333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws5b{word-spacing:-8.647056pt;}
.wsad{word-spacing:-8.550667pt;}
.ws46{word-spacing:-8.326795pt;}
.ws1c{word-spacing:-8.006533pt;}
.ws69{word-spacing:-6.996000pt;}
.ws36{word-spacing:-6.821566pt;}
.ws64{word-spacing:-6.152533pt;}
.ws22{word-spacing:-5.877867pt;}
.ws48{word-spacing:-5.108800pt;}
.ws55{word-spacing:-3.900267pt;}
.wsc4{word-spacing:-3.845333pt;}
.ws57{word-spacing:-3.460800pt;}
.ws82{word-spacing:-3.405867pt;}
.ws5{word-spacing:-3.360000pt;}
.wsa7{word-spacing:-3.186133pt;}
.ws73{word-spacing:-3.131200pt;}
.wsd4{word-spacing:-3.021333pt;}
.wsfc{word-spacing:-2.966400pt;}
.wsd0{word-spacing:-2.911467pt;}
.ws83{word-spacing:-2.856533pt;}
.ws56{word-spacing:-2.746667pt;}
.wse9{word-spacing:-2.691733pt;}
.wse8{word-spacing:-2.581867pt;}
.wsde{word-spacing:-2.417067pt;}
.wsf6{word-spacing:-2.307200pt;}
.ws71{word-spacing:-2.252267pt;}
.wsa2{word-spacing:-2.197333pt;}
.ws77{word-spacing:-2.142400pt;}
.ws72{word-spacing:-2.087467pt;}
.wsb5{word-spacing:-2.048000pt;}
.wsf1{word-spacing:-2.032533pt;}
.wsa6{word-spacing:-1.922667pt;}
.ws4c{word-spacing:-1.867733pt;}
.ws3e{word-spacing:-1.757867pt;}
.ws94{word-spacing:-1.648000pt;}
.ws4b{word-spacing:-1.593067pt;}
.ws92{word-spacing:-1.538133pt;}
.wsb{word-spacing:-1.493333pt;}
.ws8f{word-spacing:-1.483200pt;}
.wsb4{word-spacing:-1.392000pt;}
.ws91{word-spacing:-1.373333pt;}
.ws78{word-spacing:-1.365333pt;}
.ws3c{word-spacing:-1.318400pt;}
.ws3f{word-spacing:-1.280000pt;}
.wse4{word-spacing:-1.263467pt;}
.wsb0{word-spacing:-1.153600pt;}
.ws28{word-spacing:-1.152000pt;}
.ws5c{word-spacing:-1.098667pt;}
.ws5f{word-spacing:-1.043733pt;}
.wsa9{word-spacing:-0.988800pt;}
.wsba{word-spacing:-0.938667pt;}
.ws9f{word-spacing:-0.933867pt;}
.wsd7{word-spacing:-0.896000pt;}
.wsf3{word-spacing:-0.878933pt;}
.wsbe{word-spacing:-0.864000pt;}
.wse5{word-spacing:-0.824000pt;}
.wsdc{word-spacing:-0.769067pt;}
.ws8e{word-spacing:-0.714133pt;}
.wsd6{word-spacing:-0.671616pt;}
.ws3{word-spacing:-0.634667pt;}
.ws49{word-spacing:-0.549333pt;}
.ws50{word-spacing:-0.494400pt;}
.ws99{word-spacing:-0.439467pt;}
.ws34{word-spacing:-0.426667pt;}
.ws8c{word-spacing:-0.384533pt;}
.wsea{word-spacing:-0.219733pt;}
.wsc9{word-spacing:-0.164800pt;}
.wsc8{word-spacing:-0.109867pt;}
.wsbf{word-spacing:-0.054933pt;}
.wsc{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.042667pt;}
.ws81{word-spacing:0.054933pt;}
.ws45{word-spacing:0.085333pt;}
.wsa3{word-spacing:0.109867pt;}
.ws43{word-spacing:0.213333pt;}
.ws7c{word-spacing:0.274667pt;}
.ws93{word-spacing:0.329600pt;}
.ws1e{word-spacing:0.373333pt;}
.wsb6{word-spacing:0.384000pt;}
.ws59{word-spacing:0.384533pt;}
.ws53{word-spacing:0.439467pt;}
.ws6{word-spacing:0.533333pt;}
.ws4e{word-spacing:0.604267pt;}
.ws15{word-spacing:0.659200pt;}
.wsc0{word-spacing:0.714133pt;}
.wsd5{word-spacing:0.769067pt;}
.ws20{word-spacing:0.824000pt;}
.ws3a{word-spacing:0.878933pt;}
.ws41{word-spacing:0.920363pt;}
.ws75{word-spacing:0.933867pt;}
.ws4{word-spacing:0.960000pt;}
.ws44{word-spacing:0.981333pt;}
.ws63{word-spacing:0.988800pt;}
.wsd2{word-spacing:1.043733pt;}
.ws1d{word-spacing:1.066667pt;}
.ws16{word-spacing:1.098667pt;}
.wsc3{word-spacing:1.152000pt;}
.ws1b{word-spacing:1.153600pt;}
.ws40{word-spacing:1.194667pt;}
.ws54{word-spacing:1.263467pt;}
.wsb9{word-spacing:1.280000pt;}
.wsf8{word-spacing:1.318400pt;}
.ws14{word-spacing:1.373333pt;}
.ws42{word-spacing:1.408000pt;}
.ws7e{word-spacing:1.428267pt;}
.ws88{word-spacing:1.648000pt;}
.wsce{word-spacing:1.702933pt;}
.wsbb{word-spacing:1.706667pt;}
.ws5a{word-spacing:1.757867pt;}
.ws65{word-spacing:1.812800pt;}
.wsbd{word-spacing:1.824000pt;}
.ws1a{word-spacing:1.867733pt;}
.ws96{word-spacing:1.922667pt;}
.ws67{word-spacing:2.005333pt;}
.wsc2{word-spacing:2.032533pt;}
.ws6b{word-spacing:2.064000pt;}
.ws8{word-spacing:2.080000pt;}
.ws6e{word-spacing:2.087467pt;}
.ws68{word-spacing:2.133333pt;}
.wscd{word-spacing:2.142400pt;}
.wsc7{word-spacing:2.197333pt;}
.ws8b{word-spacing:2.252267pt;}
.ws17{word-spacing:2.307200pt;}
.ws5e{word-spacing:2.362133pt;}
.ws30{word-spacing:2.472000pt;}
.ws32{word-spacing:2.526933pt;}
.ws4f{word-spacing:2.581867pt;}
.ws7b{word-spacing:2.636800pt;}
.wsd3{word-spacing:2.746667pt;}
.ws27{word-spacing:2.773333pt;}
.ws76{word-spacing:2.801600pt;}
.ws6d{word-spacing:2.856533pt;}
.ws97{word-spacing:2.911467pt;}
.ws2f{word-spacing:3.021333pt;}
.ws79{word-spacing:3.072000pt;}
.ws3d{word-spacing:3.076267pt;}
.ws86{word-spacing:3.131200pt;}
.ws6a{word-spacing:3.168000pt;}
.wsdf{word-spacing:3.186133pt;}
.wsf9{word-spacing:3.296000pt;}
.ws51{word-spacing:3.350933pt;}
.ws7{word-spacing:3.360000pt;}
.wsf7{word-spacing:3.405867pt;}
.ws90{word-spacing:3.460800pt;}
.ws2c{word-spacing:3.515733pt;}
.ws84{word-spacing:3.625600pt;}
.ws2e{word-spacing:3.735467pt;}
.wsae{word-spacing:3.754667pt;}
.ws62{word-spacing:3.845333pt;}
.ws6f{word-spacing:3.900267pt;}
.ws25{word-spacing:3.955200pt;}
.wsfd{word-spacing:4.010133pt;}
.ws37{word-spacing:4.065067pt;}
.wsb7{word-spacing:4.224000pt;}
.wse0{word-spacing:4.339733pt;}
.wsc5{word-spacing:4.449600pt;}
.ws80{word-spacing:4.559467pt;}
.ws35{word-spacing:4.608000pt;}
.wsd{word-spacing:4.778667pt;}
.wsb1{word-spacing:4.834133pt;}
.wse3{word-spacing:4.889067pt;}
.ws58{word-spacing:4.944000pt;}
.wsb8{word-spacing:4.992000pt;}
.ws19{word-spacing:5.053867pt;}
.wsdb{word-spacing:5.108800pt;}
.ws7d{word-spacing:5.218667pt;}
.ws8a{word-spacing:5.273600pt;}
.ws1f{word-spacing:5.328533pt;}
.ws4d{word-spacing:5.383467pt;}
.wsf5{word-spacing:5.493333pt;}
.ws6c{word-spacing:5.568000pt;}
.ws61{word-spacing:5.822933pt;}
.ws9{word-spacing:6.016000pt;}
.ws39{word-spacing:6.097600pt;}
.wsa0{word-spacing:6.152533pt;}
.wse7{word-spacing:6.207467pt;}
.ws26{word-spacing:6.218667pt;}
.wsef{word-spacing:6.262400pt;}
.wse6{word-spacing:6.314667pt;}
.ws52{word-spacing:6.372267pt;}
.wscb{word-spacing:6.427200pt;}
.wsf0{word-spacing:6.482133pt;}
.wsdd{word-spacing:6.592000pt;}
.wsee{word-spacing:6.646933pt;}
.ws38{word-spacing:6.811733pt;}
.wse2{word-spacing:6.866667pt;}
.ws4a{word-spacing:6.921600pt;}
.wsaf{word-spacing:6.976533pt;}
.wsf2{word-spacing:7.031467pt;}
.ws9c{word-spacing:7.086400pt;}
.ws89{word-spacing:7.196267pt;}
.wsfa{word-spacing:7.251200pt;}
.wsf{word-spacing:7.253333pt;}
.wsaa{word-spacing:7.361067pt;}
.ws21{word-spacing:7.416000pt;}
.wsfe{word-spacing:7.466667pt;}
.wsc1{word-spacing:7.470933pt;}
.ws23{word-spacing:7.635733pt;}
.ws2d{word-spacing:7.745600pt;}
.wsd8{word-spacing:7.855467pt;}
.ws2a{word-spacing:8.020267pt;}
.wse{word-spacing:8.021333pt;}
.wsac{word-spacing:8.130133pt;}
.wsbc{word-spacing:8.160000pt;}
.ws66{word-spacing:8.240000pt;}
.wsf4{word-spacing:8.294933pt;}
.ws5d{word-spacing:8.349867pt;}
.ws33{word-spacing:8.404800pt;}
.wsec{word-spacing:8.459733pt;}
.wsca{word-spacing:8.569600pt;}
.wscc{word-spacing:8.624533pt;}
.wsa8{word-spacing:8.734400pt;}
.ws74{word-spacing:8.789333pt;}
.ws87{word-spacing:8.899200pt;}
.ws3b{word-spacing:9.009067pt;}
.ws60{word-spacing:9.118933pt;}
.ws7a{word-spacing:9.216000pt;}
.wsb2{word-spacing:9.228800pt;}
.wseb{word-spacing:9.558400pt;}
.ws29{word-spacing:9.668267pt;}
.ws9a{word-spacing:9.723200pt;}
.ws98{word-spacing:9.778133pt;}
.ws2b{word-spacing:10.052800pt;}
.ws24{word-spacing:10.162667pt;}
.ws31{word-spacing:10.217600pt;}
.ws85{word-spacing:10.547200pt;}
.ws70{word-spacing:11.151467pt;}
.ws18{word-spacing:11.481067pt;}
.wsa5{word-spacing:11.975467pt;}
.wsb3{word-spacing:12.250133pt;}
.wse1{word-spacing:12.579733pt;}
.wsda{word-spacing:12.909333pt;}
.wsd1{word-spacing:13.678400pt;}
.wsd9{word-spacing:13.733333pt;}
.wsab{word-spacing:14.502400pt;}
.wsa1{word-spacing:15.271467pt;}
.wscf{word-spacing:15.710933pt;}
.ws9e{word-spacing:15.765867pt;}
.wsc6{word-spacing:16.150400pt;}
.wsa4{word-spacing:16.260267pt;}
.ws47{word-spacing:16.425067pt;}
.ws9d{word-spacing:16.644800pt;}
.ws9b{word-spacing:18.073067pt;}
.ws13{word-spacing:18.128000pt;}
.ws8d{word-spacing:18.512533pt;}
.ws7f{word-spacing:19.006933pt;}
.wsed{word-spacing:19.061867pt;}
.wsfb{word-spacing:20.709867pt;}
.ws95{word-spacing:21.369067pt;}
.ws12{word-spacing:36.256000pt;}
.ws10{word-spacing:473.216533pt;}
._19{margin-left:-15.656000pt;}
._1d{margin-left:-12.977013pt;}
._3{margin-left:-10.742400pt;}
._f{margin-left:-6.243200pt;}
._4{margin-left:-5.308800pt;}
._1{margin-left:-3.542400pt;}
._8{margin-left:-2.320000pt;}
._0{margin-left:-1.377600pt;}
._2{width:0.979200pt;}
._6{width:2.087467pt;}
._5{width:3.856000pt;}
._9{width:4.788800pt;}
._b{width:5.943467pt;}
._a{width:7.227733pt;}
._7{width:8.264533pt;}
._d{width:9.657280pt;}
._16{width:10.547200pt;}
._10{width:11.579947pt;}
._c{width:12.530293pt;}
._e{width:15.084693pt;}
._11{width:16.699733pt;}
._12{width:18.018133pt;}
._15{width:19.001440pt;}
._17{width:20.665920pt;}
._18{width:21.638240pt;}
._1c{width:22.761493pt;}
._1a{width:24.933013pt;}
._1b{width:26.267520pt;}
._14{width:27.340320pt;}
._13{width:30.477013pt;}
._1e{width:41.066667pt;}
.fs7{font-size:24.874667pt;}
.fsd{font-size:27.984000pt;}
.fsc{font-size:32.026133pt;}
.fse{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fsa{font-size:59.733333pt;}
.fs2{font-size:74.666667pt;}
.fs9{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y20{bottom:68.000000pt;}
.ycd{bottom:68.333467pt;}
.y74{bottom:71.552000pt;}
.yc3{bottom:71.885467pt;}
.y45{bottom:75.633867pt;}
.y1f{bottom:80.000000pt;}
.ycc{bottom:80.333467pt;}
.y179{bottom:82.343200pt;}
.y6d{bottom:83.552000pt;}
.yc2{bottom:83.885467pt;}
.y1e{bottom:92.000000pt;}
.y44{bottom:92.113867pt;}
.ycb{bottom:92.333467pt;}
.y9a{bottom:95.552000pt;}
.yc1{bottom:95.885467pt;}
.y178{bottom:98.823200pt;}
.y1d{bottom:104.000000pt;}
.yc0{bottom:104.333467pt;}
.y155{bottom:107.552000pt;}
.yca{bottom:107.885467pt;}
.y43{bottom:108.593867pt;}
.y11a{bottom:113.772400pt;}
.y177{bottom:115.303200pt;}
.y1c{bottom:116.000000pt;}
.yc9{bottom:116.333467pt;}
.y6c{bottom:119.552000pt;}
.ybf{bottom:119.885467pt;}
.y42{bottom:125.073867pt;}
.y1b{bottom:128.000000pt;}
.y119{bottom:130.252400pt;}
.yf0{bottom:131.552000pt;}
.yf4{bottom:131.783200pt;}
.yc8{bottom:131.885467pt;}
.y156{bottom:132.263200pt;}
.y1a{bottom:140.000000pt;}
.yc7{bottom:140.333467pt;}
.y41{bottom:141.553867pt;}
.y6b{bottom:143.552000pt;}
.y176{bottom:143.865067pt;}
.y118{bottom:146.732400pt;}
.y99{bottom:147.927200pt;}
.yf3{bottom:148.263200pt;}
.y19{bottom:152.000000pt;}
.yc6{bottom:152.333467pt;}
.y154{bottom:155.552000pt;}
.y40{bottom:158.033867pt;}
.y175{bottom:160.345067pt;}
.y117{bottom:163.212400pt;}
.y18{bottom:164.000000pt;}
.y98{bottom:164.407200pt;}
.yf2{bottom:164.743200pt;}
.ybe{bottom:165.076667pt;}
.y6a{bottom:167.552000pt;}
.yc5{bottom:167.885467pt;}
.y3f{bottom:174.513867pt;}
.y13b{bottom:176.000000pt;}
.y174{bottom:176.825067pt;}
.y17{bottom:179.552000pt;}
.y116{bottom:179.692400pt;}
.yc4{bottom:179.885467pt;}
.y97{bottom:180.887200pt;}
.yf1{bottom:181.223200pt;}
.ybd{bottom:181.556667pt;}
.y73{bottom:188.000000pt;}
.y3e{bottom:190.993867pt;}
.y13a{bottom:191.552000pt;}
.y173{bottom:193.305067pt;}
.y115{bottom:196.172400pt;}
.y96{bottom:197.367200pt;}
.y69{bottom:197.703200pt;}
.ybc{bottom:198.036667pt;}
.yef{bottom:199.545067pt;}
.y139{bottom:200.000000pt;}
.y72{bottom:203.552000pt;}
.y3d{bottom:207.473867pt;}
.y172{bottom:209.785067pt;}
.y71{bottom:212.000000pt;}
.y114{bottom:212.652400pt;}
.y16{bottom:212.862800pt;}
.y95{bottom:213.847200pt;}
.y68{bottom:214.183200pt;}
.ybb{bottom:214.516667pt;}
.yee{bottom:216.025067pt;}
.y3c{bottom:223.953867pt;}
.y138{bottom:224.000000pt;}
.y171{bottom:226.265067pt;}
.y70{bottom:227.552000pt;}
.y15{bottom:228.862800pt;}
.y113{bottom:229.132400pt;}
.y94{bottom:230.327200pt;}
.y67{bottom:230.663200pt;}
.yba{bottom:230.996667pt;}
.yed{bottom:232.505067pt;}
.y6f{bottom:236.000000pt;}
.y137{bottom:239.552000pt;}
.y3b{bottom:240.433867pt;}
.y170{bottom:242.745067pt;}
.y14{bottom:244.862800pt;}
.y112{bottom:245.612400pt;}
.y93{bottom:246.807200pt;}
.y66{bottom:247.143200pt;}
.yb9{bottom:247.476667pt;}
.yec{bottom:248.985067pt;}
.y6e{bottom:251.552000pt;}
.y3a{bottom:256.913867pt;}
.y16f{bottom:259.225067pt;}
.y13{bottom:260.862800pt;}
.y111{bottom:262.092400pt;}
.y92{bottom:263.287200pt;}
.y65{bottom:263.623200pt;}
.yb8{bottom:263.956667pt;}
.yeb{bottom:265.465067pt;}
.y136{bottom:271.852400pt;}
.y39{bottom:273.393867pt;}
.y153{bottom:273.625067pt;}
.y16e{bottom:275.705067pt;}
.y12{bottom:276.862800pt;}
.y110{bottom:278.572400pt;}
.y91{bottom:279.767200pt;}
.y64{bottom:280.103200pt;}
.yb7{bottom:280.436667pt;}
.yea{bottom:281.945067pt;}
.y135{bottom:286.252400pt;}
.y38{bottom:289.873867pt;}
.y152{bottom:290.105067pt;}
.y16d{bottom:292.185067pt;}
.y10f{bottom:295.052400pt;}
.y90{bottom:296.247200pt;}
.y63{bottom:296.583200pt;}
.yb6{bottom:296.916667pt;}
.ye9{bottom:298.425067pt;}
.y11{bottom:299.529467pt;}
.y134{bottom:300.652400pt;}
.y37{bottom:306.353867pt;}
.y151{bottom:306.585067pt;}
.y16c{bottom:308.665067pt;}
.y10e{bottom:311.532400pt;}
.y8f{bottom:312.727200pt;}
.y62{bottom:313.063200pt;}
.yb5{bottom:313.396667pt;}
.ye8{bottom:314.905067pt;}
.y133{bottom:315.052400pt;}
.y36{bottom:322.833867pt;}
.y150{bottom:323.065067pt;}
.y16b{bottom:325.145067pt;}
.y10d{bottom:328.012400pt;}
.y8e{bottom:329.207200pt;}
.y132{bottom:329.452400pt;}
.y61{bottom:329.543200pt;}
.yb4{bottom:329.876667pt;}
.ye7{bottom:331.385067pt;}
.y35{bottom:339.313867pt;}
.y14f{bottom:339.545067pt;}
.y16a{bottom:341.625067pt;}
.y131{bottom:343.852400pt;}
.y10c{bottom:344.492400pt;}
.y8d{bottom:345.687200pt;}
.y60{bottom:346.023200pt;}
.yb3{bottom:346.356667pt;}
.ye6{bottom:347.865067pt;}
.y10{bottom:351.796133pt;}
.y14e{bottom:356.025067pt;}
.y169{bottom:358.105067pt;}
.y130{bottom:360.332400pt;}
.y10b{bottom:360.972400pt;}
.y8c{bottom:362.167200pt;}
.y5f{bottom:362.503200pt;}
.yb2{bottom:362.836667pt;}
.ye5{bottom:364.345067pt;}
.yf{bottom:370.996133pt;}
.y34{bottom:372.273867pt;}
.y14d{bottom:372.505067pt;}
.y168{bottom:374.585067pt;}
.y12f{bottom:376.812400pt;}
.y10a{bottom:377.452400pt;}
.y8b{bottom:378.647200pt;}
.y5e{bottom:378.983200pt;}
.yb1{bottom:379.316667pt;}
.ye4{bottom:380.825067pt;}
.y14c{bottom:388.985067pt;}
.y167{bottom:391.065067pt;}
.y12e{bottom:393.292400pt;}
.y109{bottom:393.932400pt;}
.y8a{bottom:395.127200pt;}
.y5d{bottom:395.463200pt;}
.yb0{bottom:395.796667pt;}
.ye3{bottom:397.305067pt;}
.y14b{bottom:405.465067pt;}
.ye{bottom:406.508933pt;}
.y166{bottom:407.545067pt;}
.y12d{bottom:409.772400pt;}
.y108{bottom:410.412400pt;}
.y89{bottom:411.607200pt;}
.y5c{bottom:411.943200pt;}
.yaf{bottom:412.276667pt;}
.ye2{bottom:413.785067pt;}
.y33{bottom:421.873867pt;}
.y14a{bottom:421.945067pt;}
.y165{bottom:424.025067pt;}
.y12c{bottom:426.252400pt;}
.y107{bottom:426.892400pt;}
.y88{bottom:428.087200pt;}
.y5b{bottom:428.423200pt;}
.yae{bottom:428.756667pt;}
.yd{bottom:429.221867pt;}
.ye1{bottom:430.265067pt;}
.y32{bottom:438.353867pt;}
.y149{bottom:438.425067pt;}
.y164{bottom:440.505067pt;}
.y12b{bottom:442.732400pt;}
.y106{bottom:443.372400pt;}
.y87{bottom:444.567200pt;}
.y5a{bottom:444.903200pt;}
.yad{bottom:445.236800pt;}
.ye0{bottom:446.745067pt;}
.yc{bottom:452.955200pt;}
.y148{bottom:454.905067pt;}
.y163{bottom:456.985067pt;}
.y12a{bottom:459.212400pt;}
.y105{bottom:459.852400pt;}
.y86{bottom:461.047200pt;}
.y59{bottom:461.383200pt;}
.yac{bottom:461.716667pt;}
.ydf{bottom:463.225067pt;}
.y31{bottom:471.313867pt;}
.y147{bottom:471.385067pt;}
.y162{bottom:473.465067pt;}
.y129{bottom:475.692400pt;}
.y104{bottom:476.332400pt;}
.y85{bottom:477.527200pt;}
.y58{bottom:477.863200pt;}
.yab{bottom:478.196667pt;}
.yde{bottom:479.705067pt;}
.y17c{bottom:479.783200pt;}
.y30{bottom:487.793867pt;}
.y146{bottom:487.865067pt;}
.y161{bottom:489.945067pt;}
.yb{bottom:491.355200pt;}
.y128{bottom:492.172400pt;}
.y103{bottom:492.812400pt;}
.y84{bottom:494.007200pt;}
.y57{bottom:494.343200pt;}
.yaa{bottom:494.676667pt;}
.y17b{bottom:495.783200pt;}
.ydd{bottom:496.185067pt;}
.y2f{bottom:504.273867pt;}
.y145{bottom:504.345067pt;}
.y160{bottom:506.425067pt;}
.y127{bottom:508.652400pt;}
.y102{bottom:509.292400pt;}
.y83{bottom:510.487200pt;}
.y56{bottom:510.823200pt;}
.ya9{bottom:511.156800pt;}
.y17a{bottom:511.783200pt;}
.ydc{bottom:512.665067pt;}
.ya{bottom:515.355200pt;}
.y2e{bottom:520.753867pt;}
.y144{bottom:520.825067pt;}
.y15f{bottom:522.905067pt;}
.y126{bottom:525.132400pt;}
.y101{bottom:525.772400pt;}
.y82{bottom:526.967200pt;}
.y55{bottom:527.303200pt;}
.ya8{bottom:527.636667pt;}
.ydb{bottom:529.145067pt;}
.y2d{bottom:537.233867pt;}
.y143{bottom:537.305067pt;}
.y9{bottom:539.355200pt;}
.y15e{bottom:539.385067pt;}
.y125{bottom:541.612400pt;}
.y100{bottom:542.252400pt;}
.y81{bottom:543.447200pt;}
.y54{bottom:543.783200pt;}
.ya7{bottom:544.116667pt;}
.yda{bottom:545.625067pt;}
.y2c{bottom:553.713867pt;}
.y142{bottom:553.785067pt;}
.y15d{bottom:555.865067pt;}
.y124{bottom:558.092400pt;}
.yff{bottom:558.732400pt;}
.y80{bottom:559.927200pt;}
.y53{bottom:560.263200pt;}
.ya6{bottom:560.596667pt;}
.yd9{bottom:562.105067pt;}
.y8{bottom:563.355200pt;}
.y2b{bottom:570.193867pt;}
.y141{bottom:570.265067pt;}
.y15c{bottom:572.345067pt;}
.y123{bottom:574.572400pt;}
.yfe{bottom:575.212400pt;}
.y7f{bottom:576.407200pt;}
.y52{bottom:576.743200pt;}
.ya5{bottom:577.076667pt;}
.yd8{bottom:578.585067pt;}
.y2a{bottom:586.673867pt;}
.y140{bottom:586.745067pt;}
.y15b{bottom:588.825067pt;}
.y122{bottom:591.052400pt;}
.yfd{bottom:591.692400pt;}
.y7e{bottom:592.887200pt;}
.y51{bottom:593.223200pt;}
.ya4{bottom:593.556667pt;}
.yd7{bottom:595.065067pt;}
.y29{bottom:603.153867pt;}
.y13f{bottom:603.225067pt;}
.y15a{bottom:605.305067pt;}
.y121{bottom:607.532400pt;}
.yfc{bottom:608.172400pt;}
.y7d{bottom:609.367200pt;}
.y50{bottom:609.703200pt;}
.ya3{bottom:610.036667pt;}
.y7{bottom:611.355200pt;}
.y13e{bottom:619.705067pt;}
.y159{bottom:621.785067pt;}
.y120{bottom:624.012400pt;}
.yfb{bottom:624.652400pt;}
.y7c{bottom:625.847200pt;}
.y4f{bottom:626.183200pt;}
.y28{bottom:626.300533pt;}
.ya2{bottom:626.516667pt;}
.yd6{bottom:627.545067pt;}
.y6{bottom:635.355200pt;}
.y13d{bottom:636.185067pt;}
.y158{bottom:638.265067pt;}
.y11f{bottom:640.492400pt;}
.yfa{bottom:641.132400pt;}
.yd5{bottom:641.945067pt;}
.y7b{bottom:642.327200pt;}
.y4e{bottom:642.663200pt;}
.ya1{bottom:642.996667pt;}
.y13c{bottom:652.665067pt;}
.y157{bottom:654.745067pt;}
.yd4{bottom:656.345067pt;}
.y11e{bottom:656.972400pt;}
.yf9{bottom:657.612400pt;}
.y7a{bottom:658.807200pt;}
.y4d{bottom:659.143200pt;}
.y5{bottom:659.355200pt;}
.ya0{bottom:659.476667pt;}
.y27{bottom:660.380533pt;}
.yd3{bottom:670.745067pt;}
.y11d{bottom:673.452400pt;}
.yf8{bottom:674.092400pt;}
.y79{bottom:675.287200pt;}
.y4c{bottom:675.623200pt;}
.y9f{bottom:675.956667pt;}
.y26{bottom:676.860533pt;}
.y4{bottom:683.355200pt;}
.yd2{bottom:685.145067pt;}
.yf7{bottom:690.572400pt;}
.y78{bottom:691.767200pt;}
.y4b{bottom:692.103200pt;}
.y9e{bottom:692.436667pt;}
.yd1{bottom:699.545067pt;}
.y11c{bottom:705.932400pt;}
.yf6{bottom:707.052400pt;}
.y3{bottom:707.355200pt;}
.y77{bottom:708.247200pt;}
.y4a{bottom:708.583200pt;}
.y9d{bottom:708.916800pt;}
.y25{bottom:709.820533pt;}
.yd0{bottom:713.945067pt;}
.y11b{bottom:723.532400pt;}
.y76{bottom:724.727200pt;}
.y49{bottom:725.063200pt;}
.y9c{bottom:725.396667pt;}
.y24{bottom:725.820533pt;}
.ycf{bottom:728.345067pt;}
.yf5{bottom:741.132400pt;}
.y75{bottom:741.207200pt;}
.y48{bottom:741.543200pt;}
.y23{bottom:741.820533pt;}
.y9b{bottom:741.876667pt;}
.yce{bottom:742.745067pt;}
.y21{bottom:765.084267pt;}
.y47{bottom:792.196133pt;}
.y46{bottom:804.196133pt;}
.y22{bottom:805.800133pt;}
.hf{height:21.826062pt;}
.ha{height:23.229500pt;}
.h2{height:32.757812pt;}
.he{height:37.031250pt;}
.hb{height:37.437500pt;}
.h10{height:38.142187pt;}
.h8{height:40.161458pt;}
.h7{height:42.117188pt;}
.h11{height:42.950130pt;}
.h9{height:46.796875pt;}
.hd{height:48.200781pt;}
.h6{height:51.476562pt;}
.hc{height:57.791667pt;}
.h5{height:65.515625pt;}
.h3{height:66.656250pt;}
.h4{height:84.234375pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x6{left:48.944800pt;}
.x7{left:50.645733pt;}
.xc{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.xe{left:72.095600pt;}
.x8{left:75.611600pt;}
.x4{left:80.617333pt;}
.xa{left:87.561733pt;}
.xb{left:88.480533pt;}
.xd{left:91.199200pt;}
.x3{left:94.811600pt;}
.x10{left:96.144933pt;}
.xf{left:99.611600pt;}
.x5{left:214.372267pt;}
.x9{left:481.086533pt;}
}




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