
    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_702ae27e43ee3889c78372f6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_c5ced87a23c90b3e44fbe17e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_6c82fafe6c35e8fb8874a2ad.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e38a4067a4e7313eeaaaad8f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b06c519da83eb300dd9155e3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1117f3a448a56e861758601c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d0230e084dde9bf31dee5a38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_29f7eed37fe2d790860ed2a5.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf0c9f390522c479d75ba60e.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1701c383ad579511b08c605d.woff')format("woff");}.ffa{font-family:ffa;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;}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-0.450600px;}
.ls9{letter-spacing:-0.360000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.513600px;}
.ls4{letter-spacing:21.546720px;}
.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;}
}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.146400px;}
.ws4{word-spacing:-15.118488px;}
.ws2{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.wsd{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.700000px;}
.wse{word-spacing:-11.609400px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:24.096000px;}
.ws0{word-spacing:24.120000px;}
.wsa{word-spacing:47.160000px;}
._20{margin-left:-4.542600px;}
._15{margin-left:-3.334200px;}
._b{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._1{width:1.674000px;}
._1e{width:2.691599px;}
._e{width:3.705000px;}
._5{width:4.806000px;}
._9{width:6.588000px;}
._a{width:8.046000px;}
._6{width:9.126000px;}
._3{width:11.016000px;}
._2{width:12.366000px;}
._24{width:13.748400px;}
._d{width:14.850000px;}
._c{width:16.002000px;}
._1c{width:17.283600px;}
._4{width:18.900000px;}
._8{width:20.034000px;}
._1d{width:21.214800px;}
._16{width:22.349400px;}
._7{width:23.868000px;}
._12{width:24.900594px;}
._11{width:25.935601px;}
._17{width:27.686402px;}
._10{width:29.342399px;}
._f{width:31.075200px;}
._14{width:32.878438px;}
._13{width:33.883800px;}
._1f{width:35.497198px;}
._23{width:36.811804px;}
._27{width:37.906315px;}
._28{width:39.199700px;}
._26{width:40.259033px;}
._22{width:41.280722px;}
._21{width:42.715560px;}
._1b{width:43.924198px;}
._1a{width:45.058741px;}
._19{width:46.194600px;}
._25{width:47.625903px;}
._29{width:48.706378px;}
._2e{width:52.533698px;}
._33{width:54.897024px;}
._18{width:57.310139px;}
._31{width:76.440960px;}
._2f{width:88.761696px;}
._30{width:90.333454px;}
._2c{width:91.588033px;}
._2b{width:92.858880px;}
._32{width:379.200960px;}
._2d{width:409.799760px;}
._2a{width:500.439360px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:60.473952px;}
.fs6{font-size:66.233376px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:71.992800px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:3.659634px;}
.y53{bottom:55.494450px;}
.y52{bottom:57.714228px;}
.y8f{bottom:110.196000px;}
.y50{bottom:112.716000px;}
.yf2{bottom:113.436000px;}
.yc8{bottom:114.516000px;}
.y130{bottom:119.016000px;}
.ya4{bottom:119.556000px;}
.y2f{bottom:122.076000px;}
.y8e{bottom:127.476000px;}
.y175{bottom:128.736000px;}
.y4f{bottom:129.996000px;}
.yc7{bottom:131.796000px;}
.yf1{bottom:131.976000px;}
.y12f{bottom:132.876000px;}
.ya3{bottom:136.836000px;}
.y2e{bottom:140.616000px;}
.y174{bottom:142.596000px;}
.y8d{bottom:144.576000px;}
.y12e{bottom:146.736000px;}
.y4e{bottom:147.276000px;}
.yc6{bottom:148.896000px;}
.yf0{bottom:150.510000px;}
.y173{bottom:156.450000px;}
.y2d{bottom:159.150000px;}
.y12d{bottom:160.410000px;}
.y8c{bottom:161.850000px;}
.y4d{bottom:164.550000px;}
.yef{bottom:169.230000px;}
.y172{bottom:170.130000px;}
.ya2{bottom:171.390000px;}
.y2c{bottom:177.870000px;}
.y12c{bottom:178.770000px;}
.y8b{bottom:179.130000px;}
.y4c{bottom:181.650000px;}
.yc5{bottom:183.450000px;}
.y171{bottom:183.990000px;}
.yee{bottom:187.770000px;}
.ya1{bottom:188.490000px;}
.y12b{bottom:192.630000px;}
.y2b{bottom:196.410000px;}
.y4b{bottom:198.930000px;}
.yc4{bottom:200.730000px;}
.y170{bottom:202.350000px;}
.y12a{bottom:206.310000px;}
.yed{bottom:206.490000px;}
.ya0{bottom:207.030000px;}
.y8a{bottom:213.690000px;}
.y2a{bottom:215.130000px;}
.y16f{bottom:216.030000px;}
.y4a{bottom:216.210000px;}
.yc3{bottom:218.010000px;}
.y129{bottom:220.170000px;}
.yec{bottom:225.030000px;}
.y9f{bottom:225.930000px;}
.y16e{bottom:229.890000px;}
.y89{bottom:230.970000px;}
.y49{bottom:233.490000px;}
.y29{bottom:233.670000px;}
.yc2{bottom:235.290000px;}
.y128{bottom:238.530000px;}
.y9e{bottom:243.210000px;}
.yeb{bottom:243.750000px;}
.y88{bottom:248.070000px;}
.y16d{bottom:248.250000px;}
.y48{bottom:250.770000px;}
.y28{bottom:252.210000px;}
.yc1{bottom:252.390000px;}
.y9d{bottom:260.490000px;}
.y16c{bottom:261.930000px;}
.yea{bottom:262.290000px;}
.y87{bottom:265.350000px;}
.y127{bottom:266.070000px;}
.y47{bottom:268.050000px;}
.yc0{bottom:269.670000px;}
.y27{bottom:270.930000px;}
.y16b{bottom:275.790000px;}
.y9c{bottom:277.770000px;}
.y126{bottom:279.930000px;}
.ye9{bottom:280.830000px;}
.y86{bottom:283.890000px;}
.y46{bottom:285.150000px;}
.ybf{bottom:286.950000px;}
.y26{bottom:289.470000px;}
.y125{bottom:293.610000px;}
.y16a{bottom:294.150000px;}
.y9b{bottom:294.870000px;}
.ye8{bottom:299.550000px;}
.y45{bottom:302.430000px;}
.ybe{bottom:304.230000px;}
.y169{bottom:307.830000px;}
.y25{bottom:308.190000px;}
.y124{bottom:311.970000px;}
.y9a{bottom:312.150000px;}
.ye7{bottom:318.090000px;}
.y85{bottom:318.450000px;}
.y44{bottom:319.710000px;}
.ybd{bottom:321.510000px;}
.y168{bottom:321.690000px;}
.y123{bottom:325.830000px;}
.y24{bottom:326.730000px;}
.y99{bottom:329.430000px;}
.y84{bottom:335.730000px;}
.ye6{bottom:336.855000px;}
.y43{bottom:337.035000px;}
.ybc{bottom:338.655000px;}
.y122{bottom:339.555000px;}
.y167{bottom:340.095000px;}
.y23{bottom:345.495000px;}
.y98{bottom:346.755000px;}
.y83{bottom:353.055000px;}
.y121{bottom:353.415000px;}
.y166{bottom:353.775000px;}
.y42{bottom:354.315000px;}
.ye5{bottom:355.395000px;}
.ybb{bottom:355.935000px;}
.y22{bottom:364.035000px;}
.y165{bottom:367.635000px;}
.y82{bottom:370.335000px;}
.y41{bottom:371.595000px;}
.y120{bottom:371.775000px;}
.yba{bottom:373.215000px;}
.ye4{bottom:373.935000px;}
.y97{bottom:381.315000px;}
.y164{bottom:381.495000px;}
.y21{bottom:382.575000px;}
.y11f{bottom:385.455000px;}
.y81{bottom:387.615000px;}
.y40{bottom:388.695000px;}
.yb9{bottom:390.495000px;}
.ye3{bottom:392.655000px;}
.y96{bottom:398.415000px;}
.y11e{bottom:399.315000px;}
.y163{bottom:399.675000px;}
.y20{bottom:401.295000px;}
.y80{bottom:404.715000px;}
.y3f{bottom:405.975000px;}
.y11d{bottom:413.175000px;}
.y162{bottom:413.535000px;}
.y95{bottom:415.695000px;}
.yb8{bottom:421.095000px;}
.y7f{bottom:421.995000px;}
.y3e{bottom:423.255000px;}
.y11c{bottom:426.855000px;}
.y161{bottom:427.215000px;}
.y1f{bottom:431.175000px;}
.y94{bottom:432.975000px;}
.y7e{bottom:439.275000px;}
.yb7{bottom:439.635000px;}
.y3d{bottom:440.535000px;}
.y160{bottom:441.075000px;}
.ye2{bottom:441.795000px;}
.y11b{bottom:445.215000px;}
.y93{bottom:451.515000px;}
.y7d{bottom:456.555000px;}
.y3c{bottom:457.815000px;}
.yb6{bottom:458.355000px;}
.y11a{bottom:459.075000px;}
.y15f{bottom:459.435000px;}
.y1e{bottom:459.975000px;}
.ye1{bottom:460.515000px;}
.y119{bottom:472.755000px;}
.y15e{bottom:473.115000px;}
.y7c{bottom:473.835000px;}
.y3b{bottom:474.915000px;}
.y1d{bottom:476.895000px;}
.ye0{bottom:479.055000px;}
.y92{bottom:481.395000px;}
.y7b{bottom:490.935000px;}
.y118{bottom:491.115000px;}
.y15d{bottom:491.475000px;}
.y3a{bottom:492.195000px;}
.y1c{bottom:493.635000px;}
.yb5{bottom:495.435000px;}
.y91{bottom:495.975000px;}
.ydf{bottom:497.775000px;}
.y117{bottom:504.975000px;}
.y15c{bottom:505.335000px;}
.y7a{bottom:508.215000px;}
.y39{bottom:509.475000px;}
.y1b{bottom:510.375000px;}
.yb4{bottom:514.155000px;}
.yde{bottom:516.315000px;}
.y116{bottom:518.655000px;}
.y15b{bottom:519.015000px;}
.y79{bottom:525.495000px;}
.y38{bottom:526.755000px;}
.y1a{bottom:527.295000px;}
.y115{bottom:532.515000px;}
.yb3{bottom:532.695000px;}
.y15a{bottom:532.875000px;}
.ydd{bottom:534.855000px;}
.y78{bottom:542.775000px;}
.y19{bottom:544.035000px;}
.y114{bottom:550.875000px;}
.y159{bottom:551.235000px;}
.yb2{bottom:551.415000px;}
.ydc{bottom:553.575000px;}
.y77{bottom:560.055000px;}
.y18{bottom:560.775000px;}
.y37{bottom:561.315000px;}
.y113{bottom:564.555000px;}
.y158{bottom:564.915000px;}
.yb1{bottom:569.955000px;}
.ydb{bottom:572.115000px;}
.y76{bottom:577.335000px;}
.y17{bottom:577.515000px;}
.y36{bottom:578.415000px;}
.y157{bottom:578.775000px;}
.yb0{bottom:588.675000px;}
.yda{bottom:590.835000px;}
.y112{bottom:592.275000px;}
.y156{bottom:592.635000px;}
.y16{bottom:594.255000px;}
.y75{bottom:594.435000px;}
.y35{bottom:595.695000px;}
.y111{bottom:605.985000px;}
.yaf{bottom:607.245000px;}
.yd9{bottom:609.405000px;}
.y155{bottom:610.845000px;}
.y15{bottom:611.025000px;}
.y74{bottom:611.745000px;}
.y34{bottom:613.005000px;}
.y110{bottom:624.345000px;}
.y154{bottom:624.705000px;}
.yae{bottom:625.785000px;}
.y14{bottom:627.765000px;}
.yd8{bottom:627.945000px;}
.y33{bottom:630.285000px;}
.y10f{bottom:638.205000px;}
.y153{bottom:638.565000px;}
.y13{bottom:644.505000px;}
.y73{bottom:646.305000px;}
.yd7{bottom:646.665000px;}
.y10e{bottom:651.885000px;}
.y152{bottom:652.245000px;}
.yad{bottom:656.385000px;}
.y32{bottom:660.885000px;}
.y12{bottom:661.245000px;}
.y72{bottom:663.585000px;}
.yd6{bottom:665.205000px;}
.y10d{bottom:665.745000px;}
.y151{bottom:670.605000px;}
.yac{bottom:675.105000px;}
.y11{bottom:677.985000px;}
.y71{bottom:680.865000px;}
.yd5{bottom:683.925000px;}
.y10c{bottom:684.105000px;}
.y150{bottom:684.465000px;}
.y31{bottom:691.485000px;}
.yab{bottom:693.645000px;}
.y10{bottom:694.725000px;}
.y10b{bottom:697.785000px;}
.y70{bottom:697.965000px;}
.y14f{bottom:698.145000px;}
.yd4{bottom:702.465000px;}
.y30{bottom:710.025000px;}
.yf{bottom:711.465000px;}
.y10a{bottom:711.645000px;}
.yaa{bottom:712.365000px;}
.y6f{bottom:715.245000px;}
.y14e{bottom:716.505000px;}
.yd3{bottom:721.005000px;}
.y109{bottom:725.505000px;}
.y14d{bottom:730.365000px;}
.ya9{bottom:730.905000px;}
.y6e{bottom:732.525000px;}
.y108{bottom:739.185000px;}
.yd2{bottom:739.725000px;}
.y14c{bottom:744.045000px;}
.ya8{bottom:749.625000px;}
.y6d{bottom:749.805000px;}
.y107{bottom:757.545000px;}
.y14b{bottom:757.905000px;}
.yd1{bottom:758.265000px;}
.y6c{bottom:767.085000px;}
.ya7{bottom:768.165000px;}
.y106{bottom:771.405000px;}
.y14a{bottom:776.265000px;}
.yd0{bottom:776.985000px;}
.y6b{bottom:784.365000px;}
.y105{bottom:785.085000px;}
.ya6{bottom:786.705000px;}
.y149{bottom:789.945000px;}
.ye{bottom:793.365000px;}
.ycf{bottom:795.525000px;}
.y104{bottom:798.945000px;}
.y6a{bottom:801.465000px;}
.y148{bottom:803.805000px;}
.ya5{bottom:805.425000px;}
.yce{bottom:814.245000px;}
.yd{bottom:816.765000px;}
.y103{bottom:817.305000px;}
.y147{bottom:817.665000px;}
.y69{bottom:818.745000px;}
.y102{bottom:830.985000px;}
.y146{bottom:831.345000px;}
.ycd{bottom:832.785000px;}
.y68{bottom:836.025000px;}
.yc{bottom:840.345000px;}
.y145{bottom:849.705000px;}
.ycc{bottom:851.325000px;}
.y67{bottom:853.305000px;}
.y101{bottom:854.565000px;}
.y144{bottom:863.565000px;}
.yb{bottom:863.745000px;}
.ycb{bottom:870.045000px;}
.y66{bottom:870.630000px;}
.y143{bottom:877.290000px;}
.ya{bottom:887.370000px;}
.y65{bottom:887.730000px;}
.yca{bottom:888.630000px;}
.y100{bottom:891.150000px;}
.y64{bottom:905.010000px;}
.yc9{bottom:907.350000px;}
.y142{bottom:909.510000px;}
.yff{bottom:909.690000px;}
.y63{bottom:922.290000px;}
.y141{bottom:923.190000px;}
.y9{bottom:925.890000px;}
.yfe{bottom:928.410000px;}
.y140{bottom:937.050000px;}
.y62{bottom:939.570000px;}
.yfd{bottom:946.950000px;}
.y13f{bottom:955.410000px;}
.y61{bottom:956.850000px;}
.yfc{bottom:965.670000px;}
.y13e{bottom:969.090000px;}
.y8{bottom:971.610000px;}
.y60{bottom:974.130000px;}
.y13d{bottom:982.950000px;}
.yfb{bottom:984.210000px;}
.y5f{bottom:991.230000px;}
.y13c{bottom:996.810000px;}
.y5e{bottom:1008.510000px;}
.yfa{bottom:1014.810000px;}
.y13b{bottom:1014.990000px;}
.y7{bottom:1017.150000px;}
.y5d{bottom:1025.790000px;}
.y13a{bottom:1028.850000px;}
.yf9{bottom:1033.530000px;}
.y5c{bottom:1043.070000px;}
.y139{bottom:1047.210000px;}
.yf8{bottom:1052.070000px;}
.y90{bottom:1060.350000px;}
.y138{bottom:1060.890000px;}
.yf7{bottom:1070.610000px;}
.y137{bottom:1074.750000px;}
.y5b{bottom:1077.630000px;}
.yf6{bottom:1089.330000px;}
.y136{bottom:1093.110000px;}
.y5a{bottom:1094.730000px;}
.y6{bottom:1101.930000px;}
.y135{bottom:1106.790000px;}
.yf5{bottom:1107.870000px;}
.y59{bottom:1112.010000px;}
.y134{bottom:1120.650000px;}
.yf4{bottom:1126.590000px;}
.y58{bottom:1129.290000px;}
.y5{bottom:1133.610000px;}
.y133{bottom:1139.040000px;}
.yf3{bottom:1145.160000px;}
.y57{bottom:1146.600000px;}
.y4{bottom:1149.480000px;}
.y132{bottom:1152.720000px;}
.y55{bottom:1161.363852px;}
.y56{bottom:1163.880000px;}
.y3{bottom:1165.320000px;}
.y131{bottom:1166.580000px;}
.y2{bottom:1181.160000px;}
.y51{bottom:1192.320756px;}
.y1{bottom:1197.000000px;}
.hc{height:17.998200px;}
.h10{height:34.884492px;}
.h8{height:43.215117px;}
.hb{height:44.759274px;}
.h2{height:46.986328px;}
.h12{height:47.321367px;}
.h11{height:47.344922px;}
.ha{height:47.983482px;}
.he{height:48.616875px;}
.h5{height:54.421875px;}
.h7{height:58.651172px;}
.h6{height:60.226875px;}
.hd{height:62.211094px;}
.h4{height:65.010937px;}
.hf{height:65.884219px;}
.h3{height:121.921875px;}
.h9{height:1262.873700px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:23.997600px;}
.w2{width:892.410750px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:76.500000px;}
.x14{left:84.951504px;}
.x8{left:87.300000px;}
.xf{left:97.776000px;}
.x1c{left:110.556000px;}
.x19{left:149.616000px;}
.x7{left:157.350000px;}
.x1b{left:174.990000px;}
.x11{left:192.630000px;}
.xe{left:204.330000px;}
.x9{left:224.130000px;}
.xa{left:249.330000px;}
.xc{left:312.735000px;}
.xb{left:338.115000px;}
.xd{left:402.915000px;}
.x12{left:468.285000px;}
.x13{left:489.525000px;}
.x17{left:491.865000px;}
.x1d{left:502.305000px;}
.x1a{left:592.305000px;}
.x18{left:629.925000px;}
.x5{left:696.390000px;}
.x2{left:702.150000px;}
.x1{left:705.390000px;}
.x4{left:733.110000px;}
.x3{left:764.070000px;}
.x15{left:770.322960px;}
.x16{left:774.204990px;}
.x6{left:814.290000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-0.400533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.456533pt;}
.ls4{letter-spacing:19.152640pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.438656pt;}
.ws2{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.400000pt;}
.wse{word-spacing:-10.319467pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:21.418667pt;}
.ws0{word-spacing:21.440000pt;}
.wsa{word-spacing:41.920000pt;}
._20{margin-left:-4.037866pt;}
._15{margin-left:-2.963734pt;}
._b{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.488000pt;}
._1e{width:2.392532pt;}
._e{width:3.293334pt;}
._5{width:4.272000pt;}
._9{width:5.856000pt;}
._a{width:7.152000pt;}
._6{width:8.112000pt;}
._3{width:9.792000pt;}
._2{width:10.992000pt;}
._24{width:12.220800pt;}
._d{width:13.200000pt;}
._c{width:14.224000pt;}
._1c{width:15.363200pt;}
._4{width:16.800000pt;}
._8{width:17.808000pt;}
._1d{width:18.857600pt;}
._16{width:19.866134pt;}
._7{width:21.216000pt;}
._12{width:22.133861pt;}
._11{width:23.053868pt;}
._17{width:24.610135pt;}
._10{width:26.082132pt;}
._f{width:27.622400pt;}
._14{width:29.225278pt;}
._13{width:30.118934pt;}
._1f{width:31.553065pt;}
._23{width:32.721604pt;}
._27{width:33.694502pt;}
._28{width:34.844178pt;}
._26{width:35.785807pt;}
._22{width:36.693975pt;}
._21{width:37.969386pt;}
._1b{width:39.043731pt;}
._1a{width:40.052214pt;}
._19{width:41.061866pt;}
._25{width:42.334136pt;}
._29{width:43.294558pt;}
._2e{width:46.696620pt;}
._33{width:48.797354pt;}
._18{width:50.942346pt;}
._31{width:67.947520pt;}
._2f{width:78.899286pt;}
._30{width:80.296404pt;}
._2c{width:81.411585pt;}
._2b{width:82.541227pt;}
._32{width:337.067520pt;}
._2d{width:364.266453pt;}
._2a{width:444.834987pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:53.754624pt;}
.fs6{font-size:58.874112pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:63.993600pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:3.253008pt;}
.y53{bottom:49.328400pt;}
.y52{bottom:51.301536pt;}
.y8f{bottom:97.952000pt;}
.y50{bottom:100.192000pt;}
.yf2{bottom:100.832000pt;}
.yc8{bottom:101.792000pt;}
.y130{bottom:105.792000pt;}
.ya4{bottom:106.272000pt;}
.y2f{bottom:108.512000pt;}
.y8e{bottom:113.312000pt;}
.y175{bottom:114.432000pt;}
.y4f{bottom:115.552000pt;}
.yc7{bottom:117.152000pt;}
.yf1{bottom:117.312000pt;}
.y12f{bottom:118.112000pt;}
.ya3{bottom:121.632000pt;}
.y2e{bottom:124.992000pt;}
.y174{bottom:126.752000pt;}
.y8d{bottom:128.512000pt;}
.y12e{bottom:130.432000pt;}
.y4e{bottom:130.912000pt;}
.yc6{bottom:132.352000pt;}
.yf0{bottom:133.786667pt;}
.y173{bottom:139.066667pt;}
.y2d{bottom:141.466667pt;}
.y12d{bottom:142.586667pt;}
.y8c{bottom:143.866667pt;}
.y4d{bottom:146.266667pt;}
.yef{bottom:150.426667pt;}
.y172{bottom:151.226667pt;}
.ya2{bottom:152.346667pt;}
.y2c{bottom:158.106667pt;}
.y12c{bottom:158.906667pt;}
.y8b{bottom:159.226667pt;}
.y4c{bottom:161.466667pt;}
.yc5{bottom:163.066667pt;}
.y171{bottom:163.546667pt;}
.yee{bottom:166.906667pt;}
.ya1{bottom:167.546667pt;}
.y12b{bottom:171.226667pt;}
.y2b{bottom:174.586667pt;}
.y4b{bottom:176.826667pt;}
.yc4{bottom:178.426667pt;}
.y170{bottom:179.866667pt;}
.y12a{bottom:183.386667pt;}
.yed{bottom:183.546667pt;}
.ya0{bottom:184.026667pt;}
.y8a{bottom:189.946667pt;}
.y2a{bottom:191.226667pt;}
.y16f{bottom:192.026667pt;}
.y4a{bottom:192.186667pt;}
.yc3{bottom:193.786667pt;}
.y129{bottom:195.706667pt;}
.yec{bottom:200.026667pt;}
.y9f{bottom:200.826667pt;}
.y16e{bottom:204.346667pt;}
.y89{bottom:205.306667pt;}
.y49{bottom:207.546667pt;}
.y29{bottom:207.706667pt;}
.yc2{bottom:209.146667pt;}
.y128{bottom:212.026667pt;}
.y9e{bottom:216.186667pt;}
.yeb{bottom:216.666667pt;}
.y88{bottom:220.506667pt;}
.y16d{bottom:220.666667pt;}
.y48{bottom:222.906667pt;}
.y28{bottom:224.186667pt;}
.yc1{bottom:224.346667pt;}
.y9d{bottom:231.546667pt;}
.y16c{bottom:232.826667pt;}
.yea{bottom:233.146667pt;}
.y87{bottom:235.866667pt;}
.y127{bottom:236.506667pt;}
.y47{bottom:238.266667pt;}
.yc0{bottom:239.706667pt;}
.y27{bottom:240.826667pt;}
.y16b{bottom:245.146667pt;}
.y9c{bottom:246.906667pt;}
.y126{bottom:248.826667pt;}
.ye9{bottom:249.626667pt;}
.y86{bottom:252.346667pt;}
.y46{bottom:253.466667pt;}
.ybf{bottom:255.066667pt;}
.y26{bottom:257.306667pt;}
.y125{bottom:260.986667pt;}
.y16a{bottom:261.466667pt;}
.y9b{bottom:262.106667pt;}
.ye8{bottom:266.266667pt;}
.y45{bottom:268.826667pt;}
.ybe{bottom:270.426667pt;}
.y169{bottom:273.626667pt;}
.y25{bottom:273.946667pt;}
.y124{bottom:277.306667pt;}
.y9a{bottom:277.466667pt;}
.ye7{bottom:282.746667pt;}
.y85{bottom:283.066667pt;}
.y44{bottom:284.186667pt;}
.ybd{bottom:285.786667pt;}
.y168{bottom:285.946667pt;}
.y123{bottom:289.626667pt;}
.y24{bottom:290.426667pt;}
.y99{bottom:292.826667pt;}
.y84{bottom:298.426667pt;}
.ye6{bottom:299.426667pt;}
.y43{bottom:299.586667pt;}
.ybc{bottom:301.026667pt;}
.y122{bottom:301.826667pt;}
.y167{bottom:302.306667pt;}
.y23{bottom:307.106667pt;}
.y98{bottom:308.226667pt;}
.y83{bottom:313.826667pt;}
.y121{bottom:314.146667pt;}
.y166{bottom:314.466667pt;}
.y42{bottom:314.946667pt;}
.ye5{bottom:315.906667pt;}
.ybb{bottom:316.386667pt;}
.y22{bottom:323.586667pt;}
.y165{bottom:326.786667pt;}
.y82{bottom:329.186667pt;}
.y41{bottom:330.306667pt;}
.y120{bottom:330.466667pt;}
.yba{bottom:331.746667pt;}
.ye4{bottom:332.386667pt;}
.y97{bottom:338.946667pt;}
.y164{bottom:339.106667pt;}
.y21{bottom:340.066667pt;}
.y11f{bottom:342.626667pt;}
.y81{bottom:344.546667pt;}
.y40{bottom:345.506667pt;}
.yb9{bottom:347.106667pt;}
.ye3{bottom:349.026667pt;}
.y96{bottom:354.146667pt;}
.y11e{bottom:354.946667pt;}
.y163{bottom:355.266667pt;}
.y20{bottom:356.706667pt;}
.y80{bottom:359.746667pt;}
.y3f{bottom:360.866667pt;}
.y11d{bottom:367.266667pt;}
.y162{bottom:367.586667pt;}
.y95{bottom:369.506667pt;}
.yb8{bottom:374.306667pt;}
.y7f{bottom:375.106667pt;}
.y3e{bottom:376.226667pt;}
.y11c{bottom:379.426667pt;}
.y161{bottom:379.746667pt;}
.y1f{bottom:383.266667pt;}
.y94{bottom:384.866667pt;}
.y7e{bottom:390.466667pt;}
.yb7{bottom:390.786667pt;}
.y3d{bottom:391.586667pt;}
.y160{bottom:392.066667pt;}
.ye2{bottom:392.706667pt;}
.y11b{bottom:395.746667pt;}
.y93{bottom:401.346667pt;}
.y7d{bottom:405.826667pt;}
.y3c{bottom:406.946667pt;}
.yb6{bottom:407.426667pt;}
.y11a{bottom:408.066667pt;}
.y15f{bottom:408.386667pt;}
.y1e{bottom:408.866667pt;}
.ye1{bottom:409.346667pt;}
.y119{bottom:420.226667pt;}
.y15e{bottom:420.546667pt;}
.y7c{bottom:421.186667pt;}
.y3b{bottom:422.146667pt;}
.y1d{bottom:423.906667pt;}
.ye0{bottom:425.826667pt;}
.y92{bottom:427.906667pt;}
.y7b{bottom:436.386667pt;}
.y118{bottom:436.546667pt;}
.y15d{bottom:436.866667pt;}
.y3a{bottom:437.506667pt;}
.y1c{bottom:438.786667pt;}
.yb5{bottom:440.386667pt;}
.y91{bottom:440.866667pt;}
.ydf{bottom:442.466667pt;}
.y117{bottom:448.866667pt;}
.y15c{bottom:449.186667pt;}
.y7a{bottom:451.746667pt;}
.y39{bottom:452.866667pt;}
.y1b{bottom:453.666667pt;}
.yb4{bottom:457.026667pt;}
.yde{bottom:458.946667pt;}
.y116{bottom:461.026667pt;}
.y15b{bottom:461.346667pt;}
.y79{bottom:467.106667pt;}
.y38{bottom:468.226667pt;}
.y1a{bottom:468.706667pt;}
.y115{bottom:473.346667pt;}
.yb3{bottom:473.506667pt;}
.y15a{bottom:473.666667pt;}
.ydd{bottom:475.426667pt;}
.y78{bottom:482.466667pt;}
.y19{bottom:483.586667pt;}
.y114{bottom:489.666667pt;}
.y159{bottom:489.986667pt;}
.yb2{bottom:490.146667pt;}
.ydc{bottom:492.066667pt;}
.y77{bottom:497.826667pt;}
.y18{bottom:498.466667pt;}
.y37{bottom:498.946667pt;}
.y113{bottom:501.826667pt;}
.y158{bottom:502.146667pt;}
.yb1{bottom:506.626667pt;}
.ydb{bottom:508.546667pt;}
.y76{bottom:513.186667pt;}
.y17{bottom:513.346667pt;}
.y36{bottom:514.146667pt;}
.y157{bottom:514.466667pt;}
.yb0{bottom:523.266667pt;}
.yda{bottom:525.186667pt;}
.y112{bottom:526.466667pt;}
.y156{bottom:526.786667pt;}
.y16{bottom:528.226667pt;}
.y75{bottom:528.386667pt;}
.y35{bottom:529.506667pt;}
.y111{bottom:538.653333pt;}
.yaf{bottom:539.773333pt;}
.yd9{bottom:541.693333pt;}
.y155{bottom:542.973333pt;}
.y15{bottom:543.133333pt;}
.y74{bottom:543.773333pt;}
.y34{bottom:544.893333pt;}
.y110{bottom:554.973333pt;}
.y154{bottom:555.293333pt;}
.yae{bottom:556.253333pt;}
.y14{bottom:558.013333pt;}
.yd8{bottom:558.173333pt;}
.y33{bottom:560.253333pt;}
.y10f{bottom:567.293333pt;}
.y153{bottom:567.613333pt;}
.y13{bottom:572.893333pt;}
.y73{bottom:574.493333pt;}
.yd7{bottom:574.813333pt;}
.y10e{bottom:579.453333pt;}
.y152{bottom:579.773333pt;}
.yad{bottom:583.453333pt;}
.y32{bottom:587.453333pt;}
.y12{bottom:587.773333pt;}
.y72{bottom:589.853333pt;}
.yd6{bottom:591.293333pt;}
.y10d{bottom:591.773333pt;}
.y151{bottom:596.093333pt;}
.yac{bottom:600.093333pt;}
.y11{bottom:602.653333pt;}
.y71{bottom:605.213333pt;}
.yd5{bottom:607.933333pt;}
.y10c{bottom:608.093333pt;}
.y150{bottom:608.413333pt;}
.y31{bottom:614.653333pt;}
.yab{bottom:616.573333pt;}
.y10{bottom:617.533333pt;}
.y10b{bottom:620.253333pt;}
.y70{bottom:620.413333pt;}
.y14f{bottom:620.573333pt;}
.yd4{bottom:624.413333pt;}
.y30{bottom:631.133333pt;}
.yf{bottom:632.413333pt;}
.y10a{bottom:632.573333pt;}
.yaa{bottom:633.213333pt;}
.y6f{bottom:635.773333pt;}
.y14e{bottom:636.893333pt;}
.yd3{bottom:640.893333pt;}
.y109{bottom:644.893333pt;}
.y14d{bottom:649.213333pt;}
.ya9{bottom:649.693333pt;}
.y6e{bottom:651.133333pt;}
.y108{bottom:657.053333pt;}
.yd2{bottom:657.533333pt;}
.y14c{bottom:661.373333pt;}
.ya8{bottom:666.333333pt;}
.y6d{bottom:666.493333pt;}
.y107{bottom:673.373333pt;}
.y14b{bottom:673.693333pt;}
.yd1{bottom:674.013333pt;}
.y6c{bottom:681.853333pt;}
.ya7{bottom:682.813333pt;}
.y106{bottom:685.693333pt;}
.y14a{bottom:690.013333pt;}
.yd0{bottom:690.653333pt;}
.y6b{bottom:697.213333pt;}
.y105{bottom:697.853333pt;}
.ya6{bottom:699.293333pt;}
.y149{bottom:702.173333pt;}
.ye{bottom:705.213333pt;}
.ycf{bottom:707.133333pt;}
.y104{bottom:710.173333pt;}
.y6a{bottom:712.413333pt;}
.y148{bottom:714.493333pt;}
.ya5{bottom:715.933333pt;}
.yce{bottom:723.773333pt;}
.yd{bottom:726.013333pt;}
.y103{bottom:726.493333pt;}
.y147{bottom:726.813333pt;}
.y69{bottom:727.773333pt;}
.y102{bottom:738.653333pt;}
.y146{bottom:738.973333pt;}
.ycd{bottom:740.253333pt;}
.y68{bottom:743.133333pt;}
.yc{bottom:746.973333pt;}
.y145{bottom:755.293333pt;}
.ycc{bottom:756.733333pt;}
.y67{bottom:758.493333pt;}
.y101{bottom:759.613333pt;}
.y144{bottom:767.613333pt;}
.yb{bottom:767.773333pt;}
.ycb{bottom:773.373333pt;}
.y66{bottom:773.893333pt;}
.y143{bottom:779.813333pt;}
.ya{bottom:788.773333pt;}
.y65{bottom:789.093333pt;}
.yca{bottom:789.893333pt;}
.y100{bottom:792.133333pt;}
.y64{bottom:804.453333pt;}
.yc9{bottom:806.533333pt;}
.y142{bottom:808.453333pt;}
.yff{bottom:808.613333pt;}
.y63{bottom:819.813333pt;}
.y141{bottom:820.613333pt;}
.y9{bottom:823.013333pt;}
.yfe{bottom:825.253333pt;}
.y140{bottom:832.933333pt;}
.y62{bottom:835.173333pt;}
.yfd{bottom:841.733333pt;}
.y13f{bottom:849.253333pt;}
.y61{bottom:850.533333pt;}
.yfc{bottom:858.373333pt;}
.y13e{bottom:861.413333pt;}
.y8{bottom:863.653333pt;}
.y60{bottom:865.893333pt;}
.y13d{bottom:873.733333pt;}
.yfb{bottom:874.853333pt;}
.y5f{bottom:881.093333pt;}
.y13c{bottom:886.053333pt;}
.y5e{bottom:896.453333pt;}
.yfa{bottom:902.053333pt;}
.y13b{bottom:902.213333pt;}
.y7{bottom:904.133333pt;}
.y5d{bottom:911.813333pt;}
.y13a{bottom:914.533333pt;}
.yf9{bottom:918.693333pt;}
.y5c{bottom:927.173333pt;}
.y139{bottom:930.853333pt;}
.yf8{bottom:935.173333pt;}
.y90{bottom:942.533333pt;}
.y138{bottom:943.013333pt;}
.yf7{bottom:951.653333pt;}
.y137{bottom:955.333333pt;}
.y5b{bottom:957.893333pt;}
.yf6{bottom:968.293333pt;}
.y136{bottom:971.653333pt;}
.y5a{bottom:973.093333pt;}
.y6{bottom:979.493333pt;}
.y135{bottom:983.813333pt;}
.yf5{bottom:984.773333pt;}
.y59{bottom:988.453333pt;}
.y134{bottom:996.133333pt;}
.yf4{bottom:1001.413333pt;}
.y58{bottom:1003.813333pt;}
.y5{bottom:1007.653333pt;}
.y133{bottom:1012.480000pt;}
.yf3{bottom:1017.920000pt;}
.y57{bottom:1019.200000pt;}
.y4{bottom:1021.760000pt;}
.y132{bottom:1024.640000pt;}
.y55{bottom:1032.323424pt;}
.y56{bottom:1034.560000pt;}
.y3{bottom:1035.840000pt;}
.y131{bottom:1036.960000pt;}
.y2{bottom:1049.920000pt;}
.y51{bottom:1059.840672pt;}
.y1{bottom:1064.000000pt;}
.hc{height:15.998400pt;}
.h10{height:31.008437pt;}
.h8{height:38.413438pt;}
.hb{height:39.786021pt;}
.h2{height:41.765625pt;}
.h12{height:42.063437pt;}
.h11{height:42.084375pt;}
.ha{height:42.651984pt;}
.he{height:43.215000pt;}
.h5{height:48.375000pt;}
.h7{height:52.134375pt;}
.h6{height:53.535000pt;}
.hd{height:55.298750pt;}
.h4{height:57.787500pt;}
.hf{height:58.563750pt;}
.h3{height:108.375000pt;}
.h9{height:1122.554400pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.331200pt;}
.w2{width:793.254000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:68.000000pt;}
.x14{left:75.512448pt;}
.x8{left:77.600000pt;}
.xf{left:86.912000pt;}
.x1c{left:98.272000pt;}
.x19{left:132.992000pt;}
.x7{left:139.866667pt;}
.x1b{left:155.546667pt;}
.x11{left:171.226667pt;}
.xe{left:181.626667pt;}
.x9{left:199.226667pt;}
.xa{left:221.626667pt;}
.xc{left:277.986667pt;}
.xb{left:300.546667pt;}
.xd{left:358.146667pt;}
.x12{left:416.253333pt;}
.x13{left:435.133333pt;}
.x17{left:437.213333pt;}
.x1d{left:446.493333pt;}
.x1a{left:526.493333pt;}
.x18{left:559.933333pt;}
.x5{left:619.013333pt;}
.x2{left:624.133333pt;}
.x1{left:627.013333pt;}
.x4{left:651.653333pt;}
.x3{left:679.173333pt;}
.x15{left:684.731520pt;}
.x16{left:688.182213pt;}
.x6{left:723.813333pt;}
}




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