
    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_f2cbdeeafdb02dd05c2391a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4f2892dc054143803648aad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_fd454342a3cf8e845d373e53.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_98ee71007943f339da707941.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_625e10590727cc604826962c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_f75a963c42c772ff1ecf51e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_a946087551b3f2e5e09d9a9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_aad226885522e011fca5b514.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.089844;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_bb484a00bce1d6e225f8d821.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.089844;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_0e6d37864e676d7aed6b720b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_4cf76d2fd871d3de07cb5af0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.196289;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);}
.v8{vertical-align:-38.160000px;}
.va{vertical-align:-30.960000px;}
.v9{vertical-align:-28.800000px;}
.vb{vertical-align:-23.760000px;}
.v6{vertical-align:-14.400000px;}
.v3{vertical-align:-12.240000px;}
.v1{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.800000px;}
.v4{vertical-align:12.240000px;}
.v7{vertical-align:14.400000px;}
.vd{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.vc{vertical-align:30.240000px;}
.ls2f{letter-spacing:-5.328000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.690000px;}
.ls26{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.258000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.200400px;}
.ls1{letter-spacing:-0.181200px;}
.ls31{letter-spacing:-0.175800px;}
.ls15{letter-spacing:-0.145200px;}
.ls29{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.053280px;}
.ls32{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.033120px;}
.ls24{letter-spacing:0.053280px;}
.ls23{letter-spacing:0.101520px;}
.ls17{letter-spacing:0.135600px;}
.ls18{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.181200px;}
.ls5{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.259800px;}
.ls2a{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.300960px;}
.ls19{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.399600px;}
.ls13{letter-spacing:0.421920px;}
.ls6{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.152000px;}
.ls2e{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.584000px;}
.lse{letter-spacing:1.936080px;}
.ls22{letter-spacing:3.214800px;}
.ls9{letter-spacing:3.633120px;}
.ls21{letter-spacing:3.634560px;}
.lsa{letter-spacing:4.085280px;}
.ls12{letter-spacing:4.174560px;}
.ls10{letter-spacing:4.242240px;}
.ls11{letter-spacing:4.354560px;}
.lsb{letter-spacing:4.805280px;}
.ls1c{letter-spacing:5.893200px;}
.ls1a{letter-spacing:6.840000px;}
.ls2b{letter-spacing:12.960000px;}
.ls2d{letter-spacing:29.520000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws28{word-spacing:-72.000000px;}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.ws7{word-spacing:-18.720000px;}
.ws25{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws26{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws2a{word-spacing:-17.928000px;}
.ws24{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws27{word-spacing:-17.280000px;}
.ws12{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.199800px;}
.ws21{word-spacing:-14.993280px;}
.ws19{word-spacing:-14.940000px;}
.ws23{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.546800px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.229520px;}
.wse{word-spacing:-13.147200px;}
.ws29{word-spacing:-12.672000px;}
.ws2b{word-spacing:-12.186000px;}
.wsb{word-spacing:-11.880000px;}
.ws1e{word-spacing:-11.274480px;}
.ws13{word-spacing:-11.246400px;}
.ws16{word-spacing:-10.556400px;}
.ws11{word-spacing:-9.042000px;}
.ws18{word-spacing:-8.986800px;}
.ws10{word-spacing:-8.929200px;}
.wsc{word-spacing:-8.586720px;}
.wsd{word-spacing:-8.553600px;}
.ws1f{word-spacing:-2.684880px;}
.ws17{word-spacing:-1.964880px;}
.ws1b{word-spacing:-0.966240px;}
.ws1c{word-spacing:-0.246240px;}
.ws4{word-spacing:0.000000px;}
.ws20{word-spacing:0.216000px;}
.ws1d{word-spacing:2.882160px;}
.ws15{word-spacing:4.536000px;}
.ws14{word-spacing:12.962160px;}
._23{margin-left:-24.879600px;}
._21{margin-left:-10.836000px;}
._20{margin-left:-8.820000px;}
._22{margin-left:-6.230880px;}
._19{margin-left:-5.026560px;}
._f{margin-left:-3.888000px;}
._e{margin-left:-2.244960px;}
._8{margin-left:-1.099680px;}
._0{width:1.171200px;}
._5{width:2.474160px;}
._10{width:3.509280px;}
._11{width:4.698720px;}
._12{width:5.951520px;}
._2{width:7.195200px;}
._3{width:8.198880px;}
._4{width:9.442560px;}
._13{width:10.791840px;}
._b{width:11.796720px;}
._17{width:13.406880px;}
._18{width:14.544000px;}
._a{width:15.776640px;}
._9{width:17.031600px;}
._24{width:18.163200px;}
._6{width:19.744800px;}
._1f{width:21.151200px;}
._1b{width:22.680000px;}
._1c{width:23.812800px;}
._1d{width:25.094400px;}
._15{width:26.496000px;}
._16{width:27.916800px;}
._1e{width:29.304000px;}
._1{width:30.417840px;}
._7{width:31.422000px;}
._1a{width:32.832000px;}
._25{width:33.931680px;}
._14{width:40.644000px;}
._c{width:43.804080px;}
._d{width:44.844000px;}
.fc6{color:rgb(68,114,196);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc7{color:rgb(64,64,64);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y1b5{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y1b4{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y1b3{bottom:-32.760000px;}
.y1b2{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y95{bottom:1.980000px;}
.y86{bottom:2.880000px;}
.y83{bottom:3.060000px;}
.yf2{bottom:3.240000px;}
.y9{bottom:3.780000px;}
.y8f{bottom:3.960000px;}
.y90{bottom:4.680000px;}
.y183{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y82{bottom:7.740000px;}
.y94{bottom:8.820000px;}
.y8d{bottom:9.180000px;}
.y8{bottom:9.540000px;}
.y85{bottom:10.980000px;}
.y8b{bottom:11.160000px;}
.y2e{bottom:11.880000px;}
.yf0{bottom:12.270000px;}
.y89{bottom:15.840000px;}
.y1b1{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y10f{bottom:18.900000px;}
.y108{bottom:19.620000px;}
.y29{bottom:22.755000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y1b0{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y1af{bottom:65.190000px;}
.y1c{bottom:73.125000px;}
.y66{bottom:73.620000px;}
.yec{bottom:74.160000px;}
.ybf{bottom:76.680000px;}
.y1ae{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.yc0{bottom:81.000000px;}
.y105{bottom:81.180000px;}
.yc1{bottom:82.620000px;}
.yb2{bottom:84.960000px;}
.y65{bottom:89.280000px;}
.y80{bottom:91.080000px;}
.y170{bottom:92.700000px;}
.y64{bottom:93.780000px;}
.y182{bottom:98.100000px;}
.ybe{bottom:98.280000px;}
.y1ad{bottom:103.530000px;}
.yeb{bottom:105.480000px;}
.y195{bottom:107.100000px;}
.y1b{bottom:109.305000px;}
.y162{bottom:110.700000px;}
.y104{bottom:112.140000px;}
.y14f{bottom:113.400000px;}
.y63{bottom:113.760000px;}
.yb1{bottom:116.100000px;}
.ybd{bottom:117.720000px;}
.y130{bottom:119.880000px;}
.y7f{bottom:122.040000px;}
.y1ac{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.y62{bottom:129.420000px;}
.y161{bottom:131.400000px;}
.y61{bottom:133.920000px;}
.y14e{bottom:134.100000px;}
.y181{bottom:136.836000px;}
.yea{bottom:137.016000px;}
.y103{bottom:143.316000px;}
.y19{bottom:146.025000px;}
.ybc{bottom:146.376000px;}
.yb0{bottom:147.096000px;}
.y1ab{bottom:150.690000px;}
.y12f{bottom:151.050000px;}
.y16f{bottom:152.130000px;}
.y7e{bottom:153.210000px;}
.y60{bottom:153.750000px;}
.yd{bottom:156.090000px;}
.y18{bottom:164.205000px;}
.ye9{bottom:167.970000px;}
.y5f{bottom:169.410000px;}
.y160{bottom:170.130000px;}
.y14d{bottom:172.830000px;}
.y5e{bottom:173.910000px;}
.y102{bottom:174.270000px;}
.y1aa{bottom:174.450000px;}
.y180{bottom:175.530000px;}
.ybb{bottom:177.330000px;}
.yaf{bottom:178.230000px;}
.y12e{bottom:182.010000px;}
.y17{bottom:182.565000px;}
.y7d{bottom:184.170000px;}
.y1a9{bottom:189.030000px;}
.y15f{bottom:190.830000px;}
.y14c{bottom:193.530000px;}
.y5d{bottom:193.890000px;}
.ye8{bottom:199.110000px;}
.y101{bottom:205.230000px;}
.yba{bottom:208.470000px;}
.yae{bottom:209.190000px;}
.y5c{bottom:209.550000px;}
.y16e{bottom:211.530000px;}
.y1a8{bottom:212.790000px;}
.y12d{bottom:213.150000px;}
.y5b{bottom:214.050000px;}
.y17f{bottom:214.230000px;}
.y7c{bottom:215.310000px;}
.y16{bottom:218.925000px;}
.y15e{bottom:229.530000px;}
.ye7{bottom:230.070000px;}
.y14b{bottom:232.230000px;}
.y5a{bottom:235.110000px;}
.y100{bottom:236.370000px;}
.y15{bottom:237.285000px;}
.yad{bottom:240.330000px;}
.yb7{bottom:242.490000px;}
.y12c{bottom:244.110000px;}
.y7b{bottom:246.270000px;}
.yb8{bottom:247.710000px;}
.yb9{bottom:249.690000px;}
.y15d{bottom:250.230000px;}
.y1a7{bottom:250.950000px;}
.y17e{bottom:252.930000px;}
.y14{bottom:255.465000px;}
.ye6{bottom:261.210000px;}
.yff{bottom:267.330000px;}
.y14a{bottom:270.930000px;}
.yac{bottom:271.290000px;}
.y13{bottom:273.855000px;}
.y1a6{bottom:274.890000px;}
.y12b{bottom:275.250000px;}
.y59{bottom:275.970000px;}
.yb6{bottom:276.690000px;}
.y7a{bottom:277.230000px;}
.y15c{bottom:288.930000px;}
.y149{bottom:291.630000px;}
.ye5{bottom:291.990000px;}
.y58{bottom:296.670000px;}
.yfe{bottom:298.470000px;}
.yab{bottom:302.430000px;}
.y12a{bottom:306.210000px;}
.yb5{bottom:307.830000px;}
.y79{bottom:308.370000px;}
.y1a5{bottom:309.135000px;}
.y15b{bottom:309.630000px;}
.ye2{bottom:311.430000px;}
.ye3{bottom:314.130000px;}
.ye4{bottom:320.790000px;}
.y1a4{bottom:323.895000px;}
.y57{bottom:326.370000px;}
.yfd{bottom:329.430000px;}
.y148{bottom:330.330000px;}
.yaa{bottom:333.390000px;}
.ydf{bottom:335.370000px;}
.y129{bottom:337.350000px;}
.yb4{bottom:338.790000px;}
.y78{bottom:339.330000px;}
.ye0{bottom:339.690000px;}
.ye1{bottom:341.310000px;}
.y56{bottom:347.070000px;}
.y1a3{bottom:347.475000px;}
.y15a{bottom:348.330000px;}
.y147{bottom:351.030000px;}
.yde{bottom:356.970000px;}
.y2a{bottom:360.210000px;}
.yfc{bottom:360.570000px;}
.ya9{bottom:364.530000px;}
.y55{bottom:367.770000px;}
.y128{bottom:368.310000px;}
.y159{bottom:369.030000px;}
.yb3{bottom:370.110000px;}
.y77{bottom:370.470000px;}
.y1a2{bottom:371.055000px;}
.y146{bottom:371.730000px;}
.ydd{bottom:376.230000px;}
.y54{bottom:388.515000px;}
.y165{bottom:389.775000px;}
.yfb{bottom:391.575000px;}
.ya8{bottom:392.295000px;}
.y1a1{bottom:394.815000px;}
.ya7{bottom:395.355000px;}
.y127{bottom:399.495000px;}
.y76{bottom:401.475000px;}
.ydc{bottom:404.895000px;}
.y194{bottom:406.875000px;}
.y158{bottom:407.775000px;}
.y53{bottom:409.215000px;}
.y145{bottom:410.475000px;}
.ya6{bottom:414.615000px;}
.y1a0{bottom:418.395000px;}
.yfa{bottom:422.715000px;}
.y157{bottom:428.475000px;}
.y52{bottom:429.915000px;}
.y126{bottom:430.455000px;}
.y144{bottom:431.175000px;}
.y75{bottom:432.615000px;}
.y19f{bottom:432.975000px;}
.ya5{bottom:434.055000px;}
.ydb{bottom:436.035000px;}
.y193{bottom:437.835000px;}
.y17d{bottom:446.475000px;}
.y164{bottom:449.175000px;}
.y51{bottom:450.615000px;}
.ya4{bottom:453.315000px;}
.yf9{bottom:453.675000px;}
.y19e{bottom:456.735000px;}
.y192{bottom:457.815000px;}
.y125{bottom:461.595000px;}
.y74{bottom:463.575000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.yda{bottom:466.995000px;}
.y156{bottom:467.175000px;}
.y143{bottom:469.875000px;}
.y50{bottom:471.315000px;}
.ya3{bottom:472.755000px;}
.y19d{bottom:480.675000px;}
.yf8{bottom:484.815000px;}
.yc{bottom:486.615000px;}
.y155{bottom:487.875000px;}
.ya2{bottom:490.395000px;}
.y142{bottom:490.575000px;}
.y4f{bottom:492.015000px;}
.y124{bottom:492.555000px;}
.y191{bottom:493.815000px;}
.y73{bottom:494.715000px;}
.yd7{bottom:501.015000px;}
.y17c{bottom:505.875000px;}
.yd8{bottom:506.235000px;}
.yd9{bottom:508.215000px;}
.y154{bottom:508.575000px;}
.ya1{bottom:509.655000px;}
.y4e{bottom:512.715000px;}
.y19c{bottom:514.875000px;}
.yf7{bottom:515.775000px;}
.y123{bottom:523.695000px;}
.y72{bottom:525.675000px;}
.y17b{bottom:526.575000px;}
.ya0{bottom:527.475000px;}
.y141{bottom:529.275000px;}
.y190{bottom:533.775000px;}
.yd6{bottom:535.395000px;}
.y19b{bottom:539.205000px;}
.y4d{bottom:542.415000px;}
.y9f{bottom:543.495000px;}
.y9e{bottom:546.555000px;}
.yf6{bottom:546.915000px;}
.y153{bottom:547.275000px;}
.y25{bottom:552.420000px;}
.y122{bottom:554.655000px;}
.y71{bottom:556.815000px;}
.y18f{bottom:564.915000px;}
.y4c{bottom:565.275000px;}
.y9d{bottom:565.995000px;}
.yf5{bottom:566.175000px;}
.yd5{bottom:566.355000px;}
.y140{bottom:567.975000px;}
.y19a{bottom:575.205000px;}
.yf4{bottom:578.235000px;}
.y9c{bottom:583.815000px;}
.y121{bottom:585.795000px;}
.y17a{bottom:585.975000px;}
.y70{bottom:587.775000px;}
.y13f{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.yf3{bottom:595.335000px;}
.y18e{bottom:595.875000px;}
.y4b{bottom:597.315000px;}
.yd4{bottom:597.495000px;}
.y9b{bottom:601.275000px;}
.y23{bottom:605.340000px;}
.y152{bottom:606.675000px;}
.y16d{bottom:609.375000px;}
.y199{bottom:609.945000px;}
.yf1{bottom:612.615000px;}
.ya{bottom:616.395000px;}
.y120{bottom:616.755000px;}
.y4a{bottom:618.015000px;}
.y6f{bottom:618.915000px;}
.y184{bottom:619.635150px;}
.y179{bottom:624.675000px;}
.y18d{bottom:627.015000px;}
.y13e{bottom:627.375000px;}
.yd3{bottom:628.455000px;}
.y9a{bottom:629.715000px;}
.yef{bottom:630.615000px;}
.y33{bottom:643.785000px;}
.y178{bottom:645.405000px;}
.y198{bottom:646.305000px;}
.y49{bottom:647.745000px;}
.y11f{bottom:647.925000px;}
.y13d{bottom:648.105000px;}
.y6e{bottom:649.905000px;}
.y18c{bottom:658.005000px;}
.yd2{bottom:659.625000px;}
.y99{bottom:660.885000px;}
.y151{bottom:666.105000px;}
.y48{bottom:668.445000px;}
.y16c{bottom:668.805000px;}
.yee{bottom:670.605000px;}
.y11e{bottom:678.885000px;}
.y6d{bottom:681.045000px;}
.y197{bottom:682.305000px;}
.y177{bottom:684.105000px;}
.y13c{bottom:686.805000px;}
.y47{bottom:689.145000px;}
.yd1{bottom:690.585000px;}
.yed{bottom:691.305000px;}
.y98{bottom:692.205000px;}
.y176{bottom:704.805000px;}
.y13b{bottom:707.505000px;}
.y46{bottom:709.845000px;}
.y11d{bottom:710.025000px;}
.y6c{bottom:712.005000px;}
.y196{bottom:718.305000px;}
.y18b{bottom:720.105000px;}
.yd0{bottom:721.725000px;}
.y97{bottom:723.525000px;}
.y150{bottom:725.505000px;}
.y16b{bottom:728.205000px;}
.y45{bottom:730.545000px;}
.y11c{bottom:740.985000px;}
.y96{bottom:742.785000px;}
.y6b{bottom:743.145000px;}
.y13a{bottom:746.205000px;}
.y44{bottom:751.245000px;}
.ycf{bottom:753.045000px;}
.y93{bottom:754.845000px;}
.y11b{bottom:760.245000px;}
.y175{bottom:764.205000px;}
.y139{bottom:766.905000px;}
.y43{bottom:771.945000px;}
.y11a{bottom:772.305000px;}
.y92{bottom:773.025000px;}
.y6a{bottom:774.105000px;}
.y18a{bottom:782.205000px;}
.yce{bottom:784.365000px;}
.y174{bottom:784.905000px;}
.y16a{bottom:787.605000px;}
.y119{bottom:787.785000px;}
.y91{bottom:791.385000px;}
.y42{bottom:792.645000px;}
.y118{bottom:803.265000px;}
.y69{bottom:805.245000px;}
.y138{bottom:805.605000px;}
.y8e{bottom:809.565000px;}
.y41{bottom:813.345000px;}
.ycd{bottom:815.505000px;}
.y117{bottom:818.925000px;}
.y173{bottom:823.605000px;}
.y137{bottom:826.305000px;}
.y8a{bottom:827.745000px;}
.y40{bottom:834.045000px;}
.y115{bottom:835.125000px;}
.y68{bottom:836.205000px;}
.y8c{bottom:844.125000px;}
.y172{bottom:844.305000px;}
.ycc{bottom:846.465000px;}
.y169{bottom:847.005000px;}
.y116{bottom:851.325000px;}
.y87{bottom:860.325000px;}
.y3f{bottom:865.005000px;}
.y67{bottom:867.345000px;}
.y114{bottom:867.705000px;}
.y189{bottom:875.445000px;}
.y88{bottom:876.525000px;}
.ycb{bottom:877.605000px;}
.y113{bottom:883.185000px;}
.y136{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.y84{bottom:892.950000px;}
.y3e{bottom:898.350000px;}
.y112{bottom:898.710000px;}
.y171{bottom:903.750000px;}
.y168{bottom:906.450000px;}
.yca{bottom:908.610000px;}
.y81{bottom:909.150000px;}
.y1b6{bottom:912.210000px;}
.y111{bottom:914.370000px;}
.y135{bottom:924.450000px;}
.y3c{bottom:929.490000px;}
.y10e{bottom:930.570000px;}
.y3d{bottom:936.330000px;}
.y188{bottom:937.590000px;}
.yc9{bottom:939.750000px;}
.y134{bottom:945.150000px;}
.y110{bottom:946.770000px;}
.y3a{bottom:960.450000px;}
.y10d{bottom:963.150000px;}
.y167{bottom:965.850000px;}
.y3b{bottom:967.290000px;}
.y187{bottom:968.550000px;}
.yc8{bottom:970.710000px;}
.y10c{bottom:978.630000px;}
.y133{bottom:983.850000px;}
.y166{bottom:986.550000px;}
.y38{bottom:991.590000px;}
.y10b{bottom:994.110000px;}
.y39{bottom:998.430000px;}
.yc7{bottom:1001.850000px;}
.y132{bottom:1004.550000px;}
.y186{bottom:1007.250000px;}
.y10a{bottom:1009.770000px;}
.y37{bottom:1022.550000px;}
.y131{bottom:1025.250000px;}
.y107{bottom:1025.970000px;}
.yc6{bottom:1032.810000px;}
.y163{bottom:1043.250000px;}
.y109{bottom:1043.790000px;}
.y185{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.y36{bottom:1059.630000px;}
.yc5{bottom:1063.590000px;}
.y106{bottom:1063.950000px;}
.yc2{bottom:1083.030000px;}
.y34{bottom:1084.650000px;}
.yc3{bottom:1085.730000px;}
.y11{bottom:1087.350000px;}
.yc4{bottom:1092.390000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1e{height:15.480000px;}
.h33{height:15.516000px;}
.h1c{height:15.660000px;}
.h20{height:15.696000px;}
.h30{height:17.100000px;}
.h2f{height:17.280000px;}
.h23{height:17.460000px;}
.h5{height:24.156000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h1d{height:31.860000px;}
.h1f{height:31.896000px;}
.h1a{height:32.273438px;}
.h31{height:33.300000px;}
.h18{height:34.837383px;}
.h12{height:35.261367px;}
.h2d{height:35.316000px;}
.h2a{height:36.295313px;}
.h16{height:42.845977px;}
.h24{height:43.246406px;}
.h29{height:44.430469px;}
.h21{height:46.933594px;}
.h32{height:47.961914px;}
.h38{height:47.980898px;}
.h1b{height:48.410156px;}
.h25{height:51.939844px;}
.h17{height:51.996094px;}
.h2e{height:53.077852px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h2b{height:54.295313px;}
.h39{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h22{height:59.210156px;}
.h2{height:59.439023px;}
.h37{height:61.189805px;}
.h28{height:62.578125px;}
.h15{height:63.949219px;}
.h19{height:64.546875px;}
.h26{height:65.813906px;}
.h13{height:65.884219px;}
.h2c{height:66.605977px;}
.h27{height:70.606406px;}
.h36{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:174.600000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h3a{height:189.000000px;}
.hb{height:306.255000px;}
.h35{height:754.845000px;}
.h9{height:1188.900000px;}
.h34{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:25.920000px;}
.w19{width:31.320000px;}
.w1a{width:37.296000px;}
.w5{width:39.960000px;}
.w18{width:41.760000px;}
.w12{width:41.976000px;}
.w24{width:52.740000px;}
.w26{width:53.100000px;}
.w13{width:73.800000px;}
.w1e{width:75.960000px;}
.w14{width:79.776000px;}
.w11{width:84.240000px;}
.w20{width:84.600000px;}
.w6{width:88.560000px;}
.w1d{width:93.996000px;}
.w27{width:95.796000px;}
.w1f{width:106.056000px;}
.w17{width:110.916000px;}
.w28{width:117.036000px;}
.w15{width:120.600000px;}
.w16{width:121.536000px;}
.w1b{width:126.936000px;}
.w25{width:127.476000px;}
.w2a{width:154.830000px;}
.w22{width:180.570000px;}
.wf{width:198.210000px;}
.w2c{width:214.410000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.w21{width:319.215000px;}
.we{width:321.150000px;}
.wd{width:321.300000px;}
.wc{width:321.375000px;}
.w9{width:326.595000px;}
.w2b{width:326.775000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w1c{width:403.815000px;}
.w23{width:446.505000px;}
.w8{width:848.160000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x12{left:-2.055000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x6{left:8.676000px;}
.xc{left:10.800000px;}
.x2c{left:14.040000px;}
.x64{left:15.120000px;}
.x3b{left:16.734000px;}
.x2e{left:18.720000px;}
.x67{left:19.800000px;}
.x56{left:21.060000px;}
.xe{left:22.320000px;}
.x63{left:23.760000px;}
.x34{left:24.834000px;}
.x31{left:25.920000px;}
.x38{left:27.720000px;}
.x35{left:29.340000px;}
.x52{left:30.600000px;}
.xd{left:33.120000px;}
.x3c{left:35.460000px;}
.x66{left:36.540000px;}
.x18{left:37.800000px;}
.x5e{left:39.594000px;}
.x39{left:40.860000px;}
.x3e{left:42.840000px;}
.x60{left:44.814000px;}
.x3d{left:48.774000px;}
.x65{left:52.200000px;}
.x3a{left:55.440000px;}
.x36{left:56.520000px;}
.x62{left:58.860000px;}
.x5f{left:60.474000px;}
.x37{left:61.605000px;}
.x4{left:64.439987px;}
.x26{left:68.939987px;}
.x5{left:73.080000px;}
.x19{left:82.980000px;}
.x50{left:96.834000px;}
.x1c{left:101.195987px;}
.x1d{left:111.275987px;}
.x1a{left:113.580000px;}
.x27{left:117.575987px;}
.x4f{left:122.256000px;}
.x16{left:133.305000px;}
.x8{left:137.385000px;}
.x61{left:139.530000px;}
.x4e{left:140.975987px;}
.x29{left:143.496000px;}
.x5d{left:148.176000px;}
.x15{left:160.590000px;}
.x10{left:163.290000px;}
.x4d{left:173.729987px;}
.x57{left:178.409987px;}
.x1b{left:187.245000px;}
.x69{left:203.445000px;}
.x55{left:206.850000px;}
.x48{left:215.669987px;}
.x42{left:221.249987px;}
.x4b{left:223.409987px;}
.x2a{left:228.450000px;}
.x3f{left:234.569987px;}
.x44{left:237.089987px;}
.x40{left:240.689987px;}
.x41{left:245.594987px;}
.x45{left:248.114987px;}
.x4c{left:261.794987px;}
.x2b{left:271.155000px;}
.x25{left:280.514987px;}
.x46{left:293.294987px;}
.x28{left:302.474987px;}
.x47{left:307.694987px;}
.x33{left:313.635000px;}
.x49{left:342.794987px;}
.x2d{left:345.675000px;}
.x4a{left:356.114987px;}
.x43{left:358.094987px;}
.x3{left:388.694987px;}
.x14{left:406.155000px;}
.xf{left:408.135000px;}
.x17{left:411.945000px;}
.x13{left:419.940000px;}
.x2f{left:426.165000px;}
.x59{left:430.305000px;}
.x11{left:439.740000px;}
.x20{left:442.004987px;}
.x68{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x5a{left:483.405000px;}
.x51{left:526.065000px;}
.x30{left:547.485000px;}
.x5b{left:579.210000px;}
.x24{left:590.189987px;}
.x21{left:600.089987px;}
.x53{left:620.070000px;}
.x5c{left:632.310000px;}
.x32{left:669.750000px;}
.x54{left:696.030000px;}
.x58{left:749.340000px;}
.x1e{left:766.619973px;}
.x1f{left:772.739987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x22{left:813.599973px;}
.x23{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v8{vertical-align:-33.920000pt;}
.va{vertical-align:-27.520000pt;}
.v9{vertical-align:-25.600000pt;}
.vb{vertical-align:-21.120000pt;}
.v6{vertical-align:-12.800000pt;}
.v3{vertical-align:-10.880000pt;}
.v1{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.600000pt;}
.v4{vertical-align:10.880000pt;}
.v7{vertical-align:12.800000pt;}
.vd{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.vc{vertical-align:26.880000pt;}
.ls2f{letter-spacing:-4.736000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.613333pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.229333pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.178133pt;}
.ls1{letter-spacing:-0.161067pt;}
.ls31{letter-spacing:-0.156267pt;}
.ls15{letter-spacing:-0.129067pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls32{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.029440pt;}
.ls24{letter-spacing:0.047360pt;}
.ls23{letter-spacing:0.090240pt;}
.ls17{letter-spacing:0.120533pt;}
.ls18{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.161067pt;}
.ls5{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.230933pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.267520pt;}
.ls19{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.355200pt;}
.ls13{letter-spacing:0.375040pt;}
.ls6{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.024000pt;}
.ls2e{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.408000pt;}
.lse{letter-spacing:1.720960pt;}
.ls22{letter-spacing:2.857600pt;}
.ls9{letter-spacing:3.229440pt;}
.ls21{letter-spacing:3.230720pt;}
.lsa{letter-spacing:3.631360pt;}
.ls12{letter-spacing:3.710720pt;}
.ls10{letter-spacing:3.770880pt;}
.ls11{letter-spacing:3.870720pt;}
.lsb{letter-spacing:4.271360pt;}
.ls1c{letter-spacing:5.238400pt;}
.ls1a{letter-spacing:6.080000pt;}
.ls2b{letter-spacing:11.520000pt;}
.ls2d{letter-spacing:26.240000pt;}
.ws28{word-spacing:-64.000000pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.ws7{word-spacing:-16.640000pt;}
.ws25{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws26{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2a{word-spacing:-15.936000pt;}
.ws24{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws27{word-spacing:-15.360000pt;}
.ws12{word-spacing:-14.080000pt;}
.ws22{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.510933pt;}
.ws21{word-spacing:-13.327360pt;}
.ws19{word-spacing:-13.280000pt;}
.ws23{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.041600pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.759573pt;}
.wse{word-spacing:-11.686400pt;}
.ws29{word-spacing:-11.264000pt;}
.ws2b{word-spacing:-10.832000pt;}
.wsb{word-spacing:-10.560000pt;}
.ws1e{word-spacing:-10.021760pt;}
.ws13{word-spacing:-9.996800pt;}
.ws16{word-spacing:-9.383467pt;}
.ws11{word-spacing:-8.037333pt;}
.ws18{word-spacing:-7.988267pt;}
.ws10{word-spacing:-7.937067pt;}
.wsc{word-spacing:-7.632640pt;}
.wsd{word-spacing:-7.603200pt;}
.ws1f{word-spacing:-2.386560pt;}
.ws17{word-spacing:-1.746560pt;}
.ws1b{word-spacing:-0.858880pt;}
.ws1c{word-spacing:-0.218880pt;}
.ws4{word-spacing:0.000000pt;}
.ws20{word-spacing:0.192000pt;}
.ws1d{word-spacing:2.561920pt;}
.ws15{word-spacing:4.032000pt;}
.ws14{word-spacing:11.521920pt;}
._23{margin-left:-22.115200pt;}
._21{margin-left:-9.632000pt;}
._20{margin-left:-7.840000pt;}
._22{margin-left:-5.538560pt;}
._19{margin-left:-4.468053pt;}
._f{margin-left:-3.456000pt;}
._e{margin-left:-1.995520pt;}
._8{margin-left:-0.977493pt;}
._0{width:1.041067pt;}
._5{width:2.199253pt;}
._10{width:3.119360pt;}
._11{width:4.176640pt;}
._12{width:5.290240pt;}
._2{width:6.395733pt;}
._3{width:7.287893pt;}
._4{width:8.393387pt;}
._13{width:9.592747pt;}
._b{width:10.485973pt;}
._17{width:11.917227pt;}
._18{width:12.928000pt;}
._a{width:14.023680pt;}
._9{width:15.139200pt;}
._24{width:16.145067pt;}
._6{width:17.550933pt;}
._1f{width:18.801067pt;}
._1b{width:20.160000pt;}
._1c{width:21.166933pt;}
._1d{width:22.306133pt;}
._15{width:23.552000pt;}
._16{width:24.814933pt;}
._1e{width:26.048000pt;}
._1{width:27.038080pt;}
._7{width:27.930667pt;}
._1a{width:29.184000pt;}
._25{width:30.161493pt;}
._14{width:36.128000pt;}
._c{width:38.936960pt;}
._d{width:39.861333pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y1b5{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y1b4{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y1b3{bottom:-29.120000pt;}
.y1b2{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y95{bottom:1.760000pt;}
.y86{bottom:2.560000pt;}
.y83{bottom:2.720000pt;}
.yf2{bottom:2.880000pt;}
.y9{bottom:3.360000pt;}
.y8f{bottom:3.520000pt;}
.y90{bottom:4.160000pt;}
.y183{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y82{bottom:6.880000pt;}
.y94{bottom:7.840000pt;}
.y8d{bottom:8.160000pt;}
.y8{bottom:8.480000pt;}
.y85{bottom:9.760000pt;}
.y8b{bottom:9.920000pt;}
.y2e{bottom:10.560000pt;}
.yf0{bottom:10.906667pt;}
.y89{bottom:14.080000pt;}
.y1b1{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y10f{bottom:16.800000pt;}
.y108{bottom:17.440000pt;}
.y29{bottom:20.226667pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y1b0{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y1af{bottom:57.946667pt;}
.y1c{bottom:65.000000pt;}
.y66{bottom:65.440000pt;}
.yec{bottom:65.920000pt;}
.ybf{bottom:68.160000pt;}
.y1ae{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.yc0{bottom:72.000000pt;}
.y105{bottom:72.160000pt;}
.yc1{bottom:73.440000pt;}
.yb2{bottom:75.520000pt;}
.y65{bottom:79.360000pt;}
.y80{bottom:80.960000pt;}
.y170{bottom:82.400000pt;}
.y64{bottom:83.360000pt;}
.y182{bottom:87.200000pt;}
.ybe{bottom:87.360000pt;}
.y1ad{bottom:92.026667pt;}
.yeb{bottom:93.760000pt;}
.y195{bottom:95.200000pt;}
.y1b{bottom:97.160000pt;}
.y162{bottom:98.400000pt;}
.y104{bottom:99.680000pt;}
.y14f{bottom:100.800000pt;}
.y63{bottom:101.120000pt;}
.yb1{bottom:103.200000pt;}
.ybd{bottom:104.640000pt;}
.y130{bottom:106.560000pt;}
.y7f{bottom:108.480000pt;}
.y1ac{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.y62{bottom:115.040000pt;}
.y161{bottom:116.800000pt;}
.y61{bottom:119.040000pt;}
.y14e{bottom:119.200000pt;}
.y181{bottom:121.632000pt;}
.yea{bottom:121.792000pt;}
.y103{bottom:127.392000pt;}
.y19{bottom:129.800000pt;}
.ybc{bottom:130.112000pt;}
.yb0{bottom:130.752000pt;}
.y1ab{bottom:133.946667pt;}
.y12f{bottom:134.266667pt;}
.y16f{bottom:135.226667pt;}
.y7e{bottom:136.186667pt;}
.y60{bottom:136.666667pt;}
.yd{bottom:138.746667pt;}
.y18{bottom:145.960000pt;}
.ye9{bottom:149.306667pt;}
.y5f{bottom:150.586667pt;}
.y160{bottom:151.226667pt;}
.y14d{bottom:153.626667pt;}
.y5e{bottom:154.586667pt;}
.y102{bottom:154.906667pt;}
.y1aa{bottom:155.066667pt;}
.y180{bottom:156.026667pt;}
.ybb{bottom:157.626667pt;}
.yaf{bottom:158.426667pt;}
.y12e{bottom:161.786667pt;}
.y17{bottom:162.280000pt;}
.y7d{bottom:163.706667pt;}
.y1a9{bottom:168.026667pt;}
.y15f{bottom:169.626667pt;}
.y14c{bottom:172.026667pt;}
.y5d{bottom:172.346667pt;}
.ye8{bottom:176.986667pt;}
.y101{bottom:182.426667pt;}
.yba{bottom:185.306667pt;}
.yae{bottom:185.946667pt;}
.y5c{bottom:186.266667pt;}
.y16e{bottom:188.026667pt;}
.y1a8{bottom:189.146667pt;}
.y12d{bottom:189.466667pt;}
.y5b{bottom:190.266667pt;}
.y17f{bottom:190.426667pt;}
.y7c{bottom:191.386667pt;}
.y16{bottom:194.600000pt;}
.y15e{bottom:204.026667pt;}
.ye7{bottom:204.506667pt;}
.y14b{bottom:206.426667pt;}
.y5a{bottom:208.986667pt;}
.y100{bottom:210.106667pt;}
.y15{bottom:210.920000pt;}
.yad{bottom:213.626667pt;}
.yb7{bottom:215.546667pt;}
.y12c{bottom:216.986667pt;}
.y7b{bottom:218.906667pt;}
.yb8{bottom:220.186667pt;}
.yb9{bottom:221.946667pt;}
.y15d{bottom:222.426667pt;}
.y1a7{bottom:223.066667pt;}
.y17e{bottom:224.826667pt;}
.y14{bottom:227.080000pt;}
.ye6{bottom:232.186667pt;}
.yff{bottom:237.626667pt;}
.y14a{bottom:240.826667pt;}
.yac{bottom:241.146667pt;}
.y13{bottom:243.426667pt;}
.y1a6{bottom:244.346667pt;}
.y12b{bottom:244.666667pt;}
.y59{bottom:245.306667pt;}
.yb6{bottom:245.946667pt;}
.y7a{bottom:246.426667pt;}
.y15c{bottom:256.826667pt;}
.y149{bottom:259.226667pt;}
.ye5{bottom:259.546667pt;}
.y58{bottom:263.706667pt;}
.yfe{bottom:265.306667pt;}
.yab{bottom:268.826667pt;}
.y12a{bottom:272.186667pt;}
.yb5{bottom:273.626667pt;}
.y79{bottom:274.106667pt;}
.y1a5{bottom:274.786667pt;}
.y15b{bottom:275.226667pt;}
.ye2{bottom:276.826667pt;}
.ye3{bottom:279.226667pt;}
.ye4{bottom:285.146667pt;}
.y1a4{bottom:287.906667pt;}
.y57{bottom:290.106667pt;}
.yfd{bottom:292.826667pt;}
.y148{bottom:293.626667pt;}
.yaa{bottom:296.346667pt;}
.ydf{bottom:298.106667pt;}
.y129{bottom:299.866667pt;}
.yb4{bottom:301.146667pt;}
.y78{bottom:301.626667pt;}
.ye0{bottom:301.946667pt;}
.ye1{bottom:303.386667pt;}
.y56{bottom:308.506667pt;}
.y1a3{bottom:308.866667pt;}
.y15a{bottom:309.626667pt;}
.y147{bottom:312.026667pt;}
.yde{bottom:317.306667pt;}
.y2a{bottom:320.186667pt;}
.yfc{bottom:320.506667pt;}
.ya9{bottom:324.026667pt;}
.y55{bottom:326.906667pt;}
.y128{bottom:327.386667pt;}
.y159{bottom:328.026667pt;}
.yb3{bottom:328.986667pt;}
.y77{bottom:329.306667pt;}
.y1a2{bottom:329.826667pt;}
.y146{bottom:330.426667pt;}
.ydd{bottom:334.426667pt;}
.y54{bottom:345.346667pt;}
.y165{bottom:346.466667pt;}
.yfb{bottom:348.066667pt;}
.ya8{bottom:348.706667pt;}
.y1a1{bottom:350.946667pt;}
.ya7{bottom:351.426667pt;}
.y127{bottom:355.106667pt;}
.y76{bottom:356.866667pt;}
.ydc{bottom:359.906667pt;}
.y194{bottom:361.666667pt;}
.y158{bottom:362.466667pt;}
.y53{bottom:363.746667pt;}
.y145{bottom:364.866667pt;}
.ya6{bottom:368.546667pt;}
.y1a0{bottom:371.906667pt;}
.yfa{bottom:375.746667pt;}
.y157{bottom:380.866667pt;}
.y52{bottom:382.146667pt;}
.y126{bottom:382.626667pt;}
.y144{bottom:383.266667pt;}
.y75{bottom:384.546667pt;}
.y19f{bottom:384.866667pt;}
.ya5{bottom:385.826667pt;}
.ydb{bottom:387.586667pt;}
.y193{bottom:389.186667pt;}
.y17d{bottom:396.866667pt;}
.y164{bottom:399.266667pt;}
.y51{bottom:400.546667pt;}
.ya4{bottom:402.946667pt;}
.yf9{bottom:403.266667pt;}
.y19e{bottom:405.986667pt;}
.y192{bottom:406.946667pt;}
.y125{bottom:410.306667pt;}
.y74{bottom:412.066667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.yda{bottom:415.106667pt;}
.y156{bottom:415.266667pt;}
.y143{bottom:417.666667pt;}
.y50{bottom:418.946667pt;}
.ya3{bottom:420.226667pt;}
.y19d{bottom:427.266667pt;}
.yf8{bottom:430.946667pt;}
.yc{bottom:432.546667pt;}
.y155{bottom:433.666667pt;}
.ya2{bottom:435.906667pt;}
.y142{bottom:436.066667pt;}
.y4f{bottom:437.346667pt;}
.y124{bottom:437.826667pt;}
.y191{bottom:438.946667pt;}
.y73{bottom:439.746667pt;}
.yd7{bottom:445.346667pt;}
.y17c{bottom:449.666667pt;}
.yd8{bottom:449.986667pt;}
.yd9{bottom:451.746667pt;}
.y154{bottom:452.066667pt;}
.ya1{bottom:453.026667pt;}
.y4e{bottom:455.746667pt;}
.y19c{bottom:457.666667pt;}
.yf7{bottom:458.466667pt;}
.y123{bottom:465.506667pt;}
.y72{bottom:467.266667pt;}
.y17b{bottom:468.066667pt;}
.ya0{bottom:468.866667pt;}
.y141{bottom:470.466667pt;}
.y190{bottom:474.466667pt;}
.yd6{bottom:475.906667pt;}
.y19b{bottom:479.293333pt;}
.y4d{bottom:482.146667pt;}
.y9f{bottom:483.106667pt;}
.y9e{bottom:485.826667pt;}
.yf6{bottom:486.146667pt;}
.y153{bottom:486.466667pt;}
.y25{bottom:491.040000pt;}
.y122{bottom:493.026667pt;}
.y71{bottom:494.946667pt;}
.y18f{bottom:502.146667pt;}
.y4c{bottom:502.466667pt;}
.y9d{bottom:503.106667pt;}
.yf5{bottom:503.266667pt;}
.yd5{bottom:503.426667pt;}
.y140{bottom:504.866667pt;}
.y19a{bottom:511.293333pt;}
.yf4{bottom:513.986667pt;}
.y9c{bottom:518.946667pt;}
.y121{bottom:520.706667pt;}
.y17a{bottom:520.866667pt;}
.y70{bottom:522.466667pt;}
.y13f{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.yf3{bottom:529.186667pt;}
.y18e{bottom:529.666667pt;}
.y4b{bottom:530.946667pt;}
.yd4{bottom:531.106667pt;}
.y9b{bottom:534.466667pt;}
.y23{bottom:538.080000pt;}
.y152{bottom:539.266667pt;}
.y16d{bottom:541.666667pt;}
.y199{bottom:542.173333pt;}
.yf1{bottom:544.546667pt;}
.ya{bottom:547.906667pt;}
.y120{bottom:548.226667pt;}
.y4a{bottom:549.346667pt;}
.y6f{bottom:550.146667pt;}
.y184{bottom:550.786800pt;}
.y179{bottom:555.266667pt;}
.y18d{bottom:557.346667pt;}
.y13e{bottom:557.666667pt;}
.yd3{bottom:558.626667pt;}
.y9a{bottom:559.746667pt;}
.yef{bottom:560.546667pt;}
.y33{bottom:572.253333pt;}
.y178{bottom:573.693333pt;}
.y198{bottom:574.493333pt;}
.y49{bottom:575.773333pt;}
.y11f{bottom:575.933333pt;}
.y13d{bottom:576.093333pt;}
.y6e{bottom:577.693333pt;}
.y18c{bottom:584.893333pt;}
.yd2{bottom:586.333333pt;}
.y99{bottom:587.453333pt;}
.y151{bottom:592.093333pt;}
.y48{bottom:594.173333pt;}
.y16c{bottom:594.493333pt;}
.yee{bottom:596.093333pt;}
.y11e{bottom:603.453333pt;}
.y6d{bottom:605.373333pt;}
.y197{bottom:606.493333pt;}
.y177{bottom:608.093333pt;}
.y13c{bottom:610.493333pt;}
.y47{bottom:612.573333pt;}
.yd1{bottom:613.853333pt;}
.yed{bottom:614.493333pt;}
.y98{bottom:615.293333pt;}
.y176{bottom:626.493333pt;}
.y13b{bottom:628.893333pt;}
.y46{bottom:630.973333pt;}
.y11d{bottom:631.133333pt;}
.y6c{bottom:632.893333pt;}
.y196{bottom:638.493333pt;}
.y18b{bottom:640.093333pt;}
.yd0{bottom:641.533333pt;}
.y97{bottom:643.133333pt;}
.y150{bottom:644.893333pt;}
.y16b{bottom:647.293333pt;}
.y45{bottom:649.373333pt;}
.y11c{bottom:658.653333pt;}
.y96{bottom:660.253333pt;}
.y6b{bottom:660.573333pt;}
.y13a{bottom:663.293333pt;}
.y44{bottom:667.773333pt;}
.ycf{bottom:669.373333pt;}
.y93{bottom:670.973333pt;}
.y11b{bottom:675.773333pt;}
.y175{bottom:679.293333pt;}
.y139{bottom:681.693333pt;}
.y43{bottom:686.173333pt;}
.y11a{bottom:686.493333pt;}
.y92{bottom:687.133333pt;}
.y6a{bottom:688.093333pt;}
.y18a{bottom:695.293333pt;}
.yce{bottom:697.213333pt;}
.y174{bottom:697.693333pt;}
.y16a{bottom:700.093333pt;}
.y119{bottom:700.253333pt;}
.y91{bottom:703.453333pt;}
.y42{bottom:704.573333pt;}
.y118{bottom:714.013333pt;}
.y69{bottom:715.773333pt;}
.y138{bottom:716.093333pt;}
.y8e{bottom:719.613333pt;}
.y41{bottom:722.973333pt;}
.ycd{bottom:724.893333pt;}
.y117{bottom:727.933333pt;}
.y173{bottom:732.093333pt;}
.y137{bottom:734.493333pt;}
.y8a{bottom:735.773333pt;}
.y40{bottom:741.373333pt;}
.y115{bottom:742.333333pt;}
.y68{bottom:743.293333pt;}
.y8c{bottom:750.333333pt;}
.y172{bottom:750.493333pt;}
.ycc{bottom:752.413333pt;}
.y169{bottom:752.893333pt;}
.y116{bottom:756.733333pt;}
.y87{bottom:764.733333pt;}
.y3f{bottom:768.893333pt;}
.y67{bottom:770.973333pt;}
.y114{bottom:771.293333pt;}
.y189{bottom:778.173333pt;}
.y88{bottom:779.133333pt;}
.ycb{bottom:780.093333pt;}
.y113{bottom:785.053333pt;}
.y136{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.y84{bottom:793.733333pt;}
.y3e{bottom:798.533333pt;}
.y112{bottom:798.853333pt;}
.y171{bottom:803.333333pt;}
.y168{bottom:805.733333pt;}
.yca{bottom:807.653333pt;}
.y81{bottom:808.133333pt;}
.y1b6{bottom:810.853333pt;}
.y111{bottom:812.773333pt;}
.y135{bottom:821.733333pt;}
.y3c{bottom:826.213333pt;}
.y10e{bottom:827.173333pt;}
.y3d{bottom:832.293333pt;}
.y188{bottom:833.413333pt;}
.yc9{bottom:835.333333pt;}
.y134{bottom:840.133333pt;}
.y110{bottom:841.573333pt;}
.y3a{bottom:853.733333pt;}
.y10d{bottom:856.133333pt;}
.y167{bottom:858.533333pt;}
.y3b{bottom:859.813333pt;}
.y187{bottom:860.933333pt;}
.yc8{bottom:862.853333pt;}
.y10c{bottom:869.893333pt;}
.y133{bottom:874.533333pt;}
.y166{bottom:876.933333pt;}
.y38{bottom:881.413333pt;}
.y10b{bottom:883.653333pt;}
.y39{bottom:887.493333pt;}
.yc7{bottom:890.533333pt;}
.y132{bottom:892.933333pt;}
.y186{bottom:895.333333pt;}
.y10a{bottom:897.573333pt;}
.y37{bottom:908.933333pt;}
.y131{bottom:911.333333pt;}
.y107{bottom:911.973333pt;}
.yc6{bottom:918.053333pt;}
.y163{bottom:927.333333pt;}
.y109{bottom:927.813333pt;}
.y185{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.y36{bottom:941.893333pt;}
.yc5{bottom:945.413333pt;}
.y106{bottom:945.733333pt;}
.yc2{bottom:962.693333pt;}
.y34{bottom:964.133333pt;}
.yc3{bottom:965.093333pt;}
.y11{bottom:966.533333pt;}
.yc4{bottom:971.013333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1e{height:13.760000pt;}
.h33{height:13.792000pt;}
.h1c{height:13.920000pt;}
.h20{height:13.952000pt;}
.h30{height:15.200000pt;}
.h2f{height:15.360000pt;}
.h23{height:15.520000pt;}
.h5{height:21.472000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h1d{height:28.320000pt;}
.h1f{height:28.352000pt;}
.h1a{height:28.687500pt;}
.h31{height:29.600000pt;}
.h18{height:30.966562pt;}
.h12{height:31.343437pt;}
.h2d{height:31.392000pt;}
.h2a{height:32.262500pt;}
.h16{height:38.085312pt;}
.h24{height:38.441250pt;}
.h29{height:39.493750pt;}
.h21{height:41.718750pt;}
.h32{height:42.632812pt;}
.h38{height:42.649687pt;}
.h1b{height:43.031250pt;}
.h25{height:46.168750pt;}
.h17{height:46.218750pt;}
.h2e{height:47.180312pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h2b{height:48.262500pt;}
.h39{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h22{height:52.631250pt;}
.h2{height:52.834688pt;}
.h37{height:54.390938pt;}
.h28{height:55.625000pt;}
.h15{height:56.843750pt;}
.h19{height:57.375000pt;}
.h26{height:58.501250pt;}
.h13{height:58.563750pt;}
.h2c{height:59.205312pt;}
.h27{height:62.761250pt;}
.h36{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:155.200000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h3a{height:168.000000pt;}
.hb{height:272.226667pt;}
.h35{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h34{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:23.040000pt;}
.w19{width:27.840000pt;}
.w1a{width:33.152000pt;}
.w5{width:35.520000pt;}
.w18{width:37.120000pt;}
.w12{width:37.312000pt;}
.w24{width:46.880000pt;}
.w26{width:47.200000pt;}
.w13{width:65.600000pt;}
.w1e{width:67.520000pt;}
.w14{width:70.912000pt;}
.w11{width:74.880000pt;}
.w20{width:75.200000pt;}
.w6{width:78.720000pt;}
.w1d{width:83.552000pt;}
.w27{width:85.152000pt;}
.w1f{width:94.272000pt;}
.w17{width:98.592000pt;}
.w28{width:104.032000pt;}
.w15{width:107.200000pt;}
.w16{width:108.032000pt;}
.w1b{width:112.832000pt;}
.w25{width:113.312000pt;}
.w2a{width:137.626667pt;}
.w22{width:160.506667pt;}
.wf{width:176.186667pt;}
.w2c{width:190.586667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.w21{width:283.746667pt;}
.we{width:285.466667pt;}
.wd{width:285.600000pt;}
.wc{width:285.666667pt;}
.w9{width:290.306667pt;}
.w2b{width:290.466667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w1c{width:358.946667pt;}
.w23{width:396.893333pt;}
.w8{width:753.920000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x12{left:-1.826667pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x6{left:7.712000pt;}
.xc{left:9.600000pt;}
.x2c{left:12.480000pt;}
.x64{left:13.440000pt;}
.x3b{left:14.874667pt;}
.x2e{left:16.640000pt;}
.x67{left:17.600000pt;}
.x56{left:18.720000pt;}
.xe{left:19.840000pt;}
.x63{left:21.120000pt;}
.x34{left:22.074667pt;}
.x31{left:23.040000pt;}
.x38{left:24.640000pt;}
.x35{left:26.080000pt;}
.x52{left:27.200000pt;}
.xd{left:29.440000pt;}
.x3c{left:31.520000pt;}
.x66{left:32.480000pt;}
.x18{left:33.600000pt;}
.x5e{left:35.194667pt;}
.x39{left:36.320000pt;}
.x3e{left:38.080000pt;}
.x60{left:39.834667pt;}
.x3d{left:43.354667pt;}
.x65{left:46.400000pt;}
.x3a{left:49.280000pt;}
.x36{left:50.240000pt;}
.x62{left:52.320000pt;}
.x5f{left:53.754667pt;}
.x37{left:54.760000pt;}
.x4{left:57.279988pt;}
.x26{left:61.279988pt;}
.x5{left:64.960000pt;}
.x19{left:73.760000pt;}
.x50{left:86.074667pt;}
.x1c{left:89.951988pt;}
.x1d{left:98.911988pt;}
.x1a{left:100.960000pt;}
.x27{left:104.511988pt;}
.x4f{left:108.672000pt;}
.x16{left:118.493333pt;}
.x8{left:122.120000pt;}
.x61{left:124.026667pt;}
.x4e{left:125.311988pt;}
.x29{left:127.552000pt;}
.x5d{left:131.712000pt;}
.x15{left:142.746667pt;}
.x10{left:145.146667pt;}
.x4d{left:154.426655pt;}
.x57{left:158.586655pt;}
.x1b{left:166.440000pt;}
.x69{left:180.840000pt;}
.x55{left:183.866667pt;}
.x48{left:191.706655pt;}
.x42{left:196.666655pt;}
.x4b{left:198.586655pt;}
.x2a{left:203.066667pt;}
.x3f{left:208.506655pt;}
.x44{left:210.746655pt;}
.x40{left:213.946655pt;}
.x41{left:218.306655pt;}
.x45{left:220.546655pt;}
.x4c{left:232.706655pt;}
.x2b{left:241.026667pt;}
.x25{left:249.346655pt;}
.x46{left:260.706655pt;}
.x28{left:268.866655pt;}
.x47{left:273.506655pt;}
.x33{left:278.786667pt;}
.x49{left:304.706655pt;}
.x2d{left:307.266667pt;}
.x4a{left:316.546655pt;}
.x43{left:318.306655pt;}
.x3{left:345.506655pt;}
.x14{left:361.026667pt;}
.xf{left:362.786667pt;}
.x17{left:366.173333pt;}
.x13{left:373.280000pt;}
.x2f{left:378.813333pt;}
.x59{left:382.493333pt;}
.x11{left:390.880000pt;}
.x20{left:392.893322pt;}
.x68{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x5a{left:429.693333pt;}
.x51{left:467.613333pt;}
.x30{left:486.653333pt;}
.x5b{left:514.853333pt;}
.x24{left:524.613322pt;}
.x21{left:533.413322pt;}
.x53{left:551.173333pt;}
.x5c{left:562.053333pt;}
.x32{left:595.333333pt;}
.x54{left:618.693333pt;}
.x58{left:666.080000pt;}
.x1e{left:681.439976pt;}
.x1f{left:686.879988pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x22{left:723.199976pt;}
.x23{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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