
    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_7528afb8a7973195c578f2d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a0a12c64993150558da6c840.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e6b7331217f83231989fb3d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a7da5294ab1c4dffeba9a472.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_91151cb873c4828fd26317f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_9788d2694f5b14d64cfb759e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.909180;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:-21.060000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v9{vertical-align:9.360000px;}
.v5{vertical-align:12.240000px;}
.v8{vertical-align:15.120000px;}
.v7{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls27{letter-spacing:-0.960000px;}
.ls4b{letter-spacing:-0.579600px;}
.ls4c{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.303000px;}
.ls3e{letter-spacing:-0.302400px;}
.ls34{letter-spacing:-0.272400px;}
.ls37{letter-spacing:-0.253200px;}
.ls29{letter-spacing:-0.240600px;}
.ls25{letter-spacing:-0.223200px;}
.ls26{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls36{letter-spacing:-0.128400px;}
.ls11{letter-spacing:-0.107400px;}
.lse{letter-spacing:-0.078600px;}
.ls39{letter-spacing:-0.069600px;}
.ls28{letter-spacing:-0.064800px;}
.ls9{letter-spacing:-0.058320px;}
.ls12{letter-spacing:-0.041040px;}
.ls40{letter-spacing:-0.032400px;}
.ls2{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.038880px;}
.ls1f{letter-spacing:0.041760px;}
.ls35{letter-spacing:0.075000px;}
.ls3b{letter-spacing:0.079200px;}
.ls1a{letter-spacing:0.103680px;}
.ls1d{letter-spacing:0.106560px;}
.ls3c{letter-spacing:0.115200px;}
.ls2a{letter-spacing:0.135600px;}
.lsf{letter-spacing:0.140400px;}
.ls2c{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.174000px;}
.ls19{letter-spacing:0.174240px;}
.ls3a{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.195000px;}
.ls2f{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.209520px;}
.ls2b{letter-spacing:0.223200px;}
.lsd{letter-spacing:0.306000px;}
.ls18{letter-spacing:0.383040px;}
.ls8{letter-spacing:0.393600px;}
.ls46{letter-spacing:0.399600px;}
.ls3d{letter-spacing:0.447600px;}
.ls38{letter-spacing:0.447840px;}
.ls10{letter-spacing:0.479520px;}
.ls1{letter-spacing:0.623520px;}
.ls32{letter-spacing:0.655200px;}
.ls48{letter-spacing:0.786000px;}
.ls3f{letter-spacing:0.858000px;}
.ls20{letter-spacing:0.894240px;}
.ls31{letter-spacing:1.906560px;}
.ls17{letter-spacing:2.309760px;}
.ls1e{letter-spacing:2.391840px;}
.ls2e{letter-spacing:2.751840px;}
.ls22{letter-spacing:3.029760px;}
.ls24{letter-spacing:4.494000px;}
.ls23{letter-spacing:5.190240px;}
.ls43{letter-spacing:9.470160px;}
.ls1c{letter-spacing:10.190160px;}
.ls4a{letter-spacing:12.186720px;}
.ls42{letter-spacing:12.389760px;}
.ls15{letter-spacing:12.959280px;}
.ls30{letter-spacing:13.109760px;}
.ls21{letter-spacing:13.655280px;}
.ls41{letter-spacing:13.679280px;}
.ls47{letter-spacing:14.346720px;}
.ls14{letter-spacing:16.071840px;}
.ls13{letter-spacing:18.951840px;}
.ls1b{letter-spacing:19.671840px;}
.ls49{letter-spacing:42.570720px;}
.lsb{letter-spacing:46.026720px;}
.ls2d{letter-spacing:55.362720px;}
.lsa{letter-spacing:64.170720px;}
.ls16{letter-spacing:78.590160px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws20{word-spacing:-14.363760px;}
.ws7{word-spacing:-13.899360px;}
.wsa{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.646160px;}
.ws18{word-spacing:-13.641360px;}
.ws19{word-spacing:-13.580760px;}
.ws6{word-spacing:-13.505760px;}
.ws21{word-spacing:-13.473360px;}
.wsf{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.ws1e{word-spacing:-13.436160px;}
.wse{word-spacing:-13.398360px;}
.ws1a{word-spacing:-13.345200px;}
.ws24{word-spacing:-13.342200px;}
.ws1f{word-spacing:-13.265160px;}
.ws23{word-spacing:-13.160160px;}
.ws10{word-spacing:-13.147200px;}
.ws15{word-spacing:-12.924000px;}
.ws5{word-spacing:-9.437760px;}
.ws17{word-spacing:-9.187200px;}
.ws1c{word-spacing:-9.058800px;}
.ws1d{word-spacing:-8.934000px;}
.wsd{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:4.276080px;}
.ws13{word-spacing:6.233760px;}
.ws1b{word-spacing:6.929760px;}
.ws12{word-spacing:6.953760px;}
.ws22{word-spacing:9.833760px;}
.ws16{word-spacing:119.249760px;}
.ws14{word-spacing:305.213760px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-190.074240px;}
._24{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._23{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._22{margin-left:-109.621680px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-31.530240px;}
._5f{margin-left:-7.532880px;}
._26{margin-left:-5.127120px;}
._25{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.133040px;}
._28{width:2.914560px;}
._2c{width:4.062960px;}
._2a{width:5.796720px;}
._2b{width:7.179600px;}
._29{width:8.426160px;}
._2f{width:9.561600px;}
._58{width:10.936080px;}
._2d{width:12.312960px;}
._5c{width:13.789440px;}
._2e{width:14.870880px;}
._30{width:16.257120px;}
._31{width:17.363520px;}
._3f{width:18.972960px;}
._3e{width:20.258640px;}
._32{width:21.394080px;}
._33{width:22.474560px;}
._46{width:24.561360px;}
._38{width:25.995600px;}
._51{width:27.432240px;}
._50{width:29.640960px;}
._47{width:32.449680px;}
._43{width:35.198640px;}
._4d{width:37.230480px;}
._53{width:38.903760px;}
._48{width:40.278240px;}
._56{width:41.353920px;}
._3d{width:43.266240px;}
._34{width:46.433520px;}
._3c{width:50.317920px;}
._5a{width:55.278000px;}
._5b{width:56.358480px;}
._5d{width:65.915280px;}
._4c{width:71.594880px;}
._49{width:72.668160px;}
._3a{width:81.213840px;}
._52{width:82.349280px;}
._4b{width:84.981120px;}
._54{width:86.114160px;}
._35{width:95.317200px;}
._39{width:96.452640px;}
._36{width:116.292960px;}
._3b{width:128.127840px;}
._41{width:140.436000px;}
._55{width:141.690960px;}
._44{width:147.786480px;}
._57{width:151.312320px;}
._4e{width:161.411760px;}
._40{width:164.997360px;}
._4f{width:168.343920px;}
._42{width:171.451440px;}
._59{width:180.270240px;}
._5e{width:202.638240px;}
._4a{width:209.638080px;}
._37{width:222.008400px;}
._45{width:230.016240px;}
._60{width:400.763520px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y71{bottom:6.660000px;}
.y88{bottom:6.690000px;}
.y135{bottom:6.705000px;}
.y10a{bottom:10.260000px;}
.y10f{bottom:10.470000px;}
.y106{bottom:13.860000px;}
.y86{bottom:17.100000px;}
.y8a{bottom:17.130000px;}
.y72{bottom:17.280000px;}
.y10d{bottom:20.340000px;}
.y70{bottom:27.720000px;}
.y75{bottom:27.750000px;}
.y92{bottom:27.765000px;}
.y109{bottom:31.320000px;}
.y82{bottom:38.160000px;}
.y89{bottom:38.190000px;}
.y90{bottom:38.205000px;}
.y7c{bottom:38.340000px;}
.y76{bottom:38.370000px;}
.y79{bottom:48.780000px;}
.y74{bottom:48.810000px;}
.y91{bottom:48.825000px;}
.y108{bottom:52.380000px;}
.y84{bottom:59.220000px;}
.y7b{bottom:59.400000px;}
.y6{bottom:61.380000px;}
.y78{bottom:69.840000px;}
.y77{bottom:69.870000px;}
.y85{bottom:80.280000px;}
.y7a{bottom:80.460000px;}
.y171{bottom:89.640000px;}
.y7e{bottom:90.900000px;}
.y8b{bottom:91.260000px;}
.y189{bottom:94.860000px;}
.y63{bottom:95.580000px;}
.y18b{bottom:100.440000px;}
.y7f{bottom:101.520000px;}
.y104{bottom:102.240000px;}
.yb3{bottom:102.420000px;}
.y30{bottom:103.860000px;}
.ydd{bottom:110.160000px;}
.y7d{bottom:111.960000px;}
.y129{bottom:114.660000px;}
.y188{bottom:115.920000px;}
.y62{bottom:116.640000px;}
.y170{bottom:119.700000px;}
.y156{bottom:122.580000px;}
.y103{bottom:123.300000px;}
.yb2{bottom:123.480000px;}
.y2f{bottom:124.920000px;}
.ydc{bottom:131.220000px;}
.y187{bottom:136.980000px;}
.y61{bottom:137.700000px;}
.y16f{bottom:140.760000px;}
.y128{bottom:143.100000px;}
.y155{bottom:143.640000px;}
.y102{bottom:144.360000px;}
.yb1{bottom:144.540000px;}
.y2e{bottom:145.980000px;}
.ydb{bottom:152.280000px;}
.y186{bottom:158.040000px;}
.y60{bottom:158.760000px;}
.y16e{bottom:161.820000px;}
.y127{bottom:164.160000px;}
.y154{bottom:164.700000px;}
.y101{bottom:165.420000px;}
.yb0{bottom:165.600000px;}
.y2d{bottom:167.040000px;}
.yda{bottom:173.340000px;}
.y185{bottom:179.100000px;}
.y5f{bottom:179.820000px;}
.y16d{bottom:182.880000px;}
.y126{bottom:185.220000px;}
.y153{bottom:185.760000px;}
.y100{bottom:186.480000px;}
.yaf{bottom:186.660000px;}
.y2c{bottom:188.100000px;}
.yd9{bottom:194.400000px;}
.y87{bottom:197.280000px;}
.y184{bottom:200.160000px;}
.y5e{bottom:200.880000px;}
.yff{bottom:201.600000px;}
.y16c{bottom:203.970000px;}
.y125{bottom:206.310000px;}
.y152{bottom:206.850000px;}
.yae{bottom:207.750000px;}
.y2b{bottom:209.190000px;}
.yd8{bottom:215.490000px;}
.y183{bottom:221.250000px;}
.y5d{bottom:221.970000px;}
.y151{bottom:222.150000px;}
.yfe{bottom:223.410000px;}
.y16b{bottom:225.030000px;}
.y124{bottom:227.370000px;}
.yad{bottom:228.810000px;}
.y2a{bottom:230.250000px;}
.yd7{bottom:236.550000px;}
.y182{bottom:242.310000px;}
.y5c{bottom:243.030000px;}
.y150{bottom:243.930000px;}
.yfd{bottom:245.190000px;}
.y16a{bottom:246.090000px;}
.y123{bottom:248.430000px;}
.y29{bottom:251.310000px;}
.yd6{bottom:257.610000px;}
.yac{bottom:258.870000px;}
.y83{bottom:261.210000px;}
.y181{bottom:263.370000px;}
.y5b{bottom:264.090000px;}
.y14f{bottom:265.710000px;}
.yfc{bottom:267.150000px;}
.y122{bottom:269.490000px;}
.y28{bottom:272.370000px;}
.yab{bottom:279.930000px;}
.y180{bottom:284.430000px;}
.y5a{bottom:285.150000px;}
.yd5{bottom:287.490000px;}
.y169{bottom:288.210000px;}
.yfb{bottom:288.930000px;}
.y121{bottom:290.550000px;}
.y27{bottom:293.430000px;}
.yaa{bottom:300.990000px;}
.y17f{bottom:305.490000px;}
.yd4{bottom:308.550000px;}
.y14e{bottom:309.270000px;}
.yfa{bottom:310.710000px;}
.y120{bottom:311.610000px;}
.y18a{bottom:314.490000px;}
.y59{bottom:315.210000px;}
.ya9{bottom:322.050000px;}
.y26{bottom:323.490000px;}
.y168{bottom:330.330000px;}
.y14d{bottom:331.050000px;}
.y11f{bottom:332.670000px;}
.y17e{bottom:335.550000px;}
.y58{bottom:336.090000px;}
.yd3{bottom:338.610000px;}
.ya8{bottom:343.110000px;}
.y25{bottom:344.550000px;}
.y167{bottom:351.390000px;}
.y11e{bottom:353.730000px;}
.y17d{bottom:356.610000px;}
.y57{bottom:357.150000px;}
.y14c{bottom:359.490000px;}
.yd2{bottom:359.670000px;}
.yf9{bottom:360.210000px;}
.y24{bottom:365.610000px;}
.y81{bottom:367.230000px;}
.y166{bottom:372.450000px;}
.ya7{bottom:373.170000px;}
.y11d{bottom:374.790000px;}
.y17c{bottom:377.670000px;}
.y56{bottom:378.210000px;}
.y14b{bottom:380.550000px;}
.yd1{bottom:380.730000px;}
.yf8{bottom:381.270000px;}
.y23{bottom:386.670000px;}
.y165{bottom:393.510000px;}
.ya6{bottom:394.230000px;}
.y11c{bottom:395.850000px;}
.y17b{bottom:398.730000px;}
.y55{bottom:399.270000px;}
.y14a{bottom:401.610000px;}
.yd0{bottom:401.790000px;}
.yf7{bottom:402.330000px;}
.y22{bottom:407.730000px;}
.y164{bottom:414.570000px;}
.ya5{bottom:415.290000px;}
.y11b{bottom:416.910000px;}
.y17a{bottom:419.790000px;}
.y54{bottom:420.510000px;}
.y149{bottom:422.670000px;}
.ycf{bottom:422.850000px;}
.yf6{bottom:423.390000px;}
.y21{bottom:428.790000px;}
.y163{bottom:435.630000px;}
.ya4{bottom:436.350000px;}
.y11a{bottom:438.015000px;}
.y179{bottom:440.895000px;}
.y53{bottom:442.335000px;}
.y148{bottom:443.775000px;}
.yce{bottom:443.955000px;}
.yf5{bottom:444.495000px;}
.y20{bottom:449.895000px;}
.y80{bottom:452.235000px;}
.y162{bottom:456.735000px;}
.ya3{bottom:457.455000px;}
.y119{bottom:459.075000px;}
.y178{bottom:461.955000px;}
.y52{bottom:463.395000px;}
.y147{bottom:464.835000px;}
.ycd{bottom:465.015000px;}
.yf4{bottom:465.555000px;}
.y1f{bottom:470.955000px;}
.y161{bottom:471.855000px;}
.ya2{bottom:478.515000px;}
.y118{bottom:480.135000px;}
.y177{bottom:483.015000px;}
.y51{bottom:485.355000px;}
.y146{bottom:485.895000px;}
.yf3{bottom:486.615000px;}
.y1e{bottom:492.015000px;}
.y160{bottom:493.635000px;}
.ycc{bottom:495.075000px;}
.ya1{bottom:499.575000px;}
.y117{bottom:501.195000px;}
.y176{bottom:504.075000px;}
.y145{bottom:506.955000px;}
.y50{bottom:507.135000px;}
.yf2{bottom:507.675000px;}
.y1d{bottom:513.075000px;}
.y15f{bottom:515.415000px;}
.ycb{bottom:516.135000px;}
.ya0{bottom:520.635000px;}
.y116{bottom:522.255000px;}
.y175{bottom:525.135000px;}
.y144{bottom:528.015000px;}
.yf1{bottom:528.735000px;}
.y1c{bottom:534.135000px;}
.y4f{bottom:537.195000px;}
.y9f{bottom:541.695000px;}
.y115{bottom:543.315000px;}
.y174{bottom:546.195000px;}
.y143{bottom:549.075000px;}
.yf0{bottom:549.795000px;}
.y1b{bottom:555.195000px;}
.y4e{bottom:558.255000px;}
.y9e{bottom:562.755000px;}
.y114{bottom:564.375000px;}
.y173{bottom:567.255000px;}
.y142{bottom:570.135000px;}
.yef{bottom:570.855000px;}
.y1a{bottom:576.255000px;}
.y4d{bottom:579.315000px;}
.y15e{bottom:580.035000px;}
.y9d{bottom:583.815000px;}
.y113{bottom:585.435000px;}
.yca{bottom:588.315000px;}
.y141{bottom:591.195000px;}
.yee{bottom:591.915000px;}
.y19{bottom:599.655000px;}
.y4c{bottom:600.375000px;}
.y9c{bottom:604.875000px;}
.y112{bottom:606.495000px;}
.yc9{bottom:609.375000px;}
.y140{bottom:612.255000px;}
.yed{bottom:612.975000px;}
.y4b{bottom:621.435000px;}
.y15d{bottom:622.875000px;}
.y9b{bottom:625.935000px;}
.yc8{bottom:626.655000px;}
.y111{bottom:627.555000px;}
.y18{bottom:629.535000px;}
.y172{bottom:630.435000px;}
.yc6{bottom:631.695000px;}
.y13f{bottom:633.315000px;}
.yec{bottom:634.035000px;}
.yc7{bottom:638.895000px;}
.y4a{bottom:642.495000px;}
.y9a{bottom:646.995000px;}
.y110{bottom:648.615000px;}
.y17{bottom:650.595000px;}
.y15c{bottom:651.495000px;}
.yc5{bottom:653.115000px;}
.y13e{bottom:654.375000px;}
.yeb{bottom:655.095000px;}
.y49{bottom:663.555000px;}
.y10e{bottom:663.735000px;}
.y73{bottom:664.275000px;}
.y99{bottom:668.055000px;}
.y16{bottom:671.655000px;}
.y15b{bottom:672.555000px;}
.yc4{bottom:674.205000px;}
.y13d{bottom:675.465000px;}
.yea{bottom:676.185000px;}
.y48{bottom:684.645000px;}
.y10c{bottom:689.505000px;}
.y15{bottom:692.745000px;}
.y15a{bottom:693.645000px;}
.yc3{bottom:695.265000px;}
.y13c{bottom:696.525000px;}
.ye9{bottom:697.245000px;}
.y98{bottom:698.145000px;}
.y47{bottom:705.705000px;}
.y14{bottom:713.805000px;}
.y159{bottom:714.705000px;}
.yc2{bottom:716.325000px;}
.y13b{bottom:717.585000px;}
.ye8{bottom:718.305000px;}
.y97{bottom:719.205000px;}
.y10b{bottom:724.965000px;}
.y46{bottom:726.765000px;}
.yc1{bottom:733.245000px;}
.y13{bottom:734.865000px;}
.y158{bottom:735.765000px;}
.ybf{bottom:737.745000px;}
.y13a{bottom:738.645000px;}
.y96{bottom:740.265000px;}
.ye7{bottom:745.305000px;}
.yc0{bottom:745.485000px;}
.y45{bottom:747.645000px;}
.y6f{bottom:749.265000px;}
.y12{bottom:755.925000px;}
.y157{bottom:756.645000px;}
.ybe{bottom:759.705000px;}
.y95{bottom:761.145000px;}
.y11{bottom:776.985000px;}
.y44{bottom:777.705000px;}
.ye6{bottom:778.785000px;}
.ybd{bottom:780.765000px;}
.y94{bottom:782.205000px;}
.y107{bottom:788.865000px;}
.y93{bottom:797.505000px;}
.y10{bottom:798.045000px;}
.y43{bottom:798.765000px;}
.ybc{bottom:801.825000px;}
.ye5{bottom:806.325000px;}
.yf{bottom:819.105000px;}
.y42{bottom:819.825000px;}
.y139{bottom:822.885000px;}
.ye4{bottom:827.385000px;}
.ybb{bottom:831.885000px;}
.y138{bottom:838.005000px;}
.y41{bottom:840.885000px;}
.ye{bottom:842.325000px;}
.ye3{bottom:848.445000px;}
.yba{bottom:852.945000px;}
.y105{bottom:856.365000px;}
.y137{bottom:859.785000px;}
.y40{bottom:861.945000px;}
.yd{bottom:863.385000px;}
.ye2{bottom:869.505000px;}
.yb9{bottom:874.005000px;}
.y136{bottom:881.745000px;}
.y8f{bottom:882.465000px;}
.y3f{bottom:883.005000px;}
.yc{bottom:889.665000px;}
.ye1{bottom:890.565000px;}
.y6e{bottom:892.005000px;}
.yb8{bottom:895.065000px;}
.y134{bottom:903.525000px;}
.y3e{bottom:904.065000px;}
.yb{bottom:910.770000px;}
.ye0{bottom:911.670000px;}
.y6d{bottom:913.110000px;}
.yb7{bottom:916.170000px;}
.y3d{bottom:925.170000px;}
.y133{bottom:925.350000px;}
.ya{bottom:927.510000px;}
.ydf{bottom:933.450000px;}
.y6c{bottom:934.170000px;}
.yb6{bottom:937.230000px;}
.y3c{bottom:946.230000px;}
.y8e{bottom:946.410000px;}
.y9{bottom:949.830000px;}
.y132{bottom:953.790000px;}
.yde{bottom:954.510000px;}
.y6b{bottom:955.230000px;}
.yb5{bottom:958.290000px;}
.y3b{bottom:967.290000px;}
.y131{bottom:974.850000px;}
.y8{bottom:975.030000px;}
.y6a{bottom:976.290000px;}
.yb4{bottom:979.350000px;}
.y3a{bottom:988.350000px;}
.y130{bottom:995.910000px;}
.y69{bottom:997.350000px;}
.y7{bottom:1008.690000px;}
.y39{bottom:1009.410000px;}
.y12f{bottom:1016.970000px;}
.y68{bottom:1018.410000px;}
.y38{bottom:1030.470000px;}
.y8d{bottom:1031.370000px;}
.y12e{bottom:1038.030000px;}
.y67{bottom:1039.470000px;}
.y5{bottom:1048.830000px;}
.y37{bottom:1051.530000px;}
.y12d{bottom:1059.090000px;}
.y66{bottom:1060.530000px;}
.y36{bottom:1072.590000px;}
.y8c{bottom:1074.210000px;}
.y12c{bottom:1080.150000px;}
.y4{bottom:1081.050000px;}
.y65{bottom:1081.590000px;}
.y35{bottom:1093.650000px;}
.y12b{bottom:1101.210000px;}
.y64{bottom:1102.650000px;}
.y3{bottom:1113.270000px;}
.y12a{bottom:1116.330000px;}
.y34{bottom:1123.710000px;}
.y33{bottom:1144.800000px;}
.y2{bottom:1145.340000px;}
.y32{bottom:1172.700000px;}
.y1{bottom:1179.360000px;}
.y31{bottom:1192.860000px;}
.h14{height:21.060000px;}
.h15{height:21.096000px;}
.h1a{height:24.876000px;}
.h16{height:28.260000px;}
.h19{height:34.740000px;}
.h8{height:38.671172px;}
.ha{height:42.120000px;}
.h1b{height:42.156000px;}
.h11{height:51.792187px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h18{height:63.180000px;}
.hf{height:63.216000px;}
.h3{height:65.884219px;}
.h17{height:66.780000px;}
.h7{height:67.824844px;}
.h13{height:74.116406px;}
.h10{height:76.276406px;}
.h12{height:77.439023px;}
.h4{height:83.787539px;}
.hd{height:84.240000px;}
.hb{height:84.276000px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.he{height:105.300000px;}
.hc{height:126.360000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:72.576000px;}
.w8{width:79.056000px;}
.w3{width:99.900000px;}
.w6{width:102.780000px;}
.w12{width:104.436000px;}
.we{width:107.676000px;}
.w18{width:113.580000px;}
.w1a{width:113.976000px;}
.w4{width:116.316000px;}
.wa{width:122.220000px;}
.wf{width:124.956000px;}
.w11{width:125.820000px;}
.w10{width:125.856000px;}
.w5{width:140.076000px;}
.w9{width:154.110000px;}
.wc{width:157.350000px;}
.w13{width:160.920000px;}
.wb{width:164.370000px;}
.w14{width:167.970000px;}
.w19{width:181.470000px;}
.w16{width:232.950000px;}
.w17{width:233.130000px;}
.w7{width:238.710000px;}
.w1b{width:289.470000px;}
.w15{width:370.155000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1e{left:10.080000px;}
.x22{left:11.520000px;}
.x19{left:12.816000px;}
.x1c{left:14.940000px;}
.x21{left:34.740000px;}
.x6{left:53.999987px;}
.x12{left:70.020000px;}
.x29{left:75.239987px;}
.x7{left:80.999987px;}
.x18{left:87.480000px;}
.x9{left:96.336000px;}
.x2a{left:102.275987px;}
.x8{left:108.035987px;}
.x10{left:118.655987px;}
.x11{left:135.035987px;}
.x13{left:149.796000px;}
.x5{left:173.189987px;}
.x1a{left:195.870000px;}
.xb{left:196.950000px;}
.x26{left:210.630000px;}
.xf{left:214.049987px;}
.x23{left:257.970000px;}
.x3{left:286.634987px;}
.x14{left:304.635000px;}
.xc{left:313.995000px;}
.x1b{left:321.555000px;}
.x24{left:330.195000px;}
.x2{left:350.534987px;}
.x27{left:392.835000px;}
.x4{left:419.114987px;}
.x15{left:427.575000px;}
.x1d{left:448.305000px;}
.xd{left:454.785000px;}
.x1{left:479.264987px;}
.x28{left:507.705000px;}
.xe{left:558.285000px;}
.x25{left:563.865000px;}
.x1f{left:574.845000px;}
.x16{left:592.665000px;}
.x20{left:701.430000px;}
.x17{left:750.750000px;}
.x2b{left:839.339987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v9{vertical-align:8.320000pt;}
.v5{vertical-align:10.880000pt;}
.v8{vertical-align:13.440000pt;}
.v7{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls27{letter-spacing:-0.853333pt;}
.ls4b{letter-spacing:-0.515200pt;}
.ls4c{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.269333pt;}
.ls3e{letter-spacing:-0.268800pt;}
.ls34{letter-spacing:-0.242133pt;}
.ls37{letter-spacing:-0.225067pt;}
.ls29{letter-spacing:-0.213867pt;}
.ls25{letter-spacing:-0.198400pt;}
.ls26{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls36{letter-spacing:-0.114133pt;}
.ls11{letter-spacing:-0.095467pt;}
.lse{letter-spacing:-0.069867pt;}
.ls39{letter-spacing:-0.061867pt;}
.ls28{letter-spacing:-0.057600pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls12{letter-spacing:-0.036480pt;}
.ls40{letter-spacing:-0.028800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.034560pt;}
.ls1f{letter-spacing:0.037120pt;}
.ls35{letter-spacing:0.066667pt;}
.ls3b{letter-spacing:0.070400pt;}
.ls1a{letter-spacing:0.092160pt;}
.ls1d{letter-spacing:0.094720pt;}
.ls3c{letter-spacing:0.102400pt;}
.ls2a{letter-spacing:0.120533pt;}
.lsf{letter-spacing:0.124800pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.154667pt;}
.ls19{letter-spacing:0.154880pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.173333pt;}
.ls2f{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.186240pt;}
.ls2b{letter-spacing:0.198400pt;}
.lsd{letter-spacing:0.272000pt;}
.ls18{letter-spacing:0.340480pt;}
.ls8{letter-spacing:0.349867pt;}
.ls46{letter-spacing:0.355200pt;}
.ls3d{letter-spacing:0.397867pt;}
.ls38{letter-spacing:0.398080pt;}
.ls10{letter-spacing:0.426240pt;}
.ls1{letter-spacing:0.554240pt;}
.ls32{letter-spacing:0.582400pt;}
.ls48{letter-spacing:0.698667pt;}
.ls3f{letter-spacing:0.762667pt;}
.ls20{letter-spacing:0.794880pt;}
.ls31{letter-spacing:1.694720pt;}
.ls17{letter-spacing:2.053120pt;}
.ls1e{letter-spacing:2.126080pt;}
.ls2e{letter-spacing:2.446080pt;}
.ls22{letter-spacing:2.693120pt;}
.ls24{letter-spacing:3.994667pt;}
.ls23{letter-spacing:4.613547pt;}
.ls43{letter-spacing:8.417920pt;}
.ls1c{letter-spacing:9.057920pt;}
.ls4a{letter-spacing:10.832640pt;}
.ls42{letter-spacing:11.013120pt;}
.ls15{letter-spacing:11.519360pt;}
.ls30{letter-spacing:11.653120pt;}
.ls21{letter-spacing:12.138027pt;}
.ls41{letter-spacing:12.159360pt;}
.ls47{letter-spacing:12.752640pt;}
.ls14{letter-spacing:14.286080pt;}
.ls13{letter-spacing:16.846080pt;}
.ls1b{letter-spacing:17.486080pt;}
.ls49{letter-spacing:37.840640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls2d{letter-spacing:49.211307pt;}
.lsa{letter-spacing:57.040640pt;}
.ls16{letter-spacing:69.857920pt;}
.wsc{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws20{word-spacing:-12.767787pt;}
.ws7{word-spacing:-12.354987pt;}
.wsa{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.129920pt;}
.ws18{word-spacing:-12.125653pt;}
.ws19{word-spacing:-12.071787pt;}
.ws6{word-spacing:-12.005120pt;}
.ws21{word-spacing:-11.976320pt;}
.wsf{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.ws1e{word-spacing:-11.943253pt;}
.wse{word-spacing:-11.909653pt;}
.ws1a{word-spacing:-11.862400pt;}
.ws24{word-spacing:-11.859733pt;}
.ws1f{word-spacing:-11.791253pt;}
.ws23{word-spacing:-11.697920pt;}
.ws10{word-spacing:-11.686400pt;}
.ws15{word-spacing:-11.488000pt;}
.ws5{word-spacing:-8.389120pt;}
.ws17{word-spacing:-8.166400pt;}
.ws1c{word-spacing:-8.052267pt;}
.ws1d{word-spacing:-7.941333pt;}
.wsd{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:3.800960pt;}
.ws13{word-spacing:5.541120pt;}
.ws1b{word-spacing:6.159787pt;}
.ws12{word-spacing:6.181120pt;}
.ws22{word-spacing:8.741120pt;}
.ws16{word-spacing:105.999787pt;}
.ws14{word-spacing:271.301120pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.954880pt;}
._24{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._23{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._22{margin-left:-97.441493pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.026880pt;}
._5f{margin-left:-6.695893pt;}
._26{margin-left:-4.557440pt;}
._25{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.007147pt;}
._28{width:2.590720pt;}
._2c{width:3.611520pt;}
._2a{width:5.152640pt;}
._2b{width:6.381867pt;}
._29{width:7.489920pt;}
._2f{width:8.499200pt;}
._58{width:9.720960pt;}
._2d{width:10.944853pt;}
._5c{width:12.257280pt;}
._2e{width:13.218560pt;}
._30{width:14.450773pt;}
._31{width:15.434240pt;}
._3f{width:16.864853pt;}
._3e{width:18.007680pt;}
._32{width:19.016960pt;}
._33{width:19.977387pt;}
._46{width:21.832320pt;}
._38{width:23.107200pt;}
._51{width:24.384213pt;}
._50{width:26.347520pt;}
._47{width:28.844160pt;}
._43{width:31.287680pt;}
._4d{width:33.093760pt;}
._53{width:34.581120pt;}
._48{width:35.802880pt;}
._56{width:36.759040pt;}
._3d{width:38.458880pt;}
._34{width:41.274240pt;}
._3c{width:44.727040pt;}
._5a{width:49.136000pt;}
._5b{width:50.096427pt;}
._5d{width:58.591360pt;}
._4c{width:63.639893pt;}
._49{width:64.593920pt;}
._3a{width:72.190080pt;}
._52{width:73.199360pt;}
._4b{width:75.538773pt;}
._54{width:76.545920pt;}
._35{width:84.726400pt;}
._39{width:85.735680pt;}
._36{width:103.371520pt;}
._3b{width:113.891413pt;}
._41{width:124.832000pt;}
._55{width:125.947520pt;}
._44{width:131.365760pt;}
._57{width:134.499840pt;}
._4e{width:143.477120pt;}
._40{width:146.664320pt;}
._4f{width:149.639040pt;}
._42{width:152.401280pt;}
._59{width:160.240213pt;}
._5e{width:180.122880pt;}
._4a{width:186.344960pt;}
._37{width:197.340800pt;}
._45{width:204.458880pt;}
._60{width:356.234240pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:5.920000pt;}
.y88{bottom:5.946667pt;}
.y135{bottom:5.960000pt;}
.y10a{bottom:9.120000pt;}
.y10f{bottom:9.306667pt;}
.y106{bottom:12.320000pt;}
.y86{bottom:15.200000pt;}
.y8a{bottom:15.226667pt;}
.y72{bottom:15.360000pt;}
.y10d{bottom:18.080000pt;}
.y70{bottom:24.640000pt;}
.y75{bottom:24.666667pt;}
.y92{bottom:24.680000pt;}
.y109{bottom:27.840000pt;}
.y82{bottom:33.920000pt;}
.y89{bottom:33.946667pt;}
.y90{bottom:33.960000pt;}
.y7c{bottom:34.080000pt;}
.y76{bottom:34.106667pt;}
.y79{bottom:43.360000pt;}
.y74{bottom:43.386667pt;}
.y91{bottom:43.400000pt;}
.y108{bottom:46.560000pt;}
.y84{bottom:52.640000pt;}
.y7b{bottom:52.800000pt;}
.y6{bottom:54.560000pt;}
.y78{bottom:62.080000pt;}
.y77{bottom:62.106667pt;}
.y85{bottom:71.360000pt;}
.y7a{bottom:71.520000pt;}
.y171{bottom:79.680000pt;}
.y7e{bottom:80.800000pt;}
.y8b{bottom:81.120000pt;}
.y189{bottom:84.320000pt;}
.y63{bottom:84.960000pt;}
.y18b{bottom:89.280000pt;}
.y7f{bottom:90.240000pt;}
.y104{bottom:90.880000pt;}
.yb3{bottom:91.040000pt;}
.y30{bottom:92.320000pt;}
.ydd{bottom:97.920000pt;}
.y7d{bottom:99.520000pt;}
.y129{bottom:101.920000pt;}
.y188{bottom:103.040000pt;}
.y62{bottom:103.680000pt;}
.y170{bottom:106.400000pt;}
.y156{bottom:108.960000pt;}
.y103{bottom:109.600000pt;}
.yb2{bottom:109.760000pt;}
.y2f{bottom:111.040000pt;}
.ydc{bottom:116.640000pt;}
.y187{bottom:121.760000pt;}
.y61{bottom:122.400000pt;}
.y16f{bottom:125.120000pt;}
.y128{bottom:127.200000pt;}
.y155{bottom:127.680000pt;}
.y102{bottom:128.320000pt;}
.yb1{bottom:128.480000pt;}
.y2e{bottom:129.760000pt;}
.ydb{bottom:135.360000pt;}
.y186{bottom:140.480000pt;}
.y60{bottom:141.120000pt;}
.y16e{bottom:143.840000pt;}
.y127{bottom:145.920000pt;}
.y154{bottom:146.400000pt;}
.y101{bottom:147.040000pt;}
.yb0{bottom:147.200000pt;}
.y2d{bottom:148.480000pt;}
.yda{bottom:154.080000pt;}
.y185{bottom:159.200000pt;}
.y5f{bottom:159.840000pt;}
.y16d{bottom:162.560000pt;}
.y126{bottom:164.640000pt;}
.y153{bottom:165.120000pt;}
.y100{bottom:165.760000pt;}
.yaf{bottom:165.920000pt;}
.y2c{bottom:167.200000pt;}
.yd9{bottom:172.800000pt;}
.y87{bottom:175.360000pt;}
.y184{bottom:177.920000pt;}
.y5e{bottom:178.560000pt;}
.yff{bottom:179.200000pt;}
.y16c{bottom:181.306667pt;}
.y125{bottom:183.386667pt;}
.y152{bottom:183.866667pt;}
.yae{bottom:184.666667pt;}
.y2b{bottom:185.946667pt;}
.yd8{bottom:191.546667pt;}
.y183{bottom:196.666667pt;}
.y5d{bottom:197.306667pt;}
.y151{bottom:197.466667pt;}
.yfe{bottom:198.586667pt;}
.y16b{bottom:200.026667pt;}
.y124{bottom:202.106667pt;}
.yad{bottom:203.386667pt;}
.y2a{bottom:204.666667pt;}
.yd7{bottom:210.266667pt;}
.y182{bottom:215.386667pt;}
.y5c{bottom:216.026667pt;}
.y150{bottom:216.826667pt;}
.yfd{bottom:217.946667pt;}
.y16a{bottom:218.746667pt;}
.y123{bottom:220.826667pt;}
.y29{bottom:223.386667pt;}
.yd6{bottom:228.986667pt;}
.yac{bottom:230.106667pt;}
.y83{bottom:232.186667pt;}
.y181{bottom:234.106667pt;}
.y5b{bottom:234.746667pt;}
.y14f{bottom:236.186667pt;}
.yfc{bottom:237.466667pt;}
.y122{bottom:239.546667pt;}
.y28{bottom:242.106667pt;}
.yab{bottom:248.826667pt;}
.y180{bottom:252.826667pt;}
.y5a{bottom:253.466667pt;}
.yd5{bottom:255.546667pt;}
.y169{bottom:256.186667pt;}
.yfb{bottom:256.826667pt;}
.y121{bottom:258.266667pt;}
.y27{bottom:260.826667pt;}
.yaa{bottom:267.546667pt;}
.y17f{bottom:271.546667pt;}
.yd4{bottom:274.266667pt;}
.y14e{bottom:274.906667pt;}
.yfa{bottom:276.186667pt;}
.y120{bottom:276.986667pt;}
.y18a{bottom:279.546667pt;}
.y59{bottom:280.186667pt;}
.ya9{bottom:286.266667pt;}
.y26{bottom:287.546667pt;}
.y168{bottom:293.626667pt;}
.y14d{bottom:294.266667pt;}
.y11f{bottom:295.706667pt;}
.y17e{bottom:298.266667pt;}
.y58{bottom:298.746667pt;}
.yd3{bottom:300.986667pt;}
.ya8{bottom:304.986667pt;}
.y25{bottom:306.266667pt;}
.y167{bottom:312.346667pt;}
.y11e{bottom:314.426667pt;}
.y17d{bottom:316.986667pt;}
.y57{bottom:317.466667pt;}
.y14c{bottom:319.546667pt;}
.yd2{bottom:319.706667pt;}
.yf9{bottom:320.186667pt;}
.y24{bottom:324.986667pt;}
.y81{bottom:326.426667pt;}
.y166{bottom:331.066667pt;}
.ya7{bottom:331.706667pt;}
.y11d{bottom:333.146667pt;}
.y17c{bottom:335.706667pt;}
.y56{bottom:336.186667pt;}
.y14b{bottom:338.266667pt;}
.yd1{bottom:338.426667pt;}
.yf8{bottom:338.906667pt;}
.y23{bottom:343.706667pt;}
.y165{bottom:349.786667pt;}
.ya6{bottom:350.426667pt;}
.y11c{bottom:351.866667pt;}
.y17b{bottom:354.426667pt;}
.y55{bottom:354.906667pt;}
.y14a{bottom:356.986667pt;}
.yd0{bottom:357.146667pt;}
.yf7{bottom:357.626667pt;}
.y22{bottom:362.426667pt;}
.y164{bottom:368.506667pt;}
.ya5{bottom:369.146667pt;}
.y11b{bottom:370.586667pt;}
.y17a{bottom:373.146667pt;}
.y54{bottom:373.786667pt;}
.y149{bottom:375.706667pt;}
.ycf{bottom:375.866667pt;}
.yf6{bottom:376.346667pt;}
.y21{bottom:381.146667pt;}
.y163{bottom:387.226667pt;}
.ya4{bottom:387.866667pt;}
.y11a{bottom:389.346667pt;}
.y179{bottom:391.906667pt;}
.y53{bottom:393.186667pt;}
.y148{bottom:394.466667pt;}
.yce{bottom:394.626667pt;}
.yf5{bottom:395.106667pt;}
.y20{bottom:399.906667pt;}
.y80{bottom:401.986667pt;}
.y162{bottom:405.986667pt;}
.ya3{bottom:406.626667pt;}
.y119{bottom:408.066667pt;}
.y178{bottom:410.626667pt;}
.y52{bottom:411.906667pt;}
.y147{bottom:413.186667pt;}
.ycd{bottom:413.346667pt;}
.yf4{bottom:413.826667pt;}
.y1f{bottom:418.626667pt;}
.y161{bottom:419.426667pt;}
.ya2{bottom:425.346667pt;}
.y118{bottom:426.786667pt;}
.y177{bottom:429.346667pt;}
.y51{bottom:431.426667pt;}
.y146{bottom:431.906667pt;}
.yf3{bottom:432.546667pt;}
.y1e{bottom:437.346667pt;}
.y160{bottom:438.786667pt;}
.ycc{bottom:440.066667pt;}
.ya1{bottom:444.066667pt;}
.y117{bottom:445.506667pt;}
.y176{bottom:448.066667pt;}
.y145{bottom:450.626667pt;}
.y50{bottom:450.786667pt;}
.yf2{bottom:451.266667pt;}
.y1d{bottom:456.066667pt;}
.y15f{bottom:458.146667pt;}
.ycb{bottom:458.786667pt;}
.ya0{bottom:462.786667pt;}
.y116{bottom:464.226667pt;}
.y175{bottom:466.786667pt;}
.y144{bottom:469.346667pt;}
.yf1{bottom:469.986667pt;}
.y1c{bottom:474.786667pt;}
.y4f{bottom:477.506667pt;}
.y9f{bottom:481.506667pt;}
.y115{bottom:482.946667pt;}
.y174{bottom:485.506667pt;}
.y143{bottom:488.066667pt;}
.yf0{bottom:488.706667pt;}
.y1b{bottom:493.506667pt;}
.y4e{bottom:496.226667pt;}
.y9e{bottom:500.226667pt;}
.y114{bottom:501.666667pt;}
.y173{bottom:504.226667pt;}
.y142{bottom:506.786667pt;}
.yef{bottom:507.426667pt;}
.y1a{bottom:512.226667pt;}
.y4d{bottom:514.946667pt;}
.y15e{bottom:515.586667pt;}
.y9d{bottom:518.946667pt;}
.y113{bottom:520.386667pt;}
.yca{bottom:522.946667pt;}
.y141{bottom:525.506667pt;}
.yee{bottom:526.146667pt;}
.y19{bottom:533.026667pt;}
.y4c{bottom:533.666667pt;}
.y9c{bottom:537.666667pt;}
.y112{bottom:539.106667pt;}
.yc9{bottom:541.666667pt;}
.y140{bottom:544.226667pt;}
.yed{bottom:544.866667pt;}
.y4b{bottom:552.386667pt;}
.y15d{bottom:553.666667pt;}
.y9b{bottom:556.386667pt;}
.yc8{bottom:557.026667pt;}
.y111{bottom:557.826667pt;}
.y18{bottom:559.586667pt;}
.y172{bottom:560.386667pt;}
.yc6{bottom:561.506667pt;}
.y13f{bottom:562.946667pt;}
.yec{bottom:563.586667pt;}
.yc7{bottom:567.906667pt;}
.y4a{bottom:571.106667pt;}
.y9a{bottom:575.106667pt;}
.y110{bottom:576.546667pt;}
.y17{bottom:578.306667pt;}
.y15c{bottom:579.106667pt;}
.yc5{bottom:580.546667pt;}
.y13e{bottom:581.666667pt;}
.yeb{bottom:582.306667pt;}
.y49{bottom:589.826667pt;}
.y10e{bottom:589.986667pt;}
.y73{bottom:590.466667pt;}
.y99{bottom:593.826667pt;}
.y16{bottom:597.026667pt;}
.y15b{bottom:597.826667pt;}
.yc4{bottom:599.293333pt;}
.y13d{bottom:600.413333pt;}
.yea{bottom:601.053333pt;}
.y48{bottom:608.573333pt;}
.y10c{bottom:612.893333pt;}
.y15{bottom:615.773333pt;}
.y15a{bottom:616.573333pt;}
.yc3{bottom:618.013333pt;}
.y13c{bottom:619.133333pt;}
.ye9{bottom:619.773333pt;}
.y98{bottom:620.573333pt;}
.y47{bottom:627.293333pt;}
.y14{bottom:634.493333pt;}
.y159{bottom:635.293333pt;}
.yc2{bottom:636.733333pt;}
.y13b{bottom:637.853333pt;}
.ye8{bottom:638.493333pt;}
.y97{bottom:639.293333pt;}
.y10b{bottom:644.413333pt;}
.y46{bottom:646.013333pt;}
.yc1{bottom:651.773333pt;}
.y13{bottom:653.213333pt;}
.y158{bottom:654.013333pt;}
.ybf{bottom:655.773333pt;}
.y13a{bottom:656.573333pt;}
.y96{bottom:658.013333pt;}
.ye7{bottom:662.493333pt;}
.yc0{bottom:662.653333pt;}
.y45{bottom:664.573333pt;}
.y6f{bottom:666.013333pt;}
.y12{bottom:671.933333pt;}
.y157{bottom:672.573333pt;}
.ybe{bottom:675.293333pt;}
.y95{bottom:676.573333pt;}
.y11{bottom:690.653333pt;}
.y44{bottom:691.293333pt;}
.ye6{bottom:692.253333pt;}
.ybd{bottom:694.013333pt;}
.y94{bottom:695.293333pt;}
.y107{bottom:701.213333pt;}
.y93{bottom:708.893333pt;}
.y10{bottom:709.373333pt;}
.y43{bottom:710.013333pt;}
.ybc{bottom:712.733333pt;}
.ye5{bottom:716.733333pt;}
.yf{bottom:728.093333pt;}
.y42{bottom:728.733333pt;}
.y139{bottom:731.453333pt;}
.ye4{bottom:735.453333pt;}
.ybb{bottom:739.453333pt;}
.y138{bottom:744.893333pt;}
.y41{bottom:747.453333pt;}
.ye{bottom:748.733333pt;}
.ye3{bottom:754.173333pt;}
.yba{bottom:758.173333pt;}
.y105{bottom:761.213333pt;}
.y137{bottom:764.253333pt;}
.y40{bottom:766.173333pt;}
.yd{bottom:767.453333pt;}
.ye2{bottom:772.893333pt;}
.yb9{bottom:776.893333pt;}
.y136{bottom:783.773333pt;}
.y8f{bottom:784.413333pt;}
.y3f{bottom:784.893333pt;}
.yc{bottom:790.813333pt;}
.ye1{bottom:791.613333pt;}
.y6e{bottom:792.893333pt;}
.yb8{bottom:795.613333pt;}
.y134{bottom:803.133333pt;}
.y3e{bottom:803.613333pt;}
.yb{bottom:809.573333pt;}
.ye0{bottom:810.373333pt;}
.y6d{bottom:811.653333pt;}
.yb7{bottom:814.373333pt;}
.y3d{bottom:822.373333pt;}
.y133{bottom:822.533333pt;}
.ya{bottom:824.453333pt;}
.ydf{bottom:829.733333pt;}
.y6c{bottom:830.373333pt;}
.yb6{bottom:833.093333pt;}
.y3c{bottom:841.093333pt;}
.y8e{bottom:841.253333pt;}
.y9{bottom:844.293333pt;}
.y132{bottom:847.813333pt;}
.yde{bottom:848.453333pt;}
.y6b{bottom:849.093333pt;}
.yb5{bottom:851.813333pt;}
.y3b{bottom:859.813333pt;}
.y131{bottom:866.533333pt;}
.y8{bottom:866.693333pt;}
.y6a{bottom:867.813333pt;}
.yb4{bottom:870.533333pt;}
.y3a{bottom:878.533333pt;}
.y130{bottom:885.253333pt;}
.y69{bottom:886.533333pt;}
.y7{bottom:896.613333pt;}
.y39{bottom:897.253333pt;}
.y12f{bottom:903.973333pt;}
.y68{bottom:905.253333pt;}
.y38{bottom:915.973333pt;}
.y8d{bottom:916.773333pt;}
.y12e{bottom:922.693333pt;}
.y67{bottom:923.973333pt;}
.y5{bottom:932.293333pt;}
.y37{bottom:934.693333pt;}
.y12d{bottom:941.413333pt;}
.y66{bottom:942.693333pt;}
.y36{bottom:953.413333pt;}
.y8c{bottom:954.853333pt;}
.y12c{bottom:960.133333pt;}
.y4{bottom:960.933333pt;}
.y65{bottom:961.413333pt;}
.y35{bottom:972.133333pt;}
.y12b{bottom:978.853333pt;}
.y64{bottom:980.133333pt;}
.y3{bottom:989.573333pt;}
.y12a{bottom:992.293333pt;}
.y34{bottom:998.853333pt;}
.y33{bottom:1017.600000pt;}
.y2{bottom:1018.080000pt;}
.y32{bottom:1042.400000pt;}
.y1{bottom:1048.320000pt;}
.y31{bottom:1060.320000pt;}
.h14{height:18.720000pt;}
.h15{height:18.752000pt;}
.h1a{height:22.112000pt;}
.h16{height:25.120000pt;}
.h19{height:30.880000pt;}
.h8{height:34.374375pt;}
.ha{height:37.440000pt;}
.h1b{height:37.472000pt;}
.h11{height:46.037500pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h18{height:56.160000pt;}
.hf{height:56.192000pt;}
.h3{height:58.563750pt;}
.h17{height:59.360000pt;}
.h7{height:60.288750pt;}
.h13{height:65.881250pt;}
.h10{height:67.801250pt;}
.h12{height:68.834688pt;}
.h4{height:74.477812pt;}
.hd{height:74.880000pt;}
.hb{height:74.912000pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.he{height:93.600000pt;}
.hc{height:112.320000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:64.512000pt;}
.w8{width:70.272000pt;}
.w3{width:88.800000pt;}
.w6{width:91.360000pt;}
.w12{width:92.832000pt;}
.we{width:95.712000pt;}
.w18{width:100.960000pt;}
.w1a{width:101.312000pt;}
.w4{width:103.392000pt;}
.wa{width:108.640000pt;}
.wf{width:111.072000pt;}
.w11{width:111.840000pt;}
.w10{width:111.872000pt;}
.w5{width:124.512000pt;}
.w9{width:136.986667pt;}
.wc{width:139.866667pt;}
.w13{width:143.040000pt;}
.wb{width:146.106667pt;}
.w14{width:149.306667pt;}
.w19{width:161.306667pt;}
.w16{width:207.066667pt;}
.w17{width:207.226667pt;}
.w7{width:212.186667pt;}
.w1b{width:257.306667pt;}
.w15{width:329.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1e{left:8.960000pt;}
.x22{left:10.240000pt;}
.x19{left:11.392000pt;}
.x1c{left:13.280000pt;}
.x21{left:30.880000pt;}
.x6{left:47.999988pt;}
.x12{left:62.240000pt;}
.x29{left:66.879988pt;}
.x7{left:71.999988pt;}
.x18{left:77.760000pt;}
.x9{left:85.632000pt;}
.x2a{left:90.911988pt;}
.x8{left:96.031988pt;}
.x10{left:105.471988pt;}
.x11{left:120.031988pt;}
.x13{left:133.152000pt;}
.x5{left:153.946655pt;}
.x1a{left:174.106667pt;}
.xb{left:175.066667pt;}
.x26{left:187.226667pt;}
.xf{left:190.266655pt;}
.x23{left:229.306667pt;}
.x3{left:254.786655pt;}
.x14{left:270.786667pt;}
.xc{left:279.106667pt;}
.x1b{left:285.826667pt;}
.x24{left:293.506667pt;}
.x2{left:311.586655pt;}
.x27{left:349.186667pt;}
.x4{left:372.546655pt;}
.x15{left:380.066667pt;}
.x1d{left:398.493333pt;}
.xd{left:404.253333pt;}
.x1{left:426.013322pt;}
.x28{left:451.293333pt;}
.xe{left:496.253333pt;}
.x25{left:501.213333pt;}
.x1f{left:510.973333pt;}
.x16{left:526.813333pt;}
.x20{left:623.493333pt;}
.x17{left:667.333333pt;}
.x2b{left:746.079988pt;}
}




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