
    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_a0d46c2194c3778cdd53e0f8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_2a9170f053726926f0f668df.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_a89f869ec638c2f508ce4b72.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_adbf30fbaac00abdc736be84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_21b3029ba6a021b5fd9ce5ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_df77b2fb48d72731a801f906.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_56a1d9a13fc51fd1055c2c6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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_ce7a7248d081becb3c76929d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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_a2bcd3cc3abc82f15f760e75.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_010de0580b165bd999727e6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959961;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_e16bf03a1382593fec58cbc3.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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_17853a03d7b274a3f0ad4c82.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.064941;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_ec7ab68c105a81e66b0523af.woff2')format("woff");}.fff{font-family:fff;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls2b{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.792000px;}
.ls28{letter-spacing:-0.636000px;}
.ls2f{letter-spacing:-0.612000px;}
.ls2a{letter-spacing:-0.524400px;}
.ls15{letter-spacing:-0.414600px;}
.ls30{letter-spacing:-0.391800px;}
.ls29{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.274800px;}
.ls1b{letter-spacing:-0.237600px;}
.ls14{letter-spacing:-0.232800px;}
.ls9{letter-spacing:-0.222600px;}
.ls2e{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.037440px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.010080px;}
.ls17{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.023040px;}
.ls19{letter-spacing:0.031680px;}
.ls1d{letter-spacing:0.032400px;}
.lsd{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.061200px;}
.ls13{letter-spacing:0.063360px;}
.ls25{letter-spacing:0.086400px;}
.ls2d{letter-spacing:0.109200px;}
.ls21{letter-spacing:0.109440px;}
.ls22{letter-spacing:0.126720px;}
.ls1c{letter-spacing:0.132600px;}
.ls24{letter-spacing:0.148800px;}
.ls4{letter-spacing:0.149760px;}
.ls23{letter-spacing:0.195600px;}
.ls27{letter-spacing:0.218880px;}
.ls10{letter-spacing:0.237600px;}
.ls11{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.302400px;}
.ls2c{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.339840px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:0.364800px;}
.lsb{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.672000px;}
.ls7{letter-spacing:1.080000px;}
.ls12{letter-spacing:14.060160px;}
.ls20{letter-spacing:14.803200px;}
.ls26{letter-spacing:89.803200px;}
.ls16{letter-spacing:843.096000px;}
.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;}
}
.ws16{word-spacing:-63.360000px;}
.wsa{word-spacing:-59.760000px;}
.ws4{word-spacing:-24.418800px;}
.wse{word-spacing:-17.637120px;}
.wsd{word-spacing:-17.619840px;}
.ws3{word-spacing:-17.510640px;}
.ws5{word-spacing:-16.891200px;}
.ws1b{word-spacing:-16.462200px;}
.ws1c{word-spacing:-16.352400px;}
.ws1d{word-spacing:-16.266000px;}
.ws21{word-spacing:-16.243200px;}
.ws6{word-spacing:-16.228800px;}
.ws19{word-spacing:-16.156800px;}
.ws14{word-spacing:-15.910800px;}
.ws18{word-spacing:-15.851400px;}
.ws17{word-spacing:-15.520800px;}
.ws10{word-spacing:-15.476400px;}
.ws11{word-spacing:-15.371400px;}
.ws13{word-spacing:-15.271200px;}
.ws2{word-spacing:-15.248880px;}
.ws0{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.220800px;}
.ws15{word-spacing:-15.201360px;}
.ws1{word-spacing:-15.016200px;}
.ws12{word-spacing:-15.006000px;}
.wsf{word-spacing:-15.001200px;}
.wsb{word-spacing:-14.964000px;}
.ws1f{word-spacing:-14.826240px;}
.ws1e{word-spacing:-14.693640px;}
.ws8{word-spacing:-14.595840px;}
.ws9{word-spacing:-14.572800px;}
.ws20{word-spacing:-14.434440px;}
.ws7{word-spacing:-13.983840px;}
.wsc{word-spacing:0.000000px;}
._15{margin-left:-5.184000px;}
._14{margin-left:-4.106880px;}
._10{margin-left:-2.686464px;}
._1{margin-left:-1.012608px;}
._0{width:1.127520px;}
._9{width:2.868480px;}
._e{width:4.362480px;}
._d{width:5.497920px;}
._11{width:6.513840px;}
._c{width:7.589520px;}
._5{width:9.143280px;}
._6{width:10.218960px;}
._16{width:11.327040px;}
._f{width:12.489840px;}
._3{width:13.565520px;}
._17{width:14.699952px;}
._13{width:15.871296px;}
._4{width:17.050320px;}
._12{width:18.053136px;}
._8{width:19.090800px;}
._7{width:20.458080px;}
._18{width:22.332960px;}
._19{width:24.045120px;}
._a{width:25.107120px;}
._b{width:26.645040px;}
._1b{width:28.247040px;}
._1a{width:29.278080px;}
._1c{width:43.781760px;}
._2{width:89.372928px;}
._20{width:90.457440px;}
._1f{width:103.636992px;}
._1e{width:104.710080px;}
._1d{width:114.238080px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs10{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fsf{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs12{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs11{font-size:282.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.720000px;}
.y11{bottom:1.080000px;}
.y1d{bottom:1.980000px;}
.y7{bottom:3.420000px;}
.y93{bottom:3.600000px;}
.ye8{bottom:3.780000px;}
.y59{bottom:3.960000px;}
.y56{bottom:4.140000px;}
.y130{bottom:5.220000px;}
.yf{bottom:5.580000px;}
.y5{bottom:5.760000px;}
.y58{bottom:8.100000px;}
.y152{bottom:12.240000px;}
.y113{bottom:12.420000px;}
.y132{bottom:12.600000px;}
.y159{bottom:12.645000px;}
.y1c{bottom:14.400000px;}
.y6{bottom:19.980000px;}
.y115{bottom:20.340000px;}
.y116{bottom:20.700000px;}
.y118{bottom:21.060000px;}
.y4{bottom:21.240000px;}
.y158{bottom:21.285000px;}
.y119{bottom:21.420000px;}
.y55{bottom:23.070000px;}
.ye{bottom:33.840000px;}
.y155{bottom:38.880000px;}
.y51{bottom:41.760000px;}
.y54{bottom:50.790000px;}
.y8{bottom:53.460000px;}
.y3{bottom:54.720000px;}
.y50{bottom:59.220000px;}
.y53{bottom:61.590000px;}
.y35{bottom:70.380000px;}
.y4f{bottom:76.500000px;}
.y2{bottom:80.280000px;}
.y34{bottom:90.180000px;}
.y4e{bottom:93.780000px;}
.y199{bottom:106.920000px;}
.y33{bottom:108.180000px;}
.y17e{bottom:110.880000px;}
.yd{bottom:111.060000px;}
.yc6{bottom:111.420000px;}
.y14f{bottom:112.500000px;}
.y91{bottom:114.480000px;}
.y32{bottom:120.060000px;}
.y198{bottom:125.640000px;}
.y4d{bottom:128.340000px;}
.y17d{bottom:129.420000px;}
.y14e{bottom:131.220000px;}
.yc{bottom:133.200000px;}
.yfe{bottom:135.900000px;}
.y31{bottom:137.340000px;}
.y52{bottom:142.740000px;}
.y197{bottom:144.180000px;}
.yc5{bottom:144.900000px;}
.y4c{bottom:145.620000px;}
.y123{bottom:147.060000px;}
.y17c{bottom:148.140000px;}
.y14d{bottom:149.760000px;}
.ye6{bottom:150.840000px;}
.y30{bottom:154.620000px;}
.yfd{bottom:154.650000px;}
.y90{bottom:160.950000px;}
.y196{bottom:162.930000px;}
.y4b{bottom:163.080000px;}
.yc4{bottom:163.650000px;}
.y122{bottom:165.810000px;}
.y14c{bottom:168.510000px;}
.y2f{bottom:171.900000px;}
.yfc{bottom:173.370000px;}
.y17b{bottom:175.890000px;}
.y8f{bottom:179.670000px;}
.y4a{bottom:180.360000px;}
.y195{bottom:181.650000px;}
.yc3{bottom:182.370000px;}
.ye5{bottom:184.350000px;}
.y14b{bottom:187.230000px;}
.y2e{bottom:189.585000px;}
.y17a{bottom:194.610000px;}
.y49{bottom:197.685000px;}
.y8e{bottom:198.210000px;}
.y194{bottom:200.370000px;}
.yfb{bottom:200.910000px;}
.ye4{bottom:203.070000px;}
.y2d{bottom:206.865000px;}
.yc2{bottom:209.910000px;}
.y179{bottom:213.150000px;}
.y14a{bottom:214.770000px;}
.y48{bottom:214.965000px;}
.y8d{bottom:216.930000px;}
.y1e{bottom:218.190000px;}
.y193{bottom:218.910000px;}
.yfa{bottom:219.630000px;}
.ye3{bottom:221.610000px;}
.y121{bottom:221.790000px;}
.y2c{bottom:224.145000px;}
.yc1{bottom:228.630000px;}
.y178{bottom:231.870000px;}
.y47{bottom:232.245000px;}
.y149{bottom:233.490000px;}
.y8c{bottom:235.650000px;}
.y192{bottom:237.630000px;}
.yf9{bottom:238.350000px;}
.ye2{bottom:240.330000px;}
.y120{bottom:240.510000px;}
.y2b{bottom:241.425000px;}
.yc0{bottom:247.350000px;}
.y46{bottom:249.705000px;}
.y177{bottom:250.590000px;}
.y148{bottom:252.210000px;}
.y8b{bottom:254.370000px;}
.y191{bottom:256.350000px;}
.yf8{bottom:257.070000px;}
.y2a{bottom:258.885000px;}
.ye1{bottom:259.050000px;}
.ybf{bottom:266.070000px;}
.y45{bottom:266.985000px;}
.y11f{bottom:268.050000px;}
.y147{bottom:270.930000px;}
.y8a{bottom:272.910000px;}
.y190{bottom:275.070000px;}
.y176{bottom:278.130000px;}
.y44{bottom:284.265000px;}
.ybe{bottom:284.610000px;}
.ye0{bottom:286.770000px;}
.y146{bottom:289.650000px;}
.y89{bottom:291.630000px;}
.y18f{bottom:293.610000px;}
.y175{bottom:296.850000px;}
.y43{bottom:301.545000px;}
.ydf{bottom:305.490000px;}
.y88{bottom:310.350000px;}
.ybd{bottom:312.330000px;}
.y1bf{bottom:315.390000px;}
.y174{bottom:315.570000px;}
.y145{bottom:317.190000px;}
.y42{bottom:318.825000px;}
.y29{bottom:323.685000px;}
.yde{bottom:324.030000px;}
.y11e{bottom:324.210000px;}
.y87{bottom:329.070000px;}
.ybc{bottom:331.050000px;}
.y173{bottom:334.290000px;}
.y144{bottom:335.910000px;}
.y41{bottom:336.285000px;}
.y1be{bottom:338.250000px;}
.y11d{bottom:342.750000px;}
.y28{bottom:343.125000px;}
.y86{bottom:347.610000px;}
.ybb{bottom:349.770000px;}
.ydd{bottom:351.750000px;}
.y172{bottom:353.010000px;}
.y40{bottom:353.565000px;}
.y143{bottom:354.630000px;}
.y1bd{bottom:356.790000px;}
.y27{bottom:362.025000px;}
.y85{bottom:366.330000px;}
.yba{bottom:368.310000px;}
.y3f{bottom:370.845000px;}
.y11c{bottom:371.190000px;}
.y171{bottom:371.550000px;}
.y142{bottom:373.350000px;}
.y1bc{bottom:374.970000px;}
.ydc{bottom:379.470000px;}
.y26{bottom:381.465000px;}
.y84{bottom:385.050000px;}
.y11b{bottom:386.850000px;}
.yb9{bottom:387.030000px;}
.y3e{bottom:388.125000px;}
.y170{bottom:390.270000px;}
.y1bb{bottom:398.010000px;}
.ydb{bottom:398.190000px;}
.y25{bottom:400.545000px;}
.y141{bottom:400.935000px;}
.y83{bottom:403.815000px;}
.y3d{bottom:405.405000px;}
.y11a{bottom:405.435000px;}
.yf7{bottom:405.795000px;}
.yb8{bottom:414.795000px;}
.y1ba{bottom:416.235000px;}
.yda{bottom:416.775000px;}
.y16f{bottom:418.035000px;}
.y140{bottom:419.655000px;}
.y24{bottom:419.985000px;}
.y19a{bottom:421.095000px;}
.y82{bottom:422.355000px;}
.y3c{bottom:422.865000px;}
.yf6{bottom:424.515000px;}
.yb7{bottom:433.515000px;}
.y1b9{bottom:434.415000px;}
.yd9{bottom:435.495000px;}
.y16e{bottom:436.755000px;}
.y13f{bottom:438.375000px;}
.y23{bottom:438.915000px;}
.y3b{bottom:440.175000px;}
.y81{bottom:441.075000px;}
.y117{bottom:441.615000px;}
.yf5{bottom:443.055000px;}
.yb6{bottom:452.055000px;}
.yd8{bottom:454.215000px;}
.y16d{bottom:455.295000px;}
.y1b8{bottom:457.095000px;}
.y3a{bottom:457.455000px;}
.y22{bottom:458.355000px;}
.y80{bottom:459.795000px;}
.yf4{bottom:461.775000px;}
.y13e{bottom:465.915000px;}
.yb5{bottom:470.775000px;}
.y16c{bottom:474.015000px;}
.y39{bottom:474.735000px;}
.y1b7{bottom:475.635000px;}
.y21{bottom:477.435000px;}
.y114{bottom:477.795000px;}
.y7f{bottom:478.515000px;}
.yf3{bottom:480.495000px;}
.yd7{bottom:481.755000px;}
.y13d{bottom:484.635000px;}
.yb4{bottom:489.495000px;}
.y38{bottom:492.015000px;}
.y18e{bottom:492.735000px;}
.y1b6{bottom:493.815000px;}
.y20{bottom:496.875000px;}
.y7e{bottom:497.055000px;}
.yf2{bottom:499.215000px;}
.y16b{bottom:501.735000px;}
.y13c{bottom:503.355000px;}
.y37{bottom:509.475000px;}
.y112{bottom:513.075000px;}
.y7d{bottom:515.775000px;}
.y1b5{bottom:516.495000px;}
.yb3{bottom:517.035000px;}
.y1f{bottom:520.455000px;}
.y13b{bottom:522.075000px;}
.y18d{bottom:526.035000px;}
.y36{bottom:526.755000px;}
.yd6{bottom:528.195000px;}
.y7c{bottom:534.495000px;}
.y1b4{bottom:535.035000px;}
.yb2{bottom:535.755000px;}
.y16a{bottom:538.995000px;}
.y18c{bottom:544.755000px;}
.yf1{bottom:545.475000px;}
.yd5{bottom:546.915000px;}
.y13a{bottom:549.615000px;}
.y7b{bottom:553.215000px;}
.yb1{bottom:554.475000px;}
.y169{bottom:557.715000px;}
.y111{bottom:562.935000px;}
.y18b{bottom:563.475000px;}
.yf0{bottom:564.195000px;}
.yd4{bottom:565.635000px;}
.y139{bottom:568.335000px;}
.y7a{bottom:571.755000px;}
.yb0{bottom:573.195000px;}
.y1b3{bottom:576.075000px;}
.y18a{bottom:582.195000px;}
.yef{bottom:582.915000px;}
.y168{bottom:585.435000px;}
.y138{bottom:587.055000px;}
.y79{bottom:590.475000px;}
.y110{bottom:591.735000px;}
.yaf{bottom:591.915000px;}
.yd3{bottom:593.175000px;}
.y1b2{bottom:594.615000px;}
.yee{bottom:601.455000px;}
.y167{bottom:604.155000px;}
.y137{bottom:605.775000px;}
.y78{bottom:609.195000px;}
.y189{bottom:609.735000px;}
.y10f{bottom:610.455000px;}
.y1b1{bottom:612.795000px;}
.yae{bottom:619.455000px;}
.yed{bottom:620.175000px;}
.yd2{bottom:620.895000px;}
.y166{bottom:622.695000px;}
.y77{bottom:627.915000px;}
.y188{bottom:628.455000px;}
.y10e{bottom:629.175000px;}
.y136{bottom:634.035000px;}
.y1b0{bottom:635.475000px;}
.yad{bottom:638.175000px;}
.yd1{bottom:639.615000px;}
.y165{bottom:641.415000px;}
.y76{bottom:646.455000px;}
.y187{bottom:647.175000px;}
.yec{bottom:647.895000px;}
.y135{bottom:649.725000px;}
.y1af{bottom:654.045000px;}
.yac{bottom:656.925000px;}
.yd0{bottom:658.365000px;}
.y164{bottom:660.165000px;}
.y75{bottom:665.205000px;}
.y186{bottom:665.925000px;}
.y10d{bottom:666.645000px;}
.y134{bottom:668.265000px;}
.y1ae{bottom:672.225000px;}
.yeb{bottom:675.465000px;}
.yab{bottom:675.645000px;}
.ycf{bottom:676.905000px;}
.y74{bottom:683.925000px;}
.y185{bottom:684.645000px;}
.y10c{bottom:685.185000px;}
.y133{bottom:686.805000px;}
.y163{bottom:687.705000px;}
.yaa{bottom:694.185000px;}
.y1ad{bottom:694.905000px;}
.y73{bottom:702.645000px;}
.y184{bottom:703.185000px;}
.y10b{bottom:703.905000px;}
.yce{bottom:704.625000px;}
.y131{bottom:705.165000px;}
.y162{bottom:706.425000px;}
.ya9{bottom:712.905000px;}
.y1ac{bottom:713.445000px;}
.y72{bottom:721.185000px;}
.y183{bottom:721.905000px;}
.y10a{bottom:722.625000px;}
.y161{bottom:725.145000px;}
.y1ab{bottom:731.625000px;}
.ycd{bottom:732.345000px;}
.y71{bottom:739.905000px;}
.ya8{bottom:740.625000px;}
.y109{bottom:741.345000px;}
.y160{bottom:743.865000px;}
.y182{bottom:749.625000px;}
.y1aa{bottom:754.665000px;}
.y70{bottom:758.625000px;}
.y1b{bottom:758.805000px;}
.ya7{bottom:759.345000px;}
.ycc{bottom:759.885000px;}
.y15f{bottom:762.585000px;}
.y181{bottom:768.345000px;}
.y1a9{bottom:772.845000px;}
.ye7{bottom:775.185000px;}
.y12f{bottom:776.625000px;}
.y6f{bottom:777.345000px;}
.ya6{bottom:777.885000px;}
.ycb{bottom:778.605000px;}
.y180{bottom:786.885000px;}
.y15e{bottom:790.125000px;}
.y1a8{bottom:791.565000px;}
.y6e{bottom:795.885000px;}
.ya5{bottom:796.605000px;}
.yca{bottom:797.325000px;}
.y1a{bottom:802.005000px;}
.y12e{bottom:805.605000px;}
.y15d{bottom:808.845000px;}
.y1a7{bottom:810.645000px;}
.y6d{bottom:814.605000px;}
.ya4{bottom:815.325000px;}
.yc9{bottom:816.045000px;}
.y12d{bottom:824.325000px;}
.y15c{bottom:827.565000px;}
.y6c{bottom:833.325000px;}
.y1a6{bottom:833.865000px;}
.ya3{bottom:834.045000px;}
.y19{bottom:838.185000px;}
.y12c{bottom:843.045000px;}
.y108{bottom:843.585000px;}
.y15b{bottom:846.285000px;}
.yc8{bottom:846.825000px;}
.y18{bottom:851.145000px;}
.y6b{bottom:852.045000px;}
.y1a5{bottom:852.405000px;}
.ya2{bottom:852.585000px;}
.y12b{bottom:861.585000px;}
.y107{bottom:862.305000px;}
.y17{bottom:866.985000px;}
.y6a{bottom:870.585000px;}
.y15a{bottom:874.545000px;}
.y1a4{bottom:875.085000px;}
.ya1{bottom:880.305000px;}
.y106{bottom:881.025000px;}
.y69{bottom:889.305000px;}
.y157{bottom:890.205000px;}
.y16{bottom:893.085000px;}
.y1a3{bottom:893.625000px;}
.ya0{bottom:899.070000px;}
.y105{bottom:899.790000px;}
.y68{bottom:908.070000px;}
.y1a2{bottom:911.850000px;}
.yc7{bottom:914.370000px;}
.y15{bottom:915.810000px;}
.y9f{bottom:917.790000px;}
.y104{bottom:918.330000px;}
.y156{bottom:926.430000px;}
.y12a{bottom:926.610000px;}
.y67{bottom:926.790000px;}
.y1a1{bottom:934.890000px;}
.y9e{bottom:936.330000px;}
.y66{bottom:945.330000px;}
.y103{bottom:946.050000px;}
.y14{bottom:951.090000px;}
.y1a0{bottom:953.070000px;}
.y9d{bottom:955.050000px;}
.y154{bottom:962.610000px;}
.y65{bottom:964.050000px;}
.y102{bottom:964.770000px;}
.y17f{bottom:973.050000px;}
.yea{bottom:973.770000px;}
.y19f{bottom:975.750000px;}
.y64{bottom:982.770000px;}
.y101{bottom:983.490000px;}
.y9c{bottom:986.010000px;}
.y13{bottom:986.370000px;}
.y129{bottom:991.770000px;}
.ye9{bottom:992.490000px;}
.y19e{bottom:994.290000px;}
.y63{bottom:1001.490000px;}
.y128{bottom:1010.490000px;}
.y100{bottom:1011.030000px;}
.y19d{bottom:1012.290000px;}
.y12{bottom:1015.890000px;}
.y153{bottom:1016.610000px;}
.y9b{bottom:1019.310000px;}
.y62{bottom:1020.030000px;}
.y127{bottom:1029.030000px;}
.y19c{bottom:1030.470000px;}
.y10{bottom:1030.830000px;}
.y9{bottom:1036.050000px;}
.yb{bottom:1036.080000px;}
.y9a{bottom:1038.030000px;}
.y61{bottom:1038.750000px;}
.y126{bottom:1047.750000px;}
.y151{bottom:1052.790000px;}
.y99{bottom:1056.750000px;}
.y60{bottom:1057.470000px;}
.y19b{bottom:1060.710000px;}
.y125{bottom:1066.470000px;}
.y92{bottom:1072.770000px;}
.y98{bottom:1075.470000px;}
.y5f{bottom:1076.190000px;}
.y124{bottom:1094.010000px;}
.y97{bottom:1094.190000px;}
.y5e{bottom:1094.730000px;}
.y150{bottom:1102.470000px;}
.yff{bottom:1103.730000px;}
.y96{bottom:1112.730000px;}
.y5d{bottom:1113.450000px;}
.y95{bottom:1131.450000px;}
.y5c{bottom:1144.410000px;}
.y94{bottom:1150.200000px;}
.y5b{bottom:1166.400000px;}
.y5a{bottom:1170.540000px;}
.y57{bottom:1187.820000px;}
.y1{bottom:1192.680000px;}
.h9{height:4.320000px;}
.h10{height:5.220000px;}
.h11{height:12.832031px;}
.h32{height:17.640000px;}
.h30{height:17.676000px;}
.h7{height:17.820000px;}
.h5{height:17.903320px;}
.h28{height:18.738281px;}
.h31{height:21.060000px;}
.h26{height:21.960000px;}
.h4{height:25.380000px;}
.hd{height:25.664062px;}
.h20{height:27.000000px;}
.h1a{height:30.060000px;}
.h18{height:34.128281px;}
.h12{height:34.389844px;}
.h17{height:34.413398px;}
.h2e{height:34.560000px;}
.h2f{height:35.280000px;}
.h2d{height:35.460000px;}
.h34{height:35.496000px;}
.h15{height:42.602344px;}
.h23{height:42.631523px;}
.h27{height:43.472812px;}
.h25{height:44.820000px;}
.h36{height:45.199688px;}
.h1b{height:47.221875px;}
.h1e{height:47.254219px;}
.h1d{height:49.680000px;}
.h1f{height:51.035273px;}
.h6{height:51.363281px;}
.h33{height:53.100000px;}
.h3{height:53.709961px;}
.h8{height:54.000000px;}
.h35{height:54.109687px;}
.h22{height:55.825312px;}
.h29{height:55.980000px;}
.h2c{height:56.160000px;}
.h21{height:56.569219px;}
.hb{height:60.053906px;}
.he{height:60.156562px;}
.h37{height:63.019687px;}
.h19{height:65.884219px;}
.hf{height:68.266406px;}
.h16{height:69.562969px;}
.h2{height:73.722656px;}
.h24{height:75.456000px;}
.h13{height:76.992188px;}
.h14{height:77.094844px;}
.h2b{height:86.585445px;}
.hc{height:141.840000px;}
.ha{height:141.876000px;}
.h2a{height:211.680000px;}
.h1c{height:540.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:19.800000px;}
.wf{width:43.200000px;}
.we{width:58.860000px;}
.w5{width:117.000000px;}
.w14{width:127.656000px;}
.w11{width:132.156000px;}
.w9{width:149.040000px;}
.w8{width:204.915000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w10{width:265.890000px;}
.w13{width:287.130000px;}
.w15{width:307.470000px;}
.w12{width:324.210000px;}
.wb{width:361.110000px;}
.wc{width:361.155000px;}
.wa{width:578.310000px;}
.w6{width:606.060000px;}
.w7{width:606.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.100000px;}
.x2f{left:10.800000px;}
.x27{left:12.960000px;}
.x2e{left:14.220000px;}
.x20{left:16.380000px;}
.x21{left:23.580000px;}
.x32{left:30.600000px;}
.x23{left:35.820000px;}
.x24{left:37.080000px;}
.x29{left:40.860000px;}
.x28{left:42.840000px;}
.x31{left:45.000000px;}
.x25{left:48.420000px;}
.x2a{left:50.940000px;}
.xe{left:61.740000px;}
.x3{left:84.996000px;}
.x10{left:102.285000px;}
.x1a{left:104.795987px;}
.x6{left:111.060000px;}
.x2c{left:113.214000px;}
.x5{left:120.240000px;}
.x12{left:124.235987px;}
.x35{left:127.475987px;}
.x9{left:128.694000px;}
.x1c{left:143.855987px;}
.x11{left:157.169987px;}
.xd{left:159.345000px;}
.xa{left:201.960000px;}
.xc{left:229.755000px;}
.x17{left:234.030000px;}
.x2b{left:240.149987px;}
.x8{left:250.815000px;}
.x26{left:278.354987px;}
.xb{left:303.045000px;}
.x4{left:325.875000px;}
.x18{left:328.755000px;}
.x13{left:338.294987px;}
.x1e{left:339.734987px;}
.x1f{left:350.895000px;}
.x15{left:355.034987px;}
.x1d{left:358.634987px;}
.x1b{left:362.234987px;}
.x2d{left:372.135000px;}
.x19{left:388.334987px;}
.x33{left:389.594987px;}
.x34{left:396.614987px;}
.x14{left:446.504987px;}
.x22{left:483.045000px;}
.x30{left:499.785000px;}
.x1{left:561.164987px;}
.x7{left:566.565000px;}
.xf{left:603.285000px;}
.x2{left:808.019987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2b{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.704000pt;}
.ls28{letter-spacing:-0.565333pt;}
.ls2f{letter-spacing:-0.544000pt;}
.ls2a{letter-spacing:-0.466133pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls30{letter-spacing:-0.348267pt;}
.ls29{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.244267pt;}
.ls1b{letter-spacing:-0.211200pt;}
.ls14{letter-spacing:-0.206933pt;}
.ls9{letter-spacing:-0.197867pt;}
.ls2e{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.033280pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.008960pt;}
.ls17{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.020480pt;}
.ls19{letter-spacing:0.028160pt;}
.ls1d{letter-spacing:0.028800pt;}
.lsd{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.054400pt;}
.ls13{letter-spacing:0.056320pt;}
.ls25{letter-spacing:0.076800pt;}
.ls2d{letter-spacing:0.097067pt;}
.ls21{letter-spacing:0.097280pt;}
.ls22{letter-spacing:0.112640pt;}
.ls1c{letter-spacing:0.117867pt;}
.ls24{letter-spacing:0.132267pt;}
.ls4{letter-spacing:0.133120pt;}
.ls23{letter-spacing:0.173867pt;}
.ls27{letter-spacing:0.194560pt;}
.ls10{letter-spacing:0.211200pt;}
.ls11{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.268800pt;}
.ls2c{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.302080pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.324267pt;}
.lsb{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.597333pt;}
.ls7{letter-spacing:0.960000pt;}
.ls12{letter-spacing:12.497920pt;}
.ls20{letter-spacing:13.158400pt;}
.ls26{letter-spacing:79.825067pt;}
.ls16{letter-spacing:749.418667pt;}
.ws16{word-spacing:-56.320000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws4{word-spacing:-21.705600pt;}
.wse{word-spacing:-15.677440pt;}
.wsd{word-spacing:-15.662080pt;}
.ws3{word-spacing:-15.565013pt;}
.ws5{word-spacing:-15.014400pt;}
.ws1b{word-spacing:-14.633067pt;}
.ws1c{word-spacing:-14.535467pt;}
.ws1d{word-spacing:-14.458667pt;}
.ws21{word-spacing:-14.438400pt;}
.ws6{word-spacing:-14.425600pt;}
.ws19{word-spacing:-14.361600pt;}
.ws14{word-spacing:-14.142933pt;}
.ws18{word-spacing:-14.090133pt;}
.ws17{word-spacing:-13.796267pt;}
.ws10{word-spacing:-13.756800pt;}
.ws11{word-spacing:-13.663467pt;}
.ws13{word-spacing:-13.574400pt;}
.ws2{word-spacing:-13.554560pt;}
.ws0{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.529600pt;}
.ws15{word-spacing:-13.512320pt;}
.ws1{word-spacing:-13.347733pt;}
.ws12{word-spacing:-13.338667pt;}
.wsf{word-spacing:-13.334400pt;}
.wsb{word-spacing:-13.301333pt;}
.ws1f{word-spacing:-13.178880pt;}
.ws1e{word-spacing:-13.061013pt;}
.ws8{word-spacing:-12.974080pt;}
.ws9{word-spacing:-12.953600pt;}
.ws20{word-spacing:-12.830613pt;}
.ws7{word-spacing:-12.430080pt;}
.wsc{word-spacing:0.000000pt;}
._15{margin-left:-4.608000pt;}
._14{margin-left:-3.650560pt;}
._10{margin-left:-2.387968pt;}
._1{margin-left:-0.900096pt;}
._0{width:1.002240pt;}
._9{width:2.549760pt;}
._e{width:3.877760pt;}
._d{width:4.887040pt;}
._11{width:5.790080pt;}
._c{width:6.746240pt;}
._5{width:8.127360pt;}
._6{width:9.083520pt;}
._16{width:10.068480pt;}
._f{width:11.102080pt;}
._3{width:12.058240pt;}
._17{width:13.066624pt;}
._13{width:14.107819pt;}
._4{width:15.155840pt;}
._12{width:16.047232pt;}
._8{width:16.969600pt;}
._7{width:18.184960pt;}
._18{width:19.851520pt;}
._19{width:21.373440pt;}
._a{width:22.317440pt;}
._b{width:23.684480pt;}
._1b{width:25.108480pt;}
._1a{width:26.024960pt;}
._1c{width:38.917120pt;}
._2{width:79.442603pt;}
._20{width:80.406613pt;}
._1f{width:92.121771pt;}
._1e{width:93.075627pt;}
._1d{width:101.544960pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs10{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fsf{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs12{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs11{font-size:250.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.640000pt;}
.y11{bottom:0.960000pt;}
.y1d{bottom:1.760000pt;}
.y7{bottom:3.040000pt;}
.y93{bottom:3.200000pt;}
.ye8{bottom:3.360000pt;}
.y59{bottom:3.520000pt;}
.y56{bottom:3.680000pt;}
.y130{bottom:4.640000pt;}
.yf{bottom:4.960000pt;}
.y5{bottom:5.120000pt;}
.y58{bottom:7.200000pt;}
.y152{bottom:10.880000pt;}
.y113{bottom:11.040000pt;}
.y132{bottom:11.200000pt;}
.y159{bottom:11.240000pt;}
.y1c{bottom:12.800000pt;}
.y6{bottom:17.760000pt;}
.y115{bottom:18.080000pt;}
.y116{bottom:18.400000pt;}
.y118{bottom:18.720000pt;}
.y4{bottom:18.880000pt;}
.y158{bottom:18.920000pt;}
.y119{bottom:19.040000pt;}
.y55{bottom:20.506667pt;}
.ye{bottom:30.080000pt;}
.y155{bottom:34.560000pt;}
.y51{bottom:37.120000pt;}
.y54{bottom:45.146667pt;}
.y8{bottom:47.520000pt;}
.y3{bottom:48.640000pt;}
.y50{bottom:52.640000pt;}
.y53{bottom:54.746667pt;}
.y35{bottom:62.560000pt;}
.y4f{bottom:68.000000pt;}
.y2{bottom:71.360000pt;}
.y34{bottom:80.160000pt;}
.y4e{bottom:83.360000pt;}
.y199{bottom:95.040000pt;}
.y33{bottom:96.160000pt;}
.y17e{bottom:98.560000pt;}
.yd{bottom:98.720000pt;}
.yc6{bottom:99.040000pt;}
.y14f{bottom:100.000000pt;}
.y91{bottom:101.760000pt;}
.y32{bottom:106.720000pt;}
.y198{bottom:111.680000pt;}
.y4d{bottom:114.080000pt;}
.y17d{bottom:115.040000pt;}
.y14e{bottom:116.640000pt;}
.yc{bottom:118.400000pt;}
.yfe{bottom:120.800000pt;}
.y31{bottom:122.080000pt;}
.y52{bottom:126.880000pt;}
.y197{bottom:128.160000pt;}
.yc5{bottom:128.800000pt;}
.y4c{bottom:129.440000pt;}
.y123{bottom:130.720000pt;}
.y17c{bottom:131.680000pt;}
.y14d{bottom:133.120000pt;}
.ye6{bottom:134.080000pt;}
.y30{bottom:137.440000pt;}
.yfd{bottom:137.466667pt;}
.y90{bottom:143.066667pt;}
.y196{bottom:144.826667pt;}
.y4b{bottom:144.960000pt;}
.yc4{bottom:145.466667pt;}
.y122{bottom:147.386667pt;}
.y14c{bottom:149.786667pt;}
.y2f{bottom:152.800000pt;}
.yfc{bottom:154.106667pt;}
.y17b{bottom:156.346667pt;}
.y8f{bottom:159.706667pt;}
.y4a{bottom:160.320000pt;}
.y195{bottom:161.466667pt;}
.yc3{bottom:162.106667pt;}
.ye5{bottom:163.866667pt;}
.y14b{bottom:166.426667pt;}
.y2e{bottom:168.520000pt;}
.y17a{bottom:172.986667pt;}
.y49{bottom:175.720000pt;}
.y8e{bottom:176.186667pt;}
.y194{bottom:178.106667pt;}
.yfb{bottom:178.586667pt;}
.ye4{bottom:180.506667pt;}
.y2d{bottom:183.880000pt;}
.yc2{bottom:186.586667pt;}
.y179{bottom:189.466667pt;}
.y14a{bottom:190.906667pt;}
.y48{bottom:191.080000pt;}
.y8d{bottom:192.826667pt;}
.y1e{bottom:193.946667pt;}
.y193{bottom:194.586667pt;}
.yfa{bottom:195.226667pt;}
.ye3{bottom:196.986667pt;}
.y121{bottom:197.146667pt;}
.y2c{bottom:199.240000pt;}
.yc1{bottom:203.226667pt;}
.y178{bottom:206.106667pt;}
.y47{bottom:206.440000pt;}
.y149{bottom:207.546667pt;}
.y8c{bottom:209.466667pt;}
.y192{bottom:211.226667pt;}
.yf9{bottom:211.866667pt;}
.ye2{bottom:213.626667pt;}
.y120{bottom:213.786667pt;}
.y2b{bottom:214.600000pt;}
.yc0{bottom:219.866667pt;}
.y46{bottom:221.960000pt;}
.y177{bottom:222.746667pt;}
.y148{bottom:224.186667pt;}
.y8b{bottom:226.106667pt;}
.y191{bottom:227.866667pt;}
.yf8{bottom:228.506667pt;}
.y2a{bottom:230.120000pt;}
.ye1{bottom:230.266667pt;}
.ybf{bottom:236.506667pt;}
.y45{bottom:237.320000pt;}
.y11f{bottom:238.266667pt;}
.y147{bottom:240.826667pt;}
.y8a{bottom:242.586667pt;}
.y190{bottom:244.506667pt;}
.y176{bottom:247.226667pt;}
.y44{bottom:252.680000pt;}
.ybe{bottom:252.986667pt;}
.ye0{bottom:254.906667pt;}
.y146{bottom:257.466667pt;}
.y89{bottom:259.226667pt;}
.y18f{bottom:260.986667pt;}
.y175{bottom:263.866667pt;}
.y43{bottom:268.040000pt;}
.ydf{bottom:271.546667pt;}
.y88{bottom:275.866667pt;}
.ybd{bottom:277.626667pt;}
.y1bf{bottom:280.346667pt;}
.y174{bottom:280.506667pt;}
.y145{bottom:281.946667pt;}
.y42{bottom:283.400000pt;}
.y29{bottom:287.720000pt;}
.yde{bottom:288.026667pt;}
.y11e{bottom:288.186667pt;}
.y87{bottom:292.506667pt;}
.ybc{bottom:294.266667pt;}
.y173{bottom:297.146667pt;}
.y144{bottom:298.586667pt;}
.y41{bottom:298.920000pt;}
.y1be{bottom:300.666667pt;}
.y11d{bottom:304.666667pt;}
.y28{bottom:305.000000pt;}
.y86{bottom:308.986667pt;}
.ybb{bottom:310.906667pt;}
.ydd{bottom:312.666667pt;}
.y172{bottom:313.786667pt;}
.y40{bottom:314.280000pt;}
.y143{bottom:315.226667pt;}
.y1bd{bottom:317.146667pt;}
.y27{bottom:321.800000pt;}
.y85{bottom:325.626667pt;}
.yba{bottom:327.386667pt;}
.y3f{bottom:329.640000pt;}
.y11c{bottom:329.946667pt;}
.y171{bottom:330.266667pt;}
.y142{bottom:331.866667pt;}
.y1bc{bottom:333.306667pt;}
.ydc{bottom:337.306667pt;}
.y26{bottom:339.080000pt;}
.y84{bottom:342.266667pt;}
.y11b{bottom:343.866667pt;}
.yb9{bottom:344.026667pt;}
.y3e{bottom:345.000000pt;}
.y170{bottom:346.906667pt;}
.y1bb{bottom:353.786667pt;}
.ydb{bottom:353.946667pt;}
.y25{bottom:356.040000pt;}
.y141{bottom:356.386667pt;}
.y83{bottom:358.946667pt;}
.y3d{bottom:360.360000pt;}
.y11a{bottom:360.386667pt;}
.yf7{bottom:360.706667pt;}
.yb8{bottom:368.706667pt;}
.y1ba{bottom:369.986667pt;}
.yda{bottom:370.466667pt;}
.y16f{bottom:371.586667pt;}
.y140{bottom:373.026667pt;}
.y24{bottom:373.320000pt;}
.y19a{bottom:374.306667pt;}
.y82{bottom:375.426667pt;}
.y3c{bottom:375.880000pt;}
.yf6{bottom:377.346667pt;}
.yb7{bottom:385.346667pt;}
.y1b9{bottom:386.146667pt;}
.yd9{bottom:387.106667pt;}
.y16e{bottom:388.226667pt;}
.y13f{bottom:389.666667pt;}
.y23{bottom:390.146667pt;}
.y3b{bottom:391.266667pt;}
.y81{bottom:392.066667pt;}
.y117{bottom:392.546667pt;}
.yf5{bottom:393.826667pt;}
.yb6{bottom:401.826667pt;}
.yd8{bottom:403.746667pt;}
.y16d{bottom:404.706667pt;}
.y1b8{bottom:406.306667pt;}
.y3a{bottom:406.626667pt;}
.y22{bottom:407.426667pt;}
.y80{bottom:408.706667pt;}
.yf4{bottom:410.466667pt;}
.y13e{bottom:414.146667pt;}
.yb5{bottom:418.466667pt;}
.y16c{bottom:421.346667pt;}
.y39{bottom:421.986667pt;}
.y1b7{bottom:422.786667pt;}
.y21{bottom:424.386667pt;}
.y114{bottom:424.706667pt;}
.y7f{bottom:425.346667pt;}
.yf3{bottom:427.106667pt;}
.yd7{bottom:428.226667pt;}
.y13d{bottom:430.786667pt;}
.yb4{bottom:435.106667pt;}
.y38{bottom:437.346667pt;}
.y18e{bottom:437.986667pt;}
.y1b6{bottom:438.946667pt;}
.y20{bottom:441.666667pt;}
.y7e{bottom:441.826667pt;}
.yf2{bottom:443.746667pt;}
.y16b{bottom:445.986667pt;}
.y13c{bottom:447.426667pt;}
.y37{bottom:452.866667pt;}
.y112{bottom:456.066667pt;}
.y7d{bottom:458.466667pt;}
.y1b5{bottom:459.106667pt;}
.yb3{bottom:459.586667pt;}
.y1f{bottom:462.626667pt;}
.y13b{bottom:464.066667pt;}
.y18d{bottom:467.586667pt;}
.y36{bottom:468.226667pt;}
.yd6{bottom:469.506667pt;}
.y7c{bottom:475.106667pt;}
.y1b4{bottom:475.586667pt;}
.yb2{bottom:476.226667pt;}
.y16a{bottom:479.106667pt;}
.y18c{bottom:484.226667pt;}
.yf1{bottom:484.866667pt;}
.yd5{bottom:486.146667pt;}
.y13a{bottom:488.546667pt;}
.y7b{bottom:491.746667pt;}
.yb1{bottom:492.866667pt;}
.y169{bottom:495.746667pt;}
.y111{bottom:500.386667pt;}
.y18b{bottom:500.866667pt;}
.yf0{bottom:501.506667pt;}
.yd4{bottom:502.786667pt;}
.y139{bottom:505.186667pt;}
.y7a{bottom:508.226667pt;}
.yb0{bottom:509.506667pt;}
.y1b3{bottom:512.066667pt;}
.y18a{bottom:517.506667pt;}
.yef{bottom:518.146667pt;}
.y168{bottom:520.386667pt;}
.y138{bottom:521.826667pt;}
.y79{bottom:524.866667pt;}
.y110{bottom:525.986667pt;}
.yaf{bottom:526.146667pt;}
.yd3{bottom:527.266667pt;}
.y1b2{bottom:528.546667pt;}
.yee{bottom:534.626667pt;}
.y167{bottom:537.026667pt;}
.y137{bottom:538.466667pt;}
.y78{bottom:541.506667pt;}
.y189{bottom:541.986667pt;}
.y10f{bottom:542.626667pt;}
.y1b1{bottom:544.706667pt;}
.yae{bottom:550.626667pt;}
.yed{bottom:551.266667pt;}
.yd2{bottom:551.906667pt;}
.y166{bottom:553.506667pt;}
.y77{bottom:558.146667pt;}
.y188{bottom:558.626667pt;}
.y10e{bottom:559.266667pt;}
.y136{bottom:563.586667pt;}
.y1b0{bottom:564.866667pt;}
.yad{bottom:567.266667pt;}
.yd1{bottom:568.546667pt;}
.y165{bottom:570.146667pt;}
.y76{bottom:574.626667pt;}
.y187{bottom:575.266667pt;}
.yec{bottom:575.906667pt;}
.y135{bottom:577.533333pt;}
.y1af{bottom:581.373333pt;}
.yac{bottom:583.933333pt;}
.yd0{bottom:585.213333pt;}
.y164{bottom:586.813333pt;}
.y75{bottom:591.293333pt;}
.y186{bottom:591.933333pt;}
.y10d{bottom:592.573333pt;}
.y134{bottom:594.013333pt;}
.y1ae{bottom:597.533333pt;}
.yeb{bottom:600.413333pt;}
.yab{bottom:600.573333pt;}
.ycf{bottom:601.693333pt;}
.y74{bottom:607.933333pt;}
.y185{bottom:608.573333pt;}
.y10c{bottom:609.053333pt;}
.y133{bottom:610.493333pt;}
.y163{bottom:611.293333pt;}
.yaa{bottom:617.053333pt;}
.y1ad{bottom:617.693333pt;}
.y73{bottom:624.573333pt;}
.y184{bottom:625.053333pt;}
.y10b{bottom:625.693333pt;}
.yce{bottom:626.333333pt;}
.y131{bottom:626.813333pt;}
.y162{bottom:627.933333pt;}
.ya9{bottom:633.693333pt;}
.y1ac{bottom:634.173333pt;}
.y72{bottom:641.053333pt;}
.y183{bottom:641.693333pt;}
.y10a{bottom:642.333333pt;}
.y161{bottom:644.573333pt;}
.y1ab{bottom:650.333333pt;}
.ycd{bottom:650.973333pt;}
.y71{bottom:657.693333pt;}
.ya8{bottom:658.333333pt;}
.y109{bottom:658.973333pt;}
.y160{bottom:661.213333pt;}
.y182{bottom:666.333333pt;}
.y1aa{bottom:670.813333pt;}
.y70{bottom:674.333333pt;}
.y1b{bottom:674.493333pt;}
.ya7{bottom:674.973333pt;}
.ycc{bottom:675.453333pt;}
.y15f{bottom:677.853333pt;}
.y181{bottom:682.973333pt;}
.y1a9{bottom:686.973333pt;}
.ye7{bottom:689.053333pt;}
.y12f{bottom:690.333333pt;}
.y6f{bottom:690.973333pt;}
.ya6{bottom:691.453333pt;}
.ycb{bottom:692.093333pt;}
.y180{bottom:699.453333pt;}
.y15e{bottom:702.333333pt;}
.y1a8{bottom:703.613333pt;}
.y6e{bottom:707.453333pt;}
.ya5{bottom:708.093333pt;}
.yca{bottom:708.733333pt;}
.y1a{bottom:712.893333pt;}
.y12e{bottom:716.093333pt;}
.y15d{bottom:718.973333pt;}
.y1a7{bottom:720.573333pt;}
.y6d{bottom:724.093333pt;}
.ya4{bottom:724.733333pt;}
.yc9{bottom:725.373333pt;}
.y12d{bottom:732.733333pt;}
.y15c{bottom:735.613333pt;}
.y6c{bottom:740.733333pt;}
.y1a6{bottom:741.213333pt;}
.ya3{bottom:741.373333pt;}
.y19{bottom:745.053333pt;}
.y12c{bottom:749.373333pt;}
.y108{bottom:749.853333pt;}
.y15b{bottom:752.253333pt;}
.yc8{bottom:752.733333pt;}
.y18{bottom:756.573333pt;}
.y6b{bottom:757.373333pt;}
.y1a5{bottom:757.693333pt;}
.ya2{bottom:757.853333pt;}
.y12b{bottom:765.853333pt;}
.y107{bottom:766.493333pt;}
.y17{bottom:770.653333pt;}
.y6a{bottom:773.853333pt;}
.y15a{bottom:777.373333pt;}
.y1a4{bottom:777.853333pt;}
.ya1{bottom:782.493333pt;}
.y106{bottom:783.133333pt;}
.y69{bottom:790.493333pt;}
.y157{bottom:791.293333pt;}
.y16{bottom:793.853333pt;}
.y1a3{bottom:794.333333pt;}
.ya0{bottom:799.173333pt;}
.y105{bottom:799.813333pt;}
.y68{bottom:807.173333pt;}
.y1a2{bottom:810.533333pt;}
.yc7{bottom:812.773333pt;}
.y15{bottom:814.053333pt;}
.y9f{bottom:815.813333pt;}
.y104{bottom:816.293333pt;}
.y156{bottom:823.493333pt;}
.y12a{bottom:823.653333pt;}
.y67{bottom:823.813333pt;}
.y1a1{bottom:831.013333pt;}
.y9e{bottom:832.293333pt;}
.y66{bottom:840.293333pt;}
.y103{bottom:840.933333pt;}
.y14{bottom:845.413333pt;}
.y1a0{bottom:847.173333pt;}
.y9d{bottom:848.933333pt;}
.y154{bottom:855.653333pt;}
.y65{bottom:856.933333pt;}
.y102{bottom:857.573333pt;}
.y17f{bottom:864.933333pt;}
.yea{bottom:865.573333pt;}
.y19f{bottom:867.333333pt;}
.y64{bottom:873.573333pt;}
.y101{bottom:874.213333pt;}
.y9c{bottom:876.453333pt;}
.y13{bottom:876.773333pt;}
.y129{bottom:881.573333pt;}
.ye9{bottom:882.213333pt;}
.y19e{bottom:883.813333pt;}
.y63{bottom:890.213333pt;}
.y128{bottom:898.213333pt;}
.y100{bottom:898.693333pt;}
.y19d{bottom:899.813333pt;}
.y12{bottom:903.013333pt;}
.y153{bottom:903.653333pt;}
.y9b{bottom:906.053333pt;}
.y62{bottom:906.693333pt;}
.y127{bottom:914.693333pt;}
.y19c{bottom:915.973333pt;}
.y10{bottom:916.293333pt;}
.y9{bottom:920.933333pt;}
.yb{bottom:920.960000pt;}
.y9a{bottom:922.693333pt;}
.y61{bottom:923.333333pt;}
.y126{bottom:931.333333pt;}
.y151{bottom:935.813333pt;}
.y99{bottom:939.333333pt;}
.y60{bottom:939.973333pt;}
.y19b{bottom:942.853333pt;}
.y125{bottom:947.973333pt;}
.y92{bottom:953.573333pt;}
.y98{bottom:955.973333pt;}
.y5f{bottom:956.613333pt;}
.y124{bottom:972.453333pt;}
.y97{bottom:972.613333pt;}
.y5e{bottom:973.093333pt;}
.y150{bottom:979.973333pt;}
.yff{bottom:981.093333pt;}
.y96{bottom:989.093333pt;}
.y5d{bottom:989.733333pt;}
.y95{bottom:1005.733333pt;}
.y5c{bottom:1017.253333pt;}
.y94{bottom:1022.400000pt;}
.y5b{bottom:1036.800000pt;}
.y5a{bottom:1040.480000pt;}
.y57{bottom:1055.840000pt;}
.y1{bottom:1060.160000pt;}
.h9{height:3.840000pt;}
.h10{height:4.640000pt;}
.h11{height:11.406250pt;}
.h32{height:15.680000pt;}
.h30{height:15.712000pt;}
.h7{height:15.840000pt;}
.h5{height:15.914062pt;}
.h28{height:16.656250pt;}
.h31{height:18.720000pt;}
.h26{height:19.520000pt;}
.h4{height:22.560000pt;}
.hd{height:22.812500pt;}
.h20{height:24.000000pt;}
.h1a{height:26.720000pt;}
.h18{height:30.336250pt;}
.h12{height:30.568750pt;}
.h17{height:30.589687pt;}
.h2e{height:30.720000pt;}
.h2f{height:31.360000pt;}
.h2d{height:31.520000pt;}
.h34{height:31.552000pt;}
.h15{height:37.868750pt;}
.h23{height:37.894687pt;}
.h27{height:38.642500pt;}
.h25{height:39.840000pt;}
.h36{height:40.177500pt;}
.h1b{height:41.975000pt;}
.h1e{height:42.003750pt;}
.h1d{height:44.160000pt;}
.h1f{height:45.364688pt;}
.h6{height:45.656250pt;}
.h33{height:47.200000pt;}
.h3{height:47.742188pt;}
.h8{height:48.000000pt;}
.h35{height:48.097500pt;}
.h22{height:49.622500pt;}
.h29{height:49.760000pt;}
.h2c{height:49.920000pt;}
.h21{height:50.283750pt;}
.hb{height:53.381250pt;}
.he{height:53.472500pt;}
.h37{height:56.017500pt;}
.h19{height:58.563750pt;}
.hf{height:60.681250pt;}
.h16{height:61.833750pt;}
.h2{height:65.531250pt;}
.h24{height:67.072000pt;}
.h13{height:68.437500pt;}
.h14{height:68.528750pt;}
.h2b{height:76.964840pt;}
.hc{height:126.080000pt;}
.ha{height:126.112000pt;}
.h2a{height:188.160000pt;}
.h1c{height:480.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:17.600000pt;}
.wf{width:38.400000pt;}
.we{width:52.320000pt;}
.w5{width:104.000000pt;}
.w14{width:113.472000pt;}
.w11{width:117.472000pt;}
.w9{width:132.480000pt;}
.w8{width:182.146667pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w10{width:236.346667pt;}
.w13{width:255.226667pt;}
.w15{width:273.306667pt;}
.w12{width:288.186667pt;}
.wb{width:320.986667pt;}
.wc{width:321.026667pt;}
.wa{width:514.053333pt;}
.w6{width:538.720000pt;}
.w7{width:538.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.200000pt;}
.x2f{left:9.600000pt;}
.x27{left:11.520000pt;}
.x2e{left:12.640000pt;}
.x20{left:14.560000pt;}
.x21{left:20.960000pt;}
.x32{left:27.200000pt;}
.x23{left:31.840000pt;}
.x24{left:32.960000pt;}
.x29{left:36.320000pt;}
.x28{left:38.080000pt;}
.x31{left:40.000000pt;}
.x25{left:43.040000pt;}
.x2a{left:45.280000pt;}
.xe{left:54.880000pt;}
.x3{left:75.552000pt;}
.x10{left:90.920000pt;}
.x1a{left:93.151988pt;}
.x6{left:98.720000pt;}
.x2c{left:100.634667pt;}
.x5{left:106.880000pt;}
.x12{left:110.431988pt;}
.x35{left:113.311988pt;}
.x9{left:114.394667pt;}
.x1c{left:127.871988pt;}
.x11{left:139.706655pt;}
.xd{left:141.640000pt;}
.xa{left:179.520000pt;}
.xc{left:204.226667pt;}
.x17{left:208.026667pt;}
.x2b{left:213.466655pt;}
.x8{left:222.946667pt;}
.x26{left:247.426655pt;}
.xb{left:269.373333pt;}
.x4{left:289.666667pt;}
.x18{left:292.226667pt;}
.x13{left:300.706655pt;}
.x1e{left:301.986655pt;}
.x1f{left:311.906667pt;}
.x15{left:315.586655pt;}
.x1d{left:318.786655pt;}
.x1b{left:321.986655pt;}
.x2d{left:330.786667pt;}
.x19{left:345.186655pt;}
.x33{left:346.306655pt;}
.x34{left:352.546655pt;}
.x14{left:396.893322pt;}
.x22{left:429.373333pt;}
.x30{left:444.253333pt;}
.x1{left:498.813322pt;}
.x7{left:503.613333pt;}
.xf{left:536.253333pt;}
.x2{left:718.239988pt;}
}




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