
    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_50001cde9000c4e0fc04917b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_c1762b12ad3527b0e785584a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_264006b1275c54faa89bb9a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_33b64363d6da8b4f75775c68.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_7b1aa024bc77f4c7782980a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_afd861f7e481b41b1783532a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923828;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_e425b988e3d8769a119adce6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959961;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_832d455674babcdc9737b147.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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_fa565bbd37ef33131bd6e89e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_6769bb0fb4077c5d225606cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.850098;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_843ce92695b281e93c43bf0e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.052734;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_a58b7f5a46aaac62fc238ea7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.959961;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_d66fbaf00eea283b4590e21b.woff2')format("woff");}.fff{font-family:fff;line-height:0.854492;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:ff10;src:url('chunks/assets/font_495dbb169109e11b880f8aa0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.401855;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:ff11;src:url('chunks/assets/font_b562c819dfbbcdbea1066777.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172363;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:ff12;src:url('chunks/assets/font_e634fb5c141a32fac35e3b59.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.923828;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:ff13;src:url('chunks/assets/font_307acba5b29600daf80ebc96.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.052734;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:ff14;src:url('chunks/assets/font_974c9f5def5517b5c2628098.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2b{letter-spacing:-0.852000px;}
.ls21{letter-spacing:-0.828000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.714000px;}
.ls2f{letter-spacing:-0.636000px;}
.ls29{letter-spacing:-0.612000px;}
.ls2e{letter-spacing:-0.524400px;}
.lsa{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.232800px;}
.ls6{letter-spacing:-0.222600px;}
.lsd{letter-spacing:-0.213000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.152400px;}
.ls27{letter-spacing:-0.132600px;}
.ls8{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.106800px;}
.ls1f{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.048960px;}
.ls9{letter-spacing:-0.037440px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.005754px;}
.ls7{letter-spacing:0.010080px;}
.ls4{letter-spacing:0.023040px;}
.ls1c{letter-spacing:0.031680px;}
.lse{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.057600px;}
.ls10{letter-spacing:0.063360px;}
.ls2c{letter-spacing:0.086400px;}
.ls25{letter-spacing:0.126720px;}
.ls28{letter-spacing:0.195600px;}
.ls2a{letter-spacing:0.219000px;}
.ls18{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.237600px;}
.ls15{letter-spacing:0.243360px;}
.ls11{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.302400px;}
.ls13{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.342000px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.846000px;}
.ls26{letter-spacing:16.243200px;}
.ls22{letter-spacing:33.425280px;}
.ls16{letter-spacing:847.596000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(5,99,193),0 0.015em rgb(5,99,193),0.015em 0 rgb(5,99,193),0 -0.015em  rgb(5,99,193);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(5,99,193);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-66.240000px;}
.ws20{word-spacing:-63.360000px;}
.ws4{word-spacing:-25.472160px;}
.ws5{word-spacing:-22.407840px;}
.ws12{word-spacing:-17.925240px;}
.ws13{word-spacing:-17.882040px;}
.ws14{word-spacing:-17.625594px;}
.ws10{word-spacing:-17.619840px;}
.ws3{word-spacing:-17.510640px;}
.ws1c{word-spacing:-17.467440px;}
.ws9{word-spacing:-16.948800px;}
.wsb{word-spacing:-16.940160px;}
.ws7{word-spacing:-16.891200px;}
.ws8{word-spacing:-16.784400px;}
.wsa{word-spacing:-16.678200px;}
.ws6{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.375800px;}
.ws26{word-spacing:-16.352400px;}
.wsc{word-spacing:-16.228800px;}
.ws1f{word-spacing:-16.156800px;}
.ws22{word-spacing:-15.544800px;}
.ws27{word-spacing:-15.436800px;}
.ws2{word-spacing:-15.248880px;}
.ws0{word-spacing:-15.238800px;}
.ws21{word-spacing:-15.131640px;}
.ws1{word-spacing:-15.016200px;}
.ws1d{word-spacing:-14.826240px;}
.ws1e{word-spacing:-14.693640px;}
.wsf{word-spacing:-14.595840px;}
.wse{word-spacing:-14.572800px;}
.ws15{word-spacing:-14.004000px;}
.ws24{word-spacing:-13.998240px;}
.wsd{word-spacing:-13.983840px;}
.ws25{word-spacing:-13.974240px;}
.ws17{word-spacing:-13.770000px;}
.ws19{word-spacing:-13.680000px;}
.ws1a{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.590000px;}
.ws18{word-spacing:-13.500000px;}
.ws11{word-spacing:0.000000px;}
._2{margin-left:-5.400000px;}
._3{margin-left:-4.212000px;}
._1{margin-left:-3.132000px;}
._1c{margin-left:-2.124000px;}
._4{margin-left:-1.010880px;}
._0{width:1.127520px;}
._9{width:2.219040px;}
._a{width:3.232560px;}
._11{width:4.362480px;}
._7{width:5.446080px;}
._6{width:6.513840px;}
._8{width:7.529760px;}
._18{width:8.743680px;}
._15{width:9.982800px;}
._d{width:11.055600px;}
._e{width:12.079440px;}
._14{width:14.082480px;}
._1a{width:15.366240px;}
._17{width:16.436880px;}
._b{width:17.449920px;}
._c{width:18.660960px;}
._12{width:19.840320px;}
._1e{width:21.057600px;}
._16{width:22.111200px;}
._1d{width:23.738400px;}
._19{width:25.369920px;}
._22{width:26.772480px;}
._20{width:27.820800px;}
._21{width:28.880640px;}
._10{width:30.119040px;}
._f{width:31.433760px;}
._23{width:32.877600px;}
._1b{width:34.113600px;}
._24{width:35.123040px;}
._2b{width:37.514880px;}
._29{width:38.522880px;}
._2a{width:40.289280px;}
._13{width:42.190560px;}
._1f{width:43.519680px;}
._28{width:53.079360px;}
._27{width:54.205920px;}
._31{width:55.210080px;}
._2f{width:61.681920px;}
._2e{width:63.360000px;}
._5{width:89.644800px;}
._2d{width:107.583360px;}
._2c{width:109.212480px;}
._30{width:130.808160px;}
._26{width:145.767360px;}
._25{width:181.146240px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fsd{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs10{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fsb{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fse{font-size:272.880000px;}
.fsf{font-size:282.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.180000px;}
.y11{bottom:1.080000px;}
.y1e{bottom:1.800000px;}
.yf0{bottom:3.060000px;}
.y7{bottom:3.420000px;}
.yc7{bottom:3.600000px;}
.yc9{bottom:3.780000px;}
.y5c{bottom:3.960000px;}
.y59{bottom:4.140000px;}
.y94{bottom:4.320000px;}
.y5{bottom:5.760000px;}
.y54{bottom:5.940000px;}
.yf{bottom:7.920000px;}
.y5b{bottom:8.100000px;}
.yf4{bottom:10.800000px;}
.yee{bottom:10.980000px;}
.yfb{bottom:11.025000px;}
.y104{bottom:11.160000px;}
.y109{bottom:11.340000px;}
.y1d{bottom:13.500000px;}
.yf5{bottom:18.540000px;}
.y101{bottom:18.720000px;}
.yfc{bottom:18.765000px;}
.yef{bottom:19.080000px;}
.y6{bottom:19.980000px;}
.y4{bottom:21.240000px;}
.y58{bottom:23.220000px;}
.y53{bottom:25.920000px;}
.yf8{bottom:26.460000px;}
.y10f{bottom:26.490000px;}
.y108{bottom:26.820000px;}
.y10a{bottom:27.000000px;}
.yf7{bottom:34.200000px;}
.y10e{bottom:34.230000px;}
.ye{bottom:34.380000px;}
.yff{bottom:34.740000px;}
.y52{bottom:45.720000px;}
.y106{bottom:50.220000px;}
.y57{bottom:50.430000px;}
.yfe{bottom:50.580000px;}
.y8{bottom:53.460000px;}
.y3{bottom:54.720000px;}
.y56{bottom:60.870000px;}
.y51{bottom:65.700000px;}
.y10c{bottom:66.240000px;}
.y2{bottom:80.280000px;}
.y50{bottom:85.500000px;}
.yf2{bottom:90.225000px;}
.y55{bottom:102.420000px;}
.y4f{bottom:105.480000px;}
.yd{bottom:107.790000px;}
.y92{bottom:107.820000px;}
.y191{bottom:115.560000px;}
.y169{bottom:116.460000px;}
.yc5{bottom:118.440000px;}
.y14f{bottom:122.760000px;}
.y4e{bottom:125.460000px;}
.y91{bottom:126.540000px;}
.y36{bottom:127.620000px;}
.y125{bottom:128.700000px;}
.yc{bottom:129.060000px;}
.y190{bottom:133.740000px;}
.y168{bottom:135.180000px;}
.yc4{bottom:137.160000px;}
.y14e{bottom:141.480000px;}
.y90{bottom:145.080000px;}
.y4d{bottom:145.260000px;}
.y35{bottom:147.060000px;}
.y124{bottom:147.420000px;}
.yeb{bottom:153.210000px;}
.y167{bottom:153.930000px;}
.yc3{bottom:155.910000px;}
.y18f{bottom:156.450000px;}
.y14d{bottom:160.230000px;}
.y8f{bottom:163.830000px;}
.y34{bottom:164.700000px;}
.y4c{bottom:165.240000px;}
.y123{bottom:165.990000px;}
.yea{bottom:171.930000px;}
.y166{bottom:172.650000px;}
.yc2{bottom:174.630000px;}
.y18e{bottom:174.990000px;}
.y33{bottom:177.120000px;}
.y1f{bottom:177.150000px;}
.y14c{bottom:178.770000px;}
.y8e{bottom:182.550000px;}
.y122{bottom:184.710000px;}
.y4b{bottom:185.040000px;}
.ye9{bottom:190.650000px;}
.y165{bottom:191.370000px;}
.yc1{bottom:193.170000px;}
.y32{bottom:194.400000px;}
.y14b{bottom:197.490000px;}
.y8d{bottom:201.270000px;}
.y121{bottom:203.430000px;}
.y4a{bottom:205.020000px;}
.ye8{bottom:209.370000px;}
.y31{bottom:211.680000px;}
.y18d{bottom:215.850000px;}
.y14a{bottom:216.210000px;}
.y164{bottom:218.910000px;}
.y8c{bottom:219.810000px;}
.yc0{bottom:220.890000px;}
.y120{bottom:222.150000px;}
.y49{bottom:225.045000px;}
.ye7{bottom:227.910000px;}
.y30{bottom:229.005000px;}
.y18c{bottom:234.390000px;}
.y149{bottom:234.930000px;}
.y163{bottom:237.630000px;}
.ybf{bottom:239.610000px;}
.y48{bottom:244.845000px;}
.ye6{bottom:246.630000px;}
.y2f{bottom:246.645000px;}
.y8b{bottom:247.530000px;}
.y11f{bottom:249.690000px;}
.y18b{bottom:252.570000px;}
.y162{bottom:256.350000px;}
.ybe{bottom:258.330000px;}
.y148{bottom:262.470000px;}
.y2e{bottom:263.925000px;}
.y47{bottom:264.825000px;}
.ye5{bottom:265.350000px;}
.y8a{bottom:266.250000px;}
.y11e{bottom:268.410000px;}
.y161{bottom:275.070000px;}
.y18a{bottom:275.250000px;}
.ybd{bottom:276.870000px;}
.y1b9{bottom:280.470000px;}
.y147{bottom:281.190000px;}
.y2d{bottom:281.205000px;}
.y46{bottom:284.805000px;}
.y89{bottom:284.970000px;}
.y11d{bottom:287.130000px;}
.ye4{bottom:292.890000px;}
.y160{bottom:293.610000px;}
.y189{bottom:293.790000px;}
.ybc{bottom:295.590000px;}
.y2c{bottom:298.485000px;}
.y146{bottom:299.910000px;}
.y88{bottom:303.510000px;}
.y1b8{bottom:303.870000px;}
.y45{bottom:304.605000px;}
.y11c{bottom:305.850000px;}
.yca{bottom:310.890000px;}
.ye3{bottom:311.610000px;}
.y188{bottom:311.970000px;}
.y15f{bottom:312.330000px;}
.ybb{bottom:314.310000px;}
.y2b{bottom:315.765000px;}
.y145{bottom:318.630000px;}
.y87{bottom:322.230000px;}
.y1b7{bottom:322.410000px;}
.y11b{bottom:324.390000px;}
.y44{bottom:324.585000px;}
.ye2{bottom:330.330000px;}
.y15e{bottom:331.050000px;}
.yba{bottom:333.030000px;}
.y187{bottom:334.830000px;}
.y144{bottom:337.170000px;}
.y1b6{bottom:340.590000px;}
.y86{bottom:340.950000px;}
.y11a{bottom:343.110000px;}
.y43{bottom:344.385000px;}
.ye1{bottom:349.050000px;}
.y15d{bottom:349.770000px;}
.yb9{bottom:351.570000px;}
.y186{bottom:353.010000px;}
.y143{bottom:355.890000px;}
.y85{bottom:359.670000px;}
.y119{bottom:361.830000px;}
.y1b5{bottom:363.630000px;}
.y42{bottom:364.365000px;}
.ye0{bottom:367.770000px;}
.y142{bottom:374.610000px;}
.y185{bottom:376.050000px;}
.y15c{bottom:377.310000px;}
.y84{bottom:378.210000px;}
.y2a{bottom:380.565000px;}
.y1b4{bottom:381.810000px;}
.yb8{bottom:382.530000px;}
.y41{bottom:384.345000px;}
.ydf{bottom:386.310000px;}
.y118{bottom:389.370000px;}
.y141{bottom:393.330000px;}
.y184{bottom:394.770000px;}
.y15b{bottom:396.030000px;}
.y1b3{bottom:399.990000px;}
.y29{bottom:400.005000px;}
.y40{bottom:404.145000px;}
.y83{bottom:405.975000px;}
.y117{bottom:408.135000px;}
.yde{bottom:414.075000px;}
.y15a{bottom:414.795000px;}
.yb7{bottom:415.875000px;}
.y183{bottom:418.035000px;}
.y28{bottom:419.085000px;}
.y140{bottom:420.915000px;}
.y1b2{bottom:423.075000px;}
.y3f{bottom:424.125000px;}
.y82{bottom:424.695000px;}
.y116{bottom:426.855000px;}
.ydd{bottom:432.795000px;}
.y159{bottom:433.515000px;}
.yb6{bottom:434.595000px;}
.y182{bottom:436.575000px;}
.y27{bottom:438.345000px;}
.y13f{bottom:439.635000px;}
.y1b1{bottom:441.255000px;}
.y81{bottom:443.415000px;}
.y3e{bottom:444.105000px;}
.y115{bottom:445.575000px;}
.y16a{bottom:448.635000px;}
.yc8{bottom:449.715000px;}
.ydc{bottom:451.515000px;}
.y158{bottom:452.055000px;}
.yb5{bottom:453.135000px;}
.y181{bottom:455.115000px;}
.y26{bottom:457.425000px;}
.y13e{bottom:458.355000px;}
.y80{bottom:461.955000px;}
.y3d{bottom:463.905000px;}
.y114{bottom:464.295000px;}
.ydb{bottom:470.055000px;}
.y157{bottom:470.775000px;}
.yb4{bottom:471.855000px;}
.y180{bottom:473.295000px;}
.y25{bottom:476.895000px;}
.y13d{bottom:477.075000px;}
.y7f{bottom:480.675000px;}
.y113{bottom:482.835000px;}
.y3c{bottom:483.915000px;}
.y156{bottom:489.495000px;}
.yb3{bottom:490.575000px;}
.y13c{bottom:495.615000px;}
.y24{bottom:495.975000px;}
.yda{bottom:497.775000px;}
.y7e{bottom:499.395000px;}
.y1b0{bottom:500.835000px;}
.y112{bottom:501.555000px;}
.y3b{bottom:503.715000px;}
.y13b{bottom:514.335000px;}
.y17f{bottom:514.515000px;}
.y23{bottom:515.235000px;}
.yd9{bottom:516.495000px;}
.y7d{bottom:518.115000px;}
.y155{bottom:520.275000px;}
.yb2{bottom:521.355000px;}
.y1af{bottom:523.515000px;}
.y3a{bottom:523.695000px;}
.y111{bottom:529.635000px;}
.y17e{bottom:532.515000px;}
.y13a{bottom:533.055000px;}
.y22{bottom:534.315000px;}
.yd8{bottom:535.215000px;}
.y7c{bottom:536.655000px;}
.y1ae{bottom:542.055000px;}
.y39{bottom:543.675000px;}
.y10b{bottom:543.855000px;}
.y17d{bottom:550.695000px;}
.y139{bottom:551.775000px;}
.y21{bottom:553.755000px;}
.yb1{bottom:554.655000px;}
.y1ad{bottom:560.235000px;}
.y38{bottom:563.475000px;}
.y7b{bottom:567.615000px;}
.y138{bottom:570.315000px;}
.yd7{bottom:572.475000px;}
.yb0{bottom:573.375000px;}
.y20{bottom:577.335000px;}
.y1ac{bottom:582.915000px;}
.y37{bottom:583.455000px;}
.yd6{bottom:591.195000px;}
.y110{bottom:591.375000px;}
.y17c{bottom:591.915000px;}
.yaf{bottom:592.095000px;}
.y137{bottom:598.035000px;}
.y7a{bottom:600.735000px;}
.y1ab{bottom:601.455000px;}
.y154{bottom:609.915000px;}
.y17b{bottom:610.095000px;}
.yae{bottom:610.635000px;}
.y136{bottom:617.295000px;}
.yd5{bottom:618.735000px;}
.y79{bottom:619.455000px;}
.y1aa{bottom:619.995000px;}
.y10d{bottom:623.235000px;}
.y17a{bottom:628.275000px;}
.y153{bottom:628.455000px;}
.y135{bottom:636.375000px;}
.yd4{bottom:637.455000px;}
.y78{bottom:638.175000px;}
.yad{bottom:638.355000px;}
.y179{bottom:650.985000px;}
.yc6{bottom:653.685000px;}
.y134{bottom:655.485000px;}
.yd3{bottom:656.205000px;}
.y1a9{bottom:656.385000px;}
.y77{bottom:656.925000px;}
.yac{bottom:657.105000px;}
.y178{bottom:669.525000px;}
.y105{bottom:670.785000px;}
.yd2{bottom:674.925000px;}
.yab{bottom:675.825000px;}
.y1a8{bottom:679.065000px;}
.y133{bottom:683.205000px;}
.y76{bottom:684.465000px;}
.y177{bottom:687.705000px;}
.yd1{bottom:693.645000px;}
.yaa{bottom:694.365000px;}
.y1a7{bottom:697.605000px;}
.y132{bottom:702.465000px;}
.y75{bottom:703.185000px;}
.y176{bottom:710.385000px;}
.yd0{bottom:712.185000px;}
.y1a6{bottom:715.785000px;}
.y107{bottom:718.305000px;}
.y131{bottom:721.545000px;}
.y74{bottom:721.905000px;}
.ya9{bottom:725.325000px;}
.y175{bottom:728.925000px;}
.ycf{bottom:730.905000px;}
.y1a5{bottom:738.645000px;}
.y73{bottom:740.625000px;}
.y174{bottom:747.645000px;}
.yce{bottom:749.625000px;}
.y1a4{bottom:756.825000px;}
.ya8{bottom:758.625000px;}
.y72{bottom:759.345000px;}
.y103{bottom:765.825000px;}
.y130{bottom:768.165000px;}
.ycd{bottom:768.345000px;}
.y173{bottom:770.865000px;}
.y1c{bottom:774.645000px;}
.ya7{bottom:777.345000px;}
.y71{bottom:777.885000px;}
.y1a3{bottom:779.505000px;}
.y12f{bottom:786.885000px;}
.y172{bottom:789.405000px;}
.ya6{bottom:795.885000px;}
.y1a2{bottom:798.045000px;}
.yfd{bottom:798.405000px;}
.y1b{bottom:803.805000px;}
.y70{bottom:805.605000px;}
.y171{bottom:807.405000px;}
.ya5{bottom:814.605000px;}
.y1a1{bottom:816.225000px;}
.y1a{bottom:818.385000px;}
.y6f{bottom:824.325000px;}
.y170{bottom:825.585000px;}
.y102{bottom:830.445000px;}
.ya4{bottom:833.325000px;}
.y1a0{bottom:839.265000px;}
.y6e{bottom:843.045000px;}
.ya3{bottom:852.045000px;}
.y19{bottom:854.565000px;}
.y16f{bottom:855.825000px;}
.y19f{bottom:857.805000px;}
.y6d{bottom:861.585000px;}
.y100{bottom:862.305000px;}
.y18{bottom:866.805000px;}
.ycc{bottom:870.585000px;}
.y19e{bottom:875.985000px;}
.y17{bottom:879.585000px;}
.y6c{bottom:880.305000px;}
.y16e{bottom:889.305000px;}
.yf1{bottom:894.165000px;}
.ya2{bottom:898.350000px;}
.y6b{bottom:899.070000px;}
.y16{bottom:903.930000px;}
.y16d{bottom:908.070000px;}
.y19d{bottom:916.890000px;}
.ya1{bottom:917.070000px;}
.y6a{bottom:917.790000px;}
.y15{bottom:920.850000px;}
.yfa{bottom:926.250000px;}
.y12e{bottom:926.610000px;}
.y16c{bottom:926.790000px;}
.y19c{bottom:935.430000px;}
.ya0{bottom:935.790000px;}
.y69{bottom:936.330000px;}
.y12d{bottom:945.330000px;}
.y19b{bottom:953.430000px;}
.y9f{bottom:954.330000px;}
.y68{bottom:955.050000px;}
.y14{bottom:956.130000px;}
.yf9{bottom:958.110000px;}
.y12c{bottom:964.050000px;}
.y9e{bottom:973.050000px;}
.y67{bottom:973.770000px;}
.y19a{bottom:976.110000px;}
.y12b{bottom:982.770000px;}
.y13{bottom:991.410000px;}
.y9d{bottom:991.770000px;}
.y66{bottom:992.490000px;}
.y199{bottom:994.650000px;}
.y152{bottom:1000.770000px;}
.y12a{bottom:1001.490000px;}
.yf6{bottom:1005.630000px;}
.y16b{bottom:1010.310000px;}
.y9c{bottom:1010.490000px;}
.y65{bottom:1011.030000px;}
.y198{bottom:1012.830000px;}
.y151{bottom:1019.490000px;}
.y129{bottom:1020.030000px;}
.y12{bottom:1020.210000px;}
.y9b{bottom:1029.030000px;}
.y10{bottom:1032.270000px;}
.y197{bottom:1035.510000px;}
.y9{bottom:1037.490000px;}
.yb{bottom:1037.520000px;}
.y150{bottom:1038.030000px;}
.y64{bottom:1038.750000px;}
.y9a{bottom:1047.750000px;}
.yf3{bottom:1053.150000px;}
.y196{bottom:1054.050000px;}
.ycb{bottom:1056.750000px;}
.y63{bottom:1057.470000px;}
.y128{bottom:1066.470000px;}
.y195{bottom:1072.230000px;}
.y93{bottom:1072.770000px;}
.y99{bottom:1075.470000px;}
.y62{bottom:1076.190000px;}
.yed{bottom:1085.010000px;}
.y127{bottom:1085.190000px;}
.y98{bottom:1094.190000px;}
.y61{bottom:1094.730000px;}
.y194{bottom:1094.910000px;}
.y126{bottom:1103.730000px;}
.y97{bottom:1112.730000px;}
.y60{bottom:1113.450000px;}
.yec{bottom:1130.730000px;}
.y96{bottom:1131.450000px;}
.y193{bottom:1131.630000px;}
.y5f{bottom:1144.410000px;}
.y95{bottom:1150.200000px;}
.y192{bottom:1150.380000px;}
.y5e{bottom:1166.400000px;}
.y5d{bottom:1170.540000px;}
.y5a{bottom:1187.820000px;}
.y1{bottom:1192.680000px;}
.h19{height:4.106250px;}
.h9{height:4.320000px;}
.h10{height:5.220000px;}
.h11{height:12.832031px;}
.h7{height:17.820000px;}
.h5{height:17.903320px;}
.h27{height:18.738281px;}
.h25{height:21.960000px;}
.h4{height:25.380000px;}
.h12{height:25.664062px;}
.h16{height:25.681641px;}
.hd{height:27.000000px;}
.h1a{height:28.800000px;}
.h17{height:29.770312px;}
.h21{height:30.339844px;}
.h33{height:31.140000px;}
.h36{height:31.176000px;}
.h2f{height:31.860000px;}
.h30{height:38.496094px;}
.h32{height:38.522461px;}
.h1f{height:42.602344px;}
.h20{height:42.631523px;}
.h26{height:43.472812px;}
.h24{height:44.820000px;}
.h3c{height:45.199688px;}
.h34{height:46.620000px;}
.h35{height:46.800000px;}
.h3a{height:46.836000px;}
.h1d{height:47.221875px;}
.h1e{height:47.254219px;}
.h1b{height:49.680000px;}
.h6{height:51.363281px;}
.h3{height:53.709961px;}
.h8{height:54.000000px;}
.h22{height:55.825312px;}
.h2a{height:55.980000px;}
.h2d{height:56.160000px;}
.h28{height:60.053906px;}
.h3d{height:63.019687px;}
.he{height:63.180000px;}
.h18{height:65.884219px;}
.h2e{height:66.757500px;}
.h15{height:67.860000px;}
.h3b{height:68.084282px;}
.h29{height:71.324297px;}
.hf{height:71.820000px;}
.h2{height:73.722656px;}
.h23{height:74.736000px;}
.h13{height:76.992188px;}
.hb{height:86.255508px;}
.h38{height:94.320000px;}
.h37{height:95.040000px;}
.h14{height:110.583984px;}
.h39{height:126.216000px;}
.hc{height:140.400000px;}
.ha{height:140.436000px;}
.h31{height:190.110000px;}
.h2b{height:204.660000px;}
.h2c{height:211.680000px;}
.h1c{height:597.495000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:19.800000px;}
.we{width:43.200000px;}
.wf{width:47.160000px;}
.wd{width:49.500000px;}
.w12{width:106.236000px;}
.w11{width:106.416000px;}
.w5{width:117.000000px;}
.w9{width:149.040000px;}
.w15{width:160.590000px;}
.w13{width:170.130000px;}
.w8{width:204.915000px;}
.w14{width:212.610000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.wb{width:361.110000px;}
.wc{width:361.155000px;}
.wa{width:578.310000px;}
.w6{width:606.060000px;}
.w7{width:606.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.100000px;}
.x29{left:17.460000px;}
.x26{left:19.440000px;}
.x23{left:29.880000px;}
.x24{left:30.960000px;}
.x2c{left:57.600000px;}
.xe{left:61.740000px;}
.x27{left:66.960000px;}
.x22{left:68.580000px;}
.x2a{left:80.280000px;}
.x3{left:84.996000px;}
.x11{left:86.615987px;}
.x20{left:93.095987px;}
.x10{left:102.285000px;}
.x1f{left:104.795987px;}
.x1b{left:106.560000px;}
.x6{left:111.060000px;}
.x5{left:120.240000px;}
.x2f{left:127.475987px;}
.x9{left:128.694000px;}
.x1e{left:132.155987px;}
.x12{left:134.675987px;}
.x13{left:141.695987px;}
.xd{left:175.725000px;}
.xa{left:201.960000px;}
.xc{left:225.435000px;}
.x17{left:234.030000px;}
.x8{left:250.815000px;}
.x25{left:281.235000px;}
.xb{left:303.045000px;}
.x21{left:321.914987px;}
.x4{left:325.875000px;}
.x18{left:328.755000px;}
.x1d{left:336.314987px;}
.x15{left:338.834987px;}
.x1c{left:353.054987px;}
.x1a{left:359.354987px;}
.x19{left:388.334987px;}
.x2d{left:389.594987px;}
.x2e{left:396.614987px;}
.x14{left:446.504987px;}
.x28{left:451.365000px;}
.x1{left:561.164987px;}
.x7{left:566.565000px;}
.xf{left:603.285000px;}
.x2b{left:663.990000px;}
.x2{left:808.019987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2b{letter-spacing:-0.757333pt;}
.ls21{letter-spacing:-0.736000pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.634667pt;}
.ls2f{letter-spacing:-0.565333pt;}
.ls29{letter-spacing:-0.544000pt;}
.ls2e{letter-spacing:-0.466133pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.206933pt;}
.ls6{letter-spacing:-0.197867pt;}
.lsd{letter-spacing:-0.189333pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.135467pt;}
.ls27{letter-spacing:-0.117867pt;}
.ls8{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls1f{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.043520pt;}
.ls9{letter-spacing:-0.033280pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.005115pt;}
.ls7{letter-spacing:0.008960pt;}
.ls4{letter-spacing:0.020480pt;}
.ls1c{letter-spacing:0.028160pt;}
.lse{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.051200pt;}
.ls10{letter-spacing:0.056320pt;}
.ls2c{letter-spacing:0.076800pt;}
.ls25{letter-spacing:0.112640pt;}
.ls28{letter-spacing:0.173867pt;}
.ls2a{letter-spacing:0.194667pt;}
.ls18{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.211200pt;}
.ls15{letter-spacing:0.216320pt;}
.ls11{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.268800pt;}
.ls13{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.304000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.752000pt;}
.ls26{letter-spacing:14.438400pt;}
.ls22{letter-spacing:29.711360pt;}
.ls16{letter-spacing:753.418667pt;}
.ws1b{word-spacing:-58.880000pt;}
.ws20{word-spacing:-56.320000pt;}
.ws4{word-spacing:-22.641920pt;}
.ws5{word-spacing:-19.918080pt;}
.ws12{word-spacing:-15.933547pt;}
.ws13{word-spacing:-15.895147pt;}
.ws14{word-spacing:-15.667195pt;}
.ws10{word-spacing:-15.662080pt;}
.ws3{word-spacing:-15.565013pt;}
.ws1c{word-spacing:-15.526613pt;}
.ws9{word-spacing:-15.065600pt;}
.wsb{word-spacing:-15.057920pt;}
.ws7{word-spacing:-15.014400pt;}
.ws8{word-spacing:-14.919467pt;}
.wsa{word-spacing:-14.825067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.556267pt;}
.ws26{word-spacing:-14.535467pt;}
.wsc{word-spacing:-14.425600pt;}
.ws1f{word-spacing:-14.361600pt;}
.ws22{word-spacing:-13.817600pt;}
.ws27{word-spacing:-13.721600pt;}
.ws2{word-spacing:-13.554560pt;}
.ws0{word-spacing:-13.545600pt;}
.ws21{word-spacing:-13.450347pt;}
.ws1{word-spacing:-13.347733pt;}
.ws1d{word-spacing:-13.178880pt;}
.ws1e{word-spacing:-13.061013pt;}
.wsf{word-spacing:-12.974080pt;}
.wse{word-spacing:-12.953600pt;}
.ws15{word-spacing:-12.448000pt;}
.ws24{word-spacing:-12.442880pt;}
.wsd{word-spacing:-12.430080pt;}
.ws25{word-spacing:-12.421547pt;}
.ws17{word-spacing:-12.240000pt;}
.ws19{word-spacing:-12.160000pt;}
.ws1a{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.080000pt;}
.ws18{word-spacing:-12.000000pt;}
.ws11{word-spacing:0.000000pt;}
._2{margin-left:-4.800000pt;}
._3{margin-left:-3.744000pt;}
._1{margin-left:-2.784000pt;}
._1c{margin-left:-1.888000pt;}
._4{margin-left:-0.898560pt;}
._0{width:1.002240pt;}
._9{width:1.972480pt;}
._a{width:2.873387pt;}
._11{width:3.877760pt;}
._7{width:4.840960pt;}
._6{width:5.790080pt;}
._8{width:6.693120pt;}
._18{width:7.772160pt;}
._15{width:8.873600pt;}
._d{width:9.827200pt;}
._e{width:10.737280pt;}
._14{width:12.517760pt;}
._1a{width:13.658880pt;}
._17{width:14.610560pt;}
._b{width:15.511040pt;}
._c{width:16.587520pt;}
._12{width:17.635840pt;}
._1e{width:18.717867pt;}
._16{width:19.654400pt;}
._1d{width:21.100800pt;}
._19{width:22.551040pt;}
._22{width:23.797760pt;}
._20{width:24.729600pt;}
._21{width:25.671680pt;}
._10{width:26.772480pt;}
._f{width:27.941120pt;}
._23{width:29.224533pt;}
._1b{width:30.323200pt;}
._24{width:31.220480pt;}
._2b{width:33.346560pt;}
._29{width:34.242560pt;}
._2a{width:35.812693pt;}
._13{width:37.502720pt;}
._1f{width:38.684160pt;}
._28{width:47.181653pt;}
._27{width:48.183040pt;}
._31{width:49.075627pt;}
._2f{width:54.828373pt;}
._2e{width:56.320000pt;}
._5{width:79.684267pt;}
._2d{width:95.629653pt;}
._2c{width:97.077760pt;}
._30{width:116.273920pt;}
._26{width:129.570987pt;}
._25{width:161.018880pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fsd{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs10{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fsb{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fse{font-size:242.560000pt;}
.fsf{font-size:250.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.160000pt;}
.y11{bottom:0.960000pt;}
.y1e{bottom:1.600000pt;}
.yf0{bottom:2.720000pt;}
.y7{bottom:3.040000pt;}
.yc7{bottom:3.200000pt;}
.yc9{bottom:3.360000pt;}
.y5c{bottom:3.520000pt;}
.y59{bottom:3.680000pt;}
.y94{bottom:3.840000pt;}
.y5{bottom:5.120000pt;}
.y54{bottom:5.280000pt;}
.yf{bottom:7.040000pt;}
.y5b{bottom:7.200000pt;}
.yf4{bottom:9.600000pt;}
.yee{bottom:9.760000pt;}
.yfb{bottom:9.800000pt;}
.y104{bottom:9.920000pt;}
.y109{bottom:10.080000pt;}
.y1d{bottom:12.000000pt;}
.yf5{bottom:16.480000pt;}
.y101{bottom:16.640000pt;}
.yfc{bottom:16.680000pt;}
.yef{bottom:16.960000pt;}
.y6{bottom:17.760000pt;}
.y4{bottom:18.880000pt;}
.y58{bottom:20.640000pt;}
.y53{bottom:23.040000pt;}
.yf8{bottom:23.520000pt;}
.y10f{bottom:23.546667pt;}
.y108{bottom:23.840000pt;}
.y10a{bottom:24.000000pt;}
.yf7{bottom:30.400000pt;}
.y10e{bottom:30.426667pt;}
.ye{bottom:30.560000pt;}
.yff{bottom:30.880000pt;}
.y52{bottom:40.640000pt;}
.y106{bottom:44.640000pt;}
.y57{bottom:44.826667pt;}
.yfe{bottom:44.960000pt;}
.y8{bottom:47.520000pt;}
.y3{bottom:48.640000pt;}
.y56{bottom:54.106667pt;}
.y51{bottom:58.400000pt;}
.y10c{bottom:58.880000pt;}
.y2{bottom:71.360000pt;}
.y50{bottom:76.000000pt;}
.yf2{bottom:80.200000pt;}
.y55{bottom:91.040000pt;}
.y4f{bottom:93.760000pt;}
.yd{bottom:95.813333pt;}
.y92{bottom:95.840000pt;}
.y191{bottom:102.720000pt;}
.y169{bottom:103.520000pt;}
.yc5{bottom:105.280000pt;}
.y14f{bottom:109.120000pt;}
.y4e{bottom:111.520000pt;}
.y91{bottom:112.480000pt;}
.y36{bottom:113.440000pt;}
.y125{bottom:114.400000pt;}
.yc{bottom:114.720000pt;}
.y190{bottom:118.880000pt;}
.y168{bottom:120.160000pt;}
.yc4{bottom:121.920000pt;}
.y14e{bottom:125.760000pt;}
.y90{bottom:128.960000pt;}
.y4d{bottom:129.120000pt;}
.y35{bottom:130.720000pt;}
.y124{bottom:131.040000pt;}
.yeb{bottom:136.186667pt;}
.y167{bottom:136.826667pt;}
.yc3{bottom:138.586667pt;}
.y18f{bottom:139.066667pt;}
.y14d{bottom:142.426667pt;}
.y8f{bottom:145.626667pt;}
.y34{bottom:146.400000pt;}
.y4c{bottom:146.880000pt;}
.y123{bottom:147.546667pt;}
.yea{bottom:152.826667pt;}
.y166{bottom:153.466667pt;}
.yc2{bottom:155.226667pt;}
.y18e{bottom:155.546667pt;}
.y33{bottom:157.440000pt;}
.y1f{bottom:157.466667pt;}
.y14c{bottom:158.906667pt;}
.y8e{bottom:162.266667pt;}
.y122{bottom:164.186667pt;}
.y4b{bottom:164.480000pt;}
.ye9{bottom:169.466667pt;}
.y165{bottom:170.106667pt;}
.yc1{bottom:171.706667pt;}
.y32{bottom:172.800000pt;}
.y14b{bottom:175.546667pt;}
.y8d{bottom:178.906667pt;}
.y121{bottom:180.826667pt;}
.y4a{bottom:182.240000pt;}
.ye8{bottom:186.106667pt;}
.y31{bottom:188.160000pt;}
.y18d{bottom:191.866667pt;}
.y14a{bottom:192.186667pt;}
.y164{bottom:194.586667pt;}
.y8c{bottom:195.386667pt;}
.yc0{bottom:196.346667pt;}
.y120{bottom:197.466667pt;}
.y49{bottom:200.040000pt;}
.ye7{bottom:202.586667pt;}
.y30{bottom:203.560000pt;}
.y18c{bottom:208.346667pt;}
.y149{bottom:208.826667pt;}
.y163{bottom:211.226667pt;}
.ybf{bottom:212.986667pt;}
.y48{bottom:217.640000pt;}
.ye6{bottom:219.226667pt;}
.y2f{bottom:219.240000pt;}
.y8b{bottom:220.026667pt;}
.y11f{bottom:221.946667pt;}
.y18b{bottom:224.506667pt;}
.y162{bottom:227.866667pt;}
.ybe{bottom:229.626667pt;}
.y148{bottom:233.306667pt;}
.y2e{bottom:234.600000pt;}
.y47{bottom:235.400000pt;}
.ye5{bottom:235.866667pt;}
.y8a{bottom:236.666667pt;}
.y11e{bottom:238.586667pt;}
.y161{bottom:244.506667pt;}
.y18a{bottom:244.666667pt;}
.ybd{bottom:246.106667pt;}
.y1b9{bottom:249.306667pt;}
.y147{bottom:249.946667pt;}
.y2d{bottom:249.960000pt;}
.y46{bottom:253.160000pt;}
.y89{bottom:253.306667pt;}
.y11d{bottom:255.226667pt;}
.ye4{bottom:260.346667pt;}
.y160{bottom:260.986667pt;}
.y189{bottom:261.146667pt;}
.ybc{bottom:262.746667pt;}
.y2c{bottom:265.320000pt;}
.y146{bottom:266.586667pt;}
.y88{bottom:269.786667pt;}
.y1b8{bottom:270.106667pt;}
.y45{bottom:270.760000pt;}
.y11c{bottom:271.866667pt;}
.yca{bottom:276.346667pt;}
.ye3{bottom:276.986667pt;}
.y188{bottom:277.306667pt;}
.y15f{bottom:277.626667pt;}
.ybb{bottom:279.386667pt;}
.y2b{bottom:280.680000pt;}
.y145{bottom:283.226667pt;}
.y87{bottom:286.426667pt;}
.y1b7{bottom:286.586667pt;}
.y11b{bottom:288.346667pt;}
.y44{bottom:288.520000pt;}
.ye2{bottom:293.626667pt;}
.y15e{bottom:294.266667pt;}
.yba{bottom:296.026667pt;}
.y187{bottom:297.626667pt;}
.y144{bottom:299.706667pt;}
.y1b6{bottom:302.746667pt;}
.y86{bottom:303.066667pt;}
.y11a{bottom:304.986667pt;}
.y43{bottom:306.120000pt;}
.ye1{bottom:310.266667pt;}
.y15d{bottom:310.906667pt;}
.yb9{bottom:312.506667pt;}
.y186{bottom:313.786667pt;}
.y143{bottom:316.346667pt;}
.y85{bottom:319.706667pt;}
.y119{bottom:321.626667pt;}
.y1b5{bottom:323.226667pt;}
.y42{bottom:323.880000pt;}
.ye0{bottom:326.906667pt;}
.y142{bottom:332.986667pt;}
.y185{bottom:334.266667pt;}
.y15c{bottom:335.386667pt;}
.y84{bottom:336.186667pt;}
.y2a{bottom:338.280000pt;}
.y1b4{bottom:339.386667pt;}
.yb8{bottom:340.026667pt;}
.y41{bottom:341.640000pt;}
.ydf{bottom:343.386667pt;}
.y118{bottom:346.106667pt;}
.y141{bottom:349.626667pt;}
.y184{bottom:350.906667pt;}
.y15b{bottom:352.026667pt;}
.y1b3{bottom:355.546667pt;}
.y29{bottom:355.560000pt;}
.y40{bottom:359.240000pt;}
.y83{bottom:360.866667pt;}
.y117{bottom:362.786667pt;}
.yde{bottom:368.066667pt;}
.y15a{bottom:368.706667pt;}
.yb7{bottom:369.666667pt;}
.y183{bottom:371.586667pt;}
.y28{bottom:372.520000pt;}
.y140{bottom:374.146667pt;}
.y1b2{bottom:376.066667pt;}
.y3f{bottom:377.000000pt;}
.y82{bottom:377.506667pt;}
.y116{bottom:379.426667pt;}
.ydd{bottom:384.706667pt;}
.y159{bottom:385.346667pt;}
.yb6{bottom:386.306667pt;}
.y182{bottom:388.066667pt;}
.y27{bottom:389.640000pt;}
.y13f{bottom:390.786667pt;}
.y1b1{bottom:392.226667pt;}
.y81{bottom:394.146667pt;}
.y3e{bottom:394.760000pt;}
.y115{bottom:396.066667pt;}
.y16a{bottom:398.786667pt;}
.yc8{bottom:399.746667pt;}
.ydc{bottom:401.346667pt;}
.y158{bottom:401.826667pt;}
.yb5{bottom:402.786667pt;}
.y181{bottom:404.546667pt;}
.y26{bottom:406.600000pt;}
.y13e{bottom:407.426667pt;}
.y80{bottom:410.626667pt;}
.y3d{bottom:412.360000pt;}
.y114{bottom:412.706667pt;}
.ydb{bottom:417.826667pt;}
.y157{bottom:418.466667pt;}
.yb4{bottom:419.426667pt;}
.y180{bottom:420.706667pt;}
.y25{bottom:423.906667pt;}
.y13d{bottom:424.066667pt;}
.y7f{bottom:427.266667pt;}
.y113{bottom:429.186667pt;}
.y3c{bottom:430.146667pt;}
.y156{bottom:435.106667pt;}
.yb3{bottom:436.066667pt;}
.y13c{bottom:440.546667pt;}
.y24{bottom:440.866667pt;}
.yda{bottom:442.466667pt;}
.y7e{bottom:443.906667pt;}
.y1b0{bottom:445.186667pt;}
.y112{bottom:445.826667pt;}
.y3b{bottom:447.746667pt;}
.y13b{bottom:457.186667pt;}
.y17f{bottom:457.346667pt;}
.y23{bottom:457.986667pt;}
.yd9{bottom:459.106667pt;}
.y7d{bottom:460.546667pt;}
.y155{bottom:462.466667pt;}
.yb2{bottom:463.426667pt;}
.y1af{bottom:465.346667pt;}
.y3a{bottom:465.506667pt;}
.y111{bottom:470.786667pt;}
.y17e{bottom:473.346667pt;}
.y13a{bottom:473.826667pt;}
.y22{bottom:474.946667pt;}
.yd8{bottom:475.746667pt;}
.y7c{bottom:477.026667pt;}
.y1ae{bottom:481.826667pt;}
.y39{bottom:483.266667pt;}
.y10b{bottom:483.426667pt;}
.y17d{bottom:489.506667pt;}
.y139{bottom:490.466667pt;}
.y21{bottom:492.226667pt;}
.yb1{bottom:493.026667pt;}
.y1ad{bottom:497.986667pt;}
.y38{bottom:500.866667pt;}
.y7b{bottom:504.546667pt;}
.y138{bottom:506.946667pt;}
.yd7{bottom:508.866667pt;}
.yb0{bottom:509.666667pt;}
.y20{bottom:513.186667pt;}
.y1ac{bottom:518.146667pt;}
.y37{bottom:518.626667pt;}
.yd6{bottom:525.506667pt;}
.y110{bottom:525.666667pt;}
.y17c{bottom:526.146667pt;}
.yaf{bottom:526.306667pt;}
.y137{bottom:531.586667pt;}
.y7a{bottom:533.986667pt;}
.y1ab{bottom:534.626667pt;}
.y154{bottom:542.146667pt;}
.y17b{bottom:542.306667pt;}
.yae{bottom:542.786667pt;}
.y136{bottom:548.706667pt;}
.yd5{bottom:549.986667pt;}
.y79{bottom:550.626667pt;}
.y1aa{bottom:551.106667pt;}
.y10d{bottom:553.986667pt;}
.y17a{bottom:558.466667pt;}
.y153{bottom:558.626667pt;}
.y135{bottom:565.666667pt;}
.yd4{bottom:566.626667pt;}
.y78{bottom:567.266667pt;}
.yad{bottom:567.426667pt;}
.y179{bottom:578.653333pt;}
.yc6{bottom:581.053333pt;}
.y134{bottom:582.653333pt;}
.yd3{bottom:583.293333pt;}
.y1a9{bottom:583.453333pt;}
.y77{bottom:583.933333pt;}
.yac{bottom:584.093333pt;}
.y178{bottom:595.133333pt;}
.y105{bottom:596.253333pt;}
.yd2{bottom:599.933333pt;}
.yab{bottom:600.733333pt;}
.y1a8{bottom:603.613333pt;}
.y133{bottom:607.293333pt;}
.y76{bottom:608.413333pt;}
.y177{bottom:611.293333pt;}
.yd1{bottom:616.573333pt;}
.yaa{bottom:617.213333pt;}
.y1a7{bottom:620.093333pt;}
.y132{bottom:624.413333pt;}
.y75{bottom:625.053333pt;}
.y176{bottom:631.453333pt;}
.yd0{bottom:633.053333pt;}
.y1a6{bottom:636.253333pt;}
.y107{bottom:638.493333pt;}
.y131{bottom:641.373333pt;}
.y74{bottom:641.693333pt;}
.ya9{bottom:644.733333pt;}
.y175{bottom:647.933333pt;}
.ycf{bottom:649.693333pt;}
.y1a5{bottom:656.573333pt;}
.y73{bottom:658.333333pt;}
.y174{bottom:664.573333pt;}
.yce{bottom:666.333333pt;}
.y1a4{bottom:672.733333pt;}
.ya8{bottom:674.333333pt;}
.y72{bottom:674.973333pt;}
.y103{bottom:680.733333pt;}
.y130{bottom:682.813333pt;}
.ycd{bottom:682.973333pt;}
.y173{bottom:685.213333pt;}
.y1c{bottom:688.573333pt;}
.ya7{bottom:690.973333pt;}
.y71{bottom:691.453333pt;}
.y1a3{bottom:692.893333pt;}
.y12f{bottom:699.453333pt;}
.y172{bottom:701.693333pt;}
.ya6{bottom:707.453333pt;}
.y1a2{bottom:709.373333pt;}
.yfd{bottom:709.693333pt;}
.y1b{bottom:714.493333pt;}
.y70{bottom:716.093333pt;}
.y171{bottom:717.693333pt;}
.ya5{bottom:724.093333pt;}
.y1a1{bottom:725.533333pt;}
.y1a{bottom:727.453333pt;}
.y6f{bottom:732.733333pt;}
.y170{bottom:733.853333pt;}
.y102{bottom:738.173333pt;}
.ya4{bottom:740.733333pt;}
.y1a0{bottom:746.013333pt;}
.y6e{bottom:749.373333pt;}
.ya3{bottom:757.373333pt;}
.y19{bottom:759.613333pt;}
.y16f{bottom:760.733333pt;}
.y19f{bottom:762.493333pt;}
.y6d{bottom:765.853333pt;}
.y100{bottom:766.493333pt;}
.y18{bottom:770.493333pt;}
.ycc{bottom:773.853333pt;}
.y19e{bottom:778.653333pt;}
.y17{bottom:781.853333pt;}
.y6c{bottom:782.493333pt;}
.y16e{bottom:790.493333pt;}
.yf1{bottom:794.813333pt;}
.ya2{bottom:798.533333pt;}
.y6b{bottom:799.173333pt;}
.y16{bottom:803.493333pt;}
.y16d{bottom:807.173333pt;}
.y19d{bottom:815.013333pt;}
.ya1{bottom:815.173333pt;}
.y6a{bottom:815.813333pt;}
.y15{bottom:818.533333pt;}
.yfa{bottom:823.333333pt;}
.y12e{bottom:823.653333pt;}
.y16c{bottom:823.813333pt;}
.y19c{bottom:831.493333pt;}
.ya0{bottom:831.813333pt;}
.y69{bottom:832.293333pt;}
.y12d{bottom:840.293333pt;}
.y19b{bottom:847.493333pt;}
.y9f{bottom:848.293333pt;}
.y68{bottom:848.933333pt;}
.y14{bottom:849.893333pt;}
.yf9{bottom:851.653333pt;}
.y12c{bottom:856.933333pt;}
.y9e{bottom:864.933333pt;}
.y67{bottom:865.573333pt;}
.y19a{bottom:867.653333pt;}
.y12b{bottom:873.573333pt;}
.y13{bottom:881.253333pt;}
.y9d{bottom:881.573333pt;}
.y66{bottom:882.213333pt;}
.y199{bottom:884.133333pt;}
.y152{bottom:889.573333pt;}
.y12a{bottom:890.213333pt;}
.yf6{bottom:893.893333pt;}
.y16b{bottom:898.053333pt;}
.y9c{bottom:898.213333pt;}
.y65{bottom:898.693333pt;}
.y198{bottom:900.293333pt;}
.y151{bottom:906.213333pt;}
.y129{bottom:906.693333pt;}
.y12{bottom:906.853333pt;}
.y9b{bottom:914.693333pt;}
.y10{bottom:917.573333pt;}
.y197{bottom:920.453333pt;}
.y9{bottom:922.213333pt;}
.yb{bottom:922.240000pt;}
.y150{bottom:922.693333pt;}
.y64{bottom:923.333333pt;}
.y9a{bottom:931.333333pt;}
.yf3{bottom:936.133333pt;}
.y196{bottom:936.933333pt;}
.ycb{bottom:939.333333pt;}
.y63{bottom:939.973333pt;}
.y128{bottom:947.973333pt;}
.y195{bottom:953.093333pt;}
.y93{bottom:953.573333pt;}
.y99{bottom:955.973333pt;}
.y62{bottom:956.613333pt;}
.yed{bottom:964.453333pt;}
.y127{bottom:964.613333pt;}
.y98{bottom:972.613333pt;}
.y61{bottom:973.093333pt;}
.y194{bottom:973.253333pt;}
.y126{bottom:981.093333pt;}
.y97{bottom:989.093333pt;}
.y60{bottom:989.733333pt;}
.yec{bottom:1005.093333pt;}
.y96{bottom:1005.733333pt;}
.y193{bottom:1005.893333pt;}
.y5f{bottom:1017.253333pt;}
.y95{bottom:1022.400000pt;}
.y192{bottom:1022.560000pt;}
.y5e{bottom:1036.800000pt;}
.y5d{bottom:1040.480000pt;}
.y5a{bottom:1055.840000pt;}
.y1{bottom:1060.160000pt;}
.h19{height:3.650000pt;}
.h9{height:3.840000pt;}
.h10{height:4.640000pt;}
.h11{height:11.406250pt;}
.h7{height:15.840000pt;}
.h5{height:15.914062pt;}
.h27{height:16.656250pt;}
.h25{height:19.520000pt;}
.h4{height:22.560000pt;}
.h12{height:22.812500pt;}
.h16{height:22.828125pt;}
.hd{height:24.000000pt;}
.h1a{height:25.600000pt;}
.h17{height:26.462500pt;}
.h21{height:26.968750pt;}
.h33{height:27.680000pt;}
.h36{height:27.712000pt;}
.h2f{height:28.320000pt;}
.h30{height:34.218750pt;}
.h32{height:34.242188pt;}
.h1f{height:37.868750pt;}
.h20{height:37.894687pt;}
.h26{height:38.642500pt;}
.h24{height:39.840000pt;}
.h3c{height:40.177500pt;}
.h34{height:41.440000pt;}
.h35{height:41.600000pt;}
.h3a{height:41.632000pt;}
.h1d{height:41.975000pt;}
.h1e{height:42.003750pt;}
.h1b{height:44.160000pt;}
.h6{height:45.656250pt;}
.h3{height:47.742188pt;}
.h8{height:48.000000pt;}
.h22{height:49.622500pt;}
.h2a{height:49.760000pt;}
.h2d{height:49.920000pt;}
.h28{height:53.381250pt;}
.h3d{height:56.017500pt;}
.he{height:56.160000pt;}
.h18{height:58.563750pt;}
.h2e{height:59.340000pt;}
.h15{height:60.320000pt;}
.h3b{height:60.519362pt;}
.h29{height:63.399375pt;}
.hf{height:63.840000pt;}
.h2{height:65.531250pt;}
.h23{height:66.432000pt;}
.h13{height:68.437500pt;}
.hb{height:76.671562pt;}
.h38{height:83.840000pt;}
.h37{height:84.480000pt;}
.h14{height:98.296875pt;}
.h39{height:112.192000pt;}
.hc{height:124.800000pt;}
.ha{height:124.832000pt;}
.h31{height:168.986667pt;}
.h2b{height:181.920000pt;}
.h2c{height:188.160000pt;}
.h1c{height:531.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:17.600000pt;}
.we{width:38.400000pt;}
.wf{width:41.920000pt;}
.wd{width:44.000000pt;}
.w12{width:94.432000pt;}
.w11{width:94.592000pt;}
.w5{width:104.000000pt;}
.w9{width:132.480000pt;}
.w15{width:142.746667pt;}
.w13{width:151.226667pt;}
.w8{width:182.146667pt;}
.w14{width:188.986667pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.wb{width:320.986667pt;}
.wc{width:321.026667pt;}
.wa{width:514.053333pt;}
.w6{width:538.720000pt;}
.w7{width:538.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.200000pt;}
.x29{left:15.520000pt;}
.x26{left:17.280000pt;}
.x23{left:26.560000pt;}
.x24{left:27.520000pt;}
.x2c{left:51.200000pt;}
.xe{left:54.880000pt;}
.x27{left:59.520000pt;}
.x22{left:60.960000pt;}
.x2a{left:71.360000pt;}
.x3{left:75.552000pt;}
.x11{left:76.991988pt;}
.x20{left:82.751988pt;}
.x10{left:90.920000pt;}
.x1f{left:93.151988pt;}
.x1b{left:94.720000pt;}
.x6{left:98.720000pt;}
.x5{left:106.880000pt;}
.x2f{left:113.311988pt;}
.x9{left:114.394667pt;}
.x1e{left:117.471988pt;}
.x12{left:119.711988pt;}
.x13{left:125.951988pt;}
.xd{left:156.200000pt;}
.xa{left:179.520000pt;}
.xc{left:200.386667pt;}
.x17{left:208.026667pt;}
.x8{left:222.946667pt;}
.x25{left:249.986667pt;}
.xb{left:269.373333pt;}
.x21{left:286.146655pt;}
.x4{left:289.666667pt;}
.x18{left:292.226667pt;}
.x1d{left:298.946655pt;}
.x15{left:301.186655pt;}
.x1c{left:313.826655pt;}
.x1a{left:319.426655pt;}
.x19{left:345.186655pt;}
.x2d{left:346.306655pt;}
.x2e{left:352.546655pt;}
.x14{left:396.893322pt;}
.x28{left:401.213333pt;}
.x1{left:498.813322pt;}
.x7{left:503.613333pt;}
.xf{left:536.253333pt;}
.x2b{left:590.213333pt;}
.x2{left:718.239988pt;}
}




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