
    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_02fbfff7613f3f488f18704f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_7adc17d051cd1dce8517ad82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_3160fed75116ec83ae92536d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_b36d0a39623521d6ef9e5a5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_139d02304b9eb00bf8ee0a93.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_c8a049356dabdf5c41acc452.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.967680px;}
.ls28{letter-spacing:-0.927360px;}
.ls2a{letter-spacing:-0.861120px;}
.ls20{letter-spacing:-0.794880px;}
.ls26{letter-spacing:-0.728640px;}
.ls2b{letter-spacing:-0.662400px;}
.ls24{letter-spacing:-0.529920px;}
.ls1d{letter-spacing:-0.463680px;}
.ls25{letter-spacing:-0.331200px;}
.ls10{letter-spacing:-0.298800px;}
.ls14{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.252720px;}
.ls19{letter-spacing:-0.239040px;}
.ls5{letter-spacing:-0.227520px;}
.ls7{letter-spacing:-0.210240px;}
.lsa{letter-spacing:-0.207360px;}
.ls18{letter-spacing:-0.198720px;}
.ls9{letter-spacing:-0.192960px;}
.ls15{letter-spacing:-0.132480px;}
.ls16{letter-spacing:-0.066240px;}
.ls12{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.046368px;}
.ls1{letter-spacing:0.050400px;}
.ls29{letter-spacing:0.066240px;}
.ls1c{letter-spacing:0.084240px;}
.ls32{letter-spacing:0.119232px;}
.ls23{letter-spacing:0.120960px;}
.lsd{letter-spacing:0.132480px;}
.ls2c{letter-spacing:0.145728px;}
.ls1e{letter-spacing:0.149760px;}
.ls1b{letter-spacing:0.168480px;}
.lsc{letter-spacing:0.179280px;}
.ls1f{letter-spacing:0.187200px;}
.ls2e{letter-spacing:0.198720px;}
.ls3{letter-spacing:0.207360px;}
.ls8{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.269280px;}
.ls2d{letter-spacing:0.302400px;}
.ls2f{letter-spacing:0.331200px;}
.ls11{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.450000px;}
.lsf{letter-spacing:0.615528px;}
.lse{letter-spacing:0.993600px;}
.ls30{letter-spacing:7.352640px;}
.ls27{letter-spacing:20.998080px;}
.ls21{letter-spacing:23.912640px;}
.ls22{letter-spacing:28.946880px;}
.ls0{letter-spacing:197.461440px;}
.ls1a{letter-spacing:849.038400px;}
.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;}
}
.ws0{word-spacing:-125.550000px;}
.ws1{word-spacing:-58.236480px;}
.ws39{word-spacing:-19.206720px;}
.ws57{word-spacing:-19.122480px;}
.ws34{word-spacing:-19.038240px;}
.wsb{word-spacing:-18.785520px;}
.ws56{word-spacing:-15.301440px;}
.wse{word-spacing:-15.235200px;}
.ws50{word-spacing:-15.036480px;}
.wsf{word-spacing:-14.970240px;}
.wsd{word-spacing:-14.904000px;}
.ws51{word-spacing:-14.837760px;}
.ws42{word-spacing:-14.771520px;}
.wsc{word-spacing:-14.705280px;}
.ws35{word-spacing:-14.506560px;}
.ws4f{word-spacing:-14.440320px;}
.ws48{word-spacing:-14.307840px;}
.ws3a{word-spacing:-14.175360px;}
.ws52{word-spacing:-14.109120px;}
.ws4e{word-spacing:-14.042880px;}
.ws11{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.446000px;}
.ws5{word-spacing:-1.080000px;}
.ws55{word-spacing:-0.927360px;}
.ws40{word-spacing:-0.861120px;}
.ws47{word-spacing:-0.728640px;}
.ws53{word-spacing:-0.662400px;}
.ws17{word-spacing:-0.529920px;}
.ws3b{word-spacing:-0.505440px;}
.wsa{word-spacing:-0.483840px;}
.ws3c{word-spacing:-0.463680px;}
.ws37{word-spacing:-0.421200px;}
.ws3f{word-spacing:-0.397440px;}
.ws41{word-spacing:-0.331200px;}
.ws4a{word-spacing:-0.264960px;}
.ws13{word-spacing:-0.179280px;}
.ws36{word-spacing:-0.168480px;}
.ws3d{word-spacing:-0.132480px;}
.ws4c{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws2f{word-spacing:0.059760px;}
.ws25{word-spacing:0.066240px;}
.ws15{word-spacing:0.132480px;}
.ws6{word-spacing:0.192960px;}
.ws16{word-spacing:0.198720px;}
.ws14{word-spacing:0.239040px;}
.ws44{word-spacing:0.264960px;}
.ws12{word-spacing:0.298800px;}
.ws38{word-spacing:0.331200px;}
.ws3{word-spacing:0.341280px;}
.ws21{word-spacing:0.397440px;}
.ws8{word-spacing:0.414720px;}
.ws33{word-spacing:0.418320px;}
.ws45{word-spacing:0.463680px;}
.ws7{word-spacing:0.482400px;}
.ws43{word-spacing:0.529920px;}
.ws3e{word-spacing:0.596160px;}
.ws54{word-spacing:0.662400px;}
.ws4d{word-spacing:0.794880px;}
.ws46{word-spacing:0.861120px;}
.ws24{word-spacing:0.927360px;}
.ws4b{word-spacing:0.993600px;}
.ws4{word-spacing:1.023840px;}
.ws49{word-spacing:1.059840px;}
.ws9{word-spacing:1.175040px;}
.ws26{word-spacing:1.656000px;}
.ws28{word-spacing:2.384640px;}
.ws29{word-spacing:2.583360px;}
.ws1c{word-spacing:2.914560px;}
.ws19{word-spacing:3.113280px;}
.ws1b{word-spacing:4.504320px;}
.ws2c{word-spacing:4.703040px;}
.ws2b{word-spacing:5.232960px;}
.ws2d{word-spacing:5.365440px;}
.ws2e{word-spacing:8.127360px;}
.ws30{word-spacing:8.306640px;}
.ws22{word-spacing:8.876160px;}
.ws2a{word-spacing:10.267200px;}
.ws18{word-spacing:15.367680px;}
.ws1e{word-spacing:15.566400px;}
.ws1d{word-spacing:17.487360px;}
.ws27{word-spacing:18.216000px;}
.ws20{word-spacing:20.401920px;}
.ws1a{word-spacing:22.521600px;}
.ws23{word-spacing:24.707520px;}
.ws1f{word-spacing:25.966080px;}
.ws31{word-spacing:33.346080px;}
.ws32{word-spacing:33.525360px;}
._0{margin-left:-197.461440px;}
._b{margin-left:-14.771520px;}
._6{margin-left:-10.606608px;}
._a{margin-left:-7.087680px;}
._7{margin-left:-4.628592px;}
._5{margin-left:-3.320208px;}
._3{margin-left:-1.170000px;}
._2{width:1.399248px;}
._8{width:8.421840px;}
._9{width:848.998080px;}
._4{width:1164.702240px;}
._1{width:1978.721280px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,112,192);}
.fc5{color:transparent;}
.fc3{color:rgb(255,204,0);}
.fc2{color:rgb(255,192,0);}
.fc4{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs1{font-size:113.760000px;}
.fs3{font-size:210.240000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:450.000000px;}
.ye{bottom:-88.560000px;}
.y1e{bottom:-17.280000px;}
.y0{bottom:0.000000px;}
.y26{bottom:4.680000px;}
.y10{bottom:8.820000px;}
.y16{bottom:14.580000px;}
.y1d{bottom:18.180000px;}
.y14{bottom:19.260000px;}
.y13{bottom:21.420000px;}
.y25{bottom:24.840000px;}
.y18{bottom:25.740000px;}
.y19{bottom:35.460000px;}
.y24{bottom:44.456760px;}
.y1b{bottom:57.960000px;}
.y23{bottom:62.638740px;}
.y1a{bottom:73.980000px;}
.y22{bottom:81.000000px;}
.y21{bottom:99.900000px;}
.y1c0{bottom:122.400000px;}
.yb0{bottom:124.740000px;}
.yf{bottom:125.280000px;}
.y4a{bottom:126.902340px;}
.y16a{bottom:128.160000px;}
.y112{bottom:134.640720px;}
.y146{bottom:135.540000px;}
.y199{bottom:141.662880px;}
.yd2{bottom:144.900000px;}
.y1bf{bottom:145.638720px;}
.y7f{bottom:146.700000px;}
.y169{bottom:151.562880px;}
.y111{bottom:158.040000px;}
.y145{bottom:158.940000px;}
.y12e{bottom:159.480000px;}
.yd1{bottom:164.880000px;}
.y1be{bottom:168.673680px;}
.y7e{bottom:170.100000px;}
.ya3{bottom:171.540000px;}
.y186{bottom:172.800000px;}
.y168{bottom:174.780000px;}
.y12{bottom:176.760000px;}
.yf1{bottom:180.900000px;}
.y144{bottom:181.980000px;}
.y12d{bottom:182.880000px;}
.yd0{bottom:188.102880px;}
.y1bd{bottom:191.890800px;}
.y49{bottom:192.420000px;}
.y7d{bottom:193.140000px;}
.ya2{bottom:194.760000px;}
.y110{bottom:196.020000px;}
.y185{bottom:196.200000px;}
.y198{bottom:202.860000px;}
.yf0{bottom:204.300000px;}
.y1c{bottom:204.480000px;}
.y12c{bottom:206.100000px;}
.ycf{bottom:211.320000px;}
.y167{bottom:212.760000px;}
.y1bc{bottom:215.107920px;}
.y10f{bottom:219.240000px;}
.y143{bottom:219.960000px;}
.y197{bottom:226.080000px;}
.y1e3{bottom:226.271520px;}
.y7c{bottom:231.120000px;}
.ya1{bottom:232.740720px;}
.y166{bottom:235.980000px;}
.y1bb{bottom:238.142880px;}
.yef{bottom:242.280720px;}
.y142{bottom:243.360000px;}
.y12b{bottom:244.080000px;}
.yce{bottom:249.300000px;}
.y1e2{bottom:249.670800px;}
.yd{bottom:250.200000px;}
.y7b{bottom:254.527920px;}
.y48{bottom:255.039840px;}
.ya0{bottom:256.140000px;}
.y10e{bottom:257.220000px;}
.y184{bottom:257.220720px;}
.y165{bottom:259.200000px;}
.y1ba{bottom:261.360000px;}
.y196{bottom:264.060000px;}
.yee{bottom:265.680000px;}
.y12a{bottom:267.300000px;}
.ycd{bottom:272.522880px;}
.y1e1{bottom:272.887920px;}
.y9f{bottom:279.367920px;}
.y10d{bottom:280.620000px;}
.y141{bottom:284.400000px;}
.y1b9{bottom:284.595840px;}
.y195{bottom:287.460000px;}
.y129{bottom:290.520000px;}
.y47{bottom:291.045240px;}
.y7a{bottom:292.500000px;}
.ycc{bottom:295.740000px;}
.y1e0{bottom:295.922880px;}
.y1e7{bottom:296.820000px;}
.y164{bottom:297.180000px;}
.yed{bottom:303.660000px;}
.y140{bottom:307.628640px;}
.y1b8{bottom:307.630800px;}
.y79{bottom:315.900000px;}
.y9e{bottom:317.340000px;}
.y183{bottom:318.600000px;}
.y10c{bottom:318.600720px;}
.y1df{bottom:319.140000px;}
.y163{bottom:320.580000px;}
.y194{bottom:325.440000px;}
.yec{bottom:327.060000px;}
.y46{bottom:327.229920px;}
.y128{bottom:328.502880px;}
.y1b7{bottom:330.847920px;}
.ycb{bottom:333.723600px;}
.y1e6{bottom:336.433680px;}
.y78{bottom:338.940000px;}
.y9d{bottom:340.560000px;}
.y10b{bottom:342.000000px;}
.y1de{bottom:342.360000px;}
.y162{bottom:343.800000px;}
.y13f{bottom:345.600720px;}
.y45{bottom:348.474600px;}
.y193{bottom:348.840000px;}
.y127{bottom:351.720000px;}
.y1b6{bottom:354.065040px;}
.y9c{bottom:363.780000px;}
.yeb{bottom:365.042880px;}
.y13e{bottom:369.000000px;}
.y44{bottom:369.540000px;}
.y192{bottom:371.880000px;}
.yca{bottom:372.060000px;}
.y1e5{bottom:374.587920px;}
.y77{bottom:376.920000px;}
.y1b5{bottom:377.100000px;}
.y10a{bottom:379.980000px;}
.y1dd{bottom:380.353680px;}
.y161{bottom:381.780000px;}
.yea{bottom:388.260000px;}
.y13d{bottom:392.220000px;}
.y126{bottom:392.760000px;}
.yc9{bottom:395.280000px;}
.y1b4{bottom:400.322880px;}
.y9b{bottom:401.760000px;}
.y182{bottom:403.200000px;}
.y1dc{bottom:403.570800px;}
.y160{bottom:405.000000px;}
.y43{bottom:406.339920px;}
.y1e4{bottom:408.420000px;}
.y191{bottom:409.860000px;}
.y76{bottom:415.080000px;}
.y125{bottom:416.160000px;}
.y109{bottom:418.150800px;}
.yc8{bottom:418.332240px;}
.y1b3{bottom:423.540000px;}
.y9a{bottom:425.160000px;}
.ye9{bottom:426.240720px;}
.y181{bottom:426.420000px;}
.y1db{bottom:426.787920px;}
.y15f{bottom:428.220000px;}
.y42{bottom:429.557040px;}
.y13c{bottom:430.380000px;}
.y190{bottom:433.267920px;}
.y75{bottom:438.480000px;}
.y124{bottom:439.386480px;}
.y108{bottom:441.367920px;}
.y1b2{bottom:446.585760px;}
.ye8{bottom:449.640000px;}
.y1da{bottom:450.005040px;}
.y41{bottom:452.774160px;}
.y13b{bottom:453.420000px;}
.y18f{bottom:456.485040px;}
.yc7{bottom:456.486480px;}
.y123{bottom:459.540000px;}
.y74{bottom:461.700000px;}
.y99{bottom:463.140000px;}
.y180{bottom:464.400720px;}
.y15e{bottom:466.200000px;}
.y1b1{bottom:469.802880px;}
.y1d9{bottom:473.040000px;}
.y40{bottom:475.991280px;}
.yc6{bottom:476.640000px;}
.y107{bottom:479.340000px;}
.y18e{bottom:479.520000px;}
.y122{bottom:479.700000px;}
.y98{bottom:486.360000px;}
.ye7{bottom:487.620000px;}
.y17f{bottom:487.800000px;}
.y1b0{bottom:493.020000px;}
.y73{bottom:499.680000px;}
.yc5{bottom:499.867920px;}
.y121{bottom:502.742880px;}
.y106{bottom:502.747920px;}
.y15d{bottom:507.240720px;}
.y97{bottom:509.580000px;}
.ye6{bottom:511.020000px;}
.y1d8{bottom:511.031520px;}
.y3f{bottom:513.963360px;}
.y13a{bottom:514.800000px;}
.y1af{bottom:516.060000px;}
.y18d{bottom:517.500000px;}
.y72{bottom:522.900000px;}
.y17e{bottom:525.780000px;}
.y120{bottom:525.960000px;}
.y15c{bottom:530.640000px;}
.y1d7{bottom:534.430800px;}
.y3e{bottom:537.180480px;}
.yc4{bottom:537.840000px;}
.y1ae{bottom:539.280000px;}
.y105{bottom:540.720000px;}
.y18c{bottom:540.902880px;}
.y96{bottom:547.560000px;}
.ye5{bottom:549.000000px;}
.y17d{bottom:549.180000px;}
.y139{bottom:555.840000px;}
.y1d6{bottom:557.647920px;}
.y3d{bottom:560.397600px;}
.y71{bottom:560.880000px;}
.yc3{bottom:561.240000px;}
.y1ad{bottom:562.502880px;}
.y11f{bottom:563.940000px;}
.y104{bottom:564.120000px;}
.y15b{bottom:568.812960px;}
.y95{bottom:570.970800px;}
.ye4{bottom:572.220000px;}
.y138{bottom:579.062880px;}
.y1d5{bottom:580.682880px;}
.y3c{bottom:583.614720px;}
.y70{bottom:584.280000px;}
.y1ac{bottom:585.720000px;}
.y11e{bottom:587.340000px;}
.y15a{bottom:588.966480px;}
.y94{bottom:594.187920px;}
.yc2{bottom:599.220000px;}
.y103{bottom:602.100000px;}
.y137{bottom:602.280000px;}
.y1d4{bottom:603.900000px;}
.y3b{bottom:606.649680px;}
.y1ab{bottom:608.792400px;}
.y159{bottom:609.120000px;}
.ye3{bottom:610.200000px;}
.y17c{bottom:610.200720px;}
.y6f{bottom:622.260000px;}
.yc1{bottom:622.447920px;}
.y11d{bottom:625.320000px;}
.y102{bottom:625.500000px;}
.y1d3{bottom:627.120000px;}
.y3a{bottom:629.866800px;}
.y1aa{bottom:632.009520px;}
.y93{bottom:632.160000px;}
.y158{bottom:632.340000px;}
.y17b{bottom:633.600000px;}
.y136{bottom:640.260720px;}
.y6e{bottom:645.660000px;}
.ye2{bottom:648.360000px;}
.y11c{bottom:648.540000px;}
.y39{bottom:653.083920px;}
.y1a9{bottom:655.226640px;}
.y92{bottom:655.380000px;}
.yc0{bottom:660.420000px;}
.y101{bottom:663.480000px;}
.y135{bottom:663.660000px;}
.y1d2{bottom:668.350800px;}
.y6d{bottom:668.700000px;}
.y157{bottom:670.320000px;}
.y17a{bottom:671.580000px;}
.ye1{bottom:671.760000px;}
.y4c{bottom:676.083600px;}
.y1a8{bottom:678.261600px;}
.y91{bottom:678.600000px;}
.y5e{bottom:683.820000px;}
.ybf{bottom:683.822880px;}
.y11b{bottom:686.520000px;}
.y100{bottom:686.700000px;}
.y18b{bottom:686.702880px;}
.y38{bottom:691.056000px;}
.y1d1{bottom:691.385760px;}
.y156{bottom:693.540000px;}
.y179{bottom:694.985040px;}
.y1a7{bottom:701.478720px;}
.yaf{bottom:701.640000px;}
.y134{bottom:701.825040px;}
.y6c{bottom:706.680000px;}
.y5d{bottom:707.040000px;}
.ye0{bottom:709.920000px;}
.yff{bottom:709.927920px;}
.y37{bottom:714.273120px;}
.y4b{bottom:714.420000px;}
.y1d0{bottom:714.602880px;}
.y90{bottom:716.580000px;}
.y155{bottom:716.760000px;}
.y178{bottom:718.020000px;}
.y1a6{bottom:724.695840px;}
.y133{bottom:724.860000px;}
.y6b{bottom:730.080000px;}
.y5c{bottom:730.260000px;}
.ydf{bottom:733.145040px;}
.y36{bottom:737.490240px;}
.y1cf{bottom:737.820000px;}
.yae{bottom:739.800000px;}
.y8f{bottom:739.980000px;}
.ybe{bottom:745.192080px;}
.y1a5{bottom:747.730800px;}
.yfe{bottom:747.900000px;}
.y11a{bottom:747.911520px;}
.y132{bottom:748.080000px;}
.y5b{bottom:753.485040px;}
.y154{bottom:754.740000px;}
.y177{bottom:756.000000px;}
.yde{bottom:756.180000px;}
.y35{bottom:760.707360px;}
.y8e{bottom:763.020000px;}
.ybd{bottom:765.180000px;}
.y6a{bottom:768.060000px;}
.y1a4{bottom:770.947920px;}
.y18a{bottom:771.300000px;}
.yfd{bottom:771.307920px;}
.y119{bottom:771.310800px;}
.y5a{bottom:776.520000px;}
.y1ce{bottom:778.881600px;}
.y176{bottom:779.400000px;}
.y34{bottom:783.924480px;}
.ybc{bottom:788.400000px;}
.y153{bottom:792.900000px;}
.ydd{bottom:794.160000px;}
.y1a3{bottom:794.165040px;}
.y59{bottom:799.747920px;}
.y8d{bottom:801.000000px;}
.y1cd{bottom:802.098720px;}
.y69{bottom:806.220000px;}
.y33{bottom:806.959440px;}
.yfc{bottom:809.280000px;}
.y118{bottom:809.282880px;}
.yc{bottom:809.522640px;}
.y152{bottom:816.305040px;}
.y1a2{bottom:817.200000px;}
.y175{bottom:817.380000px;}
.y58{bottom:822.965040px;}
.yad{bottom:824.400000px;}
.y8c{bottom:824.402880px;}
.y1cc{bottom:825.315840px;}
.ybb{bottom:826.380720px;}
.ydc{bottom:832.320000px;}
.yfb{bottom:832.500000px;}
.y189{bottom:832.502880px;}
.y131{bottom:832.508640px;}
.y151{bottom:839.340000px;}
.y1a1{bottom:840.430800px;}
.y174{bottom:840.780000px;}
.y68{bottom:844.380000px;}
.y32{bottom:844.931520px;}
.y57{bottom:846.000000px;}
.y8b{bottom:847.620000px;}
.yb{bottom:847.676880px;}
.y1cb{bottom:848.350800px;}
.yba{bottom:849.780000px;}
.ydb{bottom:855.720000px;}
.yac{bottom:862.380000px;}
.y1a0{bottom:863.647920px;}
.y67{bottom:867.780000px;}
.y31{bottom:868.330800px;}
.y56{bottom:869.225760px;}
.yfa{bottom:870.479850px;}
.y130{bottom:870.480720px;}
.y1ca{bottom:871.567920px;}
.y150{bottom:877.320000px;}
.y173{bottom:878.760000px;}
.y117{bottom:878.947920px;}
.y8a{bottom:885.600000px;}
.yab{bottom:885.787920px;}
.ya{bottom:885.831120px;}
.y19f{bottom:886.682880px;}
.yb9{bottom:887.760000px;}
.y30{bottom:891.547920px;}
.y55{bottom:892.442880px;}
.yda{bottom:893.700000px;}
.y188{bottom:893.705760px;}
.yf9{bottom:893.880000px;}
.y1c9{bottom:894.785040px;}
.y14f{bottom:900.720000px;}
.y172{bottom:901.980000px;}
.y20{bottom:901.982880px;}
.y66{bottom:905.760000px;}
.y89{bottom:908.820000px;}
.y19e{bottom:909.900000px;}
.yb8{bottom:911.160000px;}
.y2f{bottom:914.582880px;}
.y54{bottom:915.660000px;}
.y116{bottom:916.920000px;}
.y12f{bottom:917.100000px;}
.yd9{bottom:917.107920px;}
.y1c8{bottom:917.820000px;}
.yaa{bottom:923.760000px;}
.y14e{bottom:923.945040px;}
.y9{bottom:923.985360px;}
.y1f{bottom:931.860000px;}
.yf8{bottom:931.860720px;}
.y2e{bottom:937.800000px;}
.y53{bottom:938.702880px;}
.y171{bottom:939.960000px;}
.y65{bottom:943.920000px;}
.y88{bottom:946.808640px;}
.ya9{bottom:946.980000px;}
.y17{bottom:947.340000px;}
.yb7{bottom:949.142880px;}
.y19d{bottom:952.920000px;}
.yd8{bottom:955.080000px;}
.yf7{bottom:955.260000px;}
.y1c7{bottom:959.050800px;}
.y52{bottom:961.920000px;}
.y8{bottom:962.139600px;}
.y170{bottom:963.360000px;}
.y64{bottom:967.320000px;}
.y2d{bottom:968.940000px;}
.ya8{bottom:970.200000px;}
.y87{bottom:970.207920px;}
.yb6{bottom:972.360000px;}
.yd7{bottom:978.300000px;}
.y1c6{bottom:982.267920px;}
.y14d{bottom:984.968640px;}
.yf6{bottom:993.240000px;}
.ya7{bottom:993.420000px;}
.y7{bottom:1000.293840px;}
.y2c{bottom:1001.144160px;}
.y16f{bottom:1001.340720px;}
.yd6{bottom:1001.520000px;}
.y51{bottom:1004.760000px;}
.y1c5{bottom:1005.302880px;}
.y86{bottom:1008.180000px;}
.y63{bottom:1008.360000px;}
.y14c{bottom:1008.367920px;}
.yb5{bottom:1010.340000px;}
.y15{bottom:1015.920000px;}
.y187{bottom:1016.280000px;}
.y115{bottom:1016.280720px;}
.yf5{bottom:1016.460000px;}
.y16e{bottom:1024.740000px;}
.y1c4{bottom:1028.520000px;}
.ya6{bottom:1031.400000px;}
.y62{bottom:1031.580000px;}
.y85{bottom:1031.585040px;}
.y2b{bottom:1031.929200px;}
.yb4{bottom:1033.740000px;}
.y6{bottom:1038.448080px;}
.yd5{bottom:1039.505760px;}
.y114{bottom:1039.680000px;}
.y14b{bottom:1046.340000px;}
.yb3{bottom:1054.080000px;}
.yf4{bottom:1054.440000px;}
.y84{bottom:1054.620000px;}
.y2a{bottom:1062.532080px;}
.y16d{bottom:1062.720000px;}
.y50{bottom:1068.303600px;}
.y61{bottom:1069.560000px;}
.y14a{bottom:1069.745040px;}
.y1c3{bottom:1069.753680px;}
.y5{bottom:1076.602320px;}
.yd4{bottom:1077.660000px;}
.y113{bottom:1077.660720px;}
.y19c{bottom:1077.663600px;}
.y83{bottom:1077.840000px;}
.yf3{bottom:1077.842880px;}
.y4f{bottom:1091.702880px;}
.y149{bottom:1092.780000px;}
.y1c2{bottom:1092.788640px;}
.y60{bottom:1092.960000px;}
.y29{bottom:1093.134960px;}
.yb2{bottom:1098.540000px;}
.y16c{bottom:1100.880000px;}
.y82{bottom:1101.060000px;}
.y19b{bottom:1101.062880px;}
.y5f{bottom:1113.300000px;}
.y4{bottom:1114.756560px;}
.y4e{bottom:1114.920000px;}
.ya5{bottom:1115.820000px;}
.y148{bottom:1116.000000px;}
.y1c1{bottom:1116.005760px;}
.y28{bottom:1123.920000px;}
.yd3{bottom:1124.100000px;}
.y19a{bottom:1124.280000px;}
.yf2{bottom:1139.040000px;}
.y81{bottom:1139.040720px;}
.y16b{bottom:1139.042880px;}
.ya4{bottom:1139.220000px;}
.y147{bottom:1139.222880px;}
.y11{bottom:1150.560000px;}
.y3{bottom:1152.910800px;}
.y4d{bottom:1157.760000px;}
.y27{bottom:1157.940000px;}
.yb1{bottom:1162.260000px;}
.y80{bottom:1162.440000px;}
.y2{bottom:1173.246480px;}
.y1{bottom:1193.400000px;}
.hd{height:30.240000px;}
.h4{height:35.460000px;}
.he{height:43.246406px;}
.h14{height:46.057500px;}
.h18{height:46.089180px;}
.h17{height:47.545312px;}
.h6{height:48.060000px;}
.h10{height:49.284492px;}
.h15{height:54.596914px;}
.h1a{height:54.608434px;}
.h19{height:54.617074px;}
.h16{height:54.625714px;}
.h2{height:54.628594px;}
.h13{height:58.558725px;}
.h11{height:58.573125px;}
.h12{height:59.378906px;}
.hf{height:61.965000px;}
.h9{height:75.060000px;}
.h5{height:101.984062px;}
.h7{height:120.061500px;}
.hb{height:124.558500px;}
.hc{height:157.253906px;}
.ha{height:188.476875px;}
.h8{height:403.417969px;}
.h3{height:622.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:183.600000px;}
.w6{width:299.520000px;}
.w5{width:311.398500px;}
.w3{width:311.938500px;}
.w4{width:324.181500px;}
.w7{width:500.761500px;}
.w2{width:649.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.800000px;}
.x7{left:14.760000px;}
.xa{left:18.000000px;}
.x4{left:19.800000px;}
.x8{left:27.360000px;}
.xb{left:32.580000px;}
.x11{left:51.445440px;}
.x1{left:54.000000px;}
.x5{left:62.640000px;}
.xd{left:85.500000px;}
.x2{left:121.140000px;}
.x16{left:127.620000px;}
.x17{left:170.100000px;}
.x13{left:276.300000px;}
.x6{left:328.860000px;}
.x9{left:330.120000px;}
.xc{left:338.760000px;}
.xe{left:349.560000px;}
.x14{left:404.828820px;}
.x1b{left:438.847200px;}
.x15{left:442.627020px;}
.x12{left:446.400000px;}
.x18{left:520.368300px;}
.xf{left:538.020000px;}
.x1c{left:554.400000px;}
.x3{left:573.300000px;}
.x1a{left:717.480000px;}
.x19{left:765.354420px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.860160pt;}
.ls28{letter-spacing:-0.824320pt;}
.ls2a{letter-spacing:-0.765440pt;}
.ls20{letter-spacing:-0.706560pt;}
.ls26{letter-spacing:-0.647680pt;}
.ls2b{letter-spacing:-0.588800pt;}
.ls24{letter-spacing:-0.471040pt;}
.ls1d{letter-spacing:-0.412160pt;}
.ls25{letter-spacing:-0.294400pt;}
.ls10{letter-spacing:-0.265600pt;}
.ls14{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.224640pt;}
.ls19{letter-spacing:-0.212480pt;}
.ls5{letter-spacing:-0.202240pt;}
.ls7{letter-spacing:-0.186880pt;}
.lsa{letter-spacing:-0.184320pt;}
.ls18{letter-spacing:-0.176640pt;}
.ls9{letter-spacing:-0.171520pt;}
.ls15{letter-spacing:-0.117760pt;}
.ls16{letter-spacing:-0.058880pt;}
.ls12{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.041216pt;}
.ls1{letter-spacing:0.044800pt;}
.ls29{letter-spacing:0.058880pt;}
.ls1c{letter-spacing:0.074880pt;}
.ls32{letter-spacing:0.105984pt;}
.ls23{letter-spacing:0.107520pt;}
.lsd{letter-spacing:0.117760pt;}
.ls2c{letter-spacing:0.129536pt;}
.ls1e{letter-spacing:0.133120pt;}
.ls1b{letter-spacing:0.149760pt;}
.lsc{letter-spacing:0.159360pt;}
.ls1f{letter-spacing:0.166400pt;}
.ls2e{letter-spacing:0.176640pt;}
.ls3{letter-spacing:0.184320pt;}
.ls8{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.239360pt;}
.ls2d{letter-spacing:0.268800pt;}
.ls2f{letter-spacing:0.294400pt;}
.ls11{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.400000pt;}
.lsf{letter-spacing:0.547136pt;}
.lse{letter-spacing:0.883200pt;}
.ls30{letter-spacing:6.535680pt;}
.ls27{letter-spacing:18.664960pt;}
.ls21{letter-spacing:21.255680pt;}
.ls22{letter-spacing:25.730560pt;}
.ls0{letter-spacing:175.521280pt;}
.ls1a{letter-spacing:754.700800pt;}
.ws0{word-spacing:-111.600000pt;}
.ws1{word-spacing:-51.765760pt;}
.ws39{word-spacing:-17.072640pt;}
.ws57{word-spacing:-16.997760pt;}
.ws34{word-spacing:-16.922880pt;}
.wsb{word-spacing:-16.698240pt;}
.ws56{word-spacing:-13.601280pt;}
.wse{word-spacing:-13.542400pt;}
.ws50{word-spacing:-13.365760pt;}
.wsf{word-spacing:-13.306880pt;}
.wsd{word-spacing:-13.248000pt;}
.ws51{word-spacing:-13.189120pt;}
.ws42{word-spacing:-13.130240pt;}
.wsc{word-spacing:-13.071360pt;}
.ws35{word-spacing:-12.894720pt;}
.ws4f{word-spacing:-12.835840pt;}
.ws48{word-spacing:-12.718080pt;}
.ws3a{word-spacing:-12.600320pt;}
.ws52{word-spacing:-12.541440pt;}
.ws4e{word-spacing:-12.482560pt;}
.ws11{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.952000pt;}
.ws5{word-spacing:-0.960000pt;}
.ws55{word-spacing:-0.824320pt;}
.ws40{word-spacing:-0.765440pt;}
.ws47{word-spacing:-0.647680pt;}
.ws53{word-spacing:-0.588800pt;}
.ws17{word-spacing:-0.471040pt;}
.ws3b{word-spacing:-0.449280pt;}
.wsa{word-spacing:-0.430080pt;}
.ws3c{word-spacing:-0.412160pt;}
.ws37{word-spacing:-0.374400pt;}
.ws3f{word-spacing:-0.353280pt;}
.ws41{word-spacing:-0.294400pt;}
.ws4a{word-spacing:-0.235520pt;}
.ws13{word-spacing:-0.159360pt;}
.ws36{word-spacing:-0.149760pt;}
.ws3d{word-spacing:-0.117760pt;}
.ws4c{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053120pt;}
.ws25{word-spacing:0.058880pt;}
.ws15{word-spacing:0.117760pt;}
.ws6{word-spacing:0.171520pt;}
.ws16{word-spacing:0.176640pt;}
.ws14{word-spacing:0.212480pt;}
.ws44{word-spacing:0.235520pt;}
.ws12{word-spacing:0.265600pt;}
.ws38{word-spacing:0.294400pt;}
.ws3{word-spacing:0.303360pt;}
.ws21{word-spacing:0.353280pt;}
.ws8{word-spacing:0.368640pt;}
.ws33{word-spacing:0.371840pt;}
.ws45{word-spacing:0.412160pt;}
.ws7{word-spacing:0.428800pt;}
.ws43{word-spacing:0.471040pt;}
.ws3e{word-spacing:0.529920pt;}
.ws54{word-spacing:0.588800pt;}
.ws4d{word-spacing:0.706560pt;}
.ws46{word-spacing:0.765440pt;}
.ws24{word-spacing:0.824320pt;}
.ws4b{word-spacing:0.883200pt;}
.ws4{word-spacing:0.910080pt;}
.ws49{word-spacing:0.942080pt;}
.ws9{word-spacing:1.044480pt;}
.ws26{word-spacing:1.472000pt;}
.ws28{word-spacing:2.119680pt;}
.ws29{word-spacing:2.296320pt;}
.ws1c{word-spacing:2.590720pt;}
.ws19{word-spacing:2.767360pt;}
.ws1b{word-spacing:4.003840pt;}
.ws2c{word-spacing:4.180480pt;}
.ws2b{word-spacing:4.651520pt;}
.ws2d{word-spacing:4.769280pt;}
.ws2e{word-spacing:7.224320pt;}
.ws30{word-spacing:7.383680pt;}
.ws22{word-spacing:7.889920pt;}
.ws2a{word-spacing:9.126400pt;}
.ws18{word-spacing:13.660160pt;}
.ws1e{word-spacing:13.836800pt;}
.ws1d{word-spacing:15.544320pt;}
.ws27{word-spacing:16.192000pt;}
.ws20{word-spacing:18.135040pt;}
.ws1a{word-spacing:20.019200pt;}
.ws23{word-spacing:21.962240pt;}
.ws1f{word-spacing:23.080960pt;}
.ws31{word-spacing:29.640960pt;}
.ws32{word-spacing:29.800320pt;}
._0{margin-left:-175.521280pt;}
._b{margin-left:-13.130240pt;}
._6{margin-left:-9.428096pt;}
._a{margin-left:-6.300160pt;}
._7{margin-left:-4.114304pt;}
._5{margin-left:-2.951296pt;}
._3{margin-left:-1.040000pt;}
._2{width:1.243776pt;}
._8{width:7.486080pt;}
._9{width:754.664960pt;}
._4{width:1035.290880pt;}
._1{width:1758.863360pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs1{font-size:101.120000pt;}
.fs3{font-size:186.880000pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:400.000000pt;}
.ye{bottom:-78.720000pt;}
.y1e{bottom:-15.360000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:4.160000pt;}
.y10{bottom:7.840000pt;}
.y16{bottom:12.960000pt;}
.y1d{bottom:16.160000pt;}
.y14{bottom:17.120000pt;}
.y13{bottom:19.040000pt;}
.y25{bottom:22.080000pt;}
.y18{bottom:22.880000pt;}
.y19{bottom:31.520000pt;}
.y24{bottom:39.517120pt;}
.y1b{bottom:51.520000pt;}
.y23{bottom:55.678880pt;}
.y1a{bottom:65.760000pt;}
.y22{bottom:72.000000pt;}
.y21{bottom:88.800000pt;}
.y1c0{bottom:108.800000pt;}
.yb0{bottom:110.880000pt;}
.yf{bottom:111.360000pt;}
.y4a{bottom:112.802080pt;}
.y16a{bottom:113.920000pt;}
.y112{bottom:119.680640pt;}
.y146{bottom:120.480000pt;}
.y199{bottom:125.922560pt;}
.yd2{bottom:128.800000pt;}
.y1bf{bottom:129.456640pt;}
.y7f{bottom:130.400000pt;}
.y169{bottom:134.722560pt;}
.y111{bottom:140.480000pt;}
.y145{bottom:141.280000pt;}
.y12e{bottom:141.760000pt;}
.yd1{bottom:146.560000pt;}
.y1be{bottom:149.932160pt;}
.y7e{bottom:151.200000pt;}
.ya3{bottom:152.480000pt;}
.y186{bottom:153.600000pt;}
.y168{bottom:155.360000pt;}
.y12{bottom:157.120000pt;}
.yf1{bottom:160.800000pt;}
.y144{bottom:161.760000pt;}
.y12d{bottom:162.560000pt;}
.yd0{bottom:167.202560pt;}
.y1bd{bottom:170.569600pt;}
.y49{bottom:171.040000pt;}
.y7d{bottom:171.680000pt;}
.ya2{bottom:173.120000pt;}
.y110{bottom:174.240000pt;}
.y185{bottom:174.400000pt;}
.y198{bottom:180.320000pt;}
.yf0{bottom:181.600000pt;}
.y1c{bottom:181.760000pt;}
.y12c{bottom:183.200000pt;}
.ycf{bottom:187.840000pt;}
.y167{bottom:189.120000pt;}
.y1bc{bottom:191.207040pt;}
.y10f{bottom:194.880000pt;}
.y143{bottom:195.520000pt;}
.y197{bottom:200.960000pt;}
.y1e3{bottom:201.130240pt;}
.y7c{bottom:205.440000pt;}
.ya1{bottom:206.880640pt;}
.y166{bottom:209.760000pt;}
.y1bb{bottom:211.682560pt;}
.yef{bottom:215.360640pt;}
.y142{bottom:216.320000pt;}
.y12b{bottom:216.960000pt;}
.yce{bottom:221.600000pt;}
.y1e2{bottom:221.929600pt;}
.yd{bottom:222.400000pt;}
.y7b{bottom:226.247040pt;}
.y48{bottom:226.702080pt;}
.ya0{bottom:227.680000pt;}
.y10e{bottom:228.640000pt;}
.y184{bottom:228.640640pt;}
.y165{bottom:230.400000pt;}
.y1ba{bottom:232.320000pt;}
.y196{bottom:234.720000pt;}
.yee{bottom:236.160000pt;}
.y12a{bottom:237.600000pt;}
.ycd{bottom:242.242560pt;}
.y1e1{bottom:242.567040pt;}
.y9f{bottom:248.327040pt;}
.y10d{bottom:249.440000pt;}
.y141{bottom:252.800000pt;}
.y1b9{bottom:252.974080pt;}
.y195{bottom:255.520000pt;}
.y129{bottom:258.240000pt;}
.y47{bottom:258.706880pt;}
.y7a{bottom:260.000000pt;}
.ycc{bottom:262.880000pt;}
.y1e0{bottom:263.042560pt;}
.y1e7{bottom:263.840000pt;}
.y164{bottom:264.160000pt;}
.yed{bottom:269.920000pt;}
.y140{bottom:273.447680pt;}
.y1b8{bottom:273.449600pt;}
.y79{bottom:280.800000pt;}
.y9e{bottom:282.080000pt;}
.y183{bottom:283.200000pt;}
.y10c{bottom:283.200640pt;}
.y1df{bottom:283.680000pt;}
.y163{bottom:284.960000pt;}
.y194{bottom:289.280000pt;}
.yec{bottom:290.720000pt;}
.y46{bottom:290.871040pt;}
.y128{bottom:292.002560pt;}
.y1b7{bottom:294.087040pt;}
.ycb{bottom:296.643200pt;}
.y1e6{bottom:299.052160pt;}
.y78{bottom:301.280000pt;}
.y9d{bottom:302.720000pt;}
.y10b{bottom:304.000000pt;}
.y1de{bottom:304.320000pt;}
.y162{bottom:305.600000pt;}
.y13f{bottom:307.200640pt;}
.y45{bottom:309.755200pt;}
.y193{bottom:310.080000pt;}
.y127{bottom:312.640000pt;}
.y1b6{bottom:314.724480pt;}
.y9c{bottom:323.360000pt;}
.yeb{bottom:324.482560pt;}
.y13e{bottom:328.000000pt;}
.y44{bottom:328.480000pt;}
.y192{bottom:330.560000pt;}
.yca{bottom:330.720000pt;}
.y1e5{bottom:332.967040pt;}
.y77{bottom:335.040000pt;}
.y1b5{bottom:335.200000pt;}
.y10a{bottom:337.760000pt;}
.y1dd{bottom:338.092160pt;}
.y161{bottom:339.360000pt;}
.yea{bottom:345.120000pt;}
.y13d{bottom:348.640000pt;}
.y126{bottom:349.120000pt;}
.yc9{bottom:351.360000pt;}
.y1b4{bottom:355.842560pt;}
.y9b{bottom:357.120000pt;}
.y182{bottom:358.400000pt;}
.y1dc{bottom:358.729600pt;}
.y160{bottom:360.000000pt;}
.y43{bottom:361.191040pt;}
.y1e4{bottom:363.040000pt;}
.y191{bottom:364.320000pt;}
.y76{bottom:368.960000pt;}
.y125{bottom:369.920000pt;}
.y109{bottom:371.689600pt;}
.yc8{bottom:371.850880pt;}
.y1b3{bottom:376.480000pt;}
.y9a{bottom:377.920000pt;}
.ye9{bottom:378.880640pt;}
.y181{bottom:379.040000pt;}
.y1db{bottom:379.367040pt;}
.y15f{bottom:380.640000pt;}
.y42{bottom:381.828480pt;}
.y13c{bottom:382.560000pt;}
.y190{bottom:385.127040pt;}
.y75{bottom:389.760000pt;}
.y124{bottom:390.565760pt;}
.y108{bottom:392.327040pt;}
.y1b2{bottom:396.965120pt;}
.ye8{bottom:399.680000pt;}
.y1da{bottom:400.004480pt;}
.y41{bottom:402.465920pt;}
.y13b{bottom:403.040000pt;}
.y18f{bottom:405.764480pt;}
.yc7{bottom:405.765760pt;}
.y123{bottom:408.480000pt;}
.y74{bottom:410.400000pt;}
.y99{bottom:411.680000pt;}
.y180{bottom:412.800640pt;}
.y15e{bottom:414.400000pt;}
.y1b1{bottom:417.602560pt;}
.y1d9{bottom:420.480000pt;}
.y40{bottom:423.103360pt;}
.yc6{bottom:423.680000pt;}
.y107{bottom:426.080000pt;}
.y18e{bottom:426.240000pt;}
.y122{bottom:426.400000pt;}
.y98{bottom:432.320000pt;}
.ye7{bottom:433.440000pt;}
.y17f{bottom:433.600000pt;}
.y1b0{bottom:438.240000pt;}
.y73{bottom:444.160000pt;}
.yc5{bottom:444.327040pt;}
.y121{bottom:446.882560pt;}
.y106{bottom:446.887040pt;}
.y15d{bottom:450.880640pt;}
.y97{bottom:452.960000pt;}
.ye6{bottom:454.240000pt;}
.y1d8{bottom:454.250240pt;}
.y3f{bottom:456.856320pt;}
.y13a{bottom:457.600000pt;}
.y1af{bottom:458.720000pt;}
.y18d{bottom:460.000000pt;}
.y72{bottom:464.800000pt;}
.y17e{bottom:467.360000pt;}
.y120{bottom:467.520000pt;}
.y15c{bottom:471.680000pt;}
.y1d7{bottom:475.049600pt;}
.y3e{bottom:477.493760pt;}
.yc4{bottom:478.080000pt;}
.y1ae{bottom:479.360000pt;}
.y105{bottom:480.640000pt;}
.y18c{bottom:480.802560pt;}
.y96{bottom:486.720000pt;}
.ye5{bottom:488.000000pt;}
.y17d{bottom:488.160000pt;}
.y139{bottom:494.080000pt;}
.y1d6{bottom:495.687040pt;}
.y3d{bottom:498.131200pt;}
.y71{bottom:498.560000pt;}
.yc3{bottom:498.880000pt;}
.y1ad{bottom:500.002560pt;}
.y11f{bottom:501.280000pt;}
.y104{bottom:501.440000pt;}
.y15b{bottom:505.611520pt;}
.y95{bottom:507.529600pt;}
.ye4{bottom:508.640000pt;}
.y138{bottom:514.722560pt;}
.y1d5{bottom:516.162560pt;}
.y3c{bottom:518.768640pt;}
.y70{bottom:519.360000pt;}
.y1ac{bottom:520.640000pt;}
.y11e{bottom:522.080000pt;}
.y15a{bottom:523.525760pt;}
.y94{bottom:528.167040pt;}
.yc2{bottom:532.640000pt;}
.y103{bottom:535.200000pt;}
.y137{bottom:535.360000pt;}
.y1d4{bottom:536.800000pt;}
.y3b{bottom:539.244160pt;}
.y1ab{bottom:541.148800pt;}
.y159{bottom:541.440000pt;}
.ye3{bottom:542.400000pt;}
.y17c{bottom:542.400640pt;}
.y6f{bottom:553.120000pt;}
.yc1{bottom:553.287040pt;}
.y11d{bottom:555.840000pt;}
.y102{bottom:556.000000pt;}
.y1d3{bottom:557.440000pt;}
.y3a{bottom:559.881600pt;}
.y1aa{bottom:561.786240pt;}
.y93{bottom:561.920000pt;}
.y158{bottom:562.080000pt;}
.y17b{bottom:563.200000pt;}
.y136{bottom:569.120640pt;}
.y6e{bottom:573.920000pt;}
.ye2{bottom:576.320000pt;}
.y11c{bottom:576.480000pt;}
.y39{bottom:580.519040pt;}
.y1a9{bottom:582.423680pt;}
.y92{bottom:582.560000pt;}
.yc0{bottom:587.040000pt;}
.y101{bottom:589.760000pt;}
.y135{bottom:589.920000pt;}
.y1d2{bottom:594.089600pt;}
.y6d{bottom:594.400000pt;}
.y157{bottom:595.840000pt;}
.y17a{bottom:596.960000pt;}
.ye1{bottom:597.120000pt;}
.y4c{bottom:600.963200pt;}
.y1a8{bottom:602.899200pt;}
.y91{bottom:603.200000pt;}
.y5e{bottom:607.840000pt;}
.ybf{bottom:607.842560pt;}
.y11b{bottom:610.240000pt;}
.y100{bottom:610.400000pt;}
.y18b{bottom:610.402560pt;}
.y38{bottom:614.272000pt;}
.y1d1{bottom:614.565120pt;}
.y156{bottom:616.480000pt;}
.y179{bottom:617.764480pt;}
.y1a7{bottom:623.536640pt;}
.yaf{bottom:623.680000pt;}
.y134{bottom:623.844480pt;}
.y6c{bottom:628.160000pt;}
.y5d{bottom:628.480000pt;}
.ye0{bottom:631.040000pt;}
.yff{bottom:631.047040pt;}
.y37{bottom:634.909440pt;}
.y4b{bottom:635.040000pt;}
.y1d0{bottom:635.202560pt;}
.y90{bottom:636.960000pt;}
.y155{bottom:637.120000pt;}
.y178{bottom:638.240000pt;}
.y1a6{bottom:644.174080pt;}
.y133{bottom:644.320000pt;}
.y6b{bottom:648.960000pt;}
.y5c{bottom:649.120000pt;}
.ydf{bottom:651.684480pt;}
.y36{bottom:655.546880pt;}
.y1cf{bottom:655.840000pt;}
.yae{bottom:657.600000pt;}
.y8f{bottom:657.760000pt;}
.ybe{bottom:662.392960pt;}
.y1a5{bottom:664.649600pt;}
.yfe{bottom:664.800000pt;}
.y11a{bottom:664.810240pt;}
.y132{bottom:664.960000pt;}
.y5b{bottom:669.764480pt;}
.y154{bottom:670.880000pt;}
.y177{bottom:672.000000pt;}
.yde{bottom:672.160000pt;}
.y35{bottom:676.184320pt;}
.y8e{bottom:678.240000pt;}
.ybd{bottom:680.160000pt;}
.y6a{bottom:682.720000pt;}
.y1a4{bottom:685.287040pt;}
.y18a{bottom:685.600000pt;}
.yfd{bottom:685.607040pt;}
.y119{bottom:685.609600pt;}
.y5a{bottom:690.240000pt;}
.y1ce{bottom:692.339200pt;}
.y176{bottom:692.800000pt;}
.y34{bottom:696.821760pt;}
.ybc{bottom:700.800000pt;}
.y153{bottom:704.800000pt;}
.ydd{bottom:705.920000pt;}
.y1a3{bottom:705.924480pt;}
.y59{bottom:710.887040pt;}
.y8d{bottom:712.000000pt;}
.y1cd{bottom:712.976640pt;}
.y69{bottom:716.640000pt;}
.y33{bottom:717.297280pt;}
.yfc{bottom:719.360000pt;}
.y118{bottom:719.362560pt;}
.yc{bottom:719.575680pt;}
.y152{bottom:725.604480pt;}
.y1a2{bottom:726.400000pt;}
.y175{bottom:726.560000pt;}
.y58{bottom:731.524480pt;}
.yad{bottom:732.800000pt;}
.y8c{bottom:732.802560pt;}
.y1cc{bottom:733.614080pt;}
.ybb{bottom:734.560640pt;}
.ydc{bottom:739.840000pt;}
.yfb{bottom:740.000000pt;}
.y189{bottom:740.002560pt;}
.y131{bottom:740.007680pt;}
.y151{bottom:746.080000pt;}
.y1a1{bottom:747.049600pt;}
.y174{bottom:747.360000pt;}
.y68{bottom:750.560000pt;}
.y32{bottom:751.050240pt;}
.y57{bottom:752.000000pt;}
.y8b{bottom:753.440000pt;}
.yb{bottom:753.490560pt;}
.y1cb{bottom:754.089600pt;}
.yba{bottom:755.360000pt;}
.ydb{bottom:760.640000pt;}
.yac{bottom:766.560000pt;}
.y1a0{bottom:767.687040pt;}
.y67{bottom:771.360000pt;}
.y31{bottom:771.849600pt;}
.y56{bottom:772.645120pt;}
.yfa{bottom:773.759867pt;}
.y130{bottom:773.760640pt;}
.y1ca{bottom:774.727040pt;}
.y150{bottom:779.840000pt;}
.y173{bottom:781.120000pt;}
.y117{bottom:781.287040pt;}
.y8a{bottom:787.200000pt;}
.yab{bottom:787.367040pt;}
.ya{bottom:787.405440pt;}
.y19f{bottom:788.162560pt;}
.yb9{bottom:789.120000pt;}
.y30{bottom:792.487040pt;}
.y55{bottom:793.282560pt;}
.yda{bottom:794.400000pt;}
.y188{bottom:794.405120pt;}
.yf9{bottom:794.560000pt;}
.y1c9{bottom:795.364480pt;}
.y14f{bottom:800.640000pt;}
.y172{bottom:801.760000pt;}
.y20{bottom:801.762560pt;}
.y66{bottom:805.120000pt;}
.y89{bottom:807.840000pt;}
.y19e{bottom:808.800000pt;}
.yb8{bottom:809.920000pt;}
.y2f{bottom:812.962560pt;}
.y54{bottom:813.920000pt;}
.y116{bottom:815.040000pt;}
.y12f{bottom:815.200000pt;}
.yd9{bottom:815.207040pt;}
.y1c8{bottom:815.840000pt;}
.yaa{bottom:821.120000pt;}
.y14e{bottom:821.284480pt;}
.y9{bottom:821.320320pt;}
.y1f{bottom:828.320000pt;}
.yf8{bottom:828.320640pt;}
.y2e{bottom:833.600000pt;}
.y53{bottom:834.402560pt;}
.y171{bottom:835.520000pt;}
.y65{bottom:839.040000pt;}
.y88{bottom:841.607680pt;}
.ya9{bottom:841.760000pt;}
.y17{bottom:842.080000pt;}
.yb7{bottom:843.682560pt;}
.y19d{bottom:847.040000pt;}
.yd8{bottom:848.960000pt;}
.yf7{bottom:849.120000pt;}
.y1c7{bottom:852.489600pt;}
.y52{bottom:855.040000pt;}
.y8{bottom:855.235200pt;}
.y170{bottom:856.320000pt;}
.y64{bottom:859.840000pt;}
.y2d{bottom:861.280000pt;}
.ya8{bottom:862.400000pt;}
.y87{bottom:862.407040pt;}
.yb6{bottom:864.320000pt;}
.yd7{bottom:869.600000pt;}
.y1c6{bottom:873.127040pt;}
.y14d{bottom:875.527680pt;}
.yf6{bottom:882.880000pt;}
.ya7{bottom:883.040000pt;}
.y7{bottom:889.150080pt;}
.y2c{bottom:889.905920pt;}
.y16f{bottom:890.080640pt;}
.yd6{bottom:890.240000pt;}
.y51{bottom:893.120000pt;}
.y1c5{bottom:893.602560pt;}
.y86{bottom:896.160000pt;}
.y63{bottom:896.320000pt;}
.y14c{bottom:896.327040pt;}
.yb5{bottom:898.080000pt;}
.y15{bottom:903.040000pt;}
.y187{bottom:903.360000pt;}
.y115{bottom:903.360640pt;}
.yf5{bottom:903.520000pt;}
.y16e{bottom:910.880000pt;}
.y1c4{bottom:914.240000pt;}
.ya6{bottom:916.800000pt;}
.y62{bottom:916.960000pt;}
.y85{bottom:916.964480pt;}
.y2b{bottom:917.270400pt;}
.yb4{bottom:918.880000pt;}
.y6{bottom:923.064960pt;}
.yd5{bottom:924.005120pt;}
.y114{bottom:924.160000pt;}
.y14b{bottom:930.080000pt;}
.yb3{bottom:936.960000pt;}
.yf4{bottom:937.280000pt;}
.y84{bottom:937.440000pt;}
.y2a{bottom:944.472960pt;}
.y16d{bottom:944.640000pt;}
.y50{bottom:949.603200pt;}
.y61{bottom:950.720000pt;}
.y14a{bottom:950.884480pt;}
.y1c3{bottom:950.892160pt;}
.y5{bottom:956.979840pt;}
.yd4{bottom:957.920000pt;}
.y113{bottom:957.920640pt;}
.y19c{bottom:957.923200pt;}
.y83{bottom:958.080000pt;}
.yf3{bottom:958.082560pt;}
.y4f{bottom:970.402560pt;}
.y149{bottom:971.360000pt;}
.y1c2{bottom:971.367680pt;}
.y60{bottom:971.520000pt;}
.y29{bottom:971.675520pt;}
.yb2{bottom:976.480000pt;}
.y16c{bottom:978.560000pt;}
.y82{bottom:978.720000pt;}
.y19b{bottom:978.722560pt;}
.y5f{bottom:989.600000pt;}
.y4{bottom:990.894720pt;}
.y4e{bottom:991.040000pt;}
.ya5{bottom:991.840000pt;}
.y148{bottom:992.000000pt;}
.y1c1{bottom:992.005120pt;}
.y28{bottom:999.040000pt;}
.yd3{bottom:999.200000pt;}
.y19a{bottom:999.360000pt;}
.yf2{bottom:1012.480000pt;}
.y81{bottom:1012.480640pt;}
.y16b{bottom:1012.482560pt;}
.ya4{bottom:1012.640000pt;}
.y147{bottom:1012.642560pt;}
.y11{bottom:1022.720000pt;}
.y3{bottom:1024.809600pt;}
.y4d{bottom:1029.120000pt;}
.y27{bottom:1029.280000pt;}
.yb1{bottom:1033.120000pt;}
.y80{bottom:1033.280000pt;}
.y2{bottom:1042.885760pt;}
.y1{bottom:1060.800000pt;}
.hd{height:26.880000pt;}
.h4{height:31.520000pt;}
.he{height:38.441250pt;}
.h14{height:40.940000pt;}
.h18{height:40.968160pt;}
.h17{height:42.262500pt;}
.h6{height:42.720000pt;}
.h10{height:43.808438pt;}
.h15{height:48.530590pt;}
.h1a{height:48.540830pt;}
.h19{height:48.548510pt;}
.h16{height:48.556190pt;}
.h2{height:48.558750pt;}
.h13{height:52.052200pt;}
.h11{height:52.065000pt;}
.h12{height:52.781250pt;}
.hf{height:55.080000pt;}
.h9{height:66.720000pt;}
.h5{height:90.652500pt;}
.h7{height:106.721333pt;}
.hb{height:110.718667pt;}
.hc{height:139.781250pt;}
.ha{height:167.535000pt;}
.h8{height:358.593750pt;}
.h3{height:553.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:163.200000pt;}
.w6{width:266.240000pt;}
.w5{width:276.798667pt;}
.w3{width:277.278667pt;}
.w4{width:288.161333pt;}
.w7{width:445.121333pt;}
.w2{width:577.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.600000pt;}
.x7{left:13.120000pt;}
.xa{left:16.000000pt;}
.x4{left:17.600000pt;}
.x8{left:24.320000pt;}
.xb{left:28.960000pt;}
.x11{left:45.729280pt;}
.x1{left:48.000000pt;}
.x5{left:55.680000pt;}
.xd{left:76.000000pt;}
.x2{left:107.680000pt;}
.x16{left:113.440000pt;}
.x17{left:151.200000pt;}
.x13{left:245.600000pt;}
.x6{left:292.320000pt;}
.x9{left:293.440000pt;}
.xc{left:301.120000pt;}
.xe{left:310.720000pt;}
.x14{left:359.847840pt;}
.x1b{left:390.086400pt;}
.x15{left:393.446240pt;}
.x12{left:396.800000pt;}
.x18{left:462.549600pt;}
.xf{left:478.240000pt;}
.x1c{left:492.800000pt;}
.x3{left:509.600000pt;}
.x1a{left:637.760000pt;}
.x19{left:680.315040pt;}
}




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