
    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_836e6aed0cbbf6f0876e6444.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.248535;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_dc83f6ea79dfb2eb64f62914.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.248535;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_b89347b41675729b19ec7c74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.768555;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_7a0cef44b74d43f1cc8d404e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.063477;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_6190ec07335c39e50fac43f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063965;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_25bcf2b1ada56f3ee5f2d587.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls5{letter-spacing:-1.146000px;}
.ls6{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.642000px;}
.ls8{letter-spacing:-0.541200px;}
.ls4a{letter-spacing:-0.236536px;}
.ls30{letter-spacing:-0.196692px;}
.lsa{letter-spacing:-0.181200px;}
.ls44{letter-spacing:-0.177086px;}
.lsb{letter-spacing:-0.150600px;}
.ls31{letter-spacing:-0.146728px;}
.ls32{letter-spacing:-0.128400px;}
.ls37{letter-spacing:-0.110679px;}
.ls42{letter-spacing:-0.103089px;}
.ls1f{letter-spacing:-0.064800px;}
.ls1b{letter-spacing:-0.057960px;}
.ls2f{letter-spacing:-0.057679px;}
.ls1e{letter-spacing:-0.047520px;}
.ls4b{letter-spacing:-0.046295px;}
.ls27{letter-spacing:-0.043920px;}
.ls18{letter-spacing:-0.034560px;}
.lsd{letter-spacing:-0.025200px;}
.ls49{letter-spacing:-0.021250px;}
.ls2d{letter-spacing:-0.020160px;}
.ls1d{letter-spacing:-0.003960px;}
.ls4{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.015938px;}
.ls28{letter-spacing:0.021250px;}
.ls1a{letter-spacing:0.025200px;}
.ls46{letter-spacing:0.033014px;}
.ls3c{letter-spacing:0.034200px;}
.ls33{letter-spacing:0.036050px;}
.ls16{letter-spacing:0.037440px;}
.ls40{letter-spacing:0.061920px;}
.ls45{letter-spacing:0.068937px;}
.ls3d{letter-spacing:0.071640px;}
.ls1{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.077760px;}
.ls52{letter-spacing:0.077791px;}
.lse{letter-spacing:0.078480px;}
.ls17{letter-spacing:0.078600px;}
.ls21{letter-spacing:0.095040px;}
.ls3{letter-spacing:0.096600px;}
.ls53{letter-spacing:0.100180px;}
.ls2e{letter-spacing:0.109200px;}
.ls13{letter-spacing:0.126000px;}
.ls2b{letter-spacing:0.137520px;}
.ls48{letter-spacing:0.142934px;}
.ls25{letter-spacing:0.144957px;}
.ls2{letter-spacing:0.178560px;}
.lsc{letter-spacing:0.178800px;}
.ls36{letter-spacing:0.186600px;}
.ls3f{letter-spacing:0.196560px;}
.ls41{letter-spacing:0.196692px;}
.ls26{letter-spacing:0.200520px;}
.ls47{letter-spacing:0.202384px;}
.ls4c{letter-spacing:0.207600px;}
.ls3e{letter-spacing:0.207720px;}
.ls4d{letter-spacing:0.211365px;}
.ls43{letter-spacing:0.218827px;}
.ls38{letter-spacing:0.218954px;}
.ls50{letter-spacing:0.244125px;}
.lsf{letter-spacing:0.245520px;}
.ls51{letter-spacing:0.276380px;}
.ls19{letter-spacing:0.325200px;}
.ls4f{letter-spacing:0.333174px;}
.ls1c{letter-spacing:0.355800px;}
.ls55{letter-spacing:0.357966px;}
.ls3a{letter-spacing:0.363600px;}
.ls10{letter-spacing:0.437760px;}
.ls0{letter-spacing:0.476280px;}
.ls23{letter-spacing:0.497520px;}
.ls39{letter-spacing:0.598423px;}
.ls29{letter-spacing:1.718280px;}
.ls22{letter-spacing:2.798280px;}
.ls35{letter-spacing:3.158280px;}
.ls2a{letter-spacing:3.878280px;}
.ls11{letter-spacing:4.598280px;}
.ls14{letter-spacing:5.318280px;}
.ls34{letter-spacing:5.678280px;}
.ls12{letter-spacing:6.758280px;}
.ls3b{letter-spacing:7.118280px;}
.ls20{letter-spacing:8.558280px;}
.ls2c{letter-spacing:11.798280px;}
.ls4e{letter-spacing:14.713172px;}
.ls24{letter-spacing:16.478280px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc2{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws22{word-spacing:-65.880000px;}
.ws3{word-spacing:-23.784011px;}
.ws2{word-spacing:-22.563720px;}
.ws4{word-spacing:-21.735720px;}
.ws12{word-spacing:-21.014280px;}
.ws1{word-spacing:-19.368000px;}
.ws26{word-spacing:-18.956527px;}
.ws27{word-spacing:-18.924272px;}
.ws21{word-spacing:-18.898974px;}
.ws1f{word-spacing:-18.716196px;}
.ws28{word-spacing:-18.696084px;}
.ws13{word-spacing:-18.680146px;}
.ws29{word-spacing:-18.658896px;}
.ws1b{word-spacing:-18.622467px;}
.ws25{word-spacing:-18.577057px;}
.ws20{word-spacing:-18.569468px;}
.ws1d{word-spacing:-18.533418px;}
.ws1c{word-spacing:-18.483455px;}
.ws24{word-spacing:-17.929320px;}
.ws23{word-spacing:-17.908320px;}
.ws1a{word-spacing:-17.830920px;}
.ws14{word-spacing:-17.721720px;}
.ws15{word-spacing:-17.717760px;}
.ws19{word-spacing:-17.701560px;}
.ws18{word-spacing:-17.677800px;}
.ws1e{word-spacing:-17.593320px;}
.ws8{word-spacing:-17.046909px;}
.wsd{word-spacing:-16.351080px;}
.wsc{word-spacing:-16.268880px;}
.ws7{word-spacing:-16.172280px;}
.wse{word-spacing:-16.021680px;}
.wsb{word-spacing:-15.991080px;}
.wsa{word-spacing:-15.631080px;}
.ws9{word-spacing:-15.506280px;}
.ws17{word-spacing:-15.338160px;}
.ws16{word-spacing:-15.300720px;}
.ws6{word-spacing:-14.598000px;}
.ws5{word-spacing:-14.526000px;}
.ws11{word-spacing:-13.204920px;}
.ws0{word-spacing:-12.879720px;}
.ws10{word-spacing:-12.845160px;}
.wsf{word-spacing:0.000000px;}
._7{margin-left:-5.262417px;}
._2{margin-left:-4.210525px;}
._1{margin-left:-2.429040px;}
._0{margin-left:-1.142280px;}
._5{width:1.943959px;}
._14{width:2.948441px;}
._6{width:3.949881px;}
._8{width:5.573319px;}
._a{width:7.246800px;}
._3{width:8.971680px;}
._4{width:10.310280px;}
._11{width:11.495561px;}
._d{width:12.517200px;}
._c{width:14.230080px;}
._13{width:15.284160px;}
._b{width:16.634201px;}
._12{width:19.302840px;}
._15{width:25.297920px;}
._16{width:27.013680px;}
._17{width:28.328400px;}
._e{width:35.377560px;}
._f{width:36.497520px;}
._10{width:38.054722px;}
._9{width:849.594000px;}
.fc4{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fsb{font-size:2.880000px;}
.fs6{font-size:6.120000px;}
.fs4{font-size:24.120000px;}
.fsf{font-size:38.880000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fsc{font-size:63.371411px;}
.fs7{font-size:65.880000px;}
.fs10{font-size:69.442923px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:78.120000px;}
.fse{font-size:82.344887px;}
.fs8{font-size:83.880000px;}
.fs9{font-size:88.416399px;}
.y0{bottom:0.000000px;}
.y18{bottom:0.720000px;}
.y3a{bottom:3.780000px;}
.y36{bottom:4.680000px;}
.y32{bottom:7.650000px;}
.y9{bottom:13.590000px;}
.y8a{bottom:14.040000px;}
.y60{bottom:15.300000px;}
.y27{bottom:17.640000px;}
.yd{bottom:24.210000px;}
.y35{bottom:24.300000px;}
.y34{bottom:25.740000px;}
.y15{bottom:26.460000px;}
.y7{bottom:27.810000px;}
.y29{bottom:36.090000px;}
.y31{bottom:36.180000px;}
.y17{bottom:40.680000px;}
.y26{bottom:41.490000px;}
.y8{bottom:42.120000px;}
.yc{bottom:51.120000px;}
.y14{bottom:56.160000px;}
.y28{bottom:58.590000px;}
.y30{bottom:64.710000px;}
.y16{bottom:65.160000px;}
.yb{bottom:66.150000px;}
.y4{bottom:67.320000px;}
.y5e{bottom:78.750000px;}
.ya{bottom:78.840000px;}
.y88{bottom:85.950000px;}
.y25{bottom:87.120000px;}
.y3{bottom:88.470000px;}
.yd4{bottom:90.450000px;}
.y2f{bottom:91.740000px;}
.y13{bottom:96.660000px;}
.yac{bottom:97.920000px;}
.y5d{bottom:102.600000px;}
.yf3{bottom:104.670000px;}
.y87{bottom:110.700000px;}
.yd3{bottom:115.200000px;}
.y24{bottom:115.650000px;}
.y5c{bottom:118.530000px;}
.y2e{bottom:120.270000px;}
.yab{bottom:122.670000px;}
.y12{bottom:128.160000px;}
.y86{bottom:135.540000px;}
.y37{bottom:136.620000px;}
.y23{bottom:138.240000px;}
.yd2{bottom:140.040000px;}
.y5{bottom:140.490000px;}
.y5b{bottom:141.030000px;}
.ye1{bottom:141.480000px;}
.y2d{bottom:147.270000px;}
.yaa{bottom:147.510000px;}
.y33{bottom:150.030000px;}
.ybd{bottom:153.540000px;}
.y11{bottom:159.750000px;}
.y85{bottom:160.290000px;}
.y22{bottom:160.740000px;}
.yd1{bottom:164.790000px;}
.y5a{bottom:165.780000px;}
.ye0{bottom:166.320000px;}
.y2c{bottom:169.860000px;}
.y2b{bottom:171.390000px;}
.ya9{bottom:172.260000px;}
.ybc{bottom:178.290000px;}
.y21{bottom:183.330000px;}
.yf2{bottom:185.040000px;}
.y2a{bottom:189.180000px;}
.yd0{bottom:189.540000px;}
.y59{bottom:190.620000px;}
.y84{bottom:191.070000px;}
.y10{bottom:191.250000px;}
.yf{bottom:195.750000px;}
.ya8{bottom:197.100000px;}
.ybb{bottom:203.040000px;}
.yf1{bottom:209.880000px;}
.y20{bottom:211.860000px;}
.ycf{bottom:214.380000px;}
.y58{bottom:215.370000px;}
.y83{bottom:215.820000px;}
.ya7{bottom:221.850000px;}
.yba{bottom:227.880000px;}
.y1f{bottom:234.360000px;}
.yf0{bottom:234.630000px;}
.yce{bottom:239.130000px;}
.y57{bottom:240.210000px;}
.y82{bottom:240.660000px;}
.ya6{bottom:246.600000px;}
.yb9{bottom:252.630000px;}
.y1e{bottom:256.860000px;}
.yef{bottom:259.380000px;}
.ycd{bottom:263.880000px;}
.y81{bottom:265.410000px;}
.y56{bottom:269.370000px;}
.ya5{bottom:271.440000px;}
.yb8{bottom:277.380000px;}
.y1d{bottom:279.450000px;}
.yee{bottom:284.250000px;}
.ycc{bottom:288.750000px;}
.y80{bottom:290.190000px;}
.y1c{bottom:301.950000px;}
.ya4{bottom:302.250000px;}
.y55{bottom:303.240000px;}
.yed{bottom:309.000000px;}
.ycb{bottom:313.500000px;}
.y1a{bottom:313.680000px;}
.ydf{bottom:315.030000px;}
.y7f{bottom:321.060000px;}
.y1b{bottom:324.480000px;}
.ya3{bottom:327.000000px;}
.y54{bottom:328.080000px;}
.yb7{bottom:333.030000px;}
.yca{bottom:338.340000px;}
.yde{bottom:339.780000px;}
.y7e{bottom:345.810000px;}
.ya2{bottom:351.840000px;}
.y53{bottom:352.830000px;}
.yb6{bottom:357.780000px;}
.ydd{bottom:364.620000px;}
.yc9{bottom:369.120000px;}
.y7d{bottom:370.560000px;}
.y19{bottom:373.980000px;}
.ya1{bottom:376.590000px;}
.y52{bottom:377.580000px;}
.yb5{bottom:382.620000px;}
.yec{bottom:389.370000px;}
.yc8{bottom:393.870000px;}
.y7c{bottom:395.400000px;}
.ya0{bottom:401.340000px;}
.y51{bottom:402.420000px;}
.yb4{bottom:407.370000px;}
.yeb{bottom:414.120000px;}
.yc7{bottom:418.620000px;}
.y7b{bottom:420.150000px;}
.y9f{bottom:426.180000px;}
.y50{bottom:427.170000px;}
.yb3{bottom:432.120000px;}
.yc6{bottom:443.460000px;}
.y7a{bottom:444.900000px;}
.y9e{bottom:450.930000px;}
.y4f{bottom:452.010000px;}
.yb2{bottom:456.960000px;}
.yc5{bottom:468.210000px;}
.y79{bottom:469.740000px;}
.y9d{bottom:475.680000px;}
.y4e{bottom:476.760000px;}
.yb1{bottom:481.710000px;}
.yc4{bottom:493.050000px;}
.ydc{bottom:494.490000px;}
.y78{bottom:500.520000px;}
.y4d{bottom:501.510000px;}
.yb0{bottom:506.550000px;}
.yc3{bottom:517.800000px;}
.ydb{bottom:519.330000px;}
.y77{bottom:525.270000px;}
.y4c{bottom:526.350000px;}
.yaf{bottom:531.300000px;}
.yc2{bottom:542.550000px;}
.yda{bottom:544.080000px;}
.y76{bottom:550.110000px;}
.y4b{bottom:551.100000px;}
.y9c{bottom:556.050000px;}
.yc1{bottom:567.390000px;}
.yd9{bottom:568.830000px;}
.y75{bottom:574.860000px;}
.y4a{bottom:575.940000px;}
.y9b{bottom:580.890000px;}
.yc0{bottom:592.140000px;}
.yd8{bottom:593.670000px;}
.y74{bottom:599.610000px;}
.y49{bottom:600.690000px;}
.y9a{bottom:605.640000px;}
.ybf{bottom:616.890000px;}
.yd7{bottom:618.420000px;}
.y73{bottom:624.450000px;}
.y48{bottom:625.440000px;}
.y99{bottom:630.390000px;}
.yd6{bottom:643.260000px;}
.ybe{bottom:646.140000px;}
.y72{bottom:649.200000px;}
.y47{bottom:650.280000px;}
.y98{bottom:655.230000px;}
.yea{bottom:668.010000px;}
.y71{bottom:674.040000px;}
.y46{bottom:675.030000px;}
.y97{bottom:680.010000px;}
.y70{bottom:698.820000px;}
.y45{bottom:699.810000px;}
.y96{bottom:704.850000px;}
.ye{bottom:713.400000px;}
.y6f{bottom:723.570000px;}
.y44{bottom:724.650000px;}
.y95{bottom:729.600000px;}
.y6e{bottom:748.410000px;}
.y43{bottom:749.400000px;}
.yae{bottom:754.350000px;}
.y94{bottom:760.380000px;}
.y6d{bottom:773.160000px;}
.y42{bottom:774.240000px;}
.yad{bottom:779.190000px;}
.y93{bottom:785.130000px;}
.ye9{bottom:797.910000px;}
.y6c{bottom:803.940000px;}
.y92{bottom:809.970000px;}
.y41{bottom:816.990000px;}
.ye8{bottom:822.750000px;}
.y6b{bottom:828.780000px;}
.y91{bottom:834.720000px;}
.ye7{bottom:847.500000px;}
.y6a{bottom:853.530000px;}
.y90{bottom:859.560000px;}
.y40{bottom:861.270000px;}
.ye6{bottom:872.340000px;}
.y69{bottom:878.280000px;}
.y8f{bottom:884.310000px;}
.y3f{bottom:890.610000px;}
.ye5{bottom:897.090000px;}
.y68{bottom:903.120000px;}
.y8e{bottom:909.060000px;}
.y3e{bottom:919.860000px;}
.ye4{bottom:921.840000px;}
.y2{bottom:925.530000px;}
.y67{bottom:927.870000px;}
.y8d{bottom:933.900000px;}
.y3d{bottom:949.200000px;}
.y66{bottom:952.620000px;}
.y8c{bottom:958.650000px;}
.y65{bottom:977.460000px;}
.y8b{bottom:983.400000px;}
.yd5{bottom:1002.210000px;}
.y6{bottom:1005.900000px;}
.y64{bottom:1008.240000px;}
.y3c{bottom:1013.550000px;}
.ye3{bottom:1027.050000px;}
.y3b{bottom:1029.210000px;}
.y63{bottom:1032.990000px;}
.y39{bottom:1044.870000px;}
.ye2{bottom:1051.800000px;}
.y62{bottom:1057.830000px;}
.y38{bottom:1060.530000px;}
.y61{bottom:1082.610000px;}
.y5f{bottom:1106.100000px;}
.y89{bottom:1106.910000px;}
.y1{bottom:1121.220000px;}
.hf{height:2.695781px;}
.h9{height:5.728535px;}
.h16{height:15.660000px;}
.h6{height:22.577168px;}
.h1d{height:28.170000px;}
.h1c{height:29.430000px;}
.h1b{height:32.361680px;}
.h14{height:39.150000px;}
.h4{height:39.425801px;}
.h1f{height:45.742852px;}
.h15{height:50.545898px;}
.h2{height:53.241680px;}
.h1e{height:55.521914px;}
.h8{height:56.274434px;}
.h7{height:57.060000px;}
.h11{height:59.317868px;}
.hb{height:61.665996px;}
.h19{height:63.393047px;}
.h1a{height:65.001017px;}
.h5{height:67.394531px;}
.h17{height:73.123066px;}
.h12{height:73.530000px;}
.h18{height:77.077709px;}
.hc{height:78.514629px;}
.hd{height:82.760858px;}
.he{height:86.040000px;}
.h3{height:173.460000px;}
.h13{height:184.800000px;}
.ha{height:212.130000px;}
.h10{height:339.420000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w5{width:1.439985px;}
.wd{width:26.190000px;}
.w9{width:95.400000px;}
.w3{width:156.990000px;}
.w7{width:258.420000px;}
.w8{width:258.570000px;}
.wb{width:318.540000px;}
.wc{width:318.630000px;}
.wa{width:422.310000px;}
.w6{width:513.750000px;}
.w4{width:533.910000px;}
.w2{width:893.069987px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:4.410000px;}
.x5{left:8.100000px;}
.x16{left:17.730000px;}
.xc{left:21.780000px;}
.x3{left:28.620000px;}
.x13{left:41.940000px;}
.x18{left:51.840000px;}
.x11{left:57.060000px;}
.x10{left:59.670000px;}
.x9{left:73.890000px;}
.x14{left:87.300000px;}
.x12{left:92.610000px;}
.x17{left:101.460000px;}
.x1b{left:102.720000px;}
.x8{left:116.010000px;}
.x1{left:127.619987px;}
.x30{left:132.839987px;}
.x2{left:142.500000px;}
.xc2{left:145.259987px;}
.xe{left:148.800000px;}
.x21{left:153.629987px;}
.x1f{left:155.550000px;}
.x68{left:158.489987px;}
.x74{left:162.809987px;}
.x4c{left:165.509987px;}
.x59{left:167.579987px;}
.xf6{left:169.109987px;}
.xd7{left:170.639987px;}
.xa0{left:172.259987px;}
.xd6{left:174.089987px;}
.x19{left:176.040000px;}
.x22{left:177.509987px;}
.xaf{left:178.679987px;}
.x39{left:181.019987px;}
.x91{left:183.719987px;}
.xf4{left:185.969987px;}
.x1e{left:189.480000px;}
.x7a{left:190.739987px;}
.xeb{left:191.909987px;}
.x10f{left:193.169987px;}
.xb9{left:194.339987px;}
.x3d{left:195.509987px;}
.xe7{left:198.299987px;}
.x54{left:199.559987px;}
.xef{left:201.719987px;}
.x31{left:203.879987px;}
.xe3{left:205.949987px;}
.x1a{left:207.000000px;}
.x32{left:209.189987px;}
.xfa{left:211.439987px;}
.x80{left:212.519987px;}
.x42{left:214.319987px;}
.x76{left:215.669987px;}
.xc9{left:217.289987px;}
.x20{left:219.540000px;}
.xd5{left:222.419987px;}
.x48{left:224.759987px;}
.xba{left:226.019987px;}
.x40{left:227.549987px;}
.x5e{left:229.169987px;}
.x92{left:230.699987px;}
.x78{left:233.219987px;}
.xf{left:234.810000px;}
.x83{left:236.369987px;}
.xa1{left:239.519987px;}
.xbb{left:241.589987px;}
.x75{left:243.119987px;}
.xff{left:244.829987px;}
.x5d{left:246.089987px;}
.xd4{left:250.229987px;}
.xc3{left:252.299987px;}
.x57{left:253.829987px;}
.xe4{left:256.079987px;}
.xfb{left:258.329987px;}
.x33{left:262.649987px;}
.xca{left:265.979987px;}
.x34{left:267.599987px;}
.xa2{left:270.479987px;}
.xfc{left:271.829987px;}
.x3a{left:273.719987px;}
.x43{left:276.599987px;}
.xc4{left:278.759987px;}
.x86{left:281.099987px;}
.x4{left:284.610000px;}
.x104{left:288.569987px;}
.x110{left:290.999987px;}
.x6{left:292.710000px;}
.x7{left:294.150000px;}
.x93{left:295.229987px;}
.xf0{left:297.209987px;}
.x69{left:299.009987px;}
.xd0{left:300.449987px;}
.x109{left:302.519987px;}
.xb0{left:304.049987px;}
.xc5{left:305.489987px;}
.x4d{left:307.739987px;}
.x113{left:309.809987px;}
.x55{left:311.249987px;}
.x7b{left:314.129987px;}
.x61{left:318.449987px;}
.xb{left:322.950000px;}
.x11b{left:324.839987px;}
.x35{left:326.189987px;}
.x94{left:329.069987px;}
.xbc{left:332.489987px;}
.x7c{left:335.369987px;}
.x95{left:337.799987px;}
.xfd{left:339.599987px;}
.x7d{left:341.039987px;}
.x41{left:342.479987px;}
.x5b{left:344.099987px;}
.x50{left:346.889987px;}
.xec{left:347.969987px;}
.x58{left:350.939987px;}
.xa3{left:352.649987px;}
.xd1{left:353.819987px;}
.x5a{left:356.069987px;}
.x25{left:357.239987px;}
.xd2{left:358.859987px;}
.x105{left:361.379987px;}
.xf1{left:362.729987px;}
.x3b{left:364.979987px;}
.xa4{left:370.379987px;}
.x6a{left:372.539987px;}
.xa5{left:379.109987px;}
.x23{left:381.629987px;}
.x106{left:385.229987px;}
.x4e{left:386.399987px;}
.x15{left:388.110000px;}
.x53{left:392.069987px;}
.xcb{left:397.559987px;}
.x89{left:398.729987px;}
.xc8{left:400.619987px;}
.xb1{left:403.229987px;}
.x56{left:406.649987px;}
.xd9{left:411.329987px;}
.x2c{left:412.409987px;}
.xa{left:414.210000px;}
.x96{left:415.559987px;}
.x62{left:416.819987px;}
.x10e{left:418.349987px;}
.x49{left:419.969987px;}
.x118{left:421.229987px;}
.xed{left:422.939987px;}
.x3c{left:425.459987px;}
.x8a{left:427.709987px;}
.x119{left:429.419987px;}
.xf2{left:431.309987px;}
.xd3{left:433.019987px;}
.x5f{left:435.269987px;}
.x26{left:436.439987px;}
.x97{left:438.599987px;}
.xdc{left:440.399987px;}
.x6b{left:441.749987px;}
.x1d{left:446.160000px;}
.x98{left:447.329987px;}
.x5c{left:449.669987px;}
.xc6{left:452.369987px;}
.x10b{left:456.599987px;}
.xa6{left:457.949987px;}
.x7e{left:460.289987px;}
.xcc{left:461.459987px;}
.x10c{left:463.979987px;}
.xa7{left:466.859987px;}
.xbd{left:468.029987px;}
.x99{left:470.459987px;}
.xa8{left:475.589987px;}
.xe0{left:478.109987px;}
.x2a{left:479.639987px;}
.xf7{left:480.989987px;}
.xb2{left:485.489987px;}
.x36{left:488.369987px;}
.xbe{left:490.979987px;}
.x117{left:492.599987px;}
.x37{left:493.679987px;}
.x8b{left:495.569987px;}
.x101{left:499.349987px;}
.xb3{left:501.329987px;}
.x8c{left:502.679987px;}
.xf3{left:505.379987px;}
.xce{left:506.729987px;}
.xb4{left:510.059987px;}
.x24{left:511.589987px;}
.x63{left:513.839987px;}
.x2d{left:514.919987px;}
.x4a{left:516.989987px;}
.xe8{left:518.069987px;}
.x2e{left:520.229987px;}
.xb5{left:523.919987px;}
.x103{left:526.349987px;}
.x8d{left:531.119987px;}
.x60{left:532.379987px;}
.xe1{left:534.899987px;}
.xe5{left:536.159987px;}
.x27{left:538.319987px;}
.x3e{left:540.389987px;}
.x114{left:544.739987px;}
.x9a{left:545.909987px;}
.x87{left:547.079987px;}
.xc7{left:549.509987px;}
.xd{left:551.130000px;}
.x88{left:554.369987px;}
.xa9{left:556.169987px;}
.x107{left:560.129987px;}
.x9b{left:561.839987px;}
.xaa{left:565.079987px;}
.x6c{left:566.969987px;}
.xcd{left:569.039987px;}
.x9c{left:570.659987px;}
.xab{left:573.809987px;}
.x64{left:577.409987px;}
.x9d{left:582.719987px;}
.x4f{left:584.609987px;}
.x100{left:586.589987px;}
.x10d{left:589.199987px;}
.xbf{left:592.439987px;}
.x2b{left:593.699987px;}
.xac{left:595.139987px;}
.x81{left:596.219987px;}
.xdd{left:597.569987px;}
.xb6{left:598.829987px;}
.x65{left:604.409987px;}
.xe9{left:605.849987px;}
.x66{left:608.009987px;}
.x71{left:610.439987px;}
.x11a{left:612.509987px;}
.xb7{left:614.669987px;}
.x38{left:616.289987px;}
.xdb{left:621.509987px;}
.x8e{left:623.489987px;}
.x28{left:628.079987px;}
.xf8{left:629.699987px;}
.x8f{left:632.219987px;}
.x44{left:634.469987px;}
.xb8{left:637.079987px;}
.xcf{left:638.609987px;}
.x46{left:641.489987px;}
.x84{left:643.109987px;}
.x90{left:645.359987px;}
.xda{left:648.509987px;}
.xde{left:651.299987px;}
.xd8{left:652.379987px;}
.x79{left:654.449987px;}
.x82{left:656.519987px;}
.xe2{left:660.119987px;}
.x111{left:661.919987px;}
.x3f{left:664.529987px;}
.x2f{left:669.299987px;}
.x9e{left:671.729987px;}
.x115{left:677.309987px;}
.x9f{left:680.459987px;}
.x6d{left:682.349987px;}
.xc0{left:685.949987px;}
.x6e{left:687.479987px;}
.xee{left:689.729987px;}
.xad{left:691.979987px;}
.x85{left:694.319987px;}
.x45{left:696.749987px;}
.x4b{left:699.089987px;}
.x72{left:701.069987px;}
.x67{left:703.319987px;}
.xf9{left:704.489987px;}
.xae{left:705.659987px;}
.xc1{left:707.279987px;}
.x73{left:708.449987px;}
.x116{left:712.049987px;}
.xdf{left:713.849987px;}
.xea{left:717.539987px;}
.x7f{left:719.879987px;}
.xe6{left:723.119987px;}
.xfe{left:725.639987px;}
.x6f{left:727.619987px;}
.xf5{left:730.589987px;}
.x70{left:732.839987px;}
.x51{left:735.180000px;}
.x112{left:736.619987px;}
.x108{left:738.149987px;}
.x77{left:744.359987px;}
.x47{left:752.909987px;}
.x102{left:758.129987px;}
.x29{left:760.289987px;}
.x1c{left:765.599987px;}
.x10a{left:770.009987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls5{letter-spacing:-1.018667pt;}
.ls6{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.570667pt;}
.ls8{letter-spacing:-0.481067pt;}
.ls4a{letter-spacing:-0.210254pt;}
.ls30{letter-spacing:-0.174837pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls44{letter-spacing:-0.157410pt;}
.lsb{letter-spacing:-0.133867pt;}
.ls31{letter-spacing:-0.130425pt;}
.ls32{letter-spacing:-0.114133pt;}
.ls37{letter-spacing:-0.098381pt;}
.ls42{letter-spacing:-0.091635pt;}
.ls1f{letter-spacing:-0.057600pt;}
.ls1b{letter-spacing:-0.051520pt;}
.ls2f{letter-spacing:-0.051271pt;}
.ls1e{letter-spacing:-0.042240pt;}
.ls4b{letter-spacing:-0.041151pt;}
.ls27{letter-spacing:-0.039040pt;}
.ls18{letter-spacing:-0.030720pt;}
.lsd{letter-spacing:-0.022400pt;}
.ls49{letter-spacing:-0.018889pt;}
.ls2d{letter-spacing:-0.017920pt;}
.ls1d{letter-spacing:-0.003520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.014167pt;}
.ls28{letter-spacing:0.018889pt;}
.ls1a{letter-spacing:0.022400pt;}
.ls46{letter-spacing:0.029346pt;}
.ls3c{letter-spacing:0.030400pt;}
.ls33{letter-spacing:0.032044pt;}
.ls16{letter-spacing:0.033280pt;}
.ls40{letter-spacing:0.055040pt;}
.ls45{letter-spacing:0.061277pt;}
.ls3d{letter-spacing:0.063680pt;}
.ls1{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.069120pt;}
.ls52{letter-spacing:0.069148pt;}
.lse{letter-spacing:0.069760pt;}
.ls17{letter-spacing:0.069867pt;}
.ls21{letter-spacing:0.084480pt;}
.ls3{letter-spacing:0.085867pt;}
.ls53{letter-spacing:0.089049pt;}
.ls2e{letter-spacing:0.097067pt;}
.ls13{letter-spacing:0.112000pt;}
.ls2b{letter-spacing:0.122240pt;}
.ls48{letter-spacing:0.127052pt;}
.ls25{letter-spacing:0.128851pt;}
.ls2{letter-spacing:0.158720pt;}
.lsc{letter-spacing:0.158933pt;}
.ls36{letter-spacing:0.165867pt;}
.ls3f{letter-spacing:0.174720pt;}
.ls41{letter-spacing:0.174837pt;}
.ls26{letter-spacing:0.178240pt;}
.ls47{letter-spacing:0.179897pt;}
.ls4c{letter-spacing:0.184533pt;}
.ls3e{letter-spacing:0.184640pt;}
.ls4d{letter-spacing:0.187880pt;}
.ls43{letter-spacing:0.194513pt;}
.ls38{letter-spacing:0.194626pt;}
.ls50{letter-spacing:0.217000pt;}
.lsf{letter-spacing:0.218240pt;}
.ls51{letter-spacing:0.245671pt;}
.ls19{letter-spacing:0.289067pt;}
.ls4f{letter-spacing:0.296155pt;}
.ls1c{letter-spacing:0.316267pt;}
.ls55{letter-spacing:0.318192pt;}
.ls3a{letter-spacing:0.323200pt;}
.ls10{letter-spacing:0.389120pt;}
.ls0{letter-spacing:0.423360pt;}
.ls23{letter-spacing:0.442240pt;}
.ls39{letter-spacing:0.531932pt;}
.ls29{letter-spacing:1.527360pt;}
.ls22{letter-spacing:2.487360pt;}
.ls35{letter-spacing:2.807360pt;}
.ls2a{letter-spacing:3.447360pt;}
.ls11{letter-spacing:4.087360pt;}
.ls14{letter-spacing:4.727360pt;}
.ls34{letter-spacing:5.047360pt;}
.ls12{letter-spacing:6.007360pt;}
.ls3b{letter-spacing:6.327360pt;}
.ls20{letter-spacing:7.607360pt;}
.ls2c{letter-spacing:10.487360pt;}
.ls4e{letter-spacing:13.078375pt;}
.ls24{letter-spacing:14.647360pt;}
.ws22{word-spacing:-58.560000pt;}
.ws3{word-spacing:-21.141343pt;}
.ws2{word-spacing:-20.056640pt;}
.ws4{word-spacing:-19.320640pt;}
.ws12{word-spacing:-18.679360pt;}
.ws1{word-spacing:-17.216000pt;}
.ws26{word-spacing:-16.850246pt;}
.ws27{word-spacing:-16.821575pt;}
.ws21{word-spacing:-16.799088pt;}
.ws1f{word-spacing:-16.636619pt;}
.ws28{word-spacing:-16.618741pt;}
.ws13{word-spacing:-16.604574pt;}
.ws29{word-spacing:-16.585685pt;}
.ws1b{word-spacing:-16.553304pt;}
.ws25{word-spacing:-16.512940pt;}
.ws20{word-spacing:-16.506193pt;}
.ws1d{word-spacing:-16.474149pt;}
.ws1c{word-spacing:-16.429737pt;}
.ws24{word-spacing:-15.937173pt;}
.ws23{word-spacing:-15.918507pt;}
.ws1a{word-spacing:-15.849707pt;}
.ws14{word-spacing:-15.752640pt;}
.ws15{word-spacing:-15.749120pt;}
.ws19{word-spacing:-15.734720pt;}
.ws18{word-spacing:-15.713600pt;}
.ws1e{word-spacing:-15.638507pt;}
.ws8{word-spacing:-15.152808pt;}
.wsd{word-spacing:-14.534293pt;}
.wsc{word-spacing:-14.461227pt;}
.ws7{word-spacing:-14.375360pt;}
.wse{word-spacing:-14.241493pt;}
.wsb{word-spacing:-14.214293pt;}
.wsa{word-spacing:-13.894293pt;}
.ws9{word-spacing:-13.783360pt;}
.ws17{word-spacing:-13.633920pt;}
.ws16{word-spacing:-13.600640pt;}
.ws6{word-spacing:-12.976000pt;}
.ws5{word-spacing:-12.912000pt;}
.ws11{word-spacing:-11.737707pt;}
.ws0{word-spacing:-11.448640pt;}
.ws10{word-spacing:-11.417920pt;}
.wsf{word-spacing:0.000000pt;}
._7{margin-left:-4.677704pt;}
._2{margin-left:-3.742688pt;}
._1{margin-left:-2.159147pt;}
._0{margin-left:-1.015360pt;}
._5{width:1.727964pt;}
._14{width:2.620836pt;}
._6{width:3.511006pt;}
._8{width:4.954061pt;}
._a{width:6.441600pt;}
._3{width:7.974827pt;}
._4{width:9.164693pt;}
._11{width:10.218276pt;}
._d{width:11.126400pt;}
._c{width:12.648960pt;}
._13{width:13.585920pt;}
._b{width:14.785956pt;}
._12{width:17.158080pt;}
._15{width:22.487040pt;}
._16{width:24.012160pt;}
._17{width:25.180800pt;}
._e{width:31.446720pt;}
._f{width:32.442240pt;}
._10{width:33.826419pt;}
._9{width:755.194667pt;}
.fsb{font-size:2.560000pt;}
.fs6{font-size:5.440000pt;}
.fs4{font-size:21.440000pt;}
.fsf{font-size:34.560000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fsc{font-size:56.330143pt;}
.fs7{font-size:58.560000pt;}
.fs10{font-size:61.727043pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:69.440000pt;}
.fse{font-size:73.195455pt;}
.fs8{font-size:74.560000pt;}
.fs9{font-size:78.592355pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:0.640000pt;}
.y3a{bottom:3.360000pt;}
.y36{bottom:4.160000pt;}
.y32{bottom:6.800000pt;}
.y9{bottom:12.080000pt;}
.y8a{bottom:12.480000pt;}
.y60{bottom:13.600000pt;}
.y27{bottom:15.680000pt;}
.yd{bottom:21.520000pt;}
.y35{bottom:21.600000pt;}
.y34{bottom:22.880000pt;}
.y15{bottom:23.520000pt;}
.y7{bottom:24.720000pt;}
.y29{bottom:32.080000pt;}
.y31{bottom:32.160000pt;}
.y17{bottom:36.160000pt;}
.y26{bottom:36.880000pt;}
.y8{bottom:37.440000pt;}
.yc{bottom:45.440000pt;}
.y14{bottom:49.920000pt;}
.y28{bottom:52.080000pt;}
.y30{bottom:57.520000pt;}
.y16{bottom:57.920000pt;}
.yb{bottom:58.800000pt;}
.y4{bottom:59.840000pt;}
.y5e{bottom:70.000000pt;}
.ya{bottom:70.080000pt;}
.y88{bottom:76.400000pt;}
.y25{bottom:77.440000pt;}
.y3{bottom:78.640000pt;}
.yd4{bottom:80.400000pt;}
.y2f{bottom:81.546667pt;}
.y13{bottom:85.920000pt;}
.yac{bottom:87.040000pt;}
.y5d{bottom:91.200000pt;}
.yf3{bottom:93.040000pt;}
.y87{bottom:98.400000pt;}
.yd3{bottom:102.400000pt;}
.y24{bottom:102.800000pt;}
.y5c{bottom:105.360000pt;}
.y2e{bottom:106.906667pt;}
.yab{bottom:109.040000pt;}
.y12{bottom:113.920000pt;}
.y86{bottom:120.480000pt;}
.y37{bottom:121.440000pt;}
.y23{bottom:122.880000pt;}
.yd2{bottom:124.480000pt;}
.y5{bottom:124.880000pt;}
.y5b{bottom:125.360000pt;}
.ye1{bottom:125.760000pt;}
.y2d{bottom:130.906667pt;}
.yaa{bottom:131.120000pt;}
.y33{bottom:133.360000pt;}
.ybd{bottom:136.480000pt;}
.y11{bottom:142.000000pt;}
.y85{bottom:142.480000pt;}
.y22{bottom:142.880000pt;}
.yd1{bottom:146.480000pt;}
.y5a{bottom:147.360000pt;}
.ye0{bottom:147.840000pt;}
.y2c{bottom:150.986667pt;}
.y2b{bottom:152.346667pt;}
.ya9{bottom:153.120000pt;}
.ybc{bottom:158.480000pt;}
.y21{bottom:162.960000pt;}
.yf2{bottom:164.480000pt;}
.y2a{bottom:168.160000pt;}
.yd0{bottom:168.480000pt;}
.y59{bottom:169.440000pt;}
.y84{bottom:169.840000pt;}
.y10{bottom:170.000000pt;}
.yf{bottom:174.000000pt;}
.ya8{bottom:175.200000pt;}
.ybb{bottom:180.480000pt;}
.yf1{bottom:186.560000pt;}
.y20{bottom:188.320000pt;}
.ycf{bottom:190.560000pt;}
.y58{bottom:191.440000pt;}
.y83{bottom:191.840000pt;}
.ya7{bottom:197.200000pt;}
.yba{bottom:202.560000pt;}
.y1f{bottom:208.320000pt;}
.yf0{bottom:208.560000pt;}
.yce{bottom:212.560000pt;}
.y57{bottom:213.520000pt;}
.y82{bottom:213.920000pt;}
.ya6{bottom:219.200000pt;}
.yb9{bottom:224.560000pt;}
.y1e{bottom:228.320000pt;}
.yef{bottom:230.560000pt;}
.ycd{bottom:234.560000pt;}
.y81{bottom:235.920000pt;}
.y56{bottom:239.440000pt;}
.ya5{bottom:241.280000pt;}
.yb8{bottom:246.560000pt;}
.y1d{bottom:248.400000pt;}
.yee{bottom:252.666667pt;}
.ycc{bottom:256.666667pt;}
.y80{bottom:257.946667pt;}
.y1c{bottom:268.400000pt;}
.ya4{bottom:268.666667pt;}
.y55{bottom:269.546667pt;}
.yed{bottom:274.666667pt;}
.ycb{bottom:278.666667pt;}
.y1a{bottom:278.826667pt;}
.ydf{bottom:280.026667pt;}
.y7f{bottom:285.386667pt;}
.y1b{bottom:288.426667pt;}
.ya3{bottom:290.666667pt;}
.y54{bottom:291.626667pt;}
.yb7{bottom:296.026667pt;}
.yca{bottom:300.746667pt;}
.yde{bottom:302.026667pt;}
.y7e{bottom:307.386667pt;}
.ya2{bottom:312.746667pt;}
.y53{bottom:313.626667pt;}
.yb6{bottom:318.026667pt;}
.ydd{bottom:324.106667pt;}
.yc9{bottom:328.106667pt;}
.y7d{bottom:329.386667pt;}
.y19{bottom:332.426667pt;}
.ya1{bottom:334.746667pt;}
.y52{bottom:335.626667pt;}
.yb5{bottom:340.106667pt;}
.yec{bottom:346.106667pt;}
.yc8{bottom:350.106667pt;}
.y7c{bottom:351.466667pt;}
.ya0{bottom:356.746667pt;}
.y51{bottom:357.706667pt;}
.yb4{bottom:362.106667pt;}
.yeb{bottom:368.106667pt;}
.yc7{bottom:372.106667pt;}
.y7b{bottom:373.466667pt;}
.y9f{bottom:378.826667pt;}
.y50{bottom:379.706667pt;}
.yb3{bottom:384.106667pt;}
.yc6{bottom:394.186667pt;}
.y7a{bottom:395.466667pt;}
.y9e{bottom:400.826667pt;}
.y4f{bottom:401.786667pt;}
.yb2{bottom:406.186667pt;}
.yc5{bottom:416.186667pt;}
.y79{bottom:417.546667pt;}
.y9d{bottom:422.826667pt;}
.y4e{bottom:423.786667pt;}
.yb1{bottom:428.186667pt;}
.yc4{bottom:438.266667pt;}
.ydc{bottom:439.546667pt;}
.y78{bottom:444.906667pt;}
.y4d{bottom:445.786667pt;}
.yb0{bottom:450.266667pt;}
.yc3{bottom:460.266667pt;}
.ydb{bottom:461.626667pt;}
.y77{bottom:466.906667pt;}
.y4c{bottom:467.866667pt;}
.yaf{bottom:472.266667pt;}
.yc2{bottom:482.266667pt;}
.yda{bottom:483.626667pt;}
.y76{bottom:488.986667pt;}
.y4b{bottom:489.866667pt;}
.y9c{bottom:494.266667pt;}
.yc1{bottom:504.346667pt;}
.yd9{bottom:505.626667pt;}
.y75{bottom:510.986667pt;}
.y4a{bottom:511.946667pt;}
.y9b{bottom:516.346667pt;}
.yc0{bottom:526.346667pt;}
.yd8{bottom:527.706667pt;}
.y74{bottom:532.986667pt;}
.y49{bottom:533.946667pt;}
.y9a{bottom:538.346667pt;}
.ybf{bottom:548.346667pt;}
.yd7{bottom:549.706667pt;}
.y73{bottom:555.066667pt;}
.y48{bottom:555.946667pt;}
.y99{bottom:560.346667pt;}
.yd6{bottom:571.786667pt;}
.ybe{bottom:574.346667pt;}
.y72{bottom:577.066667pt;}
.y47{bottom:578.026667pt;}
.y98{bottom:582.426667pt;}
.yea{bottom:593.786667pt;}
.y71{bottom:599.146667pt;}
.y46{bottom:600.026667pt;}
.y97{bottom:604.453333pt;}
.y70{bottom:621.173333pt;}
.y45{bottom:622.053333pt;}
.y96{bottom:626.533333pt;}
.ye{bottom:634.133333pt;}
.y6f{bottom:643.173333pt;}
.y44{bottom:644.133333pt;}
.y95{bottom:648.533333pt;}
.y6e{bottom:665.253333pt;}
.y43{bottom:666.133333pt;}
.yae{bottom:670.533333pt;}
.y94{bottom:675.893333pt;}
.y6d{bottom:687.253333pt;}
.y42{bottom:688.213333pt;}
.yad{bottom:692.613333pt;}
.y93{bottom:697.893333pt;}
.ye9{bottom:709.253333pt;}
.y6c{bottom:714.613333pt;}
.y92{bottom:719.973333pt;}
.y41{bottom:726.213333pt;}
.ye8{bottom:731.333333pt;}
.y6b{bottom:736.693333pt;}
.y91{bottom:741.973333pt;}
.ye7{bottom:753.333333pt;}
.y6a{bottom:758.693333pt;}
.y90{bottom:764.053333pt;}
.y40{bottom:765.573333pt;}
.ye6{bottom:775.413333pt;}
.y69{bottom:780.693333pt;}
.y8f{bottom:786.053333pt;}
.y3f{bottom:791.653333pt;}
.ye5{bottom:797.413333pt;}
.y68{bottom:802.773333pt;}
.y8e{bottom:808.053333pt;}
.y3e{bottom:817.653333pt;}
.ye4{bottom:819.413333pt;}
.y2{bottom:822.693333pt;}
.y67{bottom:824.773333pt;}
.y8d{bottom:830.133333pt;}
.y3d{bottom:843.733333pt;}
.y66{bottom:846.773333pt;}
.y8c{bottom:852.133333pt;}
.y65{bottom:868.853333pt;}
.y8b{bottom:874.133333pt;}
.yd5{bottom:890.853333pt;}
.y6{bottom:894.133333pt;}
.y64{bottom:896.213333pt;}
.y3c{bottom:900.933333pt;}
.ye3{bottom:912.933333pt;}
.y3b{bottom:914.853333pt;}
.y63{bottom:918.213333pt;}
.y39{bottom:928.773333pt;}
.ye2{bottom:934.933333pt;}
.y62{bottom:940.293333pt;}
.y38{bottom:942.693333pt;}
.y61{bottom:962.320000pt;}
.y5f{bottom:983.200000pt;}
.y89{bottom:983.920000pt;}
.y1{bottom:996.640000pt;}
.hf{height:2.396250pt;}
.h9{height:5.092031pt;}
.h16{height:13.920000pt;}
.h6{height:20.068594pt;}
.h1d{height:25.040000pt;}
.h1c{height:26.160000pt;}
.h1b{height:28.765937pt;}
.h14{height:34.800000pt;}
.h4{height:35.045156pt;}
.h1f{height:40.660312pt;}
.h15{height:44.929688pt;}
.h2{height:47.325938pt;}
.h1e{height:49.352812pt;}
.h8{height:50.021719pt;}
.h7{height:50.720000pt;}
.h11{height:52.726994pt;}
.hb{height:54.814219pt;}
.h19{height:56.349375pt;}
.h1a{height:57.778682pt;}
.h5{height:59.906250pt;}
.h17{height:64.998281pt;}
.h12{height:65.360000pt;}
.h18{height:68.513519pt;}
.hc{height:69.790781pt;}
.hd{height:73.565207pt;}
.he{height:76.480000pt;}
.h3{height:154.186667pt;}
.h13{height:164.266667pt;}
.ha{height:188.560000pt;}
.h10{height:301.706667pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w5{width:1.279987pt;}
.wd{width:23.280000pt;}
.w9{width:84.800000pt;}
.w3{width:139.546667pt;}
.w7{width:229.706667pt;}
.w8{width:229.840000pt;}
.wb{width:283.146667pt;}
.wc{width:283.226667pt;}
.wa{width:375.386667pt;}
.w6{width:456.666667pt;}
.w4{width:474.586667pt;}
.w2{width:793.839988pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:3.920000pt;}
.x5{left:7.200000pt;}
.x16{left:15.760000pt;}
.xc{left:19.360000pt;}
.x3{left:25.440000pt;}
.x13{left:37.280000pt;}
.x18{left:46.080000pt;}
.x11{left:50.720000pt;}
.x10{left:53.040000pt;}
.x9{left:65.680000pt;}
.x14{left:77.600000pt;}
.x12{left:82.320000pt;}
.x17{left:90.186667pt;}
.x1b{left:91.306667pt;}
.x8{left:103.120000pt;}
.x1{left:113.439988pt;}
.x30{left:118.079988pt;}
.x2{left:126.666667pt;}
.xc2{left:129.119988pt;}
.xe{left:132.266667pt;}
.x21{left:136.559988pt;}
.x1f{left:138.266667pt;}
.x68{left:140.879988pt;}
.x74{left:144.719988pt;}
.x4c{left:147.119988pt;}
.x59{left:148.959988pt;}
.xf6{left:150.319988pt;}
.xd7{left:151.679988pt;}
.xa0{left:153.119988pt;}
.xd6{left:154.746655pt;}
.x19{left:156.480000pt;}
.x22{left:157.786655pt;}
.xaf{left:158.826655pt;}
.x39{left:160.906655pt;}
.x91{left:163.306655pt;}
.xf4{left:165.306655pt;}
.x1e{left:168.426667pt;}
.x7a{left:169.546655pt;}
.xeb{left:170.586655pt;}
.x10f{left:171.706655pt;}
.xb9{left:172.746655pt;}
.x3d{left:173.786655pt;}
.xe7{left:176.266655pt;}
.x54{left:177.386655pt;}
.xef{left:179.306655pt;}
.x31{left:181.226655pt;}
.xe3{left:183.066655pt;}
.x1a{left:184.000000pt;}
.x32{left:185.946655pt;}
.xfa{left:187.946655pt;}
.x80{left:188.906655pt;}
.x42{left:190.506655pt;}
.x76{left:191.706655pt;}
.xc9{left:193.146655pt;}
.x20{left:195.146667pt;}
.xd5{left:197.706655pt;}
.x48{left:199.786655pt;}
.xba{left:200.906655pt;}
.x40{left:202.266655pt;}
.x5e{left:203.706655pt;}
.x92{left:205.066655pt;}
.x78{left:207.306655pt;}
.xf{left:208.720000pt;}
.x83{left:210.106655pt;}
.xa1{left:212.906655pt;}
.xbb{left:214.746655pt;}
.x75{left:216.106655pt;}
.xff{left:217.626655pt;}
.x5d{left:218.746655pt;}
.xd4{left:222.426655pt;}
.xc3{left:224.266655pt;}
.x57{left:225.626655pt;}
.xe4{left:227.626655pt;}
.xfb{left:229.626655pt;}
.x33{left:233.466655pt;}
.xca{left:236.426655pt;}
.x34{left:237.866655pt;}
.xa2{left:240.426655pt;}
.xfc{left:241.626655pt;}
.x3a{left:243.306655pt;}
.x43{left:245.866655pt;}
.xc4{left:247.786655pt;}
.x86{left:249.866655pt;}
.x4{left:252.986667pt;}
.x104{left:256.506655pt;}
.x110{left:258.666655pt;}
.x6{left:260.186667pt;}
.x7{left:261.466667pt;}
.x93{left:262.426655pt;}
.xf0{left:264.186655pt;}
.x69{left:265.786655pt;}
.xd0{left:267.066655pt;}
.x109{left:268.906655pt;}
.xb0{left:270.266655pt;}
.xc5{left:271.546655pt;}
.x4d{left:273.546655pt;}
.x113{left:275.386655pt;}
.x55{left:276.666655pt;}
.x7b{left:279.226655pt;}
.x61{left:283.066655pt;}
.xb{left:287.066667pt;}
.x11b{left:288.746655pt;}
.x35{left:289.946655pt;}
.x94{left:292.506655pt;}
.xbc{left:295.546655pt;}
.x7c{left:298.106655pt;}
.x95{left:300.266655pt;}
.xfd{left:301.866655pt;}
.x7d{left:303.146655pt;}
.x41{left:304.426655pt;}
.x5b{left:305.866655pt;}
.x50{left:308.346655pt;}
.xec{left:309.306655pt;}
.x58{left:311.946655pt;}
.xa3{left:313.466655pt;}
.xd1{left:314.506655pt;}
.x5a{left:316.506655pt;}
.x25{left:317.546655pt;}
.xd2{left:318.986655pt;}
.x105{left:321.226655pt;}
.xf1{left:322.426655pt;}
.x3b{left:324.426655pt;}
.xa4{left:329.226655pt;}
.x6a{left:331.146655pt;}
.xa5{left:336.986655pt;}
.x23{left:339.226655pt;}
.x106{left:342.426655pt;}
.x4e{left:343.466655pt;}
.x15{left:344.986667pt;}
.x53{left:348.506655pt;}
.xcb{left:353.386655pt;}
.x89{left:354.426655pt;}
.xc8{left:356.106655pt;}
.xb1{left:358.426655pt;}
.x56{left:361.466655pt;}
.xd9{left:365.626655pt;}
.x2c{left:366.586655pt;}
.xa{left:368.186667pt;}
.x96{left:369.386655pt;}
.x62{left:370.506655pt;}
.x10e{left:371.866655pt;}
.x49{left:373.306655pt;}
.x118{left:374.426655pt;}
.xed{left:375.946655pt;}
.x3c{left:378.186655pt;}
.x8a{left:380.186655pt;}
.x119{left:381.706655pt;}
.xf2{left:383.386655pt;}
.xd3{left:384.906655pt;}
.x5f{left:386.906655pt;}
.x26{left:387.946655pt;}
.x97{left:389.866655pt;}
.xdc{left:391.466655pt;}
.x6b{left:392.666655pt;}
.x1d{left:396.586667pt;}
.x98{left:397.626655pt;}
.x5c{left:399.706655pt;}
.xc6{left:402.106655pt;}
.x10b{left:405.866655pt;}
.xa6{left:407.066655pt;}
.x7e{left:409.146655pt;}
.xcc{left:410.186655pt;}
.x10c{left:412.426655pt;}
.xa7{left:414.986655pt;}
.xbd{left:416.026655pt;}
.x99{left:418.186655pt;}
.xa8{left:422.746655pt;}
.xe0{left:424.986655pt;}
.x2a{left:426.346655pt;}
.xf7{left:427.546655pt;}
.xb2{left:431.546655pt;}
.x36{left:434.106655pt;}
.xbe{left:436.426655pt;}
.x117{left:437.866655pt;}
.x37{left:438.826655pt;}
.x8b{left:440.506655pt;}
.x101{left:443.866655pt;}
.xb3{left:445.626655pt;}
.x8c{left:446.826655pt;}
.xf3{left:449.226655pt;}
.xce{left:450.426655pt;}
.xb4{left:453.386655pt;}
.x24{left:454.746655pt;}
.x63{left:456.746655pt;}
.x2d{left:457.706655pt;}
.x4a{left:459.546655pt;}
.xe8{left:460.506655pt;}
.x2e{left:462.426655pt;}
.xb5{left:465.706655pt;}
.x103{left:467.866655pt;}
.x8d{left:472.106655pt;}
.x60{left:473.226655pt;}
.xe1{left:475.466655pt;}
.xe5{left:476.586655pt;}
.x27{left:478.506655pt;}
.x3e{left:480.346655pt;}
.x114{left:484.213322pt;}
.x9a{left:485.253322pt;}
.x87{left:486.293322pt;}
.xc7{left:488.453322pt;}
.xd{left:489.893333pt;}
.x88{left:492.773322pt;}
.xa9{left:494.373322pt;}
.x107{left:497.893322pt;}
.x9b{left:499.413322pt;}
.xaa{left:502.293322pt;}
.x6c{left:503.973322pt;}
.xcd{left:505.813322pt;}
.x9c{left:507.253322pt;}
.xab{left:510.053322pt;}
.x64{left:513.253322pt;}
.x9d{left:517.973322pt;}
.x4f{left:519.653322pt;}
.x100{left:521.413322pt;}
.x10d{left:523.733322pt;}
.xbf{left:526.613322pt;}
.x2b{left:527.733322pt;}
.xac{left:529.013322pt;}
.x81{left:529.973322pt;}
.xdd{left:531.173322pt;}
.xb6{left:532.293322pt;}
.x65{left:537.253322pt;}
.xe9{left:538.533322pt;}
.x66{left:540.453322pt;}
.x71{left:542.613322pt;}
.x11a{left:544.453322pt;}
.xb7{left:546.373322pt;}
.x38{left:547.813322pt;}
.xdb{left:552.453322pt;}
.x8e{left:554.213322pt;}
.x28{left:558.293322pt;}
.xf8{left:559.733322pt;}
.x8f{left:561.973322pt;}
.x44{left:563.973322pt;}
.xb8{left:566.293322pt;}
.xcf{left:567.653322pt;}
.x46{left:570.213322pt;}
.x84{left:571.653322pt;}
.x90{left:573.653322pt;}
.xda{left:576.453322pt;}
.xde{left:578.933322pt;}
.xd8{left:579.893322pt;}
.x79{left:581.733322pt;}
.x82{left:583.573322pt;}
.xe2{left:586.773322pt;}
.x111{left:588.373322pt;}
.x3f{left:590.693322pt;}
.x2f{left:594.933322pt;}
.x9e{left:597.093322pt;}
.x115{left:602.053322pt;}
.x9f{left:604.853322pt;}
.x6d{left:606.533322pt;}
.xc0{left:609.733322pt;}
.x6e{left:611.093322pt;}
.xee{left:613.093322pt;}
.xad{left:615.093322pt;}
.x85{left:617.173322pt;}
.x45{left:619.333322pt;}
.x4b{left:621.413322pt;}
.x72{left:623.173322pt;}
.x67{left:625.173322pt;}
.xf9{left:626.213322pt;}
.xae{left:627.253322pt;}
.xc1{left:628.693322pt;}
.x73{left:629.733322pt;}
.x116{left:632.933322pt;}
.xdf{left:634.533322pt;}
.xea{left:637.813322pt;}
.x7f{left:639.893322pt;}
.xe6{left:642.773322pt;}
.xfe{left:645.013322pt;}
.x6f{left:646.773322pt;}
.xf5{left:649.413322pt;}
.x70{left:651.413322pt;}
.x51{left:653.493333pt;}
.x112{left:654.773322pt;}
.x108{left:656.133322pt;}
.x77{left:661.653322pt;}
.x47{left:669.253322pt;}
.x102{left:673.893322pt;}
.x29{left:675.813322pt;}
.x1c{left:680.533322pt;}
.x10a{left:684.453322pt;}
}




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