
    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_b34faf6a5e83b4f3ca5b51f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_534d40dcaf38d7a43fac07fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_33fbba65ffcbcecb20ac6fe9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_92399e6bdb31a3cf8ef8abdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d2ec3e2d2796e18f8a391727.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cc6b65c052bbb82f5a8f2455.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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);}
.v2{vertical-align:-69.120000px;}
.v5{vertical-align:-65.520000px;}
.v7{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000000px;}
.v3{vertical-align:22.512000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.305400px;}
.ls1f{letter-spacing:-0.262200px;}
.ls22{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.220800px;}
.ls28{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls16{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.109200px;}
.lse{letter-spacing:0.126000px;}
.ls13{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.234000px;}
.ls1b{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.936000px;}
.ls2b{letter-spacing:2.988000px;}
.ls6{letter-spacing:6.660000px;}
.ls2a{letter-spacing:30.492000px;}
.ls7{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.lsf{letter-spacing:68.508000px;}
.ls0{letter-spacing:154.980000px;}
.ls11{letter-spacing:772.140000px;}
.ls1a{letter-spacing:814.080000px;}
.ls21{letter-spacing:895.440000px;}
.ls12{letter-spacing:1073.280000px;}
.ls10{letter-spacing:1179.120000px;}
.ls24{letter-spacing:1208.640000px;}
.ls25{letter-spacing:1220.880000px;}
.ls8{letter-spacing:1226.940000px;}
.ls27{letter-spacing:1251.840000px;}
.ls23{letter-spacing:1356.240000px;}
.ls26{letter-spacing:1413.120000px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.712400px;}
.ws14{word-spacing:-16.669200px;}
.ws13{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.450800px;}
.ws17{word-spacing:-16.297800px;}
.ws15{word-spacing:-16.254600px;}
.ws3{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.436000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws8{word-spacing:-13.860000px;}
.wse{word-spacing:-13.734000px;}
.ws11{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.644000px;}
.ws12{word-spacing:-13.626000px;}
.ws1a{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.482000px;}
.wsd{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.284000px;}
.ws19{word-spacing:-13.248000px;}
.ws9{word-spacing:-13.140000px;}
.ws6{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-141.178560px;}
._e{margin-left:-3.566160px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.188000px;}
._2{width:1.524240px;}
._8{width:2.832000px;}
._9{width:3.989760px;}
._7{width:5.076000px;}
._5{width:6.534000px;}
._6{width:7.626000px;}
._c{width:9.612000px;}
._f{width:10.733760px;}
._b{width:11.880000px;}
._a{width:15.444000px;}
._10{width:31.824000px;}
._11{width:33.480000px;}
._d{width:1041.420000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.240000px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:2.880000px;}
.y10f{bottom:3.060000px;}
.y90{bottom:3.240000px;}
.yb1{bottom:3.420000px;}
.yde{bottom:3.600000px;}
.yf0{bottom:3.960000px;}
.ye4{bottom:4.140000px;}
.ye6{bottom:4.320000px;}
.ye2{bottom:4.500000px;}
.y95{bottom:18.900000px;}
.y118{bottom:18.930000px;}
.y8f{bottom:18.945000px;}
.ydd{bottom:22.680000px;}
.ye1{bottom:23.760000px;}
.yfe{bottom:24.660000px;}
.yfa{bottom:25.920000px;}
.y94{bottom:34.380000px;}
.ye0{bottom:42.840000px;}
.yf9{bottom:44.820000px;}
.yf3{bottom:45.765000px;}
.yea{bottom:47.340000px;}
.y93{bottom:49.860000px;}
.y2{bottom:57.960000px;}
.yf2{bottom:64.665000px;}
.y116{bottom:65.340000px;}
.ye9{bottom:66.240000px;}
.y1{bottom:76.860000px;}
.y115{bottom:81.000000px;}
.ye8{bottom:85.140000px;}
.ybc{bottom:97.200000px;}
.y3a{bottom:101.010000px;}
.y16b{bottom:101.520000px;}
.y137{bottom:102.240000px;}
.y106{bottom:106.560000px;}
.y80{bottom:109.620000px;}
.y39{bottom:116.670000px;}
.y16a{bottom:117.180000px;}
.y136{bottom:117.720000px;}
.ybb{bottom:118.620000px;}
.y105{bottom:122.040000px;}
.y7f{bottom:125.100000px;}
.y38{bottom:132.150000px;}
.y169{bottom:132.480000px;}
.y135{bottom:133.200000px;}
.y104{bottom:137.736000px;}
.yba{bottom:140.076000px;}
.y7e{bottom:140.796000px;}
.y37{bottom:147.660000px;}
.y134{bottom:148.896000px;}
.y103{bottom:153.210000px;}
.y7d{bottom:156.270000px;}
.yb9{bottom:161.490000px;}
.y36{bottom:163.140000px;}
.y168{bottom:164.010000px;}
.y133{bottom:164.370000px;}
.y102{bottom:168.690000px;}
.y7c{bottom:171.750000px;}
.y35{bottom:178.620000px;}
.y167{bottom:179.670000px;}
.y132{bottom:179.850000px;}
.yb8{bottom:182.910000px;}
.y101{bottom:184.170000px;}
.y7b{bottom:187.410000px;}
.y34{bottom:194.280000px;}
.y166{bottom:194.790000px;}
.y131{bottom:195.330000px;}
.y100{bottom:199.830000px;}
.y7a{bottom:202.530000px;}
.yb7{bottom:204.330000px;}
.y33{bottom:209.760000px;}
.y130{bottom:210.990000px;}
.yff{bottom:215.490000px;}
.y79{bottom:218.190000px;}
.y32{bottom:225.420000px;}
.yb6{bottom:225.930000px;}
.y12f{bottom:226.470000px;}
.yfd{bottom:228.450000px;}
.y78{bottom:234.210000px;}
.y31{bottom:240.900000px;}
.y12e{bottom:241.950000px;}
.yb5{bottom:247.350000px;}
.yfc{bottom:248.610000px;}
.y77{bottom:249.690000px;}
.y30{bottom:256.380000px;}
.y165{bottom:257.250000px;}
.y12d{bottom:257.430000px;}
.y76{bottom:265.170000px;}
.yb4{bottom:268.770000px;}
.y2f{bottom:271.860000px;}
.y12c{bottom:273.090000px;}
.y75{bottom:280.650000px;}
.y2e{bottom:287.520000px;}
.y12b{bottom:288.570000px;}
.y164{bottom:288.750000px;}
.yf8{bottom:288.930000px;}
.yb3{bottom:290.190000px;}
.y74{bottom:296.310000px;}
.y2d{bottom:303.000000px;}
.y12a{bottom:304.050000px;}
.y163{bottom:304.410000px;}
.yfb{bottom:309.090000px;}
.yb2{bottom:311.610000px;}
.y73{bottom:311.790000px;}
.y2c{bottom:318.480000px;}
.y129{bottom:319.530000px;}
.y162{bottom:319.710000px;}
.y72{bottom:327.270000px;}
.yf7{bottom:329.250000px;}
.yb0{bottom:333.030000px;}
.y2b{bottom:334.140000px;}
.y128{bottom:335.190000px;}
.y71{bottom:342.750000px;}
.y2a{bottom:349.260000px;}
.yf6{bottom:349.410000px;}
.y127{bottom:350.670000px;}
.y161{bottom:351.210000px;}
.yaf{bottom:354.630000px;}
.y70{bottom:358.410000px;}
.y126{bottom:366.150000px;}
.y160{bottom:366.690000px;}
.yf1{bottom:369.570000px;}
.y6f{bottom:374.070000px;}
.yae{bottom:376.050000px;}
.y29{bottom:380.400000px;}
.y125{bottom:381.630000px;}
.y15f{bottom:382.170000px;}
.y6e{bottom:389.595000px;}
.yf5{bottom:389.775000px;}
.y124{bottom:397.335000px;}
.yad{bottom:397.515000px;}
.y15e{bottom:397.875000px;}
.y28{bottom:400.605000px;}
.y6d{bottom:406.155000px;}
.yf4{bottom:409.935000px;}
.y123{bottom:412.815000px;}
.y15d{bottom:413.355000px;}
.yac{bottom:418.935000px;}
.y6c{bottom:422.715000px;}
.y122{bottom:428.295000px;}
.y15c{bottom:428.835000px;}
.y27{bottom:429.765000px;}
.yef{bottom:430.275000px;}
.y6b{bottom:439.455000px;}
.y121{bottom:443.775000px;}
.y15b{bottom:444.315000px;}
.y26{bottom:447.945000px;}
.yee{bottom:449.895000px;}
.y6a{bottom:454.935000px;}
.yab{bottom:459.435000px;}
.y15a{bottom:459.975000px;}
.y25{bottom:463.425000px;}
.ye7{bottom:470.055000px;}
.y69{bottom:471.495000px;}
.y120{bottom:474.555000px;}
.yaa{bottom:474.915000px;}
.y159{bottom:475.455000px;}
.y24{bottom:478.905000px;}
.y68{bottom:488.055000px;}
.yed{bottom:490.215000px;}
.ya9{bottom:490.395000px;}
.y158{bottom:490.935000px;}
.y23{bottom:494.565000px;}
.y67{bottom:504.615000px;}
.ya8{bottom:505.875000px;}
.y11f{bottom:506.055000px;}
.y157{bottom:506.415000px;}
.y22{bottom:510.045000px;}
.yec{bottom:510.375000px;}
.y66{bottom:521.175000px;}
.ya7{bottom:521.355000px;}
.y11e{bottom:521.535000px;}
.y156{bottom:522.075000px;}
.y21{bottom:525.525000px;}
.yeb{bottom:530.535000px;}
.y65{bottom:536.835000px;}
.ya6{bottom:537.015000px;}
.y11d{bottom:537.195000px;}
.y155{bottom:537.375000px;}
.y20{bottom:541.005000px;}
.ye5{bottom:550.875000px;}
.y64{bottom:552.315000px;}
.ya5{bottom:552.495000px;}
.y11c{bottom:552.675000px;}
.y1f{bottom:556.485000px;}
.y63{bottom:567.615000px;}
.ya4{bottom:568.155000px;}
.y154{bottom:568.875000px;}
.ye3{bottom:571.035000px;}
.y1e{bottom:572.145000px;}
.ya2{bottom:581.115000px;}
.y62{bottom:583.275000px;}
.y11b{bottom:583.635000px;}
.y153{bottom:584.355000px;}
.y1d{bottom:587.625000px;}
.ydf{bottom:591.195000px;}
.y61{bottom:599.115000px;}
.y11a{bottom:599.295000px;}
.y152{bottom:599.835000px;}
.ya3{bottom:600.915000px;}
.y1c{bottom:603.105000px;}
.ydc{bottom:611.355000px;}
.y119{bottom:614.415000px;}
.y60{bottom:614.775000px;}
.y151{bottom:615.495000px;}
.y1b{bottom:618.585000px;}
.ya0{bottom:620.715000px;}
.y117{bottom:627.735000px;}
.y5f{bottom:630.255000px;}
.y150{bottom:630.975000px;}
.y1a{bottom:634.245000px;}
.ya1{bottom:640.545000px;}
.y5e{bottom:645.765000px;}
.y14f{bottom:646.485000px;}
.y19{bottom:649.935000px;}
.y114{bottom:659.625000px;}
.y9e{bottom:660.345000px;}
.y5d{bottom:661.245000px;}
.y14e{bottom:661.965000px;}
.ydb{bottom:668.985000px;}
.y18{bottom:672.075000px;}
.y5c{bottom:676.905000px;}
.y14d{bottom:677.625000px;}
.y9f{bottom:680.145000px;}
.yda{bottom:684.465000px;}
.y5b{bottom:692.205000px;}
.y14c{bottom:693.105000px;}
.y9a{bottom:699.945000px;}
.yd9{bottom:700.125000px;}
.y17{bottom:703.215000px;}
.y5a{bottom:707.685000px;}
.y14b{bottom:708.585000px;}
.yd8{bottom:715.605000px;}
.y16{bottom:718.695000px;}
.y9d{bottom:719.745000px;}
.y59{bottom:723.345000px;}
.y14a{bottom:724.065000px;}
.yd7{bottom:731.085000px;}
.y15{bottom:734.355000px;}
.y58{bottom:739.005000px;}
.y9c{bottom:739.545000px;}
.y149{bottom:739.725000px;}
.yd6{bottom:746.565000px;}
.y113{bottom:753.585000px;}
.y57{bottom:754.485000px;}
.y148{bottom:755.205000px;}
.y9b{bottom:759.345000px;}
.yd5{bottom:762.225000px;}
.y14{bottom:768.915000px;}
.y56{bottom:770.325000px;}
.y147{bottom:770.685000px;}
.y112{bottom:777.525000px;}
.yd4{bottom:777.705000px;}
.y92{bottom:779.145000px;}
.y55{bottom:785.985000px;}
.y146{bottom:786.165000px;}
.y13{bottom:789.075000px;}
.yd3{bottom:793.185000px;}
.y99{bottom:798.945000px;}
.y54{bottom:801.465000px;}
.y111{bottom:801.645000px;}
.y145{bottom:801.825000px;}
.yd2{bottom:808.845000px;}
.y53{bottom:816.945000px;}
.y144{bottom:817.305000px;}
.y98{bottom:818.745000px;}
.y12{bottom:821.475000px;}
.yd1{bottom:824.325000px;}
.y110{bottom:825.765000px;}
.y52{bottom:832.605000px;}
.y143{bottom:832.785000px;}
.y97{bottom:838.545000px;}
.yd0{bottom:839.985000px;}
.y11{bottom:843.795000px;}
.y51{bottom:848.085000px;}
.y142{bottom:848.265000px;}
.y10d{bottom:849.885000px;}
.y10{bottom:852.255000px;}
.ycf{bottom:855.465000px;}
.y96{bottom:858.345000px;}
.y50{bottom:863.565000px;}
.y141{bottom:863.925000px;}
.yce{bottom:870.945000px;}
.y10e{bottom:873.825000px;}
.yf{bottom:877.815000px;}
.y8e{bottom:878.145000px;}
.y4f{bottom:879.225000px;}
.y140{bottom:879.405000px;}
.ycd{bottom:886.425000px;}
.y4e{bottom:894.750000px;}
.y13f{bottom:894.930000px;}
.y91{bottom:897.990000px;}
.ycc{bottom:902.130000px;}
.y4d{bottom:910.230000px;}
.y13e{bottom:910.410000px;}
.ye{bottom:916.920000px;}
.ycb{bottom:917.610000px;}
.y8c{bottom:917.790000px;}
.y10c{bottom:925.170000px;}
.y4c{bottom:925.890000px;}
.y13d{bottom:926.070000px;}
.yca{bottom:933.090000px;}
.yd{bottom:941.220000px;}
.y4b{bottom:941.370000px;}
.y13c{bottom:941.550000px;}
.yc9{bottom:948.750000px;}
.y8b{bottom:956.670000px;}
.y4a{bottom:956.850000px;}
.y13b{bottom:957.030000px;}
.yc8{bottom:964.230000px;}
.y8a{bottom:972.150000px;}
.y10b{bottom:972.330000px;}
.y49{bottom:972.510000px;}
.yc7{bottom:979.710000px;}
.y89{bottom:987.630000px;}
.y10a{bottom:987.810000px;}
.y48{bottom:987.990000px;}
.y13a{bottom:988.170000px;}
.yc6{bottom:995.190000px;}
.yc{bottom:1000.620000px;}
.y88{bottom:1003.290000px;}
.y47{bottom:1003.470000px;}
.y139{bottom:1003.650000px;}
.yc5{bottom:1010.850000px;}
.y87{bottom:1018.410000px;}
.y109{bottom:1018.950000px;}
.y46{bottom:1019.130000px;}
.yc4{bottom:1026.330000px;}
.y9{bottom:1034.100000px;}
.y108{bottom:1034.430000px;}
.y45{bottom:1034.610000px;}
.yb{bottom:1039.320000px;}
.yc3{bottom:1041.810000px;}
.y86{bottom:1049.730000px;}
.y44{bottom:1050.090000px;}
.y8{bottom:1057.320000px;}
.yc2{bottom:1057.470000px;}
.y43{bottom:1065.570000px;}
.y138{bottom:1065.750000px;}
.ya{bottom:1071.360000px;}
.yc1{bottom:1073.130000px;}
.y85{bottom:1081.050000px;}
.y42{bottom:1081.230000px;}
.yc0{bottom:1086.090000px;}
.y7{bottom:1086.660000px;}
.y84{bottom:1096.530000px;}
.y41{bottom:1096.710000px;}
.y6{bottom:1105.740000px;}
.ybf{bottom:1107.510000px;}
.y40{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.y83{bottom:1127.670000px;}
.y3f{bottom:1127.850000px;}
.ybe{bottom:1128.930000px;}
.y4{bottom:1140.300000px;}
.y82{bottom:1142.970000px;}
.y3e{bottom:1143.330000px;}
.ybd{bottom:1150.380000px;}
.y3{bottom:1158.360000px;}
.y81{bottom:1158.660000px;}
.y107{bottom:1158.840000px;}
.y3d{bottom:1159.020000px;}
.y3c{bottom:1175.220000px;}
.y3b{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h23{height:18.900000px;}
.h15{height:19.080000px;}
.h17{height:19.116000px;}
.h21{height:19.260000px;}
.h20{height:19.440000px;}
.h25{height:19.476000px;}
.h1b{height:20.700000px;}
.h1c{height:20.736000px;}
.h2b{height:23.220000px;}
.h29{height:23.400000px;}
.h2a{height:23.436000px;}
.h2d{height:31.176000px;}
.hc{height:35.314453px;}
.h1d{height:38.016000px;}
.h10{height:38.158594px;}
.h1a{height:38.880000px;}
.h16{height:38.916000px;}
.h27{height:39.600000px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.h14{height:53.332031px;}
.he{height:54.421875px;}
.h13{height:55.503491px;}
.h7{height:55.796836px;}
.h1e{height:58.176000px;}
.h8{height:58.621992px;}
.h26{height:59.760000px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h1f{height:64.978594px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h28{height:71.496000px;}
.h2{height:72.562500px;}
.h19{height:78.480000px;}
.h24{height:79.596000px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.ha{height:89.269500px;}
.h2c{height:93.240000px;}
.h18{height:98.280000px;}
.h22{height:100.080000px;}
.h0{height:1263.000000px;}
.w1d{width:65.016000px;}
.w18{width:65.376000px;}
.w1b{width:79.740000px;}
.w16{width:80.100000px;}
.wb{width:86.796000px;}
.wf{width:104.940000px;}
.w10{width:104.976000px;}
.w6{width:112.176000px;}
.wa{width:127.440000px;}
.w3{width:144.216000px;}
.w4{width:144.396000px;}
.w9{width:148.536000px;}
.w12{width:169.020000px;}
.w8{width:169.770000px;}
.wd{width:196.230000px;}
.we{width:196.770000px;}
.w1a{width:201.495000px;}
.w1c{width:201.630000px;}
.w15{width:201.855000px;}
.w17{width:201.990000px;}
.w7{width:211.575000px;}
.w14{width:267.735000px;}
.w13{width:282.315000px;}
.w5{width:288.750000px;}
.w2{width:401.295000px;}
.w11{width:711.150000px;}
.w19{width:719.790000px;}
.wc{width:745.740000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x30{left:8.100000px;}
.x2e{left:10.080000px;}
.x59{left:11.205000px;}
.x57{left:17.640000px;}
.x2c{left:20.520000px;}
.x3a{left:24.480000px;}
.x49{left:27.000000px;}
.x34{left:28.260000px;}
.x2{left:29.970000px;}
.x45{left:31.140000px;}
.x28{left:32.616000px;}
.x2a{left:34.020000px;}
.x41{left:35.280000px;}
.x1d{left:36.360000px;}
.x23{left:40.680000px;}
.x1f{left:42.330000px;}
.x36{left:43.590000px;}
.x20{left:45.750000px;}
.x22{left:47.550000px;}
.x26{left:48.810000px;}
.x3b{left:49.860000px;}
.x8{left:53.040000px;}
.x32{left:56.880000px;}
.x5c{left:58.139987px;}
.x1e{left:60.480000px;}
.x4b{left:63.360000px;}
.x19{left:65.520000px;}
.x17{left:67.500000px;}
.x21{left:68.940000px;}
.xd{left:69.990000px;}
.x58{left:71.274000px;}
.xf{left:73.593000px;}
.x56{left:76.134000px;}
.x3e{left:77.256000px;}
.x3d{left:78.336000px;}
.x13{left:80.099987px;}
.x46{left:81.174000px;}
.x39{left:82.800000px;}
.x4d{left:84.414000px;}
.x31{left:85.530000px;}
.x47{left:87.654000px;}
.x24{left:90.174000px;}
.x35{left:91.830000px;}
.x14{left:95.976000px;}
.x37{left:97.050000px;}
.x5a{left:100.665000px;}
.x9{left:103.530000px;}
.x52{left:104.985000px;}
.x27{left:112.494000px;}
.x25{left:118.794000px;}
.x51{left:122.085000px;}
.x1a{left:124.374000px;}
.x4f{left:132.345000px;}
.x15{left:133.554000px;}
.x1b{left:144.354000px;}
.x5{left:244.050000px;}
.x4e{left:250.770000px;}
.x3{left:252.120000px;}
.x55{left:258.519000px;}
.x48{left:266.259000px;}
.x29{left:280.335000px;}
.x40{left:282.855000px;}
.x4c{left:283.899000px;}
.x4a{left:285.159000px;}
.x4{left:290.610000px;}
.xb{left:300.600000px;}
.x38{left:302.655000px;}
.x3f{left:314.175000px;}
.x3c{left:315.255000px;}
.xa{left:316.380000px;}
.x33{left:329.835000px;}
.x12{left:347.834987px;}
.x1c{left:385.095000px;}
.x5b{left:395.894987px;}
.xe{left:400.578000px;}
.x1{left:422.700000px;}
.x10{left:428.864987px;}
.xc{left:437.250000px;}
.x11{left:441.284987px;}
.x2b{left:450.465000px;}
.x53{left:452.985000px;}
.x6{left:478.845000px;}
.x42{left:480.345000px;}
.x16{left:497.625000px;}
.x7{left:506.340000px;}
.x50{left:533.445000px;}
.x43{left:586.185000px;}
.x2d{left:599.550000px;}
.x18{left:642.210000px;}
.x44{left:691.890000px;}
.x2f{left:727.350000px;}
.x54{left:735.810000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v5{vertical-align:-58.240000pt;}
.v7{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000000pt;}
.v3{vertical-align:20.010667pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.271467pt;}
.ls1f{letter-spacing:-0.233067pt;}
.ls22{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.112000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.208000pt;}
.ls1b{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.832000pt;}
.ls2b{letter-spacing:2.656000pt;}
.ls6{letter-spacing:5.920000pt;}
.ls2a{letter-spacing:27.104000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.lsf{letter-spacing:60.896000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls11{letter-spacing:686.346667pt;}
.ls1a{letter-spacing:723.626667pt;}
.ls21{letter-spacing:795.946667pt;}
.ls12{letter-spacing:954.026667pt;}
.ls10{letter-spacing:1048.106667pt;}
.ls24{letter-spacing:1074.346667pt;}
.ls25{letter-spacing:1085.226667pt;}
.ls8{letter-spacing:1090.613333pt;}
.ls27{letter-spacing:1112.746667pt;}
.ls23{letter-spacing:1205.546667pt;}
.ls26{letter-spacing:1256.106667pt;}
.wsb{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.855467pt;}
.ws14{word-spacing:-14.817067pt;}
.ws13{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.622933pt;}
.ws17{word-spacing:-14.486933pt;}
.ws15{word-spacing:-14.448533pt;}
.ws3{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.832000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws8{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.208000pt;}
.ws11{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.128000pt;}
.ws12{word-spacing:-12.112000pt;}
.ws1a{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.984000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.808000pt;}
.ws19{word-spacing:-11.776000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-125.492053pt;}
._e{margin-left:-3.169920pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.354880pt;}
._8{width:2.517333pt;}
._9{width:3.546453pt;}
._7{width:4.512000pt;}
._5{width:5.808000pt;}
._6{width:6.778667pt;}
._c{width:8.544000pt;}
._f{width:9.541120pt;}
._b{width:10.560000pt;}
._a{width:13.728000pt;}
._10{width:28.288000pt;}
._11{width:29.760000pt;}
._d{width:925.706667pt;}
._3{width:1399.520000pt;}
.fs7{font-size:10.880000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.560000pt;}
.y10f{bottom:2.720000pt;}
.y90{bottom:2.880000pt;}
.yb1{bottom:3.040000pt;}
.yde{bottom:3.200000pt;}
.yf0{bottom:3.520000pt;}
.ye4{bottom:3.680000pt;}
.ye6{bottom:3.840000pt;}
.ye2{bottom:4.000000pt;}
.y95{bottom:16.800000pt;}
.y118{bottom:16.826667pt;}
.y8f{bottom:16.840000pt;}
.ydd{bottom:20.160000pt;}
.ye1{bottom:21.120000pt;}
.yfe{bottom:21.920000pt;}
.yfa{bottom:23.040000pt;}
.y94{bottom:30.560000pt;}
.ye0{bottom:38.080000pt;}
.yf9{bottom:39.840000pt;}
.yf3{bottom:40.680000pt;}
.yea{bottom:42.080000pt;}
.y93{bottom:44.320000pt;}
.y2{bottom:51.520000pt;}
.yf2{bottom:57.480000pt;}
.y116{bottom:58.080000pt;}
.ye9{bottom:58.880000pt;}
.y1{bottom:68.320000pt;}
.y115{bottom:72.000000pt;}
.ye8{bottom:75.680000pt;}
.ybc{bottom:86.400000pt;}
.y3a{bottom:89.786667pt;}
.y16b{bottom:90.240000pt;}
.y137{bottom:90.880000pt;}
.y106{bottom:94.720000pt;}
.y80{bottom:97.440000pt;}
.y39{bottom:103.706667pt;}
.y16a{bottom:104.160000pt;}
.y136{bottom:104.640000pt;}
.ybb{bottom:105.440000pt;}
.y105{bottom:108.480000pt;}
.y7f{bottom:111.200000pt;}
.y38{bottom:117.466667pt;}
.y169{bottom:117.760000pt;}
.y135{bottom:118.400000pt;}
.y104{bottom:122.432000pt;}
.yba{bottom:124.512000pt;}
.y7e{bottom:125.152000pt;}
.y37{bottom:131.253333pt;}
.y134{bottom:132.352000pt;}
.y103{bottom:136.186667pt;}
.y7d{bottom:138.906667pt;}
.yb9{bottom:143.546667pt;}
.y36{bottom:145.013333pt;}
.y168{bottom:145.786667pt;}
.y133{bottom:146.106667pt;}
.y102{bottom:149.946667pt;}
.y7c{bottom:152.666667pt;}
.y35{bottom:158.773333pt;}
.y167{bottom:159.706667pt;}
.y132{bottom:159.866667pt;}
.yb8{bottom:162.586667pt;}
.y101{bottom:163.706667pt;}
.y7b{bottom:166.586667pt;}
.y34{bottom:172.693333pt;}
.y166{bottom:173.146667pt;}
.y131{bottom:173.626667pt;}
.y100{bottom:177.626667pt;}
.y7a{bottom:180.026667pt;}
.yb7{bottom:181.626667pt;}
.y33{bottom:186.453333pt;}
.y130{bottom:187.546667pt;}
.yff{bottom:191.546667pt;}
.y79{bottom:193.946667pt;}
.y32{bottom:200.373333pt;}
.yb6{bottom:200.826667pt;}
.y12f{bottom:201.306667pt;}
.yfd{bottom:203.066667pt;}
.y78{bottom:208.186667pt;}
.y31{bottom:214.133333pt;}
.y12e{bottom:215.066667pt;}
.yb5{bottom:219.866667pt;}
.yfc{bottom:220.986667pt;}
.y77{bottom:221.946667pt;}
.y30{bottom:227.893333pt;}
.y165{bottom:228.666667pt;}
.y12d{bottom:228.826667pt;}
.y76{bottom:235.706667pt;}
.yb4{bottom:238.906667pt;}
.y2f{bottom:241.653333pt;}
.y12c{bottom:242.746667pt;}
.y75{bottom:249.466667pt;}
.y2e{bottom:255.573333pt;}
.y12b{bottom:256.506667pt;}
.y164{bottom:256.666667pt;}
.yf8{bottom:256.826667pt;}
.yb3{bottom:257.946667pt;}
.y74{bottom:263.386667pt;}
.y2d{bottom:269.333333pt;}
.y12a{bottom:270.266667pt;}
.y163{bottom:270.586667pt;}
.yfb{bottom:274.746667pt;}
.yb2{bottom:276.986667pt;}
.y73{bottom:277.146667pt;}
.y2c{bottom:283.093333pt;}
.y129{bottom:284.026667pt;}
.y162{bottom:284.186667pt;}
.y72{bottom:290.906667pt;}
.yf7{bottom:292.666667pt;}
.yb0{bottom:296.026667pt;}
.y2b{bottom:297.013333pt;}
.y128{bottom:297.946667pt;}
.y71{bottom:304.666667pt;}
.y2a{bottom:310.453333pt;}
.yf6{bottom:310.586667pt;}
.y127{bottom:311.706667pt;}
.y161{bottom:312.186667pt;}
.yaf{bottom:315.226667pt;}
.y70{bottom:318.586667pt;}
.y126{bottom:325.466667pt;}
.y160{bottom:325.946667pt;}
.yf1{bottom:328.506667pt;}
.y6f{bottom:332.506667pt;}
.yae{bottom:334.266667pt;}
.y29{bottom:338.133333pt;}
.y125{bottom:339.226667pt;}
.y15f{bottom:339.706667pt;}
.y6e{bottom:346.306667pt;}
.yf5{bottom:346.466667pt;}
.y124{bottom:353.186667pt;}
.yad{bottom:353.346667pt;}
.y15e{bottom:353.666667pt;}
.y28{bottom:356.093333pt;}
.y6d{bottom:361.026667pt;}
.yf4{bottom:364.386667pt;}
.y123{bottom:366.946667pt;}
.y15d{bottom:367.426667pt;}
.yac{bottom:372.386667pt;}
.y6c{bottom:375.746667pt;}
.y122{bottom:380.706667pt;}
.y15c{bottom:381.186667pt;}
.y27{bottom:382.013333pt;}
.yef{bottom:382.466667pt;}
.y6b{bottom:390.626667pt;}
.y121{bottom:394.466667pt;}
.y15b{bottom:394.946667pt;}
.y26{bottom:398.173333pt;}
.yee{bottom:399.906667pt;}
.y6a{bottom:404.386667pt;}
.yab{bottom:408.386667pt;}
.y15a{bottom:408.866667pt;}
.y25{bottom:411.933333pt;}
.ye7{bottom:417.826667pt;}
.y69{bottom:419.106667pt;}
.y120{bottom:421.826667pt;}
.yaa{bottom:422.146667pt;}
.y159{bottom:422.626667pt;}
.y24{bottom:425.693333pt;}
.y68{bottom:433.826667pt;}
.yed{bottom:435.746667pt;}
.ya9{bottom:435.906667pt;}
.y158{bottom:436.386667pt;}
.y23{bottom:439.613333pt;}
.y67{bottom:448.546667pt;}
.ya8{bottom:449.666667pt;}
.y11f{bottom:449.826667pt;}
.y157{bottom:450.146667pt;}
.y22{bottom:453.373333pt;}
.yec{bottom:453.666667pt;}
.y66{bottom:463.266667pt;}
.ya7{bottom:463.426667pt;}
.y11e{bottom:463.586667pt;}
.y156{bottom:464.066667pt;}
.y21{bottom:467.133333pt;}
.yeb{bottom:471.586667pt;}
.y65{bottom:477.186667pt;}
.ya6{bottom:477.346667pt;}
.y11d{bottom:477.506667pt;}
.y155{bottom:477.666667pt;}
.y20{bottom:480.893333pt;}
.ye5{bottom:489.666667pt;}
.y64{bottom:490.946667pt;}
.ya5{bottom:491.106667pt;}
.y11c{bottom:491.266667pt;}
.y1f{bottom:494.653333pt;}
.y63{bottom:504.546667pt;}
.ya4{bottom:505.026667pt;}
.y154{bottom:505.666667pt;}
.ye3{bottom:507.586667pt;}
.y1e{bottom:508.573333pt;}
.ya2{bottom:516.546667pt;}
.y62{bottom:518.466667pt;}
.y11b{bottom:518.786667pt;}
.y153{bottom:519.426667pt;}
.y1d{bottom:522.333333pt;}
.ydf{bottom:525.506667pt;}
.y61{bottom:532.546667pt;}
.y11a{bottom:532.706667pt;}
.y152{bottom:533.186667pt;}
.ya3{bottom:534.146667pt;}
.y1c{bottom:536.093333pt;}
.ydc{bottom:543.426667pt;}
.y119{bottom:546.146667pt;}
.y60{bottom:546.466667pt;}
.y151{bottom:547.106667pt;}
.y1b{bottom:549.853333pt;}
.ya0{bottom:551.746667pt;}
.y117{bottom:557.986667pt;}
.y5f{bottom:560.226667pt;}
.y150{bottom:560.866667pt;}
.y1a{bottom:563.773333pt;}
.ya1{bottom:569.373333pt;}
.y5e{bottom:574.013333pt;}
.y14f{bottom:574.653333pt;}
.y19{bottom:577.720000pt;}
.y114{bottom:586.333333pt;}
.y9e{bottom:586.973333pt;}
.y5d{bottom:587.773333pt;}
.y14e{bottom:588.413333pt;}
.ydb{bottom:594.653333pt;}
.y18{bottom:597.400000pt;}
.y5c{bottom:601.693333pt;}
.y14d{bottom:602.333333pt;}
.y9f{bottom:604.573333pt;}
.yda{bottom:608.413333pt;}
.y5b{bottom:615.293333pt;}
.y14c{bottom:616.093333pt;}
.y9a{bottom:622.173333pt;}
.yd9{bottom:622.333333pt;}
.y17{bottom:625.080000pt;}
.y5a{bottom:629.053333pt;}
.y14b{bottom:629.853333pt;}
.yd8{bottom:636.093333pt;}
.y16{bottom:638.840000pt;}
.y9d{bottom:639.773333pt;}
.y59{bottom:642.973333pt;}
.y14a{bottom:643.613333pt;}
.yd7{bottom:649.853333pt;}
.y15{bottom:652.760000pt;}
.y58{bottom:656.893333pt;}
.y9c{bottom:657.373333pt;}
.y149{bottom:657.533333pt;}
.yd6{bottom:663.613333pt;}
.y113{bottom:669.853333pt;}
.y57{bottom:670.653333pt;}
.y148{bottom:671.293333pt;}
.y9b{bottom:674.973333pt;}
.yd5{bottom:677.533333pt;}
.y14{bottom:683.480000pt;}
.y56{bottom:684.733333pt;}
.y147{bottom:685.053333pt;}
.y112{bottom:691.133333pt;}
.yd4{bottom:691.293333pt;}
.y92{bottom:692.573333pt;}
.y55{bottom:698.653333pt;}
.y146{bottom:698.813333pt;}
.y13{bottom:701.400000pt;}
.yd3{bottom:705.053333pt;}
.y99{bottom:710.173333pt;}
.y54{bottom:712.413333pt;}
.y111{bottom:712.573333pt;}
.y145{bottom:712.733333pt;}
.yd2{bottom:718.973333pt;}
.y53{bottom:726.173333pt;}
.y144{bottom:726.493333pt;}
.y98{bottom:727.773333pt;}
.y12{bottom:730.200000pt;}
.yd1{bottom:732.733333pt;}
.y110{bottom:734.013333pt;}
.y52{bottom:740.093333pt;}
.y143{bottom:740.253333pt;}
.y97{bottom:745.373333pt;}
.yd0{bottom:746.653333pt;}
.y11{bottom:750.040000pt;}
.y51{bottom:753.853333pt;}
.y142{bottom:754.013333pt;}
.y10d{bottom:755.453333pt;}
.y10{bottom:757.560000pt;}
.ycf{bottom:760.413333pt;}
.y96{bottom:762.973333pt;}
.y50{bottom:767.613333pt;}
.y141{bottom:767.933333pt;}
.yce{bottom:774.173333pt;}
.y10e{bottom:776.733333pt;}
.yf{bottom:780.280000pt;}
.y8e{bottom:780.573333pt;}
.y4f{bottom:781.533333pt;}
.y140{bottom:781.693333pt;}
.ycd{bottom:787.933333pt;}
.y4e{bottom:795.333333pt;}
.y13f{bottom:795.493333pt;}
.y91{bottom:798.213333pt;}
.ycc{bottom:801.893333pt;}
.y4d{bottom:809.093333pt;}
.y13e{bottom:809.253333pt;}
.ye{bottom:815.040000pt;}
.ycb{bottom:815.653333pt;}
.y8c{bottom:815.813333pt;}
.y10c{bottom:822.373333pt;}
.y4c{bottom:823.013333pt;}
.y13d{bottom:823.173333pt;}
.yca{bottom:829.413333pt;}
.yd{bottom:836.640000pt;}
.y4b{bottom:836.773333pt;}
.y13c{bottom:836.933333pt;}
.yc9{bottom:843.333333pt;}
.y8b{bottom:850.373333pt;}
.y4a{bottom:850.533333pt;}
.y13b{bottom:850.693333pt;}
.yc8{bottom:857.093333pt;}
.y8a{bottom:864.133333pt;}
.y10b{bottom:864.293333pt;}
.y49{bottom:864.453333pt;}
.yc7{bottom:870.853333pt;}
.y89{bottom:877.893333pt;}
.y10a{bottom:878.053333pt;}
.y48{bottom:878.213333pt;}
.y13a{bottom:878.373333pt;}
.yc6{bottom:884.613333pt;}
.yc{bottom:889.440000pt;}
.y88{bottom:891.813333pt;}
.y47{bottom:891.973333pt;}
.y139{bottom:892.133333pt;}
.yc5{bottom:898.533333pt;}
.y87{bottom:905.253333pt;}
.y109{bottom:905.733333pt;}
.y46{bottom:905.893333pt;}
.yc4{bottom:912.293333pt;}
.y9{bottom:919.200000pt;}
.y108{bottom:919.493333pt;}
.y45{bottom:919.653333pt;}
.yb{bottom:923.840000pt;}
.yc3{bottom:926.053333pt;}
.y86{bottom:933.093333pt;}
.y44{bottom:933.413333pt;}
.y8{bottom:939.840000pt;}
.yc2{bottom:939.973333pt;}
.y43{bottom:947.173333pt;}
.y138{bottom:947.333333pt;}
.ya{bottom:952.320000pt;}
.yc1{bottom:953.893333pt;}
.y85{bottom:960.933333pt;}
.y42{bottom:961.093333pt;}
.yc0{bottom:965.413333pt;}
.y7{bottom:965.920000pt;}
.y84{bottom:974.693333pt;}
.y41{bottom:974.853333pt;}
.y6{bottom:982.880000pt;}
.ybf{bottom:984.453333pt;}
.y40{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.y83{bottom:1002.373333pt;}
.y3f{bottom:1002.533333pt;}
.ybe{bottom:1003.493333pt;}
.y4{bottom:1013.600000pt;}
.y82{bottom:1015.973333pt;}
.y3e{bottom:1016.293333pt;}
.ybd{bottom:1022.560000pt;}
.y3{bottom:1029.653333pt;}
.y81{bottom:1029.920000pt;}
.y107{bottom:1030.080000pt;}
.y3d{bottom:1030.240000pt;}
.y3c{bottom:1044.640000pt;}
.y3b{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h23{height:16.800000pt;}
.h15{height:16.960000pt;}
.h17{height:16.992000pt;}
.h21{height:17.120000pt;}
.h20{height:17.280000pt;}
.h25{height:17.312000pt;}
.h1b{height:18.400000pt;}
.h1c{height:18.432000pt;}
.h2b{height:20.640000pt;}
.h29{height:20.800000pt;}
.h2a{height:20.832000pt;}
.h2d{height:27.712000pt;}
.hc{height:31.390625pt;}
.h1d{height:33.792000pt;}
.h10{height:33.918750pt;}
.h1a{height:34.560000pt;}
.h16{height:34.592000pt;}
.h27{height:35.200000pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.h14{height:47.406250pt;}
.he{height:48.375000pt;}
.h13{height:49.336436pt;}
.h7{height:49.597187pt;}
.h1e{height:51.712000pt;}
.h8{height:52.108438pt;}
.h26{height:53.120000pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h1f{height:57.758750pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h28{height:63.552000pt;}
.h2{height:64.500000pt;}
.h19{height:69.760000pt;}
.h24{height:70.752000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.ha{height:79.350667pt;}
.h2c{height:82.880000pt;}
.h18{height:87.360000pt;}
.h22{height:88.960000pt;}
.h0{height:1122.666667pt;}
.w1d{width:57.792000pt;}
.w18{width:58.112000pt;}
.w1b{width:70.880000pt;}
.w16{width:71.200000pt;}
.wb{width:77.152000pt;}
.wf{width:93.280000pt;}
.w10{width:93.312000pt;}
.w6{width:99.712000pt;}
.wa{width:113.280000pt;}
.w3{width:128.192000pt;}
.w4{width:128.352000pt;}
.w9{width:132.032000pt;}
.w12{width:150.240000pt;}
.w8{width:150.906667pt;}
.wd{width:174.426667pt;}
.we{width:174.906667pt;}
.w1a{width:179.106667pt;}
.w1c{width:179.226667pt;}
.w15{width:179.426667pt;}
.w17{width:179.546667pt;}
.w7{width:188.066667pt;}
.w14{width:237.986667pt;}
.w13{width:250.946667pt;}
.w5{width:256.666667pt;}
.w2{width:356.706667pt;}
.w11{width:632.133333pt;}
.w19{width:639.813333pt;}
.wc{width:662.880000pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x30{left:7.200000pt;}
.x2e{left:8.960000pt;}
.x59{left:9.960000pt;}
.x57{left:15.680000pt;}
.x2c{left:18.240000pt;}
.x3a{left:21.760000pt;}
.x49{left:24.000000pt;}
.x34{left:25.120000pt;}
.x2{left:26.640000pt;}
.x45{left:27.680000pt;}
.x28{left:28.992000pt;}
.x2a{left:30.240000pt;}
.x41{left:31.360000pt;}
.x1d{left:32.320000pt;}
.x23{left:36.160000pt;}
.x1f{left:37.626667pt;}
.x36{left:38.746667pt;}
.x20{left:40.666667pt;}
.x22{left:42.266667pt;}
.x26{left:43.386667pt;}
.x3b{left:44.320000pt;}
.x8{left:47.146667pt;}
.x32{left:50.560000pt;}
.x5c{left:51.679988pt;}
.x1e{left:53.760000pt;}
.x4b{left:56.320000pt;}
.x19{left:58.240000pt;}
.x17{left:60.000000pt;}
.x21{left:61.280000pt;}
.xd{left:62.213333pt;}
.x58{left:63.354667pt;}
.xf{left:65.416000pt;}
.x56{left:67.674667pt;}
.x3e{left:68.672000pt;}
.x3d{left:69.632000pt;}
.x13{left:71.199988pt;}
.x46{left:72.154667pt;}
.x39{left:73.600000pt;}
.x4d{left:75.034667pt;}
.x31{left:76.026667pt;}
.x47{left:77.914667pt;}
.x24{left:80.154667pt;}
.x35{left:81.626667pt;}
.x14{left:85.312000pt;}
.x37{left:86.266667pt;}
.x5a{left:89.480000pt;}
.x9{left:92.026667pt;}
.x52{left:93.320000pt;}
.x27{left:99.994667pt;}
.x25{left:105.594667pt;}
.x51{left:108.520000pt;}
.x1a{left:110.554667pt;}
.x4f{left:117.640000pt;}
.x15{left:118.714667pt;}
.x1b{left:128.314667pt;}
.x5{left:216.933333pt;}
.x4e{left:222.906667pt;}
.x3{left:224.106667pt;}
.x55{left:229.794667pt;}
.x48{left:236.674667pt;}
.x29{left:249.186667pt;}
.x40{left:251.426667pt;}
.x4c{left:252.354667pt;}
.x4a{left:253.474667pt;}
.x4{left:258.320000pt;}
.xb{left:267.200000pt;}
.x38{left:269.026667pt;}
.x3f{left:279.266667pt;}
.x3c{left:280.226667pt;}
.xa{left:281.226667pt;}
.x33{left:293.186667pt;}
.x12{left:309.186655pt;}
.x1c{left:342.306667pt;}
.x5b{left:351.906655pt;}
.xe{left:356.069333pt;}
.x1{left:375.733333pt;}
.x10{left:381.213321pt;}
.xc{left:388.666667pt;}
.x11{left:392.253321pt;}
.x2b{left:400.413333pt;}
.x53{left:402.653333pt;}
.x6{left:425.640000pt;}
.x42{left:426.973333pt;}
.x16{left:442.333333pt;}
.x7{left:450.080000pt;}
.x50{left:474.173333pt;}
.x43{left:521.053333pt;}
.x2d{left:532.933333pt;}
.x18{left:570.853333pt;}
.x44{left:615.013333pt;}
.x2f{left:646.533333pt;}
.x54{left:654.053333pt;}
}




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