
    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_a1897ebf19803c993eb148bd.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fe352361ff93d945bff0f198.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_44efcb52f5bcaf610a6ff266.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a104073f370d34cfb1f7f91e.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_6e2ddad8b4616a63d0275a25.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_30d1fe10c4b7814063033be6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_097fba31be54297ae468a5b5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_a72c35e49a2e9bea9acf29b6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_41a628d6641dd330f62e592b.woff')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-75.600000px;}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:36.000000px;}
.ls20{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.457800px;}
.ls34{letter-spacing:-0.413400px;}
.ls35{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.350400px;}
.ls38{letter-spacing:-0.206400px;}
.ls33{letter-spacing:-0.053280px;}
.ls37{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.025920px;}
.ls31{letter-spacing:0.053280px;}
.ls2e{letter-spacing:0.106560px;}
.ls36{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.109200px;}
.lse{letter-spacing:0.152400px;}
.ls32{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.262080px;}
.ls2d{letter-spacing:0.262200px;}
.ls2f{letter-spacing:0.286560px;}
.ls2b{letter-spacing:0.305280px;}
.ls10{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.326640px;}
.lsb{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.550080px;}
.ls0{letter-spacing:0.677520px;}
.ls6{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.936000px;}
.ls29{letter-spacing:1.440000px;}
.ls15{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.780000px;}
.ls27{letter-spacing:4.320000px;}
.ls13{letter-spacing:5.760000px;}
.ls3{letter-spacing:5.940000px;}
.ls14{letter-spacing:6.480000px;}
.ls18{letter-spacing:7.200000px;}
.ls1f{letter-spacing:8.640000px;}
.ls1e{letter-spacing:10.080000px;}
.ls25{letter-spacing:10.800000px;}
.ls1d{letter-spacing:11.520000px;}
.ls17{letter-spacing:12.545280px;}
.ls26{letter-spacing:12.960000px;}
.ls2a{letter-spacing:14.376000px;}
.ls30{letter-spacing:14.580000px;}
.ls1b{letter-spacing:15.840000px;}
.ls28{letter-spacing:26.640000px;}
.ls11{letter-spacing:88.865280px;}
.lsf{letter-spacing:89.585280px;}
.ls24{letter-spacing:90.696000px;}
.ls16{letter-spacing:91.416000px;}
.ls7{letter-spacing:119.105280px;}
.ls22{letter-spacing:195.425280px;}
.ls8{letter-spacing:195.816000px;}
.ls23{letter-spacing:198.000000px;}
.ls21{letter-spacing:199.416000px;}
.ls2c{letter-spacing:199.440000px;}
.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:-30.060000px;}
.ws2{word-spacing:-25.234723px;}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-21.420000px;}
.wsf{word-spacing:-21.060000px;}
.ws10{word-spacing:-20.709600px;}
.ws3{word-spacing:-19.440000px;}
.ws11{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.ws13{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.ws9{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.436000px;}
.ws12{word-spacing:-13.500000px;}
.wsd{word-spacing:-10.440000px;}
.ws18{word-spacing:-9.711360px;}
.wsa{word-spacing:0.000000px;}
._a{margin-left:-2554.200000px;}
._1b{margin-left:-198.984000px;}
._1{margin-left:-1.293120px;}
._0{width:1.067520px;}
._7{width:2.700240px;}
._6{width:3.992880px;}
._8{width:5.057760px;}
._2{width:6.155280px;}
._4{width:7.366800px;}
._3{width:8.610960px;}
._5{width:9.717600px;}
._c{width:10.863360px;}
._b{width:11.923200px;}
._e{width:13.348800px;}
._d{width:15.120000px;}
._1d{width:16.158240px;}
._9{width:17.884800px;}
._11{width:19.607040px;}
._12{width:20.805600px;}
._1a{width:21.960000px;}
._19{width:23.250240px;}
._f{width:24.539520px;}
._10{width:26.368320px;}
._1e{width:31.374000px;}
._1f{width:32.639040px;}
._20{width:34.421040px;}
._23{width:35.439120px;}
._22{width:36.692640px;}
._14{width:38.756160px;}
._13{width:40.100160px;}
._21{width:101.475840px;}
._1c{width:131.355840px;}
._16{width:164.880000px;}
._18{width:180.524160px;}
._15{width:186.480000px;}
._17{width:199.416000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:58.200000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:100.938894px;}
.fs0{font-size:120.240000px;}
.y118{bottom:-18.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:100.500000px;}
.ydc{bottom:105.000000px;}
.y2b{bottom:108.000000px;}
.y103{bottom:111.000000px;}
.y11a{bottom:117.000000px;}
.y8a{bottom:118.500000px;}
.yb2{bottom:120.000000px;}
.y5a{bottom:131.796000px;}
.y29{bottom:149.796000px;}
.y59{bottom:150.690000px;}
.y101{bottom:151.770000px;}
.yb0{bottom:160.050000px;}
.y88{bottom:166.530000px;}
.y28{bottom:168.870000px;}
.y100{bottom:169.050000px;}
.yda{bottom:169.590000px;}
.y58{bottom:169.770000px;}
.yaf{bottom:179.130000px;}
.y87{bottom:185.610000px;}
.y27{bottom:187.770000px;}
.y57{bottom:188.670000px;}
.yff{bottom:195.330000px;}
.yae{bottom:198.030000px;}
.y86{bottom:204.510000px;}
.y26{bottom:206.670000px;}
.y56{bottom:207.750000px;}
.yfe{bottom:212.610000px;}
.yd9{bottom:216.570000px;}
.yad{bottom:216.930000px;}
.y85{bottom:223.590000px;}
.y25{bottom:225.750000px;}
.y55{bottom:226.650000px;}
.yd8{bottom:235.650000px;}
.yac{bottom:236.010000px;}
.yfd{bottom:238.890000px;}
.y84{bottom:242.490000px;}
.y24{bottom:245.190000px;}
.y54{bottom:245.730000px;}
.yd7{bottom:254.550000px;}
.yab{bottom:254.910000px;}
.yfc{bottom:255.990000px;}
.y83{bottom:261.390000px;}
.y53{bottom:264.630000px;}
.y23{bottom:265.350000px;}
.yaa{bottom:274.035000px;}
.y82{bottom:280.515000px;}
.yfb{bottom:282.315000px;}
.yd6{bottom:282.675000px;}
.y52{bottom:283.575000px;}
.y22{bottom:284.475000px;}
.yfa{bottom:299.595000px;}
.ya9{bottom:301.935000px;}
.yd5{bottom:303.195000px;}
.y81{bottom:308.415000px;}
.yf9{bottom:316.875000px;}
.ya8{bottom:320.835000px;}
.y51{bottom:321.555000px;}
.y21{bottom:322.275000px;}
.y80{bottom:327.495000px;}
.ya7{bottom:339.915000px;}
.y50{bottom:340.635000px;}
.yd4{bottom:341.175000px;}
.y20{bottom:341.355000px;}
.yf8{bottom:343.875000px;}
.y7f{bottom:346.395000px;}
.ya6{bottom:358.815000px;}
.y1f{bottom:360.255000px;}
.yf7{bottom:363.855000px;}
.y7e{bottom:365.295000px;}
.ya5{bottom:377.895000px;}
.y4f{bottom:378.435000px;}
.yd3{bottom:379.155000px;}
.y1e{bottom:379.335000px;}
.yf6{bottom:381.135000px;}
.y7d{bottom:384.375000px;}
.ya4{bottom:396.795000px;}
.y4e{bottom:397.515000px;}
.yd2{bottom:398.055000px;}
.yf5{bottom:398.235000px;}
.y7c{bottom:403.275000px;}
.yf4{bottom:415.515000px;}
.ya3{bottom:415.695000px;}
.y1d{bottom:416.235000px;}
.y4d{bottom:416.415000px;}
.yd1{bottom:417.135000px;}
.y7b{bottom:422.355000px;}
.ya2{bottom:434.775000px;}
.y1c{bottom:435.135000px;}
.y4c{bottom:435.495000px;}
.yd0{bottom:436.035000px;}
.y7a{bottom:441.255000px;}
.yf3{bottom:441.795000px;}
.y1b{bottom:454.215000px;}
.y4b{bottom:454.395000px;}
.ycf{bottom:455.115000px;}
.yf2{bottom:459.075000px;}
.y79{bottom:460.155000px;}
.ya1{bottom:472.755000px;}
.y1a{bottom:473.115000px;}
.yce{bottom:474.015000px;}
.y78{bottom:479.235000px;}
.yf1{bottom:485.355000px;}
.ya0{bottom:491.655000px;}
.y19{bottom:492.195000px;}
.y4a{bottom:492.375000px;}
.ycd{bottom:493.095000px;}
.yf0{bottom:502.635000px;}
.y77{bottom:507.135000px;}
.y9f{bottom:510.555000px;}
.y18{bottom:511.095000px;}
.y49{bottom:511.275000px;}
.ycc{bottom:511.995000px;}
.y76{bottom:526.215000px;}
.yef{bottom:528.735000px;}
.y48{bottom:530.355000px;}
.ycb{bottom:530.895000px;}
.y17{bottom:539.715000px;}
.y75{bottom:545.115000px;}
.yee{bottom:546.015000px;}
.y9e{bottom:548.535000px;}
.y47{bottom:549.255000px;}
.yca{bottom:549.975000px;}
.yed{bottom:563.325000px;}
.y74{bottom:564.225000px;}
.y9d{bottom:567.645000px;}
.y16{bottom:572.865000px;}
.y46{bottom:577.905000px;}
.yc9{bottom:578.625000px;}
.y73{bottom:583.125000px;}
.y9c{bottom:586.545000px;}
.yec{bottom:589.605000px;}
.y15{bottom:596.085000px;}
.y72{bottom:602.025000px;}
.yc8{bottom:602.745000px;}
.yeb{bottom:606.885000px;}
.y14{bottom:613.365000px;}
.y9b{bottom:614.625000px;}
.y45{bottom:619.485000px;}
.y71{bottom:621.105000px;}
.yc7{bottom:626.145000px;}
.yea{bottom:632.985000px;}
.y9a{bottom:635.145000px;}
.y44{bottom:638.385000px;}
.yc6{bottom:645.225000px;}
.y13{bottom:649.185000px;}
.ye9{bottom:650.265000px;}
.y99{bottom:654.225000px;}
.y43{bottom:657.285000px;}
.y70{bottom:659.085000px;}
.yc5{bottom:664.125000px;}
.y12{bottom:670.965000px;}
.y98{bottom:673.125000px;}
.y42{bottom:676.365000px;}
.ye8{bottom:676.545000px;}
.y6f{bottom:677.985000px;}
.yc4{bottom:683.205000px;}
.y116{bottom:686.085000px;}
.y11{bottom:688.245000px;}
.y97{bottom:692.205000px;}
.ye7{bottom:693.825000px;}
.y41{bottom:695.265000px;}
.yc3{bottom:702.105000px;}
.y10{bottom:705.525000px;}
.y96{bottom:711.105000px;}
.y115{bottom:712.185000px;}
.y40{bottom:714.345000px;}
.y6e{bottom:715.965000px;}
.ye6{bottom:720.105000px;}
.yc2{bottom:721.185000px;}
.yf{bottom:722.805000px;}
.y95{bottom:730.185000px;}
.y3f{bottom:733.245000px;}
.y6d{bottom:734.865000px;}
.ye5{bottom:737.385000px;}
.y114{bottom:738.465000px;}
.ye{bottom:740.085000px;}
.y94{bottom:749.085000px;}
.y3e{bottom:752.145000px;}
.y6c{bottom:753.945000px;}
.yd{bottom:757.365000px;}
.yc1{bottom:758.985000px;}
.ye4{bottom:763.485000px;}
.y113{bottom:764.745000px;}
.y3d{bottom:771.225000px;}
.y6b{bottom:772.845000px;}
.yc{bottom:774.465000px;}
.yc0{bottom:778.065000px;}
.ye3{bottom:780.765000px;}
.y93{bottom:787.065000px;}
.y3c{bottom:790.125000px;}
.y112{bottom:791.025000px;}
.yb{bottom:791.745000px;}
.y6a{bottom:800.925000px;}
.y92{bottom:805.965000px;}
.ye2{bottom:807.945000px;}
.ya{bottom:809.025000px;}
.y3b{bottom:809.205000px;}
.ybf{bottom:816.045000px;}
.y111{bottom:817.305000px;}
.y69{bottom:821.445000px;}
.y91{bottom:825.045000px;}
.y9{bottom:826.305000px;}
.y3a{bottom:828.105000px;}
.ybe{bottom:834.945000px;}
.y68{bottom:840.570000px;}
.ye1{bottom:841.290000px;}
.y8{bottom:843.630000px;}
.y90{bottom:843.990000px;}
.y39{bottom:847.230000px;}
.ybd{bottom:853.890000px;}
.y67{bottom:859.470000px;}
.ye0{bottom:864.690000px;}
.y38{bottom:869.010000px;}
.y110{bottom:869.730000px;}
.y7{bottom:870.270000px;}
.y8f{bottom:872.070000px;}
.y66{bottom:878.550000px;}
.ydf{bottom:883.590000px;}
.y37{bottom:890.790000px;}
.ybc{bottom:891.870000px;}
.y8e{bottom:892.590000px;}
.y10f{bottom:896.010000px;}
.y65{bottom:897.450000px;}
.y6{bottom:901.770000px;}
.yde{bottom:902.670000px;}
.ybb{bottom:910.950000px;}
.y8d{bottom:911.670000px;}
.y36{bottom:912.570000px;}
.y64{bottom:916.350000px;}
.ydd{bottom:921.570000px;}
.y10e{bottom:922.290000px;}
.yba{bottom:929.850000px;}
.y8c{bottom:930.570000px;}
.y35{bottom:931.650000px;}
.y10d{bottom:939.570000px;}
.y5{bottom:941.370000px;}
.y63{bottom:945.150000px;}
.yb9{bottom:948.750000px;}
.y8b{bottom:949.650000px;}
.y34{bottom:950.550000px;}
.y117{bottom:953.070000px;}
.y10c{bottom:956.850000px;}
.yb8{bottom:967.830000px;}
.y62{bottom:968.550000px;}
.y33{bottom:969.450000px;}
.y10b{bottom:973.950000px;}
.y4{bottom:980.430000px;}
.yb7{bottom:986.730000px;}
.y61{bottom:987.450000px;}
.y32{bottom:988.530000px;}
.y10a{bottom:991.230000px;}
.yb6{bottom:1005.810000px;}
.y60{bottom:1006.530000px;}
.y31{bottom:1007.430000px;}
.y109{bottom:1008.510000px;}
.yb5{bottom:1024.710000px;}
.y5f{bottom:1025.430000px;}
.y108{bottom:1025.790000px;}
.y30{bottom:1026.510000px;}
.y3{bottom:1041.990000px;}
.y107{bottom:1043.070000px;}
.y5e{bottom:1044.510000px;}
.y2f{bottom:1045.410000px;}
.yb4{bottom:1052.790000px;}
.y5d{bottom:1063.410000px;}
.y106{bottom:1068.990000px;}
.yb3{bottom:1073.310000px;}
.y2{bottom:1075.830000px;}
.y2e{bottom:1082.310000px;}
.y105{bottom:1095.090000px;}
.y2d{bottom:1101.390000px;}
.y1{bottom:1109.490000px;}
.y2c{bottom:1120.290000px;}
.y104{bottom:1121.760000px;}
.y2a{bottom:1149.000000px;}
.yb1{bottom:1153.500000px;}
.y5b{bottom:1155.000000px;}
.y102{bottom:1158.000000px;}
.ydb{bottom:1159.500000px;}
.y89{bottom:1161.000000px;}
.y119{bottom:1165.500000px;}
.hc{height:57.120117px;}
.hf{height:58.121719px;}
.h8{height:58.621992px;}
.h7{height:58.651172px;}
.h12{height:60.226875px;}
.ha{height:65.010937px;}
.h11{height:65.518594px;}
.h10{height:66.757500px;}
.hb{height:68.084282px;}
.h3{height:68.360471px;}
.h5{height:70.664062px;}
.hd{height:71.225156px;}
.he{height:72.562500px;}
.h6{height:76.279219px;}
.h2{height:81.432070px;}
.h9{height:84.898125px;}
.h4{height:86.171484px;}
.h13{height:109.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:133.776000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:10.800000px;}
.x8{left:127.656000px;}
.x2{left:134.676000px;}
.x1{left:148.176000px;}
.x11{left:154.650000px;}
.x17{left:177.000000px;}
.x9{left:180.750000px;}
.x13{left:185.790000px;}
.x1b{left:187.500000px;}
.xf{left:189.930000px;}
.xb{left:193.500000px;}
.xe{left:194.610000px;}
.xd{left:199.110000px;}
.x16{left:206.490000px;}
.x7{left:227.010000px;}
.x5{left:229.710000px;}
.xa{left:234.390000px;}
.x3{left:245.370000px;}
.x12{left:305.535000px;}
.x6{left:364.215000px;}
.x4{left:383.655000px;}
.x15{left:430.455000px;}
.x14{left:446.475000px;}
.x19{left:629.385000px;}
.x10{left:745.500000px;}
.x1c{left:747.000000px;}
.xc{left:750.000000px;}
.x18{left:751.500000px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:32.000000pt;}
.ls20{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.406933pt;}
.ls34{letter-spacing:-0.367467pt;}
.ls35{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.311467pt;}
.ls38{letter-spacing:-0.183467pt;}
.ls33{letter-spacing:-0.047360pt;}
.ls37{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.023040pt;}
.ls31{letter-spacing:0.047360pt;}
.ls2e{letter-spacing:0.094720pt;}
.ls36{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.135467pt;}
.ls32{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.232960pt;}
.ls2d{letter-spacing:0.233067pt;}
.ls2f{letter-spacing:0.254720pt;}
.ls2b{letter-spacing:0.271360pt;}
.ls10{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.290347pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.488960pt;}
.ls0{letter-spacing:0.602240pt;}
.ls6{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.832000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls27{letter-spacing:3.840000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls3{letter-spacing:5.280000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls18{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls1e{letter-spacing:8.960000pt;}
.ls25{letter-spacing:9.600000pt;}
.ls1d{letter-spacing:10.240000pt;}
.ls17{letter-spacing:11.151360pt;}
.ls26{letter-spacing:11.520000pt;}
.ls2a{letter-spacing:12.778667pt;}
.ls30{letter-spacing:12.960000pt;}
.ls1b{letter-spacing:14.080000pt;}
.ls28{letter-spacing:23.680000pt;}
.ls11{letter-spacing:78.991360pt;}
.lsf{letter-spacing:79.631360pt;}
.ls24{letter-spacing:80.618667pt;}
.ls16{letter-spacing:81.258667pt;}
.ls7{letter-spacing:105.871360pt;}
.ls22{letter-spacing:173.711360pt;}
.ls8{letter-spacing:174.058667pt;}
.ls23{letter-spacing:176.000000pt;}
.ls21{letter-spacing:177.258667pt;}
.ls2c{letter-spacing:177.280000pt;}
.ws0{word-spacing:-26.720000pt;}
.ws2{word-spacing:-22.430865pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-19.040000pt;}
.wsf{word-spacing:-18.720000pt;}
.ws10{word-spacing:-18.408533pt;}
.ws3{word-spacing:-17.280000pt;}
.ws11{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws13{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.313067pt;}
.ws4{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.096533pt;}
.ws19{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.832000pt;}
.ws12{word-spacing:-12.000000pt;}
.wsd{word-spacing:-9.280000pt;}
.ws18{word-spacing:-8.632320pt;}
.wsa{word-spacing:0.000000pt;}
._a{margin-left:-2270.400000pt;}
._1b{margin-left:-176.874667pt;}
._1{margin-left:-1.149440pt;}
._0{width:0.948907pt;}
._7{width:2.400213pt;}
._6{width:3.549227pt;}
._8{width:4.495787pt;}
._2{width:5.471360pt;}
._4{width:6.548267pt;}
._3{width:7.654187pt;}
._5{width:8.637867pt;}
._c{width:9.656320pt;}
._b{width:10.598400pt;}
._e{width:11.865600pt;}
._d{width:13.440000pt;}
._1d{width:14.362880pt;}
._9{width:15.897600pt;}
._11{width:17.428480pt;}
._12{width:18.493867pt;}
._1a{width:19.520000pt;}
._19{width:20.666880pt;}
._f{width:21.812907pt;}
._10{width:23.438507pt;}
._1e{width:27.888000pt;}
._1f{width:29.012480pt;}
._20{width:30.596480pt;}
._23{width:31.501440pt;}
._22{width:32.615680pt;}
._14{width:34.449920pt;}
._13{width:35.644587pt;}
._21{width:90.200747pt;}
._1c{width:116.760747pt;}
._16{width:146.560000pt;}
._18{width:160.465920pt;}
._15{width:165.760000pt;}
._17{width:177.258667pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:51.733333pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:89.723461pt;}
.fs0{font-size:106.880000pt;}
.y118{bottom:-16.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:89.333333pt;}
.ydc{bottom:93.333333pt;}
.y2b{bottom:96.000000pt;}
.y103{bottom:98.666667pt;}
.y11a{bottom:104.000000pt;}
.y8a{bottom:105.333333pt;}
.yb2{bottom:106.666667pt;}
.y5a{bottom:117.152000pt;}
.y29{bottom:133.152000pt;}
.y59{bottom:133.946667pt;}
.y101{bottom:134.906667pt;}
.yb0{bottom:142.266667pt;}
.y88{bottom:148.026667pt;}
.y28{bottom:150.106667pt;}
.y100{bottom:150.266667pt;}
.yda{bottom:150.746667pt;}
.y58{bottom:150.906667pt;}
.yaf{bottom:159.226667pt;}
.y87{bottom:164.986667pt;}
.y27{bottom:166.906667pt;}
.y57{bottom:167.706667pt;}
.yff{bottom:173.626667pt;}
.yae{bottom:176.026667pt;}
.y86{bottom:181.786667pt;}
.y26{bottom:183.706667pt;}
.y56{bottom:184.666667pt;}
.yfe{bottom:188.986667pt;}
.yd9{bottom:192.506667pt;}
.yad{bottom:192.826667pt;}
.y85{bottom:198.746667pt;}
.y25{bottom:200.666667pt;}
.y55{bottom:201.466667pt;}
.yd8{bottom:209.466667pt;}
.yac{bottom:209.786667pt;}
.yfd{bottom:212.346667pt;}
.y84{bottom:215.546667pt;}
.y24{bottom:217.946667pt;}
.y54{bottom:218.426667pt;}
.yd7{bottom:226.266667pt;}
.yab{bottom:226.586667pt;}
.yfc{bottom:227.546667pt;}
.y83{bottom:232.346667pt;}
.y53{bottom:235.226667pt;}
.y23{bottom:235.866667pt;}
.yaa{bottom:243.586667pt;}
.y82{bottom:249.346667pt;}
.yfb{bottom:250.946667pt;}
.yd6{bottom:251.266667pt;}
.y52{bottom:252.066667pt;}
.y22{bottom:252.866667pt;}
.yfa{bottom:266.306667pt;}
.ya9{bottom:268.386667pt;}
.yd5{bottom:269.506667pt;}
.y81{bottom:274.146667pt;}
.yf9{bottom:281.666667pt;}
.ya8{bottom:285.186667pt;}
.y51{bottom:285.826667pt;}
.y21{bottom:286.466667pt;}
.y80{bottom:291.106667pt;}
.ya7{bottom:302.146667pt;}
.y50{bottom:302.786667pt;}
.yd4{bottom:303.266667pt;}
.y20{bottom:303.426667pt;}
.yf8{bottom:305.666667pt;}
.y7f{bottom:307.906667pt;}
.ya6{bottom:318.946667pt;}
.y1f{bottom:320.226667pt;}
.yf7{bottom:323.426667pt;}
.y7e{bottom:324.706667pt;}
.ya5{bottom:335.906667pt;}
.y4f{bottom:336.386667pt;}
.yd3{bottom:337.026667pt;}
.y1e{bottom:337.186667pt;}
.yf6{bottom:338.786667pt;}
.y7d{bottom:341.666667pt;}
.ya4{bottom:352.706667pt;}
.y4e{bottom:353.346667pt;}
.yd2{bottom:353.826667pt;}
.yf5{bottom:353.986667pt;}
.y7c{bottom:358.466667pt;}
.yf4{bottom:369.346667pt;}
.ya3{bottom:369.506667pt;}
.y1d{bottom:369.986667pt;}
.y4d{bottom:370.146667pt;}
.yd1{bottom:370.786667pt;}
.y7b{bottom:375.426667pt;}
.ya2{bottom:386.466667pt;}
.y1c{bottom:386.786667pt;}
.y4c{bottom:387.106667pt;}
.yd0{bottom:387.586667pt;}
.y7a{bottom:392.226667pt;}
.yf3{bottom:392.706667pt;}
.y1b{bottom:403.746667pt;}
.y4b{bottom:403.906667pt;}
.ycf{bottom:404.546667pt;}
.yf2{bottom:408.066667pt;}
.y79{bottom:409.026667pt;}
.ya1{bottom:420.226667pt;}
.y1a{bottom:420.546667pt;}
.yce{bottom:421.346667pt;}
.y78{bottom:425.986667pt;}
.yf1{bottom:431.426667pt;}
.ya0{bottom:437.026667pt;}
.y19{bottom:437.506667pt;}
.y4a{bottom:437.666667pt;}
.ycd{bottom:438.306667pt;}
.yf0{bottom:446.786667pt;}
.y77{bottom:450.786667pt;}
.y9f{bottom:453.826667pt;}
.y18{bottom:454.306667pt;}
.y49{bottom:454.466667pt;}
.ycc{bottom:455.106667pt;}
.y76{bottom:467.746667pt;}
.yef{bottom:469.986667pt;}
.y48{bottom:471.426667pt;}
.ycb{bottom:471.906667pt;}
.y17{bottom:479.746667pt;}
.y75{bottom:484.546667pt;}
.yee{bottom:485.346667pt;}
.y9e{bottom:487.586667pt;}
.y47{bottom:488.226667pt;}
.yca{bottom:488.866667pt;}
.yed{bottom:500.733333pt;}
.y74{bottom:501.533333pt;}
.y9d{bottom:504.573333pt;}
.y16{bottom:509.213333pt;}
.y46{bottom:513.693333pt;}
.yc9{bottom:514.333333pt;}
.y73{bottom:518.333333pt;}
.y9c{bottom:521.373333pt;}
.yec{bottom:524.093333pt;}
.y15{bottom:529.853333pt;}
.y72{bottom:535.133333pt;}
.yc8{bottom:535.773333pt;}
.yeb{bottom:539.453333pt;}
.y14{bottom:545.213333pt;}
.y9b{bottom:546.333333pt;}
.y45{bottom:550.653333pt;}
.y71{bottom:552.093333pt;}
.yc7{bottom:556.573333pt;}
.yea{bottom:562.653333pt;}
.y9a{bottom:564.573333pt;}
.y44{bottom:567.453333pt;}
.yc6{bottom:573.533333pt;}
.y13{bottom:577.053333pt;}
.ye9{bottom:578.013333pt;}
.y99{bottom:581.533333pt;}
.y43{bottom:584.253333pt;}
.y70{bottom:585.853333pt;}
.yc5{bottom:590.333333pt;}
.y12{bottom:596.413333pt;}
.y98{bottom:598.333333pt;}
.y42{bottom:601.213333pt;}
.ye8{bottom:601.373333pt;}
.y6f{bottom:602.653333pt;}
.yc4{bottom:607.293333pt;}
.y116{bottom:609.853333pt;}
.y11{bottom:611.773333pt;}
.y97{bottom:615.293333pt;}
.ye7{bottom:616.733333pt;}
.y41{bottom:618.013333pt;}
.yc3{bottom:624.093333pt;}
.y10{bottom:627.133333pt;}
.y96{bottom:632.093333pt;}
.y115{bottom:633.053333pt;}
.y40{bottom:634.973333pt;}
.y6e{bottom:636.413333pt;}
.ye6{bottom:640.093333pt;}
.yc2{bottom:641.053333pt;}
.yf{bottom:642.493333pt;}
.y95{bottom:649.053333pt;}
.y3f{bottom:651.773333pt;}
.y6d{bottom:653.213333pt;}
.ye5{bottom:655.453333pt;}
.y114{bottom:656.413333pt;}
.ye{bottom:657.853333pt;}
.y94{bottom:665.853333pt;}
.y3e{bottom:668.573333pt;}
.y6c{bottom:670.173333pt;}
.yd{bottom:673.213333pt;}
.yc1{bottom:674.653333pt;}
.ye4{bottom:678.653333pt;}
.y113{bottom:679.773333pt;}
.y3d{bottom:685.533333pt;}
.y6b{bottom:686.973333pt;}
.yc{bottom:688.413333pt;}
.yc0{bottom:691.613333pt;}
.ye3{bottom:694.013333pt;}
.y93{bottom:699.613333pt;}
.y3c{bottom:702.333333pt;}
.y112{bottom:703.133333pt;}
.yb{bottom:703.773333pt;}
.y6a{bottom:711.933333pt;}
.y92{bottom:716.413333pt;}
.ye2{bottom:718.173333pt;}
.ya{bottom:719.133333pt;}
.y3b{bottom:719.293333pt;}
.ybf{bottom:725.373333pt;}
.y111{bottom:726.493333pt;}
.y69{bottom:730.173333pt;}
.y91{bottom:733.373333pt;}
.y9{bottom:734.493333pt;}
.y3a{bottom:736.093333pt;}
.ybe{bottom:742.173333pt;}
.y68{bottom:747.173333pt;}
.ye1{bottom:747.813333pt;}
.y8{bottom:749.893333pt;}
.y90{bottom:750.213333pt;}
.y39{bottom:753.093333pt;}
.ybd{bottom:759.013333pt;}
.y67{bottom:763.973333pt;}
.ye0{bottom:768.613333pt;}
.y38{bottom:772.453333pt;}
.y110{bottom:773.093333pt;}
.y7{bottom:773.573333pt;}
.y8f{bottom:775.173333pt;}
.y66{bottom:780.933333pt;}
.ydf{bottom:785.413333pt;}
.y37{bottom:791.813333pt;}
.ybc{bottom:792.773333pt;}
.y8e{bottom:793.413333pt;}
.y10f{bottom:796.453333pt;}
.y65{bottom:797.733333pt;}
.y6{bottom:801.573333pt;}
.yde{bottom:802.373333pt;}
.ybb{bottom:809.733333pt;}
.y8d{bottom:810.373333pt;}
.y36{bottom:811.173333pt;}
.y64{bottom:814.533333pt;}
.ydd{bottom:819.173333pt;}
.y10e{bottom:819.813333pt;}
.yba{bottom:826.533333pt;}
.y8c{bottom:827.173333pt;}
.y35{bottom:828.133333pt;}
.y10d{bottom:835.173333pt;}
.y5{bottom:836.773333pt;}
.y63{bottom:840.133333pt;}
.yb9{bottom:843.333333pt;}
.y8b{bottom:844.133333pt;}
.y34{bottom:844.933333pt;}
.y117{bottom:847.173333pt;}
.y10c{bottom:850.533333pt;}
.yb8{bottom:860.293333pt;}
.y62{bottom:860.933333pt;}
.y33{bottom:861.733333pt;}
.y10b{bottom:865.733333pt;}
.y4{bottom:871.493333pt;}
.yb7{bottom:877.093333pt;}
.y61{bottom:877.733333pt;}
.y32{bottom:878.693333pt;}
.y10a{bottom:881.093333pt;}
.yb6{bottom:894.053333pt;}
.y60{bottom:894.693333pt;}
.y31{bottom:895.493333pt;}
.y109{bottom:896.453333pt;}
.yb5{bottom:910.853333pt;}
.y5f{bottom:911.493333pt;}
.y108{bottom:911.813333pt;}
.y30{bottom:912.453333pt;}
.y3{bottom:926.213333pt;}
.y107{bottom:927.173333pt;}
.y5e{bottom:928.453333pt;}
.y2f{bottom:929.253333pt;}
.yb4{bottom:935.813333pt;}
.y5d{bottom:945.253333pt;}
.y106{bottom:950.213333pt;}
.yb3{bottom:954.053333pt;}
.y2{bottom:956.293333pt;}
.y2e{bottom:962.053333pt;}
.y105{bottom:973.413333pt;}
.y2d{bottom:979.013333pt;}
.y1{bottom:986.213333pt;}
.y2c{bottom:995.813333pt;}
.y104{bottom:997.120000pt;}
.y2a{bottom:1021.333333pt;}
.yb1{bottom:1025.333333pt;}
.y5b{bottom:1026.666667pt;}
.y102{bottom:1029.333333pt;}
.ydb{bottom:1030.666667pt;}
.y89{bottom:1032.000000pt;}
.y119{bottom:1036.000000pt;}
.hc{height:50.773437pt;}
.hf{height:51.663750pt;}
.h8{height:52.108438pt;}
.h7{height:52.134375pt;}
.h12{height:53.535000pt;}
.ha{height:57.787500pt;}
.h11{height:58.238750pt;}
.h10{height:59.340000pt;}
.hb{height:60.519362pt;}
.h3{height:60.764863pt;}
.h5{height:62.812500pt;}
.hd{height:63.311250pt;}
.he{height:64.500000pt;}
.h6{height:67.803750pt;}
.h2{height:72.384062pt;}
.h9{height:75.465000pt;}
.h4{height:76.596875pt;}
.h13{height:97.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:118.912000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.600000pt;}
.x8{left:113.472000pt;}
.x2{left:119.712000pt;}
.x1{left:131.712000pt;}
.x11{left:137.466667pt;}
.x17{left:157.333333pt;}
.x9{left:160.666667pt;}
.x13{left:165.146667pt;}
.x1b{left:166.666667pt;}
.xf{left:168.826667pt;}
.xb{left:172.000000pt;}
.xe{left:172.986667pt;}
.xd{left:176.986667pt;}
.x16{left:183.546667pt;}
.x7{left:201.786667pt;}
.x5{left:204.186667pt;}
.xa{left:208.346667pt;}
.x3{left:218.106667pt;}
.x12{left:271.586667pt;}
.x6{left:323.746667pt;}
.x4{left:341.026667pt;}
.x15{left:382.626667pt;}
.x14{left:396.866667pt;}
.x19{left:559.453333pt;}
.x10{left:662.666667pt;}
.x1c{left:664.000000pt;}
.xc{left:666.666667pt;}
.x18{left:668.000000pt;}
}




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