
    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_585d25e5b95e5a0a5f97880f.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_79a2f694965c676a26878679.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_9f5cc69cf6297d604ee4ddba.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_8f2a63817adfad0b8be407f1.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_9f72b0efc37c4edebd2bb368.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_310ae273387cc5166e2edf11.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899902;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_82e3b69752e59982993ef4b8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.513600px;}
.ls1b{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.160800px;}
.ls1a{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.023400px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls1c{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.173520px;}
.ls11{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls16{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;}
}
.wsa{word-spacing:-60.120000px;}
.ws7{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.ws5{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.324800px;}
.ws12{word-spacing:-13.279680px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.203000px;}
.wsf{word-spacing:-13.072800px;}
.ws3{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.wse{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.553600px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-4.282320px;}
._9{margin-left:-3.006000px;}
._4{margin-left:-1.047840px;}
._1{width:1.174152px;}
._5{width:2.764608px;}
._7{width:3.787800px;}
._6{width:4.809600px;}
._8{width:6.312600px;}
._b{width:7.575000px;}
._c{width:9.539400px;}
._3{width:10.904520px;}
._2{width:12.846600px;}
._13{width:14.260847px;}
._a{width:15.270600px;}
._d{width:16.533000px;}
._14{width:17.855520px;}
._12{width:18.903361px;}
._e{width:19.959840px;}
._11{width:21.042000px;}
._f{width:22.845600px;}
._0{width:24.576588px;}
._15{width:27.023760px;}
._1c{width:28.465441px;}
._16{width:29.823120px;}
._1a{width:39.161880px;}
._1b{width:40.212600px;}
._1d{width:51.462720px;}
._1e{width:52.484760px;}
._17{width:63.095760px;}
._18{width:95.494320px;}
._19{width:96.650640px;}
.fc2{color:transparent;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:7.830000px;}
.ya8{bottom:7.860000px;}
.y9b{bottom:7.920000px;}
.y110{bottom:7.950000px;}
.y9f{bottom:26.550000px;}
.ybb{bottom:26.580000px;}
.ya5{bottom:26.640000px;}
.y111{bottom:26.670000px;}
.y120{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2d{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y17f{bottom:112.980000px;}
.y87{bottom:114.870000px;}
.yce{bottom:116.760000px;}
.y16a{bottom:117.840000px;}
.yf1{bottom:126.390000px;}
.y2b{bottom:129.540000px;}
.y17e{bottom:130.530000px;}
.yb4{bottom:133.950000px;}
.y129{bottom:134.220000px;}
.y169{bottom:135.390000px;}
.y13c{bottom:139.710000px;}
.y5d{bottom:144.930000px;}
.y2a{bottom:147.180000px;}
.y196{bottom:147.990000px;}
.y86{bottom:150.510000px;}
.y1bb{bottom:151.320000px;}
.ycd{bottom:152.400000px;}
.y168{bottom:152.940000px;}
.yf0{bottom:153.750000px;}
.y13b{bottom:157.350000px;}
.y17d{bottom:157.440000px;}
.yb3{bottom:161.310000px;}
.y128{bottom:161.580000px;}
.y5c{bottom:162.570000px;}
.y10a{bottom:163.830000px;}
.y29{bottom:164.730000px;}
.y11d{bottom:164.910000px;}
.y195{bottom:165.540000px;}
.y1ba{bottom:168.870000px;}
.y167{bottom:170.580000px;}
.y13a{bottom:174.900000px;}
.yef{bottom:181.110000px;}
.y28{bottom:182.280000px;}
.y85{bottom:186.060000px;}
.y1b9{bottom:186.510000px;}
.ycc{bottom:187.950000px;}
.y166{bottom:188.130000px;}
.yb2{bottom:188.580000px;}
.y127{bottom:188.940000px;}
.y194{bottom:192.450000px;}
.y139{bottom:192.540000px;}
.y5b{bottom:198.120000px;}
.y109{bottom:199.470000px;}
.y27{bottom:199.920000px;}
.y11c{bottom:200.550000px;}
.y84{bottom:203.610000px;}
.ycb{bottom:205.590000px;}
.y165{bottom:205.680000px;}
.yee{bottom:208.380000px;}
.y138{bottom:210.090000px;}
.y1b8{bottom:213.060000px;}
.y5a{bottom:215.670000px;}
.yb1{bottom:215.940000px;}
.y126{bottom:216.210000px;}
.y108{bottom:217.020000px;}
.y26{bottom:217.470000px;}
.y83{bottom:221.250000px;}
.yca{bottom:223.140000px;}
.y17c{bottom:223.320000px;}
.y137{bottom:227.640000px;}
.y1b7{bottom:230.610000px;}
.y59{bottom:233.310000px;}
.y107{bottom:234.570000px;}
.y25{bottom:235.020000px;}
.yed{bottom:235.740000px;}
.y11b{bottom:236.100000px;}
.y82{bottom:238.800000px;}
.yc9{bottom:240.690000px;}
.y17b{bottom:240.870000px;}
.y164{bottom:241.320000px;}
.yb0{bottom:243.300000px;}
.y125{bottom:243.570000px;}
.y136{bottom:245.280000px;}
.y58{bottom:250.860000px;}
.y106{bottom:252.210000px;}
.y24{bottom:252.660000px;}
.y11a{bottom:253.650000px;}
.y81{bottom:256.440000px;}
.y1b6{bottom:257.250000px;}
.yc8{bottom:258.330000px;}
.y17a{bottom:258.510000px;}
.y163{bottom:258.870000px;}
.y135{bottom:262.830000px;}
.yec{bottom:263.100000px;}
.y193{bottom:267.600000px;}
.y57{bottom:268.500000px;}
.y105{bottom:269.760000px;}
.y23{bottom:270.210000px;}
.yaf{bottom:270.660000px;}
.y124{bottom:270.930000px;}
.y119{bottom:271.290000px;}
.y1b5{bottom:274.800000px;}
.y179{bottom:276.060000px;}
.y162{bottom:276.510000px;}
.y134{bottom:280.470000px;}
.y80{bottom:282.990000px;}
.y56{bottom:286.050000px;}
.y104{bottom:287.400000px;}
.y22{bottom:287.850000px;}
.y118{bottom:288.840000px;}
.yeb{bottom:290.370000px;}
.y1b4{bottom:292.440000px;}
.y178{bottom:293.610000px;}
.yc7{bottom:293.880000px;}
.y161{bottom:294.060000px;}
.yae{bottom:297.930000px;}
.y133{bottom:298.020000px;}
.y123{bottom:298.200000px;}
.y192{bottom:304.680000px;}
.y21{bottom:305.400000px;}
.y117{bottom:306.480000px;}
.y177{bottom:311.250000px;}
.y160{bottom:311.610000px;}
.y55{bottom:312.600000px;}
.y132{bottom:315.570000px;}
.yea{bottom:317.730000px;}
.y7f{bottom:318.540000px;}
.y1b3{bottom:318.990000px;}
.y103{bottom:322.230000px;}
.y20{bottom:322.950000px;}
.yad{bottom:325.290000px;}
.y122{bottom:325.560000px;}
.yc6{bottom:326.100000px;}
.y176{bottom:328.800000px;}
.y15f{bottom:329.250000px;}
.y191{bottom:331.500000px;}
.y131{bottom:333.210000px;}
.y102{bottom:334.380000px;}
.y7e{bottom:336.180000px;}
.y1b2{bottom:336.540000px;}
.y1f{bottom:340.590000px;}
.y116{bottom:341.310000px;}
.ye9{bottom:345.090000px;}
.y175{bottom:346.440000px;}
.y54{bottom:348.510000px;}
.yac{bottom:352.650000px;}
.y11f{bottom:352.920000px;}
.y115{bottom:353.460000px;}
.y7d{bottom:353.730000px;}
.y1e{bottom:358.140000px;}
.y101{bottom:361.740000px;}
.y1b1{bottom:363.180000px;}
.y174{bottom:363.990000px;}
.y15e{bottom:364.800000px;}
.y130{bottom:368.760000px;}
.y190{bottom:368.850000px;}
.y7c{bottom:371.370000px;}
.yab{bottom:380.010000px;}
.y121{bottom:380.280000px;}
.y1b0{bottom:380.730000px;}
.y114{bottom:380.820000px;}
.y15d{bottom:382.440000px;}
.y12f{bottom:386.400000px;}
.y100{bottom:389.100000px;}
.y1d{bottom:393.780000px;}
.y53{bottom:396.840000px;}
.y173{bottom:399.540000px;}
.y15c{bottom:399.990000px;}
.y12e{bottom:403.950000px;}
.y7b{bottom:406.920000px;}
.yaa{bottom:407.280000px;}
.y1af{bottom:407.370000px;}
.y113{bottom:408.180000px;}
.y1c{bottom:411.330000px;}
.y52{bottom:414.390000px;}
.yff{bottom:416.370000px;}
.y172{bottom:417.180000px;}
.y15b{bottom:417.540000px;}
.y12d{bottom:421.500000px;}
.y7a{bottom:424.470000px;}
.y1ae{bottom:424.920000px;}
.y1b{bottom:428.880000px;}
.y11e{bottom:428.970000px;}
.ye8{bottom:429.330000px;}
.y51{bottom:431.940000px;}
.ya9{bottom:434.640000px;}
.y171{bottom:434.730000px;}
.y15a{bottom:435.180000px;}
.y112{bottom:435.450000px;}
.y12c{bottom:439.140000px;}
.y79{bottom:442.110000px;}
.yfe{bottom:443.730000px;}
.y1a{bottom:446.520000px;}
.ye7{bottom:446.970000px;}
.y50{bottom:449.580000px;}
.y1ad{bottom:451.470000px;}
.y170{bottom:452.370000px;}
.y159{bottom:452.730000px;}
.y78{bottom:459.660000px;}
.ya7{bottom:462.000000px;}
.y10f{bottom:462.810000px;}
.y19{bottom:464.070000px;}
.ye6{bottom:464.520000px;}
.y12b{bottom:466.050000px;}
.y4f{bottom:467.130000px;}
.y1ac{bottom:469.110000px;}
.y16f{bottom:469.950000px;}
.y158{bottom:470.400000px;}
.yfd{bottom:471.120000px;}
.y77{bottom:477.330000px;}
.y18{bottom:481.740000px;}
.ye5{bottom:482.190000px;}
.y4e{bottom:484.800000px;}
.y16e{bottom:487.500000px;}
.y157{bottom:487.950000px;}
.ya6{bottom:489.300000px;}
.y10e{bottom:490.200000px;}
.y1ab{bottom:495.690000px;}
.yfc{bottom:498.480000px;}
.ye4{bottom:499.740000px;}
.y4d{bottom:502.350000px;}
.y76{bottom:503.880000px;}
.y16d{bottom:505.140000px;}
.y156{bottom:505.500000px;}
.y1aa{bottom:513.330000px;}
.y12a{bottom:513.600000px;}
.ya4{bottom:516.660000px;}
.y17{bottom:517.290000px;}
.y10d{bottom:517.560000px;}
.y4c{bottom:519.900000px;}
.y18f{bottom:522.690000px;}
.y155{bottom:523.140000px;}
.yfb{bottom:525.750000px;}
.y16{bottom:534.840000px;}
.ye3{bottom:534.930000px;}
.y4b{bottom:537.540000px;}
.y75{bottom:539.430000px;}
.y1a9{bottom:539.880000px;}
.y18e{bottom:540.330000px;}
.y154{bottom:540.690000px;}
.ya3{bottom:544.020000px;}
.y10c{bottom:544.830000px;}
.y15{bottom:552.480000px;}
.yfa{bottom:553.110000px;}
.y4a{bottom:555.090000px;}
.y74{bottom:557.070000px;}
.y1a8{bottom:557.430000px;}
.y18d{bottom:557.880000px;}
.y153{bottom:558.330000px;}
.y14{bottom:570.030000px;}
.ya2{bottom:571.380000px;}
.y10b{bottom:572.190000px;}
.y49{bottom:572.730000px;}
.y73{bottom:574.620000px;}
.y18c{bottom:575.430000px;}
.y152{bottom:575.880000px;}
.yf9{bottom:580.470000px;}
.y1a7{bottom:584.070000px;}
.ye2{bottom:587.310000px;}
.y13{bottom:587.670000px;}
.y48{bottom:590.280000px;}
.y72{bottom:592.260000px;}
.y18b{bottom:593.070000px;}
.y151{bottom:593.430000px;}
.ya1{bottom:598.650000px;}
.ye1{bottom:599.550000px;}
.y1a6{bottom:601.620000px;}
.y12{bottom:605.220000px;}
.yf8{bottom:607.740000px;}
.y47{bottom:607.830000px;}
.y18a{bottom:610.620000px;}
.y150{bottom:611.070000px;}
.y1a5{bottom:619.260000px;}
.y11{bottom:622.770000px;}
.y46{bottom:625.470000px;}
.ya0{bottom:626.010000px;}
.ye0{bottom:626.910000px;}
.y71{bottom:627.810000px;}
.y189{bottom:628.260000px;}
.y14f{bottom:628.620000px;}
.yf7{bottom:635.100000px;}
.y45{bottom:643.020000px;}
.y70{bottom:645.360000px;}
.y1a4{bottom:645.810000px;}
.y14e{bottom:646.260000px;}
.y10{bottom:649.770000px;}
.y9e{bottom:653.370000px;}
.ydf{bottom:654.180000px;}
.y44{bottom:660.660000px;}
.yf6{bottom:662.460000px;}
.y6f{bottom:663.000000px;}
.y1a3{bottom:663.360000px;}
.y14d{bottom:663.810000px;}
.y43{bottom:678.210000px;}
.y6e{bottom:680.550000px;}
.y9c{bottom:680.730000px;}
.yde{bottom:681.540000px;}
.y16c{bottom:681.810000px;}
.yf5{bottom:689.820000px;}
.y1a2{bottom:690.000000px;}
.y42{bottom:695.760000px;}
.yf{bottom:696.480000px;}
.y6d{bottom:698.190000px;}
.y14c{bottom:699.360000px;}
.y1a1{bottom:707.550000px;}
.y9a{bottom:708.000000px;}
.ydd{bottom:708.900000px;}
.y41{bottom:713.400000px;}
.y6c{bottom:715.740000px;}
.y14b{bottom:717.000000px;}
.yf4{bottom:717.090000px;}
.y1c1{bottom:725.190000px;}
.ye{bottom:732.030000px;}
.y6b{bottom:733.290000px;}
.y1a0{bottom:734.190000px;}
.yc5{bottom:734.550000px;}
.ydc{bottom:736.170000px;}
.yf3{bottom:744.450000px;}
.y40{bottom:748.950000px;}
.y19f{bottom:751.740000px;}
.yc4{bottom:752.100000px;}
.y14a{bottom:752.190000px;}
.y99{bottom:756.690000px;}
.y6a{bottom:759.930000px;}
.ydb{bottom:763.530000px;}
.y3f{bottom:766.590000px;}
.yd{bottom:767.850000px;}
.y19e{bottom:769.290000px;}
.y149{bottom:769.740000px;}
.yf2{bottom:771.810000px;}
.y3e{bottom:784.140000px;}
.yc3{bottom:786.930000px;}
.y188{bottom:787.290000px;}
.y16b{bottom:787.740000px;}
.yda{bottom:790.890000px;}
.y98{bottom:792.330000px;}
.y69{bottom:795.480000px;}
.y19d{bottom:795.930000px;}
.yc2{bottom:799.170000px;}
.y3d{bottom:801.690000px;}
.yc{bottom:803.850000px;}
.y187{bottom:804.930000px;}
.y148{bottom:805.290000px;}
.y97{bottom:809.880000px;}
.y68{bottom:813.030000px;}
.y19c{bottom:813.480000px;}
.yd9{bottom:818.250000px;}
.y3c{bottom:819.330000px;}
.y186{bottom:822.480000px;}
.y147{bottom:822.930000px;}
.yb{bottom:825.630000px;}
.yc1{bottom:826.440000px;}
.y96{bottom:827.520000px;}
.y67{bottom:830.670000px;}
.y1c0{bottom:831.030000px;}
.y3b{bottom:836.880000px;}
.y185{bottom:840.030000px;}
.y146{bottom:840.480000px;}
.ya{bottom:843.630000px;}
.y95{bottom:845.070000px;}
.yd8{bottom:845.520000px;}
.y66{bottom:848.220000px;}
.yc0{bottom:853.800000px;}
.y3a{bottom:854.520000px;}
.y184{bottom:857.670000px;}
.y145{bottom:858.030000px;}
.y9{bottom:861.630000px;}
.y94{bottom:862.620000px;}
.y65{bottom:865.860000px;}
.y39{bottom:872.070000px;}
.yd7{bottom:872.880000px;}
.y183{bottom:875.220000px;}
.y144{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.y93{bottom:880.260000px;}
.ybf{bottom:881.160000px;}
.y38{bottom:889.620000px;}
.y64{bottom:892.410000px;}
.y1bf{bottom:892.860000px;}
.y143{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.y92{bottom:897.810000px;}
.yd6{bottom:900.240000px;}
.y19b{bottom:901.860000px;}
.y37{bottom:907.260000px;}
.ybe{bottom:908.430000px;}
.y182{bottom:910.860000px;}
.y91{bottom:915.450000px;}
.y19a{bottom:919.410000px;}
.yd5{bottom:927.600000px;}
.y63{bottom:927.960000px;}
.y142{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y90{bottom:933.000000px;}
.y36{bottom:934.080000px;}
.ybd{bottom:935.790000px;}
.y1be{bottom:936.960000px;}
.y62{bottom:945.600000px;}
.y199{bottom:945.960000px;}
.y141{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y8f{bottom:950.550000px;}
.yd4{bottom:954.870000px;}
.ybc{bottom:963.150000px;}
.y198{bottom:963.600000px;}
.y140{bottom:963.960000px;}
.y8e{bottom:968.190000px;}
.y61{bottom:972.150000px;}
.y35{bottom:979.710000px;}
.y1bd{bottom:981.150000px;}
.y13f{bottom:981.600000px;}
.yd3{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y197{bottom:990.150000px;}
.yba{bottom:990.510000px;}
.y8d{bottom:995.100000px;}
.y13e{bottom:999.150000px;}
.y60{bottom:1007.790000px;}
.yd2{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y34{bottom:1016.820000px;}
.yb9{bottom:1017.810000px;}
.y1bc{bottom:1025.370000px;}
.y33{bottom:1034.370000px;}
.y181{bottom:1034.820000px;}
.yd1{bottom:1036.890000px;}
.y8c{bottom:1043.370000px;}
.yb8{bottom:1045.170000px;}
.y32{bottom:1051.920000px;}
.y180{bottom:1052.370000px;}
.y8b{bottom:1060.920000px;}
.yd0{bottom:1064.250000px;}
.y31{bottom:1069.560000px;}
.y5f{bottom:1069.920000px;}
.yb7{bottom:1072.530000px;}
.y8a{bottom:1078.560000px;}
.y13d{bottom:1087.110000px;}
.y5e{bottom:1087.560000px;}
.ycf{bottom:1091.610000px;}
.y89{bottom:1096.110000px;}
.yb6{bottom:1099.890000px;}
.y30{bottom:1105.110000px;}
.y88{bottom:1113.750000px;}
.y2f{bottom:1122.750000px;}
.yb5{bottom:1127.160000px;}
.y2e{bottom:1140.300000px;}
.y2c{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.580000px;}
.ha{height:26.640000px;}
.he{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:40.539023px;}
.h7{height:50.902383px;}
.hf{height:53.910000px;}
.h5{height:55.779258px;}
.h10{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1f{width:35.820000px;}
.w22{width:44.010000px;}
.w24{width:59.580000px;}
.w21{width:59.610000px;}
.w20{width:68.760000px;}
.w13{width:75.330000px;}
.wf{width:75.420000px;}
.wa{width:75.510000px;}
.w23{width:77.130000px;}
.w5{width:78.750000px;}
.w14{width:82.080000px;}
.w4{width:82.170000px;}
.wb{width:83.370000px;}
.w9{width:84.600000px;}
.w10{width:86.610000px;}
.w6{width:86.700000px;}
.w12{width:87.840000px;}
.w18{width:89.820000px;}
.w19{width:94.710000px;}
.w17{width:94.770000px;}
.w7{width:103.410000px;}
.wc{width:103.500000px;}
.w1a{width:111.060000px;}
.w16{width:121.320000px;}
.we{width:128.430000px;}
.w3{width:136.980000px;}
.w1d{width:165.720000px;}
.w1c{width:169.020000px;}
.w1e{width:182.250000px;}
.wd{width:432.120000px;}
.w15{width:438.420000px;}
.w11{width:479.010000px;}
.w8{width:490.890000px;}
.w1b{width:514.650000px;}
.w25{width:518.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.x1a{left:7.740000px;}
.x1{left:68.040000px;}
.x26{left:111.239987px;}
.xc{left:181.289987px;}
.x1f{left:187.320000px;}
.x19{left:189.300000px;}
.x4{left:201.180000px;}
.x12{left:207.120000px;}
.x2{left:211.079987px;}
.x17{left:227.460000px;}
.xd{left:230.610000px;}
.x1b{left:311.340000px;}
.xe{left:316.020000px;}
.xa{left:334.919987px;}
.x13{left:336.270000px;}
.x6{left:338.880000px;}
.x20{left:357.150000px;}
.xf{left:392.250000px;}
.x22{left:393.690000px;}
.x1c{left:406.830000px;}
.x14{left:412.410000px;}
.x7{left:421.770000px;}
.x23{left:463.260000px;}
.x10{left:475.140000px;}
.x15{left:495.300000px;}
.x1d{left:497.370000px;}
.x8{left:501.240000px;}
.x21{left:523.680000px;}
.x11{left:559.230000px;}
.x18{left:562.380000px;}
.x24{left:568.500000px;}
.x16{left:582.720000px;}
.x9{left:588.660000px;}
.x1e{left:592.890000px;}
.x25{left:646.350000px;}
.xb{left:777.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.456533pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.142933pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.020800pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls1c{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.154240pt;}
.ls11{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.wsa{word-spacing:-53.440000pt;}
.ws7{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.844267pt;}
.ws12{word-spacing:-11.804160pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.736000pt;}
.wsf{word-spacing:-11.620267pt;}
.ws3{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.603200pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-3.806506pt;}
._9{margin-left:-2.672000pt;}
._4{margin-left:-0.931414pt;}
._1{width:1.043691pt;}
._5{width:2.457429pt;}
._7{width:3.366934pt;}
._6{width:4.275200pt;}
._8{width:5.611200pt;}
._b{width:6.733333pt;}
._c{width:8.479467pt;}
._3{width:9.692907pt;}
._2{width:11.419200pt;}
._13{width:12.676309pt;}
._a{width:13.573867pt;}
._d{width:14.696000pt;}
._14{width:15.871573pt;}
._12{width:16.802987pt;}
._e{width:17.742080pt;}
._11{width:18.704000pt;}
._f{width:20.307200pt;}
._0{width:21.845856pt;}
._15{width:24.021120pt;}
._1c{width:25.302614pt;}
._16{width:26.509440pt;}
._1a{width:34.810560pt;}
._1b{width:35.744534pt;}
._1d{width:45.744640pt;}
._1e{width:46.653120pt;}
._17{width:56.085120pt;}
._18{width:84.883840pt;}
._19{width:85.911680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:6.960000pt;}
.ya8{bottom:6.986667pt;}
.y9b{bottom:7.040000pt;}
.y110{bottom:7.066667pt;}
.y9f{bottom:23.600000pt;}
.ybb{bottom:23.626667pt;}
.ya5{bottom:23.680000pt;}
.y111{bottom:23.706667pt;}
.y120{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2d{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y17f{bottom:100.426667pt;}
.y87{bottom:102.106667pt;}
.yce{bottom:103.786667pt;}
.y16a{bottom:104.746667pt;}
.yf1{bottom:112.346667pt;}
.y2b{bottom:115.146667pt;}
.y17e{bottom:116.026667pt;}
.yb4{bottom:119.066667pt;}
.y129{bottom:119.306667pt;}
.y169{bottom:120.346667pt;}
.y13c{bottom:124.186667pt;}
.y5d{bottom:128.826667pt;}
.y2a{bottom:130.826667pt;}
.y196{bottom:131.546667pt;}
.y86{bottom:133.786667pt;}
.y1bb{bottom:134.506667pt;}
.ycd{bottom:135.466667pt;}
.y168{bottom:135.946667pt;}
.yf0{bottom:136.666667pt;}
.y13b{bottom:139.866667pt;}
.y17d{bottom:139.946667pt;}
.yb3{bottom:143.386667pt;}
.y128{bottom:143.626667pt;}
.y5c{bottom:144.506667pt;}
.y10a{bottom:145.626667pt;}
.y29{bottom:146.426667pt;}
.y11d{bottom:146.586667pt;}
.y195{bottom:147.146667pt;}
.y1ba{bottom:150.106667pt;}
.y167{bottom:151.626667pt;}
.y13a{bottom:155.466667pt;}
.yef{bottom:160.986667pt;}
.y28{bottom:162.026667pt;}
.y85{bottom:165.386667pt;}
.y1b9{bottom:165.786667pt;}
.ycc{bottom:167.066667pt;}
.y166{bottom:167.226667pt;}
.yb2{bottom:167.626667pt;}
.y127{bottom:167.946667pt;}
.y194{bottom:171.066667pt;}
.y139{bottom:171.146667pt;}
.y5b{bottom:176.106667pt;}
.y109{bottom:177.306667pt;}
.y27{bottom:177.706667pt;}
.y11c{bottom:178.266667pt;}
.y84{bottom:180.986667pt;}
.ycb{bottom:182.746667pt;}
.y165{bottom:182.826667pt;}
.yee{bottom:185.226667pt;}
.y138{bottom:186.746667pt;}
.y1b8{bottom:189.386667pt;}
.y5a{bottom:191.706667pt;}
.yb1{bottom:191.946667pt;}
.y126{bottom:192.186667pt;}
.y108{bottom:192.906667pt;}
.y26{bottom:193.306667pt;}
.y83{bottom:196.666667pt;}
.yca{bottom:198.346667pt;}
.y17c{bottom:198.506667pt;}
.y137{bottom:202.346667pt;}
.y1b7{bottom:204.986667pt;}
.y59{bottom:207.386667pt;}
.y107{bottom:208.506667pt;}
.y25{bottom:208.906667pt;}
.yed{bottom:209.546667pt;}
.y11b{bottom:209.866667pt;}
.y82{bottom:212.266667pt;}
.yc9{bottom:213.946667pt;}
.y17b{bottom:214.106667pt;}
.y164{bottom:214.506667pt;}
.yb0{bottom:216.266667pt;}
.y125{bottom:216.506667pt;}
.y136{bottom:218.026667pt;}
.y58{bottom:222.986667pt;}
.y106{bottom:224.186667pt;}
.y24{bottom:224.586667pt;}
.y11a{bottom:225.466667pt;}
.y81{bottom:227.946667pt;}
.y1b6{bottom:228.666667pt;}
.yc8{bottom:229.626667pt;}
.y17a{bottom:229.786667pt;}
.y163{bottom:230.106667pt;}
.y135{bottom:233.626667pt;}
.yec{bottom:233.866667pt;}
.y193{bottom:237.866667pt;}
.y57{bottom:238.666667pt;}
.y105{bottom:239.786667pt;}
.y23{bottom:240.186667pt;}
.yaf{bottom:240.586667pt;}
.y124{bottom:240.826667pt;}
.y119{bottom:241.146667pt;}
.y1b5{bottom:244.266667pt;}
.y179{bottom:245.386667pt;}
.y162{bottom:245.786667pt;}
.y134{bottom:249.306667pt;}
.y80{bottom:251.546667pt;}
.y56{bottom:254.266667pt;}
.y104{bottom:255.466667pt;}
.y22{bottom:255.866667pt;}
.y118{bottom:256.746667pt;}
.yeb{bottom:258.106667pt;}
.y1b4{bottom:259.946667pt;}
.y178{bottom:260.986667pt;}
.yc7{bottom:261.226667pt;}
.y161{bottom:261.386667pt;}
.yae{bottom:264.826667pt;}
.y133{bottom:264.906667pt;}
.y123{bottom:265.066667pt;}
.y192{bottom:270.826667pt;}
.y21{bottom:271.466667pt;}
.y117{bottom:272.426667pt;}
.y177{bottom:276.666667pt;}
.y160{bottom:276.986667pt;}
.y55{bottom:277.866667pt;}
.y132{bottom:280.506667pt;}
.yea{bottom:282.426667pt;}
.y7f{bottom:283.146667pt;}
.y1b3{bottom:283.546667pt;}
.y103{bottom:286.426667pt;}
.y20{bottom:287.066667pt;}
.yad{bottom:289.146667pt;}
.y122{bottom:289.386667pt;}
.yc6{bottom:289.866667pt;}
.y176{bottom:292.266667pt;}
.y15f{bottom:292.666667pt;}
.y191{bottom:294.666667pt;}
.y131{bottom:296.186667pt;}
.y102{bottom:297.226667pt;}
.y7e{bottom:298.826667pt;}
.y1b2{bottom:299.146667pt;}
.y1f{bottom:302.746667pt;}
.y116{bottom:303.386667pt;}
.ye9{bottom:306.746667pt;}
.y175{bottom:307.946667pt;}
.y54{bottom:309.786667pt;}
.yac{bottom:313.466667pt;}
.y11f{bottom:313.706667pt;}
.y115{bottom:314.186667pt;}
.y7d{bottom:314.426667pt;}
.y1e{bottom:318.346667pt;}
.y101{bottom:321.546667pt;}
.y1b1{bottom:322.826667pt;}
.y174{bottom:323.546667pt;}
.y15e{bottom:324.266667pt;}
.y130{bottom:327.786667pt;}
.y190{bottom:327.866667pt;}
.y7c{bottom:330.106667pt;}
.yab{bottom:337.786667pt;}
.y121{bottom:338.026667pt;}
.y1b0{bottom:338.426667pt;}
.y114{bottom:338.506667pt;}
.y15d{bottom:339.946667pt;}
.y12f{bottom:343.466667pt;}
.y100{bottom:345.866667pt;}
.y1d{bottom:350.026667pt;}
.y53{bottom:352.746667pt;}
.y173{bottom:355.146667pt;}
.y15c{bottom:355.546667pt;}
.y12e{bottom:359.066667pt;}
.y7b{bottom:361.706667pt;}
.yaa{bottom:362.026667pt;}
.y1af{bottom:362.106667pt;}
.y113{bottom:362.826667pt;}
.y1c{bottom:365.626667pt;}
.y52{bottom:368.346667pt;}
.yff{bottom:370.106667pt;}
.y172{bottom:370.826667pt;}
.y15b{bottom:371.146667pt;}
.y12d{bottom:374.666667pt;}
.y7a{bottom:377.306667pt;}
.y1ae{bottom:377.706667pt;}
.y1b{bottom:381.226667pt;}
.y11e{bottom:381.306667pt;}
.ye8{bottom:381.626667pt;}
.y51{bottom:383.946667pt;}
.ya9{bottom:386.346667pt;}
.y171{bottom:386.426667pt;}
.y15a{bottom:386.826667pt;}
.y112{bottom:387.066667pt;}
.y12c{bottom:390.346667pt;}
.y79{bottom:392.986667pt;}
.yfe{bottom:394.426667pt;}
.y1a{bottom:396.906667pt;}
.ye7{bottom:397.306667pt;}
.y50{bottom:399.626667pt;}
.y1ad{bottom:401.306667pt;}
.y170{bottom:402.106667pt;}
.y159{bottom:402.426667pt;}
.y78{bottom:408.586667pt;}
.ya7{bottom:410.666667pt;}
.y10f{bottom:411.386667pt;}
.y19{bottom:412.506667pt;}
.ye6{bottom:412.906667pt;}
.y12b{bottom:414.266667pt;}
.y4f{bottom:415.226667pt;}
.y1ac{bottom:416.986667pt;}
.y16f{bottom:417.733333pt;}
.y158{bottom:418.133333pt;}
.yfd{bottom:418.773333pt;}
.y77{bottom:424.293333pt;}
.y18{bottom:428.213333pt;}
.ye5{bottom:428.613333pt;}
.y4e{bottom:430.933333pt;}
.y16e{bottom:433.333333pt;}
.y157{bottom:433.733333pt;}
.ya6{bottom:434.933333pt;}
.y10e{bottom:435.733333pt;}
.y1ab{bottom:440.613333pt;}
.yfc{bottom:443.093333pt;}
.ye4{bottom:444.213333pt;}
.y4d{bottom:446.533333pt;}
.y76{bottom:447.893333pt;}
.y16d{bottom:449.013333pt;}
.y156{bottom:449.333333pt;}
.y1aa{bottom:456.293333pt;}
.y12a{bottom:456.533333pt;}
.ya4{bottom:459.253333pt;}
.y17{bottom:459.813333pt;}
.y10d{bottom:460.053333pt;}
.y4c{bottom:462.133333pt;}
.y18f{bottom:464.613333pt;}
.y155{bottom:465.013333pt;}
.yfb{bottom:467.333333pt;}
.y16{bottom:475.413333pt;}
.ye3{bottom:475.493333pt;}
.y4b{bottom:477.813333pt;}
.y75{bottom:479.493333pt;}
.y1a9{bottom:479.893333pt;}
.y18e{bottom:480.293333pt;}
.y154{bottom:480.613333pt;}
.ya3{bottom:483.573333pt;}
.y10c{bottom:484.293333pt;}
.y15{bottom:491.093333pt;}
.yfa{bottom:491.653333pt;}
.y4a{bottom:493.413333pt;}
.y74{bottom:495.173333pt;}
.y1a8{bottom:495.493333pt;}
.y18d{bottom:495.893333pt;}
.y153{bottom:496.293333pt;}
.y14{bottom:506.693333pt;}
.ya2{bottom:507.893333pt;}
.y10b{bottom:508.613333pt;}
.y49{bottom:509.093333pt;}
.y73{bottom:510.773333pt;}
.y18c{bottom:511.493333pt;}
.y152{bottom:511.893333pt;}
.yf9{bottom:515.973333pt;}
.y1a7{bottom:519.173333pt;}
.ye2{bottom:522.053333pt;}
.y13{bottom:522.373333pt;}
.y48{bottom:524.693333pt;}
.y72{bottom:526.453333pt;}
.y18b{bottom:527.173333pt;}
.y151{bottom:527.493333pt;}
.ya1{bottom:532.133333pt;}
.ye1{bottom:532.933333pt;}
.y1a6{bottom:534.773333pt;}
.y12{bottom:537.973333pt;}
.yf8{bottom:540.213333pt;}
.y47{bottom:540.293333pt;}
.y18a{bottom:542.773333pt;}
.y150{bottom:543.173333pt;}
.y1a5{bottom:550.453333pt;}
.y11{bottom:553.573333pt;}
.y46{bottom:555.973333pt;}
.ya0{bottom:556.453333pt;}
.ye0{bottom:557.253333pt;}
.y71{bottom:558.053333pt;}
.y189{bottom:558.453333pt;}
.y14f{bottom:558.773333pt;}
.yf7{bottom:564.533333pt;}
.y45{bottom:571.573333pt;}
.y70{bottom:573.653333pt;}
.y1a4{bottom:574.053333pt;}
.y14e{bottom:574.453333pt;}
.y10{bottom:577.573333pt;}
.y9e{bottom:580.773333pt;}
.ydf{bottom:581.493333pt;}
.y44{bottom:587.253333pt;}
.yf6{bottom:588.853333pt;}
.y6f{bottom:589.333333pt;}
.y1a3{bottom:589.653333pt;}
.y14d{bottom:590.053333pt;}
.y43{bottom:602.853333pt;}
.y6e{bottom:604.933333pt;}
.y9c{bottom:605.093333pt;}
.yde{bottom:605.813333pt;}
.y16c{bottom:606.053333pt;}
.yf5{bottom:613.173333pt;}
.y1a2{bottom:613.333333pt;}
.y42{bottom:618.453333pt;}
.yf{bottom:619.093333pt;}
.y6d{bottom:620.613333pt;}
.y14c{bottom:621.653333pt;}
.y1a1{bottom:628.933333pt;}
.y9a{bottom:629.333333pt;}
.ydd{bottom:630.133333pt;}
.y41{bottom:634.133333pt;}
.y6c{bottom:636.213333pt;}
.y14b{bottom:637.333333pt;}
.yf4{bottom:637.413333pt;}
.y1c1{bottom:644.613333pt;}
.ye{bottom:650.693333pt;}
.y6b{bottom:651.813333pt;}
.y1a0{bottom:652.613333pt;}
.yc5{bottom:652.933333pt;}
.ydc{bottom:654.373333pt;}
.yf3{bottom:661.733333pt;}
.y40{bottom:665.733333pt;}
.y19f{bottom:668.213333pt;}
.yc4{bottom:668.533333pt;}
.y14a{bottom:668.613333pt;}
.y99{bottom:672.613333pt;}
.y6a{bottom:675.493333pt;}
.ydb{bottom:678.693333pt;}
.y3f{bottom:681.413333pt;}
.yd{bottom:682.533333pt;}
.y19e{bottom:683.813333pt;}
.y149{bottom:684.213333pt;}
.yf2{bottom:686.053333pt;}
.y3e{bottom:697.013333pt;}
.yc3{bottom:699.493333pt;}
.y188{bottom:699.813333pt;}
.y16b{bottom:700.213333pt;}
.yda{bottom:703.013333pt;}
.y98{bottom:704.293333pt;}
.y69{bottom:707.093333pt;}
.y19d{bottom:707.493333pt;}
.yc2{bottom:710.373333pt;}
.y3d{bottom:712.613333pt;}
.yc{bottom:714.533333pt;}
.y187{bottom:715.493333pt;}
.y148{bottom:715.813333pt;}
.y97{bottom:719.893333pt;}
.y68{bottom:722.693333pt;}
.y19c{bottom:723.093333pt;}
.yd9{bottom:727.333333pt;}
.y3c{bottom:728.293333pt;}
.y186{bottom:731.093333pt;}
.y147{bottom:731.493333pt;}
.yb{bottom:733.893333pt;}
.yc1{bottom:734.613333pt;}
.y96{bottom:735.573333pt;}
.y67{bottom:738.373333pt;}
.y1c0{bottom:738.693333pt;}
.y3b{bottom:743.893333pt;}
.y185{bottom:746.693333pt;}
.y146{bottom:747.093333pt;}
.ya{bottom:749.893333pt;}
.y95{bottom:751.173333pt;}
.yd8{bottom:751.573333pt;}
.y66{bottom:753.973333pt;}
.yc0{bottom:758.933333pt;}
.y3a{bottom:759.573333pt;}
.y184{bottom:762.373333pt;}
.y145{bottom:762.693333pt;}
.y9{bottom:765.893333pt;}
.y94{bottom:766.773333pt;}
.y65{bottom:769.653333pt;}
.y39{bottom:775.173333pt;}
.yd7{bottom:775.893333pt;}
.y183{bottom:777.973333pt;}
.y144{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.y93{bottom:782.453333pt;}
.ybf{bottom:783.253333pt;}
.y38{bottom:790.773333pt;}
.y64{bottom:793.253333pt;}
.y1bf{bottom:793.653333pt;}
.y143{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.y92{bottom:798.053333pt;}
.yd6{bottom:800.213333pt;}
.y19b{bottom:801.653333pt;}
.y37{bottom:806.453333pt;}
.ybe{bottom:807.493333pt;}
.y182{bottom:809.653333pt;}
.y91{bottom:813.733333pt;}
.y19a{bottom:817.253333pt;}
.yd5{bottom:824.533333pt;}
.y63{bottom:824.853333pt;}
.y142{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y90{bottom:829.333333pt;}
.y36{bottom:830.293333pt;}
.ybd{bottom:831.813333pt;}
.y1be{bottom:832.853333pt;}
.y62{bottom:840.533333pt;}
.y199{bottom:840.853333pt;}
.y141{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y8f{bottom:844.933333pt;}
.yd4{bottom:848.773333pt;}
.ybc{bottom:856.133333pt;}
.y198{bottom:856.533333pt;}
.y140{bottom:856.853333pt;}
.y8e{bottom:860.613333pt;}
.y61{bottom:864.133333pt;}
.y35{bottom:870.853333pt;}
.y1bd{bottom:872.133333pt;}
.y13f{bottom:872.533333pt;}
.yd3{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y197{bottom:880.133333pt;}
.yba{bottom:880.453333pt;}
.y8d{bottom:884.533333pt;}
.y13e{bottom:888.133333pt;}
.y60{bottom:895.813333pt;}
.yd2{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y34{bottom:903.840000pt;}
.yb9{bottom:904.720000pt;}
.y1bc{bottom:911.440000pt;}
.y33{bottom:919.440000pt;}
.y181{bottom:919.840000pt;}
.yd1{bottom:921.680000pt;}
.y8c{bottom:927.440000pt;}
.yb8{bottom:929.040000pt;}
.y32{bottom:935.040000pt;}
.y180{bottom:935.440000pt;}
.y8b{bottom:943.040000pt;}
.yd0{bottom:946.000000pt;}
.y31{bottom:950.720000pt;}
.y5f{bottom:951.040000pt;}
.yb7{bottom:953.360000pt;}
.y8a{bottom:958.720000pt;}
.y13d{bottom:966.320000pt;}
.y5e{bottom:966.720000pt;}
.ycf{bottom:970.320000pt;}
.y89{bottom:974.320000pt;}
.yb6{bottom:977.680000pt;}
.y30{bottom:982.320000pt;}
.y88{bottom:990.000000pt;}
.y2f{bottom:998.000000pt;}
.yb5{bottom:1001.920000pt;}
.y2e{bottom:1013.600000pt;}
.y2c{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.626667pt;}
.ha{height:23.680000pt;}
.he{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:36.034687pt;}
.h7{height:45.246562pt;}
.hf{height:47.920000pt;}
.h5{height:49.581562pt;}
.h10{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1f{width:31.840000pt;}
.w22{width:39.120000pt;}
.w24{width:52.960000pt;}
.w21{width:52.986667pt;}
.w20{width:61.120000pt;}
.w13{width:66.960000pt;}
.wf{width:67.040000pt;}
.wa{width:67.120000pt;}
.w23{width:68.560000pt;}
.w5{width:70.000000pt;}
.w14{width:72.960000pt;}
.w4{width:73.040000pt;}
.wb{width:74.106667pt;}
.w9{width:75.200000pt;}
.w10{width:76.986667pt;}
.w6{width:77.066667pt;}
.w12{width:78.080000pt;}
.w18{width:79.840000pt;}
.w19{width:84.186667pt;}
.w17{width:84.240000pt;}
.w7{width:91.920000pt;}
.wc{width:92.000000pt;}
.w1a{width:98.720000pt;}
.w16{width:107.840000pt;}
.we{width:114.160000pt;}
.w3{width:121.760000pt;}
.w1d{width:147.306667pt;}
.w1c{width:150.240000pt;}
.w1e{width:162.000000pt;}
.wd{width:384.106667pt;}
.w15{width:389.706667pt;}
.w11{width:425.786667pt;}
.w8{width:436.346667pt;}
.w1b{width:457.466667pt;}
.w25{width:460.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.x1a{left:6.880000pt;}
.x1{left:60.480000pt;}
.x26{left:98.879988pt;}
.xc{left:161.146655pt;}
.x1f{left:166.506667pt;}
.x19{left:168.266667pt;}
.x4{left:178.826667pt;}
.x12{left:184.106667pt;}
.x2{left:187.626655pt;}
.x17{left:202.186667pt;}
.xd{left:204.986667pt;}
.x1b{left:276.746667pt;}
.xe{left:280.906667pt;}
.xa{left:297.706655pt;}
.x13{left:298.906667pt;}
.x6{left:301.226667pt;}
.x20{left:317.466667pt;}
.xf{left:348.666667pt;}
.x22{left:349.946667pt;}
.x1c{left:361.626667pt;}
.x14{left:366.586667pt;}
.x7{left:374.906667pt;}
.x23{left:411.786667pt;}
.x10{left:422.346667pt;}
.x15{left:440.266667pt;}
.x1d{left:442.106667pt;}
.x8{left:445.546667pt;}
.x21{left:465.493333pt;}
.x11{left:497.093333pt;}
.x18{left:499.893333pt;}
.x24{left:505.333333pt;}
.x16{left:517.973333pt;}
.x9{left:523.253333pt;}
.x1e{left:527.013333pt;}
.x25{left:574.533333pt;}
.xb{left:691.013322pt;}
.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; }
  