
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_538ac026b7edb123a2dcc486.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.159668;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_44ce16316eb2bfff6765a434.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.158691;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_2099073e1bf97e409737bc2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.159668;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.602000px;}
.ls9{letter-spacing:-1.416000px;}
.ls1f{letter-spacing:-1.224000px;}
.ls1e{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.672000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.249185px;}
.ls11{letter-spacing:-0.247800px;}
.ls10{letter-spacing:-0.236400px;}
.ls1b{letter-spacing:-0.227682px;}
.ls18{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.025920px;}
.ls1a{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.296400px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.363000px;}
.ls0{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.454800px;}
.ls12{letter-spacing:0.521400px;}
.ls2{letter-spacing:0.570240px;}
.lse{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.708480px;}
.lsc{letter-spacing:1.656000px;}
.ls15{letter-spacing:13.530240px;}
.ls17{letter-spacing:16.272000px;}
.ls8{letter-spacing:22.170240px;}
.ls16{letter-spacing:25.050240px;}
.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;}
}
.ws5{word-spacing:-20.794930px;}
.wsc{word-spacing:-20.567248px;}
.ws6{word-spacing:-20.304000px;}
.wsf{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.728000px;}
.ws7{word-spacing:-19.584000px;}
.wse{word-spacing:-19.296000px;}
.ws10{word-spacing:-19.152000px;}
.ws11{word-spacing:-18.792000px;}
.ws2{word-spacing:-18.512760px;}
.ws0{word-spacing:-18.446160px;}
.ws1{word-spacing:-18.149760px;}
.ws9{word-spacing:-17.467741px;}
.wsb{word-spacing:-17.092920px;}
.ws3{word-spacing:-16.571520px;}
.ws8{word-spacing:-16.335120px;}
.wsa{word-spacing:-16.323720px;}
.ws4{word-spacing:0.000000px;}
._30{margin-left:-11.681280px;}
._1{margin-left:-7.085760px;}
._7{margin-left:-5.835600px;}
._2{margin-left:-4.768320px;}
._5{margin-left:-2.811600px;}
._0{margin-left:-1.259520px;}
._4{width:1.391040px;}
._6{width:2.952000px;}
._8{width:4.638720px;}
._1b{width:5.693760px;}
._e{width:6.757440px;}
._d{width:8.546880px;}
._b{width:10.193280px;}
._9{width:11.525760px;}
._a{width:12.954960px;}
._13{width:14.203440px;}
._10{width:15.248880px;}
._f{width:16.562880px;}
._1f{width:17.884080px;}
._c{width:19.409280px;}
._11{width:20.469120px;}
._12{width:21.470160px;}
._17{width:22.880640px;}
._18{width:24.355200px;}
._1a{width:25.451040px;}
._16{width:26.761920px;}
._19{width:28.616640px;}
._1c{width:29.817600px;}
._1d{width:31.228560px;}
._1e{width:33.119760px;}
._23{width:34.272000px;}
._24{width:35.423040px;}
._21{width:37.056960px;}
._20{width:38.195520px;}
._22{width:39.370560px;}
._14{width:40.607040px;}
._15{width:42.175442px;}
._31{width:43.379520px;}
._32{width:45.059036px;}
._2f{width:46.151040px;}
._26{width:47.627520px;}
._25{width:48.832080px;}
._2a{width:50.603383px;}
._33{width:53.040000px;}
._2e{width:54.711840px;}
._2c{width:55.797600px;}
._2b{width:57.059520px;}
._2d{width:58.276110px;}
._34{width:61.332000px;}
._35{width:62.352000px;}
._29{width:64.716960px;}
._27{width:66.491520px;}
._28{width:67.827600px;}
._3{width:327.910080px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.480000px;}
.fs5{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:69.822393px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.yca{bottom:6.840000px;}
.y9e{bottom:14.034000px;}
.y98{bottom:14.040000px;}
.yab{bottom:21.960000px;}
.yd4{bottom:21.990000px;}
.yda{bottom:22.005000px;}
.ybf{bottom:22.320000px;}
.yc9{bottom:29.874000px;}
.yc8{bottom:30.234000px;}
.y9d{bottom:43.914000px;}
.y9a{bottom:43.920000px;}
.ya1{bottom:43.965000px;}
.yaa{bottom:44.640000px;}
.yd3{bottom:44.670000px;}
.ybe{bottom:44.685000px;}
.ya9{bottom:45.000000px;}
.yd6{bottom:45.030000px;}
.yc7{bottom:52.599000px;}
.ycb{bottom:52.959000px;}
.y4{bottom:57.240000px;}
.yc4{bottom:67.320000px;}
.yb3{bottom:67.350000px;}
.ya8{bottom:67.680000px;}
.yd2{bottom:67.710000px;}
.ybd{bottom:67.725000px;}
.ya6{bottom:68.040000px;}
.ycc{bottom:68.085000px;}
.y9c{bottom:73.839000px;}
.ya0{bottom:74.205000px;}
.y3{bottom:79.236000px;}
.ya5{bottom:90.360000px;}
.yb2{bottom:90.390000px;}
.ya7{bottom:90.720000px;}
.yd1{bottom:90.750000px;}
.ybc{bottom:90.765000px;}
.yd8{bottom:91.080000px;}
.y2{bottom:112.356000px;}
.yb1{bottom:113.430000px;}
.ybb{bottom:113.445000px;}
.yb4{bottom:113.790000px;}
.yc1{bottom:113.805000px;}
.yb0{bottom:136.470000px;}
.yba{bottom:136.485000px;}
.yd0{bottom:136.515000px;}
.yc5{bottom:136.830000px;}
.yd5{bottom:136.875000px;}
.yc6{bottom:142.236000px;}
.y8c{bottom:145.836000px;}
.y9b{bottom:147.636000px;}
.y2e{bottom:148.356000px;}
.y56{bottom:150.150000px;}
.y70{bottom:153.750000px;}
.y115{bottom:157.710000px;}
.yaf{bottom:159.150000px;}
.yc3{bottom:159.510000px;}
.yb9{bottom:159.525000px;}
.yce{bottom:159.870000px;}
.yc0{bottom:159.885000px;}
.y2d{bottom:172.110000px;}
.y8b{bottom:181.830000px;}
.yae{bottom:182.190000px;}
.yad{bottom:182.550000px;}
.yb8{bottom:182.595000px;}
.yb7{bottom:182.955000px;}
.y6f{bottom:189.750000px;}
.y55{bottom:194.115000px;}
.y2c{bottom:195.555000px;}
.ye1{bottom:203.475000px;}
.yac{bottom:205.275000px;}
.yb5{bottom:205.635000px;}
.yc2{bottom:212.115000px;}
.y54{bottom:216.075000px;}
.y8a{bottom:217.875000px;}
.y2b{bottom:219.315000px;}
.y6e{bottom:225.795000px;}
.yf9{bottom:229.755000px;}
.y53{bottom:238.035000px;}
.ye0{bottom:239.475000px;}
.y2a{bottom:243.075000px;}
.y89{bottom:253.515000px;}
.y52{bottom:259.995000px;}
.y6d{bottom:261.795000px;}
.y29{bottom:266.835000px;}
.ydf{bottom:275.475000px;}
.y114{bottom:277.635000px;}
.y51{bottom:281.955000px;}
.y88{bottom:289.515000px;}
.y28{bottom:290.235000px;}
.y6c{bottom:297.435000px;}
.y99{bottom:298.875000px;}
.y50{bottom:303.915000px;}
.yde{bottom:311.115000px;}
.y27{bottom:312.195000px;}
.y113{bottom:313.275000px;}
.yf8{bottom:313.635000px;}
.y87{bottom:325.545000px;}
.y4f{bottom:325.905000px;}
.y97{bottom:329.505000px;}
.y6b{bottom:333.465000px;}
.y26{bottom:334.545000px;}
.yf7{bottom:337.425000px;}
.ydd{bottom:347.145000px;}
.y4e{bottom:347.505000px;}
.y25{bottom:358.665000px;}
.y112{bottom:361.185000px;}
.y86{bottom:361.545000px;}
.y4d{bottom:369.465000px;}
.y96{bottom:377.385000px;}
.y24{bottom:382.065000px;}
.ydc{bottom:383.145000px;}
.yf6{bottom:385.305000px;}
.y4c{bottom:391.425000px;}
.y85{bottom:397.545000px;}
.y95{bottom:398.985000px;}
.y23{bottom:401.865000px;}
.y6a{bottom:405.465000px;}
.y111{bottom:409.065000px;}
.yb6{bottom:411.225000px;}
.y4b{bottom:413.385000px;}
.ydb{bottom:419.865000px;}
.yf5{bottom:421.305000px;}
.y22{bottom:431.745000px;}
.y84{bottom:433.185000px;}
.y4a{bottom:435.345000px;}
.yd9{bottom:436.785000px;}
.y69{bottom:441.105000px;}
.yf4{bottom:445.425000px;}
.y110{bottom:446.910000px;}
.y21{bottom:451.950000px;}
.y49{bottom:457.350000px;}
.y94{bottom:467.430000px;}
.y83{bottom:469.230000px;}
.y10f{bottom:472.830000px;}
.y68{bottom:477.150000px;}
.y48{bottom:479.310000px;}
.y20{bottom:481.830000px;}
.yf3{bottom:493.350000px;}
.y10e{bottom:498.750000px;}
.y47{bottom:501.270000px;}
.y93{bottom:503.430000px;}
.y82{bottom:505.230000px;}
.y1f{bottom:511.710000px;}
.y67{bottom:513.150000px;}
.yf2{bottom:517.110000px;}
.y46{bottom:523.230000px;}
.y10d{bottom:524.310000px;}
.y1e{bottom:531.870000px;}
.y92{bottom:539.430000px;}
.y81{bottom:541.230000px;}
.y45{bottom:545.190000px;}
.y66{bottom:549.150000px;}
.y1d{bottom:551.670000px;}
.y10c{bottom:562.110000px;}
.y44{bottom:567.150000px;}
.y1c{bottom:571.830000px;}
.y91{bottom:575.460000px;}
.y80{bottom:576.900000px;}
.y65{bottom:584.820000px;}
.y10b{bottom:588.060000px;}
.y43{bottom:589.140000px;}
.yd7{bottom:590.220000px;}
.y1b{bottom:593.460000px;}
.yf1{bottom:601.020000px;}
.y42{bottom:611.100000px;}
.y7f{bottom:612.900000px;}
.y1a{bottom:613.620000px;}
.y10a{bottom:613.980000px;}
.y64{bottom:620.820000px;}
.yf0{bottom:625.140000px;}
.y41{bottom:633.420000px;}
.y19{bottom:633.780000px;}
.y109{bottom:639.900000px;}
.y90{bottom:647.100000px;}
.y7e{bottom:648.900000px;}
.y18{bottom:655.380000px;}
.y40{bottom:656.820000px;}
.y108{bottom:665.820000px;}
.yef{bottom:673.020000px;}
.y17{bottom:675.540000px;}
.y3f{bottom:678.780000px;}
.y8f{bottom:680.580000px;}
.y7d{bottom:684.900000px;}
.y63{bottom:692.820000px;}
.y16{bottom:695.700000px;}
.yee{bottom:696.780000px;}
.ycf{bottom:697.860000px;}
.y3e{bottom:701.130000px;}
.y107{bottom:703.650000px;}
.y8e{bottom:708.330000px;}
.y15{bottom:717.330000px;}
.y7c{bottom:720.570000px;}
.y62{bottom:728.490000px;}
.y106{bottom:729.210000px;}
.yed{bottom:732.450000px;}
.y14{bottom:737.130000px;}
.y3d{bottom:738.570000px;}
.y105{bottom:755.130000px;}
.y7b{bottom:756.570000px;}
.y13{bottom:757.290000px;}
.y3c{bottom:762.330000px;}
.y61{bottom:764.490000px;}
.y12{bottom:777.090000px;}
.y11b{bottom:780.330000px;}
.yec{bottom:780.690000px;}
.y104{bottom:781.050000px;}
.y3b{bottom:786.090000px;}
.y7a{bottom:792.570000px;}
.y11{bottom:797.250000px;}
.y60{bottom:800.490000px;}
.yeb{bottom:804.450000px;}
.y103{bottom:806.970000px;}
.y3a{bottom:809.490000px;}
.y11a{bottom:816.330000px;}
.y10{bottom:817.050000px;}
.y79{bottom:828.615000px;}
.y39{bottom:833.295000px;}
.y5f{bottom:836.535000px;}
.y102{bottom:844.815000px;}
.yf{bottom:846.975000px;}
.ycd{bottom:851.295000px;}
.yea{bottom:852.375000px;}
.ya4{bottom:855.975000px;}
.y38{bottom:857.055000px;}
.y78{bottom:864.255000px;}
.y101{bottom:870.735000px;}
.y5e{bottom:872.175000px;}
.ye9{bottom:876.495000px;}
.ye{bottom:876.855000px;}
.y37{bottom:880.815000px;}
.y119{bottom:888.375000px;}
.y100{bottom:896.295000px;}
.y77{bottom:900.255000px;}
.y36{bottom:904.575000px;}
.yd{bottom:906.735000px;}
.y5d{bottom:908.175000px;}
.ye8{bottom:912.135000px;}
.yff{bottom:922.215000px;}
.y118{bottom:924.015000px;}
.yc{bottom:927.255000px;}
.y35{bottom:927.975000px;}
.y76{bottom:936.255000px;}
.y5c{bottom:944.175000px;}
.yfe{bottom:948.135000px;}
.yb{bottom:951.405000px;}
.y34{bottom:951.765000px;}
.y117{bottom:960.045000px;}
.ye7{bottom:960.405000px;}
.ya3{bottom:970.485000px;}
.y75{bottom:972.285000px;}
.ya{bottom:975.165000px;}
.y33{bottom:975.525000px;}
.y5b{bottom:980.205000px;}
.ye6{bottom:984.165000px;}
.y116{bottom:996.045000px;}
.y9{bottom:999.285000px;}
.y74{bottom:1007.925000px;}
.yfd{bottom:1008.285000px;}
.y5a{bottom:1015.845000px;}
.ye5{bottom:1020.165000px;}
.y32{bottom:1022.685000px;}
.y8{bottom:1023.045000px;}
.ya2{bottom:1027.725000px;}
.yfc{bottom:1032.045000px;}
.y73{bottom:1043.925000px;}
.ye4{bottom:1044.285000px;}
.y9f{bottom:1044.645000px;}
.y31{bottom:1046.445000px;}
.y7{bottom:1047.165000px;}
.y8d{bottom:1047.525000px;}
.y59{bottom:1051.845000px;}
.yfb{bottom:1056.165000px;}
.ye3{bottom:1068.045000px;}
.y30{bottom:1070.205000px;}
.y58{bottom:1073.805000px;}
.y72{bottom:1079.970000px;}
.y6{bottom:1082.850000px;}
.yfa{bottom:1091.850000px;}
.ye2{bottom:1092.210000px;}
.y2f{bottom:1094.010000px;}
.y57{bottom:1095.810000px;}
.y71{bottom:1115.970000px;}
.y5{bottom:1117.770000px;}
.y1{bottom:1193.730000px;}
.hb{height:29.880000px;}
.hd{height:29.916000px;}
.h2{height:50.229844px;}
.hc{height:55.873125px;}
.h7{height:55.902656px;}
.ha{height:58.925984px;}
.he{height:59.760000px;}
.h4{height:61.194375px;}
.h3{height:61.226719px;}
.h8{height:64.537983px;}
.h5{height:66.515625px;}
.h6{height:66.550781px;}
.h14{height:68.796000px;}
.h9{height:70.149981px;}
.hf{height:89.676000px;}
.h10{height:90.036000px;}
.h11{height:106.596000px;}
.h18{height:106.920000px;}
.h15{height:106.956000px;}
.h17{height:152.715000px;}
.h16{height:175.710000px;}
.h13{height:198.390000px;}
.h12{height:221.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:60.516000px;}
.w9{width:68.040000px;}
.w5{width:83.556000px;}
.wb{width:87.156000px;}
.w7{width:109.836000px;}
.wa{width:137.952000px;}
.w6{width:144.792000px;}
.w3{width:283.785000px;}
.w4{width:394.710000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2e{left:7.560000px;}
.x37{left:21.996000px;}
.x3b{left:39.279000px;}
.x39{left:43.239000px;}
.x36{left:48.999000px;}
.x38{left:53.319000px;}
.x3c{left:63.720000px;}
.x3a{left:74.559000px;}
.x2d{left:119.916000px;}
.xc{left:127.475987px;}
.x8{left:136.475987px;}
.x4b{left:155.594987px;}
.x6{left:179.354987px;}
.x1d{left:180.434987px;}
.x3{left:186.554987px;}
.x14{left:191.234987px;}
.x2c{left:202.034987px;}
.x30{left:204.195000px;}
.x18{left:210.674987px;}
.x1c{left:212.474987px;}
.x59{left:223.634987px;}
.x42{left:226.514987px;}
.x57{left:236.264987px;}
.x54{left:237.704987px;}
.x53{left:244.184987px;}
.x1f{left:251.744987px;}
.x5d{left:257.144987px;}
.x5a{left:261.464987px;}
.x1a{left:262.544987px;}
.xa{left:268.664987px;}
.x56{left:270.464987px;}
.x58{left:274.064987px;}
.x55{left:275.504987px;}
.x4c{left:277.664987px;}
.x28{left:280.904987px;}
.x7{left:291.344987px;}
.x5e{left:294.944987px;}
.x1b{left:300.344987px;}
.x43{left:301.424987px;}
.x17{left:308.624987px;}
.x22{left:320.144987px;}
.x5b{left:333.869987px;}
.x31{left:349.710000px;}
.xd{left:354.749987px;}
.x2a{left:364.829987px;}
.x50{left:370.589987px;}
.x5c{left:371.669987px;}
.x45{left:374.909987px;}
.x20{left:376.349987px;}
.x26{left:389.669987px;}
.x19{left:391.469987px;}
.x40{left:401.549987px;}
.x2f{left:404.430000px;}
.x52{left:409.829987px;}
.x9{left:415.589987px;}
.x44{left:434.699987px;}
.x3d{left:448.739987px;}
.xf{left:454.139987px;}
.x32{left:460.260000px;}
.x11{left:465.659987px;}
.x4{left:467.819987px;}
.x3f{left:485.459987px;}
.xe{left:519.329987px;}
.x33{left:521.490000px;}
.x5{left:524.369987px;}
.x24{left:527.249987px;}
.x47{left:532.649987px;}
.x51{left:548.849987px;}
.x46{left:560.009987px;}
.x4f{left:562.889987px;}
.x27{left:573.689987px;}
.x34{left:590.250000px;}
.x2b{left:603.209987px;}
.x10{left:619.814987px;}
.xb{left:622.694987px;}
.x1e{left:626.294987px;}
.x29{left:629.534987px;}
.x12{left:639.614987px;}
.x13{left:643.574987px;}
.x48{left:655.094987px;}
.x49{left:682.454987px;}
.x25{left:711.644987px;}
.x23{left:714.884987px;}
.x35{left:728.925000px;}
.x41{left:734.324987px;}
.x21{left:737.204987px;}
.x4d{left:739.724987px;}
.x4a{left:757.004987px;}
.x3e{left:758.804987px;}
.x15{left:761.684987px;}
.x2{left:790.484987px;}
.x4e{left:794.084987px;}
.x16{left:803.849987px;}
.x1{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.424000pt;}
.ls9{letter-spacing:-1.258667pt;}
.ls1f{letter-spacing:-1.088000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.597333pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.221498pt;}
.ls11{letter-spacing:-0.220267pt;}
.ls10{letter-spacing:-0.210133pt;}
.ls1b{letter-spacing:-0.202384pt;}
.ls18{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.023040pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.263467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.322667pt;}
.ls0{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.404267pt;}
.ls12{letter-spacing:0.463467pt;}
.ls2{letter-spacing:0.506880pt;}
.lse{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.629760pt;}
.lsc{letter-spacing:1.472000pt;}
.ls15{letter-spacing:12.026880pt;}
.ls17{letter-spacing:14.464000pt;}
.ls8{letter-spacing:19.706880pt;}
.ls16{letter-spacing:22.266880pt;}
.ws5{word-spacing:-18.484382pt;}
.wsc{word-spacing:-18.281998pt;}
.ws6{word-spacing:-18.048000pt;}
.wsf{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.536000pt;}
.ws7{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.152000pt;}
.ws10{word-spacing:-17.024000pt;}
.ws11{word-spacing:-16.704000pt;}
.ws2{word-spacing:-16.455787pt;}
.ws0{word-spacing:-16.396587pt;}
.ws1{word-spacing:-16.133120pt;}
.ws9{word-spacing:-15.526881pt;}
.wsb{word-spacing:-15.193707pt;}
.ws3{word-spacing:-14.730240pt;}
.ws8{word-spacing:-14.520107pt;}
.wsa{word-spacing:-14.509973pt;}
.ws4{word-spacing:0.000000pt;}
._30{margin-left:-10.383360pt;}
._1{margin-left:-6.298453pt;}
._7{margin-left:-5.187200pt;}
._2{margin-left:-4.238507pt;}
._5{margin-left:-2.499200pt;}
._0{margin-left:-1.119573pt;}
._4{width:1.236480pt;}
._6{width:2.624000pt;}
._8{width:4.123307pt;}
._1b{width:5.061120pt;}
._e{width:6.006613pt;}
._d{width:7.597227pt;}
._b{width:9.060693pt;}
._9{width:10.245120pt;}
._a{width:11.515520pt;}
._13{width:12.625280pt;}
._10{width:13.554560pt;}
._f{width:14.722560pt;}
._1f{width:15.896960pt;}
._c{width:17.252693pt;}
._11{width:18.194773pt;}
._12{width:19.084587pt;}
._17{width:20.338347pt;}
._18{width:21.649067pt;}
._1a{width:22.623147pt;}
._16{width:23.788373pt;}
._19{width:25.437013pt;}
._1c{width:26.504533pt;}
._1d{width:27.758720pt;}
._1e{width:29.439787pt;}
._23{width:30.464000pt;}
._24{width:31.487147pt;}
._21{width:32.939520pt;}
._20{width:33.951573pt;}
._22{width:34.996053pt;}
._14{width:36.095147pt;}
._15{width:37.489282pt;}
._31{width:38.559573pt;}
._32{width:40.052476pt;}
._2f{width:41.023147pt;}
._26{width:42.335573pt;}
._25{width:43.406293pt;}
._2a{width:44.980785pt;}
._33{width:47.146667pt;}
._2e{width:48.632747pt;}
._2c{width:49.597867pt;}
._2b{width:50.719573pt;}
._2d{width:51.800987pt;}
._34{width:54.517333pt;}
._35{width:55.424000pt;}
._29{width:57.526187pt;}
._27{width:59.103573pt;}
._28{width:60.291200pt;}
._3{width:291.475627pt;}
.fs2{font-size:53.760000pt;}
.fs5{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:62.064349pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:6.080000pt;}
.y9e{bottom:12.474667pt;}
.y98{bottom:12.480000pt;}
.yab{bottom:19.520000pt;}
.yd4{bottom:19.546667pt;}
.yda{bottom:19.560000pt;}
.ybf{bottom:19.840000pt;}
.yc9{bottom:26.554667pt;}
.yc8{bottom:26.874667pt;}
.y9d{bottom:39.034667pt;}
.y9a{bottom:39.040000pt;}
.ya1{bottom:39.080000pt;}
.yaa{bottom:39.680000pt;}
.yd3{bottom:39.706667pt;}
.ybe{bottom:39.720000pt;}
.ya9{bottom:40.000000pt;}
.yd6{bottom:40.026667pt;}
.yc7{bottom:46.754667pt;}
.ycb{bottom:47.074667pt;}
.y4{bottom:50.880000pt;}
.yc4{bottom:59.840000pt;}
.yb3{bottom:59.866667pt;}
.ya8{bottom:60.160000pt;}
.yd2{bottom:60.186667pt;}
.ybd{bottom:60.200000pt;}
.ya6{bottom:60.480000pt;}
.ycc{bottom:60.520000pt;}
.y9c{bottom:65.634667pt;}
.ya0{bottom:65.960000pt;}
.y3{bottom:70.432000pt;}
.ya5{bottom:80.320000pt;}
.yb2{bottom:80.346667pt;}
.ya7{bottom:80.640000pt;}
.yd1{bottom:80.666667pt;}
.ybc{bottom:80.680000pt;}
.yd8{bottom:80.960000pt;}
.y2{bottom:99.872000pt;}
.yb1{bottom:100.826667pt;}
.ybb{bottom:100.840000pt;}
.yb4{bottom:101.146667pt;}
.yc1{bottom:101.160000pt;}
.yb0{bottom:121.306667pt;}
.yba{bottom:121.320000pt;}
.yd0{bottom:121.346667pt;}
.yc5{bottom:121.626667pt;}
.yd5{bottom:121.666667pt;}
.yc6{bottom:126.432000pt;}
.y8c{bottom:129.632000pt;}
.y9b{bottom:131.232000pt;}
.y2e{bottom:131.872000pt;}
.y56{bottom:133.466667pt;}
.y70{bottom:136.666667pt;}
.y115{bottom:140.186667pt;}
.yaf{bottom:141.466667pt;}
.yc3{bottom:141.786667pt;}
.yb9{bottom:141.800000pt;}
.yce{bottom:142.106667pt;}
.yc0{bottom:142.120000pt;}
.y2d{bottom:152.986667pt;}
.y8b{bottom:161.626667pt;}
.yae{bottom:161.946667pt;}
.yad{bottom:162.266667pt;}
.yb8{bottom:162.306667pt;}
.yb7{bottom:162.626667pt;}
.y6f{bottom:168.666667pt;}
.y55{bottom:172.546667pt;}
.y2c{bottom:173.826667pt;}
.ye1{bottom:180.866667pt;}
.yac{bottom:182.466667pt;}
.yb5{bottom:182.786667pt;}
.yc2{bottom:188.546667pt;}
.y54{bottom:192.066667pt;}
.y8a{bottom:193.666667pt;}
.y2b{bottom:194.946667pt;}
.y6e{bottom:200.706667pt;}
.yf9{bottom:204.226667pt;}
.y53{bottom:211.586667pt;}
.ye0{bottom:212.866667pt;}
.y2a{bottom:216.066667pt;}
.y89{bottom:225.346667pt;}
.y52{bottom:231.106667pt;}
.y6d{bottom:232.706667pt;}
.y29{bottom:237.186667pt;}
.ydf{bottom:244.866667pt;}
.y114{bottom:246.786667pt;}
.y51{bottom:250.626667pt;}
.y88{bottom:257.346667pt;}
.y28{bottom:257.986667pt;}
.y6c{bottom:264.386667pt;}
.y99{bottom:265.666667pt;}
.y50{bottom:270.146667pt;}
.yde{bottom:276.546667pt;}
.y27{bottom:277.506667pt;}
.y113{bottom:278.466667pt;}
.yf8{bottom:278.786667pt;}
.y87{bottom:289.373333pt;}
.y4f{bottom:289.693333pt;}
.y97{bottom:292.893333pt;}
.y6b{bottom:296.413333pt;}
.y26{bottom:297.373333pt;}
.yf7{bottom:299.933333pt;}
.ydd{bottom:308.573333pt;}
.y4e{bottom:308.893333pt;}
.y25{bottom:318.813333pt;}
.y112{bottom:321.053333pt;}
.y86{bottom:321.373333pt;}
.y4d{bottom:328.413333pt;}
.y96{bottom:335.453333pt;}
.y24{bottom:339.613333pt;}
.ydc{bottom:340.573333pt;}
.yf6{bottom:342.493333pt;}
.y4c{bottom:347.933333pt;}
.y85{bottom:353.373333pt;}
.y95{bottom:354.653333pt;}
.y23{bottom:357.213333pt;}
.y6a{bottom:360.413333pt;}
.y111{bottom:363.613333pt;}
.yb6{bottom:365.533333pt;}
.y4b{bottom:367.453333pt;}
.ydb{bottom:373.213333pt;}
.yf5{bottom:374.493333pt;}
.y22{bottom:383.773333pt;}
.y84{bottom:385.053333pt;}
.y4a{bottom:386.973333pt;}
.yd9{bottom:388.253333pt;}
.y69{bottom:392.093333pt;}
.yf4{bottom:395.933333pt;}
.y110{bottom:397.253333pt;}
.y21{bottom:401.733333pt;}
.y49{bottom:406.533333pt;}
.y94{bottom:415.493333pt;}
.y83{bottom:417.093333pt;}
.y10f{bottom:420.293333pt;}
.y68{bottom:424.133333pt;}
.y48{bottom:426.053333pt;}
.y20{bottom:428.293333pt;}
.yf3{bottom:438.533333pt;}
.y10e{bottom:443.333333pt;}
.y47{bottom:445.573333pt;}
.y93{bottom:447.493333pt;}
.y82{bottom:449.093333pt;}
.y1f{bottom:454.853333pt;}
.y67{bottom:456.133333pt;}
.yf2{bottom:459.653333pt;}
.y46{bottom:465.093333pt;}
.y10d{bottom:466.053333pt;}
.y1e{bottom:472.773333pt;}
.y92{bottom:479.493333pt;}
.y81{bottom:481.093333pt;}
.y45{bottom:484.613333pt;}
.y66{bottom:488.133333pt;}
.y1d{bottom:490.373333pt;}
.y10c{bottom:499.653333pt;}
.y44{bottom:504.133333pt;}
.y1c{bottom:508.293333pt;}
.y91{bottom:511.520000pt;}
.y80{bottom:512.800000pt;}
.y65{bottom:519.840000pt;}
.y10b{bottom:522.720000pt;}
.y43{bottom:523.680000pt;}
.yd7{bottom:524.640000pt;}
.y1b{bottom:527.520000pt;}
.yf1{bottom:534.240000pt;}
.y42{bottom:543.200000pt;}
.y7f{bottom:544.800000pt;}
.y1a{bottom:545.440000pt;}
.y10a{bottom:545.760000pt;}
.y64{bottom:551.840000pt;}
.yf0{bottom:555.680000pt;}
.y41{bottom:563.040000pt;}
.y19{bottom:563.360000pt;}
.y109{bottom:568.800000pt;}
.y90{bottom:575.200000pt;}
.y7e{bottom:576.800000pt;}
.y18{bottom:582.560000pt;}
.y40{bottom:583.840000pt;}
.y108{bottom:591.840000pt;}
.yef{bottom:598.240000pt;}
.y17{bottom:600.480000pt;}
.y3f{bottom:603.360000pt;}
.y8f{bottom:604.960000pt;}
.y7d{bottom:608.800000pt;}
.y63{bottom:615.840000pt;}
.y16{bottom:618.400000pt;}
.yee{bottom:619.360000pt;}
.ycf{bottom:620.320000pt;}
.y3e{bottom:623.226667pt;}
.y107{bottom:625.466667pt;}
.y8e{bottom:629.626667pt;}
.y15{bottom:637.626667pt;}
.y7c{bottom:640.506667pt;}
.y62{bottom:647.546667pt;}
.y106{bottom:648.186667pt;}
.yed{bottom:651.066667pt;}
.y14{bottom:655.226667pt;}
.y3d{bottom:656.506667pt;}
.y105{bottom:671.226667pt;}
.y7b{bottom:672.506667pt;}
.y13{bottom:673.146667pt;}
.y3c{bottom:677.626667pt;}
.y61{bottom:679.546667pt;}
.y12{bottom:690.746667pt;}
.y11b{bottom:693.626667pt;}
.yec{bottom:693.946667pt;}
.y104{bottom:694.266667pt;}
.y3b{bottom:698.746667pt;}
.y7a{bottom:704.506667pt;}
.y11{bottom:708.666667pt;}
.y60{bottom:711.546667pt;}
.yeb{bottom:715.066667pt;}
.y103{bottom:717.306667pt;}
.y3a{bottom:719.546667pt;}
.y11a{bottom:725.626667pt;}
.y10{bottom:726.266667pt;}
.y79{bottom:736.546667pt;}
.y39{bottom:740.706667pt;}
.y5f{bottom:743.586667pt;}
.y102{bottom:750.946667pt;}
.yf{bottom:752.866667pt;}
.ycd{bottom:756.706667pt;}
.yea{bottom:757.666667pt;}
.ya4{bottom:760.866667pt;}
.y38{bottom:761.826667pt;}
.y78{bottom:768.226667pt;}
.y101{bottom:773.986667pt;}
.y5e{bottom:775.266667pt;}
.ye9{bottom:779.106667pt;}
.ye{bottom:779.426667pt;}
.y37{bottom:782.946667pt;}
.y119{bottom:789.666667pt;}
.y100{bottom:796.706667pt;}
.y77{bottom:800.226667pt;}
.y36{bottom:804.066667pt;}
.yd{bottom:805.986667pt;}
.y5d{bottom:807.266667pt;}
.ye8{bottom:810.786667pt;}
.yff{bottom:819.746667pt;}
.y118{bottom:821.346667pt;}
.yc{bottom:824.226667pt;}
.y35{bottom:824.866667pt;}
.y76{bottom:832.226667pt;}
.y5c{bottom:839.266667pt;}
.yfe{bottom:842.786667pt;}
.yb{bottom:845.693333pt;}
.y34{bottom:846.013333pt;}
.y117{bottom:853.373333pt;}
.ye7{bottom:853.693333pt;}
.ya3{bottom:862.653333pt;}
.y75{bottom:864.253333pt;}
.ya{bottom:866.813333pt;}
.y33{bottom:867.133333pt;}
.y5b{bottom:871.293333pt;}
.ye6{bottom:874.813333pt;}
.y116{bottom:885.373333pt;}
.y9{bottom:888.253333pt;}
.y74{bottom:895.933333pt;}
.yfd{bottom:896.253333pt;}
.y5a{bottom:902.973333pt;}
.ye5{bottom:906.813333pt;}
.y32{bottom:909.053333pt;}
.y8{bottom:909.373333pt;}
.ya2{bottom:913.533333pt;}
.yfc{bottom:917.373333pt;}
.y73{bottom:927.933333pt;}
.ye4{bottom:928.253333pt;}
.y9f{bottom:928.573333pt;}
.y31{bottom:930.173333pt;}
.y7{bottom:930.813333pt;}
.y8d{bottom:931.133333pt;}
.y59{bottom:934.973333pt;}
.yfb{bottom:938.813333pt;}
.ye3{bottom:949.373333pt;}
.y30{bottom:951.293333pt;}
.y58{bottom:954.493333pt;}
.y72{bottom:959.973333pt;}
.y6{bottom:962.533333pt;}
.yfa{bottom:970.533333pt;}
.ye2{bottom:970.853333pt;}
.y2f{bottom:972.453333pt;}
.y57{bottom:974.053333pt;}
.y71{bottom:991.973333pt;}
.y5{bottom:993.573333pt;}
.y1{bottom:1061.093333pt;}
.hb{height:26.560000pt;}
.hd{height:26.592000pt;}
.h2{height:44.648750pt;}
.hc{height:49.665000pt;}
.h7{height:49.691250pt;}
.ha{height:52.378653pt;}
.he{height:53.120000pt;}
.h4{height:54.395000pt;}
.h3{height:54.423750pt;}
.h8{height:57.367096pt;}
.h5{height:59.125000pt;}
.h6{height:59.156250pt;}
.h14{height:61.152000pt;}
.h9{height:62.355539pt;}
.hf{height:79.712000pt;}
.h10{height:80.032000pt;}
.h11{height:94.752000pt;}
.h18{height:95.040000pt;}
.h15{height:95.072000pt;}
.h17{height:135.746667pt;}
.h16{height:156.186667pt;}
.h13{height:176.346667pt;}
.h12{height:196.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:53.792000pt;}
.w9{width:60.480000pt;}
.w5{width:74.272000pt;}
.wb{width:77.472000pt;}
.w7{width:97.632000pt;}
.wa{width:122.624000pt;}
.w6{width:128.704000pt;}
.w3{width:252.253333pt;}
.w4{width:350.853333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.720000pt;}
.x37{left:19.552000pt;}
.x3b{left:34.914667pt;}
.x39{left:38.434667pt;}
.x36{left:43.554667pt;}
.x38{left:47.394667pt;}
.x3c{left:56.640000pt;}
.x3a{left:66.274667pt;}
.x2d{left:106.592000pt;}
.xc{left:113.311988pt;}
.x8{left:121.311988pt;}
.x4b{left:138.306655pt;}
.x6{left:159.426655pt;}
.x1d{left:160.386655pt;}
.x3{left:165.826655pt;}
.x14{left:169.986655pt;}
.x2c{left:179.586655pt;}
.x30{left:181.506667pt;}
.x18{left:187.266655pt;}
.x1c{left:188.866655pt;}
.x59{left:198.786655pt;}
.x42{left:201.346655pt;}
.x57{left:210.013322pt;}
.x54{left:211.293322pt;}
.x53{left:217.053322pt;}
.x1f{left:223.773322pt;}
.x5d{left:228.573322pt;}
.x5a{left:232.413322pt;}
.x1a{left:233.373322pt;}
.xa{left:238.813322pt;}
.x56{left:240.413322pt;}
.x58{left:243.613322pt;}
.x55{left:244.893322pt;}
.x4c{left:246.813322pt;}
.x28{left:249.693322pt;}
.x7{left:258.973322pt;}
.x5e{left:262.173322pt;}
.x1b{left:266.973322pt;}
.x43{left:267.933322pt;}
.x17{left:274.333322pt;}
.x22{left:284.573322pt;}
.x5b{left:296.773322pt;}
.x31{left:310.853333pt;}
.xd{left:315.333322pt;}
.x2a{left:324.293322pt;}
.x50{left:329.413322pt;}
.x5c{left:330.373322pt;}
.x45{left:333.253322pt;}
.x20{left:334.533322pt;}
.x26{left:346.373322pt;}
.x19{left:347.973322pt;}
.x40{left:356.933322pt;}
.x2f{left:359.493333pt;}
.x52{left:364.293322pt;}
.x9{left:369.413322pt;}
.x44{left:386.399988pt;}
.x3d{left:398.879988pt;}
.xf{left:403.679988pt;}
.x32{left:409.120000pt;}
.x11{left:413.919988pt;}
.x4{left:415.839988pt;}
.x3f{left:431.519988pt;}
.xe{left:461.626655pt;}
.x33{left:463.546667pt;}
.x5{left:466.106655pt;}
.x24{left:468.666655pt;}
.x47{left:473.466655pt;}
.x51{left:487.866655pt;}
.x46{left:497.786655pt;}
.x4f{left:500.346655pt;}
.x27{left:509.946655pt;}
.x34{left:524.666667pt;}
.x2b{left:536.186655pt;}
.x10{left:550.946655pt;}
.xb{left:553.506655pt;}
.x1e{left:556.706655pt;}
.x29{left:559.586655pt;}
.x12{left:568.546655pt;}
.x13{left:572.066655pt;}
.x48{left:582.306655pt;}
.x49{left:606.626655pt;}
.x25{left:632.573322pt;}
.x23{left:635.453322pt;}
.x35{left:647.933333pt;}
.x41{left:652.733322pt;}
.x21{left:655.293322pt;}
.x4d{left:657.533322pt;}
.x4a{left:672.893322pt;}
.x3e{left:674.493322pt;}
.x15{left:677.053322pt;}
.x2{left:702.653322pt;}
.x4e{left:705.853322pt;}
.x16{left:714.533322pt;}
.x1{left:718.373322pt;}
}




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