
    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_1ac144b53b902d5dc9f0e046.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0bb1a315880f3cee1a06d137.woff')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_eba01d0af6848e53769b67e0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_79dd13083e93012f3d795527.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89db3579c3c2db541aaaaa91.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c71e8d61584aacb41ecbdb1e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a6af932f9f81ae675967cfbe.woff')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_1c4a4c507f1b676a91c1254c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.909180;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:-82.800000px;}
.v2{vertical-align:-81.360000px;}
.vf{vertical-align:-27.360000px;}
.v4{vertical-align:-14.400000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.280000px;}
.v3{vertical-align:27.360000px;}
.vb{vertical-align:33.840000px;}
.v8{vertical-align:48.240000px;}
.v7{vertical-align:51.840000px;}
.va{vertical-align:54.720000px;}
.vc{vertical-align:74.880000px;}
.ve{vertical-align:77.760000px;}
.v9{vertical-align:92.160000px;}
.vd{vertical-align:95.040000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls1d{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls9{letter-spacing:2.196000px;}
.ls13{letter-spacing:4.376880px;}
.ls8{letter-spacing:5.096880px;}
.ls12{letter-spacing:5.760000px;}
.ls11{letter-spacing:6.192000px;}
.lsd{letter-spacing:12.075840px;}
.ls10{letter-spacing:16.056000px;}
.ls14{letter-spacing:16.132320px;}
.lsf{letter-spacing:16.395840px;}
.lsb{letter-spacing:19.656000px;}
.lsa{letter-spacing:19.800000px;}
.lsc{letter-spacing:39.312000px;}
.lse{letter-spacing:128.936880px;}
.ls15{letter-spacing:129.656880px;}
.ls1a{letter-spacing:183.036000px;}
.ls4{letter-spacing:197.976000px;}
.ls1{letter-spacing:630.120000px;}
.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;}
}
.ws6{word-spacing:-72.288000px;}
.ws5{word-spacing:-72.000000px;}
.ws7{word-spacing:-51.120000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-0.059760px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-5.055360px;}
._13{margin-left:-3.880320px;}
._9{margin-left:-2.354880px;}
._0{margin-left:-1.314720px;}
._1{width:1.922880px;}
._2{width:3.531840px;}
._d{width:4.602720px;}
._c{width:5.904000px;}
._e{width:7.164960px;}
._b{width:9.000000px;}
._3{width:10.440000px;}
._8{width:11.880000px;}
._a{width:12.888000px;}
._16{width:14.472000px;}
._6{width:15.528000px;}
._7{width:16.872000px;}
._1c{width:19.296000px;}
._f{width:20.322720px;}
._10{width:21.394560px;}
._19{width:22.586880px;}
._4{width:24.048000px;}
._5{width:25.797120px;}
._20{width:27.018720px;}
._1a{width:28.632000px;}
._1b{width:29.880000px;}
._31{width:31.824000px;}
._1e{width:33.696000px;}
._1d{width:35.112000px;}
._23{width:36.299520px;}
._11{width:40.752000px;}
._12{width:42.015840px;}
._15{width:44.474400px;}
._14{width:45.666720px;}
._28{width:47.494080px;}
._1f{width:61.410720px;}
._25{width:67.488480px;}
._22{width:71.472960px;}
._27{width:78.229440px;}
._2f{width:79.421760px;}
._30{width:84.588480px;}
._2a{width:86.764320px;}
._2b{width:88.234560px;}
._2e{width:94.014720px;}
._24{width:108.888480px;}
._26{width:120.612960px;}
._2c{width:123.537600px;}
._21{width:134.533440px;}
._29{width:175.536000px;}
._18{width:197.976000px;}
._32{width:199.416000px;}
._2d{width:212.232960px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.600000px;}
.yad{bottom:3.945000px;}
.ya3{bottom:3.960000px;}
.y9a{bottom:4.140000px;}
.ya1{bottom:4.170000px;}
.ycf{bottom:9.540000px;}
.ycb{bottom:9.720000px;}
.yd1{bottom:10.440000px;}
.ycd{bottom:10.620000px;}
.yc9{bottom:16.560000px;}
.y95{bottom:22.725000px;}
.yac{bottom:23.025000px;}
.y99{bottom:23.040000px;}
.ya0{bottom:23.070000px;}
.yab{bottom:41.925000px;}
.y98{bottom:41.940000px;}
.y9f{bottom:41.970000px;}
.yc7{bottom:51.300000px;}
.y6{bottom:57.240000px;}
.ya6{bottom:60.840000px;}
.yaa{bottom:61.005000px;}
.y9c{bottom:61.020000px;}
.y9e{bottom:61.050000px;}
.y5{bottom:75.456000px;}
.ya9{bottom:79.905000px;}
.ya5{bottom:79.920000px;}
.ya8{bottom:98.805000px;}
.yb2{bottom:113.616000px;}
.y140{bottom:114.876000px;}
.y7d{bottom:118.656000px;}
.y175{bottom:120.096000px;}
.y62{bottom:121.356000px;}
.y33{bottom:122.076000px;}
.y18f{bottom:123.336000px;}
.y190{bottom:124.056000px;}
.y93{bottom:127.476000px;}
.y10a{bottom:128.916000px;}
.y125{bottom:129.456000px;}
.yb1{bottom:134.316000px;}
.y13f{bottom:135.576000px;}
.y7c{bottom:139.356000px;}
.y15b{bottom:140.616000px;}
.y174{bottom:140.796000px;}
.y61{bottom:142.056000px;}
.yc5{bottom:142.416000px;}
.y32{bottom:142.776000px;}
.y18e{bottom:144.036000px;}
.y1ba{bottom:147.456000px;}
.y92{bottom:148.176000px;}
.y109{bottom:149.616000px;}
.y124{bottom:150.150000px;}
.yef{bottom:151.230000px;}
.yb0{bottom:155.010000px;}
.y13e{bottom:156.270000px;}
.y7b{bottom:160.050000px;}
.y15a{bottom:161.310000px;}
.y173{bottom:161.490000px;}
.y60{bottom:162.750000px;}
.y31{bottom:163.470000px;}
.y18d{bottom:164.730000px;}
.y1b9{bottom:168.150000px;}
.y91{bottom:168.870000px;}
.y108{bottom:170.310000px;}
.y123{bottom:170.850000px;}
.yee{bottom:171.930000px;}
.yaf{bottom:175.350000px;}
.y13d{bottom:176.970000px;}
.y7a{bottom:180.750000px;}
.y159{bottom:182.010000px;}
.y172{bottom:182.190000px;}
.y5f{bottom:183.450000px;}
.y30{bottom:183.810000px;}
.yc4{bottom:184.170000px;}
.y18c{bottom:185.430000px;}
.y1b8{bottom:188.850000px;}
.y90{bottom:189.570000px;}
.y107{bottom:191.010000px;}
.y122{bottom:191.550000px;}
.yed{bottom:192.630000px;}
.yae{bottom:194.250000px;}
.y13c{bottom:197.670000px;}
.y79{bottom:201.450000px;}
.y158{bottom:202.710000px;}
.y171{bottom:202.890000px;}
.y5e{bottom:203.790000px;}
.y2f{bottom:204.870000px;}
.y18b{bottom:205.950000px;}
.y1b7{bottom:209.550000px;}
.y8f{bottom:210.270000px;}
.y106{bottom:211.710000px;}
.y121{bottom:212.250000px;}
.yec{bottom:213.330000px;}
.ya7{bottom:217.485000px;}
.y13b{bottom:218.370000px;}
.y78{bottom:222.150000px;}
.y157{bottom:223.410000px;}
.y170{bottom:223.590000px;}
.y5d{bottom:224.850000px;}
.y2e{bottom:225.570000px;}
.y18a{bottom:226.650000px;}
.y1b6{bottom:230.250000px;}
.y8e{bottom:230.970000px;}
.y105{bottom:232.410000px;}
.y120{bottom:232.950000px;}
.yeb{bottom:234.030000px;}
.y13a{bottom:239.070000px;}
.y77{bottom:242.850000px;}
.y156{bottom:244.110000px;}
.y16f{bottom:244.290000px;}
.y5c{bottom:245.550000px;}
.y2d{bottom:246.270000px;}
.y189{bottom:247.350000px;}
.y1b5{bottom:250.950000px;}
.y8d{bottom:251.670000px;}
.y104{bottom:253.110000px;}
.y11f{bottom:253.650000px;}
.yea{bottom:254.730000px;}
.y139{bottom:259.770000px;}
.y76{bottom:263.550000px;}
.y155{bottom:264.810000px;}
.y16e{bottom:264.990000px;}
.y5b{bottom:266.250000px;}
.y2c{bottom:266.970000px;}
.y188{bottom:268.050000px;}
.y1b4{bottom:271.650000px;}
.y8c{bottom:272.370000px;}
.y103{bottom:273.810000px;}
.y11e{bottom:274.350000px;}
.ye9{bottom:275.430000px;}
.y138{bottom:280.470000px;}
.y75{bottom:284.250000px;}
.y154{bottom:285.510000px;}
.y16d{bottom:285.690000px;}
.y5a{bottom:286.950000px;}
.y2b{bottom:287.310000px;}
.yc3{bottom:287.670000px;}
.y187{bottom:288.750000px;}
.y1b3{bottom:292.350000px;}
.y8b{bottom:292.530000px;}
.y102{bottom:294.510000px;}
.y11d{bottom:295.050000px;}
.ye8{bottom:296.130000px;}
.y137{bottom:301.170000px;}
.yb3{bottom:304.950000px;}
.y153{bottom:306.210000px;}
.y16c{bottom:306.390000px;}
.y59{bottom:307.650000px;}
.y2a{bottom:308.370000px;}
.y186{bottom:309.450000px;}
.y8a{bottom:310.890000px;}
.y1b2{bottom:313.050000px;}
.y101{bottom:315.210000px;}
.y11c{bottom:315.750000px;}
.ye7{bottom:316.830000px;}
.y136{bottom:321.870000px;}
.y74{bottom:325.650000px;}
.y152{bottom:326.910000px;}
.y16b{bottom:327.090000px;}
.y58{bottom:328.350000px;}
.y29{bottom:329.070000px;}
.y89{bottom:329.790000px;}
.y185{bottom:330.150000px;}
.y1b1{bottom:333.750000px;}
.y100{bottom:335.910000px;}
.y11b{bottom:336.495000px;}
.ye6{bottom:337.575000px;}
.y135{bottom:342.615000px;}
.y88{bottom:344.955000px;}
.y73{bottom:346.395000px;}
.y151{bottom:347.655000px;}
.y16a{bottom:347.835000px;}
.y57{bottom:349.095000px;}
.y28{bottom:349.815000px;}
.y184{bottom:350.895000px;}
.y1b0{bottom:354.495000px;}
.yff{bottom:356.655000px;}
.y11a{bottom:357.195000px;}
.ye5{bottom:358.275000px;}
.y134{bottom:363.315000px;}
.y72{bottom:367.095000px;}
.y150{bottom:368.355000px;}
.y169{bottom:368.535000px;}
.y56{bottom:369.795000px;}
.y27{bottom:370.515000px;}
.y183{bottom:371.595000px;}
.y1af{bottom:375.195000px;}
.yfe{bottom:377.355000px;}
.y119{bottom:377.895000px;}
.ye4{bottom:378.975000px;}
.y133{bottom:384.015000px;}
.y71{bottom:387.795000px;}
.y14f{bottom:389.055000px;}
.y168{bottom:389.235000px;}
.y55{bottom:390.495000px;}
.y26{bottom:391.215000px;}
.y182{bottom:392.295000px;}
.y1ae{bottom:395.895000px;}
.yfd{bottom:398.055000px;}
.y118{bottom:398.595000px;}
.ye3{bottom:399.675000px;}
.y132{bottom:404.715000px;}
.y70{bottom:408.495000px;}
.y14e{bottom:409.755000px;}
.y167{bottom:409.935000px;}
.y54{bottom:411.195000px;}
.y25{bottom:411.555000px;}
.yc2{bottom:411.915000px;}
.y181{bottom:412.995000px;}
.y1ad{bottom:416.595000px;}
.yfc{bottom:418.755000px;}
.y117{bottom:419.295000px;}
.ye2{bottom:420.375000px;}
.y131{bottom:425.415000px;}
.y6f{bottom:429.195000px;}
.y14d{bottom:430.455000px;}
.y166{bottom:430.635000px;}
.y53{bottom:431.895000px;}
.y24{bottom:432.615000px;}
.y180{bottom:433.695000px;}
.y1ac{bottom:437.295000px;}
.yfb{bottom:439.455000px;}
.y116{bottom:439.995000px;}
.ye1{bottom:441.075000px;}
.y130{bottom:446.475000px;}
.y6e{bottom:449.895000px;}
.y14c{bottom:451.155000px;}
.y165{bottom:451.335000px;}
.y52{bottom:452.595000px;}
.y23{bottom:453.315000px;}
.y17f{bottom:454.395000px;}
.ya4{bottom:456.195000px;}
.y1ab{bottom:457.995000px;}
.yfa{bottom:460.155000px;}
.y115{bottom:460.695000px;}
.ye0{bottom:461.775000px;}
.y12f{bottom:467.175000px;}
.y6d{bottom:470.595000px;}
.y164{bottom:472.035000px;}
.y14b{bottom:472.215000px;}
.y51{bottom:473.295000px;}
.y22{bottom:474.015000px;}
.y17e{bottom:475.095000px;}
.y1aa{bottom:478.695000px;}
.yf9{bottom:480.855000px;}
.y114{bottom:481.395000px;}
.y177{bottom:481.755000px;}
.ydf{bottom:482.475000px;}
.y12e{bottom:487.875000px;}
.y6c{bottom:491.295000px;}
.y14a{bottom:492.915000px;}
.y163{bottom:493.095000px;}
.y50{bottom:493.995000px;}
.y21{bottom:494.715000px;}
.y17d{bottom:495.795000px;}
.y1a9{bottom:499.395000px;}
.yf8{bottom:501.915000px;}
.y113{bottom:502.095000px;}
.y176{bottom:502.455000px;}
.yde{bottom:503.175000px;}
.y12d{bottom:508.575000px;}
.y6b{bottom:511.995000px;}
.y149{bottom:513.615000px;}
.y162{bottom:513.795000px;}
.y4f{bottom:514.695000px;}
.y20{bottom:515.055000px;}
.yc1{bottom:515.415000px;}
.y17c{bottom:516.495000px;}
.y1a8{bottom:520.095000px;}
.yf7{bottom:522.615000px;}
.y112{bottom:523.155000px;}
.ydd{bottom:524.235000px;}
.ya2{bottom:528.195000px;}
.y12c{bottom:529.275000px;}
.y6a{bottom:532.695000px;}
.y148{bottom:534.315000px;}
.y161{bottom:534.495000px;}
.y4e{bottom:535.395000px;}
.y1f{bottom:536.115000px;}
.y1a7{bottom:540.795000px;}
.yf6{bottom:543.315000px;}
.y111{bottom:543.855000px;}
.ydc{bottom:544.935000px;}
.y12b{bottom:549.975000px;}
.y69{bottom:553.395000px;}
.y17b{bottom:554.835000px;}
.y147{bottom:555.015000px;}
.y160{bottom:555.195000px;}
.y4d{bottom:555.735000px;}
.y1e{bottom:556.815000px;}
.y1a6{bottom:561.495000px;}
.yf5{bottom:564.015000px;}
.y110{bottom:564.555000px;}
.ydb{bottom:565.635000px;}
.y12a{bottom:570.675000px;}
.y1bd{bottom:572.295000px;}
.y68{bottom:574.095000px;}
.yc0{bottom:574.815000px;}
.y146{bottom:575.715000px;}
.y15f{bottom:575.895000px;}
.y4c{bottom:576.435000px;}
.y1d{bottom:577.515000px;}
.y1a5{bottom:582.195000px;}
.yf4{bottom:584.715000px;}
.y10f{bottom:585.255000px;}
.yda{bottom:586.335000px;}
.y129{bottom:591.375000px;}
.y1bc{bottom:592.995000px;}
.y17a{bottom:593.535000px;}
.y67{bottom:594.795000px;}
.ybf{bottom:595.515000px;}
.y145{bottom:596.415000px;}
.y15e{bottom:596.595000px;}
.y4b{bottom:597.135000px;}
.y1c{bottom:598.215000px;}
.y9d{bottom:600.015000px;}
.y1a4{bottom:602.895000px;}
.yf3{bottom:605.445000px;}
.y10e{bottom:605.985000px;}
.yd9{bottom:607.065000px;}
.y128{bottom:612.105000px;}
.y179{bottom:612.465000px;}
.y66{bottom:615.525000px;}
.ybe{bottom:616.245000px;}
.y15d{bottom:616.785000px;}
.y144{bottom:617.145000px;}
.y1bb{bottom:617.865000px;}
.y4a{bottom:618.225000px;}
.y1b{bottom:618.945000px;}
.y1a3{bottom:623.625000px;}
.yf2{bottom:626.145000px;}
.y10d{bottom:626.685000px;}
.y178{bottom:627.405000px;}
.yd8{bottom:627.765000px;}
.y15c{bottom:631.725000px;}
.y127{bottom:632.445000px;}
.y65{bottom:636.225000px;}
.ybd{bottom:636.945000px;}
.y143{bottom:637.845000px;}
.y1a{bottom:639.285000px;}
.y1a2{bottom:644.325000px;}
.yf1{bottom:646.305000px;}
.y10c{bottom:646.845000px;}
.y126{bottom:647.385000px;}
.yd7{bottom:648.465000px;}
.y49{bottom:656.925000px;}
.y142{bottom:658.005000px;}
.y19{bottom:660.345000px;}
.yf0{bottom:661.245000px;}
.y10b{bottom:661.785000px;}
.y1a1{bottom:665.025000px;}
.yd6{bottom:668.625000px;}
.y141{bottom:672.945000px;}
.ybc{bottom:675.285000px;}
.y48{bottom:677.625000px;}
.y18{bottom:681.045000px;}
.y1a0{bottom:685.725000px;}
.yd5{bottom:687.705000px;}
.y9b{bottom:690.945000px;}
.ybb{bottom:696.345000px;}
.y47{bottom:698.325000px;}
.y17{bottom:701.745000px;}
.y19f{bottom:706.425000px;}
.yd4{bottom:710.925000px;}
.yba{bottom:717.045000px;}
.y46{bottom:719.025000px;}
.y16{bottom:722.445000px;}
.y19e{bottom:727.125000px;}
.yb9{bottom:737.745000px;}
.y45{bottom:739.725000px;}
.y15{bottom:743.145000px;}
.y19d{bottom:747.825000px;}
.yd3{bottom:750.525000px;}
.yb8{bottom:758.445000px;}
.y44{bottom:760.425000px;}
.y14{bottom:763.485000px;}
.y87{bottom:765.825000px;}
.y19c{bottom:768.525000px;}
.yb6{bottom:776.625000px;}
.y43{bottom:781.125000px;}
.y97{bottom:781.845000px;}
.y13{bottom:784.545000px;}
.y86{bottom:786.525000px;}
.yb5{bottom:787.605000px;}
.y19b{bottom:789.225000px;}
.yd2{bottom:791.025000px;}
.yb4{bottom:799.665000px;}
.y42{bottom:801.825000px;}
.y12{bottom:805.245000px;}
.y85{bottom:807.225000px;}
.y19a{bottom:809.925000px;}
.y41{bottom:822.525000px;}
.y11{bottom:825.945000px;}
.yb7{bottom:826.305000px;}
.y84{bottom:827.925000px;}
.yd0{bottom:830.625000px;}
.y40{bottom:843.225000px;}
.y10{bottom:846.645000px;}
.y199{bottom:848.265000px;}
.y83{bottom:848.625000px;}
.y94{bottom:854.565000px;}
.y3f{bottom:863.925000px;}
.yf{bottom:867.345000px;}
.y82{bottom:869.325000px;}
.yce{bottom:871.170000px;}
.y3e{bottom:884.670000px;}
.y198{bottom:887.370000px;}
.y81{bottom:890.070000px;}
.y3d{bottom:905.370000px;}
.y197{bottom:908.070000px;}
.ye{bottom:908.430000px;}
.ycc{bottom:910.590000px;}
.y80{bottom:910.770000px;}
.y3c{bottom:926.070000px;}
.y196{bottom:928.770000px;}
.yd{bottom:929.130000px;}
.y3b{bottom:946.770000px;}
.y7f{bottom:949.470000px;}
.yc{bottom:950.370000px;}
.yca{bottom:951.090000px;}
.y3a{bottom:967.470000px;}
.y195{bottom:970.170000px;}
.yb{bottom:974.490000px;}
.y39{bottom:987.810000px;}
.y64{bottom:988.170000px;}
.y194{bottom:990.870000px;}
.yc6{bottom:991.590000px;}
.ya{bottom:998.070000px;}
.y38{bottom:1008.870000px;}
.y193{bottom:1011.390000px;}
.y9{bottom:1020.570000px;}
.yc8{bottom:1026.330000px;}
.y37{bottom:1029.390000px;}
.y192{bottom:1032.090000px;}
.y36{bottom:1050.090000px;}
.y8{bottom:1051.710000px;}
.y191{bottom:1052.790000px;}
.y63{bottom:1070.430000px;}
.y35{bottom:1070.790000px;}
.y7{bottom:1082.670000px;}
.y34{bottom:1091.130000px;}
.y7e{bottom:1091.490000px;}
.y4{bottom:1112.190000px;}
.y3{bottom:1133.790000px;}
.y2{bottom:1152.540000px;}
.y1{bottom:1171.080000px;}
.h1d{height:18.885000px;}
.h20{height:24.465000px;}
.h22{height:24.480000px;}
.h1e{height:24.645000px;}
.h21{height:25.380000px;}
.h1f{height:25.545000px;}
.h1c{height:31.845000px;}
.he{height:38.002500px;}
.hd{height:39.049805px;}
.h3{height:43.215117px;}
.h12{height:56.865000px;}
.hf{height:56.880000px;}
.h2{height:58.651172px;}
.h4{height:62.327813px;}
.h19{height:63.400781px;}
.hc{height:65.010937px;}
.h1b{height:66.585000px;}
.hb{height:66.757500px;}
.ha{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h9{height:74.704922px;}
.h10{height:75.960000px;}
.h11{height:75.990000px;}
.h7{height:84.898125px;}
.h13{height:94.845000px;}
.h5{height:108.843750px;}
.h14{height:113.745000px;}
.h16{height:137.536875px;}
.h18{height:140.416875px;}
.h15{height:144.016875px;}
.h1a{height:184.336875px;}
.h17{height:236.176875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:65.520000px;}
.wd{width:65.556000px;}
.we{width:69.645000px;}
.w3{width:69.681000px;}
.w10{width:72.525000px;}
.wf{width:72.741000px;}
.w7{width:98.265000px;}
.w2{width:107.811000px;}
.w5{width:108.036000px;}
.w4{width:125.100000px;}
.w6{width:128.901000px;}
.w9{width:131.076000px;}
.wa{width:139.305000px;}
.wb{width:145.281000px;}
.w8{width:222.141000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.371000px;}
.x2b{left:8.640000px;}
.x2{left:127.656000px;}
.x5{left:130.356000px;}
.x1c{left:138.816000px;}
.x8{left:153.030000px;}
.x23{left:154.650000px;}
.x4{left:160.410000px;}
.x1f{left:162.390000px;}
.x22{left:181.650000px;}
.x19{left:185.970000px;}
.x9{left:201.090000px;}
.x26{left:235.485000px;}
.x2c{left:249.330000px;}
.xa{left:263.730000px;}
.x1{left:277.230000px;}
.x27{left:305.175000px;}
.x2d{left:321.015000px;}
.x32{left:349.815000px;}
.x2e{left:377.535000px;}
.x14{left:381.495000px;}
.x6{left:398.595000px;}
.x35{left:415.335000px;}
.x17{left:427.395000px;}
.x28{left:430.275000px;}
.x21{left:435.855000px;}
.xb{left:439.455000px;}
.x2f{left:440.535000px;}
.x7{left:446.475000px;}
.xc{left:478.905000px;}
.x33{left:480.900000px;}
.x10{left:482.865000px;}
.x1e{left:484.485000px;}
.x13{left:489.705000px;}
.x1d{left:494.925000px;}
.x1b{left:503.925000px;}
.x12{left:508.965000px;}
.xf{left:510.405000px;}
.x15{left:535.425000px;}
.x30{left:537.045000px;}
.x29{left:538.320000px;}
.x31{left:542.985000px;}
.x36{left:550.560000px;}
.xd{left:593.385000px;}
.x18{left:595.905000px;}
.x11{left:599.865000px;}
.x20{left:602.925000px;}
.x34{left:620.220000px;}
.x1a{left:622.365000px;}
.x16{left:662.910000px;}
.x2a{left:667.230000px;}
.x37{left:692.970000px;}
.x38{left:750.570000px;}
.x3{left:757.950000px;}
.xe{left:765.510000px;}
.x24{left:769.650000px;}
.x3c{left:773.970000px;}
.x39{left:777.930000px;}
.x3b{left:780.810000px;}
.x3a{left:783.330000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-72.320000pt;}
.vf{vertical-align:-24.320000pt;}
.v4{vertical-align:-12.800000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.360000pt;}
.v3{vertical-align:24.320000pt;}
.vb{vertical-align:30.080000pt;}
.v8{vertical-align:42.880000pt;}
.v7{vertical-align:46.080000pt;}
.va{vertical-align:48.640000pt;}
.vc{vertical-align:66.560000pt;}
.ve{vertical-align:69.120000pt;}
.v9{vertical-align:81.920000pt;}
.vd{vertical-align:84.480000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls9{letter-spacing:1.952000pt;}
.ls13{letter-spacing:3.890560pt;}
.ls8{letter-spacing:4.530560pt;}
.ls12{letter-spacing:5.120000pt;}
.ls11{letter-spacing:5.504000pt;}
.lsd{letter-spacing:10.734080pt;}
.ls10{letter-spacing:14.272000pt;}
.ls14{letter-spacing:14.339840pt;}
.lsf{letter-spacing:14.574080pt;}
.lsb{letter-spacing:17.472000pt;}
.lsa{letter-spacing:17.600000pt;}
.lsc{letter-spacing:34.944000pt;}
.lse{letter-spacing:114.610560pt;}
.ls15{letter-spacing:115.250560pt;}
.ls1a{letter-spacing:162.698667pt;}
.ls4{letter-spacing:175.978667pt;}
.ls1{letter-spacing:560.106667pt;}
.ws6{word-spacing:-64.256000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws7{word-spacing:-45.440000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-0.053120pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-4.493653pt;}
._13{margin-left:-3.449173pt;}
._9{margin-left:-2.093227pt;}
._0{margin-left:-1.168640pt;}
._1{width:1.709227pt;}
._2{width:3.139413pt;}
._d{width:4.091307pt;}
._c{width:5.248000pt;}
._e{width:6.368853pt;}
._b{width:8.000000pt;}
._3{width:9.280000pt;}
._8{width:10.560000pt;}
._a{width:11.456000pt;}
._16{width:12.864000pt;}
._6{width:13.802667pt;}
._7{width:14.997333pt;}
._1c{width:17.152000pt;}
._f{width:18.064640pt;}
._10{width:19.017387pt;}
._19{width:20.077227pt;}
._4{width:21.376000pt;}
._5{width:22.930773pt;}
._20{width:24.016640pt;}
._1a{width:25.450667pt;}
._1b{width:26.560000pt;}
._31{width:28.288000pt;}
._1e{width:29.952000pt;}
._1d{width:31.210667pt;}
._23{width:32.266240pt;}
._11{width:36.224000pt;}
._12{width:37.347413pt;}
._15{width:39.532800pt;}
._14{width:40.592640pt;}
._28{width:42.216960pt;}
._1f{width:54.587307pt;}
._25{width:59.989760pt;}
._22{width:63.531520pt;}
._27{width:69.537280pt;}
._2f{width:70.597120pt;}
._30{width:75.189760pt;}
._2a{width:77.123840pt;}
._2b{width:78.430720pt;}
._2e{width:83.568640pt;}
._24{width:96.789760pt;}
._26{width:107.211520pt;}
._2c{width:109.811200pt;}
._21{width:119.585280pt;}
._29{width:156.032000pt;}
._18{width:175.978667pt;}
._32{width:177.258667pt;}
._2d{width:188.651520pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:3.200000pt;}
.yad{bottom:3.506667pt;}
.ya3{bottom:3.520000pt;}
.y9a{bottom:3.680000pt;}
.ya1{bottom:3.706667pt;}
.ycf{bottom:8.480000pt;}
.ycb{bottom:8.640000pt;}
.yd1{bottom:9.280000pt;}
.ycd{bottom:9.440000pt;}
.yc9{bottom:14.720000pt;}
.y95{bottom:20.200000pt;}
.yac{bottom:20.466667pt;}
.y99{bottom:20.480000pt;}
.ya0{bottom:20.506667pt;}
.yab{bottom:37.266667pt;}
.y98{bottom:37.280000pt;}
.y9f{bottom:37.306667pt;}
.yc7{bottom:45.600000pt;}
.y6{bottom:50.880000pt;}
.ya6{bottom:54.080000pt;}
.yaa{bottom:54.226667pt;}
.y9c{bottom:54.240000pt;}
.y9e{bottom:54.266667pt;}
.y5{bottom:67.072000pt;}
.ya9{bottom:71.026667pt;}
.ya5{bottom:71.040000pt;}
.ya8{bottom:87.826667pt;}
.yb2{bottom:100.992000pt;}
.y140{bottom:102.112000pt;}
.y7d{bottom:105.472000pt;}
.y175{bottom:106.752000pt;}
.y62{bottom:107.872000pt;}
.y33{bottom:108.512000pt;}
.y18f{bottom:109.632000pt;}
.y190{bottom:110.272000pt;}
.y93{bottom:113.312000pt;}
.y10a{bottom:114.592000pt;}
.y125{bottom:115.072000pt;}
.yb1{bottom:119.392000pt;}
.y13f{bottom:120.512000pt;}
.y7c{bottom:123.872000pt;}
.y15b{bottom:124.992000pt;}
.y174{bottom:125.152000pt;}
.y61{bottom:126.272000pt;}
.yc5{bottom:126.592000pt;}
.y32{bottom:126.912000pt;}
.y18e{bottom:128.032000pt;}
.y1ba{bottom:131.072000pt;}
.y92{bottom:131.712000pt;}
.y109{bottom:132.992000pt;}
.y124{bottom:133.466667pt;}
.yef{bottom:134.426667pt;}
.yb0{bottom:137.786667pt;}
.y13e{bottom:138.906667pt;}
.y7b{bottom:142.266667pt;}
.y15a{bottom:143.386667pt;}
.y173{bottom:143.546667pt;}
.y60{bottom:144.666667pt;}
.y31{bottom:145.306667pt;}
.y18d{bottom:146.426667pt;}
.y1b9{bottom:149.466667pt;}
.y91{bottom:150.106667pt;}
.y108{bottom:151.386667pt;}
.y123{bottom:151.866667pt;}
.yee{bottom:152.826667pt;}
.yaf{bottom:155.866667pt;}
.y13d{bottom:157.306667pt;}
.y7a{bottom:160.666667pt;}
.y159{bottom:161.786667pt;}
.y172{bottom:161.946667pt;}
.y5f{bottom:163.066667pt;}
.y30{bottom:163.386667pt;}
.yc4{bottom:163.706667pt;}
.y18c{bottom:164.826667pt;}
.y1b8{bottom:167.866667pt;}
.y90{bottom:168.506667pt;}
.y107{bottom:169.786667pt;}
.y122{bottom:170.266667pt;}
.yed{bottom:171.226667pt;}
.yae{bottom:172.666667pt;}
.y13c{bottom:175.706667pt;}
.y79{bottom:179.066667pt;}
.y158{bottom:180.186667pt;}
.y171{bottom:180.346667pt;}
.y5e{bottom:181.146667pt;}
.y2f{bottom:182.106667pt;}
.y18b{bottom:183.066667pt;}
.y1b7{bottom:186.266667pt;}
.y8f{bottom:186.906667pt;}
.y106{bottom:188.186667pt;}
.y121{bottom:188.666667pt;}
.yec{bottom:189.626667pt;}
.ya7{bottom:193.320000pt;}
.y13b{bottom:194.106667pt;}
.y78{bottom:197.466667pt;}
.y157{bottom:198.586667pt;}
.y170{bottom:198.746667pt;}
.y5d{bottom:199.866667pt;}
.y2e{bottom:200.506667pt;}
.y18a{bottom:201.466667pt;}
.y1b6{bottom:204.666667pt;}
.y8e{bottom:205.306667pt;}
.y105{bottom:206.586667pt;}
.y120{bottom:207.066667pt;}
.yeb{bottom:208.026667pt;}
.y13a{bottom:212.506667pt;}
.y77{bottom:215.866667pt;}
.y156{bottom:216.986667pt;}
.y16f{bottom:217.146667pt;}
.y5c{bottom:218.266667pt;}
.y2d{bottom:218.906667pt;}
.y189{bottom:219.866667pt;}
.y1b5{bottom:223.066667pt;}
.y8d{bottom:223.706667pt;}
.y104{bottom:224.986667pt;}
.y11f{bottom:225.466667pt;}
.yea{bottom:226.426667pt;}
.y139{bottom:230.906667pt;}
.y76{bottom:234.266667pt;}
.y155{bottom:235.386667pt;}
.y16e{bottom:235.546667pt;}
.y5b{bottom:236.666667pt;}
.y2c{bottom:237.306667pt;}
.y188{bottom:238.266667pt;}
.y1b4{bottom:241.466667pt;}
.y8c{bottom:242.106667pt;}
.y103{bottom:243.386667pt;}
.y11e{bottom:243.866667pt;}
.ye9{bottom:244.826667pt;}
.y138{bottom:249.306667pt;}
.y75{bottom:252.666667pt;}
.y154{bottom:253.786667pt;}
.y16d{bottom:253.946667pt;}
.y5a{bottom:255.066667pt;}
.y2b{bottom:255.386667pt;}
.yc3{bottom:255.706667pt;}
.y187{bottom:256.666667pt;}
.y1b3{bottom:259.866667pt;}
.y8b{bottom:260.026667pt;}
.y102{bottom:261.786667pt;}
.y11d{bottom:262.266667pt;}
.ye8{bottom:263.226667pt;}
.y137{bottom:267.706667pt;}
.yb3{bottom:271.066667pt;}
.y153{bottom:272.186667pt;}
.y16c{bottom:272.346667pt;}
.y59{bottom:273.466667pt;}
.y2a{bottom:274.106667pt;}
.y186{bottom:275.066667pt;}
.y8a{bottom:276.346667pt;}
.y1b2{bottom:278.266667pt;}
.y101{bottom:280.186667pt;}
.y11c{bottom:280.666667pt;}
.ye7{bottom:281.626667pt;}
.y136{bottom:286.106667pt;}
.y74{bottom:289.466667pt;}
.y152{bottom:290.586667pt;}
.y16b{bottom:290.746667pt;}
.y58{bottom:291.866667pt;}
.y29{bottom:292.506667pt;}
.y89{bottom:293.146667pt;}
.y185{bottom:293.466667pt;}
.y1b1{bottom:296.666667pt;}
.y100{bottom:298.586667pt;}
.y11b{bottom:299.106667pt;}
.ye6{bottom:300.066667pt;}
.y135{bottom:304.546667pt;}
.y88{bottom:306.626667pt;}
.y73{bottom:307.906667pt;}
.y151{bottom:309.026667pt;}
.y16a{bottom:309.186667pt;}
.y57{bottom:310.306667pt;}
.y28{bottom:310.946667pt;}
.y184{bottom:311.906667pt;}
.y1b0{bottom:315.106667pt;}
.yff{bottom:317.026667pt;}
.y11a{bottom:317.506667pt;}
.ye5{bottom:318.466667pt;}
.y134{bottom:322.946667pt;}
.y72{bottom:326.306667pt;}
.y150{bottom:327.426667pt;}
.y169{bottom:327.586667pt;}
.y56{bottom:328.706667pt;}
.y27{bottom:329.346667pt;}
.y183{bottom:330.306667pt;}
.y1af{bottom:333.506667pt;}
.yfe{bottom:335.426667pt;}
.y119{bottom:335.906667pt;}
.ye4{bottom:336.866667pt;}
.y133{bottom:341.346667pt;}
.y71{bottom:344.706667pt;}
.y14f{bottom:345.826667pt;}
.y168{bottom:345.986667pt;}
.y55{bottom:347.106667pt;}
.y26{bottom:347.746667pt;}
.y182{bottom:348.706667pt;}
.y1ae{bottom:351.906667pt;}
.yfd{bottom:353.826667pt;}
.y118{bottom:354.306667pt;}
.ye3{bottom:355.266667pt;}
.y132{bottom:359.746667pt;}
.y70{bottom:363.106667pt;}
.y14e{bottom:364.226667pt;}
.y167{bottom:364.386667pt;}
.y54{bottom:365.506667pt;}
.y25{bottom:365.826667pt;}
.yc2{bottom:366.146667pt;}
.y181{bottom:367.106667pt;}
.y1ad{bottom:370.306667pt;}
.yfc{bottom:372.226667pt;}
.y117{bottom:372.706667pt;}
.ye2{bottom:373.666667pt;}
.y131{bottom:378.146667pt;}
.y6f{bottom:381.506667pt;}
.y14d{bottom:382.626667pt;}
.y166{bottom:382.786667pt;}
.y53{bottom:383.906667pt;}
.y24{bottom:384.546667pt;}
.y180{bottom:385.506667pt;}
.y1ac{bottom:388.706667pt;}
.yfb{bottom:390.626667pt;}
.y116{bottom:391.106667pt;}
.ye1{bottom:392.066667pt;}
.y130{bottom:396.866667pt;}
.y6e{bottom:399.906667pt;}
.y14c{bottom:401.026667pt;}
.y165{bottom:401.186667pt;}
.y52{bottom:402.306667pt;}
.y23{bottom:402.946667pt;}
.y17f{bottom:403.906667pt;}
.ya4{bottom:405.506667pt;}
.y1ab{bottom:407.106667pt;}
.yfa{bottom:409.026667pt;}
.y115{bottom:409.506667pt;}
.ye0{bottom:410.466667pt;}
.y12f{bottom:415.266667pt;}
.y6d{bottom:418.306667pt;}
.y164{bottom:419.586667pt;}
.y14b{bottom:419.746667pt;}
.y51{bottom:420.706667pt;}
.y22{bottom:421.346667pt;}
.y17e{bottom:422.306667pt;}
.y1aa{bottom:425.506667pt;}
.yf9{bottom:427.426667pt;}
.y114{bottom:427.906667pt;}
.y177{bottom:428.226667pt;}
.ydf{bottom:428.866667pt;}
.y12e{bottom:433.666667pt;}
.y6c{bottom:436.706667pt;}
.y14a{bottom:438.146667pt;}
.y163{bottom:438.306667pt;}
.y50{bottom:439.106667pt;}
.y21{bottom:439.746667pt;}
.y17d{bottom:440.706667pt;}
.y1a9{bottom:443.906667pt;}
.yf8{bottom:446.146667pt;}
.y113{bottom:446.306667pt;}
.y176{bottom:446.626667pt;}
.yde{bottom:447.266667pt;}
.y12d{bottom:452.066667pt;}
.y6b{bottom:455.106667pt;}
.y149{bottom:456.546667pt;}
.y162{bottom:456.706667pt;}
.y4f{bottom:457.506667pt;}
.y20{bottom:457.826667pt;}
.yc1{bottom:458.146667pt;}
.y17c{bottom:459.106667pt;}
.y1a8{bottom:462.306667pt;}
.yf7{bottom:464.546667pt;}
.y112{bottom:465.026667pt;}
.ydd{bottom:465.986667pt;}
.ya2{bottom:469.506667pt;}
.y12c{bottom:470.466667pt;}
.y6a{bottom:473.506667pt;}
.y148{bottom:474.946667pt;}
.y161{bottom:475.106667pt;}
.y4e{bottom:475.906667pt;}
.y1f{bottom:476.546667pt;}
.y1a7{bottom:480.706667pt;}
.yf6{bottom:482.946667pt;}
.y111{bottom:483.426667pt;}
.ydc{bottom:484.386667pt;}
.y12b{bottom:488.866667pt;}
.y69{bottom:491.906667pt;}
.y17b{bottom:493.186667pt;}
.y147{bottom:493.346667pt;}
.y160{bottom:493.506667pt;}
.y4d{bottom:493.986667pt;}
.y1e{bottom:494.946667pt;}
.y1a6{bottom:499.106667pt;}
.yf5{bottom:501.346667pt;}
.y110{bottom:501.826667pt;}
.ydb{bottom:502.786667pt;}
.y12a{bottom:507.266667pt;}
.y1bd{bottom:508.706667pt;}
.y68{bottom:510.306667pt;}
.yc0{bottom:510.946667pt;}
.y146{bottom:511.746667pt;}
.y15f{bottom:511.906667pt;}
.y4c{bottom:512.386667pt;}
.y1d{bottom:513.346667pt;}
.y1a5{bottom:517.506667pt;}
.yf4{bottom:519.746667pt;}
.y10f{bottom:520.226667pt;}
.yda{bottom:521.186667pt;}
.y129{bottom:525.666667pt;}
.y1bc{bottom:527.106667pt;}
.y17a{bottom:527.586667pt;}
.y67{bottom:528.706667pt;}
.ybf{bottom:529.346667pt;}
.y145{bottom:530.146667pt;}
.y15e{bottom:530.306667pt;}
.y4b{bottom:530.786667pt;}
.y1c{bottom:531.746667pt;}
.y9d{bottom:533.346667pt;}
.y1a4{bottom:535.906667pt;}
.yf3{bottom:538.173333pt;}
.y10e{bottom:538.653333pt;}
.yd9{bottom:539.613333pt;}
.y128{bottom:544.093333pt;}
.y179{bottom:544.413333pt;}
.y66{bottom:547.133333pt;}
.ybe{bottom:547.773333pt;}
.y15d{bottom:548.253333pt;}
.y144{bottom:548.573333pt;}
.y1bb{bottom:549.213333pt;}
.y4a{bottom:549.533333pt;}
.y1b{bottom:550.173333pt;}
.y1a3{bottom:554.333333pt;}
.yf2{bottom:556.573333pt;}
.y10d{bottom:557.053333pt;}
.y178{bottom:557.693333pt;}
.yd8{bottom:558.013333pt;}
.y15c{bottom:561.533333pt;}
.y127{bottom:562.173333pt;}
.y65{bottom:565.533333pt;}
.ybd{bottom:566.173333pt;}
.y143{bottom:566.973333pt;}
.y1a{bottom:568.253333pt;}
.y1a2{bottom:572.733333pt;}
.yf1{bottom:574.493333pt;}
.y10c{bottom:574.973333pt;}
.y126{bottom:575.453333pt;}
.yd7{bottom:576.413333pt;}
.y49{bottom:583.933333pt;}
.y142{bottom:584.893333pt;}
.y19{bottom:586.973333pt;}
.yf0{bottom:587.773333pt;}
.y10b{bottom:588.253333pt;}
.y1a1{bottom:591.133333pt;}
.yd6{bottom:594.333333pt;}
.y141{bottom:598.173333pt;}
.ybc{bottom:600.253333pt;}
.y48{bottom:602.333333pt;}
.y18{bottom:605.373333pt;}
.y1a0{bottom:609.533333pt;}
.yd5{bottom:611.293333pt;}
.y9b{bottom:614.173333pt;}
.ybb{bottom:618.973333pt;}
.y47{bottom:620.733333pt;}
.y17{bottom:623.773333pt;}
.y19f{bottom:627.933333pt;}
.yd4{bottom:631.933333pt;}
.yba{bottom:637.373333pt;}
.y46{bottom:639.133333pt;}
.y16{bottom:642.173333pt;}
.y19e{bottom:646.333333pt;}
.yb9{bottom:655.773333pt;}
.y45{bottom:657.533333pt;}
.y15{bottom:660.573333pt;}
.y19d{bottom:664.733333pt;}
.yd3{bottom:667.133333pt;}
.yb8{bottom:674.173333pt;}
.y44{bottom:675.933333pt;}
.y14{bottom:678.653333pt;}
.y87{bottom:680.733333pt;}
.y19c{bottom:683.133333pt;}
.yb6{bottom:690.333333pt;}
.y43{bottom:694.333333pt;}
.y97{bottom:694.973333pt;}
.y13{bottom:697.373333pt;}
.y86{bottom:699.133333pt;}
.yb5{bottom:700.093333pt;}
.y19b{bottom:701.533333pt;}
.yd2{bottom:703.133333pt;}
.yb4{bottom:710.813333pt;}
.y42{bottom:712.733333pt;}
.y12{bottom:715.773333pt;}
.y85{bottom:717.533333pt;}
.y19a{bottom:719.933333pt;}
.y41{bottom:731.133333pt;}
.y11{bottom:734.173333pt;}
.yb7{bottom:734.493333pt;}
.y84{bottom:735.933333pt;}
.yd0{bottom:738.333333pt;}
.y40{bottom:749.533333pt;}
.y10{bottom:752.573333pt;}
.y199{bottom:754.013333pt;}
.y83{bottom:754.333333pt;}
.y94{bottom:759.613333pt;}
.y3f{bottom:767.933333pt;}
.yf{bottom:770.973333pt;}
.y82{bottom:772.733333pt;}
.yce{bottom:774.373333pt;}
.y3e{bottom:786.373333pt;}
.y198{bottom:788.773333pt;}
.y81{bottom:791.173333pt;}
.y3d{bottom:804.773333pt;}
.y197{bottom:807.173333pt;}
.ye{bottom:807.493333pt;}
.ycc{bottom:809.413333pt;}
.y80{bottom:809.573333pt;}
.y3c{bottom:823.173333pt;}
.y196{bottom:825.573333pt;}
.yd{bottom:825.893333pt;}
.y3b{bottom:841.573333pt;}
.y7f{bottom:843.973333pt;}
.yc{bottom:844.773333pt;}
.yca{bottom:845.413333pt;}
.y3a{bottom:859.973333pt;}
.y195{bottom:862.373333pt;}
.yb{bottom:866.213333pt;}
.y39{bottom:878.053333pt;}
.y64{bottom:878.373333pt;}
.y194{bottom:880.773333pt;}
.yc6{bottom:881.413333pt;}
.ya{bottom:887.173333pt;}
.y38{bottom:896.773333pt;}
.y193{bottom:899.013333pt;}
.y9{bottom:907.173333pt;}
.yc8{bottom:912.293333pt;}
.y37{bottom:915.013333pt;}
.y192{bottom:917.413333pt;}
.y36{bottom:933.413333pt;}
.y8{bottom:934.853333pt;}
.y191{bottom:935.813333pt;}
.y63{bottom:951.493333pt;}
.y35{bottom:951.813333pt;}
.y7{bottom:962.373333pt;}
.y34{bottom:969.893333pt;}
.y7e{bottom:970.213333pt;}
.y4{bottom:988.613333pt;}
.y3{bottom:1007.813333pt;}
.y2{bottom:1024.480000pt;}
.y1{bottom:1040.960000pt;}
.h1d{height:16.786667pt;}
.h20{height:21.746667pt;}
.h22{height:21.760000pt;}
.h1e{height:21.906667pt;}
.h21{height:22.560000pt;}
.h1f{height:22.706667pt;}
.h1c{height:28.306667pt;}
.he{height:33.780000pt;}
.hd{height:34.710938pt;}
.h3{height:38.413438pt;}
.h12{height:50.546667pt;}
.hf{height:50.560000pt;}
.h2{height:52.134375pt;}
.h4{height:55.402500pt;}
.h19{height:56.356250pt;}
.hc{height:57.787500pt;}
.h1b{height:59.186667pt;}
.hb{height:59.340000pt;}
.ha{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h9{height:66.404375pt;}
.h10{height:67.520000pt;}
.h11{height:67.546667pt;}
.h7{height:75.465000pt;}
.h13{height:84.306667pt;}
.h5{height:96.750000pt;}
.h14{height:101.106667pt;}
.h16{height:122.255000pt;}
.h18{height:124.815000pt;}
.h15{height:128.015000pt;}
.h1a{height:163.855000pt;}
.h17{height:209.935000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:58.240000pt;}
.wd{width:58.272000pt;}
.we{width:61.906667pt;}
.w3{width:61.938667pt;}
.w10{width:64.466667pt;}
.wf{width:64.658667pt;}
.w7{width:87.346667pt;}
.w2{width:95.832000pt;}
.w5{width:96.032000pt;}
.w4{width:111.200000pt;}
.w6{width:114.578667pt;}
.w9{width:116.512000pt;}
.wa{width:123.826667pt;}
.wb{width:129.138667pt;}
.w8{width:197.458667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.552000pt;}
.x2b{left:7.680000pt;}
.x2{left:113.472000pt;}
.x5{left:115.872000pt;}
.x1c{left:123.392000pt;}
.x8{left:136.026667pt;}
.x23{left:137.466667pt;}
.x4{left:142.586667pt;}
.x1f{left:144.346667pt;}
.x22{left:161.466667pt;}
.x19{left:165.306667pt;}
.x9{left:178.746667pt;}
.x26{left:209.320000pt;}
.x2c{left:221.626667pt;}
.xa{left:234.426667pt;}
.x1{left:246.426667pt;}
.x27{left:271.266667pt;}
.x2d{left:285.346667pt;}
.x32{left:310.946667pt;}
.x2e{left:335.586667pt;}
.x14{left:339.106667pt;}
.x6{left:354.306667pt;}
.x35{left:369.186667pt;}
.x17{left:379.906667pt;}
.x28{left:382.466667pt;}
.x21{left:387.426667pt;}
.xb{left:390.626667pt;}
.x2f{left:391.586667pt;}
.x7{left:396.866667pt;}
.xc{left:425.693333pt;}
.x33{left:427.466667pt;}
.x10{left:429.213333pt;}
.x1e{left:430.653333pt;}
.x13{left:435.293333pt;}
.x1d{left:439.933333pt;}
.x1b{left:447.933333pt;}
.x12{left:452.413333pt;}
.xf{left:453.693333pt;}
.x15{left:475.933333pt;}
.x30{left:477.373333pt;}
.x29{left:478.506667pt;}
.x31{left:482.653333pt;}
.x36{left:489.386667pt;}
.xd{left:527.453333pt;}
.x18{left:529.693333pt;}
.x11{left:533.213333pt;}
.x20{left:535.933333pt;}
.x34{left:551.306667pt;}
.x1a{left:553.213333pt;}
.x16{left:589.253333pt;}
.x2a{left:593.093333pt;}
.x37{left:615.973333pt;}
.x38{left:667.173333pt;}
.x3{left:673.733333pt;}
.xe{left:680.453333pt;}
.x24{left:684.133333pt;}
.x3c{left:687.973333pt;}
.x39{left:691.493333pt;}
.x3b{left:694.053333pt;}
.x3a{left:696.293333pt;}
}




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