
    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_a6348eafac73adfc93b0dcb8.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_b184e6188fc8f29b03418d27.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_f5c21ec2e44423df7ded51ad.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e51e7f1d2383f95dd7789dbc.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_04c6317f35342ccd62c545ab.woff2')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_704548de1890c1ec414c96ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6e1ec153d7b6f719ef8d6e97.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d410ad1bdb392103ff0b6a2a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9b45edea813a73621aeb003c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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:ffa;src:url('chunks/assets/font_65581fede2035dc437643e8c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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:ffb;src:url('chunks/assets/font_1b47c24771a98b8f33e34931.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls13{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.208200px;}
.lsc{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.ls2{letter-spacing:3.780000px;}
.ls1a{letter-spacing:4.500000px;}
.ls12{letter-spacing:6.426720px;}
.ls1b{letter-spacing:11.466720px;}
.ls14{letter-spacing:13.626720px;}
.ls15{letter-spacing:15.066720px;}
.ls11{letter-spacing:22.986720px;}
.ls16{letter-spacing:26.586720px;}
.ls3{letter-spacing:30.186720px;}
.ls1c{letter-spacing:41.706720px;}
.lse{letter-spacing:154.170720px;}
.ls10{letter-spacing:163.530720px;}
.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:-16.254600px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.274000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-688.104720px;}
._e{margin-left:-659.954160px;}
._18{margin-left:-628.740000px;}
._a{margin-left:-571.401360px;}
._25{margin-left:-556.020000px;}
._19{margin-left:-546.040800px;}
._15{margin-left:-538.679640px;}
._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.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._26{margin-left:-122.500800px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._24{margin-left:-3.462480px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._1d{width:4.151280px;}
._1f{width:5.308800px;}
._20{width:6.681120px;}
._23{width:8.220960px;}
._1e{width:9.800640px;}
._27{width:10.945440px;}
._22{width:12.990240px;}
._21{width:16.493760px;}
._29{width:20.299680px;}
._2a{width:21.462720px;}
._28{width:78.285600px;}
.fc2{color:rgb(0,32,96);}
.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;}
.yf9{bottom:3.240000px;}
.y94{bottom:3.420000px;}
.y106{bottom:3.450000px;}
.ycb{bottom:3.600000px;}
.y98{bottom:3.780000px;}
.ybf{bottom:3.825000px;}
.y96{bottom:3.960000px;}
.y130{bottom:4.680000px;}
.y133{bottom:4.860000px;}
.y76{bottom:5.760000px;}
.yeb{bottom:5.790000px;}
.y78{bottom:6.120000px;}
.yef{bottom:6.300000px;}
.ya8{bottom:12.060000px;}
.yaa{bottom:12.420000px;}
.ya9{bottom:20.700000px;}
.yab{bottom:21.060000px;}
.y6{bottom:60.660000px;}
.y35{bottom:86.400000px;}
.y9f{bottom:86.760000px;}
.y6c{bottom:94.860000px;}
.y124{bottom:96.120000px;}
.ye8{bottom:98.820000px;}
.yb8{bottom:105.840000px;}
.y34{bottom:106.380000px;}
.y9e{bottom:106.560000px;}
.y6b{bottom:114.660000px;}
.y123{bottom:115.920000px;}
.ye7{bottom:118.980000px;}
.yb7{bottom:125.640000px;}
.y33{bottom:126.180000px;}
.y9d{bottom:126.540000px;}
.y157{bottom:126.720000px;}
.y6a{bottom:134.640000px;}
.y122{bottom:135.360000px;}
.ye6{bottom:138.960000px;}
.yb6{bottom:145.440000px;}
.y32{bottom:145.980000px;}
.y156{bottom:146.700000px;}
.y121{bottom:150.120000px;}
.y69{bottom:154.440000px;}
.ye5{bottom:158.760000px;}
.yb5{bottom:165.420000px;}
.y31{bottom:165.780000px;}
.y155{bottom:166.500000px;}
.y120{bottom:168.120000px;}
.y68{bottom:173.880000px;}
.ye4{bottom:178.560000px;}
.yb4{bottom:185.220000px;}
.y30{bottom:185.580000px;}
.y9c{bottom:185.940000px;}
.y11f{bottom:186.120000px;}
.y154{bottom:186.300000px;}
.ye3{bottom:198.000000px;}
.y67{bottom:203.070000px;}
.y11e{bottom:204.150000px;}
.yb3{bottom:205.050000px;}
.y2f{bottom:205.410000px;}
.y153{bottom:206.130000px;}
.ye2{bottom:217.830000px;}
.y11d{bottom:222.150000px;}
.y66{bottom:222.870000px;}
.yb2{bottom:224.850000px;}
.y2e{bottom:225.390000px;}
.y9b{bottom:225.750000px;}
.y152{bottom:225.930000px;}
.ye1{bottom:232.770000px;}
.y9a{bottom:240.150000px;}
.y65{bottom:242.850000px;}
.yb1{bottom:244.650000px;}
.y2d{bottom:245.190000px;}
.y11c{bottom:245.910000px;}
.ye0{bottom:253.290000px;}
.y99{bottom:258.150000px;}
.y64{bottom:262.650000px;}
.yb0{bottom:264.630000px;}
.y2c{bottom:264.990000px;}
.y151{bottom:265.710000px;}
.ydf{bottom:273.810000px;}
.y11b{bottom:275.250000px;}
.y97{bottom:276.150000px;}
.y63{bottom:282.090000px;}
.yaf{bottom:284.430000px;}
.y2b{bottom:284.790000px;}
.y150{bottom:285.510000px;}
.y95{bottom:294.150000px;}
.yde{bottom:294.510000px;}
.y11a{bottom:295.050000px;}
.y62{bottom:302.250000px;}
.yae{bottom:304.230000px;}
.y2a{bottom:304.590000px;}
.y14f{bottom:305.310000px;}
.y93{bottom:312.510000px;}
.y119{bottom:314.850000px;}
.ydd{bottom:315.030000px;}
.y61{bottom:322.050000px;}
.yad{bottom:322.770000px;}
.y29{bottom:324.570000px;}
.y14e{bottom:325.110000px;}
.y118{bottom:334.650000px;}
.y92{bottom:336.270000px;}
.ydc{bottom:338.970000px;}
.y60{bottom:341.670000px;}
.y28{bottom:344.370000px;}
.y14d{bottom:345.090000px;}
.y117{bottom:354.450000px;}
.y91{bottom:356.250000px;}
.y5f{bottom:361.830000px;}
.yac{bottom:363.270000px;}
.y27{bottom:364.170000px;}
.y14c{bottom:364.890000px;}
.y116{bottom:369.030000px;}
.ydb{bottom:375.870000px;}
.y90{bottom:376.410000px;}
.y5e{bottom:381.630000px;}
.y26{bottom:383.970000px;}
.y14b{bottom:384.690000px;}
.y115{bottom:387.030000px;}
.yda{bottom:396.030000px;}
.y8f{bottom:396.210000px;}
.y5d{bottom:401.430000px;}
.y25{bottom:403.770000px;}
.y14a{bottom:404.490000px;}
.y114{bottom:405.030000px;}
.y8e{bottom:415.650000px;}
.yd9{bottom:416.010000px;}
.y5c{bottom:421.230000px;}
.y113{bottom:423.030000px;}
.y24{bottom:423.750000px;}
.y149{bottom:424.290000px;}
.y8d{bottom:435.810000px;}
.y112{bottom:441.075000px;}
.y5b{bottom:441.255000px;}
.y23{bottom:443.595000px;}
.ya7{bottom:444.315000px;}
.yd8{bottom:455.295000px;}
.y8c{bottom:455.835000px;}
.y5a{bottom:461.055000px;}
.y22{bottom:463.395000px;}
.y148{bottom:464.115000px;}
.y111{bottom:464.835000px;}
.yd7{bottom:470.055000px;}
.y8b{bottom:475.635000px;}
.y59{bottom:480.855000px;}
.y21{bottom:482.835000px;}
.y147{bottom:483.915000px;}
.y110{bottom:484.635000px;}
.yd6{bottom:488.055000px;}
.ya6{bottom:489.855000px;}
.y8a{bottom:495.075000px;}
.y58{bottom:500.655000px;}
.y20{bottom:502.995000px;}
.y146{bottom:503.715000px;}
.y10f{bottom:504.795000px;}
.yd5{bottom:506.055000px;}
.ya5{bottom:509.655000px;}
.y89{bottom:515.235000px;}
.y57{bottom:520.095000px;}
.y145{bottom:523.155000px;}
.yd4{bottom:524.055000px;}
.y10e{bottom:524.595000px;}
.y1f{bottom:525.135000px;}
.ya4{bottom:529.455000px;}
.y88{bottom:534.675000px;}
.yd3{bottom:542.055000px;}
.y144{bottom:543.135000px;}
.y10d{bottom:544.575000px;}
.y56{bottom:549.435000px;}
.y1e{bottom:553.935000px;}
.y87{bottom:555.015000px;}
.y143{bottom:563.295000px;}
.y10c{bottom:564.375000px;}
.yd2{bottom:565.815000px;}
.y55{bottom:569.235000px;}
.y1d{bottom:573.915000px;}
.y86{bottom:574.815000px;}
.y142{bottom:583.095000px;}
.y10b{bottom:583.815000px;}
.yd1{bottom:586.155000px;}
.ya3{bottom:588.675000px;}
.y54{bottom:589.035000px;}
.y1c{bottom:593.715000px;}
.y85{bottom:594.615000px;}
.y10a{bottom:598.575000px;}
.y141{bottom:602.895000px;}
.yd0{bottom:605.955000px;}
.y53{bottom:608.835000px;}
.y1b{bottom:613.515000px;}
.y84{bottom:614.415000px;}
.y109{bottom:616.575000px;}
.y140{bottom:622.695000px;}
.ycf{bottom:625.755000px;}
.y52{bottom:628.635000px;}
.y1a{bottom:633.315000px;}
.y83{bottom:634.215000px;}
.y108{bottom:634.575000px;}
.y13f{bottom:642.675000px;}
.yce{bottom:645.555000px;}
.y51{bottom:648.615000px;}
.y107{bottom:652.575000px;}
.y19{bottom:653.115000px;}
.y82{bottom:654.195000px;}
.y13e{bottom:662.475000px;}
.ycd{bottom:665.355000px;}
.y50{bottom:668.415000px;}
.y105{bottom:670.575000px;}
.y18{bottom:673.125000px;}
.y81{bottom:674.025000px;}
.ycc{bottom:679.965000px;}
.y13d{bottom:682.305000px;}
.y4f{bottom:688.245000px;}
.y17{bottom:692.925000px;}
.y80{bottom:693.825000px;}
.y104{bottom:694.365000px;}
.yca{bottom:697.965000px;}
.y13c{bottom:701.745000px;}
.y4e{bottom:708.045000px;}
.y16{bottom:712.725000px;}
.y7f{bottom:713.625000px;}
.y103{bottom:714.165000px;}
.yc9{bottom:715.785000px;}
.y13b{bottom:721.905000px;}
.y4d{bottom:727.845000px;}
.y15{bottom:732.525000px;}
.y7e{bottom:733.065000px;}
.yc8{bottom:733.785000px;}
.y102{bottom:734.505000px;}
.y13a{bottom:736.485000px;}
.y4c{bottom:747.825000px;}
.yc7{bottom:751.785000px;}
.y14{bottom:752.325000px;}
.y7d{bottom:753.405000px;}
.y101{bottom:754.305000px;}
.y139{bottom:756.465000px;}
.y4b{bottom:767.625000px;}
.y7c{bottom:767.805000px;}
.y13{bottom:772.305000px;}
.y100{bottom:774.105000px;}
.yc6{bottom:775.725000px;}
.y138{bottom:776.445000px;}
.y4a{bottom:787.425000px;}
.y7b{bottom:788.325000px;}
.y12{bottom:792.105000px;}
.yff{bottom:793.905000px;}
.yc5{bottom:795.885000px;}
.y137{bottom:796.425000px;}
.y49{bottom:807.225000px;}
.y7a{bottom:809.025000px;}
.y11{bottom:811.905000px;}
.yfe{bottom:813.705000px;}
.yc4{bottom:815.685000px;}
.y136{bottom:816.585000px;}
.ya2{bottom:826.665000px;}
.y48{bottom:827.025000px;}
.yfd{bottom:828.285000px;}
.y79{bottom:829.545000px;}
.y10{bottom:831.705000px;}
.yc3{bottom:835.485000px;}
.y135{bottom:836.565000px;}
.yfc{bottom:846.285000px;}
.y47{bottom:847.005000px;}
.y77{bottom:850.065000px;}
.yf{bottom:851.505000px;}
.yc2{bottom:855.285000px;}
.y134{bottom:856.545000px;}
.yfb{bottom:864.285000px;}
.y46{bottom:866.805000px;}
.y75{bottom:870.765000px;}
.ye{bottom:871.485000px;}
.yc1{bottom:875.265000px;}
.y132{bottom:876.525000px;}
.yfa{bottom:882.285000px;}
.y45{bottom:886.605000px;}
.yc0{bottom:889.665000px;}
.yd{bottom:891.285000px;}
.y131{bottom:896.685000px;}
.y74{bottom:897.045000px;}
.yf8{bottom:900.285000px;}
.y44{bottom:906.405000px;}
.ybe{bottom:907.665000px;}
.yc{bottom:913.290000px;}
.y12f{bottom:916.710000px;}
.y73{bottom:917.250000px;}
.yf7{bottom:924.090000px;}
.ybd{bottom:925.710000px;}
.y43{bottom:926.250000px;}
.yb{bottom:933.270000px;}
.y12e{bottom:936.690000px;}
.y72{bottom:937.230000px;}
.ybc{bottom:943.710000px;}
.yf6{bottom:944.250000px;}
.y42{bottom:946.230000px;}
.ya{bottom:953.430000px;}
.y12d{bottom:954.690000px;}
.y71{bottom:957.030000px;}
.ybb{bottom:961.710000px;}
.yf5{bottom:964.050000px;}
.y41{bottom:966.030000px;}
.y12c{bottom:972.690000px;}
.y9{bottom:974.490000px;}
.y70{bottom:976.830000px;}
.yf4{bottom:983.850000px;}
.yba{bottom:985.470000px;}
.y40{bottom:985.830000px;}
.y12b{bottom:990.690000px;}
.y6f{bottom:996.630000px;}
.y8{bottom:997.890000px;}
.yf3{bottom:1003.830000px;}
.yb9{bottom:1005.270000px;}
.y3f{bottom:1005.630000px;}
.y12a{bottom:1008.690000px;}
.y6e{bottom:1016.070000px;}
.yf2{bottom:1023.630000px;}
.ya1{bottom:1025.070000px;}
.y3e{bottom:1025.430000px;}
.y129{bottom:1026.690000px;}
.y7{bottom:1029.750000px;}
.yf1{bottom:1043.430000px;}
.y128{bottom:1044.690000px;}
.ya0{bottom:1045.050000px;}
.y3d{bottom:1045.410000px;}
.yf0{bottom:1057.830000px;}
.y127{bottom:1062.690000px;}
.y3c{bottom:1065.210000px;}
.y5{bottom:1068.630000px;}
.yee{bottom:1078.350000px;}
.y126{bottom:1080.690000px;}
.y3b{bottom:1085.010000px;}
.yed{bottom:1099.050000px;}
.y4{bottom:1099.410000px;}
.y125{bottom:1104.450000px;}
.y3a{bottom:1104.810000px;}
.yec{bottom:1119.570000px;}
.y39{bottom:1124.610000px;}
.y3{bottom:1130.370000px;}
.yea{bottom:1140.270000px;}
.y38{bottom:1144.590000px;}
.y2{bottom:1161.180000px;}
.y6d{bottom:1164.060000px;}
.ye9{bottom:1164.240000px;}
.y37{bottom:1164.420000px;}
.y1{bottom:1192.140000px;}
.y36{bottom:1193.580000px;}
.h11{height:17.100000px;}
.h15{height:17.136000px;}
.hc{height:17.280000px;}
.h10{height:17.316000px;}
.hd{height:17.640000px;}
.h16{height:19.260000px;}
.h17{height:19.296000px;}
.hb{height:19.800000px;}
.h12{height:19.836000px;}
.h13{height:19.980000px;}
.he{height:34.560000px;}
.hf{height:34.596000px;}
.h14{height:41.726953px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h2{height:72.562500px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:35.820000px;}
.wd{width:36.900000px;}
.w11{width:60.120000px;}
.w13{width:65.376000px;}
.w14{width:66.240000px;}
.w10{width:67.896000px;}
.wc{width:70.740000px;}
.we{width:75.636000px;}
.wb{width:79.776000px;}
.wf{width:81.000000px;}
.w3{width:100.476000px;}
.w15{width:101.376000px;}
.wa{width:103.140000px;}
.w7{width:118.836000px;}
.w8{width:119.880000px;}
.w6{width:132.156000px;}
.w9{width:133.596000px;}
.w4{width:140.760000px;}
.w16{width:219.810000px;}
.w19{width:219.855000px;}
.w18{width:226.650000px;}
.w1a{width:232.950000px;}
.w17{width:233.130000px;}
.w1c{width:253.110000px;}
.w1d{width:253.335000px;}
.w5{width:288.615000px;}
.w1b{width:507.345000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.080000px;}
.x4{left:7.560000px;}
.x1{left:54.179987px;}
.xd{left:57.420000px;}
.x1c{left:67.860000px;}
.x7{left:81.540000px;}
.x19{left:106.056000px;}
.x21{left:108.035987px;}
.xf{left:140.976000px;}
.x3{left:180.930000px;}
.x1f{left:192.990000px;}
.x8{left:214.410000px;}
.x10{left:215.490000px;}
.x11{left:255.990000px;}
.x5{left:282.315000px;}
.x1d{left:288.615000px;}
.x1a{left:326.595000px;}
.x9{left:333.975000px;}
.x12{left:335.415000px;}
.x13{left:420.195000px;}
.x6{left:423.795000px;}
.x20{left:447.015000px;}
.xa{left:453.525000px;}
.x14{left:491.865000px;}
.x1e{left:522.285000px;}
.x15{left:555.765000px;}
.x1b{left:560.445000px;}
.xb{left:574.125000px;}
.x16{left:595.365000px;}
.x17{left:664.530000px;}
.xc{left:708.630000px;}
.x18{left:734.550000px;}
.x2{left:804.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.185067pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls2{letter-spacing:3.360000pt;}
.ls1a{letter-spacing:4.000000pt;}
.ls12{letter-spacing:5.712640pt;}
.ls1b{letter-spacing:10.192640pt;}
.ls14{letter-spacing:12.112640pt;}
.ls15{letter-spacing:13.392640pt;}
.ls11{letter-spacing:20.432640pt;}
.ls16{letter-spacing:23.632640pt;}
.ls3{letter-spacing:26.832640pt;}
.ls1c{letter-spacing:37.072640pt;}
.lse{letter-spacing:137.040640pt;}
.ls10{letter-spacing:145.360640pt;}
.ws0{word-spacing:-14.448533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.688000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.648640pt;}
._e{margin-left:-586.625920pt;}
._18{margin-left:-558.880000pt;}
._a{margin-left:-507.912320pt;}
._25{margin-left:-494.240000pt;}
._19{margin-left:-485.369600pt;}
._15{margin-left:-478.826347pt;}
._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:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._26{margin-left:-108.889600pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._24{margin-left:-3.077760pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._1d{width:3.690027pt;}
._1f{width:4.718933pt;}
._20{width:5.938773pt;}
._23{width:7.307520pt;}
._1e{width:8.711680pt;}
._27{width:9.729280pt;}
._22{width:11.546880pt;}
._21{width:14.661120pt;}
._29{width:18.044160pt;}
._2a{width:19.077973pt;}
._28{width:69.587200pt;}
.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;}
.yf9{bottom:2.880000pt;}
.y94{bottom:3.040000pt;}
.y106{bottom:3.066667pt;}
.ycb{bottom:3.200000pt;}
.y98{bottom:3.360000pt;}
.ybf{bottom:3.400000pt;}
.y96{bottom:3.520000pt;}
.y130{bottom:4.160000pt;}
.y133{bottom:4.320000pt;}
.y76{bottom:5.120000pt;}
.yeb{bottom:5.146667pt;}
.y78{bottom:5.440000pt;}
.yef{bottom:5.600000pt;}
.ya8{bottom:10.720000pt;}
.yaa{bottom:11.040000pt;}
.ya9{bottom:18.400000pt;}
.yab{bottom:18.720000pt;}
.y6{bottom:53.920000pt;}
.y35{bottom:76.800000pt;}
.y9f{bottom:77.120000pt;}
.y6c{bottom:84.320000pt;}
.y124{bottom:85.440000pt;}
.ye8{bottom:87.840000pt;}
.yb8{bottom:94.080000pt;}
.y34{bottom:94.560000pt;}
.y9e{bottom:94.720000pt;}
.y6b{bottom:101.920000pt;}
.y123{bottom:103.040000pt;}
.ye7{bottom:105.760000pt;}
.yb7{bottom:111.680000pt;}
.y33{bottom:112.160000pt;}
.y9d{bottom:112.480000pt;}
.y157{bottom:112.640000pt;}
.y6a{bottom:119.680000pt;}
.y122{bottom:120.320000pt;}
.ye6{bottom:123.520000pt;}
.yb6{bottom:129.280000pt;}
.y32{bottom:129.760000pt;}
.y156{bottom:130.400000pt;}
.y121{bottom:133.440000pt;}
.y69{bottom:137.280000pt;}
.ye5{bottom:141.120000pt;}
.yb5{bottom:147.040000pt;}
.y31{bottom:147.360000pt;}
.y155{bottom:148.000000pt;}
.y120{bottom:149.440000pt;}
.y68{bottom:154.560000pt;}
.ye4{bottom:158.720000pt;}
.yb4{bottom:164.640000pt;}
.y30{bottom:164.960000pt;}
.y9c{bottom:165.280000pt;}
.y11f{bottom:165.440000pt;}
.y154{bottom:165.600000pt;}
.ye3{bottom:176.000000pt;}
.y67{bottom:180.506667pt;}
.y11e{bottom:181.466667pt;}
.yb3{bottom:182.266667pt;}
.y2f{bottom:182.586667pt;}
.y153{bottom:183.226667pt;}
.ye2{bottom:193.626667pt;}
.y11d{bottom:197.466667pt;}
.y66{bottom:198.106667pt;}
.yb2{bottom:199.866667pt;}
.y2e{bottom:200.346667pt;}
.y9b{bottom:200.666667pt;}
.y152{bottom:200.826667pt;}
.ye1{bottom:206.906667pt;}
.y9a{bottom:213.466667pt;}
.y65{bottom:215.866667pt;}
.yb1{bottom:217.466667pt;}
.y2d{bottom:217.946667pt;}
.y11c{bottom:218.586667pt;}
.ye0{bottom:225.146667pt;}
.y99{bottom:229.466667pt;}
.y64{bottom:233.466667pt;}
.yb0{bottom:235.226667pt;}
.y2c{bottom:235.546667pt;}
.y151{bottom:236.186667pt;}
.ydf{bottom:243.386667pt;}
.y11b{bottom:244.666667pt;}
.y97{bottom:245.466667pt;}
.y63{bottom:250.746667pt;}
.yaf{bottom:252.826667pt;}
.y2b{bottom:253.146667pt;}
.y150{bottom:253.786667pt;}
.y95{bottom:261.466667pt;}
.yde{bottom:261.786667pt;}
.y11a{bottom:262.266667pt;}
.y62{bottom:268.666667pt;}
.yae{bottom:270.426667pt;}
.y2a{bottom:270.746667pt;}
.y14f{bottom:271.386667pt;}
.y93{bottom:277.786667pt;}
.y119{bottom:279.866667pt;}
.ydd{bottom:280.026667pt;}
.y61{bottom:286.266667pt;}
.yad{bottom:286.906667pt;}
.y29{bottom:288.506667pt;}
.y14e{bottom:288.986667pt;}
.y118{bottom:297.466667pt;}
.y92{bottom:298.906667pt;}
.ydc{bottom:301.306667pt;}
.y60{bottom:303.706667pt;}
.y28{bottom:306.106667pt;}
.y14d{bottom:306.746667pt;}
.y117{bottom:315.066667pt;}
.y91{bottom:316.666667pt;}
.y5f{bottom:321.626667pt;}
.yac{bottom:322.906667pt;}
.y27{bottom:323.706667pt;}
.y14c{bottom:324.346667pt;}
.y116{bottom:328.026667pt;}
.ydb{bottom:334.106667pt;}
.y90{bottom:334.586667pt;}
.y5e{bottom:339.226667pt;}
.y26{bottom:341.306667pt;}
.y14b{bottom:341.946667pt;}
.y115{bottom:344.026667pt;}
.yda{bottom:352.026667pt;}
.y8f{bottom:352.186667pt;}
.y5d{bottom:356.826667pt;}
.y25{bottom:358.906667pt;}
.y14a{bottom:359.546667pt;}
.y114{bottom:360.026667pt;}
.y8e{bottom:369.466667pt;}
.yd9{bottom:369.786667pt;}
.y5c{bottom:374.426667pt;}
.y113{bottom:376.026667pt;}
.y24{bottom:376.666667pt;}
.y149{bottom:377.146667pt;}
.y8d{bottom:387.386667pt;}
.y112{bottom:392.066667pt;}
.y5b{bottom:392.226667pt;}
.y23{bottom:394.306667pt;}
.ya7{bottom:394.946667pt;}
.yd8{bottom:404.706667pt;}
.y8c{bottom:405.186667pt;}
.y5a{bottom:409.826667pt;}
.y22{bottom:411.906667pt;}
.y148{bottom:412.546667pt;}
.y111{bottom:413.186667pt;}
.yd7{bottom:417.826667pt;}
.y8b{bottom:422.786667pt;}
.y59{bottom:427.426667pt;}
.y21{bottom:429.186667pt;}
.y147{bottom:430.146667pt;}
.y110{bottom:430.786667pt;}
.yd6{bottom:433.826667pt;}
.ya6{bottom:435.426667pt;}
.y8a{bottom:440.066667pt;}
.y58{bottom:445.026667pt;}
.y20{bottom:447.106667pt;}
.y146{bottom:447.746667pt;}
.y10f{bottom:448.706667pt;}
.yd5{bottom:449.826667pt;}
.ya5{bottom:453.026667pt;}
.y89{bottom:457.986667pt;}
.y57{bottom:462.306667pt;}
.y145{bottom:465.026667pt;}
.yd4{bottom:465.826667pt;}
.y10e{bottom:466.306667pt;}
.y1f{bottom:466.786667pt;}
.ya4{bottom:470.626667pt;}
.y88{bottom:475.266667pt;}
.yd3{bottom:481.826667pt;}
.y144{bottom:482.786667pt;}
.y10d{bottom:484.066667pt;}
.y56{bottom:488.386667pt;}
.y1e{bottom:492.386667pt;}
.y87{bottom:493.346667pt;}
.y143{bottom:500.706667pt;}
.y10c{bottom:501.666667pt;}
.yd2{bottom:502.946667pt;}
.y55{bottom:505.986667pt;}
.y1d{bottom:510.146667pt;}
.y86{bottom:510.946667pt;}
.y142{bottom:518.306667pt;}
.y10b{bottom:518.946667pt;}
.yd1{bottom:521.026667pt;}
.ya3{bottom:523.266667pt;}
.y54{bottom:523.586667pt;}
.y1c{bottom:527.746667pt;}
.y85{bottom:528.546667pt;}
.y10a{bottom:532.066667pt;}
.y141{bottom:535.906667pt;}
.yd0{bottom:538.626667pt;}
.y53{bottom:541.186667pt;}
.y1b{bottom:545.346667pt;}
.y84{bottom:546.146667pt;}
.y109{bottom:548.066667pt;}
.y140{bottom:553.506667pt;}
.ycf{bottom:556.226667pt;}
.y52{bottom:558.786667pt;}
.y1a{bottom:562.946667pt;}
.y83{bottom:563.746667pt;}
.y108{bottom:564.066667pt;}
.y13f{bottom:571.266667pt;}
.yce{bottom:573.826667pt;}
.y51{bottom:576.546667pt;}
.y107{bottom:580.066667pt;}
.y19{bottom:580.546667pt;}
.y82{bottom:581.506667pt;}
.y13e{bottom:588.866667pt;}
.ycd{bottom:591.426667pt;}
.y50{bottom:594.146667pt;}
.y105{bottom:596.066667pt;}
.y18{bottom:598.333333pt;}
.y81{bottom:599.133333pt;}
.ycc{bottom:604.413333pt;}
.y13d{bottom:606.493333pt;}
.y4f{bottom:611.773333pt;}
.y17{bottom:615.933333pt;}
.y80{bottom:616.733333pt;}
.y104{bottom:617.213333pt;}
.yca{bottom:620.413333pt;}
.y13c{bottom:623.773333pt;}
.y4e{bottom:629.373333pt;}
.y16{bottom:633.533333pt;}
.y7f{bottom:634.333333pt;}
.y103{bottom:634.813333pt;}
.yc9{bottom:636.253333pt;}
.y13b{bottom:641.693333pt;}
.y4d{bottom:646.973333pt;}
.y15{bottom:651.133333pt;}
.y7e{bottom:651.613333pt;}
.yc8{bottom:652.253333pt;}
.y102{bottom:652.893333pt;}
.y13a{bottom:654.653333pt;}
.y4c{bottom:664.733333pt;}
.yc7{bottom:668.253333pt;}
.y14{bottom:668.733333pt;}
.y7d{bottom:669.693333pt;}
.y101{bottom:670.493333pt;}
.y139{bottom:672.413333pt;}
.y4b{bottom:682.333333pt;}
.y7c{bottom:682.493333pt;}
.y13{bottom:686.493333pt;}
.y100{bottom:688.093333pt;}
.yc6{bottom:689.533333pt;}
.y138{bottom:690.173333pt;}
.y4a{bottom:699.933333pt;}
.y7b{bottom:700.733333pt;}
.y12{bottom:704.093333pt;}
.yff{bottom:705.693333pt;}
.yc5{bottom:707.453333pt;}
.y137{bottom:707.933333pt;}
.y49{bottom:717.533333pt;}
.y7a{bottom:719.133333pt;}
.y11{bottom:721.693333pt;}
.yfe{bottom:723.293333pt;}
.yc4{bottom:725.053333pt;}
.y136{bottom:725.853333pt;}
.ya2{bottom:734.813333pt;}
.y48{bottom:735.133333pt;}
.yfd{bottom:736.253333pt;}
.y79{bottom:737.373333pt;}
.y10{bottom:739.293333pt;}
.yc3{bottom:742.653333pt;}
.y135{bottom:743.613333pt;}
.yfc{bottom:752.253333pt;}
.y47{bottom:752.893333pt;}
.y77{bottom:755.613333pt;}
.yf{bottom:756.893333pt;}
.yc2{bottom:760.253333pt;}
.y134{bottom:761.373333pt;}
.yfb{bottom:768.253333pt;}
.y46{bottom:770.493333pt;}
.y75{bottom:774.013333pt;}
.ye{bottom:774.653333pt;}
.yc1{bottom:778.013333pt;}
.y132{bottom:779.133333pt;}
.yfa{bottom:784.253333pt;}
.y45{bottom:788.093333pt;}
.yc0{bottom:790.813333pt;}
.yd{bottom:792.253333pt;}
.y131{bottom:797.053333pt;}
.y74{bottom:797.373333pt;}
.yf8{bottom:800.253333pt;}
.y44{bottom:805.693333pt;}
.ybe{bottom:806.813333pt;}
.yc{bottom:811.813333pt;}
.y12f{bottom:814.853333pt;}
.y73{bottom:815.333333pt;}
.yf7{bottom:821.413333pt;}
.ybd{bottom:822.853333pt;}
.y43{bottom:823.333333pt;}
.yb{bottom:829.573333pt;}
.y12e{bottom:832.613333pt;}
.y72{bottom:833.093333pt;}
.ybc{bottom:838.853333pt;}
.yf6{bottom:839.333333pt;}
.y42{bottom:841.093333pt;}
.ya{bottom:847.493333pt;}
.y12d{bottom:848.613333pt;}
.y71{bottom:850.693333pt;}
.ybb{bottom:854.853333pt;}
.yf5{bottom:856.933333pt;}
.y41{bottom:858.693333pt;}
.y12c{bottom:864.613333pt;}
.y9{bottom:866.213333pt;}
.y70{bottom:868.293333pt;}
.yf4{bottom:874.533333pt;}
.yba{bottom:875.973333pt;}
.y40{bottom:876.293333pt;}
.y12b{bottom:880.613333pt;}
.y6f{bottom:885.893333pt;}
.y8{bottom:887.013333pt;}
.yf3{bottom:892.293333pt;}
.yb9{bottom:893.573333pt;}
.y3f{bottom:893.893333pt;}
.y12a{bottom:896.613333pt;}
.y6e{bottom:903.173333pt;}
.yf2{bottom:909.893333pt;}
.ya1{bottom:911.173333pt;}
.y3e{bottom:911.493333pt;}
.y129{bottom:912.613333pt;}
.y7{bottom:915.333333pt;}
.yf1{bottom:927.493333pt;}
.y128{bottom:928.613333pt;}
.ya0{bottom:928.933333pt;}
.y3d{bottom:929.253333pt;}
.yf0{bottom:940.293333pt;}
.y127{bottom:944.613333pt;}
.y3c{bottom:946.853333pt;}
.y5{bottom:949.893333pt;}
.yee{bottom:958.533333pt;}
.y126{bottom:960.613333pt;}
.y3b{bottom:964.453333pt;}
.yed{bottom:976.933333pt;}
.y4{bottom:977.253333pt;}
.y125{bottom:981.733333pt;}
.y3a{bottom:982.053333pt;}
.yec{bottom:995.173333pt;}
.y39{bottom:999.653333pt;}
.y3{bottom:1004.773333pt;}
.yea{bottom:1013.573333pt;}
.y38{bottom:1017.413333pt;}
.y2{bottom:1032.160000pt;}
.y6d{bottom:1034.720000pt;}
.ye9{bottom:1034.880000pt;}
.y37{bottom:1035.040000pt;}
.y1{bottom:1059.680000pt;}
.y36{bottom:1060.960000pt;}
.h11{height:15.200000pt;}
.h15{height:15.232000pt;}
.hc{height:15.360000pt;}
.h10{height:15.392000pt;}
.hd{height:15.680000pt;}
.h16{height:17.120000pt;}
.h17{height:17.152000pt;}
.hb{height:17.600000pt;}
.h12{height:17.632000pt;}
.h13{height:17.760000pt;}
.he{height:30.720000pt;}
.hf{height:30.752000pt;}
.h14{height:37.090625pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h2{height:64.500000pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:31.840000pt;}
.wd{width:32.800000pt;}
.w11{width:53.440000pt;}
.w13{width:58.112000pt;}
.w14{width:58.880000pt;}
.w10{width:60.352000pt;}
.wc{width:62.880000pt;}
.we{width:67.232000pt;}
.wb{width:70.912000pt;}
.wf{width:72.000000pt;}
.w3{width:89.312000pt;}
.w15{width:90.112000pt;}
.wa{width:91.680000pt;}
.w7{width:105.632000pt;}
.w8{width:106.560000pt;}
.w6{width:117.472000pt;}
.w9{width:118.752000pt;}
.w4{width:125.120000pt;}
.w16{width:195.386667pt;}
.w19{width:195.426667pt;}
.w18{width:201.466667pt;}
.w1a{width:207.066667pt;}
.w17{width:207.226667pt;}
.w1c{width:224.986667pt;}
.w1d{width:225.186667pt;}
.w5{width:256.546667pt;}
.w1b{width:450.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:0.960000pt;}
.x4{left:6.720000pt;}
.x1{left:48.159988pt;}
.xd{left:51.040000pt;}
.x1c{left:60.320000pt;}
.x7{left:72.480000pt;}
.x19{left:94.272000pt;}
.x21{left:96.031988pt;}
.xf{left:125.312000pt;}
.x3{left:160.826667pt;}
.x1f{left:171.546667pt;}
.x8{left:190.586667pt;}
.x10{left:191.546667pt;}
.x11{left:227.546667pt;}
.x5{left:250.946667pt;}
.x1d{left:256.546667pt;}
.x1a{left:290.306667pt;}
.x9{left:296.866667pt;}
.x12{left:298.146667pt;}
.x13{left:373.506667pt;}
.x6{left:376.706667pt;}
.x20{left:397.346667pt;}
.xa{left:403.133333pt;}
.x14{left:437.213333pt;}
.x1e{left:464.253333pt;}
.x15{left:494.013333pt;}
.x1b{left:498.173333pt;}
.xb{left:510.333333pt;}
.x16{left:529.213333pt;}
.x17{left:590.693333pt;}
.xc{left:629.893333pt;}
.x18{left:652.933333pt;}
.x2{left:714.853322pt;}
}




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