
    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_adb014e6ce0af3eaa6dfdfed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_590ff6d2c8d5683f39bba08a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6d6c12d13b8da21b9c54911d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_30083fffff9fb7427e01656c.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c089862da0fb775ee41473c5.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_562b1317092e1e336927c99e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.880000px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560005px;}
.v1{vertical-align:18.720013px;}
.v6{vertical-align:20.879995px;}
.v8{vertical-align:30.960023px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036779px;}
.ls4{letter-spacing:0.036810px;}
.ls0{letter-spacing:0.036842px;}
.ls9{letter-spacing:0.208282px;}
.ls1{letter-spacing:0.208422px;}
.ls2{letter-spacing:0.378360px;}
.ls8{letter-spacing:21.637874px;}
.ls5{letter-spacing:46.117883px;}
.ls6{letter-spacing:46.117950px;}
.lsa{letter-spacing:189.565583px;}
.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;}
}
.ws4{word-spacing:-14.911650px;}
.ws2{word-spacing:-13.474463px;}
.ws0{word-spacing:-12.037163px;}
.ws3{word-spacing:-9.701595px;}
.ws1{word-spacing:-7.545679px;}
.ws5{word-spacing:0.000000px;}
._34{margin-left:-9.088534px;}
._40{margin-left:-5.320821px;}
._3e{margin-left:-3.682567px;}
._3f{margin-left:-2.548816px;}
._2{margin-left:-1.133289px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._6{width:3.910669px;}
._5{width:5.566311px;}
._1d{width:6.732754px;}
._3{width:7.813239px;}
._7{width:9.351774px;}
._8{width:10.448640px;}
._20{width:11.556443px;}
._4{width:12.634201px;}
._19{width:13.798944px;}
._21{width:16.132846px;}
._c{width:17.317086px;}
._a{width:18.527869px;}
._b{width:19.724169px;}
._24{width:20.834859px;}
._2c{width:21.859364px;}
._9{width:23.080976px;}
._15{width:24.273908px;}
._16{width:25.399433px;}
._23{width:26.739922px;}
._18{width:27.793990px;}
._14{width:29.008679px;}
._13{width:30.209444px;}
._1f{width:31.720181px;}
._2f{width:33.008267px;}
._1e{width:34.343699px;}
._2a{width:35.988407px;}
._25{width:37.158506px;}
._1a{width:39.236118px;}
._1b{width:40.327931px;}
._2b{width:41.433024px;}
._29{width:42.516753px;}
._e{width:43.847546px;}
._26{width:45.096486px;}
._17{width:46.104443px;}
._10{width:47.779243px;}
._f{width:49.060027px;}
._2e{width:51.305629px;}
._30{width:52.586006px;}
._12{width:54.268853px;}
._11{width:55.548764px;}
._38{width:58.003828px;}
._37{width:62.050710px;}
._22{width:64.018115px;}
._1c{width:66.026528px;}
._27{width:67.071043px;}
._35{width:68.494334px;}
._31{width:69.587079px;}
._28{width:74.991764px;}
._2d{width:76.209249px;}
._d{width:77.290649px;}
._3b{width:82.509100px;}
._3d{width:85.960142px;}
._36{width:90.032726px;}
._3a{width:101.744357px;}
._44{width:106.207224px;}
._32{width:112.061427px;}
._33{width:113.168778px;}
._47{width:152.326359px;}
._42{width:208.244028px;}
._45{width:231.145370px;}
._41{width:272.300570px;}
._46{width:290.102618px;}
._39{width:464.707127px;}
._3c{width:679.770471px;}
._43{width:801.658936px;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:2.874546px;}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fs9{font-size:66.114450px;}
.fs8{font-size:71.863650px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y173{bottom:3.239937px;}
.y17d{bottom:3.240006px;}
.y9{bottom:35.640061px;}
.y8{bottom:52.919975px;}
.y7{bottom:66.960022px;}
.yde{bottom:99.179970px;}
.y86{bottom:100.620002px;}
.y108{bottom:101.340019px;}
.y51{bottom:102.600013px;}
.yaf{bottom:102.779983px;}
.y13b{bottom:103.679970px;}
.y146{bottom:106.740006px;}
.y3a{bottom:111.779983px;}
.ydd{bottom:116.460022px;}
.y85{bottom:117.899986px;}
.y50{bottom:119.879998px;}
.yae{bottom:120.059967px;}
.y13a{bottom:120.960022px;}
.y145{bottom:123.840019px;}
.y107{bottom:127.620002px;}
.y39{bottom:128.879998px;}
.ydc{bottom:133.740006px;}
.y84{bottom:135.179970px;}
.y4f{bottom:137.159981px;}
.yad{bottom:137.340019px;}
.y139{bottom:138.240006px;}
.y144{bottom:141.120002px;}
.y106{bottom:144.899986px;}
.y38{bottom:146.159981px;}
.ydb{bottom:150.840019px;}
.y17c{bottom:151.919975px;}
.y83{bottom:152.460022px;}
.y4e{bottom:154.440033px;}
.yac{bottom:154.620002px;}
.y138{bottom:158.399986px;}
.y105{bottom:162.179970px;}
.y37{bottom:163.440033px;}
.yda{bottom:168.120002px;}
.y82{bottom:169.740006px;}
.y4d{bottom:171.720017px;}
.yab{bottom:171.899986px;}
.y17b{bottom:172.440033px;}
.y137{bottom:175.679970px;}
.y36{bottom:180.720017px;}
.yd9{bottom:185.399986px;}
.y81{bottom:186.840019px;}
.y104{bottom:188.460022px;}
.y4c{bottom:189.000000px;}
.yaa{bottom:189.179970px;}
.y17a{bottom:189.539977px;}
.y136{bottom:192.960022px;}
.y35{bottom:198.000000px;}
.yd8{bottom:202.679970px;}
.y80{bottom:204.120002px;}
.y103{bottom:205.740006px;}
.y4b{bottom:206.100013px;}
.y179{bottom:206.820030px;}
.y135{bottom:210.240006px;}
.ya9{bottom:216.720017px;}
.yd7{bottom:219.960022px;}
.y7f{bottom:221.399986px;}
.y102{bottom:222.840019px;}
.y4a{bottom:223.379998px;}
.y34{bottom:224.100013px;}
.y134{bottom:230.399986px;}
.ya8{bottom:235.259994px;}
.y193{bottom:238.320030px;}
.y7e{bottom:238.679970px;}
.y101{bottom:240.120002px;}
.y49{bottom:240.659981px;}
.y33{bottom:241.379998px;}
.yd6{bottom:246.059967px;}
.y133{bottom:247.679970px;}
.ya7{bottom:253.980011px;}
.y7d{bottom:255.960022px;}
.y100{bottom:257.399986px;}
.y32{bottom:258.659981px;}
.y192{bottom:262.799973px;}
.yd5{bottom:263.340019px;}
.y132{bottom:264.960022px;}
.y48{bottom:266.940033px;}
.ya6{bottom:272.519989px;}
.y7c{bottom:273.240006px;}
.yff{bottom:274.679970px;}
.y31{bottom:275.940033px;}
.y182{bottom:276.120002px;}
.yd4{bottom:280.620002px;}
.y131{bottom:282.240006px;}
.y47{bottom:284.220017px;}
.y191{bottom:284.580025px;}
.y181{bottom:288.899986px;}
.y7b{bottom:290.340019px;}
.ya5{bottom:291.059967px;}
.yfe{bottom:291.960022px;}
.y178{bottom:293.039977px;}
.y30{bottom:293.220017px;}
.yd3{bottom:297.899986px;}
.y130{bottom:299.340019px;}
.y46{bottom:301.500000px;}
.y7a{bottom:307.620002px;}
.yfd{bottom:309.240006px;}
.ya4{bottom:309.779983px;}
.y177{bottom:310.320030px;}
.y2f{bottom:310.500000px;}
.yd2{bottom:315.179970px;}
.y45{bottom:318.600013px;}
.y12f{bottom:319.679970px;}
.y79{bottom:324.899986px;}
.yfc{bottom:326.340019px;}
.y2e{bottom:327.600013px;}
.y1aa{bottom:327.779983px;}
.ya3{bottom:328.320030px;}
.yd1{bottom:332.460022px;}
.y44{bottom:335.879998px;}
.y12e{bottom:336.960022px;}
.y78{bottom:342.179970px;}
.yfb{bottom:343.620002px;}
.y2d{bottom:344.879998px;}
.ya2{bottom:347.039977px;}
.yd0{bottom:349.559967px;}
.y43{bottom:353.159981px;}
.y12d{bottom:354.059967px;}
.y1a9{bottom:357.120002px;}
.y77{bottom:359.460022px;}
.yfa{bottom:360.899986px;}
.y176{bottom:362.159981px;}
.y1a6{bottom:364.860008px;}
.ya1{bottom:365.580025px;}
.y188{bottom:369.720017px;}
.y42{bottom:370.440033px;}
.y2c{bottom:371.159981px;}
.y12c{bottom:371.340019px;}
.y1a8{bottom:372.779983px;}
.ycf{bottom:375.840019px;}
.yf9{bottom:378.179970px;}
.y1a5{bottom:380.519989px;}
.y175{bottom:380.879998px;}
.ya0{bottom:384.299973px;}
.y76{bottom:385.559967px;}
.y41{bottom:387.720017px;}
.y1a7{bottom:388.259994px;}
.y2b{bottom:388.440033px;}
.y12b{bottom:388.620002px;}
.y143{bottom:391.679970px;}
.yce{bottom:393.120002px;}
.y187{bottom:394.200027px;}
.yf8{bottom:395.460022px;}
.y75{bottom:402.840019px;}
.y40{bottom:405.000000px;}
.y2a{bottom:405.720017px;}
.y12a{bottom:408.779983px;}
.y142{bottom:408.960022px;}
.y174{bottom:409.500000px;}
.ycd{bottom:410.399986px;}
.yf7{bottom:412.559967px;}
.y186{bottom:415.799973px;}
.y1a4{bottom:418.679970px;}
.y74{bottom:420.120002px;}
.y9f{bottom:421.379998px;}
.y172{bottom:422.820030px;}
.y29{bottom:423.000000px;}
.y129{bottom:426.059967px;}
.y1a1{bottom:426.600013px;}
.ycc{bottom:427.679970px;}
.yf6{bottom:429.840019px;}
.y3f{bottom:431.100013px;}
.y1a3{bottom:434.340019px;}
.y73{bottom:437.399986px;}
.y28{bottom:440.100013px;}
.y1a0{bottom:442.080025px;}
.y128{bottom:443.340019px;}
.ycb{bottom:444.960022px;}
.y18e{bottom:446.940033px;}
.yf5{bottom:447.120002px;}
.y3e{bottom:448.379998px;}
.y1a2{bottom:449.820030px;}
.y72{bottom:454.679970px;}
.y27{bottom:457.379998px;}
.y9e{bottom:458.639992px;}
.y127{bottom:460.620002px;}
.y141{bottom:463.679970px;}
.yf4{bottom:464.399986px;}
.y3d{bottom:465.659981px;}
.yca{bottom:471.059967px;}
.y18d{bottom:471.600013px;}
.y71{bottom:471.960022px;}
.y26{bottom:474.659981px;}
.y9d{bottom:477.360008px;}
.y171{bottom:477.899986px;}
.y19f{bottom:480.240006px;}
.y126{bottom:480.779983px;}
.y140{bottom:480.960022px;}
.yf3{bottom:481.679970px;}
.y3c{bottom:482.940033px;}
.y19e{bottom:488.159981px;}
.yc9{bottom:488.340019px;}
.y70{bottom:489.059967px;}
.y25{bottom:491.940033px;}
.y18c{bottom:493.200027px;}
.y170{bottom:495.000000px;}
.y9c{bottom:495.899986px;}
.y125{bottom:498.059967px;}
.yf2{bottom:498.960022px;}
.y3b{bottom:500.220017px;}
.yc8{bottom:505.620002px;}
.y6f{bottom:506.340019px;}
.y24{bottom:509.220017px;}
.y16f{bottom:512.279983px;}
.y9b{bottom:514.440033px;}
.y124{bottom:515.340019px;}
.yf1{bottom:516.059967px;}
.yc7{bottom:522.899986px;}
.y6e{bottom:523.620002px;}
.y23{bottom:526.320030px;}
.y16e{bottom:529.559967px;}
.y123{bottom:532.620002px;}
.y9a{bottom:533.159981px;}
.yf0{bottom:533.340019px;}
.y19c{bottom:534.059967px;}
.yc6{bottom:540.179970px;}
.y6d{bottom:540.899986px;}
.y19d{bottom:541.980011px;}
.y22{bottom:543.600013px;}
.y16d{bottom:546.840019px;}
.yef{bottom:550.620002px;}
.y122{bottom:552.779983px;}
.y6c{bottom:558.179970px;}
.y21{bottom:560.879998px;}
.y99{bottom:563.580025px;}
.y16c{bottom:564.120002px;}
.yc5{bottom:566.279983px;}
.yee{bottom:567.899986px;}
.y1af{bottom:568.259994px;}
.y121{bottom:570.059967px;}
.y19b{bottom:572.399986px;}
.y14f{bottom:573.120002px;}
.y6b{bottom:575.460022px;}
.y20{bottom:578.159981px;}
.y199{bottom:580.139992px;}
.y16b{bottom:581.399986px;}
.y98{bottom:582.299973px;}
.yc4{bottom:583.559967px;}
.yed{bottom:585.179970px;}
.y120{bottom:587.340019px;}
.y19a{bottom:587.879998px;}
.y14e{bottom:590.399986px;}
.y1ac{bottom:590.580025px;}
.y6a{bottom:592.559967px;}
.y1ae{bottom:592.740006px;}
.y16a{bottom:598.500000px;}
.y97{bottom:600.840019px;}
.yec{bottom:602.460022px;}
.y1f{bottom:604.440033px;}
.y11f{bottom:604.620002px;}
.y14d{bottom:607.679970px;}
.y1ab{bottom:612.180004px;}
.y1ad{bottom:614.339985px;}
.y169{bottom:615.779983px;}
.yc3{bottom:618.120002px;}
.y198{bottom:618.480011px;}
.y69{bottom:618.839985px;}
.y96{bottom:619.560001px;}
.y1e{bottom:621.720017px;}
.y13f{bottom:621.899986px;}
.y11e{bottom:624.779983px;}
.y14c{bottom:624.959988px;}
.y168{bottom:633.060001px;}
.y68{bottom:636.120002px;}
.yeb{bottom:636.839985px;}
.y95{bottom:638.100013px;}
.y1d{bottom:638.819995px;}
.y11d{bottom:642.060001px;}
.yc2{bottom:644.399986px;}
.y197{bottom:647.819995px;}
.y167{bottom:650.339985px;}
.y67{bottom:653.399986px;}
.yea{bottom:654.120002px;}
.y1c{bottom:656.100013px;}
.y94{bottom:656.819995px;}
.y180{bottom:657.720017px;}
.y11c{bottom:659.339985px;}
.yc1{bottom:661.680004px;}
.y166{bottom:667.620002px;}
.y190{bottom:668.879998px;}
.y66{bottom:670.680004px;}
.ye9{bottom:671.399986px;}
.y196{bottom:672.300007px;}
.y185{bottom:672.839985px;}
.y1b{bottom:673.379998px;}
.y93{bottom:675.360008px;}
.y11b{bottom:676.620002px;}
.yc0{bottom:678.779983px;}
.y17f{bottom:683.639992px;}
.y165{bottom:684.720017px;}
.y65{bottom:687.779983px;}
.ye8{bottom:688.680004px;}
.y18f{bottom:690.480011px;}
.y1a{bottom:690.660015px;}
.y92{bottom:693.899986px;}
.ybf{bottom:696.060001px;}
.y17e{bottom:696.240006px;}
.y14b{bottom:696.779983px;}
.y195{bottom:696.959988px;}
.y184{bottom:697.319995px;}
.y164{bottom:702.000000px;}
.y64{bottom:705.060001px;}
.ye7{bottom:705.779983px;}
.y19{bottom:707.939999px;}
.y11a{bottom:711.180004px;}
.y91{bottom:712.620002px;}
.ybe{bottom:713.339985px;}
.y14a{bottom:714.060001px;}
.y194{bottom:718.560001px;}
.y183{bottom:718.920010px;}
.y163{bottom:719.279983px;}
.y63{bottom:722.339985px;}
.ye6{bottom:723.060001px;}
.y18{bottom:725.220017px;}
.y13e{bottom:728.279983px;}
.ybd{bottom:730.620002px;}
.y90{bottom:731.160015px;}
.y119{bottom:731.339985px;}
.y162{bottom:736.560001px;}
.y62{bottom:739.620002px;}
.ye5{bottom:740.339985px;}
.y17{bottom:742.319995px;}
.ybc{bottom:747.899986px;}
.y118{bottom:748.620002px;}
.y8f{bottom:749.879998px;}
.y161{bottom:753.839985px;}
.y61{bottom:756.899986px;}
.ye4{bottom:757.620002px;}
.y16{bottom:759.600013px;}
.y18b{bottom:762.660015px;}
.y117{bottom:765.899986px;}
.y8e{bottom:768.420010px;}
.y160{bottom:771.120002px;}
.ybb{bottom:774.000000px;}
.y60{bottom:774.180004px;}
.ye3{bottom:774.899986px;}
.y15{bottom:776.879998px;}
.y116{bottom:783.180004px;}
.y149{bottom:786.060001px;}
.y8d{bottom:786.959988px;}
.y18a{bottom:787.139992px;}
.y15f{bottom:788.220017px;}
.y5f{bottom:791.279983px;}
.ye2{bottom:792.180004px;}
.y14{bottom:794.160015px;}
.y115{bottom:800.279983px;}
.y148{bottom:803.339985px;}
.y15e{bottom:805.500000px;}
.y8c{bottom:805.680004px;}
.yba{bottom:808.560001px;}
.y189{bottom:808.740006px;}
.ye1{bottom:809.279983px;}
.y13{bottom:811.439999px;}
.y5e{bottom:817.560001px;}
.y114{bottom:820.620002px;}
.y15d{bottom:822.779983px;}
.yb9{bottom:825.839985px;}
.ye0{bottom:826.560001px;}
.y12{bottom:828.720017px;}
.y5d{bottom:834.839985px;}
.y113{bottom:837.899986px;}
.y15c{bottom:840.060001px;}
.yb8{bottom:843.120002px;}
.ydf{bottom:843.839985px;}
.y5c{bottom:852.120002px;}
.y11{bottom:854.459988px;}
.y112{bottom:855.180004px;}
.y15b{bottom:857.339985px;}
.yb7{bottom:860.399986px;}
.y8b{bottom:861.120002px;}
.y5b{bottom:869.399987px;}
.y111{bottom:872.279983px;}
.y15a{bottom:874.620002px;}
.yb6{bottom:877.680004px;}
.y8a{bottom:878.399987px;}
.y10{bottom:885.600013px;}
.y5a{bottom:886.680004px;}
.y110{bottom:889.560001px;}
.y159{bottom:891.720017px;}
.y147{bottom:892.620002px;}
.yb5{bottom:894.779983px;}
.y89{bottom:895.680004px;}
.y59{bottom:903.780001px;}
.y13d{bottom:906.840002px;}
.y158{bottom:909.000000px;}
.y10f{bottom:909.900003px;}
.yf{bottom:911.520006px;}
.yb4{bottom:912.060001px;}
.y88{bottom:912.780001px;}
.y58{bottom:921.060001px;}
.y157{bottom:926.280001px;}
.y13c{bottom:927.000000px;}
.y10e{bottom:927.180004px;}
.y87{bottom:930.060001px;}
.ye{bottom:937.259994px;}
.yb3{bottom:938.340002px;}
.y156{bottom:943.560001px;}
.y10d{bottom:944.280001px;}
.y57{bottom:947.340002px;}
.yb2{bottom:955.620002px;}
.y155{bottom:960.840002px;}
.y10c{bottom:961.560001px;}
.yd{bottom:963.180004px;}
.y56{bottom:964.620002px;}
.yb1{bottom:972.900003px;}
.y154{bottom:978.120002px;}
.y10b{bottom:978.840002px;}
.yc{bottom:979.740006px;}
.y55{bottom:981.900003px;}
.yb0{bottom:990.180004px;}
.y153{bottom:995.219999px;}
.y10a{bottom:996.120002px;}
.y54{bottom:999.180004px;}
.yb{bottom:1006.020006px;}
.y152{bottom:1012.500000px;}
.y109{bottom:1013.400003px;}
.y53{bottom:1016.280001px;}
.ya{bottom:1025.280001px;}
.y151{bottom:1029.780001px;}
.y52{bottom:1033.560001px;}
.y150{bottom:1047.060001px;}
.y6{bottom:1067.219999px;}
.y5{bottom:1079.459997px;}
.y4{bottom:1091.340002px;}
.y3{bottom:1105.379998px;}
.y2{bottom:1119.960843px;}
.y1{bottom:1120.860000px;}
.he{height:16.559967px;}
.h13{height:16.560036px;}
.hf{height:19.079956px;}
.h9{height:27.096252px;}
.h5{height:35.738832px;}
.h3{height:39.794858px;}
.h1{height:41.647772px;}
.h6{height:41.954845px;}
.ha{height:42.084637px;}
.h2{height:42.164290px;}
.hc{height:43.424356px;}
.h15{height:43.739369px;}
.h4{height:44.378823px;}
.h11{height:44.423619px;}
.h8{height:48.260474px;}
.hb{height:49.161846px;}
.h12{height:50.178232px;}
.hd{height:50.704577px;}
.h14{height:59.231368px;}
.h10{height:65.759343px;}
.h7{height:66.737046px;}
.h17{height:75.383367px;}
.h16{height:75.383641px;}
.h18{height:76.103520px;}
.h0{height:1188.000000px;}
.w4{width:6.839985px;}
.w6{width:7.559966px;}
.w2{width:8.280001px;}
.w1{width:39.419993px;}
.w3{width:99.720017px;}
.w5{width:530.460022px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:134.819996px;}
.xd{left:138.060001px;}
.x38{left:144.900003px;}
.x2c{left:147.060001px;}
.x32{left:149.039996px;}
.xc{left:155.520006px;}
.x7{left:158.580008px;}
.x17{left:160.020006px;}
.x15{left:162.000000px;}
.x39{left:169.199993px;}
.x9{left:172.259994px;}
.x11{left:189.000000px;}
.x18{left:199.259994px;}
.x1a{left:243.000000px;}
.x27{left:244.259994px;}
.x1{left:246.599997px;}
.x3a{left:250.560001px;}
.xb{left:259.199993px;}
.xa{left:269.639992px;}
.x3b{left:274.500000px;}
.x28{left:275.580008px;}
.x19{left:285.479994px;}
.x1b{left:288.540012px;}
.x1d{left:296.100013px;}
.x23{left:325.439999px;}
.x2b{left:330.480011px;}
.x26{left:333.360008px;}
.x21{left:341.639992px;}
.x1f{left:343.620002px;}
.xf{left:347.579990px;}
.x40{left:355.860008px;}
.x3c{left:357.480011px;}
.x2f{left:360.180005px;}
.x33{left:361.980011px;}
.x30{left:365.040012px;}
.x2a{left:371.519989px;}
.x31{left:376.019989px;}
.x2{left:383.579990px;}
.x3{left:399.420010px;}
.x34{left:412.019989px;}
.x10{left:418.139992px;}
.xe{left:424.439999px;}
.x2d{left:438.480011px;}
.x3d{left:442.259994px;}
.x6{left:443.879998px;}
.x8{left:459.000000px;}
.x12{left:469.800007px;}
.x16{left:496.800007px;}
.x14{left:499.860008px;}
.x13{left:523.800007px;}
.x2e{left:606.960023px;}
.x35{left:611.639992px;}
.x20{left:653.940033px;}
.x22{left:676.620002px;}
.x24{left:682.740006px;}
.x25{left:687.960023px;}
.x37{left:700.379998px;}
.x36{left:705.779983px;}
.x3f{left:727.740006px;}
.x3e{left:729.179970px;}
.x29{left:752.580025px;}
.x1e{left:765.539978px;}
.x1c{left:773.460023px;}
.x4{left:783.000000px;}
@media print{
.v7{vertical-align:-18.560000pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720004pt;}
.v1{vertical-align:16.640012pt;}
.v6{vertical-align:18.559996pt;}
.v8{vertical-align:27.520020pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032692pt;}
.ls4{letter-spacing:0.032720pt;}
.ls0{letter-spacing:0.032748pt;}
.ls9{letter-spacing:0.185140pt;}
.ls1{letter-spacing:0.185264pt;}
.ls2{letter-spacing:0.336320pt;}
.ls8{letter-spacing:19.233666pt;}
.ls5{letter-spacing:40.993674pt;}
.ls6{letter-spacing:40.993734pt;}
.lsa{letter-spacing:168.502740pt;}
.ws4{word-spacing:-13.254800pt;}
.ws2{word-spacing:-11.977300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws3{word-spacing:-8.623640pt;}
.ws1{word-spacing:-6.707270pt;}
.ws5{word-spacing:0.000000pt;}
._34{margin-left:-8.078697pt;}
._40{margin-left:-4.729618pt;}
._3e{margin-left:-3.273393pt;}
._3f{margin-left:-2.265614pt;}
._2{margin-left:-1.007368pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._6{width:3.476150pt;}
._5{width:4.947832pt;}
._1d{width:5.984670pt;}
._3{width:6.945101pt;}
._7{width:8.312688pt;}
._8{width:9.287680pt;}
._20{width:10.272394pt;}
._4{width:11.230400pt;}
._19{width:12.265728pt;}
._21{width:14.340308pt;}
._c{width:15.392965pt;}
._a{width:16.469217pt;}
._b{width:17.532595pt;}
._24{width:18.519874pt;}
._2c{width:19.430546pt;}
._9{width:20.516423pt;}
._15{width:21.576807pt;}
._16{width:22.577274pt;}
._23{width:23.768820pt;}
._18{width:24.705769pt;}
._14{width:25.785493pt;}
._13{width:26.852839pt;}
._1f{width:28.195716pt;}
._2f{width:29.340681pt;}
._1e{width:30.527732pt;}
._2a{width:31.989695pt;}
._25{width:33.029783pt;}
._1a{width:34.876549pt;}
._1b{width:35.847049pt;}
._2b{width:36.829354pt;}
._29{width:37.792669pt;}
._e{width:38.975596pt;}
._26{width:40.085765pt;}
._17{width:40.981727pt;}
._10{width:42.470439pt;}
._f{width:43.608913pt;}
._2e{width:45.605003pt;}
._30{width:46.743116pt;}
._12{width:48.238981pt;}
._11{width:49.376679pt;}
._38{width:51.558958pt;}
._37{width:55.156186pt;}
._22{width:56.904992pt;}
._1c{width:58.690247pt;}
._27{width:59.618705pt;}
._35{width:60.883853pt;}
._31{width:61.855181pt;}
._28{width:66.659346pt;}
._2d{width:67.741555pt;}
._d{width:68.702799pt;}
._3b{width:73.341422pt;}
._3d{width:76.409016pt;}
._36{width:80.029090pt;}
._3a{width:90.439428pt;}
._44{width:94.406422pt;}
._32{width:99.610157pt;}
._33{width:100.594469pt;}
._47{width:135.401208pt;}
._42{width:185.105803pt;}
._45{width:205.462551pt;}
._41{width:242.044951pt;}
._46{width:257.868994pt;}
._39{width:413.073001pt;}
._3c{width:604.240418pt;}
._43{width:712.585721pt;}
.fsa{font-size:2.555152pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fs9{font-size:58.768400pt;}
.fs8{font-size:63.878800pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y173{bottom:2.879944pt;}
.y17d{bottom:2.880005pt;}
.y9{bottom:31.680054pt;}
.y8{bottom:47.039978pt;}
.y7{bottom:59.520020pt;}
.yde{bottom:88.159973pt;}
.y86{bottom:89.440002pt;}
.y108{bottom:90.080017pt;}
.y51{bottom:91.200012pt;}
.yaf{bottom:91.359985pt;}
.y13b{bottom:92.159973pt;}
.y146{bottom:94.880005pt;}
.y3a{bottom:99.359985pt;}
.ydd{bottom:103.520020pt;}
.y85{bottom:104.799988pt;}
.y50{bottom:106.559998pt;}
.yae{bottom:106.719971pt;}
.y13a{bottom:107.520020pt;}
.y145{bottom:110.080017pt;}
.y107{bottom:113.440002pt;}
.y39{bottom:114.559998pt;}
.ydc{bottom:118.880005pt;}
.y84{bottom:120.159973pt;}
.y4f{bottom:121.919983pt;}
.yad{bottom:122.080017pt;}
.y139{bottom:122.880005pt;}
.y144{bottom:125.440002pt;}
.y106{bottom:128.799988pt;}
.y38{bottom:129.919983pt;}
.ydb{bottom:134.080017pt;}
.y17c{bottom:135.039978pt;}
.y83{bottom:135.520020pt;}
.y4e{bottom:137.280029pt;}
.yac{bottom:137.440002pt;}
.y138{bottom:140.799988pt;}
.y105{bottom:144.159973pt;}
.y37{bottom:145.280029pt;}
.yda{bottom:149.440002pt;}
.y82{bottom:150.880005pt;}
.y4d{bottom:152.640015pt;}
.yab{bottom:152.799988pt;}
.y17b{bottom:153.280029pt;}
.y137{bottom:156.159973pt;}
.y36{bottom:160.640015pt;}
.yd9{bottom:164.799988pt;}
.y81{bottom:166.080017pt;}
.y104{bottom:167.520020pt;}
.y4c{bottom:168.000000pt;}
.yaa{bottom:168.159973pt;}
.y17a{bottom:168.479980pt;}
.y136{bottom:171.520020pt;}
.y35{bottom:176.000000pt;}
.yd8{bottom:180.159973pt;}
.y80{bottom:181.440002pt;}
.y103{bottom:182.880005pt;}
.y4b{bottom:183.200012pt;}
.y179{bottom:183.840027pt;}
.y135{bottom:186.880005pt;}
.ya9{bottom:192.640015pt;}
.yd7{bottom:195.520020pt;}
.y7f{bottom:196.799988pt;}
.y102{bottom:198.080017pt;}
.y4a{bottom:198.559998pt;}
.y34{bottom:199.200012pt;}
.y134{bottom:204.799988pt;}
.ya8{bottom:209.119995pt;}
.y193{bottom:211.840027pt;}
.y7e{bottom:212.159973pt;}
.y101{bottom:213.440002pt;}
.y49{bottom:213.919983pt;}
.y33{bottom:214.559998pt;}
.yd6{bottom:218.719971pt;}
.y133{bottom:220.159973pt;}
.ya7{bottom:225.760010pt;}
.y7d{bottom:227.520020pt;}
.y100{bottom:228.799988pt;}
.y32{bottom:229.919983pt;}
.y192{bottom:233.599976pt;}
.yd5{bottom:234.080017pt;}
.y132{bottom:235.520020pt;}
.y48{bottom:237.280029pt;}
.ya6{bottom:242.239990pt;}
.y7c{bottom:242.880005pt;}
.yff{bottom:244.159973pt;}
.y31{bottom:245.280029pt;}
.y182{bottom:245.440002pt;}
.yd4{bottom:249.440002pt;}
.y131{bottom:250.880005pt;}
.y47{bottom:252.640015pt;}
.y191{bottom:252.960022pt;}
.y181{bottom:256.799988pt;}
.y7b{bottom:258.080017pt;}
.ya5{bottom:258.719971pt;}
.yfe{bottom:259.520020pt;}
.y178{bottom:260.479980pt;}
.y30{bottom:260.640015pt;}
.yd3{bottom:264.799988pt;}
.y130{bottom:266.080017pt;}
.y46{bottom:268.000000pt;}
.y7a{bottom:273.440002pt;}
.yfd{bottom:274.880005pt;}
.ya4{bottom:275.359985pt;}
.y177{bottom:275.840027pt;}
.y2f{bottom:276.000000pt;}
.yd2{bottom:280.159973pt;}
.y45{bottom:283.200012pt;}
.y12f{bottom:284.159973pt;}
.y79{bottom:288.799988pt;}
.yfc{bottom:290.080017pt;}
.y2e{bottom:291.200012pt;}
.y1aa{bottom:291.359985pt;}
.ya3{bottom:291.840027pt;}
.yd1{bottom:295.520020pt;}
.y44{bottom:298.559998pt;}
.y12e{bottom:299.520020pt;}
.y78{bottom:304.159973pt;}
.yfb{bottom:305.440002pt;}
.y2d{bottom:306.559998pt;}
.ya2{bottom:308.479980pt;}
.yd0{bottom:310.719971pt;}
.y43{bottom:313.919983pt;}
.y12d{bottom:314.719971pt;}
.y1a9{bottom:317.440002pt;}
.y77{bottom:319.520020pt;}
.yfa{bottom:320.799988pt;}
.y176{bottom:321.919983pt;}
.y1a6{bottom:324.320007pt;}
.ya1{bottom:324.960022pt;}
.y188{bottom:328.640015pt;}
.y42{bottom:329.280029pt;}
.y2c{bottom:329.919983pt;}
.y12c{bottom:330.080017pt;}
.y1a8{bottom:331.359985pt;}
.ycf{bottom:334.080017pt;}
.yf9{bottom:336.159973pt;}
.y1a5{bottom:338.239990pt;}
.y175{bottom:338.559998pt;}
.ya0{bottom:341.599976pt;}
.y76{bottom:342.719971pt;}
.y41{bottom:344.640015pt;}
.y1a7{bottom:345.119995pt;}
.y2b{bottom:345.280029pt;}
.y12b{bottom:345.440002pt;}
.y143{bottom:348.159973pt;}
.yce{bottom:349.440002pt;}
.y187{bottom:350.400024pt;}
.yf8{bottom:351.520020pt;}
.y75{bottom:358.080017pt;}
.y40{bottom:360.000000pt;}
.y2a{bottom:360.640015pt;}
.y12a{bottom:363.359985pt;}
.y142{bottom:363.520020pt;}
.y174{bottom:364.000000pt;}
.ycd{bottom:364.799988pt;}
.yf7{bottom:366.719971pt;}
.y186{bottom:369.599976pt;}
.y1a4{bottom:372.159973pt;}
.y74{bottom:373.440002pt;}
.y9f{bottom:374.559998pt;}
.y172{bottom:375.840027pt;}
.y29{bottom:376.000000pt;}
.y129{bottom:378.719971pt;}
.y1a1{bottom:379.200012pt;}
.ycc{bottom:380.159973pt;}
.yf6{bottom:382.080017pt;}
.y3f{bottom:383.200012pt;}
.y1a3{bottom:386.080017pt;}
.y73{bottom:388.799988pt;}
.y28{bottom:391.200012pt;}
.y1a0{bottom:392.960022pt;}
.y128{bottom:394.080017pt;}
.ycb{bottom:395.520020pt;}
.y18e{bottom:397.280029pt;}
.yf5{bottom:397.440002pt;}
.y3e{bottom:398.559998pt;}
.y1a2{bottom:399.840027pt;}
.y72{bottom:404.159973pt;}
.y27{bottom:406.559998pt;}
.y9e{bottom:407.679993pt;}
.y127{bottom:409.440002pt;}
.y141{bottom:412.159973pt;}
.yf4{bottom:412.799988pt;}
.y3d{bottom:413.919983pt;}
.yca{bottom:418.719971pt;}
.y18d{bottom:419.200012pt;}
.y71{bottom:419.520020pt;}
.y26{bottom:421.919983pt;}
.y9d{bottom:424.320007pt;}
.y171{bottom:424.799988pt;}
.y19f{bottom:426.880005pt;}
.y126{bottom:427.359985pt;}
.y140{bottom:427.520020pt;}
.yf3{bottom:428.159973pt;}
.y3c{bottom:429.280029pt;}
.y19e{bottom:433.919983pt;}
.yc9{bottom:434.080017pt;}
.y70{bottom:434.719971pt;}
.y25{bottom:437.280029pt;}
.y18c{bottom:438.400024pt;}
.y170{bottom:440.000000pt;}
.y9c{bottom:440.799988pt;}
.y125{bottom:442.719971pt;}
.yf2{bottom:443.520020pt;}
.y3b{bottom:444.640015pt;}
.yc8{bottom:449.440002pt;}
.y6f{bottom:450.080017pt;}
.y24{bottom:452.640015pt;}
.y16f{bottom:455.359985pt;}
.y9b{bottom:457.280029pt;}
.y124{bottom:458.080017pt;}
.yf1{bottom:458.719971pt;}
.yc7{bottom:464.799988pt;}
.y6e{bottom:465.440002pt;}
.y23{bottom:467.840027pt;}
.y16e{bottom:470.719971pt;}
.y123{bottom:473.440002pt;}
.y9a{bottom:473.919983pt;}
.yf0{bottom:474.080017pt;}
.y19c{bottom:474.719971pt;}
.yc6{bottom:480.159973pt;}
.y6d{bottom:480.799988pt;}
.y19d{bottom:481.760010pt;}
.y22{bottom:483.200012pt;}
.y16d{bottom:486.080017pt;}
.yef{bottom:489.440002pt;}
.y122{bottom:491.359985pt;}
.y6c{bottom:496.159973pt;}
.y21{bottom:498.559998pt;}
.y99{bottom:500.960022pt;}
.y16c{bottom:501.440002pt;}
.yc5{bottom:503.359985pt;}
.yee{bottom:504.799988pt;}
.y1af{bottom:505.119995pt;}
.y121{bottom:506.719971pt;}
.y19b{bottom:508.799988pt;}
.y14f{bottom:509.440002pt;}
.y6b{bottom:511.520020pt;}
.y20{bottom:513.919983pt;}
.y199{bottom:515.679993pt;}
.y16b{bottom:516.799988pt;}
.y98{bottom:517.599976pt;}
.yc4{bottom:518.719971pt;}
.yed{bottom:520.159973pt;}
.y120{bottom:522.080017pt;}
.y19a{bottom:522.559998pt;}
.y14e{bottom:524.799988pt;}
.y1ac{bottom:524.960022pt;}
.y6a{bottom:526.719971pt;}
.y1ae{bottom:526.880005pt;}
.y16a{bottom:532.000000pt;}
.y97{bottom:534.080017pt;}
.yec{bottom:535.520020pt;}
.y1f{bottom:537.280029pt;}
.y11f{bottom:537.440002pt;}
.y14d{bottom:540.159973pt;}
.y1ab{bottom:544.160004pt;}
.y1ad{bottom:546.079987pt;}
.y169{bottom:547.359985pt;}
.yc3{bottom:549.440002pt;}
.y198{bottom:549.760010pt;}
.y69{bottom:550.079987pt;}
.y96{bottom:550.720001pt;}
.y1e{bottom:552.640015pt;}
.y13f{bottom:552.799988pt;}
.y11e{bottom:555.359985pt;}
.y14c{bottom:555.519989pt;}
.y168{bottom:562.720001pt;}
.y68{bottom:565.440002pt;}
.yeb{bottom:566.079987pt;}
.y95{bottom:567.200012pt;}
.y1d{bottom:567.839996pt;}
.y11d{bottom:570.720001pt;}
.yc2{bottom:572.799988pt;}
.y197{bottom:575.839996pt;}
.y167{bottom:578.079987pt;}
.y67{bottom:580.799988pt;}
.yea{bottom:581.440002pt;}
.y1c{bottom:583.200012pt;}
.y94{bottom:583.839996pt;}
.y180{bottom:584.640015pt;}
.y11c{bottom:586.079987pt;}
.yc1{bottom:588.160004pt;}
.y166{bottom:593.440002pt;}
.y190{bottom:594.559998pt;}
.y66{bottom:596.160004pt;}
.ye9{bottom:596.799988pt;}
.y196{bottom:597.600006pt;}
.y185{bottom:598.079987pt;}
.y1b{bottom:598.559998pt;}
.y93{bottom:600.320007pt;}
.y11b{bottom:601.440002pt;}
.yc0{bottom:603.359985pt;}
.y17f{bottom:607.679993pt;}
.y165{bottom:608.640015pt;}
.y65{bottom:611.359985pt;}
.ye8{bottom:612.160004pt;}
.y18f{bottom:613.760010pt;}
.y1a{bottom:613.920013pt;}
.y92{bottom:616.799988pt;}
.ybf{bottom:618.720001pt;}
.y17e{bottom:618.880005pt;}
.y14b{bottom:619.359985pt;}
.y195{bottom:619.519989pt;}
.y184{bottom:619.839996pt;}
.y164{bottom:624.000000pt;}
.y64{bottom:626.720001pt;}
.ye7{bottom:627.359985pt;}
.y19{bottom:629.279999pt;}
.y11a{bottom:632.160004pt;}
.y91{bottom:633.440002pt;}
.ybe{bottom:634.079987pt;}
.y14a{bottom:634.720001pt;}
.y194{bottom:638.720001pt;}
.y183{bottom:639.040009pt;}
.y163{bottom:639.359985pt;}
.y63{bottom:642.079987pt;}
.ye6{bottom:642.720001pt;}
.y18{bottom:644.640015pt;}
.y13e{bottom:647.359985pt;}
.ybd{bottom:649.440002pt;}
.y90{bottom:649.920013pt;}
.y119{bottom:650.079987pt;}
.y162{bottom:654.720001pt;}
.y62{bottom:657.440002pt;}
.ye5{bottom:658.079987pt;}
.y17{bottom:659.839996pt;}
.ybc{bottom:664.799988pt;}
.y118{bottom:665.440002pt;}
.y8f{bottom:666.559998pt;}
.y161{bottom:670.079987pt;}
.y61{bottom:672.799988pt;}
.ye4{bottom:673.440002pt;}
.y16{bottom:675.200012pt;}
.y18b{bottom:677.920013pt;}
.y117{bottom:680.799988pt;}
.y8e{bottom:683.040009pt;}
.y160{bottom:685.440002pt;}
.ybb{bottom:688.000000pt;}
.y60{bottom:688.160004pt;}
.ye3{bottom:688.799988pt;}
.y15{bottom:690.559998pt;}
.y116{bottom:696.160004pt;}
.y149{bottom:698.720001pt;}
.y8d{bottom:699.519989pt;}
.y18a{bottom:699.679993pt;}
.y15f{bottom:700.640015pt;}
.y5f{bottom:703.359985pt;}
.ye2{bottom:704.160004pt;}
.y14{bottom:705.920013pt;}
.y115{bottom:711.359985pt;}
.y148{bottom:714.079987pt;}
.y15e{bottom:716.000000pt;}
.y8c{bottom:716.160004pt;}
.yba{bottom:718.720001pt;}
.y189{bottom:718.880005pt;}
.ye1{bottom:719.359985pt;}
.y13{bottom:721.279999pt;}
.y5e{bottom:726.720001pt;}
.y114{bottom:729.440002pt;}
.y15d{bottom:731.359985pt;}
.yb9{bottom:734.079987pt;}
.ye0{bottom:734.720001pt;}
.y12{bottom:736.640015pt;}
.y5d{bottom:742.079987pt;}
.y113{bottom:744.799988pt;}
.y15c{bottom:746.720001pt;}
.yb8{bottom:749.440002pt;}
.ydf{bottom:750.079987pt;}
.y5c{bottom:757.440002pt;}
.y11{bottom:759.519989pt;}
.y112{bottom:760.160004pt;}
.y15b{bottom:762.079987pt;}
.yb7{bottom:764.799988pt;}
.y8b{bottom:765.440002pt;}
.y5b{bottom:772.799988pt;}
.y111{bottom:775.359985pt;}
.y15a{bottom:777.440002pt;}
.yb6{bottom:780.160004pt;}
.y8a{bottom:780.799988pt;}
.y10{bottom:787.200012pt;}
.y5a{bottom:788.160004pt;}
.y110{bottom:790.720001pt;}
.y159{bottom:792.640015pt;}
.y147{bottom:793.440002pt;}
.yb5{bottom:795.359985pt;}
.y89{bottom:796.160004pt;}
.y59{bottom:803.360001pt;}
.y13d{bottom:806.080002pt;}
.y158{bottom:808.000000pt;}
.y10f{bottom:808.800003pt;}
.yf{bottom:810.240005pt;}
.yb4{bottom:810.720001pt;}
.y88{bottom:811.360001pt;}
.y58{bottom:818.720001pt;}
.y157{bottom:823.360001pt;}
.y13c{bottom:824.000000pt;}
.y10e{bottom:824.160004pt;}
.y87{bottom:826.720001pt;}
.ye{bottom:833.119995pt;}
.yb3{bottom:834.080002pt;}
.y156{bottom:838.720001pt;}
.y10d{bottom:839.360001pt;}
.y57{bottom:842.080002pt;}
.yb2{bottom:849.440002pt;}
.y155{bottom:854.080002pt;}
.y10c{bottom:854.720001pt;}
.yd{bottom:856.160004pt;}
.y56{bottom:857.440002pt;}
.yb1{bottom:864.800003pt;}
.y154{bottom:869.440002pt;}
.y10b{bottom:870.080002pt;}
.yc{bottom:870.880005pt;}
.y55{bottom:872.800003pt;}
.yb0{bottom:880.160004pt;}
.y153{bottom:884.639999pt;}
.y10a{bottom:885.440002pt;}
.y54{bottom:888.160004pt;}
.yb{bottom:894.240005pt;}
.y152{bottom:900.000000pt;}
.y109{bottom:900.800003pt;}
.y53{bottom:903.360001pt;}
.ya{bottom:911.360001pt;}
.y151{bottom:915.360001pt;}
.y52{bottom:918.720001pt;}
.y150{bottom:930.720001pt;}
.y6{bottom:948.639999pt;}
.y5{bottom:959.519997pt;}
.y4{bottom:970.080002pt;}
.y3{bottom:982.559998pt;}
.y2{bottom:995.520750pt;}
.y1{bottom:996.320000pt;}
.he{height:14.719971pt;}
.h13{height:14.720032pt;}
.hf{height:16.959961pt;}
.h9{height:24.085557pt;}
.h5{height:31.767850pt;}
.h3{height:35.373208pt;}
.h1{height:37.020242pt;}
.h6{height:37.293196pt;}
.ha{height:37.408566pt;}
.h2{height:37.479369pt;}
.hc{height:38.599427pt;}
.h15{height:38.879439pt;}
.h4{height:39.447842pt;}
.h11{height:39.487661pt;}
.h8{height:42.898199pt;}
.hb{height:43.699419pt;}
.h12{height:44.602873pt;}
.hd{height:45.070735pt;}
.h14{height:52.650105pt;}
.h10{height:58.452749pt;}
.h7{height:59.321818pt;}
.h17{height:67.007437pt;}
.h16{height:67.007681pt;}
.h18{height:67.647573pt;}
.h0{height:1056.000000pt;}
.w4{width:6.079987pt;}
.w6{width:6.719970pt;}
.w2{width:7.360001pt;}
.w1{width:35.039994pt;}
.w3{width:88.640015pt;}
.w5{width:471.520020pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:119.839996pt;}
.xd{left:122.720001pt;}
.x38{left:128.800003pt;}
.x2c{left:130.720001pt;}
.x32{left:132.479996pt;}
.xc{left:138.240005pt;}
.x7{left:140.960007pt;}
.x17{left:142.240005pt;}
.x15{left:144.000000pt;}
.x39{left:150.399994pt;}
.x9{left:153.119995pt;}
.x11{left:168.000000pt;}
.x18{left:177.119995pt;}
.x1a{left:216.000000pt;}
.x27{left:217.119995pt;}
.x1{left:219.199997pt;}
.x3a{left:222.720001pt;}
.xb{left:230.399994pt;}
.xa{left:239.679993pt;}
.x3b{left:244.000000pt;}
.x28{left:244.960007pt;}
.x19{left:253.759995pt;}
.x1b{left:256.480011pt;}
.x1d{left:263.200012pt;}
.x23{left:289.279999pt;}
.x2b{left:293.760010pt;}
.x26{left:296.320007pt;}
.x21{left:303.679993pt;}
.x1f{left:305.440002pt;}
.xf{left:308.959991pt;}
.x40{left:316.320007pt;}
.x3c{left:317.760010pt;}
.x2f{left:320.160004pt;}
.x33{left:321.760010pt;}
.x30{left:324.480011pt;}
.x2a{left:330.239990pt;}
.x31{left:334.239990pt;}
.x2{left:340.959991pt;}
.x3{left:355.040009pt;}
.x34{left:366.239990pt;}
.x10{left:371.679993pt;}
.xe{left:377.279999pt;}
.x2d{left:389.760010pt;}
.x3d{left:393.119995pt;}
.x6{left:394.559998pt;}
.x8{left:408.000000pt;}
.x12{left:417.600006pt;}
.x16{left:441.600006pt;}
.x14{left:444.320007pt;}
.x13{left:465.600006pt;}
.x2e{left:539.520020pt;}
.x35{left:543.679993pt;}
.x20{left:581.280029pt;}
.x22{left:601.440002pt;}
.x24{left:606.880005pt;}
.x25{left:611.520020pt;}
.x37{left:622.559998pt;}
.x36{left:627.359985pt;}
.x3f{left:646.880005pt;}
.x3e{left:648.159973pt;}
.x29{left:668.960022pt;}
.x1e{left:680.479980pt;}
.x1c{left:687.520020pt;}
.x4{left:696.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; }
  