
    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_a261785a47242d537d9867e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f4fc19bfa79bb0f4854049cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dbc62778578efa4ef2bdd366.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_b89d9ffb8871c594c34695f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_9b9e447cd51d29c8e271d533.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5282c0fce5a3a0f359bea795.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_af16a4b3fa62f5d8b9260ac5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_aa095911b72044966b5a621b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v1{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.118800px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:1.049760px;}
.ls14{letter-spacing:11.556000px;}
.lsd{letter-spacing:14.580000px;}
.ls17{letter-spacing:25.308000px;}
.ls16{letter-spacing:36.900000px;}
.ls11{letter-spacing:52.668000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.wsb{word-spacing:-19.448640px;}
.ws7{word-spacing:-19.431360px;}
.ws2{word-spacing:-17.208000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.094800px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.140000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-2.119680px;}
._0{margin-left:-1.026000px;}
._1{width:1.200000px;}
._8{width:3.039360px;}
._7{width:4.170240px;}
._6{width:5.258880px;}
._b{width:6.434880px;}
._d{width:7.599120px;}
._3{width:8.876160px;}
._c{width:9.993600px;}
._a{width:11.072880px;}
._4{width:12.105600px;}
._9{width:13.321680px;}
._15{width:14.701680px;}
._10{width:16.578000px;}
._16{width:18.306000px;}
._1a{width:19.332000px;}
._24{width:20.621280px;}
._13{width:21.709680px;}
._12{width:22.950000px;}
._14{width:24.724320px;}
._1e{width:26.082000px;}
._e{width:27.108000px;}
._f{width:28.243680px;}
._1b{width:29.806320px;}
._17{width:31.644000px;}
._18{width:32.670000px;}
._1f{width:33.690000px;}
._1c{width:34.830000px;}
._1d{width:36.060000px;}
._36{width:37.098000px;}
._11{width:38.718000px;}
._20{width:40.122000px;}
._21{width:41.310000px;}
._22{width:43.146000px;}
._23{width:44.334000px;}
._28{width:47.898000px;}
._27{width:49.302000px;}
._3c{width:50.706000px;}
._19{width:52.272000px;}
._33{width:53.419680px;}
._2d{width:54.864000px;}
._30{width:56.754000px;}
._2f{width:57.943680px;}
._25{width:62.280000px;}
._26{width:63.672000px;}
._2b{width:65.502000px;}
._38{width:67.176000px;}
._3d{width:68.832000px;}
._39{width:73.008000px;}
._2a{width:78.624000px;}
._29{width:80.406000px;}
._3b{width:110.160000px;}
._3a{width:111.402000px;}
._31{width:114.330000px;}
._32{width:115.374000px;}
._2c{width:124.470000px;}
._35{width:152.821680px;}
._34{width:153.900000px;}
._2e{width:171.721680px;}
._3e{width:239.544000px;}
._37{width:635.094000px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y41{bottom:8.100000px;}
.y16e{bottom:9.720000px;}
.y162{bottom:10.080000px;}
.y160{bottom:10.110000px;}
.y16c{bottom:10.125000px;}
.y166{bottom:10.440000px;}
.y164{bottom:10.620000px;}
.y12d{bottom:11.190000px;}
.yff{bottom:11.325000px;}
.y110{bottom:11.340000px;}
.y102{bottom:11.505000px;}
.y104{bottom:11.520000px;}
.y120{bottom:11.685000px;}
.y106{bottom:11.700000px;}
.y13c{bottom:11.745000px;}
.y4{bottom:15.660000px;}
.y133{bottom:16.740000px;}
.y2{bottom:18.900000px;}
.y170{bottom:19.080000px;}
.y130{bottom:24.300000px;}
.y168{bottom:27.900000px;}
.y175{bottom:27.930000px;}
.y16b{bottom:27.945000px;}
.y40{bottom:28.080000px;}
.y136{bottom:29.340000px;}
.y101{bottom:29.505000px;}
.y103{bottom:29.520000px;}
.y138{bottom:34.560000px;}
.y5{bottom:39.780000px;}
.y12f{bottom:42.120000px;}
.y10b{bottom:47.340000px;}
.y3f{bottom:47.880000px;}
.y140{bottom:52.560000px;}
.y1{bottom:60.660000px;}
.y135{bottom:65.160000px;}
.y13a{bottom:65.385000px;}
.y3d{bottom:67.680000px;}
.y9a{bottom:68.940000px;}
.y13e{bottom:83.160000px;}
.y3c{bottom:87.480000px;}
.y99{bottom:88.740000px;}
.y3b{bottom:107.490000px;}
.yd5{bottom:108.000000px;}
.y97{bottom:109.080000px;}
.y2d{bottom:109.620000px;}
.y7d{bottom:109.980000px;}
.y105{bottom:113.040000px;}
.y191{bottom:113.220000px;}
.y1ac{bottom:117.180000px;}
.y2e{bottom:117.720000px;}
.y12c{bottom:122.760000px;}
.yd4{bottom:126.000000px;}
.y1da{bottom:126.180000px;}
.y96{bottom:126.900000px;}
.y3a{bottom:127.290000px;}
.y2c{bottom:127.620000px;}
.y7c{bottom:127.980000px;}
.y15e{bottom:128.880000px;}
.y190{bottom:131.040000px;}
.y1ab{bottom:135.000000px;}
.y12b{bottom:140.580000px;}
.yd3{bottom:143.820000px;}
.y1d9{bottom:144.000000px;}
.y95{bottom:144.720000px;}
.y2b{bottom:145.440000px;}
.y7b{bottom:145.800000px;}
.y39{bottom:147.090000px;}
.y18f{bottom:148.860000px;}
.y1aa{bottom:153.000000px;}
.y15d{bottom:155.700000px;}
.y12a{bottom:158.400000px;}
.yd2{bottom:161.640000px;}
.y1d8{bottom:162.000000px;}
.y94{bottom:162.540000px;}
.y2a{bottom:163.260000px;}
.y7a{bottom:163.620000px;}
.y3e{bottom:165.600000px;}
.y18e{bottom:166.680000px;}
.y38{bottom:166.890000px;}
.y1a9{bottom:170.820000px;}
.y129{bottom:176.220000px;}
.yd1{bottom:179.460000px;}
.y1d7{bottom:179.820000px;}
.y93{bottom:180.360000px;}
.y29{bottom:181.080000px;}
.y79{bottom:181.440000px;}
.y15c{bottom:182.880000px;}
.y18d{bottom:184.680000px;}
.y37{bottom:186.690000px;}
.y1a8{bottom:188.640000px;}
.yd0{bottom:197.280000px;}
.y1d6{bottom:197.640000px;}
.y92{bottom:198.180000px;}
.y28{bottom:198.900000px;}
.y78{bottom:199.260000px;}
.y15b{bottom:200.880000px;}
.y1f4{bottom:201.420000px;}
.y18c{bottom:202.500000px;}
.y128{bottom:203.040000px;}
.y1a7{bottom:206.490000px;}
.y36{bottom:206.670000px;}
.y100{bottom:210.105000px;}
.ycf{bottom:215.310000px;}
.y1d5{bottom:215.490000px;}
.y91{bottom:215.850000px;}
.y27{bottom:216.930000px;}
.y77{bottom:217.290000px;}
.y18b{bottom:220.350000px;}
.y127{bottom:220.890000px;}
.y1f3{bottom:223.410000px;}
.y1a6{bottom:224.310000px;}
.y35{bottom:226.470000px;}
.y15a{bottom:227.730000px;}
.yce{bottom:233.130000px;}
.y1d4{bottom:233.310000px;}
.y26{bottom:234.750000px;}
.y76{bottom:235.110000px;}
.y18a{bottom:240.150000px;}
.y126{bottom:240.870000px;}
.y1a5{bottom:242.310000px;}
.y90{bottom:243.030000px;}
.y159{bottom:245.550000px;}
.y34{bottom:246.270000px;}
.y1f2{bottom:250.230000px;}
.ycd{bottom:250.950000px;}
.y1d3{bottom:251.310000px;}
.y75{bottom:252.930000px;}
.yfe{bottom:258.525000px;}
.y1a4{bottom:260.130000px;}
.y8f{bottom:260.850000px;}
.y25{bottom:261.570000px;}
.y158{bottom:263.370000px;}
.y33{bottom:266.070000px;}
.y1f1{bottom:268.230000px;}
.ycc{bottom:268.770000px;}
.y1d2{bottom:269.130000px;}
.y74{bottom:270.750000px;}
.y189{bottom:272.910000px;}
.y125{bottom:273.630000px;}
.y1a3{bottom:277.950000px;}
.y8e{bottom:278.670000px;}
.y32{bottom:285.870000px;}
.y1f0{bottom:286.050000px;}
.ycb{bottom:286.590000px;}
.y1d1{bottom:286.950000px;}
.y24{bottom:288.390000px;}
.y73{bottom:288.570000px;}
.y157{bottom:290.190000px;}
.y188{bottom:290.910000px;}
.yfd{bottom:294.330000px;}
.y124{bottom:295.605000px;}
.y1a2{bottom:295.770000px;}
.y8d{bottom:296.490000px;}
.y1ef{bottom:303.870000px;}
.yca{bottom:304.410000px;}
.y1d0{bottom:304.770000px;}
.y31{bottom:305.850000px;}
.y72{bottom:306.390000px;}
.y156{bottom:308.010000px;}
.y187{bottom:308.730000px;}
.y1a1{bottom:313.590000px;}
.y8c{bottom:314.490000px;}
.y23{bottom:315.210000px;}
.yfc{bottom:321.510000px;}
.y1ee{bottom:321.690000px;}
.yc9{bottom:322.410000px;}
.y1cf{bottom:322.590000px;}
.y71{bottom:324.390000px;}
.y30{bottom:325.650000px;}
.y155{bottom:326.010000px;}
.y123{bottom:326.205000px;}
.y186{bottom:326.550000px;}
.y8b{bottom:332.310000px;}
.y1a0{bottom:333.570000px;}
.yfb{bottom:339.510000px;}
.yc8{bottom:340.230000px;}
.y1ce{bottom:340.410000px;}
.y22{bottom:342.030000px;}
.y70{bottom:342.210000px;}
.y154{bottom:343.830000px;}
.y185{bottom:344.370000px;}
.y8a{bottom:350.130000px;}
.y2f{bottom:355.935000px;}
.y122{bottom:356.805000px;}
.yfa{bottom:357.330000px;}
.y1ed{bottom:357.510000px;}
.y1cd{bottom:358.410000px;}
.y6f{bottom:360.030000px;}
.y153{bottom:361.650000px;}
.y184{bottom:362.190000px;}
.y19f{bottom:366.330000px;}
.yc7{bottom:366.690000px;}
.y89{bottom:367.950000px;}
.y21{bottom:369.030000px;}
.yf9{bottom:375.150000px;}
.y1ec{bottom:375.330000px;}
.y1cc{bottom:376.230000px;}
.y6e{bottom:377.850000px;}
.y152{bottom:379.470000px;}
.y183{bottom:380.190000px;}
.y19e{bottom:384.150000px;}
.y88{bottom:385.770000px;}
.yc6{bottom:386.850000px;}
.y121{bottom:387.405000px;}
.yf8{bottom:392.970000px;}
.y1eb{bottom:393.150000px;}
.y1cb{bottom:394.050000px;}
.y6d{bottom:395.670000px;}
.y151{bottom:397.290000px;}
.y182{bottom:398.010000px;}
.y19d{bottom:401.970000px;}
.y87{bottom:403.590000px;}
.y20{bottom:404.670000px;}
.yf7{bottom:410.790000px;}
.y1ea{bottom:410.970000px;}
.y1ca{bottom:411.870000px;}
.y6c{bottom:413.670000px;}
.y150{bottom:415.290000px;}
.y181{bottom:415.830000px;}
.y11f{bottom:418.005000px;}
.yc5{bottom:419.610000px;}
.y19c{bottom:419.790000px;}
.y86{bottom:421.590000px;}
.y1f{bottom:422.490000px;}
.yf6{bottom:428.610000px;}
.y1e9{bottom:428.790000px;}
.y1c9{bottom:429.690000px;}
.y6b{bottom:431.490000px;}
.y14f{bottom:433.110000px;}
.yc4{bottom:437.610000px;}
.y85{bottom:439.410000px;}
.y1e{bottom:442.155000px;}
.y180{bottom:442.695000px;}
.yf5{bottom:446.655000px;}
.y1c8{bottom:447.735000px;}
.y11e{bottom:448.635000px;}
.y6a{bottom:449.355000px;}
.y14e{bottom:450.975000px;}
.yc3{bottom:455.475000px;}
.y19b{bottom:455.655000px;}
.y84{bottom:457.275000px;}
.y17f{bottom:460.515000px;}
.yf4{bottom:464.475000px;}
.y1e8{bottom:464.655000px;}
.y1c7{bottom:465.555000px;}
.y1d{bottom:466.095000px;}
.y69{bottom:467.175000px;}
.y14d{bottom:468.795000px;}
.yc2{bottom:473.295000px;}
.y19a{bottom:473.475000px;}
.y17e{bottom:478.335000px;}
.y11d{bottom:479.235000px;}
.yf3{bottom:482.295000px;}
.y1e7{bottom:482.475000px;}
.y1c6{bottom:483.375000px;}
.y83{bottom:484.095000px;}
.y68{bottom:484.995000px;}
.y14c{bottom:486.615000px;}
.y1c{bottom:489.855000px;}
.yc1{bottom:491.115000px;}
.y199{bottom:491.295000px;}
.y17d{bottom:496.335000px;}
.yf2{bottom:500.115000px;}
.y1e6{bottom:500.295000px;}
.y1c5{bottom:501.195000px;}
.y82{bottom:501.915000px;}
.y67{bottom:502.815000px;}
.y14b{bottom:504.435000px;}
.yc0{bottom:508.935000px;}
.y198{bottom:509.115000px;}
.y11c{bottom:509.835000px;}
.y1b{bottom:513.615000px;}
.y17c{bottom:514.155000px;}
.yf1{bottom:517.935000px;}
.y1e5{bottom:518.115000px;}
.y1c4{bottom:519.015000px;}
.y81{bottom:519.915000px;}
.y66{bottom:520.815000px;}
.y14a{bottom:522.435000px;}
.ybf{bottom:526.935000px;}
.y17b{bottom:531.975000px;}
.yf0{bottom:535.935000px;}
.y1c3{bottom:536.835000px;}
.y1a{bottom:537.195000px;}
.y80{bottom:537.735000px;}
.y65{bottom:538.635000px;}
.y149{bottom:540.255000px;}
.y197{bottom:544.935000px;}
.y11b{bottom:545.655000px;}
.y17a{bottom:549.795000px;}
.ybe{bottom:553.395000px;}
.yef{bottom:553.755000px;}
.y1e4{bottom:553.935000px;}
.y1c2{bottom:554.835000px;}
.y7f{bottom:555.555000px;}
.y148{bottom:558.075000px;}
.y64{bottom:558.435000px;}
.y19{bottom:559.155000px;}
.y196{bottom:562.755000px;}
.y179{bottom:567.615000px;}
.yee{bottom:571.575000px;}
.y1e3{bottom:571.755000px;}
.y1c1{bottom:572.655000px;}
.y11a{bottom:573.015000px;}
.y7e{bottom:573.375000px;}
.y147{bottom:575.895000px;}
.ybd{bottom:580.575000px;}
.y178{bottom:585.615000px;}
.yed{bottom:589.395000px;}
.y1e2{bottom:589.575000px;}
.y18{bottom:589.935000px;}
.y1c0{bottom:590.475000px;}
.y63{bottom:591.195000px;}
.y146{bottom:593.715000px;}
.y119{bottom:594.975000px;}
.ybc{bottom:598.395000px;}
.y177{bottom:603.435000px;}
.yec{bottom:607.215000px;}
.y1e1{bottom:607.395000px;}
.y1bf{bottom:608.295000px;}
.y62{bottom:609.015000px;}
.y145{bottom:611.535000px;}
.ybb{bottom:616.215000px;}
.y17{bottom:620.715000px;}
.yeb{bottom:625.035000px;}
.y1e0{bottom:625.215000px;}
.y118{bottom:625.575000px;}
.y1be{bottom:626.115000px;}
.y61{bottom:627.015000px;}
.y144{bottom:629.535000px;}
.y176{bottom:630.255000px;}
.yba{bottom:634.035000px;}
.yea{bottom:643.035000px;}
.y1bd{bottom:644.115000px;}
.y60{bottom:644.835000px;}
.yb9{bottom:652.035000px;}
.y174{bottom:652.215000px;}
.y117{bottom:656.175000px;}
.y143{bottom:656.355000px;}
.ye9{bottom:660.495000px;}
.y1df{bottom:661.035000px;}
.y1bc{bottom:661.935000px;}
.y5f{bottom:662.655000px;}
.y16{bottom:669.495000px;}
.yb8{bottom:669.855000px;}
.y141{bottom:678.345000px;}
.y1de{bottom:678.885000px;}
.y1bb{bottom:679.785000px;}
.y5e{bottom:680.505000px;}
.y116{bottom:686.805000px;}
.yb7{bottom:687.705000px;}
.y15{bottom:691.305000px;}
.y1dd{bottom:696.705000px;}
.y1ba{bottom:697.605000px;}
.y173{bottom:697.785000px;}
.y5d{bottom:698.325000px;}
.yb6{bottom:705.525000px;}
.y142{bottom:713.985000px;}
.y1dc{bottom:714.525000px;}
.y1b9{bottom:715.425000px;}
.y5c{bottom:716.325000px;}
.y115{bottom:717.405000px;}
.yb5{bottom:723.345000px;}
.y1db{bottom:732.345000px;}
.y1b8{bottom:733.245000px;}
.y5b{bottom:734.145000px;}
.y14{bottom:739.905000px;}
.yb4{bottom:741.165000px;}
.y172{bottom:743.145000px;}
.y13d{bottom:744.585000px;}
.y195{bottom:750.165000px;}
.y1b7{bottom:751.245000px;}
.y5a{bottom:751.965000px;}
.y114{bottom:753.225000px;}
.yb3{bottom:759.165000px;}
.y194{bottom:768.165000px;}
.y1b6{bottom:769.065000px;}
.y59{bottom:769.785000px;}
.yb2{bottom:776.985000px;}
.y113{bottom:780.405000px;}
.y193{bottom:785.985000px;}
.y13{bottom:786.165000px;}
.y1b5{bottom:786.885000px;}
.y58{bottom:787.605000px;}
.y171{bottom:788.685000px;}
.yb1{bottom:794.805000px;}
.y112{bottom:802.365000px;}
.y192{bottom:803.805000px;}
.y1b4{bottom:804.705000px;}
.y57{bottom:805.425000px;}
.ye8{bottom:812.625000px;}
.y12{bottom:814.965000px;}
.y13f{bottom:816.045000px;}
.yb0{bottom:821.625000px;}
.y1b3{bottom:822.525000px;}
.y56{bottom:823.425000px;}
.ye7{bottom:830.445000px;}
.y111{bottom:832.965000px;}
.y16f{bottom:834.045000px;}
.yaf{bottom:839.445000px;}
.y1b2{bottom:840.345000px;}
.y55{bottom:841.245000px;}
.y139{bottom:846.645000px;}
.ye6{bottom:848.445000px;}
.yae{bottom:857.445000px;}
.y1b1{bottom:858.345000px;}
.y54{bottom:859.065000px;}
.y10f{bottom:863.565000px;}
.ye5{bottom:866.265000px;}
.y11{bottom:866.445000px;}
.yad{bottom:875.265000px;}
.y1b0{bottom:876.165000px;}
.y53{bottom:876.885000px;}
.y16d{bottom:879.585000px;}
.ye4{bottom:884.085000px;}
.y10{bottom:889.125000px;}
.yac{bottom:893.085000px;}
.y1af{bottom:893.985000px;}
.y52{bottom:894.705000px;}
.y10e{bottom:899.565000px;}
.y13b{bottom:900.285000px;}
.ye3{bottom:901.905000px;}
.y16a{bottom:907.125000px;}
.yf{bottom:910.950000px;}
.y1ae{bottom:911.850000px;}
.y51{bottom:912.570000px;}
.ye2{bottom:919.770000px;}
.y10d{bottom:926.790000px;}
.yab{bottom:928.770000px;}
.y50{bottom:930.570000px;}
.y134{bottom:930.930000px;}
.y1ad{bottom:931.650000px;}
.ye{bottom:932.730000px;}
.ye1{bottom:937.590000px;}
.yaa{bottom:946.590000px;}
.y4f{bottom:948.390000px;}
.y10c{bottom:948.750000px;}
.y169{bottom:952.710000px;}
.yd{bottom:954.150000px;}
.ye0{bottom:955.590000px;}
.ya9{bottom:964.590000px;}
.y4e{bottom:966.210000px;}
.ydf{bottom:973.410000px;}
.yc{bottom:976.290000px;}
.ya8{bottom:982.410000px;}
.y4d{bottom:984.030000px;}
.y137{bottom:984.390000px;}
.yde{bottom:991.230000px;}
.y10a{bottom:997.170000px;}
.y167{bottom:998.070000px;}
.ya7{bottom:1000.230000px;}
.y4c{bottom:1001.850000px;}
.ydd{bottom:1009.050000px;}
.y131{bottom:1014.990000px;}
.yb{bottom:1017.510000px;}
.ya6{bottom:1018.050000px;}
.y4b{bottom:1019.850000px;}
.ydc{bottom:1026.870000px;}
.ya{bottom:1029.570000px;}
.ya5{bottom:1035.870000px;}
.y4a{bottom:1037.670000px;}
.y9{bottom:1041.630000px;}
.y165{bottom:1043.610000px;}
.ydb{bottom:1044.870000px;}
.y132{bottom:1050.810000px;}
.y8{bottom:1053.690000px;}
.ya4{bottom:1053.870000px;}
.y49{bottom:1057.470000px;}
.yda{bottom:1062.690000px;}
.y109{bottom:1063.410000px;}
.y7{bottom:1068.270000px;}
.y163{bottom:1071.510000px;}
.ya3{bottom:1071.690000px;}
.yd9{bottom:1080.510000px;}
.y12e{bottom:1081.410000px;}
.ya2{bottom:1089.510000px;}
.y6{bottom:1093.830000px;}
.yd8{bottom:1098.330000px;}
.y161{bottom:1099.590000px;}
.ya1{bottom:1107.330000px;}
.y98{bottom:1107.720000px;}
.y48{bottom:1110.210000px;}
.y108{bottom:1112.010000px;}
.yd7{bottom:1116.150000px;}
.ya0{bottom:1125.150000px;}
.y9c{bottom:1127.310000px;}
.yd6{bottom:1133.610000px;}
.y45{bottom:1142.610000px;}
.y9f{bottom:1142.970000px;}
.y15f{bottom:1145.130000px;}
.y9b{bottom:1156.860000px;}
.y107{bottom:1160.460000px;}
.y44{bottom:1160.640000px;}
.y9e{bottom:1161.000000px;}
.y47{bottom:1169.820000px;}
.y43{bottom:1178.460000px;}
.y9d{bottom:1178.820000px;}
.y42{bottom:1196.280000px;}
.y46{bottom:1196.640000px;}
.h32{height:26.820000px;}
.h2f{height:27.180000px;}
.h2c{height:27.202500px;}
.h2e{height:27.360000px;}
.h24{height:29.700000px;}
.h22{height:29.722500px;}
.h17{height:29.865000px;}
.h1f{height:29.880000px;}
.h21{height:29.901000px;}
.h20{height:29.910000px;}
.h29{height:29.916000px;}
.h2{height:31.135500px;}
.h25{height:34.920000px;}
.h14{height:39.049805px;}
.h7{height:40.985156px;}
.h30{height:44.640000px;}
.h33{height:44.670000px;}
.h31{height:44.676000px;}
.h2d{height:44.820000px;}
.h18{height:47.685000px;}
.h1a{height:47.695500px;}
.h1b{height:47.700000px;}
.h1c{height:47.722500px;}
.h19{height:47.736000px;}
.h27{height:52.740000px;}
.h1e{height:52.971680px;}
.h3{height:52.998047px;}
.h34{height:53.709961px;}
.hf{height:54.421875px;}
.h16{height:55.503491px;}
.h12{height:58.621992px;}
.h8{height:58.651172px;}
.h13{height:58.763250px;}
.h9{height:60.226875px;}
.h23{height:60.300000px;}
.hd{height:65.010937px;}
.h1d{height:65.520000px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.h35{height:70.664062px;}
.h2b{height:70.740000px;}
.he{height:72.562500px;}
.h11{height:78.367500px;}
.ha{height:82.676953px;}
.h26{height:83.340000px;}
.h28{height:83.556000px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h2a{height:101.340000px;}
.h15{height:111.420000px;}
.h10{height:383.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:52.410000px;}
.w16{width:62.265000px;}
.w15{width:68.745000px;}
.w9{width:80.136000px;}
.w6{width:80.265000px;}
.w3{width:80.310000px;}
.w19{width:80.316000px;}
.w1a{width:84.240000px;}
.wa{width:86.940000px;}
.w7{width:86.970000px;}
.w13{width:102.240000px;}
.w10{width:102.780000px;}
.w12{width:103.176000px;}
.wf{width:103.716000px;}
.wd{width:104.940000px;}
.wc{width:106.056000px;}
.wb{width:157.345500px;}
.w11{width:158.425500px;}
.we{width:159.325500px;}
.w14{width:183.975000px;}
.w8{width:199.465500px;}
.w5{width:199.635000px;}
.w18{width:204.865500px;}
.w1b{width:370.870500px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:4.485000px;}
.x1d{left:7.560000px;}
.x5{left:8.640000px;}
.x13{left:10.800000px;}
.x2b{left:12.990000px;}
.x31{left:24.660000px;}
.x28{left:27.570000px;}
.x2a{left:29.700000px;}
.x33{left:33.345000px;}
.x2d{left:34.410000px;}
.x29{left:36.180000px;}
.x12{left:39.240000px;}
.x2c{left:43.920000px;}
.x1{left:45.364500px;}
.x14{left:50.040000px;}
.x2e{left:51.304500px;}
.x1b{left:52.564500px;}
.x6{left:54.000000px;}
.x27{left:57.420000px;}
.xc{left:60.120000px;}
.xe{left:69.120000px;}
.x22{left:75.765000px;}
.x16{left:81.000000px;}
.x2f{left:86.251500px;}
.x17{left:108.036000px;}
.x32{left:132.685500px;}
.x1f{left:209.910000px;}
.x21{left:213.150000px;}
.x2{left:222.370500px;}
.x1c{left:252.930000px;}
.xd{left:256.170000px;}
.x3{left:271.330500px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x7{left:300.495000px;}
.xf{left:308.415000px;}
.x10{left:314.355000px;}
.x20{left:316.875000px;}
.x1e{left:333.975000px;}
.x30{left:337.935000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x18{left:472.080000px;}
.x11{left:473.505000px;}
.x34{left:500.505000px;}
.x35{left:527.505000px;}
.x23{left:656.250000px;}
.x19{left:672.450000px;}
.x15{left:678.210000px;}
.x24{left:725.730000px;}
.x1a{left:753.450000px;}
.x4{left:767.490000px;}
.x25{left:788.730000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.105600pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls14{letter-spacing:10.272000pt;}
.lsd{letter-spacing:12.960000pt;}
.ls17{letter-spacing:22.496000pt;}
.ls16{letter-spacing:32.800000pt;}
.ls11{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.wsb{word-spacing:-17.287680pt;}
.ws7{word-spacing:-17.272320pt;}
.ws2{word-spacing:-15.296000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.417600pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-1.884160pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.066667pt;}
._8{width:2.701653pt;}
._7{width:3.706880pt;}
._6{width:4.674560pt;}
._b{width:5.719893pt;}
._d{width:6.754773pt;}
._3{width:7.889920pt;}
._c{width:8.883200pt;}
._a{width:9.842560pt;}
._4{width:10.760533pt;}
._9{width:11.841493pt;}
._15{width:13.068160pt;}
._10{width:14.736000pt;}
._16{width:16.272000pt;}
._1a{width:17.184000pt;}
._24{width:18.330027pt;}
._13{width:19.297493pt;}
._12{width:20.400000pt;}
._14{width:21.977173pt;}
._1e{width:23.184000pt;}
._e{width:24.096000pt;}
._f{width:25.105493pt;}
._1b{width:26.494507pt;}
._17{width:28.128000pt;}
._18{width:29.040000pt;}
._1f{width:29.946667pt;}
._1c{width:30.960000pt;}
._1d{width:32.053333pt;}
._36{width:32.976000pt;}
._11{width:34.416000pt;}
._20{width:35.664000pt;}
._21{width:36.720000pt;}
._22{width:38.352000pt;}
._23{width:39.408000pt;}
._28{width:42.576000pt;}
._27{width:43.824000pt;}
._3c{width:45.072000pt;}
._19{width:46.464000pt;}
._33{width:47.484160pt;}
._2d{width:48.768000pt;}
._30{width:50.448000pt;}
._2f{width:51.505493pt;}
._25{width:55.360000pt;}
._26{width:56.597333pt;}
._2b{width:58.224000pt;}
._38{width:59.712000pt;}
._3d{width:61.184000pt;}
._39{width:64.896000pt;}
._2a{width:69.888000pt;}
._29{width:71.472000pt;}
._3b{width:97.920000pt;}
._3a{width:99.024000pt;}
._31{width:101.626667pt;}
._32{width:102.554667pt;}
._2c{width:110.640000pt;}
._35{width:135.841493pt;}
._34{width:136.800000pt;}
._2e{width:152.641493pt;}
._3e{width:212.928000pt;}
._37{width:564.528000pt;}
._2{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y41{bottom:7.200000pt;}
.y16e{bottom:8.640000pt;}
.y162{bottom:8.960000pt;}
.y160{bottom:8.986667pt;}
.y16c{bottom:9.000000pt;}
.y166{bottom:9.280000pt;}
.y164{bottom:9.440000pt;}
.y12d{bottom:9.946667pt;}
.yff{bottom:10.066667pt;}
.y110{bottom:10.080000pt;}
.y102{bottom:10.226667pt;}
.y104{bottom:10.240000pt;}
.y120{bottom:10.386667pt;}
.y106{bottom:10.400000pt;}
.y13c{bottom:10.440000pt;}
.y4{bottom:13.920000pt;}
.y133{bottom:14.880000pt;}
.y2{bottom:16.800000pt;}
.y170{bottom:16.960000pt;}
.y130{bottom:21.600000pt;}
.y168{bottom:24.800000pt;}
.y175{bottom:24.826667pt;}
.y16b{bottom:24.840000pt;}
.y40{bottom:24.960000pt;}
.y136{bottom:26.080000pt;}
.y101{bottom:26.226667pt;}
.y103{bottom:26.240000pt;}
.y138{bottom:30.720000pt;}
.y5{bottom:35.360000pt;}
.y12f{bottom:37.440000pt;}
.y10b{bottom:42.080000pt;}
.y3f{bottom:42.560000pt;}
.y140{bottom:46.720000pt;}
.y1{bottom:53.920000pt;}
.y135{bottom:57.920000pt;}
.y13a{bottom:58.120000pt;}
.y3d{bottom:60.160000pt;}
.y9a{bottom:61.280000pt;}
.y13e{bottom:73.920000pt;}
.y3c{bottom:77.760000pt;}
.y99{bottom:78.880000pt;}
.y3b{bottom:95.546667pt;}
.yd5{bottom:96.000000pt;}
.y97{bottom:96.960000pt;}
.y2d{bottom:97.440000pt;}
.y7d{bottom:97.760000pt;}
.y105{bottom:100.480000pt;}
.y191{bottom:100.640000pt;}
.y1ac{bottom:104.160000pt;}
.y2e{bottom:104.640000pt;}
.y12c{bottom:109.120000pt;}
.yd4{bottom:112.000000pt;}
.y1da{bottom:112.160000pt;}
.y96{bottom:112.800000pt;}
.y3a{bottom:113.146667pt;}
.y2c{bottom:113.440000pt;}
.y7c{bottom:113.760000pt;}
.y15e{bottom:114.560000pt;}
.y190{bottom:116.480000pt;}
.y1ab{bottom:120.000000pt;}
.y12b{bottom:124.960000pt;}
.yd3{bottom:127.840000pt;}
.y1d9{bottom:128.000000pt;}
.y95{bottom:128.640000pt;}
.y2b{bottom:129.280000pt;}
.y7b{bottom:129.600000pt;}
.y39{bottom:130.746667pt;}
.y18f{bottom:132.320000pt;}
.y1aa{bottom:136.000000pt;}
.y15d{bottom:138.400000pt;}
.y12a{bottom:140.800000pt;}
.yd2{bottom:143.680000pt;}
.y1d8{bottom:144.000000pt;}
.y94{bottom:144.480000pt;}
.y2a{bottom:145.120000pt;}
.y7a{bottom:145.440000pt;}
.y3e{bottom:147.200000pt;}
.y18e{bottom:148.160000pt;}
.y38{bottom:148.346667pt;}
.y1a9{bottom:151.840000pt;}
.y129{bottom:156.640000pt;}
.yd1{bottom:159.520000pt;}
.y1d7{bottom:159.840000pt;}
.y93{bottom:160.320000pt;}
.y29{bottom:160.960000pt;}
.y79{bottom:161.280000pt;}
.y15c{bottom:162.560000pt;}
.y18d{bottom:164.160000pt;}
.y37{bottom:165.946667pt;}
.y1a8{bottom:167.680000pt;}
.yd0{bottom:175.360000pt;}
.y1d6{bottom:175.680000pt;}
.y92{bottom:176.160000pt;}
.y28{bottom:176.800000pt;}
.y78{bottom:177.120000pt;}
.y15b{bottom:178.560000pt;}
.y1f4{bottom:179.040000pt;}
.y18c{bottom:180.000000pt;}
.y128{bottom:180.480000pt;}
.y1a7{bottom:183.546667pt;}
.y36{bottom:183.706667pt;}
.y100{bottom:186.760000pt;}
.ycf{bottom:191.386667pt;}
.y1d5{bottom:191.546667pt;}
.y91{bottom:191.866667pt;}
.y27{bottom:192.826667pt;}
.y77{bottom:193.146667pt;}
.y18b{bottom:195.866667pt;}
.y127{bottom:196.346667pt;}
.y1f3{bottom:198.586667pt;}
.y1a6{bottom:199.386667pt;}
.y35{bottom:201.306667pt;}
.y15a{bottom:202.426667pt;}
.yce{bottom:207.226667pt;}
.y1d4{bottom:207.386667pt;}
.y26{bottom:208.666667pt;}
.y76{bottom:208.986667pt;}
.y18a{bottom:213.466667pt;}
.y126{bottom:214.106667pt;}
.y1a5{bottom:215.386667pt;}
.y90{bottom:216.026667pt;}
.y159{bottom:218.266667pt;}
.y34{bottom:218.906667pt;}
.y1f2{bottom:222.426667pt;}
.ycd{bottom:223.066667pt;}
.y1d3{bottom:223.386667pt;}
.y75{bottom:224.826667pt;}
.yfe{bottom:229.800000pt;}
.y1a4{bottom:231.226667pt;}
.y8f{bottom:231.866667pt;}
.y25{bottom:232.506667pt;}
.y158{bottom:234.106667pt;}
.y33{bottom:236.506667pt;}
.y1f1{bottom:238.426667pt;}
.ycc{bottom:238.906667pt;}
.y1d2{bottom:239.226667pt;}
.y74{bottom:240.666667pt;}
.y189{bottom:242.586667pt;}
.y125{bottom:243.226667pt;}
.y1a3{bottom:247.066667pt;}
.y8e{bottom:247.706667pt;}
.y32{bottom:254.106667pt;}
.y1f0{bottom:254.266667pt;}
.ycb{bottom:254.746667pt;}
.y1d1{bottom:255.066667pt;}
.y24{bottom:256.346667pt;}
.y73{bottom:256.506667pt;}
.y157{bottom:257.946667pt;}
.y188{bottom:258.586667pt;}
.yfd{bottom:261.626667pt;}
.y124{bottom:262.760000pt;}
.y1a2{bottom:262.906667pt;}
.y8d{bottom:263.546667pt;}
.y1ef{bottom:270.106667pt;}
.yca{bottom:270.586667pt;}
.y1d0{bottom:270.906667pt;}
.y31{bottom:271.866667pt;}
.y72{bottom:272.346667pt;}
.y156{bottom:273.786667pt;}
.y187{bottom:274.426667pt;}
.y1a1{bottom:278.746667pt;}
.y8c{bottom:279.546667pt;}
.y23{bottom:280.186667pt;}
.yfc{bottom:285.786667pt;}
.y1ee{bottom:285.946667pt;}
.yc9{bottom:286.586667pt;}
.y1cf{bottom:286.746667pt;}
.y71{bottom:288.346667pt;}
.y30{bottom:289.466667pt;}
.y155{bottom:289.786667pt;}
.y123{bottom:289.960000pt;}
.y186{bottom:290.266667pt;}
.y8b{bottom:295.386667pt;}
.y1a0{bottom:296.506667pt;}
.yfb{bottom:301.786667pt;}
.yc8{bottom:302.426667pt;}
.y1ce{bottom:302.586667pt;}
.y22{bottom:304.026667pt;}
.y70{bottom:304.186667pt;}
.y154{bottom:305.626667pt;}
.y185{bottom:306.106667pt;}
.y8a{bottom:311.226667pt;}
.y2f{bottom:316.386667pt;}
.y122{bottom:317.160000pt;}
.yfa{bottom:317.626667pt;}
.y1ed{bottom:317.786667pt;}
.y1cd{bottom:318.586667pt;}
.y6f{bottom:320.026667pt;}
.y153{bottom:321.466667pt;}
.y184{bottom:321.946667pt;}
.y19f{bottom:325.626667pt;}
.yc7{bottom:325.946667pt;}
.y89{bottom:327.066667pt;}
.y21{bottom:328.026667pt;}
.yf9{bottom:333.466667pt;}
.y1ec{bottom:333.626667pt;}
.y1cc{bottom:334.426667pt;}
.y6e{bottom:335.866667pt;}
.y152{bottom:337.306667pt;}
.y183{bottom:337.946667pt;}
.y19e{bottom:341.466667pt;}
.y88{bottom:342.906667pt;}
.yc6{bottom:343.866667pt;}
.y121{bottom:344.360000pt;}
.yf8{bottom:349.306667pt;}
.y1eb{bottom:349.466667pt;}
.y1cb{bottom:350.266667pt;}
.y6d{bottom:351.706667pt;}
.y151{bottom:353.146667pt;}
.y182{bottom:353.786667pt;}
.y19d{bottom:357.306667pt;}
.y87{bottom:358.746667pt;}
.y20{bottom:359.706667pt;}
.yf7{bottom:365.146667pt;}
.y1ea{bottom:365.306667pt;}
.y1ca{bottom:366.106667pt;}
.y6c{bottom:367.706667pt;}
.y150{bottom:369.146667pt;}
.y181{bottom:369.626667pt;}
.y11f{bottom:371.560000pt;}
.yc5{bottom:372.986667pt;}
.y19c{bottom:373.146667pt;}
.y86{bottom:374.746667pt;}
.y1f{bottom:375.546667pt;}
.yf6{bottom:380.986667pt;}
.y1e9{bottom:381.146667pt;}
.y1c9{bottom:381.946667pt;}
.y6b{bottom:383.546667pt;}
.y14f{bottom:384.986667pt;}
.yc4{bottom:388.986667pt;}
.y85{bottom:390.586667pt;}
.y1e{bottom:393.026667pt;}
.y180{bottom:393.506667pt;}
.yf5{bottom:397.026667pt;}
.y1c8{bottom:397.986667pt;}
.y11e{bottom:398.786667pt;}
.y6a{bottom:399.426667pt;}
.y14e{bottom:400.866667pt;}
.yc3{bottom:404.866667pt;}
.y19b{bottom:405.026667pt;}
.y84{bottom:406.466667pt;}
.y17f{bottom:409.346667pt;}
.yf4{bottom:412.866667pt;}
.y1e8{bottom:413.026667pt;}
.y1c7{bottom:413.826667pt;}
.y1d{bottom:414.306667pt;}
.y69{bottom:415.266667pt;}
.y14d{bottom:416.706667pt;}
.yc2{bottom:420.706667pt;}
.y19a{bottom:420.866667pt;}
.y17e{bottom:425.186667pt;}
.y11d{bottom:425.986667pt;}
.yf3{bottom:428.706667pt;}
.y1e7{bottom:428.866667pt;}
.y1c6{bottom:429.666667pt;}
.y83{bottom:430.306667pt;}
.y68{bottom:431.106667pt;}
.y14c{bottom:432.546667pt;}
.y1c{bottom:435.426667pt;}
.yc1{bottom:436.546667pt;}
.y199{bottom:436.706667pt;}
.y17d{bottom:441.186667pt;}
.yf2{bottom:444.546667pt;}
.y1e6{bottom:444.706667pt;}
.y1c5{bottom:445.506667pt;}
.y82{bottom:446.146667pt;}
.y67{bottom:446.946667pt;}
.y14b{bottom:448.386667pt;}
.yc0{bottom:452.386667pt;}
.y198{bottom:452.546667pt;}
.y11c{bottom:453.186667pt;}
.y1b{bottom:456.546667pt;}
.y17c{bottom:457.026667pt;}
.yf1{bottom:460.386667pt;}
.y1e5{bottom:460.546667pt;}
.y1c4{bottom:461.346667pt;}
.y81{bottom:462.146667pt;}
.y66{bottom:462.946667pt;}
.y14a{bottom:464.386667pt;}
.ybf{bottom:468.386667pt;}
.y17b{bottom:472.866667pt;}
.yf0{bottom:476.386667pt;}
.y1c3{bottom:477.186667pt;}
.y1a{bottom:477.506667pt;}
.y80{bottom:477.986667pt;}
.y65{bottom:478.786667pt;}
.y149{bottom:480.226667pt;}
.y197{bottom:484.386667pt;}
.y11b{bottom:485.026667pt;}
.y17a{bottom:488.706667pt;}
.ybe{bottom:491.906667pt;}
.yef{bottom:492.226667pt;}
.y1e4{bottom:492.386667pt;}
.y1c2{bottom:493.186667pt;}
.y7f{bottom:493.826667pt;}
.y148{bottom:496.066667pt;}
.y64{bottom:496.386667pt;}
.y19{bottom:497.026667pt;}
.y196{bottom:500.226667pt;}
.y179{bottom:504.546667pt;}
.yee{bottom:508.066667pt;}
.y1e3{bottom:508.226667pt;}
.y1c1{bottom:509.026667pt;}
.y11a{bottom:509.346667pt;}
.y7e{bottom:509.666667pt;}
.y147{bottom:511.906667pt;}
.ybd{bottom:516.066667pt;}
.y178{bottom:520.546667pt;}
.yed{bottom:523.906667pt;}
.y1e2{bottom:524.066667pt;}
.y18{bottom:524.386667pt;}
.y1c0{bottom:524.866667pt;}
.y63{bottom:525.506667pt;}
.y146{bottom:527.746667pt;}
.y119{bottom:528.866667pt;}
.ybc{bottom:531.906667pt;}
.y177{bottom:536.386667pt;}
.yec{bottom:539.746667pt;}
.y1e1{bottom:539.906667pt;}
.y1bf{bottom:540.706667pt;}
.y62{bottom:541.346667pt;}
.y145{bottom:543.586667pt;}
.ybb{bottom:547.746667pt;}
.y17{bottom:551.746667pt;}
.yeb{bottom:555.586667pt;}
.y1e0{bottom:555.746667pt;}
.y118{bottom:556.066667pt;}
.y1be{bottom:556.546667pt;}
.y61{bottom:557.346667pt;}
.y144{bottom:559.586667pt;}
.y176{bottom:560.226667pt;}
.yba{bottom:563.586667pt;}
.yea{bottom:571.586667pt;}
.y1bd{bottom:572.546667pt;}
.y60{bottom:573.186667pt;}
.yb9{bottom:579.586667pt;}
.y174{bottom:579.746667pt;}
.y117{bottom:583.266667pt;}
.y143{bottom:583.426667pt;}
.ye9{bottom:587.106667pt;}
.y1df{bottom:587.586667pt;}
.y1bc{bottom:588.386667pt;}
.y5f{bottom:589.026667pt;}
.y16{bottom:595.106667pt;}
.yb8{bottom:595.426667pt;}
.y141{bottom:602.973333pt;}
.y1de{bottom:603.453333pt;}
.y1bb{bottom:604.253333pt;}
.y5e{bottom:604.893333pt;}
.y116{bottom:610.493333pt;}
.yb7{bottom:611.293333pt;}
.y15{bottom:614.493333pt;}
.y1dd{bottom:619.293333pt;}
.y1ba{bottom:620.093333pt;}
.y173{bottom:620.253333pt;}
.y5d{bottom:620.733333pt;}
.yb6{bottom:627.133333pt;}
.y142{bottom:634.653333pt;}
.y1dc{bottom:635.133333pt;}
.y1b9{bottom:635.933333pt;}
.y5c{bottom:636.733333pt;}
.y115{bottom:637.693333pt;}
.yb5{bottom:642.973333pt;}
.y1db{bottom:650.973333pt;}
.y1b8{bottom:651.773333pt;}
.y5b{bottom:652.573333pt;}
.y14{bottom:657.693333pt;}
.yb4{bottom:658.813333pt;}
.y172{bottom:660.573333pt;}
.y13d{bottom:661.853333pt;}
.y195{bottom:666.813333pt;}
.y1b7{bottom:667.773333pt;}
.y5a{bottom:668.413333pt;}
.y114{bottom:669.533333pt;}
.yb3{bottom:674.813333pt;}
.y194{bottom:682.813333pt;}
.y1b6{bottom:683.613333pt;}
.y59{bottom:684.253333pt;}
.yb2{bottom:690.653333pt;}
.y113{bottom:693.693333pt;}
.y193{bottom:698.653333pt;}
.y13{bottom:698.813333pt;}
.y1b5{bottom:699.453333pt;}
.y58{bottom:700.093333pt;}
.y171{bottom:701.053333pt;}
.yb1{bottom:706.493333pt;}
.y112{bottom:713.213333pt;}
.y192{bottom:714.493333pt;}
.y1b4{bottom:715.293333pt;}
.y57{bottom:715.933333pt;}
.ye8{bottom:722.333333pt;}
.y12{bottom:724.413333pt;}
.y13f{bottom:725.373333pt;}
.yb0{bottom:730.333333pt;}
.y1b3{bottom:731.133333pt;}
.y56{bottom:731.933333pt;}
.ye7{bottom:738.173333pt;}
.y111{bottom:740.413333pt;}
.y16f{bottom:741.373333pt;}
.yaf{bottom:746.173333pt;}
.y1b2{bottom:746.973333pt;}
.y55{bottom:747.773333pt;}
.y139{bottom:752.573333pt;}
.ye6{bottom:754.173333pt;}
.yae{bottom:762.173333pt;}
.y1b1{bottom:762.973333pt;}
.y54{bottom:763.613333pt;}
.y10f{bottom:767.613333pt;}
.ye5{bottom:770.013333pt;}
.y11{bottom:770.173333pt;}
.yad{bottom:778.013333pt;}
.y1b0{bottom:778.813333pt;}
.y53{bottom:779.453333pt;}
.y16d{bottom:781.853333pt;}
.ye4{bottom:785.853333pt;}
.y10{bottom:790.333333pt;}
.yac{bottom:793.853333pt;}
.y1af{bottom:794.653333pt;}
.y52{bottom:795.293333pt;}
.y10e{bottom:799.613333pt;}
.y13b{bottom:800.253333pt;}
.ye3{bottom:801.693333pt;}
.y16a{bottom:806.333333pt;}
.yf{bottom:809.733333pt;}
.y1ae{bottom:810.533333pt;}
.y51{bottom:811.173333pt;}
.ye2{bottom:817.573333pt;}
.y10d{bottom:823.813333pt;}
.yab{bottom:825.573333pt;}
.y50{bottom:827.173333pt;}
.y134{bottom:827.493333pt;}
.y1ad{bottom:828.133333pt;}
.ye{bottom:829.093333pt;}
.ye1{bottom:833.413333pt;}
.yaa{bottom:841.413333pt;}
.y4f{bottom:843.013333pt;}
.y10c{bottom:843.333333pt;}
.y169{bottom:846.853333pt;}
.yd{bottom:848.133333pt;}
.ye0{bottom:849.413333pt;}
.ya9{bottom:857.413333pt;}
.y4e{bottom:858.853333pt;}
.ydf{bottom:865.253333pt;}
.yc{bottom:867.813333pt;}
.ya8{bottom:873.253333pt;}
.y4d{bottom:874.693333pt;}
.y137{bottom:875.013333pt;}
.yde{bottom:881.093333pt;}
.y10a{bottom:886.373333pt;}
.y167{bottom:887.173333pt;}
.ya7{bottom:889.093333pt;}
.y4c{bottom:890.533333pt;}
.ydd{bottom:896.933333pt;}
.y131{bottom:902.213333pt;}
.yb{bottom:904.453333pt;}
.ya6{bottom:904.933333pt;}
.y4b{bottom:906.533333pt;}
.ydc{bottom:912.773333pt;}
.ya{bottom:915.173333pt;}
.ya5{bottom:920.773333pt;}
.y4a{bottom:922.373333pt;}
.y9{bottom:925.893333pt;}
.y165{bottom:927.653333pt;}
.ydb{bottom:928.773333pt;}
.y132{bottom:934.053333pt;}
.y8{bottom:936.613333pt;}
.ya4{bottom:936.773333pt;}
.y49{bottom:939.973333pt;}
.yda{bottom:944.613333pt;}
.y109{bottom:945.253333pt;}
.y7{bottom:949.573333pt;}
.y163{bottom:952.453333pt;}
.ya3{bottom:952.613333pt;}
.yd9{bottom:960.453333pt;}
.y12e{bottom:961.253333pt;}
.ya2{bottom:968.453333pt;}
.y6{bottom:972.293333pt;}
.yd8{bottom:976.293333pt;}
.y161{bottom:977.413333pt;}
.ya1{bottom:984.293333pt;}
.y98{bottom:984.640000pt;}
.y48{bottom:986.853333pt;}
.y108{bottom:988.453333pt;}
.yd7{bottom:992.133333pt;}
.ya0{bottom:1000.133333pt;}
.y9c{bottom:1002.053333pt;}
.yd6{bottom:1007.653333pt;}
.y45{bottom:1015.653333pt;}
.y9f{bottom:1015.973333pt;}
.y15f{bottom:1017.893333pt;}
.y9b{bottom:1028.320000pt;}
.y107{bottom:1031.520000pt;}
.y44{bottom:1031.680000pt;}
.y9e{bottom:1032.000000pt;}
.y47{bottom:1039.840000pt;}
.y43{bottom:1047.520000pt;}
.y9d{bottom:1047.840000pt;}
.y42{bottom:1063.360000pt;}
.y46{bottom:1063.680000pt;}
.h32{height:23.840000pt;}
.h2f{height:24.160000pt;}
.h2c{height:24.180000pt;}
.h2e{height:24.320000pt;}
.h24{height:26.400000pt;}
.h22{height:26.420000pt;}
.h17{height:26.546667pt;}
.h1f{height:26.560000pt;}
.h21{height:26.578667pt;}
.h20{height:26.586667pt;}
.h29{height:26.592000pt;}
.h2{height:27.676000pt;}
.h25{height:31.040000pt;}
.h14{height:34.710938pt;}
.h7{height:36.431250pt;}
.h30{height:39.680000pt;}
.h33{height:39.706667pt;}
.h31{height:39.712000pt;}
.h2d{height:39.840000pt;}
.h18{height:42.386667pt;}
.h1a{height:42.396000pt;}
.h1b{height:42.400000pt;}
.h1c{height:42.420000pt;}
.h19{height:42.432000pt;}
.h27{height:46.880000pt;}
.h1e{height:47.085938pt;}
.h3{height:47.109375pt;}
.h34{height:47.742188pt;}
.hf{height:48.375000pt;}
.h16{height:49.336436pt;}
.h12{height:52.108438pt;}
.h8{height:52.134375pt;}
.h13{height:52.234000pt;}
.h9{height:53.535000pt;}
.h23{height:53.600000pt;}
.hd{height:57.787500pt;}
.h1d{height:58.240000pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.h35{height:62.812500pt;}
.h2b{height:62.880000pt;}
.he{height:64.500000pt;}
.h11{height:69.660000pt;}
.ha{height:73.490625pt;}
.h26{height:74.080000pt;}
.h28{height:74.272000pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h2a{height:90.080000pt;}
.h15{height:99.040000pt;}
.h10{height:340.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:46.586667pt;}
.w16{width:55.346667pt;}
.w15{width:61.106667pt;}
.w9{width:71.232000pt;}
.w6{width:71.346667pt;}
.w3{width:71.386667pt;}
.w19{width:71.392000pt;}
.w1a{width:74.880000pt;}
.wa{width:77.280000pt;}
.w7{width:77.306667pt;}
.w13{width:90.880000pt;}
.w10{width:91.360000pt;}
.w12{width:91.712000pt;}
.wf{width:92.192000pt;}
.wd{width:93.280000pt;}
.wc{width:94.272000pt;}
.wb{width:139.862667pt;}
.w11{width:140.822667pt;}
.we{width:141.622667pt;}
.w14{width:163.533333pt;}
.w8{width:177.302667pt;}
.w5{width:177.453333pt;}
.w18{width:182.102667pt;}
.w1b{width:329.662667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:3.986667pt;}
.x1d{left:6.720000pt;}
.x5{left:7.680000pt;}
.x13{left:9.600000pt;}
.x2b{left:11.546667pt;}
.x31{left:21.920000pt;}
.x28{left:24.506667pt;}
.x2a{left:26.400000pt;}
.x33{left:29.640000pt;}
.x2d{left:30.586667pt;}
.x29{left:32.160000pt;}
.x12{left:34.880000pt;}
.x2c{left:39.040000pt;}
.x1{left:40.324000pt;}
.x14{left:44.480000pt;}
.x2e{left:45.604000pt;}
.x1b{left:46.724000pt;}
.x6{left:48.000000pt;}
.x27{left:51.040000pt;}
.xc{left:53.440000pt;}
.xe{left:61.440000pt;}
.x22{left:67.346667pt;}
.x16{left:72.000000pt;}
.x2f{left:76.668000pt;}
.x17{left:96.032000pt;}
.x32{left:117.942667pt;}
.x1f{left:186.586667pt;}
.x21{left:189.466667pt;}
.x2{left:197.662667pt;}
.x1c{left:224.826667pt;}
.xd{left:227.706667pt;}
.x3{left:241.182667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x7{left:267.106667pt;}
.xf{left:274.146667pt;}
.x10{left:279.426667pt;}
.x20{left:281.666667pt;}
.x1e{left:296.866667pt;}
.x30{left:300.386667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x18{left:419.626667pt;}
.x11{left:420.893333pt;}
.x34{left:444.893333pt;}
.x35{left:468.893333pt;}
.x23{left:583.333333pt;}
.x19{left:597.733333pt;}
.x15{left:602.853333pt;}
.x24{left:645.093333pt;}
.x1a{left:669.733333pt;}
.x4{left:682.213333pt;}
.x25{left:701.093333pt;}
}




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