
    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_80325dbd68b973eb06c32b39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_5dc3c822d955701e5573c5d1.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_a2f4cafd159f1930d49584b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_d711301083de51c7b029da27.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d33612486adb666d9879085a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f07718f11c2f7ca39843785e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fab9dcf30693b9fa02bd04c5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bf18b6f82d5b7af684d6ea62.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.262200px;}
.ls8{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.460200px;}
.ls1a{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.696000px;}
.ls5{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.900000px;}
.ls11{letter-spacing:0.984000px;}
.ls0{letter-spacing:1.512000px;}
.lsf{letter-spacing:6.426720px;}
.ls18{letter-spacing:11.466720px;}
.ls19{letter-spacing:15.066720px;}
.ls15{letter-spacing:21.546720px;}
.lse{letter-spacing:22.986720px;}
.ls1e{letter-spacing:41.706720px;}
.ls16{letter-spacing:114.570720px;}
.ls1d{letter-spacing:118.170720px;}
.ls3{letter-spacing:161.370720px;}
.ls14{letter-spacing:179.226720px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.400200px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1578.070080px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._18{margin-left:-595.620000px;}
._19{margin-left:-579.160800px;}
._a{margin-left:-566.509680px;}
._15{margin-left:-538.559640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.807360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.280000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._28{margin-left:-3.773520px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._21{width:3.775920px;}
._1f{width:4.857360px;}
._22{width:6.102960px;}
._20{width:7.948080px;}
._1d{width:9.288720px;}
._1e{width:10.764480px;}
._23{width:12.788640px;}
._25{width:13.804560px;}
._24{width:15.983760px;}
._27{width:18.128640px;}
._26{width:19.362240px;}
._2c{width:38.126880px;}
._2b{width:39.322080px;}
._29{width:145.216800px;}
._2a{width:175.404000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:3.240000px;}
.y112{bottom:3.270000px;}
.yb8{bottom:3.420000px;}
.yc5{bottom:3.450000px;}
.y76{bottom:3.600000px;}
.y113{bottom:3.630000px;}
.y7f{bottom:3.780000px;}
.yc6{bottom:3.810000px;}
.y6e{bottom:5.040000px;}
.ye5{bottom:6.120000px;}
.ydf{bottom:6.480000px;}
.ydd{bottom:7.560000px;}
.ye1{bottom:7.740000px;}
.ye3{bottom:7.785000px;}
.yb6{bottom:11.880000px;}
.yf8{bottom:12.060000px;}
.yf2{bottom:12.240000px;}
.yf9{bottom:12.420000px;}
.yb7{bottom:20.520000px;}
.y75{bottom:20.880000px;}
.yf3{bottom:20.910000px;}
.y7e{bottom:21.060000px;}
.yfb{bottom:21.090000px;}
.y74{bottom:38.160000px;}
.y7d{bottom:38.340000px;}
.y73{bottom:55.440000px;}
.y6{bottom:60.660000px;}
.y72{bottom:72.720000px;}
.y71{bottom:89.820000px;}
.y7c{bottom:90.000000px;}
.yf7{bottom:93.600000px;}
.y9a{bottom:95.760000px;}
.yc2{bottom:98.100000px;}
.y6a{bottom:103.860000px;}
.y70{bottom:107.100000px;}
.y7b{bottom:107.280000px;}
.y33{bottom:108.360000px;}
.y99{bottom:115.560000px;}
.yc1{bottom:116.100000px;}
.y69{bottom:123.660000px;}
.y12e{bottom:124.200000px;}
.y7a{bottom:124.560000px;}
.y85{bottom:124.590000px;}
.y32{bottom:128.160000px;}
.yf6{bottom:128.880000px;}
.yc0{bottom:134.100000px;}
.y98{bottom:135.360000px;}
.y84{bottom:141.690000px;}
.y79{bottom:141.840000px;}
.y68{bottom:143.640000px;}
.y12d{bottom:144.000000px;}
.yf5{bottom:146.880000px;}
.y31{bottom:147.960000px;}
.ybf{bottom:152.100000px;}
.y97{bottom:155.160000px;}
.y83{bottom:158.970000px;}
.y78{bottom:158.985000px;}
.y67{bottom:163.440000px;}
.y12c{bottom:163.800000px;}
.yf4{bottom:164.880000px;}
.y30{bottom:167.760000px;}
.ybe{bottom:170.100000px;}
.y96{bottom:174.960000px;}
.y82{bottom:176.250000px;}
.yf1{bottom:182.880000px;}
.y66{bottom:183.240000px;}
.y12b{bottom:183.600000px;}
.y2f{bottom:187.560000px;}
.ybd{bottom:188.100000px;}
.y81{bottom:193.530000px;}
.y95{bottom:194.940000px;}
.y65{bottom:203.070000px;}
.y12a{bottom:203.430000px;}
.ybc{bottom:206.130000px;}
.y2e{bottom:207.570000px;}
.y94{bottom:214.770000px;}
.yef{bottom:218.190000px;}
.y64{bottom:222.870000px;}
.y129{bottom:223.410000px;}
.ybb{bottom:224.130000px;}
.y2d{bottom:227.370000px;}
.y93{bottom:234.570000px;}
.yee{bottom:241.950000px;}
.yba{bottom:242.130000px;}
.y63{bottom:242.490000px;}
.y128{bottom:243.210000px;}
.y2c{bottom:247.170000px;}
.y92{bottom:254.370000px;}
.yb9{bottom:260.130000px;}
.yed{bottom:261.750000px;}
.y127{bottom:263.010000px;}
.y2b{bottom:266.970000px;}
.y62{bottom:271.650000px;}
.y91{bottom:273.810000px;}
.yb5{bottom:278.130000px;}
.yec{bottom:281.910000px;}
.y126{bottom:282.810000px;}
.y2a{bottom:286.770000px;}
.y61{bottom:291.450000px;}
.y90{bottom:294.150000px;}
.yeb{bottom:301.710000px;}
.y125{bottom:302.610000px;}
.y29{bottom:306.750000px;}
.y60{bottom:311.250000px;}
.y8f{bottom:313.950000px;}
.yb4{bottom:319.170000px;}
.yea{bottom:321.690000px;}
.y124{bottom:322.590000px;}
.y28{bottom:326.550000px;}
.y5f{bottom:331.050000px;}
.y8e{bottom:333.750000px;}
.yb3{bottom:338.970000px;}
.ye9{bottom:341.490000px;}
.y123{bottom:342.390000px;}
.y27{bottom:346.350000px;}
.y5e{bottom:350.670000px;}
.y8d{bottom:353.550000px;}
.yb2{bottom:359.130000px;}
.ye8{bottom:361.290000px;}
.y122{bottom:362.190000px;}
.y26{bottom:366.150000px;}
.y5d{bottom:370.830000px;}
.y8c{bottom:373.350000px;}
.yb1{bottom:378.930000px;}
.ye7{bottom:381.090000px;}
.y121{bottom:381.990000px;}
.y25{bottom:385.950000px;}
.y5c{bottom:390.630000px;}
.y8b{bottom:393.330000px;}
.yb0{bottom:398.910000px;}
.ye6{bottom:400.890000px;}
.y120{bottom:401.430000px;}
.y24{bottom:405.930000px;}
.y5b{bottom:410.070000px;}
.y8a{bottom:413.130000px;}
.ye4{bottom:415.470000px;}
.yaf{bottom:418.710000px;}
.y11f{bottom:421.590000px;}
.y23{bottom:425.730000px;}
.y5a{bottom:430.230000px;}
.y89{bottom:432.570000px;}
.ye2{bottom:436.170000px;}
.yae{bottom:438.555000px;}
.y11e{bottom:441.615000px;}
.y22{bottom:445.575000px;}
.y59{bottom:450.255000px;}
.y88{bottom:452.415000px;}
.ye0{bottom:458.175000px;}
.yad{bottom:458.355000px;}
.y11d{bottom:461.415000px;}
.y21{bottom:465.375000px;}
.y58{bottom:470.055000px;}
.y87{bottom:472.575000px;}
.yac{bottom:478.155000px;}
.yde{bottom:480.135000px;}
.y11c{bottom:481.215000px;}
.y20{bottom:485.175000px;}
.y86{bottom:487.155000px;}
.y57{bottom:489.855000px;}
.yab{bottom:498.135000px;}
.ydc{bottom:501.015000px;}
.y1f{bottom:505.155000px;}
.y56{bottom:509.655000px;}
.yaa{bottom:517.575000px;}
.y11b{bottom:520.815000px;}
.ydb{bottom:522.795000px;}
.y1e{bottom:524.955000px;}
.y55{bottom:529.455000px;}
.ya9{bottom:537.375000px;}
.y11a{bottom:540.795000px;}
.y1d{bottom:544.755000px;}
.yda{bottom:546.555000px;}
.y54{bottom:549.435000px;}
.y80{bottom:556.815000px;}
.ya8{bottom:557.535000px;}
.y119{bottom:560.595000px;}
.y1c{bottom:564.555000px;}
.yd9{bottom:566.535000px;}
.y53{bottom:569.235000px;}
.ya7{bottom:576.975000px;}
.y118{bottom:580.395000px;}
.yd8{bottom:583.095000px;}
.y1b{bottom:584.355000px;}
.y52{bottom:589.035000px;}
.ya6{bottom:597.315000px;}
.y117{bottom:600.195000px;}
.y1a{bottom:604.155000px;}
.y51{bottom:608.835000px;}
.ya5{bottom:617.115000px;}
.y116{bottom:619.995000px;}
.y19{bottom:624.135000px;}
.y50{bottom:628.635000px;}
.y115{bottom:634.575000px;}
.ya4{bottom:636.915000px;}
.y18{bottom:643.575000px;}
.y4f{bottom:648.615000px;}
.y114{bottom:652.575000px;}
.ya3{bottom:656.355000px;}
.y4e{bottom:668.415000px;}
.y111{bottom:670.575000px;}
.ya2{bottom:676.545000px;}
.y17{bottom:685.905000px;}
.y4d{bottom:688.245000px;}
.y110{bottom:688.605000px;}
.ya1{bottom:696.525000px;}
.y10f{bottom:706.605000px;}
.y4c{bottom:708.045000px;}
.y16{bottom:714.705000px;}
.ya0{bottom:716.325000px;}
.y10e{bottom:724.605000px;}
.y4b{bottom:727.845000px;}
.y15{bottom:734.505000px;}
.y9f{bottom:736.125000px;}
.y4a{bottom:747.825000px;}
.y14{bottom:754.305000px;}
.y9e{bottom:755.925000px;}
.y77{bottom:764.565000px;}
.y10d{bottom:765.645000px;}
.y49{bottom:767.625000px;}
.y13{bottom:774.285000px;}
.y9d{bottom:775.365000px;}
.y10c{bottom:785.805000px;}
.y48{bottom:787.425000px;}
.y12{bottom:794.085000px;}
.y9c{bottom:795.705000px;}
.yd7{bottom:803.085000px;}
.y10b{bottom:805.605000px;}
.y47{bottom:807.225000px;}
.y9b{bottom:811.905000px;}
.y11{bottom:813.885000px;}
.yd6{bottom:822.885000px;}
.y10a{bottom:825.405000px;}
.y46{bottom:827.025000px;}
.y10{bottom:833.685000px;}
.yd5{bottom:842.685000px;}
.y109{bottom:845.205000px;}
.y45{bottom:847.005000px;}
.yf{bottom:853.485000px;}
.yd4{bottom:862.485000px;}
.y108{bottom:865.185000px;}
.y44{bottom:866.805000px;}
.ye{bottom:873.465000px;}
.yd3{bottom:882.285000px;}
.y107{bottom:884.985000px;}
.y43{bottom:886.605000px;}
.yd{bottom:893.265000px;}
.yd2{bottom:902.265000px;}
.y106{bottom:904.785000px;}
.y42{bottom:906.405000px;}
.yc{bottom:915.270000px;}
.yd1{bottom:922.110000px;}
.y105{bottom:924.630000px;}
.y41{bottom:926.250000px;}
.yb{bottom:935.250000px;}
.y6f{bottom:937.950000px;}
.yd0{bottom:941.910000px;}
.y104{bottom:944.070000px;}
.y40{bottom:946.230000px;}
.ya{bottom:954.690000px;}
.ycf{bottom:961.350000px;}
.y103{bottom:964.050000px;}
.y3f{bottom:966.030000px;}
.y9{bottom:974.490000px;}
.y3e{bottom:985.830000px;}
.yce{bottom:990.510000px;}
.y102{bottom:993.210000px;}
.y8{bottom:997.890000px;}
.y3d{bottom:1005.630000px;}
.ycd{bottom:1010.490000px;}
.y101{bottom:1013.010000px;}
.y3c{bottom:1025.430000px;}
.y7{bottom:1029.750000px;}
.ycc{bottom:1030.290000px;}
.y100{bottom:1032.810000px;}
.y3b{bottom:1045.410000px;}
.ycb{bottom:1050.090000px;}
.yff{bottom:1052.610000px;}
.y6d{bottom:1059.270000px;}
.y3a{bottom:1065.210000px;}
.y5{bottom:1068.630000px;}
.yca{bottom:1069.890000px;}
.yfe{bottom:1072.590000px;}
.y6c{bottom:1084.650000px;}
.y39{bottom:1085.010000px;}
.yc9{bottom:1089.690000px;}
.yfd{bottom:1092.390000px;}
.y4{bottom:1099.410000px;}
.y38{bottom:1104.810000px;}
.yfc{bottom:1106.790000px;}
.yc8{bottom:1109.670000px;}
.yc7{bottom:1124.070000px;}
.y37{bottom:1124.610000px;}
.yfa{bottom:1124.790000px;}
.y3{bottom:1130.370000px;}
.yc4{bottom:1142.070000px;}
.y36{bottom:1144.590000px;}
.yc3{bottom:1160.100000px;}
.y2{bottom:1161.180000px;}
.y6b{bottom:1164.060000px;}
.y35{bottom:1164.420000px;}
.y1{bottom:1192.140000px;}
.y34{bottom:1193.580000px;}
.h18{height:17.100000px;}
.h1c{height:17.136000px;}
.h12{height:17.280000px;}
.h13{height:17.316000px;}
.hb{height:18.900000px;}
.h15{height:19.980000px;}
.h14{height:21.060000px;}
.h16{height:21.240000px;}
.h17{height:21.276000px;}
.h11{height:34.380000px;}
.h19{height:34.416000px;}
.h1a{height:34.560000px;}
.h1b{height:34.596000px;}
.h9{height:43.215117px;}
.h10{height:58.621992px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h7{height:62.211094px;}
.h3{height:65.010937px;}
.h8{height:66.757500px;}
.hf{height:68.940000px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.hc{height:120.600000px;}
.hd{height:172.470000px;}
.he{height:207.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:82.980000px;}
.w14{width:84.996000px;}
.w13{width:104.940000px;}
.w12{width:104.976000px;}
.w11{width:115.380000px;}
.w6{width:118.440000px;}
.we{width:126.936000px;}
.w15{width:130.536000px;}
.w7{width:158.790000px;}
.wd{width:169.410000px;}
.wa{width:178.410000px;}
.wc{width:190.290000px;}
.w5{width:196.635000px;}
.wb{width:211.890000px;}
.w10{width:239.115000px;}
.w8{width:243.930000px;}
.w9{width:274.890000px;}
.wf{width:294.915000px;}
.w4{width:575.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:54.179987px;}
.x18{left:80.999987px;}
.x8{left:86.039987px;}
.x6{left:96.515987px;}
.xd{left:113.256000px;}
.x3{left:116.856000px;}
.x5{left:200.550000px;}
.x10{left:245.730000px;}
.x9{left:283.935000px;}
.x13{left:294.735000px;}
.xe{left:388.875000px;}
.xa{left:403.095000px;}
.x14{left:410.835000px;}
.x11{left:415.875000px;}
.xc{left:420.734987px;}
.x15{left:516.525000px;}
.x12{left:543.525000px;}
.xb{left:562.605000px;}
.xf{left:568.005000px;}
.x16{left:622.185000px;}
.x7{left:694.049987px;}
.x17{left:707.910000px;}
.x2{left:795.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.233067pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.409067pt;}
.ls1a{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.618667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.874667pt;}
.ls0{letter-spacing:1.344000pt;}
.lsf{letter-spacing:5.712640pt;}
.ls18{letter-spacing:10.192640pt;}
.ls19{letter-spacing:13.392640pt;}
.ls15{letter-spacing:19.152640pt;}
.lse{letter-spacing:20.432640pt;}
.ls1e{letter-spacing:37.072640pt;}
.ls16{letter-spacing:101.840640pt;}
.ls1d{letter-spacing:105.040640pt;}
.ls3{letter-spacing:143.440640pt;}
.ls14{letter-spacing:159.312640pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.689067pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1402.728960pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._18{margin-left:-529.440000pt;}
._19{margin-left:-514.809600pt;}
._a{margin-left:-503.564160pt;}
._15{margin-left:-478.719680pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-142.050987pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.360000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._28{margin-left:-3.354240pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._21{width:3.356373pt;}
._1f{width:4.317653pt;}
._22{width:5.424853pt;}
._20{width:7.064960pt;}
._1d{width:8.256640pt;}
._1e{width:9.568427pt;}
._23{width:11.367680pt;}
._25{width:12.270720pt;}
._24{width:14.207787pt;}
._27{width:16.114347pt;}
._26{width:17.210880pt;}
._2c{width:33.890560pt;}
._2b{width:34.952960pt;}
._29{width:129.081600pt;}
._2a{width:155.914667pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:2.880000pt;}
.y112{bottom:2.906667pt;}
.yb8{bottom:3.040000pt;}
.yc5{bottom:3.066667pt;}
.y76{bottom:3.200000pt;}
.y113{bottom:3.226667pt;}
.y7f{bottom:3.360000pt;}
.yc6{bottom:3.386667pt;}
.y6e{bottom:4.480000pt;}
.ye5{bottom:5.440000pt;}
.ydf{bottom:5.760000pt;}
.ydd{bottom:6.720000pt;}
.ye1{bottom:6.880000pt;}
.ye3{bottom:6.920000pt;}
.yb6{bottom:10.560000pt;}
.yf8{bottom:10.720000pt;}
.yf2{bottom:10.880000pt;}
.yf9{bottom:11.040000pt;}
.yb7{bottom:18.240000pt;}
.y75{bottom:18.560000pt;}
.yf3{bottom:18.586667pt;}
.y7e{bottom:18.720000pt;}
.yfb{bottom:18.746667pt;}
.y74{bottom:33.920000pt;}
.y7d{bottom:34.080000pt;}
.y73{bottom:49.280000pt;}
.y6{bottom:53.920000pt;}
.y72{bottom:64.640000pt;}
.y71{bottom:79.840000pt;}
.y7c{bottom:80.000000pt;}
.yf7{bottom:83.200000pt;}
.y9a{bottom:85.120000pt;}
.yc2{bottom:87.200000pt;}
.y6a{bottom:92.320000pt;}
.y70{bottom:95.200000pt;}
.y7b{bottom:95.360000pt;}
.y33{bottom:96.320000pt;}
.y99{bottom:102.720000pt;}
.yc1{bottom:103.200000pt;}
.y69{bottom:109.920000pt;}
.y12e{bottom:110.400000pt;}
.y7a{bottom:110.720000pt;}
.y85{bottom:110.746667pt;}
.y32{bottom:113.920000pt;}
.yf6{bottom:114.560000pt;}
.yc0{bottom:119.200000pt;}
.y98{bottom:120.320000pt;}
.y84{bottom:125.946667pt;}
.y79{bottom:126.080000pt;}
.y68{bottom:127.680000pt;}
.y12d{bottom:128.000000pt;}
.yf5{bottom:130.560000pt;}
.y31{bottom:131.520000pt;}
.ybf{bottom:135.200000pt;}
.y97{bottom:137.920000pt;}
.y83{bottom:141.306667pt;}
.y78{bottom:141.320000pt;}
.y67{bottom:145.280000pt;}
.y12c{bottom:145.600000pt;}
.yf4{bottom:146.560000pt;}
.y30{bottom:149.120000pt;}
.ybe{bottom:151.200000pt;}
.y96{bottom:155.520000pt;}
.y82{bottom:156.666667pt;}
.yf1{bottom:162.560000pt;}
.y66{bottom:162.880000pt;}
.y12b{bottom:163.200000pt;}
.y2f{bottom:166.720000pt;}
.ybd{bottom:167.200000pt;}
.y81{bottom:172.026667pt;}
.y95{bottom:173.280000pt;}
.y65{bottom:180.506667pt;}
.y12a{bottom:180.826667pt;}
.ybc{bottom:183.226667pt;}
.y2e{bottom:184.506667pt;}
.y94{bottom:190.906667pt;}
.yef{bottom:193.946667pt;}
.y64{bottom:198.106667pt;}
.y129{bottom:198.586667pt;}
.ybb{bottom:199.226667pt;}
.y2d{bottom:202.106667pt;}
.y93{bottom:208.506667pt;}
.yee{bottom:215.066667pt;}
.yba{bottom:215.226667pt;}
.y63{bottom:215.546667pt;}
.y128{bottom:216.186667pt;}
.y2c{bottom:219.706667pt;}
.y92{bottom:226.106667pt;}
.yb9{bottom:231.226667pt;}
.yed{bottom:232.666667pt;}
.y127{bottom:233.786667pt;}
.y2b{bottom:237.306667pt;}
.y62{bottom:241.466667pt;}
.y91{bottom:243.386667pt;}
.yb5{bottom:247.226667pt;}
.yec{bottom:250.586667pt;}
.y126{bottom:251.386667pt;}
.y2a{bottom:254.906667pt;}
.y61{bottom:259.066667pt;}
.y90{bottom:261.466667pt;}
.yeb{bottom:268.186667pt;}
.y125{bottom:268.986667pt;}
.y29{bottom:272.666667pt;}
.y60{bottom:276.666667pt;}
.y8f{bottom:279.066667pt;}
.yb4{bottom:283.706667pt;}
.yea{bottom:285.946667pt;}
.y124{bottom:286.746667pt;}
.y28{bottom:290.266667pt;}
.y5f{bottom:294.266667pt;}
.y8e{bottom:296.666667pt;}
.yb3{bottom:301.306667pt;}
.ye9{bottom:303.546667pt;}
.y123{bottom:304.346667pt;}
.y27{bottom:307.866667pt;}
.y5e{bottom:311.706667pt;}
.y8d{bottom:314.266667pt;}
.yb2{bottom:319.226667pt;}
.ye8{bottom:321.146667pt;}
.y122{bottom:321.946667pt;}
.y26{bottom:325.466667pt;}
.y5d{bottom:329.626667pt;}
.y8c{bottom:331.866667pt;}
.yb1{bottom:336.826667pt;}
.ye7{bottom:338.746667pt;}
.y121{bottom:339.546667pt;}
.y25{bottom:343.066667pt;}
.y5c{bottom:347.226667pt;}
.y8b{bottom:349.626667pt;}
.yb0{bottom:354.586667pt;}
.ye6{bottom:356.346667pt;}
.y120{bottom:356.826667pt;}
.y24{bottom:360.826667pt;}
.y5b{bottom:364.506667pt;}
.y8a{bottom:367.226667pt;}
.ye4{bottom:369.306667pt;}
.yaf{bottom:372.186667pt;}
.y11f{bottom:374.746667pt;}
.y23{bottom:378.426667pt;}
.y5a{bottom:382.426667pt;}
.y89{bottom:384.506667pt;}
.ye2{bottom:387.706667pt;}
.yae{bottom:389.826667pt;}
.y11e{bottom:392.546667pt;}
.y22{bottom:396.066667pt;}
.y59{bottom:400.226667pt;}
.y88{bottom:402.146667pt;}
.ye0{bottom:407.266667pt;}
.yad{bottom:407.426667pt;}
.y11d{bottom:410.146667pt;}
.y21{bottom:413.666667pt;}
.y58{bottom:417.826667pt;}
.y87{bottom:420.066667pt;}
.yac{bottom:425.026667pt;}
.yde{bottom:426.786667pt;}
.y11c{bottom:427.746667pt;}
.y20{bottom:431.266667pt;}
.y86{bottom:433.026667pt;}
.y57{bottom:435.426667pt;}
.yab{bottom:442.786667pt;}
.ydc{bottom:445.346667pt;}
.y1f{bottom:449.026667pt;}
.y56{bottom:453.026667pt;}
.yaa{bottom:460.066667pt;}
.y11b{bottom:462.946667pt;}
.ydb{bottom:464.706667pt;}
.y1e{bottom:466.626667pt;}
.y55{bottom:470.626667pt;}
.ya9{bottom:477.666667pt;}
.y11a{bottom:480.706667pt;}
.y1d{bottom:484.226667pt;}
.yda{bottom:485.826667pt;}
.y54{bottom:488.386667pt;}
.y80{bottom:494.946667pt;}
.ya8{bottom:495.586667pt;}
.y119{bottom:498.306667pt;}
.y1c{bottom:501.826667pt;}
.yd9{bottom:503.586667pt;}
.y53{bottom:505.986667pt;}
.ya7{bottom:512.866667pt;}
.y118{bottom:515.906667pt;}
.yd8{bottom:518.306667pt;}
.y1b{bottom:519.426667pt;}
.y52{bottom:523.586667pt;}
.ya6{bottom:530.946667pt;}
.y117{bottom:533.506667pt;}
.y1a{bottom:537.026667pt;}
.y51{bottom:541.186667pt;}
.ya5{bottom:548.546667pt;}
.y116{bottom:551.106667pt;}
.y19{bottom:554.786667pt;}
.y50{bottom:558.786667pt;}
.y115{bottom:564.066667pt;}
.ya4{bottom:566.146667pt;}
.y18{bottom:572.066667pt;}
.y4f{bottom:576.546667pt;}
.y114{bottom:580.066667pt;}
.ya3{bottom:583.426667pt;}
.y4e{bottom:594.146667pt;}
.y111{bottom:596.066667pt;}
.ya2{bottom:601.373333pt;}
.y17{bottom:609.693333pt;}
.y4d{bottom:611.773333pt;}
.y110{bottom:612.093333pt;}
.ya1{bottom:619.133333pt;}
.y10f{bottom:628.093333pt;}
.y4c{bottom:629.373333pt;}
.y16{bottom:635.293333pt;}
.ya0{bottom:636.733333pt;}
.y10e{bottom:644.093333pt;}
.y4b{bottom:646.973333pt;}
.y15{bottom:652.893333pt;}
.y9f{bottom:654.333333pt;}
.y4a{bottom:664.733333pt;}
.y14{bottom:670.493333pt;}
.y9e{bottom:671.933333pt;}
.y77{bottom:679.613333pt;}
.y10d{bottom:680.573333pt;}
.y49{bottom:682.333333pt;}
.y13{bottom:688.253333pt;}
.y9d{bottom:689.213333pt;}
.y10c{bottom:698.493333pt;}
.y48{bottom:699.933333pt;}
.y12{bottom:705.853333pt;}
.y9c{bottom:707.293333pt;}
.yd7{bottom:713.853333pt;}
.y10b{bottom:716.093333pt;}
.y47{bottom:717.533333pt;}
.y9b{bottom:721.693333pt;}
.y11{bottom:723.453333pt;}
.yd6{bottom:731.453333pt;}
.y10a{bottom:733.693333pt;}
.y46{bottom:735.133333pt;}
.y10{bottom:741.053333pt;}
.yd5{bottom:749.053333pt;}
.y109{bottom:751.293333pt;}
.y45{bottom:752.893333pt;}
.yf{bottom:758.653333pt;}
.yd4{bottom:766.653333pt;}
.y108{bottom:769.053333pt;}
.y44{bottom:770.493333pt;}
.ye{bottom:776.413333pt;}
.yd3{bottom:784.253333pt;}
.y107{bottom:786.653333pt;}
.y43{bottom:788.093333pt;}
.yd{bottom:794.013333pt;}
.yd2{bottom:802.013333pt;}
.y106{bottom:804.253333pt;}
.y42{bottom:805.693333pt;}
.yc{bottom:813.573333pt;}
.yd1{bottom:819.653333pt;}
.y105{bottom:821.893333pt;}
.y41{bottom:823.333333pt;}
.yb{bottom:831.333333pt;}
.y6f{bottom:833.733333pt;}
.yd0{bottom:837.253333pt;}
.y104{bottom:839.173333pt;}
.y40{bottom:841.093333pt;}
.ya{bottom:848.613333pt;}
.ycf{bottom:854.533333pt;}
.y103{bottom:856.933333pt;}
.y3f{bottom:858.693333pt;}
.y9{bottom:866.213333pt;}
.y3e{bottom:876.293333pt;}
.yce{bottom:880.453333pt;}
.y102{bottom:882.853333pt;}
.y8{bottom:887.013333pt;}
.y3d{bottom:893.893333pt;}
.ycd{bottom:898.213333pt;}
.y101{bottom:900.453333pt;}
.y3c{bottom:911.493333pt;}
.y7{bottom:915.333333pt;}
.ycc{bottom:915.813333pt;}
.y100{bottom:918.053333pt;}
.y3b{bottom:929.253333pt;}
.ycb{bottom:933.413333pt;}
.yff{bottom:935.653333pt;}
.y6d{bottom:941.573333pt;}
.y3a{bottom:946.853333pt;}
.y5{bottom:949.893333pt;}
.yca{bottom:951.013333pt;}
.yfe{bottom:953.413333pt;}
.y6c{bottom:964.133333pt;}
.y39{bottom:964.453333pt;}
.yc9{bottom:968.613333pt;}
.yfd{bottom:971.013333pt;}
.y4{bottom:977.253333pt;}
.y38{bottom:982.053333pt;}
.yfc{bottom:983.813333pt;}
.yc8{bottom:986.373333pt;}
.yc7{bottom:999.173333pt;}
.y37{bottom:999.653333pt;}
.yfa{bottom:999.813333pt;}
.y3{bottom:1004.773333pt;}
.yc4{bottom:1015.173333pt;}
.y36{bottom:1017.413333pt;}
.yc3{bottom:1031.200000pt;}
.y2{bottom:1032.160000pt;}
.y6b{bottom:1034.720000pt;}
.y35{bottom:1035.040000pt;}
.y1{bottom:1059.680000pt;}
.y34{bottom:1060.960000pt;}
.h18{height:15.200000pt;}
.h1c{height:15.232000pt;}
.h12{height:15.360000pt;}
.h13{height:15.392000pt;}
.hb{height:16.800000pt;}
.h15{height:17.760000pt;}
.h14{height:18.720000pt;}
.h16{height:18.880000pt;}
.h17{height:18.912000pt;}
.h11{height:30.560000pt;}
.h19{height:30.592000pt;}
.h1a{height:30.720000pt;}
.h1b{height:30.752000pt;}
.h9{height:38.413438pt;}
.h10{height:52.108438pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h7{height:55.298750pt;}
.h3{height:57.787500pt;}
.h8{height:59.340000pt;}
.hf{height:61.280000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.hc{height:107.200000pt;}
.hd{height:153.306667pt;}
.he{height:184.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:73.760000pt;}
.w14{width:75.552000pt;}
.w13{width:93.280000pt;}
.w12{width:93.312000pt;}
.w11{width:102.560000pt;}
.w6{width:105.280000pt;}
.we{width:112.832000pt;}
.w15{width:116.032000pt;}
.w7{width:141.146667pt;}
.wd{width:150.586667pt;}
.wa{width:158.586667pt;}
.wc{width:169.146667pt;}
.w5{width:174.786667pt;}
.wb{width:188.346667pt;}
.w10{width:212.546667pt;}
.w8{width:216.826667pt;}
.w9{width:244.346667pt;}
.wf{width:262.146667pt;}
.w4{width:511.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:48.159988pt;}
.x18{left:71.999988pt;}
.x8{left:76.479988pt;}
.x6{left:85.791988pt;}
.xd{left:100.672000pt;}
.x3{left:103.872000pt;}
.x5{left:178.266667pt;}
.x10{left:218.426667pt;}
.x9{left:252.386667pt;}
.x13{left:261.986667pt;}
.xe{left:345.666667pt;}
.xa{left:358.306667pt;}
.x14{left:365.186667pt;}
.x11{left:369.666667pt;}
.xc{left:373.986655pt;}
.x15{left:459.133333pt;}
.x12{left:483.133333pt;}
.xb{left:500.093333pt;}
.xf{left:504.893333pt;}
.x16{left:553.053333pt;}
.x7{left:616.933322pt;}
.x17{left:629.253333pt;}
.x2{left:707.333322pt;}
}




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