
    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_02592ecc04360e7428378ebe.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_557c8cf498c80d5beed139c2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_15acae9613e32f379682eb24.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_691eeea2f59757c34beb8626.woff')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_9dbb4d48f16d1201cb3218f2.woff')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_212464ba3f789354b7b6a599.woff')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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.513600px;}
.lse{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.038880px;}
.ls17{letter-spacing:-0.014760px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.065520px;}
.ls12{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:14.246640px;}
.ls15{letter-spacing:47.726640px;}
.ls14{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.294800px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.072800px;}
.ws10{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsa{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-3.814223px;}
._2{margin-left:-2.662776px;}
._0{margin-left:-1.158000px;}
._1{width:1.258680px;}
._4{width:2.671320px;}
._3{width:3.684960px;}
._5{width:4.912440px;}
._9{width:6.329759px;}
._d{width:7.442642px;}
._8{width:8.616602px;}
._6{width:9.679200px;}
._7{width:10.882201px;}
._a{width:11.902798px;}
._c{width:14.593560px;}
._13{width:15.647280px;}
._12{width:16.773480px;}
._f{width:18.488280px;}
._e{width:19.539000px;}
._17{width:20.551920px;}
._14{width:21.583080px;}
._10{width:22.725360px;}
._11{width:23.947320px;}
._15{width:25.551000px;}
._16{width:26.693280px;}
._1a{width:29.999880px;}
._1b{width:31.262400px;}
._18{width:32.288040px;}
._19{width:33.592680px;}
._28{width:35.209320px;}
._27{width:36.330840px;}
._26{width:40.455840px;}
._21{width:41.783400px;}
._22{width:43.166160px;}
._23{width:45.113760px;}
._2b{width:56.633040px;}
._2c{width:57.895560px;}
._2d{width:70.643520px;}
._2e{width:76.412520px;}
._25{width:99.950880px;}
._24{width:101.061720px;}
._1f{width:102.083760px;}
._2a{width:103.105800px;}
._29{width:104.308200px;}
._31{width:120.901320px;}
._32{width:146.890080px;}
._2f{width:151.863120px;}
._1c{width:153.786960px;}
._20{width:177.955200px;}
._1d{width:201.822840px;}
._1e{width:203.025240px;}
._30{width:253.405800px;}
.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;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5c{bottom:112.170000px;}
.yf4{bottom:112.980000px;}
.y146{bottom:113.340000px;}
.yb0{bottom:113.700000px;}
.y17a{bottom:114.510000px;}
.yc0{bottom:116.130000px;}
.y13e{bottom:126.120000px;}
.y90{bottom:128.100000px;}
.y5b{bottom:129.720000px;}
.yd9{bottom:130.530000px;}
.y145{bottom:130.980000px;}
.yaf{bottom:131.250000px;}
.y179{bottom:132.150000px;}
.ybf{bottom:133.680000px;}
.y1a3{bottom:143.130000px;}
.y13d{bottom:143.670000px;}
.y8f{bottom:145.650000px;}
.y29{bottom:145.740000px;}
.y5a{bottom:147.270000px;}
.yd8{bottom:148.170000px;}
.y144{bottom:148.530000px;}
.yae{bottom:148.800000px;}
.ybe{bottom:151.230000px;}
.y1b8{bottom:151.320000px;}
.y74{bottom:151.680000px;}
.y14c{bottom:152.580000px;}
.y110{bottom:152.940000px;}
.y178{bottom:158.700000px;}
.y1a2{bottom:160.680000px;}
.y28{bottom:163.290000px;}
.yd7{bottom:165.720000px;}
.y143{bottom:166.170000px;}
.yad{bottom:166.440000px;}
.ybd{bottom:168.870000px;}
.y73{bottom:169.230000px;}
.y1d2{bottom:169.320000px;}
.y14b{bottom:170.130000px;}
.y10f{bottom:170.580000px;}
.y177{bottom:176.250000px;}
.y1c2{bottom:177.870000px;}
.y8e{bottom:180.840000px;}
.y27{bottom:180.930000px;}
.y59{bottom:182.910000px;}
.yd6{bottom:183.270000px;}
.y142{bottom:183.720000px;}
.yac{bottom:183.990000px;}
.y72{bottom:186.870000px;}
.y1a1{bottom:187.320000px;}
.y14a{bottom:187.680000px;}
.y10e{bottom:188.130000px;}
.yf3{bottom:192.630000px;}
.y176{bottom:193.890000px;}
.y1b7{bottom:195.510000px;}
.y26{bottom:198.480000px;}
.y58{bottom:200.460000px;}
.yd5{bottom:200.910000px;}
.y141{bottom:201.270000px;}
.yab{bottom:201.630000px;}
.y71{bottom:204.420000px;}
.y1a0{bottom:204.870000px;}
.y149{bottom:205.320000px;}
.y10d{bottom:205.680000px;}
.y1b6{bottom:213.060000px;}
.y1d1{bottom:213.510000px;}
.y8d{bottom:216.030000px;}
.y57{bottom:218.100000px;}
.yd4{bottom:218.460000px;}
.y13c{bottom:218.910000px;}
.yaa{bottom:219.180000px;}
.y175{bottom:220.440000px;}
.y70{bottom:222.060000px;}
.y19f{bottom:222.510000px;}
.y148{bottom:222.870000px;}
.y10c{bottom:223.320000px;}
.y25{bottom:225.390000px;}
.y1d0{bottom:231.060000px;}
.y56{bottom:235.650000px;}
.yd3{bottom:236.100000px;}
.y13b{bottom:236.460000px;}
.y174{bottom:238.080000px;}
.y6f{bottom:239.610000px;}
.yf2{bottom:240.870000px;}
.y140{bottom:245.820000px;}
.y1cf{bottom:248.610000px;}
.y19e{bottom:249.060000px;}
.y8c{bottom:251.580000px;}
.yd2{bottom:253.650000px;}
.y13a{bottom:254.100000px;}
.ya9{bottom:254.730000px;}
.y6e{bottom:257.160000px;}
.y1b5{bottom:257.250000px;}
.yf1{bottom:258.510000px;}
.y10b{bottom:258.870000px;}
.y173{bottom:264.630000px;}
.y1c1{bottom:266.250000px;}
.y19d{bottom:266.610000px;}
.y8b{bottom:269.220000px;}
.y55{bottom:271.200000px;}
.y139{bottom:271.650000px;}
.ya8{bottom:272.370000px;}
.y24{bottom:273.630000px;}
.y6d{bottom:274.800000px;}
.y1ce{bottom:275.250000px;}
.yf0{bottom:276.060000px;}
.y10a{bottom:276.510000px;}
.y172{bottom:282.180000px;}
.y1b4{bottom:283.800000px;}
.y19c{bottom:284.250000px;}
.y8a{bottom:286.770000px;}
.y54{bottom:288.840000px;}
.yd1{bottom:289.200000px;}
.ya7{bottom:289.920000px;}
.y23{bottom:291.540000px;}
.y6c{bottom:292.350000px;}
.y1cd{bottom:292.800000px;}
.yef{bottom:293.610000px;}
.y109{bottom:294.060000px;}
.y171{bottom:299.820000px;}
.y1b3{bottom:301.440000px;}
.y89{bottom:304.410000px;}
.y53{bottom:306.390000px;}
.yd0{bottom:306.840000px;}
.ya6{bottom:307.560000px;}
.y6b{bottom:309.990000px;}
.y19b{bottom:310.800000px;}
.yee{bottom:311.250000px;}
.y108{bottom:311.610000px;}
.y1b2{bottom:318.990000px;}
.y1cc{bottom:319.440000px;}
.y88{bottom:321.960000px;}
.y52{bottom:323.940000px;}
.ycf{bottom:324.390000px;}
.ya5{bottom:325.110000px;}
.y170{bottom:326.370000px;}
.y1c0{bottom:327.990000px;}
.y19a{bottom:328.440000px;}
.y22{bottom:328.620000px;}
.yed{bottom:328.800000px;}
.y107{bottom:329.250000px;}
.ybc{bottom:336.810000px;}
.y1cb{bottom:336.990000px;}
.y87{bottom:339.510000px;}
.yce{bottom:341.940000px;}
.y138{bottom:342.390000px;}
.ya4{bottom:342.660000px;}
.y16f{bottom:344.010000px;}
.y6a{bottom:345.540000px;}
.y199{bottom:345.990000px;}
.y21{bottom:346.170000px;}
.y147{bottom:346.440000px;}
.y13f{bottom:346.800000px;}
.y51{bottom:359.580000px;}
.y137{bottom:359.940000px;}
.ya3{bottom:360.300000px;}
.y69{bottom:363.090000px;}
.y1b1{bottom:363.180000px;}
.y1ca{bottom:363.540000px;}
.y20{bottom:363.810000px;}
.yec{bottom:364.440000px;}
.y106{bottom:364.800000px;}
.y16e{bottom:370.560000px;}
.y1bf{bottom:372.180000px;}
.y198{bottom:372.540000px;}
.y86{bottom:375.150000px;}
.y50{bottom:377.130000px;}
.y136{bottom:377.580000px;}
.ya2{bottom:377.850000px;}
.y68{bottom:380.730000px;}
.y1c9{bottom:381.180000px;}
.y1f{bottom:381.360000px;}
.yeb{bottom:381.990000px;}
.y105{bottom:382.440000px;}
.ybb{bottom:385.140000px;}
.y16d{bottom:388.110000px;}
.y1b0{bottom:389.730000px;}
.y197{bottom:390.180000px;}
.y85{bottom:392.700000px;}
.y4f{bottom:394.770000px;}
.y135{bottom:395.130000px;}
.y67{bottom:398.280000px;}
.y1c8{bottom:398.730000px;}
.y1e{bottom:398.910000px;}
.yea{bottom:399.540000px;}
.y104{bottom:399.990000px;}
.yba{bottom:402.690000px;}
.y16c{bottom:405.750000px;}
.y196{bottom:407.730000px;}
.y84{bottom:410.250000px;}
.y4e{bottom:412.320000px;}
.y134{bottom:412.770000px;}
.ya1{bottom:413.490000px;}
.y66{bottom:415.920000px;}
.y1af{bottom:416.370000px;}
.y1d{bottom:416.550000px;}
.ye9{bottom:417.180000px;}
.y103{bottom:417.540000px;}
.yb9{bottom:420.330000px;}
.ycd{bottom:421.680000px;}
.y195{bottom:425.370000px;}
.y83{bottom:427.890000px;}
.y133{bottom:430.320000px;}
.ya0{bottom:431.040000px;}
.y16b{bottom:432.300000px;}
.y65{bottom:433.470000px;}
.y1ae{bottom:433.920000px;}
.y1c{bottom:434.100000px;}
.ye8{bottom:434.730000px;}
.y102{bottom:435.180000px;}
.yb8{bottom:437.880000px;}
.y194{bottom:442.920000px;}
.y82{bottom:445.440000px;}
.y4d{bottom:447.870000px;}
.y9f{bottom:448.590000px;}
.y16a{bottom:449.940000px;}
.y64{bottom:451.020000px;}
.y1ad{bottom:451.470000px;}
.y1b{bottom:451.740000px;}
.ye7{bottom:452.370000px;}
.y101{bottom:452.730000px;}
.yb7{bottom:455.430000px;}
.y1be{bottom:460.470000px;}
.y81{bottom:463.080000px;}
.y4c{bottom:465.510000px;}
.y132{bottom:465.870000px;}
.y9e{bottom:466.230000px;}
.y169{bottom:467.490000px;}
.y63{bottom:468.660000px;}
.y1a{bottom:469.290000px;}
.y193{bottom:469.470000px;}
.ycc{bottom:469.950000px;}
.y100{bottom:470.400000px;}
.yb6{bottom:473.100000px;}
.y1ac{bottom:478.140000px;}
.y80{bottom:480.660000px;}
.y4b{bottom:483.090000px;}
.y131{bottom:483.540000px;}
.y9d{bottom:483.810000px;}
.y62{bottom:486.240000px;}
.y19{bottom:486.870000px;}
.y192{bottom:487.140000px;}
.ycb{bottom:487.500000px;}
.yff{bottom:487.950000px;}
.y168{bottom:494.070000px;}
.y1ab{bottom:495.690000px;}
.y7f{bottom:498.210000px;}
.y4a{bottom:500.730000px;}
.y130{bottom:501.090000px;}
.y9c{bottom:501.450000px;}
.y18{bottom:504.510000px;}
.y1bd{bottom:504.690000px;}
.yca{bottom:505.140000px;}
.ye6{bottom:505.500000px;}
.yb5{bottom:508.650000px;}
.y167{bottom:511.710000px;}
.y61{bottom:513.150000px;}
.y191{bottom:513.690000px;}
.y49{bottom:518.280000px;}
.y12f{bottom:518.730000px;}
.y9b{bottom:519.000000px;}
.y17{bottom:522.060000px;}
.y1aa{bottom:522.330000px;}
.yc9{bottom:522.690000px;}
.ye5{bottom:523.140000px;}
.yfe{bottom:523.500000px;}
.y166{bottom:529.260000px;}
.y190{bottom:531.330000px;}
.y7e{bottom:533.850000px;}
.y12e{bottom:536.280000px;}
.y9a{bottom:536.550000px;}
.y16{bottom:539.700000px;}
.y1a9{bottom:539.880000px;}
.yc8{bottom:540.330000px;}
.ye4{bottom:540.690000px;}
.yb4{bottom:540.870000px;}
.yfd{bottom:541.140000px;}
.y48{bottom:545.190000px;}
.y18f{bottom:548.880000px;}
.y7d{bottom:551.400000px;}
.y165{bottom:555.900000px;}
.y15{bottom:557.250000px;}
.ye3{bottom:558.330000px;}
.yfc{bottom:558.690000px;}
.y60{bottom:561.390000px;}
.y18e{bottom:566.430000px;}
.y7c{bottom:569.040000px;}
.y12d{bottom:571.830000px;}
.y99{bottom:572.190000px;}
.y164{bottom:573.450000px;}
.y14{bottom:574.800000px;}
.y1bc{bottom:575.430000px;}
.yc7{bottom:575.880000px;}
.yfb{bottom:576.330000px;}
.y18d{bottom:584.070000px;}
.y7b{bottom:586.590000px;}
.y12c{bottom:589.470000px;}
.y98{bottom:589.740000px;}
.y13{bottom:592.440000px;}
.y1bb{bottom:593.070000px;}
.y47{bottom:593.430000px;}
.y5f{bottom:593.610000px;}
.yfa{bottom:593.880000px;}
.y163{bottom:600.000000px;}
.y7a{bottom:604.140000px;}
.y12b{bottom:607.020000px;}
.y97{bottom:607.290000px;}
.y12{bottom:609.990000px;}
.y18c{bottom:610.620000px;}
.y46{bottom:611.070000px;}
.yf9{bottom:611.430000px;}
.y162{bottom:617.640000px;}
.y79{bottom:621.780000px;}
.y12a{bottom:624.660000px;}
.y96{bottom:624.930000px;}
.y11{bottom:627.630000px;}
.y18b{bottom:628.260000px;}
.y45{bottom:628.620000px;}
.ye2{bottom:629.070000px;}
.y161{bottom:635.190000px;}
.y1ba{bottom:637.260000px;}
.y78{bottom:639.330000px;}
.y129{bottom:642.210000px;}
.y95{bottom:642.480000px;}
.y10{bottom:645.180000px;}
.y18a{bottom:645.810000px;}
.y44{bottom:646.260000px;}
.ye1{bottom:646.620000px;}
.y1a8{bottom:654.810000px;}
.y77{bottom:656.970000px;}
.y128{bottom:659.760000px;}
.y94{bottom:660.120000px;}
.y160{bottom:661.830000px;}
.yf{bottom:662.730000px;}
.yc6{bottom:663.810000px;}
.ye0{bottom:664.260000px;}
.y189{bottom:672.360000px;}
.y127{bottom:677.400000px;}
.y15f{bottom:679.380000px;}
.yc5{bottom:681.360000px;}
.y43{bottom:681.810000px;}
.y93{bottom:687.030000px;}
.ye{bottom:689.730000px;}
.y188{bottom:690.000000px;}
.y76{bottom:692.520000px;}
.y1a7{bottom:699.000000px;}
.y42{bottom:699.360000px;}
.yf8{bottom:699.810000px;}
.y15e{bottom:705.930000px;}
.y126{bottom:712.950000px;}
.y187{bottom:716.550000px;}
.y41{bottom:717.000000px;}
.yf7{bottom:717.360000px;}
.y15d{bottom:723.570000px;}
.y75{bottom:724.740000px;}
.y1c7{bottom:725.550000px;}
.y125{bottom:730.590000px;}
.y186{bottom:734.190000px;}
.y40{bottom:734.550000px;}
.yf6{bottom:735.000000px;}
.y92{bottom:735.270000px;}
.yd{bottom:736.440000px;}
.y15c{bottom:741.120000px;}
.y1c6{bottom:743.190000px;}
.y124{bottom:748.140000px;}
.y185{bottom:751.740000px;}
.y3f{bottom:752.190000px;}
.yf5{bottom:752.550000px;}
.y15b{bottom:758.670000px;}
.y1a6{bottom:760.740000px;}
.y123{bottom:765.690000px;}
.y91{bottom:767.490000px;}
.y3e{bottom:769.740000px;}
.ydf{bottom:770.190000px;}
.yc{bottom:772.260000px;}
.y184{bottom:778.290000px;}
.y122{bottom:783.330000px;}
.y15a{bottom:785.310000px;}
.yc4{bottom:787.290000px;}
.yde{bottom:787.740000px;}
.y183{bottom:795.930000px;}
.y121{bottom:800.880000px;}
.y159{bottom:802.860000px;}
.yc3{bottom:804.930000px;}
.y3d{bottom:805.290000px;}
.yb{bottom:808.260000px;}
.y158{bottom:820.500000px;}
.yc2{bottom:822.480000px;}
.y3c{bottom:822.930000px;}
.y1c5{bottom:831.480000px;}
.y120{bottom:836.520000px;}
.y182{bottom:840.030000px;}
.y3b{bottom:840.480000px;}
.y157{bottom:847.050000px;}
.ya{bottom:848.040000px;}
.y1a5{bottom:849.030000px;}
.y11f{bottom:854.070000px;}
.y3a{bottom:858.030000px;}
.y156{bottom:864.600000px;}
.y9{bottom:866.040000px;}
.y181{bottom:866.670000px;}
.y11e{bottom:871.620000px;}
.y39{bottom:875.670000px;}
.y8{bottom:880.260000px;}
.y155{bottom:882.240000px;}
.y180{bottom:884.220000px;}
.y11d{bottom:889.260000px;}
.y38{bottom:893.220000px;}
.ydd{bottom:893.670000px;}
.y17f{bottom:901.860000px;}
.y7{bottom:902.040000px;}
.y11c{bottom:906.810000px;}
.y154{bottom:908.790000px;}
.y37{bottom:910.860000px;}
.ydc{bottom:911.220000px;}
.y6{bottom:920.040000px;}
.y11b{bottom:924.450000px;}
.y153{bottom:926.430000px;}
.y36{bottom:928.410000px;}
.ydb{bottom:928.860000px;}
.y1c4{bottom:937.410000px;}
.y11a{bottom:942.000000px;}
.yc1{bottom:945.960000px;}
.yda{bottom:946.410000px;}
.y5{bottom:952.350000px;}
.y152{bottom:952.980000px;}
.y1c3{bottom:954.960000px;}
.y119{bottom:959.550000px;}
.y35{bottom:963.960000px;}
.y151{bottom:970.530000px;}
.y4{bottom:971.700000px;}
.y17e{bottom:972.600000px;}
.y34{bottom:981.600000px;}
.y150{bottom:988.170000px;}
.y17d{bottom:990.150000px;}
.y118{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.y1b9{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y117{bottom:1012.770000px;}
.y14f{bottom:1015.110000px;}
.y32{bottom:1016.820000px;}
.y116{bottom:1030.320000px;}
.y31{bottom:1034.370000px;}
.yb3{bottom:1034.820000px;}
.y1d3{bottom:1043.370000px;}
.y115{bottom:1047.960000px;}
.y30{bottom:1051.920000px;}
.yb2{bottom:1052.370000px;}
.y1a4{bottom:1060.920000px;}
.y14e{bottom:1063.350000px;}
.y114{bottom:1065.510000px;}
.y2f{bottom:1069.560000px;}
.yb1{bottom:1069.920000px;}
.y17c{bottom:1078.560000px;}
.y113{bottom:1083.150000px;}
.y2e{bottom:1087.110000px;}
.y5e{bottom:1087.560000px;}
.y14d{bottom:1090.260000px;}
.y17b{bottom:1096.110000px;}
.y112{bottom:1100.700000px;}
.y5d{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y111{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h3{height:44.538574px;}
.h7{height:50.902383px;}
.h9{height:55.779258px;}
.h8{height:59.503535px;}
.hb{height:61.793886px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x9{left:82.439987px;}
.x7{left:91.169987px;}
.xc{left:111.239987px;}
.xb{left:126.269987px;}
.x2{left:202.799987px;}
.x5{left:285.149987px;}
.x4{left:654.809987px;}
.xa{left:747.059987px;}
.x8{left:772.889987px;}
.x6{left:780.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.456533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.034560pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.058240pt;}
.ls12{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:12.663680pt;}
.ls15{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.817600pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.620267pt;}
.ws10{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsa{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-3.390420pt;}
._2{margin-left:-2.366912pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.118827pt;}
._4{width:2.374506pt;}
._3{width:3.275520pt;}
._5{width:4.366614pt;}
._9{width:5.626452pt;}
._d{width:6.615682pt;}
._8{width:7.659202pt;}
._6{width:8.603733pt;}
._7{width:9.673068pt;}
._a{width:10.580265pt;}
._c{width:12.972053pt;}
._13{width:13.908693pt;}
._12{width:14.909760pt;}
._f{width:16.434027pt;}
._e{width:17.368000pt;}
._17{width:18.268373pt;}
._14{width:19.184960pt;}
._10{width:20.200320pt;}
._11{width:21.286507pt;}
._15{width:22.712000pt;}
._16{width:23.727360pt;}
._1a{width:26.666560pt;}
._1b{width:27.788800pt;}
._18{width:28.700480pt;}
._19{width:29.860160pt;}
._28{width:31.297173pt;}
._27{width:32.294080pt;}
._26{width:35.960747pt;}
._21{width:37.140800pt;}
._22{width:38.369920pt;}
._23{width:40.101120pt;}
._2b{width:50.340480pt;}
._2c{width:51.462720pt;}
._2d{width:62.794240pt;}
._2e{width:67.922240pt;}
._25{width:88.845227pt;}
._24{width:89.832640pt;}
._1f{width:90.741120pt;}
._2a{width:91.649600pt;}
._29{width:92.718400pt;}
._31{width:107.467840pt;}
._32{width:130.568960pt;}
._2f{width:134.989440pt;}
._1c{width:136.699520pt;}
._20{width:158.182400pt;}
._1d{width:179.398080pt;}
._1e{width:180.466880pt;}
._30{width:225.249600pt;}
.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;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5c{bottom:99.706667pt;}
.yf4{bottom:100.426667pt;}
.y146{bottom:100.746667pt;}
.yb0{bottom:101.066667pt;}
.y17a{bottom:101.786667pt;}
.yc0{bottom:103.226667pt;}
.y13e{bottom:112.106667pt;}
.y90{bottom:113.866667pt;}
.y5b{bottom:115.306667pt;}
.yd9{bottom:116.026667pt;}
.y145{bottom:116.426667pt;}
.yaf{bottom:116.666667pt;}
.y179{bottom:117.466667pt;}
.ybf{bottom:118.826667pt;}
.y1a3{bottom:127.226667pt;}
.y13d{bottom:127.706667pt;}
.y8f{bottom:129.466667pt;}
.y29{bottom:129.546667pt;}
.y5a{bottom:130.906667pt;}
.yd8{bottom:131.706667pt;}
.y144{bottom:132.026667pt;}
.yae{bottom:132.266667pt;}
.ybe{bottom:134.426667pt;}
.y1b8{bottom:134.506667pt;}
.y74{bottom:134.826667pt;}
.y14c{bottom:135.626667pt;}
.y110{bottom:135.946667pt;}
.y178{bottom:141.066667pt;}
.y1a2{bottom:142.826667pt;}
.y28{bottom:145.146667pt;}
.yd7{bottom:147.306667pt;}
.y143{bottom:147.706667pt;}
.yad{bottom:147.946667pt;}
.ybd{bottom:150.106667pt;}
.y73{bottom:150.426667pt;}
.y1d2{bottom:150.506667pt;}
.y14b{bottom:151.226667pt;}
.y10f{bottom:151.626667pt;}
.y177{bottom:156.666667pt;}
.y1c2{bottom:158.106667pt;}
.y8e{bottom:160.746667pt;}
.y27{bottom:160.826667pt;}
.y59{bottom:162.586667pt;}
.yd6{bottom:162.906667pt;}
.y142{bottom:163.306667pt;}
.yac{bottom:163.546667pt;}
.y72{bottom:166.106667pt;}
.y1a1{bottom:166.506667pt;}
.y14a{bottom:166.826667pt;}
.y10e{bottom:167.226667pt;}
.yf3{bottom:171.226667pt;}
.y176{bottom:172.346667pt;}
.y1b7{bottom:173.786667pt;}
.y26{bottom:176.426667pt;}
.y58{bottom:178.186667pt;}
.yd5{bottom:178.586667pt;}
.y141{bottom:178.906667pt;}
.yab{bottom:179.226667pt;}
.y71{bottom:181.706667pt;}
.y1a0{bottom:182.106667pt;}
.y149{bottom:182.506667pt;}
.y10d{bottom:182.826667pt;}
.y1b6{bottom:189.386667pt;}
.y1d1{bottom:189.786667pt;}
.y8d{bottom:192.026667pt;}
.y57{bottom:193.866667pt;}
.yd4{bottom:194.186667pt;}
.y13c{bottom:194.586667pt;}
.yaa{bottom:194.826667pt;}
.y175{bottom:195.946667pt;}
.y70{bottom:197.386667pt;}
.y19f{bottom:197.786667pt;}
.y148{bottom:198.106667pt;}
.y10c{bottom:198.506667pt;}
.y25{bottom:200.346667pt;}
.y1d0{bottom:205.386667pt;}
.y56{bottom:209.466667pt;}
.yd3{bottom:209.866667pt;}
.y13b{bottom:210.186667pt;}
.y174{bottom:211.626667pt;}
.y6f{bottom:212.986667pt;}
.yf2{bottom:214.106667pt;}
.y140{bottom:218.506667pt;}
.y1cf{bottom:220.986667pt;}
.y19e{bottom:221.386667pt;}
.y8c{bottom:223.626667pt;}
.yd2{bottom:225.466667pt;}
.y13a{bottom:225.866667pt;}
.ya9{bottom:226.426667pt;}
.y6e{bottom:228.586667pt;}
.y1b5{bottom:228.666667pt;}
.yf1{bottom:229.786667pt;}
.y10b{bottom:230.106667pt;}
.y173{bottom:235.226667pt;}
.y1c1{bottom:236.666667pt;}
.y19d{bottom:236.986667pt;}
.y8b{bottom:239.306667pt;}
.y55{bottom:241.066667pt;}
.y139{bottom:241.466667pt;}
.ya8{bottom:242.106667pt;}
.y24{bottom:243.226667pt;}
.y6d{bottom:244.266667pt;}
.y1ce{bottom:244.666667pt;}
.yf0{bottom:245.386667pt;}
.y10a{bottom:245.786667pt;}
.y172{bottom:250.826667pt;}
.y1b4{bottom:252.266667pt;}
.y19c{bottom:252.666667pt;}
.y8a{bottom:254.906667pt;}
.y54{bottom:256.746667pt;}
.yd1{bottom:257.066667pt;}
.ya7{bottom:257.706667pt;}
.y23{bottom:259.146667pt;}
.y6c{bottom:259.866667pt;}
.y1cd{bottom:260.266667pt;}
.yef{bottom:260.986667pt;}
.y109{bottom:261.386667pt;}
.y171{bottom:266.506667pt;}
.y1b3{bottom:267.946667pt;}
.y89{bottom:270.586667pt;}
.y53{bottom:272.346667pt;}
.yd0{bottom:272.746667pt;}
.ya6{bottom:273.386667pt;}
.y6b{bottom:275.546667pt;}
.y19b{bottom:276.266667pt;}
.yee{bottom:276.666667pt;}
.y108{bottom:276.986667pt;}
.y1b2{bottom:283.546667pt;}
.y1cc{bottom:283.946667pt;}
.y88{bottom:286.186667pt;}
.y52{bottom:287.946667pt;}
.ycf{bottom:288.346667pt;}
.ya5{bottom:288.986667pt;}
.y170{bottom:290.106667pt;}
.y1c0{bottom:291.546667pt;}
.y19a{bottom:291.946667pt;}
.y22{bottom:292.106667pt;}
.yed{bottom:292.266667pt;}
.y107{bottom:292.666667pt;}
.ybc{bottom:299.386667pt;}
.y1cb{bottom:299.546667pt;}
.y87{bottom:301.786667pt;}
.yce{bottom:303.946667pt;}
.y138{bottom:304.346667pt;}
.ya4{bottom:304.586667pt;}
.y16f{bottom:305.786667pt;}
.y6a{bottom:307.146667pt;}
.y199{bottom:307.546667pt;}
.y21{bottom:307.706667pt;}
.y147{bottom:307.946667pt;}
.y13f{bottom:308.266667pt;}
.y51{bottom:319.626667pt;}
.y137{bottom:319.946667pt;}
.ya3{bottom:320.266667pt;}
.y69{bottom:322.746667pt;}
.y1b1{bottom:322.826667pt;}
.y1ca{bottom:323.146667pt;}
.y20{bottom:323.386667pt;}
.yec{bottom:323.946667pt;}
.y106{bottom:324.266667pt;}
.y16e{bottom:329.386667pt;}
.y1bf{bottom:330.826667pt;}
.y198{bottom:331.146667pt;}
.y86{bottom:333.466667pt;}
.y50{bottom:335.226667pt;}
.y136{bottom:335.626667pt;}
.ya2{bottom:335.866667pt;}
.y68{bottom:338.426667pt;}
.y1c9{bottom:338.826667pt;}
.y1f{bottom:338.986667pt;}
.yeb{bottom:339.546667pt;}
.y105{bottom:339.946667pt;}
.ybb{bottom:342.346667pt;}
.y16d{bottom:344.986667pt;}
.y1b0{bottom:346.426667pt;}
.y197{bottom:346.826667pt;}
.y85{bottom:349.066667pt;}
.y4f{bottom:350.906667pt;}
.y135{bottom:351.226667pt;}
.y67{bottom:354.026667pt;}
.y1c8{bottom:354.426667pt;}
.y1e{bottom:354.586667pt;}
.yea{bottom:355.146667pt;}
.y104{bottom:355.546667pt;}
.yba{bottom:357.946667pt;}
.y16c{bottom:360.666667pt;}
.y196{bottom:362.426667pt;}
.y84{bottom:364.666667pt;}
.y4e{bottom:366.506667pt;}
.y134{bottom:366.906667pt;}
.ya1{bottom:367.546667pt;}
.y66{bottom:369.706667pt;}
.y1af{bottom:370.106667pt;}
.y1d{bottom:370.266667pt;}
.ye9{bottom:370.826667pt;}
.y103{bottom:371.146667pt;}
.yb9{bottom:373.626667pt;}
.ycd{bottom:374.826667pt;}
.y195{bottom:378.106667pt;}
.y83{bottom:380.346667pt;}
.y133{bottom:382.506667pt;}
.ya0{bottom:383.146667pt;}
.y16b{bottom:384.266667pt;}
.y65{bottom:385.306667pt;}
.y1ae{bottom:385.706667pt;}
.y1c{bottom:385.866667pt;}
.ye8{bottom:386.426667pt;}
.y102{bottom:386.826667pt;}
.yb8{bottom:389.226667pt;}
.y194{bottom:393.706667pt;}
.y82{bottom:395.946667pt;}
.y4d{bottom:398.106667pt;}
.y9f{bottom:398.746667pt;}
.y16a{bottom:399.946667pt;}
.y64{bottom:400.906667pt;}
.y1ad{bottom:401.306667pt;}
.y1b{bottom:401.546667pt;}
.ye7{bottom:402.106667pt;}
.y101{bottom:402.426667pt;}
.yb7{bottom:404.826667pt;}
.y1be{bottom:409.306667pt;}
.y81{bottom:411.626667pt;}
.y4c{bottom:413.786667pt;}
.y132{bottom:414.106667pt;}
.y9e{bottom:414.426667pt;}
.y169{bottom:415.546667pt;}
.y63{bottom:416.586667pt;}
.y1a{bottom:417.146667pt;}
.y193{bottom:417.306667pt;}
.ycc{bottom:417.733333pt;}
.y100{bottom:418.133333pt;}
.yb6{bottom:420.533333pt;}
.y1ac{bottom:425.013333pt;}
.y80{bottom:427.253333pt;}
.y4b{bottom:429.413333pt;}
.y131{bottom:429.813333pt;}
.y9d{bottom:430.053333pt;}
.y62{bottom:432.213333pt;}
.y19{bottom:432.773333pt;}
.y192{bottom:433.013333pt;}
.ycb{bottom:433.333333pt;}
.yff{bottom:433.733333pt;}
.y168{bottom:439.173333pt;}
.y1ab{bottom:440.613333pt;}
.y7f{bottom:442.853333pt;}
.y4a{bottom:445.093333pt;}
.y130{bottom:445.413333pt;}
.y9c{bottom:445.733333pt;}
.y18{bottom:448.453333pt;}
.y1bd{bottom:448.613333pt;}
.yca{bottom:449.013333pt;}
.ye6{bottom:449.333333pt;}
.yb5{bottom:452.133333pt;}
.y167{bottom:454.853333pt;}
.y61{bottom:456.133333pt;}
.y191{bottom:456.613333pt;}
.y49{bottom:460.693333pt;}
.y12f{bottom:461.093333pt;}
.y9b{bottom:461.333333pt;}
.y17{bottom:464.053333pt;}
.y1aa{bottom:464.293333pt;}
.yc9{bottom:464.613333pt;}
.ye5{bottom:465.013333pt;}
.yfe{bottom:465.333333pt;}
.y166{bottom:470.453333pt;}
.y190{bottom:472.293333pt;}
.y7e{bottom:474.533333pt;}
.y12e{bottom:476.693333pt;}
.y9a{bottom:476.933333pt;}
.y16{bottom:479.733333pt;}
.y1a9{bottom:479.893333pt;}
.yc8{bottom:480.293333pt;}
.ye4{bottom:480.613333pt;}
.yb4{bottom:480.773333pt;}
.yfd{bottom:481.013333pt;}
.y48{bottom:484.613333pt;}
.y18f{bottom:487.893333pt;}
.y7d{bottom:490.133333pt;}
.y165{bottom:494.133333pt;}
.y15{bottom:495.333333pt;}
.ye3{bottom:496.293333pt;}
.yfc{bottom:496.613333pt;}
.y60{bottom:499.013333pt;}
.y18e{bottom:503.493333pt;}
.y7c{bottom:505.813333pt;}
.y12d{bottom:508.293333pt;}
.y99{bottom:508.613333pt;}
.y164{bottom:509.733333pt;}
.y14{bottom:510.933333pt;}
.y1bc{bottom:511.493333pt;}
.yc7{bottom:511.893333pt;}
.yfb{bottom:512.293333pt;}
.y18d{bottom:519.173333pt;}
.y7b{bottom:521.413333pt;}
.y12c{bottom:523.973333pt;}
.y98{bottom:524.213333pt;}
.y13{bottom:526.613333pt;}
.y1bb{bottom:527.173333pt;}
.y47{bottom:527.493333pt;}
.y5f{bottom:527.653333pt;}
.yfa{bottom:527.893333pt;}
.y163{bottom:533.333333pt;}
.y7a{bottom:537.013333pt;}
.y12b{bottom:539.573333pt;}
.y97{bottom:539.813333pt;}
.y12{bottom:542.213333pt;}
.y18c{bottom:542.773333pt;}
.y46{bottom:543.173333pt;}
.yf9{bottom:543.493333pt;}
.y162{bottom:549.013333pt;}
.y79{bottom:552.693333pt;}
.y12a{bottom:555.253333pt;}
.y96{bottom:555.493333pt;}
.y11{bottom:557.893333pt;}
.y18b{bottom:558.453333pt;}
.y45{bottom:558.773333pt;}
.ye2{bottom:559.173333pt;}
.y161{bottom:564.613333pt;}
.y1ba{bottom:566.453333pt;}
.y78{bottom:568.293333pt;}
.y129{bottom:570.853333pt;}
.y95{bottom:571.093333pt;}
.y10{bottom:573.493333pt;}
.y18a{bottom:574.053333pt;}
.y44{bottom:574.453333pt;}
.ye1{bottom:574.773333pt;}
.y1a8{bottom:582.053333pt;}
.y77{bottom:583.973333pt;}
.y128{bottom:586.453333pt;}
.y94{bottom:586.773333pt;}
.y160{bottom:588.293333pt;}
.yf{bottom:589.093333pt;}
.yc6{bottom:590.053333pt;}
.ye0{bottom:590.453333pt;}
.y189{bottom:597.653333pt;}
.y127{bottom:602.133333pt;}
.y15f{bottom:603.893333pt;}
.yc5{bottom:605.653333pt;}
.y43{bottom:606.053333pt;}
.y93{bottom:610.693333pt;}
.ye{bottom:613.093333pt;}
.y188{bottom:613.333333pt;}
.y76{bottom:615.573333pt;}
.y1a7{bottom:621.333333pt;}
.y42{bottom:621.653333pt;}
.yf8{bottom:622.053333pt;}
.y15e{bottom:627.493333pt;}
.y126{bottom:633.733333pt;}
.y187{bottom:636.933333pt;}
.y41{bottom:637.333333pt;}
.yf7{bottom:637.653333pt;}
.y15d{bottom:643.173333pt;}
.y75{bottom:644.213333pt;}
.y1c7{bottom:644.933333pt;}
.y125{bottom:649.413333pt;}
.y186{bottom:652.613333pt;}
.y40{bottom:652.933333pt;}
.yf6{bottom:653.333333pt;}
.y92{bottom:653.573333pt;}
.yd{bottom:654.613333pt;}
.y15c{bottom:658.773333pt;}
.y1c6{bottom:660.613333pt;}
.y124{bottom:665.013333pt;}
.y185{bottom:668.213333pt;}
.y3f{bottom:668.613333pt;}
.yf5{bottom:668.933333pt;}
.y15b{bottom:674.373333pt;}
.y1a6{bottom:676.213333pt;}
.y123{bottom:680.613333pt;}
.y91{bottom:682.213333pt;}
.y3e{bottom:684.213333pt;}
.ydf{bottom:684.613333pt;}
.yc{bottom:686.453333pt;}
.y184{bottom:691.813333pt;}
.y122{bottom:696.293333pt;}
.y15a{bottom:698.053333pt;}
.yc4{bottom:699.813333pt;}
.yde{bottom:700.213333pt;}
.y183{bottom:707.493333pt;}
.y121{bottom:711.893333pt;}
.y159{bottom:713.653333pt;}
.yc3{bottom:715.493333pt;}
.y3d{bottom:715.813333pt;}
.yb{bottom:718.453333pt;}
.y158{bottom:729.333333pt;}
.yc2{bottom:731.093333pt;}
.y3c{bottom:731.493333pt;}
.y1c5{bottom:739.093333pt;}
.y120{bottom:743.573333pt;}
.y182{bottom:746.693333pt;}
.y3b{bottom:747.093333pt;}
.y157{bottom:752.933333pt;}
.ya{bottom:753.813333pt;}
.y1a5{bottom:754.693333pt;}
.y11f{bottom:759.173333pt;}
.y3a{bottom:762.693333pt;}
.y156{bottom:768.533333pt;}
.y9{bottom:769.813333pt;}
.y181{bottom:770.373333pt;}
.y11e{bottom:774.773333pt;}
.y39{bottom:778.373333pt;}
.y8{bottom:782.453333pt;}
.y155{bottom:784.213333pt;}
.y180{bottom:785.973333pt;}
.y11d{bottom:790.453333pt;}
.y38{bottom:793.973333pt;}
.ydd{bottom:794.373333pt;}
.y17f{bottom:801.653333pt;}
.y7{bottom:801.813333pt;}
.y11c{bottom:806.053333pt;}
.y154{bottom:807.813333pt;}
.y37{bottom:809.653333pt;}
.ydc{bottom:809.973333pt;}
.y6{bottom:817.813333pt;}
.y11b{bottom:821.733333pt;}
.y153{bottom:823.493333pt;}
.y36{bottom:825.253333pt;}
.ydb{bottom:825.653333pt;}
.y1c4{bottom:833.253333pt;}
.y11a{bottom:837.333333pt;}
.yc1{bottom:840.853333pt;}
.yda{bottom:841.253333pt;}
.y5{bottom:846.533333pt;}
.y152{bottom:847.093333pt;}
.y1c3{bottom:848.853333pt;}
.y119{bottom:852.933333pt;}
.y35{bottom:856.853333pt;}
.y151{bottom:862.693333pt;}
.y4{bottom:863.733333pt;}
.y17e{bottom:864.533333pt;}
.y34{bottom:872.533333pt;}
.y150{bottom:878.373333pt;}
.y17d{bottom:880.133333pt;}
.y118{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.y1b9{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y117{bottom:900.240000pt;}
.y14f{bottom:902.320000pt;}
.y32{bottom:903.840000pt;}
.y116{bottom:915.840000pt;}
.y31{bottom:919.440000pt;}
.yb3{bottom:919.840000pt;}
.y1d3{bottom:927.440000pt;}
.y115{bottom:931.520000pt;}
.y30{bottom:935.040000pt;}
.yb2{bottom:935.440000pt;}
.y1a4{bottom:943.040000pt;}
.y14e{bottom:945.200000pt;}
.y114{bottom:947.120000pt;}
.y2f{bottom:950.720000pt;}
.yb1{bottom:951.040000pt;}
.y17c{bottom:958.720000pt;}
.y113{bottom:962.800000pt;}
.y2e{bottom:966.320000pt;}
.y5e{bottom:966.720000pt;}
.y14d{bottom:969.120000pt;}
.y17b{bottom:974.320000pt;}
.y112{bottom:978.400000pt;}
.y5d{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y111{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h3{height:39.589844pt;}
.h7{height:45.246562pt;}
.h9{height:49.581562pt;}
.h8{height:52.892031pt;}
.hb{height:54.927899pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x9{left:73.279988pt;}
.x7{left:81.039988pt;}
.xc{left:98.879988pt;}
.xb{left:112.239988pt;}
.x2{left:180.266655pt;}
.x5{left:253.466655pt;}
.x4{left:582.053322pt;}
.xa{left:664.053322pt;}
.x8{left:687.013322pt;}
.x6{left:694.053322pt;}
.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; }
  