
    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_a6b8ea663911a6d7244a045c.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_ef8907c9ce648461e0440d78.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_848ea2eeb9b6cdb99e8b452d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_564cd7f34abf4b4b8650cfdf.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f4c506d08a3bf6ee4c4a5b9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls3{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.161400px;}
.lsc{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.820000px;}
.ws8{word-spacing:-16.174200px;}
.ws7{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.788160px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.999200px;}
.wse{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:100.200000px;}
._11{margin-left:-4.329600px;}
._d{margin-left:-2.908080px;}
._0{margin-left:-1.324800px;}
._4{width:1.314720px;}
._12{width:2.325120px;}
._8{width:3.346560px;}
._6{width:4.780800px;}
._13{width:5.809440px;}
._e{width:6.812640px;}
._f{width:7.948800px;}
._5{width:9.442080px;}
._c{width:10.637280px;}
._7{width:11.832480px;}
._9{width:13.625280px;}
._10{width:15.387840px;}
._14{width:16.917120px;}
._1{width:18.875520px;}
._b{width:19.917360px;}
._3{width:21.663360px;}
._2{width:23.247360px;}
._19{width:25.885920px;}
._18{width:27.112320px;}
._15{width:28.506240px;}
._17{width:30.153600px;}
._a{width:31.254480px;}
._1b{width:80.760000px;}
._1a{width:100.020000px;}
._16{width:1934.181120px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsb{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:71.280000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs1{font-size:95.760000px;}
.fs8{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.ya7{bottom:3.420000px;}
.yaa{bottom:12.420000px;}
.yac{bottom:12.600000px;}
.y13{bottom:14.400000px;}
.y1a{bottom:21.240000px;}
.ya9{bottom:21.420000px;}
.yb9{bottom:21.465000px;}
.yad{bottom:21.600000px;}
.y185{bottom:22.830000px;}
.y35{bottom:29.340000px;}
.y19{bottom:38.520000px;}
.y34{bottom:46.620000px;}
.y183{bottom:49.755000px;}
.y18{bottom:55.800000px;}
.y33{bottom:63.900000px;}
.y17c{bottom:72.570000px;}
.y17{bottom:73.110000px;}
.y32{bottom:81.180000px;}
.y16{bottom:90.390000px;}
.y1b{bottom:95.430000px;}
.y31{bottom:98.460000px;}
.y17d{bottom:104.250000px;}
.y15{bottom:105.150000px;}
.y30{bottom:115.740000px;}
.y187{bottom:123.585000px;}
.y184{bottom:126.285000px;}
.y2f{bottom:132.840000px;}
.y17e{bottom:135.900000px;}
.y2e{bottom:150.120000px;}
.y186{bottom:152.175000px;}
.y12a{bottom:163.290000px;}
.yc3{bottom:163.470000px;}
.y14b{bottom:163.650000px;}
.y2d{bottom:167.445000px;}
.y17f{bottom:167.580000px;}
.y43{bottom:168.150000px;}
.yed{bottom:173.910000px;}
.y1b8{bottom:176.610000px;}
.y9b{bottom:181.110000px;}
.y129{bottom:181.470000px;}
.yc2{bottom:181.650000px;}
.y14a{bottom:181.830000px;}
.y2c{bottom:184.725000px;}
.y42{bottom:187.050000px;}
.y1b7{bottom:192.990000px;}
.y180{bottom:199.230000px;}
.y77{bottom:199.470000px;}
.yc1{bottom:199.830000px;}
.yec{bottom:200.910000px;}
.y2b{bottom:202.005000px;}
.y9a{bottom:208.290000px;}
.y1b6{bottom:209.370000px;}
.y17a{bottom:209.730000px;}
.y3e{bottom:211.005000px;}
.y41{bottom:214.770000px;}
.y128{bottom:217.650000px;}
.yc0{bottom:217.830000px;}
.y149{bottom:218.010000px;}
.yff{bottom:218.730000px;}
.y2a{bottom:219.285000px;}
.y76{bottom:222.870000px;}
.y99{bottom:226.470000px;}
.yeb{bottom:228.090000px;}
.y3d{bottom:228.285000px;}
.y1b5{bottom:230.250000px;}
.y181{bottom:230.865000px;}
.y40{bottom:233.490000px;}
.ybf{bottom:236.010000px;}
.y29{bottom:236.385000px;}
.yfe{bottom:236.910000px;}
.y179{bottom:237.810000px;}
.y15a{bottom:239.790000px;}
.y98{bottom:244.650000px;}
.y3c{bottom:245.565000px;}
.y75{bottom:246.450000px;}
.y1b4{bottom:246.630000px;}
.y1c{bottom:249.870000px;}
.y28{bottom:253.665000px;}
.ybe{bottom:254.010000px;}
.y159{bottom:254.550000px;}
.yfd{bottom:255.090000px;}
.yea{bottom:255.270000px;}
.y182{bottom:262.545000px;}
.y97{bottom:262.650000px;}
.y127{bottom:262.830000px;}
.y3b{bottom:262.845000px;}
.y1b3{bottom:263.010000px;}
.y148{bottom:263.910000px;}
.y74{bottom:265.530000px;}
.y27{bottom:270.945000px;}
.y119{bottom:271.290000px;}
.ybd{bottom:272.190000px;}
.yfc{bottom:273.270000px;}
.y3a{bottom:280.125000px;}
.y96{bottom:280.830000px;}
.y126{bottom:281.010000px;}
.ye9{bottom:282.270000px;}
.y178{bottom:283.710000px;}
.y1b2{bottom:284.070000px;}
.y73{bottom:284.610000px;}
.y26{bottom:288.225000px;}
.y118{bottom:289.470000px;}
.ybc{bottom:290.370000px;}
.yfb{bottom:291.270000px;}
.y39{bottom:297.225000px;}
.y95{bottom:298.830000px;}
.y125{bottom:299.010000px;}
.y1b1{bottom:300.450000px;}
.y177{bottom:301.890000px;}
.y72{bottom:303.510000px;}
.y147{bottom:304.590000px;}
.y25{bottom:305.505000px;}
.y117{bottom:307.650000px;}
.ye8{bottom:309.450000px;}
.y38{bottom:314.505000px;}
.y94{bottom:317.010000px;}
.y124{bottom:317.190000px;}
.ybb{bottom:317.550000px;}
.y3f{bottom:319.725000px;}
.y1b0{bottom:321.330000px;}
.y71{bottom:322.410000px;}
.y24{bottom:322.785000px;}
.y116{bottom:325.830000px;}
.yfa{bottom:327.450000px;}
.y176{bottom:329.070000px;}
.y37{bottom:329.445000px;}
.y93{bottom:335.190000px;}
.y123{bottom:335.370000px;}
.ye7{bottom:336.450000px;}
.y1af{bottom:337.710000px;}
.y23{bottom:339.885000px;}
.y70{bottom:341.490000px;}
.y115{bottom:343.830000px;}
.y146{bottom:345.270000px;}
.yf9{bottom:345.630000px;}
.yba{bottom:346.170000px;}
.y92{bottom:353.190000px;}
.y122{bottom:353.370000px;}
.y1ae{bottom:354.090000px;}
.y175{bottom:356.790000px;}
.y22{bottom:357.165000px;}
.y6f{bottom:360.390000px;}
.y114{bottom:362.010000px;}
.ye6{bottom:363.630000px;}
.y91{bottom:371.370000px;}
.y121{bottom:371.550000px;}
.yf8{bottom:372.630000px;}
.y21{bottom:374.445000px;}
.y174{bottom:374.970000px;}
.y6e{bottom:379.470000px;}
.y113{bottom:380.190000px;}
.y145{bottom:386.130000px;}
.yb8{bottom:386.850000px;}
.y120{bottom:389.550000px;}
.ye5{bottom:390.810000px;}
.y1ad{bottom:391.350000px;}
.y20{bottom:391.725000px;}
.y173{bottom:393.150000px;}
.yf7{bottom:396.390000px;}
.y112{bottom:398.190000px;}
.y90{bottom:398.550000px;}
.y6d{bottom:402.690000px;}
.y11f{bottom:407.775000px;}
.y1f{bottom:409.035000px;}
.y172{bottom:411.375000px;}
.ye4{bottom:417.855000px;}
.y6c{bottom:421.815000px;}
.y111{bottom:425.235000px;}
.y1e{bottom:426.315000px;}
.y8f{bottom:426.495000px;}
.y144{bottom:426.855000px;}
.yb7{bottom:427.575000px;}
.y1ac{bottom:428.655000px;}
.y171{bottom:429.375000px;}
.y11e{bottom:434.955000px;}
.y6b{bottom:440.895000px;}
.y1d{bottom:441.075000px;}
.y110{bottom:443.415000px;}
.y8e{bottom:444.675000px;}
.ye3{bottom:445.035000px;}
.y170{bottom:447.555000px;}
.y6a{bottom:459.795000px;}
.y10f{bottom:461.595000px;}
.y8d{bottom:462.675000px;}
.y11d{bottom:462.855000px;}
.y16f{bottom:465.735000px;}
.y1ab{bottom:465.915000px;}
.y143{bottom:467.535000px;}
.yb6{bottom:468.255000px;}
.ye2{bottom:472.215000px;}
.y69{bottom:478.875000px;}
.y10e{bottom:479.775000px;}
.y8c{bottom:480.855000px;}
.y1aa{bottom:482.295000px;}
.y16e{bottom:483.735000px;}
.y11c{bottom:490.035000px;}
.y68{bottom:497.775000px;}
.y1a9{bottom:498.675000px;}
.y8b{bottom:498.855000px;}
.ye1{bottom:499.215000px;}
.y16d{bottom:501.915000px;}
.yb5{bottom:508.935000px;}
.y10d{bottom:515.955000px;}
.y67{bottom:516.675000px;}
.y1a8{bottom:519.555000px;}
.y16c{bottom:519.915000px;}
.y8a{bottom:526.035000px;}
.ye0{bottom:526.395000px;}
.y158{bottom:527.835000px;}
.y10c{bottom:534.135000px;}
.y142{bottom:534.675000px;}
.y66{bottom:535.755000px;}
.y1a7{bottom:535.935000px;}
.y16b{bottom:538.095000px;}
.y157{bottom:546.015000px;}
.yb4{bottom:549.795000px;}
.y10b{bottom:552.135000px;}
.ydf{bottom:553.395000px;}
.y89{bottom:553.935000px;}
.y65{bottom:554.655000px;}
.y16a{bottom:556.275000px;}
.y1a6{bottom:556.815000px;}
.y141{bottom:561.675000px;}
.y156{bottom:564.195000px;}
.y88{bottom:572.115000px;}
.y1a5{bottom:573.195000px;}
.y64{bottom:573.735000px;}
.y169{bottom:574.275000px;}
.y10a{bottom:579.135000px;}
.y140{bottom:579.855000px;}
.yde{bottom:580.575000px;}
.y155{bottom:582.375000px;}
.y14{bottom:585.795000px;}
.y87{bottom:590.295000px;}
.yb3{bottom:590.475000px;}
.y63{bottom:592.635000px;}
.y1a4{bottom:594.075000px;}
.y109{bottom:597.315000px;}
.y13f{bottom:598.035000px;}
.y154{bottom:600.375000px;}
.y168{bottom:601.455000px;}
.ydd{bottom:607.755000px;}
.y86{bottom:608.295000px;}
.y1a3{bottom:610.455000px;}
.y62{bottom:611.535000px;}
.y108{bottom:615.495000px;}
.y13e{bottom:616.035000px;}
.y153{bottom:618.555000px;}
.ydc{bottom:625.935000px;}
.y85{bottom:626.475000px;}
.y167{bottom:629.355000px;}
.y61{bottom:630.615000px;}
.yb2{bottom:631.155000px;}
.y1a2{bottom:631.335000px;}
.y107{bottom:633.675000px;}
.y13d{bottom:634.215000px;}
.y152{bottom:636.555000px;}
.ydb{bottom:643.935000px;}
.y84{bottom:644.475000px;}
.y166{bottom:647.535000px;}
.y1a1{bottom:647.715000px;}
.y60{bottom:649.515000px;}
.y106{bottom:651.675000px;}
.y13c{bottom:652.395000px;}
.y151{bottom:654.765000px;}
.yda{bottom:662.145000px;}
.y83{bottom:662.685000px;}
.y1a0{bottom:664.125000px;}
.y165{bottom:665.745000px;}
.y105{bottom:669.885000px;}
.y13b{bottom:670.425000px;}
.yb1{bottom:671.865000px;}
.y5f{bottom:672.945000px;}
.yd9{bottom:680.145000px;}
.y164{bottom:683.745000px;}
.y19f{bottom:685.005000px;}
.y104{bottom:687.885000px;}
.y13a{bottom:688.605000px;}
.y82{bottom:689.685000px;}
.y150{bottom:690.945000px;}
.y5e{bottom:692.025000px;}
.y12{bottom:697.605000px;}
.yd8{bottom:698.325000px;}
.y19e{bottom:701.385000px;}
.y163{bottom:701.925000px;}
.y103{bottom:706.065000px;}
.y139{bottom:706.785000px;}
.y14f{bottom:709.125000px;}
.y5d{bottom:710.925000px;}
.yb0{bottom:712.725000px;}
.y81{bottom:713.445000px;}
.yd7{bottom:716.505000px;}
.y162{bottom:719.925000px;}
.y19d{bottom:722.265000px;}
.y138{bottom:724.785000px;}
.y14e{bottom:727.305000px;}
.y5c{bottom:730.005000px;}
.y102{bottom:733.245000px;}
.yd6{bottom:734.505000px;}
.y161{bottom:738.105000px;}
.y19c{bottom:738.645000px;}
.y11b{bottom:740.805000px;}
.y11{bottom:741.885000px;}
.y5b{bottom:748.905000px;}
.y137{bottom:751.965000px;}
.yd5{bottom:752.685000px;}
.yaf{bottom:753.405000px;}
.y14d{bottom:754.485000px;}
.y19b{bottom:755.025000px;}
.y160{bottom:756.285000px;}
.y10{bottom:759.165000px;}
.y101{bottom:761.145000px;}
.y11a{bottom:764.565000px;}
.y5a{bottom:767.985000px;}
.yd4{bottom:770.865000px;}
.y15f{bottom:774.285000px;}
.y19a{bottom:775.905000px;}
.yf{bottom:776.445000px;}
.y136{bottom:780.045000px;}
.y14c{bottom:782.205000px;}
.y100{bottom:784.905000px;}
.y59{bottom:786.885000px;}
.y199{bottom:792.285000px;}
.y15e{bottom:792.465000px;}
.ye{bottom:793.905000px;}
.yae{bottom:794.085000px;}
.yd3{bottom:798.045000px;}
.y58{bottom:805.965000px;}
.y135{bottom:808.485000px;}
.y198{bottom:808.665000px;}
.y15d{bottom:810.465000px;}
.yd{bottom:811.905000px;}
.y57{bottom:824.865000px;}
.yd2{bottom:825.765000px;}
.y197{bottom:829.725000px;}
.yab{bottom:834.765000px;}
.yc{bottom:835.305000px;}
.y15c{bottom:837.645000px;}
.y56{bottom:843.765000px;}
.yd1{bottom:843.945000px;}
.y196{bottom:846.105000px;}
.yb{bottom:848.265000px;}
.y134{bottom:849.345000px;}
.y15b{bottom:861.225000px;}
.y17b{bottom:861.480000px;}
.yd0{bottom:862.125000px;}
.y195{bottom:862.485000px;}
.y55{bottom:862.845000px;}
.ya{bottom:871.485000px;}
.y133{bottom:871.845000px;}
.ya8{bottom:875.625000px;}
.ycf{bottom:880.125000px;}
.y54{bottom:881.745000px;}
.y194{bottom:883.365000px;}
.y9{bottom:884.985000px;}
.yf6{bottom:889.305000px;}
.yce{bottom:898.305000px;}
.y193{bottom:899.745000px;}
.y53{bottom:900.870000px;}
.y8{bottom:905.730000px;}
.yf5{bottom:907.530000px;}
.y132{bottom:912.750000px;}
.ycd{bottom:916.530000px;}
.ya6{bottom:917.070000px;}
.y52{bottom:919.770000px;}
.y192{bottom:920.670000px;}
.yf4{bottom:925.530000px;}
.ycc{bottom:934.530000px;}
.y191{bottom:937.050000px;}
.y51{bottom:938.670000px;}
.ya5{bottom:942.630000px;}
.yf3{bottom:943.710000px;}
.y7{bottom:944.430000px;}
.ycb{bottom:952.710000px;}
.y131{bottom:953.430000px;}
.y190{bottom:957.930000px;}
.yf2{bottom:961.890000px;}
.y50{bottom:962.070000px;}
.y6{bottom:965.130000px;}
.y80{bottom:968.910000px;}
.ya4{bottom:969.810000px;}
.y18f{bottom:974.310000px;}
.yca{bottom:979.710000px;}
.yf1{bottom:979.890000px;}
.y4f{bottom:981.150000px;}
.y7f{bottom:987.090000px;}
.ya3{bottom:987.990000px;}
.y18e{bottom:990.690000px;}
.y130{bottom:994.110000px;}
.yf0{bottom:998.070000px;}
.y4e{bottom:1000.230000px;}
.y5{bottom:1003.830000px;}
.y7e{bottom:1005.270000px;}
.ya2{bottom:1005.990000px;}
.yc9{bottom:1006.890000px;}
.y18d{bottom:1011.570000px;}
.y12f{bottom:1017.510000px;}
.y4d{bottom:1019.130000px;}
.y7d{bottom:1023.270000px;}
.ya1{bottom:1024.170000px;}
.yc8{bottom:1025.070000px;}
.y18c{bottom:1027.950000px;}
.y4c{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y7c{bottom:1041.450000px;}
.ya0{bottom:1042.350000px;}
.yc7{bottom:1043.070000px;}
.y18b{bottom:1044.330000px;}
.y1be{bottom:1048.470000px;}
.y12e{bottom:1052.070000px;}
.yef{bottom:1052.250000px;}
.y4b{bottom:1057.110000px;}
.y7b{bottom:1059.450000px;}
.y9f{bottom:1060.350000px;}
.yc6{bottom:1061.250000px;}
.y1bd{bottom:1064.850000px;}
.y18a{bottom:1065.210000px;}
.y4a{bottom:1076.010000px;}
.y7a{bottom:1077.630000px;}
.y9e{bottom:1078.530000px;}
.yee{bottom:1079.250000px;}
.yc5{bottom:1079.430000px;}
.y1bc{bottom:1081.230000px;}
.y189{bottom:1081.590000px;}
.y49{bottom:1095.090000px;}
.y12d{bottom:1097.430000px;}
.y188{bottom:1097.970000px;}
.y1bb{bottom:1102.110000px;}
.y79{bottom:1104.810000px;}
.y9d{bottom:1105.710000px;}
.yc4{bottom:1106.430000px;}
.y48{bottom:1113.990000px;}
.y12c{bottom:1115.430000px;}
.y1ba{bottom:1118.490000px;}
.y78{bottom:1132.710000px;}
.y47{bottom:1132.890000px;}
.y9c{bottom:1133.430000px;}
.y12b{bottom:1133.610000px;}
.y1b9{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y46{bottom:1169.460000px;}
.y45{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y44{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h18{height:18.000000px;}
.h12{height:18.180000px;}
.h15{height:36.180000px;}
.h13{height:36.216000px;}
.h14{height:36.360000px;}
.h19{height:36.396000px;}
.h9{height:40.320000px;}
.h5{height:41.304375px;}
.h1d{height:55.824609px;}
.h1e{height:57.324375px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h8{height:60.226875px;}
.h17{height:62.153438px;}
.h6{height:62.184375px;}
.h16{height:63.855000px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h1c{height:69.957422px;}
.h10{height:70.664062px;}
.h4{height:72.562500px;}
.h1b{height:76.317188px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h11{height:153.341016px;}
.h1a{height:286.740000px;}
.hf{height:333.750000px;}
.he{height:445.395000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w10{width:40.860000px;}
.w9{width:105.660000px;}
.wd{width:126.000000px;}
.w6{width:161.460000px;}
.wa{width:165.990000px;}
.w7{width:177.690000px;}
.wc{width:190.830000px;}
.wb{width:203.610000px;}
.we{width:221.430000px;}
.w3{width:237.990000px;}
.wf{width:277.635000px;}
.w8{width:329.115000px;}
.w5{width:406.875000px;}
.w11{width:687.240000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.080000px;}
.x7{left:8.100000px;}
.x2d{left:36.972000px;}
.x2b{left:45.645000px;}
.x2a{left:55.365000px;}
.x2c{left:76.755000px;}
.x5{left:108.035987px;}
.x11{left:110.376000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xc{left:160.589987px;}
.xa{left:185.250000px;}
.x25{left:199.109987px;}
.x1a{left:200.189987px;}
.x1c{left:201.449987px;}
.x1d{left:218.190000px;}
.x29{left:220.349987px;}
.x21{left:238.530000px;}
.xf{left:252.389987px;}
.x19{left:264.989987px;}
.x13{left:273.990000px;}
.x10{left:277.589987px;}
.x17{left:278.714987px;}
.x2e{left:283.605000px;}
.x1b{left:288.254987px;}
.x27{left:291.134987px;}
.x20{left:300.134987px;}
.x3{left:314.354987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x1e{left:386.535000px;}
.x14{left:454.035000px;}
.x22{left:462.315000px;}
.x24{left:580.964987px;}
.x2f{left:582.555000px;}
.x15{left:587.804987px;}
.x1f{left:592.305000px;}
.x16{left:605.804987px;}
.x26{left:705.389987px;}
.xe{left:729.509987px;}
.x23{left:742.290000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x18{left:773.429987px;}
.x4{left:781.349987px;}
.x28{left:795.389987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.143467pt;}
.lsc{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.840000pt;}
.ws8{word-spacing:-14.377067pt;}
.ws7{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.033920pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.443733pt;}
.wse{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:89.066667pt;}
._11{margin-left:-3.848533pt;}
._d{margin-left:-2.584960pt;}
._0{margin-left:-1.177600pt;}
._4{width:1.168640pt;}
._12{width:2.066773pt;}
._8{width:2.974720pt;}
._6{width:4.249600pt;}
._13{width:5.163947pt;}
._e{width:6.055680pt;}
._f{width:7.065600pt;}
._5{width:8.392960pt;}
._c{width:9.455360pt;}
._7{width:10.517760pt;}
._9{width:12.111360pt;}
._10{width:13.678080pt;}
._14{width:15.037440pt;}
._1{width:16.778240pt;}
._b{width:17.704320pt;}
._3{width:19.256320pt;}
._2{width:20.664320pt;}
._19{width:23.009707pt;}
._18{width:24.099840pt;}
._15{width:25.338880pt;}
._17{width:26.803200pt;}
._a{width:27.781760pt;}
._1b{width:71.786667pt;}
._1a{width:88.906667pt;}
._16{width:1719.272107pt;}
.fs7{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsb{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:63.360000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs1{font-size:85.120000pt;}
.fs8{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.ya7{bottom:3.040000pt;}
.yaa{bottom:11.040000pt;}
.yac{bottom:11.200000pt;}
.y13{bottom:12.800000pt;}
.y1a{bottom:18.880000pt;}
.ya9{bottom:19.040000pt;}
.yb9{bottom:19.080000pt;}
.yad{bottom:19.200000pt;}
.y185{bottom:20.293333pt;}
.y35{bottom:26.080000pt;}
.y19{bottom:34.240000pt;}
.y34{bottom:41.440000pt;}
.y183{bottom:44.226667pt;}
.y18{bottom:49.600000pt;}
.y33{bottom:56.800000pt;}
.y17c{bottom:64.506667pt;}
.y17{bottom:64.986667pt;}
.y32{bottom:72.160000pt;}
.y16{bottom:80.346667pt;}
.y1b{bottom:84.826667pt;}
.y31{bottom:87.520000pt;}
.y17d{bottom:92.666667pt;}
.y15{bottom:93.466667pt;}
.y30{bottom:102.880000pt;}
.y187{bottom:109.853333pt;}
.y184{bottom:112.253333pt;}
.y2f{bottom:118.080000pt;}
.y17e{bottom:120.800000pt;}
.y2e{bottom:133.440000pt;}
.y186{bottom:135.266667pt;}
.y12a{bottom:145.146667pt;}
.yc3{bottom:145.306667pt;}
.y14b{bottom:145.466667pt;}
.y2d{bottom:148.840000pt;}
.y17f{bottom:148.960000pt;}
.y43{bottom:149.466667pt;}
.yed{bottom:154.586667pt;}
.y1b8{bottom:156.986667pt;}
.y9b{bottom:160.986667pt;}
.y129{bottom:161.306667pt;}
.yc2{bottom:161.466667pt;}
.y14a{bottom:161.626667pt;}
.y2c{bottom:164.200000pt;}
.y42{bottom:166.266667pt;}
.y1b7{bottom:171.546667pt;}
.y180{bottom:177.093333pt;}
.y77{bottom:177.306667pt;}
.yc1{bottom:177.626667pt;}
.yec{bottom:178.586667pt;}
.y2b{bottom:179.560000pt;}
.y9a{bottom:185.146667pt;}
.y1b6{bottom:186.106667pt;}
.y17a{bottom:186.426667pt;}
.y3e{bottom:187.560000pt;}
.y41{bottom:190.906667pt;}
.y128{bottom:193.466667pt;}
.yc0{bottom:193.626667pt;}
.y149{bottom:193.786667pt;}
.yff{bottom:194.426667pt;}
.y2a{bottom:194.920000pt;}
.y76{bottom:198.106667pt;}
.y99{bottom:201.306667pt;}
.yeb{bottom:202.746667pt;}
.y3d{bottom:202.920000pt;}
.y1b5{bottom:204.666667pt;}
.y181{bottom:205.213333pt;}
.y40{bottom:207.546667pt;}
.ybf{bottom:209.786667pt;}
.y29{bottom:210.120000pt;}
.yfe{bottom:210.586667pt;}
.y179{bottom:211.386667pt;}
.y15a{bottom:213.146667pt;}
.y98{bottom:217.466667pt;}
.y3c{bottom:218.280000pt;}
.y75{bottom:219.066667pt;}
.y1b4{bottom:219.226667pt;}
.y1c{bottom:222.106667pt;}
.y28{bottom:225.480000pt;}
.ybe{bottom:225.786667pt;}
.y159{bottom:226.266667pt;}
.yfd{bottom:226.746667pt;}
.yea{bottom:226.906667pt;}
.y182{bottom:233.373333pt;}
.y97{bottom:233.466667pt;}
.y127{bottom:233.626667pt;}
.y3b{bottom:233.640000pt;}
.y1b3{bottom:233.786667pt;}
.y148{bottom:234.586667pt;}
.y74{bottom:236.026667pt;}
.y27{bottom:240.840000pt;}
.y119{bottom:241.146667pt;}
.ybd{bottom:241.946667pt;}
.yfc{bottom:242.906667pt;}
.y3a{bottom:249.000000pt;}
.y96{bottom:249.626667pt;}
.y126{bottom:249.786667pt;}
.ye9{bottom:250.906667pt;}
.y178{bottom:252.186667pt;}
.y1b2{bottom:252.506667pt;}
.y73{bottom:252.986667pt;}
.y26{bottom:256.200000pt;}
.y118{bottom:257.306667pt;}
.ybc{bottom:258.106667pt;}
.yfb{bottom:258.906667pt;}
.y39{bottom:264.200000pt;}
.y95{bottom:265.626667pt;}
.y125{bottom:265.786667pt;}
.y1b1{bottom:267.066667pt;}
.y177{bottom:268.346667pt;}
.y72{bottom:269.786667pt;}
.y147{bottom:270.746667pt;}
.y25{bottom:271.560000pt;}
.y117{bottom:273.466667pt;}
.ye8{bottom:275.066667pt;}
.y38{bottom:279.560000pt;}
.y94{bottom:281.786667pt;}
.y124{bottom:281.946667pt;}
.ybb{bottom:282.266667pt;}
.y3f{bottom:284.200000pt;}
.y1b0{bottom:285.626667pt;}
.y71{bottom:286.586667pt;}
.y24{bottom:286.920000pt;}
.y116{bottom:289.626667pt;}
.yfa{bottom:291.066667pt;}
.y176{bottom:292.506667pt;}
.y37{bottom:292.840000pt;}
.y93{bottom:297.946667pt;}
.y123{bottom:298.106667pt;}
.ye7{bottom:299.066667pt;}
.y1af{bottom:300.186667pt;}
.y23{bottom:302.120000pt;}
.y70{bottom:303.546667pt;}
.y115{bottom:305.626667pt;}
.y146{bottom:306.906667pt;}
.yf9{bottom:307.226667pt;}
.yba{bottom:307.706667pt;}
.y92{bottom:313.946667pt;}
.y122{bottom:314.106667pt;}
.y1ae{bottom:314.746667pt;}
.y175{bottom:317.146667pt;}
.y22{bottom:317.480000pt;}
.y6f{bottom:320.346667pt;}
.y114{bottom:321.786667pt;}
.ye6{bottom:323.226667pt;}
.y91{bottom:330.106667pt;}
.y121{bottom:330.266667pt;}
.yf8{bottom:331.226667pt;}
.y21{bottom:332.840000pt;}
.y174{bottom:333.306667pt;}
.y6e{bottom:337.306667pt;}
.y113{bottom:337.946667pt;}
.y145{bottom:343.226667pt;}
.yb8{bottom:343.866667pt;}
.y120{bottom:346.266667pt;}
.ye5{bottom:347.386667pt;}
.y1ad{bottom:347.866667pt;}
.y20{bottom:348.200000pt;}
.y173{bottom:349.466667pt;}
.yf7{bottom:352.346667pt;}
.y112{bottom:353.946667pt;}
.y90{bottom:354.266667pt;}
.y6d{bottom:357.946667pt;}
.y11f{bottom:362.466667pt;}
.y1f{bottom:363.586667pt;}
.y172{bottom:365.666667pt;}
.ye4{bottom:371.426667pt;}
.y6c{bottom:374.946667pt;}
.y111{bottom:377.986667pt;}
.y1e{bottom:378.946667pt;}
.y8f{bottom:379.106667pt;}
.y144{bottom:379.426667pt;}
.yb7{bottom:380.066667pt;}
.y1ac{bottom:381.026667pt;}
.y171{bottom:381.666667pt;}
.y11e{bottom:386.626667pt;}
.y6b{bottom:391.906667pt;}
.y1d{bottom:392.066667pt;}
.y110{bottom:394.146667pt;}
.y8e{bottom:395.266667pt;}
.ye3{bottom:395.586667pt;}
.y170{bottom:397.826667pt;}
.y6a{bottom:408.706667pt;}
.y10f{bottom:410.306667pt;}
.y8d{bottom:411.266667pt;}
.y11d{bottom:411.426667pt;}
.y16f{bottom:413.986667pt;}
.y1ab{bottom:414.146667pt;}
.y143{bottom:415.586667pt;}
.yb6{bottom:416.226667pt;}
.ye2{bottom:419.746667pt;}
.y69{bottom:425.666667pt;}
.y10e{bottom:426.466667pt;}
.y8c{bottom:427.426667pt;}
.y1aa{bottom:428.706667pt;}
.y16e{bottom:429.986667pt;}
.y11c{bottom:435.586667pt;}
.y68{bottom:442.466667pt;}
.y1a9{bottom:443.266667pt;}
.y8b{bottom:443.426667pt;}
.ye1{bottom:443.746667pt;}
.y16d{bottom:446.146667pt;}
.yb5{bottom:452.386667pt;}
.y10d{bottom:458.626667pt;}
.y67{bottom:459.266667pt;}
.y1a8{bottom:461.826667pt;}
.y16c{bottom:462.146667pt;}
.y8a{bottom:467.586667pt;}
.ye0{bottom:467.906667pt;}
.y158{bottom:469.186667pt;}
.y10c{bottom:474.786667pt;}
.y142{bottom:475.266667pt;}
.y66{bottom:476.226667pt;}
.y1a7{bottom:476.386667pt;}
.y16b{bottom:478.306667pt;}
.y157{bottom:485.346667pt;}
.yb4{bottom:488.706667pt;}
.y10b{bottom:490.786667pt;}
.ydf{bottom:491.906667pt;}
.y89{bottom:492.386667pt;}
.y65{bottom:493.026667pt;}
.y16a{bottom:494.466667pt;}
.y1a6{bottom:494.946667pt;}
.y141{bottom:499.266667pt;}
.y156{bottom:501.506667pt;}
.y88{bottom:508.546667pt;}
.y1a5{bottom:509.506667pt;}
.y64{bottom:509.986667pt;}
.y169{bottom:510.466667pt;}
.y10a{bottom:514.786667pt;}
.y140{bottom:515.426667pt;}
.yde{bottom:516.066667pt;}
.y155{bottom:517.666667pt;}
.y14{bottom:520.706667pt;}
.y87{bottom:524.706667pt;}
.yb3{bottom:524.866667pt;}
.y63{bottom:526.786667pt;}
.y1a4{bottom:528.066667pt;}
.y109{bottom:530.946667pt;}
.y13f{bottom:531.586667pt;}
.y154{bottom:533.666667pt;}
.y168{bottom:534.626667pt;}
.ydd{bottom:540.226667pt;}
.y86{bottom:540.706667pt;}
.y1a3{bottom:542.626667pt;}
.y62{bottom:543.586667pt;}
.y108{bottom:547.106667pt;}
.y13e{bottom:547.586667pt;}
.y153{bottom:549.826667pt;}
.ydc{bottom:556.386667pt;}
.y85{bottom:556.866667pt;}
.y167{bottom:559.426667pt;}
.y61{bottom:560.546667pt;}
.yb2{bottom:561.026667pt;}
.y1a2{bottom:561.186667pt;}
.y107{bottom:563.266667pt;}
.y13d{bottom:563.746667pt;}
.y152{bottom:565.826667pt;}
.ydb{bottom:572.386667pt;}
.y84{bottom:572.866667pt;}
.y166{bottom:575.586667pt;}
.y1a1{bottom:575.746667pt;}
.y60{bottom:577.346667pt;}
.y106{bottom:579.266667pt;}
.y13c{bottom:579.906667pt;}
.y151{bottom:582.013333pt;}
.yda{bottom:588.573333pt;}
.y83{bottom:589.053333pt;}
.y1a0{bottom:590.333333pt;}
.y165{bottom:591.773333pt;}
.y105{bottom:595.453333pt;}
.y13b{bottom:595.933333pt;}
.yb1{bottom:597.213333pt;}
.y5f{bottom:598.173333pt;}
.yd9{bottom:604.573333pt;}
.y164{bottom:607.773333pt;}
.y19f{bottom:608.893333pt;}
.y104{bottom:611.453333pt;}
.y13a{bottom:612.093333pt;}
.y82{bottom:613.053333pt;}
.y150{bottom:614.173333pt;}
.y5e{bottom:615.133333pt;}
.y12{bottom:620.093333pt;}
.yd8{bottom:620.733333pt;}
.y19e{bottom:623.453333pt;}
.y163{bottom:623.933333pt;}
.y103{bottom:627.613333pt;}
.y139{bottom:628.253333pt;}
.y14f{bottom:630.333333pt;}
.y5d{bottom:631.933333pt;}
.yb0{bottom:633.533333pt;}
.y81{bottom:634.173333pt;}
.yd7{bottom:636.893333pt;}
.y162{bottom:639.933333pt;}
.y19d{bottom:642.013333pt;}
.y138{bottom:644.253333pt;}
.y14e{bottom:646.493333pt;}
.y5c{bottom:648.893333pt;}
.y102{bottom:651.773333pt;}
.yd6{bottom:652.893333pt;}
.y161{bottom:656.093333pt;}
.y19c{bottom:656.573333pt;}
.y11b{bottom:658.493333pt;}
.y11{bottom:659.453333pt;}
.y5b{bottom:665.693333pt;}
.y137{bottom:668.413333pt;}
.yd5{bottom:669.053333pt;}
.yaf{bottom:669.693333pt;}
.y14d{bottom:670.653333pt;}
.y19b{bottom:671.133333pt;}
.y160{bottom:672.253333pt;}
.y10{bottom:674.813333pt;}
.y101{bottom:676.573333pt;}
.y11a{bottom:679.613333pt;}
.y5a{bottom:682.653333pt;}
.yd4{bottom:685.213333pt;}
.y15f{bottom:688.253333pt;}
.y19a{bottom:689.693333pt;}
.yf{bottom:690.173333pt;}
.y136{bottom:693.373333pt;}
.y14c{bottom:695.293333pt;}
.y100{bottom:697.693333pt;}
.y59{bottom:699.453333pt;}
.y199{bottom:704.253333pt;}
.y15e{bottom:704.413333pt;}
.ye{bottom:705.693333pt;}
.yae{bottom:705.853333pt;}
.yd3{bottom:709.373333pt;}
.y58{bottom:716.413333pt;}
.y135{bottom:718.653333pt;}
.y198{bottom:718.813333pt;}
.y15d{bottom:720.413333pt;}
.yd{bottom:721.693333pt;}
.y57{bottom:733.213333pt;}
.yd2{bottom:734.013333pt;}
.y197{bottom:737.533333pt;}
.yab{bottom:742.013333pt;}
.yc{bottom:742.493333pt;}
.y15c{bottom:744.573333pt;}
.y56{bottom:750.013333pt;}
.yd1{bottom:750.173333pt;}
.y196{bottom:752.093333pt;}
.yb{bottom:754.013333pt;}
.y134{bottom:754.973333pt;}
.y15b{bottom:765.533333pt;}
.y17b{bottom:765.760000pt;}
.yd0{bottom:766.333333pt;}
.y195{bottom:766.653333pt;}
.y55{bottom:766.973333pt;}
.ya{bottom:774.653333pt;}
.y133{bottom:774.973333pt;}
.ya8{bottom:778.333333pt;}
.ycf{bottom:782.333333pt;}
.y54{bottom:783.773333pt;}
.y194{bottom:785.213333pt;}
.y9{bottom:786.653333pt;}
.yf6{bottom:790.493333pt;}
.yce{bottom:798.493333pt;}
.y193{bottom:799.773333pt;}
.y53{bottom:800.773333pt;}
.y8{bottom:805.093333pt;}
.yf5{bottom:806.693333pt;}
.y132{bottom:811.333333pt;}
.ycd{bottom:814.693333pt;}
.ya6{bottom:815.173333pt;}
.y52{bottom:817.573333pt;}
.y192{bottom:818.373333pt;}
.yf4{bottom:822.693333pt;}
.ycc{bottom:830.693333pt;}
.y191{bottom:832.933333pt;}
.y51{bottom:834.373333pt;}
.ya5{bottom:837.893333pt;}
.yf3{bottom:838.853333pt;}
.y7{bottom:839.493333pt;}
.ycb{bottom:846.853333pt;}
.y131{bottom:847.493333pt;}
.y190{bottom:851.493333pt;}
.yf2{bottom:855.013333pt;}
.y50{bottom:855.173333pt;}
.y6{bottom:857.893333pt;}
.y80{bottom:861.253333pt;}
.ya4{bottom:862.053333pt;}
.y18f{bottom:866.053333pt;}
.yca{bottom:870.853333pt;}
.yf1{bottom:871.013333pt;}
.y4f{bottom:872.133333pt;}
.y7f{bottom:877.413333pt;}
.ya3{bottom:878.213333pt;}
.y18e{bottom:880.613333pt;}
.y130{bottom:883.653333pt;}
.yf0{bottom:887.173333pt;}
.y4e{bottom:889.093333pt;}
.y5{bottom:892.293333pt;}
.y7e{bottom:893.573333pt;}
.ya2{bottom:894.213333pt;}
.yc9{bottom:895.013333pt;}
.y18d{bottom:899.173333pt;}
.y12f{bottom:904.453333pt;}
.y4d{bottom:905.893333pt;}
.y7d{bottom:909.573333pt;}
.ya1{bottom:910.373333pt;}
.yc8{bottom:911.173333pt;}
.y18c{bottom:913.733333pt;}
.y4c{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y7c{bottom:925.733333pt;}
.ya0{bottom:926.533333pt;}
.yc7{bottom:927.173333pt;}
.y18b{bottom:928.293333pt;}
.y1be{bottom:931.973333pt;}
.y12e{bottom:935.173333pt;}
.yef{bottom:935.333333pt;}
.y4b{bottom:939.653333pt;}
.y7b{bottom:941.733333pt;}
.y9f{bottom:942.533333pt;}
.yc6{bottom:943.333333pt;}
.y1bd{bottom:946.533333pt;}
.y18a{bottom:946.853333pt;}
.y4a{bottom:956.453333pt;}
.y7a{bottom:957.893333pt;}
.y9e{bottom:958.693333pt;}
.yee{bottom:959.333333pt;}
.yc5{bottom:959.493333pt;}
.y1bc{bottom:961.093333pt;}
.y189{bottom:961.413333pt;}
.y49{bottom:973.413333pt;}
.y12d{bottom:975.493333pt;}
.y188{bottom:975.973333pt;}
.y1bb{bottom:979.653333pt;}
.y79{bottom:982.053333pt;}
.y9d{bottom:982.853333pt;}
.yc4{bottom:983.493333pt;}
.y48{bottom:990.213333pt;}
.y12c{bottom:991.493333pt;}
.y1ba{bottom:994.213333pt;}
.y78{bottom:1006.853333pt;}
.y47{bottom:1007.013333pt;}
.y9c{bottom:1007.493333pt;}
.y12b{bottom:1007.653333pt;}
.y1b9{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y46{bottom:1039.520000pt;}
.y45{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y44{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h18{height:16.000000pt;}
.h12{height:16.160000pt;}
.h15{height:32.160000pt;}
.h13{height:32.192000pt;}
.h14{height:32.320000pt;}
.h19{height:32.352000pt;}
.h9{height:35.840000pt;}
.h5{height:36.715000pt;}
.h1d{height:49.621875pt;}
.h1e{height:50.955000pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h8{height:53.535000pt;}
.h17{height:55.247500pt;}
.h6{height:55.275000pt;}
.h16{height:56.760000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h1c{height:62.184375pt;}
.h10{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1b{height:67.837500pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h11{height:136.303125pt;}
.h1a{height:254.880000pt;}
.hf{height:296.666667pt;}
.he{height:395.906667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w10{width:36.320000pt;}
.w9{width:93.920000pt;}
.wd{width:112.000000pt;}
.w6{width:143.520000pt;}
.wa{width:147.546667pt;}
.w7{width:157.946667pt;}
.wc{width:169.626667pt;}
.wb{width:180.986667pt;}
.we{width:196.826667pt;}
.w3{width:211.546667pt;}
.wf{width:246.786667pt;}
.w8{width:292.546667pt;}
.w5{width:361.666667pt;}
.w11{width:610.880000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:0.960000pt;}
.x7{left:7.200000pt;}
.x2d{left:32.864000pt;}
.x2b{left:40.573333pt;}
.x2a{left:49.213333pt;}
.x2c{left:68.226667pt;}
.x5{left:96.031988pt;}
.x11{left:98.112000pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xc{left:142.746655pt;}
.xa{left:164.666667pt;}
.x25{left:176.986655pt;}
.x1a{left:177.946655pt;}
.x1c{left:179.066655pt;}
.x1d{left:193.946667pt;}
.x29{left:195.866655pt;}
.x21{left:212.026667pt;}
.xf{left:224.346655pt;}
.x19{left:235.546655pt;}
.x13{left:243.546667pt;}
.x10{left:246.746655pt;}
.x17{left:247.746655pt;}
.x2e{left:252.093333pt;}
.x1b{left:256.226655pt;}
.x27{left:258.786655pt;}
.x20{left:266.786655pt;}
.x3{left:279.426655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x1e{left:343.586667pt;}
.x14{left:403.586667pt;}
.x22{left:410.946667pt;}
.x24{left:516.413322pt;}
.x2f{left:517.826667pt;}
.x15{left:522.493322pt;}
.x1f{left:526.493333pt;}
.x16{left:538.493322pt;}
.x26{left:627.013322pt;}
.xe{left:648.453322pt;}
.x23{left:659.813333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x18{left:687.493322pt;}
.x4{left:694.533322pt;}
.x28{left:707.013322pt;}
}




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