
    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_5576066547d63eed182ec01a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3801bd850c3d69897370c3e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce6fc142184cdebdb5f20529.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a6b2cee874fcc3002b6ae03e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7aaaa8d664f0b4defda3ab74.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_13b535708fc0fbf55dd391ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5a9bb9f08dac8022bb938c87.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-69.120000px;}
.v8{vertical-align:-61.920000px;}
.v7{vertical-align:-23.760000px;}
.v6{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.lse{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.226200px;}
.ls14{letter-spacing:-0.223800px;}
.ls17{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.138000px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.ls9{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls13{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.792000px;}
.lsf{letter-spacing:4.500000px;}
.ls15{letter-spacing:91.440000px;}
.ls5{letter-spacing:93.060000px;}
.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:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws12{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.479800px;}
.ws17{word-spacing:-14.112000px;}
.ws0{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.824000px;}
.ws7{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.241200px;}
.ws11{word-spacing:-11.836200px;}
.ws6{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws18{word-spacing:-9.792000px;}
.ws13{word-spacing:-9.000000px;}
.ws15{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
._16{margin-left:-6.740640px;}
._17{margin-left:-4.914000px;}
._18{margin-left:-3.878400px;}
._13{margin-left:-2.245440px;}
._1{margin-left:-1.197600px;}
._0{width:1.419840px;}
._2{width:2.589120px;}
._3{width:4.260000px;}
._7{width:5.498880px;}
._5{width:6.552000px;}
._d{width:7.950720px;}
._9{width:9.234000px;}
._8{width:10.260000px;}
._e{width:11.394000px;}
._10{width:12.504960px;}
._11{width:13.687440px;}
._1a{width:14.796000px;}
._12{width:16.666320px;}
._b{width:17.874000px;}
._a{width:18.954000px;}
._c{width:20.320320px;}
._14{width:22.111200px;}
._15{width:23.448480px;}
._1c{width:32.739600px;}
._1b{width:33.858000px;}
._1e{width:47.874000px;}
._1d{width:54.918000px;}
._6{width:64.429680px;}
._19{width:76.086000px;}
._f{width:1834.296000px;}
._4{width:2067.004320px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fse{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsf{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:2.880000px;}
.ye5{bottom:3.060000px;}
.yd9{bottom:3.240000px;}
.ydb{bottom:3.420000px;}
.y44{bottom:4.320000px;}
.yc3{bottom:4.680000px;}
.yc2{bottom:5.040000px;}
.yc5{bottom:5.400000px;}
.y27{bottom:5.580000px;}
.y8a{bottom:5.940000px;}
.y86{bottom:6.120000px;}
.y88{bottom:6.660000px;}
.ya6{bottom:7.920000px;}
.yae{bottom:8.265000px;}
.yac{bottom:8.280000px;}
.ya8{bottom:8.460000px;}
.yb0{bottom:8.985000px;}
.yaa{bottom:9.000000px;}
.yb5{bottom:9.345000px;}
.yb7{bottom:10.785000px;}
.y84{bottom:11.160000px;}
.yb9{bottom:11.685000px;}
.y43{bottom:18.180000px;}
.y48{bottom:18.900000px;}
.y81{bottom:19.260000px;}
.y26{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.y25{bottom:29.340000px;}
.y2{bottom:33.840000px;}
.y1{bottom:46.620000px;}
.y24{bottom:47.160000px;}
.y23{bottom:65.160000px;}
.y186{bottom:77.040000px;}
.ybf{bottom:77.760000px;}
.y151{bottom:78.480000px;}
.yea{bottom:79.560000px;}
.y7d{bottom:81.720000px;}
.y22{bottom:83.010000px;}
.y41{bottom:85.320000px;}
.y185{bottom:92.700000px;}
.y150{bottom:93.960000px;}
.ye9{bottom:94.500000px;}
.ybe{bottom:97.560000px;}
.y21{bottom:100.830000px;}
.y7c{bottom:101.520000px;}
.y40{bottom:105.120000px;}
.y11e{bottom:108.000000px;}
.y184{bottom:108.180000px;}
.y14f{bottom:115.560000px;}
.ybd{bottom:117.180000px;}
.y20{bottom:118.650000px;}
.y7b{bottom:121.500000px;}
.y183{bottom:123.660000px;}
.y11d{bottom:127.800000px;}
.y14e{bottom:131.040000px;}
.y1f{bottom:136.470000px;}
.ybc{bottom:138.240000px;}
.y182{bottom:139.140000px;}
.y7a{bottom:141.300000px;}
.y3f{bottom:142.020000px;}
.y14d{bottom:146.520000px;}
.y11c{bottom:147.600000px;}
.y1e{bottom:154.470000px;}
.y181{bottom:154.830000px;}
.y3e{bottom:159.330000px;}
.ybb{bottom:159.870000px;}
.y79{bottom:161.130000px;}
.y29{bottom:165.990000px;}
.y11b{bottom:167.610000px;}
.y14c{bottom:168.150000px;}
.y180{bottom:170.310000px;}
.yba{bottom:171.585000px;}
.y1d{bottom:172.290000px;}
.y3d{bottom:176.610000px;}
.y78{bottom:180.930000px;}
.y14b{bottom:183.630000px;}
.y17f{bottom:185.790000px;}
.y11a{bottom:187.050000px;}
.y1c{bottom:190.110000px;}
.y3c{bottom:196.590000px;}
.y77{bottom:200.730000px;}
.y17e{bottom:201.270000px;}
.yb8{bottom:201.465000px;}
.y14a{bottom:205.050000px;}
.y119{bottom:206.850000px;}
.y1b{bottom:207.930000px;}
.y3b{bottom:216.390000px;}
.y76{bottom:220.710000px;}
.y1a{bottom:225.750000px;}
.y118{bottom:227.010000px;}
.yb6{bottom:231.525000px;}
.y17d{bottom:232.410000px;}
.y149{bottom:236.190000px;}
.y3a{bottom:236.370000px;}
.y75{bottom:240.510000px;}
.y19{bottom:243.570000px;}
.y117{bottom:246.810000px;}
.y17c{bottom:247.890000px;}
.y39{bottom:256.170000px;}
.y148{bottom:257.790000px;}
.y74{bottom:260.310000px;}
.yb4{bottom:260.685000px;}
.y18{bottom:261.570000px;}
.y116{bottom:266.430000px;}
.y17b{bottom:269.490000px;}
.y147{bottom:273.270000px;}
.y38{bottom:275.970000px;}
.y17{bottom:279.390000px;}
.y73{bottom:280.110000px;}
.y115{bottom:286.230000px;}
.y17a{bottom:290.910000px;}
.y146{bottom:294.690000px;}
.y37{bottom:295.770000px;}
.yb3{bottom:295.950000px;}
.y16{bottom:297.210000px;}
.y72{bottom:299.910000px;}
.y114{bottom:306.390000px;}
.y145{bottom:310.350000px;}
.y179{bottom:312.510000px;}
.yb2{bottom:314.850000px;}
.y36{bottom:315.570000px;}
.y15{bottom:319.170000px;}
.y71{bottom:319.890000px;}
.y113{bottom:325.830000px;}
.y28{bottom:331.815000px;}
.y178{bottom:333.930000px;}
.y35{bottom:335.550000px;}
.y70{bottom:339.690000px;}
.yb1{bottom:340.230000px;}
.y112{bottom:345.630000px;}
.y144{bottom:347.250000px;}
.yaf{bottom:351.765000px;}
.y34{bottom:355.350000px;}
.y177{bottom:355.530000px;}
.y6f{bottom:359.490000px;}
.y143{bottom:362.910000px;}
.y111{bottom:365.610000px;}
.y33{bottom:375.150000px;}
.y176{bottom:376.950000px;}
.ye8{bottom:378.570000px;}
.yad{bottom:378.765000px;}
.y6e{bottom:379.290000px;}
.y142{bottom:384.330000px;}
.y110{bottom:385.410000px;}
.y32{bottom:394.950000px;}
.y175{bottom:398.595000px;}
.y6d{bottom:399.135000px;}
.ye7{bottom:399.855000px;}
.yab{bottom:404.355000px;}
.y10f{bottom:405.615000px;}
.ye6{bottom:411.555000px;}
.y31{bottom:414.795000px;}
.y141{bottom:415.515000px;}
.y6c{bottom:419.115000px;}
.y174{bottom:420.195000px;}
.y10e{bottom:425.415000px;}
.ye4{bottom:427.035000px;}
.ya9{bottom:429.915000px;}
.y30{bottom:434.775000px;}
.y140{bottom:436.935000px;}
.y6b{bottom:438.915000px;}
.y173{bottom:441.615000px;}
.ye3{bottom:442.695000px;}
.y10d{bottom:445.215000px;}
.y13f{bottom:452.595000px;}
.y2f{bottom:454.575000px;}
.ya7{bottom:456.735000px;}
.ye2{bottom:458.175000px;}
.y6a{bottom:458.715000px;}
.y172{bottom:463.215000px;}
.y10c{bottom:465.195000px;}
.y13e{bottom:468.075000px;}
.ye1{bottom:473.655000px;}
.y2e{bottom:474.375000px;}
.y69{bottom:478.515000px;}
.ya5{bottom:483.195000px;}
.y171{bottom:484.635000px;}
.y10b{bottom:484.995000px;}
.ye0{bottom:489.135000px;}
.y13d{bottom:489.495000px;}
.y2d{bottom:494.175000px;}
.y68{bottom:497.955000px;}
.yde{bottom:504.795000px;}
.y13c{bottom:505.155000px;}
.y170{bottom:506.235000px;}
.y2c{bottom:513.975000px;}
.ya4{bottom:515.595000px;}
.y67{bottom:518.295000px;}
.ydd{bottom:520.275000px;}
.y13b{bottom:520.635000px;}
.y10a{bottom:524.595000px;}
.y16f{bottom:527.835000px;}
.y2b{bottom:533.595000px;}
.ydc{bottom:535.755000px;}
.y66{bottom:538.095000px;}
.ya3{bottom:539.175000px;}
.y13a{bottom:542.055000px;}
.y109{bottom:544.395000px;}
.y16e{bottom:549.255000px;}
.yda{bottom:551.235000px;}
.y2a{bottom:553.755000px;}
.y139{bottom:557.715000px;}
.y65{bottom:557.895000px;}
.y108{bottom:564.015000px;}
.yd8{bottom:566.895000px;}
.ya2{bottom:567.255000px;}
.y14{bottom:567.435000px;}
.y16d{bottom:570.855000px;}
.y64{bottom:577.695000px;}
.y138{bottom:579.135000px;}
.yd7{bottom:583.095000px;}
.y107{bottom:583.815000px;}
.ya1{bottom:587.055000px;}
.y16c{bottom:592.275000px;}
.y137{bottom:594.615000px;}
.y63{bottom:597.495000px;}
.y106{bottom:603.975000px;}
.ya0{bottom:606.855000px;}
.yd6{bottom:610.455000px;}
.y16b{bottom:613.875000px;}
.y136{bottom:616.215000px;}
.y62{bottom:617.475000px;}
.y105{bottom:623.775000px;}
.y9f{bottom:626.655000px;}
.yd5{bottom:629.895000px;}
.y135{bottom:631.695000px;}
.y16a{bottom:635.295000px;}
.y61{bottom:637.275000px;}
.y104{bottom:643.575000px;}
.y9e{bottom:646.455000px;}
.y134{bottom:647.355000px;}
.yd4{bottom:647.745000px;}
.y169{bottom:656.925000px;}
.y60{bottom:657.105000px;}
.y103{bottom:663.585000px;}
.yd3{bottom:665.025000px;}
.y9d{bottom:666.465000px;}
.y133{bottom:668.805000px;}
.y5f{bottom:676.905000px;}
.y168{bottom:678.525000px;}
.yd2{bottom:682.125000px;}
.y102{bottom:683.385000px;}
.y132{bottom:684.285000px;}
.y9c{bottom:686.265000px;}
.y5e{bottom:696.705000px;}
.yd1{bottom:699.405000px;}
.y167{bottom:699.945000px;}
.y101{bottom:703.185000px;}
.y131{bottom:705.885000px;}
.y9b{bottom:706.065000px;}
.y5d{bottom:716.685000px;}
.y130{bottom:721.365000px;}
.y166{bottom:721.545000px;}
.y100{bottom:722.985000px;}
.y9a{bottom:725.505000px;}
.yd0{bottom:733.965000px;}
.y5c{bottom:736.485000px;}
.y12f{bottom:736.845000px;}
.yff{bottom:742.785000px;}
.y165{bottom:742.965000px;}
.y99{bottom:745.305000px;}
.y5b{bottom:756.285000px;}
.y12e{bottom:758.445000px;}
.yfe{bottom:762.765000px;}
.y164{bottom:764.565000px;}
.y98{bottom:765.285000px;}
.ycf{bottom:768.345000px;}
.y12d{bottom:773.925000px;}
.y5a{bottom:776.085000px;}
.yfd{bottom:782.565000px;}
.y97{bottom:785.445000px;}
.y163{bottom:785.985000px;}
.yce{bottom:786.885000px;}
.y12c{bottom:789.405000px;}
.y59{bottom:795.885000px;}
.ycd{bottom:799.125000px;}
.yfc{bottom:802.365000px;}
.y96{bottom:805.245000px;}
.y162{bottom:807.585000px;}
.y12b{bottom:811.005000px;}
.y58{bottom:815.865000px;}
.yfb{bottom:822.165000px;}
.y95{bottom:825.045000px;}
.y12a{bottom:826.485000px;}
.y161{bottom:829.185000px;}
.y57{bottom:835.665000px;}
.yfa{bottom:841.965000px;}
.y94{bottom:844.845000px;}
.y160{bottom:850.605000px;}
.y56{bottom:855.465000px;}
.yf9{bottom:861.945000px;}
.y129{bottom:864.465000px;}
.y93{bottom:864.825000px;}
.y15f{bottom:872.205000px;}
.y55{bottom:875.265000px;}
.yf8{bottom:881.745000px;}
.y92{bottom:884.265000px;}
.y128{bottom:886.785000px;}
.y15e{bottom:893.625000px;}
.y54{bottom:895.065000px;}
.yf7{bottom:901.590000px;}
.y91{bottom:903.210000px;}
.y13{bottom:903.930000px;}
.y15d{bottom:909.330000px;}
.y127{bottom:912.390000px;}
.y53{bottom:915.090000px;}
.y90{bottom:919.050000px;}
.y12{bottom:919.950000px;}
.yf6{bottom:921.390000px;}
.y15c{bottom:924.810000px;}
.y8f{bottom:930.750000px;}
.y126{bottom:931.830000px;}
.y11{bottom:934.890000px;}
.yf5{bottom:941.190000px;}
.y10{bottom:945.870000px;}
.y15b{bottom:946.230000px;}
.y125{bottom:951.810000px;}
.ycc{bottom:952.170000px;}
.y8e{bottom:952.890000px;}
.y52{bottom:954.690000px;}
.yf{bottom:959.730000px;}
.yf4{bottom:961.170000px;}
.y15a{bottom:961.890000px;}
.ycb{bottom:971.430000px;}
.y124{bottom:971.970000px;}
.y8d{bottom:972.870000px;}
.ye{bottom:973.050000px;}
.y51{bottom:974.490000px;}
.yf3{bottom:980.970000px;}
.yca{bottom:982.950000px;}
.y159{bottom:983.310000px;}
.yd{bottom:989.970000px;}
.y123{bottom:991.410000px;}
.y8c{bottom:993.750000px;}
.y50{bottom:994.290000px;}
.y158{bottom:998.790000px;}
.yf2{bottom:1000.770000px;}
.yc9{bottom:1003.830000px;}
.yc{bottom:1011.210000px;}
.y4f{bottom:1013.910000px;}
.y157{bottom:1014.450000px;}
.y8b{bottom:1014.810000px;}
.yf1{bottom:1020.570000px;}
.yc8{bottom:1024.890000px;}
.y122{bottom:1031.370000px;}
.y4e{bottom:1031.550000px;}
.yb{bottom:1032.270000px;}
.y89{bottom:1035.870000px;}
.yf0{bottom:1040.370000px;}
.yc7{bottom:1044.690000px;}
.y4d{bottom:1051.350000px;}
.y87{bottom:1056.750000px;}
.yef{bottom:1060.350000px;}
.yc6{bottom:1064.670000px;}
.ya{bottom:1068.450000px;}
.y121{bottom:1070.790000px;}
.y4c{bottom:1071.150000px;}
.y156{bottom:1072.950000px;}
.y85{bottom:1078.890000px;}
.yee{bottom:1080.150000px;}
.yc4{bottom:1085.730000px;}
.y155{bottom:1088.430000px;}
.y120{bottom:1090.590000px;}
.y4b{bottom:1090.950000px;}
.yed{bottom:1099.950000px;}
.y83{bottom:1100.670000px;}
.y9{bottom:1101.210000px;}
.y154{bottom:1104.090000px;}
.yc1{bottom:1106.430000px;}
.y4a{bottom:1110.750000px;}
.y42{bottom:1112.730000px;}
.y8{bottom:1117.950000px;}
.yec{bottom:1119.750000px;}
.y153{bottom:1125.510000px;}
.y49{bottom:1130.190000px;}
.y11f{bottom:1130.550000px;}
.yc0{bottom:1130.730000px;}
.yeb{bottom:1139.190000px;}
.y82{bottom:1139.550000px;}
.y152{bottom:1140.990000px;}
.y47{bottom:1148.760000px;}
.y7{bottom:1155.960000px;}
.y80{bottom:1157.760000px;}
.y6{bottom:1167.480000px;}
.y46{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y7f{bottom:1178.460000px;}
.y45{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y7e{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h29{height:15.465000px;}
.h2a{height:15.645000px;}
.h11{height:18.140625px;}
.h27{height:19.785000px;}
.h1b{height:19.965000px;}
.h28{height:20.325000px;}
.h1a{height:20.865000px;}
.h18{height:21.045000px;}
.h19{height:22.125000px;}
.hc{height:23.319141px;}
.h1d{height:25.545000px;}
.h20{height:25.581000px;}
.h1e{height:25.725000px;}
.h1f{height:26.805000px;}
.h21{height:26.985000px;}
.h14{height:27.705000px;}
.h24{height:28.425000px;}
.h26{height:29.865000px;}
.h25{height:30.045000px;}
.h17{height:32.025000px;}
.he{height:35.332031px;}
.h3{height:40.985156px;}
.h2b{height:41.726953px;}
.h15{height:42.922699px;}
.hd{height:47.321367px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h22{height:50.558906px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h13{height:55.503472px;}
.hb{height:57.324375px;}
.hf{height:58.651172px;}
.h2d{height:59.092031px;}
.h9{height:60.226875px;}
.h12{height:66.757500px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.h2c{height:84.898125px;}
.h1c{height:93.983203px;}
.h23{height:96.508125px;}
.ha{height:126.984375px;}
.h10{height:331.800000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:101.730000px;}
.w6{width:138.090000px;}
.w8{width:139.350000px;}
.wa{width:139.710000px;}
.wc{width:168.510000px;}
.we{width:168.870000px;}
.w4{width:232.050000px;}
.wb{width:559.350000px;}
.wd{width:559.890000px;}
.w5{width:586.710000px;}
.w7{width:593.190000px;}
.w9{width:595.350000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x12{left:8.089500px;}
.x9{left:10.650000px;}
.x20{left:19.080000px;}
.x14{left:21.780000px;}
.x8{left:26.850000px;}
.x1e{left:33.840000px;}
.x1c{left:35.460000px;}
.x1a{left:36.720000px;}
.x19{left:37.800000px;}
.x1b{left:38.880000px;}
.x7{left:42.510000px;}
.x21{left:48.600000px;}
.x17{left:49.860000px;}
.x23{left:51.840000px;}
.x16{left:53.280000px;}
.x15{left:56.700000px;}
.x6{left:58.710000px;}
.x24{left:61.920000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.xd{left:108.036000px;}
.x25{left:158.250000px;}
.x10{left:359.715000px;}
.xf{left:396.615000px;}
.x11{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.xe{left:590.370000px;}
.x1f{left:640.410000px;}
.x13{left:667.770000px;}
.x18{left:674.250000px;}
.x1d{left:676.410000px;}
.x4{left:721.950000px;}
.x22{left:808.380000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v8{vertical-align:-55.040000pt;}
.v7{vertical-align:-21.120000pt;}
.v6{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls14{letter-spacing:-0.198933pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.ls9{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls13{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.704000pt;}
.lsf{letter-spacing:4.000000pt;}
.ls15{letter-spacing:81.280000pt;}
.ls5{letter-spacing:82.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws12{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.870933pt;}
.ws17{word-spacing:-12.544000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.288000pt;}
.ws7{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.521067pt;}
.ws6{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws18{word-spacing:-8.704000pt;}
.ws13{word-spacing:-8.000000pt;}
.ws15{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
._16{margin-left:-5.991680pt;}
._17{margin-left:-4.368000pt;}
._18{margin-left:-3.447467pt;}
._13{margin-left:-1.995947pt;}
._1{margin-left:-1.064533pt;}
._0{width:1.262080pt;}
._2{width:2.301440pt;}
._3{width:3.786667pt;}
._7{width:4.887893pt;}
._5{width:5.824000pt;}
._d{width:7.067307pt;}
._9{width:8.208000pt;}
._8{width:9.120000pt;}
._e{width:10.128000pt;}
._10{width:11.115520pt;}
._11{width:12.166613pt;}
._1a{width:13.152000pt;}
._12{width:14.814507pt;}
._b{width:15.888000pt;}
._a{width:16.848000pt;}
._c{width:18.062507pt;}
._14{width:19.654400pt;}
._15{width:20.843093pt;}
._1c{width:29.101867pt;}
._1b{width:30.096000pt;}
._1e{width:42.554667pt;}
._1d{width:48.816000pt;}
._6{width:57.270827pt;}
._19{width:67.632000pt;}
._f{width:1630.485333pt;}
._4{width:1837.337173pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fse{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsf{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:2.560000pt;}
.ye5{bottom:2.720000pt;}
.yd9{bottom:2.880000pt;}
.ydb{bottom:3.040000pt;}
.y44{bottom:3.840000pt;}
.yc3{bottom:4.160000pt;}
.yc2{bottom:4.480000pt;}
.yc5{bottom:4.800000pt;}
.y27{bottom:4.960000pt;}
.y8a{bottom:5.280000pt;}
.y86{bottom:5.440000pt;}
.y88{bottom:5.920000pt;}
.ya6{bottom:7.040000pt;}
.yae{bottom:7.346667pt;}
.yac{bottom:7.360000pt;}
.ya8{bottom:7.520000pt;}
.yb0{bottom:7.986667pt;}
.yaa{bottom:8.000000pt;}
.yb5{bottom:8.306667pt;}
.yb7{bottom:9.586667pt;}
.y84{bottom:9.920000pt;}
.yb9{bottom:10.386667pt;}
.y43{bottom:16.160000pt;}
.y48{bottom:16.800000pt;}
.y81{bottom:17.120000pt;}
.y26{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.y25{bottom:26.080000pt;}
.y2{bottom:30.080000pt;}
.y1{bottom:41.440000pt;}
.y24{bottom:41.920000pt;}
.y23{bottom:57.920000pt;}
.y186{bottom:68.480000pt;}
.ybf{bottom:69.120000pt;}
.y151{bottom:69.760000pt;}
.yea{bottom:70.720000pt;}
.y7d{bottom:72.640000pt;}
.y22{bottom:73.786667pt;}
.y41{bottom:75.840000pt;}
.y185{bottom:82.400000pt;}
.y150{bottom:83.520000pt;}
.ye9{bottom:84.000000pt;}
.ybe{bottom:86.720000pt;}
.y21{bottom:89.626667pt;}
.y7c{bottom:90.240000pt;}
.y40{bottom:93.440000pt;}
.y11e{bottom:96.000000pt;}
.y184{bottom:96.160000pt;}
.y14f{bottom:102.720000pt;}
.ybd{bottom:104.160000pt;}
.y20{bottom:105.466667pt;}
.y7b{bottom:108.000000pt;}
.y183{bottom:109.920000pt;}
.y11d{bottom:113.600000pt;}
.y14e{bottom:116.480000pt;}
.y1f{bottom:121.306667pt;}
.ybc{bottom:122.880000pt;}
.y182{bottom:123.680000pt;}
.y7a{bottom:125.600000pt;}
.y3f{bottom:126.240000pt;}
.y14d{bottom:130.240000pt;}
.y11c{bottom:131.200000pt;}
.y1e{bottom:137.306667pt;}
.y181{bottom:137.626667pt;}
.y3e{bottom:141.626667pt;}
.ybb{bottom:142.106667pt;}
.y79{bottom:143.226667pt;}
.y29{bottom:147.546667pt;}
.y11b{bottom:148.986667pt;}
.y14c{bottom:149.466667pt;}
.y180{bottom:151.386667pt;}
.yba{bottom:152.520000pt;}
.y1d{bottom:153.146667pt;}
.y3d{bottom:156.986667pt;}
.y78{bottom:160.826667pt;}
.y14b{bottom:163.226667pt;}
.y17f{bottom:165.146667pt;}
.y11a{bottom:166.266667pt;}
.y1c{bottom:168.986667pt;}
.y3c{bottom:174.746667pt;}
.y77{bottom:178.426667pt;}
.y17e{bottom:178.906667pt;}
.yb8{bottom:179.080000pt;}
.y14a{bottom:182.266667pt;}
.y119{bottom:183.866667pt;}
.y1b{bottom:184.826667pt;}
.y3b{bottom:192.346667pt;}
.y76{bottom:196.186667pt;}
.y1a{bottom:200.666667pt;}
.y118{bottom:201.786667pt;}
.yb6{bottom:205.800000pt;}
.y17d{bottom:206.586667pt;}
.y149{bottom:209.946667pt;}
.y3a{bottom:210.106667pt;}
.y75{bottom:213.786667pt;}
.y19{bottom:216.506667pt;}
.y117{bottom:219.386667pt;}
.y17c{bottom:220.346667pt;}
.y39{bottom:227.706667pt;}
.y148{bottom:229.146667pt;}
.y74{bottom:231.386667pt;}
.yb4{bottom:231.720000pt;}
.y18{bottom:232.506667pt;}
.y116{bottom:236.826667pt;}
.y17b{bottom:239.546667pt;}
.y147{bottom:242.906667pt;}
.y38{bottom:245.306667pt;}
.y17{bottom:248.346667pt;}
.y73{bottom:248.986667pt;}
.y115{bottom:254.426667pt;}
.y17a{bottom:258.586667pt;}
.y146{bottom:261.946667pt;}
.y37{bottom:262.906667pt;}
.yb3{bottom:263.066667pt;}
.y16{bottom:264.186667pt;}
.y72{bottom:266.586667pt;}
.y114{bottom:272.346667pt;}
.y145{bottom:275.866667pt;}
.y179{bottom:277.786667pt;}
.yb2{bottom:279.866667pt;}
.y36{bottom:280.506667pt;}
.y15{bottom:283.706667pt;}
.y71{bottom:284.346667pt;}
.y113{bottom:289.626667pt;}
.y28{bottom:294.946667pt;}
.y178{bottom:296.826667pt;}
.y35{bottom:298.266667pt;}
.y70{bottom:301.946667pt;}
.yb1{bottom:302.426667pt;}
.y112{bottom:307.226667pt;}
.y144{bottom:308.666667pt;}
.yaf{bottom:312.680000pt;}
.y34{bottom:315.866667pt;}
.y177{bottom:316.026667pt;}
.y6f{bottom:319.546667pt;}
.y143{bottom:322.586667pt;}
.y111{bottom:324.986667pt;}
.y33{bottom:333.466667pt;}
.y176{bottom:335.066667pt;}
.ye8{bottom:336.506667pt;}
.yad{bottom:336.680000pt;}
.y6e{bottom:337.146667pt;}
.y142{bottom:341.626667pt;}
.y110{bottom:342.586667pt;}
.y32{bottom:351.066667pt;}
.y175{bottom:354.306667pt;}
.y6d{bottom:354.786667pt;}
.ye7{bottom:355.426667pt;}
.yab{bottom:359.426667pt;}
.y10f{bottom:360.546667pt;}
.ye6{bottom:365.826667pt;}
.y31{bottom:368.706667pt;}
.y141{bottom:369.346667pt;}
.y6c{bottom:372.546667pt;}
.y174{bottom:373.506667pt;}
.y10e{bottom:378.146667pt;}
.ye4{bottom:379.586667pt;}
.ya9{bottom:382.146667pt;}
.y30{bottom:386.466667pt;}
.y140{bottom:388.386667pt;}
.y6b{bottom:390.146667pt;}
.y173{bottom:392.546667pt;}
.ye3{bottom:393.506667pt;}
.y10d{bottom:395.746667pt;}
.y13f{bottom:402.306667pt;}
.y2f{bottom:404.066667pt;}
.ya7{bottom:405.986667pt;}
.ye2{bottom:407.266667pt;}
.y6a{bottom:407.746667pt;}
.y172{bottom:411.746667pt;}
.y10c{bottom:413.506667pt;}
.y13e{bottom:416.066667pt;}
.ye1{bottom:421.026667pt;}
.y2e{bottom:421.666667pt;}
.y69{bottom:425.346667pt;}
.ya5{bottom:429.506667pt;}
.y171{bottom:430.786667pt;}
.y10b{bottom:431.106667pt;}
.ye0{bottom:434.786667pt;}
.y13d{bottom:435.106667pt;}
.y2d{bottom:439.266667pt;}
.y68{bottom:442.626667pt;}
.yde{bottom:448.706667pt;}
.y13c{bottom:449.026667pt;}
.y170{bottom:449.986667pt;}
.y2c{bottom:456.866667pt;}
.ya4{bottom:458.306667pt;}
.y67{bottom:460.706667pt;}
.ydd{bottom:462.466667pt;}
.y13b{bottom:462.786667pt;}
.y10a{bottom:466.306667pt;}
.y16f{bottom:469.186667pt;}
.y2b{bottom:474.306667pt;}
.ydc{bottom:476.226667pt;}
.y66{bottom:478.306667pt;}
.ya3{bottom:479.266667pt;}
.y13a{bottom:481.826667pt;}
.y109{bottom:483.906667pt;}
.y16e{bottom:488.226667pt;}
.yda{bottom:489.986667pt;}
.y2a{bottom:492.226667pt;}
.y139{bottom:495.746667pt;}
.y65{bottom:495.906667pt;}
.y108{bottom:501.346667pt;}
.yd8{bottom:503.906667pt;}
.ya2{bottom:504.226667pt;}
.y14{bottom:504.386667pt;}
.y16d{bottom:507.426667pt;}
.y64{bottom:513.506667pt;}
.y138{bottom:514.786667pt;}
.yd7{bottom:518.306667pt;}
.y107{bottom:518.946667pt;}
.ya1{bottom:521.826667pt;}
.y16c{bottom:526.466667pt;}
.y137{bottom:528.546667pt;}
.y63{bottom:531.106667pt;}
.y106{bottom:536.866667pt;}
.ya0{bottom:539.426667pt;}
.yd6{bottom:542.626667pt;}
.y16b{bottom:545.666667pt;}
.y136{bottom:547.746667pt;}
.y62{bottom:548.866667pt;}
.y105{bottom:554.466667pt;}
.y9f{bottom:557.026667pt;}
.yd5{bottom:559.906667pt;}
.y135{bottom:561.506667pt;}
.y16a{bottom:564.706667pt;}
.y61{bottom:566.466667pt;}
.y104{bottom:572.066667pt;}
.y9e{bottom:574.626667pt;}
.y134{bottom:575.426667pt;}
.yd4{bottom:575.773333pt;}
.y169{bottom:583.933333pt;}
.y60{bottom:584.093333pt;}
.y103{bottom:589.853333pt;}
.yd3{bottom:591.133333pt;}
.y9d{bottom:592.413333pt;}
.y133{bottom:594.493333pt;}
.y5f{bottom:601.693333pt;}
.y168{bottom:603.133333pt;}
.yd2{bottom:606.333333pt;}
.y102{bottom:607.453333pt;}
.y132{bottom:608.253333pt;}
.y9c{bottom:610.013333pt;}
.y5e{bottom:619.293333pt;}
.yd1{bottom:621.693333pt;}
.y167{bottom:622.173333pt;}
.y101{bottom:625.053333pt;}
.y131{bottom:627.453333pt;}
.y9b{bottom:627.613333pt;}
.y5d{bottom:637.053333pt;}
.y130{bottom:641.213333pt;}
.y166{bottom:641.373333pt;}
.y100{bottom:642.653333pt;}
.y9a{bottom:644.893333pt;}
.yd0{bottom:652.413333pt;}
.y5c{bottom:654.653333pt;}
.y12f{bottom:654.973333pt;}
.yff{bottom:660.253333pt;}
.y165{bottom:660.413333pt;}
.y99{bottom:662.493333pt;}
.y5b{bottom:672.253333pt;}
.y12e{bottom:674.173333pt;}
.yfe{bottom:678.013333pt;}
.y164{bottom:679.613333pt;}
.y98{bottom:680.253333pt;}
.ycf{bottom:682.973333pt;}
.y12d{bottom:687.933333pt;}
.y5a{bottom:689.853333pt;}
.yfd{bottom:695.613333pt;}
.y97{bottom:698.173333pt;}
.y163{bottom:698.653333pt;}
.yce{bottom:699.453333pt;}
.y12c{bottom:701.693333pt;}
.y59{bottom:707.453333pt;}
.ycd{bottom:710.333333pt;}
.yfc{bottom:713.213333pt;}
.y96{bottom:715.773333pt;}
.y162{bottom:717.853333pt;}
.y12b{bottom:720.893333pt;}
.y58{bottom:725.213333pt;}
.yfb{bottom:730.813333pt;}
.y95{bottom:733.373333pt;}
.y12a{bottom:734.653333pt;}
.y161{bottom:737.053333pt;}
.y57{bottom:742.813333pt;}
.yfa{bottom:748.413333pt;}
.y94{bottom:750.973333pt;}
.y160{bottom:756.093333pt;}
.y56{bottom:760.413333pt;}
.yf9{bottom:766.173333pt;}
.y129{bottom:768.413333pt;}
.y93{bottom:768.733333pt;}
.y15f{bottom:775.293333pt;}
.y55{bottom:778.013333pt;}
.yf8{bottom:783.773333pt;}
.y92{bottom:786.013333pt;}
.y128{bottom:788.253333pt;}
.y15e{bottom:794.333333pt;}
.y54{bottom:795.613333pt;}
.yf7{bottom:801.413333pt;}
.y91{bottom:802.853333pt;}
.y13{bottom:803.493333pt;}
.y15d{bottom:808.293333pt;}
.y127{bottom:811.013333pt;}
.y53{bottom:813.413333pt;}
.y90{bottom:816.933333pt;}
.y12{bottom:817.733333pt;}
.yf6{bottom:819.013333pt;}
.y15c{bottom:822.053333pt;}
.y8f{bottom:827.333333pt;}
.y126{bottom:828.293333pt;}
.y11{bottom:831.013333pt;}
.yf5{bottom:836.613333pt;}
.y10{bottom:840.773333pt;}
.y15b{bottom:841.093333pt;}
.y125{bottom:846.053333pt;}
.ycc{bottom:846.373333pt;}
.y8e{bottom:847.013333pt;}
.y52{bottom:848.613333pt;}
.yf{bottom:853.093333pt;}
.yf4{bottom:854.373333pt;}
.y15a{bottom:855.013333pt;}
.ycb{bottom:863.493333pt;}
.y124{bottom:863.973333pt;}
.y8d{bottom:864.773333pt;}
.ye{bottom:864.933333pt;}
.y51{bottom:866.213333pt;}
.yf3{bottom:871.973333pt;}
.yca{bottom:873.733333pt;}
.y159{bottom:874.053333pt;}
.yd{bottom:879.973333pt;}
.y123{bottom:881.253333pt;}
.y8c{bottom:883.333333pt;}
.y50{bottom:883.813333pt;}
.y158{bottom:887.813333pt;}
.yf2{bottom:889.573333pt;}
.yc9{bottom:892.293333pt;}
.yc{bottom:898.853333pt;}
.y4f{bottom:901.253333pt;}
.y157{bottom:901.733333pt;}
.y8b{bottom:902.053333pt;}
.yf1{bottom:907.173333pt;}
.yc8{bottom:911.013333pt;}
.y122{bottom:916.773333pt;}
.y4e{bottom:916.933333pt;}
.yb{bottom:917.573333pt;}
.y89{bottom:920.773333pt;}
.yf0{bottom:924.773333pt;}
.yc7{bottom:928.613333pt;}
.y4d{bottom:934.533333pt;}
.y87{bottom:939.333333pt;}
.yef{bottom:942.533333pt;}
.yc6{bottom:946.373333pt;}
.ya{bottom:949.733333pt;}
.y121{bottom:951.813333pt;}
.y4c{bottom:952.133333pt;}
.y156{bottom:953.733333pt;}
.y85{bottom:959.013333pt;}
.yee{bottom:960.133333pt;}
.yc4{bottom:965.093333pt;}
.y155{bottom:967.493333pt;}
.y120{bottom:969.413333pt;}
.y4b{bottom:969.733333pt;}
.yed{bottom:977.733333pt;}
.y83{bottom:978.373333pt;}
.y9{bottom:978.853333pt;}
.y154{bottom:981.413333pt;}
.yc1{bottom:983.493333pt;}
.y4a{bottom:987.333333pt;}
.y42{bottom:989.093333pt;}
.y8{bottom:993.733333pt;}
.yec{bottom:995.333333pt;}
.y153{bottom:1000.453333pt;}
.y49{bottom:1004.613333pt;}
.y11f{bottom:1004.933333pt;}
.yc0{bottom:1005.093333pt;}
.yeb{bottom:1012.613333pt;}
.y82{bottom:1012.933333pt;}
.y152{bottom:1014.213333pt;}
.y47{bottom:1021.120000pt;}
.y7{bottom:1027.520000pt;}
.y80{bottom:1029.120000pt;}
.y6{bottom:1037.760000pt;}
.y46{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y7f{bottom:1047.520000pt;}
.y45{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y7e{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h29{height:13.746667pt;}
.h2a{height:13.906667pt;}
.h11{height:16.125000pt;}
.h27{height:17.586667pt;}
.h1b{height:17.746667pt;}
.h28{height:18.066667pt;}
.h1a{height:18.546667pt;}
.h18{height:18.706667pt;}
.h19{height:19.666667pt;}
.hc{height:20.728125pt;}
.h1d{height:22.706667pt;}
.h20{height:22.738667pt;}
.h1e{height:22.866667pt;}
.h1f{height:23.826667pt;}
.h21{height:23.986667pt;}
.h14{height:24.626667pt;}
.h24{height:25.266667pt;}
.h26{height:26.546667pt;}
.h25{height:26.706667pt;}
.h17{height:28.466667pt;}
.he{height:31.406250pt;}
.h3{height:36.431250pt;}
.h2b{height:37.090625pt;}
.h15{height:38.153511pt;}
.hd{height:42.063437pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h22{height:44.941250pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h13{height:49.336419pt;}
.hb{height:50.955000pt;}
.hf{height:52.134375pt;}
.h2d{height:52.526250pt;}
.h9{height:53.535000pt;}
.h12{height:59.340000pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2c{height:75.465000pt;}
.h1c{height:83.540625pt;}
.h23{height:85.785000pt;}
.ha{height:112.875000pt;}
.h10{height:294.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:90.426667pt;}
.w6{width:122.746667pt;}
.w8{width:123.866667pt;}
.wa{width:124.186667pt;}
.wc{width:149.786667pt;}
.we{width:150.106667pt;}
.w4{width:206.266667pt;}
.wb{width:497.200000pt;}
.wd{width:497.680000pt;}
.w5{width:521.520000pt;}
.w7{width:527.280000pt;}
.w9{width:529.200000pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x12{left:7.190667pt;}
.x9{left:9.466667pt;}
.x20{left:16.960000pt;}
.x14{left:19.360000pt;}
.x8{left:23.866667pt;}
.x1e{left:30.080000pt;}
.x1c{left:31.520000pt;}
.x1a{left:32.640000pt;}
.x19{left:33.600000pt;}
.x1b{left:34.560000pt;}
.x7{left:37.786667pt;}
.x21{left:43.200000pt;}
.x17{left:44.320000pt;}
.x23{left:46.080000pt;}
.x16{left:47.360000pt;}
.x15{left:50.400000pt;}
.x6{left:52.186667pt;}
.x24{left:55.040000pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.xd{left:96.032000pt;}
.x25{left:140.666667pt;}
.x10{left:319.746667pt;}
.xf{left:352.546667pt;}
.x11{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.xe{left:524.773333pt;}
.x1f{left:569.253333pt;}
.x13{left:593.573333pt;}
.x18{left:599.333333pt;}
.x1d{left:601.253333pt;}
.x4{left:641.733333pt;}
.x22{left:718.560000pt;}
}




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