
    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_423b48377b3f53a7ed95b6ec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bde9f77684075c9dca5427a2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9b714dbe8a0f4ee1bb33a097.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_32e4dd6270281f4fdef5e689.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4e721258dafc85a9d6ea28be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_aa7723a41f325268ae49e35f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_7ac01469cb0d30d074e52ceb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1894ce708dccda651896a12c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f22e7bf4ce4a4dd89f89c11.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2ad1ba8b6e775925506a515c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls7{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.305400px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:25.308000px;}
.ls0{letter-spacing:28.062720px;}
.ls8{letter-spacing:52.668000px;}
.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;}
}
.ws7{word-spacing:-54.000000px;}
.ws4{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.440000px;}
.ws2{word-spacing:-16.560000px;}
.ws8{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.888000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-7.231680px;}
._26{margin-left:-4.187280px;}
._14{margin-left:-2.877120px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._3{width:2.710320px;}
._6{width:4.464000px;}
._f{width:5.474640px;}
._5{width:6.485040px;}
._4{width:7.506000px;}
._7{width:8.786640px;}
._8{width:9.828000px;}
._9{width:10.962000px;}
._d{width:12.697440px;}
._e{width:13.779360px;}
._a{width:15.544320px;}
._c{width:17.010000px;}
._1b{width:18.900000px;}
._1a{width:20.171520px;}
._1c{width:21.521520px;}
._16{width:22.788000px;}
._10{width:24.192000px;}
._b{width:25.355520px;}
._1f{width:27.293760px;}
._1e{width:28.627440px;}
._1d{width:30.317760px;}
._25{width:31.674240px;}
._21{width:33.642000px;}
._24{width:34.682160px;}
._29{width:36.180000px;}
._27{width:37.505520px;}
._22{width:38.880000px;}
._17{width:40.122000px;}
._20{width:41.446080px;}
._28{width:44.766000px;}
._19{width:45.846000px;}
._18{width:46.995360px;}
._2a{width:48.368640px;}
._11{width:50.490000px;}
._13{width:52.410240px;}
._12{width:54.031680px;}
._23{width:55.242000px;}
._2f{width:59.382000px;}
._30{width:60.768000px;}
._2e{width:65.664000px;}
._2b{width:92.232000px;}
._2c{width:93.798000px;}
._2d{width:856.872000px;}
._2{width:1340.400000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:2.340000px;}
.yca{bottom:2.520000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y3c{bottom:8.970000px;}
.y2b{bottom:12.315000px;}
.y8{bottom:25.200000px;}
.y7{bottom:43.740000px;}
.y6{bottom:59.580000px;}
.y34{bottom:66.090000px;}
.y21{bottom:83.700000px;}
.yc8{bottom:84.420000px;}
.y149{bottom:84.600000px;}
.y33{bottom:86.070000px;}
.yf3{bottom:90.000000px;}
.y80{bottom:94.500000px;}
.yb1{bottom:99.900000px;}
.y20{bottom:101.520000px;}
.y18{bottom:101.700000px;}
.yc7{bottom:102.420000px;}
.y32{bottom:105.870000px;}
.yf2{bottom:108.000000px;}
.y91{bottom:109.260000px;}
.y7f{bottom:112.320000px;}
.y11b{bottom:113.760000px;}
.yb0{bottom:117.720000px;}
.y17{bottom:119.520000px;}
.yc6{bottom:120.240000px;}
.y31{bottom:125.670000px;}
.yf1{bottom:125.820000px;}
.y90{bottom:127.080000px;}
.y1f{bottom:128.340000px;}
.y7e{bottom:130.140000px;}
.y11a{bottom:131.580000px;}
.yaf{bottom:135.720000px;}
.y16{bottom:137.340000px;}
.yc5{bottom:138.060000px;}
.yf0{bottom:143.640000px;}
.y8f{bottom:144.900000px;}
.y23{bottom:145.230000px;}
.y30{bottom:145.515000px;}
.y1e{bottom:146.160000px;}
.y7d{bottom:147.960000px;}
.y119{bottom:149.400000px;}
.yae{bottom:153.540000px;}
.y15{bottom:155.160000px;}
.yc4{bottom:155.880000px;}
.yef{bottom:161.460000px;}
.y8e{bottom:162.900000px;}
.y1d{bottom:164.160000px;}
.y2f{bottom:165.315000px;}
.y7c{bottom:165.780000px;}
.y118{bottom:167.220000px;}
.yad{bottom:171.360000px;}
.y14{bottom:173.160000px;}
.yc3{bottom:173.700000px;}
.y148{bottom:173.880000px;}
.yee{bottom:179.280000px;}
.y8d{bottom:180.720000px;}
.y1c{bottom:181.980000px;}
.y7b{bottom:183.780000px;}
.y2e{bottom:185.295000px;}
.yac{bottom:189.180000px;}
.y13{bottom:190.980000px;}
.yc2{bottom:191.700000px;}
.y117{bottom:194.220000px;}
.yed{bottom:197.100000px;}
.y8c{bottom:198.540000px;}
.y1b{bottom:199.800000px;}
.y2d{bottom:205.095000px;}
.yab{bottom:207.030000px;}
.y12{bottom:208.830000px;}
.yc1{bottom:209.550000px;}
.y7a{bottom:210.630000px;}
.y116{bottom:212.070000px;}
.yec{bottom:215.130000px;}
.y8b{bottom:216.390000px;}
.y1a{bottom:217.650000px;}
.yaa{bottom:225.030000px;}
.y11{bottom:226.650000px;}
.yc0{bottom:227.370000px;}
.y79{bottom:228.450000px;}
.y115{bottom:229.890000px;}
.yeb{bottom:232.950000px;}
.y8a{bottom:233.850000px;}
.y19{bottom:235.470000px;}
.y10{bottom:244.470000px;}
.ybf{bottom:245.190000px;}
.y78{bottom:246.270000px;}
.y114{bottom:247.710000px;}
.yea{bottom:250.770000px;}
.y89{bottom:251.670000px;}
.ya9{bottom:251.850000px;}
.ybe{bottom:263.010000px;}
.y147{bottom:263.190000px;}
.y77{bottom:264.090000px;}
.yf{bottom:264.450000px;}
.y113{bottom:265.530000px;}
.ye9{bottom:268.590000px;}
.ya8{bottom:275.610000px;}
.y88{bottom:279.030000px;}
.ybd{bottom:280.830000px;}
.y146{bottom:281.010000px;}
.y76{bottom:282.090000px;}
.y112{bottom:283.350000px;}
.ye8{bottom:286.410000px;}
.y87{bottom:296.850000px;}
.ybc{bottom:298.830000px;}
.y75{bottom:299.910000px;}
.y111{bottom:301.350000px;}
.ye7{bottom:304.410000px;}
.y2c{bottom:312.120000px;}
.ybb{bottom:316.650000px;}
.y74{bottom:317.370000px;}
.y110{bottom:319.170000px;}
.ye6{bottom:321.870000px;}
.y86{bottom:323.670000px;}
.y36{bottom:329.250000px;}
.yba{bottom:334.470000px;}
.y73{bottom:335.190000px;}
.y10f{bottom:336.990000px;}
.ye5{bottom:339.690000px;}
.y85{bottom:341.490000px;}
.yb9{bottom:352.290000px;}
.y10e{bottom:354.810000px;}
.y72{bottom:355.350000px;}
.y35{bottom:358.410000px;}
.y84{bottom:359.310000px;}
.ye4{bottom:366.870000px;}
.yb8{bottom:370.110000px;}
.y145{bottom:370.290000px;}
.y10d{bottom:372.630000px;}
.y83{bottom:377.310000px;}
.y71{bottom:381.270000px;}
.ye3{bottom:384.690000px;}
.yb7{bottom:388.110000px;}
.y10c{bottom:390.630000px;}
.y82{bottom:395.130000px;}
.ye2{bottom:402.510000px;}
.yb6{bottom:405.930000px;}
.y70{bottom:407.010000px;}
.y10b{bottom:408.450000px;}
.y81{bottom:412.950000px;}
.ye1{bottom:420.510000px;}
.y144{bottom:423.750000px;}
.y10a{bottom:426.270000px;}
.yb5{bottom:432.750000px;}
.ye0{bottom:438.330000px;}
.y6f{bottom:439.770000px;}
.y143{bottom:441.615000px;}
.y109{bottom:444.135000px;}
.ydf{bottom:456.195000px;}
.yb4{bottom:456.375000px;}
.y6d{bottom:461.055000px;}
.y142{bottom:461.595000px;}
.y108{bottom:461.955000px;}
.yde{bottom:474.015000px;}
.y107{bottom:488.775000px;}
.ydd{bottom:491.835000px;}
.y141{bottom:494.355000px;}
.ya7{bottom:506.055000px;}
.ydc{bottom:509.835000px;}
.y140{bottom:512.175000px;}
.y106{bottom:515.775000px;}
.ydb{bottom:527.295000px;}
.y13f{bottom:529.995000px;}
.y105{bottom:533.595000px;}
.y13e{bottom:547.815000px;}
.yda{bottom:554.475000px;}
.y104{bottom:560.415000px;}
.y13d{bottom:565.635000px;}
.yd9{bottom:572.295000px;}
.y103{bottom:578.235000px;}
.y13c{bottom:583.635000px;}
.yd8{bottom:590.115000px;}
.y102{bottom:596.055000px;}
.ye{bottom:600.735000px;}
.y13b{bottom:601.455000px;}
.yd7{bottom:607.935000px;}
.y101{bottom:614.055000px;}
.y13a{bottom:619.275000px;}
.yd{bottom:619.635000px;}
.y2a{bottom:625.680000px;}
.yd6{bottom:625.935000px;}
.y100{bottom:631.875000px;}
.y139{bottom:637.095000px;}
.yd5{bottom:643.755000px;}
.yff{bottom:649.695000px;}
.y138{bottom:654.915000px;}
.y29{bottom:666.075000px;}
.yfe{bottom:667.515000px;}
.yd4{bottom:670.575000px;}
.y137{bottom:672.915000px;}
.y6c{bottom:682.845000px;}
.yfd{bottom:685.365000px;}
.yd3{bottom:688.425000px;}
.y136{bottom:690.765000px;}
.yc{bottom:696.345000px;}
.yfc{bottom:703.185000px;}
.yd2{bottom:706.245000px;}
.y57{bottom:709.665000px;}
.y135{bottom:717.585000px;}
.yfb{bottom:721.185000px;}
.yd1{bottom:724.245000px;}
.y56{bottom:727.485000px;}
.y6b{bottom:728.565000px;}
.y28{bottom:730.185000px;}
.ya6{bottom:734.325000px;}
.y134{bottom:735.405000px;}
.yfa{bottom:739.005000px;}
.yb3{bottom:741.165000px;}
.yd0{bottom:742.065000px;}
.y55{bottom:745.305000px;}
.y6a{bottom:746.385000px;}
.y133{bottom:753.225000px;}
.yf9{bottom:756.825000px;}
.ycf{bottom:759.885000px;}
.ya5{bottom:761.145000px;}
.y27{bottom:761.505000px;}
.y54{bottom:763.125000px;}
.y69{bottom:764.205000px;}
.yb2{bottom:764.925000px;}
.y132{bottom:771.045000px;}
.yf8{bottom:774.645000px;}
.yce{bottom:777.705000px;}
.ya4{bottom:779.145000px;}
.y53{bottom:781.125000px;}
.y68{bottom:782.025000px;}
.y131{bottom:789.045000px;}
.yf7{bottom:792.465000px;}
.ya3{bottom:796.965000px;}
.yb{bottom:797.505000px;}
.y52{bottom:798.945000px;}
.y67{bottom:800.025000px;}
.y130{bottom:806.865000px;}
.yf6{bottom:810.285000px;}
.ya2{bottom:814.785000px;}
.y51{bottom:816.765000px;}
.y26{bottom:817.485000px;}
.y66{bottom:817.845000px;}
.ycd{bottom:823.425000px;}
.y12f{bottom:824.685000px;}
.ya1{bottom:832.605000px;}
.y50{bottom:834.585000px;}
.y65{bottom:835.665000px;}
.yf5{bottom:837.285000px;}
.y12e{bottom:842.505000px;}
.ycc{bottom:849.165000px;}
.ya0{bottom:850.425000px;}
.y4f{bottom:852.405000px;}
.y64{bottom:853.485000px;}
.yf4{bottom:855.105000px;}
.y9f{bottom:868.245000px;}
.y12d{bottom:869.325000px;}
.y4e{bottom:870.225000px;}
.y63{bottom:871.305000px;}
.y25{bottom:876.705000px;}
.ycb{bottom:881.925000px;}
.y9e{bottom:886.245000px;}
.y12c{bottom:887.325000px;}
.y62{bottom:889.305000px;}
.y4d{bottom:890.205000px;}
.y14f{bottom:895.245000px;}
.yc9{bottom:903.165000px;}
.y9d{bottom:904.065000px;}
.y12b{bottom:905.145000px;}
.y24{bottom:905.325000px;}
.y61{bottom:907.125000px;}
.y4c{bottom:915.990000px;}
.y9c{bottom:921.930000px;}
.y14e{bottom:922.110000px;}
.y12a{bottom:923.010000px;}
.y60{bottom:924.990000px;}
.y9b{bottom:939.750000px;}
.y14d{bottom:939.930000px;}
.y129{bottom:940.830000px;}
.y5f{bottom:944.790000px;}
.ya{bottom:946.050000px;}
.y4b{bottom:948.750000px;}
.y22{bottom:952.920000px;}
.y9a{bottom:957.570000px;}
.y14c{bottom:957.750000px;}
.y128{bottom:958.650000px;}
.y3b{bottom:964.440000px;}
.y4a{bottom:966.570000px;}
.y5e{bottom:970.530000px;}
.y99{bottom:975.570000px;}
.y127{bottom:976.470000px;}
.y49{bottom:984.570000px;}
.y98{bottom:993.390000px;}
.y14b{bottom:993.570000px;}
.y126{bottom:994.470000px;}
.y5d{bottom:996.450000px;}
.y3a{bottom:1000.230000px;}
.y48{bottom:1002.390000px;}
.y97{bottom:1011.210000px;}
.y14a{bottom:1011.390000px;}
.y47{bottom:1020.210000px;}
.y125{bottom:1021.290000px;}
.y39{bottom:1026.510000px;}
.y96{bottom:1029.030000px;}
.y5c{bottom:1029.210000px;}
.y46{bottom:1038.030000px;}
.y124{bottom:1039.110000px;}
.y95{bottom:1046.850000px;}
.y5b{bottom:1047.030000px;}
.y38{bottom:1052.790000px;}
.y45{bottom:1055.850000px;}
.y123{bottom:1056.930000px;}
.y5a{bottom:1064.850000px;}
.y44{bottom:1073.670000px;}
.y122{bottom:1074.750000px;}
.y37{bottom:1079.070000px;}
.y59{bottom:1082.670000px;}
.y43{bottom:1091.670000px;}
.y121{bottom:1092.750000px;}
.y58{bottom:1100.670000px;}
.y94{bottom:1109.490000px;}
.y120{bottom:1110.570000px;}
.y42{bottom:1118.490000px;}
.y9{bottom:1119.390000px;}
.y93{bottom:1127.310000px;}
.y11f{bottom:1128.390000px;}
.y41{bottom:1136.310000px;}
.y92{bottom:1145.130000px;}
.y11e{bottom:1146.240000px;}
.y40{bottom:1154.160000px;}
.y11d{bottom:1164.060000px;}
.y3f{bottom:1171.980000px;}
.y11c{bottom:1183.860000px;}
.y3e{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y3d{bottom:1215.360000px;}
.y5{bottom:1215.540000px;}
.y3{bottom:1225.080000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.hf{height:40.985156px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.hb{height:52.998047px;}
.ha{height:54.421875px;}
.h18{height:54.864844px;}
.h1c{height:55.503491px;}
.h8{height:55.825312px;}
.h1a{height:56.214844px;}
.h13{height:58.621992px;}
.h14{height:58.763250px;}
.h15{height:60.226875px;}
.h11{height:64.800000px;}
.h6{height:65.010937px;}
.h10{height:66.757500px;}
.he{height:72.326250px;}
.h17{height:78.367500px;}
.h9{height:80.949375px;}
.hd{height:84.898125px;}
.h16{height:134.460000px;}
.hc{height:160.560000px;}
.h19{height:216.030000px;}
.h12{height:230.220000px;}
.h1b{height:236.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:85.320000px;}
.wa{width:336.130500px;}
.w9{width:370.320000px;}
.w8{width:388.180500px;}
.wb{width:393.045000px;}
.w3{width:470.160000px;}
.w7{width:500.940000px;}
.w6{width:777.420000px;}
.w4{width:783.360000px;}
.w5{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xc{left:10.800000px;}
.x5{left:54.000000px;}
.x12{left:61.200000px;}
.x11{left:65.160000px;}
.x1f{left:67.324500px;}
.x13{left:72.000000px;}
.xa{left:81.000000px;}
.xd{left:89.856000px;}
.x1{left:100.080000px;}
.x1b{left:108.036000px;}
.x6{left:161.670000px;}
.x19{left:177.915000px;}
.x18{left:198.540000px;}
.x10{left:203.790000px;}
.xf{left:242.490000px;}
.x16{left:257.070000px;}
.x14{left:265.755000px;}
.x1e{left:285.735000px;}
.xe{left:295.095000px;}
.x17{left:317.775000px;}
.x23{left:324.795000px;}
.x26{left:327.850500px;}
.x15{left:358.815000px;}
.x22{left:362.040000px;}
.x3{left:367.920000px;}
.x20{left:380.080500px;}
.x28{left:390.705000px;}
.x27{left:418.035000px;}
.x24{left:424.155000px;}
.x21{left:455.520000px;}
.x4{left:460.080000px;}
.xb{left:465.945000px;}
.x1c{left:492.945000px;}
.x1d{left:519.945000px;}
.x1a{left:779.910000px;}
.x7{left:789.090000px;}
.x25{left:836.100000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:22.496000pt;}
.ls0{letter-spacing:24.944640pt;}
.ls8{letter-spacing:46.816000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws0{word-spacing:-17.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.456000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-6.428160pt;}
._26{margin-left:-3.722027pt;}
._14{margin-left:-2.557440pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._3{width:2.409173pt;}
._6{width:3.968000pt;}
._f{width:4.866347pt;}
._5{width:5.764480pt;}
._4{width:6.672000pt;}
._7{width:7.810347pt;}
._8{width:8.736000pt;}
._9{width:9.744000pt;}
._d{width:11.286613pt;}
._e{width:12.248320pt;}
._a{width:13.817173pt;}
._c{width:15.120000pt;}
._1b{width:16.800000pt;}
._1a{width:17.930240pt;}
._1c{width:19.130240pt;}
._16{width:20.256000pt;}
._10{width:21.504000pt;}
._b{width:22.538240pt;}
._1f{width:24.261120pt;}
._1e{width:25.446613pt;}
._1d{width:26.949120pt;}
._25{width:28.154880pt;}
._21{width:29.904000pt;}
._24{width:30.828587pt;}
._29{width:32.160000pt;}
._27{width:33.338240pt;}
._22{width:34.560000pt;}
._17{width:35.664000pt;}
._20{width:36.840960pt;}
._28{width:39.792000pt;}
._19{width:40.752000pt;}
._18{width:41.773653pt;}
._2a{width:42.994347pt;}
._11{width:44.880000pt;}
._13{width:46.586880pt;}
._12{width:48.028160pt;}
._23{width:49.104000pt;}
._2f{width:52.784000pt;}
._30{width:54.016000pt;}
._2e{width:58.368000pt;}
._2b{width:81.984000pt;}
._2c{width:83.376000pt;}
._2d{width:761.664000pt;}
._2{width:1191.466667pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.080000pt;}
.yca{bottom:2.240000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y3c{bottom:7.973333pt;}
.y2b{bottom:10.946667pt;}
.y8{bottom:22.400000pt;}
.y7{bottom:38.880000pt;}
.y6{bottom:52.960000pt;}
.y34{bottom:58.746667pt;}
.y21{bottom:74.400000pt;}
.yc8{bottom:75.040000pt;}
.y149{bottom:75.200000pt;}
.y33{bottom:76.506667pt;}
.yf3{bottom:80.000000pt;}
.y80{bottom:84.000000pt;}
.yb1{bottom:88.800000pt;}
.y20{bottom:90.240000pt;}
.y18{bottom:90.400000pt;}
.yc7{bottom:91.040000pt;}
.y32{bottom:94.106667pt;}
.yf2{bottom:96.000000pt;}
.y91{bottom:97.120000pt;}
.y7f{bottom:99.840000pt;}
.y11b{bottom:101.120000pt;}
.yb0{bottom:104.640000pt;}
.y17{bottom:106.240000pt;}
.yc6{bottom:106.880000pt;}
.y31{bottom:111.706667pt;}
.yf1{bottom:111.840000pt;}
.y90{bottom:112.960000pt;}
.y1f{bottom:114.080000pt;}
.y7e{bottom:115.680000pt;}
.y11a{bottom:116.960000pt;}
.yaf{bottom:120.640000pt;}
.y16{bottom:122.080000pt;}
.yc5{bottom:122.720000pt;}
.yf0{bottom:127.680000pt;}
.y8f{bottom:128.800000pt;}
.y23{bottom:129.093333pt;}
.y30{bottom:129.346667pt;}
.y1e{bottom:129.920000pt;}
.y7d{bottom:131.520000pt;}
.y119{bottom:132.800000pt;}
.yae{bottom:136.480000pt;}
.y15{bottom:137.920000pt;}
.yc4{bottom:138.560000pt;}
.yef{bottom:143.520000pt;}
.y8e{bottom:144.800000pt;}
.y1d{bottom:145.920000pt;}
.y2f{bottom:146.946667pt;}
.y7c{bottom:147.360000pt;}
.y118{bottom:148.640000pt;}
.yad{bottom:152.320000pt;}
.y14{bottom:153.920000pt;}
.yc3{bottom:154.400000pt;}
.y148{bottom:154.560000pt;}
.yee{bottom:159.360000pt;}
.y8d{bottom:160.640000pt;}
.y1c{bottom:161.760000pt;}
.y7b{bottom:163.360000pt;}
.y2e{bottom:164.706667pt;}
.yac{bottom:168.160000pt;}
.y13{bottom:169.760000pt;}
.yc2{bottom:170.400000pt;}
.y117{bottom:172.640000pt;}
.yed{bottom:175.200000pt;}
.y8c{bottom:176.480000pt;}
.y1b{bottom:177.600000pt;}
.y2d{bottom:182.306667pt;}
.yab{bottom:184.026667pt;}
.y12{bottom:185.626667pt;}
.yc1{bottom:186.266667pt;}
.y7a{bottom:187.226667pt;}
.y116{bottom:188.506667pt;}
.yec{bottom:191.226667pt;}
.y8b{bottom:192.346667pt;}
.y1a{bottom:193.466667pt;}
.yaa{bottom:200.026667pt;}
.y11{bottom:201.466667pt;}
.yc0{bottom:202.106667pt;}
.y79{bottom:203.066667pt;}
.y115{bottom:204.346667pt;}
.yeb{bottom:207.066667pt;}
.y8a{bottom:207.866667pt;}
.y19{bottom:209.306667pt;}
.y10{bottom:217.306667pt;}
.ybf{bottom:217.946667pt;}
.y78{bottom:218.906667pt;}
.y114{bottom:220.186667pt;}
.yea{bottom:222.906667pt;}
.y89{bottom:223.706667pt;}
.ya9{bottom:223.866667pt;}
.ybe{bottom:233.786667pt;}
.y147{bottom:233.946667pt;}
.y77{bottom:234.746667pt;}
.yf{bottom:235.066667pt;}
.y113{bottom:236.026667pt;}
.ye9{bottom:238.746667pt;}
.ya8{bottom:244.986667pt;}
.y88{bottom:248.026667pt;}
.ybd{bottom:249.626667pt;}
.y146{bottom:249.786667pt;}
.y76{bottom:250.746667pt;}
.y112{bottom:251.866667pt;}
.ye8{bottom:254.586667pt;}
.y87{bottom:263.866667pt;}
.ybc{bottom:265.626667pt;}
.y75{bottom:266.586667pt;}
.y111{bottom:267.866667pt;}
.ye7{bottom:270.586667pt;}
.y2c{bottom:277.440000pt;}
.ybb{bottom:281.466667pt;}
.y74{bottom:282.106667pt;}
.y110{bottom:283.706667pt;}
.ye6{bottom:286.106667pt;}
.y86{bottom:287.706667pt;}
.y36{bottom:292.666667pt;}
.yba{bottom:297.306667pt;}
.y73{bottom:297.946667pt;}
.y10f{bottom:299.546667pt;}
.ye5{bottom:301.946667pt;}
.y85{bottom:303.546667pt;}
.yb9{bottom:313.146667pt;}
.y10e{bottom:315.386667pt;}
.y72{bottom:315.866667pt;}
.y35{bottom:318.586667pt;}
.y84{bottom:319.386667pt;}
.ye4{bottom:326.106667pt;}
.yb8{bottom:328.986667pt;}
.y145{bottom:329.146667pt;}
.y10d{bottom:331.226667pt;}
.y83{bottom:335.386667pt;}
.y71{bottom:338.906667pt;}
.ye3{bottom:341.946667pt;}
.yb7{bottom:344.986667pt;}
.y10c{bottom:347.226667pt;}
.y82{bottom:351.226667pt;}
.ye2{bottom:357.786667pt;}
.yb6{bottom:360.826667pt;}
.y70{bottom:361.786667pt;}
.y10b{bottom:363.066667pt;}
.y81{bottom:367.066667pt;}
.ye1{bottom:373.786667pt;}
.y144{bottom:376.666667pt;}
.y10a{bottom:378.906667pt;}
.yb5{bottom:384.666667pt;}
.ye0{bottom:389.626667pt;}
.y6f{bottom:390.906667pt;}
.y143{bottom:392.546667pt;}
.y109{bottom:394.786667pt;}
.ydf{bottom:405.506667pt;}
.yb4{bottom:405.666667pt;}
.y6d{bottom:409.826667pt;}
.y142{bottom:410.306667pt;}
.y108{bottom:410.626667pt;}
.yde{bottom:421.346667pt;}
.y107{bottom:434.466667pt;}
.ydd{bottom:437.186667pt;}
.y141{bottom:439.426667pt;}
.ya7{bottom:449.826667pt;}
.ydc{bottom:453.186667pt;}
.y140{bottom:455.266667pt;}
.y106{bottom:458.466667pt;}
.ydb{bottom:468.706667pt;}
.y13f{bottom:471.106667pt;}
.y105{bottom:474.306667pt;}
.y13e{bottom:486.946667pt;}
.yda{bottom:492.866667pt;}
.y104{bottom:498.146667pt;}
.y13d{bottom:502.786667pt;}
.yd9{bottom:508.706667pt;}
.y103{bottom:513.986667pt;}
.y13c{bottom:518.786667pt;}
.yd8{bottom:524.546667pt;}
.y102{bottom:529.826667pt;}
.ye{bottom:533.986667pt;}
.y13b{bottom:534.626667pt;}
.yd7{bottom:540.386667pt;}
.y101{bottom:545.826667pt;}
.y13a{bottom:550.466667pt;}
.yd{bottom:550.786667pt;}
.y2a{bottom:556.160000pt;}
.yd6{bottom:556.386667pt;}
.y100{bottom:561.666667pt;}
.y139{bottom:566.306667pt;}
.yd5{bottom:572.226667pt;}
.yff{bottom:577.506667pt;}
.y138{bottom:582.146667pt;}
.y29{bottom:592.066667pt;}
.yfe{bottom:593.346667pt;}
.yd4{bottom:596.066667pt;}
.y137{bottom:598.146667pt;}
.y6c{bottom:606.973333pt;}
.yfd{bottom:609.213333pt;}
.yd3{bottom:611.933333pt;}
.y136{bottom:614.013333pt;}
.yc{bottom:618.973333pt;}
.yfc{bottom:625.053333pt;}
.yd2{bottom:627.773333pt;}
.y57{bottom:630.813333pt;}
.y135{bottom:637.853333pt;}
.yfb{bottom:641.053333pt;}
.yd1{bottom:643.773333pt;}
.y56{bottom:646.653333pt;}
.y6b{bottom:647.613333pt;}
.y28{bottom:649.053333pt;}
.ya6{bottom:652.733333pt;}
.y134{bottom:653.693333pt;}
.yfa{bottom:656.893333pt;}
.yb3{bottom:658.813333pt;}
.yd0{bottom:659.613333pt;}
.y55{bottom:662.493333pt;}
.y6a{bottom:663.453333pt;}
.y133{bottom:669.533333pt;}
.yf9{bottom:672.733333pt;}
.ycf{bottom:675.453333pt;}
.ya5{bottom:676.573333pt;}
.y27{bottom:676.893333pt;}
.y54{bottom:678.333333pt;}
.y69{bottom:679.293333pt;}
.yb2{bottom:679.933333pt;}
.y132{bottom:685.373333pt;}
.yf8{bottom:688.573333pt;}
.yce{bottom:691.293333pt;}
.ya4{bottom:692.573333pt;}
.y53{bottom:694.333333pt;}
.y68{bottom:695.133333pt;}
.y131{bottom:701.373333pt;}
.yf7{bottom:704.413333pt;}
.ya3{bottom:708.413333pt;}
.yb{bottom:708.893333pt;}
.y52{bottom:710.173333pt;}
.y67{bottom:711.133333pt;}
.y130{bottom:717.213333pt;}
.yf6{bottom:720.253333pt;}
.ya2{bottom:724.253333pt;}
.y51{bottom:726.013333pt;}
.y26{bottom:726.653333pt;}
.y66{bottom:726.973333pt;}
.ycd{bottom:731.933333pt;}
.y12f{bottom:733.053333pt;}
.ya1{bottom:740.093333pt;}
.y50{bottom:741.853333pt;}
.y65{bottom:742.813333pt;}
.yf5{bottom:744.253333pt;}
.y12e{bottom:748.893333pt;}
.ycc{bottom:754.813333pt;}
.ya0{bottom:755.933333pt;}
.y4f{bottom:757.693333pt;}
.y64{bottom:758.653333pt;}
.yf4{bottom:760.093333pt;}
.y9f{bottom:771.773333pt;}
.y12d{bottom:772.733333pt;}
.y4e{bottom:773.533333pt;}
.y63{bottom:774.493333pt;}
.y25{bottom:779.293333pt;}
.ycb{bottom:783.933333pt;}
.y9e{bottom:787.773333pt;}
.y12c{bottom:788.733333pt;}
.y62{bottom:790.493333pt;}
.y4d{bottom:791.293333pt;}
.y14f{bottom:795.773333pt;}
.yc9{bottom:802.813333pt;}
.y9d{bottom:803.613333pt;}
.y12b{bottom:804.573333pt;}
.y24{bottom:804.733333pt;}
.y61{bottom:806.333333pt;}
.y4c{bottom:814.213333pt;}
.y9c{bottom:819.493333pt;}
.y14e{bottom:819.653333pt;}
.y12a{bottom:820.453333pt;}
.y60{bottom:822.213333pt;}
.y9b{bottom:835.333333pt;}
.y14d{bottom:835.493333pt;}
.y129{bottom:836.293333pt;}
.y5f{bottom:839.813333pt;}
.ya{bottom:840.933333pt;}
.y4b{bottom:843.333333pt;}
.y22{bottom:847.040000pt;}
.y9a{bottom:851.173333pt;}
.y14c{bottom:851.333333pt;}
.y128{bottom:852.133333pt;}
.y3b{bottom:857.280000pt;}
.y4a{bottom:859.173333pt;}
.y5e{bottom:862.693333pt;}
.y99{bottom:867.173333pt;}
.y127{bottom:867.973333pt;}
.y49{bottom:875.173333pt;}
.y98{bottom:883.013333pt;}
.y14b{bottom:883.173333pt;}
.y126{bottom:883.973333pt;}
.y5d{bottom:885.733333pt;}
.y3a{bottom:889.093333pt;}
.y48{bottom:891.013333pt;}
.y97{bottom:898.853333pt;}
.y14a{bottom:899.013333pt;}
.y47{bottom:906.853333pt;}
.y125{bottom:907.813333pt;}
.y39{bottom:912.453333pt;}
.y96{bottom:914.693333pt;}
.y5c{bottom:914.853333pt;}
.y46{bottom:922.693333pt;}
.y124{bottom:923.653333pt;}
.y95{bottom:930.533333pt;}
.y5b{bottom:930.693333pt;}
.y38{bottom:935.813333pt;}
.y45{bottom:938.533333pt;}
.y123{bottom:939.493333pt;}
.y5a{bottom:946.533333pt;}
.y44{bottom:954.373333pt;}
.y122{bottom:955.333333pt;}
.y37{bottom:959.173333pt;}
.y59{bottom:962.373333pt;}
.y43{bottom:970.373333pt;}
.y121{bottom:971.333333pt;}
.y58{bottom:978.373333pt;}
.y94{bottom:986.213333pt;}
.y120{bottom:987.173333pt;}
.y42{bottom:994.213333pt;}
.y9{bottom:995.013333pt;}
.y93{bottom:1002.053333pt;}
.y11f{bottom:1003.013333pt;}
.y41{bottom:1010.053333pt;}
.y92{bottom:1017.893333pt;}
.y11e{bottom:1018.880000pt;}
.y40{bottom:1025.920000pt;}
.y11d{bottom:1034.720000pt;}
.y3f{bottom:1041.760000pt;}
.y11c{bottom:1052.320000pt;}
.y3e{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y3d{bottom:1080.320000pt;}
.y5{bottom:1080.480000pt;}
.y3{bottom:1088.960000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.hf{height:36.431250pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.hb{height:47.109375pt;}
.ha{height:48.375000pt;}
.h18{height:48.768750pt;}
.h1c{height:49.336436pt;}
.h8{height:49.622500pt;}
.h1a{height:49.968750pt;}
.h13{height:52.108438pt;}
.h14{height:52.234000pt;}
.h15{height:53.535000pt;}
.h11{height:57.600000pt;}
.h6{height:57.787500pt;}
.h10{height:59.340000pt;}
.he{height:64.290000pt;}
.h17{height:69.660000pt;}
.h9{height:71.955000pt;}
.hd{height:75.465000pt;}
.h16{height:119.520000pt;}
.hc{height:142.720000pt;}
.h19{height:192.026667pt;}
.h12{height:204.640000pt;}
.h1b{height:210.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:75.840000pt;}
.wa{width:298.782667pt;}
.w9{width:329.173333pt;}
.w8{width:345.049333pt;}
.wb{width:349.373333pt;}
.w3{width:417.920000pt;}
.w7{width:445.280000pt;}
.w6{width:691.040000pt;}
.w4{width:696.320000pt;}
.w5{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xc{left:9.600000pt;}
.x5{left:48.000000pt;}
.x12{left:54.400000pt;}
.x11{left:57.920000pt;}
.x1f{left:59.844000pt;}
.x13{left:64.000000pt;}
.xa{left:72.000000pt;}
.xd{left:79.872000pt;}
.x1{left:88.960000pt;}
.x1b{left:96.032000pt;}
.x6{left:143.706667pt;}
.x19{left:158.146667pt;}
.x18{left:176.480000pt;}
.x10{left:181.146667pt;}
.xf{left:215.546667pt;}
.x16{left:228.506667pt;}
.x14{left:236.226667pt;}
.x1e{left:253.986667pt;}
.xe{left:262.306667pt;}
.x17{left:282.466667pt;}
.x23{left:288.706667pt;}
.x26{left:291.422667pt;}
.x15{left:318.946667pt;}
.x22{left:321.813333pt;}
.x3{left:327.040000pt;}
.x20{left:337.849333pt;}
.x28{left:347.293333pt;}
.x27{left:371.586667pt;}
.x24{left:377.026667pt;}
.x21{left:404.906667pt;}
.x4{left:408.960000pt;}
.xb{left:414.173333pt;}
.x1c{left:438.173333pt;}
.x1d{left:462.173333pt;}
.x1a{left:693.253333pt;}
.x7{left:701.413333pt;}
.x25{left:743.200000pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
}




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