
    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_2212afe87ada3a7c63732065.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_acb0a5ada7da4f80661a5ccb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3135662e94b6f33a12386fd8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bde7509647c48216834795db.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ab499fee314f6e1414b2805.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_22e955275f06541352c33324.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f1b11daa44f0fe9be7d48f08.woff')format("woff");}.ff7{font-family:ff7;line-height:1.649414;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_403719ed9211ddb33771c9a4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.819824;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_42cce10e6b5bb812a49238e2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_d28fac2974a042919a0b7a98.woff')format("woff");}.ffa{font-family:ffa;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);}
.v3{vertical-align:-82.800000px;}
.vb{vertical-align:-48.240000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-14.400000px;}
.ve{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:1.440000px;}
.v6{vertical-align:2.880000px;}
.v4{vertical-align:14.400000px;}
.v13{vertical-align:15.840000px;}
.v1{vertical-align:18.000000px;}
.v9{vertical-align:21.600000px;}
.v11{vertical-align:29.520000px;}
.v8{vertical-align:36.000000px;}
.v7{vertical-align:42.480000px;}
.v10{vertical-align:43.920000px;}
.v12{vertical-align:46.800000px;}
.vc{vertical-align:56.880000px;}
.va{vertical-align:62.640000px;}
.vd{vertical-align:78.480000px;}
.vf{vertical-align:100.080000px;}
.ls4{letter-spacing:-0.298200px;}
.ls39{letter-spacing:-0.288000px;}
.ls38{letter-spacing:-0.277200px;}
.ls6{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls35{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.317400px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.512000px;}
.ls13{letter-spacing:1.632000px;}
.lsd{letter-spacing:1.656000px;}
.ls15{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.872000px;}
.ls9{letter-spacing:1.944000px;}
.ls1f{letter-spacing:2.016000px;}
.ls37{letter-spacing:2.160000px;}
.lsb{letter-spacing:2.232000px;}
.ls32{letter-spacing:2.448000px;}
.ls2c{letter-spacing:2.512800px;}
.ls36{letter-spacing:2.568000px;}
.ls2d{letter-spacing:2.801520px;}
.ls18{letter-spacing:3.598560px;}
.ls1d{letter-spacing:3.620640px;}
.ls1e{letter-spacing:3.680640px;}
.lse{letter-spacing:4.050000px;}
.ls34{letter-spacing:4.123200px;}
.ls33{letter-spacing:4.147200px;}
.ls1a{letter-spacing:4.220640px;}
.ls1c{letter-spacing:4.294560px;}
.ls17{letter-spacing:4.376880px;}
.ls14{letter-spacing:4.770000px;}
.ls16{letter-spacing:5.096880px;}
.ls24{letter-spacing:11.441520px;}
.ls2f{letter-spacing:11.592000px;}
.ls2e{letter-spacing:11.712000px;}
.ls28{letter-spacing:12.281520px;}
.ls27{letter-spacing:16.056000px;}
.ls11{letter-spacing:16.200000px;}
.ls26{letter-spacing:18.641520px;}
.ls22{letter-spacing:19.260000px;}
.ls19{letter-spacing:19.438560px;}
.ls1b{letter-spacing:20.180640px;}
.ls23{letter-spacing:20.376000px;}
.ls12{letter-spacing:25.256880px;}
.ls8{letter-spacing:26.640000px;}
.ls2b{letter-spacing:31.176000px;}
.ls3b{letter-spacing:33.984000px;}
.lsc{letter-spacing:34.560000px;}
.ls2a{letter-spacing:38.160000px;}
.ls30{letter-spacing:55.383120px;}
.ls31{letter-spacing:118.152000px;}
.ls2{letter-spacing:818.076000px;}
.ls3a{letter-spacing:971.436000px;}
.ls0{letter-spacing:1078.716000px;}
.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;}
}
.ws9{word-spacing:-72.360000px;}
.ws8{word-spacing:-72.000000px;}
.wsc{word-spacing:-54.024000px;}
.ws7{word-spacing:-52.344000px;}
.ws17{word-spacing:-52.200000px;}
.wsb{word-spacing:-52.056000px;}
.ws12{word-spacing:-51.768000px;}
.ws6{word-spacing:-51.624000px;}
.ws14{word-spacing:-51.444000px;}
.ws10{word-spacing:-51.437400px;}
.wsd{word-spacing:-51.120000px;}
.ws13{word-spacing:-50.842800px;}
.wse{word-spacing:-37.053600px;}
.wsf{word-spacing:-35.614800px;}
.ws16{word-spacing:-28.878480px;}
.ws11{word-spacing:-27.774720px;}
.wsa{word-spacing:-26.559360px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.928000px;}
.ws19{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws5{word-spacing:-15.226440px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
.ws15{word-spacing:229.601520px;}
._1d{margin-left:-10.436160px;}
._19{margin-left:-9.360000px;}
._5{margin-left:-7.620000px;}
._18{margin-left:-6.600000px;}
._6{margin-left:-5.280000px;}
._3{margin-left:-4.032000px;}
._1{margin-left:-3.024000px;}
._2{margin-left:-2.016000px;}
._c{margin-left:-1.008000px;}
._0{width:1.544400px;}
._9{width:3.135600px;}
._10{width:4.464000px;}
._b{width:5.511600px;}
._a{width:6.552000px;}
._d{width:7.992000px;}
._e{width:9.471600px;}
._11{width:10.509600px;}
._13{width:11.592000px;}
._12{width:13.320000px;}
._1a{width:14.808000px;}
._14{width:15.984000px;}
._1b{width:19.368000px;}
._1c{width:20.424000px;}
._7{width:21.888000px;}
._8{width:23.472000px;}
._1f{width:24.658800px;}
._17{width:26.424000px;}
._16{width:27.504000px;}
._f{width:29.016000px;}
._15{width:30.823200px;}
._27{width:32.104800px;}
._22{width:33.192000px;}
._23{width:34.488000px;}
._20{width:36.336000px;}
._21{width:37.395600px;}
._24{width:44.496000px;}
._25{width:45.504000px;}
._26{width:46.584000px;}
._1e{width:536.820000px;}
._4{width:621.480000px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:2.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y88{bottom:2.880000px;}
.y66{bottom:3.960000px;}
.y70{bottom:4.140000px;}
.y67{bottom:4.860000px;}
.y7a{bottom:5.400000px;}
.y92{bottom:6.120000px;}
.y79{bottom:6.300000px;}
.y93{bottom:7.020000px;}
.y9e{bottom:7.920000px;}
.y9c{bottom:10.980000px;}
.y87{bottom:11.880000px;}
.y89{bottom:12.780000px;}
.y9d{bottom:17.820000px;}
.y7{bottom:57.636000px;}
.yc3{bottom:102.456000px;}
.y36{bottom:104.076000px;}
.y77{bottom:105.336000px;}
.yd7{bottom:115.056000px;}
.yc2{bottom:123.156000px;}
.y152{bottom:123.336000px;}
.y35{bottom:124.776000px;}
.y76{bottom:126.036000px;}
.ya7{bottom:127.656000px;}
.y64{bottom:129.636000px;}
.yd6{bottom:131.796000px;}
.y133{bottom:133.776000px;}
.yc1{bottom:143.856000px;}
.y151{bottom:144.036000px;}
.y34{bottom:145.476000px;}
.y112{bottom:146.196000px;}
.y75{bottom:146.736000px;}
.ya6{bottom:148.356000px;}
.y63{bottom:150.330000px;}
.ye6{bottom:151.590000px;}
.yd5{bottom:152.490000px;}
.y132{bottom:156.450000px;}
.yc0{bottom:164.550000px;}
.y150{bottom:164.730000px;}
.y111{bottom:166.890000px;}
.y74{bottom:167.430000px;}
.ya5{bottom:169.050000px;}
.y62{bottom:171.030000px;}
.ye5{bottom:174.450000px;}
.y131{bottom:179.310000px;}
.ybf{bottom:185.250000px;}
.y14f{bottom:185.430000px;}
.y33{bottom:186.870000px;}
.y110{bottom:187.590000px;}
.y73{bottom:188.130000px;}
.ya4{bottom:189.750000px;}
.y61{bottom:191.730000px;}
.ye4{bottom:197.130000px;}
.y130{bottom:201.990000px;}
.ybe{bottom:205.950000px;}
.y14e{bottom:206.130000px;}
.y32{bottom:207.570000px;}
.y10f{bottom:208.290000px;}
.y72{bottom:208.830000px;}
.ya3{bottom:210.450000px;}
.y60{bottom:212.430000px;}
.ye3{bottom:219.990000px;}
.y12f{bottom:224.850000px;}
.ybd{bottom:226.650000px;}
.y14d{bottom:226.830000px;}
.y31{bottom:228.270000px;}
.y10e{bottom:228.990000px;}
.y71{bottom:229.890000px;}
.ya2{bottom:231.150000px;}
.y5f{bottom:233.130000px;}
.ye2{bottom:242.670000px;}
.y6f{bottom:246.630000px;}
.ybc{bottom:247.350000px;}
.y12e{bottom:247.530000px;}
.y30{bottom:248.970000px;}
.y10d{bottom:249.690000px;}
.ya1{bottom:251.850000px;}
.y5e{bottom:253.830000px;}
.ye1{bottom:265.530000px;}
.ybb{bottom:268.050000px;}
.y14c{bottom:268.230000px;}
.y2f{bottom:269.670000px;}
.y12d{bottom:270.390000px;}
.y10c{bottom:272.370000px;}
.ya0{bottom:272.910000px;}
.y5d{bottom:274.530000px;}
.yba{bottom:284.835000px;}
.ye0{bottom:286.275000px;}
.y14b{bottom:288.975000px;}
.y2e{bottom:290.415000px;}
.y6e{bottom:292.575000px;}
.y12c{bottom:293.115000px;}
.y9f{bottom:294.015000px;}
.y5c{bottom:295.275000px;}
.yb9{bottom:305.535000px;}
.ydf{bottom:306.975000px;}
.y14a{bottom:309.675000px;}
.y9b{bottom:310.755000px;}
.y2d{bottom:311.115000px;}
.y6d{bottom:313.275000px;}
.y5b{bottom:315.975000px;}
.y10b{bottom:317.955000px;}
.yde{bottom:327.675000px;}
.y149{bottom:330.375000px;}
.y2c{bottom:331.815000px;}
.y6c{bottom:333.975000px;}
.y5a{bottom:336.675000px;}
.y12b{bottom:338.655000px;}
.y10a{bottom:340.815000px;}
.y9a{bottom:343.335000px;}
.ydd{bottom:348.375000px;}
.y148{bottom:351.075000px;}
.y2b{bottom:352.515000px;}
.y6b{bottom:354.495000px;}
.y59{bottom:357.375000px;}
.y12a{bottom:361.515000px;}
.y109{bottom:363.495000px;}
.y99{bottom:364.035000px;}
.ydc{bottom:369.075000px;}
.y147{bottom:371.775000px;}
.y2a{bottom:373.215000px;}
.y6a{bottom:375.375000px;}
.y58{bottom:378.075000px;}
.y129{bottom:384.195000px;}
.y98{bottom:384.735000px;}
.y108{bottom:386.355000px;}
.ydb{bottom:389.775000px;}
.y146{bottom:392.475000px;}
.y29{bottom:393.915000px;}
.y69{bottom:396.435000px;}
.y57{bottom:398.775000px;}
.y97{bottom:405.435000px;}
.y128{bottom:407.055000px;}
.y107{bottom:409.035000px;}
.yda{bottom:410.475000px;}
.y145{bottom:413.175000px;}
.y28{bottom:414.615000px;}
.y68{bottom:417.495000px;}
.y56{bottom:419.475000px;}
.y96{bottom:426.135000px;}
.yd4{bottom:426.495000px;}
.y127{bottom:429.735000px;}
.yd9{bottom:431.175000px;}
.y106{bottom:431.895000px;}
.y144{bottom:433.875000px;}
.y65{bottom:434.235000px;}
.y27{bottom:435.315000px;}
.y55{bottom:440.175000px;}
.yd3{bottom:447.195000px;}
.y95{bottom:449.355000px;}
.yd8{bottom:451.875000px;}
.y126{bottom:452.595000px;}
.y105{bottom:454.575000px;}
.y26{bottom:456.015000px;}
.y54{bottom:460.875000px;}
.yd2{bottom:467.895000px;}
.y94{bottom:470.415000px;}
.y125{bottom:475.275000px;}
.y25{bottom:476.715000px;}
.y104{bottom:477.435000px;}
.y53{bottom:481.575000px;}
.y91{bottom:487.155000px;}
.yd1{bottom:488.595000px;}
.y143{bottom:495.975000px;}
.y24{bottom:497.415000px;}
.y124{bottom:498.135000px;}
.y103{bottom:500.115000px;}
.y52{bottom:502.275000px;}
.yd0{bottom:509.295000px;}
.y142{bottom:516.675000px;}
.y90{bottom:517.935000px;}
.y23{bottom:518.115000px;}
.y123{bottom:520.815000px;}
.y102{bottom:522.795000px;}
.y51{bottom:522.975000px;}
.ycf{bottom:529.995000px;}
.y141{bottom:537.375000px;}
.y8f{bottom:538.635000px;}
.y22{bottom:538.815000px;}
.y50{bottom:543.495000px;}
.y101{bottom:545.655000px;}
.yb8{bottom:548.895000px;}
.yce{bottom:550.695000px;}
.y140{bottom:558.075000px;}
.y8e{bottom:559.335000px;}
.y21{bottom:559.515000px;}
.y4f{bottom:564.195000px;}
.y100{bottom:566.385000px;}
.yb7{bottom:569.625000px;}
.ycd{bottom:571.425000px;}
.y13f{bottom:578.805000px;}
.y8d{bottom:580.065000px;}
.y4e{bottom:584.925000px;}
.yff{bottom:587.085000px;}
.y122{bottom:589.065000px;}
.yb6{bottom:590.325000px;}
.ycc{bottom:592.125000px;}
.y13e{bottom:599.505000px;}
.y8c{bottom:600.765000px;}
.y20{bottom:600.945000px;}
.y4d{bottom:605.625000px;}
.yfe{bottom:607.785000px;}
.yb5{bottom:611.025000px;}
.y121{bottom:611.925000px;}
.ycb{bottom:612.825000px;}
.y1f{bottom:621.645000px;}
.y13d{bottom:622.185000px;}
.y4c{bottom:626.325000px;}
.yfd{bottom:628.485000px;}
.yb4{bottom:631.725000px;}
.yca{bottom:633.525000px;}
.y120{bottom:634.605000px;}
.y1e{bottom:642.345000px;}
.y8b{bottom:644.865000px;}
.y13c{bottom:645.045000px;}
.y4b{bottom:647.025000px;}
.yfc{bottom:649.185000px;}
.yb3{bottom:652.425000px;}
.yc9{bottom:654.225000px;}
.y11f{bottom:657.465000px;}
.y1d{bottom:663.045000px;}
.y8a{bottom:665.925000px;}
.y4a{bottom:667.725000px;}
.yfb{bottom:669.885000px;}
.yb2{bottom:673.125000px;}
.yc8{bottom:674.925000px;}
.y11e{bottom:680.145000px;}
.y86{bottom:682.665000px;}
.y1c{bottom:683.745000px;}
.y49{bottom:688.425000px;}
.yfa{bottom:690.585000px;}
.yb1{bottom:693.825000px;}
.yc7{bottom:695.625000px;}
.y11d{bottom:703.005000px;}
.y1b{bottom:704.445000px;}
.y154{bottom:704.985000px;}
.y48{bottom:709.125000px;}
.yf9{bottom:711.285000px;}
.y13b{bottom:713.265000px;}
.yb0{bottom:714.525000px;}
.yc6{bottom:716.325000px;}
.y1a{bottom:725.145000px;}
.y11c{bottom:725.685000px;}
.y153{bottom:727.845000px;}
.y47{bottom:729.825000px;}
.yf8{bottom:731.985000px;}
.yc5{bottom:733.065000px;}
.yaf{bottom:735.225000px;}
.y13a{bottom:736.125000px;}
.y19{bottom:745.845000px;}
.y11b{bottom:748.545000px;}
.y46{bottom:750.525000px;}
.yf7{bottom:752.685000px;}
.yc4{bottom:753.765000px;}
.yae{bottom:755.925000px;}
.y139{bottom:758.805000px;}
.y18{bottom:766.545000px;}
.y45{bottom:771.225000px;}
.yf6{bottom:773.385000px;}
.yad{bottom:776.625000px;}
.y138{bottom:781.665000px;}
.y17{bottom:787.245000px;}
.y44{bottom:791.925000px;}
.yf5{bottom:794.085000px;}
.yac{bottom:797.325000px;}
.y137{bottom:804.345000px;}
.y16{bottom:807.945000px;}
.y43{bottom:812.625000px;}
.yf4{bottom:814.785000px;}
.y11a{bottom:816.765000px;}
.yab{bottom:818.025000px;}
.y136{bottom:827.205000px;}
.y15{bottom:828.645000px;}
.y42{bottom:833.325000px;}
.yf3{bottom:835.485000px;}
.yaa{bottom:838.725000px;}
.y119{bottom:839.625000px;}
.y14{bottom:849.390000px;}
.y135{bottom:849.930000px;}
.y41{bottom:854.070000px;}
.ya9{bottom:855.510000px;}
.yf2{bottom:856.230000px;}
.y118{bottom:862.350000px;}
.y13{bottom:870.090000px;}
.y85{bottom:870.450000px;}
.y134{bottom:872.790000px;}
.y40{bottom:874.770000px;}
.ya8{bottom:876.210000px;}
.yf1{bottom:876.930000px;}
.y117{bottom:885.210000px;}
.y12{bottom:890.790000px;}
.y84{bottom:891.510000px;}
.y3f{bottom:895.470000px;}
.yf0{bottom:897.630000px;}
.y116{bottom:907.890000px;}
.y83{bottom:908.250000px;}
.y11{bottom:911.490000px;}
.y3e{bottom:916.170000px;}
.yef{bottom:918.330000px;}
.y115{bottom:930.750000px;}
.y10{bottom:932.190000px;}
.y82{bottom:933.450000px;}
.y3d{bottom:936.870000px;}
.yee{bottom:941.010000px;}
.yf{bottom:952.890000px;}
.y114{bottom:953.430000px;}
.y81{bottom:953.970000px;}
.y3c{bottom:957.570000px;}
.yed{bottom:963.870000px;}
.y80{bottom:974.670000px;}
.y113{bottom:976.290000px;}
.ye{bottom:978.090000px;}
.y3b{bottom:978.270000px;}
.yec{bottom:986.550000px;}
.y7f{bottom:995.370000px;}
.yd{bottom:998.790000px;}
.y3a{bottom:998.970000px;}
.yeb{bottom:1009.410000px;}
.y7e{bottom:1016.070000px;}
.y39{bottom:1019.670000px;}
.yc{bottom:1023.990000px;}
.yea{bottom:1032.090000px;}
.y7d{bottom:1036.950000px;}
.y38{bottom:1040.370000px;}
.ye9{bottom:1054.950000px;}
.yb{bottom:1056.570000px;}
.y7c{bottom:1058.010000px;}
.y37{bottom:1061.070000px;}
.ye8{bottom:1077.630000px;}
.y7b{bottom:1079.070000px;}
.ya{bottom:1081.770000px;}
.y78{bottom:1095.810000px;}
.ye7{bottom:1100.490000px;}
.y9{bottom:1102.470000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.h1b{height:2.826563px;}
.h1c{height:20.700000px;}
.hd{height:21.240000px;}
.ha{height:22.680000px;}
.hf{height:23.400000px;}
.h15{height:26.820000px;}
.h16{height:28.620000px;}
.h10{height:38.520000px;}
.h9{height:50.800781px;}
.h7{height:52.066406px;}
.h8{height:52.664062px;}
.h18{height:56.786133px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h20{height:74.004654px;}
.hc{height:79.980469px;}
.he{height:82.860469px;}
.h3{height:84.898125px;}
.hb{height:94.380469px;}
.h19{height:95.820469px;}
.h11{height:99.266133px;}
.h17{height:126.780469px;}
.h13{height:135.266133px;}
.h12{height:141.026133px;}
.h14{height:156.866133px;}
.h1d{height:239.400000px;}
.h1e{height:261.930000px;}
.h1a{height:263.730000px;}
.h1f{height:270.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.560000px;}
.w4{width:63.360000px;}
.w3{width:658.950000px;}
.w5{width:669.750000px;}
.w7{width:722.310000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:15.840000px;}
.x14{left:21.060000px;}
.x7{left:84.959987px;}
.xa{left:95.435987px;}
.x8{left:98.495987px;}
.xe{left:100.295987px;}
.x10{left:111.995987px;}
.x22{left:124.235987px;}
.x23{left:127.115987px;}
.x1f{left:134.670000px;}
.xd{left:138.095987px;}
.x5{left:140.615987px;}
.x20{left:145.470000px;}
.x19{left:154.830000px;}
.x2a{left:156.990000px;}
.x16{left:159.690000px;}
.x26{left:187.230000px;}
.x6{left:192.089987px;}
.x21{left:211.215000px;}
.x12{left:214.815000px;}
.x1a{left:215.895000px;}
.x11{left:218.549987px;}
.x24{left:227.055000px;}
.x1e{left:244.335000px;}
.x28{left:263.595000px;}
.x15{left:268.635000px;}
.x9{left:298.694987px;}
.x3{left:350.534987px;}
.x1b{left:376.095000px;}
.x2b{left:385.994987px;}
.xc{left:397.334987px;}
.x1c{left:430.845000px;}
.xf{left:438.014987px;}
.x4{left:442.334987px;}
.xb{left:446.474987px;}
.x2{left:457.094987px;}
.x1d{left:478.725000px;}
.x1{left:510.404987px;}
.x25{left:536.685000px;}
.x27{left:545.685000px;}
.x29{left:548.925000px;}
.x13{left:743.910000px;}
.x17{left:754.710000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.vb{vertical-align:-42.880000pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-12.800000pt;}
.ve{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.280000pt;}
.v6{vertical-align:2.560000pt;}
.v4{vertical-align:12.800000pt;}
.v13{vertical-align:14.080000pt;}
.v1{vertical-align:16.000000pt;}
.v9{vertical-align:19.200000pt;}
.v11{vertical-align:26.240000pt;}
.v8{vertical-align:32.000000pt;}
.v7{vertical-align:37.760000pt;}
.v10{vertical-align:39.040000pt;}
.v12{vertical-align:41.600000pt;}
.vc{vertical-align:50.560000pt;}
.va{vertical-align:55.680000pt;}
.vd{vertical-align:69.760000pt;}
.vf{vertical-align:88.960000pt;}
.ls4{letter-spacing:-0.265067pt;}
.ls39{letter-spacing:-0.256000pt;}
.ls38{letter-spacing:-0.246400pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls35{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.282133pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls20{letter-spacing:1.344000pt;}
.ls13{letter-spacing:1.450667pt;}
.lsd{letter-spacing:1.472000pt;}
.ls15{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.664000pt;}
.ls9{letter-spacing:1.728000pt;}
.ls1f{letter-spacing:1.792000pt;}
.ls37{letter-spacing:1.920000pt;}
.lsb{letter-spacing:1.984000pt;}
.ls32{letter-spacing:2.176000pt;}
.ls2c{letter-spacing:2.233600pt;}
.ls36{letter-spacing:2.282667pt;}
.ls2d{letter-spacing:2.490240pt;}
.ls18{letter-spacing:3.198720pt;}
.ls1d{letter-spacing:3.218347pt;}
.ls1e{letter-spacing:3.271680pt;}
.lse{letter-spacing:3.600000pt;}
.ls34{letter-spacing:3.665067pt;}
.ls33{letter-spacing:3.686400pt;}
.ls1a{letter-spacing:3.751680pt;}
.ls1c{letter-spacing:3.817387pt;}
.ls17{letter-spacing:3.890560pt;}
.ls14{letter-spacing:4.240000pt;}
.ls16{letter-spacing:4.530560pt;}
.ls24{letter-spacing:10.170240pt;}
.ls2f{letter-spacing:10.304000pt;}
.ls2e{letter-spacing:10.410667pt;}
.ls28{letter-spacing:10.916907pt;}
.ls27{letter-spacing:14.272000pt;}
.ls11{letter-spacing:14.400000pt;}
.ls26{letter-spacing:16.570240pt;}
.ls22{letter-spacing:17.120000pt;}
.ls19{letter-spacing:17.278720pt;}
.ls1b{letter-spacing:17.938347pt;}
.ls23{letter-spacing:18.112000pt;}
.ls12{letter-spacing:22.450560pt;}
.ls8{letter-spacing:23.680000pt;}
.ls2b{letter-spacing:27.712000pt;}
.ls3b{letter-spacing:30.208000pt;}
.lsc{letter-spacing:30.720000pt;}
.ls2a{letter-spacing:33.920000pt;}
.ls30{letter-spacing:49.229440pt;}
.ls31{letter-spacing:105.024000pt;}
.ls2{letter-spacing:727.178667pt;}
.ls3a{letter-spacing:863.498667pt;}
.ls0{letter-spacing:958.858667pt;}
.ws9{word-spacing:-64.320000pt;}
.ws8{word-spacing:-64.000000pt;}
.wsc{word-spacing:-48.021333pt;}
.ws7{word-spacing:-46.528000pt;}
.ws17{word-spacing:-46.400000pt;}
.wsb{word-spacing:-46.272000pt;}
.ws12{word-spacing:-46.016000pt;}
.ws6{word-spacing:-45.888000pt;}
.ws14{word-spacing:-45.728000pt;}
.ws10{word-spacing:-45.722133pt;}
.wsd{word-spacing:-45.440000pt;}
.ws13{word-spacing:-45.193600pt;}
.wse{word-spacing:-32.936533pt;}
.wsf{word-spacing:-31.657600pt;}
.ws16{word-spacing:-25.669760pt;}
.ws11{word-spacing:-24.688640pt;}
.wsa{word-spacing:-23.608320pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.936000pt;}
.ws19{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.534613pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
.ws15{word-spacing:204.090240pt;}
._1d{margin-left:-9.276587pt;}
._19{margin-left:-8.320000pt;}
._5{margin-left:-6.773333pt;}
._18{margin-left:-5.866667pt;}
._6{margin-left:-4.693333pt;}
._3{margin-left:-3.584000pt;}
._1{margin-left:-2.688000pt;}
._2{margin-left:-1.792000pt;}
._c{margin-left:-0.896000pt;}
._0{width:1.372800pt;}
._9{width:2.787200pt;}
._10{width:3.968000pt;}
._b{width:4.899200pt;}
._a{width:5.824000pt;}
._d{width:7.104000pt;}
._e{width:8.419200pt;}
._11{width:9.341867pt;}
._13{width:10.304000pt;}
._12{width:11.840000pt;}
._1a{width:13.162667pt;}
._14{width:14.208000pt;}
._1b{width:17.216000pt;}
._1c{width:18.154667pt;}
._7{width:19.456000pt;}
._8{width:20.864000pt;}
._1f{width:21.918933pt;}
._17{width:23.488000pt;}
._16{width:24.448000pt;}
._f{width:25.792000pt;}
._15{width:27.398400pt;}
._27{width:28.537600pt;}
._22{width:29.504000pt;}
._23{width:30.656000pt;}
._20{width:32.298667pt;}
._21{width:33.240533pt;}
._24{width:39.552000pt;}
._25{width:40.448000pt;}
._26{width:41.408000pt;}
._1e{width:477.173333pt;}
._4{width:552.426667pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:2.560000pt;}
.y66{bottom:3.520000pt;}
.y70{bottom:3.680000pt;}
.y67{bottom:4.320000pt;}
.y7a{bottom:4.800000pt;}
.y92{bottom:5.440000pt;}
.y79{bottom:5.600000pt;}
.y93{bottom:6.240000pt;}
.y9e{bottom:7.040000pt;}
.y9c{bottom:9.760000pt;}
.y87{bottom:10.560000pt;}
.y89{bottom:11.360000pt;}
.y9d{bottom:15.840000pt;}
.y7{bottom:51.232000pt;}
.yc3{bottom:91.072000pt;}
.y36{bottom:92.512000pt;}
.y77{bottom:93.632000pt;}
.yd7{bottom:102.272000pt;}
.yc2{bottom:109.472000pt;}
.y152{bottom:109.632000pt;}
.y35{bottom:110.912000pt;}
.y76{bottom:112.032000pt;}
.ya7{bottom:113.472000pt;}
.y64{bottom:115.232000pt;}
.yd6{bottom:117.152000pt;}
.y133{bottom:118.912000pt;}
.yc1{bottom:127.872000pt;}
.y151{bottom:128.032000pt;}
.y34{bottom:129.312000pt;}
.y112{bottom:129.952000pt;}
.y75{bottom:130.432000pt;}
.ya6{bottom:131.872000pt;}
.y63{bottom:133.626667pt;}
.ye6{bottom:134.746667pt;}
.yd5{bottom:135.546667pt;}
.y132{bottom:139.066667pt;}
.yc0{bottom:146.266667pt;}
.y150{bottom:146.426667pt;}
.y111{bottom:148.346667pt;}
.y74{bottom:148.826667pt;}
.ya5{bottom:150.266667pt;}
.y62{bottom:152.026667pt;}
.ye5{bottom:155.066667pt;}
.y131{bottom:159.386667pt;}
.ybf{bottom:164.666667pt;}
.y14f{bottom:164.826667pt;}
.y33{bottom:166.106667pt;}
.y110{bottom:166.746667pt;}
.y73{bottom:167.226667pt;}
.ya4{bottom:168.666667pt;}
.y61{bottom:170.426667pt;}
.ye4{bottom:175.226667pt;}
.y130{bottom:179.546667pt;}
.ybe{bottom:183.066667pt;}
.y14e{bottom:183.226667pt;}
.y32{bottom:184.506667pt;}
.y10f{bottom:185.146667pt;}
.y72{bottom:185.626667pt;}
.ya3{bottom:187.066667pt;}
.y60{bottom:188.826667pt;}
.ye3{bottom:195.546667pt;}
.y12f{bottom:199.866667pt;}
.ybd{bottom:201.466667pt;}
.y14d{bottom:201.626667pt;}
.y31{bottom:202.906667pt;}
.y10e{bottom:203.546667pt;}
.y71{bottom:204.346667pt;}
.ya2{bottom:205.466667pt;}
.y5f{bottom:207.226667pt;}
.ye2{bottom:215.706667pt;}
.y6f{bottom:219.226667pt;}
.ybc{bottom:219.866667pt;}
.y12e{bottom:220.026667pt;}
.y30{bottom:221.306667pt;}
.y10d{bottom:221.946667pt;}
.ya1{bottom:223.866667pt;}
.y5e{bottom:225.626667pt;}
.ye1{bottom:236.026667pt;}
.ybb{bottom:238.266667pt;}
.y14c{bottom:238.426667pt;}
.y2f{bottom:239.706667pt;}
.y12d{bottom:240.346667pt;}
.y10c{bottom:242.106667pt;}
.ya0{bottom:242.586667pt;}
.y5d{bottom:244.026667pt;}
.yba{bottom:253.186667pt;}
.ye0{bottom:254.466667pt;}
.y14b{bottom:256.866667pt;}
.y2e{bottom:258.146667pt;}
.y6e{bottom:260.066667pt;}
.y12c{bottom:260.546667pt;}
.y9f{bottom:261.346667pt;}
.y5c{bottom:262.466667pt;}
.yb9{bottom:271.586667pt;}
.ydf{bottom:272.866667pt;}
.y14a{bottom:275.266667pt;}
.y9b{bottom:276.226667pt;}
.y2d{bottom:276.546667pt;}
.y6d{bottom:278.466667pt;}
.y5b{bottom:280.866667pt;}
.y10b{bottom:282.626667pt;}
.yde{bottom:291.266667pt;}
.y149{bottom:293.666667pt;}
.y2c{bottom:294.946667pt;}
.y6c{bottom:296.866667pt;}
.y5a{bottom:299.266667pt;}
.y12b{bottom:301.026667pt;}
.y10a{bottom:302.946667pt;}
.y9a{bottom:305.186667pt;}
.ydd{bottom:309.666667pt;}
.y148{bottom:312.066667pt;}
.y2b{bottom:313.346667pt;}
.y6b{bottom:315.106667pt;}
.y59{bottom:317.666667pt;}
.y12a{bottom:321.346667pt;}
.y109{bottom:323.106667pt;}
.y99{bottom:323.586667pt;}
.ydc{bottom:328.066667pt;}
.y147{bottom:330.466667pt;}
.y2a{bottom:331.746667pt;}
.y6a{bottom:333.666667pt;}
.y58{bottom:336.066667pt;}
.y129{bottom:341.506667pt;}
.y98{bottom:341.986667pt;}
.y108{bottom:343.426667pt;}
.ydb{bottom:346.466667pt;}
.y146{bottom:348.866667pt;}
.y29{bottom:350.146667pt;}
.y69{bottom:352.386667pt;}
.y57{bottom:354.466667pt;}
.y97{bottom:360.386667pt;}
.y128{bottom:361.826667pt;}
.y107{bottom:363.586667pt;}
.yda{bottom:364.866667pt;}
.y145{bottom:367.266667pt;}
.y28{bottom:368.546667pt;}
.y68{bottom:371.106667pt;}
.y56{bottom:372.866667pt;}
.y96{bottom:378.786667pt;}
.yd4{bottom:379.106667pt;}
.y127{bottom:381.986667pt;}
.yd9{bottom:383.266667pt;}
.y106{bottom:383.906667pt;}
.y144{bottom:385.666667pt;}
.y65{bottom:385.986667pt;}
.y27{bottom:386.946667pt;}
.y55{bottom:391.266667pt;}
.yd3{bottom:397.506667pt;}
.y95{bottom:399.426667pt;}
.yd8{bottom:401.666667pt;}
.y126{bottom:402.306667pt;}
.y105{bottom:404.066667pt;}
.y26{bottom:405.346667pt;}
.y54{bottom:409.666667pt;}
.yd2{bottom:415.906667pt;}
.y94{bottom:418.146667pt;}
.y125{bottom:422.466667pt;}
.y25{bottom:423.746667pt;}
.y104{bottom:424.386667pt;}
.y53{bottom:428.066667pt;}
.y91{bottom:433.026667pt;}
.yd1{bottom:434.306667pt;}
.y143{bottom:440.866667pt;}
.y24{bottom:442.146667pt;}
.y124{bottom:442.786667pt;}
.y103{bottom:444.546667pt;}
.y52{bottom:446.466667pt;}
.yd0{bottom:452.706667pt;}
.y142{bottom:459.266667pt;}
.y90{bottom:460.386667pt;}
.y23{bottom:460.546667pt;}
.y123{bottom:462.946667pt;}
.y102{bottom:464.706667pt;}
.y51{bottom:464.866667pt;}
.ycf{bottom:471.106667pt;}
.y141{bottom:477.666667pt;}
.y8f{bottom:478.786667pt;}
.y22{bottom:478.946667pt;}
.y50{bottom:483.106667pt;}
.y101{bottom:485.026667pt;}
.yb8{bottom:487.906667pt;}
.yce{bottom:489.506667pt;}
.y140{bottom:496.066667pt;}
.y8e{bottom:497.186667pt;}
.y21{bottom:497.346667pt;}
.y4f{bottom:501.506667pt;}
.y100{bottom:503.453333pt;}
.yb7{bottom:506.333333pt;}
.ycd{bottom:507.933333pt;}
.y13f{bottom:514.493333pt;}
.y8d{bottom:515.613333pt;}
.y4e{bottom:519.933333pt;}
.yff{bottom:521.853333pt;}
.y122{bottom:523.613333pt;}
.yb6{bottom:524.733333pt;}
.ycc{bottom:526.333333pt;}
.y13e{bottom:532.893333pt;}
.y8c{bottom:534.013333pt;}
.y20{bottom:534.173333pt;}
.y4d{bottom:538.333333pt;}
.yfe{bottom:540.253333pt;}
.yb5{bottom:543.133333pt;}
.y121{bottom:543.933333pt;}
.ycb{bottom:544.733333pt;}
.y1f{bottom:552.573333pt;}
.y13d{bottom:553.053333pt;}
.y4c{bottom:556.733333pt;}
.yfd{bottom:558.653333pt;}
.yb4{bottom:561.533333pt;}
.yca{bottom:563.133333pt;}
.y120{bottom:564.093333pt;}
.y1e{bottom:570.973333pt;}
.y8b{bottom:573.213333pt;}
.y13c{bottom:573.373333pt;}
.y4b{bottom:575.133333pt;}
.yfc{bottom:577.053333pt;}
.yb3{bottom:579.933333pt;}
.yc9{bottom:581.533333pt;}
.y11f{bottom:584.413333pt;}
.y1d{bottom:589.373333pt;}
.y8a{bottom:591.933333pt;}
.y4a{bottom:593.533333pt;}
.yfb{bottom:595.453333pt;}
.yb2{bottom:598.333333pt;}
.yc8{bottom:599.933333pt;}
.y11e{bottom:604.573333pt;}
.y86{bottom:606.813333pt;}
.y1c{bottom:607.773333pt;}
.y49{bottom:611.933333pt;}
.yfa{bottom:613.853333pt;}
.yb1{bottom:616.733333pt;}
.yc7{bottom:618.333333pt;}
.y11d{bottom:624.893333pt;}
.y1b{bottom:626.173333pt;}
.y154{bottom:626.653333pt;}
.y48{bottom:630.333333pt;}
.yf9{bottom:632.253333pt;}
.y13b{bottom:634.013333pt;}
.yb0{bottom:635.133333pt;}
.yc6{bottom:636.733333pt;}
.y1a{bottom:644.573333pt;}
.y11c{bottom:645.053333pt;}
.y153{bottom:646.973333pt;}
.y47{bottom:648.733333pt;}
.yf8{bottom:650.653333pt;}
.yc5{bottom:651.613333pt;}
.yaf{bottom:653.533333pt;}
.y13a{bottom:654.333333pt;}
.y19{bottom:662.973333pt;}
.y11b{bottom:665.373333pt;}
.y46{bottom:667.133333pt;}
.yf7{bottom:669.053333pt;}
.yc4{bottom:670.013333pt;}
.yae{bottom:671.933333pt;}
.y139{bottom:674.493333pt;}
.y18{bottom:681.373333pt;}
.y45{bottom:685.533333pt;}
.yf6{bottom:687.453333pt;}
.yad{bottom:690.333333pt;}
.y138{bottom:694.813333pt;}
.y17{bottom:699.773333pt;}
.y44{bottom:703.933333pt;}
.yf5{bottom:705.853333pt;}
.yac{bottom:708.733333pt;}
.y137{bottom:714.973333pt;}
.y16{bottom:718.173333pt;}
.y43{bottom:722.333333pt;}
.yf4{bottom:724.253333pt;}
.y11a{bottom:726.013333pt;}
.yab{bottom:727.133333pt;}
.y136{bottom:735.293333pt;}
.y15{bottom:736.573333pt;}
.y42{bottom:740.733333pt;}
.yf3{bottom:742.653333pt;}
.yaa{bottom:745.533333pt;}
.y119{bottom:746.333333pt;}
.y14{bottom:755.013333pt;}
.y135{bottom:755.493333pt;}
.y41{bottom:759.173333pt;}
.ya9{bottom:760.453333pt;}
.yf2{bottom:761.093333pt;}
.y118{bottom:766.533333pt;}
.y13{bottom:773.413333pt;}
.y85{bottom:773.733333pt;}
.y134{bottom:775.813333pt;}
.y40{bottom:777.573333pt;}
.ya8{bottom:778.853333pt;}
.yf1{bottom:779.493333pt;}
.y117{bottom:786.853333pt;}
.y12{bottom:791.813333pt;}
.y84{bottom:792.453333pt;}
.y3f{bottom:795.973333pt;}
.yf0{bottom:797.893333pt;}
.y116{bottom:807.013333pt;}
.y83{bottom:807.333333pt;}
.y11{bottom:810.213333pt;}
.y3e{bottom:814.373333pt;}
.yef{bottom:816.293333pt;}
.y115{bottom:827.333333pt;}
.y10{bottom:828.613333pt;}
.y82{bottom:829.733333pt;}
.y3d{bottom:832.773333pt;}
.yee{bottom:836.453333pt;}
.yf{bottom:847.013333pt;}
.y114{bottom:847.493333pt;}
.y81{bottom:847.973333pt;}
.y3c{bottom:851.173333pt;}
.yed{bottom:856.773333pt;}
.y80{bottom:866.373333pt;}
.y113{bottom:867.813333pt;}
.ye{bottom:869.413333pt;}
.y3b{bottom:869.573333pt;}
.yec{bottom:876.933333pt;}
.y7f{bottom:884.773333pt;}
.yd{bottom:887.813333pt;}
.y3a{bottom:887.973333pt;}
.yeb{bottom:897.253333pt;}
.y7e{bottom:903.173333pt;}
.y39{bottom:906.373333pt;}
.yc{bottom:910.213333pt;}
.yea{bottom:917.413333pt;}
.y7d{bottom:921.733333pt;}
.y38{bottom:924.773333pt;}
.ye9{bottom:937.733333pt;}
.yb{bottom:939.173333pt;}
.y7c{bottom:940.453333pt;}
.y37{bottom:943.173333pt;}
.ye8{bottom:957.893333pt;}
.y7b{bottom:959.173333pt;}
.ya{bottom:961.573333pt;}
.y78{bottom:974.053333pt;}
.ye7{bottom:978.213333pt;}
.y9{bottom:979.973333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.h1b{height:2.512500pt;}
.h1c{height:18.400000pt;}
.hd{height:18.880000pt;}
.ha{height:20.160000pt;}
.hf{height:20.800000pt;}
.h15{height:23.840000pt;}
.h16{height:25.440000pt;}
.h10{height:34.240000pt;}
.h9{height:45.156250pt;}
.h7{height:46.281250pt;}
.h8{height:46.812500pt;}
.h18{height:50.476562pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h20{height:65.781915pt;}
.hc{height:71.093750pt;}
.he{height:73.653750pt;}
.h3{height:75.465000pt;}
.hb{height:83.893750pt;}
.h19{height:85.173750pt;}
.h11{height:88.236563pt;}
.h17{height:112.693750pt;}
.h13{height:120.236563pt;}
.h12{height:125.356563pt;}
.h14{height:139.436562pt;}
.h1d{height:212.800000pt;}
.h1e{height:232.826667pt;}
.h1a{height:234.426667pt;}
.h1f{height:240.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:46.720000pt;}
.w4{width:56.320000pt;}
.w3{width:585.733333pt;}
.w5{width:595.333333pt;}
.w7{width:642.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:14.080000pt;}
.x14{left:18.720000pt;}
.x7{left:75.519988pt;}
.xa{left:84.831988pt;}
.x8{left:87.551988pt;}
.xe{left:89.151988pt;}
.x10{left:99.551988pt;}
.x22{left:110.431988pt;}
.x23{left:112.991988pt;}
.x1f{left:119.706667pt;}
.xd{left:122.751988pt;}
.x5{left:124.991988pt;}
.x20{left:129.306667pt;}
.x19{left:137.626667pt;}
.x2a{left:139.546667pt;}
.x16{left:141.946667pt;}
.x26{left:166.426667pt;}
.x6{left:170.746655pt;}
.x21{left:187.746667pt;}
.x12{left:190.946667pt;}
.x1a{left:191.906667pt;}
.x11{left:194.266655pt;}
.x24{left:201.826667pt;}
.x1e{left:217.186667pt;}
.x28{left:234.306667pt;}
.x15{left:238.786667pt;}
.x9{left:265.506655pt;}
.x3{left:311.586655pt;}
.x1b{left:334.306667pt;}
.x2b{left:343.106655pt;}
.xc{left:353.186655pt;}
.x1c{left:382.973333pt;}
.xf{left:389.346655pt;}
.x4{left:393.186655pt;}
.xb{left:396.866655pt;}
.x2{left:406.306655pt;}
.x1d{left:425.533333pt;}
.x1{left:453.693322pt;}
.x25{left:477.053333pt;}
.x27{left:485.053333pt;}
.x29{left:487.933333pt;}
.x13{left:661.253333pt;}
.x17{left:670.853333pt;}
}




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