
    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_d05e45887f4c2594a4209267.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_e5eaab6096c20299fbf42d7d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5cdcdc273257ed56d3c6a07f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_da59a1184386f39632e0210f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_17e92cc8471f68cc7b8f0cbc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_599fc80731c526c76e59cd61.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_453fa7d3f308811441e8a922.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_9af291794e427f7c727a6f0f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_1fc6ae2f126b78e7c707375a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_ccbcd77d6669abed662b1447.woff')format("woff");}.ffe{font-family:ffe;line-height:0.886719;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_74f81c3e4095373374abd088.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_e49772c22944cc70d5fa5536.woff')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_73f9f714faad125716be88af.woff')format("woff");}.ff12{font-family:ff12;line-height:0.766602;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_674746378f4513460da213df.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:36.000000px;}
.ls18{letter-spacing:-1.134000px;}
.ls1f{letter-spacing:-0.984000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.457800px;}
.ls10{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.017280px;}
.ls14{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls1b{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.256800px;}
.ls20{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.720000px;}
.lsd{letter-spacing:15.120000px;}
.lse{letter-spacing:39.905280px;}
.ls19{letter-spacing:43.481280px;}
.ls1a{letter-spacing:43.505280px;}
.ls1c{letter-spacing:59.321280px;}
.ls1d{letter-spacing:59.345280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-66.240000px;}
.wsb{word-spacing:-24.062880px;}
.ws12{word-spacing:-19.474560px;}
.wsf{word-spacing:-19.457280px;}
.ws10{word-spacing:-19.440000px;}
.ws11{word-spacing:-19.431360px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.127600px;}
.ws18{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.712400px;}
.ws16{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws19{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws15{word-spacing:-15.426000px;}
.ws3{word-spacing:-14.650800px;}
.ws6{word-spacing:-13.036800px;}
.ws8{word-spacing:-10.350600px;}
.wse{word-spacing:-0.066240px;}
.wsa{word-spacing:0.000000px;}
._3e{margin-left:-2.150640px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.305920px;}
._b{width:3.908160px;}
._4{width:4.968000px;}
._5{width:6.027840px;}
._9{width:7.087680px;}
._a{width:8.198880px;}
._27{width:9.538560px;}
._13{width:10.563120px;}
._7{width:11.826000px;}
._6{width:12.916800px;}
._8{width:14.109120px;}
._10{width:15.433920px;}
._25{width:17.588880px;}
._26{width:18.629280px;}
._c{width:19.938240px;}
._d{width:21.165840px;}
._3{width:22.985280px;}
._1a{width:24.707520px;}
._19{width:26.133840px;}
._18{width:27.193680px;}
._29{width:28.416960px;}
._1e{width:29.543040px;}
._1d{width:31.331520px;}
._1c{width:32.523840px;}
._22{width:33.629040px;}
._14{width:35.040960px;}
._12{width:36.798480px;}
._15{width:38.516400px;}
._16{width:39.911760px;}
._2c{width:41.236560px;}
._36{width:42.480000px;}
._58{width:44.879760px;}
._4e{width:46.542960px;}
._3b{width:47.728080px;}
._35{width:49.878720px;}
._2e{width:51.336000px;}
._32{width:53.323200px;}
._3f{width:54.383040px;}
._31{width:55.610640px;}
._44{width:56.900160px;}
._4b{width:58.255920px;}
._28{width:60.379920px;}
._42{width:61.735680px;}
._2f{width:63.060480px;}
._45{width:64.151280px;}
._1b{width:65.577600px;}
._f{width:67.105440px;}
._e{width:68.227200px;}
._4c{width:70.081920px;}
._4a{width:71.208000px;}
._2a{width:72.797760px;}
._46{width:78.432480px;}
._2b{width:80.812800px;}
._37{width:82.270080px;}
._24{width:84.281520px;}
._23{width:87.171840px;}
._40{width:90.632160px;}
._2d{width:95.385600px;}
._52{width:100.842480px;}
._33{width:102.677760px;}
._34{width:104.133600px;}
._30{width:109.892160px;}
._3a{width:111.415680px;}
._47{width:113.963760px;}
._41{width:116.648640px;}
._59{width:118.815120px;}
._11{width:122.544000px;}
._49{width:144.021600px;}
._3d{width:145.233360px;}
._50{width:146.702160px;}
._56{width:150.263280px;}
._21{width:152.893440px;}
._3c{width:161.961120px;}
._48{width:163.511280px;}
._54{width:166.266720px;}
._51{width:171.627840px;}
._39{width:179.377920px;}
._38{width:180.539280px;}
._4f{width:186.562800px;}
._1f{width:189.617520px;}
._20{width:197.647200px;}
._17{width:206.174160px;}
._53{width:266.121360px;}
._55{width:291.985920px;}
._5c{width:335.643840px;}
._57{width:363.291120px;}
._43{width:368.426880px;}
._4d{width:409.145040px;}
._5a{width:585.344160px;}
._5b{width:653.871840px;}
._5d{width:726.984000px;}
._5e{width:804.286080px;}
._5f{width:847.596000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(10,28,46);}
.fc2{color:rgb(192,0,0);}
.fc3{color:rgb(0,29,53);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs6{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs5{font-size:51.120000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.yd0{bottom:3.585000px;}
.y8d{bottom:3.600000px;}
.ya8{bottom:3.945000px;}
.y90{bottom:3.960000px;}
.y148{bottom:3.990000px;}
.ya3{bottom:4.125000px;}
.y76{bottom:4.140000px;}
.y7f{bottom:4.680000px;}
.y79{bottom:4.860000px;}
.y7c{bottom:4.890000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y144{bottom:16.740000px;}
.ycf{bottom:22.485000px;}
.y8c{bottom:22.680000px;}
.yfd{bottom:22.845000px;}
.y92{bottom:22.860000px;}
.y94{bottom:22.905000px;}
.yaa{bottom:23.025000px;}
.y99{bottom:23.040000px;}
.ya4{bottom:23.070000px;}
.y15c{bottom:23.085000px;}
.y15{bottom:26.460000px;}
.y7e{bottom:27.180000px;}
.y7b{bottom:27.210000px;}
.y78{bottom:27.360000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y8e{bottom:41.580000px;}
.ya9{bottom:41.925000px;}
.yf0{bottom:41.940000px;}
.y149{bottom:41.970000px;}
.y128{bottom:42.105000px;}
.y9f{bottom:42.120000px;}
.y151{bottom:42.150000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y157{bottom:60.840000px;}
.y127{bottom:61.005000px;}
.y9e{bottom:61.020000px;}
.y150{bottom:61.050000px;}
.y13{bottom:70.380000px;}
.y3e{bottom:75.240000px;}
.y156{bottom:79.920000px;}
.y14f{bottom:80.130000px;}
.y155{bottom:98.850000px;}
.y152{bottom:109.260000px;}
.yda{bottom:117.000000px;}
.y12e{bottom:118.260000px;}
.y17c{bottom:119.160000px;}
.y199{bottom:121.680000px;}
.y105{bottom:123.300000px;}
.y3a{bottom:130.680000px;}
.y88{bottom:133.740000px;}
.y69{bottom:134.100000px;}
.yd9{bottom:136.800000px;}
.y17b{bottom:143.820000px;}
.y198{bottom:146.340000px;}
.y104{bottom:147.960000px;}
.y39{bottom:155.340000px;}
.yd8{bottom:156.600000px;}
.y12d{bottom:156.960000px;}
.y87{bottom:158.400000px;}
.y68{bottom:158.760000px;}
.y17a{bottom:168.660000px;}
.y197{bottom:171.000000px;}
.y14e{bottom:171.180000px;}
.y103{bottom:172.620000px;}
.yd7{bottom:176.220000px;}
.y12c{bottom:176.580000px;}
.y38{bottom:180.000000px;}
.yaf{bottom:180.180000px;}
.y6e{bottom:183.060000px;}
.y67{bottom:183.420000px;}
.y179{bottom:193.320000px;}
.y196{bottom:195.660000px;}
.yd6{bottom:196.020000px;}
.y12b{bottom:196.380000px;}
.y102{bottom:197.280000px;}
.y37{bottom:204.660000px;}
.yae{bottom:204.840000px;}
.y6d{bottom:207.750000px;}
.y66{bottom:208.110000px;}
.yd5{bottom:215.685000px;}
.y12a{bottom:216.045000px;}
.y178{bottom:218.010000px;}
.y195{bottom:220.350000px;}
.y101{bottom:221.970000px;}
.y36{bottom:229.350000px;}
.yad{bottom:229.530000px;}
.y65{bottom:232.770000px;}
.y177{bottom:243.750000px;}
.y194{bottom:245.010000px;}
.y100{bottom:246.630000px;}
.y35{bottom:254.010000px;}
.yac{bottom:254.190000px;}
.yd4{bottom:254.385000px;}
.y64{bottom:257.430000px;}
.y14d{bottom:266.985000px;}
.y176{bottom:268.410000px;}
.y193{bottom:269.310000px;}
.yff{bottom:271.290000px;}
.y129{bottom:273.825000px;}
.yd3{bottom:274.185000px;}
.yab{bottom:278.490000px;}
.y34{bottom:278.670000px;}
.y63{bottom:282.090000px;}
.yfe{bottom:287.145000px;}
.y175{bottom:293.070000px;}
.y126{bottom:293.445000px;}
.yd2{bottom:293.805000px;}
.y192{bottom:293.970000px;}
.ya7{bottom:294.525000px;}
.y33{bottom:303.330000px;}
.y14c{bottom:305.685000px;}
.y62{bottom:306.750000px;}
.yd1{bottom:313.605000px;}
.y174{bottom:317.730000px;}
.y191{bottom:318.990000px;}
.yfc{bottom:325.845000px;}
.y32{bottom:327.990000px;}
.y61{bottom:331.410000px;}
.yce{bottom:333.405000px;}
.y173{bottom:342.570000px;}
.y190{bottom:343.650000px;}
.y14b{bottom:344.385000px;}
.ya6{bottom:352.125000px;}
.y31{bottom:352.650000px;}
.y60{bottom:356.070000px;}
.yfb{bottom:364.545000px;}
.y172{bottom:368.310000px;}
.y125{bottom:370.125000px;}
.y30{bottom:377.310000px;}
.y5f{bottom:380.730000px;}
.ycd{bottom:381.450000px;}
.y14a{bottom:383.085000px;}
.yfa{bottom:384.165000px;}
.ya5{bottom:385.785000px;}
.y124{bottom:389.925000px;}
.y171{bottom:392.970000px;}
.y2f{bottom:401.970000px;}
.yf9{bottom:403.965000px;}
.y86{bottom:405.030000px;}
.y5e{bottom:405.390000px;}
.ycc{bottom:406.470000px;}
.y123{bottom:409.545000px;}
.y18f{bottom:417.630000px;}
.y170{bottom:417.810000px;}
.ya2{bottom:419.445000px;}
.yf8{bottom:423.585000px;}
.y2e{bottom:426.630000px;}
.y122{bottom:429.345000px;}
.y85{bottom:429.690000px;}
.y5d{bottom:430.050000px;}
.yca{bottom:431.130000px;}
.y147{bottom:440.685000px;}
.y18e{bottom:442.335000px;}
.yf7{bottom:443.415000px;}
.y16f{bottom:443.595000px;}
.y84{bottom:445.755000px;}
.y2d{bottom:451.335000px;}
.y5c{bottom:454.755000px;}
.yc9{bottom:455.835000px;}
.ya1{bottom:458.175000px;}
.yf6{bottom:463.035000px;}
.y18d{bottom:466.995000px;}
.y121{bottom:468.075000px;}
.y16e{bottom:468.255000px;}
.y83{bottom:468.975000px;}
.y2c{bottom:475.635000px;}
.y3b{bottom:475.995000px;}
.y19b{bottom:479.235000px;}
.y5b{bottom:479.595000px;}
.yc8{bottom:480.495000px;}
.yf5{bottom:482.835000px;}
.y18c{bottom:491.655000px;}
.y16d{bottom:492.915000px;}
.ya0{bottom:496.875000px;}
.y120{bottom:497.235000px;}
.y146{bottom:498.315000px;}
.y2b{bottom:500.295000px;}
.yf4{bottom:502.635000px;}
.y19a{bottom:503.895000px;}
.y5a{bottom:504.255000px;}
.yc7{bottom:505.155000px;}
.y82{bottom:514.515000px;}
.y18b{bottom:516.315000px;}
.y16c{bottom:517.575000px;}
.yf3{bottom:522.255000px;}
.y2a{bottom:524.235000px;}
.y59{bottom:528.915000px;}
.yc6{bottom:529.815000px;}
.y9d{bottom:530.535000px;}
.y18a{bottom:540.975000px;}
.yf2{bottom:542.055000px;}
.y16b{bottom:542.955000px;}
.y11f{bottom:546.915000px;}
.y29{bottom:551.055000px;}
.y58{bottom:553.575000px;}
.yc5{bottom:554.475000px;}
.y145{bottom:556.095000px;}
.y81{bottom:560.235000px;}
.yf1{bottom:561.675000px;}
.y189{bottom:565.635000px;}
.y16a{bottom:567.975000px;}
.y11e{bottom:571.575000px;}
.y28{bottom:572.835000px;}
.y57{bottom:578.235000px;}
.yc4{bottom:578.775000px;}
.ycb{bottom:579.135000px;}
.yef{bottom:581.475000px;}
.y188{bottom:590.295000px;}
.y169{bottom:592.635000px;}
.y27{bottom:594.795000px;}
.y11d{bottom:596.235000px;}
.y56{bottom:602.895000px;}
.yc3{bottom:603.795000px;}
.y80{bottom:605.775000px;}
.y9c{bottom:607.215000px;}
.y187{bottom:614.955000px;}
.y26{bottom:616.575000px;}
.y168{bottom:617.295000px;}
.y143{bottom:618.015000px;}
.yc2{bottom:619.455000px;}
.y11c{bottom:620.895000px;}
.y55{bottom:627.555000px;}
.y7d{bottom:628.995000px;}
.y25{bottom:638.355000px;}
.yee{bottom:639.075000px;}
.yc1{bottom:639.255000px;}
.y186{bottom:639.615000px;}
.y167{bottom:641.955000px;}
.y11b{bottom:645.555000px;}
.y9b{bottom:647.355000px;}
.y54{bottom:652.215000px;}
.yc0{bottom:658.875000px;}
.y24{bottom:660.135000px;}
.y185{bottom:664.275000px;}
.y166{bottom:666.615000px;}
.y11a{bottom:670.215000px;}
.y142{bottom:673.095000px;}
.y7a{bottom:674.535000px;}
.y53{bottom:676.905000px;}
.yed{bottom:678.525000px;}
.ybf{bottom:678.705000px;}
.y23{bottom:682.125000px;}
.y9a{bottom:687.525000px;}
.y184{bottom:688.605000px;}
.y165{bottom:691.305000px;}
.y119{bottom:694.905000px;}
.y141{bottom:697.785000px;}
.ybe{bottom:698.325000px;}
.y52{bottom:701.565000px;}
.y22{bottom:703.905000px;}
.y118{bottom:710.565000px;}
.y183{bottom:713.625000px;}
.y164{bottom:715.965000px;}
.y77{bottom:720.105000px;}
.y13e{bottom:722.805000px;}
.y21{bottom:725.685000px;}
.y51{bottom:726.225000px;}
.yec{bottom:727.485000px;}
.y117{bottom:730.365000px;}
.y98{bottom:732.165000px;}
.ybd{bottom:737.025000px;}
.y182{bottom:738.285000px;}
.y163{bottom:740.805000px;}
.y13d{bottom:747.105000px;}
.y20{bottom:747.465000px;}
.y50{bottom:750.885000px;}
.yeb{bottom:752.145000px;}
.ybc{bottom:756.825000px;}
.y181{bottom:762.945000px;}
.y162{bottom:765.465000px;}
.y75{bottom:765.825000px;}
.y116{bottom:769.065000px;}
.y1f{bottom:769.245000px;}
.y13c{bottom:772.125000px;}
.y6c{bottom:775.185000px;}
.y4f{bottom:775.545000px;}
.ybb{bottom:776.445000px;}
.yea{bottom:777.165000px;}
.y97{bottom:784.725000px;}
.y180{bottom:787.605000px;}
.y161{bottom:790.125000px;}
.y1e{bottom:791.205000px;}
.yba{bottom:796.245000px;}
.y13b{bottom:796.785000px;}
.y74{bottom:798.585000px;}
.y6b{bottom:799.845000px;}
.y4e{bottom:800.205000px;}
.ye9{bottom:801.825000px;}
.y17f{bottom:812.445000px;}
.y1d{bottom:812.985000px;}
.y160{bottom:814.785000px;}
.yb9{bottom:816.045000px;}
.y140{bottom:821.085000px;}
.y13a{bottom:821.445000px;}
.y73{bottom:823.245000px;}
.y96{bottom:823.425000px;}
.y4d{bottom:824.865000px;}
.ye8{bottom:826.485000px;}
.y115{bottom:826.665000px;}
.y1c{bottom:834.765000px;}
.yb8{bottom:835.665000px;}
.y17e{bottom:838.185000px;}
.y15f{bottom:839.445000px;}
.y139{bottom:846.105000px;}
.y114{bottom:846.285000px;}
.y72{bottom:848.085000px;}
.y4c{bottom:849.525000px;}
.ye7{bottom:851.145000px;}
.y1b{bottom:856.545000px;}
.y17d{bottom:863.025000px;}
.y15e{bottom:864.105000px;}
.y95{bottom:868.065000px;}
.y138{bottom:870.765000px;}
.y71{bottom:873.645000px;}
.y4b{bottom:874.185000px;}
.yb7{bottom:874.365000px;}
.ye6{bottom:875.805000px;}
.y1a{bottom:878.505000px;}
.y113{bottom:884.985000px;}
.y15d{bottom:888.765000px;}
.yb6{bottom:894.165000px;}
.y137{bottom:895.425000px;}
.y4a{bottom:898.845000px;}
.y19{bottom:899.925000px;}
.ye5{bottom:900.465000px;}
.y93{bottom:901.725000px;}
.y15b{bottom:904.425000px;}
.y112{bottom:904.785000px;}
.yb5{bottom:913.830000px;}
.y17{bottom:915.270000px;}
.y13f{bottom:919.770000px;}
.y136{bottom:920.130000px;}
.y12{bottom:922.470000px;}
.y49{bottom:923.550000px;}
.y111{bottom:924.630000px;}
.ye4{bottom:925.170000px;}
.y16{bottom:926.396347px;}
.yb4{bottom:933.630000px;}
.y91{bottom:940.470000px;}
.y15a{bottom:943.170000px;}
.y110{bottom:944.250000px;}
.y135{bottom:944.790000px;}
.y48{bottom:948.210000px;}
.ye3{bottom:949.830000px;}
.yb3{bottom:953.250000px;}
.y10f{bottom:964.050000px;}
.y134{bottom:969.450000px;}
.y47{bottom:972.870000px;}
.yb2{bottom:973.050000px;}
.ye2{bottom:974.130000px;}
.y10e{bottom:983.670000px;}
.ye1{bottom:990.150000px;}
.yb1{bottom:992.850000px;}
.y133{bottom:993.930000px;}
.y8f{bottom:995.190000px;}
.y70{bottom:997.170000px;}
.y46{bottom:997.530000px;}
.y159{bottom:1000.770000px;}
.ye0{bottom:1009.950000px;}
.y10{bottom:1018.590000px;}
.yb0{bottom:1021.830000px;}
.y45{bottom:1022.190000px;}
.y10d{bottom:1022.370000px;}
.y158{bottom:1023.990000px;}
.yd{bottom:1025.070000px;}
.y8b{bottom:1028.850000px;}
.ydf{bottom:1029.570000px;}
.y10c{bottom:1042.170000px;}
.y44{bottom:1046.490000px;}
.y6a{bottom:1046.850000px;}
.y154{bottom:1047.390000px;}
.yde{bottom:1049.370000px;}
.y10b{bottom:1061.790000px;}
.y132{bottom:1068.270000px;}
.ydd{bottom:1068.990000px;}
.y43{bottom:1071.150000px;}
.y6f{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y10a{bottom:1081.590000px;}
.y9{bottom:1081.950000px;}
.y131{bottom:1088.070000px;}
.y8a{bottom:1095.810000px;}
.y42{bottom:1096.170000px;}
.y109{bottom:1101.390000px;}
.y2{bottom:1106.250000px;}
.y130{bottom:1107.690000px;}
.y89{bottom:1120.470000px;}
.y41{bottom:1120.830000px;}
.y108{bottom:1121.010000px;}
.ydc{bottom:1126.770000px;}
.y7{bottom:1128.570000px;}
.y107{bottom:1140.810000px;}
.y40{bottom:1145.520000px;}
.y12f{bottom:1146.420000px;}
.y4{bottom:1156.860000px;}
.y153{bottom:1161.900000px;}
.ydb{bottom:1165.500000px;}
.y106{bottom:1169.820000px;}
.y3f{bottom:1170.180000px;}
.y3d{bottom:1187.280000px;}
.y3c{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h11{height:6.465000px;}
.h17{height:7.185000px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h36{height:18.885000px;}
.h3f{height:18.898500px;}
.h3b{height:18.900000px;}
.h38{height:18.922500px;}
.h43{height:18.930000px;}
.h3e{height:18.936000px;}
.h12{height:19.008000px;}
.h37{height:19.065000px;}
.h40{height:19.078500px;}
.h39{height:19.080000px;}
.h44{height:19.101000px;}
.h3c{height:19.110000px;}
.h8{height:22.305000px;}
.h22{height:22.320000px;}
.h26{height:22.485000px;}
.h4a{height:22.498500px;}
.h4b{height:22.500000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h2c{height:32.760000px;}
.h29{height:32.925000px;}
.h3d{height:37.785000px;}
.h2e{height:37.800000px;}
.h2b{height:37.822500px;}
.h34{height:37.965000px;}
.h46{height:37.978500px;}
.h3a{height:37.980000px;}
.h35{height:38.001000px;}
.h4d{height:38.002500px;}
.h41{height:38.010000px;}
.h32{height:39.405000px;}
.h31{height:39.450000px;}
.h2d{height:43.740000px;}
.h30{height:43.920000px;}
.h25{height:44.805000px;}
.h24{height:44.850000px;}
.h27{height:44.985000px;}
.h23{height:45.000000px;}
.h1d{height:47.901094px;}
.he{height:51.465000px;}
.h2f{height:51.660000px;}
.h5{height:52.920000px;}
.h2a{height:53.985000px;}
.h9{height:56.084062px;}
.h28{height:56.865000px;}
.h45{height:56.880000px;}
.h48{height:56.901000px;}
.h42{height:57.045000px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h19{height:64.978594px;}
.h1c{height:65.010937px;}
.h1f{height:65.884219px;}
.h1b{height:66.757500px;}
.h15{height:67.803750px;}
.h20{height:68.084282px;}
.h47{height:68.956875px;}
.h1a{height:71.204766px;}
.h21{height:71.225156px;}
.h6{height:71.324297px;}
.h14{height:72.562500px;}
.h33{height:75.945000px;}
.h4{height:76.317188px;}
.h10{height:78.367500px;}
.hf{height:87.519375px;}
.h49{height:95.076000px;}
.h13{height:96.105000px;}
.h3{height:103.530000px;}
.h4c{height:113.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:36.034500px;}
.wa{width:41.749500px;}
.w11{width:42.105000px;}
.w10{width:50.745000px;}
.w26{width:58.485000px;}
.w25{width:62.985000px;}
.w24{width:63.021000px;}
.w15{width:63.169500px;}
.we{width:65.329500px;}
.w1b{width:70.189500px;}
.w27{width:71.310000px;}
.w18{width:73.609500px;}
.w22{width:74.556000px;}
.w23{width:76.845000px;}
.w12{width:76.849500px;}
.w21{width:87.840000px;}
.wd{width:105.510000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w1d{width:116.121000px;}
.w17{width:118.245000px;}
.w1a{width:126.885000px;}
.w14{width:140.070000px;}
.w1e{width:159.825000px;}
.w20{width:214.579500px;}
.wc{width:222.495000px;}
.w8{width:245.040000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:306.375000px;}
.wb{width:332.160000px;}
.w1c{width:334.680000px;}
.w19{width:454.770000px;}
.w16{width:477.630000px;}
.w13{width:485.370000px;}
.wf{width:501.750000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x13{left:32.569500px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x14{left:68.743500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x2d{left:94.726500px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x47{left:113.076000px;}
.x28{left:116.146500px;}
.x34{left:118.306500px;}
.x23{left:121.186500px;}
.x43{left:123.516000px;}
.x3b{left:135.036000px;}
.x48{left:140.076000px;}
.x44{left:150.510000px;}
.x31{left:157.530000px;}
.x19{left:162.030000px;}
.x24{left:163.305000px;}
.x4{left:168.885000px;}
.x2e{left:172.305000px;}
.x38{left:179.325000px;}
.x29{left:181.845000px;}
.x16{left:185.788500px;}
.x35{left:192.645000px;}
.x20{left:195.705000px;}
.x6{left:209.010000px;}
.x22{left:229.710000px;}
.x27{left:236.550000px;}
.x15{left:245.728500px;}
.x30{left:251.670000px;}
.x3c{left:260.310000px;}
.x37{left:276.915000px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.x3d{left:337.035000px;}
.x33{left:340.095000px;}
.x2c{left:360.075000px;}
.x3e{left:425.595000px;}
.x21{left:441.480000px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x45{left:478.545000px;}
.x1d{left:488.985000px;}
.x25{left:495.840000px;}
.x1b{left:500.505000px;}
.x46{left:505.545000px;}
.x39{left:514.740000px;}
.x1e{left:515.985000px;}
.x1c{left:527.505000px;}
.x1f{left:554.505000px;}
.x3f{left:578.460000px;}
.x3a{left:631.590000px;}
.x40{left:642.390000px;}
.x36{left:648.150000px;}
.x32{left:650.850000px;}
.x2f{left:658.410000px;}
.x2a{left:683.610000px;}
.x41{left:706.110000px;}
.x26{left:719.250000px;}
.x7{left:722.490000px;}
.x2b{left:734.730000px;}
.x1{left:761.010000px;}
.x42{left:765.330000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:32.000000pt;}
.ls18{letter-spacing:-1.008000pt;}
.ls1f{letter-spacing:-0.874667pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.015360pt;}
.ls14{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls1b{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.228267pt;}
.ls20{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsd{letter-spacing:13.440000pt;}
.lse{letter-spacing:35.471360pt;}
.ls19{letter-spacing:38.650027pt;}
.ls1a{letter-spacing:38.671360pt;}
.ls1c{letter-spacing:52.730027pt;}
.ls1d{letter-spacing:52.751360pt;}
.ws17{word-spacing:-58.880000pt;}
.wsb{word-spacing:-21.389227pt;}
.ws12{word-spacing:-17.310720pt;}
.wsf{word-spacing:-17.295360pt;}
.ws10{word-spacing:-17.280000pt;}
.ws11{word-spacing:-17.272320pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.224533pt;}
.ws18{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.855467pt;}
.ws16{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws19{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws15{word-spacing:-13.712000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws6{word-spacing:-11.588267pt;}
.ws8{word-spacing:-9.200533pt;}
.wse{word-spacing:-0.058880pt;}
.wsa{word-spacing:0.000000pt;}
._3e{margin-left:-1.911680pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.049707pt;}
._b{width:3.473920pt;}
._4{width:4.416000pt;}
._5{width:5.358080pt;}
._9{width:6.300160pt;}
._a{width:7.287893pt;}
._27{width:8.478720pt;}
._13{width:9.389440pt;}
._7{width:10.512000pt;}
._6{width:11.481600pt;}
._8{width:12.541440pt;}
._10{width:13.719040pt;}
._25{width:15.634560pt;}
._26{width:16.559360pt;}
._c{width:17.722880pt;}
._d{width:18.814080pt;}
._3{width:20.431360pt;}
._1a{width:21.962240pt;}
._19{width:23.230080pt;}
._18{width:24.172160pt;}
._29{width:25.259520pt;}
._1e{width:26.260480pt;}
._1d{width:27.850240pt;}
._1c{width:28.910080pt;}
._22{width:29.892480pt;}
._14{width:31.147520pt;}
._12{width:32.709760pt;}
._15{width:34.236800pt;}
._16{width:35.477120pt;}
._2c{width:36.654720pt;}
._36{width:37.760000pt;}
._58{width:39.893120pt;}
._4e{width:41.371520pt;}
._3b{width:42.424960pt;}
._35{width:44.336640pt;}
._2e{width:45.632000pt;}
._32{width:47.398400pt;}
._3f{width:48.340480pt;}
._31{width:49.431680pt;}
._44{width:50.577920pt;}
._4b{width:51.783040pt;}
._28{width:53.671040pt;}
._42{width:54.876160pt;}
._2f{width:56.053760pt;}
._45{width:57.023360pt;}
._1b{width:58.291200pt;}
._f{width:59.649280pt;}
._e{width:60.646400pt;}
._4c{width:62.295040pt;}
._4a{width:63.296000pt;}
._2a{width:64.709120pt;}
._46{width:69.717760pt;}
._2b{width:71.833600pt;}
._37{width:73.128960pt;}
._24{width:74.916907pt;}
._23{width:77.486080pt;}
._40{width:80.561920pt;}
._2d{width:84.787200pt;}
._52{width:89.637760pt;}
._33{width:91.269120pt;}
._34{width:92.563200pt;}
._30{width:97.681920pt;}
._3a{width:99.036160pt;}
._47{width:101.301120pt;}
._41{width:103.687680pt;}
._59{width:105.613440pt;}
._11{width:108.928000pt;}
._49{width:128.019200pt;}
._3d{width:129.096320pt;}
._50{width:130.401920pt;}
._56{width:133.567360pt;}
._21{width:135.905280pt;}
._3c{width:143.965440pt;}
._48{width:145.343360pt;}
._54{width:147.792640pt;}
._51{width:152.558080pt;}
._39{width:159.447040pt;}
._38{width:160.479360pt;}
._4f{width:165.833600pt;}
._1f{width:168.548907pt;}
._20{width:175.686400pt;}
._17{width:183.265920pt;}
._53{width:236.552320pt;}
._55{width:259.543040pt;}
._5c{width:298.350080pt;}
._57{width:322.925440pt;}
._43{width:327.490560pt;}
._4d{width:363.684480pt;}
._5a{width:520.305920pt;}
._5b{width:581.219413pt;}
._5d{width:646.208000pt;}
._5e{width:714.920960pt;}
._5f{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs6{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:45.440000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.yd0{bottom:3.186667pt;}
.y8d{bottom:3.200000pt;}
.ya8{bottom:3.506667pt;}
.y90{bottom:3.520000pt;}
.y148{bottom:3.546667pt;}
.ya3{bottom:3.666667pt;}
.y76{bottom:3.680000pt;}
.y7f{bottom:4.160000pt;}
.y79{bottom:4.320000pt;}
.y7c{bottom:4.346667pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y144{bottom:14.880000pt;}
.ycf{bottom:19.986667pt;}
.y8c{bottom:20.160000pt;}
.yfd{bottom:20.306667pt;}
.y92{bottom:20.320000pt;}
.y94{bottom:20.360000pt;}
.yaa{bottom:20.466667pt;}
.y99{bottom:20.480000pt;}
.ya4{bottom:20.506667pt;}
.y15c{bottom:20.520000pt;}
.y15{bottom:23.520000pt;}
.y7e{bottom:24.160000pt;}
.y7b{bottom:24.186667pt;}
.y78{bottom:24.320000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y8e{bottom:36.960000pt;}
.ya9{bottom:37.266667pt;}
.yf0{bottom:37.280000pt;}
.y149{bottom:37.306667pt;}
.y128{bottom:37.426667pt;}
.y9f{bottom:37.440000pt;}
.y151{bottom:37.466667pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y157{bottom:54.080000pt;}
.y127{bottom:54.226667pt;}
.y9e{bottom:54.240000pt;}
.y150{bottom:54.266667pt;}
.y13{bottom:62.560000pt;}
.y3e{bottom:66.880000pt;}
.y156{bottom:71.040000pt;}
.y14f{bottom:71.226667pt;}
.y155{bottom:87.866667pt;}
.y152{bottom:97.120000pt;}
.yda{bottom:104.000000pt;}
.y12e{bottom:105.120000pt;}
.y17c{bottom:105.920000pt;}
.y199{bottom:108.160000pt;}
.y105{bottom:109.600000pt;}
.y3a{bottom:116.160000pt;}
.y88{bottom:118.880000pt;}
.y69{bottom:119.200000pt;}
.yd9{bottom:121.600000pt;}
.y17b{bottom:127.840000pt;}
.y198{bottom:130.080000pt;}
.y104{bottom:131.520000pt;}
.y39{bottom:138.080000pt;}
.yd8{bottom:139.200000pt;}
.y12d{bottom:139.520000pt;}
.y87{bottom:140.800000pt;}
.y68{bottom:141.120000pt;}
.y17a{bottom:149.920000pt;}
.y197{bottom:152.000000pt;}
.y14e{bottom:152.160000pt;}
.y103{bottom:153.440000pt;}
.yd7{bottom:156.640000pt;}
.y12c{bottom:156.960000pt;}
.y38{bottom:160.000000pt;}
.yaf{bottom:160.160000pt;}
.y6e{bottom:162.720000pt;}
.y67{bottom:163.040000pt;}
.y179{bottom:171.840000pt;}
.y196{bottom:173.920000pt;}
.yd6{bottom:174.240000pt;}
.y12b{bottom:174.560000pt;}
.y102{bottom:175.360000pt;}
.y37{bottom:181.920000pt;}
.yae{bottom:182.080000pt;}
.y6d{bottom:184.666667pt;}
.y66{bottom:184.986667pt;}
.yd5{bottom:191.720000pt;}
.y12a{bottom:192.040000pt;}
.y178{bottom:193.786667pt;}
.y195{bottom:195.866667pt;}
.y101{bottom:197.306667pt;}
.y36{bottom:203.866667pt;}
.yad{bottom:204.026667pt;}
.y65{bottom:206.906667pt;}
.y177{bottom:216.666667pt;}
.y194{bottom:217.786667pt;}
.y100{bottom:219.226667pt;}
.y35{bottom:225.786667pt;}
.yac{bottom:225.946667pt;}
.yd4{bottom:226.120000pt;}
.y64{bottom:228.826667pt;}
.y14d{bottom:237.320000pt;}
.y176{bottom:238.586667pt;}
.y193{bottom:239.386667pt;}
.yff{bottom:241.146667pt;}
.y129{bottom:243.400000pt;}
.yd3{bottom:243.720000pt;}
.yab{bottom:247.546667pt;}
.y34{bottom:247.706667pt;}
.y63{bottom:250.746667pt;}
.yfe{bottom:255.240000pt;}
.y175{bottom:260.506667pt;}
.y126{bottom:260.840000pt;}
.yd2{bottom:261.160000pt;}
.y192{bottom:261.306667pt;}
.ya7{bottom:261.800000pt;}
.y33{bottom:269.626667pt;}
.y14c{bottom:271.720000pt;}
.y62{bottom:272.666667pt;}
.yd1{bottom:278.760000pt;}
.y174{bottom:282.426667pt;}
.y191{bottom:283.546667pt;}
.yfc{bottom:289.640000pt;}
.y32{bottom:291.546667pt;}
.y61{bottom:294.586667pt;}
.yce{bottom:296.360000pt;}
.y173{bottom:304.506667pt;}
.y190{bottom:305.466667pt;}
.y14b{bottom:306.120000pt;}
.ya6{bottom:313.000000pt;}
.y31{bottom:313.466667pt;}
.y60{bottom:316.506667pt;}
.yfb{bottom:324.040000pt;}
.y172{bottom:327.386667pt;}
.y125{bottom:329.000000pt;}
.y30{bottom:335.386667pt;}
.y5f{bottom:338.426667pt;}
.ycd{bottom:339.066667pt;}
.y14a{bottom:340.520000pt;}
.yfa{bottom:341.480000pt;}
.ya5{bottom:342.920000pt;}
.y124{bottom:346.600000pt;}
.y171{bottom:349.306667pt;}
.y2f{bottom:357.306667pt;}
.yf9{bottom:359.080000pt;}
.y86{bottom:360.026667pt;}
.y5e{bottom:360.346667pt;}
.ycc{bottom:361.306667pt;}
.y123{bottom:364.040000pt;}
.y18f{bottom:371.226667pt;}
.y170{bottom:371.386667pt;}
.ya2{bottom:372.840000pt;}
.yf8{bottom:376.520000pt;}
.y2e{bottom:379.226667pt;}
.y122{bottom:381.640000pt;}
.y85{bottom:381.946667pt;}
.y5d{bottom:382.266667pt;}
.yca{bottom:383.226667pt;}
.y147{bottom:391.720000pt;}
.y18e{bottom:393.186667pt;}
.yf7{bottom:394.146667pt;}
.y16f{bottom:394.306667pt;}
.y84{bottom:396.226667pt;}
.y2d{bottom:401.186667pt;}
.y5c{bottom:404.226667pt;}
.yc9{bottom:405.186667pt;}
.ya1{bottom:407.266667pt;}
.yf6{bottom:411.586667pt;}
.y18d{bottom:415.106667pt;}
.y121{bottom:416.066667pt;}
.y16e{bottom:416.226667pt;}
.y83{bottom:416.866667pt;}
.y2c{bottom:422.786667pt;}
.y3b{bottom:423.106667pt;}
.y19b{bottom:425.986667pt;}
.y5b{bottom:426.306667pt;}
.yc8{bottom:427.106667pt;}
.yf5{bottom:429.186667pt;}
.y18c{bottom:437.026667pt;}
.y16d{bottom:438.146667pt;}
.ya0{bottom:441.666667pt;}
.y120{bottom:441.986667pt;}
.y146{bottom:442.946667pt;}
.y2b{bottom:444.706667pt;}
.yf4{bottom:446.786667pt;}
.y19a{bottom:447.906667pt;}
.y5a{bottom:448.226667pt;}
.yc7{bottom:449.026667pt;}
.y82{bottom:457.346667pt;}
.y18b{bottom:458.946667pt;}
.y16c{bottom:460.066667pt;}
.yf3{bottom:464.226667pt;}
.y2a{bottom:465.986667pt;}
.y59{bottom:470.146667pt;}
.yc6{bottom:470.946667pt;}
.y9d{bottom:471.586667pt;}
.y18a{bottom:480.866667pt;}
.yf2{bottom:481.826667pt;}
.y16b{bottom:482.626667pt;}
.y11f{bottom:486.146667pt;}
.y29{bottom:489.826667pt;}
.y58{bottom:492.066667pt;}
.yc5{bottom:492.866667pt;}
.y145{bottom:494.306667pt;}
.y81{bottom:497.986667pt;}
.yf1{bottom:499.266667pt;}
.y189{bottom:502.786667pt;}
.y16a{bottom:504.866667pt;}
.y11e{bottom:508.066667pt;}
.y28{bottom:509.186667pt;}
.y57{bottom:513.986667pt;}
.yc4{bottom:514.466667pt;}
.ycb{bottom:514.786667pt;}
.yef{bottom:516.866667pt;}
.y188{bottom:524.706667pt;}
.y169{bottom:526.786667pt;}
.y27{bottom:528.706667pt;}
.y11d{bottom:529.986667pt;}
.y56{bottom:535.906667pt;}
.yc3{bottom:536.706667pt;}
.y80{bottom:538.466667pt;}
.y9c{bottom:539.746667pt;}
.y187{bottom:546.626667pt;}
.y26{bottom:548.066667pt;}
.y168{bottom:548.706667pt;}
.y143{bottom:549.346667pt;}
.yc2{bottom:550.626667pt;}
.y11c{bottom:551.906667pt;}
.y55{bottom:557.826667pt;}
.y7d{bottom:559.106667pt;}
.y25{bottom:567.426667pt;}
.yee{bottom:568.066667pt;}
.yc1{bottom:568.226667pt;}
.y186{bottom:568.546667pt;}
.y167{bottom:570.626667pt;}
.y11b{bottom:573.826667pt;}
.y9b{bottom:575.426667pt;}
.y54{bottom:579.746667pt;}
.yc0{bottom:585.666667pt;}
.y24{bottom:586.786667pt;}
.y185{bottom:590.466667pt;}
.y166{bottom:592.546667pt;}
.y11a{bottom:595.746667pt;}
.y142{bottom:598.306667pt;}
.y7a{bottom:599.586667pt;}
.y53{bottom:601.693333pt;}
.yed{bottom:603.133333pt;}
.ybf{bottom:603.293333pt;}
.y23{bottom:606.333333pt;}
.y9a{bottom:611.133333pt;}
.y184{bottom:612.093333pt;}
.y165{bottom:614.493333pt;}
.y119{bottom:617.693333pt;}
.y141{bottom:620.253333pt;}
.ybe{bottom:620.733333pt;}
.y52{bottom:623.613333pt;}
.y22{bottom:625.693333pt;}
.y118{bottom:631.613333pt;}
.y183{bottom:634.333333pt;}
.y164{bottom:636.413333pt;}
.y77{bottom:640.093333pt;}
.y13e{bottom:642.493333pt;}
.y21{bottom:645.053333pt;}
.y51{bottom:645.533333pt;}
.yec{bottom:646.653333pt;}
.y117{bottom:649.213333pt;}
.y98{bottom:650.813333pt;}
.ybd{bottom:655.133333pt;}
.y182{bottom:656.253333pt;}
.y163{bottom:658.493333pt;}
.y13d{bottom:664.093333pt;}
.y20{bottom:664.413333pt;}
.y50{bottom:667.453333pt;}
.yeb{bottom:668.573333pt;}
.ybc{bottom:672.733333pt;}
.y181{bottom:678.173333pt;}
.y162{bottom:680.413333pt;}
.y75{bottom:680.733333pt;}
.y116{bottom:683.613333pt;}
.y1f{bottom:683.773333pt;}
.y13c{bottom:686.333333pt;}
.y6c{bottom:689.053333pt;}
.y4f{bottom:689.373333pt;}
.ybb{bottom:690.173333pt;}
.yea{bottom:690.813333pt;}
.y97{bottom:697.533333pt;}
.y180{bottom:700.093333pt;}
.y161{bottom:702.333333pt;}
.y1e{bottom:703.293333pt;}
.yba{bottom:707.773333pt;}
.y13b{bottom:708.253333pt;}
.y74{bottom:709.853333pt;}
.y6b{bottom:710.973333pt;}
.y4e{bottom:711.293333pt;}
.ye9{bottom:712.733333pt;}
.y17f{bottom:722.173333pt;}
.y1d{bottom:722.653333pt;}
.y160{bottom:724.253333pt;}
.yb9{bottom:725.373333pt;}
.y140{bottom:729.853333pt;}
.y13a{bottom:730.173333pt;}
.y73{bottom:731.773333pt;}
.y96{bottom:731.933333pt;}
.y4d{bottom:733.213333pt;}
.ye8{bottom:734.653333pt;}
.y115{bottom:734.813333pt;}
.y1c{bottom:742.013333pt;}
.yb8{bottom:742.813333pt;}
.y17e{bottom:745.053333pt;}
.y15f{bottom:746.173333pt;}
.y139{bottom:752.093333pt;}
.y114{bottom:752.253333pt;}
.y72{bottom:753.853333pt;}
.y4c{bottom:755.133333pt;}
.ye7{bottom:756.573333pt;}
.y1b{bottom:761.373333pt;}
.y17d{bottom:767.133333pt;}
.y15e{bottom:768.093333pt;}
.y95{bottom:771.613333pt;}
.y138{bottom:774.013333pt;}
.y71{bottom:776.573333pt;}
.y4b{bottom:777.053333pt;}
.yb7{bottom:777.213333pt;}
.ye6{bottom:778.493333pt;}
.y1a{bottom:780.893333pt;}
.y113{bottom:786.653333pt;}
.y15d{bottom:790.013333pt;}
.yb6{bottom:794.813333pt;}
.y137{bottom:795.933333pt;}
.y4a{bottom:798.973333pt;}
.y19{bottom:799.933333pt;}
.ye5{bottom:800.413333pt;}
.y93{bottom:801.533333pt;}
.y15b{bottom:803.933333pt;}
.y112{bottom:804.253333pt;}
.yb5{bottom:812.293333pt;}
.y17{bottom:813.573333pt;}
.y13f{bottom:817.573333pt;}
.y136{bottom:817.893333pt;}
.y12{bottom:819.973333pt;}
.y49{bottom:820.933333pt;}
.y111{bottom:821.893333pt;}
.ye4{bottom:822.373333pt;}
.y16{bottom:823.463420pt;}
.yb4{bottom:829.893333pt;}
.y91{bottom:835.973333pt;}
.y15a{bottom:838.373333pt;}
.y110{bottom:839.333333pt;}
.y135{bottom:839.813333pt;}
.y48{bottom:842.853333pt;}
.ye3{bottom:844.293333pt;}
.yb3{bottom:847.333333pt;}
.y10f{bottom:856.933333pt;}
.y134{bottom:861.733333pt;}
.y47{bottom:864.773333pt;}
.yb2{bottom:864.933333pt;}
.ye2{bottom:865.893333pt;}
.y10e{bottom:874.373333pt;}
.ye1{bottom:880.133333pt;}
.yb1{bottom:882.533333pt;}
.y133{bottom:883.493333pt;}
.y8f{bottom:884.613333pt;}
.y70{bottom:886.373333pt;}
.y46{bottom:886.693333pt;}
.y159{bottom:889.573333pt;}
.ye0{bottom:897.733333pt;}
.y10{bottom:905.413333pt;}
.yb0{bottom:908.293333pt;}
.y45{bottom:908.613333pt;}
.y10d{bottom:908.773333pt;}
.y158{bottom:910.213333pt;}
.yd{bottom:911.173333pt;}
.y8b{bottom:914.533333pt;}
.ydf{bottom:915.173333pt;}
.y10c{bottom:926.373333pt;}
.y44{bottom:930.213333pt;}
.y6a{bottom:930.533333pt;}
.y154{bottom:931.013333pt;}
.yde{bottom:932.773333pt;}
.y10b{bottom:943.813333pt;}
.y132{bottom:949.573333pt;}
.ydd{bottom:950.213333pt;}
.y43{bottom:952.133333pt;}
.y6f{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y10a{bottom:961.413333pt;}
.y9{bottom:961.733333pt;}
.y131{bottom:967.173333pt;}
.y8a{bottom:974.053333pt;}
.y42{bottom:974.373333pt;}
.y109{bottom:979.013333pt;}
.y2{bottom:983.333333pt;}
.y130{bottom:984.613333pt;}
.y89{bottom:995.973333pt;}
.y41{bottom:996.293333pt;}
.y108{bottom:996.453333pt;}
.ydc{bottom:1001.573333pt;}
.y7{bottom:1003.173333pt;}
.y107{bottom:1014.053333pt;}
.y40{bottom:1018.240000pt;}
.y12f{bottom:1019.040000pt;}
.y4{bottom:1028.320000pt;}
.y153{bottom:1032.800000pt;}
.ydb{bottom:1036.000000pt;}
.y106{bottom:1039.840000pt;}
.y3f{bottom:1040.160000pt;}
.y3d{bottom:1055.360000pt;}
.y3c{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h11{height:5.746667pt;}
.h17{height:6.386667pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h36{height:16.786667pt;}
.h3f{height:16.798667pt;}
.h3b{height:16.800000pt;}
.h38{height:16.820000pt;}
.h43{height:16.826667pt;}
.h3e{height:16.832000pt;}
.h12{height:16.896000pt;}
.h37{height:16.946667pt;}
.h40{height:16.958667pt;}
.h39{height:16.960000pt;}
.h44{height:16.978667pt;}
.h3c{height:16.986667pt;}
.h8{height:19.826667pt;}
.h22{height:19.840000pt;}
.h26{height:19.986667pt;}
.h4a{height:19.998667pt;}
.h4b{height:20.000000pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h2c{height:29.120000pt;}
.h29{height:29.266667pt;}
.h3d{height:33.586667pt;}
.h2e{height:33.600000pt;}
.h2b{height:33.620000pt;}
.h34{height:33.746667pt;}
.h46{height:33.758667pt;}
.h3a{height:33.760000pt;}
.h35{height:33.778667pt;}
.h4d{height:33.780000pt;}
.h41{height:33.786667pt;}
.h32{height:35.026667pt;}
.h31{height:35.066667pt;}
.h2d{height:38.880000pt;}
.h30{height:39.040000pt;}
.h25{height:39.826667pt;}
.h24{height:39.866667pt;}
.h27{height:39.986667pt;}
.h23{height:40.000000pt;}
.h1d{height:42.578750pt;}
.he{height:45.746667pt;}
.h2f{height:45.920000pt;}
.h5{height:47.040000pt;}
.h2a{height:47.986667pt;}
.h9{height:49.852500pt;}
.h28{height:50.546667pt;}
.h45{height:50.560000pt;}
.h48{height:50.578667pt;}
.h42{height:50.706667pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1f{height:58.563750pt;}
.h1b{height:59.340000pt;}
.h15{height:60.270000pt;}
.h20{height:60.519362pt;}
.h47{height:61.295000pt;}
.h1a{height:63.293125pt;}
.h21{height:63.311250pt;}
.h6{height:63.399375pt;}
.h14{height:64.500000pt;}
.h33{height:67.506667pt;}
.h4{height:67.837500pt;}
.h10{height:69.660000pt;}
.hf{height:77.795000pt;}
.h49{height:84.512000pt;}
.h13{height:85.426667pt;}
.h3{height:92.026667pt;}
.h4c{height:101.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:32.030667pt;}
.wa{width:37.110667pt;}
.w11{width:37.426667pt;}
.w10{width:45.106667pt;}
.w26{width:51.986667pt;}
.w25{width:55.986667pt;}
.w24{width:56.018667pt;}
.w15{width:56.150667pt;}
.we{width:58.070667pt;}
.w1b{width:62.390667pt;}
.w27{width:63.386667pt;}
.w18{width:65.430667pt;}
.w22{width:66.272000pt;}
.w23{width:68.306667pt;}
.w12{width:68.310667pt;}
.w21{width:78.080000pt;}
.wd{width:93.786667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w1d{width:103.218667pt;}
.w17{width:105.106667pt;}
.w1a{width:112.786667pt;}
.w14{width:124.506667pt;}
.w1e{width:142.066667pt;}
.w20{width:190.737333pt;}
.wc{width:197.773333pt;}
.w8{width:217.813333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:272.333333pt;}
.wb{width:295.253333pt;}
.w1c{width:297.493333pt;}
.w19{width:404.240000pt;}
.w16{width:424.560000pt;}
.w13{width:431.440000pt;}
.wf{width:446.000000pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x13{left:28.950667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x14{left:61.105333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x2d{left:84.201333pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x47{left:100.512000pt;}
.x28{left:103.241333pt;}
.x34{left:105.161333pt;}
.x23{left:107.721333pt;}
.x43{left:109.792000pt;}
.x3b{left:120.032000pt;}
.x48{left:124.512000pt;}
.x44{left:133.786667pt;}
.x31{left:140.026667pt;}
.x19{left:144.026667pt;}
.x24{left:145.160000pt;}
.x4{left:150.120000pt;}
.x2e{left:153.160000pt;}
.x38{left:159.400000pt;}
.x29{left:161.640000pt;}
.x16{left:165.145333pt;}
.x35{left:171.240000pt;}
.x20{left:173.960000pt;}
.x6{left:185.786667pt;}
.x22{left:204.186667pt;}
.x27{left:210.266667pt;}
.x15{left:218.425333pt;}
.x30{left:223.706667pt;}
.x3c{left:231.386667pt;}
.x37{left:246.146667pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.x3d{left:299.586667pt;}
.x33{left:302.306667pt;}
.x2c{left:320.066667pt;}
.x3e{left:378.306667pt;}
.x21{left:392.426667pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x45{left:425.373333pt;}
.x1d{left:434.653333pt;}
.x25{left:440.746667pt;}
.x1b{left:444.893333pt;}
.x46{left:449.373333pt;}
.x39{left:457.546667pt;}
.x1e{left:458.653333pt;}
.x1c{left:468.893333pt;}
.x1f{left:492.893333pt;}
.x3f{left:514.186667pt;}
.x3a{left:561.413333pt;}
.x40{left:571.013333pt;}
.x36{left:576.133333pt;}
.x32{left:578.533333pt;}
.x2f{left:585.253333pt;}
.x2a{left:607.653333pt;}
.x41{left:627.653333pt;}
.x26{left:639.333333pt;}
.x7{left:642.213333pt;}
.x2b{left:653.093333pt;}
.x1{left:676.453333pt;}
.x42{left:680.293333pt;}
}




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