
    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_da662653ca258f9c07052a29.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_b5d53d86306b7bad72657919.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_1c5a9b81758d3707c696e7fc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_92504b7c8c53b69e88285e8f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e46ef0d764fae386e68706b6.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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_4bf26964a2be89d8834aeaa4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c32b235a84577a1065466861.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_175b16c144b796ed19f036d2.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_59bf0d41dfae58ceb8ba6ea0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-87.840000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:11.628000px;}
.ls14{letter-spacing:25.308000px;}
.ls3{letter-spacing:28.062720px;}
.ls12{letter-spacing:52.668000px;}
.lsc{letter-spacing:64.170720px;}
.lse{letter-spacing:79.308000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.626000px;}
.wsd{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.140000px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-2.136000px;}
._0{margin-left:-1.116000px;}
._1{width:1.596000px;}
._3{width:3.210000px;}
._a{width:4.230000px;}
._9{width:5.274000px;}
._c{width:6.830160px;}
._1b{width:7.841520px;}
._b{width:8.844000px;}
._8{width:10.008000px;}
._7{width:11.754000px;}
._5{width:14.580000px;}
._6{width:15.714000px;}
._e{width:16.830000px;}
._d{width:17.928000px;}
._f{width:19.122000px;}
._10{width:21.038400px;}
._11{width:22.608000px;}
._1a{width:24.246000px;}
._19{width:25.434000px;}
._4{width:27.432000px;}
._13{width:28.443600px;}
._12{width:29.600400px;}
._14{width:30.919200px;}
._17{width:32.940000px;}
._16{width:34.650000px;}
._1e{width:35.748000px;}
._26{width:38.538000px;}
._1d{width:40.500000px;}
._1c{width:41.526000px;}
._15{width:45.360000px;}
._18{width:49.194000px;}
._1f{width:51.264000px;}
._25{width:52.422000px;}
._22{width:55.188000px;}
._21{width:58.806000px;}
._27{width:67.392000px;}
._29{width:75.546000px;}
._28{width:77.004000px;}
._2c{width:89.298000px;}
._24{width:124.590000px;}
._23{width:125.982000px;}
._2b{width:220.644000px;}
._2a{width:221.670000px;}
._2{width:1169.580000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y3d{bottom:-17.070000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y112{bottom:9.720000px;}
.yfe{bottom:9.900000px;}
.y100{bottom:10.080000px;}
.y114{bottom:10.260000px;}
.y3c{bottom:11.550000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y106{bottom:19.080000px;}
.y119{bottom:19.110000px;}
.y111{bottom:27.540000px;}
.yfd{bottom:27.720000px;}
.y105{bottom:27.900000px;}
.y118{bottom:27.930000px;}
.y5{bottom:39.780000px;}
.y39{bottom:60.510000px;}
.y1{bottom:60.660000px;}
.y38{bottom:80.310000px;}
.y37{bottom:100.110000px;}
.yfc{bottom:100.440000px;}
.y30{bottom:101.700000px;}
.ydb{bottom:107.100000px;}
.ya4{bottom:109.080000px;}
.y76{bottom:109.440000px;}
.y2e{bottom:110.700000px;}
.y136{bottom:114.300000px;}
.y2f{bottom:119.700000px;}
.y36{bottom:120.090000px;}
.yda{bottom:124.920000px;}
.ya3{bottom:127.080000px;}
.y75{bottom:127.260000px;}
.y2d{bottom:128.700000px;}
.y135{bottom:132.120000px;}
.y35{bottom:139.890000px;}
.yd9{bottom:142.740000px;}
.ya2{bottom:144.900000px;}
.y163{bottom:145.080000px;}
.y2c{bottom:146.520000px;}
.y134{bottom:149.940000px;}
.yfb{bottom:151.560000px;}
.y74{bottom:154.080000px;}
.y34{bottom:159.690000px;}
.yd8{bottom:160.560000px;}
.ya1{bottom:162.720000px;}
.y162{bottom:162.900000px;}
.y2b{bottom:164.340000px;}
.y133{bottom:167.760000px;}
.y73{bottom:171.900000px;}
.yd7{bottom:178.020000px;}
.yfa{bottom:178.380000px;}
.y33{bottom:179.535000px;}
.ya0{bottom:180.540000px;}
.y161{bottom:180.720000px;}
.y2a{bottom:182.160000px;}
.y132{bottom:185.580000px;}
.y72{bottom:189.720000px;}
.yd6{bottom:195.840000px;}
.yf9{bottom:196.200000px;}
.y9f{bottom:198.360000px;}
.y160{bottom:198.540000px;}
.y29{bottom:199.980000px;}
.y131{bottom:203.580000px;}
.y71{bottom:207.570000px;}
.y32{bottom:209.955000px;}
.yf8{bottom:214.230000px;}
.y9e{bottom:216.210000px;}
.y15f{bottom:216.390000px;}
.y28{bottom:219.990000px;}
.y130{bottom:221.430000px;}
.yd5{bottom:223.230000px;}
.y70{bottom:225.570000px;}
.yf7{bottom:232.050000px;}
.y9d{bottom:234.210000px;}
.y12f{bottom:239.250000px;}
.yd4{bottom:241.050000px;}
.y6f{bottom:243.390000px;}
.yf6{bottom:249.870000px;}
.y9c{bottom:252.030000px;}
.y15e{bottom:252.210000px;}
.y12e{bottom:256.710000px;}
.yd3{bottom:258.870000px;}
.y6e{bottom:261.210000px;}
.y27{bottom:262.290000px;}
.y31{bottom:269.820000px;}
.y9b{bottom:269.850000px;}
.y15d{bottom:270.030000px;}
.y12d{bottom:274.530000px;}
.yd2{bottom:276.690000px;}
.y6d{bottom:279.030000px;}
.y3b{bottom:281.370000px;}
.y9a{bottom:287.670000px;}
.y15c{bottom:287.850000px;}
.y12c{bottom:292.350000px;}
.yd1{bottom:294.510000px;}
.y6c{bottom:296.850000px;}
.y99{bottom:305.490000px;}
.y15b{bottom:305.670000px;}
.y26{bottom:309.630000px;}
.y3a{bottom:310.530000px;}
.yd0{bottom:312.510000px;}
.y180{bottom:314.670000px;}
.y6b{bottom:314.850000px;}
.y12b{bottom:319.710000px;}
.y98{bottom:323.490000px;}
.ycf{bottom:330.330000px;}
.y6a{bottom:332.670000px;}
.y12a{bottom:337.530000px;}
.y145{bottom:339.330000px;}
.y97{bottom:341.310000px;}
.y15a{bottom:341.490000px;}
.y17f{bottom:342.570000px;}
.y25{bottom:344.370000px;}
.yf5{bottom:348.150000px;}
.y129{bottom:355.350000px;}
.yce{bottom:357.150000px;}
.y96{bottom:359.130000px;}
.y159{bottom:359.310000px;}
.y69{bottom:359.490000px;}
.yf4{bottom:365.970000px;}
.y24{bottom:367.950000px;}
.y128{bottom:373.170000px;}
.ycd{bottom:374.970000px;}
.y95{bottom:376.950000px;}
.y158{bottom:377.130000px;}
.y68{bottom:377.310000px;}
.yf3{bottom:383.790000px;}
.y23{bottom:385.770000px;}
.y17e{bottom:388.470000px;}
.y127{bottom:390.990000px;}
.ycc{bottom:392.790000px;}
.y94{bottom:394.770000px;}
.y157{bottom:394.950000px;}
.y67{bottom:395.130000px;}
.yf2{bottom:401.610000px;}
.y22{bottom:403.590000px;}
.y126{bottom:408.990000px;}
.ycb{bottom:410.610000px;}
.y156{bottom:412.770000px;}
.y66{bottom:412.950000px;}
.y93{bottom:421.590000px;}
.y21{bottom:423.210000px;}
.y125{bottom:426.810000px;}
.yca{bottom:428.610000px;}
.y155{bottom:430.590000px;}
.y65{bottom:430.950000px;}
.y17d{bottom:434.550000px;}
.y92{bottom:439.590000px;}
.y124{bottom:444.675000px;}
.yc9{bottom:446.475000px;}
.y20{bottom:447.015000px;}
.y154{bottom:448.635000px;}
.y64{bottom:448.815000px;}
.y91{bottom:457.455000px;}
.y123{bottom:462.495000px;}
.y144{bottom:463.935000px;}
.yc8{bottom:464.295000px;}
.y153{bottom:466.455000px;}
.y63{bottom:466.635000px;}
.y1f{bottom:470.955000px;}
.y90{bottom:475.275000px;}
.y17c{bottom:480.495000px;}
.y143{bottom:481.755000px;}
.yc7{bottom:482.115000px;}
.y152{bottom:484.275000px;}
.y62{bottom:484.455000px;}
.y122{bottom:489.315000px;}
.y8f{bottom:493.095000px;}
.y1e{bottom:494.715000px;}
.y142{bottom:499.575000px;}
.yc6{bottom:499.935000px;}
.y151{bottom:502.095000px;}
.y61{bottom:502.275000px;}
.y121{bottom:507.135000px;}
.y8e{bottom:510.915000px;}
.yc5{bottom:517.935000px;}
.y1d{bottom:518.475000px;}
.y150{bottom:519.915000px;}
.y60{bottom:520.275000px;}
.y120{bottom:525.135000px;}
.y17b{bottom:525.855000px;}
.y141{bottom:526.935000px;}
.y8d{bottom:528.915000px;}
.yf1{bottom:535.395000px;}
.yc4{bottom:535.755000px;}
.y5f{bottom:537.735000px;}
.y14f{bottom:537.915000px;}
.y1c{bottom:542.055000px;}
.y11f{bottom:542.955000px;}
.y140{bottom:544.755000px;}
.y8c{bottom:546.735000px;}
.y17a{bottom:551.235000px;}
.yf0{bottom:553.215000px;}
.yc3{bottom:553.575000px;}
.y14e{bottom:555.735000px;}
.y11e{bottom:560.775000px;}
.y13f{bottom:562.575000px;}
.y8b{bottom:564.555000px;}
.y5e{bottom:564.915000px;}
.y1b{bottom:568.515000px;}
.yef{bottom:571.035000px;}
.yc2{bottom:571.395000px;}
.y179{bottom:571.755000px;}
.y14d{bottom:573.555000px;}
.y11d{bottom:578.595000px;}
.y13e{bottom:580.395000px;}
.y5d{bottom:582.735000px;}
.yc1{bottom:589.215000px;}
.y178{bottom:589.575000px;}
.y8a{bottom:591.375000px;}
.y11c{bottom:596.415000px;}
.yee{bottom:598.215000px;}
.y1a{bottom:599.295000px;}
.y5c{bottom:600.555000px;}
.yc0{bottom:607.035000px;}
.y177{bottom:607.395000px;}
.y89{bottom:609.195000px;}
.y11b{bottom:614.415000px;}
.yed{bottom:616.035000px;}
.y5b{bottom:618.375000px;}
.y176{bottom:625.215000px;}
.y88{bottom:627.015000px;}
.ybf{bottom:634.035000px;}
.y5a{bottom:636.375000px;}
.y11a{bottom:641.235000px;}
.y175{bottom:643.035000px;}
.y87{bottom:645.015000px;}
.y19{bottom:648.075000px;}
.ybe{bottom:651.855000px;}
.y59{bottom:654.195000px;}
.y174{bottom:661.035000px;}
.y86{bottom:662.835000px;}
.y117{bottom:663.195000px;}
.ybd{bottom:669.675000px;}
.y173{bottom:678.885000px;}
.y85{bottom:680.685000px;}
.y58{bottom:681.045000px;}
.ybc{bottom:687.525000px;}
.y13d{bottom:696.525000px;}
.y18{bottom:696.705000px;}
.y84{bottom:698.505000px;}
.y57{bottom:698.865000px;}
.ybb{bottom:705.345000px;}
.y116{bottom:708.585000px;}
.y13c{bottom:714.345000px;}
.y172{bottom:714.525000px;}
.y83{bottom:716.325000px;}
.y56{bottom:716.685000px;}
.yba{bottom:723.165000px;}
.yec{bottom:732.165000px;}
.y171{bottom:732.345000px;}
.y82{bottom:734.325000px;}
.y55{bottom:734.685000px;}
.y115{bottom:736.305000px;}
.yb9{bottom:741.165000px;}
.y17{bottom:750.165000px;}
.y81{bottom:752.145000px;}
.y14c{bottom:754.125000px;}
.yb8{bottom:758.985000px;}
.y54{bottom:763.845000px;}
.yeb{bottom:767.985000px;}
.y170{bottom:768.165000px;}
.y80{bottom:769.965000px;}
.yb7{bottom:776.805000px;}
.y16{bottom:778.065000px;}
.y53{bottom:781.845000px;}
.yea{bottom:785.805000px;}
.y16f{bottom:785.985000px;}
.y14b{bottom:786.885000px;}
.y7f{bottom:787.785000px;}
.y113{bottom:791.385000px;}
.yb6{bottom:794.625000px;}
.y52{bottom:799.845000px;}
.y13b{bottom:803.265000px;}
.ye9{bottom:803.625000px;}
.y16e{bottom:803.805000px;}
.y14a{bottom:804.705000px;}
.y7e{bottom:805.605000px;}
.y15{bottom:805.785000px;}
.yb5{bottom:812.445000px;}
.y110{bottom:819.105000px;}
.y13a{bottom:821.085000px;}
.ye8{bottom:821.445000px;}
.y16d{bottom:821.625000px;}
.y149{bottom:822.525000px;}
.y7d{bottom:823.425000px;}
.y51{bottom:829.005000px;}
.yb4{bottom:830.445000px;}
.y139{bottom:839.085000px;}
.ye7{bottom:839.445000px;}
.y148{bottom:840.345000px;}
.y7c{bottom:841.425000px;}
.y50{bottom:846.825000px;}
.yb3{bottom:848.265000px;}
.y14{bottom:851.865000px;}
.ye6{bottom:857.265000px;}
.y16c{bottom:857.445000px;}
.y147{bottom:858.345000px;}
.y7b{bottom:859.245000px;}
.y4f{bottom:864.825000px;}
.yb2{bottom:866.085000px;}
.y138{bottom:866.265000px;}
.y10f{bottom:870.045000px;}
.y13{bottom:874.725000px;}
.y16b{bottom:875.265000px;}
.y146{bottom:876.165000px;}
.y7a{bottom:879.045000px;}
.y137{bottom:884.085000px;}
.y12{bottom:892.005000px;}
.yb1{bottom:892.905000px;}
.y16a{bottom:893.085000px;}
.y4e{bottom:893.985000px;}
.y10e{bottom:897.045000px;}
.ye5{bottom:901.905000px;}
.y11{bottom:909.465000px;}
.yb0{bottom:910.770000px;}
.y169{bottom:910.950000px;}
.y4d{bottom:911.850000px;}
.y10d{bottom:914.910000px;}
.ye4{bottom:919.770000px;}
.y10{bottom:927.870000px;}
.yaf{bottom:928.590000px;}
.y168{bottom:928.770000px;}
.y4c{bottom:929.670000px;}
.y10c{bottom:932.730000px;}
.ye3{bottom:937.590000px;}
.yf{bottom:945.510000px;}
.yae{bottom:946.590000px;}
.y4b{bottom:947.670000px;}
.y10b{bottom:950.550000px;}
.ye2{bottom:955.590000px;}
.yad{bottom:964.410000px;}
.y167{bottom:964.590000px;}
.y4a{bottom:965.490000px;}
.y10a{bottom:968.370000px;}
.ye1{bottom:973.410000px;}
.yac{bottom:982.230000px;}
.y166{bottom:982.410000px;}
.y49{bottom:983.310000px;}
.ye{bottom:985.650000px;}
.y109{bottom:986.370000px;}
.ye0{bottom:991.230000px;}
.yd{bottom:997.710000px;}
.yab{bottom:1000.050000px;}
.y165{bottom:1000.230000px;}
.y79{bottom:1001.130000px;}
.y48{bottom:1003.110000px;}
.y108{bottom:1004.190000px;}
.ydf{bottom:1009.050000px;}
.yc{bottom:1009.770000px;}
.yaa{bottom:1017.870000px;}
.y164{bottom:1018.050000px;}
.y78{bottom:1018.950000px;}
.yb{bottom:1021.830000px;}
.yde{bottom:1026.870000px;}
.y107{bottom:1031.010000px;}
.y47{bottom:1035.870000px;}
.ya{bottom:1036.410000px;}
.y77{bottom:1038.930000px;}
.ydd{bottom:1044.870000px;}
.y104{bottom:1052.970000px;}
.y46{bottom:1053.870000px;}
.y9{bottom:1061.970000px;}
.ya9{bottom:1062.690000px;}
.y45{bottom:1071.690000px;}
.ya8{bottom:1080.510000px;}
.y8{bottom:1087.170000px;}
.y44{bottom:1089.510000px;}
.ya7{bottom:1098.330000px;}
.y103{bottom:1098.510000px;}
.y43{bottom:1107.330000px;}
.ya6{bottom:1116.150000px;}
.y7{bottom:1116.870000px;}
.y42{bottom:1125.150000px;}
.y102{bottom:1126.050000px;}
.ya5{bottom:1133.610000px;}
.ydc{bottom:1133.970000px;}
.y41{bottom:1142.970000px;}
.y101{bottom:1153.620000px;}
.y40{bottom:1161.000000px;}
.y6{bottom:1165.860000px;}
.y3f{bottom:1178.820000px;}
.yff{bottom:1181.340000px;}
.y3e{bottom:1196.640000px;}
.h1a{height:26.820000px;}
.h1b{height:26.842500px;}
.h1d{height:27.000000px;}
.h2{height:31.135500px;}
.h9{height:40.985156px;}
.h1c{height:44.640000px;}
.h1e{height:44.670000px;}
.h19{height:44.815500px;}
.h20{height:52.971680px;}
.h3{height:52.998047px;}
.h10{height:54.421875px;}
.h12{height:55.291992px;}
.h1f{height:55.503491px;}
.h18{height:56.214844px;}
.h16{height:58.621992px;}
.ha{height:58.651172px;}
.h15{height:58.763250px;}
.hb{height:60.226875px;}
.h17{height:61.423863px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.hf{height:72.562500px;}
.h11{height:78.367500px;}
.h13{height:80.949375px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h8{height:90.703125px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h14{height:240.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w6{width:113.781000px;}
.w9{width:113.796000px;}
.wc{width:116.496000px;}
.w5{width:121.845000px;}
.w8{width:122.062500px;}
.wb{width:125.662500px;}
.wd{width:137.160000px;}
.wa{width:143.640000px;}
.w7{width:143.670000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x16{left:10.800000px;}
.x2c{left:13.140000px;}
.x27{left:14.575500px;}
.x22{left:16.200000px;}
.x26{left:21.060000px;}
.x1f{left:25.365000px;}
.x2a{left:26.820000px;}
.x2e{left:29.880000px;}
.x24{left:34.920000px;}
.x20{left:38.010000px;}
.x15{left:40.140000px;}
.x2d{left:42.840000px;}
.x1{left:45.364500px;}
.x1d{left:46.605000px;}
.x28{left:48.631500px;}
.x17{left:50.940000px;}
.x7{left:54.000000px;}
.xe{left:64.980000px;}
.xd{left:74.700000px;}
.x13{left:81.000000px;}
.x19{left:108.036000px;}
.x18{left:119.556000px;}
.x2f{left:135.036000px;}
.x23{left:169.050000px;}
.x29{left:172.830000px;}
.x2{left:222.370500px;}
.x11{left:235.290000px;}
.xa{left:269.715000px;}
.x3{left:271.330500px;}
.x25{left:283.575000px;}
.x2b{left:290.055000px;}
.xb{left:301.575000px;}
.xf{left:317.595000px;}
.x8{left:322.275000px;}
.x12{left:341.355000px;}
.x9{left:364.395000px;}
.x10{left:368.175000px;}
.xc{left:378.795000px;}
.x6{left:446.505000px;}
.x1c{left:465.960000px;}
.x14{left:473.505000px;}
.x1a{left:500.505000px;}
.x30{left:527.505000px;}
.x1b{left:554.505000px;}
.x1e{left:588.720000px;}
.x21{left:703.230000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:10.336000pt;}
.ls14{letter-spacing:22.496000pt;}
.ls3{letter-spacing:24.944640pt;}
.ls12{letter-spacing:46.816000pt;}
.lsc{letter-spacing:57.040640pt;}
.lse{letter-spacing:70.496000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.112000pt;}
.wsd{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-1.898667pt;}
._0{margin-left:-0.992000pt;}
._1{width:1.418667pt;}
._3{width:2.853333pt;}
._a{width:3.760000pt;}
._9{width:4.688000pt;}
._c{width:6.071253pt;}
._1b{width:6.970240pt;}
._b{width:7.861333pt;}
._8{width:8.896000pt;}
._7{width:10.448000pt;}
._5{width:12.960000pt;}
._6{width:13.968000pt;}
._e{width:14.960000pt;}
._d{width:15.936000pt;}
._f{width:16.997333pt;}
._10{width:18.700800pt;}
._11{width:20.096000pt;}
._1a{width:21.552000pt;}
._19{width:22.608000pt;}
._4{width:24.384000pt;}
._13{width:25.283200pt;}
._12{width:26.311467pt;}
._14{width:27.483733pt;}
._17{width:29.280000pt;}
._16{width:30.800000pt;}
._1e{width:31.776000pt;}
._26{width:34.256000pt;}
._1d{width:36.000000pt;}
._1c{width:36.912000pt;}
._15{width:40.320000pt;}
._18{width:43.728000pt;}
._1f{width:45.568000pt;}
._25{width:46.597333pt;}
._22{width:49.056000pt;}
._21{width:52.272000pt;}
._27{width:59.904000pt;}
._29{width:67.152000pt;}
._28{width:68.448000pt;}
._2c{width:79.376000pt;}
._24{width:110.746667pt;}
._23{width:111.984000pt;}
._2b{width:196.128000pt;}
._2a{width:197.040000pt;}
._2{width:1039.626667pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y3d{bottom:-15.173333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y112{bottom:8.640000pt;}
.yfe{bottom:8.800000pt;}
.y100{bottom:8.960000pt;}
.y114{bottom:9.120000pt;}
.y3c{bottom:10.266667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y106{bottom:16.960000pt;}
.y119{bottom:16.986667pt;}
.y111{bottom:24.480000pt;}
.yfd{bottom:24.640000pt;}
.y105{bottom:24.800000pt;}
.y118{bottom:24.826667pt;}
.y5{bottom:35.360000pt;}
.y39{bottom:53.786667pt;}
.y1{bottom:53.920000pt;}
.y38{bottom:71.386667pt;}
.y37{bottom:88.986667pt;}
.yfc{bottom:89.280000pt;}
.y30{bottom:90.400000pt;}
.ydb{bottom:95.200000pt;}
.ya4{bottom:96.960000pt;}
.y76{bottom:97.280000pt;}
.y2e{bottom:98.400000pt;}
.y136{bottom:101.600000pt;}
.y2f{bottom:106.400000pt;}
.y36{bottom:106.746667pt;}
.yda{bottom:111.040000pt;}
.ya3{bottom:112.960000pt;}
.y75{bottom:113.120000pt;}
.y2d{bottom:114.400000pt;}
.y135{bottom:117.440000pt;}
.y35{bottom:124.346667pt;}
.yd9{bottom:126.880000pt;}
.ya2{bottom:128.800000pt;}
.y163{bottom:128.960000pt;}
.y2c{bottom:130.240000pt;}
.y134{bottom:133.280000pt;}
.yfb{bottom:134.720000pt;}
.y74{bottom:136.960000pt;}
.y34{bottom:141.946667pt;}
.yd8{bottom:142.720000pt;}
.ya1{bottom:144.640000pt;}
.y162{bottom:144.800000pt;}
.y2b{bottom:146.080000pt;}
.y133{bottom:149.120000pt;}
.y73{bottom:152.800000pt;}
.yd7{bottom:158.240000pt;}
.yfa{bottom:158.560000pt;}
.y33{bottom:159.586667pt;}
.ya0{bottom:160.480000pt;}
.y161{bottom:160.640000pt;}
.y2a{bottom:161.920000pt;}
.y132{bottom:164.960000pt;}
.y72{bottom:168.640000pt;}
.yd6{bottom:174.080000pt;}
.yf9{bottom:174.400000pt;}
.y9f{bottom:176.320000pt;}
.y160{bottom:176.480000pt;}
.y29{bottom:177.760000pt;}
.y131{bottom:180.960000pt;}
.y71{bottom:184.506667pt;}
.y32{bottom:186.626667pt;}
.yf8{bottom:190.426667pt;}
.y9e{bottom:192.186667pt;}
.y15f{bottom:192.346667pt;}
.y28{bottom:195.546667pt;}
.y130{bottom:196.826667pt;}
.yd5{bottom:198.426667pt;}
.y70{bottom:200.506667pt;}
.yf7{bottom:206.266667pt;}
.y9d{bottom:208.186667pt;}
.y12f{bottom:212.666667pt;}
.yd4{bottom:214.266667pt;}
.y6f{bottom:216.346667pt;}
.yf6{bottom:222.106667pt;}
.y9c{bottom:224.026667pt;}
.y15e{bottom:224.186667pt;}
.y12e{bottom:228.186667pt;}
.yd3{bottom:230.106667pt;}
.y6e{bottom:232.186667pt;}
.y27{bottom:233.146667pt;}
.y31{bottom:239.840000pt;}
.y9b{bottom:239.866667pt;}
.y15d{bottom:240.026667pt;}
.y12d{bottom:244.026667pt;}
.yd2{bottom:245.946667pt;}
.y6d{bottom:248.026667pt;}
.y3b{bottom:250.106667pt;}
.y9a{bottom:255.706667pt;}
.y15c{bottom:255.866667pt;}
.y12c{bottom:259.866667pt;}
.yd1{bottom:261.786667pt;}
.y6c{bottom:263.866667pt;}
.y99{bottom:271.546667pt;}
.y15b{bottom:271.706667pt;}
.y26{bottom:275.226667pt;}
.y3a{bottom:276.026667pt;}
.yd0{bottom:277.786667pt;}
.y180{bottom:279.706667pt;}
.y6b{bottom:279.866667pt;}
.y12b{bottom:284.186667pt;}
.y98{bottom:287.546667pt;}
.ycf{bottom:293.626667pt;}
.y6a{bottom:295.706667pt;}
.y12a{bottom:300.026667pt;}
.y145{bottom:301.626667pt;}
.y97{bottom:303.386667pt;}
.y15a{bottom:303.546667pt;}
.y17f{bottom:304.506667pt;}
.y25{bottom:306.106667pt;}
.yf5{bottom:309.466667pt;}
.y129{bottom:315.866667pt;}
.yce{bottom:317.466667pt;}
.y96{bottom:319.226667pt;}
.y159{bottom:319.386667pt;}
.y69{bottom:319.546667pt;}
.yf4{bottom:325.306667pt;}
.y24{bottom:327.066667pt;}
.y128{bottom:331.706667pt;}
.ycd{bottom:333.306667pt;}
.y95{bottom:335.066667pt;}
.y158{bottom:335.226667pt;}
.y68{bottom:335.386667pt;}
.yf3{bottom:341.146667pt;}
.y23{bottom:342.906667pt;}
.y17e{bottom:345.306667pt;}
.y127{bottom:347.546667pt;}
.ycc{bottom:349.146667pt;}
.y94{bottom:350.906667pt;}
.y157{bottom:351.066667pt;}
.y67{bottom:351.226667pt;}
.yf2{bottom:356.986667pt;}
.y22{bottom:358.746667pt;}
.y126{bottom:363.546667pt;}
.ycb{bottom:364.986667pt;}
.y156{bottom:366.906667pt;}
.y66{bottom:367.066667pt;}
.y93{bottom:374.746667pt;}
.y21{bottom:376.186667pt;}
.y125{bottom:379.386667pt;}
.yca{bottom:380.986667pt;}
.y155{bottom:382.746667pt;}
.y65{bottom:383.066667pt;}
.y17d{bottom:386.266667pt;}
.y92{bottom:390.746667pt;}
.y124{bottom:395.266667pt;}
.yc9{bottom:396.866667pt;}
.y20{bottom:397.346667pt;}
.y154{bottom:398.786667pt;}
.y64{bottom:398.946667pt;}
.y91{bottom:406.626667pt;}
.y123{bottom:411.106667pt;}
.y144{bottom:412.386667pt;}
.yc8{bottom:412.706667pt;}
.y153{bottom:414.626667pt;}
.y63{bottom:414.786667pt;}
.y1f{bottom:418.626667pt;}
.y90{bottom:422.466667pt;}
.y17c{bottom:427.106667pt;}
.y143{bottom:428.226667pt;}
.yc7{bottom:428.546667pt;}
.y152{bottom:430.466667pt;}
.y62{bottom:430.626667pt;}
.y122{bottom:434.946667pt;}
.y8f{bottom:438.306667pt;}
.y1e{bottom:439.746667pt;}
.y142{bottom:444.066667pt;}
.yc6{bottom:444.386667pt;}
.y151{bottom:446.306667pt;}
.y61{bottom:446.466667pt;}
.y121{bottom:450.786667pt;}
.y8e{bottom:454.146667pt;}
.yc5{bottom:460.386667pt;}
.y1d{bottom:460.866667pt;}
.y150{bottom:462.146667pt;}
.y60{bottom:462.466667pt;}
.y120{bottom:466.786667pt;}
.y17b{bottom:467.426667pt;}
.y141{bottom:468.386667pt;}
.y8d{bottom:470.146667pt;}
.yf1{bottom:475.906667pt;}
.yc4{bottom:476.226667pt;}
.y5f{bottom:477.986667pt;}
.y14f{bottom:478.146667pt;}
.y1c{bottom:481.826667pt;}
.y11f{bottom:482.626667pt;}
.y140{bottom:484.226667pt;}
.y8c{bottom:485.986667pt;}
.y17a{bottom:489.986667pt;}
.yf0{bottom:491.746667pt;}
.yc3{bottom:492.066667pt;}
.y14e{bottom:493.986667pt;}
.y11e{bottom:498.466667pt;}
.y13f{bottom:500.066667pt;}
.y8b{bottom:501.826667pt;}
.y5e{bottom:502.146667pt;}
.y1b{bottom:505.346667pt;}
.yef{bottom:507.586667pt;}
.yc2{bottom:507.906667pt;}
.y179{bottom:508.226667pt;}
.y14d{bottom:509.826667pt;}
.y11d{bottom:514.306667pt;}
.y13e{bottom:515.906667pt;}
.y5d{bottom:517.986667pt;}
.yc1{bottom:523.746667pt;}
.y178{bottom:524.066667pt;}
.y8a{bottom:525.666667pt;}
.y11c{bottom:530.146667pt;}
.yee{bottom:531.746667pt;}
.y1a{bottom:532.706667pt;}
.y5c{bottom:533.826667pt;}
.yc0{bottom:539.586667pt;}
.y177{bottom:539.906667pt;}
.y89{bottom:541.506667pt;}
.y11b{bottom:546.146667pt;}
.yed{bottom:547.586667pt;}
.y5b{bottom:549.666667pt;}
.y176{bottom:555.746667pt;}
.y88{bottom:557.346667pt;}
.ybf{bottom:563.586667pt;}
.y5a{bottom:565.666667pt;}
.y11a{bottom:569.986667pt;}
.y175{bottom:571.586667pt;}
.y87{bottom:573.346667pt;}
.y19{bottom:576.066667pt;}
.ybe{bottom:579.426667pt;}
.y59{bottom:581.506667pt;}
.y174{bottom:587.586667pt;}
.y86{bottom:589.186667pt;}
.y117{bottom:589.506667pt;}
.ybd{bottom:595.266667pt;}
.y173{bottom:603.453333pt;}
.y85{bottom:605.053333pt;}
.y58{bottom:605.373333pt;}
.ybc{bottom:611.133333pt;}
.y13d{bottom:619.133333pt;}
.y18{bottom:619.293333pt;}
.y84{bottom:620.893333pt;}
.y57{bottom:621.213333pt;}
.ybb{bottom:626.973333pt;}
.y116{bottom:629.853333pt;}
.y13c{bottom:634.973333pt;}
.y172{bottom:635.133333pt;}
.y83{bottom:636.733333pt;}
.y56{bottom:637.053333pt;}
.yba{bottom:642.813333pt;}
.yec{bottom:650.813333pt;}
.y171{bottom:650.973333pt;}
.y82{bottom:652.733333pt;}
.y55{bottom:653.053333pt;}
.y115{bottom:654.493333pt;}
.yb9{bottom:658.813333pt;}
.y17{bottom:666.813333pt;}
.y81{bottom:668.573333pt;}
.y14c{bottom:670.333333pt;}
.yb8{bottom:674.653333pt;}
.y54{bottom:678.973333pt;}
.yeb{bottom:682.653333pt;}
.y170{bottom:682.813333pt;}
.y80{bottom:684.413333pt;}
.yb7{bottom:690.493333pt;}
.y16{bottom:691.613333pt;}
.y53{bottom:694.973333pt;}
.yea{bottom:698.493333pt;}
.y16f{bottom:698.653333pt;}
.y14b{bottom:699.453333pt;}
.y7f{bottom:700.253333pt;}
.y113{bottom:703.453333pt;}
.yb6{bottom:706.333333pt;}
.y52{bottom:710.973333pt;}
.y13b{bottom:714.013333pt;}
.ye9{bottom:714.333333pt;}
.y16e{bottom:714.493333pt;}
.y14a{bottom:715.293333pt;}
.y7e{bottom:716.093333pt;}
.y15{bottom:716.253333pt;}
.yb5{bottom:722.173333pt;}
.y110{bottom:728.093333pt;}
.y13a{bottom:729.853333pt;}
.ye8{bottom:730.173333pt;}
.y16d{bottom:730.333333pt;}
.y149{bottom:731.133333pt;}
.y7d{bottom:731.933333pt;}
.y51{bottom:736.893333pt;}
.yb4{bottom:738.173333pt;}
.y139{bottom:745.853333pt;}
.ye7{bottom:746.173333pt;}
.y148{bottom:746.973333pt;}
.y7c{bottom:747.933333pt;}
.y50{bottom:752.733333pt;}
.yb3{bottom:754.013333pt;}
.y14{bottom:757.213333pt;}
.ye6{bottom:762.013333pt;}
.y16c{bottom:762.173333pt;}
.y147{bottom:762.973333pt;}
.y7b{bottom:763.773333pt;}
.y4f{bottom:768.733333pt;}
.yb2{bottom:769.853333pt;}
.y138{bottom:770.013333pt;}
.y10f{bottom:773.373333pt;}
.y13{bottom:777.533333pt;}
.y16b{bottom:778.013333pt;}
.y146{bottom:778.813333pt;}
.y7a{bottom:781.373333pt;}
.y137{bottom:785.853333pt;}
.y12{bottom:792.893333pt;}
.yb1{bottom:793.693333pt;}
.y16a{bottom:793.853333pt;}
.y4e{bottom:794.653333pt;}
.y10e{bottom:797.373333pt;}
.ye5{bottom:801.693333pt;}
.y11{bottom:808.413333pt;}
.yb0{bottom:809.573333pt;}
.y169{bottom:809.733333pt;}
.y4d{bottom:810.533333pt;}
.y10d{bottom:813.253333pt;}
.ye4{bottom:817.573333pt;}
.y10{bottom:824.773333pt;}
.yaf{bottom:825.413333pt;}
.y168{bottom:825.573333pt;}
.y4c{bottom:826.373333pt;}
.y10c{bottom:829.093333pt;}
.ye3{bottom:833.413333pt;}
.yf{bottom:840.453333pt;}
.yae{bottom:841.413333pt;}
.y4b{bottom:842.373333pt;}
.y10b{bottom:844.933333pt;}
.ye2{bottom:849.413333pt;}
.yad{bottom:857.253333pt;}
.y167{bottom:857.413333pt;}
.y4a{bottom:858.213333pt;}
.y10a{bottom:860.773333pt;}
.ye1{bottom:865.253333pt;}
.yac{bottom:873.093333pt;}
.y166{bottom:873.253333pt;}
.y49{bottom:874.053333pt;}
.ye{bottom:876.133333pt;}
.y109{bottom:876.773333pt;}
.ye0{bottom:881.093333pt;}
.yd{bottom:886.853333pt;}
.yab{bottom:888.933333pt;}
.y165{bottom:889.093333pt;}
.y79{bottom:889.893333pt;}
.y48{bottom:891.653333pt;}
.y108{bottom:892.613333pt;}
.ydf{bottom:896.933333pt;}
.yc{bottom:897.573333pt;}
.yaa{bottom:904.773333pt;}
.y164{bottom:904.933333pt;}
.y78{bottom:905.733333pt;}
.yb{bottom:908.293333pt;}
.yde{bottom:912.773333pt;}
.y107{bottom:916.453333pt;}
.y47{bottom:920.773333pt;}
.ya{bottom:921.253333pt;}
.y77{bottom:923.493333pt;}
.ydd{bottom:928.773333pt;}
.y104{bottom:935.973333pt;}
.y46{bottom:936.773333pt;}
.y9{bottom:943.973333pt;}
.ya9{bottom:944.613333pt;}
.y45{bottom:952.613333pt;}
.ya8{bottom:960.453333pt;}
.y8{bottom:966.373333pt;}
.y44{bottom:968.453333pt;}
.ya7{bottom:976.293333pt;}
.y103{bottom:976.453333pt;}
.y43{bottom:984.293333pt;}
.ya6{bottom:992.133333pt;}
.y7{bottom:992.773333pt;}
.y42{bottom:1000.133333pt;}
.y102{bottom:1000.933333pt;}
.ya5{bottom:1007.653333pt;}
.ydc{bottom:1007.973333pt;}
.y41{bottom:1015.973333pt;}
.y101{bottom:1025.440000pt;}
.y40{bottom:1032.000000pt;}
.y6{bottom:1036.320000pt;}
.y3f{bottom:1047.840000pt;}
.yff{bottom:1050.080000pt;}
.y3e{bottom:1063.680000pt;}
.h1a{height:23.840000pt;}
.h1b{height:23.860000pt;}
.h1d{height:24.000000pt;}
.h2{height:27.676000pt;}
.h9{height:36.431250pt;}
.h1c{height:39.680000pt;}
.h1e{height:39.706667pt;}
.h19{height:39.836000pt;}
.h20{height:47.085938pt;}
.h3{height:47.109375pt;}
.h10{height:48.375000pt;}
.h12{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h18{height:49.968750pt;}
.h16{height:52.108438pt;}
.ha{height:52.134375pt;}
.h15{height:52.234000pt;}
.hb{height:53.535000pt;}
.h17{height:54.598989pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.hf{height:64.500000pt;}
.h11{height:69.660000pt;}
.h13{height:71.955000pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h8{height:80.625000pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h14{height:213.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w6{width:101.138667pt;}
.w9{width:101.152000pt;}
.wc{width:103.552000pt;}
.w5{width:108.306667pt;}
.w8{width:108.500000pt;}
.wb{width:111.700000pt;}
.wd{width:121.920000pt;}
.wa{width:127.680000pt;}
.w7{width:127.706667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x16{left:9.600000pt;}
.x2c{left:11.680000pt;}
.x27{left:12.956000pt;}
.x22{left:14.400000pt;}
.x26{left:18.720000pt;}
.x1f{left:22.546667pt;}
.x2a{left:23.840000pt;}
.x2e{left:26.560000pt;}
.x24{left:31.040000pt;}
.x20{left:33.786667pt;}
.x15{left:35.680000pt;}
.x2d{left:38.080000pt;}
.x1{left:40.324000pt;}
.x1d{left:41.426667pt;}
.x28{left:43.228000pt;}
.x17{left:45.280000pt;}
.x7{left:48.000000pt;}
.xe{left:57.760000pt;}
.xd{left:66.400000pt;}
.x13{left:72.000000pt;}
.x19{left:96.032000pt;}
.x18{left:106.272000pt;}
.x2f{left:120.032000pt;}
.x23{left:150.266667pt;}
.x29{left:153.626667pt;}
.x2{left:197.662667pt;}
.x11{left:209.146667pt;}
.xa{left:239.746667pt;}
.x3{left:241.182667pt;}
.x25{left:252.066667pt;}
.x2b{left:257.826667pt;}
.xb{left:268.066667pt;}
.xf{left:282.306667pt;}
.x8{left:286.466667pt;}
.x12{left:303.426667pt;}
.x9{left:323.906667pt;}
.x10{left:327.266667pt;}
.xc{left:336.706667pt;}
.x6{left:396.893333pt;}
.x1c{left:414.186667pt;}
.x14{left:420.893333pt;}
.x1a{left:444.893333pt;}
.x30{left:468.893333pt;}
.x1b{left:492.893333pt;}
.x1e{left:523.306667pt;}
.x21{left:625.093333pt;}
.x4{left:682.213333pt;}
}




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