
    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_5571b4a4ba1ce75e401155f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_99850addfc513724abddd31e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_ea9408a6c211037365a58161.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5aca66c3aa59ddf6e5fbed75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_729b3943becbe3a3923b0072.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.062988;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_2ac585003be930803baeecce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:ffa;src:url('chunks/assets/font_ef03bd6363bc743c4500c38b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.060000px;}
.v2{vertical-align:23.760000px;}
.ls25{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-0.762000px;}
.ls4{letter-spacing:-0.738000px;}
.ls29{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.587400px;}
.ls26{letter-spacing:-0.472200px;}
.ls31{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.252000px;}
.ls24{letter-spacing:-0.229800px;}
.ls33{letter-spacing:-0.193200px;}
.ls13{letter-spacing:-0.184200px;}
.ls16{letter-spacing:-0.129600px;}
.ls28{letter-spacing:-0.115200px;}
.ls14{letter-spacing:-0.097800px;}
.ls2d{letter-spacing:-0.082200px;}
.ls8{letter-spacing:-0.064800px;}
.ls34{letter-spacing:-0.058320px;}
.ls32{letter-spacing:-0.048960px;}
.ls19{letter-spacing:-0.046080px;}
.ls3{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.064200px;}
.lsd{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.075000px;}
.ls23{letter-spacing:0.078000px;}
.ls1a{letter-spacing:0.086400px;}
.ls6{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.231600px;}
.ls2b{letter-spacing:0.247800px;}
.ls0{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.342000px;}
.ls10{letter-spacing:0.348000px;}
.ls7{letter-spacing:0.348600px;}
.ls17{letter-spacing:0.371400px;}
.ls22{letter-spacing:0.391680px;}
.ls27{letter-spacing:0.391800px;}
.ls2e{letter-spacing:0.468000px;}
.ls1d{letter-spacing:19.781280px;}
.ls1b{letter-spacing:25.505280px;}
.ls1f{letter-spacing:38.304000px;}
.ls21{letter-spacing:52.865280px;}
.ls1c{letter-spacing:53.585280px;}
.lse{letter-spacing:66.240000px;}
.ls20{letter-spacing:83.825280px;}
.lsf{letter-spacing:95.016000px;}
.ls12{letter-spacing:111.600000px;}
.lsb{letter-spacing:849.329760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-66.240000px;}
.ws1a{word-spacing:-18.808440px;}
.ws1b{word-spacing:-16.488000px;}
.ws1d{word-spacing:-15.362040px;}
.ws13{word-spacing:-15.341640px;}
.ws18{word-spacing:-15.226440px;}
.ws17{word-spacing:-15.056640px;}
.ws1c{word-spacing:-15.048240px;}
.ws15{word-spacing:-15.045240px;}
.ws14{word-spacing:-14.970240px;}
.ws16{word-spacing:-14.924160px;}
.ws25{word-spacing:-14.921280px;}
.ws1e{word-spacing:-14.855040px;}
.ws22{word-spacing:-14.382840px;}
.ws1f{word-spacing:-14.250240px;}
.ws5{word-spacing:-13.854360px;}
.wsb{word-spacing:-13.569960px;}
.wsa{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.495200px;}
.ws26{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.440960px;}
.ws11{word-spacing:-13.160160px;}
.wsf{word-spacing:-13.147200px;}
.ws12{word-spacing:-13.136400px;}
.wse{word-spacing:-13.049400px;}
.wsd{word-spacing:-12.963000px;}
.ws8{word-spacing:-12.546000px;}
.ws7{word-spacing:-12.366000px;}
.wsc{word-spacing:-12.276000px;}
.ws3{word-spacing:-12.222000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws9{word-spacing:-11.952000px;}
.ws2{word-spacing:-11.466000px;}
.ws23{word-spacing:-9.669360px;}
.ws21{word-spacing:-9.254880px;}
.ws24{word-spacing:-9.113760px;}
.ws20{word-spacing:-8.704680px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-12.145680px;}
._f{margin-left:-10.487280px;}
._13{margin-left:-9.284880px;}
._10{margin-left:-8.191200px;}
._e{margin-left:-7.036800px;}
._12{margin-left:-5.036160px;}
._1{margin-left:-3.888000px;}
._7{margin-left:-2.484000px;}
._0{margin-left:-1.179360px;}
._2{width:1.011360px;}
._8{width:2.683920px;}
._c{width:4.007760px;}
._9{width:5.076000px;}
._a{width:6.318000px;}
._1c{width:7.502880px;}
._b{width:8.830560px;}
._16{width:9.886560px;}
._20{width:10.896000px;}
._1a{width:12.188160px;}
._1d{width:13.662000px;}
._22{width:16.024320px;}
._1f{width:17.156160px;}
._17{width:19.128960px;}
._18{width:20.309760px;}
._19{width:22.010400px;}
._24{width:23.382720px;}
._23{width:25.050720px;}
._1e{width:26.463360px;}
._21{width:28.019520px;}
._5{width:767.605440px;}
._1b{width:845.261760px;}
._3{width:849.329760px;}
._14{width:1011.329760px;}
._4{width:1230.929760px;}
._25{width:1572.179280px;}
._d{width:1591.674240px;}
._15{width:1602.419280px;}
._6{width:1605.354240px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:3.600000px;}
.y10{bottom:4.500000px;}
.y12{bottom:4.545000px;}
.y22{bottom:5.940000px;}
.y2a{bottom:6.660000px;}
.y3a{bottom:6.690000px;}
.y32{bottom:6.705000px;}
.y2f{bottom:6.840000px;}
.y58{bottom:7.920000px;}
.y5b{bottom:7.965000px;}
.y52{bottom:8.100000px;}
.y50{bottom:8.280000px;}
.y68{bottom:8.460000px;}
.yd1{bottom:8.820000px;}
.y80{bottom:9.000000px;}
.y65{bottom:9.720000px;}
.y67{bottom:9.900000px;}
.y1e{bottom:20.160000px;}
.y29{bottom:23.040000px;}
.y31{bottom:23.085000px;}
.y2c{bottom:23.220000px;}
.y39{bottom:23.250000px;}
.y55{bottom:24.480000px;}
.y56{bottom:24.660000px;}
.y7d{bottom:28.980000px;}
.y1d{bottom:36.540000px;}
.y84{bottom:45.360000px;}
.y7c{bottom:50.040000px;}
.y26{bottom:57.060000px;}
.y7b{bottom:70.920000px;}
.y25{bottom:75.240000px;}
.y101{bottom:94.500000px;}
.y13f{bottom:102.600000px;}
.y167{bottom:111.960000px;}
.y13e{bottom:122.760000px;}
.y100{bottom:124.560000px;}
.y127{bottom:127.080000px;}
.y7e{bottom:127.620000px;}
.y173{bottom:127.980000px;}
.y166{bottom:132.120000px;}
.y20{bottom:136.080000px;}
.y7a{bottom:140.580000px;}
.y13d{bottom:142.920000px;}
.yff{bottom:144.720000px;}
.y126{bottom:147.240000px;}
.y1c{bottom:151.740000px;}
.y165{bottom:152.280000px;}
.y4e{bottom:155.520000px;}
.y16e{bottom:160.200000px;}
.yfe{bottom:164.880000px;}
.y125{bottom:167.220000px;}
.y4d{bottom:172.080000px;}
.y164{bottom:181.440000px;}
.y16d{bottom:184.320000px;}
.y124{bottom:187.380000px;}
.y4c{bottom:188.460000px;}
.y13c{bottom:192.240000px;}
.yfd{bottom:193.860000px;}
.y163{bottom:201.600000px;}
.y123{bottom:207.540000px;}
.y16c{bottom:207.720000px;}
.y13b{bottom:212.400000px;}
.y4b{bottom:213.840000px;}
.y162{bottom:221.760000px;}
.ya6{bottom:222.120000px;}
.y1b{bottom:223.740000px;}
.yfc{bottom:223.920000px;}
.y122{bottom:227.700000px;}
.y79{bottom:228.960000px;}
.y4a{bottom:230.400000px;}
.y13a{bottom:242.310000px;}
.yfb{bottom:244.110000px;}
.y161{bottom:250.950000px;}
.ya5{bottom:251.310000px;}
.y1a{bottom:252.930000px;}
.y78{bottom:254.550000px;}
.y49{bottom:255.810000px;}
.y121{bottom:257.790000px;}
.y139{bottom:262.470000px;}
.y160{bottom:271.110000px;}
.y48{bottom:272.370000px;}
.yfa{bottom:274.170000px;}
.y120{bottom:277.950000px;}
.ya4{bottom:280.470000px;}
.y19{bottom:282.090000px;}
.y138{bottom:282.630000px;}
.y15f{bottom:291.270000px;}
.y77{bottom:294.330000px;}
.y47{bottom:297.930000px;}
.y11f{bottom:307.110000px;}
.y76{bottom:307.290000px;}
.ya3{bottom:309.630000px;}
.y18{bottom:311.250000px;}
.y137{bottom:312.690000px;}
.y46{bottom:314.490000px;}
.y15e{bottom:320.250000px;}
.yf9{bottom:323.850000px;}
.y45{bottom:330.870000px;}
.y75{bottom:332.850000px;}
.y11e{bottom:336.090000px;}
.ya2{bottom:338.790000px;}
.y17{bottom:340.410000px;}
.y44{bottom:347.430000px;}
.yf8{bottom:354.450000px;}
.y74{bottom:358.230000px;}
.y136{bottom:362.730000px;}
.y11d{bottom:365.250000px;}
.ya1{bottom:367.950000px;}
.y16{bottom:369.570000px;}
.y15d{bottom:370.830000px;}
.y43{bottom:373.710000px;}
.yf7{bottom:383.610000px;}
.y73{bottom:383.790000px;}
.y11c{bottom:385.410000px;}
.y135{bottom:392.790000px;}
.ya0{bottom:397.110000px;}
.y15{bottom:398.730000px;}
.y72{bottom:400.170000px;}
.y42{bottom:402.870000px;}
.yf6{bottom:403.770000px;}
.y15c{bottom:404.310000px;}
.y11b{bottom:405.570000px;}
.y134{bottom:412.950000px;}
.y41{bottom:419.250000px;}
.yc2{bottom:423.390000px;}
.y71{bottom:425.730000px;}
.y9f{bottom:426.270000px;}
.y14{bottom:427.710000px;}
.yf5{bottom:432.750000px;}
.y15b{bottom:433.470000px;}
.y133{bottom:442.110000px;}
.y13{bottom:443.370000px;}
.y11a{bottom:445.890000px;}
.y70{bottom:451.110000px;}
.yf4{bottom:452.910000px;}
.y9e{bottom:455.250000px;}
.yc1{bottom:457.950000px;}
.y40{bottom:458.310000px;}
.y15a{bottom:462.450000px;}
.y11{bottom:463.530000px;}
.y119{bottom:466.050000px;}
.y132{bottom:466.230000px;}
.y6f{bottom:476.715000px;}
.yf3{bottom:482.115000px;}
.y159{bottom:482.655000px;}
.yf{bottom:483.735000px;}
.y9d{bottom:484.455000px;}
.y118{bottom:486.255000px;}
.y131{bottom:489.675000px;}
.yc0{bottom:492.735000px;}
.y3f{bottom:497.235000px;}
.y6e{bottom:502.275000px;}
.y158{bottom:502.815000px;}
.y9c{bottom:513.615000px;}
.y117{bottom:515.415000px;}
.ye{bottom:517.395000px;}
.y6d{bottom:518.655000px;}
.y157{bottom:522.975000px;}
.ybf{bottom:526.215000px;}
.yf2{bottom:532.335000px;}
.y3e{bottom:536.115000px;}
.y9b{bottom:542.775000px;}
.y6c{bottom:544.215000px;}
.y116{bottom:544.575000px;}
.ybe{bottom:546.375000px;}
.yd{bottom:546.555000px;}
.y156{bottom:552.135000px;}
.yf1{bottom:552.495000px;}
.y6b{bottom:569.595000px;}
.y9a{bottom:571.935000px;}
.yf0{bottom:572.655000px;}
.y155{bottom:573.195000px;}
.y115{bottom:573.555000px;}
.y3d{bottom:575.175000px;}
.yc{bottom:575.715000px;}
.yc5{bottom:576.075000px;}
.ybd{bottom:576.615000px;}
.yef{bottom:592.815000px;}
.y114{bottom:593.715000px;}
.y154{bottom:594.255000px;}
.y6a{bottom:595.155000px;}
.y99{bottom:601.095000px;}
.yb{bottom:604.875000px;}
.yc4{bottom:605.235000px;}
.ybc{bottom:611.175000px;}
.y3c{bottom:614.055000px;}
.y69{bottom:620.535000px;}
.yee{bottom:622.695000px;}
.y113{bottom:622.875000px;}
.y153{bottom:624.135000px;}
.y98{bottom:630.255000px;}
.ya{bottom:634.035000px;}
.yc3{bottom:634.395000px;}
.yed{bottom:642.855000px;}
.ybb{bottom:645.915000px;}
.y66{bottom:647.895000px;}
.y112{bottom:652.035000px;}
.y3b{bottom:653.115000px;}
.y152{bottom:653.295000px;}
.y97{bottom:658.335000px;}
.y9{bottom:663.195000px;}
.yd0{bottom:667.335000px;}
.yec{bottom:672.915000px;}
.y151{bottom:673.455000px;}
.y64{bottom:675.255000px;}
.yba{bottom:679.395000px;}
.y111{bottom:681.195000px;}
.y38{bottom:691.995000px;}
.yeb{bottom:693.075000px;}
.y8{bottom:693.435000px;}
.y96{bottom:693.795000px;}
.yb9{bottom:699.585000px;}
.y63{bottom:702.465000px;}
.y150{bottom:702.645000px;}
.y110{bottom:711.285000px;}
.yea{bottom:713.265000px;}
.yb8{bottom:719.745000px;}
.y14f{bottom:723.705000px;}
.y7{bottom:726.945000px;}
.y62{bottom:728.025000px;}
.y95{bottom:729.465000px;}
.y37{bottom:731.085000px;}
.y172{bottom:736.485000px;}
.ycf{bottom:737.565000px;}
.yb7{bottom:739.905000px;}
.y10f{bottom:741.345000px;}
.ye9{bottom:743.325000px;}
.y14e{bottom:744.765000px;}
.y94{bottom:747.105000px;}
.y61{bottom:753.585000px;}
.y6{bottom:756.105000px;}
.yb6{bottom:759.885000px;}
.y16b{bottom:762.405000px;}
.y93{bottom:764.745000px;}
.y171{bottom:765.465000px;}
.y36{bottom:769.965000px;}
.y10e{bottom:770.325000px;}
.ye8{bottom:772.305000px;}
.yce{bottom:772.665000px;}
.y14d{bottom:774.645000px;}
.y5{bottom:780.765000px;}
.y92{bottom:782.205000px;}
.y16a{bottom:786.525000px;}
.yb5{bottom:789.045000px;}
.y170{bottom:789.585000px;}
.y60{bottom:793.365000px;}
.ye7{bottom:796.425000px;}
.y91{bottom:799.845000px;}
.y10d{bottom:800.385000px;}
.y14c{bottom:803.805000px;}
.y5f{bottom:806.325000px;}
.ycd{bottom:807.765000px;}
.y35{bottom:809.025000px;}
.yb4{bottom:809.205000px;}
.y169{bottom:809.745000px;}
.y16f{bottom:812.985000px;}
.ydc{bottom:813.345000px;}
.ye6{bottom:819.285000px;}
.y14b{bottom:824.865000px;}
.y90{bottom:826.305000px;}
.yb3{bottom:829.365000px;}
.y10c{bottom:830.445000px;}
.y5e{bottom:831.705000px;}
.ydb{bottom:842.505000px;}
.ycc{bottom:843.045000px;}
.y14a{bottom:845.925000px;}
.ye5{bottom:847.185000px;}
.y34{bottom:847.905000px;}
.yb2{bottom:849.525000px;}
.y10b{bottom:859.965000px;}
.y8f{bottom:861.945000px;}
.y149{bottom:866.985000px;}
.yb1{bottom:869.685000px;}
.ye4{bottom:871.665000px;}
.yda{bottom:872.565000px;}
.y5d{bottom:873.825000px;}
.ycb{bottom:878.145000px;}
.y33{bottom:886.785000px;}
.y8e{bottom:888.585000px;}
.yb0{bottom:889.845000px;}
.y10a{bottom:891.825000px;}
.y148{bottom:896.865000px;}
.y5c{bottom:899.205000px;}
.yd9{bottom:902.625000px;}
.y8d{bottom:906.225000px;}
.yaf{bottom:910.005000px;}
.yca{bottom:913.245000px;}
.y130{bottom:922.785000px;}
.y8c{bottom:923.865000px;}
.y5a{bottom:924.765000px;}
.y109{bottom:925.125000px;}
.y30{bottom:925.845000px;}
.y147{bottom:926.025000px;}
.yae{bottom:930.210000px;}
.yd8{bottom:931.830000px;}
.y85{bottom:940.650000px;}
.y12f{bottom:942.810000px;}
.y146{bottom:946.230000px;}
.yc9{bottom:948.390000px;}
.y59{bottom:950.190000px;}
.y8b{bottom:950.370000px;}
.ye3{bottom:950.550000px;}
.y108{bottom:954.330000px;}
.y83{bottom:957.030000px;}
.yd7{bottom:961.710000px;}
.y12e{bottom:962.970000px;}
.y2e{bottom:964.770000px;}
.y145{bottom:966.390000px;}
.y57{bottom:975.750000px;}
.yad{bottom:979.350000px;}
.ye2{bottom:979.710000px;}
.y12d{bottom:983.130000px;}
.y107{bottom:983.490000px;}
.yc8{bottom:983.670000px;}
.y8a{bottom:986.010000px;}
.yd6{bottom:991.770000px;}
.y144{bottom:995.550000px;}
.yac{bottom:999.510000px;}
.y54{bottom:1001.130000px;}
.y12c{bottom:1003.290000px;}
.y106{bottom:1003.650000px;}
.y2d{bottom:1003.830000px;}
.ye1{bottom:1008.870000px;}
.y143{bottom:1015.710000px;}
.yc7{bottom:1018.770000px;}
.yab{bottom:1019.670000px;}
.y82{bottom:1020.750000px;}
.y89{bottom:1021.470000px;}
.yd5{bottom:1021.830000px;}
.ye0{bottom:1029.030000px;}
.y12b{bottom:1033.350000px;}
.y105{bottom:1033.710000px;}
.yaa{bottom:1039.830000px;}
.yd4{bottom:1041.990000px;}
.y2b{bottom:1042.710000px;}
.y53{bottom:1043.070000px;}
.y142{bottom:1045.770000px;}
.ydf{bottom:1049.190000px;}
.y12a{bottom:1053.510000px;}
.yc6{bottom:1053.870000px;}
.y88{bottom:1057.110000px;}
.ya9{bottom:1059.990000px;}
.y81{bottom:1067.910000px;}
.y51{bottom:1068.630000px;}
.yde{bottom:1069.350000px;}
.yd3{bottom:1071.150000px;}
.y129{bottom:1073.670000px;}
.y141{bottom:1075.650000px;}
.ya8{bottom:1080.150000px;}
.y28{bottom:1081.770000px;}
.y104{bottom:1083.750000px;}
.y87{bottom:1092.750000px;}
.y128{bottom:1093.830000px;}
.y4f{bottom:1094.190000px;}
.ydd{bottom:1098.870000px;}
.ya7{bottom:1100.310000px;}
.yd2{bottom:1101.390000px;}
.y140{bottom:1105.710000px;}
.y103{bottom:1113.810000px;}
.y168{bottom:1114.710000px;}
.y7f{bottom:1121.370000px;}
.y4{bottom:1126.410000px;}
.y86{bottom:1130.550000px;}
.y102{bottom:1133.970000px;}
.y27{bottom:1134.870000px;}
.y24{bottom:1154.490000px;}
.y3{bottom:1155.600000px;}
.y23{bottom:1172.880000px;}
.y2{bottom:1175.760000px;}
.y21{bottom:1187.280000px;}
.y1{bottom:1195.380000px;}
.h19{height:16.380000px;}
.h5{height:20.160000px;}
.h6{height:20.196000px;}
.ha{height:22.500000px;}
.h14{height:25.380000px;}
.h15{height:25.416000px;}
.h12{height:25.560000px;}
.h1a{height:25.596000px;}
.h10{height:27.180000px;}
.h17{height:27.216000px;}
.h18{height:27.360000px;}
.h21{height:28.980000px;}
.h1c{height:29.160000px;}
.h20{height:29.196000px;}
.hc{height:38.880000px;}
.he{height:38.916000px;}
.hd{height:39.060000px;}
.hf{height:39.096000px;}
.h13{height:41.940000px;}
.h16{height:42.120000px;}
.h1d{height:46.440000px;}
.h23{height:53.302500px;}
.h9{height:53.709961px;}
.h8{height:55.825312px;}
.h7{height:58.500000px;}
.h2{height:59.439023px;}
.h24{height:59.731172px;}
.h1f{height:60.679688px;}
.h11{height:61.189805px;}
.h1e{height:62.820000px;}
.h3{height:65.884219px;}
.hb{height:67.824844px;}
.h22{height:73.722656px;}
.h4{height:86.255508px;}
.h1b{height:88.380000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:63.576000px;}
.w10{width:95.040000px;}
.w9{width:95.796000px;}
.w5{width:106.416000px;}
.w3{width:116.676000px;}
.wd{width:138.276000px;}
.w12{width:159.150000px;}
.w13{width:170.130000px;}
.wb{width:265.710000px;}
.w4{width:287.130000px;}
.w7{width:297.795000px;}
.wa{width:361.695000px;}
.w11{width:403.275000px;}
.w8{width:424.515000px;}
.w6{width:467.895000px;}
.w14{width:545.325000px;}
.we{width:584.925000px;}
.wc{width:723.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:3.060000px;}
.x4{left:8.100000px;}
.xf{left:24.660000px;}
.x1{left:84.959987px;}
.x1d{left:87.839987px;}
.x7{left:93.825000px;}
.x13{left:101.555987px;}
.x17{left:111.995987px;}
.x14{left:117.935987px;}
.x1a{left:138.995987px;}
.x10{left:149.256000px;}
.xc{left:180.750000px;}
.x9{left:190.290000px;}
.x6{left:191.370000px;}
.x1b{left:192.989987px;}
.x3{left:212.609987px;}
.xe{left:223.230000px;}
.xb{left:243.030000px;}
.x11{left:245.010000px;}
.x16{left:254.370000px;}
.x8{left:297.795000px;}
.x1f{left:320.474987px;}
.x21{left:323.354987px;}
.x5{left:329.295000px;}
.xa{left:382.755000px;}
.x19{left:446.474987px;}
.xd{left:542.445000px;}
.x22{left:577.724987px;}
.x1e{left:628.664987px;}
.x12{left:649.005000px;}
.x20{left:683.789987px;}
.x18{left:739.049987px;}
.x2{left:745.709987px;}
.x1c{left:779.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.720000pt;}
.v2{vertical-align:21.120000pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-0.677333pt;}
.ls4{letter-spacing:-0.656000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.522133pt;}
.ls26{letter-spacing:-0.419733pt;}
.ls31{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.224000pt;}
.ls24{letter-spacing:-0.204267pt;}
.ls33{letter-spacing:-0.171733pt;}
.ls13{letter-spacing:-0.163733pt;}
.ls16{letter-spacing:-0.115200pt;}
.ls28{letter-spacing:-0.102400pt;}
.ls14{letter-spacing:-0.086933pt;}
.ls2d{letter-spacing:-0.073067pt;}
.ls8{letter-spacing:-0.057600pt;}
.ls34{letter-spacing:-0.051840pt;}
.ls32{letter-spacing:-0.043520pt;}
.ls19{letter-spacing:-0.040960pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.057067pt;}
.lsd{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.066667pt;}
.ls23{letter-spacing:0.069333pt;}
.ls1a{letter-spacing:0.076800pt;}
.ls6{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.205867pt;}
.ls2b{letter-spacing:0.220267pt;}
.ls0{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.304000pt;}
.ls10{letter-spacing:0.309333pt;}
.ls7{letter-spacing:0.309867pt;}
.ls17{letter-spacing:0.330133pt;}
.ls22{letter-spacing:0.348160pt;}
.ls27{letter-spacing:0.348267pt;}
.ls2e{letter-spacing:0.416000pt;}
.ls1d{letter-spacing:17.583360pt;}
.ls1b{letter-spacing:22.671360pt;}
.ls1f{letter-spacing:34.048000pt;}
.ls21{letter-spacing:46.991360pt;}
.ls1c{letter-spacing:47.631360pt;}
.lse{letter-spacing:58.880000pt;}
.ls20{letter-spacing:74.511360pt;}
.lsf{letter-spacing:84.458667pt;}
.ls12{letter-spacing:99.200000pt;}
.lsb{letter-spacing:754.959787pt;}
.ws19{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-16.718613pt;}
.ws1b{word-spacing:-14.656000pt;}
.ws1d{word-spacing:-13.655147pt;}
.ws13{word-spacing:-13.637013pt;}
.ws18{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.383680pt;}
.ws1c{word-spacing:-13.376213pt;}
.ws15{word-spacing:-13.373547pt;}
.ws14{word-spacing:-13.306880pt;}
.ws16{word-spacing:-13.265920pt;}
.ws25{word-spacing:-13.263360pt;}
.ws1e{word-spacing:-13.204480pt;}
.ws22{word-spacing:-12.784747pt;}
.ws1f{word-spacing:-12.666880pt;}
.ws5{word-spacing:-12.314987pt;}
.wsb{word-spacing:-12.062187pt;}
.wsa{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.995733pt;}
.ws26{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.947520pt;}
.ws11{word-spacing:-11.697920pt;}
.wsf{word-spacing:-11.686400pt;}
.ws12{word-spacing:-11.676800pt;}
.wse{word-spacing:-11.599467pt;}
.wsd{word-spacing:-11.522667pt;}
.ws8{word-spacing:-11.152000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsc{word-spacing:-10.912000pt;}
.ws3{word-spacing:-10.864000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws9{word-spacing:-10.624000pt;}
.ws2{word-spacing:-10.192000pt;}
.ws23{word-spacing:-8.594987pt;}
.ws21{word-spacing:-8.226560pt;}
.ws24{word-spacing:-8.101120pt;}
.ws20{word-spacing:-7.737493pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-10.796160pt;}
._f{margin-left:-9.322027pt;}
._13{margin-left:-8.253227pt;}
._10{margin-left:-7.281067pt;}
._e{margin-left:-6.254933pt;}
._12{margin-left:-4.476587pt;}
._1{margin-left:-3.456000pt;}
._7{margin-left:-2.208000pt;}
._0{margin-left:-1.048320pt;}
._2{width:0.898987pt;}
._8{width:2.385707pt;}
._c{width:3.562453pt;}
._9{width:4.512000pt;}
._a{width:5.616000pt;}
._1c{width:6.669227pt;}
._b{width:7.849387pt;}
._16{width:8.788053pt;}
._20{width:9.685333pt;}
._1a{width:10.833920pt;}
._1d{width:12.144000pt;}
._22{width:14.243840pt;}
._1f{width:15.249920pt;}
._17{width:17.003520pt;}
._18{width:18.053120pt;}
._19{width:19.564800pt;}
._24{width:20.784640pt;}
._23{width:22.267307pt;}
._1e{width:23.522987pt;}
._21{width:24.906240pt;}
._5{width:682.315947pt;}
._1b{width:751.343787pt;}
._3{width:754.959787pt;}
._14{width:898.959787pt;}
._4{width:1094.159787pt;}
._25{width:1397.492693pt;}
._d{width:1414.821547pt;}
._15{width:1424.372693pt;}
._6{width:1426.981547pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:3.200000pt;}
.y10{bottom:4.000000pt;}
.y12{bottom:4.040000pt;}
.y22{bottom:5.280000pt;}
.y2a{bottom:5.920000pt;}
.y3a{bottom:5.946667pt;}
.y32{bottom:5.960000pt;}
.y2f{bottom:6.080000pt;}
.y58{bottom:7.040000pt;}
.y5b{bottom:7.080000pt;}
.y52{bottom:7.200000pt;}
.y50{bottom:7.360000pt;}
.y68{bottom:7.520000pt;}
.yd1{bottom:7.840000pt;}
.y80{bottom:8.000000pt;}
.y65{bottom:8.640000pt;}
.y67{bottom:8.800000pt;}
.y1e{bottom:17.920000pt;}
.y29{bottom:20.480000pt;}
.y31{bottom:20.520000pt;}
.y2c{bottom:20.640000pt;}
.y39{bottom:20.666667pt;}
.y55{bottom:21.760000pt;}
.y56{bottom:21.920000pt;}
.y7d{bottom:25.760000pt;}
.y1d{bottom:32.480000pt;}
.y84{bottom:40.320000pt;}
.y7c{bottom:44.480000pt;}
.y26{bottom:50.720000pt;}
.y7b{bottom:63.040000pt;}
.y25{bottom:66.880000pt;}
.y101{bottom:84.000000pt;}
.y13f{bottom:91.200000pt;}
.y167{bottom:99.520000pt;}
.y13e{bottom:109.120000pt;}
.y100{bottom:110.720000pt;}
.y127{bottom:112.960000pt;}
.y7e{bottom:113.440000pt;}
.y173{bottom:113.760000pt;}
.y166{bottom:117.440000pt;}
.y20{bottom:120.960000pt;}
.y7a{bottom:124.960000pt;}
.y13d{bottom:127.040000pt;}
.yff{bottom:128.640000pt;}
.y126{bottom:130.880000pt;}
.y1c{bottom:134.880000pt;}
.y165{bottom:135.360000pt;}
.y4e{bottom:138.240000pt;}
.y16e{bottom:142.400000pt;}
.yfe{bottom:146.560000pt;}
.y125{bottom:148.640000pt;}
.y4d{bottom:152.960000pt;}
.y164{bottom:161.280000pt;}
.y16d{bottom:163.840000pt;}
.y124{bottom:166.560000pt;}
.y4c{bottom:167.520000pt;}
.y13c{bottom:170.880000pt;}
.yfd{bottom:172.320000pt;}
.y163{bottom:179.200000pt;}
.y123{bottom:184.480000pt;}
.y16c{bottom:184.640000pt;}
.y13b{bottom:188.800000pt;}
.y4b{bottom:190.080000pt;}
.y162{bottom:197.120000pt;}
.ya6{bottom:197.440000pt;}
.y1b{bottom:198.880000pt;}
.yfc{bottom:199.040000pt;}
.y122{bottom:202.400000pt;}
.y79{bottom:203.520000pt;}
.y4a{bottom:204.800000pt;}
.y13a{bottom:215.386667pt;}
.yfb{bottom:216.986667pt;}
.y161{bottom:223.066667pt;}
.ya5{bottom:223.386667pt;}
.y1a{bottom:224.826667pt;}
.y78{bottom:226.266667pt;}
.y49{bottom:227.386667pt;}
.y121{bottom:229.146667pt;}
.y139{bottom:233.306667pt;}
.y160{bottom:240.986667pt;}
.y48{bottom:242.106667pt;}
.yfa{bottom:243.706667pt;}
.y120{bottom:247.066667pt;}
.ya4{bottom:249.306667pt;}
.y19{bottom:250.746667pt;}
.y138{bottom:251.226667pt;}
.y15f{bottom:258.906667pt;}
.y77{bottom:261.626667pt;}
.y47{bottom:264.826667pt;}
.y11f{bottom:272.986667pt;}
.y76{bottom:273.146667pt;}
.ya3{bottom:275.226667pt;}
.y18{bottom:276.666667pt;}
.y137{bottom:277.946667pt;}
.y46{bottom:279.546667pt;}
.y15e{bottom:284.666667pt;}
.yf9{bottom:287.866667pt;}
.y45{bottom:294.106667pt;}
.y75{bottom:295.866667pt;}
.y11e{bottom:298.746667pt;}
.ya2{bottom:301.146667pt;}
.y17{bottom:302.586667pt;}
.y44{bottom:308.826667pt;}
.yf8{bottom:315.066667pt;}
.y74{bottom:318.426667pt;}
.y136{bottom:322.426667pt;}
.y11d{bottom:324.666667pt;}
.ya1{bottom:327.066667pt;}
.y16{bottom:328.506667pt;}
.y15d{bottom:329.626667pt;}
.y43{bottom:332.186667pt;}
.yf7{bottom:340.986667pt;}
.y73{bottom:341.146667pt;}
.y11c{bottom:342.586667pt;}
.y135{bottom:349.146667pt;}
.ya0{bottom:352.986667pt;}
.y15{bottom:354.426667pt;}
.y72{bottom:355.706667pt;}
.y42{bottom:358.106667pt;}
.yf6{bottom:358.906667pt;}
.y15c{bottom:359.386667pt;}
.y11b{bottom:360.506667pt;}
.y134{bottom:367.066667pt;}
.y41{bottom:372.666667pt;}
.yc2{bottom:376.346667pt;}
.y71{bottom:378.426667pt;}
.y9f{bottom:378.906667pt;}
.y14{bottom:380.186667pt;}
.yf5{bottom:384.666667pt;}
.y15b{bottom:385.306667pt;}
.y133{bottom:392.986667pt;}
.y13{bottom:394.106667pt;}
.y11a{bottom:396.346667pt;}
.y70{bottom:400.986667pt;}
.yf4{bottom:402.586667pt;}
.y9e{bottom:404.666667pt;}
.yc1{bottom:407.066667pt;}
.y40{bottom:407.386667pt;}
.y15a{bottom:411.066667pt;}
.y11{bottom:412.026667pt;}
.y119{bottom:414.266667pt;}
.y132{bottom:414.426667pt;}
.y6f{bottom:423.746667pt;}
.yf3{bottom:428.546667pt;}
.y159{bottom:429.026667pt;}
.yf{bottom:429.986667pt;}
.y9d{bottom:430.626667pt;}
.y118{bottom:432.226667pt;}
.y131{bottom:435.266667pt;}
.yc0{bottom:437.986667pt;}
.y3f{bottom:441.986667pt;}
.y6e{bottom:446.466667pt;}
.y158{bottom:446.946667pt;}
.y9c{bottom:456.546667pt;}
.y117{bottom:458.146667pt;}
.ye{bottom:459.906667pt;}
.y6d{bottom:461.026667pt;}
.y157{bottom:464.866667pt;}
.ybf{bottom:467.746667pt;}
.yf2{bottom:473.186667pt;}
.y3e{bottom:476.546667pt;}
.y9b{bottom:482.466667pt;}
.y6c{bottom:483.746667pt;}
.y116{bottom:484.066667pt;}
.ybe{bottom:485.666667pt;}
.yd{bottom:485.826667pt;}
.y156{bottom:490.786667pt;}
.yf1{bottom:491.106667pt;}
.y6b{bottom:506.306667pt;}
.y9a{bottom:508.386667pt;}
.yf0{bottom:509.026667pt;}
.y155{bottom:509.506667pt;}
.y115{bottom:509.826667pt;}
.y3d{bottom:511.266667pt;}
.yc{bottom:511.746667pt;}
.yc5{bottom:512.066667pt;}
.ybd{bottom:512.546667pt;}
.yef{bottom:526.946667pt;}
.y114{bottom:527.746667pt;}
.y154{bottom:528.226667pt;}
.y6a{bottom:529.026667pt;}
.y99{bottom:534.306667pt;}
.yb{bottom:537.666667pt;}
.yc4{bottom:537.986667pt;}
.ybc{bottom:543.266667pt;}
.y3c{bottom:545.826667pt;}
.y69{bottom:551.586667pt;}
.yee{bottom:553.506667pt;}
.y113{bottom:553.666667pt;}
.y153{bottom:554.786667pt;}
.y98{bottom:560.226667pt;}
.ya{bottom:563.586667pt;}
.yc3{bottom:563.906667pt;}
.yed{bottom:571.426667pt;}
.ybb{bottom:574.146667pt;}
.y66{bottom:575.906667pt;}
.y112{bottom:579.586667pt;}
.y3b{bottom:580.546667pt;}
.y152{bottom:580.706667pt;}
.y97{bottom:585.186667pt;}
.y9{bottom:589.506667pt;}
.yd0{bottom:593.186667pt;}
.yec{bottom:598.146667pt;}
.y151{bottom:598.626667pt;}
.y64{bottom:600.226667pt;}
.yba{bottom:603.906667pt;}
.y111{bottom:605.506667pt;}
.y38{bottom:615.106667pt;}
.yeb{bottom:616.066667pt;}
.y8{bottom:616.386667pt;}
.y96{bottom:616.706667pt;}
.yb9{bottom:621.853333pt;}
.y63{bottom:624.413333pt;}
.y150{bottom:624.573333pt;}
.y110{bottom:632.253333pt;}
.yea{bottom:634.013333pt;}
.yb8{bottom:639.773333pt;}
.y14f{bottom:643.293333pt;}
.y7{bottom:646.173333pt;}
.y62{bottom:647.133333pt;}
.y95{bottom:648.413333pt;}
.y37{bottom:649.853333pt;}
.y172{bottom:654.653333pt;}
.ycf{bottom:655.613333pt;}
.yb7{bottom:657.693333pt;}
.y10f{bottom:658.973333pt;}
.ye9{bottom:660.733333pt;}
.y14e{bottom:662.013333pt;}
.y94{bottom:664.093333pt;}
.y61{bottom:669.853333pt;}
.y6{bottom:672.093333pt;}
.yb6{bottom:675.453333pt;}
.y16b{bottom:677.693333pt;}
.y93{bottom:679.773333pt;}
.y171{bottom:680.413333pt;}
.y36{bottom:684.413333pt;}
.y10e{bottom:684.733333pt;}
.ye8{bottom:686.493333pt;}
.yce{bottom:686.813333pt;}
.y14d{bottom:688.573333pt;}
.y5{bottom:694.013333pt;}
.y92{bottom:695.293333pt;}
.y16a{bottom:699.133333pt;}
.yb5{bottom:701.373333pt;}
.y170{bottom:701.853333pt;}
.y60{bottom:705.213333pt;}
.ye7{bottom:707.933333pt;}
.y91{bottom:710.973333pt;}
.y10d{bottom:711.453333pt;}
.y14c{bottom:714.493333pt;}
.y5f{bottom:716.733333pt;}
.ycd{bottom:718.013333pt;}
.y35{bottom:719.133333pt;}
.yb4{bottom:719.293333pt;}
.y169{bottom:719.773333pt;}
.y16f{bottom:722.653333pt;}
.ydc{bottom:722.973333pt;}
.ye6{bottom:728.253333pt;}
.y14b{bottom:733.213333pt;}
.y90{bottom:734.493333pt;}
.yb3{bottom:737.213333pt;}
.y10c{bottom:738.173333pt;}
.y5e{bottom:739.293333pt;}
.ydb{bottom:748.893333pt;}
.ycc{bottom:749.373333pt;}
.y14a{bottom:751.933333pt;}
.ye5{bottom:753.053333pt;}
.y34{bottom:753.693333pt;}
.yb2{bottom:755.133333pt;}
.y10b{bottom:764.413333pt;}
.y8f{bottom:766.173333pt;}
.y149{bottom:770.653333pt;}
.yb1{bottom:773.053333pt;}
.ye4{bottom:774.813333pt;}
.yda{bottom:775.613333pt;}
.y5d{bottom:776.733333pt;}
.ycb{bottom:780.573333pt;}
.y33{bottom:788.253333pt;}
.y8e{bottom:789.853333pt;}
.yb0{bottom:790.973333pt;}
.y10a{bottom:792.733333pt;}
.y148{bottom:797.213333pt;}
.y5c{bottom:799.293333pt;}
.yd9{bottom:802.333333pt;}
.y8d{bottom:805.533333pt;}
.yaf{bottom:808.893333pt;}
.yca{bottom:811.773333pt;}
.y130{bottom:820.253333pt;}
.y8c{bottom:821.213333pt;}
.y5a{bottom:822.013333pt;}
.y109{bottom:822.333333pt;}
.y30{bottom:822.973333pt;}
.y147{bottom:823.133333pt;}
.yae{bottom:826.853333pt;}
.yd8{bottom:828.293333pt;}
.y85{bottom:836.133333pt;}
.y12f{bottom:838.053333pt;}
.y146{bottom:841.093333pt;}
.yc9{bottom:843.013333pt;}
.y59{bottom:844.613333pt;}
.y8b{bottom:844.773333pt;}
.ye3{bottom:844.933333pt;}
.y108{bottom:848.293333pt;}
.y83{bottom:850.693333pt;}
.yd7{bottom:854.853333pt;}
.y12e{bottom:855.973333pt;}
.y2e{bottom:857.573333pt;}
.y145{bottom:859.013333pt;}
.y57{bottom:867.333333pt;}
.yad{bottom:870.533333pt;}
.ye2{bottom:870.853333pt;}
.y12d{bottom:873.893333pt;}
.y107{bottom:874.213333pt;}
.yc8{bottom:874.373333pt;}
.y8a{bottom:876.453333pt;}
.yd6{bottom:881.573333pt;}
.y144{bottom:884.933333pt;}
.yac{bottom:888.453333pt;}
.y54{bottom:889.893333pt;}
.y12c{bottom:891.813333pt;}
.y106{bottom:892.133333pt;}
.y2d{bottom:892.293333pt;}
.ye1{bottom:896.773333pt;}
.y143{bottom:902.853333pt;}
.yc7{bottom:905.573333pt;}
.yab{bottom:906.373333pt;}
.y82{bottom:907.333333pt;}
.y89{bottom:907.973333pt;}
.yd5{bottom:908.293333pt;}
.ye0{bottom:914.693333pt;}
.y12b{bottom:918.533333pt;}
.y105{bottom:918.853333pt;}
.yaa{bottom:924.293333pt;}
.yd4{bottom:926.213333pt;}
.y2b{bottom:926.853333pt;}
.y53{bottom:927.173333pt;}
.y142{bottom:929.573333pt;}
.ydf{bottom:932.613333pt;}
.y12a{bottom:936.453333pt;}
.yc6{bottom:936.773333pt;}
.y88{bottom:939.653333pt;}
.ya9{bottom:942.213333pt;}
.y81{bottom:949.253333pt;}
.y51{bottom:949.893333pt;}
.yde{bottom:950.533333pt;}
.yd3{bottom:952.133333pt;}
.y129{bottom:954.373333pt;}
.y141{bottom:956.133333pt;}
.ya8{bottom:960.133333pt;}
.y28{bottom:961.573333pt;}
.y104{bottom:963.333333pt;}
.y87{bottom:971.333333pt;}
.y128{bottom:972.293333pt;}
.y4f{bottom:972.613333pt;}
.ydd{bottom:976.773333pt;}
.ya7{bottom:978.053333pt;}
.yd2{bottom:979.013333pt;}
.y140{bottom:982.853333pt;}
.y103{bottom:990.053333pt;}
.y168{bottom:990.853333pt;}
.y7f{bottom:996.773333pt;}
.y4{bottom:1001.253333pt;}
.y86{bottom:1004.933333pt;}
.y102{bottom:1007.973333pt;}
.y27{bottom:1008.773333pt;}
.y24{bottom:1026.213333pt;}
.y3{bottom:1027.200000pt;}
.y23{bottom:1042.560000pt;}
.y2{bottom:1045.120000pt;}
.y21{bottom:1055.360000pt;}
.y1{bottom:1062.560000pt;}
.h19{height:14.560000pt;}
.h5{height:17.920000pt;}
.h6{height:17.952000pt;}
.ha{height:20.000000pt;}
.h14{height:22.560000pt;}
.h15{height:22.592000pt;}
.h12{height:22.720000pt;}
.h1a{height:22.752000pt;}
.h10{height:24.160000pt;}
.h17{height:24.192000pt;}
.h18{height:24.320000pt;}
.h21{height:25.760000pt;}
.h1c{height:25.920000pt;}
.h20{height:25.952000pt;}
.hc{height:34.560000pt;}
.he{height:34.592000pt;}
.hd{height:34.720000pt;}
.hf{height:34.752000pt;}
.h13{height:37.280000pt;}
.h16{height:37.440000pt;}
.h1d{height:41.280000pt;}
.h23{height:47.380000pt;}
.h9{height:47.742188pt;}
.h8{height:49.622500pt;}
.h7{height:52.000000pt;}
.h2{height:52.834688pt;}
.h24{height:53.094375pt;}
.h1f{height:53.937500pt;}
.h11{height:54.390938pt;}
.h1e{height:55.840000pt;}
.h3{height:58.563750pt;}
.hb{height:60.288750pt;}
.h22{height:65.531250pt;}
.h4{height:76.671562pt;}
.h1b{height:78.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:56.512000pt;}
.w10{width:84.480000pt;}
.w9{width:85.152000pt;}
.w5{width:94.592000pt;}
.w3{width:103.712000pt;}
.wd{width:122.912000pt;}
.w12{width:141.466667pt;}
.w13{width:151.226667pt;}
.wb{width:236.186667pt;}
.w4{width:255.226667pt;}
.w7{width:264.706667pt;}
.wa{width:321.506667pt;}
.w11{width:358.466667pt;}
.w8{width:377.346667pt;}
.w6{width:415.906667pt;}
.w14{width:484.733333pt;}
.we{width:519.933333pt;}
.wc{width:642.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:2.720000pt;}
.x4{left:7.200000pt;}
.xf{left:21.920000pt;}
.x1{left:75.519988pt;}
.x1d{left:78.079988pt;}
.x7{left:83.400000pt;}
.x13{left:90.271988pt;}
.x17{left:99.551988pt;}
.x14{left:104.831988pt;}
.x1a{left:123.551988pt;}
.x10{left:132.672000pt;}
.xc{left:160.666667pt;}
.x9{left:169.146667pt;}
.x6{left:170.106667pt;}
.x1b{left:171.546655pt;}
.x3{left:188.986655pt;}
.xe{left:198.426667pt;}
.xb{left:216.026667pt;}
.x11{left:217.786667pt;}
.x16{left:226.106667pt;}
.x8{left:264.706667pt;}
.x1f{left:284.866655pt;}
.x21{left:287.426655pt;}
.x5{left:292.706667pt;}
.xa{left:340.226667pt;}
.x19{left:396.866655pt;}
.xd{left:482.173333pt;}
.x22{left:513.533322pt;}
.x1e{left:558.813322pt;}
.x12{left:576.893333pt;}
.x20{left:607.813322pt;}
.x18{left:656.933322pt;}
.x2{left:662.853322pt;}
.x1c{left:693.093322pt;}
}




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