
    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_542003f06cf17f4faf798f51.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f5cebfa90f64da5a9cc9ef6b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_df76ec8f875b74747a771123.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7e419ade7e11380284eb7470.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe5b5fba5302bf9bba508ee2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.332000px;}
.lsd{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.018720px;}
.lse{letter-spacing:0.070560px;}
.lsa{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.540000px;}
.ls14{letter-spacing:11.466720px;}
.ls12{letter-spacing:41.850720px;}
.lsf{letter-spacing:43.866720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.940000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.ws7{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2912.842080px;}
._2{margin-left:-1386.118080px;}
._4{margin-left:-1021.930560px;}
._3{margin-left:-938.931840px;}
._5{margin-left:-512.988480px;}
._6{margin-left:-6.480000px;}
._7{margin-left:-4.432320px;}
._0{margin-left:-1.347840px;}
._9{width:1.311360px;}
._10{width:3.044160px;}
._13{width:4.425600px;}
._12{width:5.557680px;}
._f{width:6.756240px;}
._1a{width:7.833600px;}
._c{width:8.907600px;}
._b{width:9.979920px;}
._19{width:11.155200px;}
._1b{width:12.446880px;}
._14{width:13.688400px;}
._d{width:16.317840px;}
._e{width:17.569440px;}
._11{width:19.422000px;}
._16{width:20.769840px;}
._15{width:22.170960px;}
._18{width:23.710080px;}
._17{width:24.726720px;}
._1c{width:25.745280px;}
._21{width:29.454960px;}
._22{width:30.498480px;}
._1f{width:40.114800px;}
._1e{width:44.495040px;}
._1d{width:45.956160px;}
._a{width:55.378080px;}
._8{width:56.439120px;}
._20{width:197.604000px;}
.fc2{color:rgb(54,95,145);}
.fc3{color:rgb(32,33,36);}
.fc1{color:rgb(36,32,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:2.874000px;}
.y9b{bottom:2.880000px;}
.y9e{bottom:3.060000px;}
.yf6{bottom:3.240000px;}
.y9d{bottom:4.320000px;}
.ya6{bottom:4.500000px;}
.y10a{bottom:4.680000px;}
.yfe{bottom:4.860000px;}
.y117{bottom:5.430000px;}
.yac{bottom:5.760000px;}
.yba{bottom:5.790000px;}
.yf{bottom:5.940000px;}
.y111{bottom:6.660000px;}
.y115{bottom:6.840000px;}
.y24{bottom:7.020000px;}
.ybe{bottom:7.200000px;}
.yb8{bottom:7.380000px;}
.yf8{bottom:18.900000px;}
.ya2{bottom:19.794000px;}
.y99{bottom:19.980000px;}
.yf5{bottom:20.340000px;}
.yfa{bottom:20.520000px;}
.y103{bottom:20.565000px;}
.y109{bottom:21.960000px;}
.yfd{bottom:22.140000px;}
.y114{bottom:24.150000px;}
.yb2{bottom:25.380000px;}
.yd5{bottom:25.560000px;}
.y33{bottom:25.740000px;}
.y23{bottom:26.820000px;}
.yb4{bottom:27.180000px;}
.yb7{bottom:27.210000px;}
.ye1{bottom:27.225000px;}
.y97{bottom:30.780000px;}
.y105{bottom:36.225000px;}
.yf4{bottom:37.620000px;}
.y102{bottom:37.665000px;}
.yf2{bottom:42.300000px;}
.yb1{bottom:45.180000px;}
.y32{bottom:45.540000px;}
.yd4{bottom:45.570000px;}
.y96{bottom:46.440000px;}
.y101{bottom:54.945000px;}
.y22{bottom:55.620000px;}
.yf1{bottom:59.580000px;}
.y6{bottom:59.976000px;}
.y95{bottom:61.920000px;}
.yb0{bottom:64.980000px;}
.y31{bottom:65.340000px;}
.yd3{bottom:65.370000px;}
.y21{bottom:75.600000px;}
.ya8{bottom:81.036000px;}
.y19d{bottom:84.276000px;}
.y30{bottom:85.140000px;}
.y40{bottom:85.176000px;}
.y13e{bottom:89.496000px;}
.y174{bottom:89.676000px;}
.y176{bottom:91.476000px;}
.y77{bottom:93.276000px;}
.yd1{bottom:94.536000px;}
.y110{bottom:94.896000px;}
.y20{bottom:95.400000px;}
.ya9{bottom:98.136000px;}
.y93{bottom:102.276000px;}
.y19c{bottom:104.076000px;}
.y2f{bottom:105.150000px;}
.y3f{bottom:105.156000px;}
.y173{bottom:109.656000px;}
.y175{bottom:111.276000px;}
.y76{bottom:113.076000px;}
.y14e{bottom:113.616000px;}
.yd0{bottom:114.336000px;}
.ya5{bottom:115.056000px;}
.y1f{bottom:115.230000px;}
.y10e{bottom:117.036000px;}
.y19b{bottom:123.876000px;}
.y2e{bottom:124.950000px;}
.y3e{bottom:124.956000px;}
.y92{bottom:131.076000px;}
.ya7{bottom:132.156000px;}
.y75{bottom:132.876000px;}
.y14d{bottom:133.596000px;}
.ycf{bottom:134.316000px;}
.y1e{bottom:135.030000px;}
.y10f{bottom:135.936000px;}
.y172{bottom:138.456000px;}
.y19a{bottom:143.676000px;}
.y2d{bottom:144.750000px;}
.y3d{bottom:144.756000px;}
.ya1{bottom:149.256000px;}
.y91{bottom:150.870000px;}
.y74{bottom:152.670000px;}
.y14c{bottom:153.390000px;}
.yce{bottom:154.110000px;}
.y10c{bottom:154.650000px;}
.y1d{bottom:154.830000px;}
.y171{bottom:158.250000px;}
.y199{bottom:163.650000px;}
.y2c{bottom:164.550000px;}
.ya3{bottom:166.170000px;}
.y90{bottom:170.670000px;}
.y73{bottom:172.650000px;}
.y14b{bottom:173.190000px;}
.y10d{bottom:173.370000px;}
.ycd{bottom:173.910000px;}
.y1c{bottom:174.810000px;}
.y170{bottom:178.050000px;}
.y9f{bottom:183.270000px;}
.y198{bottom:183.450000px;}
.y2b{bottom:184.350000px;}
.y8f{bottom:190.650000px;}
.y108{bottom:192.090000px;}
.y72{bottom:192.450000px;}
.y14a{bottom:192.990000px;}
.ycc{bottom:193.710000px;}
.y1b{bottom:194.610000px;}
.y16f{bottom:197.850000px;}
.ya0{bottom:200.190000px;}
.y197{bottom:203.250000px;}
.y2a{bottom:204.330000px;}
.y149{bottom:209.730000px;}
.y8e{bottom:210.450000px;}
.y10b{bottom:210.810000px;}
.y1b0{bottom:212.250000px;}
.ycb{bottom:213.510000px;}
.y1a{bottom:214.410000px;}
.y9c{bottom:217.290000px;}
.y16e{bottom:217.830000px;}
.y71{bottom:221.250000px;}
.y196{bottom:223.050000px;}
.y29{bottom:224.130000px;}
.y106{bottom:229.530000px;}
.y8d{bottom:230.250000px;}
.y1af{bottom:232.050000px;}
.yca{bottom:233.490000px;}
.y19{bottom:234.210000px;}
.y16d{bottom:237.630000px;}
.y70{bottom:241.050000px;}
.y195{bottom:242.850000px;}
.y28{bottom:243.930000px;}
.y107{bottom:248.430000px;}
.y8c{bottom:250.050000px;}
.y98{bottom:251.310000px;}
.y1ae{bottom:251.850000px;}
.yc9{bottom:253.290000px;}
.y18{bottom:254.010000px;}
.y16c{bottom:257.430000px;}
.y6f{bottom:260.850000px;}
.y194{bottom:262.830000px;}
.y27{bottom:263.730000px;}
.y100{bottom:267.150000px;}
.y9a{bottom:268.410000px;}
.y8b{bottom:269.850000px;}
.y1ad{bottom:271.830000px;}
.yc8{bottom:273.135000px;}
.y17{bottom:273.990000px;}
.y16b{bottom:277.275000px;}
.y6e{bottom:280.875000px;}
.y193{bottom:282.675000px;}
.y26{bottom:283.530000px;}
.y3c{bottom:283.575000px;}
.y94{bottom:287.355000px;}
.y8a{bottom:289.875000px;}
.y1ac{bottom:291.675000px;}
.yc7{bottom:292.935000px;}
.y16{bottom:293.790000px;}
.y16a{bottom:297.075000px;}
.y6d{bottom:300.675000px;}
.y192{bottom:302.475000px;}
.y3b{bottom:303.555000px;}
.y89{bottom:309.675000px;}
.y1ab{bottom:311.475000px;}
.yc6{bottom:312.735000px;}
.y15{bottom:313.590000px;}
.y13d{bottom:313.635000px;}
.y169{bottom:317.055000px;}
.y25{bottom:318.450000px;}
.y104{bottom:318.855000px;}
.y6c{bottom:320.475000px;}
.y191{bottom:322.275000px;}
.y3a{bottom:323.355000px;}
.y88{bottom:329.475000px;}
.y1aa{bottom:331.275000px;}
.yc5{bottom:332.715000px;}
.y14{bottom:333.390000px;}
.y13c{bottom:333.615000px;}
.y168{bottom:336.855000px;}
.yfc{bottom:337.575000px;}
.y6b{bottom:340.275000px;}
.y190{bottom:342.075000px;}
.y39{bottom:343.155000px;}
.y87{bottom:349.275000px;}
.y1a9{bottom:351.075000px;}
.yc4{bottom:352.515000px;}
.y13{bottom:353.190000px;}
.y13b{bottom:353.415000px;}
.yff{bottom:356.475000px;}
.y167{bottom:356.655000px;}
.y6a{bottom:360.075000px;}
.y18f{bottom:362.055000px;}
.y38{bottom:362.955000px;}
.y86{bottom:369.075000px;}
.y1a8{bottom:371.055000px;}
.yc3{bottom:372.315000px;}
.y12{bottom:373.170000px;}
.y13a{bottom:373.215000px;}
.yf9{bottom:375.195000px;}
.y166{bottom:376.455000px;}
.y69{bottom:380.055000px;}
.y18e{bottom:381.855000px;}
.y37{bottom:382.755000px;}
.y85{bottom:389.055000px;}
.y1a7{bottom:390.855000px;}
.yc2{bottom:392.115000px;}
.y11{bottom:393.015000px;}
.y165{bottom:396.255000px;}
.y68{bottom:399.855000px;}
.y18d{bottom:401.655000px;}
.y36{bottom:402.735000px;}
.y84{bottom:408.855000px;}
.yfb{bottom:409.575000px;}
.y1a6{bottom:410.655000px;}
.yc1{bottom:411.915000px;}
.y139{bottom:412.815000px;}
.y164{bottom:416.235000px;}
.y67{bottom:419.655000px;}
.y18c{bottom:421.455000px;}
.y35{bottom:422.535000px;}
.yf3{bottom:428.475000px;}
.y83{bottom:428.655000px;}
.y1a5{bottom:430.455000px;}
.yc0{bottom:431.895000px;}
.y138{bottom:432.795000px;}
.y163{bottom:436.035000px;}
.y66{bottom:439.455000px;}
.y148{bottom:440.535000px;}
.y18b{bottom:441.255000px;}
.y34{bottom:442.335000px;}
.ybd{bottom:447.375000px;}
.y82{bottom:448.455000px;}
.y1a4{bottom:450.255000px;}
.y137{bottom:452.595000px;}
.y162{bottom:455.835000px;}
.y10{bottom:458.535000px;}
.y65{bottom:459.255000px;}
.y147{bottom:460.335000px;}
.yf7{bottom:462.855000px;}
.y81{bottom:468.255000px;}
.ybf{bottom:468.615000px;}
.y18a{bottom:470.235000px;}
.y136{bottom:472.395000px;}
.y161{bottom:475.635000px;}
.y64{bottom:479.235000px;}
.y146{bottom:480.135000px;}
.yf0{bottom:483.555000px;}
.y80{bottom:488.235000px;}
.ybb{bottom:490.035000px;}
.y135{bottom:492.195000px;}
.y160{bottom:495.435000px;}
.y63{bottom:499.035000px;}
.y145{bottom:499.935000px;}
.y7f{bottom:508.035000px;}
.y189{bottom:509.835000px;}
.ybc{bottom:511.455000px;}
.y134{bottom:511.995000px;}
.y15f{bottom:515.415000px;}
.y62{bottom:518.835000px;}
.y144{bottom:519.915000px;}
.y7e{bottom:527.835000px;}
.y188{bottom:529.635000px;}
.y133{bottom:531.975000px;}
.yb6{bottom:532.695000px;}
.y15e{bottom:535.215000px;}
.y61{bottom:538.635000px;}
.y143{bottom:539.715000px;}
.y7d{bottom:547.635000px;}
.y187{bottom:549.435000px;}
.y132{bottom:551.775000px;}
.yb9{bottom:554.115000px;}
.y15d{bottom:555.015000px;}
.y60{bottom:558.465000px;}
.y142{bottom:559.545000px;}
.yef{bottom:564.405000px;}
.y7c{bottom:567.465000px;}
.y186{bottom:569.445000px;}
.y131{bottom:571.605000px;}
.y15c{bottom:574.845000px;}
.yb3{bottom:575.385000px;}
.y5f{bottom:578.445000px;}
.y141{bottom:579.345000px;}
.yee{bottom:584.385000px;}
.y7b{bottom:587.445000px;}
.y185{bottom:589.245000px;}
.y130{bottom:591.405000px;}
.y15b{bottom:594.645000px;}
.yb5{bottom:596.805000px;}
.y5e{bottom:598.245000px;}
.y140{bottom:599.145000px;}
.yed{bottom:604.185000px;}
.y7a{bottom:607.245000px;}
.y184{bottom:609.045000px;}
.y12f{bottom:611.205000px;}
.y15a{bottom:614.625000px;}
.y13f{bottom:615.705000px;}
.y5d{bottom:618.045000px;}
.yaf{bottom:620.025000px;}
.yec{bottom:623.985000px;}
.y79{bottom:627.045000px;}
.y183{bottom:628.845000px;}
.y12e{bottom:631.185000px;}
.y159{bottom:634.425000px;}
.y5c{bottom:637.845000px;}
.yeb{bottom:643.785000px;}
.y78{bottom:646.845000px;}
.y182{bottom:648.645000px;}
.y12d{bottom:650.985000px;}
.y1a3{bottom:657.645000px;}
.y158{bottom:663.225000px;}
.yea{bottom:663.585000px;}
.y5b{bottom:666.645000px;}
.y12c{bottom:670.785000px;}
.y181{bottom:677.625000px;}
.y157{bottom:683.025000px;}
.ye9{bottom:683.565000px;}
.y5a{bottom:686.625000px;}
.y12b{bottom:690.585000px;}
.y180{bottom:697.425000px;}
.y156{bottom:702.825000px;}
.ye8{bottom:703.365000px;}
.y59{bottom:706.425000px;}
.y17f{bottom:717.225000px;}
.y12a{bottom:719.385000px;}
.y155{bottom:722.805000px;}
.ye7{bottom:723.165000px;}
.y58{bottom:726.225000px;}
.y17e{bottom:737.025000px;}
.y129{bottom:739.365000px;}
.y154{bottom:742.605000px;}
.ye6{bottom:742.965000px;}
.y57{bottom:746.025000px;}
.y17d{bottom:756.825000px;}
.y128{bottom:759.165000px;}
.y153{bottom:762.405000px;}
.ye5{bottom:762.765000px;}
.y56{bottom:765.825000px;}
.y17c{bottom:776.805000px;}
.y127{bottom:778.965000px;}
.y152{bottom:782.205000px;}
.ye4{bottom:782.745000px;}
.y55{bottom:785.805000px;}
.y17b{bottom:796.605000px;}
.y126{bottom:798.765000px;}
.y151{bottom:802.005000px;}
.ye3{bottom:802.545000px;}
.y54{bottom:805.605000px;}
.y17a{bottom:816.405000px;}
.ye0{bottom:818.025000px;}
.y125{bottom:818.565000px;}
.y150{bottom:821.985000px;}
.y53{bottom:825.405000px;}
.yae{bottom:831.525000px;}
.y179{bottom:836.205000px;}
.y14f{bottom:838.365000px;}
.ye2{bottom:839.490000px;}
.y52{bottom:845.250000px;}
.y124{bottom:847.590000px;}
.yad{bottom:851.370000px;}
.y178{bottom:856.050000px;}
.yde{bottom:860.730000px;}
.y51{bottom:865.050000px;}
.y123{bottom:867.390000px;}
.ye{bottom:867.750000px;}
.yab{bottom:871.170000px;}
.y177{bottom:875.850000px;}
.ydf{bottom:882.150000px;}
.y50{bottom:884.850000px;}
.y122{bottom:887.190000px;}
.yaa{bottom:892.410000px;}
.yd{bottom:895.650000px;}
.y1a2{bottom:895.830000px;}
.ydc{bottom:903.390000px;}
.y4f{bottom:904.830000px;}
.y121{bottom:906.990000px;}
.y1a1{bottom:915.630000px;}
.yc{bottom:920.670000px;}
.y4e{bottom:924.630000px;}
.ydd{bottom:924.810000px;}
.y120{bottom:926.790000px;}
.y1a0{bottom:935.430000px;}
.yb{bottom:940.650000px;}
.y4d{bottom:944.430000px;}
.yda{bottom:946.050000px;}
.y11f{bottom:946.770000px;}
.y19f{bottom:955.230000px;}
.ya{bottom:955.770000px;}
.y4c{bottom:964.230000px;}
.y11e{bottom:966.570000px;}
.ydb{bottom:967.470000px;}
.y19e{bottom:975.030000px;}
.y9{bottom:977.010000px;}
.y4b{bottom:984.030000px;}
.y11d{bottom:986.370000px;}
.yd8{bottom:988.710000px;}
.y8{bottom:1000.410000px;}
.y4a{bottom:1004.010000px;}
.y11c{bottom:1006.170000px;}
.yd9{bottom:1010.130000px;}
.y49{bottom:1023.810000px;}
.y11b{bottom:1025.970000px;}
.yd6{bottom:1031.370000px;}
.y7{bottom:1032.270000px;}
.y48{bottom:1043.610000px;}
.y11a{bottom:1045.950000px;}
.yd7{bottom:1052.790000px;}
.y47{bottom:1063.410000px;}
.y119{bottom:1065.750000px;}
.y5{bottom:1070.790000px;}
.yd2{bottom:1076.010000px;}
.y46{bottom:1083.210000px;}
.y118{bottom:1085.550000px;}
.y4{bottom:1100.310000px;}
.y113{bottom:1101.030000px;}
.y45{bottom:1103.190000px;}
.y116{bottom:1119.750000px;}
.y44{bottom:1123.020000px;}
.y3{bottom:1129.680000px;}
.y112{bottom:1140.660000px;}
.y43{bottom:1142.820000px;}
.y2{bottom:1159.200000px;}
.y42{bottom:1162.620000px;}
.y1{bottom:1190.160000px;}
.y41{bottom:1194.300000px;}
.h12{height:15.480000px;}
.h11{height:15.516000px;}
.h14{height:15.660000px;}
.h22{height:17.100000px;}
.h1f{height:17.280000px;}
.h28{height:19.476000px;}
.h17{height:19.800000px;}
.h18{height:19.836000px;}
.ha{height:19.980000px;}
.h25{height:20.700000px;}
.h8{height:28.115859px;}
.h15{height:32.400000px;}
.h13{height:32.580000px;}
.h10{height:32.616000px;}
.h20{height:32.940000px;}
.h26{height:34.560000px;}
.h21{height:36.000000px;}
.he{height:38.100586px;}
.h27{height:38.196000px;}
.hf{height:39.049805px;}
.h16{height:39.780000px;}
.h1a{height:41.220000px;}
.h1b{height:41.256000px;}
.h2a{height:41.493516px;}
.h6{height:42.164648px;}
.h9{height:43.215117px;}
.h2b{height:43.506914px;}
.h29{height:44.265586px;}
.hc{height:46.736719px;}
.h3{height:47.901094px;}
.h24{height:50.256000px;}
.h1e{height:51.660000px;}
.h4{height:52.066406px;}
.h7{height:53.224453px;}
.h2{height:59.436914px;}
.h5{height:67.565039px;}
.h23{height:68.976000px;}
.h1d{height:73.656000px;}
.hd{height:74.520000px;}
.h19{height:79.020000px;}
.h1c{height:79.416000px;}
.hb{height:407.055000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:32.220000px;}
.w16{width:32.760000px;}
.w1b{width:32.940000px;}
.w6{width:34.740000px;}
.w13{width:51.120000px;}
.w14{width:51.156000px;}
.w18{width:52.560000px;}
.w19{width:52.596000px;}
.w17{width:52.740000px;}
.w1c{width:52.920000px;}
.w1d{width:52.956000px;}
.w7{width:57.780000px;}
.w8{width:57.996000px;}
.wf{width:72.936000px;}
.we{width:73.440000px;}
.w10{width:82.440000px;}
.wb{width:84.240000px;}
.wd{width:84.276000px;}
.wc{width:88.740000px;}
.wa{width:88.776000px;}
.w9{width:104.760000px;}
.w4{width:170.130000px;}
.w15{width:446.685000px;}
.w1a{width:447.945000px;}
.w11{width:503.385000px;}
.w5{width:512.025000px;}
.w3{width:625.425000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x8{left:20.160000px;}
.x17{left:21.600000px;}
.xa{left:36.225000px;}
.x21{left:39.240000px;}
.x19{left:41.985000px;}
.x2{left:48.780000px;}
.x1{left:54.179987px;}
.x28{left:80.999987px;}
.x5{left:83.340000px;}
.x20{left:96.660000px;}
.x1b{left:97.740000px;}
.x14{left:98.820000px;}
.xc{left:106.776000px;}
.x29{left:108.035987px;}
.x22{left:182.549987px;}
.x24{left:198.749987px;}
.xd{left:211.530000px;}
.xe{left:300.315000px;}
.xf{left:384.555000px;}
.x10{left:473.295000px;}
.x1c{left:545.865000px;}
.x11{left:557.565000px;}
.x1d{left:580.065000px;}
.x6{left:596.805000px;}
.x15{left:603.645000px;}
.x12{left:631.005000px;}
.x7{left:633.165000px;}
.x1e{left:634.245000px;}
.x16{left:637.485000px;}
.x4{left:674.205000px;}
.x23{left:686.624987px;}
.x1f{left:688.425000px;}
.x18{left:690.225000px;}
.x9{left:692.385000px;}
.x25{left:693.464987px;}
.x27{left:699.629987px;}
.x13{left:703.950000px;}
.x1a{left:743.010000px;}
.xb{left:751.830000px;}
.x26{left:763.889987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.184000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.062720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls14{letter-spacing:10.192640pt;}
.ls12{letter-spacing:37.200640pt;}
.lsf{letter-spacing:38.992640pt;}
.ws0{word-spacing:-21.280000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2589.192960pt;}
._2{margin-left:-1232.104960pt;}
._4{margin-left:-908.382720pt;}
._3{margin-left:-834.606080pt;}
._5{margin-left:-455.989760pt;}
._6{margin-left:-5.760000pt;}
._7{margin-left:-3.939840pt;}
._0{margin-left:-1.198080pt;}
._9{width:1.165653pt;}
._10{width:2.705920pt;}
._13{width:3.933867pt;}
._12{width:4.940160pt;}
._f{width:6.005547pt;}
._1a{width:6.963200pt;}
._c{width:7.917867pt;}
._b{width:8.871040pt;}
._19{width:9.915733pt;}
._1b{width:11.063893pt;}
._14{width:12.167467pt;}
._d{width:14.504747pt;}
._e{width:15.617280pt;}
._11{width:17.264000pt;}
._16{width:18.462080pt;}
._15{width:19.707520pt;}
._18{width:21.075627pt;}
._17{width:21.979307pt;}
._1c{width:22.884693pt;}
._21{width:26.182187pt;}
._22{width:27.109760pt;}
._1f{width:35.657600pt;}
._1e{width:39.551147pt;}
._1d{width:40.849920pt;}
._a{width:49.224960pt;}
._8{width:50.168107pt;}
._20{width:175.648000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.554667pt;}
.y9b{bottom:2.560000pt;}
.y9e{bottom:2.720000pt;}
.yf6{bottom:2.880000pt;}
.y9d{bottom:3.840000pt;}
.ya6{bottom:4.000000pt;}
.y10a{bottom:4.160000pt;}
.yfe{bottom:4.320000pt;}
.y117{bottom:4.826667pt;}
.yac{bottom:5.120000pt;}
.yba{bottom:5.146667pt;}
.yf{bottom:5.280000pt;}
.y111{bottom:5.920000pt;}
.y115{bottom:6.080000pt;}
.y24{bottom:6.240000pt;}
.ybe{bottom:6.400000pt;}
.yb8{bottom:6.560000pt;}
.yf8{bottom:16.800000pt;}
.ya2{bottom:17.594667pt;}
.y99{bottom:17.760000pt;}
.yf5{bottom:18.080000pt;}
.yfa{bottom:18.240000pt;}
.y103{bottom:18.280000pt;}
.y109{bottom:19.520000pt;}
.yfd{bottom:19.680000pt;}
.y114{bottom:21.466667pt;}
.yb2{bottom:22.560000pt;}
.yd5{bottom:22.720000pt;}
.y33{bottom:22.880000pt;}
.y23{bottom:23.840000pt;}
.yb4{bottom:24.160000pt;}
.yb7{bottom:24.186667pt;}
.ye1{bottom:24.200000pt;}
.y97{bottom:27.360000pt;}
.y105{bottom:32.200000pt;}
.yf4{bottom:33.440000pt;}
.y102{bottom:33.480000pt;}
.yf2{bottom:37.600000pt;}
.yb1{bottom:40.160000pt;}
.y32{bottom:40.480000pt;}
.yd4{bottom:40.506667pt;}
.y96{bottom:41.280000pt;}
.y101{bottom:48.840000pt;}
.y22{bottom:49.440000pt;}
.yf1{bottom:52.960000pt;}
.y6{bottom:53.312000pt;}
.y95{bottom:55.040000pt;}
.yb0{bottom:57.760000pt;}
.y31{bottom:58.080000pt;}
.yd3{bottom:58.106667pt;}
.y21{bottom:67.200000pt;}
.ya8{bottom:72.032000pt;}
.y19d{bottom:74.912000pt;}
.y30{bottom:75.680000pt;}
.y40{bottom:75.712000pt;}
.y13e{bottom:79.552000pt;}
.y174{bottom:79.712000pt;}
.y176{bottom:81.312000pt;}
.y77{bottom:82.912000pt;}
.yd1{bottom:84.032000pt;}
.y110{bottom:84.352000pt;}
.y20{bottom:84.800000pt;}
.ya9{bottom:87.232000pt;}
.y93{bottom:90.912000pt;}
.y19c{bottom:92.512000pt;}
.y2f{bottom:93.466667pt;}
.y3f{bottom:93.472000pt;}
.y173{bottom:97.472000pt;}
.y175{bottom:98.912000pt;}
.y76{bottom:100.512000pt;}
.y14e{bottom:100.992000pt;}
.yd0{bottom:101.632000pt;}
.ya5{bottom:102.272000pt;}
.y1f{bottom:102.426667pt;}
.y10e{bottom:104.032000pt;}
.y19b{bottom:110.112000pt;}
.y2e{bottom:111.066667pt;}
.y3e{bottom:111.072000pt;}
.y92{bottom:116.512000pt;}
.ya7{bottom:117.472000pt;}
.y75{bottom:118.112000pt;}
.y14d{bottom:118.752000pt;}
.ycf{bottom:119.392000pt;}
.y1e{bottom:120.026667pt;}
.y10f{bottom:120.832000pt;}
.y172{bottom:123.072000pt;}
.y19a{bottom:127.712000pt;}
.y2d{bottom:128.666667pt;}
.y3d{bottom:128.672000pt;}
.ya1{bottom:132.672000pt;}
.y91{bottom:134.106667pt;}
.y74{bottom:135.706667pt;}
.y14c{bottom:136.346667pt;}
.yce{bottom:136.986667pt;}
.y10c{bottom:137.466667pt;}
.y1d{bottom:137.626667pt;}
.y171{bottom:140.666667pt;}
.y199{bottom:145.466667pt;}
.y2c{bottom:146.266667pt;}
.ya3{bottom:147.706667pt;}
.y90{bottom:151.706667pt;}
.y73{bottom:153.466667pt;}
.y14b{bottom:153.946667pt;}
.y10d{bottom:154.106667pt;}
.ycd{bottom:154.586667pt;}
.y1c{bottom:155.386667pt;}
.y170{bottom:158.266667pt;}
.y9f{bottom:162.906667pt;}
.y198{bottom:163.066667pt;}
.y2b{bottom:163.866667pt;}
.y8f{bottom:169.466667pt;}
.y108{bottom:170.746667pt;}
.y72{bottom:171.066667pt;}
.y14a{bottom:171.546667pt;}
.ycc{bottom:172.186667pt;}
.y1b{bottom:172.986667pt;}
.y16f{bottom:175.866667pt;}
.ya0{bottom:177.946667pt;}
.y197{bottom:180.666667pt;}
.y2a{bottom:181.626667pt;}
.y149{bottom:186.426667pt;}
.y8e{bottom:187.066667pt;}
.y10b{bottom:187.386667pt;}
.y1b0{bottom:188.666667pt;}
.ycb{bottom:189.786667pt;}
.y1a{bottom:190.586667pt;}
.y9c{bottom:193.146667pt;}
.y16e{bottom:193.626667pt;}
.y71{bottom:196.666667pt;}
.y196{bottom:198.266667pt;}
.y29{bottom:199.226667pt;}
.y106{bottom:204.026667pt;}
.y8d{bottom:204.666667pt;}
.y1af{bottom:206.266667pt;}
.yca{bottom:207.546667pt;}
.y19{bottom:208.186667pt;}
.y16d{bottom:211.226667pt;}
.y70{bottom:214.266667pt;}
.y195{bottom:215.866667pt;}
.y28{bottom:216.826667pt;}
.y107{bottom:220.826667pt;}
.y8c{bottom:222.266667pt;}
.y98{bottom:223.386667pt;}
.y1ae{bottom:223.866667pt;}
.yc9{bottom:225.146667pt;}
.y18{bottom:225.786667pt;}
.y16c{bottom:228.826667pt;}
.y6f{bottom:231.866667pt;}
.y194{bottom:233.626667pt;}
.y27{bottom:234.426667pt;}
.y100{bottom:237.466667pt;}
.y9a{bottom:238.586667pt;}
.y8b{bottom:239.866667pt;}
.y1ad{bottom:241.626667pt;}
.yc8{bottom:242.786667pt;}
.y17{bottom:243.546667pt;}
.y16b{bottom:246.466667pt;}
.y6e{bottom:249.666667pt;}
.y193{bottom:251.266667pt;}
.y26{bottom:252.026667pt;}
.y3c{bottom:252.066667pt;}
.y94{bottom:255.426667pt;}
.y8a{bottom:257.666667pt;}
.y1ac{bottom:259.266667pt;}
.yc7{bottom:260.386667pt;}
.y16{bottom:261.146667pt;}
.y16a{bottom:264.066667pt;}
.y6d{bottom:267.266667pt;}
.y192{bottom:268.866667pt;}
.y3b{bottom:269.826667pt;}
.y89{bottom:275.266667pt;}
.y1ab{bottom:276.866667pt;}
.yc6{bottom:277.986667pt;}
.y15{bottom:278.746667pt;}
.y13d{bottom:278.786667pt;}
.y169{bottom:281.826667pt;}
.y25{bottom:283.066667pt;}
.y104{bottom:283.426667pt;}
.y6c{bottom:284.866667pt;}
.y191{bottom:286.466667pt;}
.y3a{bottom:287.426667pt;}
.y88{bottom:292.866667pt;}
.y1aa{bottom:294.466667pt;}
.yc5{bottom:295.746667pt;}
.y14{bottom:296.346667pt;}
.y13c{bottom:296.546667pt;}
.y168{bottom:299.426667pt;}
.yfc{bottom:300.066667pt;}
.y6b{bottom:302.466667pt;}
.y190{bottom:304.066667pt;}
.y39{bottom:305.026667pt;}
.y87{bottom:310.466667pt;}
.y1a9{bottom:312.066667pt;}
.yc4{bottom:313.346667pt;}
.y13{bottom:313.946667pt;}
.y13b{bottom:314.146667pt;}
.yff{bottom:316.866667pt;}
.y167{bottom:317.026667pt;}
.y6a{bottom:320.066667pt;}
.y18f{bottom:321.826667pt;}
.y38{bottom:322.626667pt;}
.y86{bottom:328.066667pt;}
.y1a8{bottom:329.826667pt;}
.yc3{bottom:330.946667pt;}
.y12{bottom:331.706667pt;}
.y13a{bottom:331.746667pt;}
.yf9{bottom:333.506667pt;}
.y166{bottom:334.626667pt;}
.y69{bottom:337.826667pt;}
.y18e{bottom:339.426667pt;}
.y37{bottom:340.226667pt;}
.y85{bottom:345.826667pt;}
.y1a7{bottom:347.426667pt;}
.yc2{bottom:348.546667pt;}
.y11{bottom:349.346667pt;}
.y165{bottom:352.226667pt;}
.y68{bottom:355.426667pt;}
.y18d{bottom:357.026667pt;}
.y36{bottom:357.986667pt;}
.y84{bottom:363.426667pt;}
.yfb{bottom:364.066667pt;}
.y1a6{bottom:365.026667pt;}
.yc1{bottom:366.146667pt;}
.y139{bottom:366.946667pt;}
.y164{bottom:369.986667pt;}
.y67{bottom:373.026667pt;}
.y18c{bottom:374.626667pt;}
.y35{bottom:375.586667pt;}
.yf3{bottom:380.866667pt;}
.y83{bottom:381.026667pt;}
.y1a5{bottom:382.626667pt;}
.yc0{bottom:383.906667pt;}
.y138{bottom:384.706667pt;}
.y163{bottom:387.586667pt;}
.y66{bottom:390.626667pt;}
.y148{bottom:391.586667pt;}
.y18b{bottom:392.226667pt;}
.y34{bottom:393.186667pt;}
.ybd{bottom:397.666667pt;}
.y82{bottom:398.626667pt;}
.y1a4{bottom:400.226667pt;}
.y137{bottom:402.306667pt;}
.y162{bottom:405.186667pt;}
.y10{bottom:407.586667pt;}
.y65{bottom:408.226667pt;}
.y147{bottom:409.186667pt;}
.yf7{bottom:411.426667pt;}
.y81{bottom:416.226667pt;}
.ybf{bottom:416.546667pt;}
.y18a{bottom:417.986667pt;}
.y136{bottom:419.906667pt;}
.y161{bottom:422.786667pt;}
.y64{bottom:425.986667pt;}
.y146{bottom:426.786667pt;}
.yf0{bottom:429.826667pt;}
.y80{bottom:433.986667pt;}
.ybb{bottom:435.586667pt;}
.y135{bottom:437.506667pt;}
.y160{bottom:440.386667pt;}
.y63{bottom:443.586667pt;}
.y145{bottom:444.386667pt;}
.y7f{bottom:451.586667pt;}
.y189{bottom:453.186667pt;}
.ybc{bottom:454.626667pt;}
.y134{bottom:455.106667pt;}
.y15f{bottom:458.146667pt;}
.y62{bottom:461.186667pt;}
.y144{bottom:462.146667pt;}
.y7e{bottom:469.186667pt;}
.y188{bottom:470.786667pt;}
.y133{bottom:472.866667pt;}
.yb6{bottom:473.506667pt;}
.y15e{bottom:475.746667pt;}
.y61{bottom:478.786667pt;}
.y143{bottom:479.746667pt;}
.y7d{bottom:486.786667pt;}
.y187{bottom:488.386667pt;}
.y132{bottom:490.466667pt;}
.yb9{bottom:492.546667pt;}
.y15d{bottom:493.346667pt;}
.y60{bottom:496.413333pt;}
.y142{bottom:497.373333pt;}
.yef{bottom:501.693333pt;}
.y7c{bottom:504.413333pt;}
.y186{bottom:506.173333pt;}
.y131{bottom:508.093333pt;}
.y15c{bottom:510.973333pt;}
.yb3{bottom:511.453333pt;}
.y5f{bottom:514.173333pt;}
.y141{bottom:514.973333pt;}
.yee{bottom:519.453333pt;}
.y7b{bottom:522.173333pt;}
.y185{bottom:523.773333pt;}
.y130{bottom:525.693333pt;}
.y15b{bottom:528.573333pt;}
.yb5{bottom:530.493333pt;}
.y5e{bottom:531.773333pt;}
.y140{bottom:532.573333pt;}
.yed{bottom:537.053333pt;}
.y7a{bottom:539.773333pt;}
.y184{bottom:541.373333pt;}
.y12f{bottom:543.293333pt;}
.y15a{bottom:546.333333pt;}
.y13f{bottom:547.293333pt;}
.y5d{bottom:549.373333pt;}
.yaf{bottom:551.133333pt;}
.yec{bottom:554.653333pt;}
.y79{bottom:557.373333pt;}
.y183{bottom:558.973333pt;}
.y12e{bottom:561.053333pt;}
.y159{bottom:563.933333pt;}
.y5c{bottom:566.973333pt;}
.yeb{bottom:572.253333pt;}
.y78{bottom:574.973333pt;}
.y182{bottom:576.573333pt;}
.y12d{bottom:578.653333pt;}
.y1a3{bottom:584.573333pt;}
.y158{bottom:589.533333pt;}
.yea{bottom:589.853333pt;}
.y5b{bottom:592.573333pt;}
.y12c{bottom:596.253333pt;}
.y181{bottom:602.333333pt;}
.y157{bottom:607.133333pt;}
.ye9{bottom:607.613333pt;}
.y5a{bottom:610.333333pt;}
.y12b{bottom:613.853333pt;}
.y180{bottom:619.933333pt;}
.y156{bottom:624.733333pt;}
.ye8{bottom:625.213333pt;}
.y59{bottom:627.933333pt;}
.y17f{bottom:637.533333pt;}
.y12a{bottom:639.453333pt;}
.y155{bottom:642.493333pt;}
.ye7{bottom:642.813333pt;}
.y58{bottom:645.533333pt;}
.y17e{bottom:655.133333pt;}
.y129{bottom:657.213333pt;}
.y154{bottom:660.093333pt;}
.ye6{bottom:660.413333pt;}
.y57{bottom:663.133333pt;}
.y17d{bottom:672.733333pt;}
.y128{bottom:674.813333pt;}
.y153{bottom:677.693333pt;}
.ye5{bottom:678.013333pt;}
.y56{bottom:680.733333pt;}
.y17c{bottom:690.493333pt;}
.y127{bottom:692.413333pt;}
.y152{bottom:695.293333pt;}
.ye4{bottom:695.773333pt;}
.y55{bottom:698.493333pt;}
.y17b{bottom:708.093333pt;}
.y126{bottom:710.013333pt;}
.y151{bottom:712.893333pt;}
.ye3{bottom:713.373333pt;}
.y54{bottom:716.093333pt;}
.y17a{bottom:725.693333pt;}
.ye0{bottom:727.133333pt;}
.y125{bottom:727.613333pt;}
.y150{bottom:730.653333pt;}
.y53{bottom:733.693333pt;}
.yae{bottom:739.133333pt;}
.y179{bottom:743.293333pt;}
.y14f{bottom:745.213333pt;}
.ye2{bottom:746.213333pt;}
.y52{bottom:751.333333pt;}
.y124{bottom:753.413333pt;}
.yad{bottom:756.773333pt;}
.y178{bottom:760.933333pt;}
.yde{bottom:765.093333pt;}
.y51{bottom:768.933333pt;}
.y123{bottom:771.013333pt;}
.ye{bottom:771.333333pt;}
.yab{bottom:774.373333pt;}
.y177{bottom:778.533333pt;}
.ydf{bottom:784.133333pt;}
.y50{bottom:786.533333pt;}
.y122{bottom:788.613333pt;}
.yaa{bottom:793.253333pt;}
.yd{bottom:796.133333pt;}
.y1a2{bottom:796.293333pt;}
.ydc{bottom:803.013333pt;}
.y4f{bottom:804.293333pt;}
.y121{bottom:806.213333pt;}
.y1a1{bottom:813.893333pt;}
.yc{bottom:818.373333pt;}
.y4e{bottom:821.893333pt;}
.ydd{bottom:822.053333pt;}
.y120{bottom:823.813333pt;}
.y1a0{bottom:831.493333pt;}
.yb{bottom:836.133333pt;}
.y4d{bottom:839.493333pt;}
.yda{bottom:840.933333pt;}
.y11f{bottom:841.573333pt;}
.y19f{bottom:849.093333pt;}
.ya{bottom:849.573333pt;}
.y4c{bottom:857.093333pt;}
.y11e{bottom:859.173333pt;}
.ydb{bottom:859.973333pt;}
.y19e{bottom:866.693333pt;}
.y9{bottom:868.453333pt;}
.y4b{bottom:874.693333pt;}
.y11d{bottom:876.773333pt;}
.yd8{bottom:878.853333pt;}
.y8{bottom:889.253333pt;}
.y4a{bottom:892.453333pt;}
.y11c{bottom:894.373333pt;}
.yd9{bottom:897.893333pt;}
.y49{bottom:910.053333pt;}
.y11b{bottom:911.973333pt;}
.yd6{bottom:916.773333pt;}
.y7{bottom:917.573333pt;}
.y48{bottom:927.653333pt;}
.y11a{bottom:929.733333pt;}
.yd7{bottom:935.813333pt;}
.y47{bottom:945.253333pt;}
.y119{bottom:947.333333pt;}
.y5{bottom:951.813333pt;}
.yd2{bottom:956.453333pt;}
.y46{bottom:962.853333pt;}
.y118{bottom:964.933333pt;}
.y4{bottom:978.053333pt;}
.y113{bottom:978.693333pt;}
.y45{bottom:980.613333pt;}
.y116{bottom:995.333333pt;}
.y44{bottom:998.240000pt;}
.y3{bottom:1004.160000pt;}
.y112{bottom:1013.920000pt;}
.y43{bottom:1015.840000pt;}
.y2{bottom:1030.400000pt;}
.y42{bottom:1033.440000pt;}
.y1{bottom:1057.920000pt;}
.y41{bottom:1061.600000pt;}
.h12{height:13.760000pt;}
.h11{height:13.792000pt;}
.h14{height:13.920000pt;}
.h22{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h28{height:17.312000pt;}
.h17{height:17.600000pt;}
.h18{height:17.632000pt;}
.ha{height:17.760000pt;}
.h25{height:18.400000pt;}
.h8{height:24.991875pt;}
.h15{height:28.800000pt;}
.h13{height:28.960000pt;}
.h10{height:28.992000pt;}
.h20{height:29.280000pt;}
.h26{height:30.720000pt;}
.h21{height:32.000000pt;}
.he{height:33.867188pt;}
.h27{height:33.952000pt;}
.hf{height:34.710938pt;}
.h16{height:35.360000pt;}
.h1a{height:36.640000pt;}
.h1b{height:36.672000pt;}
.h2a{height:36.883125pt;}
.h6{height:37.479688pt;}
.h9{height:38.413438pt;}
.h2b{height:38.672812pt;}
.h29{height:39.347188pt;}
.hc{height:41.543750pt;}
.h3{height:42.578750pt;}
.h24{height:44.672000pt;}
.h1e{height:45.920000pt;}
.h4{height:46.281250pt;}
.h7{height:47.310625pt;}
.h2{height:52.832812pt;}
.h5{height:60.057813pt;}
.h23{height:61.312000pt;}
.h1d{height:65.472000pt;}
.hd{height:66.240000pt;}
.h19{height:70.240000pt;}
.h1c{height:70.592000pt;}
.hb{height:361.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:28.640000pt;}
.w16{width:29.120000pt;}
.w1b{width:29.280000pt;}
.w6{width:30.880000pt;}
.w13{width:45.440000pt;}
.w14{width:45.472000pt;}
.w18{width:46.720000pt;}
.w19{width:46.752000pt;}
.w17{width:46.880000pt;}
.w1c{width:47.040000pt;}
.w1d{width:47.072000pt;}
.w7{width:51.360000pt;}
.w8{width:51.552000pt;}
.wf{width:64.832000pt;}
.we{width:65.280000pt;}
.w10{width:73.280000pt;}
.wb{width:74.880000pt;}
.wd{width:74.912000pt;}
.wc{width:78.880000pt;}
.wa{width:78.912000pt;}
.w9{width:93.120000pt;}
.w4{width:151.226667pt;}
.w15{width:397.053333pt;}
.w1a{width:398.173333pt;}
.w11{width:447.453333pt;}
.w5{width:455.133333pt;}
.w3{width:555.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x8{left:17.920000pt;}
.x17{left:19.200000pt;}
.xa{left:32.200000pt;}
.x21{left:34.880000pt;}
.x19{left:37.320000pt;}
.x2{left:43.360000pt;}
.x1{left:48.159988pt;}
.x28{left:71.999988pt;}
.x5{left:74.080000pt;}
.x20{left:85.920000pt;}
.x1b{left:86.880000pt;}
.x14{left:87.840000pt;}
.xc{left:94.912000pt;}
.x29{left:96.031988pt;}
.x22{left:162.266655pt;}
.x24{left:176.666655pt;}
.xd{left:188.026667pt;}
.xe{left:266.946667pt;}
.xf{left:341.826667pt;}
.x10{left:420.706667pt;}
.x1c{left:485.213333pt;}
.x11{left:495.613333pt;}
.x1d{left:515.613333pt;}
.x6{left:530.493333pt;}
.x15{left:536.573333pt;}
.x12{left:560.893333pt;}
.x7{left:562.813333pt;}
.x1e{left:563.773333pt;}
.x16{left:566.653333pt;}
.x4{left:599.293333pt;}
.x23{left:610.333322pt;}
.x1f{left:611.933333pt;}
.x18{left:613.533333pt;}
.x9{left:615.453333pt;}
.x25{left:616.413322pt;}
.x27{left:621.893322pt;}
.x13{left:625.733333pt;}
.x1a{left:660.453333pt;}
.xb{left:668.293333pt;}
.x26{left:679.013322pt;}
}




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