
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_94e843fde37c7f19e1aa8f99.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_cb43eb3498f664fc1f7592cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_3616d0793cd52ef4b862eca1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_67f7c85df60fad472d484a30.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_319a060a94ced92e8c373894.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f548e610ee0639354e2ad172.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.444600px;}
.ls18{letter-spacing:-0.291600px;}
.ls8{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.125400px;}
.ls7{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls6{letter-spacing:-0.084000px;}
.ls10{letter-spacing:-0.014760px;}
.lsb{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls9{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.047520px;}
.lsa{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.064800px;}
.ls19{letter-spacing:0.074160px;}
.ls14{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.108600px;}
.ls16{letter-spacing:0.115800px;}
.lsc{letter-spacing:0.116400px;}
.lsd{letter-spacing:0.173400px;}
.ls2{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.342200px;}
.ws10{word-spacing:-13.335000px;}
.wsa{word-spacing:-13.275360px;}
.wse{word-spacing:-13.273920px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.217400px;}
.wsc{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.101000px;}
.ws6{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.934800px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-9.810000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._7{margin-left:-3.550682px;}
._6{margin-left:-2.524800px;}
._0{margin-left:-1.020000px;}
._2{width:1.006812px;}
._3{width:2.344800px;}
._4{width:3.439788px;}
._9{width:4.903850px;}
._8{width:5.906994px;}
._5{width:7.094400px;}
._c{width:8.957399px;}
._e{width:10.100040px;}
._a{width:11.362800px;}
._d{width:14.248440px;}
._1a{width:15.390720px;}
._17{width:17.254440px;}
._2b{width:18.276480px;}
._23{width:20.019960px;}
._2c{width:21.042000px;}
._13{width:22.299840px;}
._11{width:23.567040px;}
._b{width:25.737960px;}
._1{width:27.261000px;}
._1d{width:31.563000px;}
._1c{width:32.645160px;}
._10{width:33.727320px;}
._1f{width:36.613080px;}
._15{width:39.017880px;}
._26{width:58.196160px;}
._28{width:59.278320px;}
._29{width:62.885520px;}
._18{width:68.957640px;}
._21{width:76.111920px;}
._22{width:98.717040px;}
._20{width:104.308200px;}
._14{width:109.538640px;}
._24{width:111.282120px;}
._2a{width:130.580640px;}
._25{width:149.097600px;}
._1b{width:151.382160px;}
._1e{width:172.544400px;}
._27{width:177.654600px;}
._16{width:180.299880px;}
._12{width:230.149440px;}
._19{width:268.676280px;}
._f{width:397.333080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y62{bottom:7.830000px;}
.y133{bottom:7.860000px;}
.y66{bottom:7.920000px;}
.yce{bottom:7.950000px;}
.y8d{bottom:12.420000px;}
.y14d{bottom:19.530000px;}
.y6a{bottom:25.380000px;}
.y61{bottom:25.470000px;}
.y87{bottom:25.500000px;}
.y8c{bottom:29.970000px;}
.y60{bottom:43.020000px;}
.y65{bottom:43.110000px;}
.y7c{bottom:60.570000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y1c2{bottom:111.360000px;}
.y79{bottom:112.260000px;}
.ycc{bottom:112.350000px;}
.y5e{bottom:116.940000px;}
.y1a5{bottom:120.180000px;}
.y1ef{bottom:123.150000px;}
.y92{bottom:124.680000px;}
.y29{bottom:126.930000px;}
.y10b{bottom:127.920000px;}
.y1c1{bottom:129.000000px;}
.y78{bottom:129.810000px;}
.ycb{bottom:129.900000px;}
.y1a4{bottom:137.820000px;}
.y1ee{bottom:140.700000px;}
.y14b{bottom:141.060000px;}
.y91{bottom:142.230000px;}
.y28{bottom:144.570000px;}
.y10a{bottom:145.470000px;}
.y177{bottom:146.100000px;}
.y1c0{bottom:146.550000px;}
.y77{bottom:147.450000px;}
.yca{bottom:147.540000px;}
.y5d{bottom:152.580000px;}
.y1a3{bottom:155.370000px;}
.y1ed{bottom:158.250000px;}
.y90{bottom:159.780000px;}
.y109{bottom:163.110000px;}
.y176{bottom:163.650000px;}
.y76{bottom:165.000000px;}
.yc9{bottom:165.090000px;}
.y1a2{bottom:173.010000px;}
.yed{bottom:173.910000px;}
.y1ec{bottom:175.890000px;}
.y12e{bottom:177.870000px;}
.y27{bottom:180.120000px;}
.y108{bottom:180.660000px;}
.y175{bottom:181.200000px;}
.y75{bottom:182.550000px;}
.yc8{bottom:182.730000px;}
.y115{bottom:183.180000px;}
.y14a{bottom:185.970000px;}
.y8f{bottom:186.420000px;}
.y5c{bottom:188.130000px;}
.y26{bottom:197.760000px;}
.y174{bottom:198.840000px;}
.y74{bottom:200.190000px;}
.y1eb{bottom:202.440000px;}
.y107{bottom:207.210000px;}
.y1a1{bottom:208.560000px;}
.yec{bottom:209.460000px;}
.y12d{bottom:213.420000px;}
.y25{bottom:215.310000px;}
.y173{bottom:216.390000px;}
.yae{bottom:216.660000px;}
.y73{bottom:217.740000px;}
.yc7{bottom:218.280000px;}
.y114{bottom:218.820000px;}
.y8e{bottom:219.360000px;}
.y1ea{bottom:220.080000px;}
.y5b{bottom:223.680000px;}
.y1a0{bottom:226.110000px;}
.y149{bottom:230.880000px;}
.y12c{bottom:231.060000px;}
.y24{bottom:232.860000px;}
.yc6{bottom:235.830000px;}
.y1bf{bottom:236.190000px;}
.y106{bottom:240.240000px;}
.y19f{bottom:243.750000px;}
.yeb{bottom:245.100000px;}
.y1e9{bottom:246.630000px;}
.y12b{bottom:248.610000px;}
.y23{bottom:250.500000px;}
.y172{bottom:251.940000px;}
.yad{bottom:252.300000px;}
.y72{bottom:253.380000px;}
.yc5{bottom:253.470000px;}
.y1be{bottom:253.740000px;}
.y113{bottom:254.370000px;}
.y5a{bottom:259.320000px;}
.yea{bottom:260.040000px;}
.y19e{bottom:261.300000px;}
.y8b{bottom:264.270000px;}
.y12a{bottom:266.160000px;}
.y105{bottom:267.510000px;}
.y22{bottom:268.050000px;}
.y171{bottom:269.580000px;}
.y71{bottom:270.930000px;}
.yc4{bottom:271.020000px;}
.y1e8{bottom:273.180000px;}
.y148{bottom:275.790000px;}
.y59{bottom:276.870000px;}
.y19d{bottom:278.940000px;}
.y129{bottom:283.800000px;}
.y21{bottom:285.690000px;}
.y170{bottom:287.130000px;}
.ye9{bottom:287.400000px;}
.yac{bottom:287.850000px;}
.y70{bottom:288.480000px;}
.yc3{bottom:288.660000px;}
.y112{bottom:290.010000px;}
.y1bd{bottom:290.190000px;}
.y1e7{bottom:290.820000px;}
.y58{bottom:294.510000px;}
.y104{bottom:294.870000px;}
.y19c{bottom:296.490000px;}
.y128{bottom:301.350000px;}
.y20{bottom:303.240000px;}
.y16f{bottom:304.770000px;}
.yab{bottom:305.400000px;}
.yc2{bottom:306.210000px;}
.y111{bottom:307.560000px;}
.y57{bottom:312.060000px;}
.y8a{bottom:313.680000px;}
.y19b{bottom:314.040000px;}
.ye8{bottom:314.760000px;}
.y1e6{bottom:317.370000px;}
.y127{bottom:318.990000px;}
.y1bc{bottom:319.620000px;}
.y6f{bottom:320.700000px;}
.y103{bottom:322.230000px;}
.y16e{bottom:322.320000px;}
.y56{bottom:329.610000px;}
.y1f{bottom:330.150000px;}
.yaa{bottom:334.920000px;}
.y1e5{bottom:335.010000px;}
.y126{bottom:336.540000px;}
.y1bb{bottom:337.350000px;}
.y110{bottom:339.780000px;}
.y16d{bottom:339.870000px;}
.y19a{bottom:340.680000px;}
.yc1{bottom:341.760000px;}
.ye7{bottom:342.030000px;}
.y55{bottom:347.250000px;}
.y102{bottom:349.590000px;}
.ya9{bottom:353.370000px;}
.y1ba{bottom:354.900000px;}
.y16c{bottom:357.510000px;}
.y89{bottom:358.590000px;}
.yc0{bottom:359.400000px;}
.y1e4{bottom:361.560000px;}
.y54{bottom:364.800000px;}
.y147{bottom:365.610000px;}
.ye6{bottom:369.390000px;}
.ya8{bottom:371.820000px;}
.y125{bottom:372.090000px;}
.y1b9{bottom:373.350000px;}
.y199{bottom:376.230000px;}
.ybf{bottom:376.950000px;}
.y1e{bottom:378.390000px;}
.y1e3{bottom:379.110000px;}
.y53{bottom:382.440000px;}
.y16b{bottom:384.060000px;}
.y124{bottom:389.730000px;}
.ya7{bottom:390.270000px;}
.y1b8{bottom:390.900000px;}
.y198{bottom:393.870000px;}
.ybe{bottom:394.500000px;}
.y1d{bottom:396.300000px;}
.ye5{bottom:396.750000px;}
.y101{bottom:398.280000px;}
.y52{bottom:399.990000px;}
.y88{bottom:403.590000px;}
.y1b7{bottom:408.450000px;}
.y146{bottom:410.520000px;}
.y197{bottom:411.420000px;}
.ybd{bottom:412.140000px;}
.y51{bottom:417.540000px;}
.y16a{bottom:419.700000px;}
.y123{bottom:421.950000px;}
.y1e2{bottom:423.300000px;}
.ye4{bottom:424.020000px;}
.ya6{bottom:426.720000px;}
.y1b6{bottom:426.900000px;}
.y196{bottom:428.970000px;}
.ybc{bottom:429.690000px;}
.y1c{bottom:433.380000px;}
.y100{bottom:433.830000px;}
.y50{bottom:435.180000px;}
.y169{bottom:437.250000px;}
.y1e1{bottom:440.940000px;}
.ya5{bottom:444.270000px;}
.y1b5{bottom:444.450000px;}
.y195{bottom:446.610000px;}
.y86{bottom:448.500000px;}
.y1b{bottom:450.930000px;}
.ye3{bottom:451.380000px;}
.yff{bottom:451.470000px;}
.y168{bottom:454.800000px;}
.ya4{bottom:461.820000px;}
.y194{bottom:464.160000px;}
.ybb{bottom:465.330000px;}
.y1e0{bottom:467.490000px;}
.y1a{bottom:468.480000px;}
.yfe{bottom:469.020000px;}
.y4f{bottom:470.760000px;}
.y167{bottom:472.470000px;}
.y145{bottom:473.100000px;}
.ye2{bottom:478.770000px;}
.ya3{bottom:479.490000px;}
.y1b4{bottom:480.930000px;}
.yba{bottom:482.910000px;}
.y1df{bottom:485.070000px;}
.y19{bottom:486.150000px;}
.yfd{bottom:486.600000px;}
.y4e{bottom:488.400000px;}
.y166{bottom:490.020000px;}
.y85{bottom:493.440000px;}
.y193{bottom:499.830000px;}
.yb9{bottom:500.460000px;}
.y1de{bottom:502.710000px;}
.y18{bottom:503.700000px;}
.y4d{bottom:505.950000px;}
.ya2{bottom:506.040000px;}
.y165{bottom:507.660000px;}
.y192{bottom:514.770000px;}
.y1b3{bottom:516.480000px;}
.y144{bottom:518.010000px;}
.yb8{bottom:518.100000px;}
.y17{bottom:521.340000px;}
.yfc{bottom:522.240000px;}
.y4c{bottom:523.500000px;}
.ye1{bottom:527.460000px;}
.y1dd{bottom:529.260000px;}
.yb7{bottom:535.650000px;}
.y84{bottom:538.350000px;}
.y16{bottom:538.890000px;}
.ya1{bottom:538.980000px;}
.yfb{bottom:539.790000px;}
.y4b{bottom:541.140000px;}
.y191{bottom:542.130000px;}
.y164{bottom:543.210000px;}
.y1b2{bottom:543.390000px;}
.y1dc{bottom:546.900000px;}
.y15{bottom:556.440000px;}
.yfa{bottom:557.340000px;}
.y4a{bottom:558.690000px;}
.y163{bottom:560.760000px;}
.y143{bottom:562.920000px;}
.ye0{bottom:563.010000px;}
.y1db{bottom:564.450000px;}
.ya0{bottom:566.340000px;}
.y190{bottom:569.400000px;}
.yb6{bottom:571.290000px;}
.y14{bottom:574.080000px;}
.yf9{bottom:574.980000px;}
.y49{bottom:576.330000px;}
.y162{bottom:578.400000px;}
.y1b1{bottom:580.470000px;}
.ydf{bottom:580.650000px;}
.yb5{bottom:588.840000px;}
.y1da{bottom:591.000000px;}
.y13{bottom:591.630000px;}
.yf8{bottom:592.530000px;}
.y9f{bottom:593.700000px;}
.y48{bottom:593.880000px;}
.y161{bottom:595.950000px;}
.y18f{bottom:596.760000px;}
.y1b0{bottom:598.020000px;}
.yde{bottom:598.200000px;}
.y83{bottom:600.810000px;}
.yb4{bottom:606.390000px;}
.y6e{bottom:607.650000px;}
.y142{bottom:607.830000px;}
.y1d9{bottom:608.640000px;}
.y12{bottom:609.270000px;}
.yf7{bottom:610.170000px;}
.y47{bottom:611.430000px;}
.y160{bottom:613.590000px;}
.y1af{bottom:615.660000px;}
.ydd{bottom:615.840000px;}
.y9e{bottom:621.060000px;}
.y18e{bottom:624.120000px;}
.y10f{bottom:624.390000px;}
.y1d8{bottom:626.190000px;}
.y11{bottom:626.820000px;}
.y46{bottom:629.070000px;}
.y15f{bottom:631.140000px;}
.y1ae{bottom:633.210000px;}
.ydc{bottom:633.390000px;}
.yf6{bottom:636.720000px;}
.yb3{bottom:642.030000px;}
.y6d{bottom:643.560000px;}
.y10{bottom:644.370000px;}
.y82{bottom:645.810000px;}
.y45{bottom:646.620000px;}
.y9d{bottom:648.330000px;}
.y15e{bottom:648.690000px;}
.y1ad{bottom:650.760000px;}
.ydb{bottom:650.940000px;}
.y1d7{bottom:652.830000px;}
.yb2{bottom:659.580000px;}
.yf{bottom:662.010000px;}
.y44{bottom:664.260000px;}
.y15d{bottom:666.330000px;}
.y1ac{bottom:668.400000px;}
.yda{bottom:668.580000px;}
.yf5{bottom:669.660000px;}
.y1d6{bottom:670.380000px;}
.y18d{bottom:672.810000px;}
.y9c{bottom:675.690000px;}
.y10e{bottom:677.220000px;}
.ye{bottom:679.560000px;}
.y43{bottom:681.810000px;}
.y15c{bottom:683.880000px;}
.y1ab{bottom:685.950000px;}
.yd9{bottom:686.130000px;}
.yb1{bottom:686.220000px;}
.y6c{bottom:689.190000px;}
.y18c{bottom:690.360000px;}
.y81{bottom:690.720000px;}
.y141{bottom:691.710000px;}
.y1d5{bottom:696.930000px;}
.yd{bottom:697.200000px;}
.y42{bottom:699.360000px;}
.y15b{bottom:701.520000px;}
.y9b{bottom:703.050000px;}
.y1aa{bottom:703.590000px;}
.yd8{bottom:703.770000px;}
.y140{bottom:709.350000px;}
.y10d{bottom:712.770000px;}
.y1d4{bottom:714.570000px;}
.yf4{bottom:714.660000px;}
.yc{bottom:714.750000px;}
.y1a9{bottom:721.140000px;}
.yb0{bottom:721.770000px;}
.y18b{bottom:726.000000px;}
.y15a{bottom:728.070000px;}
.yd7{bottom:730.320000px;}
.yb{bottom:732.300000px;}
.y6b{bottom:734.100000px;}
.y41{bottom:735.000000px;}
.y80{bottom:735.630000px;}
.y1a8{bottom:738.690000px;}
.y1d3{bottom:741.120000px;}
.y18a{bottom:743.550000px;}
.y13f{bottom:744.900000px;}
.y10c{bottom:744.990000px;}
.y9a{bottom:751.740000px;}
.y40{bottom:752.550000px;}
.yaf{bottom:753.990000px;}
.y1d2{bottom:758.670000px;}
.ya{bottom:759.210000px;}
.yf3{bottom:759.570000px;}
.y122{bottom:760.560000px;}
.y189{bottom:761.190000px;}
.y13e{bottom:762.450000px;}
.y159{bottom:763.620000px;}
.y1a7{bottom:765.600000px;}
.yd6{bottom:766.230000px;}
.y3f{bottom:770.190000px;}
.y1d1{bottom:776.310000px;}
.y121{bottom:778.200000px;}
.y188{bottom:778.740000px;}
.y13d{bottom:780.090000px;}
.y7f{bottom:780.540000px;}
.y158{bottom:781.260000px;}
.y99{bottom:787.290000px;}
.y3e{bottom:787.740000px;}
.y120{bottom:795.750000px;}
.y187{bottom:796.290000px;}
.y69{bottom:796.650000px;}
.y13c{bottom:797.640000px;}
.y157{bottom:798.810000px;}
.y1d0{bottom:802.860000px;}
.yf2{bottom:804.480000px;}
.y98{bottom:804.930000px;}
.y3d{bottom:805.290000px;}
.y9{bottom:807.540000px;}
.yd5{bottom:811.860000px;}
.y186{bottom:813.930000px;}
.y13b{bottom:815.280000px;}
.y156{bottom:816.450000px;}
.y1cf{bottom:820.500000px;}
.y11f{bottom:822.300000px;}
.y97{bottom:822.480000px;}
.y3c{bottom:822.930000px;}
.y7e{bottom:825.450000px;}
.y185{bottom:831.480000px;}
.yf1{bottom:831.750000px;}
.y13a{bottom:832.830000px;}
.y155{bottom:834.000000px;}
.yd4{bottom:839.220000px;}
.y3b{bottom:840.480000px;}
.y8{bottom:843.360000px;}
.y1ce{bottom:847.050000px;}
.y184{bottom:849.030000px;}
.y139{bottom:850.380000px;}
.y154{bottom:851.550000px;}
.y11e{bottom:855.330000px;}
.y3a{bottom:858.030000px;}
.y68{bottom:859.110000px;}
.y1cd{bottom:864.600000px;}
.yd3{bottom:866.580000px;}
.y183{bottom:866.670000px;}
.y138{bottom:868.020000px;}
.y153{bottom:869.190000px;}
.y7d{bottom:870.360000px;}
.y96{bottom:875.670000px;}
.yf0{bottom:876.750000px;}
.y7{bottom:879.360000px;}
.y1cc{bottom:882.240000px;}
.y11d{bottom:882.600000px;}
.y182{bottom:884.220000px;}
.y95{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.yd2{bottom:893.850000px;}
.y137{bottom:894.570000px;}
.y152{bottom:896.100000px;}
.y181{bottom:901.860000px;}
.y67{bottom:904.020000px;}
.y1cb{bottom:908.790000px;}
.y11c{bottom:909.960000px;}
.y94{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y6{bottom:915.360000px;}
.y180{bottom:919.410000px;}
.yd1{bottom:921.210000px;}
.yef{bottom:921.660000px;}
.y1ca{bottom:926.430000px;}
.y136{bottom:927.600000px;}
.y37{bottom:928.860000px;}
.y7b{bottom:932.910000px;}
.y11b{bottom:937.320000px;}
.y151{bottom:941.730000px;}
.y36{bottom:946.410000px;}
.yd0{bottom:948.570000px;}
.y64{bottom:948.930000px;}
.y5{bottom:951.450000px;}
.y1c9{bottom:952.980000px;}
.y135{bottom:954.870000px;}
.y17f{bottom:954.960000px;}
.y35{bottom:963.960000px;}
.y11a{bottom:964.680000px;}
.yee{bottom:966.570000px;}
.y1c8{bottom:970.530000px;}
.y17e{bottom:972.600000px;}
.ycf{bottom:975.930000px;}
.y34{bottom:981.600000px;}
.y134{bottom:982.230000px;}
.y150{bottom:986.640000px;}
.y1c7{bottom:988.170000px;}
.y4{bottom:989.700000px;}
.y17d{bottom:990.150000px;}
.y119{bottom:991.950000px;}
.y33{bottom:999.150000px;}
.ycd{bottom:1003.200000px;}
.y17c{bottom:1007.790000px;}
.y132{bottom:1009.590000px;}
.y63{bottom:1011.510000px;}
.y3{bottom:1014.390000px;}
.y1c6{bottom:1015.110000px;}
.y32{bottom:1016.820000px;}
.y118{bottom:1019.340000px;}
.y17b{bottom:1025.370000px;}
.y14f{bottom:1031.580000px;}
.y31{bottom:1034.370000px;}
.y131{bottom:1036.890000px;}
.y17a{bottom:1042.920000px;}
.y117{bottom:1046.700000px;}
.y30{bottom:1051.920000px;}
.y93{bottom:1052.370000px;}
.y5f{bottom:1056.420000px;}
.y179{bottom:1060.560000px;}
.y1c5{bottom:1063.350000px;}
.y130{bottom:1064.250000px;}
.y1a6{bottom:1069.560000px;}
.y7a{bottom:1069.920000px;}
.y14e{bottom:1070.640000px;}
.y116{bottom:1073.970000px;}
.y1f1{bottom:1078.560000px;}
.y178{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y1c4{bottom:1090.260000px;}
.y12f{bottom:1091.610000px;}
.y1f0{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y14c{bottom:1115.550000px;}
.y2d{bottom:1122.750000px;}
.y1c3{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h12{height:26.550000px;}
.h16{height:26.580000px;}
.h13{height:26.640000px;}
.h15{height:26.670000px;}
.h2{height:30.022383px;}
.h18{height:38.250000px;}
.h3{height:39.155273px;}
.hf{height:44.100000px;}
.ha{height:44.190000px;}
.h10{height:44.220000px;}
.h11{height:48.690000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:61.740000px;}
.h14{height:61.793886px;}
.h17{height:61.830000px;}
.hb{height:61.860000px;}
.hd{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.he{height:79.320000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2b{width:40.410000px;}
.wb{width:54.720000px;}
.w3d{width:56.070000px;}
.w31{width:56.880000px;}
.w30{width:56.910000px;}
.w2f{width:56.970000px;}
.w2c{width:66.330000px;}
.w2d{width:66.960000px;}
.w3c{width:71.100000px;}
.w3b{width:73.440000px;}
.w38{width:76.770000px;}
.wc{width:76.950000px;}
.w9{width:79.380000px;}
.w21{width:82.350000px;}
.w1d{width:82.980000px;}
.w1c{width:86.400000px;}
.w26{width:87.420000px;}
.wa{width:90.900000px;}
.w5{width:91.620000px;}
.w1b{width:93.810000px;}
.w25{width:94.590000px;}
.wd{width:96.690000px;}
.w8{width:96.960000px;}
.w32{width:102.420000px;}
.w33{width:103.530000px;}
.w3{width:104.610000px;}
.w15{width:106.380000px;}
.w2a{width:107.940000px;}
.w37{width:111.420000px;}
.w24{width:116.280000px;}
.w17{width:124.200000px;}
.wf{width:126.270000px;}
.w4{width:126.630000px;}
.we{width:128.520000px;}
.w1e{width:128.820000px;}
.w20{width:129.540000px;}
.w10{width:130.530000px;}
.w1a{width:133.560000px;}
.w18{width:138.960000px;}
.w35{width:141.750000px;}
.w12{width:143.010000px;}
.w28{width:143.670000px;}
.w34{width:146.250000px;}
.w23{width:149.160000px;}
.w11{width:150.300000px;}
.w3a{width:154.020000px;}
.w27{width:159.300000px;}
.w19{width:159.750000px;}
.w22{width:159.840000px;}
.w1f{width:168.390000px;}
.w36{width:172.110000px;}
.w14{width:182.910000px;}
.w29{width:186.480000px;}
.w16{width:200.280000px;}
.w6{width:211.710000px;}
.w7{width:218.250000px;}
.w2e{width:247.770000px;}
.w13{width:323.400000px;}
.w39{width:383.070000px;}
.w3e{width:683.970000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:70.379987px;}
.x13{left:71.910000px;}
.x36{left:81.539987px;}
.x42{left:83.609987px;}
.x2e{left:88.379987px;}
.x44{left:95.039987px;}
.x2c{left:103.409987px;}
.xa{left:109.439987px;}
.x43{left:110.609987px;}
.x17{left:122.039987px;}
.x19{left:123.839987px;}
.x30{left:138.780000px;}
.x27{left:141.750000px;}
.x22{left:152.460000px;}
.xd{left:166.440000px;}
.x5{left:174.090000px;}
.x37{left:184.620000px;}
.x14{left:203.160000px;}
.x1e{left:208.740000px;}
.xc{left:223.409987px;}
.x2{left:231.149987px;}
.xe{left:246.540000px;}
.x1a{left:252.390000px;}
.x23{left:282.000000px;}
.x31{left:283.170000px;}
.x28{left:291.630000px;}
.x6{left:301.440000px;}
.x3b{left:320.160000px;}
.xf{left:338.250000px;}
.x15{left:354.180000px;}
.x1b{left:359.490000px;}
.x1f{left:369.300000px;}
.x2f{left:381.899987px;}
.x7{left:393.780000px;}
.x29{left:408.720000px;}
.x38{left:433.110000px;}
.x24{left:451.200000px;}
.x3f{left:452.550000px;}
.x3c{left:462.630000px;}
.x10{left:471.450000px;}
.x39{left:490.800000px;}
.x16{left:497.910000px;}
.x20{left:503.580000px;}
.x3a{left:548.520000px;}
.x1c{left:560.580000px;}
.x11{left:568.860000px;}
.x32{left:579.120000px;}
.x25{left:581.550000px;}
.x2a{left:592.170000px;}
.x21{left:598.110000px;}
.x8{left:606.210000px;}
.x40{left:607.380000px;}
.x33{left:620.340000px;}
.x3d{left:635.460000px;}
.x26{left:664.620000px;}
.x41{left:681.630000px;}
.x1d{left:685.500000px;}
.x34{left:687.480000px;}
.x9{left:688.559987px;}
.x12{left:698.190000px;}
.x2d{left:709.889987px;}
.x3e{left:747.690000px;}
.x35{left:752.639987px;}
.x2b{left:766.139987px;}
.x18{left:776.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.395200pt;}
.ls18{letter-spacing:-0.259200pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.111467pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:-0.074667pt;}
.ls10{letter-spacing:-0.013120pt;}
.lsb{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls9{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.042240pt;}
.lsa{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.057600pt;}
.ls19{letter-spacing:0.065920pt;}
.ls14{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.096533pt;}
.ls16{letter-spacing:0.102933pt;}
.lsc{letter-spacing:0.103467pt;}
.lsd{letter-spacing:0.154133pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.859733pt;}
.ws10{word-spacing:-11.853333pt;}
.wsa{word-spacing:-11.800320pt;}
.wse{word-spacing:-11.799040pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.748800pt;}
.wsc{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.645333pt;}
.ws6{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.497600pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._7{margin-left:-3.156162pt;}
._6{margin-left:-2.244266pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.894944pt;}
._3{width:2.084267pt;}
._4{width:3.057589pt;}
._9{width:4.358978pt;}
._8{width:5.250661pt;}
._5{width:6.306134pt;}
._c{width:7.962132pt;}
._e{width:8.977813pt;}
._a{width:10.100267pt;}
._d{width:12.665280pt;}
._1a{width:13.680640pt;}
._17{width:15.337280pt;}
._2b{width:16.245760pt;}
._23{width:17.795520pt;}
._2c{width:18.704000pt;}
._13{width:19.822080pt;}
._11{width:20.948480pt;}
._b{width:22.878187pt;}
._1{width:24.232000pt;}
._1d{width:28.056000pt;}
._1c{width:29.017920pt;}
._10{width:29.979840pt;}
._1f{width:32.544960pt;}
._15{width:34.682560pt;}
._26{width:51.729920pt;}
._28{width:52.691840pt;}
._29{width:55.898240pt;}
._18{width:61.295680pt;}
._21{width:67.655040pt;}
._22{width:87.748480pt;}
._20{width:92.718400pt;}
._14{width:97.367680pt;}
._24{width:98.917440pt;}
._2a{width:116.071680pt;}
._25{width:132.531200pt;}
._1b{width:134.561920pt;}
._1e{width:153.372800pt;}
._27{width:157.915200pt;}
._16{width:160.266560pt;}
._12{width:204.577280pt;}
._19{width:238.823360pt;}
._f{width:353.184960pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:6.960000pt;}
.y133{bottom:6.986667pt;}
.y66{bottom:7.040000pt;}
.yce{bottom:7.066667pt;}
.y8d{bottom:11.040000pt;}
.y14d{bottom:17.360000pt;}
.y6a{bottom:22.560000pt;}
.y61{bottom:22.640000pt;}
.y87{bottom:22.666667pt;}
.y8c{bottom:26.640000pt;}
.y60{bottom:38.240000pt;}
.y65{bottom:38.320000pt;}
.y7c{bottom:53.840000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y1c2{bottom:98.986667pt;}
.y79{bottom:99.786667pt;}
.ycc{bottom:99.866667pt;}
.y5e{bottom:103.946667pt;}
.y1a5{bottom:106.826667pt;}
.y1ef{bottom:109.466667pt;}
.y92{bottom:110.826667pt;}
.y29{bottom:112.826667pt;}
.y10b{bottom:113.706667pt;}
.y1c1{bottom:114.666667pt;}
.y78{bottom:115.386667pt;}
.ycb{bottom:115.466667pt;}
.y1a4{bottom:122.506667pt;}
.y1ee{bottom:125.066667pt;}
.y14b{bottom:125.386667pt;}
.y91{bottom:126.426667pt;}
.y28{bottom:128.506667pt;}
.y10a{bottom:129.306667pt;}
.y177{bottom:129.866667pt;}
.y1c0{bottom:130.266667pt;}
.y77{bottom:131.066667pt;}
.yca{bottom:131.146667pt;}
.y5d{bottom:135.626667pt;}
.y1a3{bottom:138.106667pt;}
.y1ed{bottom:140.666667pt;}
.y90{bottom:142.026667pt;}
.y109{bottom:144.986667pt;}
.y176{bottom:145.466667pt;}
.y76{bottom:146.666667pt;}
.yc9{bottom:146.746667pt;}
.y1a2{bottom:153.786667pt;}
.yed{bottom:154.586667pt;}
.y1ec{bottom:156.346667pt;}
.y12e{bottom:158.106667pt;}
.y27{bottom:160.106667pt;}
.y108{bottom:160.586667pt;}
.y175{bottom:161.066667pt;}
.y75{bottom:162.266667pt;}
.yc8{bottom:162.426667pt;}
.y115{bottom:162.826667pt;}
.y14a{bottom:165.306667pt;}
.y8f{bottom:165.706667pt;}
.y5c{bottom:167.226667pt;}
.y26{bottom:175.786667pt;}
.y174{bottom:176.746667pt;}
.y74{bottom:177.946667pt;}
.y1eb{bottom:179.946667pt;}
.y107{bottom:184.186667pt;}
.y1a1{bottom:185.386667pt;}
.yec{bottom:186.186667pt;}
.y12d{bottom:189.706667pt;}
.y25{bottom:191.386667pt;}
.y173{bottom:192.346667pt;}
.yae{bottom:192.586667pt;}
.y73{bottom:193.546667pt;}
.yc7{bottom:194.026667pt;}
.y114{bottom:194.506667pt;}
.y8e{bottom:194.986667pt;}
.y1ea{bottom:195.626667pt;}
.y5b{bottom:198.826667pt;}
.y1a0{bottom:200.986667pt;}
.y149{bottom:205.226667pt;}
.y12c{bottom:205.386667pt;}
.y24{bottom:206.986667pt;}
.yc6{bottom:209.626667pt;}
.y1bf{bottom:209.946667pt;}
.y106{bottom:213.546667pt;}
.y19f{bottom:216.666667pt;}
.yeb{bottom:217.866667pt;}
.y1e9{bottom:219.226667pt;}
.y12b{bottom:220.986667pt;}
.y23{bottom:222.666667pt;}
.y172{bottom:223.946667pt;}
.yad{bottom:224.266667pt;}
.y72{bottom:225.226667pt;}
.yc5{bottom:225.306667pt;}
.y1be{bottom:225.546667pt;}
.y113{bottom:226.106667pt;}
.y5a{bottom:230.506667pt;}
.yea{bottom:231.146667pt;}
.y19e{bottom:232.266667pt;}
.y8b{bottom:234.906667pt;}
.y12a{bottom:236.586667pt;}
.y105{bottom:237.786667pt;}
.y22{bottom:238.266667pt;}
.y171{bottom:239.626667pt;}
.y71{bottom:240.826667pt;}
.yc4{bottom:240.906667pt;}
.y1e8{bottom:242.826667pt;}
.y148{bottom:245.146667pt;}
.y59{bottom:246.106667pt;}
.y19d{bottom:247.946667pt;}
.y129{bottom:252.266667pt;}
.y21{bottom:253.946667pt;}
.y170{bottom:255.226667pt;}
.ye9{bottom:255.466667pt;}
.yac{bottom:255.866667pt;}
.y70{bottom:256.426667pt;}
.yc3{bottom:256.586667pt;}
.y112{bottom:257.786667pt;}
.y1bd{bottom:257.946667pt;}
.y1e7{bottom:258.506667pt;}
.y58{bottom:261.786667pt;}
.y104{bottom:262.106667pt;}
.y19c{bottom:263.546667pt;}
.y128{bottom:267.866667pt;}
.y20{bottom:269.546667pt;}
.y16f{bottom:270.906667pt;}
.yab{bottom:271.466667pt;}
.yc2{bottom:272.186667pt;}
.y111{bottom:273.386667pt;}
.y57{bottom:277.386667pt;}
.y8a{bottom:278.826667pt;}
.y19b{bottom:279.146667pt;}
.ye8{bottom:279.786667pt;}
.y1e6{bottom:282.106667pt;}
.y127{bottom:283.546667pt;}
.y1bc{bottom:284.106667pt;}
.y6f{bottom:285.066667pt;}
.y103{bottom:286.426667pt;}
.y16e{bottom:286.506667pt;}
.y56{bottom:292.986667pt;}
.y1f{bottom:293.466667pt;}
.yaa{bottom:297.706667pt;}
.y1e5{bottom:297.786667pt;}
.y126{bottom:299.146667pt;}
.y1bb{bottom:299.866667pt;}
.y110{bottom:302.026667pt;}
.y16d{bottom:302.106667pt;}
.y19a{bottom:302.826667pt;}
.yc1{bottom:303.786667pt;}
.ye7{bottom:304.026667pt;}
.y55{bottom:308.666667pt;}
.y102{bottom:310.746667pt;}
.ya9{bottom:314.106667pt;}
.y1ba{bottom:315.466667pt;}
.y16c{bottom:317.786667pt;}
.y89{bottom:318.746667pt;}
.yc0{bottom:319.466667pt;}
.y1e4{bottom:321.386667pt;}
.y54{bottom:324.266667pt;}
.y147{bottom:324.986667pt;}
.ye6{bottom:328.346667pt;}
.ya8{bottom:330.506667pt;}
.y125{bottom:330.746667pt;}
.y1b9{bottom:331.866667pt;}
.y199{bottom:334.426667pt;}
.ybf{bottom:335.066667pt;}
.y1e{bottom:336.346667pt;}
.y1e3{bottom:336.986667pt;}
.y53{bottom:339.946667pt;}
.y16b{bottom:341.386667pt;}
.y124{bottom:346.426667pt;}
.ya7{bottom:346.906667pt;}
.y1b8{bottom:347.466667pt;}
.y198{bottom:350.106667pt;}
.ybe{bottom:350.666667pt;}
.y1d{bottom:352.266667pt;}
.ye5{bottom:352.666667pt;}
.y101{bottom:354.026667pt;}
.y52{bottom:355.546667pt;}
.y88{bottom:358.746667pt;}
.y1b7{bottom:363.066667pt;}
.y146{bottom:364.906667pt;}
.y197{bottom:365.706667pt;}
.ybd{bottom:366.346667pt;}
.y51{bottom:371.146667pt;}
.y16a{bottom:373.066667pt;}
.y123{bottom:375.066667pt;}
.y1e2{bottom:376.266667pt;}
.ye4{bottom:376.906667pt;}
.ya6{bottom:379.306667pt;}
.y1b6{bottom:379.466667pt;}
.y196{bottom:381.306667pt;}
.ybc{bottom:381.946667pt;}
.y1c{bottom:385.226667pt;}
.y100{bottom:385.626667pt;}
.y50{bottom:386.826667pt;}
.y169{bottom:388.666667pt;}
.y1e1{bottom:391.946667pt;}
.ya5{bottom:394.906667pt;}
.y1b5{bottom:395.066667pt;}
.y195{bottom:396.986667pt;}
.y86{bottom:398.666667pt;}
.y1b{bottom:400.826667pt;}
.ye3{bottom:401.226667pt;}
.yff{bottom:401.306667pt;}
.y168{bottom:404.266667pt;}
.ya4{bottom:410.506667pt;}
.y194{bottom:412.586667pt;}
.ybb{bottom:413.626667pt;}
.y1e0{bottom:415.546667pt;}
.y1a{bottom:416.426667pt;}
.yfe{bottom:416.906667pt;}
.y4f{bottom:418.453333pt;}
.y167{bottom:419.973333pt;}
.y145{bottom:420.533333pt;}
.ye2{bottom:425.573333pt;}
.ya3{bottom:426.213333pt;}
.y1b4{bottom:427.493333pt;}
.yba{bottom:429.253333pt;}
.y1df{bottom:431.173333pt;}
.y19{bottom:432.133333pt;}
.yfd{bottom:432.533333pt;}
.y4e{bottom:434.133333pt;}
.y166{bottom:435.573333pt;}
.y85{bottom:438.613333pt;}
.y193{bottom:444.293333pt;}
.yb9{bottom:444.853333pt;}
.y1de{bottom:446.853333pt;}
.y18{bottom:447.733333pt;}
.y4d{bottom:449.733333pt;}
.ya2{bottom:449.813333pt;}
.y165{bottom:451.253333pt;}
.y192{bottom:457.573333pt;}
.y1b3{bottom:459.093333pt;}
.y144{bottom:460.453333pt;}
.yb8{bottom:460.533333pt;}
.y17{bottom:463.413333pt;}
.yfc{bottom:464.213333pt;}
.y4c{bottom:465.333333pt;}
.ye1{bottom:468.853333pt;}
.y1dd{bottom:470.453333pt;}
.yb7{bottom:476.133333pt;}
.y84{bottom:478.533333pt;}
.y16{bottom:479.013333pt;}
.ya1{bottom:479.093333pt;}
.yfb{bottom:479.813333pt;}
.y4b{bottom:481.013333pt;}
.y191{bottom:481.893333pt;}
.y164{bottom:482.853333pt;}
.y1b2{bottom:483.013333pt;}
.y1dc{bottom:486.133333pt;}
.y15{bottom:494.613333pt;}
.yfa{bottom:495.413333pt;}
.y4a{bottom:496.613333pt;}
.y163{bottom:498.453333pt;}
.y143{bottom:500.373333pt;}
.ye0{bottom:500.453333pt;}
.y1db{bottom:501.733333pt;}
.ya0{bottom:503.413333pt;}
.y190{bottom:506.133333pt;}
.yb6{bottom:507.813333pt;}
.y14{bottom:510.293333pt;}
.yf9{bottom:511.093333pt;}
.y49{bottom:512.293333pt;}
.y162{bottom:514.133333pt;}
.y1b1{bottom:515.973333pt;}
.ydf{bottom:516.133333pt;}
.yb5{bottom:523.413333pt;}
.y1da{bottom:525.333333pt;}
.y13{bottom:525.893333pt;}
.yf8{bottom:526.693333pt;}
.y9f{bottom:527.733333pt;}
.y48{bottom:527.893333pt;}
.y161{bottom:529.733333pt;}
.y18f{bottom:530.453333pt;}
.y1b0{bottom:531.573333pt;}
.yde{bottom:531.733333pt;}
.y83{bottom:534.053333pt;}
.yb4{bottom:539.013333pt;}
.y6e{bottom:540.133333pt;}
.y142{bottom:540.293333pt;}
.y1d9{bottom:541.013333pt;}
.y12{bottom:541.573333pt;}
.yf7{bottom:542.373333pt;}
.y47{bottom:543.493333pt;}
.y160{bottom:545.413333pt;}
.y1af{bottom:547.253333pt;}
.ydd{bottom:547.413333pt;}
.y9e{bottom:552.053333pt;}
.y18e{bottom:554.773333pt;}
.y10f{bottom:555.013333pt;}
.y1d8{bottom:556.613333pt;}
.y11{bottom:557.173333pt;}
.y46{bottom:559.173333pt;}
.y15f{bottom:561.013333pt;}
.y1ae{bottom:562.853333pt;}
.ydc{bottom:563.013333pt;}
.yf6{bottom:565.973333pt;}
.yb3{bottom:570.693333pt;}
.y6d{bottom:572.053333pt;}
.y10{bottom:572.773333pt;}
.y82{bottom:574.053333pt;}
.y45{bottom:574.773333pt;}
.y9d{bottom:576.293333pt;}
.y15e{bottom:576.613333pt;}
.y1ad{bottom:578.453333pt;}
.ydb{bottom:578.613333pt;}
.y1d7{bottom:580.293333pt;}
.yb2{bottom:586.293333pt;}
.yf{bottom:588.453333pt;}
.y44{bottom:590.453333pt;}
.y15d{bottom:592.293333pt;}
.y1ac{bottom:594.133333pt;}
.yda{bottom:594.293333pt;}
.yf5{bottom:595.253333pt;}
.y1d6{bottom:595.893333pt;}
.y18d{bottom:598.053333pt;}
.y9c{bottom:600.613333pt;}
.y10e{bottom:601.973333pt;}
.ye{bottom:604.053333pt;}
.y43{bottom:606.053333pt;}
.y15c{bottom:607.893333pt;}
.y1ab{bottom:609.733333pt;}
.yd9{bottom:609.893333pt;}
.yb1{bottom:609.973333pt;}
.y6c{bottom:612.613333pt;}
.y18c{bottom:613.653333pt;}
.y81{bottom:613.973333pt;}
.y141{bottom:614.853333pt;}
.y1d5{bottom:619.493333pt;}
.yd{bottom:619.733333pt;}
.y42{bottom:621.653333pt;}
.y15b{bottom:623.573333pt;}
.y9b{bottom:624.933333pt;}
.y1aa{bottom:625.413333pt;}
.yd8{bottom:625.573333pt;}
.y140{bottom:630.533333pt;}
.y10d{bottom:633.573333pt;}
.y1d4{bottom:635.173333pt;}
.yf4{bottom:635.253333pt;}
.yc{bottom:635.333333pt;}
.y1a9{bottom:641.013333pt;}
.yb0{bottom:641.573333pt;}
.y18b{bottom:645.333333pt;}
.y15a{bottom:647.173333pt;}
.yd7{bottom:649.173333pt;}
.yb{bottom:650.933333pt;}
.y6b{bottom:652.533333pt;}
.y41{bottom:653.333333pt;}
.y80{bottom:653.893333pt;}
.y1a8{bottom:656.613333pt;}
.y1d3{bottom:658.773333pt;}
.y18a{bottom:660.933333pt;}
.y13f{bottom:662.133333pt;}
.y10c{bottom:662.213333pt;}
.y9a{bottom:668.213333pt;}
.y40{bottom:668.933333pt;}
.yaf{bottom:670.213333pt;}
.y1d2{bottom:674.373333pt;}
.ya{bottom:674.853333pt;}
.yf3{bottom:675.173333pt;}
.y122{bottom:676.053333pt;}
.y189{bottom:676.613333pt;}
.y13e{bottom:677.733333pt;}
.y159{bottom:678.773333pt;}
.y1a7{bottom:680.533333pt;}
.yd6{bottom:681.093333pt;}
.y3f{bottom:684.613333pt;}
.y1d1{bottom:690.053333pt;}
.y121{bottom:691.733333pt;}
.y188{bottom:692.213333pt;}
.y13d{bottom:693.413333pt;}
.y7f{bottom:693.813333pt;}
.y158{bottom:694.453333pt;}
.y99{bottom:699.813333pt;}
.y3e{bottom:700.213333pt;}
.y120{bottom:707.333333pt;}
.y187{bottom:707.813333pt;}
.y69{bottom:708.133333pt;}
.y13c{bottom:709.013333pt;}
.y157{bottom:710.053333pt;}
.y1d0{bottom:713.653333pt;}
.yf2{bottom:715.093333pt;}
.y98{bottom:715.493333pt;}
.y3d{bottom:715.813333pt;}
.y9{bottom:717.813333pt;}
.yd5{bottom:721.653333pt;}
.y186{bottom:723.493333pt;}
.y13b{bottom:724.693333pt;}
.y156{bottom:725.733333pt;}
.y1cf{bottom:729.333333pt;}
.y11f{bottom:730.933333pt;}
.y97{bottom:731.093333pt;}
.y3c{bottom:731.493333pt;}
.y7e{bottom:733.733333pt;}
.y185{bottom:739.093333pt;}
.yf1{bottom:739.333333pt;}
.y13a{bottom:740.293333pt;}
.y155{bottom:741.333333pt;}
.yd4{bottom:745.973333pt;}
.y3b{bottom:747.093333pt;}
.y8{bottom:749.653333pt;}
.y1ce{bottom:752.933333pt;}
.y184{bottom:754.693333pt;}
.y139{bottom:755.893333pt;}
.y154{bottom:756.933333pt;}
.y11e{bottom:760.293333pt;}
.y3a{bottom:762.693333pt;}
.y68{bottom:763.653333pt;}
.y1cd{bottom:768.533333pt;}
.yd3{bottom:770.293333pt;}
.y183{bottom:770.373333pt;}
.y138{bottom:771.573333pt;}
.y153{bottom:772.613333pt;}
.y7d{bottom:773.653333pt;}
.y96{bottom:778.373333pt;}
.yf0{bottom:779.333333pt;}
.y7{bottom:781.653333pt;}
.y1cc{bottom:784.213333pt;}
.y11d{bottom:784.533333pt;}
.y182{bottom:785.973333pt;}
.y95{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.yd2{bottom:794.533333pt;}
.y137{bottom:795.173333pt;}
.y152{bottom:796.533333pt;}
.y181{bottom:801.653333pt;}
.y67{bottom:803.573333pt;}
.y1cb{bottom:807.813333pt;}
.y11c{bottom:808.853333pt;}
.y94{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:813.653333pt;}
.y180{bottom:817.253333pt;}
.yd1{bottom:818.853333pt;}
.yef{bottom:819.253333pt;}
.y1ca{bottom:823.493333pt;}
.y136{bottom:824.533333pt;}
.y37{bottom:825.653333pt;}
.y7b{bottom:829.253333pt;}
.y11b{bottom:833.173333pt;}
.y151{bottom:837.093333pt;}
.y36{bottom:841.253333pt;}
.yd0{bottom:843.173333pt;}
.y64{bottom:843.493333pt;}
.y5{bottom:845.733333pt;}
.y1c9{bottom:847.093333pt;}
.y135{bottom:848.773333pt;}
.y17f{bottom:848.853333pt;}
.y35{bottom:856.853333pt;}
.y11a{bottom:857.493333pt;}
.yee{bottom:859.173333pt;}
.y1c8{bottom:862.693333pt;}
.y17e{bottom:864.533333pt;}
.ycf{bottom:867.493333pt;}
.y34{bottom:872.533333pt;}
.y134{bottom:873.093333pt;}
.y150{bottom:877.013333pt;}
.y1c7{bottom:878.373333pt;}
.y4{bottom:879.733333pt;}
.y17d{bottom:880.133333pt;}
.y119{bottom:881.733333pt;}
.y33{bottom:888.133333pt;}
.ycd{bottom:891.733333pt;}
.y17c{bottom:895.813333pt;}
.y132{bottom:897.413333pt;}
.y63{bottom:899.120000pt;}
.y3{bottom:901.680000pt;}
.y1c6{bottom:902.320000pt;}
.y32{bottom:903.840000pt;}
.y118{bottom:906.080000pt;}
.y17b{bottom:911.440000pt;}
.y14f{bottom:916.960000pt;}
.y31{bottom:919.440000pt;}
.y131{bottom:921.680000pt;}
.y17a{bottom:927.040000pt;}
.y117{bottom:930.400000pt;}
.y30{bottom:935.040000pt;}
.y93{bottom:935.440000pt;}
.y5f{bottom:939.040000pt;}
.y179{bottom:942.720000pt;}
.y1c5{bottom:945.200000pt;}
.y130{bottom:946.000000pt;}
.y1a6{bottom:950.720000pt;}
.y7a{bottom:951.040000pt;}
.y14e{bottom:951.680000pt;}
.y116{bottom:954.640000pt;}
.y1f1{bottom:958.720000pt;}
.y178{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y1c4{bottom:969.120000pt;}
.y12f{bottom:970.320000pt;}
.y1f0{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y14c{bottom:991.600000pt;}
.y2d{bottom:998.000000pt;}
.y1c3{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h12{height:23.600000pt;}
.h16{height:23.626667pt;}
.h13{height:23.680000pt;}
.h15{height:23.706667pt;}
.h2{height:26.686562pt;}
.h18{height:34.000000pt;}
.h3{height:34.804688pt;}
.hf{height:39.200000pt;}
.ha{height:39.280000pt;}
.h10{height:39.306667pt;}
.h11{height:43.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.880000pt;}
.h14{height:54.927899pt;}
.h17{height:54.960000pt;}
.hb{height:54.986667pt;}
.hd{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.he{height:70.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2b{width:35.920000pt;}
.wb{width:48.640000pt;}
.w3d{width:49.840000pt;}
.w31{width:50.560000pt;}
.w30{width:50.586667pt;}
.w2f{width:50.640000pt;}
.w2c{width:58.960000pt;}
.w2d{width:59.520000pt;}
.w3c{width:63.200000pt;}
.w3b{width:65.280000pt;}
.w38{width:68.240000pt;}
.wc{width:68.400000pt;}
.w9{width:70.560000pt;}
.w21{width:73.200000pt;}
.w1d{width:73.760000pt;}
.w1c{width:76.800000pt;}
.w26{width:77.706667pt;}
.wa{width:80.800000pt;}
.w5{width:81.440000pt;}
.w1b{width:83.386667pt;}
.w25{width:84.080000pt;}
.wd{width:85.946667pt;}
.w8{width:86.186667pt;}
.w32{width:91.040000pt;}
.w33{width:92.026667pt;}
.w3{width:92.986667pt;}
.w15{width:94.560000pt;}
.w2a{width:95.946667pt;}
.w37{width:99.040000pt;}
.w24{width:103.360000pt;}
.w17{width:110.400000pt;}
.wf{width:112.240000pt;}
.w4{width:112.560000pt;}
.we{width:114.240000pt;}
.w1e{width:114.506667pt;}
.w20{width:115.146667pt;}
.w10{width:116.026667pt;}
.w1a{width:118.720000pt;}
.w18{width:123.520000pt;}
.w35{width:126.000000pt;}
.w12{width:127.120000pt;}
.w28{width:127.706667pt;}
.w34{width:130.000000pt;}
.w23{width:132.586667pt;}
.w11{width:133.600000pt;}
.w3a{width:136.906667pt;}
.w27{width:141.600000pt;}
.w19{width:142.000000pt;}
.w22{width:142.080000pt;}
.w1f{width:149.680000pt;}
.w36{width:152.986667pt;}
.w14{width:162.586667pt;}
.w29{width:165.760000pt;}
.w16{width:178.026667pt;}
.w6{width:188.186667pt;}
.w7{width:194.000000pt;}
.w2e{width:220.240000pt;}
.w13{width:287.466667pt;}
.w39{width:340.506667pt;}
.w3e{width:607.973333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:62.559988pt;}
.x13{left:63.920000pt;}
.x36{left:72.479988pt;}
.x42{left:74.319988pt;}
.x2e{left:78.559988pt;}
.x44{left:84.479988pt;}
.x2c{left:91.919988pt;}
.xa{left:97.279988pt;}
.x43{left:98.319988pt;}
.x17{left:108.479988pt;}
.x19{left:110.079988pt;}
.x30{left:123.360000pt;}
.x27{left:126.000000pt;}
.x22{left:135.520000pt;}
.xd{left:147.946667pt;}
.x5{left:154.746667pt;}
.x37{left:164.106667pt;}
.x14{left:180.586667pt;}
.x1e{left:185.546667pt;}
.xc{left:198.586655pt;}
.x2{left:205.466655pt;}
.xe{left:219.146667pt;}
.x1a{left:224.346667pt;}
.x23{left:250.666667pt;}
.x31{left:251.706667pt;}
.x28{left:259.226667pt;}
.x6{left:267.946667pt;}
.x3b{left:284.586667pt;}
.xf{left:300.666667pt;}
.x15{left:314.826667pt;}
.x1b{left:319.546667pt;}
.x1f{left:328.266667pt;}
.x2f{left:339.466655pt;}
.x7{left:350.026667pt;}
.x29{left:363.306667pt;}
.x38{left:384.986667pt;}
.x24{left:401.066667pt;}
.x3f{left:402.266667pt;}
.x3c{left:411.226667pt;}
.x10{left:419.066667pt;}
.x39{left:436.266667pt;}
.x16{left:442.586667pt;}
.x20{left:447.626667pt;}
.x3a{left:487.573333pt;}
.x1c{left:498.293333pt;}
.x11{left:505.653333pt;}
.x32{left:514.773333pt;}
.x25{left:516.933333pt;}
.x2a{left:526.373333pt;}
.x21{left:531.653333pt;}
.x8{left:538.853333pt;}
.x40{left:539.893333pt;}
.x33{left:551.413333pt;}
.x3d{left:564.853333pt;}
.x26{left:590.773333pt;}
.x41{left:605.893333pt;}
.x1d{left:609.333333pt;}
.x34{left:611.093333pt;}
.x9{left:612.053322pt;}
.x12{left:620.613333pt;}
.x2d{left:631.013322pt;}
.x3e{left:664.613333pt;}
.x35{left:669.013322pt;}
.x2b{left:681.013322pt;}
.x18{left:690.053322pt;}
.x3{left:711.413322pt;}
}




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