
    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_71d469611a7c961426cf98cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133789;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_95c2fb2729fe71f2eca2b76b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133789;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_e181297de6b1edb2d2396516.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_4982a56da50413222f3d10cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_72a3041de35d9f7e8e9357e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_ff388ab740f45df758771135.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c93baf29a496748b9ddb1618.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_cb4c2631f7ac6660aa1d77b6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f7bf4771ae5eafe0db1ed1ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.080566;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_1ea5cd5bc9ab4cad03d281d3.woff2')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_e676fd8b19d5cbd5b485312c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_9bf9ed16d0c99fd07fdd6fad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_4aadeae975452869f9da1ae3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.fff{font-family:fff;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.810000px;}
.ls3a{letter-spacing:-0.738000px;}
.ls3c{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.303600px;}
.ls3d{letter-spacing:-0.269400px;}
.ls33{letter-spacing:-0.206400px;}
.ls3b{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.051840px;}
.ls2e{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.018000px;}
.ls37{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.053280px;}
.ls38{letter-spacing:0.097800px;}
.ls11{letter-spacing:0.131040px;}
.ls26{letter-spacing:0.154800px;}
.lsa{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.276480px;}
.ls2{letter-spacing:0.298800px;}
.ls29{letter-spacing:0.331800px;}
.ls5{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.428400px;}
.ls13{letter-spacing:0.439920px;}
.ls39{letter-spacing:0.468000px;}
.ls6{letter-spacing:0.493920px;}
.ls27{letter-spacing:0.828000px;}
.ls1e{letter-spacing:0.900000px;}
.ls28{letter-spacing:1.080000px;}
.ls7{letter-spacing:3.240000px;}
.ls21{letter-spacing:3.780000px;}
.ls35{letter-spacing:6.660000px;}
.ls9{letter-spacing:7.380000px;}
.ls8{letter-spacing:9.000000px;}
.ls2c{letter-spacing:9.540000px;}
.ls1b{letter-spacing:11.700000px;}
.ls22{letter-spacing:12.420000px;}
.ls32{letter-spacing:13.860000px;}
.ls4{letter-spacing:14.580000px;}
.ls34{letter-spacing:15.066720px;}
.ls15{letter-spacing:16.740000px;}
.ls17{letter-spacing:17.460000px;}
.lsb{letter-spacing:19.620000px;}
.ls18{letter-spacing:20.340000px;}
.ls1a{letter-spacing:23.940000px;}
.ls2b{letter-spacing:24.840000px;}
.ls1f{letter-spacing:25.380000px;}
.ls30{letter-spacing:31.320000px;}
.ls1d{letter-spacing:31.860000px;}
.ls23{letter-spacing:34.020000px;}
.ls24{letter-spacing:35.640000px;}
.ls25{letter-spacing:39.060000px;}
.ls20{letter-spacing:41.940000px;}
.ls31{letter-spacing:44.562720px;}
.ls19{letter-spacing:46.980000px;}
.ls3{letter-spacing:191.676000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.000000px;}
.ws10{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.271800px;}
.ws3{word-spacing:-15.120000px;}
.wse{word-spacing:-15.094800px;}
.ws2{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws16{word-spacing:-13.968000px;}
.ws15{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.482000px;}
.ws19{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.140000px;}
.ws17{word-spacing:-12.762000px;}
.ws13{word-spacing:-12.672000px;}
.wsd{word-spacing:-12.060000px;}
.ws1a{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.625840px;}
.ws7{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.064160px;}
.wsb{word-spacing:-9.760560px;}
.ws0{word-spacing:-8.676000px;}
.ws9{word-spacing:0.000000px;}
._2a{margin-left:-3.540960px;}
._f{margin-left:-2.289600px;}
._0{margin-left:-1.152000px;}
._1{width:1.200000px;}
._2{width:3.057600px;}
._e{width:4.622880px;}
._a{width:6.103200px;}
._b{width:7.133280px;}
._4{width:8.136960px;}
._5{width:9.199680px;}
._29{width:10.218960px;}
._25{width:11.254800px;}
._1c{width:12.310800px;}
._c{width:13.321440px;}
._13{width:14.460000px;}
._9{width:15.462240px;}
._16{width:17.226720px;}
._12{width:18.390240px;}
._11{width:19.543680px;}
._7{width:21.392160px;}
._8{width:22.904160px;}
._3{width:23.928480px;}
._d{width:25.442880px;}
._1d{width:26.652960px;}
._1f{width:28.597200px;}
._6{width:29.774880px;}
._28{width:31.493520px;}
._2b{width:32.635920px;}
._30{width:34.325280px;}
._27{width:35.414640px;}
._17{width:36.672480px;}
._15{width:38.022720px;}
._14{width:39.498720px;}
._2e{width:40.839360px;}
._26{width:42.126000px;}
._22{width:43.744320px;}
._36{width:45.059040px;}
._10{width:46.267200px;}
._33{width:47.449440px;}
._23{width:48.840480px;}
._21{width:49.954560px;}
._2d{width:51.926640px;}
._2c{width:53.186400px;}
._1e{width:54.620640px;}
._1b{width:56.772000px;}
._1a{width:57.902640px;}
._31{width:59.102640px;}
._34{width:60.173520px;}
._20{width:61.254000px;}
._19{width:62.389440px;}
._24{width:63.644400px;}
._39{width:65.253120px;}
._3a{width:66.687360px;}
._32{width:71.293680px;}
._38{width:75.412320px;}
._37{width:77.209920px;}
._18{width:78.285600px;}
._35{width:80.735760px;}
._2f{width:82.105440px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsb{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fs0{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fs7{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y193{bottom:0.180000px;}
.y4{bottom:1.980000px;}
.yea{bottom:2.445000px;}
.y120{bottom:2.880000px;}
.y12b{bottom:3.060000px;}
.y70{bottom:3.960000px;}
.y73{bottom:4.320000px;}
.y72{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y2{bottom:7.200000px;}
.yf3{bottom:8.205000px;}
.y123{bottom:10.620000px;}
.y133{bottom:10.800000px;}
.y12c{bottom:10.830000px;}
.y194{bottom:12.060000px;}
.y3{bottom:12.240000px;}
.y125{bottom:18.360000px;}
.y128{bottom:18.540000px;}
.y12a{bottom:18.570000px;}
.y122{bottom:26.280000px;}
.yd9{bottom:29.265000px;}
.y9{bottom:32.940000px;}
.y124{bottom:34.020000px;}
.ye7{bottom:43.845000px;}
.y7{bottom:48.600000px;}
.y187{bottom:49.500000px;}
.y186{bottom:64.980000px;}
.y18b{bottom:65.160000px;}
.y6{bottom:72.900000px;}
.yd1{bottom:88.200000px;}
.y196{bottom:88.740000px;}
.y195{bottom:90.540000px;}
.y6e{bottom:90.720000px;}
.y192{bottom:91.980000px;}
.yb2{bottom:93.420000px;}
.y51{bottom:93.960000px;}
.y11e{bottom:94.320000px;}
.y151{bottom:94.680000px;}
.yab{bottom:102.420000px;}
.y169{bottom:102.960000px;}
.yd0{bottom:105.480000px;}
.y50{bottom:106.020000px;}
.y6d{bottom:108.000000px;}
.yb1{bottom:110.700000px;}
.y11d{bottom:111.420000px;}
.y150{bottom:111.960000px;}
.y12f{bottom:115.380000px;}
.y4f{bottom:118.080000px;}
.yaa{bottom:119.700000px;}
.y168{bottom:120.240000px;}
.ycf{bottom:122.760000px;}
.y6c{bottom:125.280000px;}
.y191{bottom:127.980000px;}
.y11c{bottom:128.700000px;}
.y14f{bottom:129.240000px;}
.y4e{bottom:130.140000px;}
.yb0{bottom:132.480000px;}
.y12e{bottom:132.660000px;}
.ya9{bottom:136.980000px;}
.y167{bottom:137.340000px;}
.yce{bottom:139.860000px;}
.y16c{bottom:140.040000px;}
.y4d{bottom:142.200000px;}
.y6b{bottom:142.560000px;}
.y190{bottom:145.080000px;}
.y11b{bottom:145.980000px;}
.y14e{bottom:146.340000px;}
.y12d{bottom:147.420000px;}
.y4c{bottom:154.260000px;}
.y166{bottom:154.620000px;}
.ycd{bottom:157.140000px;}
.y6a{bottom:159.840000px;}
.y18f{bottom:162.360000px;}
.y11a{bottom:163.260000px;}
.y14d{bottom:163.620000px;}
.y4b{bottom:166.320000px;}
.ya8{bottom:171.540000px;}
.y165{bottom:171.900000px;}
.ycc{bottom:174.420000px;}
.y69{bottom:176.940000px;}
.y4a{bottom:178.380000px;}
.y129{bottom:179.100000px;}
.y18e{bottom:179.640000px;}
.y119{bottom:180.540000px;}
.y14c{bottom:180.900000px;}
.ya7{bottom:188.670000px;}
.y164{bottom:189.210000px;}
.y49{bottom:190.650000px;}
.ycb{bottom:191.730000px;}
.y68{bottom:194.250000px;}
.y18d{bottom:196.950000px;}
.y118{bottom:197.670000px;}
.y14b{bottom:198.210000px;}
.y48{bottom:202.710000px;}
.ya6{bottom:205.950000px;}
.y163{bottom:206.490000px;}
.yca{bottom:209.010000px;}
.y127{bottom:210.990000px;}
.y67{bottom:211.530000px;}
.y18c{bottom:214.230000px;}
.y47{bottom:214.770000px;}
.y117{bottom:214.950000px;}
.y14a{bottom:215.490000px;}
.ya5{bottom:223.230000px;}
.y162{bottom:223.770000px;}
.yc9{bottom:226.290000px;}
.y46{bottom:226.830000px;}
.y18a{bottom:228.090000px;}
.y66{bottom:228.810000px;}
.y116{bottom:232.230000px;}
.y149{bottom:232.770000px;}
.y45{bottom:238.890000px;}
.ya4{bottom:240.510000px;}
.y161{bottom:240.870000px;}
.yc8{bottom:243.390000px;}
.y16b{bottom:243.570000px;}
.y65{bottom:246.090000px;}
.y115{bottom:249.510000px;}
.y148{bottom:249.870000px;}
.y44{bottom:250.950000px;}
.ya3{bottom:257.790000px;}
.y160{bottom:258.150000px;}
.y126{bottom:258.330000px;}
.yc7{bottom:260.670000px;}
.y43{bottom:263.010000px;}
.y64{bottom:263.370000px;}
.y114{bottom:266.790000px;}
.y147{bottom:267.150000px;}
.y42{bottom:275.070000px;}
.y15f{bottom:275.430000px;}
.yc6{bottom:277.950000px;}
.y63{bottom:280.470000px;}
.y113{bottom:284.070000px;}
.y146{bottom:284.430000px;}
.y41{bottom:287.130000px;}
.ya2{bottom:292.170000px;}
.y15e{bottom:292.710000px;}
.yc5{bottom:295.230000px;}
.y62{bottom:297.750000px;}
.y40{bottom:299.190000px;}
.y112{bottom:301.170000px;}
.y145{bottom:301.710000px;}
.y121{bottom:305.670000px;}
.y189{bottom:305.850000px;}
.ya1{bottom:309.450000px;}
.y15d{bottom:309.990000px;}
.y3f{bottom:311.250000px;}
.yc4{bottom:312.510000px;}
.y61{bottom:315.030000px;}
.y111{bottom:318.450000px;}
.y144{bottom:318.990000px;}
.y188{bottom:321.330000px;}
.y3e{bottom:323.310000px;}
.ya0{bottom:326.730000px;}
.y15c{bottom:327.270000px;}
.yc3{bottom:329.790000px;}
.y60{bottom:332.310000px;}
.y3d{bottom:335.370000px;}
.y110{bottom:335.730000px;}
.y143{bottom:336.270000px;}
.y185{bottom:336.810000px;}
.y9f{bottom:344.010000px;}
.y15b{bottom:344.370000px;}
.yc2{bottom:346.890000px;}
.y3c{bottom:347.610000px;}
.y5f{bottom:349.590000px;}
.y10f{bottom:353.010000px;}
.y142{bottom:353.370000px;}
.y3b{bottom:359.670000px;}
.y9e{bottom:361.290000px;}
.y15a{bottom:361.650000px;}
.yc1{bottom:364.170000px;}
.y5e{bottom:366.870000px;}
.y16a{bottom:367.230000px;}
.y10e{bottom:370.290000px;}
.y141{bottom:370.650000px;}
.y3a{bottom:371.730000px;}
.y9d{bottom:378.570000px;}
.y159{bottom:378.930000px;}
.yc0{bottom:381.450000px;}
.y39{bottom:383.790000px;}
.y5d{bottom:383.970000px;}
.y11f{bottom:387.390000px;}
.y10d{bottom:387.570000px;}
.y140{bottom:387.930000px;}
.y9c{bottom:395.670000px;}
.y38{bottom:395.850000px;}
.y158{bottom:396.210000px;}
.ybf{bottom:398.730000px;}
.y5c{bottom:401.250000px;}
.y10c{bottom:404.670000px;}
.y13f{bottom:405.210000px;}
.y37{bottom:407.910000px;}
.y9b{bottom:412.950000px;}
.y157{bottom:413.490000px;}
.y184{bottom:414.390000px;}
.ybe{bottom:416.010000px;}
.y5b{bottom:418.530000px;}
.y36{bottom:419.970000px;}
.y10b{bottom:421.950000px;}
.y13e{bottom:422.490000px;}
.y9a{bottom:430.275000px;}
.y156{bottom:430.815000px;}
.y35{bottom:432.075000px;}
.ybd{bottom:433.335000px;}
.y5a{bottom:435.855000px;}
.y10a{bottom:439.275000px;}
.y13d{bottom:439.815000px;}
.y34{bottom:444.135000px;}
.y99{bottom:447.555000px;}
.y155{bottom:447.915000px;}
.ybc{bottom:450.435000px;}
.y59{bottom:453.135000px;}
.y33{bottom:456.195000px;}
.y109{bottom:456.555000px;}
.y13c{bottom:456.915000px;}
.y98{bottom:464.835000px;}
.y154{bottom:465.195000px;}
.ybb{bottom:467.715000px;}
.y32{bottom:468.255000px;}
.y58{bottom:470.415000px;}
.y108{bottom:473.835000px;}
.y13b{bottom:474.195000px;}
.y31{bottom:480.315000px;}
.yba{bottom:481.755000px;}
.y97{bottom:481.935000px;}
.y153{bottom:482.475000px;}
.y183{bottom:484.995000px;}
.y57{bottom:487.515000px;}
.y107{bottom:490.935000px;}
.y13a{bottom:491.475000px;}
.y30{bottom:492.375000px;}
.y96{bottom:499.215000px;}
.y182{bottom:502.275000px;}
.y152{bottom:504.255000px;}
.y2f{bottom:504.615000px;}
.y56{bottom:504.795000px;}
.ye5{bottom:507.135000px;}
.y106{bottom:508.215000px;}
.y139{bottom:508.755000px;}
.yed{bottom:513.255000px;}
.y95{bottom:516.495000px;}
.y2e{bottom:516.675000px;}
.y181{bottom:519.555000px;}
.ye4{bottom:520.995000px;}
.y55{bottom:522.075000px;}
.ye3{bottom:523.335000px;}
.y105{bottom:525.495000px;}
.y138{bottom:526.035000px;}
.yec{bottom:527.115000px;}
.y2d{bottom:528.735000px;}
.y94{bottom:533.775000px;}
.y180{bottom:536.835000px;}
.ye2{bottom:537.195000px;}
.y54{bottom:539.355000px;}
.y2c{bottom:540.795000px;}
.y104{bottom:542.775000px;}
.y137{bottom:543.135000px;}
.ye1{bottom:550.875000px;}
.y93{bottom:551.055000px;}
.y2b{bottom:552.855000px;}
.y17f{bottom:553.935000px;}
.yeb{bottom:554.655000px;}
.y53{bottom:556.635000px;}
.y136{bottom:557.895000px;}
.y103{bottom:560.055000px;}
.y6f{bottom:563.655000px;}
.y2a{bottom:564.915000px;}
.y92{bottom:568.335000px;}
.y17e{bottom:571.215000px;}
.y52{bottom:573.735000px;}
.y29{bottom:576.975000px;}
.y102{bottom:577.335000px;}
.y91{bottom:585.435000px;}
.y17d{bottom:588.495000px;}
.y135{bottom:589.755000px;}
.y28{bottom:591.015000px;}
.y101{bottom:594.435000px;}
.y90{bottom:602.715000px;}
.y17c{bottom:605.775000px;}
.y27{bottom:608.295000px;}
.y100{bottom:611.715000px;}
.y8f{bottom:619.995000px;}
.y134{bottom:621.615000px;}
.y17b{bottom:623.055000px;}
.yd5{bottom:623.415000px;}
.y26{bottom:625.575000px;}
.yff{bottom:628.995000px;}
.y8e{bottom:637.275000px;}
.ydc{bottom:638.355000px;}
.y17a{bottom:640.335000px;}
.y25{bottom:642.135000px;}
.yfe{bottom:646.275000px;}
.yef{bottom:650.055000px;}
.yd4{bottom:651.135000px;}
.ydb{bottom:652.215000px;}
.y132{bottom:653.295000px;}
.y8d{bottom:654.555000px;}
.y24{bottom:656.535000px;}
.y179{bottom:657.435000px;}
.yfd{bottom:663.555000px;}
.yee{bottom:663.735000px;}
.yd3{bottom:664.995000px;}
.yda{bottom:665.895000px;}
.y8c{bottom:671.865000px;}
.y23{bottom:673.845000px;}
.y178{bottom:674.745000px;}
.yd2{bottom:678.705000px;}
.yfc{bottom:680.865000px;}
.y131{bottom:685.185000px;}
.y8b{bottom:688.965000px;}
.y22{bottom:691.125000px;}
.y177{bottom:692.025000px;}
.yfb{bottom:697.965000px;}
.y8a{bottom:706.245000px;}
.y21{bottom:708.405000px;}
.y176{bottom:709.305000px;}
.yfa{bottom:715.245000px;}
.y130{bottom:717.045000px;}
.y89{bottom:723.525000px;}
.yd8{bottom:725.580000px;}
.y20{bottom:725.685000px;}
.y175{bottom:726.585000px;}
.yf9{bottom:732.525000px;}
.y88{bottom:740.805000px;}
.y1f{bottom:742.965000px;}
.y174{bottom:743.865000px;}
.yf8{bottom:749.805000px;}
.ye0{bottom:754.665000px;}
.y87{bottom:758.085000px;}
.y1e{bottom:760.065000px;}
.y173{bottom:760.965000px;}
.yf7{bottom:767.085000px;}
.ye6{bottom:767.880000px;}
.ydf{bottom:768.525000px;}
.yd7{bottom:768.705000px;}
.yf2{bottom:770.040000px;}
.y86{bottom:775.365000px;}
.y1d{bottom:777.345000px;}
.y172{bottom:778.245000px;}
.yde{bottom:782.385000px;}
.yd6{bottom:782.565000px;}
.ye9{bottom:784.005000px;}
.yf6{bottom:784.365000px;}
.yf1{bottom:792.105000px;}
.y85{bottom:792.465000px;}
.y1c{bottom:794.625000px;}
.y171{bottom:795.525000px;}
.ydd{bottom:796.245000px;}
.ye8{bottom:797.865000px;}
.yf5{bottom:801.465000px;}
.yf0{bottom:805.965000px;}
.y84{bottom:809.745000px;}
.y1b{bottom:811.905000px;}
.y170{bottom:812.805000px;}
.yf4{bottom:818.745000px;}
.y83{bottom:827.025000px;}
.y1a{bottom:829.185000px;}
.y16f{bottom:830.085000px;}
.yb9{bottom:836.025000px;}
.y82{bottom:844.305000px;}
.y19{bottom:846.285000px;}
.y16e{bottom:847.185000px;}
.yb8{bottom:853.305000px;}
.y81{bottom:861.585000px;}
.y18{bottom:863.565000px;}
.yb7{bottom:870.585000px;}
.y80{bottom:878.685000px;}
.y17{bottom:880.845000px;}
.yb6{bottom:887.685000px;}
.y7f{bottom:895.965000px;}
.y16{bottom:898.125000px;}
.y16d{bottom:902.085000px;}
.yb5{bottom:904.965000px;}
.y7e{bottom:913.290000px;}
.yaf{bottom:917.790000px;}
.yb4{bottom:922.290000px;}
.y7d{bottom:930.570000px;}
.y15{bottom:932.730000px;}
.yae{bottom:935.070000px;}
.yb3{bottom:939.570000px;}
.y7c{bottom:947.850000px;}
.y14{bottom:950.550000px;}
.yad{bottom:956.850000px;}
.y7b{bottom:969.450000px;}
.y13{bottom:971.250000px;}
.yac{bottom:974.130000px;}
.y7a{bottom:991.230000px;}
.y12{bottom:991.950000px;}
.y79{bottom:1008.510000px;}
.y11{bottom:1012.650000px;}
.y78{bottom:1025.790000px;}
.y10{bottom:1033.350000px;}
.y77{bottom:1043.070000px;}
.yf{bottom:1054.050000px;}
.y76{bottom:1060.350000px;}
.y75{bottom:1077.630000px;}
.ye{bottom:1094.730000px;}
.yd{bottom:1112.010000px;}
.yc{bottom:1129.290000px;}
.yb{bottom:1146.570000px;}
.ya{bottom:1163.880000px;}
.y74{bottom:1184.940000px;}
.y5{bottom:1187.820000px;}
.y1{bottom:1199.880000px;}
.y71{bottom:1200.060000px;}
.h33{height:5.729063px;}
.h26{height:15.480000px;}
.h2d{height:15.696000px;}
.h7{height:17.903320px;}
.h18{height:20.340000px;}
.h2{height:20.520000px;}
.h8{height:21.420000px;}
.h4{height:27.210938px;}
.h2a{height:30.960000px;}
.h2b{height:31.140000px;}
.h29{height:31.176000px;}
.h32{height:32.760000px;}
.h5{height:32.835938px;}
.h3{height:33.011719px;}
.h11{height:34.419375px;}
.h12{height:34.827188px;}
.h1b{height:38.089687px;}
.h22{height:40.231406px;}
.h10{height:40.964766px;}
.h13{height:40.985156px;}
.h20{height:41.715352px;}
.h1f{height:41.839875px;}
.h19{height:44.000156px;}
.h28{height:45.035156px;}
.h27{height:46.620000px;}
.hf{height:47.321367px;}
.h6{height:47.344922px;}
.h21{height:48.616875px;}
.h15{height:49.838906px;}
.h9{height:50.068125px;}
.h14{height:50.171484px;}
.h1d{height:51.677227px;}
.h2e{height:52.971680px;}
.h1e{height:52.998047px;}
.h25{height:53.100000px;}
.h30{height:53.709961px;}
.h24{height:55.080000px;}
.he{height:58.621992px;}
.hb{height:58.651172px;}
.h1c{height:59.439023px;}
.hc{height:60.226875px;}
.h1a{height:60.741562px;}
.h2c{height:61.423863px;}
.ha{height:65.884219px;}
.hd{height:72.562500px;}
.h16{height:73.080000px;}
.h2f{height:77.580000px;}
.h31{height:77.760000px;}
.h23{height:95.220000px;}
.h17{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w7{width:60.516000px;}
.w17{width:84.960000px;}
.wd{width:135.180000px;}
.wc{width:145.080000px;}
.wf{width:151.020000px;}
.w10{width:161.490000px;}
.we{width:166.680000px;}
.w13{width:168.840000px;}
.w14{width:168.870000px;}
.w15{width:169.410000px;}
.w11{width:181.830000px;}
.w12{width:182.190000px;}
.wa{width:223.230000px;}
.w9{width:228.450000px;}
.w8{width:228.630000px;}
.w2{width:229.170000px;}
.w4{width:434.415000px;}
.w18{width:595.545000px;}
.w6{width:680.325000px;}
.w16{width:682.485000px;}
.wb{width:684.645000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x55{left:1.980000px;}
.x2{left:8.100000px;}
.x4{left:9.180000px;}
.x2c{left:11.196000px;}
.x4a{left:13.500000px;}
.x6{left:17.820000px;}
.x1e{left:19.620000px;}
.x45{left:21.780000px;}
.x4d{left:25.065000px;}
.x42{left:28.875000px;}
.x39{left:30.705000px;}
.x4e{left:39.990000px;}
.x51{left:44.820000px;}
.x48{left:45.900000px;}
.x3b{left:47.085000px;}
.x50{left:48.420000px;}
.x54{left:55.074000px;}
.x4b{left:57.234000px;}
.x20{left:70.740000px;}
.x57{left:71.994000px;}
.x7{left:87.660000px;}
.x1{left:104.256000px;}
.x9{left:106.415987px;}
.xc{left:109.655987px;}
.x56{left:114.516000px;}
.x2b{left:119.520000px;}
.x19{left:127.655987px;}
.x29{left:131.075987px;}
.x2d{left:134.135987px;}
.xb{left:137.015987px;}
.xe{left:138.995987px;}
.x3c{left:140.435987px;}
.x23{left:143.675987px;}
.x2a{left:146.195987px;}
.x3d{left:149.255987px;}
.xf{left:157.349987px;}
.x53{left:159.869987px;}
.x2e{left:163.109987px;}
.x43{left:171.389987px;}
.x3e{left:180.569987px;}
.x58{left:199.470000px;}
.x24{left:212.789987px;}
.x46{left:258.870000px;}
.x4c{left:276.690000px;}
.x41{left:281.880000px;}
.x44{left:288.794987px;}
.x10{left:300.494987px;}
.x40{left:304.814987px;}
.xa{left:330.879000px;}
.x3{left:333.435000px;}
.x1f{left:335.055000px;}
.x36{left:347.294987px;}
.x5{left:354.495000px;}
.x37{left:368.894987px;}
.x25{left:373.754987px;}
.x28{left:380.054987px;}
.x27{left:393.374987px;}
.x26{left:395.714987px;}
.x16{left:412.634987px;}
.x52{left:418.574987px;}
.x47{left:421.275000px;}
.xd{left:446.474987px;}
.x1d{left:451.335000px;}
.x1b{left:459.254987px;}
.x38{left:462.060000px;}
.x3a{left:478.724987px;}
.x1c{left:480.524987px;}
.x13{left:492.944987px;}
.x1a{left:511.844987px;}
.x17{left:548.744987px;}
.x21{left:563.505000px;}
.x12{left:577.544987px;}
.x15{left:582.044987px;}
.x14{left:595.364987px;}
.x11{left:596.984987px;}
.x49{left:603.825000px;}
.x33{left:612.104987px;}
.x4f{left:616.605000px;}
.x34{left:626.324987px;}
.x2f{left:629.024987px;}
.x31{left:632.264987px;}
.x35{left:640.544987px;}
.x3f{left:641.804987px;}
.x30{left:648.644987px;}
.x18{left:661.244987px;}
.x32{left:663.044987px;}
.x22{left:780.629987px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.720000pt;}
.ls3a{letter-spacing:-0.656000pt;}
.ls3c{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.269867pt;}
.ls3d{letter-spacing:-0.239467pt;}
.ls33{letter-spacing:-0.183467pt;}
.ls3b{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.046080pt;}
.ls2e{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.016000pt;}
.ls37{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls38{letter-spacing:0.086933pt;}
.ls11{letter-spacing:0.116480pt;}
.ls26{letter-spacing:0.137600pt;}
.lsa{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.245760pt;}
.ls2{letter-spacing:0.265600pt;}
.ls29{letter-spacing:0.294933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.380800pt;}
.ls13{letter-spacing:0.391040pt;}
.ls39{letter-spacing:0.416000pt;}
.ls6{letter-spacing:0.439040pt;}
.ls27{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls28{letter-spacing:0.960000pt;}
.ls7{letter-spacing:2.880000pt;}
.ls21{letter-spacing:3.360000pt;}
.ls35{letter-spacing:5.920000pt;}
.ls9{letter-spacing:6.560000pt;}
.ls8{letter-spacing:8.000000pt;}
.ls2c{letter-spacing:8.480000pt;}
.ls1b{letter-spacing:10.400000pt;}
.ls22{letter-spacing:11.040000pt;}
.ls32{letter-spacing:12.320000pt;}
.ls4{letter-spacing:12.960000pt;}
.ls34{letter-spacing:13.392640pt;}
.ls15{letter-spacing:14.880000pt;}
.ls17{letter-spacing:15.520000pt;}
.lsb{letter-spacing:17.440000pt;}
.ls18{letter-spacing:18.080000pt;}
.ls1a{letter-spacing:21.280000pt;}
.ls2b{letter-spacing:22.080000pt;}
.ls1f{letter-spacing:22.560000pt;}
.ls30{letter-spacing:27.840000pt;}
.ls1d{letter-spacing:28.320000pt;}
.ls23{letter-spacing:30.240000pt;}
.ls24{letter-spacing:31.680000pt;}
.ls25{letter-spacing:34.720000pt;}
.ls20{letter-spacing:37.280000pt;}
.ls31{letter-spacing:39.611307pt;}
.ls19{letter-spacing:41.760000pt;}
.ls3{letter-spacing:170.378667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws10{word-spacing:-14.240000pt;}
.ws1{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.574933pt;}
.ws3{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.417600pt;}
.ws2{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.416000pt;}
.ws15{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.984000pt;}
.ws19{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.680000pt;}
.ws17{word-spacing:-11.344000pt;}
.ws13{word-spacing:-11.264000pt;}
.wsd{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.334080pt;}
.ws7{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.945920pt;}
.wsb{word-spacing:-8.676053pt;}
.ws0{word-spacing:-7.712000pt;}
.ws9{word-spacing:0.000000pt;}
._2a{margin-left:-3.147520pt;}
._f{margin-left:-2.035200pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.066667pt;}
._2{width:2.717867pt;}
._e{width:4.109227pt;}
._a{width:5.425067pt;}
._b{width:6.340693pt;}
._4{width:7.232853pt;}
._5{width:8.177493pt;}
._29{width:9.083520pt;}
._25{width:10.004267pt;}
._1c{width:10.942933pt;}
._c{width:11.841280pt;}
._13{width:12.853333pt;}
._9{width:13.744213pt;}
._16{width:15.312640pt;}
._12{width:16.346880pt;}
._11{width:17.372160pt;}
._7{width:19.015253pt;}
._8{width:20.359253pt;}
._3{width:21.269760pt;}
._d{width:22.615893pt;}
._1d{width:23.691520pt;}
._1f{width:25.419733pt;}
._6{width:26.466560pt;}
._28{width:27.994240pt;}
._2b{width:29.009707pt;}
._30{width:30.511360pt;}
._27{width:31.479680pt;}
._17{width:32.597760pt;}
._15{width:33.797973pt;}
._14{width:35.109973pt;}
._2e{width:36.301653pt;}
._26{width:37.445333pt;}
._22{width:38.883840pt;}
._36{width:40.052480pt;}
._10{width:41.126400pt;}
._33{width:42.177280pt;}
._23{width:43.413760pt;}
._21{width:44.404053pt;}
._2d{width:46.157013pt;}
._2c{width:47.276800pt;}
._1e{width:48.551680pt;}
._1b{width:50.464000pt;}
._1a{width:51.469013pt;}
._31{width:52.535680pt;}
._34{width:53.487573pt;}
._20{width:54.448000pt;}
._19{width:55.457280pt;}
._24{width:56.572800pt;}
._39{width:58.002773pt;}
._3a{width:59.277653pt;}
._32{width:63.372160pt;}
._38{width:67.033173pt;}
._37{width:68.631040pt;}
._18{width:69.587200pt;}
._35{width:71.765120pt;}
._2f{width:72.982613pt;}
.fsb{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fs7{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:0.160000pt;}
.y4{bottom:1.760000pt;}
.yea{bottom:2.173333pt;}
.y120{bottom:2.560000pt;}
.y12b{bottom:2.720000pt;}
.y70{bottom:3.520000pt;}
.y73{bottom:3.840000pt;}
.y72{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:6.400000pt;}
.yf3{bottom:7.293333pt;}
.y123{bottom:9.440000pt;}
.y133{bottom:9.600000pt;}
.y12c{bottom:9.626667pt;}
.y194{bottom:10.720000pt;}
.y3{bottom:10.880000pt;}
.y125{bottom:16.320000pt;}
.y128{bottom:16.480000pt;}
.y12a{bottom:16.506667pt;}
.y122{bottom:23.360000pt;}
.yd9{bottom:26.013333pt;}
.y9{bottom:29.280000pt;}
.y124{bottom:30.240000pt;}
.ye7{bottom:38.973333pt;}
.y7{bottom:43.200000pt;}
.y187{bottom:44.000000pt;}
.y186{bottom:57.760000pt;}
.y18b{bottom:57.920000pt;}
.y6{bottom:64.800000pt;}
.yd1{bottom:78.400000pt;}
.y196{bottom:78.880000pt;}
.y195{bottom:80.480000pt;}
.y6e{bottom:80.640000pt;}
.y192{bottom:81.760000pt;}
.yb2{bottom:83.040000pt;}
.y51{bottom:83.520000pt;}
.y11e{bottom:83.840000pt;}
.y151{bottom:84.160000pt;}
.yab{bottom:91.040000pt;}
.y169{bottom:91.520000pt;}
.yd0{bottom:93.760000pt;}
.y50{bottom:94.240000pt;}
.y6d{bottom:96.000000pt;}
.yb1{bottom:98.400000pt;}
.y11d{bottom:99.040000pt;}
.y150{bottom:99.520000pt;}
.y12f{bottom:102.560000pt;}
.y4f{bottom:104.960000pt;}
.yaa{bottom:106.400000pt;}
.y168{bottom:106.880000pt;}
.ycf{bottom:109.120000pt;}
.y6c{bottom:111.360000pt;}
.y191{bottom:113.760000pt;}
.y11c{bottom:114.400000pt;}
.y14f{bottom:114.880000pt;}
.y4e{bottom:115.680000pt;}
.yb0{bottom:117.760000pt;}
.y12e{bottom:117.920000pt;}
.ya9{bottom:121.760000pt;}
.y167{bottom:122.080000pt;}
.yce{bottom:124.320000pt;}
.y16c{bottom:124.480000pt;}
.y4d{bottom:126.400000pt;}
.y6b{bottom:126.720000pt;}
.y190{bottom:128.960000pt;}
.y11b{bottom:129.760000pt;}
.y14e{bottom:130.080000pt;}
.y12d{bottom:131.040000pt;}
.y4c{bottom:137.120000pt;}
.y166{bottom:137.440000pt;}
.ycd{bottom:139.680000pt;}
.y6a{bottom:142.080000pt;}
.y18f{bottom:144.320000pt;}
.y11a{bottom:145.120000pt;}
.y14d{bottom:145.440000pt;}
.y4b{bottom:147.840000pt;}
.ya8{bottom:152.480000pt;}
.y165{bottom:152.800000pt;}
.ycc{bottom:155.040000pt;}
.y69{bottom:157.280000pt;}
.y4a{bottom:158.560000pt;}
.y129{bottom:159.200000pt;}
.y18e{bottom:159.680000pt;}
.y119{bottom:160.480000pt;}
.y14c{bottom:160.800000pt;}
.ya7{bottom:167.706667pt;}
.y164{bottom:168.186667pt;}
.y49{bottom:169.466667pt;}
.ycb{bottom:170.426667pt;}
.y68{bottom:172.666667pt;}
.y18d{bottom:175.066667pt;}
.y118{bottom:175.706667pt;}
.y14b{bottom:176.186667pt;}
.y48{bottom:180.186667pt;}
.ya6{bottom:183.066667pt;}
.y163{bottom:183.546667pt;}
.yca{bottom:185.786667pt;}
.y127{bottom:187.546667pt;}
.y67{bottom:188.026667pt;}
.y18c{bottom:190.426667pt;}
.y47{bottom:190.906667pt;}
.y117{bottom:191.066667pt;}
.y14a{bottom:191.546667pt;}
.ya5{bottom:198.426667pt;}
.y162{bottom:198.906667pt;}
.yc9{bottom:201.146667pt;}
.y46{bottom:201.626667pt;}
.y18a{bottom:202.746667pt;}
.y66{bottom:203.386667pt;}
.y116{bottom:206.426667pt;}
.y149{bottom:206.906667pt;}
.y45{bottom:212.346667pt;}
.ya4{bottom:213.786667pt;}
.y161{bottom:214.106667pt;}
.yc8{bottom:216.346667pt;}
.y16b{bottom:216.506667pt;}
.y65{bottom:218.746667pt;}
.y115{bottom:221.786667pt;}
.y148{bottom:222.106667pt;}
.y44{bottom:223.066667pt;}
.ya3{bottom:229.146667pt;}
.y160{bottom:229.466667pt;}
.y126{bottom:229.626667pt;}
.yc7{bottom:231.706667pt;}
.y43{bottom:233.786667pt;}
.y64{bottom:234.106667pt;}
.y114{bottom:237.146667pt;}
.y147{bottom:237.466667pt;}
.y42{bottom:244.506667pt;}
.y15f{bottom:244.826667pt;}
.yc6{bottom:247.066667pt;}
.y63{bottom:249.306667pt;}
.y113{bottom:252.506667pt;}
.y146{bottom:252.826667pt;}
.y41{bottom:255.226667pt;}
.ya2{bottom:259.706667pt;}
.y15e{bottom:260.186667pt;}
.yc5{bottom:262.426667pt;}
.y62{bottom:264.666667pt;}
.y40{bottom:265.946667pt;}
.y112{bottom:267.706667pt;}
.y145{bottom:268.186667pt;}
.y121{bottom:271.706667pt;}
.y189{bottom:271.866667pt;}
.ya1{bottom:275.066667pt;}
.y15d{bottom:275.546667pt;}
.y3f{bottom:276.666667pt;}
.yc4{bottom:277.786667pt;}
.y61{bottom:280.026667pt;}
.y111{bottom:283.066667pt;}
.y144{bottom:283.546667pt;}
.y188{bottom:285.626667pt;}
.y3e{bottom:287.386667pt;}
.ya0{bottom:290.426667pt;}
.y15c{bottom:290.906667pt;}
.yc3{bottom:293.146667pt;}
.y60{bottom:295.386667pt;}
.y3d{bottom:298.106667pt;}
.y110{bottom:298.426667pt;}
.y143{bottom:298.906667pt;}
.y185{bottom:299.386667pt;}
.y9f{bottom:305.786667pt;}
.y15b{bottom:306.106667pt;}
.yc2{bottom:308.346667pt;}
.y3c{bottom:308.986667pt;}
.y5f{bottom:310.746667pt;}
.y10f{bottom:313.786667pt;}
.y142{bottom:314.106667pt;}
.y3b{bottom:319.706667pt;}
.y9e{bottom:321.146667pt;}
.y15a{bottom:321.466667pt;}
.yc1{bottom:323.706667pt;}
.y5e{bottom:326.106667pt;}
.y16a{bottom:326.426667pt;}
.y10e{bottom:329.146667pt;}
.y141{bottom:329.466667pt;}
.y3a{bottom:330.426667pt;}
.y9d{bottom:336.506667pt;}
.y159{bottom:336.826667pt;}
.yc0{bottom:339.066667pt;}
.y39{bottom:341.146667pt;}
.y5d{bottom:341.306667pt;}
.y11f{bottom:344.346667pt;}
.y10d{bottom:344.506667pt;}
.y140{bottom:344.826667pt;}
.y9c{bottom:351.706667pt;}
.y38{bottom:351.866667pt;}
.y158{bottom:352.186667pt;}
.ybf{bottom:354.426667pt;}
.y5c{bottom:356.666667pt;}
.y10c{bottom:359.706667pt;}
.y13f{bottom:360.186667pt;}
.y37{bottom:362.586667pt;}
.y9b{bottom:367.066667pt;}
.y157{bottom:367.546667pt;}
.y184{bottom:368.346667pt;}
.ybe{bottom:369.786667pt;}
.y5b{bottom:372.026667pt;}
.y36{bottom:373.306667pt;}
.y10b{bottom:375.066667pt;}
.y13e{bottom:375.546667pt;}
.y9a{bottom:382.466667pt;}
.y156{bottom:382.946667pt;}
.y35{bottom:384.066667pt;}
.ybd{bottom:385.186667pt;}
.y5a{bottom:387.426667pt;}
.y10a{bottom:390.466667pt;}
.y13d{bottom:390.946667pt;}
.y34{bottom:394.786667pt;}
.y99{bottom:397.826667pt;}
.y155{bottom:398.146667pt;}
.ybc{bottom:400.386667pt;}
.y59{bottom:402.786667pt;}
.y33{bottom:405.506667pt;}
.y109{bottom:405.826667pt;}
.y13c{bottom:406.146667pt;}
.y98{bottom:413.186667pt;}
.y154{bottom:413.506667pt;}
.ybb{bottom:415.746667pt;}
.y32{bottom:416.226667pt;}
.y58{bottom:418.146667pt;}
.y108{bottom:421.186667pt;}
.y13b{bottom:421.506667pt;}
.y31{bottom:426.946667pt;}
.yba{bottom:428.226667pt;}
.y97{bottom:428.386667pt;}
.y153{bottom:428.866667pt;}
.y183{bottom:431.106667pt;}
.y57{bottom:433.346667pt;}
.y107{bottom:436.386667pt;}
.y13a{bottom:436.866667pt;}
.y30{bottom:437.666667pt;}
.y96{bottom:443.746667pt;}
.y182{bottom:446.466667pt;}
.y152{bottom:448.226667pt;}
.y2f{bottom:448.546667pt;}
.y56{bottom:448.706667pt;}
.ye5{bottom:450.786667pt;}
.y106{bottom:451.746667pt;}
.y139{bottom:452.226667pt;}
.yed{bottom:456.226667pt;}
.y95{bottom:459.106667pt;}
.y2e{bottom:459.266667pt;}
.y181{bottom:461.826667pt;}
.ye4{bottom:463.106667pt;}
.y55{bottom:464.066667pt;}
.ye3{bottom:465.186667pt;}
.y105{bottom:467.106667pt;}
.y138{bottom:467.586667pt;}
.yec{bottom:468.546667pt;}
.y2d{bottom:469.986667pt;}
.y94{bottom:474.466667pt;}
.y180{bottom:477.186667pt;}
.ye2{bottom:477.506667pt;}
.y54{bottom:479.426667pt;}
.y2c{bottom:480.706667pt;}
.y104{bottom:482.466667pt;}
.y137{bottom:482.786667pt;}
.ye1{bottom:489.666667pt;}
.y93{bottom:489.826667pt;}
.y2b{bottom:491.426667pt;}
.y17f{bottom:492.386667pt;}
.yeb{bottom:493.026667pt;}
.y53{bottom:494.786667pt;}
.y136{bottom:495.906667pt;}
.y103{bottom:497.826667pt;}
.y6f{bottom:501.026667pt;}
.y2a{bottom:502.146667pt;}
.y92{bottom:505.186667pt;}
.y17e{bottom:507.746667pt;}
.y52{bottom:509.986667pt;}
.y29{bottom:512.866667pt;}
.y102{bottom:513.186667pt;}
.y91{bottom:520.386667pt;}
.y17d{bottom:523.106667pt;}
.y135{bottom:524.226667pt;}
.y28{bottom:525.346667pt;}
.y101{bottom:528.386667pt;}
.y90{bottom:535.746667pt;}
.y17c{bottom:538.466667pt;}
.y27{bottom:540.706667pt;}
.y100{bottom:543.746667pt;}
.y8f{bottom:551.106667pt;}
.y134{bottom:552.546667pt;}
.y17b{bottom:553.826667pt;}
.yd5{bottom:554.146667pt;}
.y26{bottom:556.066667pt;}
.yff{bottom:559.106667pt;}
.y8e{bottom:566.466667pt;}
.ydc{bottom:567.426667pt;}
.y17a{bottom:569.186667pt;}
.y25{bottom:570.786667pt;}
.yfe{bottom:574.466667pt;}
.yef{bottom:577.826667pt;}
.yd4{bottom:578.786667pt;}
.ydb{bottom:579.746667pt;}
.y132{bottom:580.706667pt;}
.y8d{bottom:581.826667pt;}
.y24{bottom:583.586667pt;}
.y179{bottom:584.386667pt;}
.yfd{bottom:589.826667pt;}
.yee{bottom:589.986667pt;}
.yd3{bottom:591.106667pt;}
.yda{bottom:591.906667pt;}
.y8c{bottom:597.213333pt;}
.y23{bottom:598.973333pt;}
.y178{bottom:599.773333pt;}
.yd2{bottom:603.293333pt;}
.yfc{bottom:605.213333pt;}
.y131{bottom:609.053333pt;}
.y8b{bottom:612.413333pt;}
.y22{bottom:614.333333pt;}
.y177{bottom:615.133333pt;}
.yfb{bottom:620.413333pt;}
.y8a{bottom:627.773333pt;}
.y21{bottom:629.693333pt;}
.y176{bottom:630.493333pt;}
.yfa{bottom:635.773333pt;}
.y130{bottom:637.373333pt;}
.y89{bottom:643.133333pt;}
.yd8{bottom:644.960000pt;}
.y20{bottom:645.053333pt;}
.y175{bottom:645.853333pt;}
.yf9{bottom:651.133333pt;}
.y88{bottom:658.493333pt;}
.y1f{bottom:660.413333pt;}
.y174{bottom:661.213333pt;}
.yf8{bottom:666.493333pt;}
.ye0{bottom:670.813333pt;}
.y87{bottom:673.853333pt;}
.y1e{bottom:675.613333pt;}
.y173{bottom:676.413333pt;}
.yf7{bottom:681.853333pt;}
.ye6{bottom:682.560000pt;}
.ydf{bottom:683.133333pt;}
.yd7{bottom:683.293333pt;}
.yf2{bottom:684.480000pt;}
.y86{bottom:689.213333pt;}
.y1d{bottom:690.973333pt;}
.y172{bottom:691.773333pt;}
.yde{bottom:695.453333pt;}
.yd6{bottom:695.613333pt;}
.ye9{bottom:696.893333pt;}
.yf6{bottom:697.213333pt;}
.yf1{bottom:704.093333pt;}
.y85{bottom:704.413333pt;}
.y1c{bottom:706.333333pt;}
.y171{bottom:707.133333pt;}
.ydd{bottom:707.773333pt;}
.ye8{bottom:709.213333pt;}
.yf5{bottom:712.413333pt;}
.yf0{bottom:716.413333pt;}
.y84{bottom:719.773333pt;}
.y1b{bottom:721.693333pt;}
.y170{bottom:722.493333pt;}
.yf4{bottom:727.773333pt;}
.y83{bottom:735.133333pt;}
.y1a{bottom:737.053333pt;}
.y16f{bottom:737.853333pt;}
.yb9{bottom:743.133333pt;}
.y82{bottom:750.493333pt;}
.y19{bottom:752.253333pt;}
.y16e{bottom:753.053333pt;}
.yb8{bottom:758.493333pt;}
.y81{bottom:765.853333pt;}
.y18{bottom:767.613333pt;}
.yb7{bottom:773.853333pt;}
.y80{bottom:781.053333pt;}
.y17{bottom:782.973333pt;}
.yb6{bottom:789.053333pt;}
.y7f{bottom:796.413333pt;}
.y16{bottom:798.333333pt;}
.y16d{bottom:801.853333pt;}
.yb5{bottom:804.413333pt;}
.y7e{bottom:811.813333pt;}
.yaf{bottom:815.813333pt;}
.yb4{bottom:819.813333pt;}
.y7d{bottom:827.173333pt;}
.y15{bottom:829.093333pt;}
.yae{bottom:831.173333pt;}
.yb3{bottom:835.173333pt;}
.y7c{bottom:842.533333pt;}
.y14{bottom:844.933333pt;}
.yad{bottom:850.533333pt;}
.y7b{bottom:861.733333pt;}
.y13{bottom:863.333333pt;}
.yac{bottom:865.893333pt;}
.y7a{bottom:881.093333pt;}
.y12{bottom:881.733333pt;}
.y79{bottom:896.453333pt;}
.y11{bottom:900.133333pt;}
.y78{bottom:911.813333pt;}
.y10{bottom:918.533333pt;}
.y77{bottom:927.173333pt;}
.yf{bottom:936.933333pt;}
.y76{bottom:942.533333pt;}
.y75{bottom:957.893333pt;}
.ye{bottom:973.093333pt;}
.yd{bottom:988.453333pt;}
.yc{bottom:1003.813333pt;}
.yb{bottom:1019.173333pt;}
.ya{bottom:1034.560000pt;}
.y74{bottom:1053.280000pt;}
.y5{bottom:1055.840000pt;}
.y1{bottom:1066.560000pt;}
.y71{bottom:1066.720000pt;}
.h33{height:5.092500pt;}
.h26{height:13.760000pt;}
.h2d{height:13.952000pt;}
.h7{height:15.914062pt;}
.h18{height:18.080000pt;}
.h2{height:18.240000pt;}
.h8{height:19.040000pt;}
.h4{height:24.187500pt;}
.h2a{height:27.520000pt;}
.h2b{height:27.680000pt;}
.h29{height:27.712000pt;}
.h32{height:29.120000pt;}
.h5{height:29.187500pt;}
.h3{height:29.343750pt;}
.h11{height:30.595000pt;}
.h12{height:30.957500pt;}
.h1b{height:33.857500pt;}
.h22{height:35.761250pt;}
.h10{height:36.413125pt;}
.h13{height:36.431250pt;}
.h20{height:37.080312pt;}
.h1f{height:37.191000pt;}
.h19{height:39.111250pt;}
.h28{height:40.031250pt;}
.h27{height:41.440000pt;}
.hf{height:42.063437pt;}
.h6{height:42.084375pt;}
.h21{height:43.215000pt;}
.h15{height:44.301250pt;}
.h9{height:44.505000pt;}
.h14{height:44.596875pt;}
.h1d{height:45.935313pt;}
.h2e{height:47.085938pt;}
.h1e{height:47.109375pt;}
.h25{height:47.200000pt;}
.h30{height:47.742188pt;}
.h24{height:48.960000pt;}
.he{height:52.108438pt;}
.hb{height:52.134375pt;}
.h1c{height:52.834688pt;}
.hc{height:53.535000pt;}
.h1a{height:53.992500pt;}
.h2c{height:54.598989pt;}
.ha{height:58.563750pt;}
.hd{height:64.500000pt;}
.h16{height:64.960000pt;}
.h2f{height:68.960000pt;}
.h31{height:69.120000pt;}
.h23{height:84.640000pt;}
.h17{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w7{width:53.792000pt;}
.w17{width:75.520000pt;}
.wd{width:120.160000pt;}
.wc{width:128.960000pt;}
.wf{width:134.240000pt;}
.w10{width:143.546667pt;}
.we{width:148.160000pt;}
.w13{width:150.080000pt;}
.w14{width:150.106667pt;}
.w15{width:150.586667pt;}
.w11{width:161.626667pt;}
.w12{width:161.946667pt;}
.wa{width:198.426667pt;}
.w9{width:203.066667pt;}
.w8{width:203.226667pt;}
.w2{width:203.706667pt;}
.w4{width:386.146667pt;}
.w18{width:529.373333pt;}
.w6{width:604.733333pt;}
.w16{width:606.653333pt;}
.wb{width:608.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x55{left:1.760000pt;}
.x2{left:7.200000pt;}
.x4{left:8.160000pt;}
.x2c{left:9.952000pt;}
.x4a{left:12.000000pt;}
.x6{left:15.840000pt;}
.x1e{left:17.440000pt;}
.x45{left:19.360000pt;}
.x4d{left:22.280000pt;}
.x42{left:25.666667pt;}
.x39{left:27.293333pt;}
.x4e{left:35.546667pt;}
.x51{left:39.840000pt;}
.x48{left:40.800000pt;}
.x3b{left:41.853333pt;}
.x50{left:43.040000pt;}
.x54{left:48.954667pt;}
.x4b{left:50.874667pt;}
.x20{left:62.880000pt;}
.x57{left:63.994667pt;}
.x7{left:77.920000pt;}
.x1{left:92.672000pt;}
.x9{left:94.591988pt;}
.xc{left:97.471988pt;}
.x56{left:101.792000pt;}
.x2b{left:106.240000pt;}
.x19{left:113.471988pt;}
.x29{left:116.511988pt;}
.x2d{left:119.231988pt;}
.xb{left:121.791988pt;}
.xe{left:123.551988pt;}
.x3c{left:124.831988pt;}
.x23{left:127.711988pt;}
.x2a{left:129.951988pt;}
.x3d{left:132.671988pt;}
.xf{left:139.866655pt;}
.x53{left:142.106655pt;}
.x2e{left:144.986655pt;}
.x43{left:152.346655pt;}
.x3e{left:160.506655pt;}
.x58{left:177.306667pt;}
.x24{left:189.146655pt;}
.x46{left:230.106667pt;}
.x4c{left:245.946667pt;}
.x41{left:250.560000pt;}
.x44{left:256.706655pt;}
.x10{left:267.106655pt;}
.x40{left:270.946655pt;}
.xa{left:294.114667pt;}
.x3{left:296.386667pt;}
.x1f{left:297.826667pt;}
.x36{left:308.706655pt;}
.x5{left:315.106667pt;}
.x37{left:327.906655pt;}
.x25{left:332.226655pt;}
.x28{left:337.826655pt;}
.x27{left:349.666655pt;}
.x26{left:351.746655pt;}
.x16{left:366.786655pt;}
.x52{left:372.066655pt;}
.x47{left:374.466667pt;}
.xd{left:396.866655pt;}
.x1d{left:401.186667pt;}
.x1b{left:408.226655pt;}
.x38{left:410.720000pt;}
.x3a{left:425.533322pt;}
.x1c{left:427.133322pt;}
.x13{left:438.173322pt;}
.x1a{left:454.973322pt;}
.x17{left:487.773322pt;}
.x21{left:500.893333pt;}
.x12{left:513.373322pt;}
.x15{left:517.373322pt;}
.x14{left:529.213322pt;}
.x11{left:530.653322pt;}
.x49{left:536.733333pt;}
.x33{left:544.093322pt;}
.x4f{left:548.093333pt;}
.x34{left:556.733322pt;}
.x2f{left:559.133322pt;}
.x31{left:562.013322pt;}
.x35{left:569.373322pt;}
.x3f{left:570.493322pt;}
.x30{left:576.573322pt;}
.x18{left:587.773322pt;}
.x32{left:589.373322pt;}
.x22{left:693.893322pt;}
.x8{left:699.333322pt;}
}




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