
    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_c7a0a9e562fe35af77eec7be.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_190ffa6cb3585e2db8affea8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_768dedc1ef6df51c23ffbf92.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_22979ebc40ed82cd86be8d73.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_873e3bc5926e87b91c3ad3ec.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_b5affb172c7fa4d0d6f9b9d7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b6ccdcc2fc56a852a368f66e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fc8d5b14860614176dfd9ce9.woff')format("woff");}.ff8{font-family:ff8;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:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1e{letter-spacing:-0.312600px;}
.ls16{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.ls23{letter-spacing:-0.125400px;}
.lsf{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.083400px;}
.ls17{letter-spacing:-0.063600px;}
.ls1c{letter-spacing:-0.040320px;}
.ls20{letter-spacing:-0.014760px;}
.ls22{letter-spacing:-0.013320px;}
.ls1f{letter-spacing:-0.011160px;}
.ls27{letter-spacing:-0.009000px;}
.lsc{letter-spacing:-0.008400px;}
.ls21{letter-spacing:-0.007560px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.060480px;}
.ls1a{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.065520px;}
.ls6{letter-spacing:0.068400px;}
.ls1{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.097800px;}
.ls26{letter-spacing:0.098400px;}
.lse{letter-spacing:0.113400px;}
.ls12{letter-spacing:0.118200px;}
.ls8{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.154200px;}
.ls15{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.185520px;}
.ls0{letter-spacing:13.347360px;}
.ls25{letter-spacing:47.726640px;}
.ls24{letter-spacing:80.846640px;}
.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;}
}
.ws2{word-spacing:-18.453600px;}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.344600px;}
.ws1b{word-spacing:-13.324800px;}
.ws13{word-spacing:-13.324200px;}
.ws5{word-spacing:-13.294800px;}
.ws11{word-spacing:-13.287000px;}
.ws14{word-spacing:-13.279680px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws18{word-spacing:-13.218840px;}
.ws1c{word-spacing:-13.217400px;}
.ws16{word-spacing:-13.215240px;}
.ws19{word-spacing:-13.213080px;}
.ws17{word-spacing:-13.211640px;}
.wse{word-spacing:-13.162800px;}
.ws1a{word-spacing:-13.101000px;}
.ws9{word-spacing:-13.039800px;}
.ws15{word-spacing:-12.913800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.707800px;}
.ws3{word-spacing:-8.553600px;}
.ws10{word-spacing:-8.470200px;}
.wsd{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._f{margin-left:-3.760201px;}
._e{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._3{width:1.006224px;}
._7{width:2.290604px;}
._9{width:3.334801px;}
._8{width:4.629000px;}
._b{width:6.493200px;}
._c{width:7.755600px;}
._d{width:8.959439px;}
._6{width:10.581000px;}
._a{width:12.204600px;}
._10{width:14.549040px;}
._2{width:16.021248px;}
._1{width:17.356800px;}
._5{width:21.751619px;}
._4{width:23.086560px;}
._11{width:36.132120px;}
._13{width:39.558960px;}
._14{width:40.641120px;}
._12{width:51.159240px;}
._15{width:70.308120px;}
._16{width:99.198000px;}
._17{width:110.199960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:3.330000px;}
.ye3{bottom:3.420000px;}
.y3b{bottom:7.830000px;}
.y3a{bottom:7.920000px;}
.y100{bottom:16.650000px;}
.yd5{bottom:20.880000px;}
.ye2{bottom:20.970000px;}
.yb3{bottom:25.380000px;}
.yd2{bottom:25.470000px;}
.yff{bottom:34.200000px;}
.y38{bottom:35.190000px;}
.yd4{bottom:38.520000px;}
.yd1{bottom:43.020000px;}
.yfd{bottom:43.110000px;}
.ye1{bottom:56.160000px;}
.yee{bottom:60.570000px;}
.yd0{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.ycf{bottom:78.210000px;}
.ydc{bottom:95.760000px;}
.yce{bottom:95.850000px;}
.y1{bottom:100.200000px;}
.ycd{bottom:113.400000px;}
.ye0{bottom:114.240000px;}
.yf5{bottom:114.960000px;}
.yd3{bottom:118.470000px;}
.y13c{bottom:118.740000px;}
.y114{bottom:124.230000px;}
.ya3{bottom:125.130000px;}
.y54{bottom:125.760000px;}
.ycc{bottom:130.950000px;}
.yfc{bottom:131.040000px;}
.y7f{bottom:132.510000px;}
.y28{bottom:135.030000px;}
.y13b{bottom:136.290000px;}
.yef{bottom:137.100000px;}
.y53{bottom:137.910000px;}
.y113{bottom:141.780000px;}
.yed{bottom:148.500000px;}
.ycb{bottom:148.590000px;}
.y7e{bottom:150.060000px;}
.ya2{bottom:152.490000px;}
.y27{bottom:152.580000px;}
.y112{bottom:159.330000px;}
.y13a{bottom:162.840000px;}
.y52{bottom:165.270000px;}
.yca{bottom:166.140000px;}
.y7d{bottom:167.700000px;}
.y26{bottom:170.220000px;}
.yb4{bottom:176.430000px;}
.y111{bottom:176.970000px;}
.ya1{bottom:179.760000px;}
.y139{bottom:180.480000px;}
.yc9{bottom:183.690000px;}
.yf4{bottom:183.780000px;}
.y7c{bottom:185.250000px;}
.y25{bottom:187.770000px;}
.ydd{bottom:189.840000px;}
.y51{bottom:192.630000px;}
.y110{bottom:194.520000px;}
.yc8{bottom:201.330000px;}
.y7b{bottom:202.890000px;}
.y24{bottom:205.320000px;}
.y138{bottom:207.030000px;}
.ya0{bottom:207.120000px;}
.y10f{bottom:212.160000px;}
.yc7{bottom:218.880000px;}
.yfb{bottom:218.970000px;}
.y50{bottom:219.990000px;}
.y7a{bottom:220.440000px;}
.y137{bottom:224.580000px;}
.y9f{bottom:234.480000px;}
.yec{bottom:236.430000px;}
.yc6{bottom:236.520000px;}
.y79{bottom:237.990000px;}
.y23{bottom:240.960000px;}
.y4f{bottom:247.260000px;}
.y10e{bottom:247.710000px;}
.y136{bottom:251.220000px;}
.yc5{bottom:254.070000px;}
.ydb{bottom:254.100000px;}
.y22{bottom:258.510000px;}
.y9e{bottom:261.840000px;}
.y78{bottom:264.630000px;}
.y10d{bottom:265.260000px;}
.y135{bottom:268.770000px;}
.yc4{bottom:271.620000px;}
.yda{bottom:271.650000px;}
.yf3{bottom:271.710000px;}
.y4e{bottom:274.620000px;}
.y21{bottom:276.150000px;}
.y134{bottom:286.410000px;}
.y9d{bottom:289.110000px;}
.yc3{bottom:289.260000px;}
.yd9{bottom:289.290000px;}
.y20{bottom:293.700000px;}
.y10c{bottom:297.480000px;}
.y77{bottom:300.540000px;}
.y4d{bottom:301.980000px;}
.y133{bottom:303.960000px;}
.yeb{bottom:306.810000px;}
.yc2{bottom:306.840000px;}
.yfa{bottom:306.900000px;}
.y1f{bottom:311.250000px;}
.y9c{bottom:316.470000px;}
.yea{bottom:324.360000px;}
.yd8{bottom:324.390000px;}
.yf2{bottom:324.450000px;}
.yc1{bottom:324.480000px;}
.y1e{bottom:328.890000px;}
.y4c{bottom:329.340000px;}
.y132{bottom:330.510000px;}
.ye9{bottom:342.000000px;}
.yc0{bottom:342.030000px;}
.y9b{bottom:343.830000px;}
.y131{bottom:348.150000px;}
.y76{bottom:348.780000px;}
.y1d{bottom:355.800000px;}
.y4b{bottom:356.610000px;}
.ye8{bottom:359.550000px;}
.ybf{bottom:359.580000px;}
.yf1{bottom:359.640000px;}
.yf9{bottom:359.670000px;}
.y75{bottom:366.330000px;}
.y9a{bottom:371.190000px;}
.y130{bottom:374.700000px;}
.ye7{bottom:377.190000px;}
.ybe{bottom:377.220000px;}
.y4a{bottom:383.970000px;}
.y12f{bottom:392.340000px;}
.ybd{bottom:394.770000px;}
.yf8{bottom:394.860000px;}
.y99{bottom:398.460000px;}
.y74{bottom:401.520000px;}
.y1c{bottom:404.400000px;}
.y12e{bottom:409.890000px;}
.y49{bottom:411.330000px;}
.ye6{bottom:412.320000px;}
.ybc{bottom:412.410000px;}
.y73{bottom:419.160000px;}
.y98{bottom:425.820000px;}
.ybb{bottom:429.960000px;}
.y12d{bottom:436.440000px;}
.y72{bottom:436.710000px;}
.y1b{bottom:441.390000px;}
.yba{bottom:447.510000px;}
.yf7{bottom:447.600000px;}
.y97{bottom:453.180000px;}
.y12c{bottom:454.080000px;}
.y71{bottom:454.260000px;}
.y1a{bottom:458.940000px;}
.y48{bottom:460.020000px;}
.ye5{bottom:465.060000px;}
.yb9{bottom:465.150000px;}
.y70{bottom:471.930000px;}
.y19{bottom:476.610000px;}
.y96{bottom:480.480000px;}
.y12b{bottom:480.660000px;}
.yb8{bottom:482.700000px;}
.yf6{bottom:482.790000px;}
.y6f{bottom:489.480000px;}
.y18{bottom:494.160000px;}
.y47{bottom:495.600000px;}
.y12a{bottom:498.300000px;}
.ydf{bottom:500.250000px;}
.yb7{bottom:500.340000px;}
.y17{bottom:511.800000px;}
.y46{bottom:513.240000px;}
.y6e{bottom:516.120000px;}
.yb6{bottom:517.890000px;}
.y129{bottom:524.850000px;}
.y95{bottom:529.260000px;}
.y16{bottom:529.350000px;}
.y45{bottom:530.790000px;}
.yb5{bottom:535.440000px;}
.y128{bottom:542.400000px;}
.y15{bottom:546.900000px;}
.y44{bottom:548.340000px;}
.y6d{bottom:551.670000px;}
.yde{bottom:553.080000px;}
.y127{bottom:560.040000px;}
.y14{bottom:564.540000px;}
.y94{bottom:564.810000px;}
.y43{bottom:565.980000px;}
.y6c{bottom:569.220000px;}
.y13{bottom:582.090000px;}
.y93{bottom:582.360000px;}
.y126{bottom:586.590000px;}
.y6b{bottom:586.860000px;}
.y42{bottom:592.530000px;}
.y12{bottom:599.640000px;}
.y92{bottom:600.000000px;}
.y125{bottom:604.230000px;}
.y6a{bottom:604.410000px;}
.y11{bottom:617.280000px;}
.y91{bottom:617.550000px;}
.ye4{bottom:621.690000px;}
.y124{bottom:621.780000px;}
.y69{bottom:622.050000px;}
.y41{bottom:628.170000px;}
.yf0{bottom:634.740000px;}
.y10{bottom:634.830000px;}
.y90{bottom:635.190000px;}
.y68{bottom:639.600000px;}
.y40{bottom:643.110000px;}
.y123{bottom:648.330000px;}
.yf{bottom:652.470000px;}
.y8f{bottom:652.740000px;}
.y67{bottom:657.150000px;}
.y122{bottom:665.970000px;}
.ye{bottom:670.020000px;}
.y8e{bottom:670.290000px;}
.y3f{bottom:670.470000px;}
.y66{bottom:674.790000px;}
.y8d{bottom:687.930000px;}
.y121{bottom:692.520000px;}
.yd{bottom:696.930000px;}
.y3e{bottom:697.740000px;}
.y65{bottom:701.340000px;}
.y8c{bottom:705.480000px;}
.y120{bottom:710.160000px;}
.y3d{bottom:725.100000px;}
.yb2{bottom:731.400000px;}
.y8b{bottom:732.030000px;}
.y64{bottom:733.920000px;}
.y11f{bottom:736.710000px;}
.y10b{bottom:744.180000px;}
.yc{bottom:745.170000px;}
.y3c{bottom:752.460000px;}
.y11e{bottom:754.260000px;}
.y10a{bottom:761.730000px;}
.yd7{bottom:762.360000px;}
.y8a{bottom:765.060000px;}
.y63{bottom:768.840000px;}
.y109{bottom:779.280000px;}
.y37{bottom:779.820000px;}
.yb{bottom:780.810000px;}
.y11d{bottom:781.170000px;}
.y62{bottom:782.880000px;}
.y89{bottom:792.420000px;}
.y61{bottom:795.030000px;}
.y108{bottom:796.920000px;}
.yb1{bottom:797.640000px;}
.y39{bottom:807.090000px;}
.ya{bottom:816.630000px;}
.y88{bottom:819.690000px;}
.y60{bottom:822.390000px;}
.y11c{bottom:829.500000px;}
.y107{bottom:829.860000px;}
.yb0{bottom:833.280000px;}
.y87{bottom:847.050000px;}
.y5f{bottom:849.750000px;}
.yaf{bottom:850.830000px;}
.y36{bottom:855.780000px;}
.y9{bottom:856.410000px;}
.y106{bottom:857.220000px;}
.yae{bottom:868.380000px;}
.y8{bottom:874.410000px;}
.y5e{bottom:877.020000px;}
.y105{bottom:884.580000px;}
.yad{bottom:886.020000px;}
.y35{bottom:891.420000px;}
.y7{bottom:892.410000px;}
.y11b{bottom:893.760000px;}
.y86{bottom:901.680000px;}
.yac{bottom:903.570000px;}
.y5d{bottom:904.380000px;}
.y34{bottom:908.970000px;}
.y104{bottom:911.850000px;}
.y6{bottom:924.720000px;}
.y33{bottom:926.610000px;}
.y85{bottom:929.040000px;}
.yab{bottom:930.210000px;}
.y5c{bottom:931.740000px;}
.y103{bottom:939.210000px;}
.y11a{bottom:942.000000px;}
.y32{bottom:944.160000px;}
.y84{bottom:956.400000px;}
.y5b{bottom:959.100000px;}
.y119{bottom:959.550000px;}
.y5{bottom:962.970000px;}
.yaa{bottom:963.150000px;}
.y31{bottom:970.710000px;}
.y118{bottom:977.190000px;}
.y83{bottom:983.760000px;}
.y102{bottom:984.120000px;}
.y4{bottom:987.630000px;}
.ya9{bottom:990.510000px;}
.y117{bottom:994.740000px;}
.y30{bottom:1003.290000px;}
.y5a{bottom:1007.790000px;}
.y82{bottom:1011.060000px;}
.y101{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.ya8{bottom:1017.810000px;}
.y116{bottom:1029.960000px;}
.y13e{bottom:1034.370000px;}
.y81{bottom:1038.420000px;}
.yfe{bottom:1038.870000px;}
.y2f{bottom:1039.230000px;}
.y59{bottom:1043.370000px;}
.ya7{bottom:1045.170000px;}
.y13d{bottom:1051.920000px;}
.y115{bottom:1056.870000px;}
.y58{bottom:1060.920000px;}
.ya6{bottom:1072.530000px;}
.y57{bottom:1078.560000px;}
.y80{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y56{bottom:1096.110000px;}
.ya5{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y55{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.ya4{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.hc{height:26.640000px;}
.h1a{height:26.670000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.h10{height:44.100000px;}
.h1b{height:44.190000px;}
.h7{height:50.902383px;}
.hb{height:53.910000px;}
.h5{height:55.779258px;}
.h12{height:57.240000px;}
.ha{height:59.973223px;}
.h19{height:61.740000px;}
.h1c{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h15{height:74.880000px;}
.h13{height:391.440000px;}
.h17{height:483.870000px;}
.h18{height:519.060000px;}
.h16{height:532.110000px;}
.h11{height:554.160000px;}
.h14{height:571.800000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:52.200000px;}
.w1a{width:62.730000px;}
.w16{width:62.760000px;}
.wc{width:66.960000px;}
.wf{width:70.590000px;}
.w13{width:82.740000px;}
.w17{width:84.330000px;}
.w9{width:86.880000px;}
.w1d{width:101.790000px;}
.w7{width:104.850000px;}
.w8{width:108.540000px;}
.w4{width:115.650000px;}
.w12{width:116.550000px;}
.w1b{width:126.840000px;}
.w14{width:157.230000px;}
.w1e{width:162.450000px;}
.w18{width:169.380000px;}
.w5{width:176.070000px;}
.w10{width:187.920000px;}
.wd{width:200.430000px;}
.w6{width:214.110000px;}
.w11{width:228.630000px;}
.we{width:248.520000px;}
.wa{width:274.410000px;}
.w1c{width:299.010000px;}
.wb{width:321.420000px;}
.w19{width:358.950000px;}
.w15{width:385.590000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x39{left:12.960000px;}
.x1b{left:16.740000px;}
.x3a{left:18.000000px;}
.x3b{left:24.210000px;}
.x2d{left:25.500000px;}
.x10{left:26.730000px;}
.x29{left:29.640000px;}
.x34{left:31.530000px;}
.x17{left:33.570000px;}
.x31{left:35.670000px;}
.x14{left:37.710000px;}
.x8{left:39.600000px;}
.x1f{left:41.040000px;}
.xe{left:42.210000px;}
.xc{left:44.550000px;}
.xd{left:46.350000px;}
.x2b{left:49.950000px;}
.x3f{left:56.340000px;}
.x1d{left:60.210000px;}
.xa{left:63.000000px;}
.x35{left:66.600000px;}
.x1{left:68.040000px;}
.x32{left:70.740000px;}
.x24{left:75.869987px;}
.x13{left:77.610000px;}
.x41{left:81.809987px;}
.x42{left:83.879987px;}
.x2a{left:89.280000px;}
.x2c{left:91.530000px;}
.x11{left:97.200000px;}
.xf{left:104.490000px;}
.x23{left:106.140000px;}
.x36{left:107.820000px;}
.x43{left:111.239987px;}
.x22{left:114.420000px;}
.x20{left:115.950000px;}
.x21{left:120.090000px;}
.x25{left:126.089987px;}
.x2e{left:133.110000px;}
.x15{left:142.590000px;}
.x18{left:144.120000px;}
.x16{left:146.730000px;}
.x4{left:166.440000px;}
.x37{left:171.300000px;}
.x33{left:180.930000px;}
.x1a{left:187.950000px;}
.x2{left:192.719987px;}
.x19{left:196.679987px;}
.x26{left:215.040000px;}
.x2f{left:216.570000px;}
.x6{left:219.450000px;}
.x1c{left:255.630000px;}
.x3c{left:259.770000px;}
.x7{left:335.910000px;}
.x30{left:374.520000px;}
.x27{left:403.680000px;}
.x38{left:426.450000px;}
.x1e{left:456.870000px;}
.x12{left:467.310000px;}
.x9{left:512.700000px;}
.x3d{left:559.500000px;}
.xb{left:618.270000px;}
.x28{left:633.030000px;}
.x3e{left:662.010000px;}
.x40{left:767.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1e{letter-spacing:-0.277867pt;}
.ls16{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.ls23{letter-spacing:-0.111467pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.074133pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls1c{letter-spacing:-0.035840pt;}
.ls20{letter-spacing:-0.013120pt;}
.ls22{letter-spacing:-0.011840pt;}
.ls1f{letter-spacing:-0.009920pt;}
.ls27{letter-spacing:-0.008000pt;}
.lsc{letter-spacing:-0.007467pt;}
.ls21{letter-spacing:-0.006720pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.053760pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.058240pt;}
.ls6{letter-spacing:0.060800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.086933pt;}
.ls26{letter-spacing:0.087467pt;}
.lse{letter-spacing:0.100800pt;}
.ls12{letter-spacing:0.105067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.137067pt;}
.ls15{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.164907pt;}
.ls0{letter-spacing:11.864320pt;}
.ls25{letter-spacing:42.423680pt;}
.ls24{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.861867pt;}
.ws1b{word-spacing:-11.844267pt;}
.ws13{word-spacing:-11.843733pt;}
.ws5{word-spacing:-11.817600pt;}
.ws11{word-spacing:-11.810667pt;}
.ws14{word-spacing:-11.804160pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws18{word-spacing:-11.750080pt;}
.ws1c{word-spacing:-11.748800pt;}
.ws16{word-spacing:-11.746880pt;}
.ws19{word-spacing:-11.744960pt;}
.ws17{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.700267pt;}
.ws1a{word-spacing:-11.645333pt;}
.ws9{word-spacing:-11.590933pt;}
.ws15{word-spacing:-11.478933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.740267pt;}
.ws3{word-spacing:-7.603200pt;}
.ws10{word-spacing:-7.529067pt;}
.wsd{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._f{margin-left:-3.342401pt;}
._e{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.894422pt;}
._7{width:2.036092pt;}
._9{width:2.964267pt;}
._8{width:4.114666pt;}
._b{width:5.771734pt;}
._c{width:6.893867pt;}
._d{width:7.963946pt;}
._6{width:9.405333pt;}
._a{width:10.848534pt;}
._10{width:12.932480pt;}
._2{width:14.241109pt;}
._1{width:15.428267pt;}
._5{width:19.334773pt;}
._4{width:20.521387pt;}
._11{width:32.117440pt;}
._13{width:35.163520pt;}
._14{width:36.125440pt;}
._12{width:45.474880pt;}
._15{width:62.496107pt;}
._16{width:88.176000pt;}
._17{width:97.955520pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:2.960000pt;}
.ye3{bottom:3.040000pt;}
.y3b{bottom:6.960000pt;}
.y3a{bottom:7.040000pt;}
.y100{bottom:14.800000pt;}
.yd5{bottom:18.560000pt;}
.ye2{bottom:18.640000pt;}
.yb3{bottom:22.560000pt;}
.yd2{bottom:22.640000pt;}
.yff{bottom:30.400000pt;}
.y38{bottom:31.280000pt;}
.yd4{bottom:34.240000pt;}
.yd1{bottom:38.240000pt;}
.yfd{bottom:38.320000pt;}
.ye1{bottom:49.920000pt;}
.yee{bottom:53.840000pt;}
.yd0{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.ycf{bottom:69.520000pt;}
.ydc{bottom:85.120000pt;}
.yce{bottom:85.200000pt;}
.y1{bottom:89.066667pt;}
.ycd{bottom:100.800000pt;}
.ye0{bottom:101.546667pt;}
.yf5{bottom:102.186667pt;}
.yd3{bottom:105.306667pt;}
.y13c{bottom:105.546667pt;}
.y114{bottom:110.426667pt;}
.ya3{bottom:111.226667pt;}
.y54{bottom:111.786667pt;}
.ycc{bottom:116.400000pt;}
.yfc{bottom:116.480000pt;}
.y7f{bottom:117.786667pt;}
.y28{bottom:120.026667pt;}
.y13b{bottom:121.146667pt;}
.yef{bottom:121.866667pt;}
.y53{bottom:122.586667pt;}
.y113{bottom:126.026667pt;}
.yed{bottom:132.000000pt;}
.ycb{bottom:132.080000pt;}
.y7e{bottom:133.386667pt;}
.ya2{bottom:135.546667pt;}
.y27{bottom:135.626667pt;}
.y112{bottom:141.626667pt;}
.y13a{bottom:144.746667pt;}
.y52{bottom:146.906667pt;}
.yca{bottom:147.680000pt;}
.y7d{bottom:149.066667pt;}
.y26{bottom:151.306667pt;}
.yb4{bottom:156.826667pt;}
.y111{bottom:157.306667pt;}
.ya1{bottom:159.786667pt;}
.y139{bottom:160.426667pt;}
.yc9{bottom:163.280000pt;}
.yf4{bottom:163.360000pt;}
.y7c{bottom:164.666667pt;}
.y25{bottom:166.906667pt;}
.ydd{bottom:168.746667pt;}
.y51{bottom:171.226667pt;}
.y110{bottom:172.906667pt;}
.yc8{bottom:178.960000pt;}
.y7b{bottom:180.346667pt;}
.y24{bottom:182.506667pt;}
.y138{bottom:184.026667pt;}
.ya0{bottom:184.106667pt;}
.y10f{bottom:188.586667pt;}
.yc7{bottom:194.560000pt;}
.yfb{bottom:194.640000pt;}
.y50{bottom:195.546667pt;}
.y7a{bottom:195.946667pt;}
.y137{bottom:199.626667pt;}
.y9f{bottom:208.426667pt;}
.yec{bottom:210.160000pt;}
.yc6{bottom:210.240000pt;}
.y79{bottom:211.546667pt;}
.y23{bottom:214.186667pt;}
.y4f{bottom:219.786667pt;}
.y10e{bottom:220.186667pt;}
.y136{bottom:223.306667pt;}
.yc5{bottom:225.840000pt;}
.ydb{bottom:225.866667pt;}
.y22{bottom:229.786667pt;}
.y9e{bottom:232.746667pt;}
.y78{bottom:235.226667pt;}
.y10d{bottom:235.786667pt;}
.y135{bottom:238.906667pt;}
.yc4{bottom:241.440000pt;}
.yda{bottom:241.466667pt;}
.yf3{bottom:241.520000pt;}
.y4e{bottom:244.106667pt;}
.y21{bottom:245.466667pt;}
.y134{bottom:254.586667pt;}
.y9d{bottom:256.986667pt;}
.yc3{bottom:257.120000pt;}
.yd9{bottom:257.146667pt;}
.y20{bottom:261.066667pt;}
.y10c{bottom:264.426667pt;}
.y77{bottom:267.146667pt;}
.y4d{bottom:268.426667pt;}
.y133{bottom:270.186667pt;}
.yeb{bottom:272.720000pt;}
.yc2{bottom:272.746667pt;}
.yfa{bottom:272.800000pt;}
.y1f{bottom:276.666667pt;}
.y9c{bottom:281.306667pt;}
.yea{bottom:288.320000pt;}
.yd8{bottom:288.346667pt;}
.yf2{bottom:288.400000pt;}
.yc1{bottom:288.426667pt;}
.y1e{bottom:292.346667pt;}
.y4c{bottom:292.746667pt;}
.y132{bottom:293.786667pt;}
.ye9{bottom:304.000000pt;}
.yc0{bottom:304.026667pt;}
.y9b{bottom:305.626667pt;}
.y131{bottom:309.466667pt;}
.y76{bottom:310.026667pt;}
.y1d{bottom:316.266667pt;}
.y4b{bottom:316.986667pt;}
.ye8{bottom:319.600000pt;}
.ybf{bottom:319.626667pt;}
.yf1{bottom:319.680000pt;}
.yf9{bottom:319.706667pt;}
.y75{bottom:325.626667pt;}
.y9a{bottom:329.946667pt;}
.y130{bottom:333.066667pt;}
.ye7{bottom:335.280000pt;}
.ybe{bottom:335.306667pt;}
.y4a{bottom:341.306667pt;}
.y12f{bottom:348.746667pt;}
.ybd{bottom:350.906667pt;}
.yf8{bottom:350.986667pt;}
.y99{bottom:354.186667pt;}
.y74{bottom:356.906667pt;}
.y1c{bottom:359.466667pt;}
.y12e{bottom:364.346667pt;}
.y49{bottom:365.626667pt;}
.ye6{bottom:366.506667pt;}
.ybc{bottom:366.586667pt;}
.y73{bottom:372.586667pt;}
.y98{bottom:378.506667pt;}
.ybb{bottom:382.186667pt;}
.y12d{bottom:387.946667pt;}
.y72{bottom:388.186667pt;}
.y1b{bottom:392.346667pt;}
.yba{bottom:397.786667pt;}
.yf7{bottom:397.866667pt;}
.y97{bottom:402.826667pt;}
.y12c{bottom:403.626667pt;}
.y71{bottom:403.786667pt;}
.y1a{bottom:407.946667pt;}
.y48{bottom:408.906667pt;}
.ye5{bottom:413.386667pt;}
.yb9{bottom:413.466667pt;}
.y70{bottom:419.493333pt;}
.y19{bottom:423.653333pt;}
.y96{bottom:427.093333pt;}
.y12b{bottom:427.253333pt;}
.yb8{bottom:429.066667pt;}
.yf6{bottom:429.146667pt;}
.y6f{bottom:435.093333pt;}
.y18{bottom:439.253333pt;}
.y47{bottom:440.533333pt;}
.y12a{bottom:442.933333pt;}
.ydf{bottom:444.666667pt;}
.yb7{bottom:444.746667pt;}
.y17{bottom:454.933333pt;}
.y46{bottom:456.213333pt;}
.y6e{bottom:458.773333pt;}
.yb6{bottom:460.346667pt;}
.y129{bottom:466.533333pt;}
.y95{bottom:470.453333pt;}
.y16{bottom:470.533333pt;}
.y45{bottom:471.813333pt;}
.yb5{bottom:475.946667pt;}
.y128{bottom:482.133333pt;}
.y15{bottom:486.133333pt;}
.y44{bottom:487.413333pt;}
.y6d{bottom:490.373333pt;}
.yde{bottom:491.626667pt;}
.y127{bottom:497.813333pt;}
.y14{bottom:501.813333pt;}
.y94{bottom:502.053333pt;}
.y43{bottom:503.093333pt;}
.y6c{bottom:505.973333pt;}
.y13{bottom:517.413333pt;}
.y93{bottom:517.653333pt;}
.y126{bottom:521.413333pt;}
.y6b{bottom:521.653333pt;}
.y42{bottom:526.693333pt;}
.y12{bottom:533.013333pt;}
.y92{bottom:533.333333pt;}
.y125{bottom:537.093333pt;}
.y6a{bottom:537.253333pt;}
.y11{bottom:548.693333pt;}
.y91{bottom:548.933333pt;}
.ye4{bottom:552.613333pt;}
.y124{bottom:552.693333pt;}
.y69{bottom:552.933333pt;}
.y41{bottom:558.373333pt;}
.yf0{bottom:564.213333pt;}
.y10{bottom:564.293333pt;}
.y90{bottom:564.613333pt;}
.y68{bottom:568.533333pt;}
.y40{bottom:571.653333pt;}
.y123{bottom:576.293333pt;}
.yf{bottom:579.973333pt;}
.y8f{bottom:580.213333pt;}
.y67{bottom:584.133333pt;}
.y122{bottom:591.973333pt;}
.ye{bottom:595.573333pt;}
.y8e{bottom:595.813333pt;}
.y3f{bottom:595.973333pt;}
.y66{bottom:599.813333pt;}
.y8d{bottom:611.493333pt;}
.y121{bottom:615.573333pt;}
.yd{bottom:619.493333pt;}
.y3e{bottom:620.213333pt;}
.y65{bottom:623.413333pt;}
.y8c{bottom:627.093333pt;}
.y120{bottom:631.253333pt;}
.y3d{bottom:644.533333pt;}
.yb2{bottom:650.133333pt;}
.y8b{bottom:650.693333pt;}
.y64{bottom:652.373333pt;}
.y11f{bottom:654.853333pt;}
.y10b{bottom:661.493333pt;}
.yc{bottom:662.373333pt;}
.y3c{bottom:668.853333pt;}
.y11e{bottom:670.453333pt;}
.y10a{bottom:677.093333pt;}
.yd7{bottom:677.653333pt;}
.y8a{bottom:680.053333pt;}
.y63{bottom:683.413333pt;}
.y109{bottom:692.693333pt;}
.y37{bottom:693.173333pt;}
.yb{bottom:694.053333pt;}
.y11d{bottom:694.373333pt;}
.y62{bottom:695.893333pt;}
.y89{bottom:704.373333pt;}
.y61{bottom:706.693333pt;}
.y108{bottom:708.373333pt;}
.yb1{bottom:709.013333pt;}
.y39{bottom:717.413333pt;}
.ya{bottom:725.893333pt;}
.y88{bottom:728.613333pt;}
.y60{bottom:731.013333pt;}
.y11c{bottom:737.333333pt;}
.y107{bottom:737.653333pt;}
.yb0{bottom:740.693333pt;}
.y87{bottom:752.933333pt;}
.y5f{bottom:755.333333pt;}
.yaf{bottom:756.293333pt;}
.y36{bottom:760.693333pt;}
.y9{bottom:761.253333pt;}
.y106{bottom:761.973333pt;}
.yae{bottom:771.893333pt;}
.y8{bottom:777.253333pt;}
.y5e{bottom:779.573333pt;}
.y105{bottom:786.293333pt;}
.yad{bottom:787.573333pt;}
.y35{bottom:792.373333pt;}
.y7{bottom:793.253333pt;}
.y11b{bottom:794.453333pt;}
.y86{bottom:801.493333pt;}
.yac{bottom:803.173333pt;}
.y5d{bottom:803.893333pt;}
.y34{bottom:807.973333pt;}
.y104{bottom:810.533333pt;}
.y6{bottom:821.973333pt;}
.y33{bottom:823.653333pt;}
.y85{bottom:825.813333pt;}
.yab{bottom:826.853333pt;}
.y5c{bottom:828.213333pt;}
.y103{bottom:834.853333pt;}
.y11a{bottom:837.333333pt;}
.y32{bottom:839.253333pt;}
.y84{bottom:850.133333pt;}
.y5b{bottom:852.533333pt;}
.y119{bottom:852.933333pt;}
.y5{bottom:855.973333pt;}
.yaa{bottom:856.133333pt;}
.y31{bottom:862.853333pt;}
.y118{bottom:868.613333pt;}
.y83{bottom:874.453333pt;}
.y102{bottom:874.773333pt;}
.y4{bottom:877.893333pt;}
.ya9{bottom:880.453333pt;}
.y117{bottom:884.213333pt;}
.y30{bottom:891.813333pt;}
.y5a{bottom:895.813333pt;}
.y82{bottom:898.720000pt;}
.y101{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.ya8{bottom:904.720000pt;}
.y116{bottom:915.520000pt;}
.y13e{bottom:919.440000pt;}
.y81{bottom:923.040000pt;}
.yfe{bottom:923.440000pt;}
.y2f{bottom:923.760000pt;}
.y59{bottom:927.440000pt;}
.ya7{bottom:929.040000pt;}
.y13d{bottom:935.040000pt;}
.y115{bottom:939.440000pt;}
.y58{bottom:943.040000pt;}
.ya6{bottom:953.360000pt;}
.y57{bottom:958.720000pt;}
.y80{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y56{bottom:974.320000pt;}
.ya5{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y55{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.ya4{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.hc{height:23.680000pt;}
.h1a{height:23.706667pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.h10{height:39.200000pt;}
.h1b{height:39.280000pt;}
.h7{height:45.246562pt;}
.hb{height:47.920000pt;}
.h5{height:49.581562pt;}
.h12{height:50.880000pt;}
.ha{height:53.309531pt;}
.h19{height:54.880000pt;}
.h1c{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h15{height:66.560000pt;}
.h13{height:347.946667pt;}
.h17{height:430.106667pt;}
.h18{height:461.386667pt;}
.h16{height:472.986667pt;}
.h11{height:492.586667pt;}
.h14{height:508.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:46.400000pt;}
.w1a{width:55.760000pt;}
.w16{width:55.786667pt;}
.wc{width:59.520000pt;}
.wf{width:62.746667pt;}
.w13{width:73.546667pt;}
.w17{width:74.960000pt;}
.w9{width:77.226667pt;}
.w1d{width:90.480000pt;}
.w7{width:93.200000pt;}
.w8{width:96.480000pt;}
.w4{width:102.800000pt;}
.w12{width:103.600000pt;}
.w1b{width:112.746667pt;}
.w14{width:139.760000pt;}
.w1e{width:144.400000pt;}
.w18{width:150.560000pt;}
.w5{width:156.506667pt;}
.w10{width:167.040000pt;}
.wd{width:178.160000pt;}
.w6{width:190.320000pt;}
.w11{width:203.226667pt;}
.we{width:220.906667pt;}
.wa{width:243.920000pt;}
.w1c{width:265.786667pt;}
.wb{width:285.706667pt;}
.w19{width:319.066667pt;}
.w15{width:342.746667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x39{left:11.520000pt;}
.x1b{left:14.880000pt;}
.x3a{left:16.000000pt;}
.x3b{left:21.520000pt;}
.x2d{left:22.666667pt;}
.x10{left:23.760000pt;}
.x29{left:26.346667pt;}
.x34{left:28.026667pt;}
.x17{left:29.840000pt;}
.x31{left:31.706667pt;}
.x14{left:33.520000pt;}
.x8{left:35.200000pt;}
.x1f{left:36.480000pt;}
.xe{left:37.520000pt;}
.xc{left:39.600000pt;}
.xd{left:41.200000pt;}
.x2b{left:44.400000pt;}
.x3f{left:50.080000pt;}
.x1d{left:53.520000pt;}
.xa{left:56.000000pt;}
.x35{left:59.200000pt;}
.x1{left:60.480000pt;}
.x32{left:62.880000pt;}
.x24{left:67.439988pt;}
.x13{left:68.986667pt;}
.x41{left:72.719988pt;}
.x42{left:74.559988pt;}
.x2a{left:79.360000pt;}
.x2c{left:81.360000pt;}
.x11{left:86.400000pt;}
.xf{left:92.880000pt;}
.x23{left:94.346667pt;}
.x36{left:95.840000pt;}
.x43{left:98.879988pt;}
.x22{left:101.706667pt;}
.x20{left:103.066667pt;}
.x21{left:106.746667pt;}
.x25{left:112.079988pt;}
.x2e{left:118.320000pt;}
.x15{left:126.746667pt;}
.x18{left:128.106667pt;}
.x16{left:130.426667pt;}
.x4{left:147.946667pt;}
.x37{left:152.266667pt;}
.x33{left:160.826667pt;}
.x1a{left:167.066667pt;}
.x2{left:171.306655pt;}
.x19{left:174.826655pt;}
.x26{left:191.146667pt;}
.x2f{left:192.506667pt;}
.x6{left:195.066667pt;}
.x1c{left:227.226667pt;}
.x3c{left:230.906667pt;}
.x7{left:298.586667pt;}
.x30{left:332.906667pt;}
.x27{left:358.826667pt;}
.x38{left:379.066667pt;}
.x1e{left:406.106667pt;}
.x12{left:415.386667pt;}
.x9{left:455.733333pt;}
.x3d{left:497.333333pt;}
.xb{left:549.573333pt;}
.x28{left:562.693333pt;}
.x3e{left:588.453333pt;}
.x40{left:682.053322pt;}
.x3{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  