
    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_b8c327195112a0643c21cae7.woff')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_a4fc42f8feb2cd00116324a2.woff')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_0fa3edfc6617a1fa3e8344fd.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_f96a067d478a26bcd59749f2.woff')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_f93e4d34ab20b7460dc1ca4e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6d9940ff5e562fb820931721.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_8e8665395ea7c5727539e258.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_025e113de0af976b29cff18b.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.399000px;}
.ls15{letter-spacing:-0.339600px;}
.ls12{letter-spacing:-0.291600px;}
.ls11{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.lsc{letter-spacing:-0.063600px;}
.ls1c{letter-spacing:-0.038880px;}
.ls19{letter-spacing:-0.037800px;}
.ls18{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.lsd{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.088800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.116400px;}
.ls1e{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls1f{letter-spacing:47.726640px;}
.ls1d{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;}
}
.wsb{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.542400px;}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.ws6{word-spacing:-13.275600px;}
.wsd{word-spacing:-13.275360px;}
.ws12{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.211640px;}
.ws14{word-spacing:-13.188600px;}
.ws16{word-spacing:-13.187520px;}
.ws7{word-spacing:-13.162800px;}
.ws15{word-spacing:-13.065600px;}
.wsa{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._13{margin-left:-4.208400px;}
._d{margin-left:-3.126000px;}
._f{margin-left:-2.116321px;}
._0{margin-left:-1.110000px;}
._1{width:1.388280px;}
._2{width:3.366600px;}
._a{width:4.702367px;}
._9{width:6.192588px;}
._e{width:7.273823px;}
._4{width:8.356800px;}
._5{width:9.738598px;}
._7{width:11.603400px;}
._3{width:14.428800px;}
._8{width:15.751200px;}
._6{width:17.074200px;}
._b{width:18.396600px;}
._c{width:19.600202px;}
._12{width:20.940221px;}
._16{width:22.677361px;}
._14{width:23.747400px;}
._15{width:25.142281px;}
._1f{width:26.236077px;}
._17{width:27.835560px;}
._18{width:29.350681px;}
._11{width:31.049760px;}
._10{width:32.296561px;}
._27{width:34.148160px;}
._23{width:37.627560px;}
._31{width:40.017720px;}
._2a{width:43.076160px;}
._28{width:44.097840px;}
._29{width:45.280801px;}
._2c{width:47.524680px;}
._2d{width:48.848040px;}
._22{width:56.392560px;}
._21{width:57.414600px;}
._26{width:61.382520px;}
._2f{width:63.450360px;}
._30{width:64.521360px;}
._1a{width:90.180000px;}
._1b{width:93.546720px;}
._24{width:100.941480px;}
._1d{width:134.668800px;}
._1c{width:136.953360px;}
._25{width:148.857120px;}
._19{width:164.307960px;}
._1e{width:231.702480px;}
._20{width:236.969280px;}
._32{width:263.025000px;}
._2e{width:312.943080px;}
._2b{width:1102.901400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:7.830000px;}
.y61{bottom:7.920000px;}
.yd9{bottom:16.650000px;}
.yde{bottom:25.380000px;}
.yd8{bottom:25.470000px;}
.ydb{bottom:25.500000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ye7{bottom:115.770000px;}
.y89{bottom:116.220000px;}
.y5b{bottom:121.980000px;}
.ya7{bottom:124.950000px;}
.ye6{bottom:133.320000px;}
.y88{bottom:133.770000px;}
.y5a{bottom:139.530000px;}
.y26{bottom:142.320000px;}
.ya6{bottom:142.500000px;}
.yc5{bottom:142.950000px;}
.ye5{bottom:150.870000px;}
.y87{bottom:151.410000px;}
.y108{bottom:154.020000px;}
.y59{bottom:157.170000px;}
.y25{bottom:159.870000px;}
.ya5{bottom:160.050000px;}
.yc4{bottom:160.500000px;}
.ye4{bottom:168.510000px;}
.y86{bottom:168.960000px;}
.y58{bottom:174.720000px;}
.y24{bottom:177.510000px;}
.ya4{bottom:177.690000px;}
.yc3{bottom:178.050000px;}
.ye3{bottom:186.060000px;}
.y85{bottom:186.600000px;}
.y57{bottom:192.270000px;}
.y23{bottom:195.060000px;}
.ya3{bottom:195.240000px;}
.yc2{bottom:195.690000px;}
.y107{bottom:198.930000px;}
.ye2{bottom:203.610000px;}
.y84{bottom:204.150000px;}
.y56{bottom:209.910000px;}
.ya2{bottom:212.880000px;}
.yc1{bottom:213.240000px;}
.y22{bottom:221.700000px;}
.y55{bottom:227.460000px;}
.ye1{bottom:230.250000px;}
.ya1{bottom:230.430000px;}
.yc0{bottom:230.880000px;}
.y83{bottom:239.340000px;}
.y106{bottom:243.840000px;}
.y54{bottom:245.100000px;}
.ya0{bottom:247.980000px;}
.ybf{bottom:248.430000px;}
.y82{bottom:256.890000px;}
.y21{bottom:257.250000px;}
.y53{bottom:262.650000px;}
.y9f{bottom:265.620000px;}
.ybe{bottom:265.980000px;}
.ye0{bottom:266.160000px;}
.y81{bottom:274.440000px;}
.y20{bottom:274.800000px;}
.y52{bottom:280.200000px;}
.y9e{bottom:283.170000px;}
.ybd{bottom:283.620000px;}
.y105{bottom:288.750000px;}
.y80{bottom:292.080000px;}
.y1f{bottom:292.440000px;}
.y130{bottom:293.430000px;}
.y9d{bottom:300.810000px;}
.ybc{bottom:301.170000px;}
.y51{bottom:306.840000px;}
.y7f{bottom:309.630000px;}
.y1e{bottom:309.990000px;}
.y12f{bottom:310.980000px;}
.ydf{bottom:311.970000px;}
.y9c{bottom:318.360000px;}
.ybb{bottom:318.810000px;}
.y1d{bottom:327.630000px;}
.y12e{bottom:328.530000px;}
.y104{bottom:333.750000px;}
.y7e{bottom:336.270000px;}
.yba{bottom:336.360000px;}
.y50{bottom:342.390000px;}
.y9b{bottom:344.910000px;}
.y1c{bottom:345.180000px;}
.y12d{bottom:346.170000px;}
.yb9{bottom:353.910000px;}
.ydd{bottom:357.060000px;}
.y4f{bottom:359.940000px;}
.y1b{bottom:362.730000px;}
.y7d{bottom:371.820000px;}
.y12c{bottom:372.720000px;}
.y4e{bottom:377.580000px;}
.y1a{bottom:380.370000px;}
.y9a{bottom:380.550000px;}
.y7c{bottom:389.370000px;}
.y12b{bottom:390.360000px;}
.y4d{bottom:395.130000px;}
.y19{bottom:397.920000px;}
.y99{bottom:398.100000px;}
.y103{bottom:399.990000px;}
.ydc{bottom:402.060000px;}
.y7b{bottom:407.010000px;}
.y4c{bottom:412.770000px;}
.y18{bottom:415.560000px;}
.y98{bottom:415.740000px;}
.yb8{bottom:416.460000px;}
.y12a{bottom:416.910000px;}
.y7a{bottom:424.560000px;}
.y4b{bottom:430.320000px;}
.y97{bottom:433.290000px;}
.y129{bottom:434.460000px;}
.y102{bottom:435.540000px;}
.y17{bottom:442.110000px;}
.y79{bottom:442.200000px;}
.yda{bottom:447.150000px;}
.y4a{bottom:447.870000px;}
.y96{bottom:450.840000px;}
.y101{bottom:453.180000px;}
.y78{bottom:459.750000px;}
.y128{bottom:461.100000px;}
.yb7{bottom:464.700000px;}
.y49{bottom:465.510000px;}
.y95{bottom:468.480000px;}
.y100{bottom:470.760000px;}
.y16{bottom:474.720000px;}
.y77{bottom:477.330000px;}
.y127{bottom:478.680000px;}
.y48{bottom:483.090000px;}
.y94{bottom:486.060000px;}
.yff{bottom:488.400000px;}
.yd7{bottom:492.270000px;}
.y76{bottom:494.970000px;}
.y126{bottom:496.230000px;}
.yb6{bottom:496.950000px;}
.y47{bottom:500.730000px;}
.y93{bottom:503.700000px;}
.yfe{bottom:505.950000px;}
.y15{bottom:510.630000px;}
.y75{bottom:512.520000px;}
.y46{bottom:518.280000px;}
.y92{bottom:521.250000px;}
.y125{bottom:522.870000px;}
.yfd{bottom:523.500000px;}
.y74{bottom:530.160000px;}
.y45{bottom:535.830000px;}
.y91{bottom:538.800000px;}
.y124{bottom:540.420000px;}
.yfc{bottom:541.140000px;}
.y73{bottom:547.710000px;}
.y90{bottom:556.440000px;}
.yd6{bottom:558.690000px;}
.y14{bottom:558.870000px;}
.y44{bottom:562.470000px;}
.y123{bottom:567.060000px;}
.y8f{bottom:573.990000px;}
.y72{bottom:574.260000px;}
.yfb{bottom:576.330000px;}
.y13{bottom:576.780000px;}
.y122{bottom:584.610000px;}
.y8e{bottom:591.540000px;}
.yfa{bottom:593.880000px;}
.yd5{bottom:594.330000px;}
.y43{bottom:598.020000px;}
.y71{bottom:609.900000px;}
.y121{bottom:611.160000px;}
.yf9{bottom:611.430000px;}
.yd4{bottom:611.880000px;}
.y12{bottom:613.860000px;}
.y42{bottom:615.660000px;}
.y8d{bottom:618.180000px;}
.y70{bottom:627.450000px;}
.y120{bottom:628.800000px;}
.yf8{bottom:629.070000px;}
.yd3{bottom:629.430000px;}
.y11{bottom:631.410000px;}
.y41{bottom:633.210000px;}
.y6f{bottom:645.090000px;}
.yf7{bottom:646.620000px;}
.yd2{bottom:647.070000px;}
.y10{bottom:648.960000px;}
.y40{bottom:650.760000px;}
.y8c{bottom:654.090000px;}
.y11f{bottom:655.350000px;}
.y6e{bottom:662.640000px;}
.yf6{bottom:664.260000px;}
.yd1{bottom:664.620000px;}
.yf{bottom:666.600000px;}
.y3f{bottom:668.400000px;}
.y11e{bottom:672.990000px;}
.y6d{bottom:680.190000px;}
.yd0{bottom:682.260000px;}
.ye{bottom:684.150000px;}
.y3e{bottom:685.950000px;}
.yf5{bottom:690.810000px;}
.y6c{bottom:697.830000px;}
.y11d{bottom:699.540000px;}
.ycf{bottom:699.810000px;}
.yd{bottom:701.790000px;}
.y8b{bottom:702.330000px;}
.y3d{bottom:703.590000px;}
.y6b{bottom:715.380000px;}
.y11c{bottom:717.090000px;}
.yce{bottom:717.360000px;}
.yc{bottom:719.340000px;}
.y3c{bottom:721.140000px;}
.yf4{bottom:726.360000px;}
.y6a{bottom:733.020000px;}
.y8a{bottom:734.550000px;}
.y11b{bottom:734.730000px;}
.ycd{bottom:735.000000px;}
.yb{bottom:736.890000px;}
.y3b{bottom:738.690000px;}
.yf3{bottom:744.000000px;}
.y69{bottom:750.570000px;}
.ycc{bottom:752.550000px;}
.ya{bottom:754.530000px;}
.y3a{bottom:756.330000px;}
.y11a{bottom:761.280000px;}
.yf2{bottom:761.550000px;}
.y68{bottom:768.120000px;}
.ycb{bottom:770.190000px;}
.y39{bottom:773.880000px;}
.y119{bottom:778.920000px;}
.yf1{bottom:779.190000px;}
.y9{bottom:781.440000px;}
.y67{bottom:785.760000px;}
.yca{bottom:787.740000px;}
.yf0{bottom:796.740000px;}
.y38{bottom:800.520000px;}
.y66{bottom:803.310000px;}
.yc9{bottom:805.290000px;}
.y118{bottom:805.470000px;}
.yef{bottom:814.290000px;}
.yc8{bottom:822.930000px;}
.y117{bottom:823.020000px;}
.y8{bottom:828.240000px;}
.y65{bottom:829.950000px;}
.yee{bottom:831.930000px;}
.y37{bottom:836.340000px;}
.yc7{bottom:840.480000px;}
.yed{bottom:849.480000px;}
.y116{bottom:849.660000px;}
.y7{bottom:863.790000px;}
.y64{bottom:865.770000px;}
.yc6{bottom:867.030000px;}
.y115{bottom:867.210000px;}
.y36{bottom:884.670000px;}
.yb5{bottom:885.030000px;}
.y114{bottom:894.120000px;}
.y6{bottom:899.610000px;}
.y35{bottom:902.220000px;}
.yb4{bottom:902.670000px;}
.y63{bottom:911.490000px;}
.y34{bottom:919.860000px;}
.yb3{bottom:920.220000px;}
.y5{bottom:935.610000px;}
.y33{bottom:937.410000px;}
.yb2{bottom:937.860000px;}
.y62{bottom:938.850000px;}
.y113{bottom:942.450000px;}
.y32{bottom:954.960000px;}
.yb1{bottom:955.410000px;}
.y112{bottom:960.000000px;}
.y60{bottom:966.120000px;}
.y4{bottom:971.700000px;}
.y31{bottom:972.600000px;}
.yb0{bottom:972.960000px;}
.y111{bottom:977.550000px;}
.yec{bottom:981.600000px;}
.y30{bottom:990.150000px;}
.yaf{bottom:990.600000px;}
.y5f{bottom:993.480000px;}
.y110{bottom:995.190000px;}
.y2f{bottom:1007.790000px;}
.yae{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y10f{bottom:1012.770000px;}
.yeb{bottom:1017.180000px;}
.y5d{bottom:1020.870000px;}
.y2e{bottom:1025.370000px;}
.yad{bottom:1025.820000px;}
.y10e{bottom:1030.320000px;}
.yea{bottom:1034.820000px;}
.yac{bottom:1043.370000px;}
.y10d{bottom:1047.960000px;}
.y2d{bottom:1051.920000px;}
.ye9{bottom:1052.370000px;}
.yab{bottom:1060.920000px;}
.y10c{bottom:1065.510000px;}
.y5c{bottom:1069.560000px;}
.ye8{bottom:1069.920000px;}
.yaa{bottom:1078.560000px;}
.y10b{bottom:1083.150000px;}
.y2c{bottom:1087.560000px;}
.ya9{bottom:1096.110000px;}
.y10a{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.ya8{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y109{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hb{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:44.100000px;}
.hd{height:44.190000px;}
.he{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:59.973223px;}
.h10{height:61.793886px;}
.h7{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:108.480000px;}
.w7{width:115.740000px;}
.w4{width:139.230000px;}
.wb{width:139.890000px;}
.w8{width:148.320000px;}
.w3{width:164.640000px;}
.wa{width:186.390000px;}
.w9{width:194.610000px;}
.wc{width:202.140000px;}
.we{width:204.930000px;}
.wd{width:206.490000px;}
.w5{width:290.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.960000px;}
.xc{left:7.020000px;}
.x1{left:68.040000px;}
.x14{left:111.239987px;}
.x4{left:148.860000px;}
.xd{left:177.870000px;}
.x2{left:202.799987px;}
.x11{left:209.370000px;}
.xb{left:217.289987px;}
.x9{left:250.949987px;}
.xe{left:294.060000px;}
.x6{left:314.310000px;}
.x12{left:412.230000px;}
.xf{left:442.830000px;}
.x7{left:454.350000px;}
.x13{left:619.530000px;}
.x10{left:637.890000px;}
.xa{left:759.389987px;}
.x8{left:763.889987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.354667pt;}
.ls15{letter-spacing:-0.301867pt;}
.ls12{letter-spacing:-0.259200pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.lsc{letter-spacing:-0.056533pt;}
.ls1c{letter-spacing:-0.034560pt;}
.ls19{letter-spacing:-0.033600pt;}
.ls18{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.lsd{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.078933pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.103467pt;}
.ls1e{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.482133pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.ws6{word-spacing:-11.800533pt;}
.wsd{word-spacing:-11.800320pt;}
.ws12{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.743680pt;}
.ws14{word-spacing:-11.723200pt;}
.ws16{word-spacing:-11.722240pt;}
.ws7{word-spacing:-11.700267pt;}
.ws15{word-spacing:-11.613867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._13{margin-left:-3.740800pt;}
._d{margin-left:-2.778666pt;}
._f{margin-left:-1.881174pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.234027pt;}
._2{width:2.992533pt;}
._a{width:4.179882pt;}
._9{width:5.504523pt;}
._e{width:6.465620pt;}
._4{width:7.428267pt;}
._5{width:8.656532pt;}
._7{width:10.314134pt;}
._3{width:12.825600pt;}
._8{width:14.001066pt;}
._6{width:15.177067pt;}
._b{width:16.352533pt;}
._c{width:17.422402pt;}
._12{width:18.613530pt;}
._16{width:20.157654pt;}
._14{width:21.108800pt;}
._15{width:22.348694pt;}
._1f{width:23.320957pt;}
._17{width:24.742720pt;}
._18{width:26.089494pt;}
._11{width:27.599787pt;}
._10{width:28.708054pt;}
._27{width:30.353920pt;}
._23{width:33.446720pt;}
._31{width:35.571307pt;}
._2a{width:38.289920pt;}
._28{width:39.198080pt;}
._29{width:40.249601pt;}
._2c{width:42.244160pt;}
._2d{width:43.420480pt;}
._22{width:50.126720pt;}
._21{width:51.035200pt;}
._26{width:54.562240pt;}
._2f{width:56.400320pt;}
._30{width:57.352320pt;}
._1a{width:80.160000pt;}
._1b{width:83.152640pt;}
._24{width:89.725760pt;}
._1d{width:119.705600pt;}
._1c{width:121.736320pt;}
._25{width:132.317440pt;}
._19{width:146.051520pt;}
._1e{width:205.957760pt;}
._20{width:210.639360pt;}
._32{width:233.800000pt;}
._2e{width:278.171627pt;}
._2b{width:980.356800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:6.960000pt;}
.y61{bottom:7.040000pt;}
.yd9{bottom:14.800000pt;}
.yde{bottom:22.560000pt;}
.yd8{bottom:22.640000pt;}
.ydb{bottom:22.666667pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ye7{bottom:102.906667pt;}
.y89{bottom:103.306667pt;}
.y5b{bottom:108.426667pt;}
.ya7{bottom:111.066667pt;}
.ye6{bottom:118.506667pt;}
.y88{bottom:118.906667pt;}
.y5a{bottom:124.026667pt;}
.y26{bottom:126.506667pt;}
.ya6{bottom:126.666667pt;}
.yc5{bottom:127.066667pt;}
.ye5{bottom:134.106667pt;}
.y87{bottom:134.586667pt;}
.y108{bottom:136.906667pt;}
.y59{bottom:139.706667pt;}
.y25{bottom:142.106667pt;}
.ya5{bottom:142.266667pt;}
.yc4{bottom:142.666667pt;}
.ye4{bottom:149.786667pt;}
.y86{bottom:150.186667pt;}
.y58{bottom:155.306667pt;}
.y24{bottom:157.786667pt;}
.ya4{bottom:157.946667pt;}
.yc3{bottom:158.266667pt;}
.ye3{bottom:165.386667pt;}
.y85{bottom:165.866667pt;}
.y57{bottom:170.906667pt;}
.y23{bottom:173.386667pt;}
.ya3{bottom:173.546667pt;}
.yc2{bottom:173.946667pt;}
.y107{bottom:176.826667pt;}
.ye2{bottom:180.986667pt;}
.y84{bottom:181.466667pt;}
.y56{bottom:186.586667pt;}
.ya2{bottom:189.226667pt;}
.yc1{bottom:189.546667pt;}
.y22{bottom:197.066667pt;}
.y55{bottom:202.186667pt;}
.ye1{bottom:204.666667pt;}
.ya1{bottom:204.826667pt;}
.yc0{bottom:205.226667pt;}
.y83{bottom:212.746667pt;}
.y106{bottom:216.746667pt;}
.y54{bottom:217.866667pt;}
.ya0{bottom:220.426667pt;}
.ybf{bottom:220.826667pt;}
.y82{bottom:228.346667pt;}
.y21{bottom:228.666667pt;}
.y53{bottom:233.466667pt;}
.y9f{bottom:236.106667pt;}
.ybe{bottom:236.426667pt;}
.ye0{bottom:236.586667pt;}
.y81{bottom:243.946667pt;}
.y20{bottom:244.266667pt;}
.y52{bottom:249.066667pt;}
.y9e{bottom:251.706667pt;}
.ybd{bottom:252.106667pt;}
.y105{bottom:256.666667pt;}
.y80{bottom:259.626667pt;}
.y1f{bottom:259.946667pt;}
.y130{bottom:260.826667pt;}
.y9d{bottom:267.386667pt;}
.ybc{bottom:267.706667pt;}
.y51{bottom:272.746667pt;}
.y7f{bottom:275.226667pt;}
.y1e{bottom:275.546667pt;}
.y12f{bottom:276.426667pt;}
.ydf{bottom:277.306667pt;}
.y9c{bottom:282.986667pt;}
.ybb{bottom:283.386667pt;}
.y1d{bottom:291.226667pt;}
.y12e{bottom:292.026667pt;}
.y104{bottom:296.666667pt;}
.y7e{bottom:298.906667pt;}
.yba{bottom:298.986667pt;}
.y50{bottom:304.346667pt;}
.y9b{bottom:306.586667pt;}
.y1c{bottom:306.826667pt;}
.y12d{bottom:307.706667pt;}
.yb9{bottom:314.586667pt;}
.ydd{bottom:317.386667pt;}
.y4f{bottom:319.946667pt;}
.y1b{bottom:322.426667pt;}
.y7d{bottom:330.506667pt;}
.y12c{bottom:331.306667pt;}
.y4e{bottom:335.626667pt;}
.y1a{bottom:338.106667pt;}
.y9a{bottom:338.266667pt;}
.y7c{bottom:346.106667pt;}
.y12b{bottom:346.986667pt;}
.y4d{bottom:351.226667pt;}
.y19{bottom:353.706667pt;}
.y99{bottom:353.866667pt;}
.y103{bottom:355.546667pt;}
.ydc{bottom:357.386667pt;}
.y7b{bottom:361.786667pt;}
.y4c{bottom:366.906667pt;}
.y18{bottom:369.386667pt;}
.y98{bottom:369.546667pt;}
.yb8{bottom:370.186667pt;}
.y12a{bottom:370.586667pt;}
.y7a{bottom:377.386667pt;}
.y4b{bottom:382.506667pt;}
.y97{bottom:385.146667pt;}
.y129{bottom:386.186667pt;}
.y102{bottom:387.146667pt;}
.y17{bottom:392.986667pt;}
.y79{bottom:393.066667pt;}
.yda{bottom:397.466667pt;}
.y4a{bottom:398.106667pt;}
.y96{bottom:400.746667pt;}
.y101{bottom:402.826667pt;}
.y78{bottom:408.666667pt;}
.y128{bottom:409.866667pt;}
.yb7{bottom:413.066667pt;}
.y49{bottom:413.786667pt;}
.y95{bottom:416.426667pt;}
.y100{bottom:418.453333pt;}
.y16{bottom:421.973333pt;}
.y77{bottom:424.293333pt;}
.y127{bottom:425.493333pt;}
.y48{bottom:429.413333pt;}
.y94{bottom:432.053333pt;}
.yff{bottom:434.133333pt;}
.yd7{bottom:437.573333pt;}
.y76{bottom:439.973333pt;}
.y126{bottom:441.093333pt;}
.yb6{bottom:441.733333pt;}
.y47{bottom:445.093333pt;}
.y93{bottom:447.733333pt;}
.yfe{bottom:449.733333pt;}
.y15{bottom:453.893333pt;}
.y75{bottom:455.573333pt;}
.y46{bottom:460.693333pt;}
.y92{bottom:463.333333pt;}
.y125{bottom:464.773333pt;}
.yfd{bottom:465.333333pt;}
.y74{bottom:471.253333pt;}
.y45{bottom:476.293333pt;}
.y91{bottom:478.933333pt;}
.y124{bottom:480.373333pt;}
.yfc{bottom:481.013333pt;}
.y73{bottom:486.853333pt;}
.y90{bottom:494.613333pt;}
.yd6{bottom:496.613333pt;}
.y14{bottom:496.773333pt;}
.y44{bottom:499.973333pt;}
.y123{bottom:504.053333pt;}
.y8f{bottom:510.213333pt;}
.y72{bottom:510.453333pt;}
.yfb{bottom:512.293333pt;}
.y13{bottom:512.693333pt;}
.y122{bottom:519.653333pt;}
.y8e{bottom:525.813333pt;}
.yfa{bottom:527.893333pt;}
.yd5{bottom:528.293333pt;}
.y43{bottom:531.573333pt;}
.y71{bottom:542.133333pt;}
.y121{bottom:543.253333pt;}
.yf9{bottom:543.493333pt;}
.yd4{bottom:543.893333pt;}
.y12{bottom:545.653333pt;}
.y42{bottom:547.253333pt;}
.y8d{bottom:549.493333pt;}
.y70{bottom:557.733333pt;}
.y120{bottom:558.933333pt;}
.yf8{bottom:559.173333pt;}
.yd3{bottom:559.493333pt;}
.y11{bottom:561.253333pt;}
.y41{bottom:562.853333pt;}
.y6f{bottom:573.413333pt;}
.yf7{bottom:574.773333pt;}
.yd2{bottom:575.173333pt;}
.y10{bottom:576.853333pt;}
.y40{bottom:578.453333pt;}
.y8c{bottom:581.413333pt;}
.y11f{bottom:582.533333pt;}
.y6e{bottom:589.013333pt;}
.yf6{bottom:590.453333pt;}
.yd1{bottom:590.773333pt;}
.yf{bottom:592.533333pt;}
.y3f{bottom:594.133333pt;}
.y11e{bottom:598.213333pt;}
.y6d{bottom:604.613333pt;}
.yd0{bottom:606.453333pt;}
.ye{bottom:608.133333pt;}
.y3e{bottom:609.733333pt;}
.yf5{bottom:614.053333pt;}
.y6c{bottom:620.293333pt;}
.y11d{bottom:621.813333pt;}
.ycf{bottom:622.053333pt;}
.yd{bottom:623.813333pt;}
.y8b{bottom:624.293333pt;}
.y3d{bottom:625.413333pt;}
.y6b{bottom:635.893333pt;}
.y11c{bottom:637.413333pt;}
.yce{bottom:637.653333pt;}
.yc{bottom:639.413333pt;}
.y3c{bottom:641.013333pt;}
.yf4{bottom:645.653333pt;}
.y6a{bottom:651.573333pt;}
.y8a{bottom:652.933333pt;}
.y11b{bottom:653.093333pt;}
.ycd{bottom:653.333333pt;}
.yb{bottom:655.013333pt;}
.y3b{bottom:656.613333pt;}
.yf3{bottom:661.333333pt;}
.y69{bottom:667.173333pt;}
.ycc{bottom:668.933333pt;}
.ya{bottom:670.693333pt;}
.y3a{bottom:672.293333pt;}
.y11a{bottom:676.693333pt;}
.yf2{bottom:676.933333pt;}
.y68{bottom:682.773333pt;}
.ycb{bottom:684.613333pt;}
.y39{bottom:687.893333pt;}
.y119{bottom:692.373333pt;}
.yf1{bottom:692.613333pt;}
.y9{bottom:694.613333pt;}
.y67{bottom:698.453333pt;}
.yca{bottom:700.213333pt;}
.yf0{bottom:708.213333pt;}
.y38{bottom:711.573333pt;}
.y66{bottom:714.053333pt;}
.yc9{bottom:715.813333pt;}
.y118{bottom:715.973333pt;}
.yef{bottom:723.813333pt;}
.yc8{bottom:731.493333pt;}
.y117{bottom:731.573333pt;}
.y8{bottom:736.213333pt;}
.y65{bottom:737.733333pt;}
.yee{bottom:739.493333pt;}
.y37{bottom:743.413333pt;}
.yc7{bottom:747.093333pt;}
.yed{bottom:755.093333pt;}
.y116{bottom:755.253333pt;}
.y7{bottom:767.813333pt;}
.y64{bottom:769.573333pt;}
.yc6{bottom:770.693333pt;}
.y115{bottom:770.853333pt;}
.y36{bottom:786.373333pt;}
.yb5{bottom:786.693333pt;}
.y114{bottom:794.773333pt;}
.y6{bottom:799.653333pt;}
.y35{bottom:801.973333pt;}
.yb4{bottom:802.373333pt;}
.y63{bottom:810.213333pt;}
.y34{bottom:817.653333pt;}
.yb3{bottom:817.973333pt;}
.y5{bottom:831.653333pt;}
.y33{bottom:833.253333pt;}
.yb2{bottom:833.653333pt;}
.y62{bottom:834.533333pt;}
.y113{bottom:837.733333pt;}
.y32{bottom:848.853333pt;}
.yb1{bottom:849.253333pt;}
.y112{bottom:853.333333pt;}
.y60{bottom:858.773333pt;}
.y4{bottom:863.733333pt;}
.y31{bottom:864.533333pt;}
.yb0{bottom:864.853333pt;}
.y111{bottom:868.933333pt;}
.yec{bottom:872.533333pt;}
.y30{bottom:880.133333pt;}
.yaf{bottom:880.533333pt;}
.y5f{bottom:883.093333pt;}
.y110{bottom:884.613333pt;}
.y2f{bottom:895.813333pt;}
.yae{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y10f{bottom:900.240000pt;}
.yeb{bottom:904.160000pt;}
.y5d{bottom:907.440000pt;}
.y2e{bottom:911.440000pt;}
.yad{bottom:911.840000pt;}
.y10e{bottom:915.840000pt;}
.yea{bottom:919.840000pt;}
.yac{bottom:927.440000pt;}
.y10d{bottom:931.520000pt;}
.y2d{bottom:935.040000pt;}
.ye9{bottom:935.440000pt;}
.yab{bottom:943.040000pt;}
.y10c{bottom:947.120000pt;}
.y5c{bottom:950.720000pt;}
.ye8{bottom:951.040000pt;}
.yaa{bottom:958.720000pt;}
.y10b{bottom:962.800000pt;}
.y2c{bottom:966.720000pt;}
.ya9{bottom:974.320000pt;}
.y10a{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.ya8{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y109{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hb{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:39.200000pt;}
.hd{height:39.280000pt;}
.he{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:53.309531pt;}
.h10{height:54.927899pt;}
.h7{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:96.426667pt;}
.w7{width:102.880000pt;}
.w4{width:123.760000pt;}
.wb{width:124.346667pt;}
.w8{width:131.840000pt;}
.w3{width:146.346667pt;}
.wa{width:165.680000pt;}
.w9{width:172.986667pt;}
.wc{width:179.680000pt;}
.we{width:182.160000pt;}
.wd{width:183.546667pt;}
.w5{width:257.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.520000pt;}
.xc{left:6.240000pt;}
.x1{left:60.480000pt;}
.x14{left:98.879988pt;}
.x4{left:132.320000pt;}
.xd{left:158.106667pt;}
.x2{left:180.266655pt;}
.x11{left:186.106667pt;}
.xb{left:193.146655pt;}
.x9{left:223.066655pt;}
.xe{left:261.386667pt;}
.x6{left:279.386667pt;}
.x12{left:366.426667pt;}
.xf{left:393.626667pt;}
.x7{left:403.866667pt;}
.x13{left:550.693333pt;}
.x10{left:567.013333pt;}
.xa{left:675.013322pt;}
.x8{left:679.013322pt;}
.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; }
  