
    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_f5a8289f43ce006f05a97890.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.883301;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_0cd9157dd9adfbbf2f95da93.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_84bc9c155a4ba060d687f295.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.875000;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_681c80374d3a9dcbd33c7952.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.875000;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_ad464488ecf00b4c713bd4df.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_33441230129764dcc0a6b83a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912598;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_de8445f37d75fd2015509aff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912598;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_30e05601815c9a0aaa47f2b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.105469;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_c5b88b03e55be20a49484b16.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_11ffa64693173810844f1ddf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d28aa56b4a8b28a1efdfccdc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942871;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_7dc392185bf289d273680afa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9c549bf127a7556e65277eef.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_4b51bc2d73e2214e80d14f8c.woff2')format("woff");}.fff{font-family:fff;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;}
.m3{transform:matrix(0.171428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171428,0.000000,0.000000,0.250000,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(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-76.320000px;}
.v5{vertical-align:-72.720000px;}
.v9{vertical-align:-39.600000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-18.000000px;}
.v8{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:9.360000px;}
.v2{vertical-align:18.000000px;}
.v6{vertical-align:23.760000px;}
.v7{vertical-align:30.240000px;}
.ls4d{letter-spacing:-1.176000px;}
.ls23{letter-spacing:-0.876000px;}
.ls4f{letter-spacing:-0.828000px;}
.ls28{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.ls47{letter-spacing:-0.553200px;}
.lsf{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.457800px;}
.ls46{letter-spacing:-0.414600px;}
.ls30{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.305400px;}
.ls4b{letter-spacing:-0.262200px;}
.ls17{letter-spacing:-0.230400px;}
.ls27{letter-spacing:-0.158400px;}
.ls4e{letter-spacing:-0.152400px;}
.ls4c{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.080400px;}
.ls1c{letter-spacing:0.089709px;}
.ls10{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.109200px;}
.ls44{letter-spacing:0.109440px;}
.ls0{letter-spacing:0.118200px;}
.ls48{letter-spacing:0.152400px;}
.ls49{letter-spacing:0.166800px;}
.ls3b{letter-spacing:0.167040px;}
.ls5{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.201600px;}
.lsd{letter-spacing:0.259800px;}
.ls3e{letter-spacing:0.262080px;}
.ls1d{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.298800px;}
.ls4a{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.308400px;}
.ls40{letter-spacing:0.347040px;}
.ls6{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.439139px;}
.ls3f{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.798000px;}
.ls4{letter-spacing:0.900000px;}
.lsb{letter-spacing:0.978000px;}
.ls8{letter-spacing:1.044000px;}
.ls33{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.568880px;}
.ls2{letter-spacing:1.740240px;}
.ls24{letter-spacing:2.160000px;}
.ls34{letter-spacing:4.320000px;}
.ls3a{letter-spacing:5.040000px;}
.ls26{letter-spacing:5.760000px;}
.ls3c{letter-spacing:6.785280px;}
.ls41{letter-spacing:7.200000px;}
.ls25{letter-spacing:7.920000px;}
.ls1a{letter-spacing:9.360000px;}
.ls45{letter-spacing:10.080000px;}
.ls2b{letter-spacing:10.800000px;}
.ls1f{letter-spacing:12.240000px;}
.ls20{letter-spacing:12.960000px;}
.ls2a{letter-spacing:13.680000px;}
.ls9{letter-spacing:14.580000px;}
.ls2d{letter-spacing:15.120000px;}
.ls3d{letter-spacing:15.840000px;}
.ls19{letter-spacing:16.560000px;}
.ls37{letter-spacing:18.000000px;}
.ls35{letter-spacing:18.720000px;}
.ls13{letter-spacing:22.320000px;}
.ls31{letter-spacing:25.200000px;}
.ls39{letter-spacing:30.360000px;}
.ls42{letter-spacing:33.840000px;}
.ls12{letter-spacing:38.880000px;}
.ls38{letter-spacing:39.905280px;}
.ls43{letter-spacing:42.480000px;}
.ls36{letter-spacing:54.000000px;}
.ls1e{letter-spacing:59.345280px;}
.ls29{letter-spacing:91.440000px;}
.ls11{letter-spacing:122.580000px;}
.ls1{letter-spacing:1276.020000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(170,170,170),0 0.015em rgb(170,170,170),0.015em 0 rgb(170,170,170),0 -0.015em  rgb(170,170,170);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(170,170,170);text-shadow:none;}
}
.ws17{word-spacing:-66.240000px;}
.wse{word-spacing:-23.418720px;}
.ws1d{word-spacing:-20.016000px;}
.ws1{word-spacing:-17.107200px;}
.ws11{word-spacing:-16.868400px;}
.ws20{word-spacing:-16.865400px;}
.ws12{word-spacing:-16.822200px;}
.ws1f{word-spacing:-16.712400px;}
.ws18{word-spacing:-16.640400px;}
.wsf{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.450800px;}
.ws26{word-spacing:-16.407600px;}
.ws10{word-spacing:-16.329600px;}
.ws21{word-spacing:-16.297800px;}
.ws22{word-spacing:-16.254600px;}
.ws1e{word-spacing:-16.145400px;}
.ws19{word-spacing:-16.102200px;}
.ws24{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.918000px;}
.ws2{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.768000px;}
.ws27{word-spacing:-15.732000px;}
.ws25{word-spacing:-15.384000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws0{word-spacing:-15.058200px;}
.wsa{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws15{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.176000px;}
.ws1b{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.060000px;}
.ws1c{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.440000px;}
.ws14{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-5.443200px;}
._2b{margin-left:-2.318400px;}
._1{margin-left:-1.206000px;}
._0{width:1.110000px;}
._2{width:2.346480px;}
._4{width:3.760320px;}
._14{width:4.851360px;}
._10{width:6.095520px;}
._f{width:7.171200px;}
._16{width:8.214960px;}
._11{width:9.234960px;}
._c{width:10.322880px;}
._5{width:11.354400px;}
._9{width:12.993360px;}
._17{width:14.526000px;}
._7{width:16.470240px;}
._8{width:17.562480px;}
._6{width:18.704880px;}
._18{width:19.822560px;}
._12{width:21.095280px;}
._13{width:22.332480px;}
._28{width:23.339040px;}
._a{width:24.501600px;}
._b{width:25.568400px;}
._23{width:26.661600px;}
._20{width:28.483200px;}
._21{width:29.705280px;}
._1a{width:30.721680px;}
._19{width:31.742640px;}
._1b{width:32.754000px;}
._e{width:34.601040px;}
._d{width:36.214560px;}
._1d{width:38.109360px;}
._1c{width:39.510000px;}
._24{width:40.989600px;}
._27{width:42.369360px;}
._22{width:44.513280px;}
._15{width:47.210400px;}
._1f{width:48.297360px;}
._1e{width:49.409280px;}
._26{width:50.515920px;}
._25{width:51.534720px;}
._2d{width:52.992000px;}
._2e{width:54.912960px;}
._2c{width:56.701440px;}
._2a{width:63.140400px;}
._29{width:64.451520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(170,170,170);}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y122{bottom:-5.250000px;}
.y0{bottom:0.000000px;}
.y41{bottom:4.132500px;}
.y132{bottom:4.305000px;}
.y12e{bottom:4.320000px;}
.y7{bottom:5.032500px;}
.ya8{bottom:5.040000px;}
.y130{bottom:5.385000px;}
.ya4{bottom:7.200000px;}
.y11f{bottom:8.460000px;}
.ya5{bottom:14.940000px;}
.ya7{bottom:17.100000px;}
.y11d{bottom:17.280000px;}
.ya3{bottom:22.680000px;}
.y12f{bottom:24.330000px;}
.ya1{bottom:24.840000px;}
.yb3{bottom:30.420000px;}
.ya6{bottom:32.580000px;}
.yae{bottom:38.160000px;}
.y12c{bottom:44.310000px;}
.yb2{bottom:45.900000px;}
.yb9{bottom:48.060000px;}
.yab{bottom:53.640000px;}
.yb6{bottom:55.800000px;}
.yac{bottom:61.560000px;}
.y40{bottom:63.583500px;}
.yb7{bottom:63.720000px;}
.y3f{bottom:67.716000px;}
.yaa{bottom:69.300000px;}
.yb5{bottom:71.460000px;}
.yb1{bottom:77.040000px;}
.yb8{bottom:79.200000px;}
.y6{bottom:81.583500px;}
.yad{bottom:84.780000px;}
.y5{bottom:86.436000px;}
.y172{bottom:91.836000px;}
.yb0{bottom:92.520000px;}
.ybb{bottom:94.680000px;}
.yda{bottom:104.256000px;}
.yaf{bottom:108.000000px;}
.y3e{bottom:108.936000px;}
.yba{bottom:110.205000px;}
.y171{bottom:110.736000px;}
.y13c{bottom:114.516000px;}
.y9c{bottom:116.496000px;}
.yd9{bottom:123.336000px;}
.y3d{bottom:128.196000px;}
.y170{bottom:129.816000px;}
.y13b{bottom:133.416000px;}
.y9b{bottom:135.396000px;}
.y3c{bottom:136.476000px;}
.yd8{bottom:142.236000px;}
.y3b{bottom:148.536000px;}
.y16f{bottom:148.716000px;}
.y13a{bottom:152.490000px;}
.y9a{bottom:154.470000px;}
.y73{bottom:160.770000px;}
.yd7{bottom:161.310000px;}
.y16e{bottom:167.610000px;}
.y139{bottom:171.390000px;}
.y99{bottom:173.370000px;}
.y3a{bottom:173.910000px;}
.y72{bottom:179.670000px;}
.yd6{bottom:180.210000px;}
.y16d{bottom:186.690000px;}
.y138{bottom:190.290000px;}
.y39{bottom:191.910000px;}
.y98{bottom:192.450000px;}
.y71{bottom:198.750000px;}
.yd5{bottom:199.110000px;}
.y16c{bottom:205.590000px;}
.y137{bottom:206.145000px;}
.y38{bottom:209.910000px;}
.y97{bottom:211.350000px;}
.y70{bottom:217.650000px;}
.yd4{bottom:218.190000px;}
.y16b{bottom:224.670000px;}
.y136{bottom:226.125000px;}
.y37{bottom:227.910000px;}
.y106{bottom:228.450000px;}
.y96{bottom:230.430000px;}
.y6f{bottom:236.550000px;}
.yd3{bottom:237.090000px;}
.y16a{bottom:243.570000px;}
.y36{bottom:245.910000px;}
.y135{bottom:246.105000px;}
.y105{bottom:247.530000px;}
.y95{bottom:249.330000px;}
.y6e{bottom:255.630000px;}
.yd2{bottom:256.170000px;}
.y169{bottom:262.470000px;}
.y35{bottom:263.910000px;}
.y134{bottom:266.085000px;}
.y104{bottom:266.430000px;}
.y94{bottom:268.230000px;}
.y6d{bottom:274.530000px;}
.yd1{bottom:275.070000px;}
.y168{bottom:281.550000px;}
.y34{bottom:281.910000px;}
.y103{bottom:285.330000px;}
.y133{bottom:286.245000px;}
.y93{bottom:287.310000px;}
.y6c{bottom:293.610000px;}
.yd0{bottom:293.970000px;}
.y33{bottom:299.550000px;}
.y167{bottom:300.450000px;}
.y102{bottom:304.410000px;}
.y92{bottom:306.210000px;}
.y12b{bottom:306.225000px;}
.y6b{bottom:312.510000px;}
.ycf{bottom:313.050000px;}
.y32{bottom:315.570000px;}
.y166{bottom:319.575000px;}
.y101{bottom:323.355000px;}
.y91{bottom:325.335000px;}
.y131{bottom:326.235000px;}
.y6a{bottom:331.455000px;}
.yce{bottom:331.995000px;}
.y31{bottom:332.715000px;}
.y165{bottom:338.475000px;}
.y100{bottom:342.435000px;}
.y90{bottom:344.235000px;}
.y12d{bottom:346.215000px;}
.y69{bottom:350.535000px;}
.ycd{bottom:351.075000px;}
.y164{bottom:357.375000px;}
.y30{bottom:358.635000px;}
.yff{bottom:361.335000px;}
.y8f{bottom:363.135000px;}
.y68{bottom:369.435000px;}
.y2f{bottom:369.615000px;}
.ycc{bottom:369.975000px;}
.y12a{bottom:370.335000px;}
.y163{bottom:376.455000px;}
.yfe{bottom:380.235000px;}
.y8e{bottom:382.215000px;}
.y67{bottom:388.515000px;}
.ycb{bottom:388.875000px;}
.y162{bottom:395.355000px;}
.y2e{bottom:395.715000px;}
.yfd{bottom:399.315000px;}
.y8d{bottom:401.115000px;}
.y2d{bottom:407.055000px;}
.y129{bottom:407.235000px;}
.y66{bottom:407.415000px;}
.yca{bottom:407.955000px;}
.y161{bottom:414.435000px;}
.yfc{bottom:418.215000px;}
.y8c{bottom:420.195000px;}
.y128{bottom:426.315000px;}
.y65{bottom:426.495000px;}
.yc9{bottom:426.855000px;}
.y2c{bottom:430.455000px;}
.y160{bottom:433.335000px;}
.yfb{bottom:437.295000px;}
.y8b{bottom:439.095000px;}
.y64{bottom:445.395000px;}
.yc8{bottom:445.935000px;}
.y15f{bottom:452.235000px;}
.y127{bottom:454.395000px;}
.yfa{bottom:456.195000px;}
.y2b{bottom:457.455000px;}
.y8a{bottom:457.995000px;}
.y63{bottom:464.295000px;}
.yc7{bottom:464.835000px;}
.y15e{bottom:471.315000px;}
.yf9{bottom:475.275000px;}
.y89{bottom:477.075000px;}
.y62{bottom:483.375000px;}
.y2a{bottom:483.735000px;}
.y126{bottom:484.455000px;}
.y15d{bottom:490.215000px;}
.yf8{bottom:494.175000px;}
.y88{bottom:495.975000px;}
.y29{bottom:501.735000px;}
.y61{bottom:502.275000px;}
.y15c{bottom:509.295000px;}
.y125{bottom:510.915000px;}
.yf7{bottom:513.075000px;}
.y87{bottom:515.055000px;}
.y28{bottom:519.735000px;}
.y60{bottom:521.355000px;}
.yc6{bottom:523.515000px;}
.y15b{bottom:528.195000px;}
.y124{bottom:531.075000px;}
.yf6{bottom:532.155000px;}
.y86{bottom:533.955000px;}
.y27{bottom:537.735000px;}
.y5f{bottom:540.255000px;}
.yc5{bottom:546.555000px;}
.y15a{bottom:547.275000px;}
.yf5{bottom:551.055000px;}
.y26{bottom:555.735000px;}
.y5e{bottom:559.155000px;}
.y159{bottom:566.175000px;}
.yc4{bottom:569.595000px;}
.yf4{bottom:570.135000px;}
.y123{bottom:571.035000px;}
.y85{bottom:571.575000px;}
.y25{bottom:573.735000px;}
.y5d{bottom:578.235000px;}
.y158{bottom:585.075000px;}
.yf3{bottom:589.065000px;}
.y121{bottom:591.045000px;}
.y24{bottom:591.765000px;}
.yc3{bottom:592.665000px;}
.y84{bottom:595.005000px;}
.y5c{bottom:597.165000px;}
.y157{bottom:604.185000px;}
.yf2{bottom:607.965000px;}
.y23{bottom:609.765000px;}
.y120{bottom:611.205000px;}
.y83{bottom:613.905000px;}
.yc2{bottom:615.705000px;}
.y156{bottom:623.085000px;}
.yf1{bottom:627.045000px;}
.y22{bottom:627.765000px;}
.y11e{bottom:631.185000px;}
.y82{bottom:632.985000px;}
.y5b{bottom:634.965000px;}
.yc1{bottom:638.565000px;}
.y155{bottom:642.165000px;}
.y21{bottom:645.765000px;}
.yf0{bottom:645.945000px;}
.y11c{bottom:651.165000px;}
.y81{bottom:651.885000px;}
.yc0{bottom:658.725000px;}
.y154{bottom:661.065000px;}
.y20{bottom:663.765000px;}
.yef{bottom:665.025000px;}
.y80{bottom:670.785000px;}
.y5a{bottom:676.365000px;}
.ybf{bottom:677.625000px;}
.y153{bottom:679.965000px;}
.y1f{bottom:681.765000px;}
.yee{bottom:683.925000px;}
.y7f{bottom:689.865000px;}
.y59{bottom:692.385000px;}
.ybe{bottom:696.705000px;}
.y152{bottom:699.045000px;}
.y1e{bottom:699.765000px;}
.y11b{bottom:702.105000px;}
.y58{bottom:709.125000px;}
.yed{bottom:712.185000px;}
.ybd{bottom:715.605000px;}
.y1d{bottom:717.765000px;}
.y151{bottom:717.945000px;}
.y11a{bottom:721.005000px;}
.y57{bottom:724.965000px;}
.y7e{bottom:727.845000px;}
.ybc{bottom:734.685000px;}
.y1c{bottom:735.765000px;}
.y150{bottom:737.025000px;}
.y119{bottom:739.905000px;}
.y56{bottom:742.965000px;}
.y7d{bottom:746.745000px;}
.yb4{bottom:750.345000px;}
.yec{bottom:751.605000px;}
.y1b{bottom:753.765000px;}
.y14f{bottom:755.925000px;}
.y118{bottom:758.985000px;}
.y55{bottom:760.965000px;}
.y7c{bottom:765.645000px;}
.y1a{bottom:771.765000px;}
.y14e{bottom:774.825000px;}
.y117{bottom:777.885000px;}
.y54{bottom:778.965000px;}
.y7b{bottom:784.725000px;}
.y19{bottom:789.765000px;}
.yeb{bottom:793.545000px;}
.y14d{bottom:793.905000px;}
.y116{bottom:796.785000px;}
.y53{bottom:796.965000px;}
.y7a{bottom:803.625000px;}
.y18{bottom:807.765000px;}
.y14c{bottom:812.805000px;}
.y52{bottom:814.965000px;}
.y115{bottom:815.865000px;}
.yea{bottom:816.945000px;}
.y79{bottom:822.705000px;}
.y17{bottom:825.765000px;}
.y14b{bottom:831.885000px;}
.y51{bottom:832.965000px;}
.ye9{bottom:835.845000px;}
.y78{bottom:841.605000px;}
.y16{bottom:843.765000px;}
.y14a{bottom:850.785000px;}
.y50{bottom:850.965000px;}
.y114{bottom:853.845000px;}
.ye8{bottom:854.925000px;}
.y77{bottom:859.830000px;}
.y15{bottom:861.810000px;}
.y4f{bottom:869.010000px;}
.y149{bottom:869.730000px;}
.y113{bottom:872.790000px;}
.ye7{bottom:873.870000px;}
.y76{bottom:877.830000px;}
.y14{bottom:879.810000px;}
.y4e{bottom:887.010000px;}
.ya9{bottom:887.370000px;}
.y148{bottom:888.810000px;}
.y112{bottom:891.870000px;}
.y75{bottom:892.590000px;}
.ye6{bottom:892.770000px;}
.y13{bottom:897.810000px;}
.y4d{bottom:905.010000px;}
.y147{bottom:907.710000px;}
.y111{bottom:910.770000px;}
.ye5{bottom:911.850000px;}
.y12{bottom:915.810000px;}
.y4c{bottom:923.010000px;}
.y146{bottom:926.790000px;}
.y110{bottom:929.670000px;}
.ye4{bottom:930.750000px;}
.y11{bottom:933.810000px;}
.y4b{bottom:941.010000px;}
.y145{bottom:945.690000px;}
.y10f{bottom:948.750000px;}
.ye3{bottom:949.830000px;}
.y10{bottom:951.810000px;}
.y4a{bottom:959.010000px;}
.y144{bottom:964.590000px;}
.y10e{bottom:967.650000px;}
.ye2{bottom:968.730000px;}
.yf{bottom:969.810000px;}
.y49{bottom:977.010000px;}
.y143{bottom:983.670000px;}
.y10d{bottom:986.730000px;}
.ye1{bottom:987.630000px;}
.y48{bottom:995.010000px;}
.ye{bottom:995.910000px;}
.y142{bottom:1002.570000px;}
.y10c{bottom:1005.630000px;}
.ye0{bottom:1006.710000px;}
.yd{bottom:1006.890000px;}
.y47{bottom:1013.010000px;}
.ya0{bottom:1020.030000px;}
.y141{bottom:1021.650000px;}
.y10b{bottom:1024.530000px;}
.ydf{bottom:1025.610000px;}
.y46{bottom:1031.010000px;}
.yc{bottom:1032.810000px;}
.ya2{bottom:1040.010000px;}
.y140{bottom:1040.550000px;}
.y10a{bottom:1043.610000px;}
.yb{bottom:1044.330000px;}
.yde{bottom:1044.690000px;}
.y45{bottom:1049.010000px;}
.y13f{bottom:1059.630000px;}
.y109{bottom:1062.510000px;}
.ydd{bottom:1063.590000px;}
.y44{bottom:1067.010000px;}
.ya{bottom:1067.730000px;}
.y13e{bottom:1078.530000px;}
.y108{bottom:1081.590000px;}
.ydc{bottom:1082.490000px;}
.y9f{bottom:1083.570000px;}
.y43{bottom:1085.010000px;}
.y8{bottom:1094.730000px;}
.y173{bottom:1097.250000px;}
.ydb{bottom:1101.570000px;}
.y9e{bottom:1101.750000px;}
.y9{bottom:1103.010000px;}
.y107{bottom:1109.670000px;}
.y13d{bottom:1116.150000px;}
.y9d{bottom:1120.110000px;}
.y74{bottom:1120.470000px;}
.y42{bottom:1121.010000px;}
.y4{bottom:1141.020000px;}
.y3{bottom:1159.020000px;}
.y2{bottom:1177.920000px;}
.y1{bottom:1195.380000px;}
.h10{height:19.072500px;}
.h18{height:19.245000px;}
.h21{height:19.260000px;}
.h25{height:19.281000px;}
.h22{height:19.290000px;}
.h6{height:24.112500px;}
.h20{height:28.080000px;}
.h4{height:33.612539px;}
.h2{height:37.625977px;}
.h16{height:38.685000px;}
.h24{height:39.261000px;}
.hb{height:40.985156px;}
.h3{height:41.639414px;}
.h26{height:45.992812px;}
.hf{height:47.344922px;}
.h17{height:48.041016px;}
.h9{height:48.616875px;}
.ha{height:51.706758px;}
.he{height:52.998047px;}
.hd{height:53.165391px;}
.hc{height:58.651172px;}
.h15{height:58.665000px;}
.h12{height:58.930312px;}
.h19{height:59.092031px;}
.h23{height:59.241000px;}
.h14{height:60.226875px;}
.h27{height:64.978594px;}
.h5{height:65.010937px;}
.h13{height:66.757500px;}
.h7{height:66.957188px;}
.h1c{height:68.084282px;}
.h1d{height:71.225156px;}
.h1e{height:71.345156px;}
.h1f{height:75.093750px;}
.h11{height:87.859687px;}
.h1a{height:131.745000px;}
.h1b{height:136.282500px;}
.h1{height:1263.000000px;}
.h8{height:1263.057990px;}
.h0{height:1263.060000px;}
.w7{width:43.020000px;}
.w2{width:50.796000px;}
.w14{width:55.641000px;}
.w8{width:61.740000px;}
.w1b{width:64.065000px;}
.w1d{width:64.101000px;}
.w1c{width:64.245000px;}
.w1a{width:64.296000px;}
.w1e{width:64.425000px;}
.w4{width:66.945000px;}
.wf{width:67.680000px;}
.wb{width:67.845000px;}
.we{width:67.881000px;}
.w13{width:74.505000px;}
.w18{width:75.060000px;}
.w6{width:80.280000px;}
.w15{width:82.065000px;}
.w5{width:86.781000px;}
.w11{width:86.976000px;}
.w12{width:87.285000px;}
.w10{width:90.180000px;}
.wa{width:138.261000px;}
.w9{width:203.070000px;}
.w16{width:219.615000px;}
.wd{width:299.535000px;}
.wc{width:312.720000px;}
.w19{width:385.455000px;}
.w17{width:460.515000px;}
.w3{width:1062.718125px;}
.w0{width:1062.720000px;}
.w1{width:1062.750000px;}
.x0{left:0.000000px;}
.x1d{left:5.580000px;}
.x23{left:7.380000px;}
.x1b{left:8.820000px;}
.x33{left:10.080000px;}
.x1f{left:11.880000px;}
.x39{left:13.680000px;}
.x19{left:16.005000px;}
.x18{left:17.085000px;}
.x3c{left:21.765000px;}
.x3b{left:23.040000px;}
.x24{left:24.300000px;}
.x3a{left:29.160000px;}
.x25{left:31.485000px;}
.x7{left:34.050000px;}
.x22{left:37.605000px;}
.x30{left:102.420000px;}
.x3d{left:155.550000px;}
.x32{left:157.710000px;}
.xc{left:212.610000px;}
.x26{left:239.610000px;}
.x4{left:246.630000px;}
.x10{left:252.570000px;}
.x15{left:254.370000px;}
.x27{left:266.610000px;}
.x11{left:274.710000px;}
.x12{left:278.850000px;}
.x29{left:280.485000px;}
.x8{left:284.970000px;}
.x28{left:300.630000px;}
.xb{left:314.130000px;}
.x16{left:320.070000px;}
.x17{left:329.970000px;}
.xd{left:335.415000px;}
.x14{left:346.215000px;}
.x2b{left:348.375000px;}
.xe{left:351.795000px;}
.x1a{left:366.375000px;}
.x2c{left:416.055000px;}
.x1{left:432.975000px;}
.x1c{left:446.655000px;}
.xf{left:462.675000px;}
.x1e{left:489.675000px;}
.x2{left:503.175000px;}
.x2d{left:506.235000px;}
.x31{left:507.315000px;}
.x3{left:511.815000px;}
.x6{left:527.295000px;}
.x20{left:551.415000px;}
.x5{left:569.625000px;}
.x34{left:571.620000px;}
.x2a{left:593.220000px;}
.x35{left:635.700000px;}
.x2e{left:680.520000px;}
.x36{left:699.960000px;}
.x21{left:754.500000px;}
.x37{left:764.220000px;}
.x2f{left:810.690000px;}
.x9{left:814.288125px;}
.xa{left:820.410000px;}
.x38{left:828.330000px;}
.x3e{left:830.670000px;}
.x3f{left:835.530000px;}
.x13{left:887.370000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v5{vertical-align:-64.640000pt;}
.v9{vertical-align:-35.200000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-16.000000pt;}
.v8{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:8.320000pt;}
.v2{vertical-align:16.000000pt;}
.v6{vertical-align:21.120000pt;}
.v7{vertical-align:26.880000pt;}
.ls4d{letter-spacing:-1.045333pt;}
.ls23{letter-spacing:-0.778667pt;}
.ls4f{letter-spacing:-0.736000pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls47{letter-spacing:-0.491733pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.406933pt;}
.ls46{letter-spacing:-0.368533pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls4b{letter-spacing:-0.233067pt;}
.ls17{letter-spacing:-0.204800pt;}
.ls27{letter-spacing:-0.140800pt;}
.ls4e{letter-spacing:-0.135467pt;}
.ls4c{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.071467pt;}
.ls1c{letter-spacing:0.079741pt;}
.ls10{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.097067pt;}
.ls44{letter-spacing:0.097280pt;}
.ls0{letter-spacing:0.105067pt;}
.ls48{letter-spacing:0.135467pt;}
.ls49{letter-spacing:0.148267pt;}
.ls3b{letter-spacing:0.148480pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.179200pt;}
.lsd{letter-spacing:0.230933pt;}
.ls3e{letter-spacing:0.232960pt;}
.ls1d{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.265600pt;}
.ls4a{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.274133pt;}
.ls40{letter-spacing:0.308480pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.390346pt;}
.ls3f{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.709333pt;}
.ls4{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.869333pt;}
.ls8{letter-spacing:0.928000pt;}
.ls33{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.394560pt;}
.ls2{letter-spacing:1.546880pt;}
.ls24{letter-spacing:1.920000pt;}
.ls34{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:4.480000pt;}
.ls26{letter-spacing:5.120000pt;}
.ls3c{letter-spacing:6.031360pt;}
.ls41{letter-spacing:6.400000pt;}
.ls25{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls45{letter-spacing:8.960000pt;}
.ls2b{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:10.880000pt;}
.ls20{letter-spacing:11.520000pt;}
.ls2a{letter-spacing:12.160000pt;}
.ls9{letter-spacing:12.960000pt;}
.ls2d{letter-spacing:13.440000pt;}
.ls3d{letter-spacing:14.080000pt;}
.ls19{letter-spacing:14.720000pt;}
.ls37{letter-spacing:16.000000pt;}
.ls35{letter-spacing:16.640000pt;}
.ls13{letter-spacing:19.840000pt;}
.ls31{letter-spacing:22.400000pt;}
.ls39{letter-spacing:26.986667pt;}
.ls42{letter-spacing:30.080000pt;}
.ls12{letter-spacing:34.560000pt;}
.ls38{letter-spacing:35.471360pt;}
.ls43{letter-spacing:37.760000pt;}
.ls36{letter-spacing:48.000000pt;}
.ls1e{letter-spacing:52.751360pt;}
.ls29{letter-spacing:81.280000pt;}
.ls11{letter-spacing:108.960000pt;}
.ls1{letter-spacing:1134.240000pt;}
.ws17{word-spacing:-58.880000pt;}
.wse{word-spacing:-20.816640pt;}
.ws1d{word-spacing:-17.792000pt;}
.ws1{word-spacing:-15.206400pt;}
.ws11{word-spacing:-14.994133pt;}
.ws20{word-spacing:-14.991467pt;}
.ws12{word-spacing:-14.953067pt;}
.ws1f{word-spacing:-14.855467pt;}
.ws18{word-spacing:-14.791467pt;}
.wsf{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.622933pt;}
.ws26{word-spacing:-14.584533pt;}
.ws10{word-spacing:-14.515200pt;}
.ws21{word-spacing:-14.486933pt;}
.ws22{word-spacing:-14.448533pt;}
.ws1e{word-spacing:-14.351467pt;}
.ws19{word-spacing:-14.313067pt;}
.ws24{word-spacing:-14.176000pt;}
.ws5{word-spacing:-14.149333pt;}
.ws2{word-spacing:-14.080000pt;}
.ws8{word-spacing:-14.016000pt;}
.ws27{word-spacing:-13.984000pt;}
.ws25{word-spacing:-13.674667pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.385067pt;}
.wsa{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.712000pt;}
.ws1b{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.280000pt;}
.ws14{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-4.838400pt;}
._2b{margin-left:-2.060800pt;}
._1{margin-left:-1.072000pt;}
._0{width:0.986667pt;}
._2{width:2.085760pt;}
._4{width:3.342507pt;}
._14{width:4.312320pt;}
._10{width:5.418240pt;}
._f{width:6.374400pt;}
._16{width:7.302187pt;}
._11{width:8.208853pt;}
._c{width:9.175893pt;}
._5{width:10.092800pt;}
._9{width:11.549653pt;}
._17{width:12.912000pt;}
._7{width:14.640213pt;}
._8{width:15.611093pt;}
._6{width:16.626560pt;}
._18{width:17.620053pt;}
._12{width:18.751360pt;}
._13{width:19.851093pt;}
._28{width:20.745813pt;}
._a{width:21.779200pt;}
._b{width:22.727467pt;}
._23{width:23.699200pt;}
._20{width:25.318400pt;}
._21{width:26.404693pt;}
._1a{width:27.308160pt;}
._19{width:28.215680pt;}
._1b{width:29.114667pt;}
._e{width:30.756480pt;}
._d{width:32.190720pt;}
._1d{width:33.874987pt;}
._1c{width:35.120000pt;}
._24{width:36.435200pt;}
._27{width:37.661653pt;}
._22{width:39.567360pt;}
._15{width:41.964800pt;}
._1f{width:42.930987pt;}
._1e{width:43.919360pt;}
._26{width:44.903040pt;}
._25{width:45.808640pt;}
._2d{width:47.104000pt;}
._2e{width:48.811520pt;}
._2c{width:50.401280pt;}
._2a{width:56.124800pt;}
._29{width:57.290240pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y122{bottom:-4.666667pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.673333pt;}
.y132{bottom:3.826667pt;}
.y12e{bottom:3.840000pt;}
.y7{bottom:4.473333pt;}
.ya8{bottom:4.480000pt;}
.y130{bottom:4.786667pt;}
.ya4{bottom:6.400000pt;}
.y11f{bottom:7.520000pt;}
.ya5{bottom:13.280000pt;}
.ya7{bottom:15.200000pt;}
.y11d{bottom:15.360000pt;}
.ya3{bottom:20.160000pt;}
.y12f{bottom:21.626667pt;}
.ya1{bottom:22.080000pt;}
.yb3{bottom:27.040000pt;}
.ya6{bottom:28.960000pt;}
.yae{bottom:33.920000pt;}
.y12c{bottom:39.386667pt;}
.yb2{bottom:40.800000pt;}
.yb9{bottom:42.720000pt;}
.yab{bottom:47.680000pt;}
.yb6{bottom:49.600000pt;}
.yac{bottom:54.720000pt;}
.y40{bottom:56.518667pt;}
.yb7{bottom:56.640000pt;}
.y3f{bottom:60.192000pt;}
.yaa{bottom:61.600000pt;}
.yb5{bottom:63.520000pt;}
.yb1{bottom:68.480000pt;}
.yb8{bottom:70.400000pt;}
.y6{bottom:72.518667pt;}
.yad{bottom:75.360000pt;}
.y5{bottom:76.832000pt;}
.y172{bottom:81.632000pt;}
.yb0{bottom:82.240000pt;}
.ybb{bottom:84.160000pt;}
.yda{bottom:92.672000pt;}
.yaf{bottom:96.000000pt;}
.y3e{bottom:96.832000pt;}
.yba{bottom:97.960000pt;}
.y171{bottom:98.432000pt;}
.y13c{bottom:101.792000pt;}
.y9c{bottom:103.552000pt;}
.yd9{bottom:109.632000pt;}
.y3d{bottom:113.952000pt;}
.y170{bottom:115.392000pt;}
.y13b{bottom:118.592000pt;}
.y9b{bottom:120.352000pt;}
.y3c{bottom:121.312000pt;}
.yd8{bottom:126.432000pt;}
.y3b{bottom:132.032000pt;}
.y16f{bottom:132.192000pt;}
.y13a{bottom:135.546667pt;}
.y9a{bottom:137.306667pt;}
.y73{bottom:142.906667pt;}
.yd7{bottom:143.386667pt;}
.y16e{bottom:148.986667pt;}
.y139{bottom:152.346667pt;}
.y99{bottom:154.106667pt;}
.y3a{bottom:154.586667pt;}
.y72{bottom:159.706667pt;}
.yd6{bottom:160.186667pt;}
.y16d{bottom:165.946667pt;}
.y138{bottom:169.146667pt;}
.y39{bottom:170.586667pt;}
.y98{bottom:171.066667pt;}
.y71{bottom:176.666667pt;}
.yd5{bottom:176.986667pt;}
.y16c{bottom:182.746667pt;}
.y137{bottom:183.240000pt;}
.y38{bottom:186.586667pt;}
.y97{bottom:187.866667pt;}
.y70{bottom:193.466667pt;}
.yd4{bottom:193.946667pt;}
.y16b{bottom:199.706667pt;}
.y136{bottom:201.000000pt;}
.y37{bottom:202.586667pt;}
.y106{bottom:203.066667pt;}
.y96{bottom:204.826667pt;}
.y6f{bottom:210.266667pt;}
.yd3{bottom:210.746667pt;}
.y16a{bottom:216.506667pt;}
.y36{bottom:218.586667pt;}
.y135{bottom:218.760000pt;}
.y105{bottom:220.026667pt;}
.y95{bottom:221.626667pt;}
.y6e{bottom:227.226667pt;}
.yd2{bottom:227.706667pt;}
.y169{bottom:233.306667pt;}
.y35{bottom:234.586667pt;}
.y134{bottom:236.520000pt;}
.y104{bottom:236.826667pt;}
.y94{bottom:238.426667pt;}
.y6d{bottom:244.026667pt;}
.yd1{bottom:244.506667pt;}
.y168{bottom:250.266667pt;}
.y34{bottom:250.586667pt;}
.y103{bottom:253.626667pt;}
.y133{bottom:254.440000pt;}
.y93{bottom:255.386667pt;}
.y6c{bottom:260.986667pt;}
.yd0{bottom:261.306667pt;}
.y33{bottom:266.266667pt;}
.y167{bottom:267.066667pt;}
.y102{bottom:270.586667pt;}
.y92{bottom:272.186667pt;}
.y12b{bottom:272.200000pt;}
.y6b{bottom:277.786667pt;}
.ycf{bottom:278.266667pt;}
.y32{bottom:280.506667pt;}
.y166{bottom:284.066667pt;}
.y101{bottom:287.426667pt;}
.y91{bottom:289.186667pt;}
.y131{bottom:289.986667pt;}
.y6a{bottom:294.626667pt;}
.yce{bottom:295.106667pt;}
.y31{bottom:295.746667pt;}
.y165{bottom:300.866667pt;}
.y100{bottom:304.386667pt;}
.y90{bottom:305.986667pt;}
.y12d{bottom:307.746667pt;}
.y69{bottom:311.586667pt;}
.ycd{bottom:312.066667pt;}
.y164{bottom:317.666667pt;}
.y30{bottom:318.786667pt;}
.yff{bottom:321.186667pt;}
.y8f{bottom:322.786667pt;}
.y68{bottom:328.386667pt;}
.y2f{bottom:328.546667pt;}
.ycc{bottom:328.866667pt;}
.y12a{bottom:329.186667pt;}
.y163{bottom:334.626667pt;}
.yfe{bottom:337.986667pt;}
.y8e{bottom:339.746667pt;}
.y67{bottom:345.346667pt;}
.ycb{bottom:345.666667pt;}
.y162{bottom:351.426667pt;}
.y2e{bottom:351.746667pt;}
.yfd{bottom:354.946667pt;}
.y8d{bottom:356.546667pt;}
.y2d{bottom:361.826667pt;}
.y129{bottom:361.986667pt;}
.y66{bottom:362.146667pt;}
.yca{bottom:362.626667pt;}
.y161{bottom:368.386667pt;}
.yfc{bottom:371.746667pt;}
.y8c{bottom:373.506667pt;}
.y128{bottom:378.946667pt;}
.y65{bottom:379.106667pt;}
.yc9{bottom:379.426667pt;}
.y2c{bottom:382.626667pt;}
.y160{bottom:385.186667pt;}
.yfb{bottom:388.706667pt;}
.y8b{bottom:390.306667pt;}
.y64{bottom:395.906667pt;}
.yc8{bottom:396.386667pt;}
.y15f{bottom:401.986667pt;}
.y127{bottom:403.906667pt;}
.yfa{bottom:405.506667pt;}
.y2b{bottom:406.626667pt;}
.y8a{bottom:407.106667pt;}
.y63{bottom:412.706667pt;}
.yc7{bottom:413.186667pt;}
.y15e{bottom:418.946667pt;}
.yf9{bottom:422.466667pt;}
.y89{bottom:424.066667pt;}
.y62{bottom:429.666667pt;}
.y2a{bottom:429.986667pt;}
.y126{bottom:430.626667pt;}
.y15d{bottom:435.746667pt;}
.yf8{bottom:439.266667pt;}
.y88{bottom:440.866667pt;}
.y29{bottom:445.986667pt;}
.y61{bottom:446.466667pt;}
.y15c{bottom:452.706667pt;}
.y125{bottom:454.146667pt;}
.yf7{bottom:456.066667pt;}
.y87{bottom:457.826667pt;}
.y28{bottom:461.986667pt;}
.y60{bottom:463.426667pt;}
.yc6{bottom:465.346667pt;}
.y15b{bottom:469.506667pt;}
.y124{bottom:472.066667pt;}
.yf6{bottom:473.026667pt;}
.y86{bottom:474.626667pt;}
.y27{bottom:477.986667pt;}
.y5f{bottom:480.226667pt;}
.yc5{bottom:485.826667pt;}
.y15a{bottom:486.466667pt;}
.yf5{bottom:489.826667pt;}
.y26{bottom:493.986667pt;}
.y5e{bottom:497.026667pt;}
.y159{bottom:503.266667pt;}
.yc4{bottom:506.306667pt;}
.yf4{bottom:506.786667pt;}
.y123{bottom:507.586667pt;}
.y85{bottom:508.066667pt;}
.y25{bottom:509.986667pt;}
.y5d{bottom:513.986667pt;}
.y158{bottom:520.066667pt;}
.yf3{bottom:523.613333pt;}
.y121{bottom:525.373333pt;}
.y24{bottom:526.013333pt;}
.yc3{bottom:526.813333pt;}
.y84{bottom:528.893333pt;}
.y5c{bottom:530.813333pt;}
.y157{bottom:537.053333pt;}
.yf2{bottom:540.413333pt;}
.y23{bottom:542.013333pt;}
.y120{bottom:543.293333pt;}
.y83{bottom:545.693333pt;}
.yc2{bottom:547.293333pt;}
.y156{bottom:553.853333pt;}
.yf1{bottom:557.373333pt;}
.y22{bottom:558.013333pt;}
.y11e{bottom:561.053333pt;}
.y82{bottom:562.653333pt;}
.y5b{bottom:564.413333pt;}
.yc1{bottom:567.613333pt;}
.y155{bottom:570.813333pt;}
.y21{bottom:574.013333pt;}
.yf0{bottom:574.173333pt;}
.y11c{bottom:578.813333pt;}
.y81{bottom:579.453333pt;}
.yc0{bottom:585.533333pt;}
.y154{bottom:587.613333pt;}
.y20{bottom:590.013333pt;}
.yef{bottom:591.133333pt;}
.y80{bottom:596.253333pt;}
.y5a{bottom:601.213333pt;}
.ybf{bottom:602.333333pt;}
.y153{bottom:604.413333pt;}
.y1f{bottom:606.013333pt;}
.yee{bottom:607.933333pt;}
.y7f{bottom:613.213333pt;}
.y59{bottom:615.453333pt;}
.ybe{bottom:619.293333pt;}
.y152{bottom:621.373333pt;}
.y1e{bottom:622.013333pt;}
.y11b{bottom:624.093333pt;}
.y58{bottom:630.333333pt;}
.yed{bottom:633.053333pt;}
.ybd{bottom:636.093333pt;}
.y1d{bottom:638.013333pt;}
.y151{bottom:638.173333pt;}
.y11a{bottom:640.893333pt;}
.y57{bottom:644.413333pt;}
.y7e{bottom:646.973333pt;}
.ybc{bottom:653.053333pt;}
.y1c{bottom:654.013333pt;}
.y150{bottom:655.133333pt;}
.y119{bottom:657.693333pt;}
.y56{bottom:660.413333pt;}
.y7d{bottom:663.773333pt;}
.yb4{bottom:666.973333pt;}
.yec{bottom:668.093333pt;}
.y1b{bottom:670.013333pt;}
.y14f{bottom:671.933333pt;}
.y118{bottom:674.653333pt;}
.y55{bottom:676.413333pt;}
.y7c{bottom:680.573333pt;}
.y1a{bottom:686.013333pt;}
.y14e{bottom:688.733333pt;}
.y117{bottom:691.453333pt;}
.y54{bottom:692.413333pt;}
.y7b{bottom:697.533333pt;}
.y19{bottom:702.013333pt;}
.yeb{bottom:705.373333pt;}
.y14d{bottom:705.693333pt;}
.y116{bottom:708.253333pt;}
.y53{bottom:708.413333pt;}
.y7a{bottom:714.333333pt;}
.y18{bottom:718.013333pt;}
.y14c{bottom:722.493333pt;}
.y52{bottom:724.413333pt;}
.y115{bottom:725.213333pt;}
.yea{bottom:726.173333pt;}
.y79{bottom:731.293333pt;}
.y17{bottom:734.013333pt;}
.y14b{bottom:739.453333pt;}
.y51{bottom:740.413333pt;}
.ye9{bottom:742.973333pt;}
.y78{bottom:748.093333pt;}
.y16{bottom:750.013333pt;}
.y14a{bottom:756.253333pt;}
.y50{bottom:756.413333pt;}
.y114{bottom:758.973333pt;}
.ye8{bottom:759.933333pt;}
.y77{bottom:764.293333pt;}
.y15{bottom:766.053333pt;}
.y4f{bottom:772.453333pt;}
.y149{bottom:773.093333pt;}
.y113{bottom:775.813333pt;}
.ye7{bottom:776.773333pt;}
.y76{bottom:780.293333pt;}
.y14{bottom:782.053333pt;}
.y4e{bottom:788.453333pt;}
.ya9{bottom:788.773333pt;}
.y148{bottom:790.053333pt;}
.y112{bottom:792.773333pt;}
.y75{bottom:793.413333pt;}
.ye6{bottom:793.573333pt;}
.y13{bottom:798.053333pt;}
.y4d{bottom:804.453333pt;}
.y147{bottom:806.853333pt;}
.y111{bottom:809.573333pt;}
.ye5{bottom:810.533333pt;}
.y12{bottom:814.053333pt;}
.y4c{bottom:820.453333pt;}
.y146{bottom:823.813333pt;}
.y110{bottom:826.373333pt;}
.ye4{bottom:827.333333pt;}
.y11{bottom:830.053333pt;}
.y4b{bottom:836.453333pt;}
.y145{bottom:840.613333pt;}
.y10f{bottom:843.333333pt;}
.ye3{bottom:844.293333pt;}
.y10{bottom:846.053333pt;}
.y4a{bottom:852.453333pt;}
.y144{bottom:857.413333pt;}
.y10e{bottom:860.133333pt;}
.ye2{bottom:861.093333pt;}
.yf{bottom:862.053333pt;}
.y49{bottom:868.453333pt;}
.y143{bottom:874.373333pt;}
.y10d{bottom:877.093333pt;}
.ye1{bottom:877.893333pt;}
.y48{bottom:884.453333pt;}
.ye{bottom:885.253333pt;}
.y142{bottom:891.173333pt;}
.y10c{bottom:893.893333pt;}
.ye0{bottom:894.853333pt;}
.yd{bottom:895.013333pt;}
.y47{bottom:900.453333pt;}
.ya0{bottom:906.693333pt;}
.y141{bottom:908.133333pt;}
.y10b{bottom:910.693333pt;}
.ydf{bottom:911.653333pt;}
.y46{bottom:916.453333pt;}
.yc{bottom:918.053333pt;}
.ya2{bottom:924.453333pt;}
.y140{bottom:924.933333pt;}
.y10a{bottom:927.653333pt;}
.yb{bottom:928.293333pt;}
.yde{bottom:928.613333pt;}
.y45{bottom:932.453333pt;}
.y13f{bottom:941.893333pt;}
.y109{bottom:944.453333pt;}
.ydd{bottom:945.413333pt;}
.y44{bottom:948.453333pt;}
.ya{bottom:949.093333pt;}
.y13e{bottom:958.693333pt;}
.y108{bottom:961.413333pt;}
.ydc{bottom:962.213333pt;}
.y9f{bottom:963.173333pt;}
.y43{bottom:964.453333pt;}
.y8{bottom:973.093333pt;}
.y173{bottom:975.333333pt;}
.ydb{bottom:979.173333pt;}
.y9e{bottom:979.333333pt;}
.y9{bottom:980.453333pt;}
.y107{bottom:986.373333pt;}
.y13d{bottom:992.133333pt;}
.y9d{bottom:995.653333pt;}
.y74{bottom:995.973333pt;}
.y42{bottom:996.453333pt;}
.y4{bottom:1014.240000pt;}
.y3{bottom:1030.240000pt;}
.y2{bottom:1047.040000pt;}
.y1{bottom:1062.560000pt;}
.h10{height:16.953333pt;}
.h18{height:17.106667pt;}
.h21{height:17.120000pt;}
.h25{height:17.138667pt;}
.h22{height:17.146667pt;}
.h6{height:21.433333pt;}
.h20{height:24.960000pt;}
.h4{height:29.877812pt;}
.h2{height:33.445312pt;}
.h16{height:34.386667pt;}
.h24{height:34.898667pt;}
.hb{height:36.431250pt;}
.h3{height:37.012813pt;}
.h26{height:40.882500pt;}
.hf{height:42.084375pt;}
.h17{height:42.703125pt;}
.h9{height:43.215000pt;}
.ha{height:45.961562pt;}
.he{height:47.109375pt;}
.hd{height:47.258125pt;}
.hc{height:52.134375pt;}
.h15{height:52.146667pt;}
.h12{height:52.382500pt;}
.h19{height:52.526250pt;}
.h23{height:52.658667pt;}
.h14{height:53.535000pt;}
.h27{height:57.758750pt;}
.h5{height:57.787500pt;}
.h13{height:59.340000pt;}
.h7{height:59.517500pt;}
.h1c{height:60.519362pt;}
.h1d{height:63.311250pt;}
.h1e{height:63.417917pt;}
.h1f{height:66.750000pt;}
.h11{height:78.097500pt;}
.h1a{height:117.106667pt;}
.h1b{height:121.140000pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w7{width:38.240000pt;}
.w2{width:45.152000pt;}
.w14{width:49.458667pt;}
.w8{width:54.880000pt;}
.w1b{width:56.946667pt;}
.w1d{width:56.978667pt;}
.w1c{width:57.106667pt;}
.w1a{width:57.152000pt;}
.w1e{width:57.266667pt;}
.w4{width:59.506667pt;}
.wf{width:60.160000pt;}
.wb{width:60.306667pt;}
.we{width:60.338667pt;}
.w13{width:66.226667pt;}
.w18{width:66.720000pt;}
.w6{width:71.360000pt;}
.w15{width:72.946667pt;}
.w5{width:77.138667pt;}
.w11{width:77.312000pt;}
.w12{width:77.586667pt;}
.w10{width:80.160000pt;}
.wa{width:122.898667pt;}
.w9{width:180.506667pt;}
.w16{width:195.213333pt;}
.wd{width:266.253333pt;}
.wc{width:277.973333pt;}
.w19{width:342.626667pt;}
.w17{width:409.346667pt;}
.w3{width:944.638333pt;}
.w0{width:944.640000pt;}
.w1{width:944.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:4.960000pt;}
.x23{left:6.560000pt;}
.x1b{left:7.840000pt;}
.x33{left:8.960000pt;}
.x1f{left:10.560000pt;}
.x39{left:12.160000pt;}
.x19{left:14.226667pt;}
.x18{left:15.186667pt;}
.x3c{left:19.346667pt;}
.x3b{left:20.480000pt;}
.x24{left:21.600000pt;}
.x3a{left:25.920000pt;}
.x25{left:27.986667pt;}
.x7{left:30.266667pt;}
.x22{left:33.426667pt;}
.x30{left:91.040000pt;}
.x3d{left:138.266667pt;}
.x32{left:140.186667pt;}
.xc{left:188.986667pt;}
.x26{left:212.986667pt;}
.x4{left:219.226667pt;}
.x10{left:224.506667pt;}
.x15{left:226.106667pt;}
.x27{left:236.986667pt;}
.x11{left:244.186667pt;}
.x12{left:247.866667pt;}
.x29{left:249.320000pt;}
.x8{left:253.306667pt;}
.x28{left:267.226667pt;}
.xb{left:279.226667pt;}
.x16{left:284.506667pt;}
.x17{left:293.306667pt;}
.xd{left:298.146667pt;}
.x14{left:307.746667pt;}
.x2b{left:309.666667pt;}
.xe{left:312.706667pt;}
.x1a{left:325.666667pt;}
.x2c{left:369.826667pt;}
.x1{left:384.866667pt;}
.x1c{left:397.026667pt;}
.xf{left:411.266667pt;}
.x1e{left:435.266667pt;}
.x2{left:447.266667pt;}
.x2d{left:449.986667pt;}
.x31{left:450.946667pt;}
.x3{left:454.946667pt;}
.x6{left:468.706667pt;}
.x20{left:490.146667pt;}
.x5{left:506.333333pt;}
.x34{left:508.106667pt;}
.x2a{left:527.306667pt;}
.x35{left:565.066667pt;}
.x2e{left:604.906667pt;}
.x36{left:622.186667pt;}
.x21{left:670.666667pt;}
.x37{left:679.306667pt;}
.x2f{left:720.613333pt;}
.x9{left:723.811667pt;}
.xa{left:729.253333pt;}
.x38{left:736.293333pt;}
.x3e{left:738.373333pt;}
.x3f{left:742.693333pt;}
.x13{left:788.773333pt;}
}




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