
    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_b45f2ac76888442f750b087f.woff2')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_5308af35ec3512e39856c960.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c653d69293ea770d969d99b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a3fa6a93672361aff8deb3a9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7869fca57430c726353c1d76.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a78879e799a8767d6c0dd04.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d0d73d8ad9bf28929bedcf95.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_152e107f8baf47c994797e1d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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;}
.lsa{letter-spacing:-0.186600px;}
.ls1d{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls19{letter-spacing:-0.048960px;}
.ls14{letter-spacing:-0.031680px;}
.ls16{letter-spacing:-0.014760px;}
.ls1a{letter-spacing:-0.009000px;}
.ls17{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsf{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.095400px;}
.ls18{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls4{letter-spacing:80.344800px;}
.ls1b{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:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.321800px;}
.ws7{word-spacing:-13.275600px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws13{word-spacing:-13.217400px;}
.wsf{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.177440px;}
.wsd{word-spacing:-13.162800px;}
.ws14{word-spacing:-13.065600px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._6{margin-left:-3.670440px;}
._5{margin-left:-2.224200px;}
._0{margin-left:-1.110000px;}
._3{width:1.067544px;}
._8{width:2.340595px;}
._2{width:3.959364px;}
._1{width:5.111040px;}
._11{width:6.252480px;}
._e{width:7.394760px;}
._d{width:8.657400px;}
._b{width:9.916803px;}
._a{width:10.941600px;}
._4{width:12.139800px;}
._f{width:14.501880px;}
._c{width:16.379999px;}
._7{width:17.615400px;}
._9{width:18.817199px;}
._12{width:20.165401px;}
._13{width:21.165596px;}
._1c{width:22.871040px;}
._10{width:23.927760px;}
._18{width:25.320000px;}
._15{width:27.595080px;}
._14{width:31.983840px;}
._1a{width:46.112040px;}
._1b{width:47.249280px;}
._16{width:49.899600px;}
._17{width:51.342480px;}
._1f{width:173.867040px;}
._20{width:175.009320px;}
._1d{width:257.013000px;}
._1e{width:258.322296px;}
._19{width:350.824200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:7.830000px;}
.y6c{bottom:7.920000px;}
.y150{bottom:7.950000px;}
.y69{bottom:25.470000px;}
.y11b{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y1ad{bottom:112.170000px;}
.y173{bottom:113.790000px;}
.ye4{bottom:118.560000px;}
.y14c{bottom:121.080000px;}
.y63{bottom:123.510000px;}
.y185{bottom:126.210000px;}
.y8c{bottom:127.470000px;}
.yba{bottom:128.730000px;}
.y125{bottom:130.260000px;}
.y1ac{bottom:130.620000px;}
.y172{bottom:131.340000px;}
.ye3{bottom:136.110000px;}
.y62{bottom:141.960000px;}
.y1d5{bottom:143.940000px;}
.y184{bottom:144.570000px;}
.y8b{bottom:145.110000px;}
.y51{bottom:145.740000px;}
.yb9{bottom:146.370000px;}
.y138{bottom:148.530000px;}
.y124{bottom:148.710000px;}
.y171{bottom:148.980000px;}
.y26{bottom:150.060000px;}
.ye2{bottom:153.660000px;}
.y14b{bottom:156.630000px;}
.y61{bottom:160.320000px;}
.y1d4{bottom:161.490000px;}
.y8a{bottom:162.660000px;}
.y183{bottom:163.020000px;}
.yb8{bottom:163.920000px;}
.y50{bottom:164.190000px;}
.y170{bottom:166.530000px;}
.y123{bottom:167.070000px;}
.y25{bottom:167.610000px;}
.ye1{bottom:171.300000px;}
.y111{bottom:173.190000px;}
.y137{bottom:175.800000px;}
.y60{bottom:178.770000px;}
.y1d3{bottom:179.040000px;}
.yb7{bottom:181.470000px;}
.y4f{bottom:182.640000px;}
.y16f{bottom:184.980000px;}
.y1ab{bottom:185.430000px;}
.y122{bottom:185.520000px;}
.y24{bottom:186.060000px;}
.ye0{bottom:188.850000px;}
.y89{bottom:189.300000px;}
.y110{bottom:191.640000px;}
.y4e{bottom:201.090000px;}
.y16e{bottom:202.530000px;}
.y1aa{bottom:203.070000px;}
.y136{bottom:203.160000px;}
.y121{bottom:203.970000px;}
.y23{bottom:204.420000px;}
.y1d2{bottom:205.680000px;}
.y10f{bottom:210.000000px;}
.y5f{bottom:215.220000px;}
.yb6{bottom:217.110000px;}
.y182{bottom:217.920000px;}
.y16d{bottom:220.080000px;}
.y120{bottom:221.520000px;}
.y22{bottom:222.870000px;}
.y1d1{bottom:223.230000px;}
.ydf{bottom:224.400000px;}
.y88{bottom:225.210000px;}
.y10e{bottom:228.450000px;}
.y1a9{bottom:229.980000px;}
.y135{bottom:230.520000px;}
.yb5{bottom:234.660000px;}
.y4d{bottom:237.540000px;}
.y16c{bottom:238.530000px;}
.y21{bottom:240.420000px;}
.y5e{bottom:241.770000px;}
.yde{bottom:242.040000px;}
.y181{bottom:244.470000px;}
.y10d{bottom:246.900000px;}
.y1d0{bottom:249.870000px;}
.yb4{bottom:252.300000px;}
.y16b{bottom:256.080000px;}
.y134{bottom:257.880000px;}
.y11f{bottom:257.970000px;}
.ydd{bottom:259.590000px;}
.y1cf{bottom:267.420000px;}
.y20{bottom:267.870000px;}
.yb3{bottom:269.850000px;}
.y4c{bottom:273.000000px;}
.y87{bottom:273.360000px;}
.y16a{bottom:273.630000px;}
.ydc{bottom:277.230000px;}
.y5d{bottom:277.410000px;}
.y1a8{bottom:278.130000px;}
.y180{bottom:280.020000px;}
.y10c{bottom:283.260000px;}
.y133{bottom:285.150000px;}
.yb2{bottom:287.400000px;}
.y11e{bottom:290.910000px;}
.y4b{bottom:291.450000px;}
.y86{bottom:291.810000px;}
.y1ce{bottom:293.970000px;}
.ydb{bottom:294.780000px;}
.y5c{bottom:294.960000px;}
.y1a7{bottom:296.580000px;}
.y1f{bottom:303.510000px;}
.y4a{bottom:309.900000px;}
.y169{bottom:310.080000px;}
.y85{bottom:310.260000px;}
.y1cd{bottom:311.610000px;}
.y132{bottom:312.510000px;}
.y1a6{bottom:315.030000px;}
.y17f{bottom:315.660000px;}
.y10b{bottom:318.810000px;}
.y1e{bottom:321.060000px;}
.y5b{bottom:321.600000px;}
.yb1{bottom:323.040000px;}
.y49{bottom:328.260000px;}
.y84{bottom:328.620000px;}
.y1cc{bottom:329.160000px;}
.yda{bottom:330.330000px;}
.y1a5{bottom:333.390000px;}
.y11d{bottom:335.820000px;}
.y168{bottom:336.720000px;}
.y10a{bottom:337.260000px;}
.y1d{bottom:338.610000px;}
.yb0{bottom:340.590000px;}
.y17e{bottom:347.880000px;}
.yd9{bottom:347.970000px;}
.y1a4{bottom:351.840000px;}
.y109{bottom:355.710000px;}
.y1cb{bottom:355.800000px;}
.y1c{bottom:356.250000px;}
.y5a{bottom:357.060000px;}
.yaf{bottom:358.230000px;}
.y48{bottom:364.710000px;}
.y83{bottom:365.070000px;}
.yd8{bottom:365.520000px;}
.y167{bottom:372.270000px;}
.y1ca{bottom:373.350000px;}
.y1b{bottom:373.800000px;}
.y108{bottom:374.070000px;}
.y59{bottom:375.510000px;}
.y131{bottom:378.750000px;}
.y11c{bottom:380.730000px;}
.y47{bottom:382.350000px;}
.yd7{bottom:383.160000px;}
.yae{bottom:384.780000px;}
.y1a3{bottom:388.290000px;}
.y166{bottom:389.910000px;}
.y1c9{bottom:390.900000px;}
.y82{bottom:391.710000px;}
.y58{bottom:393.960000px;}
.yd6{bottom:400.710000px;}
.y46{bottom:408.900000px;}
.y1a{bottom:409.440000px;}
.y107{bottom:410.520000px;}
.y57{bottom:412.320000px;}
.y130{bottom:414.390000px;}
.y1a2{bottom:414.840000px;}
.y1c8{bottom:417.540000px;}
.yad{bottom:420.330000px;}
.y165{bottom:425.460000px;}
.y11a{bottom:425.640000px;}
.y19{bottom:426.990000px;}
.y81{bottom:427.170000px;}
.y106{bottom:428.160000px;}
.y1c7{bottom:435.090000px;}
.yd5{bottom:436.260000px;}
.yac{bottom:437.970000px;}
.y12f{bottom:440.940000px;}
.y164{bottom:443.010000px;}
.y45{bottom:444.450000px;}
.y18{bottom:444.540000px;}
.y80{bottom:445.620000px;}
.y56{bottom:448.770000px;}
.y1a1{bottom:450.390000px;}
.y1c6{bottom:452.730000px;}
.yd4{bottom:454.710000px;}
.yab{bottom:455.520000px;}
.y44{bottom:462.090000px;}
.y17{bottom:462.180000px;}
.y7f{bottom:464.070000px;}
.y55{bottom:466.410000px;}
.y1a0{bottom:468.840000px;}
.yd3{bottom:473.100000px;}
.y12e{bottom:476.610000px;}
.y163{bottom:478.680000px;}
.y1c5{bottom:479.310000px;}
.y16{bottom:479.760000px;}
.y7e{bottom:482.460000px;}
.y19f{bottom:487.320000px;}
.y105{bottom:490.290000px;}
.yaa{bottom:491.100000px;}
.y12d{bottom:494.160000px;}
.y162{bottom:496.230000px;}
.y1c4{bottom:496.860000px;}
.y15{bottom:497.310000px;}
.y43{bottom:497.580000px;}
.y54{bottom:501.990000px;}
.y19e{bottom:505.680000px;}
.y104{bottom:507.930000px;}
.ya9{bottom:509.550000px;}
.y12c{bottom:511.710000px;}
.y161{bottom:513.870000px;}
.y1c3{bottom:514.500000px;}
.y42{bottom:516.030000px;}
.y7d{bottom:518.910000px;}
.y53{bottom:519.540000px;}
.y19d{bottom:524.130000px;}
.y14{bottom:524.220000px;}
.y103{bottom:525.480000px;}
.yd2{bottom:527.190000px;}
.ya8{bottom:527.910000px;}
.y41{bottom:534.480000px;}
.y1c2{bottom:541.050000px;}
.y102{bottom:543.030000px;}
.y119{bottom:545.190000px;}
.y7c{bottom:545.550000px;}
.ya7{bottom:546.360000px;}
.y12b{bottom:547.350000px;}
.y160{bottom:549.330000px;}
.y52{bottom:551.760000px;}
.y40{bottom:552.930000px;}
.y1c1{bottom:558.690000px;}
.y14a{bottom:559.050000px;}
.y19c{bottom:560.580000px;}
.y101{bottom:561.480000px;}
.yd1{bottom:562.740000px;}
.ya6{bottom:563.910000px;}
.y15f{bottom:567.780000px;}
.y13{bottom:572.820000px;}
.y149{bottom:576.600000px;}
.y100{bottom:579.120000px;}
.y12a{bottom:579.570000px;}
.yd0{bottom:580.290000px;}
.y7b{bottom:581.010000px;}
.ya5{bottom:582.360000px;}
.y1c0{bottom:585.240000px;}
.y15e{bottom:586.230000px;}
.y19b{bottom:587.130000px;}
.y118{bottom:589.290000px;}
.y3f{bottom:589.380000px;}
.y148{bottom:594.150000px;}
.yff{bottom:596.670000px;}
.ycf{bottom:597.930000px;}
.y7a{bottom:599.460000px;}
.y1bf{bottom:602.790000px;}
.y15d{bottom:604.590000px;}
.y12{bottom:609.900000px;}
.yfe{bottom:614.220000px;}
.yce{bottom:615.480000px;}
.y79{bottom:617.910000px;}
.ya4{bottom:618.810000px;}
.y1be{bottom:620.430000px;}
.y19a{bottom:622.680000px;}
.y3e{bottom:624.840000px;}
.y117{bottom:624.930000px;}
.y11{bottom:627.450000px;}
.y147{bottom:629.790000px;}
.yfd{bottom:632.670000px;}
.y78{bottom:636.360000px;}
.y15c{bottom:641.040000px;}
.y199{bottom:641.130000px;}
.y116{bottom:642.480000px;}
.y3d{bottom:643.290000px;}
.y10{bottom:645.090000px;}
.y1bd{bottom:646.980000px;}
.y146{bottom:647.340000px;}
.yfc{bottom:650.220000px;}
.ycd{bottom:651.120000px;}
.ya3{bottom:654.360000px;}
.y198{bottom:659.490000px;}
.y115{bottom:660.120000px;}
.y3c{bottom:661.740000px;}
.yf{bottom:662.640000px;}
.y1bc{bottom:664.620000px;}
.y145{bottom:664.980000px;}
.yfb{bottom:667.860000px;}
.ycc{bottom:668.670000px;}
.ya2{bottom:672.000000px;}
.y77{bottom:672.810000px;}
.y15b{bottom:674.070000px;}
.y197{bottom:677.940000px;}
.y3b{bottom:680.100000px;}
.ye{bottom:680.190000px;}
.y1bb{bottom:682.170000px;}
.y144{bottom:682.530000px;}
.yfa{bottom:685.410000px;}
.ycb{bottom:686.220000px;}
.y114{bottom:687.030000px;}
.ya1{bottom:689.550000px;}
.y196{bottom:696.390000px;}
.yd{bottom:697.830000px;}
.y3a{bottom:698.550000px;}
.y76{bottom:699.360000px;}
.y15a{bottom:701.340000px;}
.yf9{bottom:702.960000px;}
.ya0{bottom:707.190000px;}
.y1ba{bottom:709.080000px;}
.yca{bottom:712.860000px;}
.yc{bottom:715.380000px;}
.y143{bottom:718.080000px;}
.yf8{bottom:721.410000px;}
.y9f{bottom:724.740000px;}
.y159{bottom:728.700000px;}
.y195{bottom:732.840000px;}
.yb{bottom:733.020000px;}
.y75{bottom:734.910000px;}
.y39{bottom:735.000000px;}
.y113{bottom:735.270000px;}
.y142{bottom:736.530000px;}
.yf7{bottom:739.050000px;}
.yc9{bottom:748.410000px;}
.y38{bottom:752.550000px;}
.y74{bottom:753.360000px;}
.y141{bottom:754.890000px;}
.y158{bottom:756.060000px;}
.yf6{bottom:756.600000px;}
.y1b9{bottom:757.320000px;}
.y194{bottom:759.390000px;}
.ya{bottom:759.930000px;}
.y9e{bottom:760.290000px;}
.y1e2{bottom:760.740000px;}
.yc8{bottom:766.050000px;}
.y112{bottom:767.490000px;}
.y73{bottom:771.720000px;}
.y140{bottom:773.340000px;}
.yf5{bottom:774.150000px;}
.y9d{bottom:777.930000px;}
.y1e1{bottom:778.290000px;}
.y37{bottom:779.190000px;}
.y157{bottom:783.420000px;}
.yc7{bottom:783.600000px;}
.y1b8{bottom:784.230000px;}
.y72{bottom:790.170000px;}
.yf4{bottom:791.700000px;}
.y193{bottom:794.940000px;}
.y9c{bottom:795.480000px;}
.yc6{bottom:801.150000px;}
.y1e0{bottom:804.930000px;}
.y9{bottom:806.640000px;}
.y71{bottom:808.530000px;}
.y13f{bottom:809.790000px;}
.yf3{bottom:810.150000px;}
.y156{bottom:810.690000px;}
.y9b{bottom:813.030000px;}
.y192{bottom:813.390000px;}
.y36{bottom:814.740000px;}
.y1b7{bottom:821.580000px;}
.y1df{bottom:822.480000px;}
.yf2{bottom:828.600000px;}
.y9a{bottom:830.670000px;}
.y191{bottom:831.750000px;}
.y35{bottom:832.380000px;}
.y13e{bottom:836.340000px;}
.yc5{bottom:836.790000px;}
.y155{bottom:838.050000px;}
.y8{bottom:842.280000px;}
.y70{bottom:844.980000px;}
.yf1{bottom:846.960000px;}
.y1de{bottom:849.030000px;}
.y34{bottom:849.930000px;}
.y190{bottom:850.200000px;}
.yc4{bottom:854.340000px;}
.yf0{bottom:865.410000px;}
.y99{bottom:866.220000px;}
.y1dd{bottom:866.670000px;}
.y18f{bottom:868.560000px;}
.y1b6{bottom:869.820000px;}
.y6f{bottom:871.530000px;}
.yc3{bottom:871.890000px;}
.y7{bottom:877.830000px;}
.y98{bottom:883.860000px;}
.y1dc{bottom:884.220000px;}
.y33{bottom:885.480000px;}
.y1b5{bottom:887.460000px;}
.yc2{bottom:889.530000px;}
.y13d{bottom:890.340000px;}
.y154{bottom:892.680000px;}
.y97{bottom:901.410000px;}
.y6e{bottom:901.590000px;}
.yef{bottom:901.860000px;}
.y32{bottom:903.930000px;}
.y17d{bottom:904.740000px;}
.y18e{bottom:905.010000px;}
.yc1{bottom:907.080000px;}
.y13c{bottom:908.790000px;}
.y1db{bottom:910.860000px;}
.y6{bottom:913.380000px;}
.y96{bottom:918.960000px;}
.yee{bottom:919.410000px;}
.y153{bottom:920.040000px;}
.y31{bottom:921.480000px;}
.y17c{bottom:922.380000px;}
.y1b4{bottom:922.920000px;}
.y13b{bottom:926.340000px;}
.y1da{bottom:928.410000px;}
.y6d{bottom:928.860000px;}
.y18d{bottom:931.650000px;}
.y95{bottom:936.600000px;}
.yed{bottom:936.960000px;}
.y30{bottom:939.930000px;}
.y1b3{bottom:941.370000px;}
.yc0{bottom:942.630000px;}
.y13a{bottom:944.700000px;}
.y1d9{bottom:945.960000px;}
.y152{bottom:947.400000px;}
.y17b{bottom:949.200000px;}
.y5{bottom:949.290000px;}
.yec{bottom:954.600000px;}
.y6b{bottom:956.220000px;}
.y2f{bottom:958.380000px;}
.y1b2{bottom:959.820000px;}
.ybf{bottom:961.080000px;}
.y94{bottom:963.150000px;}
.y18c{bottom:967.110000px;}
.y1d8{bottom:972.600000px;}
.y151{bottom:974.760000px;}
.y2e{bottom:975.930000px;}
.y1b1{bottom:978.270000px;}
.ybe{bottom:979.530000px;}
.y139{bottom:981.150000px;}
.y68{bottom:983.580000px;}
.y18b{bottom:985.560000px;}
.y4{bottom:987.630000px;}
.yeb{bottom:990.150000px;}
.y1b0{bottom:996.630000px;}
.ybd{bottom:997.080000px;}
.y17a{bottom:997.530000px;}
.y93{bottom:998.790000px;}
.y129{bottom:999.150000px;}
.y14f{bottom:1002.030000px;}
.y18a{bottom:1004.010000px;}
.yea{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y179{bottom:1015.110000px;}
.ybc{bottom:1015.560000px;}
.y128{bottom:1016.820000px;}
.y189{bottom:1022.400000px;}
.ye9{bottom:1025.370000px;}
.y14e{bottom:1029.420000px;}
.y2d{bottom:1029.960000px;}
.ybb{bottom:1033.110000px;}
.y92{bottom:1034.370000px;}
.y188{bottom:1040.850000px;}
.ye8{bottom:1042.920000px;}
.y2c{bottom:1047.510000px;}
.y67{bottom:1049.850000px;}
.y178{bottom:1050.750000px;}
.y91{bottom:1051.920000px;}
.ye7{bottom:1060.560000px;}
.y1d7{bottom:1060.920000px;}
.y2b{bottom:1065.150000px;}
.y177{bottom:1068.300000px;}
.y1af{bottom:1068.750000px;}
.y90{bottom:1069.560000px;}
.y187{bottom:1077.300000px;}
.y14d{bottom:1078.110000px;}
.y1d6{bottom:1078.560000px;}
.y66{bottom:1085.490000px;}
.y176{bottom:1085.850000px;}
.y1ae{bottom:1086.300000px;}
.y8f{bottom:1087.110000px;}
.y127{bottom:1087.560000px;}
.y2a{bottom:1091.700000px;}
.ye6{bottom:1096.110000px;}
.y186{bottom:1103.850000px;}
.y175{bottom:1104.300000px;}
.y126{bottom:1105.110000px;}
.ye5{bottom:1113.750000px;}
.y65{bottom:1120.950000px;}
.y174{bottom:1121.850000px;}
.y8e{bottom:1122.750000px;}
.y29{bottom:1127.610000px;}
.y64{bottom:1139.400000px;}
.y8d{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hf{height:26.550000px;}
.he{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:26.995781px;}
.h3{height:39.155273px;}
.h11{height:44.190000px;}
.hd{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.hb{height:61.793886px;}
.h10{height:61.860000px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:33.660000px;}
.w3{width:71.760000px;}
.w15{width:75.690000px;}
.w16{width:75.720000px;}
.wa{width:77.610000px;}
.w13{width:86.130000px;}
.wb{width:98.820000px;}
.wf{width:102.600000px;}
.w5{width:103.050000px;}
.w4{width:107.910000px;}
.w6{width:116.220000px;}
.w7{width:126.810000px;}
.wc{width:127.710000px;}
.w8{width:136.440000px;}
.we{width:152.910000px;}
.wd{width:157.710000px;}
.w11{width:158.760000px;}
.w12{width:179.940000px;}
.w10{width:219.990000px;}
.w14{width:227.010000px;}
.w17{width:609.180000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.870000px;}
.x1{left:68.040000px;}
.x7{left:93.329987px;}
.x2{left:95.040000px;}
.x12{left:103.230000px;}
.x28{left:111.239987px;}
.x9{left:113.670000px;}
.x3{left:122.040000px;}
.x1a{left:123.120000px;}
.x20{left:142.020000px;}
.x27{left:151.559987px;}
.x13{left:181.650000px;}
.x19{left:183.359987px;}
.xb{left:186.150000px;}
.x11{left:188.039987px;}
.x1f{left:192.269987px;}
.x4{left:202.799987px;}
.x14{left:281.190000px;}
.xc{left:294.780000px;}
.x1b{left:343.830000px;}
.x21{left:369.840000px;}
.xd{left:398.640000px;}
.x15{left:409.710000px;}
.x8{left:420.779987px;}
.x22{left:446.250000px;}
.x1c{left:503.400000px;}
.xe{left:515.580000px;}
.x23{left:522.690000px;}
.x16{left:568.230000px;}
.x24{left:599.100000px;}
.xf{left:643.110000px;}
.x25{left:675.510000px;}
.x1d{left:684.060000px;}
.x17{left:721.860000px;}
.x1e{left:736.889987px;}
.x18{left:765.059987px;}
.x6{left:771.809987px;}
.x26{left:772.889987px;}
.x5{left:792.059987px;}
.x10{left:808.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls1d{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls14{letter-spacing:-0.028160pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls1a{letter-spacing:-0.008000pt;}
.ls17{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsf{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.084800pt;}
.ls18{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls4{letter-spacing:71.417600pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.841600pt;}
.ws7{word-spacing:-11.800533pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws13{word-spacing:-11.748800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.713280pt;}
.wsd{word-spacing:-11.700267pt;}
.ws14{word-spacing:-11.613867pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._6{margin-left:-3.262614pt;}
._5{margin-left:-1.977066pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.948928pt;}
._8{width:2.080529pt;}
._2{width:3.519435pt;}
._1{width:4.543147pt;}
._11{width:5.557760pt;}
._e{width:6.573120pt;}
._d{width:7.695467pt;}
._b{width:8.814936pt;}
._a{width:9.725866pt;}
._4{width:10.790933pt;}
._f{width:12.890560pt;}
._c{width:14.559999pt;}
._7{width:15.658134pt;}
._9{width:16.726399pt;}
._12{width:17.924801pt;}
._13{width:18.813863pt;}
._1c{width:20.329813pt;}
._10{width:21.269120pt;}
._18{width:22.506667pt;}
._15{width:24.528960pt;}
._14{width:28.430080pt;}
._1a{width:40.988480pt;}
._1b{width:41.999360pt;}
._16{width:44.355200pt;}
._17{width:45.637760pt;}
._1f{width:154.548480pt;}
._20{width:155.563840pt;}
._1d{width:228.456000pt;}
._1e{width:229.619818pt;}
._19{width:311.843733pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:6.960000pt;}
.y6c{bottom:7.040000pt;}
.y150{bottom:7.066667pt;}
.y69{bottom:22.640000pt;}
.y11b{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y1ad{bottom:99.706667pt;}
.y173{bottom:101.146667pt;}
.ye4{bottom:105.386667pt;}
.y14c{bottom:107.626667pt;}
.y63{bottom:109.786667pt;}
.y185{bottom:112.186667pt;}
.y8c{bottom:113.306667pt;}
.yba{bottom:114.426667pt;}
.y125{bottom:115.786667pt;}
.y1ac{bottom:116.106667pt;}
.y172{bottom:116.746667pt;}
.ye3{bottom:120.986667pt;}
.y62{bottom:126.186667pt;}
.y1d5{bottom:127.946667pt;}
.y184{bottom:128.506667pt;}
.y8b{bottom:128.986667pt;}
.y51{bottom:129.546667pt;}
.yb9{bottom:130.106667pt;}
.y138{bottom:132.026667pt;}
.y124{bottom:132.186667pt;}
.y171{bottom:132.426667pt;}
.y26{bottom:133.386667pt;}
.ye2{bottom:136.586667pt;}
.y14b{bottom:139.226667pt;}
.y61{bottom:142.506667pt;}
.y1d4{bottom:143.546667pt;}
.y8a{bottom:144.586667pt;}
.y183{bottom:144.906667pt;}
.yb8{bottom:145.706667pt;}
.y50{bottom:145.946667pt;}
.y170{bottom:148.026667pt;}
.y123{bottom:148.506667pt;}
.y25{bottom:148.986667pt;}
.ye1{bottom:152.266667pt;}
.y111{bottom:153.946667pt;}
.y137{bottom:156.266667pt;}
.y60{bottom:158.906667pt;}
.y1d3{bottom:159.146667pt;}
.yb7{bottom:161.306667pt;}
.y4f{bottom:162.346667pt;}
.y16f{bottom:164.426667pt;}
.y1ab{bottom:164.826667pt;}
.y122{bottom:164.906667pt;}
.y24{bottom:165.386667pt;}
.ye0{bottom:167.866667pt;}
.y89{bottom:168.266667pt;}
.y110{bottom:170.346667pt;}
.y4e{bottom:178.746667pt;}
.y16e{bottom:180.026667pt;}
.y1aa{bottom:180.506667pt;}
.y136{bottom:180.586667pt;}
.y121{bottom:181.306667pt;}
.y23{bottom:181.706667pt;}
.y1d2{bottom:182.826667pt;}
.y10f{bottom:186.666667pt;}
.y5f{bottom:191.306667pt;}
.yb6{bottom:192.986667pt;}
.y182{bottom:193.706667pt;}
.y16d{bottom:195.626667pt;}
.y120{bottom:196.906667pt;}
.y22{bottom:198.106667pt;}
.y1d1{bottom:198.426667pt;}
.ydf{bottom:199.466667pt;}
.y88{bottom:200.186667pt;}
.y10e{bottom:203.066667pt;}
.y1a9{bottom:204.426667pt;}
.y135{bottom:204.906667pt;}
.yb5{bottom:208.586667pt;}
.y4d{bottom:211.146667pt;}
.y16c{bottom:212.026667pt;}
.y21{bottom:213.706667pt;}
.y5e{bottom:214.906667pt;}
.yde{bottom:215.146667pt;}
.y181{bottom:217.306667pt;}
.y10d{bottom:219.466667pt;}
.y1d0{bottom:222.106667pt;}
.yb4{bottom:224.266667pt;}
.y16b{bottom:227.626667pt;}
.y134{bottom:229.226667pt;}
.y11f{bottom:229.306667pt;}
.ydd{bottom:230.746667pt;}
.y1cf{bottom:237.706667pt;}
.y20{bottom:238.106667pt;}
.yb3{bottom:239.866667pt;}
.y4c{bottom:242.666667pt;}
.y87{bottom:242.986667pt;}
.y16a{bottom:243.226667pt;}
.ydc{bottom:246.426667pt;}
.y5d{bottom:246.586667pt;}
.y1a8{bottom:247.226667pt;}
.y180{bottom:248.906667pt;}
.y10c{bottom:251.786667pt;}
.y133{bottom:253.466667pt;}
.yb2{bottom:255.466667pt;}
.y11e{bottom:258.586667pt;}
.y4b{bottom:259.066667pt;}
.y86{bottom:259.386667pt;}
.y1ce{bottom:261.306667pt;}
.ydb{bottom:262.026667pt;}
.y5c{bottom:262.186667pt;}
.y1a7{bottom:263.626667pt;}
.y1f{bottom:269.786667pt;}
.y4a{bottom:275.466667pt;}
.y169{bottom:275.626667pt;}
.y85{bottom:275.786667pt;}
.y1cd{bottom:276.986667pt;}
.y132{bottom:277.786667pt;}
.y1a6{bottom:280.026667pt;}
.y17f{bottom:280.586667pt;}
.y10b{bottom:283.386667pt;}
.y1e{bottom:285.386667pt;}
.y5b{bottom:285.866667pt;}
.yb1{bottom:287.146667pt;}
.y49{bottom:291.786667pt;}
.y84{bottom:292.106667pt;}
.y1cc{bottom:292.586667pt;}
.yda{bottom:293.626667pt;}
.y1a5{bottom:296.346667pt;}
.y11d{bottom:298.506667pt;}
.y168{bottom:299.306667pt;}
.y10a{bottom:299.786667pt;}
.y1d{bottom:300.986667pt;}
.yb0{bottom:302.746667pt;}
.y17e{bottom:309.226667pt;}
.yd9{bottom:309.306667pt;}
.y1a4{bottom:312.746667pt;}
.y109{bottom:316.186667pt;}
.y1cb{bottom:316.266667pt;}
.y1c{bottom:316.666667pt;}
.y5a{bottom:317.386667pt;}
.yaf{bottom:318.426667pt;}
.y48{bottom:324.186667pt;}
.y83{bottom:324.506667pt;}
.yd8{bottom:324.906667pt;}
.y167{bottom:330.906667pt;}
.y1ca{bottom:331.866667pt;}
.y1b{bottom:332.266667pt;}
.y108{bottom:332.506667pt;}
.y59{bottom:333.786667pt;}
.y131{bottom:336.666667pt;}
.y11c{bottom:338.426667pt;}
.y47{bottom:339.866667pt;}
.yd7{bottom:340.586667pt;}
.yae{bottom:342.026667pt;}
.y1a3{bottom:345.146667pt;}
.y166{bottom:346.586667pt;}
.y1c9{bottom:347.466667pt;}
.y82{bottom:348.186667pt;}
.y58{bottom:350.186667pt;}
.yd6{bottom:356.186667pt;}
.y46{bottom:363.466667pt;}
.y1a{bottom:363.946667pt;}
.y107{bottom:364.906667pt;}
.y57{bottom:366.506667pt;}
.y130{bottom:368.346667pt;}
.y1a2{bottom:368.746667pt;}
.y1c8{bottom:371.146667pt;}
.yad{bottom:373.626667pt;}
.y165{bottom:378.186667pt;}
.y11a{bottom:378.346667pt;}
.y19{bottom:379.546667pt;}
.y81{bottom:379.706667pt;}
.y106{bottom:380.586667pt;}
.y1c7{bottom:386.746667pt;}
.yd5{bottom:387.786667pt;}
.yac{bottom:389.306667pt;}
.y12f{bottom:391.946667pt;}
.y164{bottom:393.786667pt;}
.y45{bottom:395.066667pt;}
.y18{bottom:395.146667pt;}
.y80{bottom:396.106667pt;}
.y56{bottom:398.906667pt;}
.y1a1{bottom:400.346667pt;}
.y1c6{bottom:402.426667pt;}
.yd4{bottom:404.186667pt;}
.yab{bottom:404.906667pt;}
.y44{bottom:410.746667pt;}
.y17{bottom:410.826667pt;}
.y7f{bottom:412.506667pt;}
.y55{bottom:414.586667pt;}
.y1a0{bottom:416.746667pt;}
.yd3{bottom:420.533333pt;}
.y12e{bottom:423.653333pt;}
.y163{bottom:425.493333pt;}
.y1c5{bottom:426.053333pt;}
.y16{bottom:426.453333pt;}
.y7e{bottom:428.853333pt;}
.y19f{bottom:433.173333pt;}
.y105{bottom:435.813333pt;}
.yaa{bottom:436.533333pt;}
.y12d{bottom:439.253333pt;}
.y162{bottom:441.093333pt;}
.y1c4{bottom:441.653333pt;}
.y15{bottom:442.053333pt;}
.y43{bottom:442.293333pt;}
.y54{bottom:446.213333pt;}
.y19e{bottom:449.493333pt;}
.y104{bottom:451.493333pt;}
.ya9{bottom:452.933333pt;}
.y12c{bottom:454.853333pt;}
.y161{bottom:456.773333pt;}
.y1c3{bottom:457.333333pt;}
.y42{bottom:458.693333pt;}
.y7d{bottom:461.253333pt;}
.y53{bottom:461.813333pt;}
.y19d{bottom:465.893333pt;}
.y14{bottom:465.973333pt;}
.y103{bottom:467.093333pt;}
.yd2{bottom:468.613333pt;}
.ya8{bottom:469.253333pt;}
.y41{bottom:475.093333pt;}
.y1c2{bottom:480.933333pt;}
.y102{bottom:482.693333pt;}
.y119{bottom:484.613333pt;}
.y7c{bottom:484.933333pt;}
.ya7{bottom:485.653333pt;}
.y12b{bottom:486.533333pt;}
.y160{bottom:488.293333pt;}
.y52{bottom:490.453333pt;}
.y40{bottom:491.493333pt;}
.y1c1{bottom:496.613333pt;}
.y14a{bottom:496.933333pt;}
.y19c{bottom:498.293333pt;}
.y101{bottom:499.093333pt;}
.yd1{bottom:500.213333pt;}
.ya6{bottom:501.253333pt;}
.y15f{bottom:504.693333pt;}
.y13{bottom:509.173333pt;}
.y149{bottom:512.533333pt;}
.y100{bottom:514.773333pt;}
.y12a{bottom:515.173333pt;}
.yd0{bottom:515.813333pt;}
.y7b{bottom:516.453333pt;}
.ya5{bottom:517.653333pt;}
.y1c0{bottom:520.213333pt;}
.y15e{bottom:521.093333pt;}
.y19b{bottom:521.893333pt;}
.y118{bottom:523.813333pt;}
.y3f{bottom:523.893333pt;}
.y148{bottom:528.133333pt;}
.yff{bottom:530.373333pt;}
.ycf{bottom:531.493333pt;}
.y7a{bottom:532.853333pt;}
.y1bf{bottom:535.813333pt;}
.y15d{bottom:537.413333pt;}
.y12{bottom:542.133333pt;}
.yfe{bottom:545.973333pt;}
.yce{bottom:547.093333pt;}
.y79{bottom:549.253333pt;}
.ya4{bottom:550.053333pt;}
.y1be{bottom:551.493333pt;}
.y19a{bottom:553.493333pt;}
.y3e{bottom:555.413333pt;}
.y117{bottom:555.493333pt;}
.y11{bottom:557.733333pt;}
.y147{bottom:559.813333pt;}
.yfd{bottom:562.373333pt;}
.y78{bottom:565.653333pt;}
.y15c{bottom:569.813333pt;}
.y199{bottom:569.893333pt;}
.y116{bottom:571.093333pt;}
.y3d{bottom:571.813333pt;}
.y10{bottom:573.413333pt;}
.y1bd{bottom:575.093333pt;}
.y146{bottom:575.413333pt;}
.yfc{bottom:577.973333pt;}
.ycd{bottom:578.773333pt;}
.ya3{bottom:581.653333pt;}
.y198{bottom:586.213333pt;}
.y115{bottom:586.773333pt;}
.y3c{bottom:588.213333pt;}
.yf{bottom:589.013333pt;}
.y1bc{bottom:590.773333pt;}
.y145{bottom:591.093333pt;}
.yfb{bottom:593.653333pt;}
.ycc{bottom:594.373333pt;}
.ya2{bottom:597.333333pt;}
.y77{bottom:598.053333pt;}
.y15b{bottom:599.173333pt;}
.y197{bottom:602.613333pt;}
.y3b{bottom:604.533333pt;}
.ye{bottom:604.613333pt;}
.y1bb{bottom:606.373333pt;}
.y144{bottom:606.693333pt;}
.yfa{bottom:609.253333pt;}
.ycb{bottom:609.973333pt;}
.y114{bottom:610.693333pt;}
.ya1{bottom:612.933333pt;}
.y196{bottom:619.013333pt;}
.yd{bottom:620.293333pt;}
.y3a{bottom:620.933333pt;}
.y76{bottom:621.653333pt;}
.y15a{bottom:623.413333pt;}
.yf9{bottom:624.853333pt;}
.ya0{bottom:628.613333pt;}
.y1ba{bottom:630.293333pt;}
.yca{bottom:633.653333pt;}
.yc{bottom:635.893333pt;}
.y143{bottom:638.293333pt;}
.yf8{bottom:641.253333pt;}
.y9f{bottom:644.213333pt;}
.y159{bottom:647.733333pt;}
.y195{bottom:651.413333pt;}
.yb{bottom:651.573333pt;}
.y75{bottom:653.253333pt;}
.y39{bottom:653.333333pt;}
.y113{bottom:653.573333pt;}
.y142{bottom:654.693333pt;}
.yf7{bottom:656.933333pt;}
.yc9{bottom:665.253333pt;}
.y38{bottom:668.933333pt;}
.y74{bottom:669.653333pt;}
.y141{bottom:671.013333pt;}
.y158{bottom:672.053333pt;}
.yf6{bottom:672.533333pt;}
.y1b9{bottom:673.173333pt;}
.y194{bottom:675.013333pt;}
.ya{bottom:675.493333pt;}
.y9e{bottom:675.813333pt;}
.y1e2{bottom:676.213333pt;}
.yc8{bottom:680.933333pt;}
.y112{bottom:682.213333pt;}
.y73{bottom:685.973333pt;}
.y140{bottom:687.413333pt;}
.yf5{bottom:688.133333pt;}
.y9d{bottom:691.493333pt;}
.y1e1{bottom:691.813333pt;}
.y37{bottom:692.613333pt;}
.y157{bottom:696.373333pt;}
.yc7{bottom:696.533333pt;}
.y1b8{bottom:697.093333pt;}
.y72{bottom:702.373333pt;}
.yf4{bottom:703.733333pt;}
.y193{bottom:706.613333pt;}
.y9c{bottom:707.093333pt;}
.yc6{bottom:712.133333pt;}
.y1e0{bottom:715.493333pt;}
.y9{bottom:717.013333pt;}
.y71{bottom:718.693333pt;}
.y13f{bottom:719.813333pt;}
.yf3{bottom:720.133333pt;}
.y156{bottom:720.613333pt;}
.y9b{bottom:722.693333pt;}
.y192{bottom:723.013333pt;}
.y36{bottom:724.213333pt;}
.y1b7{bottom:730.293333pt;}
.y1df{bottom:731.093333pt;}
.yf2{bottom:736.533333pt;}
.y9a{bottom:738.373333pt;}
.y191{bottom:739.333333pt;}
.y35{bottom:739.893333pt;}
.y13e{bottom:743.413333pt;}
.yc5{bottom:743.813333pt;}
.y155{bottom:744.933333pt;}
.y8{bottom:748.693333pt;}
.y70{bottom:751.093333pt;}
.yf1{bottom:752.853333pt;}
.y1de{bottom:754.693333pt;}
.y34{bottom:755.493333pt;}
.y190{bottom:755.733333pt;}
.yc4{bottom:759.413333pt;}
.yf0{bottom:769.253333pt;}
.y99{bottom:769.973333pt;}
.y1dd{bottom:770.373333pt;}
.y18f{bottom:772.053333pt;}
.y1b6{bottom:773.173333pt;}
.y6f{bottom:774.693333pt;}
.yc3{bottom:775.013333pt;}
.y7{bottom:780.293333pt;}
.y98{bottom:785.653333pt;}
.y1dc{bottom:785.973333pt;}
.y33{bottom:787.093333pt;}
.y1b5{bottom:788.853333pt;}
.yc2{bottom:790.693333pt;}
.y13d{bottom:791.413333pt;}
.y154{bottom:793.493333pt;}
.y97{bottom:801.253333pt;}
.y6e{bottom:801.413333pt;}
.yef{bottom:801.653333pt;}
.y32{bottom:803.493333pt;}
.y17d{bottom:804.213333pt;}
.y18e{bottom:804.453333pt;}
.yc1{bottom:806.293333pt;}
.y13c{bottom:807.813333pt;}
.y1db{bottom:809.653333pt;}
.y6{bottom:811.893333pt;}
.y96{bottom:816.853333pt;}
.yee{bottom:817.253333pt;}
.y153{bottom:817.813333pt;}
.y31{bottom:819.093333pt;}
.y17c{bottom:819.893333pt;}
.y1b4{bottom:820.373333pt;}
.y13b{bottom:823.413333pt;}
.y1da{bottom:825.253333pt;}
.y6d{bottom:825.653333pt;}
.y18d{bottom:828.133333pt;}
.y95{bottom:832.533333pt;}
.yed{bottom:832.853333pt;}
.y30{bottom:835.493333pt;}
.y1b3{bottom:836.773333pt;}
.yc0{bottom:837.893333pt;}
.y13a{bottom:839.733333pt;}
.y1d9{bottom:840.853333pt;}
.y152{bottom:842.133333pt;}
.y17b{bottom:843.733333pt;}
.y5{bottom:843.813333pt;}
.yec{bottom:848.533333pt;}
.y6b{bottom:849.973333pt;}
.y2f{bottom:851.893333pt;}
.y1b2{bottom:853.173333pt;}
.ybf{bottom:854.293333pt;}
.y94{bottom:856.133333pt;}
.y18c{bottom:859.653333pt;}
.y1d8{bottom:864.533333pt;}
.y151{bottom:866.453333pt;}
.y2e{bottom:867.493333pt;}
.y1b1{bottom:869.573333pt;}
.ybe{bottom:870.693333pt;}
.y139{bottom:872.133333pt;}
.y68{bottom:874.293333pt;}
.y18b{bottom:876.053333pt;}
.y4{bottom:877.893333pt;}
.yeb{bottom:880.133333pt;}
.y1b0{bottom:885.893333pt;}
.ybd{bottom:886.293333pt;}
.y17a{bottom:886.693333pt;}
.y93{bottom:887.813333pt;}
.y129{bottom:888.133333pt;}
.y14f{bottom:890.693333pt;}
.y18a{bottom:892.453333pt;}
.yea{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y179{bottom:902.320000pt;}
.ybc{bottom:902.720000pt;}
.y128{bottom:903.840000pt;}
.y189{bottom:908.800000pt;}
.ye9{bottom:911.440000pt;}
.y14e{bottom:915.040000pt;}
.y2d{bottom:915.520000pt;}
.ybb{bottom:918.320000pt;}
.y92{bottom:919.440000pt;}
.y188{bottom:925.200000pt;}
.ye8{bottom:927.040000pt;}
.y2c{bottom:931.120000pt;}
.y67{bottom:933.200000pt;}
.y178{bottom:934.000000pt;}
.y91{bottom:935.040000pt;}
.ye7{bottom:942.720000pt;}
.y1d7{bottom:943.040000pt;}
.y2b{bottom:946.800000pt;}
.y177{bottom:949.600000pt;}
.y1af{bottom:950.000000pt;}
.y90{bottom:950.720000pt;}
.y187{bottom:957.600000pt;}
.y14d{bottom:958.320000pt;}
.y1d6{bottom:958.720000pt;}
.y66{bottom:964.880000pt;}
.y176{bottom:965.200000pt;}
.y1ae{bottom:965.600000pt;}
.y8f{bottom:966.320000pt;}
.y127{bottom:966.720000pt;}
.y2a{bottom:970.400000pt;}
.ye6{bottom:974.320000pt;}
.y186{bottom:981.200000pt;}
.y175{bottom:981.600000pt;}
.y126{bottom:982.320000pt;}
.ye5{bottom:990.000000pt;}
.y65{bottom:996.400000pt;}
.y174{bottom:997.200000pt;}
.y8e{bottom:998.000000pt;}
.y29{bottom:1002.320000pt;}
.y64{bottom:1012.800000pt;}
.y8d{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.he{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:23.996250pt;}
.h3{height:34.804688pt;}
.h11{height:39.280000pt;}
.hd{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.hb{height:54.927899pt;}
.h10{height:54.986667pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:29.920000pt;}
.w3{width:63.786667pt;}
.w15{width:67.280000pt;}
.w16{width:67.306667pt;}
.wa{width:68.986667pt;}
.w13{width:76.560000pt;}
.wb{width:87.840000pt;}
.wf{width:91.200000pt;}
.w5{width:91.600000pt;}
.w4{width:95.920000pt;}
.w6{width:103.306667pt;}
.w7{width:112.720000pt;}
.wc{width:113.520000pt;}
.w8{width:121.280000pt;}
.we{width:135.920000pt;}
.wd{width:140.186667pt;}
.w11{width:141.120000pt;}
.w12{width:159.946667pt;}
.w10{width:195.546667pt;}
.w14{width:201.786667pt;}
.w17{width:541.493333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.440000pt;}
.x1{left:60.480000pt;}
.x7{left:82.959988pt;}
.x2{left:84.480000pt;}
.x12{left:91.760000pt;}
.x28{left:98.879988pt;}
.x9{left:101.040000pt;}
.x3{left:108.480000pt;}
.x1a{left:109.440000pt;}
.x20{left:126.240000pt;}
.x27{left:134.719988pt;}
.x13{left:161.466667pt;}
.x19{left:162.986655pt;}
.xb{left:165.466667pt;}
.x11{left:167.146655pt;}
.x1f{left:170.906655pt;}
.x4{left:180.266655pt;}
.x14{left:249.946667pt;}
.xc{left:262.026667pt;}
.x1b{left:305.626667pt;}
.x21{left:328.746667pt;}
.xd{left:354.346667pt;}
.x15{left:364.186667pt;}
.x8{left:374.026655pt;}
.x22{left:396.666667pt;}
.x1c{left:447.466667pt;}
.xe{left:458.293333pt;}
.x23{left:464.613333pt;}
.x16{left:505.093333pt;}
.x24{left:532.533333pt;}
.xf{left:571.653333pt;}
.x25{left:600.453333pt;}
.x1d{left:608.053333pt;}
.x17{left:641.653333pt;}
.x1e{left:655.013322pt;}
.x18{left:680.053322pt;}
.x6{left:686.053322pt;}
.x26{left:687.013322pt;}
.x5{left:704.053322pt;}
.x10{left:719.013322pt;}
}




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