
    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_134e77a80af25c022a32b4de.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3788b652a54d7fea9a2ce7b7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a6c7d53ee60553c6136e153c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.891602;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_d721f4674351c077ddd0e6dc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b7adf9f0fde54ef90b6dedec.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5f81e2316a98c1b6c85697f6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_54e67b35df547280df44c7c1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-1.332000px;}
.ls1f{letter-spacing:-1.290000px;}
.ls25{letter-spacing:-0.870000px;}
.lse{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.567600px;}
.ls2d{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.305400px;}
.ls31{letter-spacing:-0.259800px;}
.ls30{letter-spacing:-0.253200px;}
.ls21{letter-spacing:-0.206400px;}
.ls24{letter-spacing:-0.181200px;}
.ls1a{letter-spacing:-0.152400px;}
.ls2c{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.012000px;}
.ls7{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.030000px;}
.ls22{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106560px;}
.ls1c{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.109200px;}
.ls19{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.152400px;}
.ls2f{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.ls2a{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.262200px;}
.ls29{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.299995px;}
.ls1{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.305280px;}
.ls10{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.630000px;}
.ls2e{letter-spacing:1.620000px;}
.ls20{letter-spacing:2.160000px;}
.ls28{letter-spacing:3.600000px;}
.ls27{letter-spacing:6.480000px;}
.ls23{letter-spacing:301.205280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-25.560000px;}
.ws1{word-spacing:-21.060000px;}
.ws2e{word-spacing:-16.865400px;}
.ws2d{word-spacing:-16.822200px;}
.ws2c{word-spacing:-16.712400px;}
.ws25{word-spacing:-16.669200px;}
.ws26{word-spacing:-16.560000px;}
.ws2f{word-spacing:-16.407600px;}
.ws30{word-spacing:-16.254600px;}
.ws2b{word-spacing:-16.145400px;}
.ws31{word-spacing:-15.992400px;}
.ws27{word-spacing:-15.948000px;}
.ws24{word-spacing:-15.840000px;}
.ws39{word-spacing:-15.690000px;}
.ws29{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.239995px;}
.ws33{word-spacing:-15.228000px;}
.ws28{word-spacing:-15.199800px;}
.ws3b{word-spacing:-15.146400px;}
.ws3e{word-spacing:-15.093600px;}
.ws34{word-spacing:-15.046800px;}
.ws37{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws36{word-spacing:-14.886720px;}
.ws3c{word-spacing:-14.833200px;}
.ws35{word-spacing:-14.733600px;}
.ws3d{word-spacing:-14.686800px;}
.ws3f{word-spacing:-14.680200px;}
.ws32{word-spacing:-14.580000px;}
.ws3a{word-spacing:-14.479800px;}
.ws2a{word-spacing:-13.410720px;}
.ws38{word-spacing:-13.229520px;}
.ws7{word-spacing:-0.924000px;}
.ws1c{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.420000px;}
.ws5{word-spacing:-0.408000px;}
.ws21{word-spacing:-0.300000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.180000px;}
.ws6{word-spacing:0.204000px;}
.ws20{word-spacing:0.234000px;}
.ws9{word-spacing:0.240000px;}
.wsb{word-spacing:0.276000px;}
.ws22{word-spacing:0.300000px;}
.ws23{word-spacing:0.654000px;}
.ws1d{word-spacing:0.774000px;}
.ws1f{word-spacing:0.894000px;}
.ws1e{word-spacing:0.954000px;}
.ws11{word-spacing:6.576000px;}
.ws13{word-spacing:6.750000px;}
.ws10{word-spacing:7.290000px;}
.ws12{word-spacing:7.410000px;}
.ws18{word-spacing:10.938000px;}
.ws14{word-spacing:11.058000px;}
.ws17{word-spacing:11.532000px;}
.ws16{word-spacing:11.652000px;}
.ws15{word-spacing:11.772000px;}
.ws1b{word-spacing:15.894000px;}
.ws1a{word-spacing:16.014000px;}
.ws19{word-spacing:16.074000px;}
.wse{word-spacing:19.662000px;}
.wsf{word-spacing:20.196000px;}
.wsc{word-spacing:20.256000px;}
.wsd{word-spacing:20.376000px;}
._11{margin-left:-5.313868px;}
._a{margin-left:-4.239360px;}
._9{margin-left:-2.914560px;}
._0{margin-left:-1.179632px;}
._1{width:1.478940px;}
._2{width:2.619120px;}
._b{width:4.239360px;}
._d{width:5.839957px;}
._5{width:7.017828px;}
._4{width:8.253004px;}
._c{width:9.994084px;}
._6{width:11.865440px;}
._e{width:13.380480px;}
._f{width:14.499303px;}
._7{width:15.957569px;}
._17{width:17.792880px;}
._16{width:18.870992px;}
._3{width:19.904293px;}
._21{width:20.909159px;}
._15{width:21.925440px;}
._18{width:23.314080px;}
._19{width:24.785700px;}
._13{width:27.223680px;}
._12{width:28.483200px;}
._14{width:29.499360px;}
._1e{width:39.979440px;}
._20{width:43.754340px;}
._1f{width:45.103380px;}
._23{width:49.676820px;}
._24{width:51.538562px;}
._22{width:53.454000px;}
._1b{width:54.456420px;}
._1c{width:55.652160px;}
._1d{width:61.552800px;}
._1a{width:290.706387px;}
._10{width:317.346387px;}
._8{width:327.807840px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:57.420000px;}
.y20{bottom:70.002000px;}
.y1f{bottom:88.768500px;}
.y5f{bottom:105.300000px;}
.y1d3{bottom:110.340000px;}
.y8e{bottom:110.520000px;}
.y5e{bottom:122.580000px;}
.ybc{bottom:127.800000px;}
.y1d2{bottom:128.880000px;}
.y5d{bottom:139.860000px;}
.y182{bottom:140.220000px;}
.y1a7{bottom:141.840000px;}
.y5c{bottom:145.080000px;}
.y1d1{bottom:147.600000px;}
.y5b{bottom:157.140000px;}
.y8d{bottom:157.500000px;}
.y1a6{bottom:160.560000px;}
.y11e{bottom:162.360000px;}
.y1d0{bottom:168.660000px;}
.y5a{bottom:174.240000px;}
.y135{bottom:174.780000px;}
.y181{bottom:175.500000px;}
.ybb{bottom:179.460000px;}
.y1a5{bottom:181.440000px;}
.y1cf{bottom:187.410000px;}
.y59{bottom:191.550000px;}
.y134{bottom:195.150000px;}
.y180{bottom:195.330000px;}
.yd6{bottom:196.770000px;}
.y1a4{bottom:200.190000px;}
.y1ce{bottom:208.290000px;}
.y58{bottom:208.830000px;}
.yf8{bottom:209.190000px;}
.y133{bottom:214.770000px;}
.y17f{bottom:215.130000px;}
.y8c{bottom:216.390000px;}
.y1a3{bottom:221.250000px;}
.y57{bottom:226.110000px;}
.y1cd{bottom:227.010000px;}
.yd5{bottom:231.330000px;}
.y132{bottom:234.570000px;}
.y17e{bottom:235.110000px;}
.y8b{bottom:236.190000px;}
.y1a2{bottom:239.970000px;}
.y56{bottom:243.390000px;}
.y1cc{bottom:248.070000px;}
.y55{bottom:248.610000px;}
.y131{bottom:254.370000px;}
.y17d{bottom:254.910000px;}
.y8a{bottom:255.990000px;}
.y1a1{bottom:258.690000px;}
.y54{bottom:260.670000px;}
.y53{bottom:265.890000px;}
.y1cb{bottom:269.130000px;}
.yf7{bottom:270.750000px;}
.y130{bottom:274.170000px;}
.y17c{bottom:274.710000px;}
.y89{bottom:275.790000px;}
.y52{bottom:277.770000px;}
.yd4{bottom:278.310000px;}
.y1a0{bottom:279.570000px;}
.yba{bottom:282.990000px;}
.y1ca{bottom:287.850000px;}
.yf6{bottom:290.550000px;}
.y12f{bottom:293.970000px;}
.y17b{bottom:294.510000px;}
.y51{bottom:295.050000px;}
.y88{bottom:295.410000px;}
.yb9{bottom:295.590000px;}
.yd3{bottom:299.190000px;}
.y50{bottom:300.270000px;}
.y19f{bottom:300.630000px;}
.y1c9{bottom:308.730000px;}
.yf5{bottom:310.350000px;}
.y4f{bottom:312.330000px;}
.y12e{bottom:313.590000px;}
.y17a{bottom:314.310000px;}
.y87{bottom:315.210000px;}
.y4e{bottom:317.550000px;}
.yd2{bottom:318.990000px;}
.y19e{bottom:319.350000px;}
.y1e{bottom:324.058500px;}
.y1c8{bottom:327.450000px;}
.y14b{bottom:329.610000px;}
.y4d{bottom:329.970000px;}
.yb8{bottom:333.390000px;}
.y12d{bottom:333.750000px;}
.y179{bottom:333.930000px;}
.y86{bottom:335.370000px;}
.y19d{bottom:340.410000px;}
.y14a{bottom:346.890000px;}
.y1c7{bottom:348.510000px;}
.yf4{bottom:349.770000px;}
.y11d{bottom:351.750000px;}
.y149{bottom:352.110000px;}
.yb7{bottom:353.190000px;}
.y12c{bottom:353.550000px;}
.y178{bottom:353.730000px;}
.y85{bottom:355.170000px;}
.yd1{bottom:356.970000px;}
.y19c{bottom:358.950000px;}
.y1d{bottom:363.298500px;}
.y148{bottom:363.990000px;}
.y1c6{bottom:367.230000px;}
.yf3{bottom:369.570000px;}
.y11c{bottom:371.550000px;}
.yb5{bottom:372.990000px;}
.y12b{bottom:373.170000px;}
.y177{bottom:373.530000px;}
.y4b{bottom:374.610000px;}
.y84{bottom:374.790000px;}
.yb6{bottom:378.930000px;}
.y19b{bottom:380.010000px;}
.y4c{bottom:380.550000px;}
.y147{bottom:381.270000px;}
.y162{bottom:386.490000px;}
.y1c5{bottom:388.110000px;}
.yf2{bottom:389.370000px;}
.y11b{bottom:391.170000px;}
.yb3{bottom:392.790000px;}
.y12a{bottom:392.970000px;}
.y176{bottom:393.330000px;}
.y4a{bottom:394.230000px;}
.y83{bottom:394.590000px;}
.y146{bottom:398.550000px;}
.yb4{bottom:398.730000px;}
.y161{bottom:399.090000px;}
.y1c{bottom:402.538500px;}
.y145{bottom:403.770000px;}
.y1c4{bottom:406.830000px;}
.yf1{bottom:409.170000px;}
.y11a{bottom:410.970000px;}
.yb2{bottom:412.410000px;}
.y129{bottom:412.770000px;}
.y175{bottom:413.130000px;}
.y49{bottom:414.030000px;}
.y82{bottom:414.390000px;}
.y144{bottom:416.190000px;}
.y19a{bottom:419.790000px;}
.y1b{bottom:422.313000px;}
.y1c3{bottom:427.935000px;}
.yf0{bottom:428.835000px;}
.y160{bottom:429.195000px;}
.y118{bottom:430.815000px;}
.yb1{bottom:432.255000px;}
.y128{bottom:432.615000px;}
.y174{bottom:432.795000px;}
.y48{bottom:433.875000px;}
.y81{bottom:434.235000px;}
.y119{bottom:436.755000px;}
.y199{bottom:438.555000px;}
.y1a{bottom:440.761500px;}
.y1c2{bottom:446.655000px;}
.yef{bottom:448.635000px;}
.y15e{bottom:448.995000px;}
.y117{bottom:450.615000px;}
.yb0{bottom:452.415000px;}
.y173{bottom:452.595000px;}
.y47{bottom:453.675000px;}
.y80{bottom:454.035000px;}
.y15f{bottom:454.935000px;}
.y19{bottom:459.210000px;}
.y198{bottom:459.435000px;}
.y1c1{bottom:465.375000px;}
.yee{bottom:468.435000px;}
.y15d{bottom:468.795000px;}
.y116{bottom:470.415000px;}
.yaf{bottom:472.035000px;}
.y172{bottom:472.395000px;}
.y46{bottom:473.475000px;}
.y7f{bottom:473.655000px;}
.y18{bottom:477.658500px;}
.y197{bottom:478.155000px;}
.y1c0{bottom:486.255000px;}
.yed{bottom:488.235000px;}
.y15c{bottom:488.595000px;}
.y115{bottom:490.035000px;}
.yae{bottom:491.835000px;}
.y171{bottom:492.195000px;}
.y45{bottom:493.095000px;}
.y7e{bottom:493.455000px;}
.y143{bottom:494.175000px;}
.y17{bottom:496.107000px;}
.y196{bottom:499.215000px;}
.yd0{bottom:499.395000px;}
.y1bf{bottom:504.975000px;}
.yec{bottom:508.035000px;}
.y15b{bottom:508.215000px;}
.y114{bottom:509.835000px;}
.yad{bottom:511.635000px;}
.y170{bottom:511.995000px;}
.y44{bottom:512.895000px;}
.y7d{bottom:513.255000px;}
.ycf{bottom:519.195000px;}
.y195{bottom:520.275000px;}
.y1be{bottom:526.035000px;}
.yeb{bottom:527.655000px;}
.y15a{bottom:528.015000px;}
.y113{bottom:529.635000px;}
.yac{bottom:531.435000px;}
.y16f{bottom:531.615000px;}
.y42{bottom:532.695000px;}
.y7c{bottom:533.055000px;}
.y16{bottom:535.347000px;}
.y43{bottom:538.635000px;}
.y194{bottom:538.815000px;}
.y1bd{bottom:544.755000px;}
.yea{bottom:547.455000px;}
.y159{bottom:547.815000px;}
.y111{bottom:549.435000px;}
.yab{bottom:551.235000px;}
.y16e{bottom:551.415000px;}
.y41{bottom:552.495000px;}
.y7a{bottom:552.855000px;}
.y15{bottom:554.113500px;}
.y112{bottom:555.375000px;}
.y7b{bottom:558.795000px;}
.y193{bottom:559.875000px;}
.y1bc{bottom:563.295000px;}
.ye9{bottom:567.255000px;}
.y158{bottom:567.615000px;}
.y10f{bottom:569.235000px;}
.yaa{bottom:570.855000px;}
.y40{bottom:572.295000px;}
.y79{bottom:572.475000px;}
.y110{bottom:575.175000px;}
.y192{bottom:578.595000px;}
.y1bb{bottom:584.355000px;}
.ye8{bottom:587.055000px;}
.y157{bottom:587.415000px;}
.y10e{bottom:588.855000px;}
.y16d{bottom:589.395000px;}
.ya9{bottom:590.655000px;}
.y78{bottom:592.275000px;}
.y14{bottom:593.173500px;}
.y191{bottom:599.655000px;}
.y1ba{bottom:603.075000px;}
.ye7{bottom:606.855000px;}
.y156{bottom:607.035000px;}
.y10d{bottom:608.655000px;}
.y3f{bottom:610.275000px;}
.ya8{bottom:610.455000px;}
.y127{bottom:610.815000px;}
.y13{bottom:611.940000px;}
.y77{bottom:612.075000px;}
.y190{bottom:620.535000px;}
.y1b9{bottom:621.795000px;}
.ye6{bottom:626.475000px;}
.y155{bottom:626.835000px;}
.y16c{bottom:627.195000px;}
.y10c{bottom:628.815000px;}
.ya7{bottom:630.255000px;}
.y126{bottom:630.435000px;}
.y76{bottom:631.875000px;}
.y142{bottom:632.415000px;}
.y18f{bottom:639.255000px;}
.y1b8{bottom:642.675000px;}
.y141{bottom:646.275000px;}
.ye4{bottom:646.635000px;}
.y16b{bottom:646.995000px;}
.y3e{bottom:647.895000px;}
.y10b{bottom:648.435000px;}
.ya6{bottom:650.055000px;}
.y125{bottom:650.235000px;}
.y12{bottom:651.180000px;}
.y75{bottom:651.675000px;}
.ye5{bottom:652.575000px;}
.y18e{bottom:657.975000px;}
.y1b7{bottom:663.735000px;}
.y140{bottom:666.075000px;}
.ye3{bottom:666.435000px;}
.y16a{bottom:666.615000px;}
.y3d{bottom:667.725000px;}
.y10a{bottom:668.265000px;}
.ya4{bottom:669.705000px;}
.y124{bottom:670.065000px;}
.y11{bottom:671.002500px;}
.y74{bottom:671.325000px;}
.yce{bottom:671.685000px;}
.ya5{bottom:675.645000px;}
.y18d{bottom:679.065000px;}
.y1b6{bottom:684.825000px;}
.y13f{bottom:685.905000px;}
.ye2{bottom:686.265000px;}
.y169{bottom:686.445000px;}
.y3c{bottom:687.525000px;}
.y109{bottom:688.065000px;}
.y10{bottom:689.493000px;}
.ya3{bottom:689.505000px;}
.y123{bottom:689.865000px;}
.y73{bottom:691.125000px;}
.ycc{bottom:691.485000px;}
.ycd{bottom:697.425000px;}
.y18c{bottom:697.605000px;}
.y13e{bottom:705.705000px;}
.ye1{bottom:705.885000px;}
.y168{bottom:706.245000px;}
.y3b{bottom:707.325000px;}
.y108{bottom:707.865000px;}
.yf{bottom:707.983500px;}
.ya2{bottom:709.305000px;}
.y121{bottom:709.665000px;}
.y72{bottom:710.925000px;}
.ycb{bottom:711.285000px;}
.y122{bottom:715.605000px;}
.y18b{bottom:718.665000px;}
.y13d{bottom:725.325000px;}
.ye0{bottom:725.685000px;}
.y167{bottom:726.045000px;}
.ye{bottom:726.474000px;}
.y1b5{bottom:726.765000px;}
.y39{bottom:726.945000px;}
.y107{bottom:727.665000px;}
.ya1{bottom:729.105000px;}
.y120{bottom:729.285000px;}
.y71{bottom:730.725000px;}
.yca{bottom:730.905000px;}
.y154{bottom:731.625000px;}
.y3a{bottom:732.885000px;}
.y18a{bottom:737.385000px;}
.yd{bottom:744.964500px;}
.y13c{bottom:745.125000px;}
.ydf{bottom:745.485000px;}
.y166{bottom:745.845000px;}
.y38{bottom:746.745000px;}
.y105{bottom:747.285000px;}
.ya0{bottom:749.085000px;}
.y70{bottom:750.525000px;}
.yc9{bottom:750.705000px;}
.y106{bottom:753.225000px;}
.y189{bottom:758.445000px;}
.yc{bottom:763.455000px;}
.yde{bottom:765.285000px;}
.y164{bottom:765.465000px;}
.y37{bottom:766.545000px;}
.y104{bottom:767.085000px;}
.y9f{bottom:768.885000px;}
.yc8{bottom:770.505000px;}
.y13b{bottom:771.225000px;}
.y165{bottom:771.405000px;}
.y188{bottom:777.165000px;}
.ydd{bottom:785.085000px;}
.y163{bottom:785.265000px;}
.y36{bottom:786.345000px;}
.y103{bottom:786.885000px;}
.y6f{bottom:788.325000px;}
.y9e{bottom:788.685000px;}
.yc7{bottom:790.305000px;}
.ydc{bottom:804.705000px;}
.y153{bottom:805.065000px;}
.y1b4{bottom:806.145000px;}
.y35{bottom:806.325000px;}
.y102{bottom:806.685000px;}
.y9d{bottom:808.485000px;}
.yc6{bottom:810.105000px;}
.y187{bottom:813.705000px;}
.yb{bottom:823.755000px;}
.ydb{bottom:824.505000px;}
.y152{bottom:824.865000px;}
.y34{bottom:826.125000px;}
.y6e{bottom:826.305000px;}
.y101{bottom:826.485000px;}
.y9c{bottom:828.285000px;}
.yc5{bottom:829.725000px;}
.ya{bottom:842.182500px;}
.yda{bottom:844.305000px;}
.y151{bottom:844.665000px;}
.y33{bottom:845.925000px;}
.y100{bottom:846.285000px;}
.y9b{bottom:847.905000px;}
.yc4{bottom:849.525000px;}
.y13a{bottom:850.245000px;}
.y186{bottom:851.325000px;}
.y9{bottom:861.225000px;}
.y6d{bottom:864.105000px;}
.y150{bottom:864.285000px;}
.y1b3{bottom:864.645000px;}
.y31{bottom:865.725000px;}
.yff{bottom:865.905000px;}
.y9a{bottom:867.705000px;}
.yc3{bottom:869.325000px;}
.y185{bottom:871.125000px;}
.y32{bottom:871.665000px;}
.y8{bottom:881.565000px;}
.y6c{bottom:883.905000px;}
.y14f{bottom:884.085000px;}
.y30{bottom:885.345000px;}
.yfd{bottom:885.705000px;}
.y99{bottom:887.505000px;}
.yc2{bottom:889.125000px;}
.yfe{bottom:891.645000px;}
.y1dd{bottom:899.745000px;}
.y6b{bottom:903.525000px;}
.y14e{bottom:903.885000px;}
.y2f{bottom:905.145000px;}
.yfc{bottom:905.505000px;}
.y1b2{bottom:906.585000px;}
.y98{bottom:907.305000px;}
.y184{bottom:909.150000px;}
.y1dc{bottom:918.330000px;}
.y6a{bottom:923.370000px;}
.y14d{bottom:923.730000px;}
.y2e{bottom:924.990000px;}
.yfb{bottom:925.350000px;}
.y96{bottom:927.150000px;}
.y97{bottom:933.090000px;}
.y1db{bottom:939.390000px;}
.y7{bottom:940.830000px;}
.y69{bottom:943.170000px;}
.yd9{bottom:943.530000px;}
.y2d{bottom:944.790000px;}
.yfa{bottom:945.150000px;}
.y1b1{bottom:946.410000px;}
.y95{bottom:946.770000px;}
.y1da{bottom:960.450000px;}
.y68{bottom:962.970000px;}
.yd8{bottom:963.150000px;}
.y2c{bottom:964.770000px;}
.yc1{bottom:965.130000px;}
.y6{bottom:966.570000px;}
.y1d9{bottom:981.510000px;}
.y67{bottom:982.770000px;}
.yd7{bottom:982.950000px;}
.y2a{bottom:984.570000px;}
.y1b0{bottom:986.010000px;}
.y94{bottom:986.370000px;}
.y139{bottom:988.710000px;}
.y2b{bottom:990.510000px;}
.y1d8{bottom:1000.050000px;}
.y66{bottom:1002.390000px;}
.yc0{bottom:1002.750000px;}
.y29{bottom:1004.370000px;}
.y183{bottom:1004.550000px;}
.y1af{bottom:1004.730000px;}
.y93{bottom:1006.170000px;}
.y5{bottom:1020.030000px;}
.y1d7{bottom:1021.110000px;}
.y65{bottom:1022.190000px;}
.ybf{bottom:1022.550000px;}
.y28{bottom:1024.170000px;}
.y11f{bottom:1024.350000px;}
.y1ae{bottom:1025.790000px;}
.y92{bottom:1025.970000px;}
.y64{bottom:1041.990000px;}
.y1d6{bottom:1042.170000px;}
.ybe{bottom:1042.350000px;}
.y27{bottom:1043.970000px;}
.y1ad{bottom:1044.510000px;}
.y91{bottom:1045.590000px;}
.yf9{bottom:1049.910000px;}
.y63{bottom:1061.790000px;}
.ybd{bottom:1061.970000px;}
.y1d5{bottom:1063.230000px;}
.y26{bottom:1063.590000px;}
.y1ac{bottom:1065.390000px;}
.y14c{bottom:1067.910000px;}
.y138{bottom:1081.590000px;}
.y62{bottom:1081.770000px;}
.y25{bottom:1083.390000px;}
.y90{bottom:1083.570000px;}
.y1ab{bottom:1084.110000px;}
.y136{bottom:1101.210000px;}
.y61{bottom:1101.570000px;}
.y4{bottom:1102.470000px;}
.y1d4{bottom:1102.830000px;}
.y24{bottom:1103.190000px;}
.y1aa{bottom:1105.170000px;}
.y137{bottom:1107.150000px;}
.y3{bottom:1116.510000px;}
.y60{bottom:1121.370000px;}
.y1a9{bottom:1123.890000px;}
.y8f{bottom:1127.310000px;}
.y2{bottom:1130.370000px;}
.y23{bottom:1141.170000px;}
.y1a8{bottom:1142.610000px;}
.y1{bottom:1144.410000px;}
.y21{bottom:1197.540000px;}
.ha{height:38.158594px;}
.h9{height:40.985156px;}
.h2{height:44.518359px;}
.h3{height:47.344922px;}
.hc{height:53.573906px;}
.hd{height:58.621992px;}
.h6{height:58.651172px;}
.hb{height:59.383125px;}
.h8{height:64.978594px;}
.h7{height:65.010937px;}
.h5{height:82.676953px;}
.h4{height:100.342969px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:84.599987px;}
.xc{left:105.156000px;}
.xd{left:106.236000px;}
.xf{left:125.675987px;}
.x1b{left:126.755973px;}
.x2d{left:130.535973px;}
.x1c{left:131.615987px;}
.x1d{left:133.955987px;}
.x2e{left:135.395987px;}
.x2f{left:136.475987px;}
.x45{left:156.989973px;}
.x14{left:160.049973px;}
.x3c{left:162.389973px;}
.x6{left:164.550000px;}
.x46{left:167.429987px;}
.x1f{left:168.509987px;}
.x2a{left:169.769973px;}
.x18{left:172.109973px;}
.x3d{left:173.729987px;}
.x19{left:177.329987px;}
.x2b{left:180.209987px;}
.x59{left:181.649987px;}
.x42{left:190.289987px;}
.x12{left:199.109973px;}
.x50{left:202.349973px;}
.x13{left:204.329987px;}
.x2c{left:209.549987px;}
.x48{left:211.709973px;}
.x51{left:212.789987px;}
.x49{left:222.149987px;}
.x7{left:249.510000px;}
.x5e{left:265.709987px;}
.x5d{left:273.494987px;}
.x57{left:285.374973px;}
.xb{left:292.035000px;}
.x58{left:295.814987px;}
.x23{left:297.614973px;}
.x24{left:302.834987px;}
.x1e{left:312.014987px;}
.x25{left:316.334987px;}
.x30{left:320.114987px;}
.x1a{left:322.274987px;}
.x8{left:323.895000px;}
.x15{left:328.394987px;}
.x28{left:339.194973px;}
.x29{left:344.414987px;}
.x3b{left:347.114987px;}
.x4e{left:350.894973px;}
.x38{left:351.974987px;}
.x4f{left:363.854987px;}
.x20{left:365.834987px;}
.x5{left:374.475000px;}
.x47{left:376.274987px;}
.x9{left:378.075000px;}
.x5c{left:386.894987px;}
.x5f{left:391.394987px;}
.xa{left:392.655000px;}
.x5a{left:410.474973px;}
.x5b{left:420.914987px;}
.x33{left:423.434973px;}
.x34{left:433.874987px;}
.x3e{left:450.794973px;}
.x3f{left:461.264987px;}
.x10{left:476.924973px;}
.x11{left:482.144987px;}
.x43{left:489.524973px;}
.x44{left:499.964987px;}
.x31{left:526.244973px;}
.x52{left:527.504973px;}
.x55{left:534.884973px;}
.x32{left:536.684987px;}
.x53{left:537.944987px;}
.x56{left:545.324987px;}
.x1{left:566.745000px;}
.x39{left:570.344973px;}
.x4{left:577.185000px;}
.x3a{left:580.784987px;}
.x3{left:605.085000px;}
.x16{left:606.884973px;}
.x17{left:612.104987px;}
.x2{left:678.570000px;}
.x40{left:689.729973px;}
.x41{left:700.169987px;}
.x26{left:705.029973px;}
.x4c{left:706.469973px;}
.x27{left:710.249987px;}
.x4d{left:716.909987px;}
.x21{left:731.129973px;}
.x22{left:736.349987px;}
.x54{left:741.569987px;}
.x35{left:746.969987px;}
.x36{left:761.009973px;}
.x37{left:771.449987px;}
.x4a{left:773.429973px;}
.x4b{left:783.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-1.184000pt;}
.ls1f{letter-spacing:-1.146667pt;}
.ls25{letter-spacing:-0.773333pt;}
.lse{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.504533pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.271467pt;}
.ls31{letter-spacing:-0.230933pt;}
.ls30{letter-spacing:-0.225067pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls24{letter-spacing:-0.161067pt;}
.ls1a{letter-spacing:-0.135467pt;}
.ls2c{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.010667pt;}
.ls7{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.026667pt;}
.ls22{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094720pt;}
.ls1c{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.097067pt;}
.ls19{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.135467pt;}
.ls2f{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.ls2a{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.233067pt;}
.ls29{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.266662pt;}
.ls1{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls10{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.560000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls28{letter-spacing:3.200000pt;}
.ls27{letter-spacing:5.760000pt;}
.ls23{letter-spacing:267.738027pt;}
.ws0{word-spacing:-22.720000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2e{word-spacing:-14.991467pt;}
.ws2d{word-spacing:-14.953067pt;}
.ws2c{word-spacing:-14.855467pt;}
.ws25{word-spacing:-14.817067pt;}
.ws26{word-spacing:-14.720000pt;}
.ws2f{word-spacing:-14.584533pt;}
.ws30{word-spacing:-14.448533pt;}
.ws2b{word-spacing:-14.351467pt;}
.ws31{word-spacing:-14.215467pt;}
.ws27{word-spacing:-14.176000pt;}
.ws24{word-spacing:-14.080000pt;}
.ws39{word-spacing:-13.946667pt;}
.ws29{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.546662pt;}
.ws33{word-spacing:-13.536000pt;}
.ws28{word-spacing:-13.510933pt;}
.ws3b{word-spacing:-13.463467pt;}
.ws3e{word-spacing:-13.416533pt;}
.ws34{word-spacing:-13.374933pt;}
.ws37{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws36{word-spacing:-13.232640pt;}
.ws3c{word-spacing:-13.185067pt;}
.ws35{word-spacing:-13.096533pt;}
.ws3d{word-spacing:-13.054933pt;}
.ws3f{word-spacing:-13.049067pt;}
.ws32{word-spacing:-12.960000pt;}
.ws3a{word-spacing:-12.870933pt;}
.ws2a{word-spacing:-11.920640pt;}
.ws38{word-spacing:-11.759573pt;}
.ws7{word-spacing:-0.821333pt;}
.ws1c{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.373333pt;}
.ws5{word-spacing:-0.362667pt;}
.ws21{word-spacing:-0.266667pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.160000pt;}
.ws6{word-spacing:0.181333pt;}
.ws20{word-spacing:0.208000pt;}
.ws9{word-spacing:0.213333pt;}
.wsb{word-spacing:0.245333pt;}
.ws22{word-spacing:0.266667pt;}
.ws23{word-spacing:0.581333pt;}
.ws1d{word-spacing:0.688000pt;}
.ws1f{word-spacing:0.794667pt;}
.ws1e{word-spacing:0.848000pt;}
.ws11{word-spacing:5.845333pt;}
.ws13{word-spacing:6.000000pt;}
.ws10{word-spacing:6.480000pt;}
.ws12{word-spacing:6.586667pt;}
.ws18{word-spacing:9.722667pt;}
.ws14{word-spacing:9.829333pt;}
.ws17{word-spacing:10.250667pt;}
.ws16{word-spacing:10.357333pt;}
.ws15{word-spacing:10.464000pt;}
.ws1b{word-spacing:14.128000pt;}
.ws1a{word-spacing:14.234667pt;}
.ws19{word-spacing:14.288000pt;}
.wse{word-spacing:17.477333pt;}
.wsf{word-spacing:17.952000pt;}
.wsc{word-spacing:18.005333pt;}
.wsd{word-spacing:18.112000pt;}
._11{margin-left:-4.723439pt;}
._a{margin-left:-3.768320pt;}
._9{margin-left:-2.590720pt;}
._0{margin-left:-1.048562pt;}
._1{width:1.314614pt;}
._2{width:2.328107pt;}
._b{width:3.768320pt;}
._d{width:5.191073pt;}
._5{width:6.238069pt;}
._4{width:7.336004pt;}
._c{width:8.883630pt;}
._6{width:10.547058pt;}
._e{width:11.893760pt;}
._f{width:12.888269pt;}
._7{width:14.184506pt;}
._17{width:15.815893pt;}
._16{width:16.774215pt;}
._3{width:17.692705pt;}
._21{width:18.585919pt;}
._15{width:19.489280pt;}
._18{width:20.723627pt;}
._19{width:22.031733pt;}
._13{width:24.198827pt;}
._12{width:25.318400pt;}
._14{width:26.221653pt;}
._1e{width:35.537280pt;}
._20{width:38.892746pt;}
._1f{width:40.091893pt;}
._23{width:44.157173pt;}
._24{width:45.812055pt;}
._22{width:47.514667pt;}
._1b{width:48.405706pt;}
._1c{width:49.468587pt;}
._1d{width:54.713600pt;}
._1a{width:258.405678pt;}
._10{width:282.085678pt;}
._8{width:291.384747pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:51.040000pt;}
.y20{bottom:62.224000pt;}
.y1f{bottom:78.905333pt;}
.y5f{bottom:93.600000pt;}
.y1d3{bottom:98.080000pt;}
.y8e{bottom:98.240000pt;}
.y5e{bottom:108.960000pt;}
.ybc{bottom:113.600000pt;}
.y1d2{bottom:114.560000pt;}
.y5d{bottom:124.320000pt;}
.y182{bottom:124.640000pt;}
.y1a7{bottom:126.080000pt;}
.y5c{bottom:128.960000pt;}
.y1d1{bottom:131.200000pt;}
.y5b{bottom:139.680000pt;}
.y8d{bottom:140.000000pt;}
.y1a6{bottom:142.720000pt;}
.y11e{bottom:144.320000pt;}
.y1d0{bottom:149.920000pt;}
.y5a{bottom:154.880000pt;}
.y135{bottom:155.360000pt;}
.y181{bottom:156.000000pt;}
.ybb{bottom:159.520000pt;}
.y1a5{bottom:161.280000pt;}
.y1cf{bottom:166.586667pt;}
.y59{bottom:170.266667pt;}
.y134{bottom:173.466667pt;}
.y180{bottom:173.626667pt;}
.yd6{bottom:174.906667pt;}
.y1a4{bottom:177.946667pt;}
.y1ce{bottom:185.146667pt;}
.y58{bottom:185.626667pt;}
.yf8{bottom:185.946667pt;}
.y133{bottom:190.906667pt;}
.y17f{bottom:191.226667pt;}
.y8c{bottom:192.346667pt;}
.y1a3{bottom:196.666667pt;}
.y57{bottom:200.986667pt;}
.y1cd{bottom:201.786667pt;}
.yd5{bottom:205.626667pt;}
.y132{bottom:208.506667pt;}
.y17e{bottom:208.986667pt;}
.y8b{bottom:209.946667pt;}
.y1a2{bottom:213.306667pt;}
.y56{bottom:216.346667pt;}
.y1cc{bottom:220.506667pt;}
.y55{bottom:220.986667pt;}
.y131{bottom:226.106667pt;}
.y17d{bottom:226.586667pt;}
.y8a{bottom:227.546667pt;}
.y1a1{bottom:229.946667pt;}
.y54{bottom:231.706667pt;}
.y53{bottom:236.346667pt;}
.y1cb{bottom:239.226667pt;}
.yf7{bottom:240.666667pt;}
.y130{bottom:243.706667pt;}
.y17c{bottom:244.186667pt;}
.y89{bottom:245.146667pt;}
.y52{bottom:246.906667pt;}
.yd4{bottom:247.386667pt;}
.y1a0{bottom:248.506667pt;}
.yba{bottom:251.546667pt;}
.y1ca{bottom:255.866667pt;}
.yf6{bottom:258.266667pt;}
.y12f{bottom:261.306667pt;}
.y17b{bottom:261.786667pt;}
.y51{bottom:262.266667pt;}
.y88{bottom:262.586667pt;}
.yb9{bottom:262.746667pt;}
.yd3{bottom:265.946667pt;}
.y50{bottom:266.906667pt;}
.y19f{bottom:267.226667pt;}
.y1c9{bottom:274.426667pt;}
.yf5{bottom:275.866667pt;}
.y4f{bottom:277.626667pt;}
.y12e{bottom:278.746667pt;}
.y17a{bottom:279.386667pt;}
.y87{bottom:280.186667pt;}
.y4e{bottom:282.266667pt;}
.yd2{bottom:283.546667pt;}
.y19e{bottom:283.866667pt;}
.y1e{bottom:288.052000pt;}
.y1c8{bottom:291.066667pt;}
.y14b{bottom:292.986667pt;}
.y4d{bottom:293.306667pt;}
.yb8{bottom:296.346667pt;}
.y12d{bottom:296.666667pt;}
.y179{bottom:296.826667pt;}
.y86{bottom:298.106667pt;}
.y19d{bottom:302.586667pt;}
.y14a{bottom:308.346667pt;}
.y1c7{bottom:309.786667pt;}
.yf4{bottom:310.906667pt;}
.y11d{bottom:312.666667pt;}
.y149{bottom:312.986667pt;}
.yb7{bottom:313.946667pt;}
.y12c{bottom:314.266667pt;}
.y178{bottom:314.426667pt;}
.y85{bottom:315.706667pt;}
.yd1{bottom:317.306667pt;}
.y19c{bottom:319.066667pt;}
.y1d{bottom:322.932000pt;}
.y148{bottom:323.546667pt;}
.y1c6{bottom:326.426667pt;}
.yf3{bottom:328.506667pt;}
.y11c{bottom:330.266667pt;}
.yb5{bottom:331.546667pt;}
.y12b{bottom:331.706667pt;}
.y177{bottom:332.026667pt;}
.y4b{bottom:332.986667pt;}
.y84{bottom:333.146667pt;}
.yb6{bottom:336.826667pt;}
.y19b{bottom:337.786667pt;}
.y4c{bottom:338.266667pt;}
.y147{bottom:338.906667pt;}
.y162{bottom:343.546667pt;}
.y1c5{bottom:344.986667pt;}
.yf2{bottom:346.106667pt;}
.y11b{bottom:347.706667pt;}
.yb3{bottom:349.146667pt;}
.y12a{bottom:349.306667pt;}
.y176{bottom:349.626667pt;}
.y4a{bottom:350.426667pt;}
.y83{bottom:350.746667pt;}
.y146{bottom:354.266667pt;}
.yb4{bottom:354.426667pt;}
.y161{bottom:354.746667pt;}
.y1c{bottom:357.812000pt;}
.y145{bottom:358.906667pt;}
.y1c4{bottom:361.626667pt;}
.yf1{bottom:363.706667pt;}
.y11a{bottom:365.306667pt;}
.yb2{bottom:366.586667pt;}
.y129{bottom:366.906667pt;}
.y175{bottom:367.226667pt;}
.y49{bottom:368.026667pt;}
.y82{bottom:368.346667pt;}
.y144{bottom:369.946667pt;}
.y19a{bottom:373.146667pt;}
.y1b{bottom:375.389333pt;}
.y1c3{bottom:380.386667pt;}
.yf0{bottom:381.186667pt;}
.y160{bottom:381.506667pt;}
.y118{bottom:382.946667pt;}
.yb1{bottom:384.226667pt;}
.y128{bottom:384.546667pt;}
.y174{bottom:384.706667pt;}
.y48{bottom:385.666667pt;}
.y81{bottom:385.986667pt;}
.y119{bottom:388.226667pt;}
.y199{bottom:389.826667pt;}
.y1a{bottom:391.788000pt;}
.y1c2{bottom:397.026667pt;}
.yef{bottom:398.786667pt;}
.y15e{bottom:399.106667pt;}
.y117{bottom:400.546667pt;}
.yb0{bottom:402.146667pt;}
.y173{bottom:402.306667pt;}
.y47{bottom:403.266667pt;}
.y80{bottom:403.586667pt;}
.y15f{bottom:404.386667pt;}
.y19{bottom:408.186667pt;}
.y198{bottom:408.386667pt;}
.y1c1{bottom:413.666667pt;}
.yee{bottom:416.386667pt;}
.y15d{bottom:416.706667pt;}
.y116{bottom:418.146667pt;}
.yaf{bottom:419.586667pt;}
.y172{bottom:419.906667pt;}
.y46{bottom:420.866667pt;}
.y7f{bottom:421.026667pt;}
.y18{bottom:424.585333pt;}
.y197{bottom:425.026667pt;}
.y1c0{bottom:432.226667pt;}
.yed{bottom:433.986667pt;}
.y15c{bottom:434.306667pt;}
.y115{bottom:435.586667pt;}
.yae{bottom:437.186667pt;}
.y171{bottom:437.506667pt;}
.y45{bottom:438.306667pt;}
.y7e{bottom:438.626667pt;}
.y143{bottom:439.266667pt;}
.y17{bottom:440.984000pt;}
.y196{bottom:443.746667pt;}
.yd0{bottom:443.906667pt;}
.y1bf{bottom:448.866667pt;}
.yec{bottom:451.586667pt;}
.y15b{bottom:451.746667pt;}
.y114{bottom:453.186667pt;}
.yad{bottom:454.786667pt;}
.y170{bottom:455.106667pt;}
.y44{bottom:455.906667pt;}
.y7d{bottom:456.226667pt;}
.ycf{bottom:461.506667pt;}
.y195{bottom:462.466667pt;}
.y1be{bottom:467.586667pt;}
.yeb{bottom:469.026667pt;}
.y15a{bottom:469.346667pt;}
.y113{bottom:470.786667pt;}
.yac{bottom:472.386667pt;}
.y16f{bottom:472.546667pt;}
.y42{bottom:473.506667pt;}
.y7c{bottom:473.826667pt;}
.y16{bottom:475.864000pt;}
.y43{bottom:478.786667pt;}
.y194{bottom:478.946667pt;}
.y1bd{bottom:484.226667pt;}
.yea{bottom:486.626667pt;}
.y159{bottom:486.946667pt;}
.y111{bottom:488.386667pt;}
.yab{bottom:489.986667pt;}
.y16e{bottom:490.146667pt;}
.y41{bottom:491.106667pt;}
.y7a{bottom:491.426667pt;}
.y15{bottom:492.545333pt;}
.y112{bottom:493.666667pt;}
.y7b{bottom:496.706667pt;}
.y193{bottom:497.666667pt;}
.y1bc{bottom:500.706667pt;}
.ye9{bottom:504.226667pt;}
.y158{bottom:504.546667pt;}
.y10f{bottom:505.986667pt;}
.yaa{bottom:507.426667pt;}
.y40{bottom:508.706667pt;}
.y79{bottom:508.866667pt;}
.y110{bottom:511.266667pt;}
.y192{bottom:514.306667pt;}
.y1bb{bottom:519.426667pt;}
.ye8{bottom:521.826667pt;}
.y157{bottom:522.146667pt;}
.y10e{bottom:523.426667pt;}
.y16d{bottom:523.906667pt;}
.ya9{bottom:525.026667pt;}
.y78{bottom:526.466667pt;}
.y14{bottom:527.265333pt;}
.y191{bottom:533.026667pt;}
.y1ba{bottom:536.066667pt;}
.ye7{bottom:539.426667pt;}
.y156{bottom:539.586667pt;}
.y10d{bottom:541.026667pt;}
.y3f{bottom:542.466667pt;}
.ya8{bottom:542.626667pt;}
.y127{bottom:542.946667pt;}
.y13{bottom:543.946667pt;}
.y77{bottom:544.066667pt;}
.y190{bottom:551.586667pt;}
.y1b9{bottom:552.706667pt;}
.ye6{bottom:556.866667pt;}
.y155{bottom:557.186667pt;}
.y16c{bottom:557.506667pt;}
.y10c{bottom:558.946667pt;}
.ya7{bottom:560.226667pt;}
.y126{bottom:560.386667pt;}
.y76{bottom:561.666667pt;}
.y142{bottom:562.146667pt;}
.y18f{bottom:568.226667pt;}
.y1b8{bottom:571.266667pt;}
.y141{bottom:574.466667pt;}
.ye4{bottom:574.786667pt;}
.y16b{bottom:575.106667pt;}
.y3e{bottom:575.906667pt;}
.y10b{bottom:576.386667pt;}
.ya6{bottom:577.826667pt;}
.y125{bottom:577.986667pt;}
.y12{bottom:578.826667pt;}
.y75{bottom:579.266667pt;}
.ye5{bottom:580.066667pt;}
.y18e{bottom:584.866667pt;}
.y1b7{bottom:589.986667pt;}
.y140{bottom:592.066667pt;}
.ye3{bottom:592.386667pt;}
.y16a{bottom:592.546667pt;}
.y3d{bottom:593.533333pt;}
.y10a{bottom:594.013333pt;}
.ya4{bottom:595.293333pt;}
.y124{bottom:595.613333pt;}
.y11{bottom:596.446667pt;}
.y74{bottom:596.733333pt;}
.yce{bottom:597.053333pt;}
.ya5{bottom:600.573333pt;}
.y18d{bottom:603.613333pt;}
.y1b6{bottom:608.733333pt;}
.y13f{bottom:609.693333pt;}
.ye2{bottom:610.013333pt;}
.y169{bottom:610.173333pt;}
.y3c{bottom:611.133333pt;}
.y109{bottom:611.613333pt;}
.y10{bottom:612.882667pt;}
.ya3{bottom:612.893333pt;}
.y123{bottom:613.213333pt;}
.y73{bottom:614.333333pt;}
.ycc{bottom:614.653333pt;}
.ycd{bottom:619.933333pt;}
.y18c{bottom:620.093333pt;}
.y13e{bottom:627.293333pt;}
.ye1{bottom:627.453333pt;}
.y168{bottom:627.773333pt;}
.y3b{bottom:628.733333pt;}
.y108{bottom:629.213333pt;}
.yf{bottom:629.318667pt;}
.ya2{bottom:630.493333pt;}
.y121{bottom:630.813333pt;}
.y72{bottom:631.933333pt;}
.ycb{bottom:632.253333pt;}
.y122{bottom:636.093333pt;}
.y18b{bottom:638.813333pt;}
.y13d{bottom:644.733333pt;}
.ye0{bottom:645.053333pt;}
.y167{bottom:645.373333pt;}
.ye{bottom:645.754667pt;}
.y1b5{bottom:646.013333pt;}
.y39{bottom:646.173333pt;}
.y107{bottom:646.813333pt;}
.ya1{bottom:648.093333pt;}
.y120{bottom:648.253333pt;}
.y71{bottom:649.533333pt;}
.yca{bottom:649.693333pt;}
.y154{bottom:650.333333pt;}
.y3a{bottom:651.453333pt;}
.y18a{bottom:655.453333pt;}
.yd{bottom:662.190667pt;}
.y13c{bottom:662.333333pt;}
.ydf{bottom:662.653333pt;}
.y166{bottom:662.973333pt;}
.y38{bottom:663.773333pt;}
.y105{bottom:664.253333pt;}
.ya0{bottom:665.853333pt;}
.y70{bottom:667.133333pt;}
.yc9{bottom:667.293333pt;}
.y106{bottom:669.533333pt;}
.y189{bottom:674.173333pt;}
.yc{bottom:678.626667pt;}
.yde{bottom:680.253333pt;}
.y164{bottom:680.413333pt;}
.y37{bottom:681.373333pt;}
.y104{bottom:681.853333pt;}
.y9f{bottom:683.453333pt;}
.yc8{bottom:684.893333pt;}
.y13b{bottom:685.533333pt;}
.y165{bottom:685.693333pt;}
.y188{bottom:690.813333pt;}
.ydd{bottom:697.853333pt;}
.y163{bottom:698.013333pt;}
.y36{bottom:698.973333pt;}
.y103{bottom:699.453333pt;}
.y6f{bottom:700.733333pt;}
.y9e{bottom:701.053333pt;}
.yc7{bottom:702.493333pt;}
.ydc{bottom:715.293333pt;}
.y153{bottom:715.613333pt;}
.y1b4{bottom:716.573333pt;}
.y35{bottom:716.733333pt;}
.y102{bottom:717.053333pt;}
.y9d{bottom:718.653333pt;}
.yc6{bottom:720.093333pt;}
.y187{bottom:723.293333pt;}
.yb{bottom:732.226667pt;}
.ydb{bottom:732.893333pt;}
.y152{bottom:733.213333pt;}
.y34{bottom:734.333333pt;}
.y6e{bottom:734.493333pt;}
.y101{bottom:734.653333pt;}
.y9c{bottom:736.253333pt;}
.yc5{bottom:737.533333pt;}
.ya{bottom:748.606667pt;}
.yda{bottom:750.493333pt;}
.y151{bottom:750.813333pt;}
.y33{bottom:751.933333pt;}
.y100{bottom:752.253333pt;}
.y9b{bottom:753.693333pt;}
.yc4{bottom:755.133333pt;}
.y13a{bottom:755.773333pt;}
.y186{bottom:756.733333pt;}
.y9{bottom:765.533333pt;}
.y6d{bottom:768.093333pt;}
.y150{bottom:768.253333pt;}
.y1b3{bottom:768.573333pt;}
.y31{bottom:769.533333pt;}
.yff{bottom:769.693333pt;}
.y9a{bottom:771.293333pt;}
.yc3{bottom:772.733333pt;}
.y185{bottom:774.333333pt;}
.y32{bottom:774.813333pt;}
.y8{bottom:783.613333pt;}
.y6c{bottom:785.693333pt;}
.y14f{bottom:785.853333pt;}
.y30{bottom:786.973333pt;}
.yfd{bottom:787.293333pt;}
.y99{bottom:788.893333pt;}
.yc2{bottom:790.333333pt;}
.yfe{bottom:792.573333pt;}
.y1dd{bottom:799.773333pt;}
.y6b{bottom:803.133333pt;}
.y14e{bottom:803.453333pt;}
.y2f{bottom:804.573333pt;}
.yfc{bottom:804.893333pt;}
.y1b2{bottom:805.853333pt;}
.y98{bottom:806.493333pt;}
.y184{bottom:808.133333pt;}
.y1dc{bottom:816.293333pt;}
.y6a{bottom:820.773333pt;}
.y14d{bottom:821.093333pt;}
.y2e{bottom:822.213333pt;}
.yfb{bottom:822.533333pt;}
.y96{bottom:824.133333pt;}
.y97{bottom:829.413333pt;}
.y1db{bottom:835.013333pt;}
.y7{bottom:836.293333pt;}
.y69{bottom:838.373333pt;}
.yd9{bottom:838.693333pt;}
.y2d{bottom:839.813333pt;}
.yfa{bottom:840.133333pt;}
.y1b1{bottom:841.253333pt;}
.y95{bottom:841.573333pt;}
.y1da{bottom:853.733333pt;}
.y68{bottom:855.973333pt;}
.yd8{bottom:856.133333pt;}
.y2c{bottom:857.573333pt;}
.yc1{bottom:857.893333pt;}
.y6{bottom:859.173333pt;}
.y1d9{bottom:872.453333pt;}
.y67{bottom:873.573333pt;}
.yd7{bottom:873.733333pt;}
.y2a{bottom:875.173333pt;}
.y1b0{bottom:876.453333pt;}
.y94{bottom:876.773333pt;}
.y139{bottom:878.853333pt;}
.y2b{bottom:880.453333pt;}
.y1d8{bottom:888.933333pt;}
.y66{bottom:891.013333pt;}
.yc0{bottom:891.333333pt;}
.y29{bottom:892.773333pt;}
.y183{bottom:892.933333pt;}
.y1af{bottom:893.093333pt;}
.y93{bottom:894.373333pt;}
.y5{bottom:906.693333pt;}
.y1d7{bottom:907.653333pt;}
.y65{bottom:908.613333pt;}
.ybf{bottom:908.933333pt;}
.y28{bottom:910.373333pt;}
.y11f{bottom:910.533333pt;}
.y1ae{bottom:911.813333pt;}
.y92{bottom:911.973333pt;}
.y64{bottom:926.213333pt;}
.y1d6{bottom:926.373333pt;}
.ybe{bottom:926.533333pt;}
.y27{bottom:927.973333pt;}
.y1ad{bottom:928.453333pt;}
.y91{bottom:929.413333pt;}
.yf9{bottom:933.253333pt;}
.y63{bottom:943.813333pt;}
.ybd{bottom:943.973333pt;}
.y1d5{bottom:945.093333pt;}
.y26{bottom:945.413333pt;}
.y1ac{bottom:947.013333pt;}
.y14c{bottom:949.253333pt;}
.y138{bottom:961.413333pt;}
.y62{bottom:961.573333pt;}
.y25{bottom:963.013333pt;}
.y90{bottom:963.173333pt;}
.y1ab{bottom:963.653333pt;}
.y136{bottom:978.853333pt;}
.y61{bottom:979.173333pt;}
.y4{bottom:979.973333pt;}
.y1d4{bottom:980.293333pt;}
.y24{bottom:980.613333pt;}
.y1aa{bottom:982.373333pt;}
.y137{bottom:984.133333pt;}
.y3{bottom:992.453333pt;}
.y60{bottom:996.773333pt;}
.y1a9{bottom:999.013333pt;}
.y8f{bottom:1002.053333pt;}
.y2{bottom:1004.773333pt;}
.y23{bottom:1014.373333pt;}
.y1a8{bottom:1015.653333pt;}
.y1{bottom:1017.253333pt;}
.y21{bottom:1064.480000pt;}
.ha{height:33.918750pt;}
.h9{height:36.431250pt;}
.h2{height:39.571875pt;}
.h3{height:42.084375pt;}
.hc{height:47.621250pt;}
.hd{height:52.108438pt;}
.h6{height:52.134375pt;}
.hb{height:52.785000pt;}
.h8{height:57.758750pt;}
.h7{height:57.787500pt;}
.h5{height:73.490625pt;}
.h4{height:89.193750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:75.199988pt;}
.xc{left:93.472000pt;}
.xd{left:94.432000pt;}
.xf{left:111.711988pt;}
.x1b{left:112.671976pt;}
.x2d{left:116.031976pt;}
.x1c{left:116.991988pt;}
.x1d{left:119.071988pt;}
.x2e{left:120.351988pt;}
.x2f{left:121.311988pt;}
.x45{left:139.546643pt;}
.x14{left:142.266643pt;}
.x3c{left:144.346643pt;}
.x6{left:146.266667pt;}
.x46{left:148.826655pt;}
.x1f{left:149.786655pt;}
.x2a{left:150.906643pt;}
.x18{left:152.986643pt;}
.x3d{left:154.426655pt;}
.x19{left:157.626655pt;}
.x2b{left:160.186655pt;}
.x59{left:161.466655pt;}
.x42{left:169.146655pt;}
.x12{left:176.986643pt;}
.x50{left:179.866643pt;}
.x13{left:181.626655pt;}
.x2c{left:186.266655pt;}
.x48{left:188.186643pt;}
.x51{left:189.146655pt;}
.x49{left:197.466655pt;}
.x7{left:221.786667pt;}
.x5e{left:236.186655pt;}
.x5d{left:243.106655pt;}
.x57{left:253.666643pt;}
.xb{left:259.586667pt;}
.x58{left:262.946655pt;}
.x23{left:264.546643pt;}
.x24{left:269.186655pt;}
.x1e{left:277.346655pt;}
.x25{left:281.186655pt;}
.x30{left:284.546655pt;}
.x1a{left:286.466655pt;}
.x8{left:287.906667pt;}
.x15{left:291.906655pt;}
.x28{left:301.506643pt;}
.x29{left:306.146655pt;}
.x3b{left:308.546655pt;}
.x4e{left:311.906643pt;}
.x38{left:312.866655pt;}
.x4f{left:323.426655pt;}
.x20{left:325.186655pt;}
.x5{left:332.866667pt;}
.x47{left:334.466655pt;}
.x9{left:336.066667pt;}
.x5c{left:343.906655pt;}
.x5f{left:347.906655pt;}
.xa{left:349.026667pt;}
.x5a{left:364.866643pt;}
.x5b{left:374.146655pt;}
.x33{left:376.386643pt;}
.x34{left:385.666655pt;}
.x3e{left:400.706643pt;}
.x3f{left:410.013322pt;}
.x10{left:423.933310pt;}
.x11{left:428.573322pt;}
.x43{left:435.133310pt;}
.x44{left:444.413322pt;}
.x31{left:467.773310pt;}
.x52{left:468.893310pt;}
.x55{left:475.453310pt;}
.x32{left:477.053322pt;}
.x53{left:478.173322pt;}
.x56{left:484.733322pt;}
.x1{left:503.773333pt;}
.x39{left:506.973310pt;}
.x4{left:513.053333pt;}
.x3a{left:516.253322pt;}
.x3{left:537.853333pt;}
.x16{left:539.453310pt;}
.x17{left:544.093322pt;}
.x2{left:603.173333pt;}
.x40{left:613.093310pt;}
.x41{left:622.373322pt;}
.x26{left:626.693310pt;}
.x4c{left:627.973310pt;}
.x27{left:631.333322pt;}
.x4d{left:637.253322pt;}
.x21{left:649.893310pt;}
.x22{left:654.533322pt;}
.x54{left:659.173322pt;}
.x35{left:663.973322pt;}
.x36{left:676.453310pt;}
.x37{left:685.733322pt;}
.x4a{left:687.493310pt;}
.x4b{left:696.773322pt;}
}




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