
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_428a63d432336635c83726b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_2aba9c92851c0e6f322310e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ba72c176fd430d2b5e90c7a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a357951f1580460a01fb6cde.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_6004be37a7005f5ac01c4f2b.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_9c9cf669911cd7212038b000.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.052200px;}
.ls1e{letter-spacing:-0.038880px;}
.ls1a{letter-spacing:-0.018360px;}
.ls1d{letter-spacing:-0.011160px;}
.ls10{letter-spacing:-0.007800px;}
.ls18{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls1b{letter-spacing:0.041760px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.064800px;}
.ls11{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.lsb{letter-spacing:0.100200px;}
.ls1c{letter-spacing:0.118200px;}
.lsc{letter-spacing:0.135600px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.164400px;}
.ls16{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.180000px;}
.lse{letter-spacing:0.199200px;}
.ls8{letter-spacing:0.330600px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls21{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.658000px;}
.ws5{word-spacing:-14.629200px;}
.ws4{word-spacing:-14.593800px;}
.ws9{word-spacing:-14.493600px;}
.ws2{word-spacing:-14.441400px;}
.wse{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.344600px;}
.ws11{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.275360px;}
.ws13{word-spacing:-13.268160px;}
.ws6{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.wsa{word-spacing:-13.218600px;}
.ws14{word-spacing:-13.215240px;}
.ws12{word-spacing:-13.208040px;}
.wsd{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._f{margin-left:-3.531000px;}
._7{margin-left:-2.240520px;}
._0{margin-left:-1.110000px;}
._3{width:1.004127px;}
._5{width:2.645400px;}
._6{width:3.656702px;}
._b{width:5.144635px;}
._8{width:6.183480px;}
._a{width:7.784280px;}
._4{width:8.978520px;}
._10{width:10.167600px;}
._c{width:11.482800px;}
._9{width:14.421480px;}
._d{width:15.450840px;}
._e{width:16.600440px;}
._13{width:18.997920px;}
._11{width:21.522960px;}
._15{width:23.476680px;}
._2{width:31.541061px;}
._1{width:32.545188px;}
._19{width:44.487120px;}
._18{width:45.540720px;}
._16{width:49.147920px;}
._17{width:50.197200px;}
._12{width:155.530440px;}
._14{width:215.951040px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.yaa{bottom:7.860000px;}
.y5d{bottom:7.920000px;}
.y7e{bottom:8.280000px;}
.y96{bottom:9.180000px;}
.y87{bottom:9.360000px;}
.y80{bottom:9.390000px;}
.y99{bottom:10.530000px;}
.y9e{bottom:11.520000px;}
.y91{bottom:11.610000px;}
.ya3{bottom:13.860000px;}
.yb6{bottom:16.740000px;}
.ya1{bottom:18.450000px;}
.yf8{bottom:25.380000px;}
.yff{bottom:25.470000px;}
.y8e{bottom:29.880000px;}
.y5f{bottom:35.190000px;}
.y6b{bottom:35.280000px;}
.yf7{bottom:44.100000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya7{bottom:112.080000px;}
.y54{bottom:113.970000px;}
.y118{bottom:122.430000px;}
.ya6{bottom:127.020000px;}
.ycb{bottom:127.290000px;}
.y148{bottom:127.920000px;}
.y7a{bottom:141.690000px;}
.y147{bottom:145.560000px;}
.y53{bottom:149.610000px;}
.ya5{bottom:156.990000px;}
.y117{bottom:158.070000px;}
.y24{bottom:158.790000px;}
.y79{bottom:159.240000px;}
.y146{bottom:163.110000px;}
.yf3{bottom:163.200000px;}
.yca{bottom:165.540000px;}
.y52{bottom:167.160000px;}
.y23{bottom:176.340000px;}
.y78{bottom:176.790000px;}
.yc9{bottom:180.570000px;}
.yf2{bottom:180.840000px;}
.ya4{bottom:184.350000px;}
.y51{bottom:184.710000px;}
.y116{bottom:184.980000px;}
.y145{bottom:189.750000px;}
.y22{bottom:193.980000px;}
.y50{bottom:202.350000px;}
.y144{bottom:207.300000px;}
.yc8{bottom:207.930000px;}
.y76{bottom:209.820000px;}
.y21{bottom:211.530000px;}
.ya2{bottom:211.710000px;}
.yf1{bottom:216.390000px;}
.y4f{bottom:219.900000px;}
.y115{bottom:222.330000px;}
.y143{bottom:224.850000px;}
.yf0{bottom:233.940000px;}
.yc7{bottom:235.290000px;}
.y77{bottom:237.090000px;}
.y4e{bottom:237.540000px;}
.y142{bottom:242.490000px;}
.ya0{bottom:245.010000px;}
.y20{bottom:247.170000px;}
.yef{bottom:251.580000px;}
.yc6{bottom:262.560000px;}
.y4d{bottom:264.090000px;}
.y74{bottom:264.450000px;}
.y1f{bottom:264.720000px;}
.y141{bottom:269.040000px;}
.y114{bottom:270.570000px;}
.y1e{bottom:282.270000px;}
.y9f{bottom:282.900000px;}
.y140{bottom:286.680000px;}
.yee{bottom:287.130000px;}
.y113{bottom:288.120000px;}
.yc5{bottom:289.920000px;}
.y75{bottom:291.810000px;}
.y4c{bottom:299.640000px;}
.y1d{bottom:299.910000px;}
.y13f{bottom:304.230000px;}
.yed{bottom:304.770000px;}
.y112{bottom:305.760000px;}
.y9d{bottom:310.260000px;}
.yc4{bottom:317.280000px;}
.y1c{bottom:317.460000px;}
.y4b{bottom:318.090000px;}
.y72{bottom:319.170000px;}
.y111{bottom:323.310000px;}
.y13e{bottom:330.780000px;}
.y1b{bottom:335.100000px;}
.y4a{bottom:336.450000px;}
.yec{bottom:340.320000px;}
.y110{bottom:340.950000px;}
.y9c{bottom:341.220000px;}
.yc3{bottom:344.550000px;}
.y73{bottom:346.440000px;}
.y13d{bottom:348.420000px;}
.y49{bottom:354.900000px;}
.yeb{bottom:357.870000px;}
.y10f{bottom:358.500000px;}
.y1a{bottom:362.010000px;}
.y9b{bottom:368.580000px;}
.yc2{bottom:371.910000px;}
.y48{bottom:373.260000px;}
.y70{bottom:373.800000px;}
.y13c{bottom:374.970000px;}
.y10e{bottom:376.050000px;}
.y47{bottom:391.710000px;}
.y13b{bottom:392.610000px;}
.yea{bottom:393.510000px;}
.y9a{bottom:395.940000px;}
.yc1{bottom:399.270000px;}
.y71{bottom:401.160000px;}
.y46{bottom:410.160000px;}
.y19{bottom:410.610000px;}
.ye9{bottom:411.060000px;}
.y10d{bottom:411.690000px;}
.y13a{bottom:419.160000px;}
.yc0{bottom:426.630000px;}
.y98{bottom:426.990000px;}
.y45{bottom:428.520000px;}
.y10c{bottom:429.240000px;}
.y139{bottom:436.710000px;}
.ye8{bottom:437.700000px;}
.y44{bottom:446.970000px;}
.y18{bottom:447.600000px;}
.ybf{bottom:453.900000px;}
.y138{bottom:454.350000px;}
.y6f{bottom:455.790000px;}
.y10b{bottom:456.150000px;}
.y97{bottom:457.050000px;}
.y17{bottom:465.150000px;}
.y43{bottom:465.330000px;}
.ye7{bottom:473.280000px;}
.y137{bottom:480.930000px;}
.ybe{bottom:481.290000px;}
.y6d{bottom:483.180000px;}
.y42{bottom:483.810000px;}
.y95{bottom:484.440000px;}
.ye6{bottom:490.830000px;}
.y136{bottom:498.480000px;}
.y16{bottom:500.820000px;}
.y41{bottom:502.170000px;}
.y10a{bottom:504.510000px;}
.ye5{bottom:508.470000px;}
.ybd{bottom:508.650000px;}
.y6e{bottom:510.540000px;}
.y94{bottom:513.150000px;}
.y135{bottom:516.120000px;}
.y15{bottom:518.370000px;}
.y40{bottom:520.620000px;}
.y109{bottom:522.060000px;}
.ye4{bottom:526.020000px;}
.y14{bottom:535.920000px;}
.ybc{bottom:536.010000px;}
.y6a{bottom:537.810000px;}
.y93{bottom:542.040000px;}
.y134{bottom:542.670000px;}
.ye3{bottom:543.660000px;}
.y3f{bottom:548.070000px;}
.y13{bottom:553.560000px;}
.y108{bottom:557.610000px;}
.y133{bottom:560.310000px;}
.ye2{bottom:561.210000px;}
.ybb{bottom:563.280000px;}
.y6c{bottom:565.170000px;}
.y92{bottom:569.310000px;}
.y12{bottom:571.110000px;}
.y107{bottom:575.250000px;}
.y132{bottom:577.860000px;}
.y3e{bottom:583.620000px;}
.y11{bottom:588.750000px;}
.yba{bottom:590.640000px;}
.y68{bottom:592.530000px;}
.y90{bottom:596.670000px;}
.ye1{bottom:596.760000px;}
.y3d{bottom:601.260000px;}
.y131{bottom:604.410000px;}
.y10{bottom:606.300000px;}
.y106{bottom:610.800000px;}
.ye0{bottom:614.400000px;}
.yb9{bottom:618.000000px;}
.y3c{bottom:618.810000px;}
.y69{bottom:619.890000px;}
.y130{bottom:622.050000px;}
.y8f{bottom:627.810000px;}
.y105{bottom:628.440000px;}
.ydf{bottom:631.950000px;}
.y3b{bottom:636.450000px;}
.y12f{bottom:639.600000px;}
.yf{bottom:641.850000px;}
.yb8{bottom:645.270000px;}
.y66{bottom:647.160000px;}
.yde{bottom:649.590000px;}
.y104{bottom:654.990000px;}
.y8d{bottom:655.170000px;}
.y12e{bottom:657.240000px;}
.ye{bottom:659.490000px;}
.y3a{bottom:663.000000px;}
.ydd{bottom:667.140000px;}
.yb7{bottom:672.630000px;}
.y67{bottom:674.520000px;}
.yd{bottom:677.040000px;}
.y12d{bottom:683.790000px;}
.ydc{bottom:684.690000px;}
.y103{bottom:690.540000px;}
.y39{bottom:698.550000px;}
.yb5{bottom:699.990000px;}
.y12c{bottom:701.340000px;}
.y64{bottom:701.880000px;}
.y8c{bottom:704.580000px;}
.y102{bottom:708.180000px;}
.yc{bottom:712.680000px;}
.y38{bottom:717.000000px;}
.ydb{bottom:720.330000px;}
.y101{bottom:725.730000px;}
.y12b{bottom:727.980000px;}
.y65{bottom:729.240000px;}
.yb{bottom:730.230000px;}
.y8b{bottom:732.300000px;}
.y37{bottom:735.360000px;}
.yb4{bottom:736.170000px;}
.yda{bottom:737.880000px;}
.y100{bottom:743.280000px;}
.y12a{bottom:745.530000px;}
.y36{bottom:753.810000px;}
.y62{bottom:756.510000px;}
.ya{bottom:757.140000px;}
.y8a{bottom:759.660000px;}
.y129{bottom:763.170000px;}
.yb3{bottom:763.530000px;}
.y35{bottom:772.170000px;}
.yd9{bottom:773.520000px;}
.yfe{bottom:776.310000px;}
.y63{bottom:783.870000px;}
.y89{bottom:786.930000px;}
.y128{bottom:789.720000px;}
.yb2{bottom:790.890000px;}
.yd8{bottom:791.070000px;}
.y9{bottom:805.380000px;}
.y127{bottom:807.270000px;}
.y34{bottom:808.620000px;}
.y5e{bottom:811.230000px;}
.y88{bottom:814.290000px;}
.yd7{bottom:817.620000px;}
.yb1{bottom:818.250000px;}
.yfd{bottom:821.220000px;}
.y126{bottom:824.910000px;}
.y33{bottom:826.260000px;}
.y60{bottom:838.500000px;}
.y8{bottom:841.200000px;}
.y86{bottom:841.650000px;}
.y125{bottom:842.460000px;}
.y32{bottom:843.810000px;}
.yb0{bottom:845.520000px;}
.yfc{bottom:848.580000px;}
.yd6{bottom:853.260000px;}
.y5c{bottom:865.860000px;}
.y124{bottom:869.100000px;}
.y31{bottom:870.450000px;}
.y85{bottom:870.540000px;}
.yd5{bottom:870.810000px;}
.yaf{bottom:872.880000px;}
.yfb{bottom:875.850000px;}
.y7{bottom:877.200000px;}
.y123{bottom:886.650000px;}
.yd4{bottom:888.450000px;}
.y84{bottom:897.810000px;}
.yae{bottom:900.240000px;}
.yfa{bottom:903.210000px;}
.y122{bottom:904.200000px;}
.y30{bottom:906.000000px;}
.y6{bottom:913.200000px;}
.y5b{bottom:914.550000px;}
.y2f{bottom:923.550000px;}
.y83{bottom:925.170000px;}
.yad{bottom:927.600000px;}
.yf9{bottom:930.570000px;}
.y121{bottom:930.840000px;}
.yd3{bottom:941.190000px;}
.y120{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.y2e{bottom:950.190000px;}
.y82{bottom:952.530000px;}
.yac{bottom:954.870000px;}
.yf6{bottom:957.930000px;}
.y5a{bottom:967.740000px;}
.y11f{bottom:975.030000px;}
.yd2{bottom:976.740000px;}
.y81{bottom:980.250000px;}
.yab{bottom:982.230000px;}
.y2d{bottom:986.100000px;}
.y4{bottom:987.630000px;}
.y11e{bottom:992.580000px;}
.yd1{bottom:994.290000px;}
.yf5{bottom:1002.840000px;}
.y59{bottom:1003.290000px;}
.y7f{bottom:1007.610000px;}
.ya9{bottom:1009.590000px;}
.yd0{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.y11d{bottom:1019.160000px;}
.y58{bottom:1020.960000px;}
.y2c{bottom:1034.370000px;}
.y7d{bottom:1036.530000px;}
.y11c{bottom:1036.800000px;}
.ya8{bottom:1036.890000px;}
.y57{bottom:1038.510000px;}
.y14c{bottom:1043.370000px;}
.ycf{bottom:1047.510000px;}
.yf4{bottom:1051.560000px;}
.y2b{bottom:1051.920000px;}
.y14b{bottom:1060.920000px;}
.y11b{bottom:1063.710000px;}
.y7c{bottom:1064.250000px;}
.yce{bottom:1065.150000px;}
.y56{bottom:1065.420000px;}
.y2a{bottom:1069.560000px;}
.y14a{bottom:1078.560000px;}
.y29{bottom:1087.110000px;}
.y7b{bottom:1091.610000px;}
.ycd{bottom:1091.700000px;}
.y149{bottom:1105.110000px;}
.y11a{bottom:1111.950000px;}
.y55{bottom:1113.750000px;}
.y28{bottom:1122.750000px;}
.ycc{bottom:1127.610000px;}
.y119{bottom:1138.860000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h10{height:26.550000px;}
.h1a{height:26.580000px;}
.he{height:26.640000px;}
.h13{height:26.670000px;}
.h14{height:27.000000px;}
.h19{height:27.900000px;}
.h16{height:28.080000px;}
.h15{height:28.110000px;}
.h1b{height:29.250000px;}
.h1c{height:30.240000px;}
.h18{height:30.330000px;}
.h2{height:31.901133px;}
.h1e{height:32.580000px;}
.h1f{height:35.460000px;}
.h1d{height:37.170000px;}
.h3{height:39.155273px;}
.h20{height:44.100000px;}
.h21{height:44.190000px;}
.h17{height:48.600000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h9{height:52.781133px;}
.hf{height:53.910000px;}
.h12{height:53.940000px;}
.h11{height:54.000000px;}
.h22{height:55.779258px;}
.h5{height:57.323320px;}
.h8{height:57.838008px;}
.hd{height:61.793886px;}
.hc{height:62.585859px;}
.ha{height:63.210938px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:40.500000px;}
.w7{width:42.030000px;}
.wc{width:67.050000px;}
.we{width:86.520000px;}
.w8{width:93.780000px;}
.w9{width:95.400000px;}
.wa{width:100.080000px;}
.wf{width:100.170000px;}
.w10{width:116.040000px;}
.wb{width:116.130000px;}
.w18{width:126.570000px;}
.w11{width:127.440000px;}
.w12{width:130.590000px;}
.w1a{width:141.750000px;}
.w16{width:147.450000px;}
.w6{width:164.700000px;}
.w19{width:167.940000px;}
.w5{width:168.240000px;}
.w17{width:169.020000px;}
.w3{width:207.450000px;}
.w15{width:310.410000px;}
.w14{width:444.570000px;}
.wd{width:475.410000px;}
.w13{width:659.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x19{left:111.239987px;}
.xf{left:116.640000px;}
.x10{left:203.880000px;}
.xa{left:208.920000px;}
.x2{left:211.079987px;}
.x16{left:216.930000px;}
.x5{left:237.810000px;}
.x11{left:300.000000px;}
.xb{left:303.420000px;}
.x17{left:386.760000px;}
.xc{left:399.630000px;}
.x12{left:400.890000px;}
.x9{left:403.230000px;}
.x7{left:445.980000px;}
.x8{left:487.200000px;}
.xd{left:500.430000px;}
.x15{left:514.050000px;}
.x13{left:517.740000px;}
.xe{left:617.280000px;}
.x14{left:645.990000px;}
.x18{left:682.710000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.046400pt;}
.ls1e{letter-spacing:-0.034560pt;}
.ls1a{letter-spacing:-0.016320pt;}
.ls1d{letter-spacing:-0.009920pt;}
.ls10{letter-spacing:-0.006933pt;}
.ls18{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls1b{letter-spacing:0.037120pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.057600pt;}
.ls11{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.lsb{letter-spacing:0.089067pt;}
.ls1c{letter-spacing:0.105067pt;}
.lsc{letter-spacing:0.120533pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.146133pt;}
.ls16{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.177067pt;}
.ls8{letter-spacing:0.293867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls21{letter-spacing:71.863680pt;}
.ws3{word-spacing:-13.029333pt;}
.ws5{word-spacing:-13.003733pt;}
.ws4{word-spacing:-12.972267pt;}
.ws9{word-spacing:-12.883200pt;}
.ws2{word-spacing:-12.836800pt;}
.wse{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.861867pt;}
.ws11{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.800320pt;}
.ws13{word-spacing:-11.793920pt;}
.ws6{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.wsa{word-spacing:-11.749867pt;}
.ws14{word-spacing:-11.746880pt;}
.ws12{word-spacing:-11.740480pt;}
.wsd{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._f{margin-left:-3.138667pt;}
._7{margin-left:-1.991573pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.892558pt;}
._5{width:2.351467pt;}
._6{width:3.250402pt;}
._b{width:4.573009pt;}
._8{width:5.496427pt;}
._a{width:6.919360pt;}
._4{width:7.980907pt;}
._10{width:9.037867pt;}
._c{width:10.206933pt;}
._9{width:12.819093pt;}
._d{width:13.734080pt;}
._e{width:14.755947pt;}
._13{width:16.887040pt;}
._11{width:19.131520pt;}
._15{width:20.868160pt;}
._2{width:28.036499pt;}
._1{width:28.929056pt;}
._19{width:39.544107pt;}
._18{width:40.480640pt;}
._16{width:43.687040pt;}
._17{width:44.619733pt;}
._12{width:138.249280pt;}
._14{width:191.956480pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.yaa{bottom:6.986667pt;}
.y5d{bottom:7.040000pt;}
.y7e{bottom:7.360000pt;}
.y96{bottom:8.160000pt;}
.y87{bottom:8.320000pt;}
.y80{bottom:8.346667pt;}
.y99{bottom:9.360000pt;}
.y9e{bottom:10.240000pt;}
.y91{bottom:10.320000pt;}
.ya3{bottom:12.320000pt;}
.yb6{bottom:14.880000pt;}
.ya1{bottom:16.400000pt;}
.yf8{bottom:22.560000pt;}
.yff{bottom:22.640000pt;}
.y8e{bottom:26.560000pt;}
.y5f{bottom:31.280000pt;}
.y6b{bottom:31.360000pt;}
.yf7{bottom:39.200000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya7{bottom:99.626667pt;}
.y54{bottom:101.306667pt;}
.y118{bottom:108.826667pt;}
.ya6{bottom:112.906667pt;}
.ycb{bottom:113.146667pt;}
.y148{bottom:113.706667pt;}
.y7a{bottom:125.946667pt;}
.y147{bottom:129.386667pt;}
.y53{bottom:132.986667pt;}
.ya5{bottom:139.546667pt;}
.y117{bottom:140.506667pt;}
.y24{bottom:141.146667pt;}
.y79{bottom:141.546667pt;}
.y146{bottom:144.986667pt;}
.yf3{bottom:145.066667pt;}
.yca{bottom:147.146667pt;}
.y52{bottom:148.586667pt;}
.y23{bottom:156.746667pt;}
.y78{bottom:157.146667pt;}
.yc9{bottom:160.506667pt;}
.yf2{bottom:160.746667pt;}
.ya4{bottom:163.866667pt;}
.y51{bottom:164.186667pt;}
.y116{bottom:164.426667pt;}
.y145{bottom:168.666667pt;}
.y22{bottom:172.426667pt;}
.y50{bottom:179.866667pt;}
.y144{bottom:184.266667pt;}
.yc8{bottom:184.826667pt;}
.y76{bottom:186.506667pt;}
.y21{bottom:188.026667pt;}
.ya2{bottom:188.186667pt;}
.yf1{bottom:192.346667pt;}
.y4f{bottom:195.466667pt;}
.y115{bottom:197.626667pt;}
.y143{bottom:199.866667pt;}
.yf0{bottom:207.946667pt;}
.yc7{bottom:209.146667pt;}
.y77{bottom:210.746667pt;}
.y4e{bottom:211.146667pt;}
.y142{bottom:215.546667pt;}
.ya0{bottom:217.786667pt;}
.y20{bottom:219.706667pt;}
.yef{bottom:223.626667pt;}
.yc6{bottom:233.386667pt;}
.y4d{bottom:234.746667pt;}
.y74{bottom:235.066667pt;}
.y1f{bottom:235.306667pt;}
.y141{bottom:239.146667pt;}
.y114{bottom:240.506667pt;}
.y1e{bottom:250.906667pt;}
.y9f{bottom:251.466667pt;}
.y140{bottom:254.826667pt;}
.yee{bottom:255.226667pt;}
.y113{bottom:256.106667pt;}
.yc5{bottom:257.706667pt;}
.y75{bottom:259.386667pt;}
.y4c{bottom:266.346667pt;}
.y1d{bottom:266.586667pt;}
.y13f{bottom:270.426667pt;}
.yed{bottom:270.906667pt;}
.y112{bottom:271.786667pt;}
.y9d{bottom:275.786667pt;}
.yc4{bottom:282.026667pt;}
.y1c{bottom:282.186667pt;}
.y4b{bottom:282.746667pt;}
.y72{bottom:283.706667pt;}
.y111{bottom:287.386667pt;}
.y13e{bottom:294.026667pt;}
.y1b{bottom:297.866667pt;}
.y4a{bottom:299.066667pt;}
.yec{bottom:302.506667pt;}
.y110{bottom:303.066667pt;}
.y9c{bottom:303.306667pt;}
.yc3{bottom:306.266667pt;}
.y73{bottom:307.946667pt;}
.y13d{bottom:309.706667pt;}
.y49{bottom:315.466667pt;}
.yeb{bottom:318.106667pt;}
.y10f{bottom:318.666667pt;}
.y1a{bottom:321.786667pt;}
.y9b{bottom:327.626667pt;}
.yc2{bottom:330.586667pt;}
.y48{bottom:331.786667pt;}
.y70{bottom:332.266667pt;}
.y13c{bottom:333.306667pt;}
.y10e{bottom:334.266667pt;}
.y47{bottom:348.186667pt;}
.y13b{bottom:348.986667pt;}
.yea{bottom:349.786667pt;}
.y9a{bottom:351.946667pt;}
.yc1{bottom:354.906667pt;}
.y71{bottom:356.586667pt;}
.y46{bottom:364.586667pt;}
.y19{bottom:364.986667pt;}
.ye9{bottom:365.386667pt;}
.y10d{bottom:365.946667pt;}
.y13a{bottom:372.586667pt;}
.yc0{bottom:379.226667pt;}
.y98{bottom:379.546667pt;}
.y45{bottom:380.906667pt;}
.y10c{bottom:381.546667pt;}
.y139{bottom:388.186667pt;}
.ye8{bottom:389.066667pt;}
.y44{bottom:397.306667pt;}
.y18{bottom:397.866667pt;}
.ybf{bottom:403.466667pt;}
.y138{bottom:403.866667pt;}
.y6f{bottom:405.146667pt;}
.y10b{bottom:405.466667pt;}
.y97{bottom:406.266667pt;}
.y17{bottom:413.466667pt;}
.y43{bottom:413.626667pt;}
.ye7{bottom:420.693333pt;}
.y137{bottom:427.493333pt;}
.ybe{bottom:427.813333pt;}
.y6d{bottom:429.493333pt;}
.y42{bottom:430.053333pt;}
.y95{bottom:430.613333pt;}
.ye6{bottom:436.293333pt;}
.y136{bottom:443.093333pt;}
.y16{bottom:445.173333pt;}
.y41{bottom:446.373333pt;}
.y10a{bottom:448.453333pt;}
.ye5{bottom:451.973333pt;}
.ybd{bottom:452.133333pt;}
.y6e{bottom:453.813333pt;}
.y94{bottom:456.133333pt;}
.y135{bottom:458.773333pt;}
.y15{bottom:460.773333pt;}
.y40{bottom:462.773333pt;}
.y109{bottom:464.053333pt;}
.ye4{bottom:467.573333pt;}
.y14{bottom:476.373333pt;}
.ybc{bottom:476.453333pt;}
.y6a{bottom:478.053333pt;}
.y93{bottom:481.813333pt;}
.y134{bottom:482.373333pt;}
.ye3{bottom:483.253333pt;}
.y3f{bottom:487.173333pt;}
.y13{bottom:492.053333pt;}
.y108{bottom:495.653333pt;}
.y133{bottom:498.053333pt;}
.ye2{bottom:498.853333pt;}
.ybb{bottom:500.693333pt;}
.y6c{bottom:502.373333pt;}
.y92{bottom:506.053333pt;}
.y12{bottom:507.653333pt;}
.y107{bottom:511.333333pt;}
.y132{bottom:513.653333pt;}
.y3e{bottom:518.773333pt;}
.y11{bottom:523.333333pt;}
.yba{bottom:525.013333pt;}
.y68{bottom:526.693333pt;}
.y90{bottom:530.373333pt;}
.ye1{bottom:530.453333pt;}
.y3d{bottom:534.453333pt;}
.y131{bottom:537.253333pt;}
.y10{bottom:538.933333pt;}
.y106{bottom:542.933333pt;}
.ye0{bottom:546.133333pt;}
.yb9{bottom:549.333333pt;}
.y3c{bottom:550.053333pt;}
.y69{bottom:551.013333pt;}
.y130{bottom:552.933333pt;}
.y8f{bottom:558.053333pt;}
.y105{bottom:558.613333pt;}
.ydf{bottom:561.733333pt;}
.y3b{bottom:565.733333pt;}
.y12f{bottom:568.533333pt;}
.yf{bottom:570.533333pt;}
.yb8{bottom:573.573333pt;}
.y66{bottom:575.253333pt;}
.yde{bottom:577.413333pt;}
.y104{bottom:582.213333pt;}
.y8d{bottom:582.373333pt;}
.y12e{bottom:584.213333pt;}
.ye{bottom:586.213333pt;}
.y3a{bottom:589.333333pt;}
.ydd{bottom:593.013333pt;}
.yb7{bottom:597.893333pt;}
.y67{bottom:599.573333pt;}
.yd{bottom:601.813333pt;}
.y12d{bottom:607.813333pt;}
.ydc{bottom:608.613333pt;}
.y103{bottom:613.813333pt;}
.y39{bottom:620.933333pt;}
.yb5{bottom:622.213333pt;}
.y12c{bottom:623.413333pt;}
.y64{bottom:623.893333pt;}
.y8c{bottom:626.293333pt;}
.y102{bottom:629.493333pt;}
.yc{bottom:633.493333pt;}
.y38{bottom:637.333333pt;}
.ydb{bottom:640.293333pt;}
.y101{bottom:645.093333pt;}
.y12b{bottom:647.093333pt;}
.y65{bottom:648.213333pt;}
.yb{bottom:649.093333pt;}
.y8b{bottom:650.933333pt;}
.y37{bottom:653.653333pt;}
.yb4{bottom:654.373333pt;}
.yda{bottom:655.893333pt;}
.y100{bottom:660.693333pt;}
.y12a{bottom:662.693333pt;}
.y36{bottom:670.053333pt;}
.y62{bottom:672.453333pt;}
.ya{bottom:673.013333pt;}
.y8a{bottom:675.253333pt;}
.y129{bottom:678.373333pt;}
.yb3{bottom:678.693333pt;}
.y35{bottom:686.373333pt;}
.yd9{bottom:687.573333pt;}
.yfe{bottom:690.053333pt;}
.y63{bottom:696.773333pt;}
.y89{bottom:699.493333pt;}
.y128{bottom:701.973333pt;}
.yb2{bottom:703.013333pt;}
.yd8{bottom:703.173333pt;}
.y9{bottom:715.893333pt;}
.y127{bottom:717.573333pt;}
.y34{bottom:718.773333pt;}
.y5e{bottom:721.093333pt;}
.y88{bottom:723.813333pt;}
.yd7{bottom:726.773333pt;}
.yb1{bottom:727.333333pt;}
.yfd{bottom:729.973333pt;}
.y126{bottom:733.253333pt;}
.y33{bottom:734.453333pt;}
.y60{bottom:745.333333pt;}
.y8{bottom:747.733333pt;}
.y86{bottom:748.133333pt;}
.y125{bottom:748.853333pt;}
.y32{bottom:750.053333pt;}
.yb0{bottom:751.573333pt;}
.yfc{bottom:754.293333pt;}
.yd6{bottom:758.453333pt;}
.y5c{bottom:769.653333pt;}
.y124{bottom:772.533333pt;}
.y31{bottom:773.733333pt;}
.y85{bottom:773.813333pt;}
.yd5{bottom:774.053333pt;}
.yaf{bottom:775.893333pt;}
.yfb{bottom:778.533333pt;}
.y7{bottom:779.733333pt;}
.y123{bottom:788.133333pt;}
.yd4{bottom:789.733333pt;}
.y84{bottom:798.053333pt;}
.yae{bottom:800.213333pt;}
.yfa{bottom:802.853333pt;}
.y122{bottom:803.733333pt;}
.y30{bottom:805.333333pt;}
.y6{bottom:811.733333pt;}
.y5b{bottom:812.933333pt;}
.y2f{bottom:820.933333pt;}
.y83{bottom:822.373333pt;}
.yad{bottom:824.533333pt;}
.yf9{bottom:827.173333pt;}
.y121{bottom:827.413333pt;}
.yd3{bottom:836.613333pt;}
.y120{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.y2e{bottom:844.613333pt;}
.y82{bottom:846.693333pt;}
.yac{bottom:848.773333pt;}
.yf6{bottom:851.493333pt;}
.y5a{bottom:860.213333pt;}
.y11f{bottom:866.693333pt;}
.yd2{bottom:868.213333pt;}
.y81{bottom:871.333333pt;}
.yab{bottom:873.093333pt;}
.y2d{bottom:876.533333pt;}
.y4{bottom:877.893333pt;}
.y11e{bottom:882.293333pt;}
.yd1{bottom:883.813333pt;}
.yf5{bottom:891.413333pt;}
.y59{bottom:891.813333pt;}
.y7f{bottom:895.653333pt;}
.ya9{bottom:897.413333pt;}
.yd0{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.y11d{bottom:905.920000pt;}
.y58{bottom:907.520000pt;}
.y2c{bottom:919.440000pt;}
.y7d{bottom:921.360000pt;}
.y11c{bottom:921.600000pt;}
.ya8{bottom:921.680000pt;}
.y57{bottom:923.120000pt;}
.y14c{bottom:927.440000pt;}
.ycf{bottom:931.120000pt;}
.yf4{bottom:934.720000pt;}
.y2b{bottom:935.040000pt;}
.y14b{bottom:943.040000pt;}
.y11b{bottom:945.520000pt;}
.y7c{bottom:946.000000pt;}
.yce{bottom:946.800000pt;}
.y56{bottom:947.040000pt;}
.y2a{bottom:950.720000pt;}
.y14a{bottom:958.720000pt;}
.y29{bottom:966.320000pt;}
.y7b{bottom:970.320000pt;}
.ycd{bottom:970.400000pt;}
.y149{bottom:982.320000pt;}
.y11a{bottom:988.400000pt;}
.y55{bottom:990.000000pt;}
.y28{bottom:998.000000pt;}
.ycc{bottom:1002.320000pt;}
.y119{bottom:1012.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h10{height:23.600000pt;}
.h1a{height:23.626667pt;}
.he{height:23.680000pt;}
.h13{height:23.706667pt;}
.h14{height:24.000000pt;}
.h19{height:24.800000pt;}
.h16{height:24.960000pt;}
.h15{height:24.986667pt;}
.h1b{height:26.000000pt;}
.h1c{height:26.880000pt;}
.h18{height:26.960000pt;}
.h2{height:28.356562pt;}
.h1e{height:28.960000pt;}
.h1f{height:31.520000pt;}
.h1d{height:33.040000pt;}
.h3{height:34.804688pt;}
.h20{height:39.200000pt;}
.h21{height:39.280000pt;}
.h17{height:43.200000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h9{height:46.916562pt;}
.hf{height:47.920000pt;}
.h12{height:47.946667pt;}
.h11{height:48.000000pt;}
.h22{height:49.581562pt;}
.h5{height:50.954062pt;}
.h8{height:51.411562pt;}
.hd{height:54.927899pt;}
.hc{height:55.631875pt;}
.ha{height:56.187500pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:36.000000pt;}
.w7{width:37.360000pt;}
.wc{width:59.600000pt;}
.we{width:76.906667pt;}
.w8{width:83.360000pt;}
.w9{width:84.800000pt;}
.wa{width:88.960000pt;}
.wf{width:89.040000pt;}
.w10{width:103.146667pt;}
.wb{width:103.226667pt;}
.w18{width:112.506667pt;}
.w11{width:113.280000pt;}
.w12{width:116.080000pt;}
.w1a{width:126.000000pt;}
.w16{width:131.066667pt;}
.w6{width:146.400000pt;}
.w19{width:149.280000pt;}
.w5{width:149.546667pt;}
.w17{width:150.240000pt;}
.w3{width:184.400000pt;}
.w15{width:275.920000pt;}
.w14{width:395.173333pt;}
.wd{width:422.586667pt;}
.w13{width:586.613333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x19{left:98.879988pt;}
.xf{left:103.680000pt;}
.x10{left:181.226667pt;}
.xa{left:185.706667pt;}
.x2{left:187.626655pt;}
.x16{left:192.826667pt;}
.x5{left:211.386667pt;}
.x11{left:266.666667pt;}
.xb{left:269.706667pt;}
.x17{left:343.786667pt;}
.xc{left:355.226667pt;}
.x12{left:356.346667pt;}
.x9{left:358.426667pt;}
.x7{left:396.426667pt;}
.x8{left:433.066667pt;}
.xd{left:444.826667pt;}
.x15{left:456.933333pt;}
.x13{left:460.213333pt;}
.xe{left:548.693333pt;}
.x14{left:574.213333pt;}
.x18{left:606.853333pt;}
.x3{left:711.413322pt;}
}




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