
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_131c62acf16e38ac1e26df50.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fd890cb81f6b04950a5a0194.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b80fcd6fb13513721125b8a2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1f37444cc639b271f2d1a48b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6a56cfb624fcf1fbcb72cd67.woff')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_51d7697c73b3f292a1678398.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1b{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.008400px;}
.ls10{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.074400px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.097800px;}
.ls11{letter-spacing:0.098400px;}
.lse{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:47.726640px;}
.ls14{letter-spacing:55.406640px;}
.ls13{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.324800px;}
.wse{word-spacing:-13.324200px;}
.ws10{word-spacing:-13.300800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.218840px;}
.ws11{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.ws0{word-spacing:-11.844000px;}
.wsf{word-spacing:-10.533600px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsd{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._14{margin-left:-4.130278px;}
._2{margin-left:-3.063601px;}
._1{margin-left:-1.167840px;}
._0{width:1.090188px;}
._5{width:2.373962px;}
._4{width:3.426600px;}
._6{width:4.449000px;}
._e{width:5.891640px;}
._9{width:7.154400px;}
._d{width:8.356199px;}
._10{width:9.396125px;}
._b{width:10.503479px;}
._a{width:11.616840px;}
._3{width:14.548800px;}
._8{width:15.691801px;}
._7{width:17.487360px;}
._c{width:18.885240px;}
._f{width:20.485800px;}
._11{width:22.124160px;}
._17{width:23.623560px;}
._12{width:24.889680px;}
._13{width:26.177760px;}
._18{width:35.530920px;}
._16{width:37.050479px;}
._15{width:38.176200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:7.830000px;}
.yac{bottom:7.860000px;}
.ya9{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y188{bottom:112.170000px;}
.y125{bottom:113.340000px;}
.y5a{bottom:120.720000px;}
.y14a{bottom:124.230000px;}
.y107{bottom:125.040000px;}
.ye6{bottom:128.010000px;}
.ya5{bottom:128.910000px;}
.y187{bottom:129.720000px;}
.y28{bottom:132.060000px;}
.y83{bottom:137.910000px;}
.y59{bottom:138.270000px;}
.ye5{bottom:142.950000px;}
.y1ae{bottom:146.280000px;}
.ya4{bottom:146.460000px;}
.y186{bottom:147.270000px;}
.y124{bottom:148.890000px;}
.y27{bottom:149.610000px;}
.y82{bottom:155.460000px;}
.y149{bottom:159.870000px;}
.y106{bottom:160.680000px;}
.y1ad{bottom:163.830000px;}
.ya3{bottom:164.100000px;}
.ye4{bottom:170.310000px;}
.y16a{bottom:171.750000px;}
.y81{bottom:173.100000px;}
.yc9{bottom:173.640000px;}
.y58{bottom:173.910000px;}
.y148{bottom:177.420000px;}
.y105{bottom:178.230000px;}
.y185{bottom:182.910000px;}
.y123{bottom:184.530000px;}
.y26{bottom:185.250000px;}
.y169{bottom:189.300000px;}
.y1ac{bottom:190.470000px;}
.ya2{bottom:190.650000px;}
.y57{bottom:191.460000px;}
.y104{bottom:195.870000px;}
.ye3{bottom:197.670000px;}
.y80{bottom:199.650000px;}
.y184{bottom:200.460000px;}
.y25{bottom:202.800000px;}
.y168{bottom:206.940000px;}
.y56{bottom:209.100000px;}
.yc8{bottom:209.280000px;}
.y147{bottom:212.970000px;}
.y103{bottom:213.420000px;}
.y1ab{bottom:217.020000px;}
.y183{bottom:218.100000px;}
.y122{bottom:220.080000px;}
.y24{bottom:220.440000px;}
.y167{bottom:224.490000px;}
.ye2{bottom:224.940000px;}
.ya1{bottom:226.560000px;}
.y55{bottom:226.650000px;}
.yc7{bottom:226.830000px;}
.y146{bottom:230.610000px;}
.y1aa{bottom:234.660000px;}
.y7f{bottom:235.200000px;}
.y182{bottom:235.650000px;}
.y23{bottom:237.990000px;}
.y54{bottom:244.200000px;}
.yc6{bottom:244.470000px;}
.y102{bottom:246.360000px;}
.y121{bottom:246.720000px;}
.y166{bottom:251.400000px;}
.ye1{bottom:252.300000px;}
.y7e{bottom:252.840000px;}
.y181{bottom:253.200000px;}
.y22{bottom:255.540000px;}
.y145{bottom:257.160000px;}
.y1a9{bottom:261.210000px;}
.y53{bottom:261.840000px;}
.y7d{bottom:270.390000px;}
.y180{bottom:270.840000px;}
.y21{bottom:273.180000px;}
.y101{bottom:273.720000px;}
.ya0{bottom:274.800000px;}
.yc5{bottom:277.410000px;}
.y1a8{bottom:278.760000px;}
.y52{bottom:279.390000px;}
.y120{bottom:282.270000px;}
.y7c{bottom:287.940000px;}
.y9f{bottom:292.440000px;}
.y144{bottom:292.800000px;}
.y165{bottom:299.730000px;}
.y11f{bottom:299.820000px;}
.ye0{bottom:300.990000px;}
.y100{bottom:301.080000px;}
.yc4{bottom:304.770000px;}
.y1a7{bottom:305.400000px;}
.y7b{bottom:305.580000px;}
.y17f{bottom:306.390000px;}
.y20{bottom:308.730000px;}
.y9e{bottom:309.990000px;}
.y51{bottom:314.940000px;}
.y164{bottom:317.280000px;}
.y11e{bottom:317.460000px;}
.y1a6{bottom:322.950000px;}
.y7a{bottom:323.130000px;}
.y17e{bottom:323.940000px;}
.y1f{bottom:326.370000px;}
.y9d{bottom:327.540000px;}
.y143{bottom:328.350000px;}
.yff{bottom:328.440000px;}
.yc3{bottom:332.040000px;}
.y50{bottom:332.580000px;}
.y163{bottom:334.830000px;}
.ydf{bottom:336.630000px;}
.y17d{bottom:341.580000px;}
.y1e{bottom:343.920000px;}
.y1a5{bottom:349.590000px;}
.y4f{bottom:350.130000px;}
.y11d{bottom:350.400000px;}
.yde{bottom:354.180000px;}
.yfe{bottom:355.710000px;}
.y79{bottom:358.770000px;}
.y17c{bottom:359.130000px;}
.yc2{bottom:359.400000px;}
.y1d{bottom:361.470000px;}
.y9c{bottom:363.180000px;}
.y142{bottom:363.900000px;}
.y4e{bottom:367.770000px;}
.y162{bottom:370.470000px;}
.ydd{bottom:371.730000px;}
.y1a4{bottom:376.140000px;}
.y78{bottom:376.320000px;}
.y17b{bottom:376.770000px;}
.y11c{bottom:377.760000px;}
.y1c{bottom:379.110000px;}
.y9b{bottom:380.730000px;}
.y4d{bottom:385.320000px;}
.yc1{bottom:386.760000px;}
.y161{bottom:388.020000px;}
.y1a3{bottom:393.690000px;}
.y77{bottom:393.870000px;}
.y17a{bottom:394.320000px;}
.y1b{bottom:396.660000px;}
.y9a{bottom:398.370000px;}
.y141{bottom:399.540000px;}
.yfd{bottom:404.400000px;}
.ydc{bottom:404.760000px;}
.y11b{bottom:405.030000px;}
.y76{bottom:411.510000px;}
.y4c{bottom:411.870000px;}
.y160{bottom:414.660000px;}
.y99{bottom:415.920000px;}
.y1a2{bottom:420.330000px;}
.y1a{bottom:423.570000px;}
.y75{bottom:429.060000px;}
.y179{bottom:429.870000px;}
.ydb{bottom:432.030000px;}
.y11a{bottom:432.390000px;}
.y98{bottom:433.470000px;}
.y140{bottom:435.090000px;}
.yc0{bottom:435.450000px;}
.yfc{bottom:440.040000px;}
.y1a1{bottom:446.880000px;}
.y4b{bottom:447.510000px;}
.y15f{bottom:450.210000px;}
.y74{bottom:455.700000px;}
.yfb{bottom:457.590000px;}
.yda{bottom:459.390000px;}
.y1a0{bottom:464.520000px;}
.y4a{bottom:465.060000px;}
.y97{bottom:469.110000px;}
.y13f{bottom:470.760000px;}
.ybf{bottom:471.030000px;}
.y19{bottom:471.840000px;}
.yfa{bottom:475.260000px;}
.y119{bottom:481.110000px;}
.y49{bottom:482.730000px;}
.y15e{bottom:485.790000px;}
.y96{bottom:486.690000px;}
.yd9{bottom:486.780000px;}
.ybe{bottom:488.670000px;}
.y18{bottom:489.750000px;}
.y19f{bottom:491.100000px;}
.y73{bottom:491.640000px;}
.yf9{bottom:492.810000px;}
.y48{bottom:500.280000px;}
.y178{bottom:500.730000px;}
.y95{bottom:504.330000px;}
.ybd{bottom:506.220000px;}
.y13e{bottom:506.310000px;}
.y118{bottom:516.750000px;}
.y19e{bottom:517.650000px;}
.y47{bottom:517.830000px;}
.y177{bottom:518.280000px;}
.yf8{bottom:519.360000px;}
.y15d{bottom:521.430000px;}
.y94{bottom:521.880000px;}
.y17{bottom:526.830000px;}
.y117{bottom:534.300000px;}
.y19d{bottom:535.290000px;}
.y46{bottom:535.470000px;}
.y176{bottom:535.830000px;}
.ybc{bottom:539.160000px;}
.y72{bottom:539.880000px;}
.y13d{bottom:541.860000px;}
.y16{bottom:544.380000px;}
.y93{bottom:548.430000px;}
.y116{bottom:551.940000px;}
.y45{bottom:553.020000px;}
.y175{bottom:553.470000px;}
.yf7{bottom:555.000000px;}
.y15c{bottom:556.980000px;}
.y71{bottom:557.430000px;}
.y19c{bottom:561.840000px;}
.y15{bottom:562.020000px;}
.ybb{bottom:566.520000px;}
.yf6{bottom:572.550000px;}
.y70{bottom:575.070000px;}
.y13c{bottom:577.500000px;}
.y19b{bottom:579.480000px;}
.y14{bottom:579.570000px;}
.y174{bottom:580.380000px;}
.y1bd{bottom:583.260000px;}
.y92{bottom:584.070000px;}
.y115{bottom:584.880000px;}
.y44{bottom:588.660000px;}
.yf5{bottom:590.190000px;}
.y6f{bottom:592.620000px;}
.yba{bottom:593.880000px;}
.y13{bottom:597.120000px;}
.yd8{bottom:597.660000px;}
.y1bc{bottom:600.810000px;}
.y91{bottom:601.620000px;}
.y19a{bottom:606.030000px;}
.y43{bottom:606.210000px;}
.y6e{bottom:610.260000px;}
.y114{bottom:612.240000px;}
.y13b{bottom:613.050000px;}
.y12{bottom:614.760000px;}
.yd7{bottom:615.210000px;}
.y90{bottom:619.260000px;}
.yb9{bottom:621.240000px;}
.yf4{bottom:623.130000px;}
.y199{bottom:623.580000px;}
.y42{bottom:623.760000px;}
.y1bb{bottom:627.360000px;}
.y6d{bottom:627.810000px;}
.y15b{bottom:628.170000px;}
.y173{bottom:628.620000px;}
.y11{bottom:632.310000px;}
.yd6{bottom:632.850000px;}
.y8f{bottom:636.810000px;}
.y113{bottom:639.510000px;}
.y41{bottom:641.400000px;}
.y1ba{bottom:645.000000px;}
.y172{bottom:646.260000px;}
.y13a{bottom:647.880000px;}
.y10{bottom:649.950000px;}
.y198{bottom:650.220000px;}
.yf3{bottom:650.490000px;}
.y8e{bottom:654.360000px;}
.y40{bottom:658.950000px;}
.y139{bottom:662.010000px;}
.y6c{bottom:663.360000px;}
.y15a{bottom:663.720000px;}
.y171{bottom:663.810000px;}
.yd5{bottom:665.790000px;}
.y112{bottom:666.870000px;}
.yb8{bottom:669.930000px;}
.y1b9{bottom:671.550000px;}
.y138{bottom:674.160000px;}
.y197{bottom:676.770000px;}
.yf{bottom:676.860000px;}
.yf2{bottom:677.760000px;}
.y6b{bottom:681.000000px;}
.y170{bottom:681.360000px;}
.y3f{bottom:685.590000px;}
.y1b8{bottom:689.190000px;}
.y8d{bottom:690.000000px;}
.yd4{bottom:693.150000px;}
.y6a{bottom:698.550000px;}
.y16f{bottom:699.000000px;}
.y159{bottom:699.360000px;}
.y137{bottom:701.520000px;}
.y196{bottom:703.410000px;}
.yf1{bottom:705.120000px;}
.yb7{bottom:705.480000px;}
.y8c{bottom:707.550000px;}
.y111{bottom:715.560000px;}
.y1b7{bottom:715.740000px;}
.y69{bottom:716.190000px;}
.y16e{bottom:716.550000px;}
.yd3{bottom:720.420000px;}
.y195{bottom:720.960000px;}
.y3e{bottom:721.500000px;}
.yb6{bottom:723.030000px;}
.ye{bottom:723.570000px;}
.y8b{bottom:725.190000px;}
.y136{bottom:728.880000px;}
.yf0{bottom:732.480000px;}
.y16d{bottom:734.190000px;}
.y158{bottom:734.910000px;}
.yb5{bottom:740.670000px;}
.y1b6{bottom:742.290000px;}
.y68{bottom:742.740000px;}
.y194{bottom:747.510000px;}
.yd2{bottom:747.780000px;}
.y110{bottom:751.200000px;}
.y135{bottom:756.150000px;}
.yd{bottom:759.390000px;}
.y8a{bottom:760.290000px;}
.y193{bottom:765.150000px;}
.y10f{bottom:768.750000px;}
.y1b5{bottom:768.930000px;}
.y3d{bottom:769.740000px;}
.y157{bottom:770.460000px;}
.yb4{bottom:773.610000px;}
.yd1{bottom:775.140000px;}
.y67{bottom:778.290000px;}
.yef{bottom:781.170000px;}
.y134{bottom:783.510000px;}
.y10e{bottom:786.300000px;}
.y3c{bottom:787.290000px;}
.y192{bottom:791.700000px;}
.yc{bottom:795.210000px;}
.y1b4{bottom:795.480000px;}
.y66{bottom:795.930000px;}
.yb3{bottom:800.970000px;}
.yd0{bottom:802.500000px;}
.y3b{bottom:804.930000px;}
.y156{bottom:806.100000px;}
.y191{bottom:809.340000px;}
.y1b3{bottom:813.030000px;}
.y65{bottom:813.480000px;}
.yee{bottom:816.720000px;}
.y10d{bottom:819.330000px;}
.y3a{bottom:822.480000px;}
.yb2{bottom:828.330000px;}
.ycf{bottom:829.770000px;}
.y64{bottom:831.030000px;}
.y133{bottom:832.110000px;}
.yed{bottom:834.360000px;}
.yb{bottom:834.540000px;}
.y190{bottom:835.890000px;}
.y1b2{bottom:839.670000px;}
.y16c{bottom:840.030000px;}
.y155{bottom:841.650000px;}
.y10c{bottom:846.600000px;}
.y89{bottom:848.670000px;}
.y132{bottom:850.650000px;}
.yec{bottom:851.910000px;}
.ya{bottom:852.090000px;}
.y18f{bottom:853.440000px;}
.yb1{bottom:855.600000px;}
.y154{bottom:856.680000px;}
.y16b{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.y88{bottom:866.220000px;}
.y63{bottom:866.670000px;}
.y131{bottom:868.200000px;}
.y9{bottom:869.730000px;}
.y10b{bottom:873.960000px;}
.y38{bottom:875.670000px;}
.yce{bottom:878.460000px;}
.y18e{bottom:880.350000px;}
.yb0{bottom:882.960000px;}
.y153{bottom:883.950000px;}
.y62{bottom:884.220000px;}
.yeb{bottom:884.850000px;}
.y130{bottom:885.750000px;}
.y8{bottom:887.280000px;}
.y87{bottom:892.860000px;}
.y37{bottom:893.220000px;}
.y10a{bottom:901.320000px;}
.y61{bottom:901.860000px;}
.y12f{bottom:904.200000px;}
.y7{bottom:904.920000px;}
.yaf{bottom:910.320000px;}
.y1b1{bottom:910.410000px;}
.y36{bottom:910.860000px;}
.y152{bottom:911.310000px;}
.yea{bottom:912.210000px;}
.ycd{bottom:914.100000px;}
.y60{bottom:919.410000px;}
.y6{bottom:922.470000px;}
.y12e{bottom:922.560000px;}
.y35{bottom:928.410000px;}
.y18d{bottom:928.680000px;}
.ycc{bottom:931.650000px;}
.y5f{bottom:936.960000px;}
.y151{bottom:938.670000px;}
.ye9{bottom:939.570000px;}
.y12d{bottom:941.010000px;}
.y34{bottom:945.960000px;}
.ycb{bottom:949.290000px;}
.y109{bottom:950.010000px;}
.y5{bottom:954.600000px;}
.y18c{bottom:955.590000px;}
.yae{bottom:959.010000px;}
.y12c{bottom:959.370000px;}
.y86{bottom:963.600000px;}
.y150{bottom:966.030000px;}
.ye8{bottom:966.930000px;}
.y4{bottom:973.950000px;}
.y108{bottom:976.560000px;}
.y85{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.yca{bottom:982.230000px;}
.y5e{bottom:990.150000px;}
.y18b{bottom:992.580000px;}
.ye7{bottom:994.200000px;}
.yad{bottom:994.560000px;}
.y12b{bottom:995.820000px;}
.y32{bottom:999.150000px;}
.y5d{bottom:1007.790000px;}
.yab{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y14f{bottom:1014.750000px;}
.y31{bottom:1016.820000px;}
.y18a{bottom:1019.520000px;}
.y5c{bottom:1025.370000px;}
.y12a{bottom:1031.490000px;}
.y14e{bottom:1032.300000px;}
.y30{bottom:1034.370000px;}
.yaa{bottom:1036.890000px;}
.y5b{bottom:1042.920000px;}
.y2f{bottom:1051.920000px;}
.y189{bottom:1056.870000px;}
.ya8{bottom:1064.250000px;}
.y129{bottom:1067.040000px;}
.y14d{bottom:1068.750000px;}
.y2e{bottom:1069.560000px;}
.y1b0{bottom:1078.560000px;}
.y84{bottom:1087.110000px;}
.ya6{bottom:1091.610000px;}
.y1af{bottom:1096.110000px;}
.y128{bottom:1102.590000px;}
.y14c{bottom:1104.300000px;}
.y2d{bottom:1105.110000px;}
.y127{bottom:1121.040000px;}
.y14b{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.y126{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:58.410000px;}
.wf{width:74.070000px;}
.w10{width:76.230000px;}
.w7{width:80.820000px;}
.w4{width:80.910000px;}
.w16{width:81.630000px;}
.w11{width:83.970000px;}
.w6{width:84.240000px;}
.w13{width:85.860000px;}
.w12{width:88.470000px;}
.wc{width:88.560000px;}
.w14{width:88.830000px;}
.w19{width:91.650000px;}
.w18{width:99.810000px;}
.w9{width:104.130000px;}
.wa{width:105.030000px;}
.w5{width:115.410000px;}
.w8{width:115.500000px;}
.wd{width:123.060000px;}
.w17{width:123.150000px;}
.wb{width:124.650000px;}
.w15{width:127.380000px;}
.we{width:137.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.xf{left:7.740000px;}
.x1{left:68.040000px;}
.x24{left:76.139987px;}
.x21{left:95.039987px;}
.x2e{left:111.239987px;}
.x2c{left:122.039987px;}
.x23{left:149.039987px;}
.x2{left:202.799987px;}
.x12{left:271.290000px;}
.xe{left:277.770000px;}
.xb{left:295.680000px;}
.x1b{left:298.110000px;}
.x1f{left:299.280000px;}
.x8{left:305.580000px;}
.x18{left:309.630000px;}
.x15{left:310.710000px;}
.x4{left:318.540000px;}
.x2b{left:346.979987px;}
.x6{left:377.670000px;}
.x1d{left:381.450000px;}
.x1c{left:382.800000px;}
.x16{left:385.500000px;}
.x19{left:386.580000px;}
.x9{left:390.630000px;}
.x22{left:394.049987px;}
.x2d{left:396.479987px;}
.xc{left:400.530000px;}
.x10{left:403.140000px;}
.x25{left:405.119987px;}
.x27{left:406.199987px;}
.x13{left:409.620000px;}
.x29{left:413.039987px;}
.x26{left:420.059987px;}
.x20{left:425.729987px;}
.x28{left:431.579987px;}
.x2a{left:442.469987px;}
.x7{left:459.300000px;}
.x17{left:467.130000px;}
.x1a{left:468.210000px;}
.x1e{left:471.000000px;}
.xa{left:472.170000px;}
.xd{left:482.160000px;}
.x11{left:492.420000px;}
.x14{left:498.900000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1b{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls10{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.066133pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.086933pt;}
.ls11{letter-spacing:0.087467pt;}
.lse{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls14{letter-spacing:49.250347pt;}
.ls13{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.843733pt;}
.ws10{word-spacing:-11.822933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.750080pt;}
.ws11{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.ws0{word-spacing:-10.528000pt;}
.wsf{word-spacing:-9.363200pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsd{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._14{margin-left:-3.671358pt;}
._2{margin-left:-2.723201pt;}
._1{margin-left:-1.038080pt;}
._0{width:0.969056pt;}
._5{width:2.110189pt;}
._4{width:3.045866pt;}
._6{width:3.954667pt;}
._e{width:5.237013pt;}
._9{width:6.359467pt;}
._d{width:7.427732pt;}
._10{width:8.352111pt;}
._b{width:9.336426pt;}
._a{width:10.326080pt;}
._3{width:12.932266pt;}
._8{width:13.948268pt;}
._7{width:15.544320pt;}
._c{width:16.786880pt;}
._f{width:18.209600pt;}
._11{width:19.665920pt;}
._17{width:20.998720pt;}
._12{width:22.124160pt;}
._13{width:23.269120pt;}
._18{width:31.583040pt;}
._16{width:32.933759pt;}
._15{width:33.934400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:6.960000pt;}
.yac{bottom:6.986667pt;}
.ya9{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y188{bottom:99.706667pt;}
.y125{bottom:100.746667pt;}
.y5a{bottom:107.306667pt;}
.y14a{bottom:110.426667pt;}
.y107{bottom:111.146667pt;}
.ye6{bottom:113.786667pt;}
.ya5{bottom:114.586667pt;}
.y187{bottom:115.306667pt;}
.y28{bottom:117.386667pt;}
.y83{bottom:122.586667pt;}
.y59{bottom:122.906667pt;}
.ye5{bottom:127.066667pt;}
.y1ae{bottom:130.026667pt;}
.ya4{bottom:130.186667pt;}
.y186{bottom:130.906667pt;}
.y124{bottom:132.346667pt;}
.y27{bottom:132.986667pt;}
.y82{bottom:138.186667pt;}
.y149{bottom:142.106667pt;}
.y106{bottom:142.826667pt;}
.y1ad{bottom:145.626667pt;}
.ya3{bottom:145.866667pt;}
.ye4{bottom:151.386667pt;}
.y16a{bottom:152.666667pt;}
.y81{bottom:153.866667pt;}
.yc9{bottom:154.346667pt;}
.y58{bottom:154.586667pt;}
.y148{bottom:157.706667pt;}
.y105{bottom:158.426667pt;}
.y185{bottom:162.586667pt;}
.y123{bottom:164.026667pt;}
.y26{bottom:164.666667pt;}
.y169{bottom:168.266667pt;}
.y1ac{bottom:169.306667pt;}
.ya2{bottom:169.466667pt;}
.y57{bottom:170.186667pt;}
.y104{bottom:174.106667pt;}
.ye3{bottom:175.706667pt;}
.y80{bottom:177.466667pt;}
.y184{bottom:178.186667pt;}
.y25{bottom:180.266667pt;}
.y168{bottom:183.946667pt;}
.y56{bottom:185.866667pt;}
.yc8{bottom:186.026667pt;}
.y147{bottom:189.306667pt;}
.y103{bottom:189.706667pt;}
.y1ab{bottom:192.906667pt;}
.y183{bottom:193.866667pt;}
.y122{bottom:195.626667pt;}
.y24{bottom:195.946667pt;}
.y167{bottom:199.546667pt;}
.ye2{bottom:199.946667pt;}
.ya1{bottom:201.386667pt;}
.y55{bottom:201.466667pt;}
.yc7{bottom:201.626667pt;}
.y146{bottom:204.986667pt;}
.y1aa{bottom:208.586667pt;}
.y7f{bottom:209.066667pt;}
.y182{bottom:209.466667pt;}
.y23{bottom:211.546667pt;}
.y54{bottom:217.066667pt;}
.yc6{bottom:217.306667pt;}
.y102{bottom:218.986667pt;}
.y121{bottom:219.306667pt;}
.y166{bottom:223.466667pt;}
.ye1{bottom:224.266667pt;}
.y7e{bottom:224.746667pt;}
.y181{bottom:225.066667pt;}
.y22{bottom:227.146667pt;}
.y145{bottom:228.586667pt;}
.y1a9{bottom:232.186667pt;}
.y53{bottom:232.746667pt;}
.y7d{bottom:240.346667pt;}
.y180{bottom:240.746667pt;}
.y21{bottom:242.826667pt;}
.y101{bottom:243.306667pt;}
.ya0{bottom:244.266667pt;}
.yc5{bottom:246.586667pt;}
.y1a8{bottom:247.786667pt;}
.y52{bottom:248.346667pt;}
.y120{bottom:250.906667pt;}
.y7c{bottom:255.946667pt;}
.y9f{bottom:259.946667pt;}
.y144{bottom:260.266667pt;}
.y165{bottom:266.426667pt;}
.y11f{bottom:266.506667pt;}
.ye0{bottom:267.546667pt;}
.y100{bottom:267.626667pt;}
.yc4{bottom:270.906667pt;}
.y1a7{bottom:271.466667pt;}
.y7b{bottom:271.626667pt;}
.y17f{bottom:272.346667pt;}
.y20{bottom:274.426667pt;}
.y9e{bottom:275.546667pt;}
.y51{bottom:279.946667pt;}
.y164{bottom:282.026667pt;}
.y11e{bottom:282.186667pt;}
.y1a6{bottom:287.066667pt;}
.y7a{bottom:287.226667pt;}
.y17e{bottom:287.946667pt;}
.y1f{bottom:290.106667pt;}
.y9d{bottom:291.146667pt;}
.y143{bottom:291.866667pt;}
.yff{bottom:291.946667pt;}
.yc3{bottom:295.146667pt;}
.y50{bottom:295.626667pt;}
.y163{bottom:297.626667pt;}
.ydf{bottom:299.226667pt;}
.y17d{bottom:303.626667pt;}
.y1e{bottom:305.706667pt;}
.y1a5{bottom:310.746667pt;}
.y4f{bottom:311.226667pt;}
.y11d{bottom:311.466667pt;}
.yde{bottom:314.826667pt;}
.yfe{bottom:316.186667pt;}
.y79{bottom:318.906667pt;}
.y17c{bottom:319.226667pt;}
.yc2{bottom:319.466667pt;}
.y1d{bottom:321.306667pt;}
.y9c{bottom:322.826667pt;}
.y142{bottom:323.466667pt;}
.y4e{bottom:326.906667pt;}
.y162{bottom:329.306667pt;}
.ydd{bottom:330.426667pt;}
.y1a4{bottom:334.346667pt;}
.y78{bottom:334.506667pt;}
.y17b{bottom:334.906667pt;}
.y11c{bottom:335.786667pt;}
.y1c{bottom:336.986667pt;}
.y9b{bottom:338.426667pt;}
.y4d{bottom:342.506667pt;}
.yc1{bottom:343.786667pt;}
.y161{bottom:344.906667pt;}
.y1a3{bottom:349.946667pt;}
.y77{bottom:350.106667pt;}
.y17a{bottom:350.506667pt;}
.y1b{bottom:352.586667pt;}
.y9a{bottom:354.106667pt;}
.y141{bottom:355.146667pt;}
.yfd{bottom:359.466667pt;}
.ydc{bottom:359.786667pt;}
.y11b{bottom:360.026667pt;}
.y76{bottom:365.786667pt;}
.y4c{bottom:366.106667pt;}
.y160{bottom:368.586667pt;}
.y99{bottom:369.706667pt;}
.y1a2{bottom:373.626667pt;}
.y1a{bottom:376.506667pt;}
.y75{bottom:381.386667pt;}
.y179{bottom:382.106667pt;}
.ydb{bottom:384.026667pt;}
.y11a{bottom:384.346667pt;}
.y98{bottom:385.306667pt;}
.y140{bottom:386.746667pt;}
.yc0{bottom:387.066667pt;}
.yfc{bottom:391.146667pt;}
.y1a1{bottom:397.226667pt;}
.y4b{bottom:397.786667pt;}
.y15f{bottom:400.186667pt;}
.y74{bottom:405.066667pt;}
.yfb{bottom:406.746667pt;}
.yda{bottom:408.346667pt;}
.y1a0{bottom:412.906667pt;}
.y4a{bottom:413.386667pt;}
.y97{bottom:416.986667pt;}
.y13f{bottom:418.453333pt;}
.ybf{bottom:418.693333pt;}
.y19{bottom:419.413333pt;}
.yfa{bottom:422.453333pt;}
.y119{bottom:427.653333pt;}
.y49{bottom:429.093333pt;}
.y15e{bottom:431.813333pt;}
.y96{bottom:432.613333pt;}
.yd9{bottom:432.693333pt;}
.ybe{bottom:434.373333pt;}
.y18{bottom:435.333333pt;}
.y19f{bottom:436.533333pt;}
.y73{bottom:437.013333pt;}
.yf9{bottom:438.053333pt;}
.y48{bottom:444.693333pt;}
.y178{bottom:445.093333pt;}
.y95{bottom:448.293333pt;}
.ybd{bottom:449.973333pt;}
.y13e{bottom:450.053333pt;}
.y118{bottom:459.333333pt;}
.y19e{bottom:460.133333pt;}
.y47{bottom:460.293333pt;}
.y177{bottom:460.693333pt;}
.yf8{bottom:461.653333pt;}
.y15d{bottom:463.493333pt;}
.y94{bottom:463.893333pt;}
.y17{bottom:468.293333pt;}
.y117{bottom:474.933333pt;}
.y19d{bottom:475.813333pt;}
.y46{bottom:475.973333pt;}
.y176{bottom:476.293333pt;}
.ybc{bottom:479.253333pt;}
.y72{bottom:479.893333pt;}
.y13d{bottom:481.653333pt;}
.y16{bottom:483.893333pt;}
.y93{bottom:487.493333pt;}
.y116{bottom:490.613333pt;}
.y45{bottom:491.573333pt;}
.y175{bottom:491.973333pt;}
.yf7{bottom:493.333333pt;}
.y15c{bottom:495.093333pt;}
.y71{bottom:495.493333pt;}
.y19c{bottom:499.413333pt;}
.y15{bottom:499.573333pt;}
.ybb{bottom:503.573333pt;}
.yf6{bottom:508.933333pt;}
.y70{bottom:511.173333pt;}
.y13c{bottom:513.333333pt;}
.y19b{bottom:515.093333pt;}
.y14{bottom:515.173333pt;}
.y174{bottom:515.893333pt;}
.y1bd{bottom:518.453333pt;}
.y92{bottom:519.173333pt;}
.y115{bottom:519.893333pt;}
.y44{bottom:523.253333pt;}
.yf5{bottom:524.613333pt;}
.y6f{bottom:526.773333pt;}
.yba{bottom:527.893333pt;}
.y13{bottom:530.773333pt;}
.yd8{bottom:531.253333pt;}
.y1bc{bottom:534.053333pt;}
.y91{bottom:534.773333pt;}
.y19a{bottom:538.693333pt;}
.y43{bottom:538.853333pt;}
.y6e{bottom:542.453333pt;}
.y114{bottom:544.213333pt;}
.y13b{bottom:544.933333pt;}
.y12{bottom:546.453333pt;}
.yd7{bottom:546.853333pt;}
.y90{bottom:550.453333pt;}
.yb9{bottom:552.213333pt;}
.yf4{bottom:553.893333pt;}
.y199{bottom:554.293333pt;}
.y42{bottom:554.453333pt;}
.y1bb{bottom:557.653333pt;}
.y6d{bottom:558.053333pt;}
.y15b{bottom:558.373333pt;}
.y173{bottom:558.773333pt;}
.y11{bottom:562.053333pt;}
.yd6{bottom:562.533333pt;}
.y8f{bottom:566.053333pt;}
.y113{bottom:568.453333pt;}
.y41{bottom:570.133333pt;}
.y1ba{bottom:573.333333pt;}
.y172{bottom:574.453333pt;}
.y13a{bottom:575.893333pt;}
.y10{bottom:577.733333pt;}
.y198{bottom:577.973333pt;}
.yf3{bottom:578.213333pt;}
.y8e{bottom:581.653333pt;}
.y40{bottom:585.733333pt;}
.y139{bottom:588.453333pt;}
.y6c{bottom:589.653333pt;}
.y15a{bottom:589.973333pt;}
.y171{bottom:590.053333pt;}
.yd5{bottom:591.813333pt;}
.y112{bottom:592.773333pt;}
.yb8{bottom:595.493333pt;}
.y1b9{bottom:596.933333pt;}
.y138{bottom:599.253333pt;}
.y197{bottom:601.573333pt;}
.yf{bottom:601.653333pt;}
.yf2{bottom:602.453333pt;}
.y6b{bottom:605.333333pt;}
.y170{bottom:605.653333pt;}
.y3f{bottom:609.413333pt;}
.y1b8{bottom:612.613333pt;}
.y8d{bottom:613.333333pt;}
.yd4{bottom:616.133333pt;}
.y6a{bottom:620.933333pt;}
.y16f{bottom:621.333333pt;}
.y159{bottom:621.653333pt;}
.y137{bottom:623.573333pt;}
.y196{bottom:625.253333pt;}
.yf1{bottom:626.773333pt;}
.yb7{bottom:627.093333pt;}
.y8c{bottom:628.933333pt;}
.y111{bottom:636.053333pt;}
.y1b7{bottom:636.213333pt;}
.y69{bottom:636.613333pt;}
.y16e{bottom:636.933333pt;}
.yd3{bottom:640.373333pt;}
.y195{bottom:640.853333pt;}
.y3e{bottom:641.333333pt;}
.yb6{bottom:642.693333pt;}
.ye{bottom:643.173333pt;}
.y8b{bottom:644.613333pt;}
.y136{bottom:647.893333pt;}
.yf0{bottom:651.093333pt;}
.y16d{bottom:652.613333pt;}
.y158{bottom:653.253333pt;}
.yb5{bottom:658.373333pt;}
.y1b6{bottom:659.813333pt;}
.y68{bottom:660.213333pt;}
.y194{bottom:664.453333pt;}
.yd2{bottom:664.693333pt;}
.y110{bottom:667.733333pt;}
.y135{bottom:672.133333pt;}
.yd{bottom:675.013333pt;}
.y8a{bottom:675.813333pt;}
.y193{bottom:680.133333pt;}
.y10f{bottom:683.333333pt;}
.y1b5{bottom:683.493333pt;}
.y3d{bottom:684.213333pt;}
.y157{bottom:684.853333pt;}
.yb4{bottom:687.653333pt;}
.yd1{bottom:689.013333pt;}
.y67{bottom:691.813333pt;}
.yef{bottom:694.373333pt;}
.y134{bottom:696.453333pt;}
.y10e{bottom:698.933333pt;}
.y3c{bottom:699.813333pt;}
.y192{bottom:703.733333pt;}
.yc{bottom:706.853333pt;}
.y1b4{bottom:707.093333pt;}
.y66{bottom:707.493333pt;}
.yb3{bottom:711.973333pt;}
.yd0{bottom:713.333333pt;}
.y3b{bottom:715.493333pt;}
.y156{bottom:716.533333pt;}
.y191{bottom:719.413333pt;}
.y1b3{bottom:722.693333pt;}
.y65{bottom:723.093333pt;}
.yee{bottom:725.973333pt;}
.y10d{bottom:728.293333pt;}
.y3a{bottom:731.093333pt;}
.yb2{bottom:736.293333pt;}
.ycf{bottom:737.573333pt;}
.y64{bottom:738.693333pt;}
.y133{bottom:739.653333pt;}
.yed{bottom:741.653333pt;}
.yb{bottom:741.813333pt;}
.y190{bottom:743.013333pt;}
.y1b2{bottom:746.373333pt;}
.y16c{bottom:746.693333pt;}
.y155{bottom:748.133333pt;}
.y10c{bottom:752.533333pt;}
.y89{bottom:754.373333pt;}
.y132{bottom:756.133333pt;}
.yec{bottom:757.253333pt;}
.ya{bottom:757.413333pt;}
.y18f{bottom:758.613333pt;}
.yb1{bottom:760.533333pt;}
.y154{bottom:761.493333pt;}
.y16b{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.y88{bottom:769.973333pt;}
.y63{bottom:770.373333pt;}
.y131{bottom:771.733333pt;}
.y9{bottom:773.093333pt;}
.y10b{bottom:776.853333pt;}
.y38{bottom:778.373333pt;}
.yce{bottom:780.853333pt;}
.y18e{bottom:782.533333pt;}
.yb0{bottom:784.853333pt;}
.y153{bottom:785.733333pt;}
.y62{bottom:785.973333pt;}
.yeb{bottom:786.533333pt;}
.y130{bottom:787.333333pt;}
.y8{bottom:788.693333pt;}
.y87{bottom:793.653333pt;}
.y37{bottom:793.973333pt;}
.y10a{bottom:801.173333pt;}
.y61{bottom:801.653333pt;}
.y12f{bottom:803.733333pt;}
.y7{bottom:804.373333pt;}
.yaf{bottom:809.173333pt;}
.y1b1{bottom:809.253333pt;}
.y36{bottom:809.653333pt;}
.y152{bottom:810.053333pt;}
.yea{bottom:810.853333pt;}
.ycd{bottom:812.533333pt;}
.y60{bottom:817.253333pt;}
.y6{bottom:819.973333pt;}
.y12e{bottom:820.053333pt;}
.y35{bottom:825.253333pt;}
.y18d{bottom:825.493333pt;}
.ycc{bottom:828.133333pt;}
.y5f{bottom:832.853333pt;}
.y151{bottom:834.373333pt;}
.ye9{bottom:835.173333pt;}
.y12d{bottom:836.453333pt;}
.y34{bottom:840.853333pt;}
.ycb{bottom:843.813333pt;}
.y109{bottom:844.453333pt;}
.y5{bottom:848.533333pt;}
.y18c{bottom:849.413333pt;}
.yae{bottom:852.453333pt;}
.y12c{bottom:852.773333pt;}
.y86{bottom:856.533333pt;}
.y150{bottom:858.693333pt;}
.ye8{bottom:859.493333pt;}
.y4{bottom:865.733333pt;}
.y108{bottom:868.053333pt;}
.y85{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.yca{bottom:873.093333pt;}
.y5e{bottom:880.133333pt;}
.y18b{bottom:882.293333pt;}
.ye7{bottom:883.733333pt;}
.yad{bottom:884.053333pt;}
.y12b{bottom:885.173333pt;}
.y32{bottom:888.133333pt;}
.y5d{bottom:895.813333pt;}
.yab{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y14f{bottom:902.000000pt;}
.y31{bottom:903.840000pt;}
.y18a{bottom:906.240000pt;}
.y5c{bottom:911.440000pt;}
.y12a{bottom:916.880000pt;}
.y14e{bottom:917.600000pt;}
.y30{bottom:919.440000pt;}
.yaa{bottom:921.680000pt;}
.y5b{bottom:927.040000pt;}
.y2f{bottom:935.040000pt;}
.y189{bottom:939.440000pt;}
.ya8{bottom:946.000000pt;}
.y129{bottom:948.480000pt;}
.y14d{bottom:950.000000pt;}
.y2e{bottom:950.720000pt;}
.y1b0{bottom:958.720000pt;}
.y84{bottom:966.320000pt;}
.ya6{bottom:970.320000pt;}
.y1af{bottom:974.320000pt;}
.y128{bottom:980.080000pt;}
.y14c{bottom:981.600000pt;}
.y2d{bottom:982.320000pt;}
.y127{bottom:996.480000pt;}
.y14b{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.y126{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806562pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:51.920000pt;}
.wf{width:65.840000pt;}
.w10{width:67.760000pt;}
.w7{width:71.840000pt;}
.w4{width:71.920000pt;}
.w16{width:72.560000pt;}
.w11{width:74.640000pt;}
.w6{width:74.880000pt;}
.w13{width:76.320000pt;}
.w12{width:78.640000pt;}
.wc{width:78.720000pt;}
.w14{width:78.960000pt;}
.w19{width:81.466667pt;}
.w18{width:88.720000pt;}
.w9{width:92.560000pt;}
.wa{width:93.360000pt;}
.w5{width:102.586667pt;}
.w8{width:102.666667pt;}
.wd{width:109.386667pt;}
.w17{width:109.466667pt;}
.wb{width:110.800000pt;}
.w15{width:113.226667pt;}
.we{width:122.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.xf{left:6.880000pt;}
.x1{left:60.480000pt;}
.x24{left:67.679988pt;}
.x21{left:84.479988pt;}
.x2e{left:98.879988pt;}
.x2c{left:108.479988pt;}
.x23{left:132.479988pt;}
.x2{left:180.266655pt;}
.x12{left:241.146667pt;}
.xe{left:246.906667pt;}
.xb{left:262.826667pt;}
.x1b{left:264.986667pt;}
.x1f{left:266.026667pt;}
.x8{left:271.626667pt;}
.x18{left:275.226667pt;}
.x15{left:276.186667pt;}
.x4{left:283.146667pt;}
.x2b{left:308.426655pt;}
.x6{left:335.706667pt;}
.x1d{left:339.066667pt;}
.x1c{left:340.266667pt;}
.x16{left:342.666667pt;}
.x19{left:343.626667pt;}
.x9{left:347.226667pt;}
.x22{left:350.266655pt;}
.x2d{left:352.426655pt;}
.xc{left:356.026667pt;}
.x10{left:358.346667pt;}
.x25{left:360.106655pt;}
.x27{left:361.066655pt;}
.x13{left:364.106667pt;}
.x29{left:367.146655pt;}
.x26{left:373.386655pt;}
.x20{left:378.426655pt;}
.x28{left:383.626655pt;}
.x2a{left:393.306655pt;}
.x7{left:408.266667pt;}
.x17{left:415.226667pt;}
.x1a{left:416.186667pt;}
.x1e{left:418.666667pt;}
.xa{left:419.706667pt;}
.xd{left:428.586667pt;}
.x11{left:437.706667pt;}
.x14{left:443.466667pt;}
.x3{left:704.053322pt;}
}




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