
    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_9af3a0a8ab0c92ee858a03e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_289ccf3217ea9e2d0ad88366.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5b829b3f03d693da84100e02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0c766b6c0597e5720429bd28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_6296a74625cbe202f6b4b21e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_353c5caa6c9b36554b38736d.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_d19947fb3b2b57b944576432.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_009610befde8005fd96daac6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b0a67da799301cc62808636c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_86a6ea129dbb04c5cb751f2d.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:51.352471px;}
.lsa{letter-spacing:-1.225833px;}
.ls28{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-0.870000px;}
.ls7{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.ls21{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.262200px;}
.ls2{letter-spacing:-0.152400px;}
.ls6{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.059162px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.109440px;}
.ls1b{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.152400px;}
.ls17{letter-spacing:0.229440px;}
.ls4{letter-spacing:0.262080px;}
.ls15{letter-spacing:0.305280px;}
.ls29{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.414600px;}
.ls24{letter-spacing:0.567600px;}
.ls23{letter-spacing:0.870000px;}
.ls8{letter-spacing:1.225833px;}
.ls16{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.ls27{letter-spacing:5.760000px;}
.ls1a{letter-spacing:7.920000px;}
.ls1e{letter-spacing:8.640000px;}
.ls11{letter-spacing:10.080000px;}
.ls26{letter-spacing:14.400000px;}
.ls1d{letter-spacing:15.120000px;}
.ls20{letter-spacing:19.440000px;}
.ls1f{letter-spacing:19.620000px;}
.ls1c{letter-spacing:23.220000px;}
.ls10{letter-spacing:25.200000px;}
.ls25{letter-spacing:28.080000px;}
.lse{letter-spacing:32.705280px;}
.ls18{letter-spacing:43.200000px;}
.ls0{letter-spacing:61.505280px;}
.ls5{letter-spacing:67.265280px;}
.ls3{letter-spacing:1759.236000px;}
.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;}
}
.wsf{word-spacing:-17.430000px;}
.ws10{word-spacing:-17.127600px;}
.wsc{word-spacing:-16.974600px;}
.ws12{word-spacing:-16.865400px;}
.wse{word-spacing:-16.712400px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.450800px;}
.ws2{word-spacing:-16.407600px;}
.ws8{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.145400px;}
.wsd{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.690000px;}
.ws11{word-spacing:-15.384000px;}
.ws5{word-spacing:-11.904544px;}
.ws6{word-spacing:-10.678711px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:528.926313px;}
._17{margin-left:-2.843814px;}
._0{margin-left:-1.258560px;}
._5{width:1.088640px;}
._a{width:2.564640px;}
._b{width:3.621600px;}
._13{width:4.767840px;}
._7{width:6.636960px;}
._6{width:7.948080px;}
._c{width:9.270720px;}
._d{width:10.540080px;}
._8{width:12.071520px;}
._9{width:13.147200px;}
._10{width:15.036480px;}
._12{width:18.083520px;}
._11{width:19.408320px;}
._14{width:20.704320px;}
._e{width:21.991680px;}
._f{width:23.237280px;}
._18{width:24.772800px;}
._15{width:26.164800px;}
._16{width:28.152000px;}
._1b{width:35.254080px;}
._1a{width:36.829680px;}
._1c{width:43.320960px;}
._1e{width:66.897120px;}
._1d{width:67.949760px;}
._3{width:199.440000px;}
._1f{width:237.735360px;}
._20{width:238.953120px;}
._1{width:247.716960px;}
._19{width:304.978080px;}
._2{width:833.940000px;}
._4{width:1392.036000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:42.714844px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.600000px;}
.y25{bottom:3.810000px;}
.y10{bottom:3.960000px;}
.y7e{bottom:10.382902px;}
.y2c{bottom:12.240000px;}
.y33{bottom:12.960000px;}
.y70{bottom:16.831542px;}
.y24{bottom:21.090000px;}
.y15{bottom:23.220000px;}
.y7d{bottom:23.221020px;}
.y32{bottom:32.040000px;}
.y23{bottom:38.190000px;}
.y14{bottom:42.300000px;}
.y31{bottom:50.940000px;}
.y2b{bottom:52.770000px;}
.y7a{bottom:52.890679px;}
.y22{bottom:55.470000px;}
.y13{bottom:61.200000px;}
.y5{bottom:68.760000px;}
.y30{bottom:70.020000px;}
.y2a{bottom:71.850000px;}
.y78{bottom:77.679487px;}
.y12{bottom:80.280000px;}
.y21{bottom:81.750000px;}
.y6f{bottom:84.068965px;}
.y2f{bottom:88.920000px;}
.y77{bottom:90.488024px;}
.y29{bottom:90.750000px;}
.y74{bottom:94.481448px;}
.y20{bottom:99.030000px;}
.y73{bottom:107.289985px;}
.y28{bottom:109.650000px;}
.y1f{bottom:116.310000px;}
.y2e{bottom:116.460000px;}
.yb9{bottom:117.720000px;}
.y138{bottom:119.340000px;}
.yf7{bottom:119.700000px;}
.y46{bottom:121.860000px;}
.y80{bottom:127.440000px;}
.y27{bottom:128.730000px;}
.y9b{bottom:129.600000px;}
.y1e{bottom:133.590000px;}
.y79{bottom:133.670246px;}
.yad{bottom:133.740000px;}
.yb8{bottom:136.800000px;}
.yd3{bottom:137.880000px;}
.y137{bottom:138.240000px;}
.yf6{bottom:138.780000px;}
.y45{bottom:140.760000px;}
.y9a{bottom:148.500000px;}
.y1d{bottom:150.690000px;}
.y7f{bottom:151.380000px;}
.y68{bottom:151.470000px;}
.yac{bottom:152.640000px;}
.y26{bottom:156.270000px;}
.yd2{bottom:156.780000px;}
.yf5{bottom:157.680000px;}
.y44{bottom:159.840000px;}
.yb7{bottom:160.920000px;}
.y136{bottom:161.640000px;}
.y6d{bottom:164.611885px;}
.y99{bottom:167.580000px;}
.y1c{bottom:167.970000px;}
.yab{bottom:171.720000px;}
.y6a{bottom:171.924288px;}
.yd1{bottom:175.860000px;}
.yf4{bottom:176.760000px;}
.y6c{bottom:177.426338px;}
.y71{bottom:177.982459px;}
.y43{bottom:178.740000px;}
.y135{bottom:180.720000px;}
.y1b{bottom:185.250000px;}
.y98{bottom:186.480000px;}
.yaa{bottom:190.620000px;}
.yd0{bottom:194.760000px;}
.yf3{bottom:195.660000px;}
.y42{bottom:197.640000px;}
.y134{bottom:199.620000px;}
.y76{bottom:201.706354px;}
.y1a{bottom:202.530000px;}
.y97{bottom:205.380000px;}
.ya9{bottom:209.520000px;}
.y108{bottom:209.700000px;}
.ycf{bottom:213.840000px;}
.y75{bottom:214.520808px;}
.yf2{bottom:214.560000px;}
.y6b{bottom:216.141842px;}
.y41{bottom:216.720000px;}
.y133{bottom:218.700000px;}
.y69{bottom:218.804124px;}
.y19{bottom:219.810000px;}
.y96{bottom:224.490000px;}
.yce{bottom:232.770000px;}
.y107{bottom:233.130000px;}
.yf1{bottom:233.670000px;}
.y40{bottom:235.650000px;}
.ya8{bottom:240.330000px;}
.y132{bottom:242.130000px;}
.y95{bottom:243.390000px;}
.y72{bottom:243.533771px;}
.y6e{bottom:247.024319px;}
.ycd{bottom:251.670000px;}
.y106{bottom:252.030000px;}
.y17{bottom:252.570000px;}
.y3f{bottom:254.730000px;}
.y131{bottom:261.030000px;}
.y94{bottom:262.470000px;}
.ycc{bottom:270.750000px;}
.y105{bottom:271.110000px;}
.ya7{bottom:271.650000px;}
.y3e{bottom:273.630000px;}
.y130{bottom:280.110000px;}
.y93{bottom:281.370000px;}
.ycb{bottom:289.650000px;}
.y104{bottom:290.010000px;}
.ya6{bottom:290.550000px;}
.y3d{bottom:292.530000px;}
.y92{bottom:300.270000px;}
.y12f{bottom:303.510000px;}
.yca{bottom:308.730000px;}
.y103{bottom:309.090000px;}
.ya5{bottom:309.450000px;}
.yf0{bottom:309.630000px;}
.y3c{bottom:311.610000px;}
.y7c{bottom:313.025260px;}
.y91{bottom:319.350000px;}
.y12e{bottom:322.590000px;}
.y7b{bottom:325.863378px;}
.yc9{bottom:327.630000px;}
.ya4{bottom:328.530000px;}
.y3b{bottom:330.510000px;}
.y90{bottom:338.250000px;}
.y102{bottom:339.690000px;}
.y12d{bottom:345.990000px;}
.yc8{bottom:346.530000px;}
.ya3{bottom:347.430000px;}
.y3a{bottom:349.590000px;}
.y8f{bottom:357.330000px;}
.y12c{bottom:365.070000px;}
.yc7{bottom:365.610000px;}
.ya2{bottom:366.510000px;}
.y39{bottom:368.490000px;}
.y101{bottom:371.010000px;}
.y8e{bottom:376.230000px;}
.y12b{bottom:383.970000px;}
.yc6{bottom:384.510000px;}
.ya1{bottom:385.410000px;}
.y38{bottom:387.390000px;}
.y100{bottom:389.910000px;}
.y8d{bottom:395.310000px;}
.yc5{bottom:403.590000px;}
.yef{bottom:404.490000px;}
.y37{bottom:406.470000px;}
.y12a{bottom:407.370000px;}
.yff{bottom:408.990000px;}
.ya0{bottom:413.310000px;}
.y8c{bottom:414.210000px;}
.yc4{bottom:422.490000px;}
.yee{bottom:423.390000px;}
.y36{bottom:425.370000px;}
.y129{bottom:426.450000px;}
.yfe{bottom:427.890000px;}
.y8b{bottom:433.110000px;}
.y9f{bottom:437.430000px;}
.yc3{bottom:441.390000px;}
.yed{bottom:442.290000px;}
.y35{bottom:444.450000px;}
.yfd{bottom:446.790000px;}
.y128{bottom:449.850000px;}
.yc2{bottom:460.515000px;}
.y8a{bottom:461.235000px;}
.yec{bottom:461.415000px;}
.yfc{bottom:465.915000px;}
.y127{bottom:468.975000px;}
.y34{bottom:475.095000px;}
.yc1{bottom:479.415000px;}
.yeb{bottom:480.315000px;}
.yfb{bottom:484.815000px;}
.y89{bottom:485.355000px;}
.y126{bottom:492.375000px;}
.yc0{bottom:498.495000px;}
.yea{bottom:499.395000px;}
.yfa{bottom:503.895000px;}
.y2d{bottom:504.615000px;}
.y67{bottom:508.935000px;}
.y125{bottom:511.275000px;}
.ybf{bottom:517.395000px;}
.ye9{bottom:518.295000px;}
.yb6{bottom:523.695000px;}
.y66{bottom:527.835000px;}
.yf9{bottom:534.495000px;}
.y124{bottom:534.855000px;}
.ybe{bottom:536.295000px;}
.ye8{bottom:537.195000px;}
.yb5{bottom:542.595000px;}
.y65{bottom:546.735000px;}
.y123{bottom:553.755000px;}
.ybd{bottom:555.375000px;}
.ye7{bottom:556.275000px;}
.yb4{bottom:561.675000px;}
.y64{bottom:565.815000px;}
.y14d{bottom:568.335000px;}
.ye6{bottom:575.175000px;}
.y122{bottom:577.335000px;}
.yb3{bottom:580.575000px;}
.y63{bottom:584.715000px;}
.ybc{bottom:586.155000px;}
.y14c{bottom:587.235000px;}
.ye5{bottom:594.255000px;}
.y121{bottom:596.235000px;}
.yb2{bottom:599.655000px;}
.y62{bottom:603.795000px;}
.y14b{bottom:606.135000px;}
.ye4{bottom:613.155000px;}
.y120{bottom:615.135000px;}
.ybb{bottom:617.295000px;}
.yb1{bottom:618.555000px;}
.y61{bottom:622.695000px;}
.y14a{bottom:629.715000px;}
.ye3{bottom:632.055000px;}
.yb0{bottom:637.455000px;}
.y11f{bottom:638.715000px;}
.yba{bottom:641.415000px;}
.y60{bottom:641.595000px;}
.y16{bottom:646.275000px;}
.y149{bottom:648.615000px;}
.ye2{bottom:651.135000px;}
.y11e{bottom:657.615000px;}
.y5f{bottom:660.675000px;}
.yaf{bottom:665.535000px;}
.y148{bottom:667.695000px;}
.y11d{bottom:676.695000px;}
.y5e{bottom:679.575000px;}
.y18{bottom:680.475000px;}
.ye1{bottom:681.915000px;}
.y147{bottom:686.625000px;}
.yae{bottom:689.505000px;}
.y11c{bottom:695.625000px;}
.y5d{bottom:698.685000px;}
.y146{bottom:710.025000px;}
.ye0{bottom:713.085000px;}
.y5c{bottom:717.585000px;}
.y11b{bottom:719.025000px;}
.y145{bottom:729.105000px;}
.ydf{bottom:731.985000px;}
.y5b{bottom:736.665000px;}
.y11a{bottom:738.105000px;}
.y144{bottom:748.005000px;}
.yde{bottom:751.065000px;}
.y5a{bottom:755.565000px;}
.y119{bottom:757.005000px;}
.ydd{bottom:769.965000px;}
.y143{bottom:771.585000px;}
.y59{bottom:774.465000px;}
.y118{bottom:780.585000px;}
.ydc{bottom:789.045000px;}
.y142{bottom:790.485000px;}
.y58{bottom:793.545000px;}
.y117{bottom:799.485000px;}
.ydb{bottom:807.945000px;}
.y57{bottom:812.445000px;}
.y141{bottom:813.885000px;}
.y88{bottom:817.485000px;}
.y116{bottom:818.385000px;}
.yda{bottom:826.845000px;}
.y11{bottom:827.565000px;}
.y56{bottom:831.525000px;}
.y140{bottom:832.965000px;}
.y87{bottom:836.385000px;}
.y115{bottom:841.965000px;}
.yd9{bottom:845.925000px;}
.y55{bottom:850.425000px;}
.y13f{bottom:851.865000px;}
.y86{bottom:855.465000px;}
.y9e{bottom:857.805000px;}
.y114{bottom:860.865000px;}
.yd8{bottom:864.825000px;}
.y54{bottom:869.325000px;}
.y85{bottom:874.365000px;}
.y13e{bottom:875.445000px;}
.y113{bottom:879.945000px;}
.yd7{bottom:883.905000px;}
.y9d{bottom:885.705000px;}
.y53{bottom:888.405000px;}
.y84{bottom:893.445000px;}
.y13d{bottom:894.345000px;}
.y112{bottom:898.845000px;}
.yd6{bottom:902.805000px;}
.y52{bottom:907.305000px;}
.y9c{bottom:909.825000px;}
.y83{bottom:912.345000px;}
.y13c{bottom:913.425000px;}
.y111{bottom:917.970000px;}
.yf8{bottom:919.230000px;}
.ye{bottom:923.550000px;}
.yd5{bottom:930.750000px;}
.y82{bottom:931.470000px;}
.y110{bottom:936.870000px;}
.y51{bottom:938.130000px;}
.y81{bottom:950.370000px;}
.yd4{bottom:954.870000px;}
.y10f{bottom:955.770000px;}
.yd{bottom:957.750000px;}
.y50{bottom:969.270000px;}
.y10e{bottom:974.850000px;}
.yc{bottom:976.830000px;}
.y4f{bottom:988.350000px;}
.y10d{bottom:993.750000px;}
.y13b{bottom:998.250000px;}
.yb{bottom:1000.950000px;}
.y4e{bottom:1007.250000px;}
.ya{bottom:1010.850000px;}
.y10c{bottom:1017.330000px;}
.y4d{bottom:1026.330000px;}
.y9{bottom:1029.930000px;}
.y10b{bottom:1036.230000px;}
.y13a{bottom:1040.730000px;}
.y4c{bottom:1045.230000px;}
.y8{bottom:1048.830000px;}
.y10a{bottom:1059.630000px;}
.y4b{bottom:1064.130000px;}
.y7{bottom:1069.350000px;}
.y109{bottom:1078.710000px;}
.y4a{bottom:1083.210000px;}
.y6{bottom:1097.070000px;}
.y139{bottom:1097.610000px;}
.y49{bottom:1102.110000px;}
.y48{bottom:1121.190000px;}
.y4{bottom:1123.350000px;}
.y47{bottom:1140.090000px;}
.y3{bottom:1145.130000px;}
.y2{bottom:1164.420000px;}
.y1{bottom:1183.320000px;}
.h7{height:27.900000px;}
.h10{height:33.480000px;}
.h6{height:35.332031px;}
.hd{height:41.522695px;}
.h17{height:41.922283px;}
.h18{height:43.048553px;}
.h14{height:46.025156px;}
.h11{height:52.971680px;}
.hc{height:58.651172px;}
.hf{height:64.978594px;}
.h3{height:65.010937px;}
.h2{height:66.757500px;}
.h15{height:68.084282px;}
.h13{height:68.956875px;}
.h8{height:70.664062px;}
.h5{height:72.326250px;}
.h19{height:94.401025px;}
.h9{height:95.256000px;}
.h4{height:96.508125px;}
.h12{height:140.760000px;}
.he{height:180.570000px;}
.hb{height:242.355000px;}
.ha{height:276.555000px;}
.h16{height:344.321866px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:23.940000px;}
.w2{width:216.030000px;}
.w4{width:488.625000px;}
.w6{width:725.270531px;}
.w5{width:728.610000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xb{left:11.880000px;}
.x27{left:16.206004px;}
.x25{left:35.048817px;}
.x1{left:81.036000px;}
.x8{left:82.296000px;}
.xf{left:83.940000px;}
.xe{left:86.076000px;}
.x1a{left:99.872833px;}
.x1c{left:103.724352px;}
.x1b{left:111.575524px;}
.x37{left:113.076000px;}
.x1d{left:119.160052px;}
.x3{left:168.510000px;}
.x29{left:174.990000px;}
.x2f{left:181.290000px;}
.x26{left:203.514229px;}
.x6{left:257.295000px;}
.x36{left:258.735000px;}
.x18{left:266.501368px;}
.x7{left:269.175000px;}
.x19{left:271.680179px;}
.x2b{left:278.715000px;}
.x2d{left:286.995000px;}
.xa{left:298.335000px;}
.x31{left:303.195000px;}
.x4{left:309.135000px;}
.x33{left:317.775000px;}
.xc{left:322.275000px;}
.x35{left:351.975000px;}
.xd{left:434.085000px;}
.x5{left:446.505000px;}
.x24{left:499.216032px;}
.x23{left:500.258904px;}
.x1e{left:503.541583px;}
.x11{left:509.763266px;}
.x1f{left:514.942077px;}
.x10{left:519.563899px;}
.x34{left:532.545000px;}
.x2a{left:569.130000px;}
.x15{left:578.592862px;}
.x20{left:583.629463px;}
.x21{left:588.369793px;}
.x2e{left:590.730000px;}
.x22{left:616.693266px;}
.x12{left:624.538513px;}
.x2c{left:627.630000px;}
.x14{left:629.456606px;}
.x17{left:630.582434px;}
.x13{left:634.350997px;}
.x16{left:638.427681px;}
.x32{left:650.130000px;}
.x30{left:706.830000px;}
.x2{left:754.920000px;}
.x28{left:809.280000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:45.646641pt;}
.lsa{letter-spacing:-1.089629pt;}
.ls28{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-0.773333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls21{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls2{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.052588pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.097280pt;}
.ls1b{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.135467pt;}
.ls17{letter-spacing:0.203947pt;}
.ls4{letter-spacing:0.232960pt;}
.ls15{letter-spacing:0.271360pt;}
.ls29{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.368533pt;}
.ls24{letter-spacing:0.504533pt;}
.ls23{letter-spacing:0.773333pt;}
.ls8{letter-spacing:1.089629pt;}
.ls16{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls27{letter-spacing:5.120000pt;}
.ls1a{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:7.680000pt;}
.ls11{letter-spacing:8.960000pt;}
.ls26{letter-spacing:12.800000pt;}
.ls1d{letter-spacing:13.440000pt;}
.ls20{letter-spacing:17.280000pt;}
.ls1f{letter-spacing:17.440000pt;}
.ls1c{letter-spacing:20.640000pt;}
.ls10{letter-spacing:22.400000pt;}
.ls25{letter-spacing:24.960000pt;}
.lse{letter-spacing:29.071360pt;}
.ls18{letter-spacing:38.400000pt;}
.ls0{letter-spacing:54.671360pt;}
.ls5{letter-spacing:59.791360pt;}
.ls3{letter-spacing:1563.765333pt;}
.wsf{word-spacing:-15.493333pt;}
.ws10{word-spacing:-15.224533pt;}
.wsc{word-spacing:-15.088533pt;}
.ws12{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.855467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.622933pt;}
.ws2{word-spacing:-14.584533pt;}
.ws8{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.351467pt;}
.wsd{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.946667pt;}
.ws11{word-spacing:-13.674667pt;}
.ws5{word-spacing:-10.581817pt;}
.ws6{word-spacing:-9.492187pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:470.156723pt;}
._17{margin-left:-2.527835pt;}
._0{margin-left:-1.118720pt;}
._5{width:0.967680pt;}
._a{width:2.279680pt;}
._b{width:3.219200pt;}
._13{width:4.238080pt;}
._7{width:5.899520pt;}
._6{width:7.064960pt;}
._c{width:8.240640pt;}
._d{width:9.368960pt;}
._8{width:10.730240pt;}
._9{width:11.686400pt;}
._10{width:13.365760pt;}
._12{width:16.074240pt;}
._11{width:17.251840pt;}
._14{width:18.403840pt;}
._e{width:19.548160pt;}
._f{width:20.655360pt;}
._18{width:22.020267pt;}
._15{width:23.257600pt;}
._16{width:25.024000pt;}
._1b{width:31.336960pt;}
._1a{width:32.737493pt;}
._1c{width:38.507520pt;}
._1e{width:59.464107pt;}
._1d{width:60.399787pt;}
._3{width:177.280000pt;}
._1f{width:211.320320pt;}
._20{width:212.402773pt;}
._1{width:220.192853pt;}
._19{width:271.091627pt;}
._2{width:741.280000pt;}
._4{width:1237.365333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:37.968750pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.200000pt;}
.y25{bottom:3.386667pt;}
.y10{bottom:3.520000pt;}
.y7e{bottom:9.229246pt;}
.y2c{bottom:10.880000pt;}
.y33{bottom:11.520000pt;}
.y70{bottom:14.961370pt;}
.y24{bottom:18.746667pt;}
.y15{bottom:20.640000pt;}
.y7d{bottom:20.640906pt;}
.y32{bottom:28.480000pt;}
.y23{bottom:33.946667pt;}
.y14{bottom:37.600000pt;}
.y31{bottom:45.280000pt;}
.y2b{bottom:46.906667pt;}
.y7a{bottom:47.013937pt;}
.y22{bottom:49.306667pt;}
.y13{bottom:54.400000pt;}
.y5{bottom:61.120000pt;}
.y30{bottom:62.240000pt;}
.y2a{bottom:63.866667pt;}
.y78{bottom:69.048433pt;}
.y12{bottom:71.360000pt;}
.y21{bottom:72.666667pt;}
.y6f{bottom:74.727969pt;}
.y2f{bottom:79.040000pt;}
.y77{bottom:80.433799pt;}
.y29{bottom:80.666667pt;}
.y74{bottom:83.983509pt;}
.y20{bottom:88.026667pt;}
.y73{bottom:95.368875pt;}
.y28{bottom:97.466667pt;}
.y1f{bottom:103.386667pt;}
.y2e{bottom:103.520000pt;}
.yb9{bottom:104.640000pt;}
.y138{bottom:106.080000pt;}
.yf7{bottom:106.400000pt;}
.y46{bottom:108.320000pt;}
.y80{bottom:113.280000pt;}
.y27{bottom:114.426667pt;}
.y9b{bottom:115.200000pt;}
.y1e{bottom:118.746667pt;}
.y79{bottom:118.817997pt;}
.yad{bottom:118.880000pt;}
.yb8{bottom:121.600000pt;}
.yd3{bottom:122.560000pt;}
.y137{bottom:122.880000pt;}
.yf6{bottom:123.360000pt;}
.y45{bottom:125.120000pt;}
.y9a{bottom:132.000000pt;}
.y1d{bottom:133.946667pt;}
.y7f{bottom:134.560000pt;}
.y68{bottom:134.640000pt;}
.yac{bottom:135.680000pt;}
.y26{bottom:138.906667pt;}
.yd2{bottom:139.360000pt;}
.yf5{bottom:140.160000pt;}
.y44{bottom:142.080000pt;}
.yb7{bottom:143.040000pt;}
.y136{bottom:143.680000pt;}
.y6d{bottom:146.321676pt;}
.y99{bottom:148.960000pt;}
.y1c{bottom:149.306667pt;}
.yab{bottom:152.640000pt;}
.y6a{bottom:152.821589pt;}
.yd1{bottom:156.320000pt;}
.yf4{bottom:157.120000pt;}
.y6c{bottom:157.712301pt;}
.y71{bottom:158.206630pt;}
.y43{bottom:158.880000pt;}
.y135{bottom:160.640000pt;}
.y1b{bottom:164.666667pt;}
.y98{bottom:165.760000pt;}
.yaa{bottom:169.440000pt;}
.yd0{bottom:173.120000pt;}
.yf3{bottom:173.920000pt;}
.y42{bottom:175.680000pt;}
.y134{bottom:177.440000pt;}
.y76{bottom:179.294537pt;}
.y1a{bottom:180.026667pt;}
.y97{bottom:182.560000pt;}
.ya9{bottom:186.240000pt;}
.y108{bottom:186.400000pt;}
.ycf{bottom:190.080000pt;}
.y75{bottom:190.685162pt;}
.yf2{bottom:190.720000pt;}
.y6b{bottom:192.126082pt;}
.y41{bottom:192.640000pt;}
.y133{bottom:194.400000pt;}
.y69{bottom:194.492555pt;}
.y19{bottom:195.386667pt;}
.y96{bottom:199.546667pt;}
.yce{bottom:206.906667pt;}
.y107{bottom:207.226667pt;}
.yf1{bottom:207.706667pt;}
.y40{bottom:209.466667pt;}
.ya8{bottom:213.626667pt;}
.y132{bottom:215.226667pt;}
.y95{bottom:216.346667pt;}
.y72{bottom:216.474463pt;}
.y6e{bottom:219.577172pt;}
.ycd{bottom:223.706667pt;}
.y106{bottom:224.026667pt;}
.y17{bottom:224.506667pt;}
.y3f{bottom:226.426667pt;}
.y131{bottom:232.026667pt;}
.y94{bottom:233.306667pt;}
.ycc{bottom:240.666667pt;}
.y105{bottom:240.986667pt;}
.ya7{bottom:241.466667pt;}
.y3e{bottom:243.226667pt;}
.y130{bottom:248.986667pt;}
.y93{bottom:250.106667pt;}
.ycb{bottom:257.466667pt;}
.y104{bottom:257.786667pt;}
.ya6{bottom:258.266667pt;}
.y3d{bottom:260.026667pt;}
.y92{bottom:266.906667pt;}
.y12f{bottom:269.786667pt;}
.yca{bottom:274.426667pt;}
.y103{bottom:274.746667pt;}
.ya5{bottom:275.066667pt;}
.yf0{bottom:275.226667pt;}
.y3c{bottom:276.986667pt;}
.y7c{bottom:278.244676pt;}
.y91{bottom:283.866667pt;}
.y12e{bottom:286.746667pt;}
.y7b{bottom:289.656336pt;}
.yc9{bottom:291.226667pt;}
.ya4{bottom:292.026667pt;}
.y3b{bottom:293.786667pt;}
.y90{bottom:300.666667pt;}
.y102{bottom:301.946667pt;}
.y12d{bottom:307.546667pt;}
.yc8{bottom:308.026667pt;}
.ya3{bottom:308.826667pt;}
.y3a{bottom:310.746667pt;}
.y8f{bottom:317.626667pt;}
.y12c{bottom:324.506667pt;}
.yc7{bottom:324.986667pt;}
.ya2{bottom:325.786667pt;}
.y39{bottom:327.546667pt;}
.y101{bottom:329.786667pt;}
.y8e{bottom:334.426667pt;}
.y12b{bottom:341.306667pt;}
.yc6{bottom:341.786667pt;}
.ya1{bottom:342.586667pt;}
.y38{bottom:344.346667pt;}
.y100{bottom:346.586667pt;}
.y8d{bottom:351.386667pt;}
.yc5{bottom:358.746667pt;}
.yef{bottom:359.546667pt;}
.y37{bottom:361.306667pt;}
.y12a{bottom:362.106667pt;}
.yff{bottom:363.546667pt;}
.ya0{bottom:367.386667pt;}
.y8c{bottom:368.186667pt;}
.yc4{bottom:375.546667pt;}
.yee{bottom:376.346667pt;}
.y36{bottom:378.106667pt;}
.y129{bottom:379.066667pt;}
.yfe{bottom:380.346667pt;}
.y8b{bottom:384.986667pt;}
.y9f{bottom:388.826667pt;}
.yc3{bottom:392.346667pt;}
.yed{bottom:393.146667pt;}
.y35{bottom:395.066667pt;}
.yfd{bottom:397.146667pt;}
.y128{bottom:399.866667pt;}
.yc2{bottom:409.346667pt;}
.y8a{bottom:409.986667pt;}
.yec{bottom:410.146667pt;}
.yfc{bottom:414.146667pt;}
.y127{bottom:416.866667pt;}
.y34{bottom:422.306667pt;}
.yc1{bottom:426.146667pt;}
.yeb{bottom:426.946667pt;}
.yfb{bottom:430.946667pt;}
.y89{bottom:431.426667pt;}
.y126{bottom:437.666667pt;}
.yc0{bottom:443.106667pt;}
.yea{bottom:443.906667pt;}
.yfa{bottom:447.906667pt;}
.y2d{bottom:448.546667pt;}
.y67{bottom:452.386667pt;}
.y125{bottom:454.466667pt;}
.ybf{bottom:459.906667pt;}
.ye9{bottom:460.706667pt;}
.yb6{bottom:465.506667pt;}
.y66{bottom:469.186667pt;}
.yf9{bottom:475.106667pt;}
.y124{bottom:475.426667pt;}
.ybe{bottom:476.706667pt;}
.ye8{bottom:477.506667pt;}
.yb5{bottom:482.306667pt;}
.y65{bottom:485.986667pt;}
.y123{bottom:492.226667pt;}
.ybd{bottom:493.666667pt;}
.ye7{bottom:494.466667pt;}
.yb4{bottom:499.266667pt;}
.y64{bottom:502.946667pt;}
.y14d{bottom:505.186667pt;}
.ye6{bottom:511.266667pt;}
.y122{bottom:513.186667pt;}
.yb3{bottom:516.066667pt;}
.y63{bottom:519.746667pt;}
.ybc{bottom:521.026667pt;}
.y14c{bottom:521.986667pt;}
.ye5{bottom:528.226667pt;}
.y121{bottom:529.986667pt;}
.yb2{bottom:533.026667pt;}
.y62{bottom:536.706667pt;}
.y14b{bottom:538.786667pt;}
.ye4{bottom:545.026667pt;}
.y120{bottom:546.786667pt;}
.ybb{bottom:548.706667pt;}
.yb1{bottom:549.826667pt;}
.y61{bottom:553.506667pt;}
.y14a{bottom:559.746667pt;}
.ye3{bottom:561.826667pt;}
.yb0{bottom:566.626667pt;}
.y11f{bottom:567.746667pt;}
.yba{bottom:570.146667pt;}
.y60{bottom:570.306667pt;}
.y16{bottom:574.466667pt;}
.y149{bottom:576.546667pt;}
.ye2{bottom:578.786667pt;}
.y11e{bottom:584.546667pt;}
.y5f{bottom:587.266667pt;}
.yaf{bottom:591.586667pt;}
.y148{bottom:593.506667pt;}
.y11d{bottom:601.506667pt;}
.y5e{bottom:604.066667pt;}
.y18{bottom:604.866667pt;}
.ye1{bottom:606.146667pt;}
.y147{bottom:610.333333pt;}
.yae{bottom:612.893333pt;}
.y11c{bottom:618.333333pt;}
.y5d{bottom:621.053333pt;}
.y146{bottom:631.133333pt;}
.ye0{bottom:633.853333pt;}
.y5c{bottom:637.853333pt;}
.y11b{bottom:639.133333pt;}
.y145{bottom:648.093333pt;}
.ydf{bottom:650.653333pt;}
.y5b{bottom:654.813333pt;}
.y11a{bottom:656.093333pt;}
.y144{bottom:664.893333pt;}
.yde{bottom:667.613333pt;}
.y5a{bottom:671.613333pt;}
.y119{bottom:672.893333pt;}
.ydd{bottom:684.413333pt;}
.y143{bottom:685.853333pt;}
.y59{bottom:688.413333pt;}
.y118{bottom:693.853333pt;}
.ydc{bottom:701.373333pt;}
.y142{bottom:702.653333pt;}
.y58{bottom:705.373333pt;}
.y117{bottom:710.653333pt;}
.ydb{bottom:718.173333pt;}
.y57{bottom:722.173333pt;}
.y141{bottom:723.453333pt;}
.y88{bottom:726.653333pt;}
.y116{bottom:727.453333pt;}
.yda{bottom:734.973333pt;}
.y11{bottom:735.613333pt;}
.y56{bottom:739.133333pt;}
.y140{bottom:740.413333pt;}
.y87{bottom:743.453333pt;}
.y115{bottom:748.413333pt;}
.yd9{bottom:751.933333pt;}
.y55{bottom:755.933333pt;}
.y13f{bottom:757.213333pt;}
.y86{bottom:760.413333pt;}
.y9e{bottom:762.493333pt;}
.y114{bottom:765.213333pt;}
.yd8{bottom:768.733333pt;}
.y54{bottom:772.733333pt;}
.y85{bottom:777.213333pt;}
.y13e{bottom:778.173333pt;}
.y113{bottom:782.173333pt;}
.yd7{bottom:785.693333pt;}
.y9d{bottom:787.293333pt;}
.y53{bottom:789.693333pt;}
.y84{bottom:794.173333pt;}
.y13d{bottom:794.973333pt;}
.y112{bottom:798.973333pt;}
.yd6{bottom:802.493333pt;}
.y52{bottom:806.493333pt;}
.y9c{bottom:808.733333pt;}
.y83{bottom:810.973333pt;}
.y13c{bottom:811.933333pt;}
.y111{bottom:815.973333pt;}
.yf8{bottom:817.093333pt;}
.ye{bottom:820.933333pt;}
.yd5{bottom:827.333333pt;}
.y82{bottom:827.973333pt;}
.y110{bottom:832.773333pt;}
.y51{bottom:833.893333pt;}
.y81{bottom:844.773333pt;}
.yd4{bottom:848.773333pt;}
.y10f{bottom:849.573333pt;}
.yd{bottom:851.333333pt;}
.y50{bottom:861.573333pt;}
.y10e{bottom:866.533333pt;}
.yc{bottom:868.293333pt;}
.y4f{bottom:878.533333pt;}
.y10d{bottom:883.333333pt;}
.y13b{bottom:887.333333pt;}
.yb{bottom:889.733333pt;}
.y4e{bottom:895.333333pt;}
.ya{bottom:898.533333pt;}
.y10c{bottom:904.293333pt;}
.y4d{bottom:912.293333pt;}
.y9{bottom:915.493333pt;}
.y10b{bottom:921.093333pt;}
.y13a{bottom:925.093333pt;}
.y4c{bottom:929.093333pt;}
.y8{bottom:932.293333pt;}
.y10a{bottom:941.893333pt;}
.y4b{bottom:945.893333pt;}
.y7{bottom:950.533333pt;}
.y109{bottom:958.853333pt;}
.y4a{bottom:962.853333pt;}
.y6{bottom:975.173333pt;}
.y139{bottom:975.653333pt;}
.y49{bottom:979.653333pt;}
.y48{bottom:996.613333pt;}
.y4{bottom:998.533333pt;}
.y47{bottom:1013.413333pt;}
.y3{bottom:1017.893333pt;}
.y2{bottom:1035.040000pt;}
.y1{bottom:1051.840000pt;}
.h7{height:24.800000pt;}
.h10{height:29.760000pt;}
.h6{height:31.406250pt;}
.hd{height:36.909063pt;}
.h17{height:37.264252pt;}
.h18{height:38.265381pt;}
.h14{height:40.911250pt;}
.h11{height:47.085938pt;}
.hc{height:52.134375pt;}
.hf{height:57.758750pt;}
.h3{height:57.787500pt;}
.h2{height:59.340000pt;}
.h15{height:60.519362pt;}
.h13{height:61.295000pt;}
.h8{height:62.812500pt;}
.h5{height:64.290000pt;}
.h19{height:83.912022pt;}
.h9{height:84.672000pt;}
.h4{height:85.785000pt;}
.h12{height:125.120000pt;}
.he{height:160.506667pt;}
.hb{height:215.426667pt;}
.ha{height:245.826667pt;}
.h16{height:306.063881pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:21.280000pt;}
.w2{width:192.026667pt;}
.w4{width:434.333333pt;}
.w6{width:644.684917pt;}
.w5{width:647.653333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xb{left:10.560000pt;}
.x27{left:14.405337pt;}
.x25{left:31.154504pt;}
.x1{left:72.032000pt;}
.x8{left:73.152000pt;}
.xf{left:74.613333pt;}
.xe{left:76.512000pt;}
.x1a{left:88.775852pt;}
.x1c{left:92.199424pt;}
.x1b{left:99.178243pt;}
.x37{left:100.512000pt;}
.x1d{left:105.920046pt;}
.x3{left:149.786667pt;}
.x29{left:155.546667pt;}
.x2f{left:161.146667pt;}
.x26{left:180.901537pt;}
.x6{left:228.706667pt;}
.x36{left:229.986667pt;}
.x18{left:236.890105pt;}
.x7{left:239.266667pt;}
.x19{left:241.493492pt;}
.x2b{left:247.746667pt;}
.x2d{left:255.106667pt;}
.xa{left:265.186667pt;}
.x31{left:269.506667pt;}
.x4{left:274.786667pt;}
.x33{left:282.466667pt;}
.xc{left:286.466667pt;}
.x35{left:312.866667pt;}
.xd{left:385.853333pt;}
.x5{left:396.893333pt;}
.x24{left:443.747584pt;}
.x23{left:444.674582pt;}
.x1e{left:447.592518pt;}
.x11{left:453.122903pt;}
.x1f{left:457.726291pt;}
.x10{left:461.834577pt;}
.x34{left:473.373333pt;}
.x2a{left:505.893333pt;}
.x15{left:514.304766pt;}
.x20{left:518.781745pt;}
.x21{left:522.995372pt;}
.x2e{left:525.093333pt;}
.x22{left:548.171792pt;}
.x12{left:555.145345pt;}
.x2c{left:557.893333pt;}
.x14{left:559.516983pt;}
.x17{left:560.517719pt;}
.x13{left:563.867553pt;}
.x16{left:567.491272pt;}
.x32{left:577.893333pt;}
.x30{left:628.293333pt;}
.x2{left:671.040000pt;}
.x28{left:719.360000pt;}
}




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