
    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_5dcf7bd22a4d8eaaaee5b19c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004395;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_02cf55239e06d93ae88c3f2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_705faa3a7d570fbc88712c04.woff2')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_da091dee5eba5d58ba7e4ec7.woff2')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_208f6b4bd1947923e811c55c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_895293f4a34adff3eb7a197b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_74b8e89732d9653b8e926481.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6414d8491bdd06fe92a2a62b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6dc9bc4ec67f4cacd6aa22e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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);}
.v4{vertical-align:-88.800000px;}
.v5{vertical-align:-85.200000px;}
.v1{vertical-align:-75.600000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.600000px;}
.ls1b{letter-spacing:-1.578000px;}
.ls21{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.348000px;}
.ls10{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000003px;}
.lsf{letter-spacing:0.024000px;}
.ls22{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.252000px;}
.ls18{letter-spacing:0.300000px;}
.ls1c{letter-spacing:0.348000px;}
.ls11{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.lse{letter-spacing:0.588000px;}
.ls7{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.lsb{letter-spacing:1.500000px;}
.ls1d{letter-spacing:3.840000px;}
.ls17{letter-spacing:3.900000px;}
.lsd{letter-spacing:6.300000px;}
.ls14{letter-spacing:9.900000px;}
.ls12{letter-spacing:12.300000px;}
.ls8{letter-spacing:13.500000px;}
.ls13{letter-spacing:18.480000px;}
.ls0{letter-spacing:21.240000px;}
.ls6{letter-spacing:25.680000px;}
.ls1{letter-spacing:1020.750000px;}
.ls4{letter-spacing:1848.330000px;}
.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;}
}
.ws1{word-spacing:-21.000000px;}
.ws16{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.100000px;}
.ws14{word-spacing:-17.028000px;}
.wsf{word-spacing:-17.004000px;}
.wse{word-spacing:-16.878000px;}
.ws13{word-spacing:-16.848000px;}
.ws15{word-spacing:-16.800000px;}
.ws6{word-spacing:-16.500000px;}
.ws10{word-spacing:-16.152000px;}
.ws7{word-spacing:-16.122000px;}
.ws11{word-spacing:-15.900000px;}
.ws12{word-spacing:-14.922000px;}
.ws9{word-spacing:-14.100000px;}
.wsa{word-spacing:-14.088000px;}
.wsb{word-spacing:-14.040000px;}
.ws8{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.476000px;}
.ws0{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._36{margin-left:-2.712000px;}
._2{margin-left:-1.620000px;}
._1{width:1.380000px;}
._3{width:2.844000px;}
._1c{width:4.128000px;}
._d{width:5.340000px;}
._b{width:6.486000px;}
._a{width:7.494000px;}
._c{width:9.246000px;}
._e{width:10.800000px;}
._1d{width:11.844000px;}
._17{width:12.846000px;}
._7{width:13.896000px;}
._18{width:14.946000px;}
._27{width:16.140000px;}
._13{width:17.886000px;}
._19{width:19.794000px;}
._0{width:21.180000px;}
._16{width:22.248000px;}
._12{width:23.952000px;}
._11{width:25.014000px;}
._25{width:26.166000px;}
._2c{width:27.498000px;}
._23{width:28.992000px;}
._10{width:30.096000px;}
._f{width:31.122000px;}
._2e{width:32.184000px;}
._1a{width:33.282000px;}
._1b{width:34.302000px;}
._9{width:35.454000px;}
._8{width:36.468000px;}
._24{width:38.256000px;}
._37{width:39.336000px;}
._26{width:40.476000px;}
._2d{width:41.502000px;}
._14{width:42.504000px;}
._15{width:43.518000px;}
._4{width:45.492000px;}
._5{width:46.554000px;}
._39{width:48.342000px;}
._38{width:49.356000px;}
._1e{width:50.622000px;}
._3a{width:52.440000px;}
._2a{width:54.426000px;}
._35{width:55.656000px;}
._33{width:61.524000px;}
._29{width:62.586000px;}
._2b{width:68.046000px;}
._2f{width:69.516000px;}
._21{width:71.454000px;}
._22{width:72.822000px;}
._1f{width:74.364000px;}
._20{width:76.074000px;}
._28{width:77.112000px;}
._34{width:95.988000px;}
._32{width:97.830000px;}
._31{width:99.264000px;}
._30{width:100.818000px;}
._3c{width:125.928000px;}
._3b{width:127.176000px;}
._6{width:793.734000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:3.000000px;}
.yac{bottom:3.045000px;}
.yc5{bottom:11.700000px;}
.yb7{bottom:12.000000px;}
.yba{bottom:12.600000px;}
.y5c{bottom:15.600000px;}
.y61{bottom:15.900000px;}
.ybe{bottom:17.100000px;}
.yb4{bottom:18.300000px;}
.yaf{bottom:18.600000px;}
.yab{bottom:18.645000px;}
.yc4{bottom:27.300000px;}
.yb6{bottom:27.330000px;}
.yc0{bottom:27.345000px;}
.yb9{bottom:28.200000px;}
.ybd{bottom:32.700000px;}
.yb3{bottom:33.900000px;}
.yaa{bottom:33.945000px;}
.yae{bottom:34.200000px;}
.y5e{bottom:34.800000px;}
.ybc{bottom:48.000000px;}
.yb2{bottom:49.500000px;}
.yc2{bottom:49.800000px;}
.y4{bottom:56.437500px;}
.yff{bottom:80.737500px;}
.y121{bottom:86.137500px;}
.y196{bottom:86.737500px;}
.y132{bottom:89.737500px;}
.yf3{bottom:92.737500px;}
.y6a{bottom:97.537500px;}
.yfe{bottom:99.637500px;}
.y8a{bottom:102.937500px;}
.y120{bottom:105.037500px;}
.y110{bottom:106.837500px;}
.ya7{bottom:107.137500px;}
.y195{bottom:107.437500px;}
.y22{bottom:110.737500px;}
.y179{bottom:111.337500px;}
.yf2{bottom:111.637500px;}
.y48{bottom:114.037500px;}
.y69{bottom:116.437500px;}
.yfd{bottom:118.837500px;}
.y89{bottom:122.137500px;}
.y11f{bottom:123.937500px;}
.yd2{bottom:126.037500px;}
.y131{bottom:128.437500px;}
.yf1{bottom:130.837500px;}
.y194{bottom:131.437500px;}
.y21{bottom:132.937500px;}
.y68{bottom:135.337500px;}
.y152{bottom:136.237500px;}
.y10f{bottom:137.737500px;}
.ya6{bottom:138.037500px;}
.y88{bottom:141.075000px;}
.yd1{bottom:144.975000px;}
.y20{bottom:146.475000px;}
.yf0{bottom:149.775000px;}
.y171{bottom:150.375000px;}
.y47{bottom:151.875000px;}
.y67{bottom:154.275000px;}
.y11e{bottom:154.875000px;}
.y193{bottom:155.175000px;}
.y10e{bottom:156.675000px;}
.y151{bottom:158.175000px;}
.y178{bottom:159.075000px;}
.y87{bottom:159.975000px;}
.yd0{bottom:164.175000px;}
.y130{bottom:167.475000px;}
.y1f{bottom:168.675000px;}
.ya5{bottom:169.275000px;}
.y46{bottom:171.075000px;}
.y170{bottom:172.275000px;}
.y66{bottom:173.475000px;}
.y11d{bottom:174.075000px;}
.y10d{bottom:175.575000px;}
.y86{bottom:178.875000px;}
.y150{bottom:180.075000px;}
.y177{bottom:182.775000px;}
.ycf{bottom:183.075000px;}
.yef{bottom:187.575000px;}
.y1e{bottom:188.175000px;}
.y45{bottom:189.975000px;}
.y11c{bottom:192.975000px;}
.y16f{bottom:193.875000px;}
.y10c{bottom:194.775000px;}
.y85{bottom:198.075000px;}
.ya4{bottom:200.175000px;}
.y14f{bottom:201.975000px;}
.y192{bottom:202.875000px;}
.y65{bottom:204.675000px;}
.y12f{bottom:206.175000px;}
.yee{bottom:206.775000px;}
.y44{bottom:208.875000px;}
.y11b{bottom:211.875000px;}
.y10b{bottom:213.675000px;}
.yce{bottom:213.975000px;}
.y16e{bottom:216.675000px;}
.y84{bottom:216.975000px;}
.yfc{bottom:218.775000px;}
.y1d{bottom:220.875000px;}
.y14e{bottom:223.575000px;}
.y191{bottom:226.575000px;}
.y43{bottom:227.775000px;}
.y176{bottom:230.475000px;}
.y11a{bottom:230.775000px;}
.ya3{bottom:231.075000px;}
.ycd{bottom:232.875000px;}
.y83{bottom:235.875000px;}
.y64{bottom:237.375000px;}
.yed{bottom:237.675000px;}
.y16d{bottom:239.775000px;}
.y10a{bottom:244.575000px;}
.y12e{bottom:244.875000px;}
.y14d{bottom:245.475000px;}
.y42{bottom:246.975000px;}
.y119{bottom:249.975000px;}
.y190{bottom:250.275000px;}
.ycc{bottom:252.075000px;}
.y175{bottom:254.175000px;}
.yec{bottom:256.575000px;}
.y1c{bottom:256.875000px;}
.y16c{bottom:261.375000px;}
.ya2{bottom:261.975000px;}
.y109{bottom:263.475000px;}
.y41{bottom:265.875000px;}
.y82{bottom:267.075000px;}
.y14c{bottom:267.375000px;}
.y118{bottom:268.875000px;}
.y63{bottom:269.775000px;}
.ycb{bottom:270.975000px;}
.y18f{bottom:274.275000px;}
.yeb{bottom:275.520000px;}
.y174{bottom:278.220000px;}
.y108{bottom:282.720000px;}
.y16b{bottom:283.320000px;}
.y12d{bottom:283.920000px;}
.y40{bottom:284.820000px;}
.y62{bottom:285.720000px;}
.y117{bottom:287.820000px;}
.y14b{bottom:289.320000px;}
.yca{bottom:289.920000px;}
.y1b{bottom:292.620000px;}
.ya1{bottom:293.220000px;}
.yea{bottom:294.720000px;}
.y18e{bottom:298.020000px;}
.y81{bottom:299.520000px;}
.y107{bottom:301.620000px;}
.y173{bottom:301.920000px;}
.y3f{bottom:303.720000px;}
.y16a{bottom:305.220000px;}
.yc9{bottom:308.820000px;}
.y14a{bottom:310.920000px;}
.ye9{bottom:313.620000px;}
.y80{bottom:318.720000px;}
.y18d{bottom:321.720000px;}
.y12c{bottom:322.620000px;}
.y3e{bottom:322.920000px;}
.ya0{bottom:324.120000px;}
.y172{bottom:325.620000px;}
.y169{bottom:326.820000px;}
.y1a{bottom:328.620000px;}
.ye8{bottom:332.520000px;}
.y149{bottom:332.820000px;}
.y60{bottom:336.420000px;}
.y7f{bottom:337.620000px;}
.y116{bottom:337.920000px;}
.yc8{bottom:340.020000px;}
.y3d{bottom:341.820000px;}
.y18c{bottom:345.720000px;}
.y168{bottom:348.720000px;}
.ye7{bottom:351.420000px;}
.y148{bottom:354.720000px;}
.y9f{bottom:355.020000px;}
.y7e{bottom:356.520000px;}
.y115{bottom:356.820000px;}
.y3c{bottom:360.720000px;}
.y12b{bottom:361.320000px;}
.y19{bottom:364.320000px;}
.y5f{bottom:368.220000px;}
.y18b{bottom:369.420000px;}
.ye6{bottom:370.620000px;}
.yc7{bottom:370.920000px;}
.y9e{bottom:373.920000px;}
.y7d{bottom:375.420000px;}
.y114{bottom:375.720000px;}
.y147{bottom:376.320000px;}
.y3b{bottom:379.620000px;}
.ye5{bottom:389.520000px;}
.y167{bottom:392.520000px;}
.y9d{bottom:393.120000px;}
.y7c{bottom:394.620000px;}
.y146{bottom:398.220000px;}
.y3a{bottom:398.820000px;}
.y12a{bottom:400.320000px;}
.yc6{bottom:401.820000px;}
.y18{bottom:404.520000px;}
.ye4{bottom:408.420000px;}
.y9c{bottom:412.050000px;}
.y7b{bottom:413.550000px;}
.y113{bottom:413.850000px;}
.y166{bottom:414.150000px;}
.y18a{bottom:417.150000px;}
.y39{bottom:417.750000px;}
.yc3{bottom:418.050000px;}
.y5d{bottom:418.950000px;}
.y145{bottom:420.150000px;}
.ye3{bottom:427.350000px;}
.y9b{bottom:430.950000px;}
.y7a{bottom:432.450000px;}
.y112{bottom:432.750000px;}
.y165{bottom:436.050000px;}
.y38{bottom:436.650000px;}
.y17{bottom:439.350000px;}
.y189{bottom:440.850000px;}
.y144{bottom:442.050000px;}
.ye2{bottom:446.550000px;}
.y9a{bottom:449.850000px;}
.y79{bottom:451.350000px;}
.y129{bottom:451.650000px;}
.y37{bottom:455.550000px;}
.y164{bottom:457.950000px;}
.yc1{bottom:458.550000px;}
.y143{bottom:463.650000px;}
.y111{bottom:463.950000px;}
.y188{bottom:464.550000px;}
.y99{bottom:469.050000px;}
.y5b{bottom:469.650000px;}
.y78{bottom:470.550000px;}
.y36{bottom:474.750000px;}
.ye1{bottom:477.450000px;}
.y163{bottom:479.850000px;}
.y16{bottom:481.050000px;}
.y142{bottom:485.550000px;}
.y98{bottom:487.950000px;}
.y187{bottom:488.550000px;}
.y77{bottom:489.450000px;}
.y128{bottom:489.750000px;}
.yfb{bottom:491.250000px;}
.y35{bottom:493.650000px;}
.ye0{bottom:496.350000px;}
.y162{bottom:501.450000px;}
.y15{bottom:505.050000px;}
.y97{bottom:506.850000px;}
.y141{bottom:507.450000px;}
.y76{bottom:508.350000px;}
.y127{bottom:508.650000px;}
.yfa{bottom:510.150000px;}
.y186{bottom:512.250000px;}
.y34{bottom:512.550000px;}
.ydf{bottom:515.250000px;}
.y5a{bottom:516.450000px;}
.ybf{bottom:521.550000px;}
.y161{bottom:523.350000px;}
.y96{bottom:525.750000px;}
.y75{bottom:527.250000px;}
.yf9{bottom:529.050000px;}
.y140{bottom:529.350000px;}
.y33{bottom:531.450000px;}
.yde{bottom:534.450000px;}
.y185{bottom:535.950000px;}
.y126{bottom:539.850000px;}
.y95{bottom:544.950000px;}
.y160{bottom:545.250000px;}
.y59{bottom:546.495000px;}
.y14{bottom:546.795000px;}
.yf8{bottom:547.995000px;}
.y32{bottom:550.395000px;}
.y13f{bottom:551.895000px;}
.ydd{bottom:553.395000px;}
.y184{bottom:559.995000px;}
.ybb{bottom:562.395000px;}
.y94{bottom:563.895000px;}
.y58{bottom:565.395000px;}
.yf7{bottom:567.195000px;}
.y31{bottom:569.595000px;}
.y106{bottom:572.295000px;}
.y13e{bottom:574.995000px;}
.y93{bottom:582.795000px;}
.y183{bottom:583.695000px;}
.y57{bottom:584.295000px;}
.ydc{bottom:584.595000px;}
.yf6{bottom:586.095000px;}
.y13{bottom:586.695000px;}
.y30{bottom:588.495000px;}
.y15f{bottom:588.795000px;}
.y105{bottom:591.195000px;}
.y13d{bottom:596.595000px;}
.y56{bottom:603.195000px;}
.yf5{bottom:604.995000px;}
.y2f{bottom:607.395000px;}
.y104{bottom:610.395000px;}
.y15e{bottom:610.695000px;}
.y92{bottom:613.995000px;}
.ydb{bottom:616.995000px;}
.y13c{bottom:618.495000px;}
.y55{bottom:622.395000px;}
.yb8{bottom:623.895000px;}
.y2e{bottom:626.295000px;}
.y12{bottom:628.995000px;}
.y103{bottom:629.295000px;}
.y182{bottom:631.395000px;}
.y15d{bottom:632.595000px;}
.yda{bottom:635.895000px;}
.y13b{bottom:640.395000px;}
.y54{bottom:641.295000px;}
.y2d{bottom:645.495000px;}
.y91{bottom:646.395000px;}
.y11{bottom:647.895000px;}
.y102{bottom:648.195000px;}
.y15c{bottom:654.195000px;}
.yd9{bottom:655.095000px;}
.y53{bottom:660.195000px;}
.y13a{bottom:662.295000px;}
.y2c{bottom:664.395000px;}
.yb5{bottom:665.295000px;}
.y90{bottom:665.595000px;}
.y10{bottom:667.095000px;}
.yd8{bottom:673.995000px;}
.y15b{bottom:676.095000px;}
.y181{bottom:678.795000px;}
.y74{bottom:679.095000px;}
.y2b{bottom:683.325000px;}
.y139{bottom:683.925000px;}
.y8f{bottom:684.525000px;}
.yf{bottom:686.325000px;}
.y52{bottom:691.125000px;}
.yd7{bottom:692.925000px;}
.y15a{bottom:698.025000px;}
.y73{bottom:698.325000px;}
.y2a{bottom:702.225000px;}
.y180{bottom:702.825000px;}
.y8e{bottom:703.425000px;}
.y138{bottom:705.825000px;}
.yb1{bottom:706.125000px;}
.ye{bottom:707.025000px;}
.y51{bottom:710.325000px;}
.yd6{bottom:711.825000px;}
.y72{bottom:717.225000px;}
.y159{bottom:719.925000px;}
.y29{bottom:721.425000px;}
.y8d{bottom:722.325000px;}
.y17f{bottom:726.525000px;}
.yd{bottom:727.725000px;}
.y50{bottom:729.225000px;}
.yd5{bottom:731.025000px;}
.y71{bottom:736.125000px;}
.y28{bottom:740.325000px;}
.y8c{bottom:741.525000px;}
.y4f{bottom:748.125000px;}
.yc{bottom:748.425000px;}
.y137{bottom:749.325000px;}
.yd4{bottom:749.925000px;}
.y17e{bottom:750.225000px;}
.y70{bottom:755.025000px;}
.y27{bottom:759.225000px;}
.y158{bottom:763.425000px;}
.y4e{bottom:767.025000px;}
.yad{bottom:768.825000px;}
.yb{bottom:769.125000px;}
.y136{bottom:771.225000px;}
.y8b{bottom:772.725000px;}
.y125{bottom:774.225000px;}
.y26{bottom:778.125000px;}
.y157{bottom:785.325000px;}
.y4d{bottom:786.225000px;}
.yd3{bottom:787.725000px;}
.ya{bottom:789.825000px;}
.y124{bottom:793.125000px;}
.y25{bottom:797.325000px;}
.y17d{bottom:797.925000px;}
.yf4{bottom:799.725000px;}
.y4c{bottom:805.125000px;}
.y101{bottom:806.925000px;}
.y156{bottom:807.225000px;}
.y9{bottom:810.525000px;}
.y123{bottom:812.025000px;}
.y135{bottom:815.025000px;}
.y24{bottom:816.225000px;}
.y6f{bottom:818.970000px;}
.y17c{bottom:821.670000px;}
.y4b{bottom:824.070000px;}
.y100{bottom:825.870000px;}
.y155{bottom:828.870000px;}
.y8{bottom:831.270000px;}
.y23{bottom:835.170000px;}
.y134{bottom:836.670000px;}
.y6e{bottom:837.870000px;}
.y4a{bottom:842.970000px;}
.y122{bottom:843.270000px;}
.y17b{bottom:845.670000px;}
.y154{bottom:850.770000px;}
.y7{bottom:851.970000px;}
.y6d{bottom:856.770000px;}
.y133{bottom:858.570000px;}
.y49{bottom:862.170000px;}
.y17a{bottom:869.370000px;}
.y6{bottom:872.670000px;}
.y6c{bottom:875.670000px;}
.ya9{bottom:878.670000px;}
.y5{bottom:893.370000px;}
.y153{bottom:894.570000px;}
.y6b{bottom:894.870000px;}
.ya8{bottom:896.370000px;}
.y3{bottom:914.670000px;}
.y2{bottom:934.770000px;}
.y1{bottom:953.100000px;}
.he{height:30.900000px;}
.h11{height:31.200000px;}
.ha{height:35.332031px;}
.h1a{height:39.900000px;}
.h17{height:39.937500px;}
.h18{height:40.485000px;}
.h15{height:46.500000px;}
.h13{height:46.537500px;}
.h9{height:47.109375px;}
.h14{height:48.410156px;}
.h2{height:49.570312px;}
.hf{height:50.100000px;}
.h10{height:50.137500px;}
.hb{height:52.998047px;}
.h3{height:58.886719px;}
.hc{height:59.167969px;}
.hd{height:60.468750px;}
.h19{height:60.600000px;}
.h1d{height:61.171875px;}
.h16{height:62.100000px;}
.h1e{height:64.546875px;}
.h5{height:64.775391px;}
.h1c{height:66.515625px;}
.h1b{height:68.707031px;}
.h8{height:70.664062px;}
.h4{height:72.562500px;}
.h7{height:74.709375px;}
.h12{height:74.953125px;}
.h6{height:84.656250px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w9{width:56.737500px;}
.w5{width:61.200000px;}
.w7{width:72.337500px;}
.w4{width:73.837500px;}
.w6{width:81.337500px;}
.w8{width:88.237500px;}
.wa{width:95.737500px;}
.w3{width:534.225000px;}
.w1{width:680.250000px;}
.w2{width:680.399990px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.xd{left:7.500000px;}
.xc{left:69.037500px;}
.x1{left:76.537490px;}
.xb{left:119.137490px;}
.xa{left:129.637490px;}
.xe{left:143.475000px;}
.x4{left:153.974990px;}
.x8{left:155.474990px;}
.xf{left:205.575000px;}
.x5{left:232.619990px;}
.x6{left:240.119990px;}
.x3{left:283.004990px;}
.x10{left:287.820000px;}
.x7{left:335.849990px;}
.x11{left:361.050000px;}
.x9{left:441.194990px;}
.x12{left:449.895000px;}
.x13{left:507.525000px;}
.x2{left:595.469990px;}
@media print{
.v4{vertical-align:-78.933333pt;}
.v5{vertical-align:-75.733333pt;}
.v1{vertical-align:-67.200000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.533333pt;}
.ls1b{letter-spacing:-1.402667pt;}
.ls21{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.309333pt;}
.ls10{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000003pt;}
.lsf{letter-spacing:0.021333pt;}
.ls22{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.224000pt;}
.ls18{letter-spacing:0.266667pt;}
.ls1c{letter-spacing:0.309333pt;}
.ls11{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.522667pt;}
.ls7{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.lsb{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:3.413333pt;}
.ls17{letter-spacing:3.466667pt;}
.lsd{letter-spacing:5.600000pt;}
.ls14{letter-spacing:8.800000pt;}
.ls12{letter-spacing:10.933333pt;}
.ls8{letter-spacing:12.000000pt;}
.ls13{letter-spacing:16.426667pt;}
.ls0{letter-spacing:18.880000pt;}
.ls6{letter-spacing:22.826667pt;}
.ls1{letter-spacing:907.333333pt;}
.ls4{letter-spacing:1642.960000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws16{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.200000pt;}
.ws14{word-spacing:-15.136000pt;}
.wsf{word-spacing:-15.114667pt;}
.wse{word-spacing:-15.002667pt;}
.ws13{word-spacing:-14.976000pt;}
.ws15{word-spacing:-14.933333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws10{word-spacing:-14.357333pt;}
.ws7{word-spacing:-14.330667pt;}
.ws11{word-spacing:-14.133333pt;}
.ws12{word-spacing:-13.264000pt;}
.ws9{word-spacing:-12.533333pt;}
.wsa{word-spacing:-12.522667pt;}
.wsb{word-spacing:-12.480000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.978667pt;}
.ws0{word-spacing:-11.680000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._36{margin-left:-2.410667pt;}
._2{margin-left:-1.440000pt;}
._1{width:1.226667pt;}
._3{width:2.528000pt;}
._1c{width:3.669333pt;}
._d{width:4.746667pt;}
._b{width:5.765333pt;}
._a{width:6.661333pt;}
._c{width:8.218667pt;}
._e{width:9.600000pt;}
._1d{width:10.528000pt;}
._17{width:11.418667pt;}
._7{width:12.352000pt;}
._18{width:13.285333pt;}
._27{width:14.346667pt;}
._13{width:15.898667pt;}
._19{width:17.594667pt;}
._0{width:18.826667pt;}
._16{width:19.776000pt;}
._12{width:21.290667pt;}
._11{width:22.234667pt;}
._25{width:23.258667pt;}
._2c{width:24.442667pt;}
._23{width:25.770667pt;}
._10{width:26.752000pt;}
._f{width:27.664000pt;}
._2e{width:28.608000pt;}
._1a{width:29.584000pt;}
._1b{width:30.490667pt;}
._9{width:31.514667pt;}
._8{width:32.416000pt;}
._24{width:34.005333pt;}
._37{width:34.965333pt;}
._26{width:35.978667pt;}
._2d{width:36.890667pt;}
._14{width:37.781333pt;}
._15{width:38.682667pt;}
._4{width:40.437333pt;}
._5{width:41.381333pt;}
._39{width:42.970667pt;}
._38{width:43.872000pt;}
._1e{width:44.997333pt;}
._3a{width:46.613333pt;}
._2a{width:48.378667pt;}
._35{width:49.472000pt;}
._33{width:54.688000pt;}
._29{width:55.632000pt;}
._2b{width:60.485333pt;}
._2f{width:61.792000pt;}
._21{width:63.514667pt;}
._22{width:64.730667pt;}
._1f{width:66.101333pt;}
._20{width:67.621333pt;}
._28{width:68.544000pt;}
._34{width:85.322667pt;}
._32{width:86.960000pt;}
._31{width:88.234667pt;}
._30{width:89.616000pt;}
._3c{width:111.936000pt;}
._3b{width:113.045333pt;}
._6{width:705.541333pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:2.666667pt;}
.yac{bottom:2.706667pt;}
.yc5{bottom:10.400000pt;}
.yb7{bottom:10.666667pt;}
.yba{bottom:11.200000pt;}
.y5c{bottom:13.866667pt;}
.y61{bottom:14.133333pt;}
.ybe{bottom:15.200000pt;}
.yb4{bottom:16.266667pt;}
.yaf{bottom:16.533333pt;}
.yab{bottom:16.573333pt;}
.yc4{bottom:24.266667pt;}
.yb6{bottom:24.293333pt;}
.yc0{bottom:24.306667pt;}
.yb9{bottom:25.066667pt;}
.ybd{bottom:29.066667pt;}
.yb3{bottom:30.133333pt;}
.yaa{bottom:30.173333pt;}
.yae{bottom:30.400000pt;}
.y5e{bottom:30.933333pt;}
.ybc{bottom:42.666667pt;}
.yb2{bottom:44.000000pt;}
.yc2{bottom:44.266667pt;}
.y4{bottom:50.166667pt;}
.yff{bottom:71.766667pt;}
.y121{bottom:76.566667pt;}
.y196{bottom:77.100000pt;}
.y132{bottom:79.766667pt;}
.yf3{bottom:82.433333pt;}
.y6a{bottom:86.700000pt;}
.yfe{bottom:88.566667pt;}
.y8a{bottom:91.500000pt;}
.y120{bottom:93.366667pt;}
.y110{bottom:94.966667pt;}
.ya7{bottom:95.233333pt;}
.y195{bottom:95.500000pt;}
.y22{bottom:98.433333pt;}
.y179{bottom:98.966667pt;}
.yf2{bottom:99.233333pt;}
.y48{bottom:101.366667pt;}
.y69{bottom:103.500000pt;}
.yfd{bottom:105.633333pt;}
.y89{bottom:108.566667pt;}
.y11f{bottom:110.166667pt;}
.yd2{bottom:112.033333pt;}
.y131{bottom:114.166667pt;}
.yf1{bottom:116.300000pt;}
.y194{bottom:116.833333pt;}
.y21{bottom:118.166667pt;}
.y68{bottom:120.300000pt;}
.y152{bottom:121.100000pt;}
.y10f{bottom:122.433333pt;}
.ya6{bottom:122.700000pt;}
.y88{bottom:125.400000pt;}
.yd1{bottom:128.866667pt;}
.y20{bottom:130.200000pt;}
.yf0{bottom:133.133333pt;}
.y171{bottom:133.666667pt;}
.y47{bottom:135.000000pt;}
.y67{bottom:137.133333pt;}
.y11e{bottom:137.666667pt;}
.y193{bottom:137.933333pt;}
.y10e{bottom:139.266667pt;}
.y151{bottom:140.600000pt;}
.y178{bottom:141.400000pt;}
.y87{bottom:142.200000pt;}
.yd0{bottom:145.933333pt;}
.y130{bottom:148.866667pt;}
.y1f{bottom:149.933333pt;}
.ya5{bottom:150.466667pt;}
.y46{bottom:152.066667pt;}
.y170{bottom:153.133333pt;}
.y66{bottom:154.200000pt;}
.y11d{bottom:154.733333pt;}
.y10d{bottom:156.066667pt;}
.y86{bottom:159.000000pt;}
.y150{bottom:160.066667pt;}
.y177{bottom:162.466667pt;}
.ycf{bottom:162.733333pt;}
.yef{bottom:166.733333pt;}
.y1e{bottom:167.266667pt;}
.y45{bottom:168.866667pt;}
.y11c{bottom:171.533333pt;}
.y16f{bottom:172.333333pt;}
.y10c{bottom:173.133333pt;}
.y85{bottom:176.066667pt;}
.ya4{bottom:177.933333pt;}
.y14f{bottom:179.533333pt;}
.y192{bottom:180.333333pt;}
.y65{bottom:181.933333pt;}
.y12f{bottom:183.266667pt;}
.yee{bottom:183.800000pt;}
.y44{bottom:185.666667pt;}
.y11b{bottom:188.333333pt;}
.y10b{bottom:189.933333pt;}
.yce{bottom:190.200000pt;}
.y16e{bottom:192.600000pt;}
.y84{bottom:192.866667pt;}
.yfc{bottom:194.466667pt;}
.y1d{bottom:196.333333pt;}
.y14e{bottom:198.733333pt;}
.y191{bottom:201.400000pt;}
.y43{bottom:202.466667pt;}
.y176{bottom:204.866667pt;}
.y11a{bottom:205.133333pt;}
.ya3{bottom:205.400000pt;}
.ycd{bottom:207.000000pt;}
.y83{bottom:209.666667pt;}
.y64{bottom:211.000000pt;}
.yed{bottom:211.266667pt;}
.y16d{bottom:213.133333pt;}
.y10a{bottom:217.400000pt;}
.y12e{bottom:217.666667pt;}
.y14d{bottom:218.200000pt;}
.y42{bottom:219.533333pt;}
.y119{bottom:222.200000pt;}
.y190{bottom:222.466667pt;}
.ycc{bottom:224.066667pt;}
.y175{bottom:225.933333pt;}
.yec{bottom:228.066667pt;}
.y1c{bottom:228.333333pt;}
.y16c{bottom:232.333333pt;}
.ya2{bottom:232.866667pt;}
.y109{bottom:234.200000pt;}
.y41{bottom:236.333333pt;}
.y82{bottom:237.400000pt;}
.y14c{bottom:237.666667pt;}
.y118{bottom:239.000000pt;}
.y63{bottom:239.800000pt;}
.ycb{bottom:240.866667pt;}
.y18f{bottom:243.800000pt;}
.yeb{bottom:244.906667pt;}
.y174{bottom:247.306667pt;}
.y108{bottom:251.306667pt;}
.y16b{bottom:251.840000pt;}
.y12d{bottom:252.373333pt;}
.y40{bottom:253.173333pt;}
.y62{bottom:253.973333pt;}
.y117{bottom:255.840000pt;}
.y14b{bottom:257.173333pt;}
.yca{bottom:257.706667pt;}
.y1b{bottom:260.106667pt;}
.ya1{bottom:260.640000pt;}
.yea{bottom:261.973333pt;}
.y18e{bottom:264.906667pt;}
.y81{bottom:266.240000pt;}
.y107{bottom:268.106667pt;}
.y173{bottom:268.373333pt;}
.y3f{bottom:269.973333pt;}
.y16a{bottom:271.306667pt;}
.yc9{bottom:274.506667pt;}
.y14a{bottom:276.373333pt;}
.ye9{bottom:278.773333pt;}
.y80{bottom:283.306667pt;}
.y18d{bottom:285.973333pt;}
.y12c{bottom:286.773333pt;}
.y3e{bottom:287.040000pt;}
.ya0{bottom:288.106667pt;}
.y172{bottom:289.440000pt;}
.y169{bottom:290.506667pt;}
.y1a{bottom:292.106667pt;}
.ye8{bottom:295.573333pt;}
.y149{bottom:295.840000pt;}
.y60{bottom:299.040000pt;}
.y7f{bottom:300.106667pt;}
.y116{bottom:300.373333pt;}
.yc8{bottom:302.240000pt;}
.y3d{bottom:303.840000pt;}
.y18c{bottom:307.306667pt;}
.y168{bottom:309.973333pt;}
.ye7{bottom:312.373333pt;}
.y148{bottom:315.306667pt;}
.y9f{bottom:315.573333pt;}
.y7e{bottom:316.906667pt;}
.y115{bottom:317.173333pt;}
.y3c{bottom:320.640000pt;}
.y12b{bottom:321.173333pt;}
.y19{bottom:323.840000pt;}
.y5f{bottom:327.306667pt;}
.y18b{bottom:328.373333pt;}
.ye6{bottom:329.440000pt;}
.yc7{bottom:329.706667pt;}
.y9e{bottom:332.373333pt;}
.y7d{bottom:333.706667pt;}
.y114{bottom:333.973333pt;}
.y147{bottom:334.506667pt;}
.y3b{bottom:337.440000pt;}
.ye5{bottom:346.240000pt;}
.y167{bottom:348.906667pt;}
.y9d{bottom:349.440000pt;}
.y7c{bottom:350.773333pt;}
.y146{bottom:353.973333pt;}
.y3a{bottom:354.506667pt;}
.y12a{bottom:355.840000pt;}
.yc6{bottom:357.173333pt;}
.y18{bottom:359.573333pt;}
.ye4{bottom:363.040000pt;}
.y9c{bottom:366.266667pt;}
.y7b{bottom:367.600000pt;}
.y113{bottom:367.866667pt;}
.y166{bottom:368.133333pt;}
.y18a{bottom:370.800000pt;}
.y39{bottom:371.333333pt;}
.yc3{bottom:371.600000pt;}
.y5d{bottom:372.400000pt;}
.y145{bottom:373.466667pt;}
.ye3{bottom:379.866667pt;}
.y9b{bottom:383.066667pt;}
.y7a{bottom:384.400000pt;}
.y112{bottom:384.666667pt;}
.y165{bottom:387.600000pt;}
.y38{bottom:388.133333pt;}
.y17{bottom:390.533333pt;}
.y189{bottom:391.866667pt;}
.y144{bottom:392.933333pt;}
.ye2{bottom:396.933333pt;}
.y9a{bottom:399.866667pt;}
.y79{bottom:401.200000pt;}
.y129{bottom:401.466667pt;}
.y37{bottom:404.933333pt;}
.y164{bottom:407.066667pt;}
.yc1{bottom:407.600000pt;}
.y143{bottom:412.133333pt;}
.y111{bottom:412.400000pt;}
.y188{bottom:412.933333pt;}
.y99{bottom:416.933333pt;}
.y5b{bottom:417.466667pt;}
.y78{bottom:418.266667pt;}
.y36{bottom:422.000000pt;}
.ye1{bottom:424.400000pt;}
.y163{bottom:426.533333pt;}
.y16{bottom:427.600000pt;}
.y142{bottom:431.600000pt;}
.y98{bottom:433.733333pt;}
.y187{bottom:434.266667pt;}
.y77{bottom:435.066667pt;}
.y128{bottom:435.333333pt;}
.yfb{bottom:436.666667pt;}
.y35{bottom:438.800000pt;}
.ye0{bottom:441.200000pt;}
.y162{bottom:445.733333pt;}
.y15{bottom:448.933333pt;}
.y97{bottom:450.533333pt;}
.y141{bottom:451.066667pt;}
.y76{bottom:451.866667pt;}
.y127{bottom:452.133333pt;}
.yfa{bottom:453.466667pt;}
.y186{bottom:455.333333pt;}
.y34{bottom:455.600000pt;}
.ydf{bottom:458.000000pt;}
.y5a{bottom:459.066667pt;}
.ybf{bottom:463.600000pt;}
.y161{bottom:465.200000pt;}
.y96{bottom:467.333333pt;}
.y75{bottom:468.666667pt;}
.yf9{bottom:470.266667pt;}
.y140{bottom:470.533333pt;}
.y33{bottom:472.400000pt;}
.yde{bottom:475.066667pt;}
.y185{bottom:476.400000pt;}
.y126{bottom:479.866667pt;}
.y95{bottom:484.400000pt;}
.y160{bottom:484.666667pt;}
.y59{bottom:485.773333pt;}
.y14{bottom:486.040000pt;}
.yf8{bottom:487.106667pt;}
.y32{bottom:489.240000pt;}
.y13f{bottom:490.573333pt;}
.ydd{bottom:491.906667pt;}
.y184{bottom:497.773333pt;}
.ybb{bottom:499.906667pt;}
.y94{bottom:501.240000pt;}
.y58{bottom:502.573333pt;}
.yf7{bottom:504.173333pt;}
.y31{bottom:506.306667pt;}
.y106{bottom:508.706667pt;}
.y13e{bottom:511.106667pt;}
.y93{bottom:518.040000pt;}
.y183{bottom:518.840000pt;}
.y57{bottom:519.373333pt;}
.ydc{bottom:519.640000pt;}
.yf6{bottom:520.973333pt;}
.y13{bottom:521.506667pt;}
.y30{bottom:523.106667pt;}
.y15f{bottom:523.373333pt;}
.y105{bottom:525.506667pt;}
.y13d{bottom:530.306667pt;}
.y56{bottom:536.173333pt;}
.yf5{bottom:537.773333pt;}
.y2f{bottom:539.906667pt;}
.y104{bottom:542.573333pt;}
.y15e{bottom:542.840000pt;}
.y92{bottom:545.773333pt;}
.ydb{bottom:548.440000pt;}
.y13c{bottom:549.773333pt;}
.y55{bottom:553.240000pt;}
.yb8{bottom:554.573333pt;}
.y2e{bottom:556.706667pt;}
.y12{bottom:559.106667pt;}
.y103{bottom:559.373333pt;}
.y182{bottom:561.240000pt;}
.y15d{bottom:562.306667pt;}
.yda{bottom:565.240000pt;}
.y13b{bottom:569.240000pt;}
.y54{bottom:570.040000pt;}
.y2d{bottom:573.773333pt;}
.y91{bottom:574.573333pt;}
.y11{bottom:575.906667pt;}
.y102{bottom:576.173333pt;}
.y15c{bottom:581.506667pt;}
.yd9{bottom:582.306667pt;}
.y53{bottom:586.840000pt;}
.y13a{bottom:588.706667pt;}
.y2c{bottom:590.573333pt;}
.yb5{bottom:591.373333pt;}
.y90{bottom:591.640000pt;}
.y10{bottom:592.973333pt;}
.yd8{bottom:599.106667pt;}
.y15b{bottom:600.973333pt;}
.y181{bottom:603.373333pt;}
.y74{bottom:603.640000pt;}
.y2b{bottom:607.400000pt;}
.y139{bottom:607.933333pt;}
.y8f{bottom:608.466667pt;}
.yf{bottom:610.066667pt;}
.y52{bottom:614.333333pt;}
.yd7{bottom:615.933333pt;}
.y15a{bottom:620.466667pt;}
.y73{bottom:620.733333pt;}
.y2a{bottom:624.200000pt;}
.y180{bottom:624.733333pt;}
.y8e{bottom:625.266667pt;}
.y138{bottom:627.400000pt;}
.yb1{bottom:627.666667pt;}
.ye{bottom:628.466667pt;}
.y51{bottom:631.400000pt;}
.yd6{bottom:632.733333pt;}
.y72{bottom:637.533333pt;}
.y159{bottom:639.933333pt;}
.y29{bottom:641.266667pt;}
.y8d{bottom:642.066667pt;}
.y17f{bottom:645.800000pt;}
.yd{bottom:646.866667pt;}
.y50{bottom:648.200000pt;}
.yd5{bottom:649.800000pt;}
.y71{bottom:654.333333pt;}
.y28{bottom:658.066667pt;}
.y8c{bottom:659.133333pt;}
.y4f{bottom:665.000000pt;}
.yc{bottom:665.266667pt;}
.y137{bottom:666.066667pt;}
.yd4{bottom:666.600000pt;}
.y17e{bottom:666.866667pt;}
.y70{bottom:671.133333pt;}
.y27{bottom:674.866667pt;}
.y158{bottom:678.600000pt;}
.y4e{bottom:681.800000pt;}
.yad{bottom:683.400000pt;}
.yb{bottom:683.666667pt;}
.y136{bottom:685.533333pt;}
.y8b{bottom:686.866667pt;}
.y125{bottom:688.200000pt;}
.y26{bottom:691.666667pt;}
.y157{bottom:698.066667pt;}
.y4d{bottom:698.866667pt;}
.yd3{bottom:700.200000pt;}
.ya{bottom:702.066667pt;}
.y124{bottom:705.000000pt;}
.y25{bottom:708.733333pt;}
.y17d{bottom:709.266667pt;}
.yf4{bottom:710.866667pt;}
.y4c{bottom:715.666667pt;}
.y101{bottom:717.266667pt;}
.y156{bottom:717.533333pt;}
.y9{bottom:720.466667pt;}
.y123{bottom:721.800000pt;}
.y135{bottom:724.466667pt;}
.y24{bottom:725.533333pt;}
.y6f{bottom:727.973333pt;}
.y17c{bottom:730.373333pt;}
.y4b{bottom:732.506667pt;}
.y100{bottom:734.106667pt;}
.y155{bottom:736.773333pt;}
.y8{bottom:738.906667pt;}
.y23{bottom:742.373333pt;}
.y134{bottom:743.706667pt;}
.y6e{bottom:744.773333pt;}
.y4a{bottom:749.306667pt;}
.y122{bottom:749.573333pt;}
.y17b{bottom:751.706667pt;}
.y154{bottom:756.240000pt;}
.y7{bottom:757.306667pt;}
.y6d{bottom:761.573333pt;}
.y133{bottom:763.173333pt;}
.y49{bottom:766.373333pt;}
.y17a{bottom:772.773333pt;}
.y6{bottom:775.706667pt;}
.y6c{bottom:778.373333pt;}
.ya9{bottom:781.040000pt;}
.y5{bottom:794.106667pt;}
.y153{bottom:795.173333pt;}
.y6b{bottom:795.440000pt;}
.ya8{bottom:796.773333pt;}
.y3{bottom:813.040000pt;}
.y2{bottom:830.906667pt;}
.y1{bottom:847.200000pt;}
.he{height:27.466667pt;}
.h11{height:27.733333pt;}
.ha{height:31.406250pt;}
.h1a{height:35.466667pt;}
.h17{height:35.500000pt;}
.h18{height:35.986667pt;}
.h15{height:41.333333pt;}
.h13{height:41.366667pt;}
.h9{height:41.875000pt;}
.h14{height:43.031250pt;}
.h2{height:44.062500pt;}
.hf{height:44.533333pt;}
.h10{height:44.566667pt;}
.hb{height:47.109375pt;}
.h3{height:52.343750pt;}
.hc{height:52.593750pt;}
.hd{height:53.750000pt;}
.h19{height:53.866667pt;}
.h1d{height:54.375000pt;}
.h16{height:55.200000pt;}
.h1e{height:57.375000pt;}
.h5{height:57.578125pt;}
.h1c{height:59.125000pt;}
.h1b{height:61.072917pt;}
.h8{height:62.812500pt;}
.h4{height:64.500000pt;}
.h7{height:66.408333pt;}
.h12{height:66.625000pt;}
.h6{height:75.250000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w9{width:50.433333pt;}
.w5{width:54.400000pt;}
.w7{width:64.300000pt;}
.w4{width:65.633333pt;}
.w6{width:72.300000pt;}
.w8{width:78.433333pt;}
.wa{width:85.100000pt;}
.w3{width:474.866667pt;}
.w1{width:604.666667pt;}
.w2{width:604.799991pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.xd{left:6.666667pt;}
.xc{left:61.366667pt;}
.x1{left:68.033324pt;}
.xb{left:105.899991pt;}
.xa{left:115.233324pt;}
.xe{left:127.533333pt;}
.x4{left:136.866658pt;}
.x8{left:138.199991pt;}
.xf{left:182.733333pt;}
.x5{left:206.773324pt;}
.x6{left:213.439991pt;}
.x3{left:251.559991pt;}
.x10{left:255.840000pt;}
.x7{left:298.533324pt;}
.x11{left:320.933333pt;}
.x9{left:392.173324pt;}
.x12{left:399.906667pt;}
.x13{left:451.133333pt;}
.x2{left:529.306658pt;}
}




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