
    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_f563b63f5b95d3d189839518.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_131d7d91726f8f67f8afff27.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_35bc184b892a9e4a57f0e1f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_ca9e3f268579fd1c7d855117.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f8728dbdbadaad7897cefdc9.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ccb5378da4a4f8aa4262015c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995117;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_36003b6f3a005f83669734c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:36.000000px;}
.v3{vertical-align:41.040000px;}
.ls4{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.025920px;}
.lsd{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:6.660000px;}
.ls6{letter-spacing:20.844000px;}
.ls12{letter-spacing:25.308000px;}
.ls8{letter-spacing:52.668000px;}
.ls11{letter-spacing:52.812000px;}
.ls7{letter-spacing:55.548000px;}
.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:-32.940000px;}
.ws4{word-spacing:-19.457280px;}
.wse{word-spacing:-19.414080px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.626000px;}
.wsa{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.wsc{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.684000px;}
.ws6{word-spacing:2.502000px;}
._d{margin-left:-4.008240px;}
._a{margin-left:-2.551680px;}
._1{margin-left:-1.404000px;}
._0{width:1.116000px;}
._9{width:2.343360px;}
._7{width:3.813360px;}
._8{width:5.019840px;}
._6{width:6.053760px;}
._c{width:7.358400px;}
._e{width:9.321600px;}
._b{width:10.577520px;}
._5{width:12.122400px;}
._17{width:14.526000px;}
._18{width:15.606000px;}
._10{width:16.632000px;}
._f{width:17.820000px;}
._11{width:19.332000px;}
._1c{width:20.628000px;}
._1a{width:21.726000px;}
._19{width:23.166000px;}
._26{width:24.948000px;}
._13{width:26.514000px;}
._12{width:27.648000px;}
._1d{width:29.268000px;}
._2a{width:30.564000px;}
._29{width:32.022000px;}
._25{width:35.586000px;}
._15{width:38.178000px;}
._14{width:39.258000px;}
._16{width:40.284000px;}
._28{width:43.380000px;}
._27{width:44.496000px;}
._1b{width:46.386000px;}
._2d{width:61.074000px;}
._2c{width:62.262000px;}
._3{width:73.920000px;}
._4{width:76.500000px;}
._21{width:102.600000px;}
._20{width:108.648000px;}
._1e{width:117.504000px;}
._23{width:126.630000px;}
._2b{width:134.455680px;}
._1f{width:136.134000px;}
._24{width:140.508000px;}
._22{width:155.736000px;}
._2{width:1038.000000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:131.904000px;}
.y3e{bottom:-8.460000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y7{bottom:5.940000px;}
.y9{bottom:6.630000px;}
.yb3{bottom:9.720000px;}
.yaf{bottom:9.750000px;}
.yea{bottom:9.765000px;}
.yb1{bottom:9.900000px;}
.yfc{bottom:9.945000px;}
.y4{bottom:15.480000px;}
.y2{bottom:18.540000px;}
.y3d{bottom:18.930000px;}
.yd5{bottom:27.540000px;}
.yae{bottom:27.570000px;}
.yda{bottom:27.720000px;}
.ye3{bottom:27.750000px;}
.yfb{bottom:27.765000px;}
.y5{bottom:39.600000px;}
.y3c{bottom:47.730000px;}
.y1{bottom:60.660000px;}
.y3b{bottom:67.710000px;}
.y3a{bottom:87.510000px;}
.y1de{bottom:105.120000px;}
.yd2{bottom:105.300000px;}
.y39{bottom:107.310000px;}
.y121{bottom:108.900000px;}
.y2c{bottom:109.080000px;}
.y1ca{bottom:110.700000px;}
.yb2{bottom:112.680000px;}
.y112{bottom:112.860000px;}
.yc4{bottom:114.300000px;}
.y196{bottom:115.920000px;}
.y2e{bottom:118.980000px;}
.y1dd{bottom:122.940000px;}
.y79{bottom:125.640000px;}
.y144{bottom:125.820000px;}
.y171{bottom:126.720000px;}
.y38{bottom:127.110000px;}
.y1c9{bottom:128.520000px;}
.yd1{bottom:129.780000px;}
.yc3{bottom:132.120000px;}
.y2b{bottom:132.480000px;}
.y120{bottom:133.200000px;}
.y1a9{bottom:133.380000px;}
.y195{bottom:133.740000px;}
.yb0{bottom:140.220000px;}
.y111{bottom:140.400000px;}
.y1dc{bottom:140.760000px;}
.yf2{bottom:142.020000px;}
.y78{bottom:143.640000px;}
.y170{bottom:144.540000px;}
.y2d{bottom:144.720000px;}
.y37{bottom:146.910000px;}
.yc2{bottom:150.120000px;}
.y2a{bottom:150.300000px;}
.y194{bottom:151.560000px;}
.y143{bottom:152.640000px;}
.y1c8{bottom:155.340000px;}
.y1db{bottom:158.760000px;}
.y1a8{bottom:160.200000px;}
.y77{bottom:161.460000px;}
.y36{bottom:166.710000px;}
.yad{bottom:167.940000px;}
.y193{bottom:169.380000px;}
.yf1{bottom:169.740000px;}
.y29{bottom:170.280000px;}
.y16f{bottom:171.360000px;}
.y1c7{bottom:173.160000px;}
.y2f{bottom:174.600000px;}
.y1da{bottom:176.610000px;}
.y1a7{bottom:178.230000px;}
.y76{bottom:179.310000px;}
.y142{bottom:179.490000px;}
.yc1{bottom:185.790000px;}
.y110{bottom:185.970000px;}
.y35{bottom:186.690000px;}
.y192{bottom:187.230000px;}
.y1c6{bottom:191.010000px;}
.y1d9{bottom:194.430000px;}
.y1a6{bottom:196.050000px;}
.y75{bottom:197.130000px;}
.y16e{bottom:198.210000px;}
.yc0{bottom:203.610000px;}
.y191{bottom:205.230000px;}
.y141{bottom:206.310000px;}
.y34{bottom:206.490000px;}
.y28{bottom:209.010000px;}
.y1d8{bottom:212.250000px;}
.y10f{bottom:213.510000px;}
.y1a5{bottom:213.870000px;}
.y74{bottom:214.950000px;}
.yf0{bottom:215.130000px;}
.yac{bottom:218.730000px;}
.y15d{bottom:220.530000px;}
.ybf{bottom:221.430000px;}
.y190{bottom:223.050000px;}
.y33{bottom:226.290000px;}
.y1c5{bottom:226.830000px;}
.y16d{bottom:227.550000px;}
.y25{bottom:230.070000px;}
.y1a4{bottom:231.690000px;}
.y140{bottom:233.130000px;}
.y27{bottom:235.830000px;}
.yab{bottom:236.550000px;}
.ybe{bottom:239.430000px;}
.y18f{bottom:240.870000px;}
.y73{bottom:241.950000px;}
.yef{bottom:242.850000px;}
.y1c4{bottom:244.650000px;}
.y16c{bottom:245.370000px;}
.y32{bottom:246.135000px;}
.y1d7{bottom:248.070000px;}
.y15c{bottom:248.250000px;}
.yaa{bottom:254.370000px;}
.ybd{bottom:257.250000px;}
.y1a3{bottom:258.510000px;}
.y18e{bottom:258.690000px;}
.y10e{bottom:259.050000px;}
.y72{bottom:259.770000px;}
.y13f{bottom:260.130000px;}
.y1c3{bottom:262.470000px;}
.y26{bottom:262.650000px;}
.y16b{bottom:263.190000px;}
.y1d6{bottom:265.890000px;}
.y31{bottom:265.935000px;}
.ya9{bottom:272.190000px;}
.y15b{bottom:275.790000px;}
.y18d{bottom:276.510000px;}
.y71{bottom:277.590000px;}
.y1c2{bottom:280.290000px;}
.y16a{bottom:281.010000px;}
.y1d5{bottom:283.710000px;}
.ybc{bottom:284.070000px;}
.y10d{bottom:286.590000px;}
.y13e{bottom:286.950000px;}
.y30{bottom:287.715000px;}
.yee{bottom:288.210000px;}
.ya8{bottom:290.010000px;}
.y24{bottom:291.810000px;}
.y1a2{bottom:294.330000px;}
.y18c{bottom:294.510000px;}
.y70{bottom:295.410000px;}
.y1c1{bottom:298.110000px;}
.y169{bottom:299.010000px;}
.y1d4{bottom:301.530000px;}
.y15a{bottom:303.510000px;}
.ya7{bottom:307.830000px;}
.ybb{bottom:308.010000px;}
.y1a1{bottom:312.150000px;}
.y18b{bottom:312.330000px;}
.y6f{bottom:313.230000px;}
.y138{bottom:313.770000px;}
.y10c{bottom:314.130000px;}
.yed{bottom:315.750000px;}
.y1c0{bottom:316.110000px;}
.y168{bottom:316.830000px;}
.y1d3{bottom:319.350000px;}
.y13d{bottom:322.770000px;}
.ya6{bottom:325.830000px;}
.y18a{bottom:330.150000px;}
.y6e{bottom:331.050000px;}
.y137{bottom:331.590000px;}
.y1bf{bottom:333.930000px;}
.y167{bottom:334.650000px;}
.y1d2{bottom:337.170000px;}
.y1a0{bottom:338.970000px;}
.y1fd{bottom:339.150000px;}
.y13c{bottom:340.590000px;}
.y10b{bottom:341.850000px;}
.yec{bottom:343.470000px;}
.ya5{bottom:343.650000px;}
.y189{bottom:347.970000px;}
.y6d{bottom:349.050000px;}
.y136{bottom:349.410000px;}
.y1be{bottom:351.750000px;}
.y166{bottom:352.470000px;}
.y23{bottom:353.730000px;}
.y1d1{bottom:355.170000px;}
.y19f{bottom:356.790000px;}
.y1fc{bottom:357.150000px;}
.y13b{bottom:358.410000px;}
.ya4{bottom:361.470000px;}
.y159{bottom:363.810000px;}
.y188{bottom:365.790000px;}
.y6c{bottom:366.870000px;}
.y135{bottom:367.410000px;}
.y1bd{bottom:369.570000px;}
.y165{bottom:370.290000px;}
.y1d0{bottom:372.990000px;}
.y19e{bottom:374.610000px;}
.y1fb{bottom:374.970000px;}
.y13a{bottom:376.410000px;}
.ya3{bottom:379.290000px;}
.y187{bottom:383.610000px;}
.y6b{bottom:384.690000px;}
.y134{bottom:385.230000px;}
.y10a{bottom:387.210000px;}
.y164{bottom:388.110000px;}
.yeb{bottom:388.830000px;}
.y1bc{bottom:389.730000px;}
.y158{bottom:390.810000px;}
.y19d{bottom:392.610000px;}
.y1fa{bottom:392.790000px;}
.y139{bottom:394.230000px;}
.ya2{bottom:397.110000px;}
.y186{bottom:401.610000px;}
.y6a{bottom:402.510000px;}
.y163{bottom:406.110000px;}
.y157{bottom:408.630000px;}
.y19c{bottom:410.430000px;}
.y1f9{bottom:410.610000px;}
.y133{bottom:412.050000px;}
.ya1{bottom:414.930000px;}
.y22{bottom:415.470000px;}
.ye9{bottom:416.550000px;}
.y185{bottom:419.475000px;}
.y69{bottom:420.375000px;}
.y1bb{bottom:422.355000px;}
.y156{bottom:426.495000px;}
.y19b{bottom:428.295000px;}
.y1f8{bottom:428.475000px;}
.y11f{bottom:428.835000px;}
.y132{bottom:429.915000px;}
.y109{bottom:432.795000px;}
.ya0{bottom:432.975000px;}
.y184{bottom:437.295000px;}
.y68{bottom:438.375000px;}
.y1ba{bottom:440.175000px;}
.ye8{bottom:444.135000px;}
.y155{bottom:444.315000px;}
.y1cf{bottom:444.495000px;}
.y19a{bottom:446.115000px;}
.y1f7{bottom:446.295000px;}
.y11e{bottom:446.655000px;}
.y131{bottom:447.735000px;}
.y9f{bottom:450.795000px;}
.y183{bottom:455.115000px;}
.y67{bottom:456.195000px;}
.y1b9{bottom:457.995000px;}
.y154{bottom:462.135000px;}
.y1ce{bottom:462.315000px;}
.y1f6{bottom:464.295000px;}
.y11d{bottom:464.655000px;}
.y130{bottom:465.555000px;}
.y9e{bottom:468.615000px;}
.y182{bottom:472.935000px;}
.y66{bottom:474.015000px;}
.y1b8{bottom:475.815000px;}
.y21{bottom:477.255000px;}
.y108{bottom:478.155000px;}
.y153{bottom:479.955000px;}
.y1cd{bottom:480.135000px;}
.y1f5{bottom:482.115000px;}
.y11c{bottom:482.475000px;}
.y12f{bottom:483.555000px;}
.y9d{bottom:486.435000px;}
.ye7{bottom:489.675000px;}
.y181{bottom:490.755000px;}
.y65{bottom:491.835000px;}
.y1b7{bottom:493.635000px;}
.y152{bottom:497.955000px;}
.y1f4{bottom:499.935000px;}
.y11b{bottom:500.295000px;}
.y12e{bottom:501.375000px;}
.y9c{bottom:504.255000px;}
.y162{bottom:504.435000px;}
.y180{bottom:508.755000px;}
.y1b6{bottom:511.455000px;}
.y151{bottom:515.775000px;}
.ye6{bottom:517.215000px;}
.y1f3{bottom:517.755000px;}
.y11a{bottom:518.115000px;}
.y64{bottom:518.655000px;}
.y12d{bottom:519.195000px;}
.y9b{bottom:522.255000px;}
.y107{bottom:523.695000px;}
.y17f{bottom:526.575000px;}
.y1b5{bottom:529.455000px;}
.y150{bottom:533.595000px;}
.y1f2{bottom:535.575000px;}
.y63{bottom:536.475000px;}
.y12c{bottom:537.015000px;}
.y20{bottom:537.735000px;}
.y9a{bottom:540.075000px;}
.y199{bottom:544.395000px;}
.y119{bottom:544.935000px;}
.y1b4{bottom:547.275000px;}
.y106{bottom:551.235000px;}
.y14f{bottom:551.415000px;}
.y1cc{bottom:551.595000px;}
.y17e{bottom:553.395000px;}
.y1f1{bottom:553.575000px;}
.y62{bottom:554.475000px;}
.y99{bottom:557.895000px;}
.y118{bottom:560.415000px;}
.y198{bottom:562.215000px;}
.ye5{bottom:562.575000px;}
.y12b{bottom:563.835000px;}
.y1f{bottom:564.195000px;}
.y1b3{bottom:565.095000px;}
.y1cb{bottom:568.335000px;}
.y14e{bottom:569.235000px;}
.y17d{bottom:571.215000px;}
.y1f0{bottom:571.395000px;}
.y61{bottom:572.295000px;}
.y98{bottom:575.715000px;}
.y12a{bottom:579.315000px;}
.y197{bottom:580.035000px;}
.y1b2{bottom:582.915000px;}
.y14d{bottom:587.235000px;}
.y17c{bottom:589.035000px;}
.y1ef{bottom:589.215000px;}
.y60{bottom:590.115000px;}
.ye4{bottom:590.295000px;}
.y1e{bottom:592.275000px;}
.y97{bottom:593.535000px;}
.y105{bottom:596.775000px;}
.y1b1{bottom:600.735000px;}
.y14c{bottom:605.055000px;}
.y17b{bottom:607.035000px;}
.y5f{bottom:607.935000px;}
.y161{bottom:611.535000px;}
.y96{bottom:613.875000px;}
.y1b0{bottom:618.735000px;}
.y17a{bottom:624.855000px;}
.y5e{bottom:625.755000px;}
.y14b{bottom:631.875000px;}
.yd0{bottom:634.575000px;}
.ye2{bottom:635.655000px;}
.y1af{bottom:636.555000px;}
.y160{bottom:638.355000px;}
.y104{bottom:642.135000px;}
.y1d{bottom:642.315000px;}
.y179{bottom:642.675000px;}
.ycd{bottom:643.395000px;}
.y5d{bottom:643.755000px;}
.y95{bottom:646.275000px;}
.y14a{bottom:649.695000px;}
.ycf{bottom:652.395000px;}
.y1ae{bottom:654.375000px;}
.y15f{bottom:656.175000px;}
.y178{bottom:660.525000px;}
.y1ee{bottom:660.705000px;}
.ycc{bottom:661.245000px;}
.y5c{bottom:661.605000px;}
.y94{bottom:664.125000px;}
.y149{bottom:667.545000px;}
.y1c{bottom:668.625000px;}
.y103{bottom:669.885000px;}
.yce{bottom:670.245000px;}
.y1ad{bottom:672.225000px;}
.y177{bottom:678.345000px;}
.y15e{bottom:678.525000px;}
.y5b{bottom:679.425000px;}
.ye1{bottom:681.225000px;}
.y93{bottom:681.945000px;}
.y148{bottom:685.365000px;}
.ycb{bottom:688.065000px;}
.y1ac{bottom:690.045000px;}
.yba{bottom:691.305000px;}
.y1b{bottom:695.085000px;}
.y176{bottom:696.165000px;}
.y1ed{bottom:696.345000px;}
.y5a{bottom:697.245000px;}
.y147{bottom:703.365000px;}
.yca{bottom:706.065000px;}
.y92{bottom:708.765000px;}
.y175{bottom:714.165000px;}
.y59{bottom:715.065000px;}
.y102{bottom:715.245000px;}
.yb9{bottom:715.785000px;}
.y1ab{bottom:716.865000px;}
.y1a{bottom:721.185000px;}
.yc9{bottom:723.885000px;}
.ye0{bottom:726.585000px;}
.y174{bottom:731.985000px;}
.y58{bottom:732.885000px;}
.y91{bottom:735.585000px;}
.y146{bottom:739.005000px;}
.y1aa{bottom:741.345000px;}
.yc8{bottom:741.705000px;}
.y101{bottom:742.785000px;}
.y1ec{bottom:749.805000px;}
.y57{bottom:750.885000px;}
.y173{bottom:758.805000px;}
.yc7{bottom:759.525000px;}
.y19{bottom:761.325000px;}
.y90{bottom:762.585000px;}
.y145{bottom:763.485000px;}
.y1eb{bottom:767.805000px;}
.y56{bottom:768.705000px;}
.ydf{bottom:772.125000px;}
.y1ea{bottom:785.625000px;}
.yc6{bottom:786.345000px;}
.y55{bottom:786.525000px;}
.y100{bottom:788.325000px;}
.y8f{bottom:789.405000px;}
.y172{bottom:792.285000px;}
.y1e9{bottom:803.445000px;}
.y54{bottom:804.345000px;}
.y18{bottom:807.405000px;}
.yc5{bottom:810.825000px;}
.y8e{bottom:813.345000px;}
.yff{bottom:815.865000px;}
.yde{bottom:817.485000px;}
.y1e8{bottom:821.265000px;}
.y53{bottom:822.165000px;}
.y8d{bottom:822.345000px;}
.y17{bottom:835.305000px;}
.y1e7{bottom:839.085000px;}
.y52{bottom:839.985000px;}
.yfe{bottom:843.585000px;}
.y1e6{bottom:857.085000px;}
.y8c{bottom:857.985000px;}
.ydd{bottom:863.025000px;}
.y51{bottom:866.985000px;}
.yfd{bottom:871.125000px;}
.y1e5{bottom:874.905000px;}
.y8b{bottom:875.805000px;}
.y50{bottom:884.805000px;}
.y16{bottom:890.025000px;}
.y1e4{bottom:892.725000px;}
.y8a{bottom:893.625000px;}
.yfa{bottom:898.665000px;}
.y4f{bottom:902.670000px;}
.ydc{bottom:908.430000px;}
.y1e3{bottom:910.590000px;}
.y89{bottom:911.490000px;}
.y15{bottom:912.930000px;}
.y117{bottom:916.710000px;}
.y4e{bottom:920.490000px;}
.y1e2{bottom:928.410000px;}
.y88{bottom:929.310000px;}
.y14{bottom:930.210000px;}
.ydb{bottom:936.150000px;}
.y4d{bottom:938.310000px;}
.yf9{bottom:944.250000px;}
.y1e1{bottom:946.230000px;}
.y87{bottom:947.310000px;}
.y13{bottom:947.490000px;}
.y4c{bottom:956.310000px;}
.y116{bottom:962.070000px;}
.yd9{bottom:963.690000px;}
.y1e0{bottom:964.230000px;}
.y12{bottom:964.770000px;}
.y86{bottom:965.130000px;}
.y4b{bottom:974.130000px;}
.y11{bottom:981.870000px;}
.y1df{bottom:982.050000px;}
.y85{bottom:982.950000px;}
.yf8{bottom:989.610000px;}
.y4a{bottom:991.950000px;}
.y10{bottom:999.870000px;}
.y84{bottom:1000.770000px;}
.yd8{bottom:1009.230000px;}
.y49{bottom:1009.770000px;}
.y115{bottom:1017.330000px;}
.y129{bottom:1017.690000px;}
.y83{bottom:1018.590000px;}
.y48{bottom:1027.590000px;}
.yf7{bottom:1035.150000px;}
.y128{bottom:1035.510000px;}
.y82{bottom:1036.410000px;}
.yf{bottom:1036.950000px;}
.y114{bottom:1044.870000px;}
.y47{bottom:1045.410000px;}
.ye{bottom:1049.010000px;}
.y127{bottom:1053.510000px;}
.y81{bottom:1054.410000px;}
.yd7{bottom:1054.590000px;}
.yd{bottom:1061.070000px;}
.y46{bottom:1063.410000px;}
.y126{bottom:1071.330000px;}
.y80{bottom:1072.230000px;}
.yc{bottom:1073.130000px;}
.yf6{bottom:1080.510000px;}
.y45{bottom:1081.230000px;}
.yd6{bottom:1082.310000px;}
.yb{bottom:1087.710000px;}
.y125{bottom:1089.150000px;}
.y7f{bottom:1090.050000px;}
.y113{bottom:1090.410000px;}
.y44{bottom:1099.050000px;}
.y124{bottom:1106.970000px;}
.y7e{bottom:1107.870000px;}
.yf5{bottom:1108.230000px;}
.yd4{bottom:1109.850000px;}
.ya{bottom:1113.270000px;}
.y43{bottom:1116.870000px;}
.y123{bottom:1124.790000px;}
.y7d{bottom:1125.690000px;}
.yb6{bottom:1126.050000px;}
.y8{bottom:1133.460000px;}
.y42{bottom:1134.690000px;}
.yf4{bottom:1135.770000px;}
.yb8{bottom:1140.990000px;}
.y122{bottom:1142.640000px;}
.y7c{bottom:1146.060000px;}
.y41{bottom:1152.720000px;}
.yb5{bottom:1153.620000px;}
.yb7{bottom:1158.840000px;}
.yd3{bottom:1160.640000px;}
.yf3{bottom:1163.340000px;}
.y40{bottom:1170.540000px;}
.y6{bottom:1172.160000px;}
.y7b{bottom:1178.460000px;}
.yb4{bottom:1181.340000px;}
.y3f{bottom:1190.700000px;}
.y7a{bottom:1196.280000px;}
.h1c{height:26.820000px;}
.h1d{height:26.856000px;}
.h1b{height:27.000000px;}
.h6{height:28.440000px;}
.hc{height:29.158594px;}
.h8{height:29.160000px;}
.h2{height:31.140000px;}
.h3{height:37.705078px;}
.h22{height:37.810547px;}
.h4{height:38.100586px;}
.h19{height:39.313477px;}
.he{height:41.726953px;}
.hf{height:42.164648px;}
.h1e{height:44.507812px;}
.h1f{height:44.640000px;}
.h1a{height:44.676000px;}
.h20{height:44.820000px;}
.h21{height:44.856000px;}
.h13{height:46.251562px;}
.h12{height:46.736719px;}
.h16{height:49.255313px;}
.hd{height:50.800781px;}
.h11{height:53.224453px;}
.h14{height:54.864844px;}
.h10{height:58.819922px;}
.ha{height:59.436914px;}
.hb{height:63.500977px;}
.h5{height:65.884219px;}
.h18{height:81.509766px;}
.h17{height:86.549766px;}
.h9{height:92.965430px;}
.h7{height:93.067031px;}
.h15{height:314.895000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:46.620000px;}
.wc{width:46.800000px;}
.w19{width:52.776000px;}
.w12{width:52.920000px;}
.w16{width:52.956000px;}
.w8{width:59.616000px;}
.w18{width:59.940000px;}
.w13{width:62.640000px;}
.w15{width:62.820000px;}
.w3{width:78.480000px;}
.wd{width:79.200000px;}
.wa{width:79.416000px;}
.w9{width:79.560000px;}
.wb{width:95.760000px;}
.we{width:95.976000px;}
.w11{width:122.076000px;}
.w14{width:123.876000px;}
.w10{width:124.056000px;}
.w17{width:194.970000px;}
.w6{width:202.860000px;}
.w2{width:706.650000px;}
.w5{width:762.660000px;}
.w7{width:813.750000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x8{left:-1.185000px;}
.x0{left:0.000000px;}
.x34{left:7.560000px;}
.x3{left:8.640000px;}
.x18{left:10.800000px;}
.x1c{left:12.990000px;}
.x2c{left:14.430000px;}
.x23{left:16.230000px;}
.x35{left:17.820000px;}
.x20{left:19.440000px;}
.x37{left:21.060000px;}
.x1e{left:23.220000px;}
.x36{left:24.480000px;}
.x31{left:27.360000px;}
.x43{left:29.700000px;}
.x24{left:32.940000px;}
.x26{left:36.360000px;}
.x17{left:39.240000px;}
.x27{left:41.040000px;}
.x25{left:44.460000px;}
.x41{left:52.554000px;}
.x1{left:54.000000px;}
.x6{left:64.800000px;}
.x4a{left:80.999987px;}
.x12{left:83.519987px;}
.x10{left:86.219987px;}
.x45{left:87.300000px;}
.xe{left:95.579987px;}
.x40{left:108.396000px;}
.x28{left:115.236000px;}
.x11{left:179.489987px;}
.x29{left:195.510000px;}
.x13{left:210.449987px;}
.x2{left:214.590000px;}
.x48{left:258.689987px;}
.x2a{left:275.430000px;}
.xb{left:281.729987px;}
.xa{left:285.689987px;}
.x30{left:292.034987px;}
.xc{left:299.594987px;}
.x32{left:302.295000px;}
.x42{left:304.275000px;}
.x2e{left:310.934987px;}
.x49{left:317.234987px;}
.xf{left:322.274987px;}
.x15{left:324.074987px;}
.x3e{left:329.294987px;}
.x3c{left:341.714987px;}
.x7{left:345.060000px;}
.x33{left:356.115000px;}
.x9{left:365.294987px;}
.x2b{left:372.135000px;}
.xd{left:378.794987px;}
.x2f{left:385.814987px;}
.x14{left:386.894987px;}
.x5{left:446.474987px;}
.x16{left:473.474987px;}
.x1b{left:500.504987px;}
.x44{left:528.045000px;}
.x1d{left:534.705000px;}
.x38{left:598.965000px;}
.x19{left:612.104987px;}
.x1f{left:614.985000px;}
.x1a{left:640.184987px;}
.x21{left:695.130000px;}
.x39{left:721.950000px;}
.x46{left:723.750000px;}
.x4{left:760.650000px;}
.x3d{left:762.989987px;}
.x3a{left:775.590000px;}
.x47{left:784.590000px;}
.x22{left:791.610000px;}
.x3b{left:804.389987px;}
.x2d{left:813.749987px;}
.x3f{left:835.889987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:32.000000pt;}
.v3{vertical-align:36.480000pt;}
.ls4{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.023040pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:5.920000pt;}
.ls6{letter-spacing:18.528000pt;}
.ls12{letter-spacing:22.496000pt;}
.ls8{letter-spacing:46.816000pt;}
.ls11{letter-spacing:46.944000pt;}
.ls7{letter-spacing:49.376000pt;}
.ws0{word-spacing:-29.280000pt;}
.ws4{word-spacing:-17.295360pt;}
.wse{word-spacing:-17.256960pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.112000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.608000pt;}
.ws6{word-spacing:2.224000pt;}
._d{margin-left:-3.562880pt;}
._a{margin-left:-2.268160pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.992000pt;}
._9{width:2.082987pt;}
._7{width:3.389653pt;}
._8{width:4.462080pt;}
._6{width:5.381120pt;}
._c{width:6.540800pt;}
._e{width:8.285867pt;}
._b{width:9.402240pt;}
._5{width:10.775467pt;}
._17{width:12.912000pt;}
._18{width:13.872000pt;}
._10{width:14.784000pt;}
._f{width:15.840000pt;}
._11{width:17.184000pt;}
._1c{width:18.336000pt;}
._1a{width:19.312000pt;}
._19{width:20.592000pt;}
._26{width:22.176000pt;}
._13{width:23.568000pt;}
._12{width:24.576000pt;}
._1d{width:26.016000pt;}
._2a{width:27.168000pt;}
._29{width:28.464000pt;}
._25{width:31.632000pt;}
._15{width:33.936000pt;}
._14{width:34.896000pt;}
._16{width:35.808000pt;}
._28{width:38.560000pt;}
._27{width:39.552000pt;}
._1b{width:41.232000pt;}
._2d{width:54.288000pt;}
._2c{width:55.344000pt;}
._3{width:65.706667pt;}
._4{width:68.000000pt;}
._21{width:91.200000pt;}
._20{width:96.576000pt;}
._1e{width:104.448000pt;}
._23{width:112.560000pt;}
._2b{width:119.516160pt;}
._1f{width:121.008000pt;}
._24{width:124.896000pt;}
._22{width:138.432000pt;}
._2{width:922.666667pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:117.248000pt;}
.y3e{bottom:-7.520000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y7{bottom:5.280000pt;}
.y9{bottom:5.893333pt;}
.yb3{bottom:8.640000pt;}
.yaf{bottom:8.666667pt;}
.yea{bottom:8.680000pt;}
.yb1{bottom:8.800000pt;}
.yfc{bottom:8.840000pt;}
.y4{bottom:13.760000pt;}
.y2{bottom:16.480000pt;}
.y3d{bottom:16.826667pt;}
.yd5{bottom:24.480000pt;}
.yae{bottom:24.506667pt;}
.yda{bottom:24.640000pt;}
.ye3{bottom:24.666667pt;}
.yfb{bottom:24.680000pt;}
.y5{bottom:35.200000pt;}
.y3c{bottom:42.426667pt;}
.y1{bottom:53.920000pt;}
.y3b{bottom:60.186667pt;}
.y3a{bottom:77.786667pt;}
.y1de{bottom:93.440000pt;}
.yd2{bottom:93.600000pt;}
.y39{bottom:95.386667pt;}
.y121{bottom:96.800000pt;}
.y2c{bottom:96.960000pt;}
.y1ca{bottom:98.400000pt;}
.yb2{bottom:100.160000pt;}
.y112{bottom:100.320000pt;}
.yc4{bottom:101.600000pt;}
.y196{bottom:103.040000pt;}
.y2e{bottom:105.760000pt;}
.y1dd{bottom:109.280000pt;}
.y79{bottom:111.680000pt;}
.y144{bottom:111.840000pt;}
.y171{bottom:112.640000pt;}
.y38{bottom:112.986667pt;}
.y1c9{bottom:114.240000pt;}
.yd1{bottom:115.360000pt;}
.yc3{bottom:117.440000pt;}
.y2b{bottom:117.760000pt;}
.y120{bottom:118.400000pt;}
.y1a9{bottom:118.560000pt;}
.y195{bottom:118.880000pt;}
.yb0{bottom:124.640000pt;}
.y111{bottom:124.800000pt;}
.y1dc{bottom:125.120000pt;}
.yf2{bottom:126.240000pt;}
.y78{bottom:127.680000pt;}
.y170{bottom:128.480000pt;}
.y2d{bottom:128.640000pt;}
.y37{bottom:130.586667pt;}
.yc2{bottom:133.440000pt;}
.y2a{bottom:133.600000pt;}
.y194{bottom:134.720000pt;}
.y143{bottom:135.680000pt;}
.y1c8{bottom:138.080000pt;}
.y1db{bottom:141.120000pt;}
.y1a8{bottom:142.400000pt;}
.y77{bottom:143.520000pt;}
.y36{bottom:148.186667pt;}
.yad{bottom:149.280000pt;}
.y193{bottom:150.560000pt;}
.yf1{bottom:150.880000pt;}
.y29{bottom:151.360000pt;}
.y16f{bottom:152.320000pt;}
.y1c7{bottom:153.920000pt;}
.y2f{bottom:155.200000pt;}
.y1da{bottom:156.986667pt;}
.y1a7{bottom:158.426667pt;}
.y76{bottom:159.386667pt;}
.y142{bottom:159.546667pt;}
.yc1{bottom:165.146667pt;}
.y110{bottom:165.306667pt;}
.y35{bottom:165.946667pt;}
.y192{bottom:166.426667pt;}
.y1c6{bottom:169.786667pt;}
.y1d9{bottom:172.826667pt;}
.y1a6{bottom:174.266667pt;}
.y75{bottom:175.226667pt;}
.y16e{bottom:176.186667pt;}
.yc0{bottom:180.986667pt;}
.y191{bottom:182.426667pt;}
.y141{bottom:183.386667pt;}
.y34{bottom:183.546667pt;}
.y28{bottom:185.786667pt;}
.y1d8{bottom:188.666667pt;}
.y10f{bottom:189.786667pt;}
.y1a5{bottom:190.106667pt;}
.y74{bottom:191.066667pt;}
.yf0{bottom:191.226667pt;}
.yac{bottom:194.426667pt;}
.y15d{bottom:196.026667pt;}
.ybf{bottom:196.826667pt;}
.y190{bottom:198.266667pt;}
.y33{bottom:201.146667pt;}
.y1c5{bottom:201.626667pt;}
.y16d{bottom:202.266667pt;}
.y25{bottom:204.506667pt;}
.y1a4{bottom:205.946667pt;}
.y140{bottom:207.226667pt;}
.y27{bottom:209.626667pt;}
.yab{bottom:210.266667pt;}
.ybe{bottom:212.826667pt;}
.y18f{bottom:214.106667pt;}
.y73{bottom:215.066667pt;}
.yef{bottom:215.866667pt;}
.y1c4{bottom:217.466667pt;}
.y16c{bottom:218.106667pt;}
.y32{bottom:218.786667pt;}
.y1d7{bottom:220.506667pt;}
.y15c{bottom:220.666667pt;}
.yaa{bottom:226.106667pt;}
.ybd{bottom:228.666667pt;}
.y1a3{bottom:229.786667pt;}
.y18e{bottom:229.946667pt;}
.y10e{bottom:230.266667pt;}
.y72{bottom:230.906667pt;}
.y13f{bottom:231.226667pt;}
.y1c3{bottom:233.306667pt;}
.y26{bottom:233.466667pt;}
.y16b{bottom:233.946667pt;}
.y1d6{bottom:236.346667pt;}
.y31{bottom:236.386667pt;}
.ya9{bottom:241.946667pt;}
.y15b{bottom:245.146667pt;}
.y18d{bottom:245.786667pt;}
.y71{bottom:246.746667pt;}
.y1c2{bottom:249.146667pt;}
.y16a{bottom:249.786667pt;}
.y1d5{bottom:252.186667pt;}
.ybc{bottom:252.506667pt;}
.y10d{bottom:254.746667pt;}
.y13e{bottom:255.066667pt;}
.y30{bottom:255.746667pt;}
.yee{bottom:256.186667pt;}
.ya8{bottom:257.786667pt;}
.y24{bottom:259.386667pt;}
.y1a2{bottom:261.626667pt;}
.y18c{bottom:261.786667pt;}
.y70{bottom:262.586667pt;}
.y1c1{bottom:264.986667pt;}
.y169{bottom:265.786667pt;}
.y1d4{bottom:268.026667pt;}
.y15a{bottom:269.786667pt;}
.ya7{bottom:273.626667pt;}
.ybb{bottom:273.786667pt;}
.y1a1{bottom:277.466667pt;}
.y18b{bottom:277.626667pt;}
.y6f{bottom:278.426667pt;}
.y138{bottom:278.906667pt;}
.y10c{bottom:279.226667pt;}
.yed{bottom:280.666667pt;}
.y1c0{bottom:280.986667pt;}
.y168{bottom:281.626667pt;}
.y1d3{bottom:283.866667pt;}
.y13d{bottom:286.906667pt;}
.ya6{bottom:289.626667pt;}
.y18a{bottom:293.466667pt;}
.y6e{bottom:294.266667pt;}
.y137{bottom:294.746667pt;}
.y1bf{bottom:296.826667pt;}
.y167{bottom:297.466667pt;}
.y1d2{bottom:299.706667pt;}
.y1a0{bottom:301.306667pt;}
.y1fd{bottom:301.466667pt;}
.y13c{bottom:302.746667pt;}
.y10b{bottom:303.866667pt;}
.yec{bottom:305.306667pt;}
.ya5{bottom:305.466667pt;}
.y189{bottom:309.306667pt;}
.y6d{bottom:310.266667pt;}
.y136{bottom:310.586667pt;}
.y1be{bottom:312.666667pt;}
.y166{bottom:313.306667pt;}
.y23{bottom:314.426667pt;}
.y1d1{bottom:315.706667pt;}
.y19f{bottom:317.146667pt;}
.y1fc{bottom:317.466667pt;}
.y13b{bottom:318.586667pt;}
.ya4{bottom:321.306667pt;}
.y159{bottom:323.386667pt;}
.y188{bottom:325.146667pt;}
.y6c{bottom:326.106667pt;}
.y135{bottom:326.586667pt;}
.y1bd{bottom:328.506667pt;}
.y165{bottom:329.146667pt;}
.y1d0{bottom:331.546667pt;}
.y19e{bottom:332.986667pt;}
.y1fb{bottom:333.306667pt;}
.y13a{bottom:334.586667pt;}
.ya3{bottom:337.146667pt;}
.y187{bottom:340.986667pt;}
.y6b{bottom:341.946667pt;}
.y134{bottom:342.426667pt;}
.y10a{bottom:344.186667pt;}
.y164{bottom:344.986667pt;}
.yeb{bottom:345.626667pt;}
.y1bc{bottom:346.426667pt;}
.y158{bottom:347.386667pt;}
.y19d{bottom:348.986667pt;}
.y1fa{bottom:349.146667pt;}
.y139{bottom:350.426667pt;}
.ya2{bottom:352.986667pt;}
.y186{bottom:356.986667pt;}
.y6a{bottom:357.786667pt;}
.y163{bottom:360.986667pt;}
.y157{bottom:363.226667pt;}
.y19c{bottom:364.826667pt;}
.y1f9{bottom:364.986667pt;}
.y133{bottom:366.266667pt;}
.ya1{bottom:368.826667pt;}
.y22{bottom:369.306667pt;}
.ye9{bottom:370.266667pt;}
.y185{bottom:372.866667pt;}
.y69{bottom:373.666667pt;}
.y1bb{bottom:375.426667pt;}
.y156{bottom:379.106667pt;}
.y19b{bottom:380.706667pt;}
.y1f8{bottom:380.866667pt;}
.y11f{bottom:381.186667pt;}
.y132{bottom:382.146667pt;}
.y109{bottom:384.706667pt;}
.ya0{bottom:384.866667pt;}
.y184{bottom:388.706667pt;}
.y68{bottom:389.666667pt;}
.y1ba{bottom:391.266667pt;}
.ye8{bottom:394.786667pt;}
.y155{bottom:394.946667pt;}
.y1cf{bottom:395.106667pt;}
.y19a{bottom:396.546667pt;}
.y1f7{bottom:396.706667pt;}
.y11e{bottom:397.026667pt;}
.y131{bottom:397.986667pt;}
.y9f{bottom:400.706667pt;}
.y183{bottom:404.546667pt;}
.y67{bottom:405.506667pt;}
.y1b9{bottom:407.106667pt;}
.y154{bottom:410.786667pt;}
.y1ce{bottom:410.946667pt;}
.y1f6{bottom:412.706667pt;}
.y11d{bottom:413.026667pt;}
.y130{bottom:413.826667pt;}
.y9e{bottom:416.546667pt;}
.y182{bottom:420.386667pt;}
.y66{bottom:421.346667pt;}
.y1b8{bottom:422.946667pt;}
.y21{bottom:424.226667pt;}
.y108{bottom:425.026667pt;}
.y153{bottom:426.626667pt;}
.y1cd{bottom:426.786667pt;}
.y1f5{bottom:428.546667pt;}
.y11c{bottom:428.866667pt;}
.y12f{bottom:429.826667pt;}
.y9d{bottom:432.386667pt;}
.ye7{bottom:435.266667pt;}
.y181{bottom:436.226667pt;}
.y65{bottom:437.186667pt;}
.y1b7{bottom:438.786667pt;}
.y152{bottom:442.626667pt;}
.y1f4{bottom:444.386667pt;}
.y11b{bottom:444.706667pt;}
.y12e{bottom:445.666667pt;}
.y9c{bottom:448.226667pt;}
.y162{bottom:448.386667pt;}
.y180{bottom:452.226667pt;}
.y1b6{bottom:454.626667pt;}
.y151{bottom:458.466667pt;}
.ye6{bottom:459.746667pt;}
.y1f3{bottom:460.226667pt;}
.y11a{bottom:460.546667pt;}
.y64{bottom:461.026667pt;}
.y12d{bottom:461.506667pt;}
.y9b{bottom:464.226667pt;}
.y107{bottom:465.506667pt;}
.y17f{bottom:468.066667pt;}
.y1b5{bottom:470.626667pt;}
.y150{bottom:474.306667pt;}
.y1f2{bottom:476.066667pt;}
.y63{bottom:476.866667pt;}
.y12c{bottom:477.346667pt;}
.y20{bottom:477.986667pt;}
.y9a{bottom:480.066667pt;}
.y199{bottom:483.906667pt;}
.y119{bottom:484.386667pt;}
.y1b4{bottom:486.466667pt;}
.y106{bottom:489.986667pt;}
.y14f{bottom:490.146667pt;}
.y1cc{bottom:490.306667pt;}
.y17e{bottom:491.906667pt;}
.y1f1{bottom:492.066667pt;}
.y62{bottom:492.866667pt;}
.y99{bottom:495.906667pt;}
.y118{bottom:498.146667pt;}
.y198{bottom:499.746667pt;}
.ye5{bottom:500.066667pt;}
.y12b{bottom:501.186667pt;}
.y1f{bottom:501.506667pt;}
.y1b3{bottom:502.306667pt;}
.y1cb{bottom:505.186667pt;}
.y14e{bottom:505.986667pt;}
.y17d{bottom:507.746667pt;}
.y1f0{bottom:507.906667pt;}
.y61{bottom:508.706667pt;}
.y98{bottom:511.746667pt;}
.y12a{bottom:514.946667pt;}
.y197{bottom:515.586667pt;}
.y1b2{bottom:518.146667pt;}
.y14d{bottom:521.986667pt;}
.y17c{bottom:523.586667pt;}
.y1ef{bottom:523.746667pt;}
.y60{bottom:524.546667pt;}
.ye4{bottom:524.706667pt;}
.y1e{bottom:526.466667pt;}
.y97{bottom:527.586667pt;}
.y105{bottom:530.466667pt;}
.y1b1{bottom:533.986667pt;}
.y14c{bottom:537.826667pt;}
.y17b{bottom:539.586667pt;}
.y5f{bottom:540.386667pt;}
.y161{bottom:543.586667pt;}
.y96{bottom:545.666667pt;}
.y1b0{bottom:549.986667pt;}
.y17a{bottom:555.426667pt;}
.y5e{bottom:556.226667pt;}
.y14b{bottom:561.666667pt;}
.yd0{bottom:564.066667pt;}
.ye2{bottom:565.026667pt;}
.y1af{bottom:565.826667pt;}
.y160{bottom:567.426667pt;}
.y104{bottom:570.786667pt;}
.y1d{bottom:570.946667pt;}
.y179{bottom:571.266667pt;}
.ycd{bottom:571.906667pt;}
.y5d{bottom:572.226667pt;}
.y95{bottom:574.466667pt;}
.y14a{bottom:577.506667pt;}
.ycf{bottom:579.906667pt;}
.y1ae{bottom:581.666667pt;}
.y15f{bottom:583.266667pt;}
.y178{bottom:587.133333pt;}
.y1ee{bottom:587.293333pt;}
.ycc{bottom:587.773333pt;}
.y5c{bottom:588.093333pt;}
.y94{bottom:590.333333pt;}
.y149{bottom:593.373333pt;}
.y1c{bottom:594.333333pt;}
.y103{bottom:595.453333pt;}
.yce{bottom:595.773333pt;}
.y1ad{bottom:597.533333pt;}
.y177{bottom:602.973333pt;}
.y15e{bottom:603.133333pt;}
.y5b{bottom:603.933333pt;}
.ye1{bottom:605.533333pt;}
.y93{bottom:606.173333pt;}
.y148{bottom:609.213333pt;}
.ycb{bottom:611.613333pt;}
.y1ac{bottom:613.373333pt;}
.yba{bottom:614.493333pt;}
.y1b{bottom:617.853333pt;}
.y176{bottom:618.813333pt;}
.y1ed{bottom:618.973333pt;}
.y5a{bottom:619.773333pt;}
.y147{bottom:625.213333pt;}
.yca{bottom:627.613333pt;}
.y92{bottom:630.013333pt;}
.y175{bottom:634.813333pt;}
.y59{bottom:635.613333pt;}
.y102{bottom:635.773333pt;}
.yb9{bottom:636.253333pt;}
.y1ab{bottom:637.213333pt;}
.y1a{bottom:641.053333pt;}
.yc9{bottom:643.453333pt;}
.ye0{bottom:645.853333pt;}
.y174{bottom:650.653333pt;}
.y58{bottom:651.453333pt;}
.y91{bottom:653.853333pt;}
.y146{bottom:656.893333pt;}
.y1aa{bottom:658.973333pt;}
.yc8{bottom:659.293333pt;}
.y101{bottom:660.253333pt;}
.y1ec{bottom:666.493333pt;}
.y57{bottom:667.453333pt;}
.y173{bottom:674.493333pt;}
.yc7{bottom:675.133333pt;}
.y19{bottom:676.733333pt;}
.y90{bottom:677.853333pt;}
.y145{bottom:678.653333pt;}
.y1eb{bottom:682.493333pt;}
.y56{bottom:683.293333pt;}
.ydf{bottom:686.333333pt;}
.y1ea{bottom:698.333333pt;}
.yc6{bottom:698.973333pt;}
.y55{bottom:699.133333pt;}
.y100{bottom:700.733333pt;}
.y8f{bottom:701.693333pt;}
.y172{bottom:704.253333pt;}
.y1e9{bottom:714.173333pt;}
.y54{bottom:714.973333pt;}
.y18{bottom:717.693333pt;}
.yc5{bottom:720.733333pt;}
.y8e{bottom:722.973333pt;}
.yff{bottom:725.213333pt;}
.yde{bottom:726.653333pt;}
.y1e8{bottom:730.013333pt;}
.y53{bottom:730.813333pt;}
.y8d{bottom:730.973333pt;}
.y17{bottom:742.493333pt;}
.y1e7{bottom:745.853333pt;}
.y52{bottom:746.653333pt;}
.yfe{bottom:749.853333pt;}
.y1e6{bottom:761.853333pt;}
.y8c{bottom:762.653333pt;}
.ydd{bottom:767.133333pt;}
.y51{bottom:770.653333pt;}
.yfd{bottom:774.333333pt;}
.y1e5{bottom:777.693333pt;}
.y8b{bottom:778.493333pt;}
.y50{bottom:786.493333pt;}
.y16{bottom:791.133333pt;}
.y1e4{bottom:793.533333pt;}
.y8a{bottom:794.333333pt;}
.yfa{bottom:798.813333pt;}
.y4f{bottom:802.373333pt;}
.ydc{bottom:807.493333pt;}
.y1e3{bottom:809.413333pt;}
.y89{bottom:810.213333pt;}
.y15{bottom:811.493333pt;}
.y117{bottom:814.853333pt;}
.y4e{bottom:818.213333pt;}
.y1e2{bottom:825.253333pt;}
.y88{bottom:826.053333pt;}
.y14{bottom:826.853333pt;}
.ydb{bottom:832.133333pt;}
.y4d{bottom:834.053333pt;}
.yf9{bottom:839.333333pt;}
.y1e1{bottom:841.093333pt;}
.y87{bottom:842.053333pt;}
.y13{bottom:842.213333pt;}
.y4c{bottom:850.053333pt;}
.y116{bottom:855.173333pt;}
.yd9{bottom:856.613333pt;}
.y1e0{bottom:857.093333pt;}
.y12{bottom:857.573333pt;}
.y86{bottom:857.893333pt;}
.y4b{bottom:865.893333pt;}
.y11{bottom:872.773333pt;}
.y1df{bottom:872.933333pt;}
.y85{bottom:873.733333pt;}
.yf8{bottom:879.653333pt;}
.y4a{bottom:881.733333pt;}
.y10{bottom:888.773333pt;}
.y84{bottom:889.573333pt;}
.yd8{bottom:897.093333pt;}
.y49{bottom:897.573333pt;}
.y115{bottom:904.293333pt;}
.y129{bottom:904.613333pt;}
.y83{bottom:905.413333pt;}
.y48{bottom:913.413333pt;}
.yf7{bottom:920.133333pt;}
.y128{bottom:920.453333pt;}
.y82{bottom:921.253333pt;}
.yf{bottom:921.733333pt;}
.y114{bottom:928.773333pt;}
.y47{bottom:929.253333pt;}
.ye{bottom:932.453333pt;}
.y127{bottom:936.453333pt;}
.y81{bottom:937.253333pt;}
.yd7{bottom:937.413333pt;}
.yd{bottom:943.173333pt;}
.y46{bottom:945.253333pt;}
.y126{bottom:952.293333pt;}
.y80{bottom:953.093333pt;}
.yc{bottom:953.893333pt;}
.yf6{bottom:960.453333pt;}
.y45{bottom:961.093333pt;}
.yd6{bottom:962.053333pt;}
.yb{bottom:966.853333pt;}
.y125{bottom:968.133333pt;}
.y7f{bottom:968.933333pt;}
.y113{bottom:969.253333pt;}
.y44{bottom:976.933333pt;}
.y124{bottom:983.973333pt;}
.y7e{bottom:984.773333pt;}
.yf5{bottom:985.093333pt;}
.yd4{bottom:986.533333pt;}
.ya{bottom:989.573333pt;}
.y43{bottom:992.773333pt;}
.y123{bottom:999.813333pt;}
.y7d{bottom:1000.613333pt;}
.yb6{bottom:1000.933333pt;}
.y8{bottom:1007.520000pt;}
.y42{bottom:1008.613333pt;}
.yf4{bottom:1009.573333pt;}
.yb8{bottom:1014.213333pt;}
.y122{bottom:1015.680000pt;}
.y7c{bottom:1018.720000pt;}
.y41{bottom:1024.640000pt;}
.yb5{bottom:1025.440000pt;}
.yb7{bottom:1030.080000pt;}
.yd3{bottom:1031.680000pt;}
.yf3{bottom:1034.080000pt;}
.y40{bottom:1040.480000pt;}
.y6{bottom:1041.920000pt;}
.y7b{bottom:1047.520000pt;}
.yb4{bottom:1050.080000pt;}
.y3f{bottom:1058.400000pt;}
.y7a{bottom:1063.360000pt;}
.h1c{height:23.840000pt;}
.h1d{height:23.872000pt;}
.h1b{height:24.000000pt;}
.h6{height:25.280000pt;}
.hc{height:25.918750pt;}
.h8{height:25.920000pt;}
.h2{height:27.680000pt;}
.h3{height:33.515625pt;}
.h22{height:33.609375pt;}
.h4{height:33.867188pt;}
.h19{height:34.945312pt;}
.he{height:37.090625pt;}
.hf{height:37.479688pt;}
.h1e{height:39.562500pt;}
.h1f{height:39.680000pt;}
.h1a{height:39.712000pt;}
.h20{height:39.840000pt;}
.h21{height:39.872000pt;}
.h13{height:41.112500pt;}
.h12{height:41.543750pt;}
.h16{height:43.782500pt;}
.hd{height:45.156250pt;}
.h11{height:47.310625pt;}
.h14{height:48.768750pt;}
.h10{height:52.284375pt;}
.ha{height:52.832812pt;}
.hb{height:56.445312pt;}
.h5{height:58.563750pt;}
.h18{height:72.453125pt;}
.h17{height:76.933125pt;}
.h9{height:82.635937pt;}
.h7{height:82.726250pt;}
.h15{height:279.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:41.440000pt;}
.wc{width:41.600000pt;}
.w19{width:46.912000pt;}
.w12{width:47.040000pt;}
.w16{width:47.072000pt;}
.w8{width:52.992000pt;}
.w18{width:53.280000pt;}
.w13{width:55.680000pt;}
.w15{width:55.840000pt;}
.w3{width:69.760000pt;}
.wd{width:70.400000pt;}
.wa{width:70.592000pt;}
.w9{width:70.720000pt;}
.wb{width:85.120000pt;}
.we{width:85.312000pt;}
.w11{width:108.512000pt;}
.w14{width:110.112000pt;}
.w10{width:110.272000pt;}
.w17{width:173.306667pt;}
.w6{width:180.320000pt;}
.w2{width:628.133333pt;}
.w5{width:677.920000pt;}
.w7{width:723.333333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x8{left:-1.053333pt;}
.x0{left:0.000000pt;}
.x34{left:6.720000pt;}
.x3{left:7.680000pt;}
.x18{left:9.600000pt;}
.x1c{left:11.546667pt;}
.x2c{left:12.826667pt;}
.x23{left:14.426667pt;}
.x35{left:15.840000pt;}
.x20{left:17.280000pt;}
.x37{left:18.720000pt;}
.x1e{left:20.640000pt;}
.x36{left:21.760000pt;}
.x31{left:24.320000pt;}
.x43{left:26.400000pt;}
.x24{left:29.280000pt;}
.x26{left:32.320000pt;}
.x17{left:34.880000pt;}
.x27{left:36.480000pt;}
.x25{left:39.520000pt;}
.x41{left:46.714667pt;}
.x1{left:48.000000pt;}
.x6{left:57.600000pt;}
.x4a{left:71.999988pt;}
.x12{left:74.239988pt;}
.x10{left:76.639988pt;}
.x45{left:77.600000pt;}
.xe{left:84.959988pt;}
.x40{left:96.352000pt;}
.x28{left:102.432000pt;}
.x11{left:159.546655pt;}
.x29{left:173.786667pt;}
.x13{left:187.066655pt;}
.x2{left:190.746667pt;}
.x48{left:229.946655pt;}
.x2a{left:244.826667pt;}
.xb{left:250.426655pt;}
.xa{left:253.946655pt;}
.x30{left:259.586655pt;}
.xc{left:266.306655pt;}
.x32{left:268.706667pt;}
.x42{left:270.466667pt;}
.x2e{left:276.386655pt;}
.x49{left:281.986655pt;}
.xf{left:286.466655pt;}
.x15{left:288.066655pt;}
.x3e{left:292.706655pt;}
.x3c{left:303.746655pt;}
.x7{left:306.720000pt;}
.x33{left:316.546667pt;}
.x9{left:324.706655pt;}
.x2b{left:330.786667pt;}
.xd{left:336.706655pt;}
.x2f{left:342.946655pt;}
.x14{left:343.906655pt;}
.x5{left:396.866655pt;}
.x16{left:420.866655pt;}
.x1b{left:444.893322pt;}
.x44{left:469.373333pt;}
.x1d{left:475.293333pt;}
.x38{left:532.413333pt;}
.x19{left:544.093322pt;}
.x1f{left:546.653333pt;}
.x1a{left:569.053322pt;}
.x21{left:617.893333pt;}
.x39{left:641.733333pt;}
.x46{left:643.333333pt;}
.x4{left:676.133333pt;}
.x3d{left:678.213322pt;}
.x3a{left:689.413333pt;}
.x47{left:697.413333pt;}
.x22{left:703.653333pt;}
.x3b{left:715.013322pt;}
.x2d{left:723.333322pt;}
.x3f{left:743.013322pt;}
}




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