
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_18258574ce6108af62c4011a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0cc6211bef45c225bbeb0d6e.woff2')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_5746368e06c607e74cd7c003.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_139edce0c85a6829653e85f9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4b4cca1a71c87a6c3a564d92.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1abf94094500f5585e2a17cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1b9432c8b461c3d9652b1fbc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854492;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_8f0e615746ae76a647cbac79.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v2{vertical-align:18.000000px;}
.ls19{letter-spacing:-0.186600px;}
.ls1e{letter-spacing:-0.162000px;}
.ls20{letter-spacing:-0.153600px;}
.lsd{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.121200px;}
.ls27{letter-spacing:-0.114600px;}
.ls26{letter-spacing:-0.093000px;}
.lsc{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.084600px;}
.ls21{letter-spacing:-0.078000px;}
.ls23{letter-spacing:-0.063600px;}
.ls14{letter-spacing:-0.060600px;}
.lse{letter-spacing:-0.052800px;}
.ls10{letter-spacing:-0.008400px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005400px;}
.ls9{letter-spacing:0.014760px;}
.ls1f{letter-spacing:0.045360px;}
.ls1a{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls15{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.114480px;}
.ls17{letter-spacing:0.115800px;}
.lsb{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.174600px;}
.ls22{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.185520px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:2.613600px;}
.ls6{letter-spacing:3.866400px;}
.ls25{letter-spacing:47.726640px;}
.ls1c{letter-spacing:63.566640px;}
.ls24{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws2{word-spacing:-14.440800px;}
.wsf{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342200px;}
.wsa{word-spacing:-13.324800px;}
.wse{word-spacing:-13.279680px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.162800px;}
.ws11{word-spacing:-13.148400px;}
.ws13{word-spacing:-13.133400px;}
.ws14{word-spacing:-13.111800px;}
.ws10{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._2{margin-left:-3.816000px;}
._3{margin-left:-2.733941px;}
._0{margin-left:-1.110000px;}
._1{width:1.016652px;}
._5{width:3.006120px;}
._4{width:4.323840px;}
._9{width:5.771400px;}
._8{width:7.094400px;}
._a{width:9.018000px;}
._6{width:10.461000px;}
._7{width:11.639879px;}
._d{width:14.969880px;}
._1e{width:16.773480px;}
._1f{width:17.943600px;}
._b{width:19.178280px;}
._c{width:20.260440px;}
._25{width:21.943800px;}
._26{width:23.086080px;}
._1d{width:24.168240px;}
._1b{width:25.851600px;}
._28{width:26.993880px;}
._21{width:28.196280px;}
._19{width:31.803480px;}
._1c{width:33.126120px;}
._14{width:35.470800px;}
._2b{width:45.113760px;}
._2c{width:46.678320px;}
._13{width:48.209760px;}
._20{width:49.358520px;}
._2e{width:51.227628px;}
._24{width:52.785360px;}
._f{width:54.468720px;}
._15{width:56.753280px;}
._12{width:63.186120px;}
._2d{width:65.231748px;}
._22{width:66.372480px;}
._18{width:72.805320px;}
._23{width:100.701000px;}
._e{width:126.853200px;}
._27{width:139.237920px;}
._29{width:168.155640px;}
._2a{width:169.478280px;}
._10{width:173.987280px;}
._16{width:193.526280px;}
._1a{width:208.496160px;}
._17{width:218.055240px;}
._11{width:229.778640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs6{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y115{bottom:6.300000px;}
.y4e{bottom:7.830000px;}
.y4a{bottom:7.920000px;}
.ybd{bottom:12.330000px;}
.y114{bottom:23.940000px;}
.y53{bottom:25.380000px;}
.y4c{bottom:25.470000px;}
.y11c{bottom:27.000000px;}
.ybc{bottom:29.880000px;}
.y55{bottom:43.020000px;}
.ya9{bottom:43.110000px;}
.y119{bottom:44.460000px;}
.y9a{bottom:47.520000px;}
.yb0{bottom:47.550000px;}
.yba{bottom:47.610000px;}
.yae{bottom:56.550000px;}
.ya3{bottom:65.070000px;}
.y99{bottom:65.160000px;}
.y9f{bottom:65.190000px;}
.ya7{bottom:69.570000px;}
.yaf{bottom:69.600000px;}
.y2{bottom:73.380000px;}
.yb2{bottom:74.070000px;}
.yad{bottom:74.100000px;}
.y29{bottom:74.190000px;}
.y98{bottom:82.710000px;}
.y9e{bottom:82.740000px;}
.yb3{bottom:87.210000px;}
.ya6{bottom:91.710000px;}
.yac{bottom:91.740000px;}
.y95{bottom:96.210000px;}
.y1{bottom:101.640000px;}
.y97{bottom:104.760000px;}
.y9d{bottom:104.790000px;}
.yb9{bottom:104.850000px;}
.y4f{bottom:108.840000px;}
.ya5{bottom:109.260000px;}
.yab{bottom:109.290000px;}
.y94{bottom:113.760000px;}
.y125{bottom:120.360000px;}
.ya4{bottom:122.070000px;}
.yb8{bottom:122.400000px;}
.y9c{bottom:122.430000px;}
.yf9{bottom:124.770000px;}
.ya2{bottom:126.810000px;}
.yc2{bottom:126.840000px;}
.y96{bottom:126.900000px;}
.yc1{bottom:131.340000px;}
.y93{bottom:131.400000px;}
.y14c{bottom:134.310000px;}
.y124{bottom:137.910000px;}
.yf8{bottom:142.320000px;}
.ya1{bottom:144.450000px;}
.yb7{bottom:144.540000px;}
.y179{bottom:145.110000px;}
.y7e{bottom:146.190000px;}
.y92{bottom:148.950000px;}
.yc0{bottom:148.980000px;}
.yb6{bottom:149.040000px;}
.y4d{bottom:153.840000px;}
.y123{bottom:155.460000px;}
.y27{bottom:157.440000px;}
.yf7{bottom:159.960000px;}
.yc4{bottom:162.000000px;}
.y178{bottom:162.750000px;}
.y7d{bottom:163.740000px;}
.yc3{bottom:165.630000px;}
.ybf{bottom:166.530000px;}
.y91{bottom:166.590000px;}
.y14b{bottom:169.860000px;}
.y122{bottom:173.100000px;}
.y26{bottom:175.080000px;}
.yf6{bottom:177.510000px;}
.y4b{bottom:181.110000px;}
.y7c{bottom:182.190000px;}
.yb5{bottom:184.140000px;}
.y14a{bottom:187.500000px;}
.y177{bottom:189.300000px;}
.y121{bottom:190.650000px;}
.y25{bottom:192.630000px;}
.yf5{bottom:195.060000px;}
.y7b{bottom:199.740000px;}
.y176{bottom:206.850000px;}
.y120{bottom:208.290000px;}
.y24{bottom:210.270000px;}
.yf4{bottom:213.510000px;}
.y149{bottom:214.320000px;}
.y7a{bottom:218.190000px;}
.y11f{bottom:225.840000px;}
.y49{bottom:226.020000px;}
.yf3{bottom:231.060000px;}
.y175{bottom:233.490000px;}
.y79{bottom:235.740000px;}
.y23{bottom:245.820000px;}
.yf2{bottom:249.510000px;}
.ya0{bottom:250.860000px;}
.y174{bottom:251.040000px;}
.y148{bottom:251.670000px;}
.y11e{bottom:252.390000px;}
.y78{bottom:254.190000px;}
.y22{bottom:263.370000px;}
.yf1{bottom:267.960000px;}
.y77{bottom:271.740000px;}
.y48{bottom:274.800000px;}
.y173{bottom:277.680000px;}
.y21{bottom:281.010000px;}
.y11d{bottom:285.420000px;}
.yf0{bottom:285.510000px;}
.y76{bottom:290.190000px;}
.y172{bottom:295.230000px;}
.y20{bottom:298.560000px;}
.y147{bottom:300.000000px;}
.yef{bottom:303.060000px;}
.y75{bottom:307.740000px;}
.y11b{bottom:308.190000px;}
.y47{bottom:310.350000px;}
.y1f{bottom:316.200000px;}
.y146{bottom:317.550000px;}
.yee{bottom:320.610000px;}
.y171{bottom:321.780000px;}
.y46{bottom:327.900000px;}
.y74{bottom:335.190000px;}
.yed{bottom:339.060000px;}
.y170{bottom:339.420000px;}
.y1e{bottom:343.110000px;}
.y45{bottom:345.540000px;}
.ybe{bottom:347.160000px;}
.y11a{bottom:351.660000px;}
.y145{bottom:352.740000px;}
.yec{bottom:356.700000px;}
.y16f{bottom:356.970000px;}
.y44{bottom:363.090000px;}
.y73{bottom:370.830000px;}
.yeb{bottom:374.250000px;}
.y43{bottom:380.730000px;}
.y16e{bottom:383.610000px;}
.y144{bottom:388.290000px;}
.y72{bottom:388.380000px;}
.y1d{bottom:391.620000px;}
.yea{bottom:391.800000px;}
.y118{bottom:392.070000px;}
.y42{bottom:398.280000px;}
.y71{bottom:405.930000px;}
.y16d{bottom:410.160000px;}
.y9b{bottom:414.750000px;}
.ye9{bottom:419.250000px;}
.y143{bottom:423.480000px;}
.y70{bottom:424.380000px;}
.y16c{bottom:427.710000px;}
.y1c{bottom:428.700000px;}
.y41{bottom:433.830000px;}
.y142{bottom:441.120000px;}
.y6f{bottom:441.930000px;}
.y16b{bottom:445.350000px;}
.y1b{bottom:446.250000px;}
.y40{bottom:451.470000px;}
.ye8{bottom:454.800000px;}
.y141{bottom:458.670000px;}
.y6e{bottom:459.570000px;}
.y1a{bottom:463.890000px;}
.y3f{bottom:469.020000px;}
.y16a{bottom:471.930000px;}
.ye7{bottom:472.470000px;}
.y117{bottom:473.730000px;}
.y6d{bottom:477.150000px;}
.y19{bottom:481.470000px;}
.y3e{bottom:486.690000px;}
.y169{bottom:489.480000px;}
.ye6{bottom:490.020000px;}
.y140{bottom:494.250000px;}
.y6c{bottom:495.600000px;}
.y116{bottom:496.500000px;}
.y18{bottom:499.020000px;}
.ye5{bottom:507.660000px;}
.y13f{bottom:511.890000px;}
.y6b{bottom:513.150000px;}
.y168{bottom:516.120000px;}
.y17{bottom:516.660000px;}
.y3d{bottom:522.240000px;}
.ye4{bottom:525.210000px;}
.y13e{bottom:529.440000px;}
.y6a{bottom:530.700000px;}
.ybb{bottom:533.220000px;}
.y167{bottom:533.670000px;}
.y16{bottom:534.210000px;}
.y113{bottom:536.910000px;}
.y3c{bottom:539.790000px;}
.ye3{bottom:542.760000px;}
.y13d{bottom:547.080000px;}
.y166{bottom:551.310000px;}
.y15{bottom:551.850000px;}
.y90{bottom:556.620000px;}
.y3b{bottom:557.430000px;}
.y69{bottom:558.150000px;}
.ye2{bottom:560.400000px;}
.y13c{bottom:564.630000px;}
.y14{bottom:569.400000px;}
.y3a{bottom:574.980000px;}
.y165{bottom:577.860000px;}
.ye1{bottom:577.950000px;}
.y13{bottom:586.950000px;}
.y13b{bottom:591.540000px;}
.y39{bottom:592.530000px;}
.y68{bottom:593.790000px;}
.y164{bottom:595.410000px;}
.ye0{bottom:595.590000px;}
.y112{bottom:598.740000px;}
.y12{bottom:604.590000px;}
.y38{bottom:610.170000px;}
.y67{bottom:611.340000px;}
.y163{bottom:613.050000px;}
.ydf{bottom:613.140000px;}
.yb4{bottom:617.730000px;}
.y11{bottom:622.140000px;}
.y187{bottom:628.260000px;}
.y66{bottom:628.890000px;}
.y111{bottom:634.290000px;}
.y162{bottom:639.600000px;}
.yde{bottom:639.690000px;}
.y13a{bottom:639.780000px;}
.y37{bottom:645.720000px;}
.y65{bottom:647.340000px;}
.y10{bottom:649.050000px;}
.y110{bottom:651.930000px;}
.y186{bottom:654.810000px;}
.y161{bottom:657.240000px;}
.y139{bottom:657.420000px;}
.y64{bottom:664.890000px;}
.y10f{bottom:669.480000px;}
.y185{bottom:672.360000px;}
.y138{bottom:674.970000px;}
.ydd{bottom:675.330000px;}
.y36{bottom:677.940000px;}
.y63{bottom:682.440000px;}
.y160{bottom:683.790000px;}
.y10e{bottom:687.120000px;}
.y137{bottom:692.520000px;}
.ydc{bottom:692.880000px;}
.yf{bottom:697.290000px;}
.y184{bottom:699.000000px;}
.y62{bottom:700.890000px;}
.y15f{bottom:701.340000px;}
.y136{bottom:710.160000px;}
.ydb{bottom:710.520000px;}
.y183{bottom:716.550000px;}
.y61{bottom:718.530000px;}
.y10d{bottom:722.670000px;}
.y135{bottom:727.710000px;}
.y15e{bottom:727.980000px;}
.yda{bottom:728.070000px;}
.ye{bottom:733.110000px;}
.y182{bottom:734.190000px;}
.y60{bottom:736.080000px;}
.y10c{bottom:740.220000px;}
.y8f{bottom:742.650000px;}
.y15d{bottom:745.530000px;}
.yd9{bottom:745.620000px;}
.y134{bottom:754.350000px;}
.y5f{bottom:754.530000px;}
.y10b{bottom:757.860000px;}
.y181{bottom:760.740000px;}
.yd8{bottom:763.170000px;}
.yd{bottom:769.110000px;}
.y5e{bottom:772.080000px;}
.y10a{bottom:775.410000px;}
.y180{bottom:778.290000px;}
.yd7{bottom:781.620000px;}
.y5d{bottom:789.630000px;}
.y15c{bottom:789.720000px;}
.y133{bottom:789.900000px;}
.y8e{bottom:791.340000px;}
.y109{bottom:793.050000px;}
.yd6{bottom:799.260000px;}
.y17f{bottom:804.930000px;}
.y15b{bottom:807.270000px;}
.y132{bottom:807.450000px;}
.y5c{bottom:808.080000px;}
.yc{bottom:808.890000px;}
.y108{bottom:810.600000px;}
.yd5{bottom:816.810000px;}
.yb1{bottom:821.400000px;}
.y17e{bottom:822.480000px;}
.y15a{bottom:824.910000px;}
.y131{bottom:825.090000px;}
.y5b{bottom:825.630000px;}
.yb{bottom:826.890000px;}
.y8d{bottom:826.980000px;}
.yd4{bottom:834.450000px;}
.y130{bottom:842.640000px;}
.y5a{bottom:843.180000px;}
.y8c{bottom:844.530000px;}
.ya{bottom:844.890000px;}
.y107{bottom:846.150000px;}
.y17d{bottom:849.030000px;}
.y159{bottom:851.460000px;}
.yd3{bottom:852.000000px;}
.y12f{bottom:860.280000px;}
.y59{bottom:861.630000px;}
.y9{bottom:862.890000px;}
.y8b{bottom:862.980000px;}
.y106{bottom:863.790000px;}
.y17c{bottom:866.670000px;}
.y158{bottom:869.100000px;}
.yd2{bottom:869.550000px;}
.y12e{bottom:877.830000px;}
.y58{bottom:879.270000px;}
.y8a{bottom:880.530000px;}
.y8{bottom:880.890000px;}
.y105{bottom:881.340000px;}
.y17b{bottom:884.220000px;}
.y157{bottom:886.650000px;}
.yd1{bottom:887.100000px;}
.y12d{bottom:895.380000px;}
.y57{bottom:896.820000px;}
.y7{bottom:898.890000px;}
.yd0{bottom:905.550000px;}
.y104{bottom:907.890000px;}
.y35{bottom:910.860000px;}
.y156{bottom:913.200000px;}
.y89{bottom:916.440000px;}
.y12c{bottom:921.930000px;}
.ycf{bottom:923.190000px;}
.y56{bottom:924.270000px;}
.y34{bottom:928.410000px;}
.y155{bottom:930.840000px;}
.y6{bottom:931.200000px;}
.y88{bottom:934.890000px;}
.yce{bottom:940.740000px;}
.y103{bottom:943.530000px;}
.y33{bottom:945.960000px;}
.y5{bottom:950.550000px;}
.y87{bottom:952.440000px;}
.y12b{bottom:954.600000px;}
.y54{bottom:957.210000px;}
.y154{bottom:957.390000px;}
.ycd{bottom:958.380000px;}
.y32{bottom:963.600000px;}
.yaa{bottom:967.740000px;}
.y4{bottom:970.260000px;}
.y86{bottom:970.890000px;}
.y17a{bottom:972.600000px;}
.y153{bottom:975.030000px;}
.ycc{bottom:975.930000px;}
.y102{bottom:979.080000px;}
.y31{bottom:981.150000px;}
.y85{bottom:988.530000px;}
.y12a{bottom:990.150000px;}
.y152{bottom:992.580000px;}
.ycb{bottom:994.380000px;}
.y30{bottom:998.790000px;}
.y84{bottom:1006.080000px;}
.y129{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.yca{bottom:1011.960000px;}
.y101{bottom:1014.660000px;}
.y151{bottom:1019.160000px;}
.y52{bottom:1019.790000px;}
.y83{bottom:1024.560000px;}
.y128{bottom:1025.370000px;}
.yc9{bottom:1029.510000px;}
.y100{bottom:1033.110000px;}
.y2f{bottom:1034.370000px;}
.y150{bottom:1036.800000px;}
.y82{bottom:1042.110000px;}
.y127{bottom:1042.920000px;}
.yc8{bottom:1047.150000px;}
.yff{bottom:1050.750000px;}
.y2e{bottom:1051.920000px;}
.y81{bottom:1059.660000px;}
.y126{bottom:1060.560000px;}
.y14f{bottom:1063.710000px;}
.y51{bottom:1064.700000px;}
.yfe{bottom:1068.300000px;}
.y2d{bottom:1069.560000px;}
.yc7{bottom:1082.250000px;}
.yfd{bottom:1086.750000px;}
.y2c{bottom:1087.110000px;}
.y80{bottom:1096.110000px;}
.ya8{bottom:1096.470000px;}
.yc6{bottom:1099.800000px;}
.yfc{bottom:1104.300000px;}
.y50{bottom:1109.610000px;}
.y14e{bottom:1111.950000px;}
.y7f{bottom:1113.750000px;}
.yfb{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.yc5{bottom:1127.610000px;}
.y14d{bottom:1138.860000px;}
.yfa{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h1d{height:22.050000px;}
.hb{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h7{height:35.782383px;}
.h3{height:38.100586px;}
.h1c{height:39.690000px;}
.h1f{height:42.750000px;}
.hc{height:44.100000px;}
.ha{height:44.190000px;}
.h8{height:50.902383px;}
.h6{height:55.779258px;}
.h14{height:57.330000px;}
.h20{height:59.973223px;}
.h5{height:60.960938px;}
.hd{height:61.770000px;}
.hf{height:61.793886px;}
.he{height:62.585859px;}
.h1b{height:68.582109px;}
.h4{height:71.019492px;}
.h1e{height:80.850000px;}
.h18{height:83.790000px;}
.h13{height:127.980000px;}
.h15{height:128.010000px;}
.h11{height:141.150000px;}
.h16{height:145.530000px;}
.h12{height:163.170000px;}
.h1a{height:180.720000px;}
.h19{height:185.250000px;}
.h10{height:185.310000px;}
.h17{height:202.860000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:118.560000px;}
.w8{width:150.060000px;}
.w7{width:150.300000px;}
.w6{width:154.710000px;}
.w5{width:160.860000px;}
.w4{width:168.390000px;}
.wa{width:177.660000px;}
.wb{width:182.370000px;}
.w9{width:426.540000px;}
.wc{width:572.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xb{left:95.039987px;}
.x10{left:111.239987px;}
.xc{left:122.039987px;}
.x7{left:188.040000px;}
.x2{left:202.799987px;}
.xd{left:219.540000px;}
.xf{left:252.659987px;}
.x5{left:345.629987px;}
.x8{left:357.150000px;}
.x9{left:518.730000px;}
.x4{left:628.889987px;}
.xe{left:646.800000px;}
.xa{left:674.160000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v2{vertical-align:16.000000pt;}
.ls19{letter-spacing:-0.165867pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls20{letter-spacing:-0.136533pt;}
.lsd{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls27{letter-spacing:-0.101867pt;}
.ls26{letter-spacing:-0.082667pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.075200pt;}
.ls21{letter-spacing:-0.069333pt;}
.ls23{letter-spacing:-0.056533pt;}
.ls14{letter-spacing:-0.053867pt;}
.lse{letter-spacing:-0.046933pt;}
.ls10{letter-spacing:-0.007467pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004800pt;}
.ls9{letter-spacing:0.013120pt;}
.ls1f{letter-spacing:0.040320pt;}
.ls1a{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls15{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.101760pt;}
.ls17{letter-spacing:0.102933pt;}
.lsb{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.155200pt;}
.ls22{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.164907pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:2.323200pt;}
.ls6{letter-spacing:3.436800pt;}
.ls25{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:56.503680pt;}
.ls24{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws2{word-spacing:-12.836267pt;}
.wsf{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.859733pt;}
.wsa{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.804160pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.700267pt;}
.ws11{word-spacing:-11.687467pt;}
.ws13{word-spacing:-11.674133pt;}
.ws14{word-spacing:-11.654933pt;}
.ws10{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._2{margin-left:-3.392000pt;}
._3{margin-left:-2.430170pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.903690pt;}
._5{width:2.672107pt;}
._4{width:3.843413pt;}
._9{width:5.130133pt;}
._8{width:6.306134pt;}
._a{width:8.016000pt;}
._6{width:9.298667pt;}
._7{width:10.346559pt;}
._d{width:13.306560pt;}
._1e{width:14.909760pt;}
._1f{width:15.949867pt;}
._b{width:17.047360pt;}
._c{width:18.009280pt;}
._25{width:19.505600pt;}
._26{width:20.520960pt;}
._1d{width:21.482880pt;}
._1b{width:22.979200pt;}
._28{width:23.994560pt;}
._21{width:25.063360pt;}
._19{width:28.269760pt;}
._1c{width:29.445440pt;}
._14{width:31.529600pt;}
._2b{width:40.101120pt;}
._2c{width:41.491840pt;}
._13{width:42.853120pt;}
._20{width:43.874240pt;}
._2e{width:45.535670pt;}
._24{width:46.920320pt;}
._f{width:48.416640pt;}
._15{width:50.447360pt;}
._12{width:56.165440pt;}
._2d{width:57.983776pt;}
._22{width:58.997760pt;}
._18{width:64.715840pt;}
._23{width:89.512000pt;}
._e{width:112.758400pt;}
._27{width:123.767040pt;}
._29{width:149.471680pt;}
._2a{width:150.647360pt;}
._10{width:154.655360pt;}
._16{width:172.023360pt;}
._1a{width:185.329920pt;}
._17{width:193.826880pt;}
._11{width:204.247680pt;}
.fs0{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs6{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:5.600000pt;}
.y4e{bottom:6.960000pt;}
.y4a{bottom:7.040000pt;}
.ybd{bottom:10.960000pt;}
.y114{bottom:21.280000pt;}
.y53{bottom:22.560000pt;}
.y4c{bottom:22.640000pt;}
.y11c{bottom:24.000000pt;}
.ybc{bottom:26.560000pt;}
.y55{bottom:38.240000pt;}
.ya9{bottom:38.320000pt;}
.y119{bottom:39.520000pt;}
.y9a{bottom:42.240000pt;}
.yb0{bottom:42.266667pt;}
.yba{bottom:42.320000pt;}
.yae{bottom:50.266667pt;}
.ya3{bottom:57.840000pt;}
.y99{bottom:57.920000pt;}
.y9f{bottom:57.946667pt;}
.ya7{bottom:61.840000pt;}
.yaf{bottom:61.866667pt;}
.y2{bottom:65.226667pt;}
.yb2{bottom:65.840000pt;}
.yad{bottom:65.866667pt;}
.y29{bottom:65.946667pt;}
.y98{bottom:73.520000pt;}
.y9e{bottom:73.546667pt;}
.yb3{bottom:77.520000pt;}
.ya6{bottom:81.520000pt;}
.yac{bottom:81.546667pt;}
.y95{bottom:85.520000pt;}
.y1{bottom:90.346667pt;}
.y97{bottom:93.120000pt;}
.y9d{bottom:93.146667pt;}
.yb9{bottom:93.200000pt;}
.y4f{bottom:96.746667pt;}
.ya5{bottom:97.120000pt;}
.yab{bottom:97.146667pt;}
.y94{bottom:101.120000pt;}
.y125{bottom:106.986667pt;}
.ya4{bottom:108.506667pt;}
.yb8{bottom:108.800000pt;}
.y9c{bottom:108.826667pt;}
.yf9{bottom:110.906667pt;}
.ya2{bottom:112.720000pt;}
.yc2{bottom:112.746667pt;}
.y96{bottom:112.800000pt;}
.yc1{bottom:116.746667pt;}
.y93{bottom:116.800000pt;}
.y14c{bottom:119.386667pt;}
.y124{bottom:122.586667pt;}
.yf8{bottom:126.506667pt;}
.ya1{bottom:128.400000pt;}
.yb7{bottom:128.480000pt;}
.y179{bottom:128.986667pt;}
.y7e{bottom:129.946667pt;}
.y92{bottom:132.400000pt;}
.yc0{bottom:132.426667pt;}
.yb6{bottom:132.480000pt;}
.y4d{bottom:136.746667pt;}
.y123{bottom:138.186667pt;}
.y27{bottom:139.946667pt;}
.yf7{bottom:142.186667pt;}
.yc4{bottom:144.000000pt;}
.y178{bottom:144.666667pt;}
.y7d{bottom:145.546667pt;}
.yc3{bottom:147.226667pt;}
.ybf{bottom:148.026667pt;}
.y91{bottom:148.080000pt;}
.y14b{bottom:150.986667pt;}
.y122{bottom:153.866667pt;}
.y26{bottom:155.626667pt;}
.yf6{bottom:157.786667pt;}
.y4b{bottom:160.986667pt;}
.y7c{bottom:161.946667pt;}
.yb5{bottom:163.680000pt;}
.y14a{bottom:166.666667pt;}
.y177{bottom:168.266667pt;}
.y121{bottom:169.466667pt;}
.y25{bottom:171.226667pt;}
.yf5{bottom:173.386667pt;}
.y7b{bottom:177.546667pt;}
.y176{bottom:183.866667pt;}
.y120{bottom:185.146667pt;}
.y24{bottom:186.906667pt;}
.yf4{bottom:189.786667pt;}
.y149{bottom:190.506667pt;}
.y7a{bottom:193.946667pt;}
.y11f{bottom:200.746667pt;}
.y49{bottom:200.906667pt;}
.yf3{bottom:205.386667pt;}
.y175{bottom:207.546667pt;}
.y79{bottom:209.546667pt;}
.y23{bottom:218.506667pt;}
.yf2{bottom:221.786667pt;}
.ya0{bottom:222.986667pt;}
.y174{bottom:223.146667pt;}
.y148{bottom:223.706667pt;}
.y11e{bottom:224.346667pt;}
.y78{bottom:225.946667pt;}
.y22{bottom:234.106667pt;}
.yf1{bottom:238.186667pt;}
.y77{bottom:241.546667pt;}
.y48{bottom:244.266667pt;}
.y173{bottom:246.826667pt;}
.y21{bottom:249.786667pt;}
.y11d{bottom:253.706667pt;}
.yf0{bottom:253.786667pt;}
.y76{bottom:257.946667pt;}
.y172{bottom:262.426667pt;}
.y20{bottom:265.386667pt;}
.y147{bottom:266.666667pt;}
.yef{bottom:269.386667pt;}
.y75{bottom:273.546667pt;}
.y11b{bottom:273.946667pt;}
.y47{bottom:275.866667pt;}
.y1f{bottom:281.066667pt;}
.y146{bottom:282.266667pt;}
.yee{bottom:284.986667pt;}
.y171{bottom:286.026667pt;}
.y46{bottom:291.466667pt;}
.y74{bottom:297.946667pt;}
.yed{bottom:301.386667pt;}
.y170{bottom:301.706667pt;}
.y1e{bottom:304.986667pt;}
.y45{bottom:307.146667pt;}
.ybe{bottom:308.586667pt;}
.y11a{bottom:312.586667pt;}
.y145{bottom:313.546667pt;}
.yec{bottom:317.066667pt;}
.y16f{bottom:317.306667pt;}
.y44{bottom:322.746667pt;}
.y73{bottom:329.626667pt;}
.yeb{bottom:332.666667pt;}
.y43{bottom:338.426667pt;}
.y16e{bottom:340.986667pt;}
.y144{bottom:345.146667pt;}
.y72{bottom:345.226667pt;}
.y1d{bottom:348.106667pt;}
.yea{bottom:348.266667pt;}
.y118{bottom:348.506667pt;}
.y42{bottom:354.026667pt;}
.y71{bottom:360.826667pt;}
.y16d{bottom:364.586667pt;}
.y9b{bottom:368.666667pt;}
.ye9{bottom:372.666667pt;}
.y143{bottom:376.426667pt;}
.y70{bottom:377.226667pt;}
.y16c{bottom:380.186667pt;}
.y1c{bottom:381.066667pt;}
.y41{bottom:385.626667pt;}
.y142{bottom:392.106667pt;}
.y6f{bottom:392.826667pt;}
.y16b{bottom:395.866667pt;}
.y1b{bottom:396.666667pt;}
.y40{bottom:401.306667pt;}
.ye8{bottom:404.266667pt;}
.y141{bottom:407.706667pt;}
.y6e{bottom:408.506667pt;}
.y1a{bottom:412.346667pt;}
.y3f{bottom:416.906667pt;}
.y16a{bottom:419.493333pt;}
.ye7{bottom:419.973333pt;}
.y117{bottom:421.093333pt;}
.y6d{bottom:424.133333pt;}
.y19{bottom:427.973333pt;}
.y3e{bottom:432.613333pt;}
.y169{bottom:435.093333pt;}
.ye6{bottom:435.573333pt;}
.y140{bottom:439.333333pt;}
.y6c{bottom:440.533333pt;}
.y116{bottom:441.333333pt;}
.y18{bottom:443.573333pt;}
.ye5{bottom:451.253333pt;}
.y13f{bottom:455.013333pt;}
.y6b{bottom:456.133333pt;}
.y168{bottom:458.773333pt;}
.y17{bottom:459.253333pt;}
.y3d{bottom:464.213333pt;}
.ye4{bottom:466.853333pt;}
.y13e{bottom:470.613333pt;}
.y6a{bottom:471.733333pt;}
.ybb{bottom:473.973333pt;}
.y167{bottom:474.373333pt;}
.y16{bottom:474.853333pt;}
.y113{bottom:477.253333pt;}
.y3c{bottom:479.813333pt;}
.ye3{bottom:482.453333pt;}
.y13d{bottom:486.293333pt;}
.y166{bottom:490.053333pt;}
.y15{bottom:490.533333pt;}
.y90{bottom:494.773333pt;}
.y3b{bottom:495.493333pt;}
.y69{bottom:496.133333pt;}
.ye2{bottom:498.133333pt;}
.y13c{bottom:501.893333pt;}
.y14{bottom:506.133333pt;}
.y3a{bottom:511.093333pt;}
.y165{bottom:513.653333pt;}
.ye1{bottom:513.733333pt;}
.y13{bottom:521.733333pt;}
.y13b{bottom:525.813333pt;}
.y39{bottom:526.693333pt;}
.y68{bottom:527.813333pt;}
.y164{bottom:529.253333pt;}
.ye0{bottom:529.413333pt;}
.y112{bottom:532.213333pt;}
.y12{bottom:537.413333pt;}
.y38{bottom:542.373333pt;}
.y67{bottom:543.413333pt;}
.y163{bottom:544.933333pt;}
.ydf{bottom:545.013333pt;}
.yb4{bottom:549.093333pt;}
.y11{bottom:553.013333pt;}
.y187{bottom:558.453333pt;}
.y66{bottom:559.013333pt;}
.y111{bottom:563.813333pt;}
.y162{bottom:568.533333pt;}
.yde{bottom:568.613333pt;}
.y13a{bottom:568.693333pt;}
.y37{bottom:573.973333pt;}
.y65{bottom:575.413333pt;}
.y10{bottom:576.933333pt;}
.y110{bottom:579.493333pt;}
.y186{bottom:582.053333pt;}
.y161{bottom:584.213333pt;}
.y139{bottom:584.373333pt;}
.y64{bottom:591.013333pt;}
.y10f{bottom:595.093333pt;}
.y185{bottom:597.653333pt;}
.y138{bottom:599.973333pt;}
.ydd{bottom:600.293333pt;}
.y36{bottom:602.613333pt;}
.y63{bottom:606.613333pt;}
.y160{bottom:607.813333pt;}
.y10e{bottom:610.773333pt;}
.y137{bottom:615.573333pt;}
.ydc{bottom:615.893333pt;}
.yf{bottom:619.813333pt;}
.y184{bottom:621.333333pt;}
.y62{bottom:623.013333pt;}
.y15f{bottom:623.413333pt;}
.y136{bottom:631.253333pt;}
.ydb{bottom:631.573333pt;}
.y183{bottom:636.933333pt;}
.y61{bottom:638.693333pt;}
.y10d{bottom:642.373333pt;}
.y135{bottom:646.853333pt;}
.y15e{bottom:647.093333pt;}
.yda{bottom:647.173333pt;}
.ye{bottom:651.653333pt;}
.y182{bottom:652.613333pt;}
.y60{bottom:654.293333pt;}
.y10c{bottom:657.973333pt;}
.y8f{bottom:660.133333pt;}
.y15d{bottom:662.693333pt;}
.yd9{bottom:662.773333pt;}
.y134{bottom:670.533333pt;}
.y5f{bottom:670.693333pt;}
.y10b{bottom:673.653333pt;}
.y181{bottom:676.213333pt;}
.yd8{bottom:678.373333pt;}
.yd{bottom:683.653333pt;}
.y5e{bottom:686.293333pt;}
.y10a{bottom:689.253333pt;}
.y180{bottom:691.813333pt;}
.yd7{bottom:694.773333pt;}
.y5d{bottom:701.893333pt;}
.y15c{bottom:701.973333pt;}
.y133{bottom:702.133333pt;}
.y8e{bottom:703.413333pt;}
.y109{bottom:704.933333pt;}
.yd6{bottom:710.453333pt;}
.y17f{bottom:715.493333pt;}
.y15b{bottom:717.573333pt;}
.y132{bottom:717.733333pt;}
.y5c{bottom:718.293333pt;}
.yc{bottom:719.013333pt;}
.y108{bottom:720.533333pt;}
.yd5{bottom:726.053333pt;}
.yb1{bottom:730.133333pt;}
.y17e{bottom:731.093333pt;}
.y15a{bottom:733.253333pt;}
.y131{bottom:733.413333pt;}
.y5b{bottom:733.893333pt;}
.yb{bottom:735.013333pt;}
.y8d{bottom:735.093333pt;}
.yd4{bottom:741.733333pt;}
.y130{bottom:749.013333pt;}
.y5a{bottom:749.493333pt;}
.y8c{bottom:750.693333pt;}
.ya{bottom:751.013333pt;}
.y107{bottom:752.133333pt;}
.y17d{bottom:754.693333pt;}
.y159{bottom:756.853333pt;}
.yd3{bottom:757.333333pt;}
.y12f{bottom:764.693333pt;}
.y59{bottom:765.893333pt;}
.y9{bottom:767.013333pt;}
.y8b{bottom:767.093333pt;}
.y106{bottom:767.813333pt;}
.y17c{bottom:770.373333pt;}
.y158{bottom:772.533333pt;}
.yd2{bottom:772.933333pt;}
.y12e{bottom:780.293333pt;}
.y58{bottom:781.573333pt;}
.y8a{bottom:782.693333pt;}
.y8{bottom:783.013333pt;}
.y105{bottom:783.413333pt;}
.y17b{bottom:785.973333pt;}
.y157{bottom:788.133333pt;}
.yd1{bottom:788.533333pt;}
.y12d{bottom:795.893333pt;}
.y57{bottom:797.173333pt;}
.y7{bottom:799.013333pt;}
.yd0{bottom:804.933333pt;}
.y104{bottom:807.013333pt;}
.y35{bottom:809.653333pt;}
.y156{bottom:811.733333pt;}
.y89{bottom:814.613333pt;}
.y12c{bottom:819.493333pt;}
.ycf{bottom:820.613333pt;}
.y56{bottom:821.573333pt;}
.y34{bottom:825.253333pt;}
.y155{bottom:827.413333pt;}
.y6{bottom:827.733333pt;}
.y88{bottom:831.013333pt;}
.yce{bottom:836.213333pt;}
.y103{bottom:838.693333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:844.933333pt;}
.y87{bottom:846.613333pt;}
.y12b{bottom:848.533333pt;}
.y54{bottom:850.853333pt;}
.y154{bottom:851.013333pt;}
.ycd{bottom:851.893333pt;}
.y32{bottom:856.533333pt;}
.yaa{bottom:860.213333pt;}
.y4{bottom:862.453333pt;}
.y86{bottom:863.013333pt;}
.y17a{bottom:864.533333pt;}
.y153{bottom:866.693333pt;}
.ycc{bottom:867.493333pt;}
.y102{bottom:870.293333pt;}
.y31{bottom:872.133333pt;}
.y85{bottom:878.693333pt;}
.y12a{bottom:880.133333pt;}
.y152{bottom:882.293333pt;}
.ycb{bottom:883.893333pt;}
.y30{bottom:887.813333pt;}
.y84{bottom:894.293333pt;}
.y129{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.yca{bottom:899.520000pt;}
.y101{bottom:901.920000pt;}
.y151{bottom:905.920000pt;}
.y52{bottom:906.480000pt;}
.y83{bottom:910.720000pt;}
.y128{bottom:911.440000pt;}
.yc9{bottom:915.120000pt;}
.y100{bottom:918.320000pt;}
.y2f{bottom:919.440000pt;}
.y150{bottom:921.600000pt;}
.y82{bottom:926.320000pt;}
.y127{bottom:927.040000pt;}
.yc8{bottom:930.800000pt;}
.yff{bottom:934.000000pt;}
.y2e{bottom:935.040000pt;}
.y81{bottom:941.920000pt;}
.y126{bottom:942.720000pt;}
.y14f{bottom:945.520000pt;}
.y51{bottom:946.400000pt;}
.yfe{bottom:949.600000pt;}
.y2d{bottom:950.720000pt;}
.yc7{bottom:962.000000pt;}
.yfd{bottom:966.000000pt;}
.y2c{bottom:966.320000pt;}
.y80{bottom:974.320000pt;}
.ya8{bottom:974.640000pt;}
.yc6{bottom:977.600000pt;}
.yfc{bottom:981.600000pt;}
.y50{bottom:986.320000pt;}
.y14e{bottom:988.400000pt;}
.y7f{bottom:990.000000pt;}
.yfb{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.yc5{bottom:1002.320000pt;}
.y14d{bottom:1012.320000pt;}
.yfa{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h1d{height:19.600000pt;}
.hb{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h7{height:31.806563pt;}
.h3{height:33.867188pt;}
.h1c{height:35.280000pt;}
.h1f{height:38.000000pt;}
.hc{height:39.200000pt;}
.ha{height:39.280000pt;}
.h8{height:45.246562pt;}
.h6{height:49.581562pt;}
.h14{height:50.960000pt;}
.h20{height:53.309531pt;}
.h5{height:54.187500pt;}
.hd{height:54.906667pt;}
.hf{height:54.927899pt;}
.he{height:55.631875pt;}
.h1b{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1e{height:71.866667pt;}
.h18{height:74.480000pt;}
.h13{height:113.760000pt;}
.h15{height:113.786667pt;}
.h11{height:125.466667pt;}
.h16{height:129.360000pt;}
.h12{height:145.040000pt;}
.h1a{height:160.640000pt;}
.h19{height:164.666667pt;}
.h10{height:164.720000pt;}
.h17{height:180.320000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:105.386667pt;}
.w8{width:133.386667pt;}
.w7{width:133.600000pt;}
.w6{width:137.520000pt;}
.w5{width:142.986667pt;}
.w4{width:149.680000pt;}
.wa{width:157.920000pt;}
.wb{width:162.106667pt;}
.w9{width:379.146667pt;}
.wc{width:508.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xb{left:84.479988pt;}
.x10{left:98.879988pt;}
.xc{left:108.479988pt;}
.x7{left:167.146667pt;}
.x2{left:180.266655pt;}
.xd{left:195.146667pt;}
.xf{left:224.586655pt;}
.x5{left:307.226655pt;}
.x8{left:317.466667pt;}
.x9{left:461.093333pt;}
.x4{left:559.013322pt;}
.xe{left:574.933333pt;}
.xa{left:599.253333pt;}
.x3{left:704.053322pt;}
}




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