
    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_686d9292673b2fccce877d65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_fea99ae296adfbd94ebbc3c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_f8bde860e6344215094bc21b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_4e5f4ff2e562863c3c7bf0cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_c3109ca5b838357e260e2d46.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_94dd3511ae5ed31bcefa5a2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_91d2940021d5842b8ec82af9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.745117;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_9d14e32955629b4f017abd9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_d335a29e5cb130b335e92af3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_89062457019206cac844e296.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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);}
.m2{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,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;}
.lsa{letter-spacing:-2.466000px;}
.lse{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-1.704000px;}
.ls5{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.152400px;}
.ls4{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:59.345280px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws0{word-spacing:-20.304000px;}
.ws8{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.ws4{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.856000px;}
.wse{word-spacing:-14.400000px;}
.ws9{word-spacing:-14.094000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-6.274800px;}
._1e{margin-left:-5.216880px;}
._13{margin-left:-4.189200px;}
._8{margin-left:-3.167280px;}
._2{margin-left:-2.100960px;}
._1{margin-left:-1.056000px;}
._0{width:1.068000px;}
._d{width:2.661840px;}
._3{width:4.123440px;}
._4{width:5.206800px;}
._c{width:6.641760px;}
._17{width:8.147520px;}
._19{width:9.272160px;}
._f{width:10.278720px;}
._10{width:11.302320px;}
._18{width:12.386880px;}
._12{width:13.505760px;}
._1b{width:14.705280px;}
._14{width:18.145440px;}
._7{width:19.250400px;}
._11{width:20.378160px;}
._b{width:22.238400px;}
._5{width:23.366160px;}
._6{width:24.532320px;}
._15{width:26.562240px;}
._16{width:27.754560px;}
._1a{width:28.946880px;}
._9{width:30.955680px;}
._a{width:32.062080px;}
._1f{width:35.968320px;}
._20{width:37.605600px;}
._1d{width:41.002560px;}
._21{width:46.134960px;}
._1c{width:49.241760px;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(34,42,53);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.760000px;}
.y7{bottom:56.880000px;}
.y6{bottom:77.580000px;}
.y8{bottom:87.300000px;}
.y5{bottom:98.280000px;}
.y4{bottom:118.980000px;}
.y3{bottom:139.896000px;}
.y2{bottom:172.470000px;}
.yac{bottom:197.310000px;}
.y60{bottom:201.450000px;}
.yd6{bottom:206.310000px;}
.y120{bottom:206.490000px;}
.y146{bottom:208.290000px;}
.y8a{bottom:208.470000px;}
.y34{bottom:214.230000px;}
.yab{bottom:216.570000px;}
.y5f{bottom:220.350000px;}
.y11f{bottom:225.570000px;}
.y89{bottom:227.550000px;}
.y33{bottom:231.510000px;}
.yd5{bottom:234.210000px;}
.yaa{bottom:235.470000px;}
.yf7{bottom:238.890000px;}
.y5e{bottom:239.430000px;}
.y11e{bottom:245.730000px;}
.y145{bottom:246.450000px;}
.y32{bottom:248.790000px;}
.ya9{bottom:254.550000px;}
.y88{bottom:255.270000px;}
.yf6{bottom:258.150000px;}
.yd4{bottom:262.110000px;}
.y11d{bottom:264.630000px;}
.y144{bottom:265.530000px;}
.y31{bottom:266.070000px;}
.y5d{bottom:267.150000px;}
.y87{bottom:274.530000px;}
.yd3{bottom:281.370000px;}
.ya8{bottom:282.270000px;}
.y30{bottom:283.350000px;}
.y143{bottom:284.430000px;}
.y11c{bottom:284.790000px;}
.yf5{bottom:285.870000px;}
.y5c{bottom:286.230000px;}
.y86{bottom:293.430000px;}
.yd2{bottom:300.270000px;}
.y2f{bottom:300.450000px;}
.ya7{bottom:301.530000px;}
.y142{bottom:303.330000px;}
.y11b{bottom:303.690000px;}
.yf4{bottom:305.130000px;}
.y5b{bottom:305.310000px;}
.y85{bottom:312.330000px;}
.y2e{bottom:317.730000px;}
.ya6{bottom:320.430000px;}
.y141{bottom:322.410000px;}
.y11a{bottom:323.850000px;}
.y5a{bottom:324.210000px;}
.yd1{bottom:328.170000px;}
.yf3{bottom:332.850000px;}
.y2d{bottom:335.010000px;}
.ya5{bottom:339.330000px;}
.y84{bottom:340.230000px;}
.y140{bottom:341.310000px;}
.y59{bottom:343.290000px;}
.y119{bottom:344.010000px;}
.y2c{bottom:352.290000px;}
.yd0{bottom:356.070000px;}
.ya4{bottom:358.410000px;}
.y83{bottom:359.310000px;}
.yf2{bottom:360.750000px;}
.y118{bottom:364.170000px;}
.y13f{bottom:369.210000px;}
.y2b{bottom:369.570000px;}
.y58{bottom:371.010000px;}
.yf1{bottom:379.830000px;}
.ycf{bottom:383.970000px;}
.y117{bottom:384.330000px;}
.ya3{bottom:386.130000px;}
.y2a{bottom:386.850000px;}
.y82{bottom:387.255000px;}
.y13e{bottom:388.335000px;}
.y57{bottom:398.955000px;}
.yf0{bottom:400.215000px;}
.yce{bottom:403.275000px;}
.y29{bottom:403.995000px;}
.y116{bottom:404.535000px;}
.ya2{bottom:405.435000px;}
.y81{bottom:406.335000px;}
.y13d{bottom:407.235000px;}
.yef{bottom:419.115000px;}
.y28{bottom:421.275000px;}
.ycd{bottom:422.175000px;}
.ya1{bottom:424.335000px;}
.y80{bottom:425.235000px;}
.y13c{bottom:426.315000px;}
.y56{bottom:427.035000px;}
.y115{bottom:433.695000px;}
.y27{bottom:438.555000px;}
.yee{bottom:439.275000px;}
.ycc{bottom:441.255000px;}
.ya0{bottom:443.235000px;}
.y7f{bottom:444.315000px;}
.y13b{bottom:445.215000px;}
.y55{bottom:446.115000px;}
.y114{bottom:452.775000px;}
.y26{bottom:455.835000px;}
.yed{bottom:459.435000px;}
.ycb{bottom:460.155000px;}
.y9f{bottom:462.315000px;}
.y7e{bottom:463.215000px;}
.y13a{bottom:464.295000px;}
.y54{bottom:465.195000px;}
.y25{bottom:473.115000px;}
.yca{bottom:479.235000px;}
.yec{bottom:479.595000px;}
.y113{bottom:480.675000px;}
.y9e{bottom:481.215000px;}
.y139{bottom:483.195000px;}
.y53{bottom:484.095000px;}
.y24{bottom:490.215000px;}
.y7d{bottom:491.115000px;}
.yc9{bottom:498.135000px;}
.yeb{bottom:499.755000px;}
.y9d{bottom:500.295000px;}
.y52{bottom:502.995000px;}
.y23{bottom:507.495000px;}
.y7c{bottom:510.195000px;}
.y138{bottom:510.915000px;}
.yc8{bottom:517.035000px;}
.yea{bottom:518.655000px;}
.y9c{bottom:519.195000px;}
.y51{bottom:522.075000px;}
.y22{bottom:524.775000px;}
.y112{bottom:527.475000px;}
.y7b{bottom:529.095000px;}
.y137{bottom:530.175000px;}
.yc7{bottom:536.115000px;}
.y9b{bottom:538.095000px;}
.ye9{bottom:538.815000px;}
.y50{bottom:540.975000px;}
.y21{bottom:542.055000px;}
.y111{bottom:546.555000px;}
.y7a{bottom:548.175000px;}
.y136{bottom:549.075000px;}
.yc6{bottom:555.015000px;}
.y9a{bottom:557.175000px;}
.y20{bottom:559.335000px;}
.y4f{bottom:560.055000px;}
.y110{bottom:566.895000px;}
.y79{bottom:567.075000px;}
.ye8{bottom:567.975000px;}
.yc5{bottom:574.095000px;}
.y99{bottom:576.075000px;}
.y1f{bottom:576.615000px;}
.y135{bottom:576.975000px;}
.y10f{bottom:585.795000px;}
.ye7{bottom:587.055000px;}
.y4e{bottom:587.775000px;}
.yc4{bottom:592.995000px;}
.y1e{bottom:593.715000px;}
.y78{bottom:594.975000px;}
.y98{bottom:595.155000px;}
.y134{bottom:596.055000px;}
.y10e{bottom:605.955000px;}
.y4d{bottom:606.855000px;}
.y1d{bottom:610.995000px;}
.yc3{bottom:611.895000px;}
.y77{bottom:614.055000px;}
.ye6{bottom:614.775000px;}
.y133{bottom:614.955000px;}
.y10d{bottom:625.035000px;}
.y4c{bottom:625.935000px;}
.y1c{bottom:628.275000px;}
.yc2{bottom:630.975000px;}
.y76{bottom:632.955000px;}
.ye5{bottom:634.035000px;}
.y10c{bottom:643.965000px;}
.y4b{bottom:644.865000px;}
.y1b{bottom:645.585000px;}
.yc1{bottom:649.905000px;}
.y75{bottom:652.065000px;}
.y132{bottom:652.965000px;}
.ye4{bottom:661.785000px;}
.y1a{bottom:662.865000px;}
.y4a{bottom:663.945000px;}
.yc0{bottom:668.985000px;}
.y74{bottom:670.965000px;}
.y131{bottom:672.045000px;}
.y19{bottom:680.145000px;}
.y10b{bottom:681.765000px;}
.y49{bottom:682.845000px;}
.ybf{bottom:687.885000px;}
.ye3{bottom:689.865000px;}
.y73{bottom:690.045000px;}
.y130{bottom:690.945000px;}
.y18{bottom:697.245000px;}
.y153{bottom:698.685000px;}
.y97{bottom:698.865000px;}
.y48{bottom:701.925000px;}
.y10a{bottom:702.105000px;}
.ybe{bottom:706.785000px;}
.y72{bottom:708.945000px;}
.ye2{bottom:717.765000px;}
.y96{bottom:717.945000px;}
.y12f{bottom:718.665000px;}
.y47{bottom:720.825000px;}
.y109{bottom:721.005000px;}
.y17{bottom:722.085000px;}
.y152{bottom:726.765000px;}
.y71{bottom:727.845000px;}
.ybd{bottom:734.685000px;}
.y95{bottom:736.845000px;}
.y108{bottom:739.905000px;}
.ye1{bottom:745.665000px;}
.y151{bottom:745.845000px;}
.y16{bottom:746.385000px;}
.y12e{bottom:746.745000px;}
.y70{bottom:746.925000px;}
.y46{bottom:748.545000px;}
.ybc{bottom:753.765000px;}
.y94{bottom:755.925000px;}
.y15{bottom:764.025000px;}
.y150{bottom:764.745000px;}
.ye0{bottom:764.925000px;}
.y6f{bottom:765.825000px;}
.y45{bottom:767.805000px;}
.y107{bottom:769.065000px;}
.ybb{bottom:772.845000px;}
.y12d{bottom:774.645000px;}
.y93{bottom:774.825000px;}
.y14{bottom:782.385000px;}
.ydf{bottom:783.825000px;}
.y44{bottom:786.705000px;}
.y106{bottom:788.145000px;}
.yba{bottom:791.745000px;}
.y6e{bottom:793.725000px;}
.y12c{bottom:793.905000px;}
.y14f{bottom:795.705000px;}
.y13{bottom:800.925000px;}
.y92{bottom:802.725000px;}
.yde{bottom:802.905000px;}
.y43{bottom:805.785000px;}
.y12b{bottom:812.805000px;}
.y105{bottom:815.865000px;}
.yb9{bottom:819.465000px;}
.y6d{bottom:821.625000px;}
.y91{bottom:821.805000px;}
.y42{bottom:824.685000px;}
.y14e{bottom:826.665000px;}
.y12{bottom:830.445000px;}
.y104{bottom:835.125000px;}
.yb8{bottom:838.725000px;}
.y12a{bottom:840.705000px;}
.ydd{bottom:840.885000px;}
.y41{bottom:843.585000px;}
.y6c{bottom:849.705000px;}
.y14d{bottom:857.625000px;}
.y129{bottom:859.785000px;}
.y11{bottom:861.405000px;}
.y40{bottom:862.665000px;}
.y103{bottom:862.845000px;}
.yb7{bottom:866.445000px;}
.ydc{bottom:868.605000px;}
.y6b{bottom:877.605000px;}
.y3f{bottom:881.565000px;}
.yb6{bottom:885.705000px;}
.y128{bottom:887.505000px;}
.ydb{bottom:887.685000px;}
.y14c{bottom:888.585000px;}
.y102{bottom:890.925000px;}
.y10{bottom:892.410000px;}
.y90{bottom:896.730000px;}
.y3e{bottom:900.690000px;}
.yb5{bottom:904.650000px;}
.y6a{bottom:905.550000px;}
.y127{bottom:906.810000px;}
.y14b{bottom:907.710000px;}
.y101{bottom:910.050000px;}
.yda{bottom:915.630000px;}
.y8f{bottom:915.810000px;}
.y3d{bottom:919.590000px;}
.yf{bottom:923.550000px;}
.y69{bottom:924.810000px;}
.y14a{bottom:926.790000px;}
.y100{bottom:930.210000px;}
.yb4{bottom:932.190000px;}
.y126{bottom:934.530000px;}
.y3c{bottom:938.490000px;}
.y8e{bottom:943.530000px;}
.y68{bottom:943.710000px;}
.yff{bottom:949.110000px;}
.yb3{bottom:949.470000px;}
.y125{bottom:953.790000px;}
.ye{bottom:954.510000px;}
.y3b{bottom:957.570000px;}
.y67{bottom:962.790000px;}
.yb2{bottom:966.750000px;}
.yfe{bottom:968.010000px;}
.y124{bottom:972.690000px;}
.y149{bottom:976.650000px;}
.y66{bottom:981.690000px;}
.yb1{bottom:984.030000px;}
.y3a{bottom:985.290000px;}
.yd{bottom:985.650000px;}
.yfd{bottom:988.350000px;}
.y8d{bottom:990.510000px;}
.y123{bottom:991.590000px;}
.y65{bottom:1000.590000px;}
.yfc{bottom:1007.250000px;}
.y148{bottom:1007.430000px;}
.y8c{bottom:1009.590000px;}
.yb0{bottom:1010.490000px;}
.y39{bottom:1015.170000px;}
.yc{bottom:1016.610000px;}
.y122{bottom:1019.490000px;}
.yd9{bottom:1019.670000px;}
.yfb{bottom:1026.150000px;}
.y64{bottom:1028.490000px;}
.y8b{bottom:1028.670000px;}
.yaf{bottom:1029.570000px;}
.y38{bottom:1035.150000px;}
.y147{bottom:1038.390000px;}
.yd8{bottom:1038.570000px;}
.yfa{bottom:1046.490000px;}
.y63{bottom:1047.570000px;}
.yb{bottom:1047.750000px;}
.y37{bottom:1052.430000px;}
.yae{bottom:1057.470000px;}
.yd7{bottom:1057.650000px;}
.yf9{bottom:1065.390000px;}
.y121{bottom:1066.470000px;}
.y62{bottom:1066.650000px;}
.y36{bottom:1069.530000px;}
.ya{bottom:1081.230000px;}
.yf8{bottom:1084.290000px;}
.yad{bottom:1085.370000px;}
.y61{bottom:1085.550000px;}
.y35{bottom:1086.810000px;}
.y1{bottom:1100.850000px;}
.h6{height:24.300000px;}
.hb{height:47.961914px;}
.ha{height:53.077852px;}
.hd{height:53.428008px;}
.h9{height:53.573906px;}
.hc{height:54.069961px;}
.he{height:58.833281px;}
.h8{height:59.383125px;}
.h4{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:65.144531px;}
.h3{height:68.554688px;}
.h7{height:76.219102px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.776000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x3{left:127.655987px;}
.x1f{left:154.649987px;}
.xd{left:156.809987px;}
.xa{left:164.729987px;}
.x7{left:167.249987px;}
.x12{left:179.489987px;}
.x20{left:181.649987px;}
.x8{left:185.789987px;}
.x13{left:192.089987px;}
.x14{left:200.369987px;}
.x15{left:212.789987px;}
.x1e{left:255.269987px;}
.x16{left:288.974987px;}
.xe{left:301.754987px;}
.x17{left:316.874987px;}
.x9{left:330.374987px;}
.xb{left:332.354987px;}
.x18{left:357.914987px;}
.x19{left:370.334987px;}
.x1a{left:429.374987px;}
.x1b{left:441.824987px;}
.x1c{left:463.784987px;}
.x6{left:467.924987px;}
.x1d{left:476.384987px;}
.xc{left:589.964987px;}
.xf{left:629.249987px;}
.x4{left:755.070000px;}
.x10{left:776.669987px;}
.x11{left:792.689987px;}
.x1{left:802.799987px;}
.x2{left:808.199987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-2.192000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-1.514667pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:52.751360pt;}
.wsa{word-spacing:-58.880000pt;}
.ws0{word-spacing:-18.048000pt;}
.ws8{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.ws4{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.176000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.205333pt;}
.wse{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.528000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-5.577600pt;}
._1e{margin-left:-4.637227pt;}
._13{margin-left:-3.723733pt;}
._8{margin-left:-2.815360pt;}
._2{margin-left:-1.867520pt;}
._1{margin-left:-0.938667pt;}
._0{width:0.949333pt;}
._d{width:2.366080pt;}
._3{width:3.665280pt;}
._4{width:4.628267pt;}
._c{width:5.903787pt;}
._17{width:7.242240pt;}
._19{width:8.241920pt;}
._f{width:9.136640pt;}
._10{width:10.046507pt;}
._18{width:11.010560pt;}
._12{width:12.005120pt;}
._1b{width:13.071360pt;}
._14{width:16.129280pt;}
._7{width:17.111467pt;}
._11{width:18.113920pt;}
._b{width:19.767467pt;}
._5{width:20.769920pt;}
._6{width:21.806507pt;}
._15{width:23.610880pt;}
._16{width:24.670720pt;}
._1a{width:25.730560pt;}
._9{width:27.516160pt;}
._a{width:28.499627pt;}
._1f{width:31.971840pt;}
._20{width:33.427200pt;}
._1d{width:36.446720pt;}
._21{width:41.008853pt;}
._1c{width:43.770453pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:5.120000pt;}
.y7{bottom:50.560000pt;}
.y6{bottom:68.960000pt;}
.y8{bottom:77.600000pt;}
.y5{bottom:87.360000pt;}
.y4{bottom:105.760000pt;}
.y3{bottom:124.352000pt;}
.y2{bottom:153.306667pt;}
.yac{bottom:175.386667pt;}
.y60{bottom:179.066667pt;}
.yd6{bottom:183.386667pt;}
.y120{bottom:183.546667pt;}
.y146{bottom:185.146667pt;}
.y8a{bottom:185.306667pt;}
.y34{bottom:190.426667pt;}
.yab{bottom:192.506667pt;}
.y5f{bottom:195.866667pt;}
.y11f{bottom:200.506667pt;}
.y89{bottom:202.266667pt;}
.y33{bottom:205.786667pt;}
.yd5{bottom:208.186667pt;}
.yaa{bottom:209.306667pt;}
.yf7{bottom:212.346667pt;}
.y5e{bottom:212.826667pt;}
.y11e{bottom:218.426667pt;}
.y145{bottom:219.066667pt;}
.y32{bottom:221.146667pt;}
.ya9{bottom:226.266667pt;}
.y88{bottom:226.906667pt;}
.yf6{bottom:229.466667pt;}
.yd4{bottom:232.986667pt;}
.y11d{bottom:235.226667pt;}
.y144{bottom:236.026667pt;}
.y31{bottom:236.506667pt;}
.y5d{bottom:237.466667pt;}
.y87{bottom:244.026667pt;}
.yd3{bottom:250.106667pt;}
.ya8{bottom:250.906667pt;}
.y30{bottom:251.866667pt;}
.y143{bottom:252.826667pt;}
.y11c{bottom:253.146667pt;}
.yf5{bottom:254.106667pt;}
.y5c{bottom:254.426667pt;}
.y86{bottom:260.826667pt;}
.yd2{bottom:266.906667pt;}
.y2f{bottom:267.066667pt;}
.ya7{bottom:268.026667pt;}
.y142{bottom:269.626667pt;}
.y11b{bottom:269.946667pt;}
.yf4{bottom:271.226667pt;}
.y5b{bottom:271.386667pt;}
.y85{bottom:277.626667pt;}
.y2e{bottom:282.426667pt;}
.ya6{bottom:284.826667pt;}
.y141{bottom:286.586667pt;}
.y11a{bottom:287.866667pt;}
.y5a{bottom:288.186667pt;}
.yd1{bottom:291.706667pt;}
.yf3{bottom:295.866667pt;}
.y2d{bottom:297.786667pt;}
.ya5{bottom:301.626667pt;}
.y84{bottom:302.426667pt;}
.y140{bottom:303.386667pt;}
.y59{bottom:305.146667pt;}
.y119{bottom:305.786667pt;}
.y2c{bottom:313.146667pt;}
.yd0{bottom:316.506667pt;}
.ya4{bottom:318.586667pt;}
.y83{bottom:319.386667pt;}
.yf2{bottom:320.666667pt;}
.y118{bottom:323.706667pt;}
.y13f{bottom:328.186667pt;}
.y2b{bottom:328.506667pt;}
.y58{bottom:329.786667pt;}
.yf1{bottom:337.626667pt;}
.ycf{bottom:341.306667pt;}
.y117{bottom:341.626667pt;}
.ya3{bottom:343.226667pt;}
.y2a{bottom:343.866667pt;}
.y82{bottom:344.226667pt;}
.y13e{bottom:345.186667pt;}
.y57{bottom:354.626667pt;}
.yf0{bottom:355.746667pt;}
.yce{bottom:358.466667pt;}
.y29{bottom:359.106667pt;}
.y116{bottom:359.586667pt;}
.ya2{bottom:360.386667pt;}
.y81{bottom:361.186667pt;}
.y13d{bottom:361.986667pt;}
.yef{bottom:372.546667pt;}
.y28{bottom:374.466667pt;}
.ycd{bottom:375.266667pt;}
.ya1{bottom:377.186667pt;}
.y80{bottom:377.986667pt;}
.y13c{bottom:378.946667pt;}
.y56{bottom:379.586667pt;}
.y115{bottom:385.506667pt;}
.y27{bottom:389.826667pt;}
.yee{bottom:390.466667pt;}
.ycc{bottom:392.226667pt;}
.ya0{bottom:393.986667pt;}
.y7f{bottom:394.946667pt;}
.y13b{bottom:395.746667pt;}
.y55{bottom:396.546667pt;}
.y114{bottom:402.466667pt;}
.y26{bottom:405.186667pt;}
.yed{bottom:408.386667pt;}
.ycb{bottom:409.026667pt;}
.y9f{bottom:410.946667pt;}
.y7e{bottom:411.746667pt;}
.y13a{bottom:412.706667pt;}
.y54{bottom:413.506667pt;}
.y25{bottom:420.546667pt;}
.yca{bottom:425.986667pt;}
.yec{bottom:426.306667pt;}
.y113{bottom:427.266667pt;}
.y9e{bottom:427.746667pt;}
.y139{bottom:429.506667pt;}
.y53{bottom:430.306667pt;}
.y24{bottom:435.746667pt;}
.y7d{bottom:436.546667pt;}
.yc9{bottom:442.786667pt;}
.yeb{bottom:444.226667pt;}
.y9d{bottom:444.706667pt;}
.y52{bottom:447.106667pt;}
.y23{bottom:451.106667pt;}
.y7c{bottom:453.506667pt;}
.y138{bottom:454.146667pt;}
.yc8{bottom:459.586667pt;}
.yea{bottom:461.026667pt;}
.y9c{bottom:461.506667pt;}
.y51{bottom:464.066667pt;}
.y22{bottom:466.466667pt;}
.y112{bottom:468.866667pt;}
.y7b{bottom:470.306667pt;}
.y137{bottom:471.266667pt;}
.yc7{bottom:476.546667pt;}
.y9b{bottom:478.306667pt;}
.ye9{bottom:478.946667pt;}
.y50{bottom:480.866667pt;}
.y21{bottom:481.826667pt;}
.y111{bottom:485.826667pt;}
.y7a{bottom:487.266667pt;}
.y136{bottom:488.066667pt;}
.yc6{bottom:493.346667pt;}
.y9a{bottom:495.266667pt;}
.y20{bottom:497.186667pt;}
.y4f{bottom:497.826667pt;}
.y110{bottom:503.906667pt;}
.y79{bottom:504.066667pt;}
.ye8{bottom:504.866667pt;}
.yc5{bottom:510.306667pt;}
.y99{bottom:512.066667pt;}
.y1f{bottom:512.546667pt;}
.y135{bottom:512.866667pt;}
.y10f{bottom:520.706667pt;}
.ye7{bottom:521.826667pt;}
.y4e{bottom:522.466667pt;}
.yc4{bottom:527.106667pt;}
.y1e{bottom:527.746667pt;}
.y78{bottom:528.866667pt;}
.y98{bottom:529.026667pt;}
.y134{bottom:529.826667pt;}
.y10e{bottom:538.626667pt;}
.y4d{bottom:539.426667pt;}
.y1d{bottom:543.106667pt;}
.yc3{bottom:543.906667pt;}
.y77{bottom:545.826667pt;}
.ye6{bottom:546.466667pt;}
.y133{bottom:546.626667pt;}
.y10d{bottom:555.586667pt;}
.y4c{bottom:556.386667pt;}
.y1c{bottom:558.466667pt;}
.yc2{bottom:560.866667pt;}
.y76{bottom:562.626667pt;}
.ye5{bottom:563.586667pt;}
.y10c{bottom:572.413333pt;}
.y4b{bottom:573.213333pt;}
.y1b{bottom:573.853333pt;}
.yc1{bottom:577.693333pt;}
.y75{bottom:579.613333pt;}
.y132{bottom:580.413333pt;}
.ye4{bottom:588.253333pt;}
.y1a{bottom:589.213333pt;}
.y4a{bottom:590.173333pt;}
.yc0{bottom:594.653333pt;}
.y74{bottom:596.413333pt;}
.y131{bottom:597.373333pt;}
.y19{bottom:604.573333pt;}
.y10b{bottom:606.013333pt;}
.y49{bottom:606.973333pt;}
.ybf{bottom:611.453333pt;}
.ye3{bottom:613.213333pt;}
.y73{bottom:613.373333pt;}
.y130{bottom:614.173333pt;}
.y18{bottom:619.773333pt;}
.y153{bottom:621.053333pt;}
.y97{bottom:621.213333pt;}
.y48{bottom:623.933333pt;}
.y10a{bottom:624.093333pt;}
.ybe{bottom:628.253333pt;}
.y72{bottom:630.173333pt;}
.ye2{bottom:638.013333pt;}
.y96{bottom:638.173333pt;}
.y12f{bottom:638.813333pt;}
.y47{bottom:640.733333pt;}
.y109{bottom:640.893333pt;}
.y17{bottom:641.853333pt;}
.y152{bottom:646.013333pt;}
.y71{bottom:646.973333pt;}
.ybd{bottom:653.053333pt;}
.y95{bottom:654.973333pt;}
.y108{bottom:657.693333pt;}
.ye1{bottom:662.813333pt;}
.y151{bottom:662.973333pt;}
.y16{bottom:663.453333pt;}
.y12e{bottom:663.773333pt;}
.y70{bottom:663.933333pt;}
.y46{bottom:665.373333pt;}
.ybc{bottom:670.013333pt;}
.y94{bottom:671.933333pt;}
.y15{bottom:679.133333pt;}
.y150{bottom:679.773333pt;}
.ye0{bottom:679.933333pt;}
.y6f{bottom:680.733333pt;}
.y45{bottom:682.493333pt;}
.y107{bottom:683.613333pt;}
.ybb{bottom:686.973333pt;}
.y12d{bottom:688.573333pt;}
.y93{bottom:688.733333pt;}
.y14{bottom:695.453333pt;}
.ydf{bottom:696.733333pt;}
.y44{bottom:699.293333pt;}
.y106{bottom:700.573333pt;}
.yba{bottom:703.773333pt;}
.y6e{bottom:705.533333pt;}
.y12c{bottom:705.693333pt;}
.y14f{bottom:707.293333pt;}
.y13{bottom:711.933333pt;}
.y92{bottom:713.533333pt;}
.yde{bottom:713.693333pt;}
.y43{bottom:716.253333pt;}
.y12b{bottom:722.493333pt;}
.y105{bottom:725.213333pt;}
.yb9{bottom:728.413333pt;}
.y6d{bottom:730.333333pt;}
.y91{bottom:730.493333pt;}
.y42{bottom:733.053333pt;}
.y14e{bottom:734.813333pt;}
.y12{bottom:738.173333pt;}
.y104{bottom:742.333333pt;}
.yb8{bottom:745.533333pt;}
.y12a{bottom:747.293333pt;}
.ydd{bottom:747.453333pt;}
.y41{bottom:749.853333pt;}
.y6c{bottom:755.293333pt;}
.y14d{bottom:762.333333pt;}
.y129{bottom:764.253333pt;}
.y11{bottom:765.693333pt;}
.y40{bottom:766.813333pt;}
.y103{bottom:766.973333pt;}
.yb7{bottom:770.173333pt;}
.ydc{bottom:772.093333pt;}
.y6b{bottom:780.093333pt;}
.y3f{bottom:783.613333pt;}
.yb6{bottom:787.293333pt;}
.y128{bottom:788.893333pt;}
.ydb{bottom:789.053333pt;}
.y14c{bottom:789.853333pt;}
.y102{bottom:791.933333pt;}
.y10{bottom:793.253333pt;}
.y90{bottom:797.093333pt;}
.y3e{bottom:800.613333pt;}
.yb5{bottom:804.133333pt;}
.y6a{bottom:804.933333pt;}
.y127{bottom:806.053333pt;}
.y14b{bottom:806.853333pt;}
.y101{bottom:808.933333pt;}
.yda{bottom:813.893333pt;}
.y8f{bottom:814.053333pt;}
.y3d{bottom:817.413333pt;}
.yf{bottom:820.933333pt;}
.y69{bottom:822.053333pt;}
.y14a{bottom:823.813333pt;}
.y100{bottom:826.853333pt;}
.yb4{bottom:828.613333pt;}
.y126{bottom:830.693333pt;}
.y3c{bottom:834.213333pt;}
.y8e{bottom:838.693333pt;}
.y68{bottom:838.853333pt;}
.yff{bottom:843.653333pt;}
.yb3{bottom:843.973333pt;}
.y125{bottom:847.813333pt;}
.ye{bottom:848.453333pt;}
.y3b{bottom:851.173333pt;}
.y67{bottom:855.813333pt;}
.yb2{bottom:859.333333pt;}
.yfe{bottom:860.453333pt;}
.y124{bottom:864.613333pt;}
.y149{bottom:868.133333pt;}
.y66{bottom:872.613333pt;}
.yb1{bottom:874.693333pt;}
.y3a{bottom:875.813333pt;}
.yd{bottom:876.133333pt;}
.yfd{bottom:878.533333pt;}
.y8d{bottom:880.453333pt;}
.y123{bottom:881.413333pt;}
.y65{bottom:889.413333pt;}
.yfc{bottom:895.333333pt;}
.y148{bottom:895.493333pt;}
.y8c{bottom:897.413333pt;}
.yb0{bottom:898.213333pt;}
.y39{bottom:902.373333pt;}
.yc{bottom:903.653333pt;}
.y122{bottom:906.213333pt;}
.yd9{bottom:906.373333pt;}
.yfb{bottom:912.133333pt;}
.y64{bottom:914.213333pt;}
.y8b{bottom:914.373333pt;}
.yaf{bottom:915.173333pt;}
.y38{bottom:920.133333pt;}
.y147{bottom:923.013333pt;}
.yd8{bottom:923.173333pt;}
.yfa{bottom:930.213333pt;}
.y63{bottom:931.173333pt;}
.yb{bottom:931.333333pt;}
.y37{bottom:935.493333pt;}
.yae{bottom:939.973333pt;}
.yd7{bottom:940.133333pt;}
.yf9{bottom:947.013333pt;}
.y121{bottom:947.973333pt;}
.y62{bottom:948.133333pt;}
.y36{bottom:950.693333pt;}
.ya{bottom:961.093333pt;}
.yf8{bottom:963.813333pt;}
.yad{bottom:964.773333pt;}
.y61{bottom:964.933333pt;}
.y35{bottom:966.053333pt;}
.y1{bottom:978.533333pt;}
.h6{height:21.600000pt;}
.hb{height:42.632812pt;}
.ha{height:47.180312pt;}
.hd{height:47.491563pt;}
.h9{height:47.621250pt;}
.hc{height:48.062188pt;}
.he{height:52.296250pt;}
.h8{height:52.785000pt;}
.h4{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:57.906250pt;}
.h3{height:60.937500pt;}
.h7{height:67.750312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.912000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x3{left:113.471988pt;}
.x1f{left:137.466655pt;}
.xd{left:139.386655pt;}
.xa{left:146.426655pt;}
.x7{left:148.666655pt;}
.x12{left:159.546655pt;}
.x20{left:161.466655pt;}
.x8{left:165.146655pt;}
.x13{left:170.746655pt;}
.x14{left:178.106655pt;}
.x15{left:189.146655pt;}
.x1e{left:226.906655pt;}
.x16{left:256.866655pt;}
.xe{left:268.226655pt;}
.x17{left:281.666655pt;}
.x9{left:293.666655pt;}
.xb{left:295.426655pt;}
.x18{left:318.146655pt;}
.x19{left:329.186655pt;}
.x1a{left:381.666655pt;}
.x1b{left:392.733322pt;}
.x1c{left:412.253322pt;}
.x6{left:415.933322pt;}
.x1d{left:423.453322pt;}
.xc{left:524.413322pt;}
.xf{left:559.333322pt;}
.x4{left:671.173333pt;}
.x10{left:690.373322pt;}
.x11{left:704.613322pt;}
.x1{left:713.599988pt;}
.x2{left:718.399988pt;}
}




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