
    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_11915310e9630480c62feb75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074219;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_cd766937f2e346efa12988e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_3c3855800d740cd7425d8707.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_729c683e50de1c7031616f73.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_2ea21b497680dda1451720e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924805;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_9b28f44a2c79d59ec91a8501.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_b34f68e1a12a98c0045d483e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_27304ca983b07c5635a00ba6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.259766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259766,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260638,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261364,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.262681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262681,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264583,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-36.000000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.400000px;}
.v1{vertical-align:25.800000px;}
.v4{vertical-align:34.800000px;}
.v6{vertical-align:36.000000px;}
.v5{vertical-align:69.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.228000px;}
.ls2{letter-spacing:255.480000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws2{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.958000px;}
.ws0{word-spacing:-12.000000px;}
.ws3{word-spacing:-9.600000px;}
.ws4{word-spacing:-7.800000px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:23.220000px;}
.wsd{word-spacing:72.420000px;}
.ws9{word-spacing:103.020000px;}
.ws11{word-spacing:114.060000px;}
.wsc{word-spacing:131.460000px;}
.wse{word-spacing:151.020000px;}
.ws8{word-spacing:252.420000px;}
.wsf{word-spacing:257.400000px;}
.wsa{word-spacing:315.000000px;}
.ws10{word-spacing:332.400000px;}
._5{margin-left:-9.828000px;}
._16{margin-left:-8.256000px;}
._4{margin-left:-6.162000px;}
._2{margin-left:-4.500000px;}
._27{margin-left:-3.480000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._7{width:3.311339px;}
._6{width:5.100000px;}
._d{width:6.180000px;}
._17{width:7.286882px;}
._8{width:9.264000px;}
._9{width:10.428000px;}
._a{width:11.454000px;}
._e{width:12.510567px;}
._12{width:13.559433px;}
._14{width:15.444000px;}
._20{width:16.572000px;}
._13{width:17.688000px;}
._19{width:18.870000px;}
._18{width:19.908000px;}
._23{width:20.964000px;}
._15{width:22.253150px;}
._f{width:24.162567px;}
._10{width:25.366819px;}
._1f{width:27.084000px;}
._c{width:28.848000px;}
._b{width:30.186000px;}
._37{width:31.740000px;}
._31{width:33.276000px;}
._38{width:34.820835px;}
._25{width:36.444567px;}
._24{width:37.452000px;}
._11{width:38.790000px;}
._35{width:40.345795px;}
._36{width:41.484000px;}
._28{width:42.769701px;}
._1b{width:47.128346px;}
._21{width:48.235654px;}
._1a{width:49.420346px;}
._1e{width:55.740000px;}
._1d{width:56.886000px;}
._22{width:60.280346px;}
._3a{width:79.116000px;}
._34{width:89.160000px;}
._2f{width:94.338000px;}
._2a{width:95.520000px;}
._39{width:103.116000px;}
._1c{width:116.622000px;}
._32{width:141.852000px;}
._29{width:192.900000px;}
._2b{width:206.880000px;}
._30{width:225.960000px;}
._33{width:228.480000px;}
._2d{width:254.760000px;}
._2c{width:420.360000px;}
._2e{width:432.120000px;}
._26{width:648.840000px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs8{font-size:31.200000px;}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:38.400000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y47{bottom:87.541500px;}
.y5c{bottom:89.641500px;}
.yef{bottom:130.141500px;}
.y9f{bottom:135.241500px;}
.yda{bottom:153.841500px;}
.yee{bottom:153.991500px;}
.y7b{bottom:156.391500px;}
.y9e{bottom:162.991500px;}
.y113{bottom:167.941500px;}
.y46{bottom:170.041500px;}
.y9b{bottom:171.241500px;}
.yed{bottom:177.691500px;}
.y9d{bottom:180.241500px;}
.yd9{bottom:184.891500px;}
.y8c{bottom:185.941500px;}
.y7a{bottom:187.441500px;}
.y9a{bottom:188.491500px;}
.y45{bottom:191.791500px;}
.y9c{bottom:197.491500px;}
.yec{bottom:201.541500px;}
.y44{bottom:213.541500px;}
.y99{bottom:215.491500px;}
.yd8{bottom:215.941500px;}
.y8b{bottom:216.991500px;}
.y79{bottom:218.491500px;}
.y8d{bottom:219.841500px;}
.yeb{bottom:225.241500px;}
.y98{bottom:232.741500px;}
.y112{bottom:239.341500px;}
.y97{bottom:241.291500px;}
.yd7{bottom:246.991500px;}
.yea{bottom:249.091500px;}
.y78{bottom:249.541500px;}
.y43{bottom:257.041500px;}
.y111{bottom:263.041500px;}
.ye9{bottom:272.791500px;}
.yd6{bottom:278.041500px;}
.y42{bottom:278.791500px;}
.y77{bottom:280.591500px;}
.y8a{bottom:283.291500px;}
.y110{bottom:286.891500px;}
.ye8{bottom:296.641500px;}
.y41{bottom:300.541500px;}
.y96{bottom:306.691500px;}
.yd5{bottom:309.091500px;}
.y10f{bottom:310.591500px;}
.y76{bottom:311.641500px;}
.y89{bottom:316.291500px;}
.y86{bottom:319.441500px;}
.ye7{bottom:320.341500px;}
.y40{bottom:322.291500px;}
.y10e{bottom:334.441500px;}
.y88{bottom:334.591500px;}
.yd4{bottom:340.141500px;}
.y75{bottom:342.691500px;}
.y3f{bottom:344.041500px;}
.ye6{bottom:344.191500px;}
.y87{bottom:354.091500px;}
.y10d{bottom:358.141500px;}
.y3e{bottom:365.791500px;}
.ye5{bottom:367.891500px;}
.yd3{bottom:371.191500px;}
.y74{bottom:373.741500px;}
.y10c{bottom:381.991500px;}
.y3d{bottom:387.541500px;}
.ye4{bottom:391.741500px;}
.y95{bottom:398.491500px;}
.yd2{bottom:402.241500px;}
.y72{bottom:404.791500px;}
.y10b{bottom:405.691500px;}
.y3c{bottom:409.291500px;}
.ye3{bottom:415.441500px;}
.y83{bottom:416.641500px;}
.y85{bottom:423.841500px;}
.y1e{bottom:426.691500px;}
.y94{bottom:429.541500px;}
.y3b{bottom:431.041500px;}
.y71{bottom:435.841500px;}
.ye2{bottom:439.291500px;}
.y84{bottom:443.641500px;}
.y1d{bottom:443.941500px;}
.y3a{bottom:452.791500px;}
.y10a{bottom:453.241500px;}
.y93{bottom:460.591500px;}
.y1c{bottom:461.341500px;}
.ye1{bottom:462.991500px;}
.y73{bottom:466.891500px;}
.yd1{bottom:468.691500px;}
.y39{bottom:474.541500px;}
.y109{bottom:477.091500px;}
.y1b{bottom:478.591500px;}
.ye0{bottom:486.841500px;}
.y92{bottom:491.641500px;}
.y1a{bottom:495.991500px;}
.y38{bottom:496.291500px;}
.y81{bottom:496.741500px;}
.y5b{bottom:497.341500px;}
.y70{bottom:497.941500px;}
.yd0{bottom:500.791500px;}
.ydf{bottom:510.541500px;}
.y19{bottom:513.241500px;}
.y80{bottom:513.991500px;}
.y37{bottom:518.041500px;}
.y91{bottom:522.691500px;}
.y108{bottom:524.641500px;}
.y5a{bottom:528.391500px;}
.y6f{bottom:528.991500px;}
.y18{bottom:530.641500px;}
.yde{bottom:534.391500px;}
.yce{bottom:535.291500px;}
.y36{bottom:539.791500px;}
.y17{bottom:547.891500px;}
.y107{bottom:548.341500px;}
.y82{bottom:548.791500px;}
.ycd{bottom:552.541500px;}
.y90{bottom:553.741500px;}
.ydd{bottom:558.091500px;}
.y6e{bottom:560.041500px;}
.y35{bottom:561.541500px;}
.y16{bottom:565.291500px;}
.ycf{bottom:569.791500px;}
.y106{bottom:572.191500px;}
.y7e{bottom:581.941500px;}
.y15{bottom:582.541500px;}
.y34{bottom:583.291500px;}
.ycc{bottom:588.241500px;}
.y59{bottom:590.941500px;}
.y6d{bottom:591.091500px;}
.y105{bottom:595.891500px;}
.y7d{bottom:599.791500px;}
.y14{bottom:599.941500px;}
.y7f{bottom:600.391500px;}
.y8f{bottom:604.441500px;}
.y33{bottom:605.041500px;}
.ycb{bottom:605.491500px;}
.ydc{bottom:605.641500px;}
.y13{bottom:617.191500px;}
.y104{bottom:619.741500px;}
.y8e{bottom:620.641500px;}
.y58{bottom:621.991500px;}
.y6c{bottom:622.141500px;}
.yc7{bottom:622.291500px;}
.yca{bottom:622.741500px;}
.y32{bottom:626.791500px;}
.ydb{bottom:629.491500px;}
.y12{bottom:634.591500px;}
.yc6{bottom:639.541500px;}
.yc9{bottom:639.991500px;}
.y103{bottom:643.441500px;}
.y31{bottom:648.541500px;}
.y11{bottom:651.841500px;}
.y57{bottom:653.041500px;}
.y6b{bottom:653.191500px;}
.y7c{bottom:654.691500px;}
.yc8{bottom:657.241500px;}
.y102{bottom:667.291500px;}
.y10{bottom:669.241500px;}
.y30{bottom:670.291500px;}
.yc2{bottom:675.241500px;}
.y56{bottom:684.091500px;}
.y6a{bottom:684.241500px;}
.yf{bottom:686.491500px;}
.y101{bottom:690.991500px;}
.y2f{bottom:692.041500px;}
.yc1{bottom:692.491500px;}
.ybe{bottom:701.041500px;}
.yc5{bottom:701.491500px;}
.yc0{bottom:709.741500px;}
.y2e{bottom:713.791500px;}
.y100{bottom:714.841500px;}
.y55{bottom:715.141500px;}
.y69{bottom:715.291500px;}
.ybd{bottom:718.291500px;}
.yc4{bottom:718.741500px;}
.ye{bottom:724.291500px;}
.ybf{bottom:726.991500px;}
.y2d{bottom:735.541500px;}
.yc3{bottom:735.991500px;}
.yff{bottom:738.541500px;}
.yd{bottom:741.691500px;}
.y54{bottom:746.191500px;}
.y68{bottom:746.341500px;}
.ybc{bottom:754.141500px;}
.y2c{bottom:757.291500px;}
.yfe{bottom:762.391500px;}
.ybb{bottom:770.941500px;}
.yc{bottom:776.341500px;}
.y53{bottom:777.241500px;}
.y67{bottom:777.391500px;}
.y2b{bottom:779.041500px;}
.yfd{bottom:786.091500px;}
.yb7{bottom:788.041500px;}
.yba{bottom:788.191500px;}
.y2a{bottom:800.791500px;}
.yb6{bottom:805.291500px;}
.yb9{bottom:805.441500px;}
.y52{bottom:808.291500px;}
.y66{bottom:808.441500px;}
.yfc{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.yb8{bottom:822.691500px;}
.ya{bottom:828.241500px;}
.y29{bottom:830.341500px;}
.yfb{bottom:833.641500px;}
.y51{bottom:839.341500px;}
.y65{bottom:839.491500px;}
.yb5{bottom:841.291500px;}
.yfa{bottom:857.491500px;}
.yb4{bottom:857.941500px;}
.y9{bottom:862.741500px;}
.y28{bottom:870.241500px;}
.y50{bottom:870.391500px;}
.y64{bottom:870.541500px;}
.yb2{bottom:875.191500px;}
.y8{bottom:879.991500px;}
.yf9{bottom:881.191500px;}
.yb1{bottom:892.441500px;}
.y27{bottom:893.491500px;}
.y7{bottom:897.391500px;}
.y4f{bottom:901.441500px;}
.y63{bottom:901.591500px;}
.yf8{bottom:905.041500px;}
.y26{bottom:905.941500px;}
.yb3{bottom:909.691500px;}
.yf7{bottom:928.741500px;}
.yb0{bottom:929.041500px;}
.y25{bottom:929.191500px;}
.y6{bottom:931.891500px;}
.y4e{bottom:932.491500px;}
.y62{bottom:932.641500px;}
.yaf{bottom:945.841500px;}
.y5{bottom:949.291500px;}
.y24{bottom:950.641500px;}
.yf6{bottom:952.591500px;}
.yab{bottom:954.241500px;}
.yaa{bottom:954.391500px;}
.ya9{bottom:962.941500px;}
.yae{bottom:963.091500px;}
.y4d{bottom:963.541500px;}
.y61{bottom:963.691500px;}
.yf5{bottom:976.291500px;}
.yad{bottom:980.341500px;}
.y23{bottom:987.091500px;}
.y4c{bottom:994.591500px;}
.y60{bottom:994.741500px;}
.yac{bottom:997.591500px;}
.yf4{bottom:1000.141500px;}
.y22{bottom:1012.741500px;}
.ya8{bottom:1016.341500px;}
.yf3{bottom:1023.841500px;}
.y4b{bottom:1025.641500px;}
.y5f{bottom:1025.791500px;}
.ya4{bottom:1033.441500px;}
.ya7{bottom:1033.591500px;}
.y21{bottom:1038.541500px;}
.yf2{bottom:1047.691500px;}
.ya3{bottom:1050.691500px;}
.ya6{bottom:1050.841500px;}
.y4a{bottom:1056.691500px;}
.y5e{bottom:1056.841500px;}
.y20{bottom:1064.191500px;}
.ya5{bottom:1068.091500px;}
.yf1{bottom:1071.391500px;}
.ya2{bottom:1086.391500px;}
.y49{bottom:1087.741500px;}
.y5d{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.yf0{bottom:1095.241500px;}
.ya1{bottom:1103.641500px;}
.ya0{bottom:1111.891500px;}
.y48{bottom:1118.941500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.ha{height:21.678516px;}
.hb{height:37.520508px;}
.h13{height:39.313477px;}
.hf{height:41.203125px;}
.h7{height:41.689453px;}
.h4{height:43.031250px;}
.h15{height:43.681641px;}
.h17{height:45.858398px;}
.he{height:46.470703px;}
.h16{height:47.961914px;}
.h11{height:49.992188px;}
.h10{height:50.027344px;}
.h1e{height:50.695312px;}
.h9{height:52.481250px;}
.h5{height:53.291016px;}
.h6{height:53.789062px;}
.h14{height:56.189063px;}
.hd{height:56.654297px;}
.h12{height:58.620117px;}
.h3{height:61.804688px;}
.hc{height:63.949219px;}
.h8{height:69.278320px;}
.h18{height:78.481641px;}
.h1a{height:87.989062px;}
.h1d{height:88.589063px;}
.h1b{height:89.789062px;}
.h19{height:112.681641px;}
.h1c{height:122.789062px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.xc{left:87.300000px;}
.x72{left:88.950000px;}
.x77{left:90.300000px;}
.x44{left:99.900000px;}
.x28{left:104.550000px;}
.x61{left:112.650000px;}
.x6f{left:114.000000px;}
.x5a{left:127.500000px;}
.x31{left:130.500000px;}
.x59{left:136.200000px;}
.x91{left:137.400000px;}
.x23{left:140.550000px;}
.x5f{left:144.600000px;}
.x43{left:147.900000px;}
.x66{left:150.150000px;}
.x3a{left:155.100000px;}
.x93{left:157.350000px;}
.x98{left:159.450000px;}
.x4d{left:162.150000px;}
.x4a{left:164.550000px;}
.x32{left:168.150000px;}
.x7f{left:174.600000px;}
.x4e{left:175.950000px;}
.xb{left:182.700000px;}
.x41{left:184.050000px;}
.x9c{left:189.750000px;}
.x13{left:195.900000px;}
.x88{left:201.300000px;}
.x14{left:205.350000px;}
.x9e{left:208.500000px;}
.x7e{left:210.750000px;}
.x47{left:213.750000px;}
.x29{left:228.450000px;}
.x90{left:238.200000px;}
.x62{left:240.750000px;}
.x22{left:241.950000px;}
.x4f{left:246.450000px;}
.x12{left:249.300000px;}
.x99{left:258.750000px;}
.x50{left:260.250000px;}
.x63{left:261.300000px;}
.x67{left:263.400000px;}
.x60{left:265.800000px;}
.x5d{left:269.550000px;}
.x2a{left:271.350000px;}
.x15{left:273.300000px;}
.x4b{left:281.250000px;}
.x58{left:284.400000px;}
.x11{left:286.350000px;}
.x73{left:288.150000px;}
.x5c{left:289.200000px;}
.x36{left:290.550000px;}
.x16{left:300.300000px;}
.x6d{left:309.900000px;}
.x86{left:318.600000px;}
.x51{left:322.650000px;}
.x17{left:323.850000px;}
.x3b{left:327.600000px;}
.x37{left:330.300000px;}
.x52{left:336.450000px;}
.x48{left:339.900000px;}
.x6a{left:346.050000px;}
.x7{left:347.400000px;}
.x6e{left:349.200000px;}
.x18{left:350.850000px;}
.x3{left:354.450000px;}
.x65{left:360.600000px;}
.x2{left:363.150000px;}
.x9a{left:364.500000px;}
.x4{left:366.450000px;}
.x3c{left:369.150000px;}
.x78{left:371.400000px;}
.x5b{left:373.050000px;}
.x19{left:374.250000px;}
.x82{left:375.300000px;}
.x6c{left:377.250000px;}
.x92{left:380.550000px;}
.x10{left:381.900000px;}
.x2b{left:383.550000px;}
.x8b{left:391.350000px;}
.x87{left:393.900000px;}
.x95{left:394.950000px;}
.x64{left:397.500000px;}
.x53{left:398.700000px;}
.x5{left:400.200000px;}
.x24{left:402.900000px;}
.x54{left:412.500000px;}
.x81{left:422.100000px;}
.x2c{left:423.600000px;}
.x9{left:424.950000px;}
.x1a{left:426.150000px;}
.x74{left:427.650000px;}
.x9f{left:430.200000px;}
.xf{left:435.900000px;}
.x70{left:442.200000px;}
.x94{left:444.450000px;}
.x1b{left:449.550000px;}
.x89{left:452.850000px;}
.x56{left:461.100000px;}
.x8c{left:465.600000px;}
.x1c{left:467.100000px;}
.x7d{left:473.100000px;}
.xa0{left:484.200000px;}
.x1d{left:490.500000px;}
.xa{left:500.100000px;}
.x6{left:507.900000px;}
.x55{left:514.650000px;}
.x84{left:519.000000px;}
.x6b{left:525.750000px;}
.x3d{left:529.050000px;}
.x7c{left:530.100000px;}
.x57{left:531.300000px;}
.x76{left:533.550000px;}
.x96{left:552.600000px;}
.x3f{left:558.900000px;}
.x25{left:562.050000px;}
.x9d{left:563.250000px;}
.x2d{left:566.100000px;}
.x3e{left:570.600000px;}
.x8d{left:574.350000px;}
.xe{left:589.050000px;}
.x40{left:596.100000px;}
.x26{left:599.850000px;}
.x2e{left:606.300000px;}
.x83{left:609.150000px;}
.x75{left:614.850000px;}
.x8f{left:616.050000px;}
.x1e{left:621.300000px;}
.x7b{left:633.000000px;}
.x35{left:640.350000px;}
.x1f{left:644.850000px;}
.xd{left:646.050000px;}
.x9b{left:647.850000px;}
.x97{left:651.450000px;}
.x7a{left:654.900000px;}
.x49{left:661.350000px;}
.x46{left:663.750000px;}
.x71{left:667.800000px;}
.x8{left:670.800000px;}
.x68{left:687.300000px;}
.x80{left:691.650000px;}
.x34{left:692.700000px;}
.x8a{left:701.400000px;}
.x69{left:703.050000px;}
.x45{left:705.600000px;}
.x2f{left:713.400000px;}
.x20{left:715.500000px;}
.x5e{left:720.150000px;}
.x42{left:723.750000px;}
.x39{left:725.850000px;}
.x38{left:735.150000px;}
.x21{left:738.900000px;}
.x30{left:753.450000px;}
.x33{left:766.650000px;}
.x79{left:772.200000px;}
.x85{left:779.550000px;}
.x4c{left:790.500000px;}
.x27{left:792.750000px;}
.x8e{left:803.250000px;}
@media print{
.v7{vertical-align:-32.000000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.133333pt;}
.v1{vertical-align:22.933333pt;}
.v4{vertical-align:30.933333pt;}
.v6{vertical-align:32.000000pt;}
.v5{vertical-align:61.333333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls2{letter-spacing:227.093333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.296000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws3{word-spacing:-8.533333pt;}
.ws4{word-spacing:-6.933333pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:20.640000pt;}
.wsd{word-spacing:64.373333pt;}
.ws9{word-spacing:91.573333pt;}
.ws11{word-spacing:101.386667pt;}
.wsc{word-spacing:116.853333pt;}
.wse{word-spacing:134.240000pt;}
.ws8{word-spacing:224.373333pt;}
.wsf{word-spacing:228.800000pt;}
.wsa{word-spacing:280.000000pt;}
.ws10{word-spacing:295.466667pt;}
._5{margin-left:-8.736000pt;}
._16{margin-left:-7.338667pt;}
._4{margin-left:-5.477333pt;}
._2{margin-left:-4.000000pt;}
._27{margin-left:-3.093333pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._7{width:2.943412pt;}
._6{width:4.533333pt;}
._d{width:5.493333pt;}
._17{width:6.477228pt;}
._8{width:8.234667pt;}
._9{width:9.269333pt;}
._a{width:10.181333pt;}
._e{width:11.120504pt;}
._12{width:12.052829pt;}
._14{width:13.728000pt;}
._20{width:14.730667pt;}
._13{width:15.722667pt;}
._19{width:16.773333pt;}
._18{width:17.696000pt;}
._23{width:18.634667pt;}
._15{width:19.780577pt;}
._f{width:21.477837pt;}
._10{width:22.548283pt;}
._1f{width:24.074667pt;}
._c{width:25.642667pt;}
._b{width:26.832000pt;}
._37{width:28.213333pt;}
._31{width:29.578667pt;}
._38{width:30.951853pt;}
._25{width:32.395171pt;}
._24{width:33.290667pt;}
._11{width:34.480000pt;}
._35{width:35.862929pt;}
._36{width:36.874667pt;}
._28{width:38.017512pt;}
._1b{width:41.891864pt;}
._21{width:42.876137pt;}
._1a{width:43.929197pt;}
._1e{width:49.546667pt;}
._1d{width:50.565333pt;}
._22{width:53.582530pt;}
._3a{width:70.325333pt;}
._34{width:79.253333pt;}
._2f{width:83.856000pt;}
._2a{width:84.906667pt;}
._39{width:91.658667pt;}
._1c{width:103.664000pt;}
._32{width:126.090667pt;}
._29{width:171.466667pt;}
._2b{width:183.893333pt;}
._30{width:200.853333pt;}
._33{width:203.093333pt;}
._2d{width:226.453333pt;}
._2c{width:373.653333pt;}
._2e{width:384.106667pt;}
._26{width:576.746667pt;}
.fs8{font-size:27.733333pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:34.133333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y47{bottom:77.814667pt;}
.y5c{bottom:79.681333pt;}
.yef{bottom:115.681333pt;}
.y9f{bottom:120.214667pt;}
.yda{bottom:136.748000pt;}
.yee{bottom:136.881333pt;}
.y7b{bottom:139.014667pt;}
.y9e{bottom:144.881333pt;}
.y113{bottom:149.281333pt;}
.y46{bottom:151.148000pt;}
.y9b{bottom:152.214667pt;}
.yed{bottom:157.948000pt;}
.y9d{bottom:160.214667pt;}
.yd9{bottom:164.348000pt;}
.y8c{bottom:165.281333pt;}
.y7a{bottom:166.614667pt;}
.y9a{bottom:167.548000pt;}
.y45{bottom:170.481333pt;}
.y9c{bottom:175.548000pt;}
.yec{bottom:179.148000pt;}
.y44{bottom:189.814667pt;}
.y99{bottom:191.548000pt;}
.yd8{bottom:191.948000pt;}
.y8b{bottom:192.881333pt;}
.y79{bottom:194.214667pt;}
.y8d{bottom:195.414667pt;}
.yeb{bottom:200.214667pt;}
.y98{bottom:206.881333pt;}
.y112{bottom:212.748000pt;}
.y97{bottom:214.481333pt;}
.yd7{bottom:219.548000pt;}
.yea{bottom:221.414667pt;}
.y78{bottom:221.814667pt;}
.y43{bottom:228.481333pt;}
.y111{bottom:233.814667pt;}
.ye9{bottom:242.481333pt;}
.yd6{bottom:247.148000pt;}
.y42{bottom:247.814667pt;}
.y77{bottom:249.414667pt;}
.y8a{bottom:251.814667pt;}
.y110{bottom:255.014667pt;}
.ye8{bottom:263.681333pt;}
.y41{bottom:267.148000pt;}
.y96{bottom:272.614667pt;}
.yd5{bottom:274.748000pt;}
.y10f{bottom:276.081333pt;}
.y76{bottom:277.014667pt;}
.y89{bottom:281.148000pt;}
.y86{bottom:283.948000pt;}
.ye7{bottom:284.748000pt;}
.y40{bottom:286.481333pt;}
.y10e{bottom:297.281333pt;}
.y88{bottom:297.414667pt;}
.yd4{bottom:302.348000pt;}
.y75{bottom:304.614667pt;}
.y3f{bottom:305.814667pt;}
.ye6{bottom:305.948000pt;}
.y87{bottom:314.748000pt;}
.y10d{bottom:318.348000pt;}
.y3e{bottom:325.148000pt;}
.ye5{bottom:327.014667pt;}
.yd3{bottom:329.948000pt;}
.y74{bottom:332.214667pt;}
.y10c{bottom:339.548000pt;}
.y3d{bottom:344.481333pt;}
.ye4{bottom:348.214667pt;}
.y95{bottom:354.214667pt;}
.yd2{bottom:357.548000pt;}
.y72{bottom:359.814667pt;}
.y10b{bottom:360.614667pt;}
.y3c{bottom:363.814667pt;}
.ye3{bottom:369.281333pt;}
.y83{bottom:370.348000pt;}
.y85{bottom:376.748000pt;}
.y1e{bottom:379.281333pt;}
.y94{bottom:381.814667pt;}
.y3b{bottom:383.148000pt;}
.y71{bottom:387.414667pt;}
.ye2{bottom:390.481333pt;}
.y84{bottom:394.348000pt;}
.y1d{bottom:394.614667pt;}
.y3a{bottom:402.481333pt;}
.y10a{bottom:402.881333pt;}
.y93{bottom:409.414667pt;}
.y1c{bottom:410.081333pt;}
.ye1{bottom:411.548000pt;}
.y73{bottom:415.014667pt;}
.yd1{bottom:416.614667pt;}
.y39{bottom:421.814667pt;}
.y109{bottom:424.081333pt;}
.y1b{bottom:425.414667pt;}
.ye0{bottom:432.748000pt;}
.y92{bottom:437.014667pt;}
.y1a{bottom:440.881333pt;}
.y38{bottom:441.148000pt;}
.y81{bottom:441.548000pt;}
.y5b{bottom:442.081333pt;}
.y70{bottom:442.614667pt;}
.yd0{bottom:445.148000pt;}
.ydf{bottom:453.814667pt;}
.y19{bottom:456.214667pt;}
.y80{bottom:456.881333pt;}
.y37{bottom:460.481333pt;}
.y91{bottom:464.614667pt;}
.y108{bottom:466.348000pt;}
.y5a{bottom:469.681333pt;}
.y6f{bottom:470.214667pt;}
.y18{bottom:471.681333pt;}
.yde{bottom:475.014667pt;}
.yce{bottom:475.814667pt;}
.y36{bottom:479.814667pt;}
.y17{bottom:487.014667pt;}
.y107{bottom:487.414667pt;}
.y82{bottom:487.814667pt;}
.ycd{bottom:491.148000pt;}
.y90{bottom:492.214667pt;}
.ydd{bottom:496.081333pt;}
.y6e{bottom:497.814667pt;}
.y35{bottom:499.148000pt;}
.y16{bottom:502.481333pt;}
.ycf{bottom:506.481333pt;}
.y106{bottom:508.614667pt;}
.y7e{bottom:517.281333pt;}
.y15{bottom:517.814667pt;}
.y34{bottom:518.481333pt;}
.ycc{bottom:522.881333pt;}
.y59{bottom:525.281333pt;}
.y6d{bottom:525.414667pt;}
.y105{bottom:529.681333pt;}
.y7d{bottom:533.148000pt;}
.y14{bottom:533.281333pt;}
.y7f{bottom:533.681333pt;}
.y8f{bottom:537.281333pt;}
.y33{bottom:537.814667pt;}
.ycb{bottom:538.214667pt;}
.ydc{bottom:538.348000pt;}
.y13{bottom:548.614667pt;}
.y104{bottom:550.881333pt;}
.y8e{bottom:551.681333pt;}
.y58{bottom:552.881333pt;}
.y6c{bottom:553.014667pt;}
.yc7{bottom:553.148000pt;}
.yca{bottom:553.548000pt;}
.y32{bottom:557.148000pt;}
.ydb{bottom:559.548000pt;}
.y12{bottom:564.081333pt;}
.yc6{bottom:568.481333pt;}
.yc9{bottom:568.881333pt;}
.y103{bottom:571.948000pt;}
.y31{bottom:576.481333pt;}
.y11{bottom:579.414667pt;}
.y57{bottom:580.481333pt;}
.y6b{bottom:580.614667pt;}
.y7c{bottom:581.948000pt;}
.yc8{bottom:584.214667pt;}
.y102{bottom:593.148000pt;}
.y10{bottom:594.881333pt;}
.y30{bottom:595.814667pt;}
.yc2{bottom:600.214667pt;}
.y56{bottom:608.081333pt;}
.y6a{bottom:608.214667pt;}
.yf{bottom:610.214667pt;}
.y101{bottom:614.214667pt;}
.y2f{bottom:615.148000pt;}
.yc1{bottom:615.548000pt;}
.ybe{bottom:623.148000pt;}
.yc5{bottom:623.548000pt;}
.yc0{bottom:630.881333pt;}
.y2e{bottom:634.481333pt;}
.y100{bottom:635.414667pt;}
.y55{bottom:635.681333pt;}
.y69{bottom:635.814667pt;}
.ybd{bottom:638.481333pt;}
.yc4{bottom:638.881333pt;}
.ye{bottom:643.814667pt;}
.ybf{bottom:646.214667pt;}
.y2d{bottom:653.814667pt;}
.yc3{bottom:654.214667pt;}
.yff{bottom:656.481333pt;}
.yd{bottom:659.281333pt;}
.y54{bottom:663.281333pt;}
.y68{bottom:663.414667pt;}
.ybc{bottom:670.348000pt;}
.y2c{bottom:673.148000pt;}
.yfe{bottom:677.681333pt;}
.ybb{bottom:685.281333pt;}
.yc{bottom:690.081333pt;}
.y53{bottom:690.881333pt;}
.y67{bottom:691.014667pt;}
.y2b{bottom:692.481333pt;}
.yfd{bottom:698.748000pt;}
.yb7{bottom:700.481333pt;}
.yba{bottom:700.614667pt;}
.y2a{bottom:711.814667pt;}
.yb6{bottom:715.814667pt;}
.yb9{bottom:715.948000pt;}
.y52{bottom:718.481333pt;}
.y66{bottom:718.614667pt;}
.yfc{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.yb8{bottom:731.281333pt;}
.ya{bottom:736.214667pt;}
.y29{bottom:738.081333pt;}
.yfb{bottom:741.014667pt;}
.y51{bottom:746.081333pt;}
.y65{bottom:746.214667pt;}
.yb5{bottom:747.814667pt;}
.yfa{bottom:762.214667pt;}
.yb4{bottom:762.614667pt;}
.y9{bottom:766.881333pt;}
.y28{bottom:773.548000pt;}
.y50{bottom:773.681333pt;}
.y64{bottom:773.814667pt;}
.yb2{bottom:777.948000pt;}
.y8{bottom:782.214667pt;}
.yf9{bottom:783.281333pt;}
.yb1{bottom:793.281333pt;}
.y27{bottom:794.214667pt;}
.y7{bottom:797.681333pt;}
.y4f{bottom:801.281333pt;}
.y63{bottom:801.414667pt;}
.yf8{bottom:804.481333pt;}
.y26{bottom:805.281333pt;}
.yb3{bottom:808.614667pt;}
.yf7{bottom:825.548000pt;}
.yb0{bottom:825.814667pt;}
.y25{bottom:825.948000pt;}
.y6{bottom:828.348000pt;}
.y4e{bottom:828.881333pt;}
.y62{bottom:829.014667pt;}
.yaf{bottom:840.748000pt;}
.y5{bottom:843.814667pt;}
.y24{bottom:845.014667pt;}
.yf6{bottom:846.748000pt;}
.yab{bottom:848.214667pt;}
.yaa{bottom:848.348000pt;}
.ya9{bottom:855.948000pt;}
.yae{bottom:856.081333pt;}
.y4d{bottom:856.481333pt;}
.y61{bottom:856.614667pt;}
.yf5{bottom:867.814667pt;}
.yad{bottom:871.414667pt;}
.y23{bottom:877.414667pt;}
.y4c{bottom:884.081333pt;}
.y60{bottom:884.214667pt;}
.yac{bottom:886.748000pt;}
.yf4{bottom:889.014667pt;}
.y22{bottom:900.214667pt;}
.ya8{bottom:903.414667pt;}
.yf3{bottom:910.081333pt;}
.y4b{bottom:911.681333pt;}
.y5f{bottom:911.814667pt;}
.ya4{bottom:918.614667pt;}
.ya7{bottom:918.748000pt;}
.y21{bottom:923.148000pt;}
.yf2{bottom:931.281333pt;}
.ya3{bottom:933.948000pt;}
.ya6{bottom:934.081333pt;}
.y4a{bottom:939.281333pt;}
.y5e{bottom:939.414667pt;}
.y20{bottom:945.948000pt;}
.ya5{bottom:949.414667pt;}
.yf1{bottom:952.348000pt;}
.ya2{bottom:965.681333pt;}
.y49{bottom:966.881333pt;}
.y5d{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.yf0{bottom:973.548000pt;}
.ya1{bottom:981.014667pt;}
.ya0{bottom:988.348000pt;}
.y48{bottom:994.614667pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.ha{height:19.269792pt;}
.hb{height:33.351562pt;}
.h13{height:34.945312pt;}
.hf{height:36.625000pt;}
.h7{height:37.057292pt;}
.h4{height:38.250000pt;}
.h15{height:38.828125pt;}
.h17{height:40.763021pt;}
.he{height:41.307292pt;}
.h16{height:42.632812pt;}
.h11{height:44.437500pt;}
.h10{height:44.468750pt;}
.h1e{height:45.062500pt;}
.h9{height:46.650000pt;}
.h5{height:47.369792pt;}
.h6{height:47.812500pt;}
.h14{height:49.945833pt;}
.hd{height:50.359375pt;}
.h12{height:52.106771pt;}
.h3{height:54.937500pt;}
.hc{height:56.843750pt;}
.h8{height:61.580729pt;}
.h18{height:69.761458pt;}
.h1a{height:78.212500pt;}
.h1d{height:78.745833pt;}
.h1b{height:79.812500pt;}
.h19{height:100.161458pt;}
.h1c{height:109.145833pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.xc{left:77.600000pt;}
.x72{left:79.066667pt;}
.x77{left:80.266667pt;}
.x44{left:88.800000pt;}
.x28{left:92.933333pt;}
.x61{left:100.133333pt;}
.x6f{left:101.333333pt;}
.x5a{left:113.333333pt;}
.x31{left:116.000000pt;}
.x59{left:121.066667pt;}
.x91{left:122.133333pt;}
.x23{left:124.933333pt;}
.x5f{left:128.533333pt;}
.x43{left:131.466667pt;}
.x66{left:133.466667pt;}
.x3a{left:137.866667pt;}
.x93{left:139.866667pt;}
.x98{left:141.733333pt;}
.x4d{left:144.133333pt;}
.x4a{left:146.266667pt;}
.x32{left:149.466667pt;}
.x7f{left:155.200000pt;}
.x4e{left:156.400000pt;}
.xb{left:162.400000pt;}
.x41{left:163.600000pt;}
.x9c{left:168.666667pt;}
.x13{left:174.133333pt;}
.x88{left:178.933333pt;}
.x14{left:182.533333pt;}
.x9e{left:185.333333pt;}
.x7e{left:187.333333pt;}
.x47{left:190.000000pt;}
.x29{left:203.066667pt;}
.x90{left:211.733333pt;}
.x62{left:214.000000pt;}
.x22{left:215.066667pt;}
.x4f{left:219.066667pt;}
.x12{left:221.600000pt;}
.x99{left:230.000000pt;}
.x50{left:231.333333pt;}
.x63{left:232.266667pt;}
.x67{left:234.133333pt;}
.x60{left:236.266667pt;}
.x5d{left:239.600000pt;}
.x2a{left:241.200000pt;}
.x15{left:242.933333pt;}
.x4b{left:250.000000pt;}
.x58{left:252.800000pt;}
.x11{left:254.533333pt;}
.x73{left:256.133333pt;}
.x5c{left:257.066667pt;}
.x36{left:258.266667pt;}
.x16{left:266.933333pt;}
.x6d{left:275.466667pt;}
.x86{left:283.200000pt;}
.x51{left:286.800000pt;}
.x17{left:287.866667pt;}
.x3b{left:291.200000pt;}
.x37{left:293.600000pt;}
.x52{left:299.066667pt;}
.x48{left:302.133333pt;}
.x6a{left:307.600000pt;}
.x7{left:308.800000pt;}
.x6e{left:310.400000pt;}
.x18{left:311.866667pt;}
.x3{left:315.066667pt;}
.x65{left:320.533333pt;}
.x2{left:322.800000pt;}
.x9a{left:324.000000pt;}
.x4{left:325.733333pt;}
.x3c{left:328.133333pt;}
.x78{left:330.133333pt;}
.x5b{left:331.600000pt;}
.x19{left:332.666667pt;}
.x82{left:333.600000pt;}
.x6c{left:335.333333pt;}
.x92{left:338.266667pt;}
.x10{left:339.466667pt;}
.x2b{left:340.933333pt;}
.x8b{left:347.866667pt;}
.x87{left:350.133333pt;}
.x95{left:351.066667pt;}
.x64{left:353.333333pt;}
.x53{left:354.400000pt;}
.x5{left:355.733333pt;}
.x24{left:358.133333pt;}
.x54{left:366.666667pt;}
.x81{left:375.200000pt;}
.x2c{left:376.533333pt;}
.x9{left:377.733333pt;}
.x1a{left:378.800000pt;}
.x74{left:380.133333pt;}
.x9f{left:382.400000pt;}
.xf{left:387.466667pt;}
.x70{left:393.066667pt;}
.x94{left:395.066667pt;}
.x1b{left:399.600000pt;}
.x89{left:402.533333pt;}
.x56{left:409.866667pt;}
.x8c{left:413.866667pt;}
.x1c{left:415.200000pt;}
.x7d{left:420.533333pt;}
.xa0{left:430.400000pt;}
.x1d{left:436.000000pt;}
.xa{left:444.533333pt;}
.x6{left:451.466667pt;}
.x55{left:457.466667pt;}
.x84{left:461.333333pt;}
.x6b{left:467.333333pt;}
.x3d{left:470.266667pt;}
.x7c{left:471.200000pt;}
.x57{left:472.266667pt;}
.x76{left:474.266667pt;}
.x96{left:491.200000pt;}
.x3f{left:496.800000pt;}
.x25{left:499.600000pt;}
.x9d{left:500.666667pt;}
.x2d{left:503.200000pt;}
.x3e{left:507.200000pt;}
.x8d{left:510.533333pt;}
.xe{left:523.600000pt;}
.x40{left:529.866667pt;}
.x26{left:533.200000pt;}
.x2e{left:538.933333pt;}
.x83{left:541.466667pt;}
.x75{left:546.533333pt;}
.x8f{left:547.600000pt;}
.x1e{left:552.266667pt;}
.x7b{left:562.666667pt;}
.x35{left:569.200000pt;}
.x1f{left:573.200000pt;}
.xd{left:574.266667pt;}
.x9b{left:575.866667pt;}
.x97{left:579.066667pt;}
.x7a{left:582.133333pt;}
.x49{left:587.866667pt;}
.x46{left:590.000000pt;}
.x71{left:593.600000pt;}
.x8{left:596.266667pt;}
.x68{left:610.933333pt;}
.x80{left:614.800000pt;}
.x34{left:615.733333pt;}
.x8a{left:623.466667pt;}
.x69{left:624.933333pt;}
.x45{left:627.200000pt;}
.x2f{left:634.133333pt;}
.x20{left:636.000000pt;}
.x5e{left:640.133333pt;}
.x42{left:643.333333pt;}
.x39{left:645.200000pt;}
.x38{left:653.466667pt;}
.x21{left:656.800000pt;}
.x30{left:669.733333pt;}
.x33{left:681.466667pt;}
.x79{left:686.400000pt;}
.x85{left:692.933333pt;}
.x4c{left:702.666667pt;}
.x27{left:704.666667pt;}
.x8e{left:714.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; }
  