
    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_3d048c7452a2d643170d054c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_59262d0396b386f846fd4bec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_648cb5af865cf4908c464e59.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e281f28a96d7e2fbaee83f56.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_e45fcfdcc71e2acc6ebe1e02.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_996b91357aea41d364d6ffe1.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_24ec15ab1c202a4de7c4f929.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_07424687c4dfc5258bc783fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0095eb2c05bf2f2411756d1d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-2.364000px;}
.ls1f{letter-spacing:-2.160000px;}
.ls28{letter-spacing:-1.902000px;}
.ls23{letter-spacing:-1.800000px;}
.ls21{letter-spacing:-1.332000px;}
.ls3{letter-spacing:-1.176000px;}
.lsb{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.357000px;}
.ls2d{letter-spacing:-0.272400px;}
.ls29{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.106800px;}
.ls31{letter-spacing:-0.058320px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106560px;}
.ls20{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.153600px;}
.ls1a{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.460200px;}
.ls1e{letter-spacing:0.513600px;}
.ls16{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.696000px;}
.lsd{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.828000px;}
.lsc{letter-spacing:0.900000px;}
.ls8{letter-spacing:0.978000px;}
.ls4{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.620000px;}
.ls0{letter-spacing:3.546720px;}
.lsf{letter-spacing:3.780000px;}
.ls25{letter-spacing:4.986720px;}
.ls11{letter-spacing:6.426720px;}
.lse{letter-spacing:9.306720px;}
.ls27{letter-spacing:10.026720px;}
.ls1{letter-spacing:10.980000px;}
.ls30{letter-spacing:11.466720px;}
.ls1c{letter-spacing:11.700000px;}
.ls10{letter-spacing:15.066720px;}
.ls1b{letter-spacing:24.660000px;}
.ls2e{letter-spacing:41.706720px;}
.ls2f{letter-spacing:42.426720px;}
.ls19{letter-spacing:46.890720px;}
.ls18{letter-spacing:53.370720px;}
.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;}
}
.ws16{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.918000px;}
.ws11{word-spacing:-15.606000px;}
.ws1a{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.093600px;}
.ws13{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.733600px;}
.wse{word-spacing:-14.613240px;}
.ws6{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.479800px;}
.wsc{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.608000px;}
.ws1d{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.140000px;}
.ws18{word-spacing:-13.038000px;}
.ws7{word-spacing:-12.576000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws1c{word-spacing:-8.514480px;}
.ws12{word-spacing:-7.560000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-577.969920px;}
._1b{margin-left:-9.626880px;}
._1a{margin-left:-8.153280px;}
._1c{margin-left:-5.273280px;}
._15{margin-left:-3.833280px;}
._b{margin-left:-2.731200px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._8{width:2.603760px;}
._d{width:4.174560px;}
._7{width:5.745600px;}
._f{width:7.480080px;}
._10{width:8.545680px;}
._e{width:10.026480px;}
._a{width:11.868960px;}
._c{width:13.590720px;}
._19{width:14.891280px;}
._12{width:16.135200px;}
._9{width:17.820000px;}
._1e{width:18.942000px;}
._25{width:20.193840px;}
._16{width:21.309840px;}
._11{width:22.566720px;}
._13{width:24.450480px;}
._14{width:25.757760px;}
._1d{width:26.968080px;}
._1f{width:27.975840px;}
._22{width:30.537360px;}
._21{width:31.672800px;}
._23{width:34.193760px;}
._27{width:35.501280px;}
._26{width:36.582960px;}
._24{width:43.383600px;}
._18{width:58.163760px;}
._17{width:59.700240px;}
._20{width:94.293120px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:6.120000px;}
.y12b{bottom:25.920000px;}
.y128{bottom:30.600000px;}
.y12a{bottom:46.254000px;}
.y6{bottom:60.156000px;}
.y129{bottom:66.054000px;}
.y6c{bottom:70.056000px;}
.y33{bottom:96.876000px;}
.ya1{bottom:103.716000px;}
.y69{bottom:107.136000px;}
.y127{bottom:110.196000px;}
.yf9{bottom:116.316000px;}
.ya0{bottom:118.296000px;}
.y68{bottom:121.716000px;}
.y32{bottom:121.896000px;}
.yc5{bottom:126.216000px;}
.y31{bottom:136.656000px;}
.y67{bottom:141.516000px;}
.y9f{bottom:143.316000px;}
.yf8{bottom:143.496000px;}
.yc4{bottom:146.016000px;}
.y30{bottom:156.450000px;}
.y9e{bottom:157.890000px;}
.yf7{bottom:163.290000px;}
.y66{bottom:166.710000px;}
.yc3{bottom:171.210000px;}
.y65{bottom:181.290000px;}
.y2f{bottom:181.470000px;}
.y9d{bottom:182.910000px;}
.yf6{bottom:183.090000px;}
.yc2{bottom:185.790000px;}
.y9c{bottom:197.670000px;}
.yf5{bottom:202.890000px;}
.y2e{bottom:203.070000px;}
.yc1{bottom:205.590000px;}
.y64{bottom:206.310000px;}
.y63{bottom:220.890000px;}
.y9b{bottom:222.690000px;}
.y2d{bottom:222.870000px;}
.yc0{bottom:230.610000px;}
.y62{bottom:240.690000px;}
.y9a{bottom:242.490000px;}
.yf4{bottom:242.670000px;}
.y2c{bottom:242.850000px;}
.ybf{bottom:250.410000px;}
.y99{bottom:257.070000px;}
.y61{bottom:260.670000px;}
.yf3{bottom:262.470000px;}
.y2b{bottom:262.650000px;}
.y126{bottom:275.250000px;}
.ybe{bottom:277.410000px;}
.y98{bottom:282.135000px;}
.yf2{bottom:282.315000px;}
.y2a{bottom:282.495000px;}
.y60{bottom:285.735000px;}
.y125{bottom:294.195000px;}
.y97{bottom:296.355000px;}
.ybd{bottom:297.255000px;}
.yf1{bottom:302.115000px;}
.y29{bottom:302.295000px;}
.y5f{bottom:306.255000px;}
.y124{bottom:313.275000px;}
.ybc{bottom:317.055000px;}
.y96{bottom:319.935000px;}
.yf0{bottom:321.915000px;}
.y28{bottom:322.095000px;}
.y5e{bottom:326.055000px;}
.y123{bottom:332.175000px;}
.ybb{bottom:337.035000px;}
.yef{bottom:341.895000px;}
.y27{bottom:342.075000px;}
.y95{bottom:342.795000px;}
.y5d{bottom:346.035000px;}
.y122{bottom:351.255000px;}
.yba{bottom:356.835000px;}
.yee{bottom:361.695000px;}
.y26{bottom:361.875000px;}
.y94{bottom:362.595000px;}
.y5c{bottom:365.835000px;}
.y121{bottom:370.155000px;}
.yb9{bottom:376.635000px;}
.yed{bottom:381.495000px;}
.y25{bottom:381.675000px;}
.y93{bottom:382.575000px;}
.y5b{bottom:385.635000px;}
.y120{bottom:389.055000px;}
.yb8{bottom:396.435000px;}
.yec{bottom:401.295000px;}
.y24{bottom:401.475000px;}
.y92{bottom:402.375000px;}
.y5a{bottom:405.435000px;}
.y11f{bottom:408.135000px;}
.yb7{bottom:416.235000px;}
.yeb{bottom:421.095000px;}
.y23{bottom:421.275000px;}
.y91{bottom:422.175000px;}
.y59{bottom:425.235000px;}
.y11e{bottom:427.035000px;}
.yb6{bottom:436.215000px;}
.yea{bottom:441.075000px;}
.y22{bottom:441.255000px;}
.y90{bottom:441.975000px;}
.y58{bottom:445.215000px;}
.y11d{bottom:446.115000px;}
.yb5{bottom:456.015000px;}
.ye9{bottom:460.875000px;}
.y21{bottom:461.055000px;}
.y8f{bottom:461.775000px;}
.y57{bottom:465.015000px;}
.yb4{bottom:475.815000px;}
.ye8{bottom:480.675000px;}
.y20{bottom:480.855000px;}
.y8e{bottom:481.755000px;}
.y11c{bottom:484.095000px;}
.y56{bottom:484.815000px;}
.yb3{bottom:495.615000px;}
.ye7{bottom:500.475000px;}
.y1f{bottom:500.655000px;}
.y8d{bottom:501.555000px;}
.y11b{bottom:502.995000px;}
.y55{bottom:504.615000px;}
.yb2{bottom:515.415000px;}
.ye6{bottom:520.275000px;}
.y1e{bottom:520.455000px;}
.y8c{bottom:521.355000px;}
.y11a{bottom:521.895000px;}
.y54{bottom:524.415000px;}
.yb1{bottom:535.395000px;}
.ye5{bottom:540.255000px;}
.y1d{bottom:540.435000px;}
.y8b{bottom:541.155000px;}
.y119{bottom:543.135000px;}
.y53{bottom:544.395000px;}
.yb0{bottom:555.195000px;}
.ye4{bottom:560.055000px;}
.y1c{bottom:560.235000px;}
.y8a{bottom:560.955000px;}
.y118{bottom:562.935000px;}
.y52{bottom:564.195000px;}
.yaf{bottom:575.025000px;}
.ye3{bottom:579.885000px;}
.y1b{bottom:580.065000px;}
.y89{bottom:580.965000px;}
.y117{bottom:582.765000px;}
.y51{bottom:584.025000px;}
.yae{bottom:594.825000px;}
.ye2{bottom:599.685000px;}
.y1a{bottom:599.865000px;}
.y88{bottom:600.765000px;}
.y116{bottom:602.565000px;}
.y50{bottom:603.825000px;}
.yad{bottom:614.625000px;}
.ye1{bottom:619.485000px;}
.y87{bottom:620.565000px;}
.y19{bottom:622.005000px;}
.y115{bottom:622.365000px;}
.y4f{bottom:623.625000px;}
.yac{bottom:634.605000px;}
.ye0{bottom:639.465000px;}
.y86{bottom:640.365000px;}
.y114{bottom:642.345000px;}
.y4e{bottom:643.605000px;}
.y18{bottom:650.805000px;}
.yab{bottom:654.405000px;}
.ydf{bottom:659.265000px;}
.y85{bottom:660.165000px;}
.y113{bottom:662.145000px;}
.y4d{bottom:663.405000px;}
.y17{bottom:670.605000px;}
.yaa{bottom:674.205000px;}
.yde{bottom:679.065000px;}
.y84{bottom:680.145000px;}
.y112{bottom:681.945000px;}
.y4c{bottom:683.205000px;}
.y16{bottom:690.405000px;}
.ya9{bottom:694.005000px;}
.ydd{bottom:698.865000px;}
.y83{bottom:699.945000px;}
.y111{bottom:701.745000px;}
.y4b{bottom:703.005000px;}
.y15{bottom:710.385000px;}
.ya8{bottom:713.805000px;}
.ydc{bottom:718.665000px;}
.y82{bottom:719.745000px;}
.y110{bottom:721.545000px;}
.y4a{bottom:722.805000px;}
.y14{bottom:730.185000px;}
.ya7{bottom:733.785000px;}
.ydb{bottom:738.645000px;}
.y81{bottom:739.545000px;}
.y10f{bottom:741.525000px;}
.y49{bottom:742.785000px;}
.y13{bottom:749.985000px;}
.ya6{bottom:753.585000px;}
.yda{bottom:758.445000px;}
.y80{bottom:759.345000px;}
.y10e{bottom:761.325000px;}
.y48{bottom:762.585000px;}
.y12{bottom:769.785000px;}
.ya5{bottom:773.385000px;}
.yd9{bottom:778.245000px;}
.y7f{bottom:779.325000px;}
.y10d{bottom:781.125000px;}
.y47{bottom:782.385000px;}
.y11{bottom:789.585000px;}
.ya4{bottom:793.185000px;}
.yd8{bottom:798.045000px;}
.y7e{bottom:799.125000px;}
.y10c{bottom:800.925000px;}
.y46{bottom:802.185000px;}
.y10{bottom:809.565000px;}
.ya3{bottom:812.985000px;}
.yd7{bottom:817.845000px;}
.y7d{bottom:818.925000px;}
.y10b{bottom:821.085000px;}
.y45{bottom:821.985000px;}
.yf{bottom:829.365000px;}
.ya2{bottom:832.965000px;}
.yd6{bottom:837.825000px;}
.y7c{bottom:838.725000px;}
.y10a{bottom:840.885000px;}
.y44{bottom:841.965000px;}
.ye{bottom:849.210000px;}
.yd5{bottom:857.670000px;}
.y7b{bottom:858.570000px;}
.y109{bottom:860.730000px;}
.y43{bottom:861.810000px;}
.yd{bottom:876.210000px;}
.yd4{bottom:877.470000px;}
.y7a{bottom:878.550000px;}
.y108{bottom:880.530000px;}
.y42{bottom:881.610000px;}
.yd3{bottom:897.270000px;}
.y79{bottom:898.350000px;}
.y107{bottom:900.510000px;}
.yc{bottom:901.230000px;}
.y41{bottom:901.410000px;}
.yd2{bottom:917.070000px;}
.y78{bottom:918.150000px;}
.y106{bottom:920.310000px;}
.yb{bottom:921.210000px;}
.ya{bottom:936.330000px;}
.yd1{bottom:937.050000px;}
.y77{bottom:937.950000px;}
.y105{bottom:940.110000px;}
.y40{bottom:941.190000px;}
.yd0{bottom:956.850000px;}
.y9{bottom:957.570000px;}
.y76{bottom:957.750000px;}
.y104{bottom:959.910000px;}
.y3f{bottom:960.990000px;}
.ycf{bottom:976.650000px;}
.y75{bottom:977.730000px;}
.y103{bottom:979.710000px;}
.y3e{bottom:980.790000px;}
.y8{bottom:980.970000px;}
.yce{bottom:996.450000px;}
.y74{bottom:997.530000px;}
.y102{bottom:999.690000px;}
.y3d{bottom:1000.590000px;}
.y7{bottom:1012.830000px;}
.ycd{bottom:1016.250000px;}
.y73{bottom:1017.330000px;}
.y101{bottom:1019.490000px;}
.y3c{bottom:1020.390000px;}
.ycc{bottom:1036.230000px;}
.y72{bottom:1037.130000px;}
.y100{bottom:1039.290000px;}
.y3b{bottom:1040.370000px;}
.y5{bottom:1051.170000px;}
.ycb{bottom:1056.030000px;}
.y71{bottom:1056.930000px;}
.yff{bottom:1059.090000px;}
.y3a{bottom:1060.170000px;}
.yca{bottom:1075.830000px;}
.y70{bottom:1076.910000px;}
.yfe{bottom:1078.890000px;}
.y39{bottom:1079.970000px;}
.y4{bottom:1081.950000px;}
.yc9{bottom:1095.630000px;}
.y6f{bottom:1096.710000px;}
.yfd{bottom:1098.870000px;}
.y38{bottom:1099.770000px;}
.y3{bottom:1112.730000px;}
.yc8{bottom:1115.430000px;}
.y6e{bottom:1116.510000px;}
.yfc{bottom:1118.670000px;}
.y37{bottom:1119.570000px;}
.yc7{bottom:1135.440000px;}
.y6d{bottom:1136.340000px;}
.yfb{bottom:1138.500000px;}
.y36{bottom:1139.580000px;}
.y2{bottom:1143.720000px;}
.yc6{bottom:1149.660000px;}
.yfa{bottom:1152.720000px;}
.y6b{bottom:1166.940000px;}
.y35{bottom:1170.000000px;}
.y1{bottom:1177.560000px;}
.y6a{bottom:1189.980000px;}
.y34{bottom:1193.220000px;}
.h12{height:2.826563px;}
.hb{height:38.139609px;}
.h6{height:38.158594px;}
.hf{height:38.671172px;}
.hc{height:41.726953px;}
.he{height:52.998047px;}
.h7{height:58.651172px;}
.h9{height:59.038594px;}
.h10{height:59.439023px;}
.h5{height:60.226875px;}
.hd{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.h11{height:80.100000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:199.470000px;}
.w4{width:595.185000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.560000px;}
.x8{left:45.900000px;}
.x1{left:54.179987px;}
.x4{left:67.499987px;}
.x3{left:70.199987px;}
.x2{left:75.599987px;}
.x6{left:80.999987px;}
.x5{left:87.839987px;}
.x7{left:108.035987px;}
.x9{left:191.370000px;}
.xa{left:245.370000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.101333pt;}
.ls1f{letter-spacing:-1.920000pt;}
.ls28{letter-spacing:-1.690667pt;}
.ls23{letter-spacing:-1.600000pt;}
.ls21{letter-spacing:-1.184000pt;}
.ls3{letter-spacing:-1.045333pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.317333pt;}
.ls2d{letter-spacing:-0.242133pt;}
.ls29{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls31{letter-spacing:-0.051840pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094720pt;}
.ls20{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.136533pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.409067pt;}
.ls1e{letter-spacing:0.456533pt;}
.ls16{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.618667pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.736000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls8{letter-spacing:0.869333pt;}
.ls4{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls0{letter-spacing:3.152640pt;}
.lsf{letter-spacing:3.360000pt;}
.ls25{letter-spacing:4.432640pt;}
.ls11{letter-spacing:5.712640pt;}
.lse{letter-spacing:8.272640pt;}
.ls27{letter-spacing:8.912640pt;}
.ls1{letter-spacing:9.760000pt;}
.ls30{letter-spacing:10.192640pt;}
.ls1c{letter-spacing:10.400000pt;}
.ls10{letter-spacing:13.392640pt;}
.ls1b{letter-spacing:21.920000pt;}
.ls2e{letter-spacing:37.072640pt;}
.ls2f{letter-spacing:37.712640pt;}
.ls19{letter-spacing:41.680640pt;}
.ls18{letter-spacing:47.440640pt;}
.ws16{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.240000pt;}
.ws9{word-spacing:-14.149333pt;}
.ws11{word-spacing:-13.872000pt;}
.ws1a{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.416533pt;}
.ws13{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.989547pt;}
.ws6{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.096000pt;}
.ws1d{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.680000pt;}
.ws18{word-spacing:-11.589333pt;}
.ws7{word-spacing:-11.178667pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws1c{word-spacing:-7.568427pt;}
.ws12{word-spacing:-6.720000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-513.751040pt;}
._1b{margin-left:-8.557227pt;}
._1a{margin-left:-7.247360pt;}
._1c{margin-left:-4.687360pt;}
._15{margin-left:-3.407360pt;}
._b{margin-left:-2.427733pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._8{width:2.314453pt;}
._d{width:3.710720pt;}
._7{width:5.107200pt;}
._f{width:6.648960pt;}
._10{width:7.596160pt;}
._e{width:8.912427pt;}
._a{width:10.550187pt;}
._c{width:12.080640pt;}
._19{width:13.236693pt;}
._12{width:14.342400pt;}
._9{width:15.840000pt;}
._1e{width:16.837333pt;}
._25{width:17.950080pt;}
._16{width:18.942080pt;}
._11{width:20.059307pt;}
._13{width:21.733760pt;}
._14{width:22.895787pt;}
._1d{width:23.971627pt;}
._1f{width:24.867413pt;}
._22{width:27.144320pt;}
._21{width:28.153600pt;}
._23{width:30.394453pt;}
._27{width:31.556693pt;}
._26{width:32.518187pt;}
._24{width:38.563200pt;}
._18{width:51.701120pt;}
._17{width:53.066880pt;}
._20{width:83.816107pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:5.440000pt;}
.y12b{bottom:23.040000pt;}
.y128{bottom:27.200000pt;}
.y12a{bottom:41.114667pt;}
.y6{bottom:53.472000pt;}
.y129{bottom:58.714667pt;}
.y6c{bottom:62.272000pt;}
.y33{bottom:86.112000pt;}
.ya1{bottom:92.192000pt;}
.y69{bottom:95.232000pt;}
.y127{bottom:97.952000pt;}
.yf9{bottom:103.392000pt;}
.ya0{bottom:105.152000pt;}
.y68{bottom:108.192000pt;}
.y32{bottom:108.352000pt;}
.yc5{bottom:112.192000pt;}
.y31{bottom:121.472000pt;}
.y67{bottom:125.792000pt;}
.y9f{bottom:127.392000pt;}
.yf8{bottom:127.552000pt;}
.yc4{bottom:129.792000pt;}
.y30{bottom:139.066667pt;}
.y9e{bottom:140.346667pt;}
.yf7{bottom:145.146667pt;}
.y66{bottom:148.186667pt;}
.yc3{bottom:152.186667pt;}
.y65{bottom:161.146667pt;}
.y2f{bottom:161.306667pt;}
.y9d{bottom:162.586667pt;}
.yf6{bottom:162.746667pt;}
.yc2{bottom:165.146667pt;}
.y9c{bottom:175.706667pt;}
.yf5{bottom:180.346667pt;}
.y2e{bottom:180.506667pt;}
.yc1{bottom:182.746667pt;}
.y64{bottom:183.386667pt;}
.y63{bottom:196.346667pt;}
.y9b{bottom:197.946667pt;}
.y2d{bottom:198.106667pt;}
.yc0{bottom:204.986667pt;}
.y62{bottom:213.946667pt;}
.y9a{bottom:215.546667pt;}
.yf4{bottom:215.706667pt;}
.y2c{bottom:215.866667pt;}
.ybf{bottom:222.586667pt;}
.y99{bottom:228.506667pt;}
.y61{bottom:231.706667pt;}
.yf3{bottom:233.306667pt;}
.y2b{bottom:233.466667pt;}
.y126{bottom:244.666667pt;}
.ybe{bottom:246.586667pt;}
.y98{bottom:250.786667pt;}
.yf2{bottom:250.946667pt;}
.y2a{bottom:251.106667pt;}
.y60{bottom:253.986667pt;}
.y125{bottom:261.506667pt;}
.y97{bottom:263.426667pt;}
.ybd{bottom:264.226667pt;}
.yf1{bottom:268.546667pt;}
.y29{bottom:268.706667pt;}
.y5f{bottom:272.226667pt;}
.y124{bottom:278.466667pt;}
.ybc{bottom:281.826667pt;}
.y96{bottom:284.386667pt;}
.yf0{bottom:286.146667pt;}
.y28{bottom:286.306667pt;}
.y5e{bottom:289.826667pt;}
.y123{bottom:295.266667pt;}
.ybb{bottom:299.586667pt;}
.yef{bottom:303.906667pt;}
.y27{bottom:304.066667pt;}
.y95{bottom:304.706667pt;}
.y5d{bottom:307.586667pt;}
.y122{bottom:312.226667pt;}
.yba{bottom:317.186667pt;}
.yee{bottom:321.506667pt;}
.y26{bottom:321.666667pt;}
.y94{bottom:322.306667pt;}
.y5c{bottom:325.186667pt;}
.y121{bottom:329.026667pt;}
.yb9{bottom:334.786667pt;}
.yed{bottom:339.106667pt;}
.y25{bottom:339.266667pt;}
.y93{bottom:340.066667pt;}
.y5b{bottom:342.786667pt;}
.y120{bottom:345.826667pt;}
.yb8{bottom:352.386667pt;}
.yec{bottom:356.706667pt;}
.y24{bottom:356.866667pt;}
.y92{bottom:357.666667pt;}
.y5a{bottom:360.386667pt;}
.y11f{bottom:362.786667pt;}
.yb7{bottom:369.986667pt;}
.yeb{bottom:374.306667pt;}
.y23{bottom:374.466667pt;}
.y91{bottom:375.266667pt;}
.y59{bottom:377.986667pt;}
.y11e{bottom:379.586667pt;}
.yb6{bottom:387.746667pt;}
.yea{bottom:392.066667pt;}
.y22{bottom:392.226667pt;}
.y90{bottom:392.866667pt;}
.y58{bottom:395.746667pt;}
.y11d{bottom:396.546667pt;}
.yb5{bottom:405.346667pt;}
.ye9{bottom:409.666667pt;}
.y21{bottom:409.826667pt;}
.y8f{bottom:410.466667pt;}
.y57{bottom:413.346667pt;}
.yb4{bottom:422.946667pt;}
.ye8{bottom:427.266667pt;}
.y20{bottom:427.426667pt;}
.y8e{bottom:428.226667pt;}
.y11c{bottom:430.306667pt;}
.y56{bottom:430.946667pt;}
.yb3{bottom:440.546667pt;}
.ye7{bottom:444.866667pt;}
.y1f{bottom:445.026667pt;}
.y8d{bottom:445.826667pt;}
.y11b{bottom:447.106667pt;}
.y55{bottom:448.546667pt;}
.yb2{bottom:458.146667pt;}
.ye6{bottom:462.466667pt;}
.y1e{bottom:462.626667pt;}
.y8c{bottom:463.426667pt;}
.y11a{bottom:463.906667pt;}
.y54{bottom:466.146667pt;}
.yb1{bottom:475.906667pt;}
.ye5{bottom:480.226667pt;}
.y1d{bottom:480.386667pt;}
.y8b{bottom:481.026667pt;}
.y119{bottom:482.786667pt;}
.y53{bottom:483.906667pt;}
.yb0{bottom:493.506667pt;}
.ye4{bottom:497.826667pt;}
.y1c{bottom:497.986667pt;}
.y8a{bottom:498.626667pt;}
.y118{bottom:500.386667pt;}
.y52{bottom:501.506667pt;}
.yaf{bottom:511.133333pt;}
.ye3{bottom:515.453333pt;}
.y1b{bottom:515.613333pt;}
.y89{bottom:516.413333pt;}
.y117{bottom:518.013333pt;}
.y51{bottom:519.133333pt;}
.yae{bottom:528.733333pt;}
.ye2{bottom:533.053333pt;}
.y1a{bottom:533.213333pt;}
.y88{bottom:534.013333pt;}
.y116{bottom:535.613333pt;}
.y50{bottom:536.733333pt;}
.yad{bottom:546.333333pt;}
.ye1{bottom:550.653333pt;}
.y87{bottom:551.613333pt;}
.y19{bottom:552.893333pt;}
.y115{bottom:553.213333pt;}
.y4f{bottom:554.333333pt;}
.yac{bottom:564.093333pt;}
.ye0{bottom:568.413333pt;}
.y86{bottom:569.213333pt;}
.y114{bottom:570.973333pt;}
.y4e{bottom:572.093333pt;}
.y18{bottom:578.493333pt;}
.yab{bottom:581.693333pt;}
.ydf{bottom:586.013333pt;}
.y85{bottom:586.813333pt;}
.y113{bottom:588.573333pt;}
.y4d{bottom:589.693333pt;}
.y17{bottom:596.093333pt;}
.yaa{bottom:599.293333pt;}
.yde{bottom:603.613333pt;}
.y84{bottom:604.573333pt;}
.y112{bottom:606.173333pt;}
.y4c{bottom:607.293333pt;}
.y16{bottom:613.693333pt;}
.ya9{bottom:616.893333pt;}
.ydd{bottom:621.213333pt;}
.y83{bottom:622.173333pt;}
.y111{bottom:623.773333pt;}
.y4b{bottom:624.893333pt;}
.y15{bottom:631.453333pt;}
.ya8{bottom:634.493333pt;}
.ydc{bottom:638.813333pt;}
.y82{bottom:639.773333pt;}
.y110{bottom:641.373333pt;}
.y4a{bottom:642.493333pt;}
.y14{bottom:649.053333pt;}
.ya7{bottom:652.253333pt;}
.ydb{bottom:656.573333pt;}
.y81{bottom:657.373333pt;}
.y10f{bottom:659.133333pt;}
.y49{bottom:660.253333pt;}
.y13{bottom:666.653333pt;}
.ya6{bottom:669.853333pt;}
.yda{bottom:674.173333pt;}
.y80{bottom:674.973333pt;}
.y10e{bottom:676.733333pt;}
.y48{bottom:677.853333pt;}
.y12{bottom:684.253333pt;}
.ya5{bottom:687.453333pt;}
.yd9{bottom:691.773333pt;}
.y7f{bottom:692.733333pt;}
.y10d{bottom:694.333333pt;}
.y47{bottom:695.453333pt;}
.y11{bottom:701.853333pt;}
.ya4{bottom:705.053333pt;}
.yd8{bottom:709.373333pt;}
.y7e{bottom:710.333333pt;}
.y10c{bottom:711.933333pt;}
.y46{bottom:713.053333pt;}
.y10{bottom:719.613333pt;}
.ya3{bottom:722.653333pt;}
.yd7{bottom:726.973333pt;}
.y7d{bottom:727.933333pt;}
.y10b{bottom:729.853333pt;}
.y45{bottom:730.653333pt;}
.yf{bottom:737.213333pt;}
.ya2{bottom:740.413333pt;}
.yd6{bottom:744.733333pt;}
.y7c{bottom:745.533333pt;}
.y10a{bottom:747.453333pt;}
.y44{bottom:748.413333pt;}
.ye{bottom:754.853333pt;}
.yd5{bottom:762.373333pt;}
.y7b{bottom:763.173333pt;}
.y109{bottom:765.093333pt;}
.y43{bottom:766.053333pt;}
.yd{bottom:778.853333pt;}
.yd4{bottom:779.973333pt;}
.y7a{bottom:780.933333pt;}
.y108{bottom:782.693333pt;}
.y42{bottom:783.653333pt;}
.yd3{bottom:797.573333pt;}
.y79{bottom:798.533333pt;}
.y107{bottom:800.453333pt;}
.yc{bottom:801.093333pt;}
.y41{bottom:801.253333pt;}
.yd2{bottom:815.173333pt;}
.y78{bottom:816.133333pt;}
.y106{bottom:818.053333pt;}
.yb{bottom:818.853333pt;}
.ya{bottom:832.293333pt;}
.yd1{bottom:832.933333pt;}
.y77{bottom:833.733333pt;}
.y105{bottom:835.653333pt;}
.y40{bottom:836.613333pt;}
.yd0{bottom:850.533333pt;}
.y9{bottom:851.173333pt;}
.y76{bottom:851.333333pt;}
.y104{bottom:853.253333pt;}
.y3f{bottom:854.213333pt;}
.ycf{bottom:868.133333pt;}
.y75{bottom:869.093333pt;}
.y103{bottom:870.853333pt;}
.y3e{bottom:871.813333pt;}
.y8{bottom:871.973333pt;}
.yce{bottom:885.733333pt;}
.y74{bottom:886.693333pt;}
.y102{bottom:888.613333pt;}
.y3d{bottom:889.413333pt;}
.y7{bottom:900.293333pt;}
.ycd{bottom:903.333333pt;}
.y73{bottom:904.293333pt;}
.y101{bottom:906.213333pt;}
.y3c{bottom:907.013333pt;}
.ycc{bottom:921.093333pt;}
.y72{bottom:921.893333pt;}
.y100{bottom:923.813333pt;}
.y3b{bottom:924.773333pt;}
.y5{bottom:934.373333pt;}
.ycb{bottom:938.693333pt;}
.y71{bottom:939.493333pt;}
.yff{bottom:941.413333pt;}
.y3a{bottom:942.373333pt;}
.yca{bottom:956.293333pt;}
.y70{bottom:957.253333pt;}
.yfe{bottom:959.013333pt;}
.y39{bottom:959.973333pt;}
.y4{bottom:961.733333pt;}
.yc9{bottom:973.893333pt;}
.y6f{bottom:974.853333pt;}
.yfd{bottom:976.773333pt;}
.y38{bottom:977.573333pt;}
.y3{bottom:989.093333pt;}
.yc8{bottom:991.493333pt;}
.y6e{bottom:992.453333pt;}
.yfc{bottom:994.373333pt;}
.y37{bottom:995.173333pt;}
.yc7{bottom:1009.280000pt;}
.y6d{bottom:1010.080000pt;}
.yfb{bottom:1012.000000pt;}
.y36{bottom:1012.960000pt;}
.y2{bottom:1016.640000pt;}
.yc6{bottom:1021.920000pt;}
.yfa{bottom:1024.640000pt;}
.y6b{bottom:1037.280000pt;}
.y35{bottom:1040.000000pt;}
.y1{bottom:1046.720000pt;}
.y6a{bottom:1057.760000pt;}
.y34{bottom:1060.640000pt;}
.h12{height:2.512500pt;}
.hb{height:33.901875pt;}
.h6{height:33.918750pt;}
.hf{height:34.374375pt;}
.hc{height:37.090625pt;}
.he{height:47.109375pt;}
.h7{height:52.134375pt;}
.h9{height:52.478750pt;}
.h10{height:52.834688pt;}
.h5{height:53.535000pt;}
.hd{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.h11{height:71.200000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:177.306667pt;}
.w4{width:529.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.720000pt;}
.x8{left:40.800000pt;}
.x1{left:48.159988pt;}
.x4{left:59.999988pt;}
.x3{left:62.399988pt;}
.x2{left:67.199988pt;}
.x6{left:71.999988pt;}
.x5{left:78.079988pt;}
.x7{left:96.031988pt;}
.x9{left:170.106667pt;}
.xa{left:218.106667pt;}
}




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