
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fa6157962c8a9a4a0b99cb20.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c65b23069601db77011b6112.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_56a67b51af33fcdf286c4f25.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_18e7987cb07107724851e4b8.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ae7c57606f84110770d2061f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_14aa93571290c156cb28bbad.woff')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_e64c168559c9e21fafaa4935.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.444600px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:2.613600px;}
.ls13{letter-spacing:47.726640px;}
.ls11{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._8{margin-left:-3.547200px;}
._6{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._2{width:2.064337px;}
._3{width:3.165863px;}
._5{width:4.615560px;}
._4{width:5.753040px;}
._e{width:7.677360px;}
._c{width:8.717400px;}
._d{width:9.815988px;}
._7{width:11.663400px;}
._15{width:14.452919px;}
._b{width:15.843480px;}
._12{width:17.087866px;}
._11{width:18.216360px;}
._f{width:19.238400px;}
._13{width:20.861640px;}
._14{width:21.883680px;}
._16{width:23.386680px;}
._17{width:24.528960px;}
._10{width:25.911720px;}
._9{width:27.012840px;}
._a{width:28.430391px;}
._33{width:33.366600px;}
._32{width:34.448760px;}
._35{width:40.280400px;}
._34{width:41.362560px;}
._26{width:42.625080px;}
._27{width:43.734960px;}
._2f{width:45.871560px;}
._1d{width:49.118040px;}
._1e{width:50.500800px;}
._28{width:52.725240px;}
._29{width:56.693160px;}
._1b{width:74.969640px;}
._1c{width:76.031400px;}
._2d{width:79.659000px;}
._2e{width:80.741160px;}
._37{width:81.763200px;}
._18{width:83.927520px;}
._19{width:85.009680px;}
._1f{width:94.388400px;}
._2c{width:103.165920px;}
._21{width:104.896320px;}
._20{width:106.004640px;}
._2a{width:107.889240px;}
._2b{width:113.386320px;}
._38{width:123.666840px;}
._36{width:134.127720px;}
._1a{width:137.374200px;}
._22{width:163.285920px;}
._23{width:178.195680px;}
._24{width:192.083400px;}
._25{width:193.526160px;}
._30{width:212.283720px;}
._31{width:213.546120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yb3{bottom:111.720000px;}
.yf3{bottom:112.170000px;}
.yc7{bottom:120.720000px;}
.y92{bottom:121.170000px;}
.y172{bottom:125.580000px;}
.y11c{bottom:126.570000px;}
.yb2{bottom:129.270000px;}
.yf2{bottom:129.720000px;}
.y2a{bottom:131.610000px;}
.y63{bottom:132.600000px;}
.y91{bottom:138.720000px;}
.y157{bottom:142.680000px;}
.y171{bottom:143.130000px;}
.y11b{bottom:144.120000px;}
.yb1{bottom:146.910000px;}
.yf1{bottom:147.270000px;}
.y29{bottom:149.160000px;}
.y62{bottom:150.240000px;}
.y90{bottom:156.270000px;}
.y156{bottom:160.320000px;}
.y17e{bottom:160.680000px;}
.y11a{bottom:161.670000px;}
.yb0{bottom:164.460000px;}
.yf0{bottom:164.910000px;}
.y28{bottom:166.710000px;}
.y61{bottom:167.790000px;}
.y170{bottom:169.680000px;}
.y13b{bottom:170.580000px;}
.y8f{bottom:173.910000px;}
.y155{bottom:177.870000px;}
.y17d{bottom:178.320000px;}
.y119{bottom:179.310000px;}
.yef{bottom:182.460000px;}
.y27{bottom:184.350000px;}
.y16f{bottom:187.320000px;}
.y13a{bottom:188.220000px;}
.yaf{bottom:191.100000px;}
.y8e{bottom:191.460000px;}
.y60{bottom:194.700000px;}
.y118{bottom:196.860000px;}
.y26{bottom:201.900000px;}
.y154{bottom:204.510000px;}
.y16e{bottom:204.870000px;}
.yc6{bottom:209.100000px;}
.y117{bottom:214.500000px;}
.y139{bottom:214.770000px;}
.y8d{bottom:218.370000px;}
.y25{bottom:219.540000px;}
.y153{bottom:222.060000px;}
.y17c{bottom:222.510000px;}
.yae{bottom:226.650000px;}
.y16d{bottom:231.510000px;}
.y116{bottom:232.050000px;}
.y138{bottom:232.320000px;}
.y24{bottom:237.090000px;}
.y5f{bottom:242.940000px;}
.yad{bottom:244.200000px;}
.yee{bottom:244.650000px;}
.y152{bottom:248.610000px;}
.y16c{bottom:249.060000px;}
.y115{bottom:249.600000px;}
.y137{bottom:249.960000px;}
.y23{bottom:254.640000px;}
.y5e{bottom:260.580000px;}
.yac{bottom:261.840000px;}
.yed{bottom:262.200000px;}
.y151{bottom:266.250000px;}
.y8c{bottom:266.610000px;}
.y114{bottom:267.240000px;}
.y22{bottom:272.280000px;}
.y136{bottom:276.510000px;}
.y5d{bottom:278.130000px;}
.yab{bottom:279.390000px;}
.yec{bottom:279.840000px;}
.y8b{bottom:284.250000px;}
.y113{bottom:284.790000px;}
.yc5{bottom:288.390000px;}
.y21{bottom:289.830000px;}
.y150{bottom:292.800000px;}
.y16b{bottom:293.250000px;}
.y135{bottom:294.150000px;}
.y5c{bottom:295.680000px;}
.yaa{bottom:296.940000px;}
.yeb{bottom:297.390000px;}
.y8a{bottom:301.800000px;}
.y112{bottom:302.430000px;}
.y20{bottom:307.380000px;}
.y14f{bottom:310.440000px;}
.y16a{bottom:310.800000px;}
.y134{bottom:311.700000px;}
.y5b{bottom:313.320000px;}
.ya9{bottom:314.580000px;}
.yea{bottom:314.940000px;}
.y89{bottom:319.440000px;}
.y111{bottom:319.980000px;}
.yc4{bottom:323.940000px;}
.y1f{bottom:325.020000px;}
.y14e{bottom:327.990000px;}
.y169{bottom:328.440000px;}
.ya8{bottom:332.130000px;}
.ye9{bottom:332.580000px;}
.y88{bottom:336.990000px;}
.y110{bottom:337.530000px;}
.y133{bottom:338.250000px;}
.yc3{bottom:341.580000px;}
.y1e{bottom:342.570000px;}
.y17b{bottom:345.990000px;}
.y5a{bottom:348.870000px;}
.y87{bottom:354.540000px;}
.y168{bottom:354.990000px;}
.y10f{bottom:355.170000px;}
.y132{bottom:355.890000px;}
.ya7{bottom:359.040000px;}
.yc2{bottom:359.130000px;}
.y1d{bottom:360.210000px;}
.y59{bottom:366.510000px;}
.y86{bottom:372.180000px;}
.y167{bottom:372.540000px;}
.y131{bottom:373.440000px;}
.yc1{bottom:376.770000px;}
.y1c{bottom:377.760000px;}
.y10e{bottom:382.080000px;}
.y58{bottom:384.060000px;}
.y166{bottom:390.180000px;}
.yc0{bottom:394.320000px;}
.ye8{bottom:394.770000px;}
.y1b{bottom:395.310000px;}
.y85{bottom:398.730000px;}
.y130{bottom:400.080000px;}
.y57{bottom:401.610000px;}
.ya6{bottom:407.370000px;}
.y17a{bottom:407.730000px;}
.ybf{bottom:411.870000px;}
.ye7{bottom:412.320000px;}
.y14d{bottom:416.370000px;}
.y165{bottom:416.730000px;}
.y12f{bottom:417.630000px;}
.y56{bottom:419.250000px;}
.y1a{bottom:422.220000px;}
.ya5{bottom:424.920000px;}
.ybe{bottom:429.510000px;}
.ye6{bottom:429.870000px;}
.y10d{bottom:430.320000px;}
.y14c{bottom:433.920000px;}
.y84{bottom:434.370000px;}
.y12e{bottom:435.180000px;}
.y55{bottom:436.800000px;}
.ya4{bottom:442.470000px;}
.ybd{bottom:447.060000px;}
.ye5{bottom:447.510000px;}
.y10c{bottom:447.870000px;}
.y83{bottom:451.920000px;}
.y54{bottom:454.440000px;}
.ya3{bottom:460.110000px;}
.y14b{bottom:460.470000px;}
.y12d{bottom:461.820000px;}
.ye4{bottom:465.060000px;}
.y10b{bottom:465.510000px;}
.y82{bottom:469.470000px;}
.y19{bottom:470.580000px;}
.y53{bottom:472.020000px;}
.ybc{bottom:473.730000px;}
.ya2{bottom:477.690000px;}
.y14a{bottom:478.140000px;}
.y12c{bottom:479.400000px;}
.ye3{bottom:482.730000px;}
.y10a{bottom:483.090000px;}
.y81{bottom:487.140000px;}
.y18{bottom:488.490000px;}
.y52{bottom:489.570000px;}
.ya1{bottom:495.330000px;}
.y149{bottom:495.690000px;}
.y164{bottom:496.140000px;}
.y12b{bottom:497.040000px;}
.y109{bottom:500.730000px;}
.y80{bottom:504.690000px;}
.y51{bottom:507.210000px;}
.ybb{bottom:509.280000px;}
.y163{bottom:513.690000px;}
.y108{bottom:518.280000px;}
.ya0{bottom:521.880000px;}
.y7f{bottom:522.330000px;}
.y12a{bottom:523.860000px;}
.y50{bottom:524.760000px;}
.y17{bottom:525.480000px;}
.yba{bottom:526.830000px;}
.y179{bottom:531.330000px;}
.y107{bottom:535.830000px;}
.y7e{bottom:539.880000px;}
.y162{bottom:540.330000px;}
.y4f{bottom:542.400000px;}
.y16{bottom:543.120000px;}
.yb9{bottom:544.470000px;}
.ye2{bottom:544.830000px;}
.y9f{bottom:557.430000px;}
.y161{bottom:557.880000px;}
.y4e{bottom:559.950000px;}
.y15{bottom:560.670000px;}
.yb8{bottom:562.020000px;}
.ye1{bottom:562.470000px;}
.y7d{bottom:566.430000px;}
.y106{bottom:571.470000px;}
.y129{bottom:572.190000px;}
.y9e{bottom:575.070000px;}
.y178{bottom:575.430000px;}
.y4d{bottom:577.500000px;}
.y14{bottom:578.220000px;}
.yb7{bottom:579.660000px;}
.ye0{bottom:580.020000px;}
.y148{bottom:584.070000px;}
.y160{bottom:584.430000px;}
.y105{bottom:589.020000px;}
.y128{bottom:589.740000px;}
.y9d{bottom:592.620000px;}
.y4c{bottom:595.140000px;}
.y13{bottom:595.860000px;}
.ydf{bottom:597.660000px;}
.y7c{bottom:602.070000px;}
.yb6{bottom:606.570000px;}
.y104{bottom:606.660000px;}
.y127{bottom:607.380000px;}
.y9c{bottom:610.260000px;}
.y147{bottom:610.620000px;}
.y4b{bottom:612.690000px;}
.y12{bottom:613.410000px;}
.yde{bottom:615.210000px;}
.y7b{bottom:619.620000px;}
.y103{bottom:624.210000px;}
.y9b{bottom:627.810000px;}
.y146{bottom:628.260000px;}
.y4a{bottom:630.330000px;}
.y11{bottom:630.960000px;}
.ydd{bottom:632.760000px;}
.y126{bottom:634.290000px;}
.y7a{bottom:637.260000px;}
.y102{bottom:641.760000px;}
.y15f{bottom:646.260000px;}
.y49{bottom:647.880000px;}
.y10{bottom:648.600000px;}
.y9a{bottom:654.360000px;}
.y79{bottom:654.810000px;}
.ydc{bottom:659.400000px;}
.y15e{bottom:663.810000px;}
.y48{bottom:665.430000px;}
.yf{bottom:666.150000px;}
.y125{bottom:671.280000px;}
.y78{bottom:672.360000px;}
.y15d{bottom:681.360000px;}
.y47{bottom:683.070000px;}
.ye{bottom:683.790000px;}
.y77{bottom:690.000000px;}
.ydb{bottom:694.950000px;}
.y124{bottom:698.190000px;}
.y145{bottom:699.000000px;}
.y46{bottom:700.620000px;}
.yd{bottom:701.340000px;}
.y76{bottom:707.550000px;}
.y15c{bottom:708.000000px;}
.yda{bottom:712.590000px;}
.y144{bottom:716.550000px;}
.y45{bottom:718.260000px;}
.yc{bottom:718.890000px;}
.y99{bottom:725.190000px;}
.y15b{bottom:725.550000px;}
.yd9{bottom:730.140000px;}
.y75{bottom:734.190000px;}
.y123{bottom:735.180000px;}
.y44{bottom:735.810000px;}
.yb{bottom:736.530000px;}
.y98{bottom:742.740000px;}
.y143{bottom:743.190000px;}
.yd8{bottom:747.690000px;}
.y177{bottom:752.190000px;}
.y43{bottom:753.360000px;}
.ya{bottom:754.080000px;}
.y97{bottom:760.290000px;}
.y142{bottom:760.740000px;}
.y122{bottom:762.090000px;}
.yd7{bottom:765.330000px;}
.y74{bottom:769.740000px;}
.y42{bottom:771.000000px;}
.y141{bottom:778.290000px;}
.y9{bottom:781.080000px;}
.yd6{bottom:782.880000px;}
.y96{bottom:786.930000px;}
.y73{bottom:787.290000px;}
.y41{bottom:788.550000px;}
.y176{bottom:796.290000px;}
.y121{bottom:799.170000px;}
.y101{bottom:800.520000px;}
.y72{bottom:804.930000px;}
.y40{bottom:806.190000px;}
.yd5{bottom:809.790000px;}
.y175{bottom:813.930000px;}
.y120{bottom:816.720000px;}
.y71{bottom:822.480000px;}
.y3f{bottom:823.740000px;}
.y8{bottom:827.790000px;}
.y15a{bottom:831.480000px;}
.y11f{bottom:834.270000px;}
.y100{bottom:836.070000px;}
.y70{bottom:840.030000px;}
.y3e{bottom:841.290000px;}
.y159{bottom:849.030000px;}
.yff{bottom:853.620000px;}
.y6f{bottom:857.670000px;}
.yd4{bottom:858.030000px;}
.y3d{bottom:858.930000px;}
.y11e{bottom:861.180000px;}
.y7{bottom:863.610000px;}
.y140{bottom:866.670000px;}
.yfe{bottom:871.260000px;}
.y6e{bottom:875.220000px;}
.yd3{bottom:875.670000px;}
.y3c{bottom:876.480000px;}
.y13f{bottom:884.220000px;}
.yfd{bottom:888.810000px;}
.y95{bottom:892.860000px;}
.yd2{bottom:893.220000px;}
.y3b{bottom:894.030000px;}
.y11d{bottom:898.530000px;}
.y6{bottom:899.610000px;}
.y6d{bottom:901.860000px;}
.yfc{bottom:906.450000px;}
.y94{bottom:910.410000px;}
.yd1{bottom:910.860000px;}
.y3a{bottom:911.670000px;}
.yb5{bottom:919.410000px;}
.y174{bottom:919.860000px;}
.yfb{bottom:924.000000px;}
.yd0{bottom:928.410000px;}
.y39{bottom:929.220000px;}
.y5{bottom:935.610000px;}
.y93{bottom:936.960000px;}
.y6c{bottom:937.410000px;}
.yfa{bottom:941.550000px;}
.ycf{bottom:945.960000px;}
.y38{bottom:946.860000px;}
.y6b{bottom:954.960000px;}
.y37{bottom:964.410000px;}
.y4{bottom:971.700000px;}
.y6a{bottom:972.600000px;}
.yf9{bottom:977.190000px;}
.y173{bottom:981.600000px;}
.y36{bottom:981.960000px;}
.y69{bottom:990.150000px;}
.yf8{bottom:994.740000px;}
.y13e{bottom:999.150000px;}
.y35{bottom:999.600000px;}
.y68{bottom:1007.790000px;}
.yce{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.yf7{bottom:1012.320000px;}
.y13d{bottom:1016.820000px;}
.y34{bottom:1017.180000px;}
.y67{bottom:1025.370000px;}
.ycd{bottom:1025.820000px;}
.yf6{bottom:1029.960000px;}
.y13c{bottom:1034.370000px;}
.y33{bottom:1034.820000px;}
.y66{bottom:1042.920000px;}
.ycc{bottom:1043.370000px;}
.yf5{bottom:1047.510000px;}
.y158{bottom:1051.920000px;}
.y32{bottom:1052.370000px;}
.y65{bottom:1060.560000px;}
.ycb{bottom:1060.920000px;}
.yb4{bottom:1069.560000px;}
.y31{bottom:1069.920000px;}
.yf4{bottom:1074.420000px;}
.yca{bottom:1078.560000px;}
.y64{bottom:1087.110000px;}
.y30{bottom:1087.560000px;}
.yc9{bottom:1096.110000px;}
.y2f{bottom:1105.110000px;}
.yc8{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:111.239987px;}
.x2{left:211.079987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.395200pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:2.323200pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._8{margin-left:-3.153067pt;}
._6{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._2{width:1.834966pt;}
._3{width:2.814100pt;}
._5{width:4.102720pt;}
._4{width:5.113814pt;}
._e{width:6.824320pt;}
._c{width:7.748800pt;}
._d{width:8.725323pt;}
._7{width:10.367467pt;}
._15{width:12.847039pt;}
._b{width:14.083094pt;}
._12{width:15.189214pt;}
._11{width:16.192320pt;}
._f{width:17.100800pt;}
._13{width:18.543680pt;}
._14{width:19.452160pt;}
._16{width:20.788160pt;}
._17{width:21.803520pt;}
._10{width:23.032640pt;}
._9{width:24.011413pt;}
._a{width:25.271458pt;}
._33{width:29.659200pt;}
._32{width:30.621120pt;}
._35{width:35.804800pt;}
._34{width:36.766720pt;}
._26{width:37.888960pt;}
._27{width:38.875520pt;}
._2f{width:40.774720pt;}
._1d{width:43.660480pt;}
._1e{width:44.889600pt;}
._28{width:46.866880pt;}
._29{width:50.393920pt;}
._1b{width:66.639680pt;}
._1c{width:67.583467pt;}
._2d{width:70.808000pt;}
._2e{width:71.769920pt;}
._37{width:72.678400pt;}
._18{width:74.602240pt;}
._19{width:75.564160pt;}
._1f{width:83.900800pt;}
._2c{width:91.703040pt;}
._21{width:93.241173pt;}
._20{width:94.226347pt;}
._2a{width:95.901547pt;}
._2b{width:100.787840pt;}
._38{width:109.926080pt;}
._36{width:119.224640pt;}
._1a{width:122.110400pt;}
._22{width:145.143040pt;}
._23{width:158.396160pt;}
._24{width:170.740800pt;}
._25{width:172.023253pt;}
._30{width:188.696640pt;}
._31{width:189.818773pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yb3{bottom:99.306667pt;}
.yf3{bottom:99.706667pt;}
.yc7{bottom:107.306667pt;}
.y92{bottom:107.706667pt;}
.y172{bottom:111.626667pt;}
.y11c{bottom:112.506667pt;}
.yb2{bottom:114.906667pt;}
.yf2{bottom:115.306667pt;}
.y2a{bottom:116.986667pt;}
.y63{bottom:117.866667pt;}
.y91{bottom:123.306667pt;}
.y157{bottom:126.826667pt;}
.y171{bottom:127.226667pt;}
.y11b{bottom:128.106667pt;}
.yb1{bottom:130.586667pt;}
.yf1{bottom:130.906667pt;}
.y29{bottom:132.586667pt;}
.y62{bottom:133.546667pt;}
.y90{bottom:138.906667pt;}
.y156{bottom:142.506667pt;}
.y17e{bottom:142.826667pt;}
.y11a{bottom:143.706667pt;}
.yb0{bottom:146.186667pt;}
.yf0{bottom:146.586667pt;}
.y28{bottom:148.186667pt;}
.y61{bottom:149.146667pt;}
.y170{bottom:150.826667pt;}
.y13b{bottom:151.626667pt;}
.y8f{bottom:154.586667pt;}
.y155{bottom:158.106667pt;}
.y17d{bottom:158.506667pt;}
.y119{bottom:159.386667pt;}
.yef{bottom:162.186667pt;}
.y27{bottom:163.866667pt;}
.y16f{bottom:166.506667pt;}
.y13a{bottom:167.306667pt;}
.yaf{bottom:169.866667pt;}
.y8e{bottom:170.186667pt;}
.y60{bottom:173.066667pt;}
.y118{bottom:174.986667pt;}
.y26{bottom:179.466667pt;}
.y154{bottom:181.786667pt;}
.y16e{bottom:182.106667pt;}
.yc6{bottom:185.866667pt;}
.y117{bottom:190.666667pt;}
.y139{bottom:190.906667pt;}
.y8d{bottom:194.106667pt;}
.y25{bottom:195.146667pt;}
.y153{bottom:197.386667pt;}
.y17c{bottom:197.786667pt;}
.yae{bottom:201.466667pt;}
.y16d{bottom:205.786667pt;}
.y116{bottom:206.266667pt;}
.y138{bottom:206.506667pt;}
.y24{bottom:210.746667pt;}
.y5f{bottom:215.946667pt;}
.yad{bottom:217.066667pt;}
.yee{bottom:217.466667pt;}
.y152{bottom:220.986667pt;}
.y16c{bottom:221.386667pt;}
.y115{bottom:221.866667pt;}
.y137{bottom:222.186667pt;}
.y23{bottom:226.346667pt;}
.y5e{bottom:231.626667pt;}
.yac{bottom:232.746667pt;}
.yed{bottom:233.066667pt;}
.y151{bottom:236.666667pt;}
.y8c{bottom:236.986667pt;}
.y114{bottom:237.546667pt;}
.y22{bottom:242.026667pt;}
.y136{bottom:245.786667pt;}
.y5d{bottom:247.226667pt;}
.yab{bottom:248.346667pt;}
.yec{bottom:248.746667pt;}
.y8b{bottom:252.666667pt;}
.y113{bottom:253.146667pt;}
.yc5{bottom:256.346667pt;}
.y21{bottom:257.626667pt;}
.y150{bottom:260.266667pt;}
.y16b{bottom:260.666667pt;}
.y135{bottom:261.466667pt;}
.y5c{bottom:262.826667pt;}
.yaa{bottom:263.946667pt;}
.yeb{bottom:264.346667pt;}
.y8a{bottom:268.266667pt;}
.y112{bottom:268.826667pt;}
.y20{bottom:273.226667pt;}
.y14f{bottom:275.946667pt;}
.y16a{bottom:276.266667pt;}
.y134{bottom:277.066667pt;}
.y5b{bottom:278.506667pt;}
.ya9{bottom:279.626667pt;}
.yea{bottom:279.946667pt;}
.y89{bottom:283.946667pt;}
.y111{bottom:284.426667pt;}
.yc4{bottom:287.946667pt;}
.y1f{bottom:288.906667pt;}
.y14e{bottom:291.546667pt;}
.y169{bottom:291.946667pt;}
.ya8{bottom:295.226667pt;}
.ye9{bottom:295.626667pt;}
.y88{bottom:299.546667pt;}
.y110{bottom:300.026667pt;}
.y133{bottom:300.666667pt;}
.yc3{bottom:303.626667pt;}
.y1e{bottom:304.506667pt;}
.y17b{bottom:307.546667pt;}
.y5a{bottom:310.106667pt;}
.y87{bottom:315.146667pt;}
.y168{bottom:315.546667pt;}
.y10f{bottom:315.706667pt;}
.y132{bottom:316.346667pt;}
.ya7{bottom:319.146667pt;}
.yc2{bottom:319.226667pt;}
.y1d{bottom:320.186667pt;}
.y59{bottom:325.786667pt;}
.y86{bottom:330.826667pt;}
.y167{bottom:331.146667pt;}
.y131{bottom:331.946667pt;}
.yc1{bottom:334.906667pt;}
.y1c{bottom:335.786667pt;}
.y10e{bottom:339.626667pt;}
.y58{bottom:341.386667pt;}
.y166{bottom:346.826667pt;}
.yc0{bottom:350.506667pt;}
.ye8{bottom:350.906667pt;}
.y1b{bottom:351.386667pt;}
.y85{bottom:354.426667pt;}
.y130{bottom:355.626667pt;}
.y57{bottom:356.986667pt;}
.ya6{bottom:362.106667pt;}
.y17a{bottom:362.426667pt;}
.ybf{bottom:366.106667pt;}
.ye7{bottom:366.506667pt;}
.y14d{bottom:370.106667pt;}
.y165{bottom:370.426667pt;}
.y12f{bottom:371.226667pt;}
.y56{bottom:372.666667pt;}
.y1a{bottom:375.306667pt;}
.ya5{bottom:377.706667pt;}
.ybe{bottom:381.786667pt;}
.ye6{bottom:382.106667pt;}
.y10d{bottom:382.506667pt;}
.y14c{bottom:385.706667pt;}
.y84{bottom:386.106667pt;}
.y12e{bottom:386.826667pt;}
.y55{bottom:388.266667pt;}
.ya4{bottom:393.306667pt;}
.ybd{bottom:397.386667pt;}
.ye5{bottom:397.786667pt;}
.y10c{bottom:398.106667pt;}
.y83{bottom:401.706667pt;}
.y54{bottom:403.946667pt;}
.ya3{bottom:408.986667pt;}
.y14b{bottom:409.306667pt;}
.y12d{bottom:410.506667pt;}
.ye4{bottom:413.386667pt;}
.y10b{bottom:413.786667pt;}
.y82{bottom:417.306667pt;}
.y19{bottom:418.293333pt;}
.y53{bottom:419.573333pt;}
.ybc{bottom:421.093333pt;}
.ya2{bottom:424.613333pt;}
.y14a{bottom:425.013333pt;}
.y12c{bottom:426.133333pt;}
.ye3{bottom:429.093333pt;}
.y10a{bottom:429.413333pt;}
.y81{bottom:433.013333pt;}
.y18{bottom:434.213333pt;}
.y52{bottom:435.173333pt;}
.ya1{bottom:440.293333pt;}
.y149{bottom:440.613333pt;}
.y164{bottom:441.013333pt;}
.y12b{bottom:441.813333pt;}
.y109{bottom:445.093333pt;}
.y80{bottom:448.613333pt;}
.y51{bottom:450.853333pt;}
.ybb{bottom:452.693333pt;}
.y163{bottom:456.613333pt;}
.y108{bottom:460.693333pt;}
.ya0{bottom:463.893333pt;}
.y7f{bottom:464.293333pt;}
.y12a{bottom:465.653333pt;}
.y50{bottom:466.453333pt;}
.y17{bottom:467.093333pt;}
.yba{bottom:468.293333pt;}
.y179{bottom:472.293333pt;}
.y107{bottom:476.293333pt;}
.y7e{bottom:479.893333pt;}
.y162{bottom:480.293333pt;}
.y4f{bottom:482.133333pt;}
.y16{bottom:482.773333pt;}
.yb9{bottom:483.973333pt;}
.ye2{bottom:484.293333pt;}
.y9f{bottom:495.493333pt;}
.y161{bottom:495.893333pt;}
.y4e{bottom:497.733333pt;}
.y15{bottom:498.373333pt;}
.yb8{bottom:499.573333pt;}
.ye1{bottom:499.973333pt;}
.y7d{bottom:503.493333pt;}
.y106{bottom:507.973333pt;}
.y129{bottom:508.613333pt;}
.y9e{bottom:511.173333pt;}
.y178{bottom:511.493333pt;}
.y4d{bottom:513.333333pt;}
.y14{bottom:513.973333pt;}
.yb7{bottom:515.253333pt;}
.ye0{bottom:515.573333pt;}
.y148{bottom:519.173333pt;}
.y160{bottom:519.493333pt;}
.y105{bottom:523.573333pt;}
.y128{bottom:524.213333pt;}
.y9d{bottom:526.773333pt;}
.y4c{bottom:529.013333pt;}
.y13{bottom:529.653333pt;}
.ydf{bottom:531.253333pt;}
.y7c{bottom:535.173333pt;}
.yb6{bottom:539.173333pt;}
.y104{bottom:539.253333pt;}
.y127{bottom:539.893333pt;}
.y9c{bottom:542.453333pt;}
.y147{bottom:542.773333pt;}
.y4b{bottom:544.613333pt;}
.y12{bottom:545.253333pt;}
.yde{bottom:546.853333pt;}
.y7b{bottom:550.773333pt;}
.y103{bottom:554.853333pt;}
.y9b{bottom:558.053333pt;}
.y146{bottom:558.453333pt;}
.y4a{bottom:560.293333pt;}
.y11{bottom:560.853333pt;}
.ydd{bottom:562.453333pt;}
.y126{bottom:563.813333pt;}
.y7a{bottom:566.453333pt;}
.y102{bottom:570.453333pt;}
.y15f{bottom:574.453333pt;}
.y49{bottom:575.893333pt;}
.y10{bottom:576.533333pt;}
.y9a{bottom:581.653333pt;}
.y79{bottom:582.053333pt;}
.ydc{bottom:586.133333pt;}
.y15e{bottom:590.053333pt;}
.y48{bottom:591.493333pt;}
.yf{bottom:592.133333pt;}
.y125{bottom:596.693333pt;}
.y78{bottom:597.653333pt;}
.y15d{bottom:605.653333pt;}
.y47{bottom:607.173333pt;}
.ye{bottom:607.813333pt;}
.y77{bottom:613.333333pt;}
.ydb{bottom:617.733333pt;}
.y124{bottom:620.613333pt;}
.y145{bottom:621.333333pt;}
.y46{bottom:622.773333pt;}
.yd{bottom:623.413333pt;}
.y76{bottom:628.933333pt;}
.y15c{bottom:629.333333pt;}
.yda{bottom:633.413333pt;}
.y144{bottom:636.933333pt;}
.y45{bottom:638.453333pt;}
.yc{bottom:639.013333pt;}
.y99{bottom:644.613333pt;}
.y15b{bottom:644.933333pt;}
.yd9{bottom:649.013333pt;}
.y75{bottom:652.613333pt;}
.y123{bottom:653.493333pt;}
.y44{bottom:654.053333pt;}
.yb{bottom:654.693333pt;}
.y98{bottom:660.213333pt;}
.y143{bottom:660.613333pt;}
.yd8{bottom:664.613333pt;}
.y177{bottom:668.613333pt;}
.y43{bottom:669.653333pt;}
.ya{bottom:670.293333pt;}
.y97{bottom:675.813333pt;}
.y142{bottom:676.213333pt;}
.y122{bottom:677.413333pt;}
.yd7{bottom:680.293333pt;}
.y74{bottom:684.213333pt;}
.y42{bottom:685.333333pt;}
.y141{bottom:691.813333pt;}
.y9{bottom:694.293333pt;}
.yd6{bottom:695.893333pt;}
.y96{bottom:699.493333pt;}
.y73{bottom:699.813333pt;}
.y41{bottom:700.933333pt;}
.y176{bottom:707.813333pt;}
.y121{bottom:710.373333pt;}
.y101{bottom:711.573333pt;}
.y72{bottom:715.493333pt;}
.y40{bottom:716.613333pt;}
.yd5{bottom:719.813333pt;}
.y175{bottom:723.493333pt;}
.y120{bottom:725.973333pt;}
.y71{bottom:731.093333pt;}
.y3f{bottom:732.213333pt;}
.y8{bottom:735.813333pt;}
.y15a{bottom:739.093333pt;}
.y11f{bottom:741.573333pt;}
.y100{bottom:743.173333pt;}
.y70{bottom:746.693333pt;}
.y3e{bottom:747.813333pt;}
.y159{bottom:754.693333pt;}
.yff{bottom:758.773333pt;}
.y6f{bottom:762.373333pt;}
.yd4{bottom:762.693333pt;}
.y3d{bottom:763.493333pt;}
.y11e{bottom:765.493333pt;}
.y7{bottom:767.653333pt;}
.y140{bottom:770.373333pt;}
.yfe{bottom:774.453333pt;}
.y6e{bottom:777.973333pt;}
.yd3{bottom:778.373333pt;}
.y3c{bottom:779.093333pt;}
.y13f{bottom:785.973333pt;}
.yfd{bottom:790.053333pt;}
.y95{bottom:793.653333pt;}
.yd2{bottom:793.973333pt;}
.y3b{bottom:794.693333pt;}
.y11d{bottom:798.693333pt;}
.y6{bottom:799.653333pt;}
.y6d{bottom:801.653333pt;}
.yfc{bottom:805.733333pt;}
.y94{bottom:809.253333pt;}
.yd1{bottom:809.653333pt;}
.y3a{bottom:810.373333pt;}
.yb5{bottom:817.253333pt;}
.y174{bottom:817.653333pt;}
.yfb{bottom:821.333333pt;}
.yd0{bottom:825.253333pt;}
.y39{bottom:825.973333pt;}
.y5{bottom:831.653333pt;}
.y93{bottom:832.853333pt;}
.y6c{bottom:833.253333pt;}
.yfa{bottom:836.933333pt;}
.ycf{bottom:840.853333pt;}
.y38{bottom:841.653333pt;}
.y6b{bottom:848.853333pt;}
.y37{bottom:857.253333pt;}
.y4{bottom:863.733333pt;}
.y6a{bottom:864.533333pt;}
.yf9{bottom:868.613333pt;}
.y173{bottom:872.533333pt;}
.y36{bottom:872.853333pt;}
.y69{bottom:880.133333pt;}
.yf8{bottom:884.213333pt;}
.y13e{bottom:888.133333pt;}
.y35{bottom:888.533333pt;}
.y68{bottom:895.813333pt;}
.yce{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.yf7{bottom:899.840000pt;}
.y13d{bottom:903.840000pt;}
.y34{bottom:904.160000pt;}
.y67{bottom:911.440000pt;}
.ycd{bottom:911.840000pt;}
.yf6{bottom:915.520000pt;}
.y13c{bottom:919.440000pt;}
.y33{bottom:919.840000pt;}
.y66{bottom:927.040000pt;}
.ycc{bottom:927.440000pt;}
.yf5{bottom:931.120000pt;}
.y158{bottom:935.040000pt;}
.y32{bottom:935.440000pt;}
.y65{bottom:942.720000pt;}
.ycb{bottom:943.040000pt;}
.yb4{bottom:950.720000pt;}
.y31{bottom:951.040000pt;}
.yf4{bottom:955.040000pt;}
.yca{bottom:958.720000pt;}
.y64{bottom:966.320000pt;}
.y30{bottom:966.720000pt;}
.yc9{bottom:974.320000pt;}
.y2f{bottom:982.320000pt;}
.yc8{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:98.879988pt;}
.x2{left:187.626655pt;}
.x3{left:711.413322pt;}
}




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