
    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_3d90fbae1bdb39e35481c6bb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_516ca834ab8135764cd0efde.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_820516f8a5e9983b872101fc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2816982d4812d4096d9987b.woff')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_c0fc4adcb982d579ac853f14.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_916a07b5060754a2481c2117.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_512f94cd5437f998137fa185.woff')format("woff");}.ff7{font-family:ff7;line-height:1.283691;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_64d15c96591d9e49e25b0bad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.283691;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:-84.960000px;}
.v4{vertical-align:-70.560000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.134000px;}
.ls19{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.457800px;}
.lsa{letter-spacing:-0.295200px;}
.ls17{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.020160px;}
.ls5{letter-spacing:0.034560px;}
.lsb{letter-spacing:0.069000px;}
.ls6{letter-spacing:0.118080px;}
.ls14{letter-spacing:0.190560px;}
.ls1{letter-spacing:0.295200px;}
.ls1b{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.339840px;}
.ls4{letter-spacing:0.360000px;}
.lse{letter-spacing:0.457800px;}
.ls1e{letter-spacing:0.466800px;}
.ls11{letter-spacing:0.612000px;}
.ls7{letter-spacing:0.642720px;}
.ls3{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.828000px;}
.ls12{letter-spacing:1.290000px;}
.ls1a{letter-spacing:1.746000px;}
.ls1d{letter-spacing:1.896000px;}
.ls10{letter-spacing:48.090240px;}
.ls2{letter-spacing:162.156000px;}
.lsf{letter-spacing:262.956000px;}
.ls15{letter-spacing:264.396000px;}
.ls16{letter-spacing:473.316000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws4{word-spacing:-20.880000px;}
.ws2{word-spacing:-19.474560px;}
.wsf{word-spacing:-18.306000px;}
.ws11{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.850000px;}
.ws9{word-spacing:-17.172000px;}
.ws8{word-spacing:-17.017800px;}
.ws10{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.ws7{word-spacing:-16.102200px;}
.wse{word-spacing:-15.948000px;}
.ws3{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.426000px;}
.ws13{word-spacing:-15.140160px;}
.ws12{word-spacing:-14.400000px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-6.635520px;}
._17{margin-left:-4.901760px;}
._9{margin-left:-3.870720px;}
._3{margin-left:-2.747040px;}
._0{margin-left:-1.512000px;}
._1{width:1.391040px;}
._2{width:2.519520px;}
._4{width:3.599040px;}
._16{width:4.600800px;}
._b{width:5.646240px;}
._5{width:6.691680px;}
._10{width:8.241120px;}
._8{width:9.313920px;}
._7{width:10.548960px;}
._6{width:12.337920px;}
._a{width:13.608000px;}
._f{width:14.614560px;}
._1d{width:16.475040px;}
._15{width:17.569920px;}
._11{width:18.872160px;}
._d{width:20.474400px;}
._c{width:21.588000px;}
._e{width:22.851360px;}
._19{width:24.132480px;}
._14{width:26.008800px;}
._13{width:27.111840px;}
._12{width:28.900320px;}
._1a{width:30.458880px;}
._1b{width:32.753760px;}
._1c{width:49.815840px;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:11.520000px;}
.fs9{font-size:18.720000px;}
.fsa{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fse{font-size:54.720000px;}
.fs10{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fsc{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsd{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:3.960000px;}
.yc3{bottom:4.005000px;}
.y80{bottom:6.885000px;}
.y9a{bottom:7.200000px;}
.y81{bottom:7.560000px;}
.y8a{bottom:9.000000px;}
.y83{bottom:9.360000px;}
.y90{bottom:9.405000px;}
.y8c{bottom:9.720000px;}
.y88{bottom:9.750000px;}
.y85{bottom:10.080000px;}
.yba{bottom:13.680000px;}
.y7e{bottom:20.160000px;}
.y98{bottom:20.520000px;}
.ycf{bottom:32.400000px;}
.ybe{bottom:70.200000px;}
.y3{bottom:111.636000px;}
.y38{bottom:112.356000px;}
.y2{bottom:128.916000px;}
.y37{bottom:132.156000px;}
.yaf{bottom:150.870000px;}
.y148{bottom:153.750000px;}
.y7a{bottom:156.990000px;}
.yf6{bottom:157.350000px;}
.y6b{bottom:164.550000px;}
.y36{bottom:169.230000px;}
.yae{bottom:169.950000px;}
.y147{bottom:171.030000px;}
.y79{bottom:176.070000px;}
.y121{bottom:176.430000px;}
.ye4{bottom:180.030000px;}
.y6a{bottom:183.270000px;}
.y35{bottom:187.950000px;}
.y146{bottom:188.310000px;}
.yad{bottom:189.030000px;}
.y78{bottom:194.835000px;}
.yf5{bottom:195.195000px;}
.y120{bottom:195.555000px;}
.ye3{bottom:199.155000px;}
.y69{bottom:202.395000px;}
.y145{bottom:205.635000px;}
.y34{bottom:207.075000px;}
.yac{bottom:208.155000px;}
.y178{bottom:212.475000px;}
.y77{bottom:213.915000px;}
.yf4{bottom:214.275000px;}
.y11f{bottom:214.635000px;}
.ye2{bottom:218.235000px;}
.y68{bottom:221.475000px;}
.y144{bottom:222.555000px;}
.y33{bottom:226.155000px;}
.yab{bottom:226.875000px;}
.y177{bottom:229.755000px;}
.y76{bottom:232.635000px;}
.yf3{bottom:233.355000px;}
.ye1{bottom:236.955000px;}
.y143{bottom:239.835000px;}
.y67{bottom:240.195000px;}
.y32{bottom:244.875000px;}
.yaa{bottom:245.955000px;}
.y75{bottom:246.315000px;}
.y176{bottom:247.035000px;}
.yf2{bottom:252.075000px;}
.y11e{bottom:252.435000px;}
.ye0{bottom:256.035000px;}
.y142{bottom:257.115000px;}
.y66{bottom:258.915000px;}
.y31{bottom:263.955000px;}
.ya9{bottom:265.035000px;}
.yf1{bottom:271.155000px;}
.y11d{bottom:271.515000px;}
.y141{bottom:274.395000px;}
.ydf{bottom:275.115000px;}
.y65{bottom:277.995000px;}
.y175{bottom:281.235000px;}
.y30{bottom:283.035000px;}
.ya8{bottom:283.755000px;}
.yf0{bottom:290.235000px;}
.y140{bottom:291.675000px;}
.yde{bottom:293.835000px;}
.y64{bottom:296.715000px;}
.y174{bottom:298.515000px;}
.y2f{bottom:302.115000px;}
.ya7{bottom:306.435000px;}
.yef{bottom:308.955000px;}
.y11c{bottom:309.315000px;}
.ydd{bottom:312.915000px;}
.y173{bottom:315.795000px;}
.y63{bottom:316.515000px;}
.y2e{bottom:320.865000px;}
.y13f{bottom:326.265000px;}
.yee{bottom:328.065000px;}
.y11b{bottom:328.425000px;}
.ya6{bottom:331.305000px;}
.ydc{bottom:332.025000px;}
.y172{bottom:333.105000px;}
.y62{bottom:337.065000px;}
.y2d{bottom:339.945000px;}
.y13e{bottom:343.545000px;}
.y11a{bottom:343.905000px;}
.yed{bottom:347.145000px;}
.ya5{bottom:350.385000px;}
.ydb{bottom:350.745000px;}
.y61{bottom:355.785000px;}
.y2c{bottom:359.025000px;}
.y13d{bottom:360.825000px;}
.yec{bottom:365.865000px;}
.y171{bottom:367.665000px;}
.ya4{bottom:369.465000px;}
.yda{bottom:369.825000px;}
.y60{bottom:374.865000px;}
.y2b{bottom:376.665000px;}
.y13c{bottom:378.105000px;}
.yeb{bottom:384.945000px;}
.ya3{bottom:385.305000px;}
.y119{bottom:388.545000px;}
.yd9{bottom:388.905000px;}
.y2a{bottom:392.505000px;}
.y5f{bottom:393.945000px;}
.y13b{bottom:395.385000px;}
.y170{bottom:402.225000px;}
.yea{bottom:404.025000px;}
.y118{bottom:407.625000px;}
.yd8{bottom:407.985000px;}
.ya2{bottom:410.145000px;}
.y13a{bottom:412.665000px;}
.y5e{bottom:413.025000px;}
.y29{bottom:414.825000px;}
.y16f{bottom:419.505000px;}
.ye9{bottom:421.665000px;}
.yd7{bottom:426.705000px;}
.y28{bottom:429.225000px;}
.y139{bottom:429.585000px;}
.y5d{bottom:431.745000px;}
.ye8{bottom:434.625000px;}
.ya1{bottom:434.985000px;}
.y16e{bottom:436.785000px;}
.y27{bottom:445.425000px;}
.yd6{bottom:445.785000px;}
.y138{bottom:446.910000px;}
.y5c{bottom:450.870000px;}
.ye7{bottom:451.950000px;}
.y16d{bottom:453.750000px;}
.y26{bottom:459.510000px;}
.ya0{bottom:459.870000px;}
.yd5{bottom:461.670000px;}
.y137{bottom:464.190000px;}
.y117{bottom:464.550000px;}
.ye6{bottom:469.230000px;}
.y5b{bottom:469.590000px;}
.y16c{bottom:471.030000px;}
.y25{bottom:479.670000px;}
.yd4{bottom:480.390000px;}
.y136{bottom:481.470000px;}
.ye5{bottom:482.910000px;}
.y116{bottom:483.630000px;}
.y9f{bottom:483.990000px;}
.y16b{bottom:488.310000px;}
.y5a{bottom:489.030000px;}
.y24{bottom:491.550000px;}
.y135{bottom:498.750000px;}
.yd3{bottom:499.470000px;}
.y115{bottom:502.710000px;}
.y16a{bottom:505.590000px;}
.y23{bottom:508.830000px;}
.y59{bottom:509.550000px;}
.y134{bottom:516.030000px;}
.yce{bottom:519.270000px;}
.y114{bottom:521.430000px;}
.y169{bottom:522.870000px;}
.y22{bottom:525.750000px;}
.y58{bottom:528.630000px;}
.y9e{bottom:532.950000px;}
.y133{bottom:533.310000px;}
.yd2{bottom:538.350000px;}
.y168{bottom:540.150000px;}
.y113{bottom:540.510000px;}
.y21{bottom:543.030000px;}
.y57{bottom:547.350000px;}
.y132{bottom:550.590000px;}
.yd1{bottom:557.070000px;}
.y167{bottom:557.430000px;}
.y9d{bottom:558.150000px;}
.y112{bottom:559.590000px;}
.y20{bottom:560.310000px;}
.y56{bottom:566.430000px;}
.y131{bottom:567.870000px;}
.y166{bottom:574.740000px;}
.yd0{bottom:576.180000px;}
.y1f{bottom:577.620000px;}
.y111{bottom:578.340000px;}
.y9c{bottom:582.300000px;}
.y130{bottom:585.180000px;}
.y55{bottom:585.540000px;}
.y165{bottom:592.020000px;}
.y1e{bottom:594.900000px;}
.ycc{bottom:595.980000px;}
.y110{bottom:597.420000px;}
.y12f{bottom:602.460000px;}
.y54{bottom:604.260000px;}
.y74{bottom:606.060000px;}
.y9b{bottom:607.140000px;}
.y164{bottom:609.300000px;}
.y1d{bottom:612.180000px;}
.ycd{bottom:615.780000px;}
.y10f{bottom:616.500000px;}
.y12e{bottom:619.380000px;}
.y53{bottom:622.980000px;}
.y73{bottom:625.140000px;}
.y163{bottom:626.580000px;}
.y1c{bottom:629.460000px;}
.y97{bottom:631.980000px;}
.y10e{bottom:635.580000px;}
.y12d{bottom:636.660000px;}
.ycb{bottom:639.180000px;}
.y52{bottom:642.420000px;}
.y162{bottom:643.860000px;}
.y72{bottom:644.220000px;}
.y1b{bottom:646.740000px;}
.y10d{bottom:654.300000px;}
.y12c{bottom:656.460000px;}
.y99{bottom:658.980000px;}
.y161{bottom:660.780000px;}
.y51{bottom:662.940000px;}
.y1a{bottom:664.020000px;}
.y10c{bottom:673.380000px;}
.yca{bottom:675.540000px;}
.y12b{bottom:676.980000px;}
.y160{bottom:678.060000px;}
.y19{bottom:679.500000px;}
.y50{bottom:682.020000px;}
.y96{bottom:688.860000px;}
.y18{bottom:690.660000px;}
.y10b{bottom:692.460000px;}
.yc9{bottom:694.620000px;}
.y12a{bottom:695.700000px;}
.y15f{bottom:697.860000px;}
.y4f{bottom:701.130000px;}
.y17{bottom:710.850000px;}
.y10a{bottom:711.210000px;}
.yc8{bottom:713.370000px;}
.y129{bottom:714.810000px;}
.y15e{bottom:715.170000px;}
.y4e{bottom:719.850000px;}
.y15d{bottom:721.650000px;}
.y95{bottom:724.890000px;}
.y16{bottom:730.290000px;}
.yc7{bottom:732.450000px;}
.y128{bottom:733.890000px;}
.y4d{bottom:738.930000px;}
.y15c{bottom:740.370000px;}
.y15{bottom:741.450000px;}
.y94{bottom:743.970000px;}
.ybd{bottom:748.290000px;}
.y109{bottom:749.370000px;}
.y127{bottom:752.610000px;}
.y14{bottom:752.970000px;}
.y4c{bottom:757.650000px;}
.y71{bottom:758.010000px;}
.y93{bottom:763.050000px;}
.yc6{bottom:767.370000px;}
.y108{bottom:768.450000px;}
.y126{bottom:771.690000px;}
.y15b{bottom:774.930000px;}
.y70{bottom:776.730000px;}
.y4b{bottom:777.090000px;}
.y13{bottom:780.330000px;}
.y92{bottom:781.770000px;}
.yc5{bottom:786.090000px;}
.y107{bottom:787.170000px;}
.y125{bottom:790.770000px;}
.y12{bottom:791.490000px;}
.y15a{bottom:792.210000px;}
.y6f{bottom:795.810000px;}
.y4a{bottom:796.890000px;}
.y91{bottom:797.610000px;}
.y11{bottom:803.010000px;}
.yc4{bottom:805.170000px;}
.y106{bottom:806.250000px;}
.y159{bottom:809.130000px;}
.y124{bottom:809.490000px;}
.y49{bottom:814.530000px;}
.y8f{bottom:822.450000px;}
.yc2{bottom:824.250000px;}
.y105{bottom:825.375000px;}
.y158{bottom:826.455000px;}
.y123{bottom:828.255000px;}
.y10{bottom:830.415000px;}
.y6e{bottom:833.655000px;}
.y48{bottom:834.015000px;}
.yc1{bottom:843.015000px;}
.yf{bottom:843.735000px;}
.y104{bottom:844.095000px;}
.y8e{bottom:847.335000px;}
.y122{bottom:848.415000px;}
.y47{bottom:852.735000px;}
.ye{bottom:859.575000px;}
.y157{bottom:861.015000px;}
.yc0{bottom:862.095000px;}
.y103{bottom:863.175000px;}
.yd{bottom:870.375000px;}
.y46{bottom:871.815000px;}
.y8d{bottom:872.535000px;}
.y156{bottom:878.295000px;}
.yc{bottom:878.655000px;}
.ybf{bottom:881.175000px;}
.y102{bottom:882.255000px;}
.y45{bottom:890.895000px;}
.y155{bottom:895.575000px;}
.y8b{bottom:896.655000px;}
.yb9{bottom:900.975000px;}
.yb{bottom:906.375000px;}
.y44{bottom:909.615000px;}
.y154{bottom:912.855000px;}
.y101{bottom:920.055000px;}
.ybb{bottom:920.415000px;}
.y89{bottom:921.495000px;}
.ya{bottom:926.535000px;}
.y43{bottom:928.695000px;}
.y153{bottom:930.135000px;}
.y100{bottom:939.135000px;}
.y9{bottom:939.495000px;}
.yb8{bottom:944.175000px;}
.y87{bottom:945.615000px;}
.y152{bottom:947.415000px;}
.y42{bottom:947.775000px;}
.yff{bottom:958.245000px;}
.y151{bottom:964.725000px;}
.y41{bottom:966.525000px;}
.y86{bottom:970.485000px;}
.yfe{bottom:976.965000px;}
.yb7{bottom:980.565000px;}
.y150{bottom:982.005000px;}
.y8{bottom:983.085000px;}
.y40{bottom:985.605000px;}
.y84{bottom:994.605000px;}
.yfd{bottom:996.045000px;}
.y14f{bottom:999.285000px;}
.yb6{bottom:999.645000px;}
.y6d{bottom:1004.325000px;}
.y3f{bottom:1004.685000px;}
.y7{bottom:1006.485000px;}
.yfc{bottom:1015.125000px;}
.y14e{bottom:1016.205000px;}
.yb5{bottom:1018.365000px;}
.y82{bottom:1019.445000px;}
.y6c{bottom:1023.405000px;}
.y3e{bottom:1023.765000px;}
.y14d{bottom:1033.485000px;}
.yfb{bottom:1033.845000px;}
.yb4{bottom:1037.445000px;}
.y6{bottom:1040.325000px;}
.y3d{bottom:1042.485000px;}
.y7d{bottom:1044.645000px;}
.y14c{bottom:1050.765000px;}
.yfa{bottom:1052.925000px;}
.yb3{bottom:1056.525000px;}
.y3c{bottom:1061.565000px;}
.y14b{bottom:1068.045000px;}
.y7f{bottom:1071.645000px;}
.yf9{bottom:1072.005000px;}
.y5{bottom:1073.805000px;}
.yb2{bottom:1075.245000px;}
.y3b{bottom:1080.690000px;}
.y14a{bottom:1085.370000px;}
.yf8{bottom:1090.410000px;}
.yb1{bottom:1094.010000px;}
.y3a{bottom:1099.410000px;}
.y7c{bottom:1101.210000px;}
.y149{bottom:1102.650000px;}
.yf7{bottom:1106.610000px;}
.y4{bottom:1107.690000px;}
.yb0{bottom:1114.170000px;}
.y39{bottom:1118.490000px;}
.y7b{bottom:1119.930000px;}
.y1{bottom:1154.850000px;}
.h25{height:11.306250px;}
.h24{height:11.610000px;}
.h9{height:18.372656px;}
.h1f{height:18.720000px;}
.h21{height:18.756000px;}
.h1e{height:19.080000px;}
.h23{height:19.116000px;}
.h17{height:24.120000px;}
.h1a{height:24.156000px;}
.h18{height:24.840000px;}
.h15{height:24.876000px;}
.h19{height:25.200000px;}
.h16{height:26.280000px;}
.ha{height:29.678906px;}
.he{height:35.314453px;}
.hb{height:35.332031px;}
.h1d{height:38.520000px;}
.h6{height:40.985156px;}
.h7{height:46.638281px;}
.h10{height:47.891250px;}
.h14{height:51.876000px;}
.h1b{height:52.200000px;}
.hd{height:59.328281px;}
.h2{height:59.357813px;}
.h12{height:60.952500px;}
.h11{height:65.010937px;}
.h4{height:66.757500px;}
.h8{height:70.664062px;}
.h13{height:72.562500px;}
.h22{height:75.996000px;}
.hc{height:76.279219px;}
.h5{height:76.824844px;}
.h1c{height:77.948437px;}
.h3{height:80.944453px;}
.hf{height:84.172500px;}
.h20{height:151.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:46.440000px;}
.we{width:46.476000px;}
.wd{width:46.800000px;}
.wc{width:46.836000px;}
.wf{width:60.516000px;}
.w14{width:62.280000px;}
.w10{width:63.756000px;}
.wa{width:64.080000px;}
.w16{width:64.476000px;}
.w18{width:74.196000px;}
.w15{width:77.796000px;}
.w17{width:83.556000px;}
.w9{width:84.996000px;}
.w13{width:85.716000px;}
.w5{width:101.916000px;}
.w6{width:102.276000px;}
.w19{width:121.356000px;}
.w7{width:124.272000px;}
.w3{width:135.792000px;}
.w11{width:195.555000px;}
.w12{width:310.830000px;}
.w8{width:373.110000px;}
.w4{width:510.660000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:8.280000px;}
.x26{left:119.556000px;}
.x2{left:127.475987px;}
.x14{left:128.916000px;}
.x8{left:131.795987px;}
.x5{left:140.111987px;}
.xa{left:142.991987px;}
.x2b{left:154.154987px;}
.x2e{left:161.354987px;}
.xb{left:168.914987px;}
.x4{left:171.074987px;}
.xd{left:172.154987px;}
.x6{left:180.794987px;}
.x25{left:189.435000px;}
.x1{left:194.114987px;}
.x12{left:218.954987px;}
.xf{left:233.744987px;}
.x13{left:249.224987px;}
.x1b{left:253.185000px;}
.x16{left:264.705000px;}
.x1a{left:267.584987px;}
.x1e{left:299.625000px;}
.x27{left:315.105000px;}
.x1f{left:346.470000px;}
.xc{left:354.029987px;}
.x2d{left:357.989987px;}
.x9{left:366.269987px;}
.x7{left:379.589987px;}
.x20{left:392.910000px;}
.xe{left:395.789987px;}
.x2c{left:422.819987px;}
.x21{left:439.740000px;}
.x3{left:451.979987px;}
.x28{left:457.380000px;}
.x17{left:468.900000px;}
.x22{left:486.180000px;}
.x23{left:533.010000px;}
.x29{left:542.370000px;}
.x18{left:570.810000px;}
.x24{left:579.810000px;}
.x1c{left:626.295000px;}
.x19{left:673.095000px;}
.x1d{left:711.285000px;}
.x11{left:748.724987px;}
.x10{left:768.884987px;}
.x2a{left:770.684987px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v4{vertical-align:-62.720000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.008000pt;}
.ls19{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.406933pt;}
.lsa{letter-spacing:-0.262400pt;}
.ls17{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.017920pt;}
.ls5{letter-spacing:0.030720pt;}
.lsb{letter-spacing:0.061333pt;}
.ls6{letter-spacing:0.104960pt;}
.ls14{letter-spacing:0.169387pt;}
.ls1{letter-spacing:0.262400pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.302080pt;}
.ls4{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.406933pt;}
.ls1e{letter-spacing:0.414933pt;}
.ls11{letter-spacing:0.544000pt;}
.ls7{letter-spacing:0.571307pt;}
.ls3{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.736000pt;}
.ls12{letter-spacing:1.146667pt;}
.ls1a{letter-spacing:1.552000pt;}
.ls1d{letter-spacing:1.685333pt;}
.ls10{letter-spacing:42.746880pt;}
.ls2{letter-spacing:144.138667pt;}
.lsf{letter-spacing:233.738667pt;}
.ls15{letter-spacing:235.018667pt;}
.ls16{letter-spacing:420.725333pt;}
.wsa{word-spacing:-58.880000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws4{word-spacing:-18.560000pt;}
.ws2{word-spacing:-17.310720pt;}
.wsf{word-spacing:-16.272000pt;}
.ws11{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.866667pt;}
.ws9{word-spacing:-15.264000pt;}
.ws8{word-spacing:-15.126933pt;}
.ws10{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.ws7{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.176000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.712000pt;}
.ws13{word-spacing:-13.457920pt;}
.ws12{word-spacing:-12.800000pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-5.898240pt;}
._17{margin-left:-4.357120pt;}
._9{margin-left:-3.440640pt;}
._3{margin-left:-2.441813pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.236480pt;}
._2{width:2.239573pt;}
._4{width:3.199147pt;}
._16{width:4.089600pt;}
._b{width:5.018880pt;}
._5{width:5.948160pt;}
._10{width:7.325440pt;}
._8{width:8.279040pt;}
._7{width:9.376853pt;}
._6{width:10.967040pt;}
._a{width:12.096000pt;}
._f{width:12.990720pt;}
._1d{width:14.644480pt;}
._15{width:15.617707pt;}
._11{width:16.775253pt;}
._d{width:18.199467pt;}
._c{width:19.189333pt;}
._e{width:20.312320pt;}
._19{width:21.451093pt;}
._14{width:23.118933pt;}
._13{width:24.099413pt;}
._12{width:25.689173pt;}
._1a{width:27.074560pt;}
._1b{width:29.114453pt;}
._1c{width:44.280747pt;}
.fsf{font-size:10.240000pt;}
.fs9{font-size:16.640000pt;}
.fsa{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fse{font-size:48.640000pt;}
.fs10{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fsc{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsd{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:3.520000pt;}
.yc3{bottom:3.560000pt;}
.y80{bottom:6.120000pt;}
.y9a{bottom:6.400000pt;}
.y81{bottom:6.720000pt;}
.y8a{bottom:8.000000pt;}
.y83{bottom:8.320000pt;}
.y90{bottom:8.360000pt;}
.y8c{bottom:8.640000pt;}
.y88{bottom:8.666667pt;}
.y85{bottom:8.960000pt;}
.yba{bottom:12.160000pt;}
.y7e{bottom:17.920000pt;}
.y98{bottom:18.240000pt;}
.ycf{bottom:28.800000pt;}
.ybe{bottom:62.400000pt;}
.y3{bottom:99.232000pt;}
.y38{bottom:99.872000pt;}
.y2{bottom:114.592000pt;}
.y37{bottom:117.472000pt;}
.yaf{bottom:134.106667pt;}
.y148{bottom:136.666667pt;}
.y7a{bottom:139.546667pt;}
.yf6{bottom:139.866667pt;}
.y6b{bottom:146.266667pt;}
.y36{bottom:150.426667pt;}
.yae{bottom:151.066667pt;}
.y147{bottom:152.026667pt;}
.y79{bottom:156.506667pt;}
.y121{bottom:156.826667pt;}
.ye4{bottom:160.026667pt;}
.y6a{bottom:162.906667pt;}
.y35{bottom:167.066667pt;}
.y146{bottom:167.386667pt;}
.yad{bottom:168.026667pt;}
.y78{bottom:173.186667pt;}
.yf5{bottom:173.506667pt;}
.y120{bottom:173.826667pt;}
.ye3{bottom:177.026667pt;}
.y69{bottom:179.906667pt;}
.y145{bottom:182.786667pt;}
.y34{bottom:184.066667pt;}
.yac{bottom:185.026667pt;}
.y178{bottom:188.866667pt;}
.y77{bottom:190.146667pt;}
.yf4{bottom:190.466667pt;}
.y11f{bottom:190.786667pt;}
.ye2{bottom:193.986667pt;}
.y68{bottom:196.866667pt;}
.y144{bottom:197.826667pt;}
.y33{bottom:201.026667pt;}
.yab{bottom:201.666667pt;}
.y177{bottom:204.226667pt;}
.y76{bottom:206.786667pt;}
.yf3{bottom:207.426667pt;}
.ye1{bottom:210.626667pt;}
.y143{bottom:213.186667pt;}
.y67{bottom:213.506667pt;}
.y32{bottom:217.666667pt;}
.yaa{bottom:218.626667pt;}
.y75{bottom:218.946667pt;}
.y176{bottom:219.586667pt;}
.yf2{bottom:224.066667pt;}
.y11e{bottom:224.386667pt;}
.ye0{bottom:227.586667pt;}
.y142{bottom:228.546667pt;}
.y66{bottom:230.146667pt;}
.y31{bottom:234.626667pt;}
.ya9{bottom:235.586667pt;}
.yf1{bottom:241.026667pt;}
.y11d{bottom:241.346667pt;}
.y141{bottom:243.906667pt;}
.ydf{bottom:244.546667pt;}
.y65{bottom:247.106667pt;}
.y175{bottom:249.986667pt;}
.y30{bottom:251.586667pt;}
.ya8{bottom:252.226667pt;}
.yf0{bottom:257.986667pt;}
.y140{bottom:259.266667pt;}
.yde{bottom:261.186667pt;}
.y64{bottom:263.746667pt;}
.y174{bottom:265.346667pt;}
.y2f{bottom:268.546667pt;}
.ya7{bottom:272.386667pt;}
.yef{bottom:274.626667pt;}
.y11c{bottom:274.946667pt;}
.ydd{bottom:278.146667pt;}
.y173{bottom:280.706667pt;}
.y63{bottom:281.346667pt;}
.y2e{bottom:285.213333pt;}
.y13f{bottom:290.013333pt;}
.yee{bottom:291.613333pt;}
.y11b{bottom:291.933333pt;}
.ya6{bottom:294.493333pt;}
.ydc{bottom:295.133333pt;}
.y172{bottom:296.093333pt;}
.y62{bottom:299.613333pt;}
.y2d{bottom:302.173333pt;}
.y13e{bottom:305.373333pt;}
.y11a{bottom:305.693333pt;}
.yed{bottom:308.573333pt;}
.ya5{bottom:311.453333pt;}
.ydb{bottom:311.773333pt;}
.y61{bottom:316.253333pt;}
.y2c{bottom:319.133333pt;}
.y13d{bottom:320.733333pt;}
.yec{bottom:325.213333pt;}
.y171{bottom:326.813333pt;}
.ya4{bottom:328.413333pt;}
.yda{bottom:328.733333pt;}
.y60{bottom:333.213333pt;}
.y2b{bottom:334.813333pt;}
.y13c{bottom:336.093333pt;}
.yeb{bottom:342.173333pt;}
.ya3{bottom:342.493333pt;}
.y119{bottom:345.373333pt;}
.yd9{bottom:345.693333pt;}
.y2a{bottom:348.893333pt;}
.y5f{bottom:350.173333pt;}
.y13b{bottom:351.453333pt;}
.y170{bottom:357.533333pt;}
.yea{bottom:359.133333pt;}
.y118{bottom:362.333333pt;}
.yd8{bottom:362.653333pt;}
.ya2{bottom:364.573333pt;}
.y13a{bottom:366.813333pt;}
.y5e{bottom:367.133333pt;}
.y29{bottom:368.733333pt;}
.y16f{bottom:372.893333pt;}
.ye9{bottom:374.813333pt;}
.yd7{bottom:379.293333pt;}
.y28{bottom:381.533333pt;}
.y139{bottom:381.853333pt;}
.y5d{bottom:383.773333pt;}
.ye8{bottom:386.333333pt;}
.ya1{bottom:386.653333pt;}
.y16e{bottom:388.253333pt;}
.y27{bottom:395.933333pt;}
.yd6{bottom:396.253333pt;}
.y138{bottom:397.253333pt;}
.y5c{bottom:400.773333pt;}
.ye7{bottom:401.733333pt;}
.y16d{bottom:403.333333pt;}
.y26{bottom:408.453333pt;}
.ya0{bottom:408.773333pt;}
.yd5{bottom:410.373333pt;}
.y137{bottom:412.613333pt;}
.y117{bottom:412.933333pt;}
.ye6{bottom:417.093333pt;}
.y5b{bottom:417.413333pt;}
.y16c{bottom:418.693333pt;}
.y25{bottom:426.373333pt;}
.yd4{bottom:427.013333pt;}
.y136{bottom:427.973333pt;}
.ye5{bottom:429.253333pt;}
.y116{bottom:429.893333pt;}
.y9f{bottom:430.213333pt;}
.y16b{bottom:434.053333pt;}
.y5a{bottom:434.693333pt;}
.y24{bottom:436.933333pt;}
.y135{bottom:443.333333pt;}
.yd3{bottom:443.973333pt;}
.y115{bottom:446.853333pt;}
.y16a{bottom:449.413333pt;}
.y23{bottom:452.293333pt;}
.y59{bottom:452.933333pt;}
.y134{bottom:458.693333pt;}
.yce{bottom:461.573333pt;}
.y114{bottom:463.493333pt;}
.y169{bottom:464.773333pt;}
.y22{bottom:467.333333pt;}
.y58{bottom:469.893333pt;}
.y9e{bottom:473.733333pt;}
.y133{bottom:474.053333pt;}
.yd2{bottom:478.533333pt;}
.y168{bottom:480.133333pt;}
.y113{bottom:480.453333pt;}
.y21{bottom:482.693333pt;}
.y57{bottom:486.533333pt;}
.y132{bottom:489.413333pt;}
.yd1{bottom:495.173333pt;}
.y167{bottom:495.493333pt;}
.y9d{bottom:496.133333pt;}
.y112{bottom:497.413333pt;}
.y20{bottom:498.053333pt;}
.y56{bottom:503.493333pt;}
.y131{bottom:504.773333pt;}
.y166{bottom:510.880000pt;}
.yd0{bottom:512.160000pt;}
.y1f{bottom:513.440000pt;}
.y111{bottom:514.080000pt;}
.y9c{bottom:517.600000pt;}
.y130{bottom:520.160000pt;}
.y55{bottom:520.480000pt;}
.y165{bottom:526.240000pt;}
.y1e{bottom:528.800000pt;}
.ycc{bottom:529.760000pt;}
.y110{bottom:531.040000pt;}
.y12f{bottom:535.520000pt;}
.y54{bottom:537.120000pt;}
.y74{bottom:538.720000pt;}
.y9b{bottom:539.680000pt;}
.y164{bottom:541.600000pt;}
.y1d{bottom:544.160000pt;}
.ycd{bottom:547.360000pt;}
.y10f{bottom:548.000000pt;}
.y12e{bottom:550.560000pt;}
.y53{bottom:553.760000pt;}
.y73{bottom:555.680000pt;}
.y163{bottom:556.960000pt;}
.y1c{bottom:559.520000pt;}
.y97{bottom:561.760000pt;}
.y10e{bottom:564.960000pt;}
.y12d{bottom:565.920000pt;}
.ycb{bottom:568.160000pt;}
.y52{bottom:571.040000pt;}
.y162{bottom:572.320000pt;}
.y72{bottom:572.640000pt;}
.y1b{bottom:574.880000pt;}
.y10d{bottom:581.600000pt;}
.y12c{bottom:583.520000pt;}
.y99{bottom:585.760000pt;}
.y161{bottom:587.360000pt;}
.y51{bottom:589.280000pt;}
.y1a{bottom:590.240000pt;}
.y10c{bottom:598.560000pt;}
.yca{bottom:600.480000pt;}
.y12b{bottom:601.760000pt;}
.y160{bottom:602.720000pt;}
.y19{bottom:604.000000pt;}
.y50{bottom:606.240000pt;}
.y96{bottom:612.320000pt;}
.y18{bottom:613.920000pt;}
.y10b{bottom:615.520000pt;}
.yc9{bottom:617.440000pt;}
.y12a{bottom:618.400000pt;}
.y15f{bottom:620.320000pt;}
.y4f{bottom:623.226667pt;}
.y17{bottom:631.866667pt;}
.y10a{bottom:632.186667pt;}
.yc8{bottom:634.106667pt;}
.y129{bottom:635.386667pt;}
.y15e{bottom:635.706667pt;}
.y4e{bottom:639.866667pt;}
.y15d{bottom:641.466667pt;}
.y95{bottom:644.346667pt;}
.y16{bottom:649.146667pt;}
.yc7{bottom:651.066667pt;}
.y128{bottom:652.346667pt;}
.y4d{bottom:656.826667pt;}
.y15c{bottom:658.106667pt;}
.y15{bottom:659.066667pt;}
.y94{bottom:661.306667pt;}
.ybd{bottom:665.146667pt;}
.y109{bottom:666.106667pt;}
.y127{bottom:668.986667pt;}
.y14{bottom:669.306667pt;}
.y4c{bottom:673.466667pt;}
.y71{bottom:673.786667pt;}
.y93{bottom:678.266667pt;}
.yc6{bottom:682.106667pt;}
.y108{bottom:683.066667pt;}
.y126{bottom:685.946667pt;}
.y15b{bottom:688.826667pt;}
.y70{bottom:690.426667pt;}
.y4b{bottom:690.746667pt;}
.y13{bottom:693.626667pt;}
.y92{bottom:694.906667pt;}
.yc5{bottom:698.746667pt;}
.y107{bottom:699.706667pt;}
.y125{bottom:702.906667pt;}
.y12{bottom:703.546667pt;}
.y15a{bottom:704.186667pt;}
.y6f{bottom:707.386667pt;}
.y4a{bottom:708.346667pt;}
.y91{bottom:708.986667pt;}
.y11{bottom:713.786667pt;}
.yc4{bottom:715.706667pt;}
.y106{bottom:716.666667pt;}
.y159{bottom:719.226667pt;}
.y124{bottom:719.546667pt;}
.y49{bottom:724.026667pt;}
.y8f{bottom:731.066667pt;}
.yc2{bottom:732.666667pt;}
.y105{bottom:733.666667pt;}
.y158{bottom:734.626667pt;}
.y123{bottom:736.226667pt;}
.y10{bottom:738.146667pt;}
.y6e{bottom:741.026667pt;}
.y48{bottom:741.346667pt;}
.yc1{bottom:749.346667pt;}
.yf{bottom:749.986667pt;}
.y104{bottom:750.306667pt;}
.y8e{bottom:753.186667pt;}
.y122{bottom:754.146667pt;}
.y47{bottom:757.986667pt;}
.ye{bottom:764.066667pt;}
.y157{bottom:765.346667pt;}
.yc0{bottom:766.306667pt;}
.y103{bottom:767.266667pt;}
.yd{bottom:773.666667pt;}
.y46{bottom:774.946667pt;}
.y8d{bottom:775.586667pt;}
.y156{bottom:780.706667pt;}
.yc{bottom:781.026667pt;}
.ybf{bottom:783.266667pt;}
.y102{bottom:784.226667pt;}
.y45{bottom:791.906667pt;}
.y155{bottom:796.066667pt;}
.y8b{bottom:797.026667pt;}
.yb9{bottom:800.866667pt;}
.yb{bottom:805.666667pt;}
.y44{bottom:808.546667pt;}
.y154{bottom:811.426667pt;}
.y101{bottom:817.826667pt;}
.ybb{bottom:818.146667pt;}
.y89{bottom:819.106667pt;}
.ya{bottom:823.586667pt;}
.y43{bottom:825.506667pt;}
.y153{bottom:826.786667pt;}
.y100{bottom:834.786667pt;}
.y9{bottom:835.106667pt;}
.yb8{bottom:839.266667pt;}
.y87{bottom:840.546667pt;}
.y152{bottom:842.146667pt;}
.y42{bottom:842.466667pt;}
.yff{bottom:851.773333pt;}
.y151{bottom:857.533333pt;}
.y41{bottom:859.133333pt;}
.y86{bottom:862.653333pt;}
.yfe{bottom:868.413333pt;}
.yb7{bottom:871.613333pt;}
.y150{bottom:872.893333pt;}
.y8{bottom:873.853333pt;}
.y40{bottom:876.093333pt;}
.y84{bottom:884.093333pt;}
.yfd{bottom:885.373333pt;}
.y14f{bottom:888.253333pt;}
.yb6{bottom:888.573333pt;}
.y6d{bottom:892.733333pt;}
.y3f{bottom:893.053333pt;}
.y7{bottom:894.653333pt;}
.yfc{bottom:902.333333pt;}
.y14e{bottom:903.293333pt;}
.yb5{bottom:905.213333pt;}
.y82{bottom:906.173333pt;}
.y6c{bottom:909.693333pt;}
.y3e{bottom:910.013333pt;}
.y14d{bottom:918.653333pt;}
.yfb{bottom:918.973333pt;}
.yb4{bottom:922.173333pt;}
.y6{bottom:924.733333pt;}
.y3d{bottom:926.653333pt;}
.y7d{bottom:928.573333pt;}
.y14c{bottom:934.013333pt;}
.yfa{bottom:935.933333pt;}
.yb3{bottom:939.133333pt;}
.y3c{bottom:943.613333pt;}
.y14b{bottom:949.373333pt;}
.y7f{bottom:952.573333pt;}
.yf9{bottom:952.893333pt;}
.y5{bottom:954.493333pt;}
.yb2{bottom:955.773333pt;}
.y3b{bottom:960.613333pt;}
.y14a{bottom:964.773333pt;}
.yf8{bottom:969.253333pt;}
.yb1{bottom:972.453333pt;}
.y3a{bottom:977.253333pt;}
.y7c{bottom:978.853333pt;}
.y149{bottom:980.133333pt;}
.yf7{bottom:983.653333pt;}
.y4{bottom:984.613333pt;}
.yb0{bottom:990.373333pt;}
.y39{bottom:994.213333pt;}
.y7b{bottom:995.493333pt;}
.y1{bottom:1026.533333pt;}
.h25{height:10.050000pt;}
.h24{height:10.320000pt;}
.h9{height:16.331250pt;}
.h1f{height:16.640000pt;}
.h21{height:16.672000pt;}
.h1e{height:16.960000pt;}
.h23{height:16.992000pt;}
.h17{height:21.440000pt;}
.h1a{height:21.472000pt;}
.h18{height:22.080000pt;}
.h15{height:22.112000pt;}
.h19{height:22.400000pt;}
.h16{height:23.360000pt;}
.ha{height:26.381250pt;}
.he{height:31.390625pt;}
.hb{height:31.406250pt;}
.h1d{height:34.240000pt;}
.h6{height:36.431250pt;}
.h7{height:41.456250pt;}
.h10{height:42.570000pt;}
.h14{height:46.112000pt;}
.h1b{height:46.400000pt;}
.hd{height:52.736250pt;}
.h2{height:52.762500pt;}
.h12{height:54.180000pt;}
.h11{height:57.787500pt;}
.h4{height:59.340000pt;}
.h8{height:62.812500pt;}
.h13{height:64.500000pt;}
.h22{height:67.552000pt;}
.hc{height:67.803750pt;}
.h5{height:68.288750pt;}
.h1c{height:69.287500pt;}
.h3{height:71.950625pt;}
.hf{height:74.820000pt;}
.h20{height:135.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:41.280000pt;}
.we{width:41.312000pt;}
.wd{width:41.600000pt;}
.wc{width:41.632000pt;}
.wf{width:53.792000pt;}
.w14{width:55.360000pt;}
.w10{width:56.672000pt;}
.wa{width:56.960000pt;}
.w16{width:57.312000pt;}
.w18{width:65.952000pt;}
.w15{width:69.152000pt;}
.w17{width:74.272000pt;}
.w9{width:75.552000pt;}
.w13{width:76.192000pt;}
.w5{width:90.592000pt;}
.w6{width:90.912000pt;}
.w19{width:107.872000pt;}
.w7{width:110.464000pt;}
.w3{width:120.704000pt;}
.w11{width:173.826667pt;}
.w12{width:276.293333pt;}
.w8{width:331.653333pt;}
.w4{width:453.920000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:7.360000pt;}
.x26{left:106.272000pt;}
.x2{left:113.311988pt;}
.x14{left:114.592000pt;}
.x8{left:117.151988pt;}
.x5{left:124.543988pt;}
.xa{left:127.103988pt;}
.x2b{left:137.026655pt;}
.x2e{left:143.426655pt;}
.xb{left:150.146655pt;}
.x4{left:152.066655pt;}
.xd{left:153.026655pt;}
.x6{left:160.706655pt;}
.x25{left:168.386667pt;}
.x1{left:172.546655pt;}
.x12{left:194.626655pt;}
.xf{left:207.773322pt;}
.x13{left:221.533322pt;}
.x1b{left:225.053333pt;}
.x16{left:235.293333pt;}
.x1a{left:237.853322pt;}
.x1e{left:266.333333pt;}
.x27{left:280.093333pt;}
.x1f{left:307.973333pt;}
.xc{left:314.693322pt;}
.x2d{left:318.213322pt;}
.x9{left:325.573322pt;}
.x7{left:337.413322pt;}
.x20{left:349.253333pt;}
.xe{left:351.813322pt;}
.x2c{left:375.839988pt;}
.x21{left:390.880000pt;}
.x3{left:401.759988pt;}
.x28{left:406.560000pt;}
.x17{left:416.800000pt;}
.x22{left:432.160000pt;}
.x23{left:473.786667pt;}
.x29{left:482.106667pt;}
.x18{left:507.386667pt;}
.x24{left:515.386667pt;}
.x1c{left:556.706667pt;}
.x19{left:598.306667pt;}
.x1d{left:632.253333pt;}
.x11{left:665.533322pt;}
.x10{left:683.453322pt;}
.x2a{left:685.053322pt;}
}




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