
    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_6c1145201bd277e1f53192df.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_eb77a1c45b34e95cf139c6d3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.720703;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_12a3f673e2ec305cef43f036.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149333;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_00928a03501087dcb03b9bfb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_138216f0f370ce4c31047502.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_6956cd84336240d94357f09e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_e471606ed8a4a5efe7095333.woff')format("woff");}.ff7{font-family:ff7;line-height:1.056641;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_b3ab3830b4cdd7798b7cd3f1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112889;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_bf1a32843bc2c12b22135932.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112444;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_c2a26abaf2eda0b9e02bd77c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.099000;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_9483384de873315d67889ed2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.992444;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_b05a9e9c580a7a527a5c96ba.woff')format("woff");}.ffc{font-family:ffc;line-height:1.034222;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_5a00ab093cae455e802661eb.woff')format("woff");}.ffd{font-family:ffd;line-height:0.759277;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);}
.v1{vertical-align:-97.200000px;}
.v6{vertical-align:-33.120000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.v2{vertical-align:38.880000px;}
.ls18{letter-spacing:-1.008000px;}
.ls26{letter-spacing:-0.936000px;}
.ls45{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.481200px;}
.ls19{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.331200px;}
.ls4d{letter-spacing:-0.330000px;}
.ls32{letter-spacing:-0.312000px;}
.ls41{letter-spacing:-0.310800px;}
.ls3b{letter-spacing:-0.308400px;}
.ls3{letter-spacing:-0.306000px;}
.ls31{letter-spacing:-0.303600px;}
.lsd{letter-spacing:-0.288000px;}
.ls4f{letter-spacing:-0.272400px;}
.ls4{letter-spacing:-0.270000px;}
.ls4c{letter-spacing:-0.222600px;}
.ls17{letter-spacing:-0.216000px;}
.ls5f{letter-spacing:-0.163200px;}
.ls4a{letter-spacing:-0.155400px;}
.ls27{letter-spacing:-0.144000px;}
.ls52{letter-spacing:-0.112800px;}
.ls1{letter-spacing:-0.112200px;}
.ls7{letter-spacing:-0.107400px;}
.ls3c{letter-spacing:-0.097800px;}
.ls1e{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.058320px;}
.ls40{letter-spacing:-0.025920px;}
.ls2{letter-spacing:-0.018000px;}
.ls44{letter-spacing:-0.001440px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.022320px;}
.ls47{letter-spacing:0.043920px;}
.ls9{letter-spacing:0.060600px;}
.lsf{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.115200px;}
.ls3e{letter-spacing:0.121200px;}
.ls28{letter-spacing:0.122400px;}
.ls29{letter-spacing:0.129600px;}
.ls37{letter-spacing:0.130800px;}
.ls24{letter-spacing:0.131040px;}
.lsb{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.150000px;}
.ls49{letter-spacing:0.166800px;}
.ls2c{letter-spacing:0.167040px;}
.ls6{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.180000px;}
.ls51{letter-spacing:0.192000px;}
.ls57{letter-spacing:0.202800px;}
.ls5a{letter-spacing:0.208800px;}
.ls16{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.223200px;}
.ls48{letter-spacing:0.267600px;}
.ls12{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.294480px;}
.ls36{letter-spacing:0.295800px;}
.ls2f{letter-spacing:0.309600px;}
.ls4e{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.342000px;}
.lsc{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.370800px;}
.ls1c{letter-spacing:0.396000px;}
.ls43{letter-spacing:0.414000px;}
.ls42{letter-spacing:0.416400px;}
.ls1b{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.504000px;}
.ls58{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.648000px;}
.ls55{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.783360px;}
.ls13{letter-spacing:0.792000px;}
.ls54{letter-spacing:0.912000px;}
.ls46{letter-spacing:0.936000px;}
.ls5e{letter-spacing:0.956880px;}
.ls59{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.656000px;}
.ls25{letter-spacing:1.676880px;}
.ls5b{letter-spacing:2.396880px;}
.ls1a{letter-spacing:3.816000px;}
.ls50{letter-spacing:4.536000px;}
.ls3f{letter-spacing:4.554000px;}
.ls3d{letter-spacing:5.256000px;}
.ls3a{letter-spacing:5.276880px;}
.ls21{letter-spacing:6.189120px;}
.ls56{letter-spacing:6.696000px;}
.ls30{letter-spacing:6.716880px;}
.ls53{letter-spacing:8.156880px;}
.ls4b{letter-spacing:12.456000px;}
.ls5d{letter-spacing:12.476880px;}
.ls5c{letter-spacing:13.176000px;}
.ls33{letter-spacing:16.056000px;}
.ls60{letter-spacing:49.680000px;}
.ls20{letter-spacing:67.896000px;}
.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;}
}
.ws41{word-spacing:-84.240000px;}
.ws34{word-spacing:-20.232480px;}
.ws33{word-spacing:-20.008800px;}
.ws2f{word-spacing:-19.964880px;}
.ws42{word-spacing:-19.038240px;}
.ws18{word-spacing:-18.529680px;}
.ws19{word-spacing:-18.506880px;}
.ws3f{word-spacing:-18.429120px;}
.ws1c{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.424000px;}
.ws11{word-spacing:-17.352000px;}
.ws12{word-spacing:-17.280000px;}
.ws8{word-spacing:-17.208000px;}
.ws3b{word-spacing:-17.136000px;}
.wsc{word-spacing:-17.064000px;}
.ws21{word-spacing:-16.992000px;}
.ws1d{word-spacing:-16.920000px;}
.ws1b{word-spacing:-16.848000px;}
.wsa{word-spacing:-16.776000px;}
.ws16{word-spacing:-16.704000px;}
.ws23{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.488000px;}
.wse{word-spacing:-16.344000px;}
.ws30{word-spacing:-16.272000px;}
.ws1a{word-spacing:-16.128000px;}
.ws26{word-spacing:-14.386320px;}
.ws3e{word-spacing:-14.365920px;}
.ws2b{word-spacing:-14.284320px;}
.ws22{word-spacing:-14.163120px;}
.ws2e{word-spacing:-14.161680px;}
.ws43{word-spacing:-13.999920px;}
.ws3d{word-spacing:-13.803120px;}
.ws7{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.398360px;}
.ws1{word-spacing:-13.393560px;}
.ws14{word-spacing:-13.158000px;}
.ws9{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.978000px;}
.ws15{word-spacing:-12.942000px;}
.ws1e{word-spacing:-12.798000px;}
.ws13{word-spacing:-12.726000px;}
.ws17{word-spacing:-12.708000px;}
.ws10{word-spacing:-12.582000px;}
.ws2{word-spacing:-12.186000px;}
.ws4{word-spacing:-11.934000px;}
.ws3{word-spacing:-11.898000px;}
.ws37{word-spacing:-11.803680px;}
.ws24{word-spacing:-11.728680px;}
.ws35{word-spacing:-11.599680px;}
.ws31{word-spacing:-11.562480px;}
.ws27{word-spacing:-11.555280px;}
.ws20{word-spacing:-11.432880px;}
.ws2c{word-spacing:-11.406960px;}
.ws39{word-spacing:-11.210280px;}
.ws29{word-spacing:-11.124480px;}
.ws38{word-spacing:-9.524160px;}
.ws40{word-spacing:-9.423360px;}
.ws25{word-spacing:-9.345360px;}
.ws32{word-spacing:-9.329760px;}
.ws1f{word-spacing:-9.214560px;}
.ws2a{word-spacing:-9.116760px;}
.ws36{word-spacing:-9.059160px;}
.ws2d{word-spacing:-8.903760px;}
.ws3a{word-spacing:-8.884560px;}
.ws28{word-spacing:-8.883360px;}
.ws3c{word-spacing:-8.514480px;}
.ws0{word-spacing:0.000000px;}
._1b{margin-left:-12.697920px;}
._1d{margin-left:-10.970640px;}
._6{margin-left:-5.696160px;}
._5{margin-left:-4.406880px;}
._4{margin-left:-2.970000px;}
._2{margin-left:-1.005840px;}
._3{width:1.018560px;}
._1{width:2.439840px;}
._b{width:3.590160px;}
._8{width:4.915920px;}
._a{width:6.233520px;}
._e{width:7.992000px;}
._d{width:9.000000px;}
._10{width:10.008000px;}
._9{width:11.016000px;}
._f{width:12.240000px;}
._11{width:13.309440px;}
._c{width:14.544000px;}
._12{width:15.696000px;}
._1e{width:17.422320px;}
._16{width:18.616320px;}
._18{width:20.445840px;}
._17{width:21.960000px;}
._1a{width:23.256000px;}
._14{width:24.840000px;}
._13{width:26.064000px;}
._1c{width:27.360000px;}
._19{width:29.016000px;}
._21{width:30.312000px;}
._23{width:31.464000px;}
._24{width:32.472000px;}
._20{width:33.552000px;}
._1f{width:34.704000px;}
._22{width:40.680000px;}
._7{width:827.247120px;}
._0{width:844.311120px;}
._15{width:847.212000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y172{bottom:3.240000px;}
.y73{bottom:3.960000px;}
.y6e{bottom:4.140000px;}
.y6b{bottom:4.680000px;}
.y65{bottom:4.860000px;}
.y68{bottom:5.760000px;}
.y74{bottom:6.840000px;}
.y6f{bottom:7.020000px;}
.y6c{bottom:8.820000px;}
.y66{bottom:10.620000px;}
.y69{bottom:14.400000px;}
.y171{bottom:20.196000px;}
.y16f{bottom:31.860000px;}
.y170{bottom:37.116000px;}
.y2{bottom:41.076000px;}
.y93{bottom:55.296000px;}
.y1{bottom:56.556000px;}
.y3{bottom:68.976000px;}
.y16e{bottom:70.956000px;}
.y125{bottom:88.416000px;}
.y14c{bottom:95.976000px;}
.y62{bottom:96.156000px;}
.yeb{bottom:98.676000px;}
.yb1{bottom:100.656000px;}
.y1ed{bottom:101.016000px;}
.y38{bottom:101.736000px;}
.y107{bottom:103.356000px;}
.y124{bottom:107.316000px;}
.y16d{bottom:108.216000px;}
.y61{bottom:112.536000px;}
.y127{bottom:114.876000px;}
.y8d{bottom:115.236000px;}
.y1ec{bottom:119.736000px;}
.yea{bottom:121.176000px;}
.yb0{bottom:123.156000px;}
.y37{bottom:123.696000px;}
.ycd{bottom:124.236000px;}
.y145{bottom:126.036000px;}
.y126{bottom:127.116000px;}
.y60{bottom:129.096000px;}
.y123{bottom:133.596000px;}
.y8c{bottom:134.136000px;}
.y1eb{bottom:138.636000px;}
.y36{bottom:143.496000px;}
.ye9{bottom:143.676000px;}
.y106{bottom:144.216000px;}
.y144{bottom:144.756000px;}
.y5f{bottom:145.476000px;}
.yaf{bottom:145.656000px;}
.y122{bottom:145.836000px;}
.ycc{bottom:146.736000px;}
.y14b{bottom:152.310000px;}
.y1a9{bottom:153.030000px;}
.y8b{bottom:153.210000px;}
.y1ea{bottom:157.350000px;}
.y5e{bottom:162.390000px;}
.y35{bottom:163.110000px;}
.y143{bottom:163.470000px;}
.y105{bottom:164.550000px;}
.ye8{bottom:166.170000px;}
.yae{bottom:168.150000px;}
.ycb{bottom:169.230000px;}
.y147{bottom:171.030000px;}
.y8a{bottom:172.290000px;}
.y1a8{bottom:175.530000px;}
.y1e9{bottom:176.070000px;}
.y13f{bottom:178.590000px;}
.y5d{bottom:180.210000px;}
.y142{bottom:182.190000px;}
.y1c8{bottom:182.370000px;}
.y34{bottom:182.910000px;}
.y146{bottom:183.270000px;}
.y121{bottom:184.890000px;}
.y104{bottom:185.070000px;}
.ye7{bottom:188.670000px;}
.y149{bottom:189.750000px;}
.yad{bottom:190.830000px;}
.y89{bottom:191.370000px;}
.yca{bottom:191.730000px;}
.y1e8{bottom:194.790000px;}
.y5c{bottom:196.770000px;}
.y1a7{bottom:198.030000px;}
.y13e{bottom:201.090000px;}
.y148{bottom:201.990000px;}
.y33{bottom:202.530000px;}
.y103{bottom:205.410000px;}
.y120{bottom:207.390000px;}
.y141{bottom:208.650000px;}
.y18a{bottom:209.010000px;}
.y88{bottom:210.450000px;}
.ye6{bottom:211.170000px;}
.y5b{bottom:213.330000px;}
.y1e7{bottom:213.510000px;}
.yc9{bottom:214.230000px;}
.y1b9{bottom:214.590000px;}
.y14a{bottom:219.810000px;}
.y1a6{bottom:220.530000px;}
.y140{bottom:220.710000px;}
.y32{bottom:222.150000px;}
.y13d{bottom:223.590000px;}
.y102{bottom:224.670000px;}
.y156{bottom:227.370000px;}
.y87{bottom:229.395000px;}
.y5a{bottom:229.755000px;}
.y11f{bottom:229.935000px;}
.y189{bottom:231.555000px;}
.y1e6{bottom:232.275000px;}
.ye5{bottom:233.715000px;}
.yee{bottom:234.975000px;}
.yac{bottom:235.875000px;}
.y1f{bottom:236.775000px;}
.y1b8{bottom:237.135000px;}
.y151{bottom:238.575000px;}
.y18b{bottom:239.655000px;}
.y31{bottom:241.995000px;}
.y1a5{bottom:243.075000px;}
.y13c{bottom:246.135000px;}
.y59{bottom:246.315000px;}
.y101{bottom:247.215000px;}
.y86{bottom:248.475000px;}
.y1e5{bottom:251.175000px;}
.y11e{bottom:252.435000px;}
.y188{bottom:254.055000px;}
.ye4{bottom:256.215000px;}
.y150{bottom:257.295000px;}
.yab{bottom:258.375000px;}
.yc8{bottom:259.275000px;}
.y1b7{bottom:259.635000px;}
.y1e{bottom:261.615000px;}
.y58{bottom:262.695000px;}
.y154{bottom:264.855000px;}
.y1a4{bottom:265.575000px;}
.y85{bottom:267.555000px;}
.y13b{bottom:268.635000px;}
.y100{bottom:269.715000px;}
.y1e4{bottom:269.895000px;}
.y11d{bottom:274.935000px;}
.y14f{bottom:276.015000px;}
.y1c7{bottom:276.195000px;}
.y187{bottom:276.555000px;}
.y18f{bottom:277.095000px;}
.ye3{bottom:278.715000px;}
.y57{bottom:279.255000px;}
.yaa{bottom:280.875000px;}
.y1d{bottom:281.415000px;}
.yc7{bottom:281.775000px;}
.y1b6{bottom:282.135000px;}
.y160{bottom:283.575000px;}
.y84{bottom:286.635000px;}
.y1a3{bottom:288.075000px;}
.y1e3{bottom:288.975000px;}
.y13a{bottom:291.135000px;}
.yff{bottom:292.215000px;}
.y155{bottom:294.735000px;}
.y1c6{bottom:294.915000px;}
.y56{bottom:295.635000px;}
.y164{bottom:295.815000px;}
.y11c{bottom:297.435000px;}
.y186{bottom:299.055000px;}
.y1c{bottom:301.035000px;}
.ye2{bottom:301.215000px;}
.y14e{bottom:302.295000px;}
.ya9{bottom:303.375000px;}
.yc6{bottom:304.275000px;}
.y1b5{bottom:304.635000px;}
.y83{bottom:305.715000px;}
.y1e2{bottom:309.675000px;}
.y1a2{bottom:310.575000px;}
.y55{bottom:312.195000px;}
.y139{bottom:313.635000px;}
.y14d{bottom:314.535000px;}
.yfe{bottom:314.715000px;}
.y11b{bottom:319.935000px;}
.y1b{bottom:320.655000px;}
.y153{bottom:321.195000px;}
.y185{bottom:321.555000px;}
.ye1{bottom:323.715000px;}
.y82{bottom:324.795000px;}
.ya8{bottom:325.875000px;}
.yc5{bottom:326.775000px;}
.y1b4{bottom:327.135000px;}
.y54{bottom:329.475000px;}
.y1e1{bottom:329.835000px;}
.y15f{bottom:332.355000px;}
.y1c5{bottom:332.895000px;}
.y1a1{bottom:333.075000px;}
.y152{bottom:333.435000px;}
.y138{bottom:336.135000px;}
.yfd{bottom:337.215000px;}
.y16c{bottom:339.915000px;}
.y1a{bottom:340.455000px;}
.y30{bottom:341.715000px;}
.y11a{bottom:342.435000px;}
.y81{bottom:343.875000px;}
.y184{bottom:344.055000px;}
.ye0{bottom:346.215000px;}
.y53{bottom:347.835000px;}
.ya7{bottom:348.375000px;}
.y1e0{bottom:348.555000px;}
.yc4{bottom:349.275000px;}
.y1b3{bottom:349.635000px;}
.y15e{bottom:351.075000px;}
.y1c4{bottom:353.415000px;}
.y1a0{bottom:355.575000px;}
.y137{bottom:358.635000px;}
.yfc{bottom:359.715000px;}
.y19{bottom:360.075000px;}
.y80{bottom:362.955000px;}
.y52{bottom:364.755000px;}
.y119{bottom:364.935000px;}
.y183{bottom:366.555000px;}
.y1df{bottom:367.455000px;}
.y2f{bottom:367.995000px;}
.ydf{bottom:368.715000px;}
.y15d{bottom:369.795000px;}
.ya6{bottom:370.875000px;}
.yc3{bottom:371.775000px;}
.y1b2{bottom:372.135000px;}
.y1c3{bottom:374.295000px;}
.y19f{bottom:378.075000px;}
.y18{bottom:379.875000px;}
.y136{bottom:381.135000px;}
.y51{bottom:381.315000px;}
.y7f{bottom:382.035000px;}
.yfb{bottom:382.215000px;}
.y1de{bottom:386.175000px;}
.y118{bottom:387.435000px;}
.y15c{bottom:388.515000px;}
.y182{bottom:389.055000px;}
.yde{bottom:391.215000px;}
.ya5{bottom:393.375000px;}
.y2e{bottom:394.275000px;}
.y1b1{bottom:394.635000px;}
.y16b{bottom:396.075000px;}
.y50{bottom:397.695000px;}
.y17{bottom:399.495000px;}
.y19e{bottom:400.575000px;}
.y7e{bottom:400.935000px;}
.y135{bottom:403.635000px;}
.yfa{bottom:404.715000px;}
.y1dd{bottom:404.895000px;}
.y163{bottom:407.415000px;}
.y16a{bottom:408.315000px;}
.y117{bottom:409.935000px;}
.y181{bottom:411.555000px;}
.ydd{bottom:413.715000px;}
.y4f{bottom:414.255000px;}
.y15b{bottom:414.975000px;}
.ya4{bottom:415.875000px;}
.yc2{bottom:416.775000px;}
.y1b0{bottom:417.135000px;}
.y16{bottom:419.145000px;}
.y7d{bottom:420.045000px;}
.y2d{bottom:420.585000px;}
.y19d{bottom:423.105000px;}
.y1dc{bottom:423.645000px;}
.y134{bottom:426.165000px;}
.yf9{bottom:427.245000px;}
.y4e{bottom:430.845000px;}
.y116{bottom:432.465000px;}
.y162{bottom:433.725000px;}
.y180{bottom:434.085000px;}
.ydc{bottom:436.245000px;}
.ya3{bottom:438.405000px;}
.y1f5{bottom:438.765000px;}
.y15{bottom:438.945000px;}
.y7c{bottom:439.125000px;}
.yc1{bottom:439.305000px;}
.y1af{bottom:439.665000px;}
.y1db{bottom:442.365000px;}
.y15a{bottom:444.885000px;}
.y19c{bottom:445.605000px;}
.y161{bottom:445.965000px;}
.y2c{bottom:446.865000px;}
.y4d{bottom:447.225000px;}
.y133{bottom:448.665000px;}
.yf8{bottom:449.745000px;}
.y169{bottom:452.445000px;}
.y115{bottom:454.965000px;}
.y17f{bottom:456.585000px;}
.y1f4{bottom:457.485000px;}
.y7b{bottom:458.205000px;}
.y14{bottom:458.565000px;}
.ydb{bottom:458.745000px;}
.ya2{bottom:460.905000px;}
.y1da{bottom:461.265000px;}
.yc0{bottom:461.805000px;}
.y1ae{bottom:462.165000px;}
.y159{bottom:463.605000px;}
.y4c{bottom:463.785000px;}
.y19b{bottom:468.105000px;}
.y132{bottom:471.165000px;}
.yf7{bottom:472.245000px;}
.y2b{bottom:472.965000px;}
.y1f3{bottom:476.205000px;}
.y7a{bottom:477.285000px;}
.y114{bottom:477.465000px;}
.y13{bottom:478.185000px;}
.y17e{bottom:479.085000px;}
.y1d9{bottom:479.985000px;}
.y4b{bottom:480.165000px;}
.yda{bottom:481.245000px;}
.y168{bottom:482.325000px;}
.ya1{bottom:483.405000px;}
.ybf{bottom:484.305000px;}
.y1ad{bottom:484.665000px;}
.y158{bottom:489.885000px;}
.y19a{bottom:490.605000px;}
.y131{bottom:493.665000px;}
.yf6{bottom:494.745000px;}
.y1f2{bottom:494.925000px;}
.y79{bottom:496.365000px;}
.y4a{bottom:496.725000px;}
.y12{bottom:497.985000px;}
.y1d8{bottom:498.705000px;}
.y2a{bottom:499.965000px;}
.y167{bottom:501.225000px;}
.y17d{bottom:501.585000px;}
.y157{bottom:502.125000px;}
.yd9{bottom:503.745000px;}
.y18c{bottom:505.005000px;}
.ya0{bottom:505.905000px;}
.ybe{bottom:506.805000px;}
.y1ac{bottom:507.165000px;}
.y1c2{bottom:509.145000px;}
.y49{bottom:513.105000px;}
.y1f1{bottom:513.645000px;}
.y130{bottom:516.165000px;}
.y78{bottom:517.245000px;}
.y1d7{bottom:517.425000px;}
.y11{bottom:517.605000px;}
.y113{bottom:522.465000px;}
.y17c{bottom:524.085000px;}
.yd8{bottom:526.245000px;}
.yec{bottom:527.505000px;}
.y9f{bottom:528.405000px;}
.ybd{bottom:529.305000px;}
.y48{bottom:529.665000px;}
.y1f0{bottom:532.365000px;}
.y29{bottom:532.905000px;}
.y199{bottom:535.605000px;}
.y1d6{bottom:536.145000px;}
.y77{bottom:536.325000px;}
.y10{bottom:537.405000px;}
.y12f{bottom:538.665000px;}
.yf5{bottom:539.745000px;}
.y112{bottom:544.965000px;}
.y47{bottom:546.045000px;}
.y17b{bottom:546.585000px;}
.yd7{bottom:548.745000px;}
.y1c1{bottom:550.545000px;}
.y9e{bottom:550.905000px;}
.y1ef{bottom:551.625000px;}
.ybc{bottom:551.805000px;}
.y1ab{bottom:552.165000px;}
.y1d5{bottom:554.865000px;}
.y76{bottom:555.405000px;}
.yf{bottom:557.025000px;}
.y166{bottom:557.385000px;}
.y198{bottom:558.105000px;}
.y12e{bottom:561.165000px;}
.yf4{bottom:562.245000px;}
.y46{bottom:562.605000px;}
.y111{bottom:567.465000px;}
.y17a{bottom:569.085000px;}
.yd6{bottom:571.245000px;}
.y1ee{bottom:572.325000px;}
.y1c0{bottom:572.505000px;}
.y9d{bottom:573.405000px;}
.y1d4{bottom:573.765000px;}
.ybb{bottom:574.305000px;}
.y75{bottom:574.485000px;}
.y1aa{bottom:575.025000px;}
.ye{bottom:576.645000px;}
.y165{bottom:577.185000px;}
.y28{bottom:577.905000px;}
.y45{bottom:579.165000px;}
.y197{bottom:580.605000px;}
.y12d{bottom:583.665000px;}
.yf3{bottom:584.925000px;}
.y110{bottom:589.965000px;}
.y1bf{bottom:591.225000px;}
.y179{bottom:591.585000px;}
.y1d3{bottom:592.485000px;}
.y72{bottom:593.565000px;}
.yd5{bottom:593.745000px;}
.y44{bottom:595.545000px;}
.y9c{bottom:595.905000px;}
.yd{bottom:596.445000px;}
.yba{bottom:596.805000px;}
.y196{bottom:603.105000px;}
.y12c{bottom:606.165000px;}
.y1be{bottom:609.990000px;}
.y1d2{bottom:611.250000px;}
.y43{bottom:612.150000px;}
.y71{bottom:612.510000px;}
.y178{bottom:614.130000px;}
.yc{bottom:616.110000px;}
.yd4{bottom:616.290000px;}
.y27{bottom:618.090000px;}
.y9b{bottom:618.450000px;}
.yb9{bottom:619.530000px;}
.y195{bottom:625.650000px;}
.y42{bottom:628.530000px;}
.y1bd{bottom:628.710000px;}
.y12b{bottom:628.890000px;}
.y1d1{bottom:629.970000px;}
.y70{bottom:631.590000px;}
.yf2{bottom:633.030000px;}
.y10f{bottom:635.010000px;}
.yb{bottom:635.910000px;}
.y177{bottom:636.630000px;}
.y26{bottom:637.710000px;}
.yd3{bottom:638.790000px;}
.y9a{bottom:640.950000px;}
.yb8{bottom:642.030000px;}
.y41{bottom:645.090000px;}
.y1bc{bottom:647.430000px;}
.y194{bottom:648.150000px;}
.y1d0{bottom:648.690000px;}
.y6d{bottom:650.670000px;}
.y12a{bottom:651.390000px;}
.ya{bottom:655.530000px;}
.y25{bottom:657.330000px;}
.y10e{bottom:657.510000px;}
.y90{bottom:658.590000px;}
.y176{bottom:659.130000px;}
.yd2{bottom:661.290000px;}
.y40{bottom:661.470000px;}
.y99{bottom:663.450000px;}
.yb7{bottom:664.530000px;}
.y1bb{bottom:666.330000px;}
.y1cf{bottom:667.590000px;}
.y6a{bottom:669.750000px;}
.y193{bottom:671.550000px;}
.y129{bottom:675.150000px;}
.y9{bottom:675.690000px;}
.y24{bottom:677.130000px;}
.y3f{bottom:678.030000px;}
.y109{bottom:678.930000px;}
.y10d{bottom:680.010000px;}
.y175{bottom:682.170000px;}
.yd1{bottom:683.790000px;}
.y1ba{bottom:685.410000px;}
.y1ce{bottom:686.310000px;}
.y98{bottom:686.490000px;}
.yb6{bottom:687.030000px;}
.y67{bottom:690.630000px;}
.y3e{bottom:694.410000px;}
.y23{bottom:696.750000px;}
.y8{bottom:697.650000px;}
.y192{bottom:697.830000px;}
.y128{bottom:700.710000px;}
.y10c{bottom:702.510000px;}
.y174{bottom:704.130000px;}
.y108{bottom:704.490000px;}
.y1cd{bottom:705.030000px;}
.yd0{bottom:706.290000px;}
.y8f{bottom:707.370000px;}
.y97{bottom:708.450000px;}
.y91{bottom:709.350000px;}
.yb5{bottom:709.530000px;}
.y3d{bottom:710.970000px;}
.yf1{bottom:712.410000px;}
.y64{bottom:717.090000px;}
.y7{bottom:717.450000px;}
.y22{bottom:718.530000px;}
.y1cc{bottom:723.750000px;}
.y191{bottom:724.110000px;}
.y10b{bottom:725.010000px;}
.y173{bottom:726.090000px;}
.y3c{bottom:727.350000px;}
.ycf{bottom:728.790000px;}
.yef{bottom:730.230000px;}
.y96{bottom:730.410000px;}
.yb4{bottom:732.030000px;}
.y18e{bottom:734.370000px;}
.y6{bottom:737.610000px;}
.y1cb{bottom:742.470000px;}
.y63{bottom:743.370000px;}
.y3b{bottom:744.270000px;}
.y21{bottom:747.870000px;}
.y10a{bottom:748.410000px;}
.y190{bottom:749.850000px;}
.yce{bottom:751.290000px;}
.y95{bottom:752.370000px;}
.yed{bottom:752.730000px;}
.yb3{bottom:754.530000px;}
.y8e{bottom:756.150000px;}
.y18d{bottom:757.230000px;}
.yf0{bottom:758.130000px;}
.y5{bottom:759.570000px;}
.y1ca{bottom:761.190000px;}
.y3a{bottom:762.630000px;}
.y20{bottom:774.150000px;}
.y94{bottom:775.230000px;}
.yb2{bottom:777.030000px;}
.y4{bottom:779.370000px;}
.y1c9{bottom:780.090000px;}
.y39{bottom:780.990000px;}
.y92{bottom:824.400000px;}
.h17{height:18.180000px;}
.h16{height:18.216000px;}
.h15{height:18.360000px;}
.h18{height:18.396000px;}
.h13{height:20.160000px;}
.he{height:21.960000px;}
.h11{height:25.740000px;}
.h27{height:32.330880px;}
.h1f{height:32.935680px;}
.h3{height:33.494766px;}
.h23{height:45.744000px;}
.h10{height:47.980898px;}
.h29{height:49.587520px;}
.h24{height:49.693760px;}
.h22{height:50.616000px;}
.hd{height:50.623360px;}
.h1d{height:51.071040px;}
.h4{height:53.672960px;}
.ha{height:53.709961px;}
.h28{height:56.112640px;}
.h1b{height:58.368000px;}
.hc{height:59.439023px;}
.h25{height:59.744000px;}
.h1c{height:59.872000px;}
.h5{height:60.992000px;}
.h9{height:61.189805px;}
.hb{height:63.019687px;}
.h26{height:65.871360px;}
.h2{height:65.884219px;}
.h14{height:67.824844px;}
.h6{height:71.360640px;}
.hf{height:71.613281px;}
.h20{height:73.984640px;}
.h21{height:74.104640px;}
.h7{height:81.119360px;}
.h12{height:83.787539px;}
.h1e{height:84.624000px;}
.h8{height:121.984000px;}
.h1a{height:131.674922px;}
.h19{height:132.352640px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w3{width:39.060000px;}
.w2{width:390.885000px;}
.w4{width:454.830000px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x11{left:15.840000px;}
.x10{left:18.720000px;}
.xf{left:24.840000px;}
.xe{left:30.960000px;}
.x18{left:92.016000px;}
.xb{left:98.316000px;}
.x3{left:106.416000px;}
.x2{left:127.656000px;}
.x6{left:188.715000px;}
.x7{left:193.575000px;}
.x5{left:217.875000px;}
.x8{left:249.375000px;}
.xa{left:267.195000px;}
.x9{left:272.415000px;}
.x1b{left:304.305000px;}
.x4{left:314.745000px;}
.x16{left:315.825000px;}
.x17{left:316.905000px;}
.x15{left:318.345000px;}
.x13{left:319.425000px;}
.x14{left:320.505000px;}
.x12{left:321.765000px;}
.x1{left:325.365000px;}
.x1a{left:348.585000px;}
.x19{left:361.545000px;}
.xd{left:489.210000px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v6{vertical-align:-29.440000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.v2{vertical-align:34.560000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls26{letter-spacing:-0.832000pt;}
.ls45{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.427733pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.294400pt;}
.ls4d{letter-spacing:-0.293333pt;}
.ls32{letter-spacing:-0.277333pt;}
.ls41{letter-spacing:-0.276267pt;}
.ls3b{letter-spacing:-0.274133pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls31{letter-spacing:-0.269867pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls4f{letter-spacing:-0.242133pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls4c{letter-spacing:-0.197867pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls5f{letter-spacing:-0.145067pt;}
.ls4a{letter-spacing:-0.138133pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls52{letter-spacing:-0.100267pt;}
.ls1{letter-spacing:-0.099733pt;}
.ls7{letter-spacing:-0.095467pt;}
.ls3c{letter-spacing:-0.086933pt;}
.ls1e{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls40{letter-spacing:-0.023040pt;}
.ls2{letter-spacing:-0.016000pt;}
.ls44{letter-spacing:-0.001280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.019840pt;}
.ls47{letter-spacing:0.039040pt;}
.ls9{letter-spacing:0.053867pt;}
.lsf{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.102400pt;}
.ls3e{letter-spacing:0.107733pt;}
.ls28{letter-spacing:0.108800pt;}
.ls29{letter-spacing:0.115200pt;}
.ls37{letter-spacing:0.116267pt;}
.ls24{letter-spacing:0.116480pt;}
.lsb{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.133333pt;}
.ls49{letter-spacing:0.148267pt;}
.ls2c{letter-spacing:0.148480pt;}
.ls6{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.160000pt;}
.ls51{letter-spacing:0.170667pt;}
.ls57{letter-spacing:0.180267pt;}
.ls5a{letter-spacing:0.185600pt;}
.ls16{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.198400pt;}
.ls48{letter-spacing:0.237867pt;}
.ls12{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.261760pt;}
.ls36{letter-spacing:0.262933pt;}
.ls2f{letter-spacing:0.275200pt;}
.ls4e{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.304000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.329600pt;}
.ls1c{letter-spacing:0.352000pt;}
.ls43{letter-spacing:0.368000pt;}
.ls42{letter-spacing:0.370133pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.448000pt;}
.ls58{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls55{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.696320pt;}
.ls13{letter-spacing:0.704000pt;}
.ls54{letter-spacing:0.810667pt;}
.ls46{letter-spacing:0.832000pt;}
.ls5e{letter-spacing:0.850560pt;}
.ls59{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:1.472000pt;}
.ls25{letter-spacing:1.490560pt;}
.ls5b{letter-spacing:2.130560pt;}
.ls1a{letter-spacing:3.392000pt;}
.ls50{letter-spacing:4.032000pt;}
.ls3f{letter-spacing:4.048000pt;}
.ls3d{letter-spacing:4.672000pt;}
.ls3a{letter-spacing:4.690560pt;}
.ls21{letter-spacing:5.501440pt;}
.ls56{letter-spacing:5.952000pt;}
.ls30{letter-spacing:5.970560pt;}
.ls53{letter-spacing:7.250560pt;}
.ls4b{letter-spacing:11.072000pt;}
.ls5d{letter-spacing:11.090560pt;}
.ls5c{letter-spacing:11.712000pt;}
.ls33{letter-spacing:14.272000pt;}
.ls60{letter-spacing:44.160000pt;}
.ls20{letter-spacing:60.352000pt;}
.ws41{word-spacing:-74.880000pt;}
.ws34{word-spacing:-17.984427pt;}
.ws33{word-spacing:-17.785600pt;}
.ws2f{word-spacing:-17.746560pt;}
.ws42{word-spacing:-16.922880pt;}
.ws18{word-spacing:-16.470827pt;}
.ws19{word-spacing:-16.450560pt;}
.ws3f{word-spacing:-16.381440pt;}
.ws1c{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.488000pt;}
.ws11{word-spacing:-15.424000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws8{word-spacing:-15.296000pt;}
.ws3b{word-spacing:-15.232000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws21{word-spacing:-15.104000pt;}
.ws1d{word-spacing:-15.040000pt;}
.ws1b{word-spacing:-14.976000pt;}
.wsa{word-spacing:-14.912000pt;}
.ws16{word-spacing:-14.848000pt;}
.ws23{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.528000pt;}
.ws30{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.336000pt;}
.ws26{word-spacing:-12.787840pt;}
.ws3e{word-spacing:-12.769707pt;}
.ws2b{word-spacing:-12.697173pt;}
.ws22{word-spacing:-12.589440pt;}
.ws2e{word-spacing:-12.588160pt;}
.ws43{word-spacing:-12.444373pt;}
.ws3d{word-spacing:-12.269440pt;}
.ws7{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.909653pt;}
.ws1{word-spacing:-11.905387pt;}
.ws14{word-spacing:-11.696000pt;}
.ws9{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.536000pt;}
.ws15{word-spacing:-11.504000pt;}
.ws1e{word-spacing:-11.376000pt;}
.ws13{word-spacing:-11.312000pt;}
.ws17{word-spacing:-11.296000pt;}
.ws10{word-spacing:-11.184000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws4{word-spacing:-10.608000pt;}
.ws3{word-spacing:-10.576000pt;}
.ws37{word-spacing:-10.492160pt;}
.ws24{word-spacing:-10.425493pt;}
.ws35{word-spacing:-10.310827pt;}
.ws31{word-spacing:-10.277760pt;}
.ws27{word-spacing:-10.271360pt;}
.ws20{word-spacing:-10.162560pt;}
.ws2c{word-spacing:-10.139520pt;}
.ws39{word-spacing:-9.964693pt;}
.ws29{word-spacing:-9.888427pt;}
.ws38{word-spacing:-8.465920pt;}
.ws40{word-spacing:-8.376320pt;}
.ws25{word-spacing:-8.306987pt;}
.ws32{word-spacing:-8.293120pt;}
.ws1f{word-spacing:-8.190720pt;}
.ws2a{word-spacing:-8.103787pt;}
.ws36{word-spacing:-8.052587pt;}
.ws2d{word-spacing:-7.914453pt;}
.ws3a{word-spacing:-7.897387pt;}
.ws28{word-spacing:-7.896320pt;}
.ws3c{word-spacing:-7.568427pt;}
.ws0{word-spacing:0.000000pt;}
._1b{margin-left:-11.287040pt;}
._1d{margin-left:-9.751680pt;}
._6{margin-left:-5.063253pt;}
._5{margin-left:-3.917227pt;}
._4{margin-left:-2.640000pt;}
._2{margin-left:-0.894080pt;}
._3{width:0.905387pt;}
._1{width:2.168747pt;}
._b{width:3.191253pt;}
._8{width:4.369707pt;}
._a{width:5.540907pt;}
._e{width:7.104000pt;}
._d{width:8.000000pt;}
._10{width:8.896000pt;}
._9{width:9.792000pt;}
._f{width:10.880000pt;}
._11{width:11.830613pt;}
._c{width:12.928000pt;}
._12{width:13.952000pt;}
._1e{width:15.486507pt;}
._16{width:16.547840pt;}
._18{width:18.174080pt;}
._17{width:19.520000pt;}
._1a{width:20.672000pt;}
._14{width:22.080000pt;}
._13{width:23.168000pt;}
._1c{width:24.320000pt;}
._19{width:25.792000pt;}
._21{width:26.944000pt;}
._23{width:27.968000pt;}
._24{width:28.864000pt;}
._20{width:29.824000pt;}
._1f{width:30.848000pt;}
._22{width:36.160000pt;}
._7{width:735.330773pt;}
._0{width:750.498773pt;}
._15{width:753.077333pt;}
.fsa{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:2.880000pt;}
.y73{bottom:3.520000pt;}
.y6e{bottom:3.680000pt;}
.y6b{bottom:4.160000pt;}
.y65{bottom:4.320000pt;}
.y68{bottom:5.120000pt;}
.y74{bottom:6.080000pt;}
.y6f{bottom:6.240000pt;}
.y6c{bottom:7.840000pt;}
.y66{bottom:9.440000pt;}
.y69{bottom:12.800000pt;}
.y171{bottom:17.952000pt;}
.y16f{bottom:28.320000pt;}
.y170{bottom:32.992000pt;}
.y2{bottom:36.512000pt;}
.y93{bottom:49.152000pt;}
.y1{bottom:50.272000pt;}
.y3{bottom:61.312000pt;}
.y16e{bottom:63.072000pt;}
.y125{bottom:78.592000pt;}
.y14c{bottom:85.312000pt;}
.y62{bottom:85.472000pt;}
.yeb{bottom:87.712000pt;}
.yb1{bottom:89.472000pt;}
.y1ed{bottom:89.792000pt;}
.y38{bottom:90.432000pt;}
.y107{bottom:91.872000pt;}
.y124{bottom:95.392000pt;}
.y16d{bottom:96.192000pt;}
.y61{bottom:100.032000pt;}
.y127{bottom:102.112000pt;}
.y8d{bottom:102.432000pt;}
.y1ec{bottom:106.432000pt;}
.yea{bottom:107.712000pt;}
.yb0{bottom:109.472000pt;}
.y37{bottom:109.952000pt;}
.ycd{bottom:110.432000pt;}
.y145{bottom:112.032000pt;}
.y126{bottom:112.992000pt;}
.y60{bottom:114.752000pt;}
.y123{bottom:118.752000pt;}
.y8c{bottom:119.232000pt;}
.y1eb{bottom:123.232000pt;}
.y36{bottom:127.552000pt;}
.ye9{bottom:127.712000pt;}
.y106{bottom:128.192000pt;}
.y144{bottom:128.672000pt;}
.y5f{bottom:129.312000pt;}
.yaf{bottom:129.472000pt;}
.y122{bottom:129.632000pt;}
.ycc{bottom:130.432000pt;}
.y14b{bottom:135.386667pt;}
.y1a9{bottom:136.026667pt;}
.y8b{bottom:136.186667pt;}
.y1ea{bottom:139.866667pt;}
.y5e{bottom:144.346667pt;}
.y35{bottom:144.986667pt;}
.y143{bottom:145.306667pt;}
.y105{bottom:146.266667pt;}
.ye8{bottom:147.706667pt;}
.yae{bottom:149.466667pt;}
.ycb{bottom:150.426667pt;}
.y147{bottom:152.026667pt;}
.y8a{bottom:153.146667pt;}
.y1a8{bottom:156.026667pt;}
.y1e9{bottom:156.506667pt;}
.y13f{bottom:158.746667pt;}
.y5d{bottom:160.186667pt;}
.y142{bottom:161.946667pt;}
.y1c8{bottom:162.106667pt;}
.y34{bottom:162.586667pt;}
.y146{bottom:162.906667pt;}
.y121{bottom:164.346667pt;}
.y104{bottom:164.506667pt;}
.ye7{bottom:167.706667pt;}
.y149{bottom:168.666667pt;}
.yad{bottom:169.626667pt;}
.y89{bottom:170.106667pt;}
.yca{bottom:170.426667pt;}
.y1e8{bottom:173.146667pt;}
.y5c{bottom:174.906667pt;}
.y1a7{bottom:176.026667pt;}
.y13e{bottom:178.746667pt;}
.y148{bottom:179.546667pt;}
.y33{bottom:180.026667pt;}
.y103{bottom:182.586667pt;}
.y120{bottom:184.346667pt;}
.y141{bottom:185.466667pt;}
.y18a{bottom:185.786667pt;}
.y88{bottom:187.066667pt;}
.ye6{bottom:187.706667pt;}
.y5b{bottom:189.626667pt;}
.y1e7{bottom:189.786667pt;}
.yc9{bottom:190.426667pt;}
.y1b9{bottom:190.746667pt;}
.y14a{bottom:195.386667pt;}
.y1a6{bottom:196.026667pt;}
.y140{bottom:196.186667pt;}
.y32{bottom:197.466667pt;}
.y13d{bottom:198.746667pt;}
.y102{bottom:199.706667pt;}
.y156{bottom:202.106667pt;}
.y87{bottom:203.906667pt;}
.y5a{bottom:204.226667pt;}
.y11f{bottom:204.386667pt;}
.y189{bottom:205.826667pt;}
.y1e6{bottom:206.466667pt;}
.ye5{bottom:207.746667pt;}
.yee{bottom:208.866667pt;}
.yac{bottom:209.666667pt;}
.y1f{bottom:210.466667pt;}
.y1b8{bottom:210.786667pt;}
.y151{bottom:212.066667pt;}
.y18b{bottom:213.026667pt;}
.y31{bottom:215.106667pt;}
.y1a5{bottom:216.066667pt;}
.y13c{bottom:218.786667pt;}
.y59{bottom:218.946667pt;}
.y101{bottom:219.746667pt;}
.y86{bottom:220.866667pt;}
.y1e5{bottom:223.266667pt;}
.y11e{bottom:224.386667pt;}
.y188{bottom:225.826667pt;}
.ye4{bottom:227.746667pt;}
.y150{bottom:228.706667pt;}
.yab{bottom:229.666667pt;}
.yc8{bottom:230.466667pt;}
.y1b7{bottom:230.786667pt;}
.y1e{bottom:232.546667pt;}
.y58{bottom:233.506667pt;}
.y154{bottom:235.426667pt;}
.y1a4{bottom:236.066667pt;}
.y85{bottom:237.826667pt;}
.y13b{bottom:238.786667pt;}
.y100{bottom:239.746667pt;}
.y1e4{bottom:239.906667pt;}
.y11d{bottom:244.386667pt;}
.y14f{bottom:245.346667pt;}
.y1c7{bottom:245.506667pt;}
.y187{bottom:245.826667pt;}
.y18f{bottom:246.306667pt;}
.ye3{bottom:247.746667pt;}
.y57{bottom:248.226667pt;}
.yaa{bottom:249.666667pt;}
.y1d{bottom:250.146667pt;}
.yc7{bottom:250.466667pt;}
.y1b6{bottom:250.786667pt;}
.y160{bottom:252.066667pt;}
.y84{bottom:254.786667pt;}
.y1a3{bottom:256.066667pt;}
.y1e3{bottom:256.866667pt;}
.y13a{bottom:258.786667pt;}
.yff{bottom:259.746667pt;}
.y155{bottom:261.986667pt;}
.y1c6{bottom:262.146667pt;}
.y56{bottom:262.786667pt;}
.y164{bottom:262.946667pt;}
.y11c{bottom:264.386667pt;}
.y186{bottom:265.826667pt;}
.y1c{bottom:267.586667pt;}
.ye2{bottom:267.746667pt;}
.y14e{bottom:268.706667pt;}
.ya9{bottom:269.666667pt;}
.yc6{bottom:270.466667pt;}
.y1b5{bottom:270.786667pt;}
.y83{bottom:271.746667pt;}
.y1e2{bottom:275.266667pt;}
.y1a2{bottom:276.066667pt;}
.y55{bottom:277.506667pt;}
.y139{bottom:278.786667pt;}
.y14d{bottom:279.586667pt;}
.yfe{bottom:279.746667pt;}
.y11b{bottom:284.386667pt;}
.y1b{bottom:285.026667pt;}
.y153{bottom:285.506667pt;}
.y185{bottom:285.826667pt;}
.ye1{bottom:287.746667pt;}
.y82{bottom:288.706667pt;}
.ya8{bottom:289.666667pt;}
.yc5{bottom:290.466667pt;}
.y1b4{bottom:290.786667pt;}
.y54{bottom:292.866667pt;}
.y1e1{bottom:293.186667pt;}
.y15f{bottom:295.426667pt;}
.y1c5{bottom:295.906667pt;}
.y1a1{bottom:296.066667pt;}
.y152{bottom:296.386667pt;}
.y138{bottom:298.786667pt;}
.yfd{bottom:299.746667pt;}
.y16c{bottom:302.146667pt;}
.y1a{bottom:302.626667pt;}
.y30{bottom:303.746667pt;}
.y11a{bottom:304.386667pt;}
.y81{bottom:305.666667pt;}
.y184{bottom:305.826667pt;}
.ye0{bottom:307.746667pt;}
.y53{bottom:309.186667pt;}
.ya7{bottom:309.666667pt;}
.y1e0{bottom:309.826667pt;}
.yc4{bottom:310.466667pt;}
.y1b3{bottom:310.786667pt;}
.y15e{bottom:312.066667pt;}
.y1c4{bottom:314.146667pt;}
.y1a0{bottom:316.066667pt;}
.y137{bottom:318.786667pt;}
.yfc{bottom:319.746667pt;}
.y19{bottom:320.066667pt;}
.y80{bottom:322.626667pt;}
.y52{bottom:324.226667pt;}
.y119{bottom:324.386667pt;}
.y183{bottom:325.826667pt;}
.y1df{bottom:326.626667pt;}
.y2f{bottom:327.106667pt;}
.ydf{bottom:327.746667pt;}
.y15d{bottom:328.706667pt;}
.ya6{bottom:329.666667pt;}
.yc3{bottom:330.466667pt;}
.y1b2{bottom:330.786667pt;}
.y1c3{bottom:332.706667pt;}
.y19f{bottom:336.066667pt;}
.y18{bottom:337.666667pt;}
.y136{bottom:338.786667pt;}
.y51{bottom:338.946667pt;}
.y7f{bottom:339.586667pt;}
.yfb{bottom:339.746667pt;}
.y1de{bottom:343.266667pt;}
.y118{bottom:344.386667pt;}
.y15c{bottom:345.346667pt;}
.y182{bottom:345.826667pt;}
.yde{bottom:347.746667pt;}
.ya5{bottom:349.666667pt;}
.y2e{bottom:350.466667pt;}
.y1b1{bottom:350.786667pt;}
.y16b{bottom:352.066667pt;}
.y50{bottom:353.506667pt;}
.y17{bottom:355.106667pt;}
.y19e{bottom:356.066667pt;}
.y7e{bottom:356.386667pt;}
.y135{bottom:358.786667pt;}
.yfa{bottom:359.746667pt;}
.y1dd{bottom:359.906667pt;}
.y163{bottom:362.146667pt;}
.y16a{bottom:362.946667pt;}
.y117{bottom:364.386667pt;}
.y181{bottom:365.826667pt;}
.ydd{bottom:367.746667pt;}
.y4f{bottom:368.226667pt;}
.y15b{bottom:368.866667pt;}
.ya4{bottom:369.666667pt;}
.yc2{bottom:370.466667pt;}
.y1b0{bottom:370.786667pt;}
.y16{bottom:372.573333pt;}
.y7d{bottom:373.373333pt;}
.y2d{bottom:373.853333pt;}
.y19d{bottom:376.093333pt;}
.y1dc{bottom:376.573333pt;}
.y134{bottom:378.813333pt;}
.yf9{bottom:379.773333pt;}
.y4e{bottom:382.973333pt;}
.y116{bottom:384.413333pt;}
.y162{bottom:385.533333pt;}
.y180{bottom:385.853333pt;}
.ydc{bottom:387.773333pt;}
.ya3{bottom:389.693333pt;}
.y1f5{bottom:390.013333pt;}
.y15{bottom:390.173333pt;}
.y7c{bottom:390.333333pt;}
.yc1{bottom:390.493333pt;}
.y1af{bottom:390.813333pt;}
.y1db{bottom:393.213333pt;}
.y15a{bottom:395.453333pt;}
.y19c{bottom:396.093333pt;}
.y161{bottom:396.413333pt;}
.y2c{bottom:397.213333pt;}
.y4d{bottom:397.533333pt;}
.y133{bottom:398.813333pt;}
.yf8{bottom:399.773333pt;}
.y169{bottom:402.173333pt;}
.y115{bottom:404.413333pt;}
.y17f{bottom:405.853333pt;}
.y1f4{bottom:406.653333pt;}
.y7b{bottom:407.293333pt;}
.y14{bottom:407.613333pt;}
.ydb{bottom:407.773333pt;}
.ya2{bottom:409.693333pt;}
.y1da{bottom:410.013333pt;}
.yc0{bottom:410.493333pt;}
.y1ae{bottom:410.813333pt;}
.y159{bottom:412.093333pt;}
.y4c{bottom:412.253333pt;}
.y19b{bottom:416.093333pt;}
.y132{bottom:418.813333pt;}
.yf7{bottom:419.773333pt;}
.y2b{bottom:420.413333pt;}
.y1f3{bottom:423.293333pt;}
.y7a{bottom:424.253333pt;}
.y114{bottom:424.413333pt;}
.y13{bottom:425.053333pt;}
.y17e{bottom:425.853333pt;}
.y1d9{bottom:426.653333pt;}
.y4b{bottom:426.813333pt;}
.yda{bottom:427.773333pt;}
.y168{bottom:428.733333pt;}
.ya1{bottom:429.693333pt;}
.ybf{bottom:430.493333pt;}
.y1ad{bottom:430.813333pt;}
.y158{bottom:435.453333pt;}
.y19a{bottom:436.093333pt;}
.y131{bottom:438.813333pt;}
.yf6{bottom:439.773333pt;}
.y1f2{bottom:439.933333pt;}
.y79{bottom:441.213333pt;}
.y4a{bottom:441.533333pt;}
.y12{bottom:442.653333pt;}
.y1d8{bottom:443.293333pt;}
.y2a{bottom:444.413333pt;}
.y167{bottom:445.533333pt;}
.y17d{bottom:445.853333pt;}
.y157{bottom:446.333333pt;}
.yd9{bottom:447.773333pt;}
.y18c{bottom:448.893333pt;}
.ya0{bottom:449.693333pt;}
.ybe{bottom:450.493333pt;}
.y1ac{bottom:450.813333pt;}
.y1c2{bottom:452.573333pt;}
.y49{bottom:456.093333pt;}
.y1f1{bottom:456.573333pt;}
.y130{bottom:458.813333pt;}
.y78{bottom:459.773333pt;}
.y1d7{bottom:459.933333pt;}
.y11{bottom:460.093333pt;}
.y113{bottom:464.413333pt;}
.y17c{bottom:465.853333pt;}
.yd8{bottom:467.773333pt;}
.yec{bottom:468.893333pt;}
.y9f{bottom:469.693333pt;}
.ybd{bottom:470.493333pt;}
.y48{bottom:470.813333pt;}
.y1f0{bottom:473.213333pt;}
.y29{bottom:473.693333pt;}
.y199{bottom:476.093333pt;}
.y1d6{bottom:476.573333pt;}
.y77{bottom:476.733333pt;}
.y10{bottom:477.693333pt;}
.y12f{bottom:478.813333pt;}
.yf5{bottom:479.773333pt;}
.y112{bottom:484.413333pt;}
.y47{bottom:485.373333pt;}
.y17b{bottom:485.853333pt;}
.yd7{bottom:487.773333pt;}
.y1c1{bottom:489.373333pt;}
.y9e{bottom:489.693333pt;}
.y1ef{bottom:490.333333pt;}
.ybc{bottom:490.493333pt;}
.y1ab{bottom:490.813333pt;}
.y1d5{bottom:493.213333pt;}
.y76{bottom:493.693333pt;}
.yf{bottom:495.133333pt;}
.y166{bottom:495.453333pt;}
.y198{bottom:496.093333pt;}
.y12e{bottom:498.813333pt;}
.yf4{bottom:499.773333pt;}
.y46{bottom:500.093333pt;}
.y111{bottom:504.413333pt;}
.y17a{bottom:505.853333pt;}
.yd6{bottom:507.773333pt;}
.y1ee{bottom:508.733333pt;}
.y1c0{bottom:508.893333pt;}
.y9d{bottom:509.693333pt;}
.y1d4{bottom:510.013333pt;}
.ybb{bottom:510.493333pt;}
.y75{bottom:510.653333pt;}
.y1aa{bottom:511.133333pt;}
.ye{bottom:512.573333pt;}
.y165{bottom:513.053333pt;}
.y28{bottom:513.693333pt;}
.y45{bottom:514.813333pt;}
.y197{bottom:516.093333pt;}
.y12d{bottom:518.813333pt;}
.yf3{bottom:519.933333pt;}
.y110{bottom:524.413333pt;}
.y1bf{bottom:525.533333pt;}
.y179{bottom:525.853333pt;}
.y1d3{bottom:526.653333pt;}
.y72{bottom:527.613333pt;}
.yd5{bottom:527.773333pt;}
.y44{bottom:529.373333pt;}
.y9c{bottom:529.693333pt;}
.yd{bottom:530.173333pt;}
.yba{bottom:530.493333pt;}
.y196{bottom:536.093333pt;}
.y12c{bottom:538.813333pt;}
.y1be{bottom:542.213333pt;}
.y1d2{bottom:543.333333pt;}
.y43{bottom:544.133333pt;}
.y71{bottom:544.453333pt;}
.y178{bottom:545.893333pt;}
.yc{bottom:547.653333pt;}
.yd4{bottom:547.813333pt;}
.y27{bottom:549.413333pt;}
.y9b{bottom:549.733333pt;}
.yb9{bottom:550.693333pt;}
.y195{bottom:556.133333pt;}
.y42{bottom:558.693333pt;}
.y1bd{bottom:558.853333pt;}
.y12b{bottom:559.013333pt;}
.y1d1{bottom:559.973333pt;}
.y70{bottom:561.413333pt;}
.yf2{bottom:562.693333pt;}
.y10f{bottom:564.453333pt;}
.yb{bottom:565.253333pt;}
.y177{bottom:565.893333pt;}
.y26{bottom:566.853333pt;}
.yd3{bottom:567.813333pt;}
.y9a{bottom:569.733333pt;}
.yb8{bottom:570.693333pt;}
.y41{bottom:573.413333pt;}
.y1bc{bottom:575.493333pt;}
.y194{bottom:576.133333pt;}
.y1d0{bottom:576.613333pt;}
.y6d{bottom:578.373333pt;}
.y12a{bottom:579.013333pt;}
.ya{bottom:582.693333pt;}
.y25{bottom:584.293333pt;}
.y10e{bottom:584.453333pt;}
.y90{bottom:585.413333pt;}
.y176{bottom:585.893333pt;}
.yd2{bottom:587.813333pt;}
.y40{bottom:587.973333pt;}
.y99{bottom:589.733333pt;}
.yb7{bottom:590.693333pt;}
.y1bb{bottom:592.293333pt;}
.y1cf{bottom:593.413333pt;}
.y6a{bottom:595.333333pt;}
.y193{bottom:596.933333pt;}
.y129{bottom:600.133333pt;}
.y9{bottom:600.613333pt;}
.y24{bottom:601.893333pt;}
.y3f{bottom:602.693333pt;}
.y109{bottom:603.493333pt;}
.y10d{bottom:604.453333pt;}
.y175{bottom:606.373333pt;}
.yd1{bottom:607.813333pt;}
.y1ba{bottom:609.253333pt;}
.y1ce{bottom:610.053333pt;}
.y98{bottom:610.213333pt;}
.yb6{bottom:610.693333pt;}
.y67{bottom:613.893333pt;}
.y3e{bottom:617.253333pt;}
.y23{bottom:619.333333pt;}
.y8{bottom:620.133333pt;}
.y192{bottom:620.293333pt;}
.y128{bottom:622.853333pt;}
.y10c{bottom:624.453333pt;}
.y174{bottom:625.893333pt;}
.y108{bottom:626.213333pt;}
.y1cd{bottom:626.693333pt;}
.yd0{bottom:627.813333pt;}
.y8f{bottom:628.773333pt;}
.y97{bottom:629.733333pt;}
.y91{bottom:630.533333pt;}
.yb5{bottom:630.693333pt;}
.y3d{bottom:631.973333pt;}
.yf1{bottom:633.253333pt;}
.y64{bottom:637.413333pt;}
.y7{bottom:637.733333pt;}
.y22{bottom:638.693333pt;}
.y1cc{bottom:643.333333pt;}
.y191{bottom:643.653333pt;}
.y10b{bottom:644.453333pt;}
.y173{bottom:645.413333pt;}
.y3c{bottom:646.533333pt;}
.ycf{bottom:647.813333pt;}
.yef{bottom:649.093333pt;}
.y96{bottom:649.253333pt;}
.yb4{bottom:650.693333pt;}
.y18e{bottom:652.773333pt;}
.y6{bottom:655.653333pt;}
.y1cb{bottom:659.973333pt;}
.y63{bottom:660.773333pt;}
.y3b{bottom:661.573333pt;}
.y21{bottom:664.773333pt;}
.y10a{bottom:665.253333pt;}
.y190{bottom:666.533333pt;}
.yce{bottom:667.813333pt;}
.y95{bottom:668.773333pt;}
.yed{bottom:669.093333pt;}
.yb3{bottom:670.693333pt;}
.y8e{bottom:672.133333pt;}
.y18d{bottom:673.093333pt;}
.yf0{bottom:673.893333pt;}
.y5{bottom:675.173333pt;}
.y1ca{bottom:676.613333pt;}
.y3a{bottom:677.893333pt;}
.y20{bottom:688.133333pt;}
.y94{bottom:689.093333pt;}
.yb2{bottom:690.693333pt;}
.y4{bottom:692.773333pt;}
.y1c9{bottom:693.413333pt;}
.y39{bottom:694.213333pt;}
.y92{bottom:732.800000pt;}
.h17{height:16.160000pt;}
.h16{height:16.192000pt;}
.h15{height:16.320000pt;}
.h18{height:16.352000pt;}
.h13{height:17.920000pt;}
.he{height:19.520000pt;}
.h11{height:22.880000pt;}
.h27{height:28.738560pt;}
.h1f{height:29.276160pt;}
.h3{height:29.773125pt;}
.h23{height:40.661333pt;}
.h10{height:42.649687pt;}
.h29{height:44.077796pt;}
.h24{height:44.172231pt;}
.h22{height:44.992000pt;}
.hd{height:44.998542pt;}
.h1d{height:45.396480pt;}
.h4{height:47.709298pt;}
.ha{height:47.742188pt;}
.h28{height:49.877902pt;}
.h1b{height:51.882667pt;}
.hc{height:52.834688pt;}
.h25{height:53.105778pt;}
.h1c{height:53.219556pt;}
.h5{height:54.215111pt;}
.h9{height:54.390938pt;}
.hb{height:56.017500pt;}
.h26{height:58.552320pt;}
.h2{height:58.563750pt;}
.h14{height:60.288750pt;}
.h6{height:63.431680pt;}
.hf{height:63.656250pt;}
.h20{height:65.764124pt;}
.h21{height:65.870791pt;}
.h7{height:72.106098pt;}
.h12{height:74.477812pt;}
.h1e{height:75.221333pt;}
.h8{height:108.430222pt;}
.h1a{height:117.044375pt;}
.h19{height:117.646791pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w3{width:34.720000pt;}
.w2{width:347.453333pt;}
.w4{width:404.293333pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x11{left:14.080000pt;}
.x10{left:16.640000pt;}
.xf{left:22.080000pt;}
.xe{left:27.520000pt;}
.x18{left:81.792000pt;}
.xb{left:87.392000pt;}
.x3{left:94.592000pt;}
.x2{left:113.472000pt;}
.x6{left:167.746667pt;}
.x7{left:172.066667pt;}
.x5{left:193.666667pt;}
.x8{left:221.666667pt;}
.xa{left:237.506667pt;}
.x9{left:242.146667pt;}
.x1b{left:270.493333pt;}
.x4{left:279.773333pt;}
.x16{left:280.733333pt;}
.x17{left:281.693333pt;}
.x15{left:282.973333pt;}
.x13{left:283.933333pt;}
.x14{left:284.893333pt;}
.x12{left:286.013333pt;}
.x1{left:289.213333pt;}
.x1a{left:309.853333pt;}
.x19{left:321.373333pt;}
.xd{left:434.853333pt;}
}




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