
    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_9c15f59d02d63e01cdc639de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.279297;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_f8dae8124655899d599cda51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.279297;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_9eebd0267200cd2c241cf27a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078125;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3fbd25ca080682785e05a6ec.woff2')format("woff");}.ff5{font-family:ff5;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);}
.v4{vertical-align:-24.120000px;}
.v5{vertical-align:-20.880000px;}
.v2{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.000000px;}
.ls1c{letter-spacing:-1.590000px;}
.ls21{letter-spacing:-1.326000px;}
.ls1d{letter-spacing:-1.260000px;}
.ls20{letter-spacing:-1.056000px;}
.ls1e{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.870000px;}
.ls1f{letter-spacing:-0.822000px;}
.ls7{letter-spacing:-0.771588px;}
.ls4{letter-spacing:-0.642000px;}
.ls3{letter-spacing:-0.541200px;}
.ls41{letter-spacing:-0.510600px;}
.ls5{letter-spacing:-0.373800px;}
.lsc{letter-spacing:-0.181200px;}
.ls2d{letter-spacing:-0.173400px;}
.ls9{letter-spacing:-0.150600px;}
.ls2b{letter-spacing:-0.126000px;}
.ls42{letter-spacing:-0.124800px;}
.ls33{letter-spacing:-0.106800px;}
.ls43{letter-spacing:-0.103800px;}
.ls1a{letter-spacing:-0.057960px;}
.ls23{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.037947px;}
.ls22{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.034560px;}
.lsb{letter-spacing:-0.025200px;}
.ls2{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.001794px;}
.ls8{letter-spacing:0.017076px;}
.ls2c{letter-spacing:0.027720px;}
.ls3d{letter-spacing:0.033480px;}
.ls1{letter-spacing:0.036000px;}
.ls26{letter-spacing:0.037440px;}
.ls3c{letter-spacing:0.054000px;}
.ls3e{letter-spacing:0.055440px;}
.ls0{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.078000px;}
.lsd{letter-spacing:0.078480px;}
.ls38{letter-spacing:0.079800px;}
.ls37{letter-spacing:0.087600px;}
.ls16{letter-spacing:0.092880px;}
.ls34{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.109200px;}
.lsa{letter-spacing:0.178800px;}
.ls25{letter-spacing:0.179280px;}
.ls24{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.186600px;}
.ls40{letter-spacing:0.193200px;}
.lsf{letter-spacing:0.211365px;}
.ls1b{letter-spacing:0.244125px;}
.lse{letter-spacing:0.245520px;}
.ls17{letter-spacing:0.306000px;}
.ls14{letter-spacing:0.387720px;}
.ls10{letter-spacing:0.437760px;}
.ls28{letter-spacing:0.546600px;}
.ls3b{letter-spacing:0.747720px;}
.ls12{letter-spacing:1.827720px;}
.ls31{letter-spacing:2.034000px;}
.ls35{letter-spacing:3.114000px;}
.ls30{letter-spacing:4.238280px;}
.ls32{letter-spacing:4.914000px;}
.ls15{letter-spacing:5.067720px;}
.ls13{letter-spacing:5.787720px;}
.ls39{letter-spacing:5.933520px;}
.ls3f{letter-spacing:6.060000px;}
.ls44{letter-spacing:6.120000px;}
.ls18{letter-spacing:10.314000px;}
.ls3a{letter-spacing:16.227720px;}
.ls27{letter-spacing:23.274000px;}
.ls2f{letter-spacing:84.158280px;}
.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;}
}
.ws1e{word-spacing:-23.781720px;}
.ws1{word-spacing:-19.368000px;}
.wsf{word-spacing:-18.924272px;}
.wse{word-spacing:-18.680146px;}
.ws1a{word-spacing:-17.830920px;}
.ws19{word-spacing:-17.723514px;}
.ws1c{word-spacing:-17.721720px;}
.ws5{word-spacing:-17.046909px;}
.ws1f{word-spacing:-16.365480px;}
.ws9{word-spacing:-16.351080px;}
.ws8{word-spacing:-16.275321px;}
.ws4{word-spacing:-16.172280px;}
.ws20{word-spacing:-16.047480px;}
.wsb{word-spacing:-16.021680px;}
.ws1b{word-spacing:-15.998880px;}
.wsa{word-spacing:-15.991080px;}
.ws7{word-spacing:-15.798480px;}
.ws6{word-spacing:-15.631080px;}
.ws13{word-spacing:-15.350280px;}
.ws1d{word-spacing:-15.311595px;}
.ws12{word-spacing:-15.182280px;}
.ws11{word-spacing:-14.912280px;}
.ws14{word-spacing:-14.846280px;}
.ws17{word-spacing:-14.832000px;}
.ws3{word-spacing:-14.598000px;}
.ws2{word-spacing:-14.526000px;}
.ws18{word-spacing:-14.490000px;}
.ws16{word-spacing:-14.472000px;}
.ws0{word-spacing:-12.879720px;}
.wsd{word-spacing:-12.845160px;}
.ws15{word-spacing:-9.684000px;}
.ws10{word-spacing:-8.864880px;}
.wsc{word-spacing:0.000000px;}
._a{margin-left:-13.285440px;}
._13{margin-left:-10.464000px;}
._5{margin-left:-4.268520px;}
._7{margin-left:-2.492280px;}
._0{margin-left:-1.142280px;}
._1{width:1.174320px;}
._4{width:2.308680px;}
._6{width:3.967920px;}
._e{width:5.335440px;}
._c{width:6.460200px;}
._d{width:7.684560px;}
._2{width:8.717400px;}
._3{width:10.274896px;}
._10{width:11.500991px;}
._16{width:12.688489px;}
._18{width:14.427720px;}
._15{width:15.679440px;}
._12{width:17.387520px;}
._19{width:18.915600px;}
._1d{width:20.159280px;}
._1c{width:21.279240px;}
._20{width:22.499507px;}
._21{width:23.562133px;}
._17{width:24.573240px;}
._1b{width:27.537840px;}
._1a{width:28.657800px;}
._1e{width:36.468000px;}
._14{width:37.884000px;}
._11{width:39.378000px;}
._f{width:43.236000px;}
._1f{width:50.427720px;}
._23{width:67.598280px;}
._9{width:78.298320px;}
._b{width:84.518280px;}
._25{width:575.590440px;}
._22{width:846.398280px;}
._8{width:849.594000px;}
._24{width:864.038280px;}
.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:36.000000px;}
.fse{font-size:38.880000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:56.880000px;}
.fs10{font-size:56.920429px;}
.fs5{font-size:60.120000px;}
.fsa{font-size:63.371411px;}
.fs7{font-size:65.880000px;}
.fsd{font-size:69.442923px;}
.fs3{font-size:72.000000px;}
.fsc{font-size:78.120000px;}
.fs8{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.780000px;}
.y32{bottom:4.680000px;}
.y17{bottom:10.350000px;}
.y9{bottom:13.590000px;}
.y97{bottom:13.620000px;}
.y95{bottom:14.040000px;}
.y13{bottom:14.310000px;}
.ydd{bottom:14.400000px;}
.y63{bottom:15.300000px;}
.y131{bottom:15.840000px;}
.yd4{bottom:16.020000px;}
.y100{bottom:16.560000px;}
.ycc{bottom:16.650000px;}
.y9e{bottom:16.740000px;}
.y26{bottom:20.610000px;}
.y31{bottom:24.300000px;}
.ya2{bottom:24.840000px;}
.y30{bottom:25.830000px;}
.yd{bottom:27.180000px;}
.y7{bottom:27.810000px;}
.y11{bottom:32.400000px;}
.ya3{bottom:36.090000px;}
.y133{bottom:36.180000px;}
.yd5{bottom:39.150000px;}
.y16{bottom:40.050000px;}
.yd1{bottom:40.410000px;}
.ycb{bottom:40.770000px;}
.y8{bottom:42.120000px;}
.y12{bottom:44.100000px;}
.y25{bottom:44.460000px;}
.ydc{bottom:45.180000px;}
.y15{bottom:53.550000px;}
.yc{bottom:54.090000px;}
.ye1{bottom:57.150000px;}
.y27{bottom:64.620000px;}
.yd3{bottom:65.970000px;}
.y4{bottom:68.760000px;}
.yb{bottom:69.120000px;}
.y2e{bottom:70.650000px;}
.ydb{bottom:75.960000px;}
.y61{bottom:80.010000px;}
.ya{bottom:81.810000px;}
.ye0{bottom:81.900000px;}
.y12f{bottom:85.230000px;}
.y3{bottom:89.910000px;}
.y24{bottom:93.150000px;}
.y93{bottom:99.000000px;}
.y2d{bottom:99.210000px;}
.y12e{bottom:99.900000px;}
.y92{bottom:103.500000px;}
.y60{bottom:104.220000px;}
.y12d{bottom:104.400000px;}
.yda{bottom:106.740000px;}
.yf{bottom:110.880000px;}
.y91{bottom:117.990000px;}
.y5f{bottom:118.980000px;}
.y23{bottom:121.680000px;}
.y90{bottom:122.490000px;}
.y12c{bottom:123.480000px;}
.y16e{bottom:124.650000px;}
.y2c{bottom:127.740000px;}
.y33{bottom:130.590000px;}
.ydf{bottom:131.490000px;}
.y8f{bottom:137.070000px;}
.yd9{bottom:137.520000px;}
.y12b{bottom:137.970000px;}
.y16d{bottom:140.400000px;}
.yba{bottom:141.570000px;}
.y12a{bottom:142.470000px;}
.y5e{bottom:143.190000px;}
.y5{bottom:143.460000px;}
.y2f{bottom:144.000000px;}
.y22{bottom:144.270000px;}
.y8e{bottom:156.060000px;}
.y2b{bottom:156.270000px;}
.yde{bottom:156.330000px;}
.y129{bottom:157.050000px;}
.yc9{bottom:157.320000px;}
.y5d{bottom:157.950000px;}
.yfe{bottom:160.560000px;}
.y21{bottom:166.770000px;}
.yd8{bottom:168.300000px;}
.y8d{bottom:175.140000px;}
.y128{bottom:176.040000px;}
.y2a{bottom:178.770000px;}
.y8c{bottom:179.640000px;}
.y29{bottom:180.300000px;}
.y28{bottom:183.240000px;}
.y5c{bottom:183.600000px;}
.yca{bottom:184.050000px;}
.y20{bottom:189.270000px;}
.y8b{bottom:194.130000px;}
.y127{bottom:195.030000px;}
.yd7{bottom:199.110000px;}
.y5b{bottom:199.350000px;}
.y8a{bottom:213.210000px;}
.y126{bottom:214.110000px;}
.yfd{bottom:218.430000px;}
.y125{bottom:218.610000px;}
.y5a{bottom:220.680000px;}
.y1f{bottom:220.860000px;}
.ycf{bottom:222.480000px;}
.y16c{bottom:230.670000px;}
.y89{bottom:232.200000px;}
.yfc{bottom:233.100000px;}
.y88{bottom:236.700000px;}
.y124{bottom:237.600000px;}
.y1e{bottom:243.360000px;}
.y59{bottom:245.700000px;}
.yce{bottom:247.230000px;}
.yb9{bottom:251.280000px;}
.yfb{bottom:252.180000px;}
.y87{bottom:252.450000px;}
.y16b{bottom:253.260000px;}
.y123{bottom:253.440000px;}
.yb8{bottom:256.500000px;}
.yfa{bottom:256.680000px;}
.y1d{bottom:265.860000px;}
.y58{bottom:266.310000px;}
.yb7{bottom:272.430000px;}
.y16a{bottom:272.880000px;}
.ycd{bottom:278.040000px;}
.y122{bottom:282.720000px;}
.y57{bottom:286.950000px;}
.y1c{bottom:288.450000px;}
.yd2{bottom:294.420000px;}
.y169{bottom:295.500000px;}
.y56{bottom:307.470000px;}
.y121{bottom:307.560000px;}
.y86{bottom:309.000000px;}
.y1b{bottom:310.980000px;}
.yf9{bottom:315.840000px;}
.y168{bottom:318.090000px;}
.y19{bottom:322.680000px;}
.y55{bottom:328.080000px;}
.y120{bottom:332.310000px;}
.y1a{bottom:333.480000px;}
.y85{bottom:333.840000px;}
.yf8{bottom:340.590000px;}
.y167{bottom:340.680000px;}
.y54{bottom:348.600000px;}
.yb6{bottom:350.850000px;}
.y11f{bottom:357.060000px;}
.y84{bottom:358.590000px;}
.y166{bottom:360.300000px;}
.yf7{bottom:365.340000px;}
.y53{bottom:369.210000px;}
.yb5{bottom:375.690000px;}
.y18{bottom:376.950000px;}
.y11e{bottom:381.900000px;}
.y165{bottom:382.800000px;}
.y83{bottom:383.340000px;}
.y52{bottom:389.730000px;}
.yf6{bottom:390.180000px;}
.yb4{bottom:400.440000px;}
.y164{bottom:402.420000px;}
.y11d{bottom:406.650000px;}
.y51{bottom:410.340000px;}
.y82{bottom:412.590000px;}
.yf5{bottom:414.930000px;}
.y146{bottom:421.770000px;}
.y163{bottom:425.010000px;}
.yb3{bottom:425.280000px;}
.y50{bottom:430.950000px;}
.y11c{bottom:431.400000px;}
.yf4{bottom:439.680000px;}
.y162{bottom:444.630000px;}
.y81{bottom:446.430000px;}
.yb2{bottom:450.030000px;}
.y4f{bottom:451.470000px;}
.y145{bottom:452.550000px;}
.y11a{bottom:462.180000px;}
.yf3{bottom:464.520000px;}
.y161{bottom:467.220000px;}
.y11b{bottom:468.930000px;}
.y80{bottom:471.180000px;}
.y4e{bottom:472.080000px;}
.yb0{bottom:480.810000px;}
.y144{bottom:483.330000px;}
.y160{bottom:486.840000px;}
.y119{bottom:487.020000px;}
.yb1{bottom:487.560000px;}
.yf2{bottom:489.270000px;}
.y4d{bottom:492.600000px;}
.y7f{bottom:496.020000px;}
.yaf{bottom:505.560000px;}
.y143{bottom:508.080000px;}
.y15f{bottom:509.430000px;}
.y118{bottom:511.770000px;}
.y4c{bottom:513.210000px;}
.yf1{bottom:514.110000px;}
.y7e{bottom:520.770000px;}
.yae{bottom:530.400000px;}
.y15e{bottom:532.020000px;}
.y142{bottom:532.920000px;}
.y117{bottom:536.610000px;}
.yf0{bottom:538.860000px;}
.y4b{bottom:542.820000px;}
.y7d{bottom:545.610000px;}
.y15d{bottom:551.640000px;}
.yad{bottom:555.150000px;}
.y141{bottom:557.670000px;}
.y116{bottom:561.360000px;}
.yef{bottom:563.610000px;}
.y4a{bottom:567.840000px;}
.y7c{bottom:570.360000px;}
.y15c{bottom:574.140000px;}
.yab{bottom:579.990000px;}
.yd0{bottom:581.520000px;}
.y140{bottom:582.420000px;}
.y115{bottom:586.110000px;}
.yac{bottom:586.740000px;}
.y49{bottom:588.450000px;}
.y7b{bottom:595.110000px;}
.y15b{bottom:596.730000px;}
.yaa{bottom:604.740000px;}
.y13f{bottom:607.260000px;}
.y48{bottom:608.970000px;}
.y114{bottom:610.950000px;}
.yee{bottom:613.200000px;}
.y15a{bottom:619.320000px;}
.y7a{bottom:619.950000px;}
.yff{bottom:625.080000px;}
.ya9{bottom:629.490000px;}
.y47{bottom:629.580000px;}
.y13e{bottom:632.010000px;}
.y159{bottom:638.940000px;}
.y113{bottom:640.200000px;}
.yed{bottom:643.980000px;}
.y79{bottom:644.700000px;}
.y46{bottom:650.100000px;}
.ya8{bottom:654.330000px;}
.y13d{bottom:656.850000px;}
.y158{bottom:661.530000px;}
.yec{bottom:668.820000px;}
.y78{bottom:669.540000px;}
.y45{bottom:670.710000px;}
.y112{bottom:674.040000px;}
.ya7{bottom:679.110000px;}
.y157{bottom:681.180000px;}
.y13c{bottom:681.630000px;}
.y44{bottom:691.350000px;}
.yeb{bottom:693.600000px;}
.y77{bottom:694.320000px;}
.y111{bottom:698.820000px;}
.y156{bottom:703.770000px;}
.ya6{bottom:703.860000px;}
.y13b{bottom:706.380000px;}
.y43{bottom:711.870000px;}
.yc8{bottom:716.100000px;}
.yea{bottom:718.350000px;}
.y110{bottom:723.570000px;}
.y76{bottom:725.100000px;}
.y14{bottom:725.370000px;}
.y155{bottom:726.360000px;}
.ya5{bottom:728.700000px;}
.y13a{bottom:731.220000px;}
.y42{bottom:732.480000px;}
.yc7{bottom:740.850000px;}
.ye8{bottom:743.190000px;}
.y10f{bottom:748.410000px;}
.y154{bottom:748.950000px;}
.y75{bottom:749.850000px;}
.ye9{bottom:749.940000px;}
.y41{bottom:753.000000px;}
.y139{bottom:755.970000px;}
.ya4{bottom:761.640000px;}
.yc6{bottom:765.690000px;}
.ye7{bottom:767.940000px;}
.y153{bottom:771.540000px;}
.y10e{bottom:773.160000px;}
.y40{bottom:773.610000px;}
.y73{bottom:774.690000px;}
.ya1{bottom:777.390000px;}
.y138{bottom:780.810000px;}
.y74{bottom:781.440000px;}
.yc5{bottom:790.440000px;}
.y152{bottom:791.160000px;}
.ye5{bottom:792.780000px;}
.y3f{bottom:794.130000px;}
.ye{bottom:795.300000px;}
.y72{bottom:799.440000px;}
.ye6{bottom:799.530000px;}
.y10d{bottom:803.940000px;}
.y137{bottom:813.750000px;}
.y3e{bottom:814.740000px;}
.yc4{bottom:815.280000px;}
.ye4{bottom:817.530000px;}
.y71{bottom:824.280000px;}
.y10c{bottom:828.780000px;}
.ya0{bottom:829.140000px;}
.y136{bottom:829.410000px;}
.y3d{bottom:835.350000px;}
.y151{bottom:836.340000px;}
.yc3{bottom:840.030000px;}
.ye3{bottom:842.280000px;}
.y6f{bottom:849.030000px;}
.y10a{bottom:853.530000px;}
.y70{bottom:855.780000px;}
.y3c{bottom:855.870000px;}
.y9f{bottom:858.480000px;}
.y150{bottom:858.930000px;}
.y10b{bottom:860.280000px;}
.ye2{bottom:867.120000px;}
.y10{bottom:869.280000px;}
.y6e{bottom:873.780000px;}
.y109{bottom:878.280000px;}
.y14f{bottom:878.550000px;}
.y135{bottom:881.250000px;}
.yd6{bottom:883.500000px;}
.y3b{bottom:886.110000px;}
.y9d{bottom:887.730000px;}
.y14e{bottom:901.050000px;}
.yc2{bottom:903.120000px;}
.y6c{bottom:904.560000px;}
.y108{bottom:909.870000px;}
.y6d{bottom:911.310000px;}
.y3a{bottom:919.860000px;}
.y2{bottom:922.560000px;}
.y9c{bottom:923.280000px;}
.y14d{bottom:923.640000px;}
.yc1{bottom:927.870000px;}
.y6b{bottom:929.400000px;}
.y134{bottom:933.090000px;}
.y107{bottom:934.620000px;}
.y14c{bottom:946.230000px;}
.y9b{bottom:952.530000px;}
.yc0{bottom:952.620000px;}
.y6a{bottom:954.150000px;}
.y39{bottom:964.140000px;}
.y14b{bottom:965.850000px;}
.ybf{bottom:977.460000px;}
.y68{bottom:978.900000px;}
.y9a{bottom:981.870000px;}
.y105{bottom:983.400000px;}
.y132{bottom:984.840000px;}
.y69{bottom:985.650000px;}
.y14a{bottom:988.440000px;}
.y106{bottom:990.150000px;}
.ybe{bottom:1002.210000px;}
.y67{bottom:1003.740000px;}
.y6{bottom:1005.900000px;}
.y149{bottom:1008.060000px;}
.y104{bottom:1008.240000px;}
.y99{bottom:1011.120000px;}
.y38{bottom:1013.550000px;}
.ybd{bottom:1027.050000px;}
.y66{bottom:1028.490000px;}
.y37{bottom:1029.210000px;}
.y148{bottom:1030.650000px;}
.y102{bottom:1032.990000px;}
.y130{bottom:1036.680000px;}
.y103{bottom:1039.740000px;}
.y98{bottom:1040.370000px;}
.y35{bottom:1044.870000px;}
.y147{bottom:1050.270000px;}
.ybc{bottom:1051.800000px;}
.y65{bottom:1053.330000px;}
.y101{bottom:1057.830000px;}
.y34{bottom:1060.530000px;}
.y96{bottom:1069.710000px;}
.y64{bottom:1082.610000px;}
.ybb{bottom:1089.360000px;}
.y62{bottom:1106.100000px;}
.y94{bottom:1106.910000px;}
.y1{bottom:1121.220000px;}
.h13{height:2.784375px;}
.h9{height:5.916797px;}
.h17{height:15.660000px;}
.h6{height:23.319141px;}
.h22{height:28.170000px;}
.h24{height:28.530000px;}
.h23{height:28.560000px;}
.h1e{height:29.430000px;}
.h2c{height:30.780000px;}
.h20{height:34.277344px;}
.h1c{height:34.804688px;}
.h25{height:34.830000px;}
.h1d{height:37.019531px;}
.h1f{height:37.589063px;}
.h15{height:39.240000px;}
.h4{height:40.721484px;}
.h26{height:51.030000px;}
.h2d{height:51.120000px;}
.h16{height:52.207031px;}
.hc{height:53.280000px;}
.h2{height:54.991406px;}
.h21{height:55.030493px;}
.h7{height:57.060000px;}
.h8{height:58.123828px;}
.h1b{height:59.797090px;}
.h11{height:61.267282px;}
.hb{height:63.692578px;}
.h1a{height:64.589063px;}
.h19{height:67.137201px;}
.h5{height:69.609375px;}
.hf{height:69.930000px;}
.he{height:73.980000px;}
.h18{height:75.526172px;}
.h12{height:79.560000px;}
.hd{height:81.094922px;}
.ha{height:127.260000px;}
.h3{height:176.430000px;}
.h14{height:193.710000px;}
.h2a{height:215.490000px;}
.h29{height:287.100000px;}
.h10{height:348.420000px;}
.h2b{height:466.080000px;}
.h27{height:515.580000px;}
.h28{height:517.470000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w5{width:1.439985px;}
.wd{width:26.190000px;}
.w1b{width:84.240000px;}
.w11{width:87.060000px;}
.w9{width:95.400000px;}
.w1c{width:115.920000px;}
.w12{width:151.110000px;}
.wf{width:151.320000px;}
.w3{width:156.990000px;}
.w17{width:170.100000px;}
.w16{width:191.370000px;}
.w1a{width:207.840000px;}
.w19{width:226.290000px;}
.w18{width:235.020000px;}
.w10{width:244.620000px;}
.w7{width:247.050000px;}
.w8{width:286.860000px;}
.w14{width:309.090000px;}
.wb{width:318.540000px;}
.wc{width:318.630000px;}
.w15{width:328.800000px;}
.wa{width:422.310000px;}
.w6{width:513.750000px;}
.w4{width:533.910000px;}
.w13{width:637.890000px;}
.we{width:893.069973px;}
.w2{width:893.069987px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:3.150000px;}
.x44{left:4.410000px;}
.x5{left:8.100000px;}
.x5f{left:13.680000px;}
.x12{left:17.730000px;}
.x45{left:19.170000px;}
.x8{left:21.780000px;}
.x5a{left:23.130000px;}
.x95{left:26.370000px;}
.x3{left:28.620000px;}
.x4a{left:32.760000px;}
.x96{left:34.380000px;}
.x97{left:36.450000px;}
.xf{left:41.940000px;}
.x49{left:44.010000px;}
.x4b{left:53.730000px;}
.xd{left:57.060000px;}
.xc{left:59.670000px;}
.x93{left:79.110000px;}
.x10{left:87.300000px;}
.xe{left:92.610000px;}
.x92{left:93.810000px;}
.x7e{left:99.120000px;}
.x13{left:101.460000px;}
.x16{left:102.720000px;}
.x14{left:105.300000px;}
.x59{left:113.700000px;}
.x1{left:127.619987px;}
.x3b{left:132.209987px;}
.x15{left:135.900000px;}
.x91{left:137.519987px;}
.x2{left:142.500000px;}
.xa{left:148.800000px;}
.x5d{left:151.770000px;}
.x3a{left:153.089987px;}
.x1a{left:155.550000px;}
.xa6{left:159.749987px;}
.x1e{left:168.389987px;}
.x70{left:171.539987px;}
.x51{left:177.419973px;}
.x23{left:182.279987px;}
.x19{left:189.480000px;}
.x6b{left:192.449987px;}
.x72{left:193.619987px;}
.xad{left:194.699987px;}
.x7f{left:195.779973px;}
.x71{left:197.399987px;}
.x60{left:199.559987px;}
.xb0{left:200.729987px;}
.x80{left:205.679987px;}
.x67{left:208.379973px;}
.x6c{left:210.629987px;}
.x2e{left:212.879987px;}
.x4f{left:217.829973px;}
.x1b{left:219.540000px;}
.x50{left:222.779987px;}
.xb3{left:230.789987px;}
.xb{left:234.810000px;}
.x32{left:239.339987px;}
.xaa{left:243.659987px;}
.x9d{left:249.869987px;}
.x98{left:256.709987px;}
.x63{left:260.489973px;}
.xa1{left:261.659987px;}
.x1c{left:262.739987px;}
.x64{left:265.439987px;}
.x9f{left:271.289987px;}
.xae{left:272.819987px;}
.xb1{left:273.899987px;}
.x46{left:280.380000px;}
.x2f{left:282.359987px;}
.x4{left:284.610000px;}
.x99{left:290.009987px;}
.x6{left:292.710000px;}
.x7{left:294.150000px;}
.x42{left:297.299987px;}
.xa8{left:300.719987px;}
.x87{left:304.859973px;}
.x1d{left:308.369987px;}
.xa7{left:309.719987px;}
.x21{left:311.429987px;}
.x88{left:314.759987px;}
.xa9{left:316.829987px;}
.x5e{left:318.990000px;}
.x1f{left:326.999987px;}
.x5c{left:328.800000px;}
.x24{left:330.059987px;}
.x68{left:332.129973px;}
.x22{left:335.279987px;}
.x69{left:342.029987px;}
.x52{left:354.089987px;}
.x6e{left:355.709987px;}
.xaf{left:358.049987px;}
.x2b{left:364.619987px;}
.x33{left:367.049973px;}
.x8b{left:368.849987px;}
.x34{left:371.999987px;}
.x61{left:375.509987px;}
.x62{left:377.669987px;}
.x6f{left:381.539987px;}
.x11{left:388.110000px;}
.x8c{left:394.679987px;}
.xab{left:396.029987px;}
.x81{left:412.949973px;}
.x20{left:415.469987px;}
.x25{left:417.449987px;}
.xa0{left:420.059987px;}
.x73{left:421.409987px;}
.x82{left:422.849987px;}
.x3c{left:424.469987px;}
.x2c{left:431.669987px;}
.x53{left:434.549987px;}
.x5b{left:436.710000px;}
.x8f{left:441.029987px;}
.x18{left:446.160000px;}
.x3d{left:450.299987px;}
.x74{left:460.289987px;}
.x9a{left:476.759987px;}
.xa5{left:482.519987px;}
.x26{left:486.929987px;}
.x75{left:490.709987px;}
.x83{left:495.839973px;}
.xb2{left:497.459987px;}
.xa3{left:500.609987px;}
.xa4{left:503.489987px;}
.x65{left:504.659973px;}
.x84{left:505.739987px;}
.x89{left:506.909987px;}
.x3e{left:510.419987px;}
.x66{left:514.559987px;}
.x47{left:525.810000px;}
.x57{left:530.399987px;}
.x9{left:531.660000px;}
.x7b{left:534.899987px;}
.x3f{left:536.249987px;}
.x90{left:548.609987px;}
.x6d{left:564.359987px;}
.x8d{left:568.319987px;}
.x7c{left:569.759987px;}
.x76{left:574.529987px;}
.x27{left:576.689987px;}
.x2d{left:580.019987px;}
.x4d{left:581.999973px;}
.x4e{left:586.949987px;}
.x30{left:590.909987px;}
.x40{left:593.069987px;}
.x35{left:595.319973px;}
.x36{left:600.269987px;}
.x77{left:606.569987px;}
.x8a{left:612.599987px;}
.x48{left:613.680000px;}
.x54{left:614.759987px;}
.x8e{left:618.359987px;}
.xac{left:623.669987px;}
.x56{left:632.760000px;}
.x58{left:636.450000px;}
.x41{left:637.709987px;}
.x78{left:638.789987px;}
.x94{left:648.870000px;}
.x6a{left:652.109973px;}
.x55{left:662.009987px;}
.x9e{left:665.609987px;}
.x7d{left:667.769987px;}
.x29{left:670.739987px;}
.x37{left:684.239973px;}
.x79{left:687.389987px;}
.x38{left:689.189987px;}
.x85{left:692.609973px;}
.xa2{left:701.339987px;}
.x86{left:702.509987px;}
.x9b{left:710.969987px;}
.x28{left:731.849987px;}
.x43{left:735.180000px;}
.x7a{left:737.429987px;}
.x9c{left:742.199987px;}
.x31{left:746.069987px;}
.x39{left:756.329973px;}
.x2a{left:761.099987px;}
.x17{left:765.599987px;}
@media print{
.v4{vertical-align:-21.440000pt;}
.v5{vertical-align:-18.560000pt;}
.v2{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.000000pt;}
.ls1c{letter-spacing:-1.413333pt;}
.ls21{letter-spacing:-1.178667pt;}
.ls1d{letter-spacing:-1.120000pt;}
.ls20{letter-spacing:-0.938667pt;}
.ls1e{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.773333pt;}
.ls1f{letter-spacing:-0.730667pt;}
.ls7{letter-spacing:-0.685856pt;}
.ls4{letter-spacing:-0.570667pt;}
.ls3{letter-spacing:-0.481067pt;}
.ls41{letter-spacing:-0.453867pt;}
.ls5{letter-spacing:-0.332267pt;}
.lsc{letter-spacing:-0.161067pt;}
.ls2d{letter-spacing:-0.154133pt;}
.ls9{letter-spacing:-0.133867pt;}
.ls2b{letter-spacing:-0.112000pt;}
.ls42{letter-spacing:-0.110933pt;}
.ls33{letter-spacing:-0.094933pt;}
.ls43{letter-spacing:-0.092267pt;}
.ls1a{letter-spacing:-0.051520pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.033731pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.030720pt;}
.lsb{letter-spacing:-0.022400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.001595pt;}
.ls8{letter-spacing:0.015179pt;}
.ls2c{letter-spacing:0.024640pt;}
.ls3d{letter-spacing:0.029760pt;}
.ls1{letter-spacing:0.032000pt;}
.ls26{letter-spacing:0.033280pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls3e{letter-spacing:0.049280pt;}
.ls0{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.069333pt;}
.lsd{letter-spacing:0.069760pt;}
.ls38{letter-spacing:0.070933pt;}
.ls37{letter-spacing:0.077867pt;}
.ls16{letter-spacing:0.082560pt;}
.ls34{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.097067pt;}
.lsa{letter-spacing:0.158933pt;}
.ls25{letter-spacing:0.159360pt;}
.ls24{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.165867pt;}
.ls40{letter-spacing:0.171733pt;}
.lsf{letter-spacing:0.187880pt;}
.ls1b{letter-spacing:0.217000pt;}
.lse{letter-spacing:0.218240pt;}
.ls17{letter-spacing:0.272000pt;}
.ls14{letter-spacing:0.344640pt;}
.ls10{letter-spacing:0.389120pt;}
.ls28{letter-spacing:0.485867pt;}
.ls3b{letter-spacing:0.664640pt;}
.ls12{letter-spacing:1.624640pt;}
.ls31{letter-spacing:1.808000pt;}
.ls35{letter-spacing:2.768000pt;}
.ls30{letter-spacing:3.767360pt;}
.ls32{letter-spacing:4.368000pt;}
.ls15{letter-spacing:4.504640pt;}
.ls13{letter-spacing:5.144640pt;}
.ls39{letter-spacing:5.274240pt;}
.ls3f{letter-spacing:5.386667pt;}
.ls44{letter-spacing:5.440000pt;}
.ls18{letter-spacing:9.168000pt;}
.ls3a{letter-spacing:14.424640pt;}
.ls27{letter-spacing:20.688000pt;}
.ls2f{letter-spacing:74.807360pt;}
.ws1e{word-spacing:-21.139307pt;}
.ws1{word-spacing:-17.216000pt;}
.wsf{word-spacing:-16.821575pt;}
.wse{word-spacing:-16.604574pt;}
.ws1a{word-spacing:-15.849707pt;}
.ws19{word-spacing:-15.754235pt;}
.ws1c{word-spacing:-15.752640pt;}
.ws5{word-spacing:-15.152808pt;}
.ws1f{word-spacing:-14.547093pt;}
.ws9{word-spacing:-14.534293pt;}
.ws8{word-spacing:-14.466952pt;}
.ws4{word-spacing:-14.375360pt;}
.ws20{word-spacing:-14.264427pt;}
.wsb{word-spacing:-14.241493pt;}
.ws1b{word-spacing:-14.221227pt;}
.wsa{word-spacing:-14.214293pt;}
.ws7{word-spacing:-14.043093pt;}
.ws6{word-spacing:-13.894293pt;}
.ws13{word-spacing:-13.644693pt;}
.ws1d{word-spacing:-13.610307pt;}
.ws12{word-spacing:-13.495360pt;}
.ws11{word-spacing:-13.255360pt;}
.ws14{word-spacing:-13.196693pt;}
.ws17{word-spacing:-13.184000pt;}
.ws3{word-spacing:-12.976000pt;}
.ws2{word-spacing:-12.912000pt;}
.ws18{word-spacing:-12.880000pt;}
.ws16{word-spacing:-12.864000pt;}
.ws0{word-spacing:-11.448640pt;}
.wsd{word-spacing:-11.417920pt;}
.ws15{word-spacing:-8.608000pt;}
.ws10{word-spacing:-7.879893pt;}
.wsc{word-spacing:0.000000pt;}
._a{margin-left:-11.809280pt;}
._13{margin-left:-9.301333pt;}
._5{margin-left:-3.794240pt;}
._7{margin-left:-2.215360pt;}
._0{margin-left:-1.015360pt;}
._1{width:1.043840pt;}
._4{width:2.052160pt;}
._6{width:3.527040pt;}
._e{width:4.742613pt;}
._c{width:5.742400pt;}
._d{width:6.830720pt;}
._2{width:7.748800pt;}
._3{width:9.133241pt;}
._10{width:10.223103pt;}
._16{width:11.278657pt;}
._18{width:12.824640pt;}
._15{width:13.937280pt;}
._12{width:15.455573pt;}
._19{width:16.813867pt;}
._1d{width:17.919360pt;}
._1c{width:18.914880pt;}
._20{width:19.999562pt;}
._21{width:20.944118pt;}
._17{width:21.842880pt;}
._1b{width:24.478080pt;}
._1a{width:25.473600pt;}
._1e{width:32.416000pt;}
._14{width:33.674667pt;}
._11{width:35.002667pt;}
._f{width:38.432000pt;}
._1f{width:44.824640pt;}
._23{width:60.087360pt;}
._9{width:69.598507pt;}
._b{width:75.127360pt;}
._25{width:511.635947pt;}
._22{width:752.354027pt;}
._8{width:755.194667pt;}
._24{width:768.034027pt;}
.fsb{font-size:2.560000pt;}
.fs6{font-size:5.440000pt;}
.fs4{font-size:21.440000pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:34.560000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:50.560000pt;}
.fs10{font-size:50.595937pt;}
.fs5{font-size:53.440000pt;}
.fsa{font-size:56.330143pt;}
.fs7{font-size:58.560000pt;}
.fsd{font-size:61.727043pt;}
.fs3{font-size:64.000000pt;}
.fsc{font-size:69.440000pt;}
.fs8{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:3.360000pt;}
.y32{bottom:4.160000pt;}
.y17{bottom:9.200000pt;}
.y9{bottom:12.080000pt;}
.y97{bottom:12.106667pt;}
.y95{bottom:12.480000pt;}
.y13{bottom:12.720000pt;}
.ydd{bottom:12.800000pt;}
.y63{bottom:13.600000pt;}
.y131{bottom:14.080000pt;}
.yd4{bottom:14.240000pt;}
.y100{bottom:14.720000pt;}
.ycc{bottom:14.800000pt;}
.y9e{bottom:14.880000pt;}
.y26{bottom:18.320000pt;}
.y31{bottom:21.600000pt;}
.ya2{bottom:22.080000pt;}
.y30{bottom:22.960000pt;}
.yd{bottom:24.160000pt;}
.y7{bottom:24.720000pt;}
.y11{bottom:28.800000pt;}
.ya3{bottom:32.080000pt;}
.y133{bottom:32.160000pt;}
.yd5{bottom:34.800000pt;}
.y16{bottom:35.600000pt;}
.yd1{bottom:35.920000pt;}
.ycb{bottom:36.240000pt;}
.y8{bottom:37.440000pt;}
.y12{bottom:39.200000pt;}
.y25{bottom:39.520000pt;}
.ydc{bottom:40.160000pt;}
.y15{bottom:47.600000pt;}
.yc{bottom:48.080000pt;}
.ye1{bottom:50.800000pt;}
.y27{bottom:57.440000pt;}
.yd3{bottom:58.640000pt;}
.y4{bottom:61.120000pt;}
.yb{bottom:61.440000pt;}
.y2e{bottom:62.800000pt;}
.ydb{bottom:67.520000pt;}
.y61{bottom:71.120000pt;}
.ya{bottom:72.720000pt;}
.ye0{bottom:72.800000pt;}
.y12f{bottom:75.760000pt;}
.y3{bottom:79.920000pt;}
.y24{bottom:82.800000pt;}
.y93{bottom:88.000000pt;}
.y2d{bottom:88.186667pt;}
.y12e{bottom:88.800000pt;}
.y92{bottom:92.000000pt;}
.y60{bottom:92.640000pt;}
.y12d{bottom:92.800000pt;}
.yda{bottom:94.880000pt;}
.yf{bottom:98.560000pt;}
.y91{bottom:104.880000pt;}
.y5f{bottom:105.760000pt;}
.y23{bottom:108.160000pt;}
.y90{bottom:108.880000pt;}
.y12c{bottom:109.760000pt;}
.y16e{bottom:110.800000pt;}
.y2c{bottom:113.546667pt;}
.y33{bottom:116.080000pt;}
.ydf{bottom:116.880000pt;}
.y8f{bottom:121.840000pt;}
.yd9{bottom:122.240000pt;}
.y12b{bottom:122.640000pt;}
.y16d{bottom:124.800000pt;}
.yba{bottom:125.840000pt;}
.y12a{bottom:126.640000pt;}
.y5e{bottom:127.280000pt;}
.y5{bottom:127.520000pt;}
.y2f{bottom:128.000000pt;}
.y22{bottom:128.240000pt;}
.y8e{bottom:138.720000pt;}
.y2b{bottom:138.906667pt;}
.yde{bottom:138.960000pt;}
.y129{bottom:139.600000pt;}
.yc9{bottom:139.840000pt;}
.y5d{bottom:140.400000pt;}
.yfe{bottom:142.720000pt;}
.y21{bottom:148.240000pt;}
.yd8{bottom:149.600000pt;}
.y8d{bottom:155.680000pt;}
.y128{bottom:156.480000pt;}
.y2a{bottom:158.906667pt;}
.y8c{bottom:159.680000pt;}
.y29{bottom:160.266667pt;}
.y28{bottom:162.880000pt;}
.y5c{bottom:163.200000pt;}
.yca{bottom:163.600000pt;}
.y20{bottom:168.240000pt;}
.y8b{bottom:172.560000pt;}
.y127{bottom:173.360000pt;}
.yd7{bottom:176.986667pt;}
.y5b{bottom:177.200000pt;}
.y8a{bottom:189.520000pt;}
.y126{bottom:190.320000pt;}
.yfd{bottom:194.160000pt;}
.y125{bottom:194.320000pt;}
.y5a{bottom:196.160000pt;}
.y1f{bottom:196.320000pt;}
.ycf{bottom:197.760000pt;}
.y16c{bottom:205.040000pt;}
.y89{bottom:206.400000pt;}
.yfc{bottom:207.200000pt;}
.y88{bottom:210.400000pt;}
.y124{bottom:211.200000pt;}
.y1e{bottom:216.320000pt;}
.y59{bottom:218.400000pt;}
.yce{bottom:219.760000pt;}
.yb9{bottom:223.360000pt;}
.yfb{bottom:224.160000pt;}
.y87{bottom:224.400000pt;}
.y16b{bottom:225.120000pt;}
.y123{bottom:225.280000pt;}
.yb8{bottom:228.000000pt;}
.yfa{bottom:228.160000pt;}
.y1d{bottom:236.320000pt;}
.y58{bottom:236.720000pt;}
.yb7{bottom:242.160000pt;}
.y16a{bottom:242.560000pt;}
.ycd{bottom:247.146667pt;}
.y122{bottom:251.306667pt;}
.y57{bottom:255.066667pt;}
.y1c{bottom:256.400000pt;}
.yd2{bottom:261.706667pt;}
.y169{bottom:262.666667pt;}
.y56{bottom:273.306667pt;}
.y121{bottom:273.386667pt;}
.y86{bottom:274.666667pt;}
.y1b{bottom:276.426667pt;}
.yf9{bottom:280.746667pt;}
.y168{bottom:282.746667pt;}
.y19{bottom:286.826667pt;}
.y55{bottom:291.626667pt;}
.y120{bottom:295.386667pt;}
.y1a{bottom:296.426667pt;}
.y85{bottom:296.746667pt;}
.yf8{bottom:302.746667pt;}
.y167{bottom:302.826667pt;}
.y54{bottom:309.866667pt;}
.yb6{bottom:311.866667pt;}
.y11f{bottom:317.386667pt;}
.y84{bottom:318.746667pt;}
.y166{bottom:320.266667pt;}
.yf7{bottom:324.746667pt;}
.y53{bottom:328.186667pt;}
.yb5{bottom:333.946667pt;}
.y18{bottom:335.066667pt;}
.y11e{bottom:339.466667pt;}
.y165{bottom:340.266667pt;}
.y83{bottom:340.746667pt;}
.y52{bottom:346.426667pt;}
.yf6{bottom:346.826667pt;}
.yb4{bottom:355.946667pt;}
.y164{bottom:357.706667pt;}
.y11d{bottom:361.466667pt;}
.y51{bottom:364.746667pt;}
.y82{bottom:366.746667pt;}
.yf5{bottom:368.826667pt;}
.y146{bottom:374.906667pt;}
.y163{bottom:377.786667pt;}
.yb3{bottom:378.026667pt;}
.y50{bottom:383.066667pt;}
.y11c{bottom:383.466667pt;}
.yf4{bottom:390.826667pt;}
.y162{bottom:395.226667pt;}
.y81{bottom:396.826667pt;}
.yb2{bottom:400.026667pt;}
.y4f{bottom:401.306667pt;}
.y145{bottom:402.266667pt;}
.y11a{bottom:410.826667pt;}
.yf3{bottom:412.906667pt;}
.y161{bottom:415.306667pt;}
.y11b{bottom:416.826667pt;}
.y80{bottom:418.826667pt;}
.y4e{bottom:419.626667pt;}
.yb0{bottom:427.386667pt;}
.y144{bottom:429.626667pt;}
.y160{bottom:432.746667pt;}
.y119{bottom:432.906667pt;}
.yb1{bottom:433.386667pt;}
.yf2{bottom:434.906667pt;}
.y4d{bottom:437.866667pt;}
.y7f{bottom:440.906667pt;}
.yaf{bottom:449.386667pt;}
.y143{bottom:451.626667pt;}
.y15f{bottom:452.826667pt;}
.y118{bottom:454.906667pt;}
.y4c{bottom:456.186667pt;}
.yf1{bottom:456.986667pt;}
.y7e{bottom:462.906667pt;}
.yae{bottom:471.466667pt;}
.y15e{bottom:472.906667pt;}
.y142{bottom:473.706667pt;}
.y117{bottom:476.986667pt;}
.yf0{bottom:478.986667pt;}
.y4b{bottom:482.506667pt;}
.y7d{bottom:484.986667pt;}
.y15d{bottom:490.346667pt;}
.yad{bottom:493.466667pt;}
.y141{bottom:495.706667pt;}
.y116{bottom:498.986667pt;}
.yef{bottom:500.986667pt;}
.y4a{bottom:504.746667pt;}
.y7c{bottom:506.986667pt;}
.y15c{bottom:510.346667pt;}
.yab{bottom:515.546667pt;}
.yd0{bottom:516.906667pt;}
.y140{bottom:517.706667pt;}
.y115{bottom:520.986667pt;}
.yac{bottom:521.546667pt;}
.y49{bottom:523.066667pt;}
.y7b{bottom:528.986667pt;}
.y15b{bottom:530.426667pt;}
.yaa{bottom:537.546667pt;}
.y13f{bottom:539.786667pt;}
.y48{bottom:541.306667pt;}
.y114{bottom:543.066667pt;}
.yee{bottom:545.066667pt;}
.y15a{bottom:550.506667pt;}
.y7a{bottom:551.066667pt;}
.yff{bottom:555.626667pt;}
.ya9{bottom:559.546667pt;}
.y47{bottom:559.626667pt;}
.y13e{bottom:561.786667pt;}
.y159{bottom:567.946667pt;}
.y113{bottom:569.066667pt;}
.yed{bottom:572.426667pt;}
.y79{bottom:573.066667pt;}
.y46{bottom:577.866667pt;}
.ya8{bottom:581.626667pt;}
.y13d{bottom:583.866667pt;}
.y158{bottom:588.026667pt;}
.yec{bottom:594.506667pt;}
.y78{bottom:595.146667pt;}
.y45{bottom:596.186667pt;}
.y112{bottom:599.146667pt;}
.ya7{bottom:603.653333pt;}
.y157{bottom:605.493333pt;}
.y13c{bottom:605.893333pt;}
.y44{bottom:614.533333pt;}
.yeb{bottom:616.533333pt;}
.y77{bottom:617.173333pt;}
.y111{bottom:621.173333pt;}
.y156{bottom:625.573333pt;}
.ya6{bottom:625.653333pt;}
.y13b{bottom:627.893333pt;}
.y43{bottom:632.773333pt;}
.yc8{bottom:636.533333pt;}
.yea{bottom:638.533333pt;}
.y110{bottom:643.173333pt;}
.y76{bottom:644.533333pt;}
.y14{bottom:644.773333pt;}
.y155{bottom:645.653333pt;}
.ya5{bottom:647.733333pt;}
.y13a{bottom:649.973333pt;}
.y42{bottom:651.093333pt;}
.yc7{bottom:658.533333pt;}
.ye8{bottom:660.613333pt;}
.y10f{bottom:665.253333pt;}
.y154{bottom:665.733333pt;}
.y75{bottom:666.533333pt;}
.ye9{bottom:666.613333pt;}
.y41{bottom:669.333333pt;}
.y139{bottom:671.973333pt;}
.ya4{bottom:677.013333pt;}
.yc6{bottom:680.613333pt;}
.ye7{bottom:682.613333pt;}
.y153{bottom:685.813333pt;}
.y10e{bottom:687.253333pt;}
.y40{bottom:687.653333pt;}
.y73{bottom:688.613333pt;}
.ya1{bottom:691.013333pt;}
.y138{bottom:694.053333pt;}
.y74{bottom:694.613333pt;}
.yc5{bottom:702.613333pt;}
.y152{bottom:703.253333pt;}
.ye5{bottom:704.693333pt;}
.y3f{bottom:705.893333pt;}
.ye{bottom:706.933333pt;}
.y72{bottom:710.613333pt;}
.ye6{bottom:710.693333pt;}
.y10d{bottom:714.613333pt;}
.y137{bottom:723.333333pt;}
.y3e{bottom:724.213333pt;}
.yc4{bottom:724.693333pt;}
.ye4{bottom:726.693333pt;}
.y71{bottom:732.693333pt;}
.y10c{bottom:736.693333pt;}
.ya0{bottom:737.013333pt;}
.y136{bottom:737.253333pt;}
.y3d{bottom:742.533333pt;}
.y151{bottom:743.413333pt;}
.yc3{bottom:746.693333pt;}
.ye3{bottom:748.693333pt;}
.y6f{bottom:754.693333pt;}
.y10a{bottom:758.693333pt;}
.y70{bottom:760.693333pt;}
.y3c{bottom:760.773333pt;}
.y9f{bottom:763.093333pt;}
.y150{bottom:763.493333pt;}
.y10b{bottom:764.693333pt;}
.ye2{bottom:770.773333pt;}
.y10{bottom:772.693333pt;}
.y6e{bottom:776.693333pt;}
.y109{bottom:780.693333pt;}
.y14f{bottom:780.933333pt;}
.y135{bottom:783.333333pt;}
.yd6{bottom:785.333333pt;}
.y3b{bottom:787.653333pt;}
.y9d{bottom:789.093333pt;}
.y14e{bottom:800.933333pt;}
.yc2{bottom:802.773333pt;}
.y6c{bottom:804.053333pt;}
.y108{bottom:808.773333pt;}
.y6d{bottom:810.053333pt;}
.y3a{bottom:817.653333pt;}
.y2{bottom:820.053333pt;}
.y9c{bottom:820.693333pt;}
.y14d{bottom:821.013333pt;}
.yc1{bottom:824.773333pt;}
.y6b{bottom:826.133333pt;}
.y134{bottom:829.413333pt;}
.y107{bottom:830.773333pt;}
.y14c{bottom:841.093333pt;}
.y9b{bottom:846.693333pt;}
.yc0{bottom:846.773333pt;}
.y6a{bottom:848.133333pt;}
.y39{bottom:857.013333pt;}
.y14b{bottom:858.533333pt;}
.ybf{bottom:868.853333pt;}
.y68{bottom:870.133333pt;}
.y9a{bottom:872.773333pt;}
.y105{bottom:874.133333pt;}
.y132{bottom:875.413333pt;}
.y69{bottom:876.133333pt;}
.y14a{bottom:878.613333pt;}
.y106{bottom:880.133333pt;}
.ybe{bottom:890.853333pt;}
.y67{bottom:892.213333pt;}
.y6{bottom:894.133333pt;}
.y149{bottom:896.053333pt;}
.y104{bottom:896.213333pt;}
.y99{bottom:898.773333pt;}
.y38{bottom:900.933333pt;}
.ybd{bottom:912.933333pt;}
.y66{bottom:914.213333pt;}
.y37{bottom:914.853333pt;}
.y148{bottom:916.133333pt;}
.y102{bottom:918.213333pt;}
.y130{bottom:921.493333pt;}
.y103{bottom:924.213333pt;}
.y98{bottom:924.773333pt;}
.y35{bottom:928.773333pt;}
.y147{bottom:933.573333pt;}
.ybc{bottom:934.933333pt;}
.y65{bottom:936.293333pt;}
.y101{bottom:940.293333pt;}
.y34{bottom:942.693333pt;}
.y96{bottom:950.853333pt;}
.y64{bottom:962.320000pt;}
.ybb{bottom:968.320000pt;}
.y62{bottom:983.200000pt;}
.y94{bottom:983.920000pt;}
.y1{bottom:996.640000pt;}
.h13{height:2.475000pt;}
.h9{height:5.259375pt;}
.h17{height:13.920000pt;}
.h6{height:20.728125pt;}
.h22{height:25.040000pt;}
.h24{height:25.360000pt;}
.h23{height:25.386667pt;}
.h1e{height:26.160000pt;}
.h2c{height:27.360000pt;}
.h20{height:30.468750pt;}
.h1c{height:30.937500pt;}
.h25{height:30.960000pt;}
.h1d{height:32.906250pt;}
.h1f{height:33.412500pt;}
.h15{height:34.880000pt;}
.h4{height:36.196875pt;}
.h26{height:45.360000pt;}
.h2d{height:45.440000pt;}
.h16{height:46.406250pt;}
.hc{height:47.360000pt;}
.h2{height:48.881250pt;}
.h21{height:48.915993pt;}
.h7{height:50.720000pt;}
.h8{height:51.665625pt;}
.h1b{height:53.152969pt;}
.h11{height:54.459806pt;}
.hb{height:56.615625pt;}
.h1a{height:57.412500pt;}
.h19{height:59.677512pt;}
.h5{height:61.875000pt;}
.hf{height:62.160000pt;}
.he{height:65.760000pt;}
.h18{height:67.134375pt;}
.h12{height:70.720000pt;}
.hd{height:72.084375pt;}
.ha{height:113.120000pt;}
.h3{height:156.826667pt;}
.h14{height:172.186667pt;}
.h2a{height:191.546667pt;}
.h29{height:255.200000pt;}
.h10{height:309.706667pt;}
.h2b{height:414.293333pt;}
.h27{height:458.293333pt;}
.h28{height:459.973333pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w5{width:1.279987pt;}
.wd{width:23.280000pt;}
.w1b{width:74.880000pt;}
.w11{width:77.386667pt;}
.w9{width:84.800000pt;}
.w1c{width:103.040000pt;}
.w12{width:134.320000pt;}
.wf{width:134.506667pt;}
.w3{width:139.546667pt;}
.w17{width:151.200000pt;}
.w16{width:170.106667pt;}
.w1a{width:184.746667pt;}
.w19{width:201.146667pt;}
.w18{width:208.906667pt;}
.w10{width:217.440000pt;}
.w7{width:219.600000pt;}
.w8{width:254.986667pt;}
.w14{width:274.746667pt;}
.wb{width:283.146667pt;}
.wc{width:283.226667pt;}
.w15{width:292.266667pt;}
.wa{width:375.386667pt;}
.w6{width:456.666667pt;}
.w4{width:474.586667pt;}
.w13{width:567.013333pt;}
.we{width:793.839976pt;}
.w2{width:793.839988pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:2.800000pt;}
.x44{left:3.920000pt;}
.x5{left:7.200000pt;}
.x5f{left:12.160000pt;}
.x12{left:15.760000pt;}
.x45{left:17.040000pt;}
.x8{left:19.360000pt;}
.x5a{left:20.560000pt;}
.x95{left:23.440000pt;}
.x3{left:25.440000pt;}
.x4a{left:29.120000pt;}
.x96{left:30.560000pt;}
.x97{left:32.400000pt;}
.xf{left:37.280000pt;}
.x49{left:39.120000pt;}
.x4b{left:47.760000pt;}
.xd{left:50.720000pt;}
.xc{left:53.040000pt;}
.x93{left:70.320000pt;}
.x10{left:77.600000pt;}
.xe{left:82.320000pt;}
.x92{left:83.386667pt;}
.x7e{left:88.106667pt;}
.x13{left:90.186667pt;}
.x16{left:91.306667pt;}
.x14{left:93.600000pt;}
.x59{left:101.066667pt;}
.x1{left:113.439988pt;}
.x3b{left:117.519988pt;}
.x15{left:120.800000pt;}
.x91{left:122.239988pt;}
.x2{left:126.666667pt;}
.xa{left:132.266667pt;}
.x5d{left:134.906667pt;}
.x3a{left:136.079988pt;}
.x1a{left:138.266667pt;}
.xa6{left:141.999988pt;}
.x1e{left:149.679988pt;}
.x70{left:152.479988pt;}
.x51{left:157.706643pt;}
.x23{left:162.026655pt;}
.x19{left:168.426667pt;}
.x6b{left:171.066655pt;}
.x72{left:172.106655pt;}
.xad{left:173.066655pt;}
.x7f{left:174.026643pt;}
.x71{left:175.466655pt;}
.x60{left:177.386655pt;}
.xb0{left:178.426655pt;}
.x80{left:182.826655pt;}
.x67{left:185.226643pt;}
.x6c{left:187.226655pt;}
.x2e{left:189.226655pt;}
.x4f{left:193.626643pt;}
.x1b{left:195.146667pt;}
.x50{left:198.026655pt;}
.xb3{left:205.146655pt;}
.xb{left:208.720000pt;}
.x32{left:212.746655pt;}
.xaa{left:216.586655pt;}
.x9d{left:222.106655pt;}
.x98{left:228.186655pt;}
.x63{left:231.546643pt;}
.xa1{left:232.586655pt;}
.x1c{left:233.546655pt;}
.x64{left:235.946655pt;}
.x9f{left:241.146655pt;}
.xae{left:242.506655pt;}
.xb1{left:243.466655pt;}
.x46{left:249.226667pt;}
.x2f{left:250.986655pt;}
.x4{left:252.986667pt;}
.x99{left:257.786655pt;}
.x6{left:260.186667pt;}
.x7{left:261.466667pt;}
.x42{left:264.266655pt;}
.xa8{left:267.306655pt;}
.x87{left:270.986643pt;}
.x1d{left:274.106655pt;}
.xa7{left:275.306655pt;}
.x21{left:276.826655pt;}
.x88{left:279.786655pt;}
.xa9{left:281.626655pt;}
.x5e{left:283.546667pt;}
.x1f{left:290.666655pt;}
.x5c{left:292.266667pt;}
.x24{left:293.386655pt;}
.x68{left:295.226643pt;}
.x22{left:298.026655pt;}
.x69{left:304.026655pt;}
.x52{left:314.746655pt;}
.x6e{left:316.186655pt;}
.xaf{left:318.266655pt;}
.x2b{left:324.106655pt;}
.x33{left:326.266643pt;}
.x8b{left:327.866655pt;}
.x34{left:330.666655pt;}
.x61{left:333.786655pt;}
.x62{left:335.706655pt;}
.x6f{left:339.146655pt;}
.x11{left:344.986667pt;}
.x8c{left:350.826655pt;}
.xab{left:352.026655pt;}
.x81{left:367.066643pt;}
.x20{left:369.306655pt;}
.x25{left:371.066655pt;}
.xa0{left:373.386655pt;}
.x73{left:374.586655pt;}
.x82{left:375.866655pt;}
.x3c{left:377.306655pt;}
.x2c{left:383.706655pt;}
.x53{left:386.266655pt;}
.x5b{left:388.186667pt;}
.x8f{left:392.026655pt;}
.x18{left:396.586667pt;}
.x3d{left:400.266655pt;}
.x74{left:409.146655pt;}
.x9a{left:423.786655pt;}
.xa5{left:428.906655pt;}
.x26{left:432.826655pt;}
.x75{left:436.186655pt;}
.x83{left:440.746643pt;}
.xb2{left:442.186655pt;}
.xa3{left:444.986655pt;}
.xa4{left:447.546655pt;}
.x65{left:448.586643pt;}
.x84{left:449.546655pt;}
.x89{left:450.586655pt;}
.x3e{left:453.706655pt;}
.x66{left:457.386655pt;}
.x47{left:467.386667pt;}
.x57{left:471.466655pt;}
.x9{left:472.586667pt;}
.x7b{left:475.466655pt;}
.x3f{left:476.666655pt;}
.x90{left:487.653322pt;}
.x6d{left:501.653322pt;}
.x8d{left:505.173322pt;}
.x7c{left:506.453322pt;}
.x76{left:510.693322pt;}
.x27{left:512.613322pt;}
.x2d{left:515.573322pt;}
.x4d{left:517.333310pt;}
.x4e{left:521.733322pt;}
.x30{left:525.253322pt;}
.x40{left:527.173322pt;}
.x35{left:529.173310pt;}
.x36{left:533.573322pt;}
.x77{left:539.173322pt;}
.x8a{left:544.533322pt;}
.x48{left:545.493333pt;}
.x54{left:546.453322pt;}
.x8e{left:549.653322pt;}
.xac{left:554.373322pt;}
.x56{left:562.453333pt;}
.x58{left:565.733333pt;}
.x41{left:566.853322pt;}
.x78{left:567.813322pt;}
.x94{left:576.773333pt;}
.x6a{left:579.653310pt;}
.x55{left:588.453322pt;}
.x9e{left:591.653322pt;}
.x7d{left:593.573322pt;}
.x29{left:596.213322pt;}
.x37{left:608.213310pt;}
.x79{left:611.013322pt;}
.x38{left:612.613322pt;}
.x85{left:615.653310pt;}
.xa2{left:623.413322pt;}
.x86{left:624.453322pt;}
.x9b{left:631.973322pt;}
.x28{left:650.533322pt;}
.x43{left:653.493333pt;}
.x7a{left:655.493322pt;}
.x9c{left:659.733322pt;}
.x31{left:663.173322pt;}
.x39{left:672.293310pt;}
.x2a{left:676.533322pt;}
.x17{left:680.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; }
  