
    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_fb4604a7be9b2c2fc152d3b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978027;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_3239cf07613d91131aaa842c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5595acc345c2c4f8dab31ed1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_37307f0b8682c9272a64adf6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6079dfea77036a90ba0c9d44.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_99561ac97e63013f2412d4a3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ae58b0115159ca3962daae67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cadb4e028abe853f45517623.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7da334dffe4f967c85b34d21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d54e4a15e77490c7f40cfd06.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7347b240d3f3d59aaea0b684.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_09ae48caee656e2aaa8bf476.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937500;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:ffd;src:url('chunks/assets/font_6733871dee2101dad3a44fb7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937500;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:ffe;src:url('chunks/assets/font_31172d9ae835e9bee756f38c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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:fff;src:url('chunks/assets/font_797910e8d1b6df046f46cf6f.woff2')format("woff");}.fff{font-family:fff;line-height:0.939941;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:ff10;src:url('chunks/assets/font_0ca74528d1a4294445c3b586.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_92c4b20c1514e4c7866c7a5f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-186.900000px;}
.v5{vertical-align:-140.100000px;}
.v11{vertical-align:-76.020000px;}
.vf{vertical-align:-70.380000px;}
.v4{vertical-align:-67.980000px;}
.vc{vertical-align:-46.800000px;}
.ve{vertical-align:-43.620000px;}
.v9{vertical-align:-37.260000px;}
.v10{vertical-align:-29.820000px;}
.v2{vertical-align:-18.000000px;}
.v7{vertical-align:-12.420000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.200000px;}
.va{vertical-align:10.380000px;}
.v8{vertical-align:16.860000px;}
.v1{vertical-align:27.360000px;}
.vb{vertical-align:29.100000px;}
.vd{vertical-align:31.080000px;}
.v12{vertical-align:57.060000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.091200px;}
.ls3{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.064800px;}
.ls1f{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.284400px;}
.ls20{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls27{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.684000px;}
.lsd{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.864000px;}
.ls26{letter-spacing:1.440000px;}
.ls9{letter-spacing:2.160000px;}
.ls2b{letter-spacing:2.880000px;}
.ls2{letter-spacing:8.100000px;}
.ls12{letter-spacing:8.640000px;}
.ls11{letter-spacing:9.152640px;}
.ls21{letter-spacing:10.080000px;}
.ls25{letter-spacing:11.520000px;}
.lsf{letter-spacing:12.960000px;}
.lsb{letter-spacing:13.680000px;}
.ls1b{letter-spacing:14.400000px;}
.lsa{letter-spacing:15.840000px;}
.ls22{letter-spacing:16.560000px;}
.ls23{letter-spacing:19.440000px;}
.ls5{letter-spacing:21.000000px;}
.ls16{letter-spacing:23.220000px;}
.ls19{letter-spacing:24.480000px;}
.lse{letter-spacing:25.920000px;}
.ls2a{letter-spacing:26.640000px;}
.ls6{letter-spacing:32.400000px;}
.ls29{letter-spacing:33.264000px;}
.ls1a{letter-spacing:44.640000px;}
.ls10{letter-spacing:46.080000px;}
.ls15{letter-spacing:53.280000px;}
.ls2d{letter-spacing:64.980000px;}
.ls28{letter-spacing:846.300000px;}
.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;}
}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.280000px;}
.ws19{word-spacing:-17.136000px;}
.ws0{word-spacing:-16.920000px;}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.440960px;}
.ws4{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:62.880000px;}
.ws16{word-spacing:147.679920px;}
.ws17{word-spacing:147.787968px;}
.ws15{word-spacing:147.799920px;}
.wsc{word-spacing:150.319680px;}
.wsb{word-spacing:164.059920px;}
.ws10{word-spacing:193.279920px;}
.wsf{word-spacing:193.339920px;}
.ws14{word-spacing:195.462000px;}
.ws12{word-spacing:208.399920px;}
.ws11{word-spacing:208.447968px;}
.wse{word-spacing:208.459920px;}
.ws13{word-spacing:223.519920px;}
._42{margin-left:-6.084000px;}
._25{margin-left:-4.392000px;}
._b{margin-left:-2.988000px;}
._1{margin-left:-1.368000px;}
._0{width:1.092000px;}
._2{width:2.588400px;}
._24{width:3.598080px;}
._9{width:4.601520px;}
._3{width:5.916240px;}
._c{width:7.035360px;}
._d{width:8.605440px;}
._21{width:9.958560px;}
._8{width:11.636880px;}
._7{width:12.848400px;}
._2e{width:13.896000px;}
._1c{width:14.904000px;}
._1d{width:15.912000px;}
._2c{width:16.920000px;}
._31{width:19.008000px;}
._17{width:20.118240px;}
._a{width:21.692880px;}
._6{width:23.127120px;}
._e{width:24.170160px;}
._13{width:25.338240px;}
._f{width:26.652960px;}
._23{width:27.864000px;}
._22{width:28.944000px;}
._20{width:30.456000px;}
._1b{width:31.680000px;}
._1a{width:32.892000px;}
._15{width:34.056000px;}
._16{width:35.340000px;}
._19{width:37.080000px;}
._2b{width:38.088000px;}
._12{width:39.561120px;}
._30{width:40.753920px;}
._5{width:41.868960px;}
._4{width:43.027200px;}
._3a{width:44.220000px;}
._26{width:45.288000px;}
._27{width:46.428000px;}
._33{width:48.432000px;}
._28{width:49.536000px;}
._41{width:51.732000px;}
._32{width:52.776000px;}
._2d{width:54.791520px;}
._10{width:55.995120px;}
._11{width:57.413280px;}
._43{width:58.543680px;}
._37{width:62.424000px;}
._2f{width:64.296000px;}
._35{width:65.304000px;}
._2a{width:67.164000px;}
._29{width:68.256000px;}
._36{width:71.424000px;}
._45{width:78.012000px;}
._3b{width:79.056000px;}
._34{width:80.280000px;}
._46{width:81.288000px;}
._3c{width:91.234080px;}
._39{width:94.320000px;}
._38{width:95.328000px;}
._3d{width:109.401120px;}
._18{width:110.448000px;}
._1e{width:111.600000px;}
._1f{width:112.680000px;}
._44{width:137.148000px;}
._47{width:181.788000px;}
._3f{width:333.834000px;}
._3e{width:436.579920px;}
._40{width:444.108000px;}
._14{width:846.156000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fsa{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs7{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y13d{bottom:3.060000px;}
.y2d{bottom:3.240000px;}
.y11{bottom:3.780000px;}
.y43{bottom:3.960000px;}
.y1e{bottom:4.860000px;}
.y3{bottom:6.480000px;}
.yc1{bottom:6.660000px;}
.y2{bottom:8.100000px;}
.y6{bottom:10.980000px;}
.y152{bottom:11.154000px;}
.y13f{bottom:11.160000px;}
.y143{bottom:11.340000px;}
.y1a{bottom:12.600000px;}
.y10b{bottom:14.610000px;}
.y133{bottom:15.405000px;}
.ye8{bottom:16.995000px;}
.yc6{bottom:17.100000px;}
.ybe{bottom:17.280000px;}
.y151{bottom:19.434000px;}
.y13c{bottom:19.440000px;}
.y145{bottom:19.470000px;}
.y14d{bottom:19.485000px;}
.yb{bottom:19.620000px;}
.y2c{bottom:20.520000px;}
.y42{bottom:21.594000px;}
.y10{bottom:22.680000px;}
.y1d{bottom:24.480000px;}
.y137{bottom:27.540000px;}
.yc0{bottom:27.720000px;}
.yc3{bottom:27.765000px;}
.y13b{bottom:35.820000px;}
.y14c{bottom:35.865000px;}
.y2b{bottom:37.800000px;}
.y1c{bottom:38.160000px;}
.ybd{bottom:38.340000px;}
.ya{bottom:38.700000px;}
.y41{bottom:38.874000px;}
.y10a{bottom:40.065000px;}
.y132{bottom:40.710000px;}
.yf{bottom:41.580000px;}
.y136{bottom:44.100000px;}
.ye2{bottom:47.370000px;}
.ybf{bottom:48.780000px;}
.y13a{bottom:52.200000px;}
.y2a{bottom:55.080000px;}
.y40{bottom:55.974000px;}
.y9{bottom:57.600000px;}
.y135{bottom:60.480000px;}
.ye{bottom:60.660000px;}
.y109{bottom:65.520000px;}
.y12f{bottom:66.930000px;}
.y139{bottom:68.580000px;}
.y29{bottom:72.360000px;}
.yd8{bottom:72.615000px;}
.y3f{bottom:73.254000px;}
.ye3{bottom:75.210000px;}
.y8{bottom:76.680000px;}
.y13e{bottom:76.860000px;}
.ydd{bottom:77.070000px;}
.yd{bottom:79.560000px;}
.y138{bottom:84.960000px;}
.y12c{bottom:85.290000px;}
.y28{bottom:89.640000px;}
.y3e{bottom:90.534000px;}
.y33{bottom:90.900000px;}
.y130{bottom:92.550000px;}
.y106{bottom:92.625000px;}
.y102{bottom:94.680000px;}
.y7{bottom:96.840000px;}
.y128{bottom:97.350000px;}
.yc{bottom:98.640000px;}
.y27{bottom:106.740000px;}
.y3d{bottom:107.814000px;}
.y32{bottom:108.180000px;}
.y8d{bottom:112.716000px;}
.y44{bottom:113.256000px;}
.yd9{bottom:113.400000px;}
.yb4{bottom:115.236000px;}
.ye4{bottom:115.995000px;}
.y153{bottom:116.496000px;}
.yde{bottom:117.870000px;}
.y12a{bottom:118.410000px;}
.y12b{bottom:119.625000px;}
.y101{bottom:120.930000px;}
.y111{bottom:123.156000px;}
.y26{bottom:124.020000px;}
.y3c{bottom:125.094000px;}
.y31{bottom:125.460000px;}
.y68{bottom:127.476000px;}
.y12e{bottom:130.245000px;}
.y34{bottom:130.716000px;}
.y104{bottom:131.790000px;}
.ya1{bottom:133.236000px;}
.y103{bottom:135.930000px;}
.y8c{bottom:136.476000px;}
.yb3{bottom:139.176000px;}
.y25{bottom:141.330000px;}
.yd6{bottom:141.696000px;}
.y3b{bottom:142.194000px;}
.y150{bottom:142.596000px;}
.y30{bottom:142.770000px;}
.y12d{bottom:145.470000px;}
.y110{bottom:146.916000px;}
.y67{bottom:151.230000px;}
.y107{bottom:153.645000px;}
.yda{bottom:154.230000px;}
.ye5{bottom:156.810000px;}
.ya0{bottom:157.170000px;}
.y16a{bottom:158.430000px;}
.y24{bottom:158.610000px;}
.ydf{bottom:158.685000px;}
.y3a{bottom:159.474000px;}
.y2f{bottom:160.050000px;}
.y8b{bottom:160.230000px;}
.y105{bottom:162.825000px;}
.yb2{bottom:162.930000px;}
.yd5{bottom:164.730000px;}
.ye9{bottom:166.140000px;}
.y17e{bottom:167.430000px;}
.y108{bottom:174.270000px;}
.y66{bottom:175.170000px;}
.y14f{bottom:175.710000px;}
.y23{bottom:175.890000px;}
.y39{bottom:176.799000px;}
.y2e{bottom:177.330000px;}
.y9f{bottom:180.930000px;}
.y169{bottom:182.190000px;}
.y8a{bottom:184.170000px;}
.yb1{bottom:186.690000px;}
.y10f{bottom:187.590000px;}
.y17d{bottom:191.190000px;}
.y129{bottom:191.910000px;}
.y22{bottom:192.990000px;}
.y38{bottom:194.079000px;}
.ydb{bottom:195.045000px;}
.ye6{bottom:197.640000px;}
.y65{bottom:198.930000px;}
.ye0{bottom:199.515000px;}
.yba{bottom:202.710000px;}
.y9e{bottom:204.690000px;}
.y89{bottom:207.930000px;}
.y131{bottom:208.185000px;}
.y21{bottom:210.270000px;}
.yb0{bottom:210.450000px;}
.y10e{bottom:210.630000px;}
.y112{bottom:211.320000px;}
.y37{bottom:211.359000px;}
.y17c{bottom:214.950000px;}
.y64{bottom:222.690000px;}
.yb9{bottom:223.410000px;}
.y14e{bottom:225.210000px;}
.y20{bottom:227.550000px;}
.y9d{bottom:228.450000px;}
.y36{bottom:228.639000px;}
.y88{bottom:231.690000px;}
.yaf{bottom:234.390000px;}
.ydc{bottom:235.830000px;}
.ye7{bottom:238.470000px;}
.ye1{bottom:240.300000px;}
.y17b{bottom:243.390000px;}
.yb8{bottom:244.110000px;}
.y35{bottom:245.739000px;}
.y63{bottom:246.450000px;}
.y9c{bottom:252.390000px;}
.y87{bottom:255.450000px;}
.yee{bottom:255.675000px;}
.yf6{bottom:256.500000px;}
.yae{bottom:258.150000px;}
.y11e{bottom:260.820000px;}
.y114{bottom:260.895000px;}
.yea{bottom:263.985000px;}
.yb7{bottom:264.810000px;}
.y17a{bottom:267.150000px;}
.y116{bottom:268.770000px;}
.y62{bottom:270.390000px;}
.y14b{bottom:274.710000px;}
.yf7{bottom:275.190000px;}
.y9b{bottom:276.150000px;}
.y86{bottom:279.390000px;}
.yad{bottom:281.910000px;}
.y11f{bottom:283.650000px;}
.yb6{bottom:285.510000px;}
.yec{bottom:286.815000px;}
.y113{bottom:289.410000px;}
.y179{bottom:290.910000px;}
.yf8{bottom:293.865000px;}
.y61{bottom:294.195000px;}
.y9a{bottom:299.955000px;}
.yeb{bottom:302.400000px;}
.y85{bottom:303.195000px;}
.yac{bottom:305.715000px;}
.yb5{bottom:306.255000px;}
.y120{bottom:306.435000px;}
.y118{bottom:310.890000px;}
.yf9{bottom:312.555000px;}
.y11a{bottom:317.055000px;}
.y60{bottom:317.955000px;}
.y178{bottom:319.215000px;}
.y99{bottom:323.715000px;}
.y115{bottom:324.180000px;}
.y14a{bottom:324.435000px;}
.y84{bottom:326.955000px;}
.y121{bottom:329.250000px;}
.yab{bottom:329.655000px;}
.yef{bottom:330.405000px;}
.yfa{bottom:331.230000px;}
.y168{bottom:334.155000px;}
.yd3{bottom:334.695000px;}
.y5f{bottom:341.715000px;}
.y177{bottom:343.155000px;}
.y98{bottom:347.655000px;}
.yed{bottom:349.125000px;}
.yfb{bottom:349.920000px;}
.y83{bottom:350.715000px;}
.y122{bottom:352.080000px;}
.y117{bottom:352.695000px;}
.yaa{bottom:353.415000px;}
.y167{bottom:357.915000px;}
.yd2{bottom:358.455000px;}
.y5e{bottom:365.655000px;}
.y176{bottom:366.915000px;}
.yfc{bottom:368.610000px;}
.y97{bottom:371.415000px;}
.yf0{bottom:372.450000px;}
.y149{bottom:373.935000px;}
.y11d{bottom:374.070000px;}
.y82{bottom:374.655000px;}
.y123{bottom:374.910000px;}
.ya9{bottom:377.175000px;}
.y166{bottom:381.675000px;}
.yd1{bottom:382.395000px;}
.yfd{bottom:387.285000px;}
.yf2{bottom:388.545000px;}
.y5d{bottom:389.415000px;}
.y1f{bottom:391.215000px;}
.y96{bottom:395.175000px;}
.yf5{bottom:395.820000px;}
.y124{bottom:397.725000px;}
.y81{bottom:398.415000px;}
.ya8{bottom:400.935000px;}
.y119{bottom:402.630000px;}
.yfe{bottom:405.975000px;}
.yd0{bottom:406.155000px;}
.y165{bottom:409.935000px;}
.y5c{bottom:413.175000px;}
.yf1{bottom:417.060000px;}
.y95{bottom:418.935000px;}
.y125{bottom:420.510000px;}
.y80{bottom:422.175000px;}
.y148{bottom:423.435000px;}
.yff{bottom:424.650000px;}
.ya7{bottom:424.875000px;}
.ycf{bottom:429.915000px;}
.yf4{bottom:430.095000px;}
.y11c{bottom:431.130000px;}
.y164{bottom:433.875000px;}
.y5b{bottom:436.935000px;}
.y187{bottom:438.375000px;}
.yf3{bottom:442.545000px;}
.y94{bottom:442.875000px;}
.y100{bottom:443.340000px;}
.y7f{bottom:445.935000px;}
.ya6{bottom:448.635000px;}
.yce{bottom:453.675000px;}
.y147{bottom:456.555000px;}
.y163{bottom:457.635000px;}
.y11b{bottom:459.645000px;}
.y5a{bottom:460.875000px;}
.y186{bottom:462.135000px;}
.y126{bottom:466.170000px;}
.y93{bottom:466.635000px;}
.y7e{bottom:469.875000px;}
.ya5{bottom:472.395000px;}
.y146{bottom:473.295000px;}
.y154{bottom:475.635000px;}
.ycd{bottom:477.435000px;}
.y59{bottom:484.635000px;}
.y162{bottom:485.895000px;}
.y127{bottom:488.985000px;}
.y92{bottom:490.395000px;}
.y7d{bottom:493.635000px;}
.y175{bottom:494.895000px;}
.ya4{bottom:496.155000px;}
.ycc{bottom:501.375000px;}
.y144{bottom:506.415000px;}
.y58{bottom:508.395000px;}
.y161{bottom:509.655000px;}
.y91{bottom:514.155000px;}
.y7c{bottom:517.395000px;}
.y174{bottom:518.655000px;}
.ya3{bottom:520.095000px;}
.ycb{bottom:525.165000px;}
.y57{bottom:532.185000px;}
.y160{bottom:533.625000px;}
.y90{bottom:538.125000px;}
.y142{bottom:539.565000px;}
.y7b{bottom:541.185000px;}
.y173{bottom:542.625000px;}
.yca{bottom:548.925000px;}
.ya2{bottom:552.885000px;}
.y56{bottom:556.125000px;}
.y15f{bottom:561.885000px;}
.y7a{bottom:565.125000px;}
.y8f{bottom:570.885000px;}
.y141{bottom:572.865000px;}
.y55{bottom:579.885000px;}
.yc9{bottom:580.425000px;}
.y1b{bottom:583.305000px;}
.y15e{bottom:585.645000px;}
.y79{bottom:588.885000px;}
.y8e{bottom:594.645000px;}
.y54{bottom:603.645000px;}
.yc8{bottom:604.365000px;}
.y140{bottom:605.985000px;}
.y15d{bottom:609.405000px;}
.y78{bottom:612.645000px;}
.y185{bottom:613.905000px;}
.y172{bottom:618.405000px;}
.y134{bottom:622.725000px;}
.y53{bottom:627.405000px;}
.y15c{bottom:633.165000px;}
.y19{bottom:633.525000px;}
.y77{bottom:636.405000px;}
.y184{bottom:637.665000px;}
.yd4{bottom:639.465000px;}
.yd7{bottom:639.720000px;}
.y171{bottom:646.665000px;}
.yc7{bottom:647.205000px;}
.y52{bottom:651.165000px;}
.y76{bottom:660.165000px;}
.y15b{bottom:661.605000px;}
.y183{bottom:666.105000px;}
.yc5{bottom:668.985000px;}
.y170{bottom:670.605000px;}
.y51{bottom:675.105000px;}
.y75{bottom:684.105000px;}
.y15a{bottom:685.365000px;}
.y18{bottom:688.785000px;}
.y182{bottom:689.865000px;}
.y16f{bottom:694.365000px;}
.y50{bottom:698.865000px;}
.y17{bottom:704.265000px;}
.y74{bottom:707.865000px;}
.yc4{bottom:711.825000px;}
.y159{bottom:713.625000px;}
.y16{bottom:715.245000px;}
.y16e{bottom:718.125000px;}
.y4f{bottom:722.625000px;}
.y73{bottom:731.625000px;}
.yc2{bottom:733.605000px;}
.y15{bottom:735.405000px;}
.y10d{bottom:737.385000px;}
.y181{bottom:741.885000px;}
.y4e{bottom:746.385000px;}
.y72{bottom:755.430000px;}
.y14{bottom:756.330000px;}
.y10c{bottom:761.370000px;}
.y180{bottom:765.870000px;}
.y4d{bottom:770.370000px;}
.ybc{bottom:776.490000px;}
.y71{bottom:779.370000px;}
.y158{bottom:785.130000px;}
.y4c{bottom:794.130000px;}
.y13{bottom:800.610000px;}
.y70{bottom:803.130000px;}
.y157{bottom:813.390000px;}
.y4b{bottom:817.890000px;}
.y16d{bottom:822.390000px;}
.y6f{bottom:826.890000px;}
.y12{bottom:832.290000px;}
.y156{bottom:837.150000px;}
.y4a{bottom:841.650000px;}
.y16c{bottom:846.150000px;}
.y6e{bottom:850.650000px;}
.ybb{bottom:856.590000px;}
.y155{bottom:861.090000px;}
.y49{bottom:865.590000px;}
.y16b{bottom:870.090000px;}
.y5{bottom:872.610000px;}
.y6d{bottom:874.590000px;}
.y48{bottom:889.350000px;}
.y17f{bottom:893.850000px;}
.y6c{bottom:898.350000px;}
.y47{bottom:913.110000px;}
.y6b{bottom:922.110000px;}
.y46{bottom:936.870000px;}
.y6a{bottom:945.870000px;}
.y45{bottom:969.630000px;}
.y69{bottom:969.810000px;}
.y4{bottom:996.840000px;}
.y1{bottom:1014.480000px;}
.h31{height:16.380000px;}
.h21{height:21.060000px;}
.h2{height:25.200000px;}
.h33{height:32.760000px;}
.h37{height:32.796000px;}
.h36{height:32.940000px;}
.hb{height:35.332031px;}
.hd{height:37.980000px;}
.h22{height:42.120000px;}
.h1f{height:42.156000px;}
.h20{height:45.374414px;}
.h10{height:47.344922px;}
.h34{height:48.325781px;}
.hf{height:48.616875px;}
.h38{height:49.140000px;}
.h39{height:49.176000px;}
.he{height:49.500000px;}
.h2f{height:50.519883px;}
.h3{height:52.945312px;}
.hc{height:52.998047px;}
.h17{height:53.573906px;}
.h26{height:53.703000px;}
.h25{height:53.709961px;}
.h24{height:53.853187px;}
.h35{height:55.796836px;}
.h32{height:55.824609px;}
.h30{height:57.324375px;}
.h13{height:58.651172px;}
.h15{height:59.439023px;}
.h12{height:60.226875px;}
.h1b{height:61.171875px;}
.h1e{height:61.189805px;}
.h28{height:62.851172px;}
.h1d{height:63.180000px;}
.h1a{height:63.949219px;}
.h19{height:64.546875px;}
.h7{height:65.010937px;}
.h8{height:65.884219px;}
.h1c{height:70.628906px;}
.h4{height:70.664062px;}
.h6{height:71.613281px;}
.h18{height:72.562500px;}
.h3a{height:74.004654px;}
.ha{height:74.704922px;}
.h29{height:75.511172px;}
.h2a{height:87.751172px;}
.h2b{height:89.731172px;}
.h9{height:96.508125px;}
.h2e{height:98.280000px;}
.h5{height:113.976000px;}
.h2d{height:115.711172px;}
.h14{height:191.190000px;}
.h11{height:241.590000px;}
.h16{height:259.770000px;}
.h23{height:290.160000px;}
.h27{height:464.580000px;}
.h2c{height:510.120000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w1{width:62.460000px;}
.w3{width:63.180000px;}
.we{width:76.680000px;}
.wb{width:99.360000px;}
.wd{width:101.736000px;}
.w5{width:113.580000px;}
.w13{width:114.480000px;}
.w12{width:114.516000px;}
.wc{width:120.096000px;}
.w11{width:124.956000px;}
.w7{width:149.256000px;}
.wa{width:151.050000px;}
.w8{width:177.150000px;}
.w10{width:197.850000px;}
.w6{width:298.695000px;}
.w14{width:354.495000px;}
.w9{width:384.375000px;}
.w2{width:427.245000px;}
.wf{width:552.780000px;}
.w4{width:773.999988px;}
.w0{width:774.000000px;}
.x0{left:0.000000px;}
.x5d{left:2.340000px;}
.x9{left:8.145000px;}
.x25{left:10.260000px;}
.x20{left:11.700000px;}
.x60{left:13.140000px;}
.x1d{left:14.580000px;}
.x24{left:16.920000px;}
.x18{left:18.720000px;}
.x2{left:21.420000px;}
.xe{left:22.725000px;}
.xa{left:23.805000px;}
.x1e{left:25.740000px;}
.x22{left:27.000000px;}
.x26{left:28.080000px;}
.x10{left:32.445000px;}
.x61{left:33.660000px;}
.x1a{left:35.640000px;}
.xf{left:37.845000px;}
.x2a{left:40.140000px;}
.x28{left:41.400000px;}
.x5c{left:43.380000px;}
.x62{left:44.640000px;}
.x11{left:46.485000px;}
.x1b{left:49.134000px;}
.x27{left:50.610000px;}
.x5{left:62.100000px;}
.xb{left:65.025000px;}
.x14{left:67.494000px;}
.x5b{left:68.934000px;}
.x29{left:70.734000px;}
.x12{left:74.565000px;}
.x4d{left:77.940000px;}
.x49{left:80.100000px;}
.x4b{left:81.720000px;}
.x37{left:82.770000px;}
.x3a{left:87.405000px;}
.x63{left:91.470000px;}
.x51{left:96.840000px;}
.x7{left:102.414000px;}
.x6{left:106.235988px;}
.x1{left:110.556000px;}
.x38{left:112.320000px;}
.x19{left:119.915988px;}
.x2b{left:122.975988px;}
.x17{left:127.475988px;}
.xc{left:136.485000px;}
.x64{left:138.095988px;}
.x16{left:145.110000px;}
.x4e{left:146.340000px;}
.x4c{left:150.120000px;}
.x4a{left:151.950000px;}
.x5a{left:160.589988px;}
.x52{left:165.240000px;}
.x36{left:169.275000px;}
.x3{left:173.010000px;}
.x42{left:190.950000px;}
.x2e{left:208.410000px;}
.x8{left:219.810000px;}
.x47{left:221.609988px;}
.x53{left:225.030000px;}
.x13{left:229.934988px;}
.x35{left:239.685000px;}
.x3b{left:243.255000px;}
.x3c{left:247.035000px;}
.x31{left:248.835000px;}
.x39{left:254.310000px;}
.x1c{left:262.695000px;}
.x15{left:283.395000px;}
.x54{left:284.790000px;}
.x55{left:302.070000px;}
.x2d{left:309.420000px;}
.x56{left:319.320000px;}
.x3f{left:323.070000px;}
.x40{left:326.850000px;}
.x43{left:333.330000px;}
.x33{left:342.690000px;}
.x4f{left:347.790000px;}
.x2f{left:349.845000px;}
.x1f{left:362.775000px;}
.x32{left:368.460000px;}
.x57{left:370.470000px;}
.x34{left:394.200000px;}
.x3d{left:402.870000px;}
.x44{left:413.130000px;}
.x50{left:419.970000px;}
.x45{left:430.380000px;}
.x5e{left:434.085000px;}
.x58{left:447.510000px;}
.x41{left:482.685000px;}
.x21{left:483.765000px;}
.x3e{left:486.465000px;}
.x46{left:501.555000px;}
.x59{left:507.270000px;}
.x30{left:511.455000px;}
.xd{left:518.505000px;}
.x5f{left:548.970000px;}
.x23{left:586.410000px;}
.x4{left:600.270000px;}
.x48{left:659.849988px;}
.x2c{left:663.809988px;}
@media print{
.v6{vertical-align:-166.133333pt;}
.v5{vertical-align:-124.533333pt;}
.v11{vertical-align:-67.573333pt;}
.vf{vertical-align:-62.560000pt;}
.v4{vertical-align:-60.426667pt;}
.vc{vertical-align:-41.600000pt;}
.ve{vertical-align:-38.773333pt;}
.v9{vertical-align:-33.120000pt;}
.v10{vertical-align:-26.506667pt;}
.v2{vertical-align:-16.000000pt;}
.v7{vertical-align:-11.040000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.733333pt;}
.va{vertical-align:9.226667pt;}
.v8{vertical-align:14.986667pt;}
.v1{vertical-align:24.320000pt;}
.vb{vertical-align:25.866667pt;}
.vd{vertical-align:27.626667pt;}
.v12{vertical-align:50.720000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.081067pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.057600pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.252800pt;}
.ls20{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.608000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.768000pt;}
.ls26{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:2.560000pt;}
.ls2{letter-spacing:7.200000pt;}
.ls12{letter-spacing:7.680000pt;}
.ls11{letter-spacing:8.135680pt;}
.ls21{letter-spacing:8.960000pt;}
.ls25{letter-spacing:10.240000pt;}
.lsf{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.160000pt;}
.ls1b{letter-spacing:12.800000pt;}
.lsa{letter-spacing:14.080000pt;}
.ls22{letter-spacing:14.720000pt;}
.ls23{letter-spacing:17.280000pt;}
.ls5{letter-spacing:18.666667pt;}
.ls16{letter-spacing:20.640000pt;}
.ls19{letter-spacing:21.760000pt;}
.lse{letter-spacing:23.040000pt;}
.ls2a{letter-spacing:23.680000pt;}
.ls6{letter-spacing:28.800000pt;}
.ls29{letter-spacing:29.568000pt;}
.ls1a{letter-spacing:39.680000pt;}
.ls10{letter-spacing:40.960000pt;}
.ls15{letter-spacing:47.360000pt;}
.ls2d{letter-spacing:57.760000pt;}
.ls28{letter-spacing:752.266667pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.360000pt;}
.ws19{word-spacing:-15.232000pt;}
.ws0{word-spacing:-15.040000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws2{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.947520pt;}
.ws4{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:55.893333pt;}
.ws16{word-spacing:131.271040pt;}
.ws17{word-spacing:131.367083pt;}
.ws15{word-spacing:131.377707pt;}
.wsc{word-spacing:133.617493pt;}
.wsb{word-spacing:145.831040pt;}
.ws10{word-spacing:171.804373pt;}
.wsf{word-spacing:171.857707pt;}
.ws14{word-spacing:173.744000pt;}
.ws12{word-spacing:185.244373pt;}
.ws11{word-spacing:185.287083pt;}
.wse{word-spacing:185.297707pt;}
.ws13{word-spacing:198.684373pt;}
._42{margin-left:-5.408000pt;}
._25{margin-left:-3.904000pt;}
._b{margin-left:-2.656000pt;}
._1{margin-left:-1.216000pt;}
._0{width:0.970667pt;}
._2{width:2.300800pt;}
._24{width:3.198293pt;}
._9{width:4.090240pt;}
._3{width:5.258880pt;}
._c{width:6.253653pt;}
._d{width:7.649280pt;}
._21{width:8.852053pt;}
._8{width:10.343893pt;}
._7{width:11.420800pt;}
._2e{width:12.352000pt;}
._1c{width:13.248000pt;}
._1d{width:14.144000pt;}
._2c{width:15.040000pt;}
._31{width:16.896000pt;}
._17{width:17.882880pt;}
._a{width:19.282560pt;}
._6{width:20.557440pt;}
._e{width:21.484587pt;}
._13{width:22.522880pt;}
._f{width:23.691520pt;}
._23{width:24.768000pt;}
._22{width:25.728000pt;}
._20{width:27.072000pt;}
._1b{width:28.160000pt;}
._1a{width:29.237333pt;}
._15{width:30.272000pt;}
._16{width:31.413333pt;}
._19{width:32.960000pt;}
._2b{width:33.856000pt;}
._12{width:35.165440pt;}
._30{width:36.225707pt;}
._5{width:37.216853pt;}
._4{width:38.246400pt;}
._3a{width:39.306667pt;}
._26{width:40.256000pt;}
._27{width:41.269333pt;}
._33{width:43.050667pt;}
._28{width:44.032000pt;}
._41{width:45.984000pt;}
._32{width:46.912000pt;}
._2d{width:48.703573pt;}
._10{width:49.773440pt;}
._11{width:51.034027pt;}
._43{width:52.038827pt;}
._37{width:55.488000pt;}
._2f{width:57.152000pt;}
._35{width:58.048000pt;}
._2a{width:59.701333pt;}
._29{width:60.672000pt;}
._36{width:63.488000pt;}
._45{width:69.344000pt;}
._3b{width:70.272000pt;}
._34{width:71.360000pt;}
._46{width:72.256000pt;}
._3c{width:81.096960pt;}
._39{width:83.840000pt;}
._38{width:84.736000pt;}
._3d{width:97.245440pt;}
._18{width:98.176000pt;}
._1e{width:99.200000pt;}
._1f{width:100.160000pt;}
._44{width:121.909333pt;}
._47{width:161.589333pt;}
._3f{width:296.741333pt;}
._3e{width:388.071040pt;}
._40{width:394.762667pt;}
._14{width:752.138667pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fsa{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs7{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y13d{bottom:2.720000pt;}
.y2d{bottom:2.880000pt;}
.y11{bottom:3.360000pt;}
.y43{bottom:3.520000pt;}
.y1e{bottom:4.320000pt;}
.y3{bottom:5.760000pt;}
.yc1{bottom:5.920000pt;}
.y2{bottom:7.200000pt;}
.y6{bottom:9.760000pt;}
.y152{bottom:9.914667pt;}
.y13f{bottom:9.920000pt;}
.y143{bottom:10.080000pt;}
.y1a{bottom:11.200000pt;}
.y10b{bottom:12.986667pt;}
.y133{bottom:13.693333pt;}
.ye8{bottom:15.106667pt;}
.yc6{bottom:15.200000pt;}
.ybe{bottom:15.360000pt;}
.y151{bottom:17.274667pt;}
.y13c{bottom:17.280000pt;}
.y145{bottom:17.306667pt;}
.y14d{bottom:17.320000pt;}
.yb{bottom:17.440000pt;}
.y2c{bottom:18.240000pt;}
.y42{bottom:19.194667pt;}
.y10{bottom:20.160000pt;}
.y1d{bottom:21.760000pt;}
.y137{bottom:24.480000pt;}
.yc0{bottom:24.640000pt;}
.yc3{bottom:24.680000pt;}
.y13b{bottom:31.840000pt;}
.y14c{bottom:31.880000pt;}
.y2b{bottom:33.600000pt;}
.y1c{bottom:33.920000pt;}
.ybd{bottom:34.080000pt;}
.ya{bottom:34.400000pt;}
.y41{bottom:34.554667pt;}
.y10a{bottom:35.613333pt;}
.y132{bottom:36.186667pt;}
.yf{bottom:36.960000pt;}
.y136{bottom:39.200000pt;}
.ye2{bottom:42.106667pt;}
.ybf{bottom:43.360000pt;}
.y13a{bottom:46.400000pt;}
.y2a{bottom:48.960000pt;}
.y40{bottom:49.754667pt;}
.y9{bottom:51.200000pt;}
.y135{bottom:53.760000pt;}
.ye{bottom:53.920000pt;}
.y109{bottom:58.240000pt;}
.y12f{bottom:59.493333pt;}
.y139{bottom:60.960000pt;}
.y29{bottom:64.320000pt;}
.yd8{bottom:64.546667pt;}
.y3f{bottom:65.114667pt;}
.ye3{bottom:66.853333pt;}
.y8{bottom:68.160000pt;}
.y13e{bottom:68.320000pt;}
.ydd{bottom:68.506667pt;}
.yd{bottom:70.720000pt;}
.y138{bottom:75.520000pt;}
.y12c{bottom:75.813333pt;}
.y28{bottom:79.680000pt;}
.y3e{bottom:80.474667pt;}
.y33{bottom:80.800000pt;}
.y130{bottom:82.266667pt;}
.y106{bottom:82.333333pt;}
.y102{bottom:84.160000pt;}
.y7{bottom:86.080000pt;}
.y128{bottom:86.533333pt;}
.yc{bottom:87.680000pt;}
.y27{bottom:94.880000pt;}
.y3d{bottom:95.834667pt;}
.y32{bottom:96.160000pt;}
.y8d{bottom:100.192000pt;}
.y44{bottom:100.672000pt;}
.yd9{bottom:100.800000pt;}
.yb4{bottom:102.432000pt;}
.ye4{bottom:103.106667pt;}
.y153{bottom:103.552000pt;}
.yde{bottom:104.773333pt;}
.y12a{bottom:105.253333pt;}
.y12b{bottom:106.333333pt;}
.y101{bottom:107.493333pt;}
.y111{bottom:109.472000pt;}
.y26{bottom:110.240000pt;}
.y3c{bottom:111.194667pt;}
.y31{bottom:111.520000pt;}
.y68{bottom:113.312000pt;}
.y12e{bottom:115.773333pt;}
.y34{bottom:116.192000pt;}
.y104{bottom:117.146667pt;}
.ya1{bottom:118.432000pt;}
.y103{bottom:120.826667pt;}
.y8c{bottom:121.312000pt;}
.yb3{bottom:123.712000pt;}
.y25{bottom:125.626667pt;}
.yd6{bottom:125.952000pt;}
.y3b{bottom:126.394667pt;}
.y150{bottom:126.752000pt;}
.y30{bottom:126.906667pt;}
.y12d{bottom:129.306667pt;}
.y110{bottom:130.592000pt;}
.y67{bottom:134.426667pt;}
.y107{bottom:136.573333pt;}
.yda{bottom:137.093333pt;}
.ye5{bottom:139.386667pt;}
.ya0{bottom:139.706667pt;}
.y16a{bottom:140.826667pt;}
.y24{bottom:140.986667pt;}
.ydf{bottom:141.053333pt;}
.y3a{bottom:141.754667pt;}
.y2f{bottom:142.266667pt;}
.y8b{bottom:142.426667pt;}
.y105{bottom:144.733333pt;}
.yb2{bottom:144.826667pt;}
.yd5{bottom:146.426667pt;}
.ye9{bottom:147.680000pt;}
.y17e{bottom:148.826667pt;}
.y108{bottom:154.906667pt;}
.y66{bottom:155.706667pt;}
.y14f{bottom:156.186667pt;}
.y23{bottom:156.346667pt;}
.y39{bottom:157.154667pt;}
.y2e{bottom:157.626667pt;}
.y9f{bottom:160.826667pt;}
.y169{bottom:161.946667pt;}
.y8a{bottom:163.706667pt;}
.yb1{bottom:165.946667pt;}
.y10f{bottom:166.746667pt;}
.y17d{bottom:169.946667pt;}
.y129{bottom:170.586667pt;}
.y22{bottom:171.546667pt;}
.y38{bottom:172.514667pt;}
.ydb{bottom:173.373333pt;}
.ye6{bottom:175.680000pt;}
.y65{bottom:176.826667pt;}
.ye0{bottom:177.346667pt;}
.yba{bottom:180.186667pt;}
.y9e{bottom:181.946667pt;}
.y89{bottom:184.826667pt;}
.y131{bottom:185.053333pt;}
.y21{bottom:186.906667pt;}
.yb0{bottom:187.066667pt;}
.y10e{bottom:187.226667pt;}
.y112{bottom:187.840000pt;}
.y37{bottom:187.874667pt;}
.y17c{bottom:191.066667pt;}
.y64{bottom:197.946667pt;}
.yb9{bottom:198.586667pt;}
.y14e{bottom:200.186667pt;}
.y20{bottom:202.266667pt;}
.y9d{bottom:203.066667pt;}
.y36{bottom:203.234667pt;}
.y88{bottom:205.946667pt;}
.yaf{bottom:208.346667pt;}
.ydc{bottom:209.626667pt;}
.ye7{bottom:211.973333pt;}
.ye1{bottom:213.600000pt;}
.y17b{bottom:216.346667pt;}
.yb8{bottom:216.986667pt;}
.y35{bottom:218.434667pt;}
.y63{bottom:219.066667pt;}
.y9c{bottom:224.346667pt;}
.y87{bottom:227.066667pt;}
.yee{bottom:227.266667pt;}
.yf6{bottom:228.000000pt;}
.yae{bottom:229.466667pt;}
.y11e{bottom:231.840000pt;}
.y114{bottom:231.906667pt;}
.yea{bottom:234.653333pt;}
.yb7{bottom:235.386667pt;}
.y17a{bottom:237.466667pt;}
.y116{bottom:238.906667pt;}
.y62{bottom:240.346667pt;}
.y14b{bottom:244.186667pt;}
.yf7{bottom:244.613333pt;}
.y9b{bottom:245.466667pt;}
.y86{bottom:248.346667pt;}
.yad{bottom:250.586667pt;}
.y11f{bottom:252.133333pt;}
.yb6{bottom:253.786667pt;}
.yec{bottom:254.946667pt;}
.y113{bottom:257.253333pt;}
.y179{bottom:258.586667pt;}
.yf8{bottom:261.213333pt;}
.y61{bottom:261.506667pt;}
.y9a{bottom:266.626667pt;}
.yeb{bottom:268.800000pt;}
.y85{bottom:269.506667pt;}
.yac{bottom:271.746667pt;}
.yb5{bottom:272.226667pt;}
.y120{bottom:272.386667pt;}
.y118{bottom:276.346667pt;}
.yf9{bottom:277.826667pt;}
.y11a{bottom:281.826667pt;}
.y60{bottom:282.626667pt;}
.y178{bottom:283.746667pt;}
.y99{bottom:287.746667pt;}
.y115{bottom:288.160000pt;}
.y14a{bottom:288.386667pt;}
.y84{bottom:290.626667pt;}
.y121{bottom:292.666667pt;}
.yab{bottom:293.026667pt;}
.yef{bottom:293.693333pt;}
.yfa{bottom:294.426667pt;}
.y168{bottom:297.026667pt;}
.yd3{bottom:297.506667pt;}
.y5f{bottom:303.746667pt;}
.y177{bottom:305.026667pt;}
.y98{bottom:309.026667pt;}
.yed{bottom:310.333333pt;}
.yfb{bottom:311.040000pt;}
.y83{bottom:311.746667pt;}
.y122{bottom:312.960000pt;}
.y117{bottom:313.506667pt;}
.yaa{bottom:314.146667pt;}
.y167{bottom:318.146667pt;}
.yd2{bottom:318.626667pt;}
.y5e{bottom:325.026667pt;}
.y176{bottom:326.146667pt;}
.yfc{bottom:327.653333pt;}
.y97{bottom:330.146667pt;}
.yf0{bottom:331.066667pt;}
.y149{bottom:332.386667pt;}
.y11d{bottom:332.506667pt;}
.y82{bottom:333.026667pt;}
.y123{bottom:333.253333pt;}
.ya9{bottom:335.266667pt;}
.y166{bottom:339.266667pt;}
.yd1{bottom:339.906667pt;}
.yfd{bottom:344.253333pt;}
.yf2{bottom:345.373333pt;}
.y5d{bottom:346.146667pt;}
.y1f{bottom:347.746667pt;}
.y96{bottom:351.266667pt;}
.yf5{bottom:351.840000pt;}
.y124{bottom:353.533333pt;}
.y81{bottom:354.146667pt;}
.ya8{bottom:356.386667pt;}
.y119{bottom:357.893333pt;}
.yfe{bottom:360.866667pt;}
.yd0{bottom:361.026667pt;}
.y165{bottom:364.386667pt;}
.y5c{bottom:367.266667pt;}
.yf1{bottom:370.720000pt;}
.y95{bottom:372.386667pt;}
.y125{bottom:373.786667pt;}
.y80{bottom:375.266667pt;}
.y148{bottom:376.386667pt;}
.yff{bottom:377.466667pt;}
.ya7{bottom:377.666667pt;}
.ycf{bottom:382.146667pt;}
.yf4{bottom:382.306667pt;}
.y11c{bottom:383.226667pt;}
.y164{bottom:385.666667pt;}
.y5b{bottom:388.386667pt;}
.y187{bottom:389.666667pt;}
.yf3{bottom:393.373333pt;}
.y94{bottom:393.666667pt;}
.y100{bottom:394.080000pt;}
.y7f{bottom:396.386667pt;}
.ya6{bottom:398.786667pt;}
.yce{bottom:403.266667pt;}
.y147{bottom:405.826667pt;}
.y163{bottom:406.786667pt;}
.y11b{bottom:408.573333pt;}
.y5a{bottom:409.666667pt;}
.y186{bottom:410.786667pt;}
.y126{bottom:414.373333pt;}
.y93{bottom:414.786667pt;}
.y7e{bottom:417.666667pt;}
.ya5{bottom:419.906667pt;}
.y146{bottom:420.706667pt;}
.y154{bottom:422.786667pt;}
.ycd{bottom:424.386667pt;}
.y59{bottom:430.786667pt;}
.y162{bottom:431.906667pt;}
.y127{bottom:434.653333pt;}
.y92{bottom:435.906667pt;}
.y7d{bottom:438.786667pt;}
.y175{bottom:439.906667pt;}
.ya4{bottom:441.026667pt;}
.ycc{bottom:445.666667pt;}
.y144{bottom:450.146667pt;}
.y58{bottom:451.906667pt;}
.y161{bottom:453.026667pt;}
.y91{bottom:457.026667pt;}
.y7c{bottom:459.906667pt;}
.y174{bottom:461.026667pt;}
.ya3{bottom:462.306667pt;}
.ycb{bottom:466.813333pt;}
.y57{bottom:473.053333pt;}
.y160{bottom:474.333333pt;}
.y90{bottom:478.333333pt;}
.y142{bottom:479.613333pt;}
.y7b{bottom:481.053333pt;}
.y173{bottom:482.333333pt;}
.yca{bottom:487.933333pt;}
.ya2{bottom:491.453333pt;}
.y56{bottom:494.333333pt;}
.y15f{bottom:499.453333pt;}
.y7a{bottom:502.333333pt;}
.y8f{bottom:507.453333pt;}
.y141{bottom:509.213333pt;}
.y55{bottom:515.453333pt;}
.yc9{bottom:515.933333pt;}
.y1b{bottom:518.493333pt;}
.y15e{bottom:520.573333pt;}
.y79{bottom:523.453333pt;}
.y8e{bottom:528.573333pt;}
.y54{bottom:536.573333pt;}
.yc8{bottom:537.213333pt;}
.y140{bottom:538.653333pt;}
.y15d{bottom:541.693333pt;}
.y78{bottom:544.573333pt;}
.y185{bottom:545.693333pt;}
.y172{bottom:549.693333pt;}
.y134{bottom:553.533333pt;}
.y53{bottom:557.693333pt;}
.y15c{bottom:562.813333pt;}
.y19{bottom:563.133333pt;}
.y77{bottom:565.693333pt;}
.y184{bottom:566.813333pt;}
.yd4{bottom:568.413333pt;}
.yd7{bottom:568.640000pt;}
.y171{bottom:574.813333pt;}
.yc7{bottom:575.293333pt;}
.y52{bottom:578.813333pt;}
.y76{bottom:586.813333pt;}
.y15b{bottom:588.093333pt;}
.y183{bottom:592.093333pt;}
.yc5{bottom:594.653333pt;}
.y170{bottom:596.093333pt;}
.y51{bottom:600.093333pt;}
.y75{bottom:608.093333pt;}
.y15a{bottom:609.213333pt;}
.y18{bottom:612.253333pt;}
.y182{bottom:613.213333pt;}
.y16f{bottom:617.213333pt;}
.y50{bottom:621.213333pt;}
.y17{bottom:626.013333pt;}
.y74{bottom:629.213333pt;}
.yc4{bottom:632.733333pt;}
.y159{bottom:634.333333pt;}
.y16{bottom:635.773333pt;}
.y16e{bottom:638.333333pt;}
.y4f{bottom:642.333333pt;}
.y73{bottom:650.333333pt;}
.yc2{bottom:652.093333pt;}
.y15{bottom:653.693333pt;}
.y10d{bottom:655.453333pt;}
.y181{bottom:659.453333pt;}
.y4e{bottom:663.453333pt;}
.y72{bottom:671.493333pt;}
.y14{bottom:672.293333pt;}
.y10c{bottom:676.773333pt;}
.y180{bottom:680.773333pt;}
.y4d{bottom:684.773333pt;}
.ybc{bottom:690.213333pt;}
.y71{bottom:692.773333pt;}
.y158{bottom:697.893333pt;}
.y4c{bottom:705.893333pt;}
.y13{bottom:711.653333pt;}
.y70{bottom:713.893333pt;}
.y157{bottom:723.013333pt;}
.y4b{bottom:727.013333pt;}
.y16d{bottom:731.013333pt;}
.y6f{bottom:735.013333pt;}
.y12{bottom:739.813333pt;}
.y156{bottom:744.133333pt;}
.y4a{bottom:748.133333pt;}
.y16c{bottom:752.133333pt;}
.y6e{bottom:756.133333pt;}
.ybb{bottom:761.413333pt;}
.y155{bottom:765.413333pt;}
.y49{bottom:769.413333pt;}
.y16b{bottom:773.413333pt;}
.y5{bottom:775.653333pt;}
.y6d{bottom:777.413333pt;}
.y48{bottom:790.533333pt;}
.y17f{bottom:794.533333pt;}
.y6c{bottom:798.533333pt;}
.y47{bottom:811.653333pt;}
.y6b{bottom:819.653333pt;}
.y46{bottom:832.773333pt;}
.y6a{bottom:840.773333pt;}
.y45{bottom:861.893333pt;}
.y69{bottom:862.053333pt;}
.y4{bottom:886.080000pt;}
.y1{bottom:901.760000pt;}
.h31{height:14.560000pt;}
.h21{height:18.720000pt;}
.h2{height:22.400000pt;}
.h33{height:29.120000pt;}
.h37{height:29.152000pt;}
.h36{height:29.280000pt;}
.hb{height:31.406250pt;}
.hd{height:33.760000pt;}
.h22{height:37.440000pt;}
.h1f{height:37.472000pt;}
.h20{height:40.332812pt;}
.h10{height:42.084375pt;}
.h34{height:42.956250pt;}
.hf{height:43.215000pt;}
.h38{height:43.680000pt;}
.h39{height:43.712000pt;}
.he{height:44.000000pt;}
.h2f{height:44.906562pt;}
.h3{height:47.062500pt;}
.hc{height:47.109375pt;}
.h17{height:47.621250pt;}
.h26{height:47.736000pt;}
.h25{height:47.742188pt;}
.h24{height:47.869500pt;}
.h35{height:49.597187pt;}
.h32{height:49.621875pt;}
.h30{height:50.955000pt;}
.h13{height:52.134375pt;}
.h15{height:52.834688pt;}
.h12{height:53.535000pt;}
.h1b{height:54.375000pt;}
.h1e{height:54.390938pt;}
.h28{height:55.867708pt;}
.h1d{height:56.160000pt;}
.h1a{height:56.843750pt;}
.h19{height:57.375000pt;}
.h7{height:57.787500pt;}
.h8{height:58.563750pt;}
.h1c{height:62.781250pt;}
.h4{height:62.812500pt;}
.h6{height:63.656250pt;}
.h18{height:64.500000pt;}
.h3a{height:65.781915pt;}
.ha{height:66.404375pt;}
.h29{height:67.121042pt;}
.h2a{height:78.001042pt;}
.h2b{height:79.761042pt;}
.h9{height:85.785000pt;}
.h2e{height:87.360000pt;}
.h5{height:101.312000pt;}
.h2d{height:102.854375pt;}
.h14{height:169.946667pt;}
.h11{height:214.746667pt;}
.h16{height:230.906667pt;}
.h23{height:257.920000pt;}
.h27{height:412.960000pt;}
.h2c{height:453.440000pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w1{width:55.520000pt;}
.w3{width:56.160000pt;}
.we{width:68.160000pt;}
.wb{width:88.320000pt;}
.wd{width:90.432000pt;}
.w5{width:100.960000pt;}
.w13{width:101.760000pt;}
.w12{width:101.792000pt;}
.wc{width:106.752000pt;}
.w11{width:111.072000pt;}
.w7{width:132.672000pt;}
.wa{width:134.266667pt;}
.w8{width:157.466667pt;}
.w10{width:175.866667pt;}
.w6{width:265.506667pt;}
.w14{width:315.106667pt;}
.w9{width:341.666667pt;}
.w2{width:379.773333pt;}
.wf{width:491.360000pt;}
.w4{width:687.999990pt;}
.w0{width:688.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:2.080000pt;}
.x9{left:7.240000pt;}
.x25{left:9.120000pt;}
.x20{left:10.400000pt;}
.x60{left:11.680000pt;}
.x1d{left:12.960000pt;}
.x24{left:15.040000pt;}
.x18{left:16.640000pt;}
.x2{left:19.040000pt;}
.xe{left:20.200000pt;}
.xa{left:21.160000pt;}
.x1e{left:22.880000pt;}
.x22{left:24.000000pt;}
.x26{left:24.960000pt;}
.x10{left:28.840000pt;}
.x61{left:29.920000pt;}
.x1a{left:31.680000pt;}
.xf{left:33.640000pt;}
.x2a{left:35.680000pt;}
.x28{left:36.800000pt;}
.x5c{left:38.560000pt;}
.x62{left:39.680000pt;}
.x11{left:41.320000pt;}
.x1b{left:43.674667pt;}
.x27{left:44.986667pt;}
.x5{left:55.200000pt;}
.xb{left:57.800000pt;}
.x14{left:59.994667pt;}
.x5b{left:61.274667pt;}
.x29{left:62.874667pt;}
.x12{left:66.280000pt;}
.x4d{left:69.280000pt;}
.x49{left:71.200000pt;}
.x4b{left:72.640000pt;}
.x37{left:73.573333pt;}
.x3a{left:77.693333pt;}
.x63{left:81.306667pt;}
.x51{left:86.080000pt;}
.x7{left:91.034667pt;}
.x6{left:94.431990pt;}
.x1{left:98.272000pt;}
.x38{left:99.840000pt;}
.x19{left:106.591990pt;}
.x2b{left:109.311990pt;}
.x17{left:113.311990pt;}
.xc{left:121.320000pt;}
.x64{left:122.751990pt;}
.x16{left:128.986667pt;}
.x4e{left:130.080000pt;}
.x4c{left:133.440000pt;}
.x4a{left:135.066667pt;}
.x5a{left:142.746656pt;}
.x52{left:146.880000pt;}
.x36{left:150.466667pt;}
.x3{left:153.786667pt;}
.x42{left:169.733333pt;}
.x2e{left:185.253333pt;}
.x8{left:195.386667pt;}
.x47{left:196.986656pt;}
.x53{left:200.026667pt;}
.x13{left:204.386656pt;}
.x35{left:213.053333pt;}
.x3b{left:216.226667pt;}
.x3c{left:219.586667pt;}
.x31{left:221.186667pt;}
.x39{left:226.053333pt;}
.x1c{left:233.506667pt;}
.x15{left:251.906667pt;}
.x54{left:253.146667pt;}
.x55{left:268.506667pt;}
.x2d{left:275.040000pt;}
.x56{left:283.840000pt;}
.x3f{left:287.173333pt;}
.x40{left:290.533333pt;}
.x43{left:296.293333pt;}
.x33{left:304.613333pt;}
.x4f{left:309.146667pt;}
.x2f{left:310.973333pt;}
.x1f{left:322.466667pt;}
.x32{left:327.520000pt;}
.x57{left:329.306667pt;}
.x34{left:350.400000pt;}
.x3d{left:358.106667pt;}
.x44{left:367.226667pt;}
.x50{left:373.306667pt;}
.x45{left:382.560000pt;}
.x5e{left:385.853333pt;}
.x58{left:397.786667pt;}
.x41{left:429.053333pt;}
.x21{left:430.013333pt;}
.x3e{left:432.413333pt;}
.x46{left:445.826667pt;}
.x59{left:450.906667pt;}
.x30{left:454.626667pt;}
.xd{left:460.893333pt;}
.x5f{left:487.973333pt;}
.x23{left:521.253333pt;}
.x4{left:533.573333pt;}
.x48{left:586.533323pt;}
.x2c{left:590.053323pt;}
}




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