
    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_a929a16bee3a702385df1684.woff2')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_bc664f727f5824283c57b55f.woff2')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_8756a25aa038ee311fd66091.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5f6bacb2368b951c2fbb22de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_2aaf42914f619105de0b70a7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bf75bef6e7785573cdca3d08.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4c2b5dd8920a1e1d53e79758.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.220800px;}
.lsc{letter-spacing:-0.193800px;}
.ls30{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.027360px;}
.ls7{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.106560px;}
.ls2c{letter-spacing:0.106800px;}
.ls49{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.144000px;}
.lse{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.220800px;}
.ls10{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.576000px;}
.ls3e{letter-spacing:0.666000px;}
.ls31{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.792000px;}
.ls2d{letter-spacing:0.828000px;}
.ls2f{letter-spacing:0.900000px;}
.ls0{letter-spacing:0.936000px;}
.ls42{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.620000px;}
.ls2e{letter-spacing:2.340000px;}
.ls1b{letter-spacing:3.060000px;}
.ls40{letter-spacing:3.600000px;}
.ls21{letter-spacing:3.780000px;}
.ls26{letter-spacing:4.500000px;}
.ls35{letter-spacing:5.220000px;}
.ls36{letter-spacing:6.480000px;}
.ls3d{letter-spacing:6.660000px;}
.ls18{letter-spacing:7.380000px;}
.ls17{letter-spacing:8.100000px;}
.ls3f{letter-spacing:8.640000px;}
.ls45{letter-spacing:9.360000px;}
.ls1c{letter-spacing:9.540000px;}
.ls16{letter-spacing:10.080000px;}
.ls41{letter-spacing:10.776000px;}
.ls1e{letter-spacing:11.700000px;}
.ls38{letter-spacing:12.420000px;}
.ls43{letter-spacing:12.960000px;}
.ls1d{letter-spacing:13.116000px;}
.ls3b{letter-spacing:13.140000px;}
.ls1a{letter-spacing:13.680000px;}
.ls25{letter-spacing:14.580000px;}
.ls13{letter-spacing:14.760000px;}
.ls22{letter-spacing:15.300000px;}
.ls47{letter-spacing:17.280000px;}
.ls32{letter-spacing:17.460000px;}
.ls44{letter-spacing:18.000000px;}
.ls3a{letter-spacing:18.180000px;}
.ls14{letter-spacing:19.620000px;}
.ls2a{letter-spacing:20.340000px;}
.ls4b{letter-spacing:20.880000px;}
.ls23{letter-spacing:21.600000px;}
.ls27{letter-spacing:22.320000px;}
.ls37{letter-spacing:23.220000px;}
.ls4c{letter-spacing:30.360000px;}
.ls39{letter-spacing:33.300000px;}
.ls34{letter-spacing:70.020000px;}
.ls48{letter-spacing:147.600000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.wse{word-spacing:-59.760000px;}
.ws12{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.ws16{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.424000px;}
.wsb{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.120000px;}
.ws13{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.440800px;}
.wsf{word-spacing:-14.426400px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws7{word-spacing:-14.026200px;}
.ws6{word-spacing:-13.999200px;}
.ws11{word-spacing:-13.716000px;}
.wsa{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-4.680000px;}
._b{margin-left:-3.535920px;}
._7{margin-left:-2.377440px;}
._2{margin-left:-1.350720px;}
._0{width:1.026000px;}
._1{width:2.154000px;}
._8{width:3.705120px;}
._9{width:5.199120px;}
._6{width:6.824880px;}
._5{width:7.948080px;}
._c{width:9.292320px;}
._4{width:11.234880px;}
._3{width:12.426480px;}
._a{width:13.522320px;}
._10{width:14.544000px;}
._d{width:16.194960px;}
._43{width:17.401920px;}
._13{width:18.457200px;}
._e{width:19.477440px;}
._12{width:20.680560px;}
._18{width:22.104000px;}
._11{width:23.184000px;}
._19{width:24.768000px;}
._1a{width:25.788000px;}
._16{width:27.576000px;}
._17{width:29.070000px;}
._1b{width:30.528000px;}
._1c{width:31.536000px;}
._20{width:33.300000px;}
._4b{width:34.488000px;}
._1d{width:35.568000px;}
._47{width:36.864000px;}
._27{width:37.872000px;}
._21{width:39.024000px;}
._22{width:40.032000px;}
._23{width:41.400000px;}
._24{width:43.200000px;}
._48{width:44.394480px;}
._14{width:45.504000px;}
._15{width:46.674000px;}
._3e{width:49.464000px;}
._2c{width:50.652000px;}
._2b{width:51.786000px;}
._1f{width:53.916960px;}
._1e{width:54.945360px;}
._61{width:56.443440px;}
._40{width:57.456000px;}
._31{width:58.860000px;}
._25{width:59.904000px;}
._26{width:61.182000px;}
._46{width:63.591840px;}
._38{width:65.016000px;}
._66{width:66.312000px;}
._36{width:67.554000px;}
._4c{width:70.381440px;}
._42{width:71.424000px;}
._3c{width:73.494000px;}
._2e{width:77.058000px;}
._5c{width:78.174000px;}
._5b{width:79.482000px;}
._41{width:81.648000px;}
._3b{width:82.836000px;}
._33{width:85.752000px;}
._35{width:88.506000px;}
._39{width:91.206000px;}
._44{width:94.088160px;}
._45{width:95.165760px;}
._4e{width:100.776000px;}
._4d{width:102.240000px;}
._2d{width:103.734000px;}
._3d{width:106.974000px;}
._34{width:109.512000px;}
._29{width:112.428000px;}
._32{width:115.830000px;}
._28{width:118.098000px;}
._3f{width:121.986000px;}
._59{width:128.736000px;}
._51{width:131.616000px;}
._2f{width:133.542000px;}
._5a{width:135.936000px;}
._37{width:145.530000px;}
._58{width:147.168000px;}
._3a{width:148.608000px;}
._5d{width:160.128000px;}
._5e{width:161.208000px;}
._4a{width:168.164640px;}
._54{width:179.832000px;}
._53{width:180.876000px;}
._30{width:184.140000px;}
._2a{width:193.752000px;}
._62{width:238.320000px;}
._60{width:253.944000px;}
._5f{width:254.952000px;}
._63{width:259.632000px;}
._56{width:261.156000px;}
._57{width:263.076000px;}
._64{width:279.156000px;}
._65{width:280.356000px;}
._4f{width:298.152000px;}
._55{width:411.192000px;}
._52{width:418.752000px;}
._50{width:1482.840000px;}
._49{width:1496.096640px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs5{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:3.240000px;}
.yd7{bottom:3.420000px;}
.y27{bottom:3.600000px;}
.yeb{bottom:4.140000px;}
.yb7{bottom:4.320000px;}
.y128{bottom:4.500000px;}
.ye3{bottom:10.980000px;}
.yde{bottom:11.160000px;}
.ye8{bottom:11.880000px;}
.yb5{bottom:12.060000px;}
.y148{bottom:12.240000px;}
.y144{bottom:14.760000px;}
.y16c{bottom:14.940000px;}
.yd0{bottom:18.720000px;}
.yd6{bottom:18.900000px;}
.yc6{bottom:18.945000px;}
.ye6{bottom:19.260000px;}
.yea{bottom:19.620000px;}
.yb6{bottom:19.800000px;}
.yef{bottom:20.700000px;}
.y177{bottom:25.050000px;}
.y127{bottom:25.200000px;}
.y12f{bottom:25.230000px;}
.y175{bottom:25.920000px;}
.y16f{bottom:26.100000px;}
.yd1{bottom:26.280000px;}
.ycb{bottom:26.460000px;}
.ydd{bottom:26.640000px;}
.ye7{bottom:27.360000px;}
.y149{bottom:30.990000px;}
.y15a{bottom:31.140000px;}
.yf1{bottom:33.840000px;}
.yec{bottom:34.194000px;}
.ycf{bottom:34.200000px;}
.yd5{bottom:34.380000px;}
.yc3{bottom:34.425000px;}
.ye9{bottom:35.094000px;}
.yee{bottom:36.180000px;}
.y171{bottom:36.360000px;}
.y158{bottom:41.400000px;}
.y146{bottom:41.430000px;}
.yc8{bottom:41.580000px;}
.yf3{bottom:41.760000px;}
.yca{bottom:41.940000px;}
.ydc{bottom:42.120000px;}
.ybf{bottom:42.165000px;}
.y174{bottom:46.620000px;}
.y16e{bottom:46.800000px;}
.ye0{bottom:49.500000px;}
.y28{bottom:49.536000px;}
.yce{bottom:49.860000px;}
.yc2{bottom:49.905000px;}
.y3{bottom:56.016000px;}
.yb9{bottom:57.285000px;}
.yc9{bottom:57.600000px;}
.ybe{bottom:57.645000px;}
.ycd{bottom:65.340000px;}
.yc1{bottom:65.385000px;}
.y2{bottom:69.696000px;}
.ye2{bottom:73.125000px;}
.ybd{bottom:73.305000px;}
.yd4{bottom:73.440000px;}
.ycc{bottom:80.820000px;}
.ye5{bottom:80.865000px;}
.yf8{bottom:81.000000px;}
.yc0{bottom:81.045000px;}
.yf7{bottom:81.360000px;}
.y12b{bottom:87.330000px;}
.y136{bottom:87.345000px;}
.ye1{bottom:88.605000px;}
.yd3{bottom:88.950000px;}
.yd8{bottom:96.330000px;}
.ye4{bottom:96.345000px;}
.yf9{bottom:96.480000px;}
.yc5{bottom:96.525000px;}
.ybc{bottom:96.660000px;}
.yf6{bottom:96.840000px;}
.y75{bottom:97.956000px;}
.ydb{bottom:98.094000px;}
.yab{bottom:98.676000px;}
.y184{bottom:103.176000px;}
.y183{bottom:103.716000px;}
.yaa{bottom:105.516000px;}
.y121{bottom:106.236000px;}
.y12a{bottom:108.030000px;}
.y135{bottom:108.045000px;}
.y11f{bottom:109.656000px;}
.yc4{bottom:112.005000px;}
.yf5{bottom:112.320000px;}
.y24{bottom:112.356000px;}
.ybb{bottom:112.365000px;}
.yda{bottom:113.574000px;}
.y74{bottom:115.236000px;}
.yd9{bottom:117.216000px;}
.ya9{bottom:118.656000px;}
.y89{bottom:120.456000px;}
.y182{bottom:124.416000px;}
.y13f{bottom:124.776000px;}
.y120{bottom:126.936000px;}
.y23{bottom:129.636000px;}
.y11e{bottom:130.356000px;}
.y73{bottom:132.516000px;}
.ya8{bottom:135.936000px;}
.y8c{bottom:137.736000px;}
.y181{bottom:145.116000px;}
.y13e{bottom:145.476000px;}
.y4d{bottom:146.916000px;}
.y123{bottom:147.276000px;}
.y22{bottom:147.636000px;}
.y72{bottom:149.796000px;}
.y11d{bottom:150.690000px;}
.ya7{bottom:153.210000px;}
.y71{bottom:155.010000px;}
.ya6{bottom:158.430000px;}
.y13c{bottom:161.670000px;}
.y155{bottom:162.570000px;}
.y4c{bottom:164.190000px;}
.y180{bottom:165.810000px;}
.ydf{bottom:166.350000px;}
.y70{bottom:166.890000px;}
.y16d{bottom:167.250000px;}
.y122{bottom:167.970000px;}
.y21{bottom:168.330000px;}
.ya5{bottom:170.490000px;}
.y11c{bottom:171.390000px;}
.y88{bottom:172.110000px;}
.y154{bottom:179.850000px;}
.y4b{bottom:181.470000px;}
.y13d{bottom:182.370000px;}
.y6f{bottom:184.170000px;}
.y17f{bottom:186.510000px;}
.ya4{bottom:187.590000px;}
.y20{bottom:189.030000px;}
.y8b{bottom:189.390000px;}
.y11b{bottom:191.730000px;}
.y153{bottom:197.850000px;}
.y4a{bottom:198.750000px;}
.y6e{bottom:201.450000px;}
.y134{bottom:203.070000px;}
.ya3{bottom:204.870000px;}
.y6d{bottom:206.670000px;}
.y17e{bottom:207.210000px;}
.y1f{bottom:209.730000px;}
.y170{bottom:210.270000px;}
.y49{bottom:215.850000px;}
.y152{bottom:218.550000px;}
.y6c{bottom:218.730000px;}
.ya2{bottom:222.150000px;}
.y13b{bottom:223.770000px;}
.y87{bottom:223.950000px;}
.ya1{bottom:227.370000px;}
.y17d{bottom:227.910000px;}
.y1e{bottom:230.430000px;}
.y48{bottom:233.130000px;}
.y6b{bottom:236.010000px;}
.y151{bottom:239.295000px;}
.ya0{bottom:239.475000px;}
.y6a{bottom:241.275000px;}
.y10d{bottom:243.615000px;}
.y139{bottom:244.515000px;}
.y117{bottom:247.755000px;}
.y17c{bottom:248.655000px;}
.y47{bottom:250.455000px;}
.y1d{bottom:251.175000px;}
.y16b{bottom:253.155000px;}
.y69{bottom:253.335000px;}
.y118{bottom:254.595000px;}
.yb3{bottom:258.015000px;}
.y92{bottom:258.555000px;}
.y150{bottom:259.995000px;}
.y10c{bottom:260.895000px;}
.y13a{bottom:265.215000px;}
.y46{bottom:267.735000px;}
.y116{bottom:268.455000px;}
.y17b{bottom:269.355000px;}
.y86{bottom:270.435000px;}
.y103{bottom:271.515000px;}
.y1c{bottom:271.875000px;}
.y85{bottom:275.655000px;}
.y14f{bottom:280.695000px;}
.y67{bottom:282.315000px;}
.y45{bottom:285.015000px;}
.y137{bottom:285.915000px;}
.y84{bottom:287.715000px;}
.y68{bottom:289.155000px;}
.y17a{bottom:290.055000px;}
.y102{bottom:292.215000px;}
.y1b{bottom:292.575000px;}
.y109{bottom:292.935000px;}
.y10b{bottom:295.275000px;}
.y9f{bottom:299.415000px;}
.y16a{bottom:300.135000px;}
.y14e{bottom:301.035000px;}
.y44{bottom:302.295000px;}
.y66{bottom:303.015000px;}
.y83{bottom:304.995000px;}
.y138{bottom:306.615000px;}
.y115{bottom:309.855000px;}
.yb0{bottom:310.215000px;}
.y179{bottom:310.395000px;}
.y101{bottom:312.915000px;}
.y1a{bottom:313.275000px;}
.y43{bottom:319.395000px;}
.yb2{bottom:320.115000px;}
.y169{bottom:320.835000px;}
.y14d{bottom:322.095000px;}
.y82{bottom:322.275000px;}
.y65{bottom:323.715000px;}
.y91{bottom:327.495000px;}
.y132{bottom:328.035000px;}
.y114{bottom:330.195000px;}
.y178{bottom:330.735000px;}
.y100{bottom:333.615000px;}
.y19{bottom:333.975000px;}
.y42{bottom:336.675000px;}
.yd2{bottom:338.655000px;}
.y81{bottom:339.555000px;}
.yb1{bottom:340.815000px;}
.y168{bottom:341.175000px;}
.y14c{bottom:342.615000px;}
.y64{bottom:344.415000px;}
.y80{bottom:344.775000px;}
.y133{bottom:348.735000px;}
.y113{bottom:350.535000px;}
.y41{bottom:353.955000px;}
.yfe{bottom:354.315000px;}
.y18{bottom:354.675000px;}
.y7f{bottom:356.835000px;}
.y167{bottom:359.175000px;}
.yff{bottom:361.155000px;}
.y90{bottom:362.055000px;}
.y14b{bottom:363.315000px;}
.y62{bottom:365.115000px;}
.y173{bottom:366.375000px;}
.y112{bottom:367.815000px;}
.y129{bottom:369.435000px;}
.y40{bottom:371.235000px;}
.y63{bottom:371.955000px;}
.y8f{bottom:373.935000px;}
.yfd{bottom:375.015000px;}
.y17{bottom:375.375000px;}
.y105{bottom:379.155000px;}
.y166{bottom:379.875000px;}
.yaf{bottom:382.215000px;}
.y14a{bottom:384.015000px;}
.y61{bottom:385.815000px;}
.y3f{bottom:388.515000px;}
.y131{bottom:390.135000px;}
.y9d{bottom:391.215000px;}
.y111{bottom:392.655000px;}
.yfc{bottom:395.715000px;}
.y16{bottom:396.075000px;}
.y9c{bottom:396.435000px;}
.y165{bottom:400.575000px;}
.y145{bottom:401.115000px;}
.y3e{bottom:405.795000px;}
.y60{bottom:406.515000px;}
.y9b{bottom:408.495000px;}
.y176{bottom:409.395000px;}
.y12e{bottom:410.835000px;}
.y107{bottom:413.715000px;}
.yfb{bottom:416.415000px;}
.y15{bottom:416.775000px;}
.y164{bottom:421.275000px;}
.y3d{bottom:422.895000px;}
.yad{bottom:423.615000px;}
.y9a{bottom:425.775000px;}
.y5e{bottom:427.245000px;}
.y108{bottom:431.025000px;}
.y130{bottom:431.565000px;}
.y5f{bottom:434.085000px;}
.yfa{bottom:437.145000px;}
.y14{bottom:437.505000px;}
.y147{bottom:438.765000px;}
.y3c{bottom:440.205000px;}
.y163{bottom:442.005000px;}
.y99{bottom:443.085000px;}
.y10a{bottom:444.345000px;}
.y5d{bottom:447.945000px;}
.y98{bottom:448.305000px;}
.y12c{bottom:452.265000px;}
.yf4{bottom:454.065000px;}
.y3b{bottom:457.485000px;}
.y13{bottom:458.205000px;}
.y97{bottom:460.185000px;}
.y162{bottom:462.705000px;}
.y8e{bottom:465.045000px;}
.y5c{bottom:468.645000px;}
.y12d{bottom:472.965000px;}
.y3a{bottom:474.765000px;}
.y143{bottom:476.385000px;}
.y12{bottom:478.905000px;}
.y161{bottom:483.405000px;}
.y9e{bottom:485.745000px;}
.y5b{bottom:489.345000px;}
.y39{bottom:492.045000px;}
.y126{bottom:494.385000px;}
.y172{bottom:499.245000px;}
.y11{bottom:499.605000px;}
.y160{bottom:504.105000px;}
.y96{bottom:506.445000px;}
.y38{bottom:509.145000px;}
.y5a{bottom:510.045000px;}
.yba{bottom:510.945000px;}
.y119{bottom:519.945000px;}
.y10{bottom:520.305000px;}
.y142{bottom:523.365000px;}
.y15f{bottom:524.445000px;}
.y37{bottom:526.425000px;}
.y7e{bottom:527.145000px;}
.y59{bottom:530.745000px;}
.y125{bottom:540.645000px;}
.yf{bottom:541.005000px;}
.y36{bottom:543.705000px;}
.y141{bottom:544.065000px;}
.y15e{bottom:545.505000px;}
.y95{bottom:547.845000px;}
.y58{bottom:551.445000px;}
.y35{bottom:560.985000px;}
.y124{bottom:561.345000px;}
.ye{bottom:561.705000px;}
.yf2{bottom:563.505000px;}
.y140{bottom:564.405000px;}
.y15d{bottom:566.205000px;}
.y94{bottom:568.545000px;}
.y110{bottom:571.785000px;}
.y57{bottom:572.145000px;}
.y34{bottom:578.265000px;}
.yd{bottom:582.405000px;}
.y15c{bottom:586.905000px;}
.y8a{bottom:589.245000px;}
.y10f{bottom:592.485000px;}
.y56{bottom:592.845000px;}
.y33{bottom:595.545000px;}
.yc{bottom:603.105000px;}
.yb8{bottom:604.725000px;}
.y15b{bottom:607.605000px;}
.yac{bottom:609.945000px;}
.y32{bottom:612.645000px;}
.y55{bottom:613.185000px;}
.yb{bottom:623.850000px;}
.y157{bottom:625.290000px;}
.y31{bottom:629.970000px;}
.y10e{bottom:630.330000px;}
.y7d{bottom:630.690000px;}
.y54{bottom:633.390000px;}
.ya{bottom:644.190000px;}
.y7b{bottom:644.550000px;}
.y30{bottom:647.250000px;}
.y53{bottom:650.670000px;}
.y7c{bottom:651.390000px;}
.yf0{bottom:657.510000px;}
.y159{bottom:663.090000px;}
.y2f{bottom:664.530000px;}
.y11a{bottom:664.890000px;}
.y9{bottom:665.250000px;}
.y52{bottom:667.950000px;}
.y93{bottom:672.090000px;}
.y2e{bottom:681.810000px;}
.y51{bottom:685.230000px;}
.y106{bottom:685.590000px;}
.y8{bottom:685.950000px;}
.y7a{bottom:692.790000px;}
.y2d{bottom:699.090000px;}
.y156{bottom:700.710000px;}
.y50{bottom:702.510000px;}
.y7{bottom:706.290000px;}
.y79{bottom:706.650000px;}
.y8d{bottom:713.490000px;}
.y2c{bottom:716.190000px;}
.y4f{bottom:719.790000px;}
.y6{bottom:726.990000px;}
.y78{bottom:727.350000px;}
.yb4{bottom:729.690000px;}
.y2b{bottom:734.190000px;}
.yed{bottom:735.810000px;}
.y4e{bottom:736.890000px;}
.y5{bottom:747.690000px;}
.y77{bottom:748.050000px;}
.y2a{bottom:754.170000px;}
.y104{bottom:754.890000px;}
.y4{bottom:768.390000px;}
.y76{bottom:768.750000px;}
.y29{bottom:771.450000px;}
.yae{bottom:775.590000px;}
.y26{bottom:822.420000px;}
.y25{bottom:823.680000px;}
.y1{bottom:827.640000px;}
.h8{height:17.100000px;}
.h7{height:17.280000px;}
.h1f{height:20.700000px;}
.h21{height:20.736000px;}
.he{height:33.840000px;}
.h26{height:36.000000px;}
.h24{height:36.036000px;}
.h23{height:36.180000px;}
.hb{height:38.158594px;}
.h29{height:41.256000px;}
.h1e{height:41.400000px;}
.h20{height:41.436000px;}
.h3{height:47.344922px;}
.h17{height:48.240000px;}
.h18{height:48.420000px;}
.h2{height:52.998047px;}
.ha{height:53.573906px;}
.hf{height:54.421875px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.h13{height:62.100000px;}
.hd{height:64.546875px;}
.h1d{height:70.628906px;}
.h5{height:70.664062px;}
.h4{height:72.562500px;}
.h25{height:73.800000px;}
.h22{height:73.836000px;}
.h19{height:77.580000px;}
.h28{height:84.276000px;}
.h27{height:84.456000px;}
.h12{height:93.060000px;}
.h1a{height:93.276000px;}
.h15{height:108.576000px;}
.h1c{height:108.720000px;}
.h10{height:124.236000px;}
.h14{height:171.390000px;}
.h1b{height:202.710000px;}
.h11{height:218.010000px;}
.h16{height:220.530000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:6.840000px;}
.w3{width:22.500000px;}
.w1b{width:49.500000px;}
.w18{width:58.500000px;}
.w13{width:58.536000px;}
.w14{width:60.300000px;}
.w6{width:64.260000px;}
.wd{width:80.676000px;}
.wf{width:80.820000px;}
.w12{width:86.580000px;}
.w17{width:93.960000px;}
.wc{width:100.296000px;}
.w8{width:101.016000px;}
.wa{width:102.420000px;}
.w1a{width:102.960000px;}
.w9{width:107.856000px;}
.wb{width:108.180000px;}
.w7{width:113.616000px;}
.we{width:119.196000px;}
.w19{width:120.096000px;}
.w16{width:129.096000px;}
.w11{width:134.676000px;}
.w15{width:149.076000px;}
.w10{width:208.470000px;}
.w1{width:629.250000px;}
.w5{width:629.459981px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x86{left:4.500000px;}
.x56{left:8.100000px;}
.x82{left:12.600000px;}
.x8{left:73.115991px;}
.x4{left:76.715991px;}
.x17{left:79.235991px;}
.x2e{left:82.115991px;}
.x5{left:83.375991px;}
.x49{left:84.635991px;}
.x36{left:89.855981px;}
.x7e{left:93.635991px;}
.x26{left:99.395981px;}
.x37{left:102.095991px;}
.x27{left:105.515991px;}
.x71{left:107.315981px;}
.x63{left:118.295981px;}
.x72{left:119.555991px;}
.x7d{left:125.495991px;}
.x7c{left:129.455981px;}
.xb{left:131.435991px;}
.x12{left:137.375991px;}
.x68{left:138.815981px;}
.xd{left:140.795991px;}
.x10{left:142.775991px;}
.x4c{left:144.395981px;}
.x9{left:146.555991px;}
.x70{left:149.975981px;}
.x69{left:151.049991px;}
.x4d{left:156.629991px;}
.x4a{left:162.209981px;}
.x7f{left:169.049991px;}
.x45{left:170.309981px;}
.x4b{left:174.449991px;}
.x6e{left:177.329981px;}
.x2{left:180.389991px;}
.x8e{left:181.469991px;}
.x46{left:182.549991px;}
.x6f{left:189.614991px;}
.x5a{left:193.214981px;}
.x47{left:195.914981px;}
.x59{left:197.714981px;}
.xe{left:201.134991px;}
.x5b{left:205.454991px;}
.x11{left:206.714991px;}
.x48{left:208.154991px;}
.x33{left:209.234981px;}
.x4e{left:214.274991px;}
.xa{left:216.074991px;}
.x8f{left:217.514981px;}
.x77{left:219.134981px;}
.x14{left:222.194991px;}
.x38{left:223.634981px;}
.xa4{left:226.154991px;}
.x90{left:229.754991px;}
.xc{left:231.734991px;}
.x73{left:233.534981px;}
.x39{left:235.874991px;}
.xf{left:238.214991px;}
.x16{left:240.734991px;}
.x13{left:243.074991px;}
.x40{left:245.774981px;}
.x15{left:247.034991px;}
.x8d{left:249.194981px;}
.x57{left:250.275000px;}
.x28{left:254.414981px;}
.x95{left:255.854981px;}
.x41{left:258.014991px;}
.x29{left:260.534991px;}
.x81{left:264.854981px;}
.x8b{left:267.374981px;}
.x2c{left:270.254981px;}
.x51{left:272.414981px;}
.x55{left:273.674991px;}
.x5c{left:275.654981px;}
.x6{left:277.454991px;}
.x8c{left:279.614991px;}
.x1{left:281.594991px;}
.x52{left:284.654991px;}
.x9c{left:286.634991px;}
.x1f{left:288.434991px;}
.x85{left:293.655000px;}
.x22{left:295.274981px;}
.xa9{left:296.354981px;}
.x23{left:301.394991px;}
.x89{left:304.455000px;}
.x4f{left:306.254981px;}
.x24{left:308.054981px;}
.x7a{left:310.964981px;}
.x25{left:314.204991px;}
.x7{left:316.904991px;}
.x50{left:318.524991px;}
.x7b{left:323.204991px;}
.x9f{left:325.904981px;}
.x42{left:328.604991px;}
.x20{left:332.204981px;}
.x21{left:338.324991px;}
.x96{left:340.484981px;}
.x61{left:344.804981px;}
.x3a{left:348.224981px;}
.x58{left:351.285000px;}
.x97{left:352.724991px;}
.x88{left:353.985000px;}
.x62{left:357.044991px;}
.x3b{left:360.464991px;}
.x83{left:361.545000px;}
.x8a{left:362.985000px;}
.x91{left:367.124981px;}
.x3e{left:369.464981px;}
.x74{left:372.344981px;}
.x6c{left:373.784981px;}
.x92{left:379.364991px;}
.x3f{left:381.704991px;}
.x5f{left:384.044981px;}
.x6d{left:386.024991px;}
.x1b{left:395.744981px;}
.x1c{left:401.864991px;}
.x78{left:406.004981px;}
.x3{left:407.084991px;}
.x87{left:412.485000px;}
.x6a{left:416.264981px;}
.x79{left:418.244991px;}
.x9a{left:424.904991px;}
.x53{left:427.064981px;}
.x6b{left:428.504991px;}
.xa5{left:432.104981px;}
.xa8{left:435.884981px;}
.x54{left:439.349991px;}
.x5e{left:444.569981px;}
.x93{left:446.009981px;}
.x75{left:449.069981px;}
.x19{left:450.689981px;}
.xa2{left:452.309981px;}
.x98{left:455.369981px;}
.x1a{left:456.809991px;}
.x94{left:458.249991px;}
.x34{left:459.329981px;}
.x76{left:461.309991px;}
.x31{left:462.929981px;}
.xa3{left:464.549991px;}
.x99{left:467.609991px;}
.x35{left:471.569991px;}
.xa0{left:472.829981px;}
.x32{left:475.169991px;}
.x84{left:480.750000px;}
.xa1{left:485.069991px;}
.x5d{left:486.149981px;}
.x64{left:487.769981px;}
.x66{left:491.369981px;}
.x9d{left:493.169981px;}
.x2f{left:494.249981px;}
.x43{left:498.389981px;}
.x65{left:500.009991px;}
.x67{left:503.609991px;}
.x9e{left:505.409991px;}
.x30{left:506.489991px;}
.x44{left:510.629991px;}
.x1d{left:522.149981px;}
.x80{left:526.109981px;}
.x2d{left:527.189981px;}
.x1e{left:528.269991px;}
.x9b{left:534.209991px;}
.x18{left:539.070000px;}
.xa6{left:541.409981px;}
.x3c{left:545.009981px;}
.x60{left:549.329981px;}
.xa7{left:553.649991px;}
.x2a{left:555.449981px;}
.x3d{left:557.249991px;}
.x2b{left:561.569991px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.196267pt;}
.lsc{letter-spacing:-0.172267pt;}
.ls30{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.024320pt;}
.ls7{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.094720pt;}
.ls2c{letter-spacing:0.094933pt;}
.ls49{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.196267pt;}
.ls10{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls3e{letter-spacing:0.592000pt;}
.ls31{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.704000pt;}
.ls2d{letter-spacing:0.736000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls0{letter-spacing:0.832000pt;}
.ls42{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.440000pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls40{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.360000pt;}
.ls26{letter-spacing:4.000000pt;}
.ls35{letter-spacing:4.640000pt;}
.ls36{letter-spacing:5.760000pt;}
.ls3d{letter-spacing:5.920000pt;}
.ls18{letter-spacing:6.560000pt;}
.ls17{letter-spacing:7.200000pt;}
.ls3f{letter-spacing:7.680000pt;}
.ls45{letter-spacing:8.320000pt;}
.ls1c{letter-spacing:8.480000pt;}
.ls16{letter-spacing:8.960000pt;}
.ls41{letter-spacing:9.578667pt;}
.ls1e{letter-spacing:10.400000pt;}
.ls38{letter-spacing:11.040000pt;}
.ls43{letter-spacing:11.520000pt;}
.ls1d{letter-spacing:11.658667pt;}
.ls3b{letter-spacing:11.680000pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls25{letter-spacing:12.960000pt;}
.ls13{letter-spacing:13.120000pt;}
.ls22{letter-spacing:13.600000pt;}
.ls47{letter-spacing:15.360000pt;}
.ls32{letter-spacing:15.520000pt;}
.ls44{letter-spacing:16.000000pt;}
.ls3a{letter-spacing:16.160000pt;}
.ls14{letter-spacing:17.440000pt;}
.ls2a{letter-spacing:18.080000pt;}
.ls4b{letter-spacing:18.560000pt;}
.ls23{letter-spacing:19.200000pt;}
.ls27{letter-spacing:19.840000pt;}
.ls37{letter-spacing:20.640000pt;}
.ls4c{letter-spacing:26.986667pt;}
.ls39{letter-spacing:29.600000pt;}
.ls34{letter-spacing:62.240000pt;}
.ls48{letter-spacing:131.200000pt;}
.ws1{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.120000pt;}
.ws12{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.488000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.836267pt;}
.wsf{word-spacing:-12.823467pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws7{word-spacing:-12.467733pt;}
.ws6{word-spacing:-12.443733pt;}
.ws11{word-spacing:-12.192000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-4.160000pt;}
._b{margin-left:-3.143040pt;}
._7{margin-left:-2.113280pt;}
._2{margin-left:-1.200640pt;}
._0{width:0.912000pt;}
._1{width:1.914667pt;}
._8{width:3.293440pt;}
._9{width:4.621440pt;}
._6{width:6.066560pt;}
._5{width:7.064960pt;}
._c{width:8.259840pt;}
._4{width:9.986560pt;}
._3{width:11.045760pt;}
._a{width:12.019840pt;}
._10{width:12.928000pt;}
._d{width:14.395520pt;}
._43{width:15.468373pt;}
._13{width:16.406400pt;}
._e{width:17.313280pt;}
._12{width:18.382720pt;}
._18{width:19.648000pt;}
._11{width:20.608000pt;}
._19{width:22.016000pt;}
._1a{width:22.922667pt;}
._16{width:24.512000pt;}
._17{width:25.840000pt;}
._1b{width:27.136000pt;}
._1c{width:28.032000pt;}
._20{width:29.600000pt;}
._4b{width:30.656000pt;}
._1d{width:31.616000pt;}
._47{width:32.768000pt;}
._27{width:33.664000pt;}
._21{width:34.688000pt;}
._22{width:35.584000pt;}
._23{width:36.800000pt;}
._24{width:38.400000pt;}
._48{width:39.461760pt;}
._14{width:40.448000pt;}
._15{width:41.488000pt;}
._3e{width:43.968000pt;}
._2c{width:45.024000pt;}
._2b{width:46.032000pt;}
._1f{width:47.926187pt;}
._1e{width:48.840320pt;}
._61{width:50.171947pt;}
._40{width:51.072000pt;}
._31{width:52.320000pt;}
._25{width:53.248000pt;}
._26{width:54.384000pt;}
._46{width:56.526080pt;}
._38{width:57.792000pt;}
._66{width:58.944000pt;}
._36{width:60.048000pt;}
._4c{width:62.561280pt;}
._42{width:63.488000pt;}
._3c{width:65.328000pt;}
._2e{width:68.496000pt;}
._5c{width:69.488000pt;}
._5b{width:70.650667pt;}
._41{width:72.576000pt;}
._3b{width:73.632000pt;}
._33{width:76.224000pt;}
._35{width:78.672000pt;}
._39{width:81.072000pt;}
._44{width:83.633920pt;}
._45{width:84.591787pt;}
._4e{width:89.578667pt;}
._4d{width:90.880000pt;}
._2d{width:92.208000pt;}
._3d{width:95.088000pt;}
._34{width:97.344000pt;}
._29{width:99.936000pt;}
._32{width:102.960000pt;}
._28{width:104.976000pt;}
._3f{width:108.432000pt;}
._59{width:114.432000pt;}
._51{width:116.992000pt;}
._2f{width:118.704000pt;}
._5a{width:120.832000pt;}
._37{width:129.360000pt;}
._58{width:130.816000pt;}
._3a{width:132.096000pt;}
._5d{width:142.336000pt;}
._5e{width:143.296000pt;}
._4a{width:149.479680pt;}
._54{width:159.850667pt;}
._53{width:160.778667pt;}
._30{width:163.680000pt;}
._2a{width:172.224000pt;}
._62{width:211.840000pt;}
._60{width:225.728000pt;}
._5f{width:226.624000pt;}
._63{width:230.784000pt;}
._56{width:232.138667pt;}
._57{width:233.845333pt;}
._64{width:248.138667pt;}
._65{width:249.205333pt;}
._4f{width:265.024000pt;}
._55{width:365.504000pt;}
._52{width:372.224000pt;}
._50{width:1318.080000pt;}
._49{width:1329.863680pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:2.880000pt;}
.yd7{bottom:3.040000pt;}
.y27{bottom:3.200000pt;}
.yeb{bottom:3.680000pt;}
.yb7{bottom:3.840000pt;}
.y128{bottom:4.000000pt;}
.ye3{bottom:9.760000pt;}
.yde{bottom:9.920000pt;}
.ye8{bottom:10.560000pt;}
.yb5{bottom:10.720000pt;}
.y148{bottom:10.880000pt;}
.y144{bottom:13.120000pt;}
.y16c{bottom:13.280000pt;}
.yd0{bottom:16.640000pt;}
.yd6{bottom:16.800000pt;}
.yc6{bottom:16.840000pt;}
.ye6{bottom:17.120000pt;}
.yea{bottom:17.440000pt;}
.yb6{bottom:17.600000pt;}
.yef{bottom:18.400000pt;}
.y177{bottom:22.266667pt;}
.y127{bottom:22.400000pt;}
.y12f{bottom:22.426667pt;}
.y175{bottom:23.040000pt;}
.y16f{bottom:23.200000pt;}
.yd1{bottom:23.360000pt;}
.ycb{bottom:23.520000pt;}
.ydd{bottom:23.680000pt;}
.ye7{bottom:24.320000pt;}
.y149{bottom:27.546667pt;}
.y15a{bottom:27.680000pt;}
.yf1{bottom:30.080000pt;}
.yec{bottom:30.394667pt;}
.ycf{bottom:30.400000pt;}
.yd5{bottom:30.560000pt;}
.yc3{bottom:30.600000pt;}
.ye9{bottom:31.194667pt;}
.yee{bottom:32.160000pt;}
.y171{bottom:32.320000pt;}
.y158{bottom:36.800000pt;}
.y146{bottom:36.826667pt;}
.yc8{bottom:36.960000pt;}
.yf3{bottom:37.120000pt;}
.yca{bottom:37.280000pt;}
.ydc{bottom:37.440000pt;}
.ybf{bottom:37.480000pt;}
.y174{bottom:41.440000pt;}
.y16e{bottom:41.600000pt;}
.ye0{bottom:44.000000pt;}
.y28{bottom:44.032000pt;}
.yce{bottom:44.320000pt;}
.yc2{bottom:44.360000pt;}
.y3{bottom:49.792000pt;}
.yb9{bottom:50.920000pt;}
.yc9{bottom:51.200000pt;}
.ybe{bottom:51.240000pt;}
.ycd{bottom:58.080000pt;}
.yc1{bottom:58.120000pt;}
.y2{bottom:61.952000pt;}
.ye2{bottom:65.000000pt;}
.ybd{bottom:65.160000pt;}
.yd4{bottom:65.280000pt;}
.ycc{bottom:71.840000pt;}
.ye5{bottom:71.880000pt;}
.yf8{bottom:72.000000pt;}
.yc0{bottom:72.040000pt;}
.yf7{bottom:72.320000pt;}
.y12b{bottom:77.626667pt;}
.y136{bottom:77.640000pt;}
.ye1{bottom:78.760000pt;}
.yd3{bottom:79.066667pt;}
.yd8{bottom:85.626667pt;}
.ye4{bottom:85.640000pt;}
.yf9{bottom:85.760000pt;}
.yc5{bottom:85.800000pt;}
.ybc{bottom:85.920000pt;}
.yf6{bottom:86.080000pt;}
.y75{bottom:87.072000pt;}
.ydb{bottom:87.194667pt;}
.yab{bottom:87.712000pt;}
.y184{bottom:91.712000pt;}
.y183{bottom:92.192000pt;}
.yaa{bottom:93.792000pt;}
.y121{bottom:94.432000pt;}
.y12a{bottom:96.026667pt;}
.y135{bottom:96.040000pt;}
.y11f{bottom:97.472000pt;}
.yc4{bottom:99.560000pt;}
.yf5{bottom:99.840000pt;}
.y24{bottom:99.872000pt;}
.ybb{bottom:99.880000pt;}
.yda{bottom:100.954667pt;}
.y74{bottom:102.432000pt;}
.yd9{bottom:104.192000pt;}
.ya9{bottom:105.472000pt;}
.y89{bottom:107.072000pt;}
.y182{bottom:110.592000pt;}
.y13f{bottom:110.912000pt;}
.y120{bottom:112.832000pt;}
.y23{bottom:115.232000pt;}
.y11e{bottom:115.872000pt;}
.y73{bottom:117.792000pt;}
.ya8{bottom:120.832000pt;}
.y8c{bottom:122.432000pt;}
.y181{bottom:128.992000pt;}
.y13e{bottom:129.312000pt;}
.y4d{bottom:130.592000pt;}
.y123{bottom:130.912000pt;}
.y22{bottom:131.232000pt;}
.y72{bottom:133.152000pt;}
.y11d{bottom:133.946667pt;}
.ya7{bottom:136.186667pt;}
.y71{bottom:137.786667pt;}
.ya6{bottom:140.826667pt;}
.y13c{bottom:143.706667pt;}
.y155{bottom:144.506667pt;}
.y4c{bottom:145.946667pt;}
.y180{bottom:147.386667pt;}
.ydf{bottom:147.866667pt;}
.y70{bottom:148.346667pt;}
.y16d{bottom:148.666667pt;}
.y122{bottom:149.306667pt;}
.y21{bottom:149.626667pt;}
.ya5{bottom:151.546667pt;}
.y11c{bottom:152.346667pt;}
.y88{bottom:152.986667pt;}
.y154{bottom:159.866667pt;}
.y4b{bottom:161.306667pt;}
.y13d{bottom:162.106667pt;}
.y6f{bottom:163.706667pt;}
.y17f{bottom:165.786667pt;}
.ya4{bottom:166.746667pt;}
.y20{bottom:168.026667pt;}
.y8b{bottom:168.346667pt;}
.y11b{bottom:170.426667pt;}
.y153{bottom:175.866667pt;}
.y4a{bottom:176.666667pt;}
.y6e{bottom:179.066667pt;}
.y134{bottom:180.506667pt;}
.ya3{bottom:182.106667pt;}
.y6d{bottom:183.706667pt;}
.y17e{bottom:184.186667pt;}
.y1f{bottom:186.426667pt;}
.y170{bottom:186.906667pt;}
.y49{bottom:191.866667pt;}
.y152{bottom:194.266667pt;}
.y6c{bottom:194.426667pt;}
.ya2{bottom:197.466667pt;}
.y13b{bottom:198.906667pt;}
.y87{bottom:199.066667pt;}
.ya1{bottom:202.106667pt;}
.y17d{bottom:202.586667pt;}
.y1e{bottom:204.826667pt;}
.y48{bottom:207.226667pt;}
.y6b{bottom:209.786667pt;}
.y151{bottom:212.706667pt;}
.ya0{bottom:212.866667pt;}
.y6a{bottom:214.466667pt;}
.y10d{bottom:216.546667pt;}
.y139{bottom:217.346667pt;}
.y117{bottom:220.226667pt;}
.y17c{bottom:221.026667pt;}
.y47{bottom:222.626667pt;}
.y1d{bottom:223.266667pt;}
.y16b{bottom:225.026667pt;}
.y69{bottom:225.186667pt;}
.y118{bottom:226.306667pt;}
.yb3{bottom:229.346667pt;}
.y92{bottom:229.826667pt;}
.y150{bottom:231.106667pt;}
.y10c{bottom:231.906667pt;}
.y13a{bottom:235.746667pt;}
.y46{bottom:237.986667pt;}
.y116{bottom:238.626667pt;}
.y17b{bottom:239.426667pt;}
.y86{bottom:240.386667pt;}
.y103{bottom:241.346667pt;}
.y1c{bottom:241.666667pt;}
.y85{bottom:245.026667pt;}
.y14f{bottom:249.506667pt;}
.y67{bottom:250.946667pt;}
.y45{bottom:253.346667pt;}
.y137{bottom:254.146667pt;}
.y84{bottom:255.746667pt;}
.y68{bottom:257.026667pt;}
.y17a{bottom:257.826667pt;}
.y102{bottom:259.746667pt;}
.y1b{bottom:260.066667pt;}
.y109{bottom:260.386667pt;}
.y10b{bottom:262.466667pt;}
.y9f{bottom:266.146667pt;}
.y16a{bottom:266.786667pt;}
.y14e{bottom:267.586667pt;}
.y44{bottom:268.706667pt;}
.y66{bottom:269.346667pt;}
.y83{bottom:271.106667pt;}
.y138{bottom:272.546667pt;}
.y115{bottom:275.426667pt;}
.yb0{bottom:275.746667pt;}
.y179{bottom:275.906667pt;}
.y101{bottom:278.146667pt;}
.y1a{bottom:278.466667pt;}
.y43{bottom:283.906667pt;}
.yb2{bottom:284.546667pt;}
.y169{bottom:285.186667pt;}
.y14d{bottom:286.306667pt;}
.y82{bottom:286.466667pt;}
.y65{bottom:287.746667pt;}
.y91{bottom:291.106667pt;}
.y132{bottom:291.586667pt;}
.y114{bottom:293.506667pt;}
.y178{bottom:293.986667pt;}
.y100{bottom:296.546667pt;}
.y19{bottom:296.866667pt;}
.y42{bottom:299.266667pt;}
.yd2{bottom:301.026667pt;}
.y81{bottom:301.826667pt;}
.yb1{bottom:302.946667pt;}
.y168{bottom:303.266667pt;}
.y14c{bottom:304.546667pt;}
.y64{bottom:306.146667pt;}
.y80{bottom:306.466667pt;}
.y133{bottom:309.986667pt;}
.y113{bottom:311.586667pt;}
.y41{bottom:314.626667pt;}
.yfe{bottom:314.946667pt;}
.y18{bottom:315.266667pt;}
.y7f{bottom:317.186667pt;}
.y167{bottom:319.266667pt;}
.yff{bottom:321.026667pt;}
.y90{bottom:321.826667pt;}
.y14b{bottom:322.946667pt;}
.y62{bottom:324.546667pt;}
.y173{bottom:325.666667pt;}
.y112{bottom:326.946667pt;}
.y129{bottom:328.386667pt;}
.y40{bottom:329.986667pt;}
.y63{bottom:330.626667pt;}
.y8f{bottom:332.386667pt;}
.yfd{bottom:333.346667pt;}
.y17{bottom:333.666667pt;}
.y105{bottom:337.026667pt;}
.y166{bottom:337.666667pt;}
.yaf{bottom:339.746667pt;}
.y14a{bottom:341.346667pt;}
.y61{bottom:342.946667pt;}
.y3f{bottom:345.346667pt;}
.y131{bottom:346.786667pt;}
.y9d{bottom:347.746667pt;}
.y111{bottom:349.026667pt;}
.yfc{bottom:351.746667pt;}
.y16{bottom:352.066667pt;}
.y9c{bottom:352.386667pt;}
.y165{bottom:356.066667pt;}
.y145{bottom:356.546667pt;}
.y3e{bottom:360.706667pt;}
.y60{bottom:361.346667pt;}
.y9b{bottom:363.106667pt;}
.y176{bottom:363.906667pt;}
.y12e{bottom:365.186667pt;}
.y107{bottom:367.746667pt;}
.yfb{bottom:370.146667pt;}
.y15{bottom:370.466667pt;}
.y164{bottom:374.466667pt;}
.y3d{bottom:375.906667pt;}
.yad{bottom:376.546667pt;}
.y9a{bottom:378.466667pt;}
.y5e{bottom:379.773333pt;}
.y108{bottom:383.133333pt;}
.y130{bottom:383.613333pt;}
.y5f{bottom:385.853333pt;}
.yfa{bottom:388.573333pt;}
.y14{bottom:388.893333pt;}
.y147{bottom:390.013333pt;}
.y3c{bottom:391.293333pt;}
.y163{bottom:392.893333pt;}
.y99{bottom:393.853333pt;}
.y10a{bottom:394.973333pt;}
.y5d{bottom:398.173333pt;}
.y98{bottom:398.493333pt;}
.y12c{bottom:402.013333pt;}
.yf4{bottom:403.613333pt;}
.y3b{bottom:406.653333pt;}
.y13{bottom:407.293333pt;}
.y97{bottom:409.053333pt;}
.y162{bottom:411.293333pt;}
.y8e{bottom:413.373333pt;}
.y5c{bottom:416.573333pt;}
.y12d{bottom:420.413333pt;}
.y3a{bottom:422.013333pt;}
.y143{bottom:423.453333pt;}
.y12{bottom:425.693333pt;}
.y161{bottom:429.693333pt;}
.y9e{bottom:431.773333pt;}
.y5b{bottom:434.973333pt;}
.y39{bottom:437.373333pt;}
.y126{bottom:439.453333pt;}
.y172{bottom:443.773333pt;}
.y11{bottom:444.093333pt;}
.y160{bottom:448.093333pt;}
.y96{bottom:450.173333pt;}
.y38{bottom:452.573333pt;}
.y5a{bottom:453.373333pt;}
.yba{bottom:454.173333pt;}
.y119{bottom:462.173333pt;}
.y10{bottom:462.493333pt;}
.y142{bottom:465.213333pt;}
.y15f{bottom:466.173333pt;}
.y37{bottom:467.933333pt;}
.y7e{bottom:468.573333pt;}
.y59{bottom:471.773333pt;}
.y125{bottom:480.573333pt;}
.yf{bottom:480.893333pt;}
.y36{bottom:483.293333pt;}
.y141{bottom:483.613333pt;}
.y15e{bottom:484.893333pt;}
.y95{bottom:486.973333pt;}
.y58{bottom:490.173333pt;}
.y35{bottom:498.653333pt;}
.y124{bottom:498.973333pt;}
.ye{bottom:499.293333pt;}
.yf2{bottom:500.893333pt;}
.y140{bottom:501.693333pt;}
.y15d{bottom:503.293333pt;}
.y94{bottom:505.373333pt;}
.y110{bottom:508.253333pt;}
.y57{bottom:508.573333pt;}
.y34{bottom:514.013333pt;}
.yd{bottom:517.693333pt;}
.y15c{bottom:521.693333pt;}
.y8a{bottom:523.773333pt;}
.y10f{bottom:526.653333pt;}
.y56{bottom:526.973333pt;}
.y33{bottom:529.373333pt;}
.yc{bottom:536.093333pt;}
.yb8{bottom:537.533333pt;}
.y15b{bottom:540.093333pt;}
.yac{bottom:542.173333pt;}
.y32{bottom:544.573333pt;}
.y55{bottom:545.053333pt;}
.yb{bottom:554.533333pt;}
.y157{bottom:555.813333pt;}
.y31{bottom:559.973333pt;}
.y10e{bottom:560.293333pt;}
.y7d{bottom:560.613333pt;}
.y54{bottom:563.013333pt;}
.ya{bottom:572.613333pt;}
.y7b{bottom:572.933333pt;}
.y30{bottom:575.333333pt;}
.y53{bottom:578.373333pt;}
.y7c{bottom:579.013333pt;}
.yf0{bottom:584.453333pt;}
.y159{bottom:589.413333pt;}
.y2f{bottom:590.693333pt;}
.y11a{bottom:591.013333pt;}
.y9{bottom:591.333333pt;}
.y52{bottom:593.733333pt;}
.y93{bottom:597.413333pt;}
.y2e{bottom:606.053333pt;}
.y51{bottom:609.093333pt;}
.y106{bottom:609.413333pt;}
.y8{bottom:609.733333pt;}
.y7a{bottom:615.813333pt;}
.y2d{bottom:621.413333pt;}
.y156{bottom:622.853333pt;}
.y50{bottom:624.453333pt;}
.y7{bottom:627.813333pt;}
.y79{bottom:628.133333pt;}
.y8d{bottom:634.213333pt;}
.y2c{bottom:636.613333pt;}
.y4f{bottom:639.813333pt;}
.y6{bottom:646.213333pt;}
.y78{bottom:646.533333pt;}
.yb4{bottom:648.613333pt;}
.y2b{bottom:652.613333pt;}
.yed{bottom:654.053333pt;}
.y4e{bottom:655.013333pt;}
.y5{bottom:664.613333pt;}
.y77{bottom:664.933333pt;}
.y2a{bottom:670.373333pt;}
.y104{bottom:671.013333pt;}
.y4{bottom:683.013333pt;}
.y76{bottom:683.333333pt;}
.y29{bottom:685.733333pt;}
.yae{bottom:689.413333pt;}
.y26{bottom:731.040000pt;}
.y25{bottom:732.160000pt;}
.y1{bottom:735.680000pt;}
.h8{height:15.200000pt;}
.h7{height:15.360000pt;}
.h1f{height:18.400000pt;}
.h21{height:18.432000pt;}
.he{height:30.080000pt;}
.h26{height:32.000000pt;}
.h24{height:32.032000pt;}
.h23{height:32.160000pt;}
.hb{height:33.918750pt;}
.h29{height:36.672000pt;}
.h1e{height:36.800000pt;}
.h20{height:36.832000pt;}
.h3{height:42.084375pt;}
.h17{height:42.880000pt;}
.h18{height:43.040000pt;}
.h2{height:47.109375pt;}
.ha{height:47.621250pt;}
.hf{height:48.375000pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.h13{height:55.200000pt;}
.hd{height:57.375000pt;}
.h1d{height:62.781250pt;}
.h5{height:62.812500pt;}
.h4{height:64.500000pt;}
.h25{height:65.600000pt;}
.h22{height:65.632000pt;}
.h19{height:68.960000pt;}
.h28{height:74.912000pt;}
.h27{height:75.072000pt;}
.h12{height:82.720000pt;}
.h1a{height:82.912000pt;}
.h15{height:96.512000pt;}
.h1c{height:96.640000pt;}
.h10{height:110.432000pt;}
.h14{height:152.346667pt;}
.h1b{height:180.186667pt;}
.h11{height:193.786667pt;}
.h16{height:196.026667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:6.080000pt;}
.w3{width:20.000000pt;}
.w1b{width:44.000000pt;}
.w18{width:52.000000pt;}
.w13{width:52.032000pt;}
.w14{width:53.600000pt;}
.w6{width:57.120000pt;}
.wd{width:71.712000pt;}
.wf{width:71.840000pt;}
.w12{width:76.960000pt;}
.w17{width:83.520000pt;}
.wc{width:89.152000pt;}
.w8{width:89.792000pt;}
.wa{width:91.040000pt;}
.w1a{width:91.520000pt;}
.w9{width:95.872000pt;}
.wb{width:96.160000pt;}
.w7{width:100.992000pt;}
.we{width:105.952000pt;}
.w19{width:106.752000pt;}
.w16{width:114.752000pt;}
.w11{width:119.712000pt;}
.w15{width:132.512000pt;}
.w10{width:185.306667pt;}
.w1{width:559.333333pt;}
.w5{width:559.519983pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x86{left:4.000000pt;}
.x56{left:7.200000pt;}
.x82{left:11.200000pt;}
.x8{left:64.991992pt;}
.x4{left:68.191992pt;}
.x17{left:70.431992pt;}
.x2e{left:72.991992pt;}
.x5{left:74.111992pt;}
.x49{left:75.231992pt;}
.x36{left:79.871983pt;}
.x7e{left:83.231992pt;}
.x26{left:88.351983pt;}
.x37{left:90.751992pt;}
.x27{left:93.791992pt;}
.x71{left:95.391983pt;}
.x63{left:105.151983pt;}
.x72{left:106.271992pt;}
.x7d{left:111.551992pt;}
.x7c{left:115.071983pt;}
.xb{left:116.831992pt;}
.x12{left:122.111992pt;}
.x68{left:123.391983pt;}
.xd{left:125.151992pt;}
.x10{left:126.911992pt;}
.x4c{left:128.351983pt;}
.x9{left:130.271992pt;}
.x70{left:133.311983pt;}
.x69{left:134.266658pt;}
.x4d{left:139.226658pt;}
.x4a{left:144.186650pt;}
.x7f{left:150.266658pt;}
.x45{left:151.386650pt;}
.x4b{left:155.066658pt;}
.x6e{left:157.626650pt;}
.x2{left:160.346658pt;}
.x8e{left:161.306658pt;}
.x46{left:162.266658pt;}
.x6f{left:168.546658pt;}
.x5a{left:171.746650pt;}
.x47{left:174.146650pt;}
.x59{left:175.746650pt;}
.xe{left:178.786658pt;}
.x5b{left:182.626658pt;}
.x11{left:183.746658pt;}
.x48{left:185.026658pt;}
.x33{left:185.986650pt;}
.x4e{left:190.466658pt;}
.xa{left:192.066658pt;}
.x8f{left:193.346650pt;}
.x77{left:194.786650pt;}
.x14{left:197.506658pt;}
.x38{left:198.786650pt;}
.xa4{left:201.026658pt;}
.x90{left:204.226658pt;}
.xc{left:205.986658pt;}
.x73{left:207.586650pt;}
.x39{left:209.666658pt;}
.xf{left:211.746658pt;}
.x16{left:213.986658pt;}
.x13{left:216.066658pt;}
.x40{left:218.466650pt;}
.x15{left:219.586658pt;}
.x8d{left:221.506650pt;}
.x57{left:222.466667pt;}
.x28{left:226.146650pt;}
.x95{left:227.426650pt;}
.x41{left:229.346658pt;}
.x29{left:231.586658pt;}
.x81{left:235.426650pt;}
.x8b{left:237.666650pt;}
.x2c{left:240.226650pt;}
.x51{left:242.146650pt;}
.x55{left:243.266658pt;}
.x5c{left:245.026650pt;}
.x6{left:246.626658pt;}
.x8c{left:248.546658pt;}
.x1{left:250.306658pt;}
.x52{left:253.026658pt;}
.x9c{left:254.786658pt;}
.x1f{left:256.386658pt;}
.x85{left:261.026667pt;}
.x22{left:262.466650pt;}
.xa9{left:263.426650pt;}
.x23{left:267.906658pt;}
.x89{left:270.626667pt;}
.x4f{left:272.226650pt;}
.x24{left:273.826650pt;}
.x7a{left:276.413317pt;}
.x25{left:279.293325pt;}
.x7{left:281.693325pt;}
.x50{left:283.133325pt;}
.x7b{left:287.293325pt;}
.x9f{left:289.693317pt;}
.x42{left:292.093325pt;}
.x20{left:295.293317pt;}
.x21{left:300.733325pt;}
.x96{left:302.653317pt;}
.x61{left:306.493317pt;}
.x3a{left:309.533317pt;}
.x58{left:312.253333pt;}
.x97{left:313.533325pt;}
.x88{left:314.653333pt;}
.x62{left:317.373325pt;}
.x3b{left:320.413325pt;}
.x83{left:321.373333pt;}
.x8a{left:322.653333pt;}
.x91{left:326.333317pt;}
.x3e{left:328.413317pt;}
.x74{left:330.973317pt;}
.x6c{left:332.253317pt;}
.x92{left:337.213325pt;}
.x3f{left:339.293325pt;}
.x5f{left:341.373317pt;}
.x6d{left:343.133325pt;}
.x1b{left:351.773317pt;}
.x1c{left:357.213325pt;}
.x78{left:360.893317pt;}
.x3{left:361.853325pt;}
.x87{left:366.653333pt;}
.x6a{left:370.013317pt;}
.x79{left:371.773325pt;}
.x9a{left:377.693325pt;}
.x53{left:379.613317pt;}
.x6b{left:380.893325pt;}
.xa5{left:384.093317pt;}
.xa8{left:387.453317pt;}
.x54{left:390.533325pt;}
.x5e{left:395.173317pt;}
.x93{left:396.453317pt;}
.x75{left:399.173317pt;}
.x19{left:400.613317pt;}
.xa2{left:402.053317pt;}
.x98{left:404.773317pt;}
.x1a{left:406.053325pt;}
.x94{left:407.333325pt;}
.x34{left:408.293317pt;}
.x76{left:410.053325pt;}
.x31{left:411.493317pt;}
.xa3{left:412.933325pt;}
.x99{left:415.653325pt;}
.x35{left:419.173325pt;}
.xa0{left:420.293317pt;}
.x32{left:422.373325pt;}
.x84{left:427.333333pt;}
.xa1{left:431.173325pt;}
.x5d{left:432.133317pt;}
.x64{left:433.573317pt;}
.x66{left:436.773317pt;}
.x9d{left:438.373317pt;}
.x2f{left:439.333317pt;}
.x43{left:443.013317pt;}
.x65{left:444.453325pt;}
.x67{left:447.653325pt;}
.x9e{left:449.253325pt;}
.x30{left:450.213325pt;}
.x44{left:453.893325pt;}
.x1d{left:464.133317pt;}
.x80{left:467.653317pt;}
.x2d{left:468.613317pt;}
.x1e{left:469.573325pt;}
.x9b{left:474.853325pt;}
.x18{left:479.173333pt;}
.xa6{left:481.253317pt;}
.x3c{left:484.453317pt;}
.x60{left:488.293317pt;}
.xa7{left:492.133325pt;}
.x2a{left:493.733317pt;}
.x3d{left:495.333325pt;}
.x2b{left:499.173325pt;}
}




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