
    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_3230b606ed23a1c7e1a015f2.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_8bbe043246a6f2930c852f54.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_e93a4cb85bae20e554b3cb8b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_b6239672a5bff3cf31b829fd.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_4fdd3bb127eee7453fed38fd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cb75fc90752af13d3c853603.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.178800px;}
.ls15{letter-spacing:-0.160800px;}
.ls14{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.014760px;}
.ls18{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.098400px;}
.ls12{letter-spacing:0.115800px;}
.ls1a{letter-spacing:0.116400px;}
.ls13{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.181200px;}
.lsa{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1b{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.425600px;}
.wsb{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wse{word-spacing:-13.353600px;}
.ws14{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws11{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.217400px;}
.wsf{word-spacing:-13.072800px;}
.ws10{word-spacing:-13.065600px;}
.wsc{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-4.369920px;}
._d{margin-left:-3.006000px;}
._0{margin-left:-1.104000px;}
._1{width:1.232760px;}
._9{width:2.857799px;}
._8{width:4.148400px;}
._e{width:5.431198px;}
._5{width:6.673200px;}
._2{width:7.695600px;}
._6{width:9.038397px;}
._f{width:10.120088px;}
._7{width:11.846760px;}
._a{width:14.686920px;}
._3{width:15.931800px;}
._4{width:16.942440px;}
._b{width:18.456600px;}
._c{width:19.840201px;}
._13{width:21.643200px;}
._10{width:23.927760px;}
._1d{width:25.310520px;}
._1f{width:26.904480px;}
._1e{width:28.076040px;}
._2a{width:29.699280px;}
._40{width:31.434000px;}
._25{width:32.464800px;}
._24{width:39.078000px;}
._22{width:40.460760px;}
._2d{width:42.504840px;}
._41{width:45.871560px;}
._34{width:47.314440px;}
._26{width:48.516840px;}
._27{width:49.538880px;}
._21{width:50.560920px;}
._16{width:54.769320px;}
._35{width:57.534840px;}
._15{width:58.556880px;}
._17{width:61.623000px;}
._28{width:62.765280px;}
._14{width:68.476680px;}
._2c{width:70.220160px;}
._29{width:73.406520px;}
._12{width:74.789280px;}
._33{width:76.172040px;}
._2f{width:78.095880px;}
._1a{width:79.418520px;}
._3e{width:80.440560px;}
._3a{width:82.244160px;}
._1c{width:87.414480px;}
._30{width:90.480600px;}
._32{width:94.568760px;}
._18{width:103.707000px;}
._31{width:105.210000px;}
._19{width:123.546600px;}
._3f{width:129.738960px;}
._3d{width:149.458320px;}
._3b{width:150.660720px;}
._2e{width:153.306000px;}
._42{width:155.410200px;}
._43{width:156.432240px;}
._38{width:159.197760px;}
._3c{width:161.602560px;}
._39{width:167.193720px;}
._1b{width:173.626560px;}
._23{width:181.682640px;}
._37{width:191.903040px;}
._2b{width:200.500200px;}
._36{width:225.269640px;}
._20{width:441.573600px;}
.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;}
.y64{bottom:7.920000px;}
.y5d{bottom:25.380000px;}
.y61{bottom:25.470000px;}
.y60{bottom:43.020000px;}
.y63{bottom:43.110000px;}
.yc9{bottom:60.570000px;}
.yc7{bottom:60.600000px;}
.y67{bottom:60.660000px;}
.yf8{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yf6{bottom:78.210000px;}
.yc6{bottom:78.240000px;}
.y1{bottom:101.640000px;}
.y58{bottom:111.720000px;}
.yb3{bottom:112.170000px;}
.ye4{bottom:115.860000px;}
.yc3{bottom:119.910000px;}
.y131{bottom:121.530000px;}
.yf4{bottom:122.070000px;}
.y11a{bottom:126.390000px;}
.y57{bottom:129.270000px;}
.y28{bottom:129.630000px;}
.ya7{bottom:129.720000px;}
.y7f{bottom:133.050000px;}
.ye3{bottom:133.500000px;}
.y130{bottom:139.170000px;}
.y119{bottom:143.940000px;}
.y56{bottom:146.910000px;}
.y27{bottom:147.270000px;}
.y7e{bottom:150.600000px;}
.ye2{bottom:151.050000px;}
.yc2{bottom:155.460000px;}
.y12f{bottom:156.720000px;}
.y118{bottom:161.580000px;}
.y26{bottom:164.820000px;}
.ya6{bottom:164.910000px;}
.y7d{bottom:168.240000px;}
.y55{bottom:173.460000px;}
.y12e{bottom:174.270000px;}
.ye1{bottom:177.600000px;}
.y117{bottom:179.130000px;}
.ya5{bottom:182.460000px;}
.y7c{bottom:185.790000px;}
.yc1{bottom:191.100000px;}
.y12d{bottom:191.910000px;}
.y116{bottom:196.680000px;}
.y25{bottom:200.370000px;}
.yf3{bottom:202.170000px;}
.y7b{bottom:203.430000px;}
.y54{bottom:209.100000px;}
.y12c{bottom:209.460000px;}
.ye0{bottom:213.240000px;}
.y24{bottom:218.010000px;}
.y15c{bottom:223.050000px;}
.y115{bottom:223.320000px;}
.y53{bottom:226.650000px;}
.y12b{bottom:227.100000px;}
.y7a{bottom:229.980000px;}
.ydf{bottom:230.790000px;}
.y23{bottom:235.560000px;}
.y15b{bottom:240.600000px;}
.y52{bottom:244.200000px;}
.ya4{bottom:244.650000px;}
.yde{bottom:248.430000px;}
.y22{bottom:253.200000px;}
.y114{bottom:258.870000px;}
.y51{bottom:261.840000px;}
.ya3{bottom:262.200000px;}
.y79{bottom:265.530000px;}
.ydd{bottom:265.980000px;}
.y15a{bottom:267.240000px;}
.yf2{bottom:268.500000px;}
.y21{bottom:270.750000px;}
.y12a{bottom:271.200000px;}
.y113{bottom:276.510000px;}
.y50{bottom:279.390000px;}
.ya2{bottom:279.840000px;}
.y78{bottom:283.170000px;}
.ydc{bottom:283.530000px;}
.y159{bottom:284.790000px;}
.yf1{bottom:292.440000px;}
.y112{bottom:294.060000px;}
.y4f{bottom:296.940000px;}
.ya1{bottom:297.390000px;}
.y77{bottom:300.720000px;}
.ydb{bottom:301.170000px;}
.y158{bottom:302.430000px;}
.y20{bottom:306.300000px;}
.y129{bottom:306.840000px;}
.y111{bottom:311.610000px;}
.ya0{bottom:314.940000px;}
.y76{bottom:318.360000px;}
.yda{bottom:318.720000px;}
.y4e{bottom:323.580000px;}
.y1f{bottom:323.940000px;}
.y128{bottom:324.390000px;}
.y157{bottom:328.980000px;}
.y110{bottom:329.250000px;}
.y9f{bottom:332.580000px;}
.y75{bottom:335.910000px;}
.yd9{bottom:336.360000px;}
.y1e{bottom:341.490000px;}
.y127{bottom:341.940000px;}
.y156{bottom:346.530000px;}
.y10f{bottom:346.800000px;}
.y9e{bottom:350.130000px;}
.y74{bottom:353.460000px;}
.yf0{bottom:354.990000px;}
.y1d{bottom:359.130000px;}
.y126{bottom:359.580000px;}
.yd8{bottom:362.910000px;}
.y10e{bottom:364.440000px;}
.yc0{bottom:367.770000px;}
.y73{bottom:371.100000px;}
.y155{bottom:373.170000px;}
.y1c{bottom:376.680000px;}
.y4d{bottom:376.770000px;}
.y125{bottom:377.130000px;}
.ybf{bottom:385.320000px;}
.y10d{bottom:390.990000px;}
.y1b{bottom:394.230000px;}
.y4c{bottom:394.320000px;}
.yb2{bottom:394.770000px;}
.y72{bottom:397.650000px;}
.yd7{bottom:398.460000px;}
.y154{bottom:399.720000px;}
.y1a{bottom:411.870000px;}
.y9d{bottom:412.320000px;}
.yd6{bottom:416.100000px;}
.y153{bottom:417.360000px;}
.yef{bottom:417.450000px;}
.y10c{bottom:426.540000px;}
.y4b{bottom:429.510000px;}
.y9c{bottom:429.870000px;}
.y71{bottom:433.290000px;}
.yd5{bottom:433.650000px;}
.y19{bottom:438.780000px;}
.y152{bottom:443.910000px;}
.y10b{bottom:444.180000px;}
.y4a{bottom:447.060000px;}
.y9b{bottom:447.510000px;}
.y70{bottom:450.840000px;}
.yd4{bottom:451.290000px;}
.y124{bottom:456.510000px;}
.y151{bottom:461.460000px;}
.y10a{bottom:461.730000px;}
.y49{bottom:464.700000px;}
.y9a{bottom:465.060000px;}
.y6f{bottom:468.390000px;}
.yd3{bottom:468.840000px;}
.y150{bottom:479.130000px;}
.y109{bottom:479.400000px;}
.yee{bottom:480.030000px;}
.y99{bottom:482.730000px;}
.y6e{bottom:486.060000px;}
.yd2{bottom:486.420000px;}
.y18{bottom:487.050000px;}
.y48{bottom:491.280000px;}
.y123{bottom:492.090000px;}
.y108{bottom:496.950000px;}
.y98{bottom:500.280000px;}
.y6d{bottom:503.610000px;}
.yd1{bottom:504.060000px;}
.y17{bottom:504.960000px;}
.y14f{bottom:505.680000px;}
.y122{bottom:509.730000px;}
.y107{bottom:514.500000px;}
.ybe{bottom:517.830000px;}
.y6c{bottom:521.160000px;}
.yd0{bottom:521.610000px;}
.y14e{bottom:523.230000px;}
.y47{bottom:526.830000px;}
.y121{bottom:527.280000px;}
.y106{bottom:532.140000px;}
.ybd{bottom:535.470000px;}
.y6b{bottom:538.800000px;}
.ycf{bottom:539.160000px;}
.y14d{bottom:540.870000px;}
.y16{bottom:541.950000px;}
.y46{bottom:544.470000px;}
.y120{bottom:544.830000px;}
.y105{bottom:558.690000px;}
.y15{bottom:559.590000px;}
.yed{bottom:560.130000px;}
.y45{bottom:562.020000px;}
.y97{bottom:562.470000px;}
.y6a{bottom:565.350000px;}
.yce{bottom:565.800000px;}
.y14c{bottom:567.420000px;}
.y14{bottom:577.140000px;}
.y44{bottom:579.660000px;}
.y96{bottom:580.020000px;}
.y14b{bottom:585.060000px;}
.y69{bottom:592.260000px;}
.ycd{bottom:592.710000px;}
.y104{bottom:594.330000px;}
.y13{bottom:594.780000px;}
.y43{bottom:597.210000px;}
.y95{bottom:597.660000px;}
.y14a{bottom:611.610000px;}
.y103{bottom:611.880000px;}
.y12{bottom:612.330000px;}
.y42{bottom:614.760000px;}
.y94{bottom:615.210000px;}
.y149{bottom:629.160000px;}
.y102{bottom:629.430000px;}
.y11{bottom:629.880000px;}
.y41{bottom:632.400000px;}
.y93{bottom:632.760000px;}
.y68{bottom:637.980000px;}
.ycc{bottom:638.340000px;}
.yec{bottom:640.230000px;}
.y101{bottom:647.070000px;}
.y10{bottom:647.520000px;}
.y92{bottom:650.400000px;}
.y148{bottom:656.070000px;}
.y40{bottom:658.950000px;}
.y11f{bottom:659.400000px;}
.y100{bottom:664.620000px;}
.yf{bottom:665.070000px;}
.y91{bottom:667.950000px;}
.yff{bottom:682.260000px;}
.ye{bottom:682.710000px;}
.y90{bottom:685.590000px;}
.y3f{bottom:694.590000px;}
.y11e{bottom:694.950000px;}
.yfe{bottom:699.810000px;}
.yd{bottom:700.260000px;}
.y66{bottom:700.440000px;}
.yeb{bottom:702.690000px;}
.y147{bottom:704.400000px;}
.y3e{bottom:712.140000px;}
.y11d{bottom:712.590000px;}
.yfd{bottom:717.360000px;}
.yc{bottom:717.810000px;}
.ycb{bottom:718.440000px;}
.y146{bottom:721.950000px;}
.y3d{bottom:729.690000px;}
.yb1{bottom:730.140000px;}
.yb{bottom:735.450000px;}
.y8f{bottom:739.050000px;}
.y145{bottom:739.590000px;}
.yfc{bottom:744.000000px;}
.y3c{bottom:747.330000px;}
.yb0{bottom:747.690000px;}
.ya{bottom:753.000000px;}
.y144{bottom:757.140000px;}
.y3b{bottom:764.880000px;}
.yea{bottom:765.240000px;}
.yaf{bottom:765.330000px;}
.yfb{bottom:770.910000px;}
.y143{bottom:774.690000px;}
.y9{bottom:779.910000px;}
.y65{bottom:780.540000px;}
.y3a{bottom:782.520000px;}
.yae{bottom:782.880000px;}
.y8e{bottom:787.290000px;}
.y142{bottom:792.330000px;}
.yca{bottom:798.540000px;}
.y39{bottom:800.070000px;}
.yad{bottom:800.520000px;}
.y8d{bottom:804.930000px;}
.y141{bottom:809.880000px;}
.yfa{bottom:816.540000px;}
.y38{bottom:817.620000px;}
.yac{bottom:818.070000px;}
.y8c{bottom:822.480000px;}
.y140{bottom:827.520000px;}
.y8{bottom:828.240000px;}
.yab{bottom:835.620000px;}
.y8b{bottom:840.030000px;}
.y62{bottom:843.000000px;}
.y37{bottom:844.260000px;}
.y13f{bottom:845.070000px;}
.ye9{bottom:849.030000px;}
.yaa{bottom:853.260000px;}
.y8a{bottom:857.670000px;}
.y11c{bottom:862.260000px;}
.y13e{bottom:862.620000px;}
.y7{bottom:863.790000px;}
.y89{bottom:875.220000px;}
.yc8{bottom:878.640000px;}
.ya9{bottom:879.810000px;}
.y36{bottom:880.170000px;}
.y13d{bottom:880.260000px;}
.ye8{bottom:884.670000px;}
.y11b{bottom:889.170000px;}
.y88{bottom:892.860000px;}
.yf9{bottom:896.640000px;}
.y13c{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.ye7{bottom:902.220000px;}
.y5f{bottom:905.550000px;}
.ya8{bottom:906.720000px;}
.ybc{bottom:915.450000px;}
.y87{bottom:919.410000px;}
.ye6{bottom:919.860000px;}
.y13b{bottom:924.720000px;}
.y35{bottom:928.410000px;}
.ybb{bottom:933.000000px;}
.y5{bottom:935.610000px;}
.ye5{bottom:937.410000px;}
.y34{bottom:945.960000px;}
.yba{bottom:950.550000px;}
.y86{bottom:954.960000px;}
.yc5{bottom:958.740000px;}
.yf7{bottom:959.100000px;}
.y33{bottom:963.600000px;}
.y5c{bottom:968.100000px;}
.yb9{bottom:968.190000px;}
.y4{bottom:971.700000px;}
.y85{bottom:972.600000px;}
.y13a{bottom:972.960000px;}
.y32{bottom:981.150000px;}
.yb8{bottom:985.740000px;}
.y84{bottom:990.150000px;}
.y139{bottom:990.600000px;}
.yb7{bottom:1003.290000px;}
.y83{bottom:1007.790000px;}
.y138{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y31{bottom:1016.820000px;}
.yb6{bottom:1020.960000px;}
.y82{bottom:1025.370000px;}
.y137{bottom:1025.820000px;}
.y30{bottom:1034.370000px;}
.y81{bottom:1042.920000px;}
.y136{bottom:1043.370000px;}
.yb5{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.yc4{bottom:1056.420000px;}
.yf5{bottom:1056.870000px;}
.y80{bottom:1060.560000px;}
.y135{bottom:1060.920000px;}
.y2e{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.yb4{bottom:1074.420000px;}
.y134{bottom:1078.560000px;}
.y2d{bottom:1087.110000px;}
.y5a{bottom:1087.560000px;}
.y133{bottom:1096.110000px;}
.y59{bottom:1105.110000px;}
.y132{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.ha{height:44.130000px;}
.h11{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:61.740000px;}
.h10{height:61.770000px;}
.h13{height:61.793886px;}
.hc{height:61.830000px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:79.290000px;}
.hd{height:79.380000px;}
.h12{height:96.930000px;}
.he{height:96.960000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:81.000000px;}
.wa{width:87.390000px;}
.w6{width:95.850000px;}
.w9{width:96.330000px;}
.wb{width:101.340000px;}
.w5{width:105.390000px;}
.we{width:108.720000px;}
.w19{width:111.000000px;}
.w14{width:111.060000px;}
.w16{width:111.720000px;}
.wd{width:111.990000px;}
.wc{width:116.190000px;}
.w12{width:116.280000px;}
.w10{width:116.670000px;}
.w18{width:120.150000px;}
.w1a{width:122.850000px;}
.w13{width:125.310000px;}
.wf{width:128.970000px;}
.w3{width:133.140000px;}
.w15{width:133.740000px;}
.w1b{width:137.070000px;}
.w11{width:148.950000px;}
.w17{width:149.130000px;}
.w7{width:150.060000px;}
.w8{width:186.570000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x19{left:111.239987px;}
.xa{left:165.900000px;}
.x15{left:181.200000px;}
.x10{left:186.150000px;}
.x5{left:202.620000px;}
.x2{left:211.079987px;}
.xb{left:254.100000px;}
.x6{left:284.340000px;}
.x16{left:331.050000px;}
.x11{left:335.820000px;}
.xc{left:356.250000px;}
.x7{left:390.450000px;}
.x12{left:452.820000px;}
.xd{left:473.250000px;}
.x8{left:487.020000px;}
.x17{left:563.730000px;}
.x13{left:578.940000px;}
.xe{left:585.960000px;}
.x9{left:637.890000px;}
.x18{left:687.390000px;}
.x14{left:690.720000px;}
.xf{left:695.490000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.158933pt;}
.ls15{letter-spacing:-0.142933pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls18{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.087467pt;}
.ls12{letter-spacing:0.102933pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls13{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.161067pt;}
.lsa{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.933867pt;}
.wsb{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.869867pt;}
.ws14{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws11{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.748800pt;}
.wsf{word-spacing:-11.620267pt;}
.ws10{word-spacing:-11.613867pt;}
.wsc{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.884373pt;}
._d{margin-left:-2.672000pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.095787pt;}
._9{width:2.540266pt;}
._8{width:3.687467pt;}
._e{width:4.827731pt;}
._5{width:5.931733pt;}
._2{width:6.840534pt;}
._6{width:8.034131pt;}
._f{width:8.995634pt;}
._7{width:10.530453pt;}
._a{width:13.055040pt;}
._3{width:14.161600pt;}
._4{width:15.059947pt;}
._b{width:16.405866pt;}
._c{width:17.635734pt;}
._13{width:19.238400pt;}
._10{width:21.269120pt;}
._1d{width:22.498240pt;}
._1f{width:23.915093pt;}
._1e{width:24.956480pt;}
._2a{width:26.399360pt;}
._40{width:27.941333pt;}
._25{width:28.857600pt;}
._24{width:34.736000pt;}
._22{width:35.965120pt;}
._2d{width:37.782080pt;}
._41{width:40.774720pt;}
._34{width:42.057280pt;}
._26{width:43.126080pt;}
._27{width:44.034560pt;}
._21{width:44.943040pt;}
._16{width:48.683840pt;}
._35{width:51.142080pt;}
._15{width:52.050560pt;}
._17{width:54.776000pt;}
._28{width:55.791360pt;}
._14{width:60.868160pt;}
._2c{width:62.417920pt;}
._29{width:65.250240pt;}
._12{width:66.479360pt;}
._33{width:67.708480pt;}
._2f{width:69.418560pt;}
._1a{width:70.594240pt;}
._3e{width:71.502720pt;}
._3a{width:73.105920pt;}
._1c{width:77.701760pt;}
._30{width:80.427200pt;}
._32{width:84.061120pt;}
._18{width:92.184000pt;}
._31{width:93.520000pt;}
._19{width:109.819200pt;}
._3f{width:115.323520pt;}
._3d{width:132.851840pt;}
._3b{width:133.920640pt;}
._2e{width:136.272000pt;}
._42{width:138.142400pt;}
._43{width:139.050880pt;}
._38{width:141.509120pt;}
._3c{width:143.646720pt;}
._39{width:148.616640pt;}
._1b{width:154.334720pt;}
._23{width:161.495680pt;}
._37{width:170.580480pt;}
._2b{width:178.222400pt;}
._36{width:200.239680pt;}
._20{width:392.509867pt;}
.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;}
.y64{bottom:7.040000pt;}
.y5d{bottom:22.560000pt;}
.y61{bottom:22.640000pt;}
.y60{bottom:38.240000pt;}
.y63{bottom:38.320000pt;}
.yc9{bottom:53.840000pt;}
.yc7{bottom:53.866667pt;}
.y67{bottom:53.920000pt;}
.yf8{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yf6{bottom:69.520000pt;}
.yc6{bottom:69.546667pt;}
.y1{bottom:90.346667pt;}
.y58{bottom:99.306667pt;}
.yb3{bottom:99.706667pt;}
.ye4{bottom:102.986667pt;}
.yc3{bottom:106.586667pt;}
.y131{bottom:108.026667pt;}
.yf4{bottom:108.506667pt;}
.y11a{bottom:112.346667pt;}
.y57{bottom:114.906667pt;}
.y28{bottom:115.226667pt;}
.ya7{bottom:115.306667pt;}
.y7f{bottom:118.266667pt;}
.ye3{bottom:118.666667pt;}
.y130{bottom:123.706667pt;}
.y119{bottom:127.946667pt;}
.y56{bottom:130.586667pt;}
.y27{bottom:130.906667pt;}
.y7e{bottom:133.866667pt;}
.ye2{bottom:134.266667pt;}
.yc2{bottom:138.186667pt;}
.y12f{bottom:139.306667pt;}
.y118{bottom:143.626667pt;}
.y26{bottom:146.506667pt;}
.ya6{bottom:146.586667pt;}
.y7d{bottom:149.546667pt;}
.y55{bottom:154.186667pt;}
.y12e{bottom:154.906667pt;}
.ye1{bottom:157.866667pt;}
.y117{bottom:159.226667pt;}
.ya5{bottom:162.186667pt;}
.y7c{bottom:165.146667pt;}
.yc1{bottom:169.866667pt;}
.y12d{bottom:170.586667pt;}
.y116{bottom:174.826667pt;}
.y25{bottom:178.106667pt;}
.yf3{bottom:179.706667pt;}
.y7b{bottom:180.826667pt;}
.y54{bottom:185.866667pt;}
.y12c{bottom:186.186667pt;}
.ye0{bottom:189.546667pt;}
.y24{bottom:193.786667pt;}
.y15c{bottom:198.266667pt;}
.y115{bottom:198.506667pt;}
.y53{bottom:201.466667pt;}
.y12b{bottom:201.866667pt;}
.y7a{bottom:204.426667pt;}
.ydf{bottom:205.146667pt;}
.y23{bottom:209.386667pt;}
.y15b{bottom:213.866667pt;}
.y52{bottom:217.066667pt;}
.ya4{bottom:217.466667pt;}
.yde{bottom:220.826667pt;}
.y22{bottom:225.066667pt;}
.y114{bottom:230.106667pt;}
.y51{bottom:232.746667pt;}
.ya3{bottom:233.066667pt;}
.y79{bottom:236.026667pt;}
.ydd{bottom:236.426667pt;}
.y15a{bottom:237.546667pt;}
.yf2{bottom:238.666667pt;}
.y21{bottom:240.666667pt;}
.y12a{bottom:241.066667pt;}
.y113{bottom:245.786667pt;}
.y50{bottom:248.346667pt;}
.ya2{bottom:248.746667pt;}
.y78{bottom:251.706667pt;}
.ydc{bottom:252.026667pt;}
.y159{bottom:253.146667pt;}
.yf1{bottom:259.946667pt;}
.y112{bottom:261.386667pt;}
.y4f{bottom:263.946667pt;}
.ya1{bottom:264.346667pt;}
.y77{bottom:267.306667pt;}
.ydb{bottom:267.706667pt;}
.y158{bottom:268.826667pt;}
.y20{bottom:272.266667pt;}
.y129{bottom:272.746667pt;}
.y111{bottom:276.986667pt;}
.ya0{bottom:279.946667pt;}
.y76{bottom:282.986667pt;}
.yda{bottom:283.306667pt;}
.y4e{bottom:287.626667pt;}
.y1f{bottom:287.946667pt;}
.y128{bottom:288.346667pt;}
.y157{bottom:292.426667pt;}
.y110{bottom:292.666667pt;}
.y9f{bottom:295.626667pt;}
.y75{bottom:298.586667pt;}
.yd9{bottom:298.986667pt;}
.y1e{bottom:303.546667pt;}
.y127{bottom:303.946667pt;}
.y156{bottom:308.026667pt;}
.y10f{bottom:308.266667pt;}
.y9e{bottom:311.226667pt;}
.y74{bottom:314.186667pt;}
.yf0{bottom:315.546667pt;}
.y1d{bottom:319.226667pt;}
.y126{bottom:319.626667pt;}
.yd8{bottom:322.586667pt;}
.y10e{bottom:323.946667pt;}
.yc0{bottom:326.906667pt;}
.y73{bottom:329.866667pt;}
.y155{bottom:331.706667pt;}
.y1c{bottom:334.826667pt;}
.y4d{bottom:334.906667pt;}
.y125{bottom:335.226667pt;}
.ybf{bottom:342.506667pt;}
.y10d{bottom:347.546667pt;}
.y1b{bottom:350.426667pt;}
.y4c{bottom:350.506667pt;}
.yb2{bottom:350.906667pt;}
.y72{bottom:353.466667pt;}
.yd7{bottom:354.186667pt;}
.y154{bottom:355.306667pt;}
.y1a{bottom:366.106667pt;}
.y9d{bottom:366.506667pt;}
.yd6{bottom:369.866667pt;}
.y153{bottom:370.986667pt;}
.yef{bottom:371.066667pt;}
.y10c{bottom:379.146667pt;}
.y4b{bottom:381.786667pt;}
.y9c{bottom:382.106667pt;}
.y71{bottom:385.146667pt;}
.yd5{bottom:385.466667pt;}
.y19{bottom:390.026667pt;}
.y152{bottom:394.586667pt;}
.y10b{bottom:394.826667pt;}
.y4a{bottom:397.386667pt;}
.y9b{bottom:397.786667pt;}
.y70{bottom:400.746667pt;}
.yd4{bottom:401.146667pt;}
.y124{bottom:405.786667pt;}
.y151{bottom:410.186667pt;}
.y10a{bottom:410.426667pt;}
.y49{bottom:413.066667pt;}
.y9a{bottom:413.386667pt;}
.y6f{bottom:416.346667pt;}
.yd3{bottom:416.746667pt;}
.y150{bottom:425.893333pt;}
.y109{bottom:426.133333pt;}
.yee{bottom:426.693333pt;}
.y99{bottom:429.093333pt;}
.y6e{bottom:432.053333pt;}
.yd2{bottom:432.373333pt;}
.y18{bottom:432.933333pt;}
.y48{bottom:436.693333pt;}
.y123{bottom:437.413333pt;}
.y108{bottom:441.733333pt;}
.y98{bottom:444.693333pt;}
.y6d{bottom:447.653333pt;}
.yd1{bottom:448.053333pt;}
.y17{bottom:448.853333pt;}
.y14f{bottom:449.493333pt;}
.y122{bottom:453.093333pt;}
.y107{bottom:457.333333pt;}
.ybe{bottom:460.293333pt;}
.y6c{bottom:463.253333pt;}
.yd0{bottom:463.653333pt;}
.y14e{bottom:465.093333pt;}
.y47{bottom:468.293333pt;}
.y121{bottom:468.693333pt;}
.y106{bottom:473.013333pt;}
.ybd{bottom:475.973333pt;}
.y6b{bottom:478.933333pt;}
.ycf{bottom:479.253333pt;}
.y14d{bottom:480.773333pt;}
.y16{bottom:481.733333pt;}
.y46{bottom:483.973333pt;}
.y120{bottom:484.293333pt;}
.y105{bottom:496.613333pt;}
.y15{bottom:497.413333pt;}
.yed{bottom:497.893333pt;}
.y45{bottom:499.573333pt;}
.y97{bottom:499.973333pt;}
.y6a{bottom:502.533333pt;}
.yce{bottom:502.933333pt;}
.y14c{bottom:504.373333pt;}
.y14{bottom:513.013333pt;}
.y44{bottom:515.253333pt;}
.y96{bottom:515.573333pt;}
.y14b{bottom:520.053333pt;}
.y69{bottom:526.453333pt;}
.ycd{bottom:526.853333pt;}
.y104{bottom:528.293333pt;}
.y13{bottom:528.693333pt;}
.y43{bottom:530.853333pt;}
.y95{bottom:531.253333pt;}
.y14a{bottom:543.653333pt;}
.y103{bottom:543.893333pt;}
.y12{bottom:544.293333pt;}
.y42{bottom:546.453333pt;}
.y94{bottom:546.853333pt;}
.y149{bottom:559.253333pt;}
.y102{bottom:559.493333pt;}
.y11{bottom:559.893333pt;}
.y41{bottom:562.133333pt;}
.y93{bottom:562.453333pt;}
.y68{bottom:567.093333pt;}
.ycc{bottom:567.413333pt;}
.yec{bottom:569.093333pt;}
.y101{bottom:575.173333pt;}
.y10{bottom:575.573333pt;}
.y92{bottom:578.133333pt;}
.y148{bottom:583.173333pt;}
.y40{bottom:585.733333pt;}
.y11f{bottom:586.133333pt;}
.y100{bottom:590.773333pt;}
.yf{bottom:591.173333pt;}
.y91{bottom:593.733333pt;}
.yff{bottom:606.453333pt;}
.ye{bottom:606.853333pt;}
.y90{bottom:609.413333pt;}
.y3f{bottom:617.413333pt;}
.y11e{bottom:617.733333pt;}
.yfe{bottom:622.053333pt;}
.yd{bottom:622.453333pt;}
.y66{bottom:622.613333pt;}
.yeb{bottom:624.613333pt;}
.y147{bottom:626.133333pt;}
.y3e{bottom:633.013333pt;}
.y11d{bottom:633.413333pt;}
.yfd{bottom:637.653333pt;}
.yc{bottom:638.053333pt;}
.ycb{bottom:638.613333pt;}
.y146{bottom:641.733333pt;}
.y3d{bottom:648.613333pt;}
.yb1{bottom:649.013333pt;}
.yb{bottom:653.733333pt;}
.y8f{bottom:656.933333pt;}
.y145{bottom:657.413333pt;}
.yfc{bottom:661.333333pt;}
.y3c{bottom:664.293333pt;}
.yb0{bottom:664.613333pt;}
.ya{bottom:669.333333pt;}
.y144{bottom:673.013333pt;}
.y3b{bottom:679.893333pt;}
.yea{bottom:680.213333pt;}
.yaf{bottom:680.293333pt;}
.yfb{bottom:685.253333pt;}
.y143{bottom:688.613333pt;}
.y9{bottom:693.253333pt;}
.y65{bottom:693.813333pt;}
.y3a{bottom:695.573333pt;}
.yae{bottom:695.893333pt;}
.y8e{bottom:699.813333pt;}
.y142{bottom:704.293333pt;}
.yca{bottom:709.813333pt;}
.y39{bottom:711.173333pt;}
.yad{bottom:711.573333pt;}
.y8d{bottom:715.493333pt;}
.y141{bottom:719.893333pt;}
.yfa{bottom:725.813333pt;}
.y38{bottom:726.773333pt;}
.yac{bottom:727.173333pt;}
.y8c{bottom:731.093333pt;}
.y140{bottom:735.573333pt;}
.y8{bottom:736.213333pt;}
.yab{bottom:742.773333pt;}
.y8b{bottom:746.693333pt;}
.y62{bottom:749.333333pt;}
.y37{bottom:750.453333pt;}
.y13f{bottom:751.173333pt;}
.ye9{bottom:754.693333pt;}
.yaa{bottom:758.453333pt;}
.y8a{bottom:762.373333pt;}
.y11c{bottom:766.453333pt;}
.y13e{bottom:766.773333pt;}
.y7{bottom:767.813333pt;}
.y89{bottom:777.973333pt;}
.yc8{bottom:781.013333pt;}
.ya9{bottom:782.053333pt;}
.y36{bottom:782.373333pt;}
.y13d{bottom:782.453333pt;}
.ye8{bottom:786.373333pt;}
.y11b{bottom:790.373333pt;}
.y88{bottom:793.653333pt;}
.yf9{bottom:797.013333pt;}
.y13c{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.ye7{bottom:801.973333pt;}
.y5f{bottom:804.933333pt;}
.ya8{bottom:805.973333pt;}
.ybc{bottom:813.733333pt;}
.y87{bottom:817.253333pt;}
.ye6{bottom:817.653333pt;}
.y13b{bottom:821.973333pt;}
.y35{bottom:825.253333pt;}
.ybb{bottom:829.333333pt;}
.y5{bottom:831.653333pt;}
.ye5{bottom:833.253333pt;}
.y34{bottom:840.853333pt;}
.yba{bottom:844.933333pt;}
.y86{bottom:848.853333pt;}
.yc5{bottom:852.213333pt;}
.yf7{bottom:852.533333pt;}
.y33{bottom:856.533333pt;}
.y5c{bottom:860.533333pt;}
.yb9{bottom:860.613333pt;}
.y4{bottom:863.733333pt;}
.y85{bottom:864.533333pt;}
.y13a{bottom:864.853333pt;}
.y32{bottom:872.133333pt;}
.yb8{bottom:876.213333pt;}
.y84{bottom:880.133333pt;}
.y139{bottom:880.533333pt;}
.yb7{bottom:891.813333pt;}
.y83{bottom:895.813333pt;}
.y138{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y31{bottom:903.840000pt;}
.yb6{bottom:907.520000pt;}
.y82{bottom:911.440000pt;}
.y137{bottom:911.840000pt;}
.y30{bottom:919.440000pt;}
.y81{bottom:927.040000pt;}
.y136{bottom:927.440000pt;}
.yb5{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.yc4{bottom:939.040000pt;}
.yf5{bottom:939.440000pt;}
.y80{bottom:942.720000pt;}
.y135{bottom:943.040000pt;}
.y2e{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.yb4{bottom:955.040000pt;}
.y134{bottom:958.720000pt;}
.y2d{bottom:966.320000pt;}
.y5a{bottom:966.720000pt;}
.y133{bottom:974.320000pt;}
.y59{bottom:982.320000pt;}
.y132{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.ha{height:39.226667pt;}
.h11{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:54.880000pt;}
.h10{height:54.906667pt;}
.h13{height:54.927899pt;}
.hc{height:54.960000pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:70.480000pt;}
.hd{height:70.560000pt;}
.h12{height:86.160000pt;}
.he{height:86.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:72.000000pt;}
.wa{width:77.680000pt;}
.w6{width:85.200000pt;}
.w9{width:85.626667pt;}
.wb{width:90.080000pt;}
.w5{width:93.680000pt;}
.we{width:96.640000pt;}
.w19{width:98.666667pt;}
.w14{width:98.720000pt;}
.w16{width:99.306667pt;}
.wd{width:99.546667pt;}
.wc{width:103.280000pt;}
.w12{width:103.360000pt;}
.w10{width:103.706667pt;}
.w18{width:106.800000pt;}
.w1a{width:109.200000pt;}
.w13{width:111.386667pt;}
.wf{width:114.640000pt;}
.w3{width:118.346667pt;}
.w15{width:118.880000pt;}
.w1b{width:121.840000pt;}
.w11{width:132.400000pt;}
.w17{width:132.560000pt;}
.w7{width:133.386667pt;}
.w8{width:165.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x19{left:98.879988pt;}
.xa{left:147.466667pt;}
.x15{left:161.066667pt;}
.x10{left:165.466667pt;}
.x5{left:180.106667pt;}
.x2{left:187.626655pt;}
.xb{left:225.866667pt;}
.x6{left:252.746667pt;}
.x16{left:294.266667pt;}
.x11{left:298.506667pt;}
.xc{left:316.666667pt;}
.x7{left:347.066667pt;}
.x12{left:402.506667pt;}
.xd{left:420.666667pt;}
.x8{left:432.906667pt;}
.x17{left:501.093333pt;}
.x13{left:514.613333pt;}
.xe{left:520.853333pt;}
.x9{left:567.013333pt;}
.x18{left:611.013333pt;}
.x14{left:613.973333pt;}
.xf{left:618.213333pt;}
.x3{left:711.413322pt;}
}




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