
    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_462d2cc76e28b98514f43af6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_1bc631806a926cb246f73067.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_f8c2fa9452179a087503d54c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c4f4148d32898b01f6b8cf4b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2036c34657d05f5051b3969b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_06337e83ac905152e5922137.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_ce04c7e156359cdb08706dc3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f03b9fc95a7184ff911750c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_caf7f016aba4450bc4edfdf0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ccc0799ea4e87a726f842787.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_06bbeac557278edb909527e5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c333f473f49185c430f0b6b6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls1a{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.450600px;}
.ls2c{letter-spacing:-0.340800px;}
.lsc{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.048540px;}
.ls11{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.024480px;}
.lsf{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.106800px;}
.ls32{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.269400px;}
.ls2b{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.864000px;}
.ls2f{letter-spacing:1.440000px;}
.ls26{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.880000px;}
.ls8{letter-spacing:3.600000px;}
.ls30{letter-spacing:6.480000px;}
.ls2a{letter-spacing:7.200000px;}
.lse{letter-spacing:8.640000px;}
.ls25{letter-spacing:9.360000px;}
.ls37{letter-spacing:9.540000px;}
.ls23{letter-spacing:10.080000px;}
.ls24{letter-spacing:11.520000px;}
.ls13{letter-spacing:12.240000px;}
.ls33{letter-spacing:14.400000px;}
.ls1b{letter-spacing:15.840000px;}
.ls31{letter-spacing:16.560000px;}
.ls39{letter-spacing:18.000000px;}
.ls6{letter-spacing:19.440000px;}
.ls7{letter-spacing:21.000000px;}
.ls34{letter-spacing:25.920000px;}
.ls3a{letter-spacing:26.640000px;}
.ls35{letter-spacing:28.080000px;}
.ls36{letter-spacing:34.560000px;}
.ls28{letter-spacing:48.240000px;}
.ls18{letter-spacing:59.040000px;}
.ls19{letter-spacing:170.784000px;}
.ls27{letter-spacing:174.384000px;}
.ls38{letter-spacing:188.640000px;}
.ls21{letter-spacing:334.980000px;}
.ls20{letter-spacing:442.920000px;}
.ls1f{letter-spacing:507.060000px;}
.ls1e{letter-spacing:676.980000px;}
.ls1d{letter-spacing:681.300000px;}
.ls1c{letter-spacing:692.820000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws14{word-spacing:-22.618080px;}
.ws16{word-spacing:-22.455360px;}
.ws17{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.216000px;}
.ws12{word-spacing:-18.144000px;}
.ws19{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws10{word-spacing:-16.992000px;}
.ws4{word-spacing:-16.792560px;}
.ws18{word-spacing:-16.560000px;}
.wse{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.329400px;}
.ws6{word-spacing:-12.105360px;}
.ws0{word-spacing:-11.609400px;}
.ws8{word-spacing:-9.711360px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:465.199920px;}
.ws15{word-spacing:475.607040px;}
._3b{margin-left:-3.224880px;}
._3{margin-left:-1.095120px;}
._0{width:1.195200px;}
._8{width:2.491200px;}
._d{width:3.916800px;}
._6{width:5.040000px;}
._7{width:6.048000px;}
._9{width:7.200000px;}
._a{width:8.496000px;}
._17{width:9.498480px;}
._b{width:10.512000px;}
._c{width:11.520000px;}
._16{width:13.173360px;}
._13{width:14.664000px;}
._14{width:16.020000px;}
._5{width:19.167120px;}
._4{width:20.304000px;}
._f{width:21.340560px;}
._1a{width:22.435680px;}
._1b{width:23.837760px;}
._19{width:25.787040px;}
._18{width:27.087120px;}
._1c{width:28.337760px;}
._1e{width:29.448000px;}
._38{width:30.528000px;}
._41{width:33.768000px;}
._42{width:34.776000px;}
._e{width:39.759120px;}
._3a{width:48.360000px;}
._3e{width:52.344000px;}
._3f{width:53.436000px;}
._15{width:55.503120px;}
._1d{width:58.872000px;}
._2b{width:151.896000px;}
._34{width:181.063920px;}
._43{width:188.316000px;}
._44{width:189.732000px;}
._32{width:211.692000px;}
._1{width:220.422720px;}
._3d{width:240.912000px;}
._3c{width:242.136000px;}
._20{width:259.032000px;}
._21{width:267.732000px;}
._33{width:313.152000px;}
._27{width:327.036000px;}
._28{width:343.056000px;}
._35{width:377.040000px;}
._12{width:385.386240px;}
._2a{width:395.088000px;}
._2{width:398.346240px;}
._25{width:410.640000px;}
._30{width:415.128000px;}
._45{width:419.040000px;}
._1f{width:440.868000px;}
._23{width:467.040000px;}
._31{width:503.676000px;}
._22{width:523.020000px;}
._36{width:527.580000px;}
._2d{width:535.080000px;}
._29{width:551.628000px;}
._26{width:555.588000px;}
._2f{width:557.004000px;}
._24{width:623.628000px;}
._2c{width:705.060000px;}
._11{width:721.363440px;}
._2e{width:747.540000px;}
._40{width:782.568000px;}
._46{width:843.096000px;}
._39{width:846.156000px;}
._10{width:847.596000px;}
._37{width:2023.680000px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs9{font-size:99.360000px;}
.fsa{font-size:99.504000px;}
.fs8{font-size:100.080000px;}
.fsc{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y167{bottom:12.960000px;}
.y16f{bottom:13.140000px;}
.y16c{bottom:13.545000px;}
.y173{bottom:13.680000px;}
.y163{bottom:15.480000px;}
.y13a{bottom:16.200000px;}
.y128{bottom:16.230000px;}
.y15b{bottom:16.305000px;}
.y165{bottom:16.560000px;}
.y12f{bottom:18.435000px;}
.ye5{bottom:30.600000px;}
.yeb{bottom:30.630000px;}
.y160{bottom:31.350000px;}
.y169{bottom:41.400000px;}
.y16b{bottom:41.985000px;}
.y172{bottom:42.120000px;}
.y6{bottom:46.800000px;}
.y131{bottom:48.600000px;}
.y156{bottom:48.630000px;}
.y120{bottom:48.675000px;}
.y162{bottom:50.040000px;}
.y164{bottom:52.740000px;}
.y140{bottom:60.660000px;}
.y15f{bottom:61.665000px;}
.y5{bottom:66.996000px;}
.y132{bottom:82.230000px;}
.y4{bottom:86.616000px;}
.y121{bottom:87.405000px;}
.y157{bottom:90.030000px;}
.y15e{bottom:101.085000px;}
.y3{bottom:103.536000px;}
.y133{bottom:115.845000px;}
.y2{bottom:120.276000px;}
.y12d{bottom:121.830000px;}
.y122{bottom:126.150000px;}
.y158{bottom:131.430000px;}
.y1{bottom:139.716000px;}
.y134{bottom:149.430000px;}
.y13d{bottom:150.765000px;}
.y12b{bottom:155.370000px;}
.ya0{bottom:155.730000px;}
.y6f{bottom:156.990000px;}
.y9f{bottom:160.950000px;}
.ycb{bottom:162.210000px;}
.y48{bottom:162.570000px;}
.y123{bottom:164.880000px;}
.yb5{bottom:167.430000px;}
.y7e{bottom:167.790000px;}
.y108{bottom:167.970000px;}
.y11e{bottom:168.870000px;}
.y180{bottom:169.230000px;}
.yab{bottom:169.950000px;}
.yb7{bottom:170.490000px;}
.y15d{bottom:170.850000px;}
.y117{bottom:171.570000px;}
.y154{bottom:172.110000px;}
.y159{bottom:172.830000px;}
.ye3{bottom:173.010000px;}
.y9e{bottom:174.270000px;}
.y6e{bottom:175.710000px;}
.ya2{bottom:178.050000px;}
.ye2{bottom:178.230000px;}
.yca{bottom:179.490000px;}
.y1ac{bottom:180.570000px;}
.y135{bottom:183.060000px;}
.y13c{bottom:185.190000px;}
.yf9{bottom:190.110000px;}
.ye1{bottom:191.370000px;}
.yc9{bottom:192.810000px;}
.y12a{bottom:192.990000px;}
.y47{bottom:193.710000px;}
.y6d{bottom:194.250000px;}
.yb4{bottom:198.570000px;}
.y7d{bottom:198.750000px;}
.y107{bottom:198.930000px;}
.y11d{bottom:199.830000px;}
.y17f{bottom:200.190000px;}
.yaa{bottom:201.090000px;}
.y15c{bottom:201.210000px;}
.y116{bottom:202.530000px;}
.y153{bottom:203.070000px;}
.y124{bottom:203.610000px;}
.yf8{bottom:207.390000px;}
.ya1{bottom:209.190000px;}
.ybb{bottom:209.730000px;}
.y1ab{bottom:211.710000px;}
.y6c{bottom:212.790000px;}
.y24{bottom:213.870000px;}
.y15a{bottom:214.230000px;}
.y13b{bottom:215.610000px;}
.y136{bottom:216.690000px;}
.y6b{bottom:218.010000px;}
.y9d{bottom:219.450000px;}
.y129{bottom:223.455000px;}
.y46{bottom:224.670000px;}
.y11c{bottom:228.450000px;}
.ydf{bottom:229.170000px;}
.yb3{bottom:229.530000px;}
.y7c{bottom:229.890000px;}
.y106{bottom:230.070000px;}
.y17e{bottom:231.330000px;}
.y6a{bottom:231.510000px;}
.ya9{bottom:232.050000px;}
.y115{bottom:233.670000px;}
.y152{bottom:234.210000px;}
.y82{bottom:240.150000px;}
.yba{bottom:240.870000px;}
.y125{bottom:242.355000px;}
.y23{bottom:242.490000px;}
.y1aa{bottom:242.670000px;}
.yf7{bottom:243.210000px;}
.y69{bottom:250.050000px;}
.y137{bottom:250.305000px;}
.y9c{bottom:250.590000px;}
.y11b{bottom:252.750000px;}
.y13e{bottom:252.900000px;}
.y130{bottom:253.080000px;}
.yc8{bottom:255.270000px;}
.y45{bottom:255.810000px;}
.yde{bottom:260.310000px;}
.yb2{bottom:260.490000px;}
.y7b{bottom:260.850000px;}
.y105{bottom:261.030000px;}
.y17d{bottom:262.290000px;}
.ya8{bottom:263.190000px;}
.y114{bottom:264.630000px;}
.y151{bottom:265.170000px;}
.y68{bottom:268.770000px;}
.yb9{bottom:269.490000px;}
.y81{bottom:271.290000px;}
.y22{bottom:272.190000px;}
.y1a9{bottom:273.810000px;}
.y126{bottom:281.085000px;}
.y9b{bottom:281.550000px;}
.yf6{bottom:282.630000px;}
.y138{bottom:283.935000px;}
.yc7{bottom:286.410000px;}
.y44{bottom:286.770000px;}
.y67{bottom:287.310000px;}
.y1ad{bottom:288.750000px;}
.ydd{bottom:291.270000px;}
.yb1{bottom:291.810000px;}
.y7a{bottom:291.990000px;}
.y66{bottom:292.530000px;}
.y17c{bottom:293.430000px;}
.yb8{bottom:293.790000px;}
.ya7{bottom:294.150000px;}
.y113{bottom:295.770000px;}
.y150{bottom:296.130000px;}
.y13f{bottom:297.330000px;}
.y80{bottom:302.250000px;}
.y21{bottom:303.330000px;}
.y1a8{bottom:304.770000px;}
.y65{bottom:305.850000px;}
.y9a{bottom:312.690000px;}
.yf5{bottom:313.770000px;}
.yc6{bottom:317.370000px;}
.y139{bottom:317.550000px;}
.y43{bottom:317.910000px;}
.y127{bottom:319.830000px;}
.y17b{bottom:321.870000px;}
.ydc{bottom:322.410000px;}
.yb0{bottom:322.590000px;}
.y79{bottom:322.950000px;}
.y104{bottom:323.130000px;}
.ya6{bottom:325.290000px;}
.y112{bottom:326.730000px;}
.y14f{bottom:327.270000px;}
.y20{bottom:333.075000px;}
.y64{bottom:333.435000px;}
.y1a7{bottom:335.955000px;}
.y99{bottom:343.695000px;}
.yf4{bottom:344.775000px;}
.y17a{bottom:347.835000px;}
.yc5{bottom:348.375000px;}
.y42{bottom:348.915000px;}
.ydb{bottom:353.415000px;}
.ya5{bottom:353.775000px;}
.yaf{bottom:353.955000px;}
.y78{bottom:354.135000px;}
.y111{bottom:357.915000px;}
.y14e{bottom:358.275000px;}
.y1f{bottom:362.775000px;}
.y63{bottom:364.395000px;}
.y1a6{bottom:366.915000px;}
.y98{bottom:374.835000px;}
.yf3{bottom:375.915000px;}
.y179{bottom:376.275000px;}
.yc4{bottom:379.515000px;}
.ya4{bottom:379.695000px;}
.y41{bottom:380.055000px;}
.yda{bottom:384.375000px;}
.yae{bottom:384.915000px;}
.y77{bottom:385.095000px;}
.y103{bottom:385.275000px;}
.y110{bottom:388.875000px;}
.y14d{bottom:389.415000px;}
.y1e{bottom:393.915000px;}
.y178{bottom:394.455000px;}
.y62{bottom:395.535000px;}
.y1a5{bottom:398.055000px;}
.ya3{bottom:404.175000px;}
.y97{bottom:405.795000px;}
.yf1{bottom:406.875000px;}
.yc3{bottom:410.475000px;}
.y40{bottom:411.015000px;}
.yf2{bottom:413.715000px;}
.yd9{bottom:415.695000px;}
.yad{bottom:415.875000px;}
.y76{bottom:416.235000px;}
.y10f{bottom:420.015000px;}
.y14c{bottom:420.375000px;}
.y1d{bottom:424.875000px;}
.y177{bottom:425.595000px;}
.y61{bottom:426.495000px;}
.y1a4{bottom:429.015000px;}
.y96{bottom:436.935000px;}
.yf0{bottom:438.015000px;}
.yc2{bottom:441.615000px;}
.y3f{bottom:442.155000px;}
.yd8{bottom:446.655000px;}
.yac{bottom:447.015000px;}
.y75{bottom:447.195000px;}
.y102{bottom:447.375000px;}
.y10e{bottom:450.975000px;}
.y14b{bottom:451.515000px;}
.y1c{bottom:456.015000px;}
.y176{bottom:456.555000px;}
.y60{bottom:457.635000px;}
.y1a3{bottom:460.155000px;}
.y95{bottom:467.895000px;}
.yef{bottom:468.975000px;}
.yc1{bottom:472.575000px;}
.y3e{bottom:473.115000px;}
.y101{bottom:475.995000px;}
.yd7{bottom:477.795000px;}
.y74{bottom:478.335000px;}
.y10d{bottom:482.115000px;}
.y14a{bottom:482.475000px;}
.y7f{bottom:483.735000px;}
.y1b{bottom:486.975000px;}
.y175{bottom:487.695000px;}
.y5f{bottom:488.595000px;}
.y1a2{bottom:491.115000px;}
.yee{bottom:497.595000px;}
.y94{bottom:499.035000px;}
.y100{bottom:500.295000px;}
.yc0{bottom:501.195000px;}
.y3d{bottom:504.075000px;}
.yd6{bottom:508.755000px;}
.y73{bottom:509.295000px;}
.y10c{bottom:513.075000px;}
.y149{bottom:513.615000px;}
.y1a{bottom:518.115000px;}
.y174{bottom:518.835000px;}
.y5e{bottom:519.735000px;}
.y1a1{bottom:522.255000px;}
.yed{bottom:523.515000px;}
.ybf{bottom:527.115000px;}
.y93{bottom:529.995000px;}
.y3c{bottom:535.215000px;}
.yd5{bottom:540.075000px;}
.y72{bottom:540.435000px;}
.y10b{bottom:544.215000px;}
.y148{bottom:544.575000px;}
.y19{bottom:549.075000px;}
.yec{bottom:549.435000px;}
.y171{bottom:549.795000px;}
.y5d{bottom:550.695000px;}
.ybe{bottom:551.415000px;}
.y1a0{bottom:553.215000px;}
.y3b{bottom:555.915000px;}
.y91{bottom:561.135000px;}
.yea{bottom:564.915000px;}
.y92{bottom:567.975000px;}
.yd4{bottom:570.855000px;}
.y71{bottom:571.395000px;}
.y10a{bottom:572.835000px;}
.y147{bottom:575.715000px;}
.y18{bottom:580.215000px;}
.y5c{bottom:581.835000px;}
.y19f{bottom:584.355000px;}
.y3a{bottom:586.875000px;}
.y90{bottom:592.095000px;}
.y109{bottom:596.985000px;}
.yd3{bottom:602.205000px;}
.y70{bottom:602.565000px;}
.y146{bottom:606.705000px;}
.y5b{bottom:607.965000px;}
.y170{bottom:610.125000px;}
.y17{bottom:611.205000px;}
.y18c{bottom:612.825000px;}
.ye9{bottom:614.805000px;}
.y19e{bottom:615.345000px;}
.y39{bottom:618.045000px;}
.y8f{bottom:623.265000px;}
.yd2{bottom:633.165000px;}
.y5a{bottom:633.525000px;}
.y145{bottom:637.845000px;}
.y38{bottom:638.745000px;}
.y16{bottom:642.345000px;}
.y11a{bottom:643.425000px;}
.y18b{bottom:643.965000px;}
.y19d{bottom:646.485000px;}
.y8e{bottom:654.225000px;}
.y18d{bottom:661.785000px;}
.yd1{bottom:664.305000px;}
.yb6{bottom:664.485000px;}
.y59{bottom:664.665000px;}
.ye8{bottom:664.845000px;}
.y144{bottom:668.805000px;}
.y119{bottom:669.345000px;}
.y16e{bottom:669.525000px;}
.y37{bottom:669.705000px;}
.y15{bottom:673.305000px;}
.y18a{bottom:674.925000px;}
.y19c{bottom:677.445000px;}
.y8d{bottom:685.365000px;}
.y118{bottom:693.645000px;}
.y12c{bottom:693.720000px;}
.y11f{bottom:693.900000px;}
.yd0{bottom:695.445000px;}
.y58{bottom:695.625000px;}
.y143{bottom:697.425000px;}
.y16d{bottom:700.665000px;}
.y36{bottom:700.845000px;}
.y14{bottom:704.265000px;}
.y189{bottom:706.065000px;}
.y19b{bottom:708.585000px;}
.ye7{bottom:714.705000px;}
.yff{bottom:714.885000px;}
.y8c{bottom:716.325000px;}
.y142{bottom:723.345000px;}
.ycf{bottom:726.405000px;}
.y57{bottom:726.765000px;}
.y35{bottom:731.805000px;}
.y13{bottom:735.405000px;}
.y188{bottom:737.025000px;}
.y19a{bottom:739.545000px;}
.yfe{bottom:746.025000px;}
.y8b{bottom:747.465000px;}
.y141{bottom:747.645000px;}
.y155{bottom:747.900000px;}
.yce{bottom:757.545000px;}
.y56{bottom:757.725000px;}
.y34{bottom:762.945000px;}
.ybd{bottom:764.565000px;}
.ye6{bottom:764.745000px;}
.y12{bottom:766.365000px;}
.y187{bottom:768.165000px;}
.y199{bottom:770.685000px;}
.yfd{bottom:776.985000px;}
.y8a{bottom:778.425000px;}
.ycd{bottom:788.505000px;}
.y55{bottom:788.865000px;}
.y33{bottom:793.905000px;}
.y11{bottom:796.245000px;}
.y186{bottom:799.125000px;}
.y198{bottom:801.645000px;}
.yfc{bottom:808.125000px;}
.y89{bottom:809.565000px;}
.ye4{bottom:817.665000px;}
.ycc{bottom:819.645000px;}
.y54{bottom:819.825000px;}
.y32{bottom:825.045000px;}
.y10{bottom:825.945000px;}
.y185{bottom:830.265000px;}
.y197{bottom:832.605000px;}
.yfb{bottom:836.565000px;}
.y88{bottom:840.525000px;}
.y53{bottom:850.965000px;}
.y31{bottom:856.005000px;}
.y16a{bottom:856.185000px;}
.yf{bottom:857.085000px;}
.ye0{bottom:857.805000px;}
.yfa{bottom:859.245000px;}
.y184{bottom:861.225000px;}
.y196{bottom:863.790000px;}
.y87{bottom:871.710000px;}
.y51{bottom:881.970000px;}
.y30{bottom:887.190000px;}
.ye{bottom:888.090000px;}
.y52{bottom:888.810000px;}
.y183{bottom:892.410000px;}
.y195{bottom:894.750000px;}
.y86{bottom:902.670000px;}
.y50{bottom:913.110000px;}
.y168{bottom:916.350000px;}
.y2f{bottom:918.150000px;}
.yd{bottom:921.390000px;}
.y182{bottom:923.370000px;}
.y194{bottom:925.890000px;}
.y85{bottom:933.810000px;}
.y12e{bottom:936.540000px;}
.y4f{bottom:944.070000px;}
.y2e{bottom:949.290000px;}
.y181{bottom:954.510000px;}
.y193{bottom:956.850000px;}
.yc{bottom:957.570000px;}
.y84{bottom:964.770000px;}
.y4e{bottom:975.210000px;}
.y166{bottom:975.930000px;}
.y2d{bottom:980.250000px;}
.y192{bottom:980.790000px;}
.yb{bottom:984.390000px;}
.y83{bottom:985.470000px;}
.y191{bottom:1004.550000px;}
.y4d{bottom:1006.170000px;}
.ya{bottom:1008.150000px;}
.y161{bottom:1009.950000px;}
.y2c{bottom:1011.390000px;}
.ybc{bottom:1013.010000px;}
.y190{bottom:1026.870000px;}
.y4c{bottom:1037.130000px;}
.y9{bottom:1039.110000px;}
.y2b{bottom:1042.350000px;}
.y18f{bottom:1060.170000px;}
.y4a{bottom:1068.270000px;}
.y8{bottom:1070.250000px;}
.y2a{bottom:1072.050000px;}
.y4b{bottom:1075.110000px;}
.y18e{bottom:1096.350000px;}
.y49{bottom:1099.230000px;}
.y29{bottom:1100.490000px;}
.y7{bottom:1115.610000px;}
.y28{bottom:1120.110000px;}
.y27{bottom:1147.860000px;}
.y26{bottom:1181.160000px;}
.y25{bottom:1207.620000px;}
.h23{height:28.440000px;}
.h26{height:28.620000px;}
.hd{height:38.158594px;}
.h19{height:41.940000px;}
.h2{height:46.804219px;}
.h14{height:47.340000px;}
.hb{height:47.344922px;}
.h13{height:47.376000px;}
.hc{height:48.616875px;}
.h24{height:56.880000px;}
.h25{height:57.456000px;}
.h27{height:57.636000px;}
.ha{height:58.651172px;}
.he{height:59.038594px;}
.h22{height:61.041094px;}
.h10{height:63.035156px;}
.h8{height:65.010937px;}
.h3{height:65.884219px;}
.hf{height:70.628906px;}
.h5{height:70.664062px;}
.h12{height:71.384062px;}
.h1f{height:72.360000px;}
.h6{height:72.562500px;}
.h9{height:74.704922px;}
.h11{height:75.093750px;}
.h7{height:82.676953px;}
.h4{height:84.898125px;}
.h18{height:87.859687px;}
.h20{height:96.508125px;}
.h1b{height:98.826328px;}
.h1c{height:98.969555px;}
.h16{height:99.542461px;}
.h21{height:105.996094px;}
.h1e{height:244.080000px;}
.h1a{height:347.580000px;}
.h1d{height:347.760000px;}
.h15{height:349.740000px;}
.h17{height:349.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:70.200000px;}
.w15{width:70.236000px;}
.w12{width:70.740000px;}
.w11{width:75.780000px;}
.w13{width:79.596000px;}
.w6{width:104.760000px;}
.w5{width:115.416000px;}
.w4{width:125.280000px;}
.w10{width:141.876000px;}
.wc{width:147.636000px;}
.we{width:147.960000px;}
.wf{width:151.230000px;}
.wd{width:443.955000px;}
.w7{width:637.920000px;}
.w8{width:638.100000px;}
.w9{width:655.920000px;}
.wa{width:656.100000px;}
.wb{width:673.920000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:7.380000px;}
.x46{left:9.900000px;}
.x45{left:22.530000px;}
.x5b{left:43.425000px;}
.x2c{left:49.860000px;}
.x33{left:53.100000px;}
.x30{left:55.440000px;}
.x32{left:58.530000px;}
.x2e{left:60.870000px;}
.x34{left:65.370000px;}
.x35{left:66.810000px;}
.x57{left:68.400000px;}
.x59{left:73.830000px;}
.x36{left:79.020000px;}
.x5c{left:95.580000px;}
.x52{left:106.590000px;}
.x47{left:119.340000px;}
.x4b{left:120.525000px;}
.x1{left:127.655987px;}
.x18{left:129.635987px;}
.x51{left:130.680000px;}
.x41{left:132.155987px;}
.x6{left:137.015987px;}
.x3c{left:139.355987px;}
.x21{left:142.955987px;}
.x20{left:146.735987px;}
.x44{left:148.680000px;}
.x1a{left:150.509987px;}
.x50{left:159.149987px;}
.x37{left:160.949987px;}
.x3e{left:163.289987px;}
.x3{left:170.129987px;}
.x54{left:171.210000px;}
.x5f{left:175.530000px;}
.xc{left:180.749973px;}
.xd{left:185.609987px;}
.x56{left:189.750000px;}
.x27{left:198.749987px;}
.x42{left:207.389987px;}
.x4f{left:217.109987px;}
.x1e{left:218.729987px;}
.x4{left:224.849987px;}
.x1b{left:226.829987px;}
.x13{left:245.729987px;}
.xf{left:259.229987px;}
.x1d{left:263.549987px;}
.xe{left:266.069987px;}
.x12{left:270.569987px;}
.x2b{left:282.629973px;}
.x14{left:288.794987px;}
.x60{left:290.594987px;}
.x15{left:293.114987px;}
.x10{left:296.354987px;}
.x11{left:319.394987px;}
.x55{left:320.475000px;}
.x5{left:329.834987px;}
.x28{left:336.854987px;}
.x8{left:338.114973px;}
.x9{left:344.234987px;}
.x38{left:362.054987px;}
.x5d{left:397.695000px;}
.x4a{left:407.415000px;}
.x49{left:408.495000px;}
.x2d{left:420.375000px;}
.x64{left:422.534987px;}
.x48{left:425.265000px;}
.x4c{left:426.885000px;}
.x4d{left:437.475000px;}
.x22{left:467.894987px;}
.x58{left:469.875000px;}
.x24{left:472.214973px;}
.x25{left:478.364987px;}
.x16{left:486.464973px;}
.x1c{left:489.164987px;}
.x17{left:492.584987px;}
.x53{left:514.980000px;}
.x2f{left:537.405000px;}
.x65{left:547.664987px;}
.x5e{left:550.905000px;}
.x39{left:554.864973px;}
.x3a{left:560.984987px;}
.x66{left:562.064987px;}
.x7{left:582.764987px;}
.x29{left:591.584973px;}
.x2a{left:597.704987px;}
.x63{left:604.184987px;}
.x5a{left:622.545000px;}
.x3b{left:641.084987px;}
.x3d{left:649.544987px;}
.x62{left:654.584987px;}
.x61{left:655.664987px;}
.xa{left:687.569973px;}
.x3f{left:690.089987px;}
.xb{left:693.689987px;}
.x1f{left:697.469987px;}
.x19{left:771.629987px;}
.x40{left:786.749987px;}
.x43{left:795.749987px;}
.x23{left:802.049973px;}
.x4e{left:804.749987px;}
.x2{left:808.169987px;}
.x26{left:817.349987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.400533pt;}
.ls2c{letter-spacing:-0.302933pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.043147pt;}
.ls11{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.021760pt;}
.lsf{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls32{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.239467pt;}
.ls2b{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.560000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls30{letter-spacing:5.760000pt;}
.ls2a{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.680000pt;}
.ls25{letter-spacing:8.320000pt;}
.ls37{letter-spacing:8.480000pt;}
.ls23{letter-spacing:8.960000pt;}
.ls24{letter-spacing:10.240000pt;}
.ls13{letter-spacing:10.880000pt;}
.ls33{letter-spacing:12.800000pt;}
.ls1b{letter-spacing:14.080000pt;}
.ls31{letter-spacing:14.720000pt;}
.ls39{letter-spacing:16.000000pt;}
.ls6{letter-spacing:17.280000pt;}
.ls7{letter-spacing:18.666667pt;}
.ls34{letter-spacing:23.040000pt;}
.ls3a{letter-spacing:23.680000pt;}
.ls35{letter-spacing:24.960000pt;}
.ls36{letter-spacing:30.720000pt;}
.ls28{letter-spacing:42.880000pt;}
.ls18{letter-spacing:52.480000pt;}
.ls19{letter-spacing:151.808000pt;}
.ls27{letter-spacing:155.008000pt;}
.ls38{letter-spacing:167.680000pt;}
.ls21{letter-spacing:297.760000pt;}
.ls20{letter-spacing:393.706667pt;}
.ls1f{letter-spacing:450.720000pt;}
.ls1e{letter-spacing:601.760000pt;}
.ls1d{letter-spacing:605.600000pt;}
.ls1c{letter-spacing:615.840000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws14{word-spacing:-20.104960pt;}
.ws16{word-spacing:-19.960320pt;}
.ws17{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws19{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.104000pt;}
.ws4{word-spacing:-14.926720pt;}
.ws18{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.959467pt;}
.ws6{word-spacing:-10.760320pt;}
.ws0{word-spacing:-10.319467pt;}
.ws8{word-spacing:-8.632320pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:413.511040pt;}
.ws15{word-spacing:422.761813pt;}
._3b{margin-left:-2.866560pt;}
._3{margin-left:-0.973440pt;}
._0{width:1.062400pt;}
._8{width:2.214400pt;}
._d{width:3.481600pt;}
._6{width:4.480000pt;}
._7{width:5.376000pt;}
._9{width:6.400000pt;}
._a{width:7.552000pt;}
._17{width:8.443093pt;}
._b{width:9.344000pt;}
._c{width:10.240000pt;}
._16{width:11.709653pt;}
._13{width:13.034667pt;}
._14{width:14.240000pt;}
._5{width:17.037440pt;}
._4{width:18.048000pt;}
._f{width:18.969387pt;}
._1a{width:19.942827pt;}
._1b{width:21.189120pt;}
._19{width:22.921813pt;}
._18{width:24.077440pt;}
._1c{width:25.189120pt;}
._1e{width:26.176000pt;}
._38{width:27.136000pt;}
._41{width:30.016000pt;}
._42{width:30.912000pt;}
._e{width:35.341440pt;}
._3a{width:42.986667pt;}
._3e{width:46.528000pt;}
._3f{width:47.498667pt;}
._15{width:49.336107pt;}
._1d{width:52.330667pt;}
._2b{width:135.018667pt;}
._34{width:160.945707pt;}
._43{width:167.392000pt;}
._44{width:168.650667pt;}
._32{width:188.170667pt;}
._1{width:195.931307pt;}
._3d{width:214.144000pt;}
._3c{width:215.232000pt;}
._20{width:230.250667pt;}
._21{width:237.984000pt;}
._33{width:278.357333pt;}
._27{width:290.698667pt;}
._28{width:304.938667pt;}
._35{width:335.146667pt;}
._12{width:342.565547pt;}
._2a{width:351.189333pt;}
._2{width:354.085547pt;}
._25{width:365.013333pt;}
._30{width:369.002667pt;}
._45{width:372.480000pt;}
._1f{width:391.882667pt;}
._23{width:415.146667pt;}
._31{width:447.712000pt;}
._22{width:464.906667pt;}
._36{width:468.960000pt;}
._2d{width:475.626667pt;}
._29{width:490.336000pt;}
._26{width:493.856000pt;}
._2f{width:495.114667pt;}
._24{width:554.336000pt;}
._2c{width:626.720000pt;}
._11{width:641.211947pt;}
._2e{width:664.480000pt;}
._40{width:695.616000pt;}
._46{width:749.418667pt;}
._39{width:752.138667pt;}
._10{width:753.418667pt;}
._37{width:1798.826667pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs9{font-size:88.320000pt;}
.fsa{font-size:88.448000pt;}
.fs8{font-size:88.960000pt;}
.fsc{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y167{bottom:11.520000pt;}
.y16f{bottom:11.680000pt;}
.y16c{bottom:12.040000pt;}
.y173{bottom:12.160000pt;}
.y163{bottom:13.760000pt;}
.y13a{bottom:14.400000pt;}
.y128{bottom:14.426667pt;}
.y15b{bottom:14.493333pt;}
.y165{bottom:14.720000pt;}
.y12f{bottom:16.386667pt;}
.ye5{bottom:27.200000pt;}
.yeb{bottom:27.226667pt;}
.y160{bottom:27.866667pt;}
.y169{bottom:36.800000pt;}
.y16b{bottom:37.320000pt;}
.y172{bottom:37.440000pt;}
.y6{bottom:41.600000pt;}
.y131{bottom:43.200000pt;}
.y156{bottom:43.226667pt;}
.y120{bottom:43.266667pt;}
.y162{bottom:44.480000pt;}
.y164{bottom:46.880000pt;}
.y140{bottom:53.920000pt;}
.y15f{bottom:54.813333pt;}
.y5{bottom:59.552000pt;}
.y132{bottom:73.093333pt;}
.y4{bottom:76.992000pt;}
.y121{bottom:77.693333pt;}
.y157{bottom:80.026667pt;}
.y15e{bottom:89.853333pt;}
.y3{bottom:92.032000pt;}
.y133{bottom:102.973333pt;}
.y2{bottom:106.912000pt;}
.y12d{bottom:108.293333pt;}
.y122{bottom:112.133333pt;}
.y158{bottom:116.826667pt;}
.y1{bottom:124.192000pt;}
.y134{bottom:132.826667pt;}
.y13d{bottom:134.013333pt;}
.y12b{bottom:138.106667pt;}
.ya0{bottom:138.426667pt;}
.y6f{bottom:139.546667pt;}
.y9f{bottom:143.066667pt;}
.ycb{bottom:144.186667pt;}
.y48{bottom:144.506667pt;}
.y123{bottom:146.560000pt;}
.yb5{bottom:148.826667pt;}
.y7e{bottom:149.146667pt;}
.y108{bottom:149.306667pt;}
.y11e{bottom:150.106667pt;}
.y180{bottom:150.426667pt;}
.yab{bottom:151.066667pt;}
.yb7{bottom:151.546667pt;}
.y15d{bottom:151.866667pt;}
.y117{bottom:152.506667pt;}
.y154{bottom:152.986667pt;}
.y159{bottom:153.626667pt;}
.ye3{bottom:153.786667pt;}
.y9e{bottom:154.906667pt;}
.y6e{bottom:156.186667pt;}
.ya2{bottom:158.266667pt;}
.ye2{bottom:158.426667pt;}
.yca{bottom:159.546667pt;}
.y1ac{bottom:160.506667pt;}
.y135{bottom:162.720000pt;}
.y13c{bottom:164.613333pt;}
.yf9{bottom:168.986667pt;}
.ye1{bottom:170.106667pt;}
.yc9{bottom:171.386667pt;}
.y12a{bottom:171.546667pt;}
.y47{bottom:172.186667pt;}
.y6d{bottom:172.666667pt;}
.yb4{bottom:176.506667pt;}
.y7d{bottom:176.666667pt;}
.y107{bottom:176.826667pt;}
.y11d{bottom:177.626667pt;}
.y17f{bottom:177.946667pt;}
.yaa{bottom:178.746667pt;}
.y15c{bottom:178.853333pt;}
.y116{bottom:180.026667pt;}
.y153{bottom:180.506667pt;}
.y124{bottom:180.986667pt;}
.yf8{bottom:184.346667pt;}
.ya1{bottom:185.946667pt;}
.ybb{bottom:186.426667pt;}
.y1ab{bottom:188.186667pt;}
.y6c{bottom:189.146667pt;}
.y24{bottom:190.106667pt;}
.y15a{bottom:190.426667pt;}
.y13b{bottom:191.653333pt;}
.y136{bottom:192.613333pt;}
.y6b{bottom:193.786667pt;}
.y9d{bottom:195.066667pt;}
.y129{bottom:198.626667pt;}
.y46{bottom:199.706667pt;}
.y11c{bottom:203.066667pt;}
.ydf{bottom:203.706667pt;}
.yb3{bottom:204.026667pt;}
.y7c{bottom:204.346667pt;}
.y106{bottom:204.506667pt;}
.y17e{bottom:205.626667pt;}
.y6a{bottom:205.786667pt;}
.ya9{bottom:206.266667pt;}
.y115{bottom:207.706667pt;}
.y152{bottom:208.186667pt;}
.y82{bottom:213.466667pt;}
.yba{bottom:214.106667pt;}
.y125{bottom:215.426667pt;}
.y23{bottom:215.546667pt;}
.y1aa{bottom:215.706667pt;}
.yf7{bottom:216.186667pt;}
.y69{bottom:222.266667pt;}
.y137{bottom:222.493333pt;}
.y9c{bottom:222.746667pt;}
.y11b{bottom:224.666667pt;}
.y13e{bottom:224.800000pt;}
.y130{bottom:224.960000pt;}
.yc8{bottom:226.906667pt;}
.y45{bottom:227.386667pt;}
.yde{bottom:231.386667pt;}
.yb2{bottom:231.546667pt;}
.y7b{bottom:231.866667pt;}
.y105{bottom:232.026667pt;}
.y17d{bottom:233.146667pt;}
.ya8{bottom:233.946667pt;}
.y114{bottom:235.226667pt;}
.y151{bottom:235.706667pt;}
.y68{bottom:238.906667pt;}
.yb9{bottom:239.546667pt;}
.y81{bottom:241.146667pt;}
.y22{bottom:241.946667pt;}
.y1a9{bottom:243.386667pt;}
.y126{bottom:249.853333pt;}
.y9b{bottom:250.266667pt;}
.yf6{bottom:251.226667pt;}
.y138{bottom:252.386667pt;}
.yc7{bottom:254.586667pt;}
.y44{bottom:254.906667pt;}
.y67{bottom:255.386667pt;}
.y1ad{bottom:256.666667pt;}
.ydd{bottom:258.906667pt;}
.yb1{bottom:259.386667pt;}
.y7a{bottom:259.546667pt;}
.y66{bottom:260.026667pt;}
.y17c{bottom:260.826667pt;}
.yb8{bottom:261.146667pt;}
.ya7{bottom:261.466667pt;}
.y113{bottom:262.906667pt;}
.y150{bottom:263.226667pt;}
.y13f{bottom:264.293333pt;}
.y80{bottom:268.666667pt;}
.y21{bottom:269.626667pt;}
.y1a8{bottom:270.906667pt;}
.y65{bottom:271.866667pt;}
.y9a{bottom:277.946667pt;}
.yf5{bottom:278.906667pt;}
.yc6{bottom:282.106667pt;}
.y139{bottom:282.266667pt;}
.y43{bottom:282.586667pt;}
.y127{bottom:284.293333pt;}
.y17b{bottom:286.106667pt;}
.ydc{bottom:286.586667pt;}
.yb0{bottom:286.746667pt;}
.y79{bottom:287.066667pt;}
.y104{bottom:287.226667pt;}
.ya6{bottom:289.146667pt;}
.y112{bottom:290.426667pt;}
.y14f{bottom:290.906667pt;}
.y20{bottom:296.066667pt;}
.y64{bottom:296.386667pt;}
.y1a7{bottom:298.626667pt;}
.y99{bottom:305.506667pt;}
.yf4{bottom:306.466667pt;}
.y17a{bottom:309.186667pt;}
.yc5{bottom:309.666667pt;}
.y42{bottom:310.146667pt;}
.ydb{bottom:314.146667pt;}
.ya5{bottom:314.466667pt;}
.yaf{bottom:314.626667pt;}
.y78{bottom:314.786667pt;}
.y111{bottom:318.146667pt;}
.y14e{bottom:318.466667pt;}
.y1f{bottom:322.466667pt;}
.y63{bottom:323.906667pt;}
.y1a6{bottom:326.146667pt;}
.y98{bottom:333.186667pt;}
.yf3{bottom:334.146667pt;}
.y179{bottom:334.466667pt;}
.yc4{bottom:337.346667pt;}
.ya4{bottom:337.506667pt;}
.y41{bottom:337.826667pt;}
.yda{bottom:341.666667pt;}
.yae{bottom:342.146667pt;}
.y77{bottom:342.306667pt;}
.y103{bottom:342.466667pt;}
.y110{bottom:345.666667pt;}
.y14d{bottom:346.146667pt;}
.y1e{bottom:350.146667pt;}
.y178{bottom:350.626667pt;}
.y62{bottom:351.586667pt;}
.y1a5{bottom:353.826667pt;}
.ya3{bottom:359.266667pt;}
.y97{bottom:360.706667pt;}
.yf1{bottom:361.666667pt;}
.yc3{bottom:364.866667pt;}
.y40{bottom:365.346667pt;}
.yf2{bottom:367.746667pt;}
.yd9{bottom:369.506667pt;}
.yad{bottom:369.666667pt;}
.y76{bottom:369.986667pt;}
.y10f{bottom:373.346667pt;}
.y14c{bottom:373.666667pt;}
.y1d{bottom:377.666667pt;}
.y177{bottom:378.306667pt;}
.y61{bottom:379.106667pt;}
.y1a4{bottom:381.346667pt;}
.y96{bottom:388.386667pt;}
.yf0{bottom:389.346667pt;}
.yc2{bottom:392.546667pt;}
.y3f{bottom:393.026667pt;}
.yd8{bottom:397.026667pt;}
.yac{bottom:397.346667pt;}
.y75{bottom:397.506667pt;}
.y102{bottom:397.666667pt;}
.y10e{bottom:400.866667pt;}
.y14b{bottom:401.346667pt;}
.y1c{bottom:405.346667pt;}
.y176{bottom:405.826667pt;}
.y60{bottom:406.786667pt;}
.y1a3{bottom:409.026667pt;}
.y95{bottom:415.906667pt;}
.yef{bottom:416.866667pt;}
.yc1{bottom:420.066667pt;}
.y3e{bottom:420.546667pt;}
.y101{bottom:423.106667pt;}
.yd7{bottom:424.706667pt;}
.y74{bottom:425.186667pt;}
.y10d{bottom:428.546667pt;}
.y14a{bottom:428.866667pt;}
.y7f{bottom:429.986667pt;}
.y1b{bottom:432.866667pt;}
.y175{bottom:433.506667pt;}
.y5f{bottom:434.306667pt;}
.y1a2{bottom:436.546667pt;}
.yee{bottom:442.306667pt;}
.y94{bottom:443.586667pt;}
.y100{bottom:444.706667pt;}
.yc0{bottom:445.506667pt;}
.y3d{bottom:448.066667pt;}
.yd6{bottom:452.226667pt;}
.y73{bottom:452.706667pt;}
.y10c{bottom:456.066667pt;}
.y149{bottom:456.546667pt;}
.y1a{bottom:460.546667pt;}
.y174{bottom:461.186667pt;}
.y5e{bottom:461.986667pt;}
.y1a1{bottom:464.226667pt;}
.yed{bottom:465.346667pt;}
.ybf{bottom:468.546667pt;}
.y93{bottom:471.106667pt;}
.y3c{bottom:475.746667pt;}
.yd5{bottom:480.066667pt;}
.y72{bottom:480.386667pt;}
.y10b{bottom:483.746667pt;}
.y148{bottom:484.066667pt;}
.y19{bottom:488.066667pt;}
.yec{bottom:488.386667pt;}
.y171{bottom:488.706667pt;}
.y5d{bottom:489.506667pt;}
.ybe{bottom:490.146667pt;}
.y1a0{bottom:491.746667pt;}
.y3b{bottom:494.146667pt;}
.y91{bottom:498.786667pt;}
.yea{bottom:502.146667pt;}
.y92{bottom:504.866667pt;}
.yd4{bottom:507.426667pt;}
.y71{bottom:507.906667pt;}
.y10a{bottom:509.186667pt;}
.y147{bottom:511.746667pt;}
.y18{bottom:515.746667pt;}
.y5c{bottom:517.186667pt;}
.y19f{bottom:519.426667pt;}
.y3a{bottom:521.666667pt;}
.y90{bottom:526.306667pt;}
.y109{bottom:530.653333pt;}
.yd3{bottom:535.293333pt;}
.y70{bottom:535.613333pt;}
.y146{bottom:539.293333pt;}
.y5b{bottom:540.413333pt;}
.y170{bottom:542.333333pt;}
.y17{bottom:543.293333pt;}
.y18c{bottom:544.733333pt;}
.ye9{bottom:546.493333pt;}
.y19e{bottom:546.973333pt;}
.y39{bottom:549.373333pt;}
.y8f{bottom:554.013333pt;}
.yd2{bottom:562.813333pt;}
.y5a{bottom:563.133333pt;}
.y145{bottom:566.973333pt;}
.y38{bottom:567.773333pt;}
.y16{bottom:570.973333pt;}
.y11a{bottom:571.933333pt;}
.y18b{bottom:572.413333pt;}
.y19d{bottom:574.653333pt;}
.y8e{bottom:581.533333pt;}
.y18d{bottom:588.253333pt;}
.yd1{bottom:590.493333pt;}
.yb6{bottom:590.653333pt;}
.y59{bottom:590.813333pt;}
.ye8{bottom:590.973333pt;}
.y144{bottom:594.493333pt;}
.y119{bottom:594.973333pt;}
.y16e{bottom:595.133333pt;}
.y37{bottom:595.293333pt;}
.y15{bottom:598.493333pt;}
.y18a{bottom:599.933333pt;}
.y19c{bottom:602.173333pt;}
.y8d{bottom:609.213333pt;}
.y118{bottom:616.573333pt;}
.y12c{bottom:616.640000pt;}
.y11f{bottom:616.800000pt;}
.yd0{bottom:618.173333pt;}
.y58{bottom:618.333333pt;}
.y143{bottom:619.933333pt;}
.y16d{bottom:622.813333pt;}
.y36{bottom:622.973333pt;}
.y14{bottom:626.013333pt;}
.y189{bottom:627.613333pt;}
.y19b{bottom:629.853333pt;}
.ye7{bottom:635.293333pt;}
.yff{bottom:635.453333pt;}
.y8c{bottom:636.733333pt;}
.y142{bottom:642.973333pt;}
.ycf{bottom:645.693333pt;}
.y57{bottom:646.013333pt;}
.y35{bottom:650.493333pt;}
.y13{bottom:653.693333pt;}
.y188{bottom:655.133333pt;}
.y19a{bottom:657.373333pt;}
.yfe{bottom:663.133333pt;}
.y8b{bottom:664.413333pt;}
.y141{bottom:664.573333pt;}
.y155{bottom:664.800000pt;}
.yce{bottom:673.373333pt;}
.y56{bottom:673.533333pt;}
.y34{bottom:678.173333pt;}
.ybd{bottom:679.613333pt;}
.ye6{bottom:679.773333pt;}
.y12{bottom:681.213333pt;}
.y187{bottom:682.813333pt;}
.y199{bottom:685.053333pt;}
.yfd{bottom:690.653333pt;}
.y8a{bottom:691.933333pt;}
.ycd{bottom:700.893333pt;}
.y55{bottom:701.213333pt;}
.y33{bottom:705.693333pt;}
.y11{bottom:707.773333pt;}
.y186{bottom:710.333333pt;}
.y198{bottom:712.573333pt;}
.yfc{bottom:718.333333pt;}
.y89{bottom:719.613333pt;}
.ye4{bottom:726.813333pt;}
.ycc{bottom:728.573333pt;}
.y54{bottom:728.733333pt;}
.y32{bottom:733.373333pt;}
.y10{bottom:734.173333pt;}
.y185{bottom:738.013333pt;}
.y197{bottom:740.093333pt;}
.yfb{bottom:743.613333pt;}
.y88{bottom:747.133333pt;}
.y53{bottom:756.413333pt;}
.y31{bottom:760.893333pt;}
.y16a{bottom:761.053333pt;}
.yf{bottom:761.853333pt;}
.ye0{bottom:762.493333pt;}
.yfa{bottom:763.773333pt;}
.y184{bottom:765.533333pt;}
.y196{bottom:767.813333pt;}
.y87{bottom:774.853333pt;}
.y51{bottom:783.973333pt;}
.y30{bottom:788.613333pt;}
.ye{bottom:789.413333pt;}
.y52{bottom:790.053333pt;}
.y183{bottom:793.253333pt;}
.y195{bottom:795.333333pt;}
.y86{bottom:802.373333pt;}
.y50{bottom:811.653333pt;}
.y168{bottom:814.533333pt;}
.y2f{bottom:816.133333pt;}
.yd{bottom:819.013333pt;}
.y182{bottom:820.773333pt;}
.y194{bottom:823.013333pt;}
.y85{bottom:830.053333pt;}
.y12e{bottom:832.480000pt;}
.y4f{bottom:839.173333pt;}
.y2e{bottom:843.813333pt;}
.y181{bottom:848.453333pt;}
.y193{bottom:850.533333pt;}
.yc{bottom:851.173333pt;}
.y84{bottom:857.573333pt;}
.y4e{bottom:866.853333pt;}
.y166{bottom:867.493333pt;}
.y2d{bottom:871.333333pt;}
.y192{bottom:871.813333pt;}
.yb{bottom:875.013333pt;}
.y83{bottom:875.973333pt;}
.y191{bottom:892.933333pt;}
.y4d{bottom:894.373333pt;}
.ya{bottom:896.133333pt;}
.y161{bottom:897.733333pt;}
.y2c{bottom:899.013333pt;}
.ybc{bottom:900.453333pt;}
.y190{bottom:912.773333pt;}
.y4c{bottom:921.893333pt;}
.y9{bottom:923.653333pt;}
.y2b{bottom:926.533333pt;}
.y18f{bottom:942.373333pt;}
.y4a{bottom:949.573333pt;}
.y8{bottom:951.333333pt;}
.y2a{bottom:952.933333pt;}
.y4b{bottom:955.653333pt;}
.y18e{bottom:974.533333pt;}
.y49{bottom:977.093333pt;}
.y29{bottom:978.213333pt;}
.y7{bottom:991.653333pt;}
.y28{bottom:995.653333pt;}
.y27{bottom:1020.320000pt;}
.y26{bottom:1049.920000pt;}
.y25{bottom:1073.440000pt;}
.h23{height:25.280000pt;}
.h26{height:25.440000pt;}
.hd{height:33.918750pt;}
.h19{height:37.280000pt;}
.h2{height:41.603750pt;}
.h14{height:42.080000pt;}
.hb{height:42.084375pt;}
.h13{height:42.112000pt;}
.hc{height:43.215000pt;}
.h24{height:50.560000pt;}
.h25{height:51.072000pt;}
.h27{height:51.232000pt;}
.ha{height:52.134375pt;}
.he{height:52.478750pt;}
.h22{height:54.258750pt;}
.h10{height:56.031250pt;}
.h8{height:57.787500pt;}
.h3{height:58.563750pt;}
.hf{height:62.781250pt;}
.h5{height:62.812500pt;}
.h12{height:63.452500pt;}
.h1f{height:64.320000pt;}
.h6{height:64.500000pt;}
.h9{height:66.404375pt;}
.h11{height:66.750000pt;}
.h7{height:73.490625pt;}
.h4{height:75.465000pt;}
.h18{height:78.097500pt;}
.h20{height:85.785000pt;}
.h1b{height:87.845625pt;}
.h1c{height:87.972937pt;}
.h16{height:88.482187pt;}
.h21{height:94.218750pt;}
.h1e{height:216.960000pt;}
.h1a{height:308.960000pt;}
.h1d{height:309.120000pt;}
.h15{height:310.880000pt;}
.h17{height:311.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:62.400000pt;}
.w15{width:62.432000pt;}
.w12{width:62.880000pt;}
.w11{width:67.360000pt;}
.w13{width:70.752000pt;}
.w6{width:93.120000pt;}
.w5{width:102.592000pt;}
.w4{width:111.360000pt;}
.w10{width:126.112000pt;}
.wc{width:131.232000pt;}
.we{width:131.520000pt;}
.wf{width:134.426667pt;}
.wd{width:394.626667pt;}
.w7{width:567.040000pt;}
.w8{width:567.200000pt;}
.w9{width:583.040000pt;}
.wa{width:583.200000pt;}
.wb{width:599.040000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:6.560000pt;}
.x46{left:8.800000pt;}
.x45{left:20.026667pt;}
.x5b{left:38.600000pt;}
.x2c{left:44.320000pt;}
.x33{left:47.200000pt;}
.x30{left:49.280000pt;}
.x32{left:52.026667pt;}
.x2e{left:54.106667pt;}
.x34{left:58.106667pt;}
.x35{left:59.386667pt;}
.x57{left:60.800000pt;}
.x59{left:65.626667pt;}
.x36{left:70.240000pt;}
.x5c{left:84.960000pt;}
.x52{left:94.746667pt;}
.x47{left:106.080000pt;}
.x4b{left:107.133333pt;}
.x1{left:113.471988pt;}
.x18{left:115.231988pt;}
.x51{left:116.160000pt;}
.x41{left:117.471988pt;}
.x6{left:121.791988pt;}
.x3c{left:123.871988pt;}
.x21{left:127.071988pt;}
.x20{left:130.431988pt;}
.x44{left:132.160000pt;}
.x1a{left:133.786655pt;}
.x50{left:141.466655pt;}
.x37{left:143.066655pt;}
.x3e{left:145.146655pt;}
.x3{left:151.226655pt;}
.x54{left:152.186667pt;}
.x5f{left:156.026667pt;}
.xc{left:160.666643pt;}
.xd{left:164.986655pt;}
.x56{left:168.666667pt;}
.x27{left:176.666655pt;}
.x42{left:184.346655pt;}
.x4f{left:192.986655pt;}
.x1e{left:194.426655pt;}
.x4{left:199.866655pt;}
.x1b{left:201.626655pt;}
.x13{left:218.426655pt;}
.xf{left:230.426655pt;}
.x1d{left:234.266655pt;}
.xe{left:236.506655pt;}
.x12{left:240.506655pt;}
.x2b{left:251.226643pt;}
.x14{left:256.706655pt;}
.x60{left:258.306655pt;}
.x15{left:260.546655pt;}
.x10{left:263.426655pt;}
.x11{left:283.906655pt;}
.x55{left:284.866667pt;}
.x5{left:293.186655pt;}
.x28{left:299.426655pt;}
.x8{left:300.546643pt;}
.x9{left:305.986655pt;}
.x38{left:321.826655pt;}
.x5d{left:353.506667pt;}
.x4a{left:362.146667pt;}
.x49{left:363.106667pt;}
.x2d{left:373.666667pt;}
.x64{left:375.586655pt;}
.x48{left:378.013333pt;}
.x4c{left:379.453333pt;}
.x4d{left:388.866667pt;}
.x22{left:415.906655pt;}
.x58{left:417.666667pt;}
.x24{left:419.746643pt;}
.x25{left:425.213322pt;}
.x16{left:432.413310pt;}
.x1c{left:434.813322pt;}
.x17{left:437.853322pt;}
.x53{left:457.760000pt;}
.x2f{left:477.693333pt;}
.x65{left:486.813322pt;}
.x5e{left:489.693333pt;}
.x39{left:493.213310pt;}
.x3a{left:498.653322pt;}
.x66{left:499.613322pt;}
.x7{left:518.013322pt;}
.x29{left:525.853310pt;}
.x2a{left:531.293322pt;}
.x63{left:537.053322pt;}
.x5a{left:553.373333pt;}
.x3b{left:569.853322pt;}
.x3d{left:577.373322pt;}
.x62{left:581.853322pt;}
.x61{left:582.813322pt;}
.xa{left:611.173310pt;}
.x3f{left:613.413322pt;}
.xb{left:616.613322pt;}
.x1f{left:619.973322pt;}
.x19{left:685.893322pt;}
.x40{left:699.333322pt;}
.x43{left:707.333322pt;}
.x23{left:712.933310pt;}
.x4e{left:715.333322pt;}
.x2{left:718.373322pt;}
.x26{left:726.533322pt;}
}




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