
    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_c8468de7ba7d41fb8832c9bb.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_53afcd6a90d7b421f78bf378.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_7105e8566ac637725e1259aa.woff')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_32023cfdc0fe59c258964e0f.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_8e3fe9c153696425cd77cf52.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_ae31710e6a64a5489b1aa270.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_92e71d41e9511b06227ae26e.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;}
.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;}
.ls11{letter-spacing:-0.444600px;}
.ls17{letter-spacing:-0.427200px;}
.ls10{letter-spacing:-0.186600px;}
.ls20{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls13{letter-spacing:-0.060600px;}
.ls1b{letter-spacing:-0.037800px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls18{letter-spacing:0.016560px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.068400px;}
.ls1a{letter-spacing:0.069600px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.108600px;}
.ls15{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.199200px;}
.ls8{letter-spacing:0.357600px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:47.726640px;}
.ls1c{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;}
}
.wsf{word-spacing:-47.880000px;}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws14{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.wse{word-spacing:-13.335000px;}
.ws10{word-spacing:-13.324800px;}
.ws11{word-spacing:-13.296000px;}
.wsa{word-spacing:-13.294800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.188600px;}
.wsb{word-spacing:-13.165800px;}
.ws15{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws13{word-spacing:-10.550160px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._b{margin-left:-3.815400px;}
._9{margin-left:-2.557200px;}
._0{margin-left:-1.110000px;}
._3{width:1.055124px;}
._4{width:2.251476px;}
._a{width:3.646572px;}
._c{width:5.350800px;}
._7{width:6.613200px;}
._8{width:8.416800px;}
._d{width:9.559200px;}
._e{width:10.821360px;}
._10{width:12.024000px;}
._11{width:14.774757px;}
._5{width:16.413000px;}
._6{width:17.854798px;}
._14{width:21.643200px;}
._13{width:23.326560px;}
._f{width:24.889680px;}
._1{width:32.881212px;}
._2{width:33.987793px;}
._20{width:41.843520px;}
._21{width:42.925680px;}
._22{width:44.031600px;}
._1d{width:50.079960px;}
._1e{width:51.282360px;}
._1f{width:65.801160px;}
._1b{width:67.900920px;}
._17{width:69.258240px;}
._15{width:71.362440px;}
._16{width:72.624960px;}
._23{width:78.239880px;}
._1a{width:90.270000px;}
._12{width:140.094360px;}
._18{width:161.752680px;}
._19{width:162.775080px;}
._1c{width:901.138680px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y68{bottom:7.830000px;}
.y65{bottom:7.920000px;}
.y102{bottom:25.380000px;}
.y66{bottom:25.470000px;}
.y64{bottom:29.970000px;}
.ye3{bottom:52.830000px;}
.y100{bottom:72.270000px;}
.y109{bottom:72.360000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y62{bottom:74.880000px;}
.yff{bottom:89.820000px;}
.y108{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.yfe{bottom:107.370000px;}
.y107{bottom:107.460000px;}
.yd8{bottom:113.970000px;}
.ya5{bottom:116.130000px;}
.y131{bottom:119.190000px;}
.y7d{bottom:123.960000px;}
.y54{bottom:128.100000px;}
.y116{bottom:131.700000px;}
.ya4{bottom:133.680000px;}
.yfb{bottom:140.610000px;}
.y7c{bottom:141.600000px;}
.y26{bottom:143.580000px;}
.y53{bottom:145.650000px;}
.y115{bottom:149.250000px;}
.yd7{bottom:149.610000px;}
.ya3{bottom:151.320000px;}
.ybb{bottom:152.130000px;}
.y130{bottom:154.740000px;}
.yfa{bottom:158.160000px;}
.y25{bottom:161.130000px;}
.y52{bottom:163.200000px;}
.ya2{bottom:168.870000px;}
.yba{bottom:169.680000px;}
.yf9{bottom:175.710000px;}
.y7b{bottom:177.150000px;}
.y24{bottom:178.680000px;}
.y12f{bottom:181.650000px;}
.y114{bottom:184.890000px;}
.yd6{bottom:185.160000px;}
.yb9{bottom:187.320000px;}
.y7a{bottom:194.790000px;}
.y23{bottom:196.320000px;}
.y51{bottom:198.840000px;}
.y113{bottom:202.440000px;}
.ya1{bottom:204.510000px;}
.yb8{bottom:204.870000px;}
.yf8{bottom:208.740000px;}
.y79{bottom:212.340000px;}
.y50{bottom:216.390000px;}
.y12e{bottom:218.730000px;}
.y112{bottom:219.990000px;}
.yd5{bottom:220.800000px;}
.ya0{bottom:222.060000px;}
.yb7{bottom:222.510000px;}
.y78{bottom:229.890000px;}
.y22{bottom:231.870000px;}
.y4f{bottom:233.940000px;}
.yf7{bottom:236.010000px;}
.y12d{bottom:236.280000px;}
.y111{bottom:237.630000px;}
.y9f{bottom:239.610000px;}
.yb6{bottom:240.060000px;}
.y77{bottom:247.530000px;}
.y21{bottom:249.510000px;}
.y110{bottom:255.180000px;}
.yd4{bottom:255.630000px;}
.y9e{bottom:257.250000px;}
.y12c{bottom:263.190000px;}
.yf6{bottom:263.370000px;}
.y20{bottom:267.060000px;}
.yd3{bottom:268.500000px;}
.y4e{bottom:269.580000px;}
.y10f{bottom:272.820000px;}
.yb5{bottom:275.610000px;}
.y76{bottom:283.080000px;}
.y1f{bottom:284.610000px;}
.y4d{bottom:287.130000px;}
.yf5{bottom:290.730000px;}
.y9d{bottom:292.800000px;}
.yb4{bottom:293.250000px;}
.yd2{bottom:295.770000px;}
.y12b{bottom:300.180000px;}
.y75{bottom:300.720000px;}
.y1e{bottom:302.250000px;}
.y10e{bottom:307.650000px;}
.y9c{bottom:310.440000px;}
.yb3{bottom:310.800000px;}
.y4c{bottom:313.770000px;}
.y12a{bottom:317.820000px;}
.yf4{bottom:318.090000px;}
.y10d{bottom:321.690000px;}
.yd1{bottom:323.130000px;}
.y9b{bottom:327.990000px;}
.yb2{bottom:328.440000px;}
.y1d{bottom:329.160000px;}
.y156{bottom:330.420000px;}
.y106{bottom:333.840000px;}
.y129{bottom:335.370000px;}
.y74{bottom:335.550000px;}
.yf3{bottom:345.360000px;}
.y9a{bottom:345.540000px;}
.yb1{bottom:345.990000px;}
.y73{bottom:347.700000px;}
.y155{bottom:347.970000px;}
.y4b{bottom:349.320000px;}
.yd0{bottom:350.490000px;}
.y128{bottom:353.010000px;}
.y10c{bottom:361.200000px;}
.yb0{bottom:363.540000px;}
.y4a{bottom:366.870000px;}
.yf2{bottom:372.720000px;}
.y154{bottom:374.610000px;}
.y1c{bottom:377.760000px;}
.y127{bottom:379.920000px;}
.y99{bottom:381.180000px;}
.y49{bottom:384.510000px;}
.y10b{bottom:388.560000px;}
.y153{bottom:392.160000px;}
.y72{bottom:392.610000px;}
.y98{bottom:398.730000px;}
.yaf{bottom:399.180000px;}
.yf1{bottom:400.080000px;}
.y48{bottom:402.060000px;}
.y1b{bottom:414.750000px;}
.y10a{bottom:415.920000px;}
.y97{bottom:416.370000px;}
.yae{bottom:416.730000px;}
.y126{bottom:417.180000px;}
.y152{bottom:418.710000px;}
.y71{bottom:419.970000px;}
.yf0{bottom:427.440000px;}
.y47{bottom:428.700000px;}
.y1a{bottom:432.300000px;}
.y96{bottom:433.920000px;}
.yad{bottom:434.370000px;}
.y151{bottom:436.350000px;}
.y70{bottom:447.330000px;}
.y19{bottom:449.940000px;}
.yac{bottom:451.920000px;}
.ycf{bottom:452.370000px;}
.yef{bottom:454.710000px;}
.y105{bottom:460.830000px;}
.y150{bottom:462.900000px;}
.y46{bottom:464.250000px;}
.y125{bottom:465.510000px;}
.y18{bottom:467.490000px;}
.y95{bottom:469.470000px;}
.yce{bottom:469.950000px;}
.y6f{bottom:474.630000px;}
.y14f{bottom:480.480000px;}
.y45{bottom:481.830000px;}
.yee{bottom:482.100000px;}
.y124{bottom:483.090000px;}
.y94{bottom:487.140000px;}
.ycd{bottom:487.500000px;}
.yfd{bottom:488.220000px;}
.y14e{bottom:498.120000px;}
.y44{bottom:499.470000px;}
.y123{bottom:500.730000px;}
.y6e{bottom:501.990000px;}
.y17{bottom:503.160000px;}
.y93{bottom:504.690000px;}
.ycc{bottom:505.140000px;}
.yed{bottom:509.460000px;}
.y104{bottom:515.490000px;}
.y43{bottom:517.020000px;}
.y16{bottom:520.710000px;}
.yab{bottom:522.690000px;}
.y14d{bottom:524.670000px;}
.y6d{bottom:529.350000px;}
.y122{bottom:536.280000px;}
.yec{bottom:536.730000px;}
.y15{bottom:538.260000px;}
.y92{bottom:540.330000px;}
.y14c{bottom:542.310000px;}
.y103{bottom:542.850000px;}
.y42{bottom:543.660000px;}
.y121{bottom:553.830000px;}
.y14{bottom:555.900000px;}
.y6c{bottom:556.710000px;}
.y91{bottom:557.880000px;}
.yeb{bottom:564.090000px;}
.y14b{bottom:568.860000px;}
.y101{bottom:570.210000px;}
.y120{bottom:571.470000px;}
.y13{bottom:573.450000px;}
.y90{bottom:575.430000px;}
.ycb{bottom:575.880000px;}
.y41{bottom:579.210000px;}
.y6b{bottom:583.980000px;}
.y14a{bottom:586.410000px;}
.y11f{bottom:589.020000px;}
.y12{bottom:591.090000px;}
.yaa{bottom:593.070000px;}
.yca{bottom:593.430000px;}
.y40{bottom:596.760000px;}
.y11e{bottom:606.660000px;}
.yea{bottom:609.000000px;}
.ya9{bottom:610.620000px;}
.y8f{bottom:611.070000px;}
.y6a{bottom:611.340000px;}
.y149{bottom:613.050000px;}
.y3f{bottom:614.400000px;}
.yfc{bottom:615.120000px;}
.y11d{bottom:624.210000px;}
.y11{bottom:626.640000px;}
.ya8{bottom:628.260000px;}
.y8e{bottom:628.620000px;}
.yc9{bottom:629.070000px;}
.y148{bottom:630.600000px;}
.ye9{bottom:636.360000px;}
.y69{bottom:638.700000px;}
.y3e{bottom:640.950000px;}
.y11c{bottom:641.760000px;}
.y10{bottom:644.190000px;}
.y8d{bottom:646.260000px;}
.yc8{bottom:646.620000px;}
.y147{bottom:648.240000px;}
.y11b{bottom:659.400000px;}
.yf{bottom:661.830000px;}
.ye8{bottom:663.720000px;}
.y8c{bottom:663.810000px;}
.yc7{bottom:664.260000px;}
.y67{bottom:666.060000px;}
.y146{bottom:674.790000px;}
.y3d{bottom:676.590000px;}
.y11a{bottom:676.950000px;}
.ye{bottom:679.380000px;}
.y8b{bottom:681.360000px;}
.yc6{bottom:681.810000px;}
.y145{bottom:692.340000px;}
.y61{bottom:693.330000px;}
.y3c{bottom:694.140000px;}
.yd{bottom:697.020000px;}
.y8a{bottom:699.000000px;}
.yc5{bottom:699.360000px;}
.y119{bottom:703.860000px;}
.ye7{bottom:708.630000px;}
.y144{bottom:709.980000px;}
.y3b{bottom:711.690000px;}
.yc{bottom:714.570000px;}
.y89{bottom:716.550000px;}
.yc4{bottom:717.000000px;}
.y3a{bottom:729.330000px;}
.yb{bottom:732.120000px;}
.y88{bottom:734.190000px;}
.yc3{bottom:734.550000px;}
.ye6{bottom:735.990000px;}
.y143{bottom:736.530000px;}
.y63{bottom:738.240000px;}
.ya7{bottom:751.740000px;}
.yc2{bottom:752.190000px;}
.y142{bottom:754.170000px;}
.ya{bottom:759.120000px;}
.ye5{bottom:763.260000px;}
.y39{bottom:764.880000px;}
.y87{bottom:769.740000px;}
.y141{bottom:771.720000px;}
.y38{bottom:782.520000px;}
.y86{bottom:787.290000px;}
.ye2{bottom:790.620000px;}
.y140{bottom:798.270000px;}
.y85{bottom:804.930000px;}
.yc1{bottom:805.290000px;}
.y9{bottom:805.830000px;}
.y37{bottom:809.070000px;}
.y84{bottom:822.480000px;}
.yc0{bottom:822.930000px;}
.y13f{bottom:824.910000px;}
.ye4{bottom:835.530000px;}
.ya6{bottom:840.030000px;}
.ybf{bottom:840.480000px;}
.y8{bottom:841.380000px;}
.y13e{bottom:842.460000px;}
.y60{bottom:844.620000px;}
.y36{bottom:844.980000px;}
.y83{bottom:858.030000px;}
.y13d{bottom:860.100000px;}
.y5f{bottom:862.260000px;}
.y82{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y5e{bottom:879.810000px;}
.ye1{bottom:884.220000px;}
.y13c{bottom:886.650000px;}
.y35{bottom:893.220000px;}
.y5d{bottom:897.450000px;}
.ye0{bottom:901.860000px;}
.y13b{bottom:904.200000px;}
.y34{bottom:910.860000px;}
.ybe{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y5c{bottom:915.000000px;}
.y33{bottom:928.410000px;}
.ybd{bottom:928.860000px;}
.y13a{bottom:930.840000px;}
.ydf{bottom:937.410000px;}
.y5b{bottom:941.910000px;}
.y32{bottom:945.960000px;}
.ybc{bottom:946.410000px;}
.y139{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.yde{bottom:954.960000px;}
.y31{bottom:963.600000px;}
.y81{bottom:963.960000px;}
.ydd{bottom:972.600000px;}
.y138{bottom:975.030000px;}
.y80{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y5a{bottom:990.150000px;}
.y137{bottom:992.580000px;}
.y30{bottom:999.150000px;}
.y59{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y136{bottom:1019.160000px;}
.y58{bottom:1025.370000px;}
.y2e{bottom:1034.370000px;}
.y118{bottom:1034.820000px;}
.y135{bottom:1036.800000px;}
.y57{bottom:1042.920000px;}
.y2d{bottom:1051.920000px;}
.y117{bottom:1052.370000px;}
.y56{bottom:1060.560000px;}
.ydc{bottom:1060.920000px;}
.y134{bottom:1063.710000px;}
.y2c{bottom:1069.560000px;}
.y7f{bottom:1069.920000px;}
.ydb{bottom:1078.560000px;}
.y55{bottom:1087.110000px;}
.y7e{bottom:1087.560000px;}
.yda{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y133{bottom:1111.950000px;}
.yd9{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y132{bottom:1138.860000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hc{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h13{height:44.100000px;}
.hb{height:44.190000px;}
.ha{height:48.690000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h15{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h10{height:71.550000px;}
.h9{height:93.600000px;}
.h12{height:126.090000px;}
.h14{height:126.180000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:32.130000px;}
.w1e{width:39.780000px;}
.w6{width:43.740000px;}
.w11{width:44.100000px;}
.w1f{width:50.220000px;}
.w1b{width:50.850000px;}
.we{width:51.750000px;}
.w17{width:52.380000px;}
.w1d{width:52.740000px;}
.w18{width:53.730000px;}
.w19{width:55.260000px;}
.w15{width:61.290000px;}
.w1c{width:63.090000px;}
.w1a{width:65.640000px;}
.w12{width:72.930000px;}
.w14{width:76.050000px;}
.w5{width:88.020000px;}
.w7{width:95.760000px;}
.wd{width:104.970000px;}
.w9{width:105.570000px;}
.wb{width:120.870000px;}
.wa{width:121.320000px;}
.w13{width:125.280000px;}
.w8{width:137.550000px;}
.w16{width:149.520000px;}
.w3{width:274.800000px;}
.w10{width:275.790000px;}
.w4{width:340.320000px;}
.wf{width:389.910000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.710000px;}
.x5{left:3.870000px;}
.xc{left:7.650000px;}
.x1{left:68.040000px;}
.x18{left:69.120000px;}
.x4{left:72.000000px;}
.x25{left:80.189987px;}
.xb{left:97.379987px;}
.x27{left:111.239987px;}
.x1a{left:131.130000px;}
.x26{left:156.779987px;}
.x2{left:202.799987px;}
.x1b{left:281.370000px;}
.xd{left:325.470000px;}
.x1c{left:334.560000px;}
.x6{left:347.610000px;}
.x1d{left:387.660000px;}
.x12{left:392.789987px;}
.x1e{left:442.200000px;}
.x9{left:444.090000px;}
.xe{left:447.060000px;}
.x13{left:459.390000px;}
.xf{left:479.910000px;}
.x1f{left:498.270000px;}
.x16{left:533.130000px;}
.x20{left:564.630000px;}
.xa{left:582.360000px;}
.x10{left:585.600000px;}
.x21{left:616.200000px;}
.x11{left:638.160000px;}
.x17{left:659.130000px;}
.x22{left:680.010000px;}
.x7{left:688.740000px;}
.x23{left:733.470000px;}
.x14{left:735.900000px;}
.x24{left:773.970000px;}
.x8{left:777.480000px;}
.x15{left:780.720000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.395200pt;}
.ls17{letter-spacing:-0.379733pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls20{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls13{letter-spacing:-0.053867pt;}
.ls1b{letter-spacing:-0.033600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls18{letter-spacing:0.014720pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.060800pt;}
.ls1a{letter-spacing:0.061867pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.096533pt;}
.ls15{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.177067pt;}
.ls8{letter-spacing:0.317867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.wsf{word-spacing:-42.560000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws14{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.853333pt;}
.ws10{word-spacing:-11.844267pt;}
.ws11{word-spacing:-11.818667pt;}
.wsa{word-spacing:-11.817600pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.723200pt;}
.wsb{word-spacing:-11.702933pt;}
.ws15{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws13{word-spacing:-9.377920pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._b{margin-left:-3.391467pt;}
._9{margin-left:-2.273066pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.937888pt;}
._4{width:2.001312pt;}
._a{width:3.241397pt;}
._c{width:4.756267pt;}
._7{width:5.878400pt;}
._8{width:7.481600pt;}
._d{width:8.497067pt;}
._e{width:9.618986pt;}
._10{width:10.688000pt;}
._11{width:13.133117pt;}
._5{width:14.589334pt;}
._6{width:15.870932pt;}
._14{width:19.238400pt;}
._13{width:20.734720pt;}
._f{width:22.124160pt;}
._1{width:29.227744pt;}
._2{width:30.211372pt;}
._20{width:37.194240pt;}
._21{width:38.156160pt;}
._22{width:39.139200pt;}
._1d{width:44.515520pt;}
._1e{width:45.584320pt;}
._1f{width:58.489920pt;}
._1b{width:60.356373pt;}
._17{width:61.562880pt;}
._15{width:63.433280pt;}
._16{width:64.555520pt;}
._23{width:69.546560pt;}
._1a{width:80.240000pt;}
._12{width:124.528320pt;}
._18{width:143.780160pt;}
._19{width:144.688960pt;}
._1c{width:801.012160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:6.960000pt;}
.y65{bottom:7.040000pt;}
.y102{bottom:22.560000pt;}
.y66{bottom:22.640000pt;}
.y64{bottom:26.640000pt;}
.ye3{bottom:46.960000pt;}
.y100{bottom:64.240000pt;}
.y109{bottom:64.320000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y62{bottom:66.560000pt;}
.yff{bottom:79.840000pt;}
.y108{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.yfe{bottom:95.440000pt;}
.y107{bottom:95.520000pt;}
.yd8{bottom:101.306667pt;}
.ya5{bottom:103.226667pt;}
.y131{bottom:105.946667pt;}
.y7d{bottom:110.186667pt;}
.y54{bottom:113.866667pt;}
.y116{bottom:117.066667pt;}
.ya4{bottom:118.826667pt;}
.yfb{bottom:124.986667pt;}
.y7c{bottom:125.866667pt;}
.y26{bottom:127.626667pt;}
.y53{bottom:129.466667pt;}
.y115{bottom:132.666667pt;}
.yd7{bottom:132.986667pt;}
.ya3{bottom:134.506667pt;}
.ybb{bottom:135.226667pt;}
.y130{bottom:137.546667pt;}
.yfa{bottom:140.586667pt;}
.y25{bottom:143.226667pt;}
.y52{bottom:145.066667pt;}
.ya2{bottom:150.106667pt;}
.yba{bottom:150.826667pt;}
.yf9{bottom:156.186667pt;}
.y7b{bottom:157.466667pt;}
.y24{bottom:158.826667pt;}
.y12f{bottom:161.466667pt;}
.y114{bottom:164.346667pt;}
.yd6{bottom:164.586667pt;}
.yb9{bottom:166.506667pt;}
.y7a{bottom:173.146667pt;}
.y23{bottom:174.506667pt;}
.y51{bottom:176.746667pt;}
.y113{bottom:179.946667pt;}
.ya1{bottom:181.786667pt;}
.yb8{bottom:182.106667pt;}
.yf8{bottom:185.546667pt;}
.y79{bottom:188.746667pt;}
.y50{bottom:192.346667pt;}
.y12e{bottom:194.426667pt;}
.y112{bottom:195.546667pt;}
.yd5{bottom:196.266667pt;}
.ya0{bottom:197.386667pt;}
.yb7{bottom:197.786667pt;}
.y78{bottom:204.346667pt;}
.y22{bottom:206.106667pt;}
.y4f{bottom:207.946667pt;}
.yf7{bottom:209.786667pt;}
.y12d{bottom:210.026667pt;}
.y111{bottom:211.226667pt;}
.y9f{bottom:212.986667pt;}
.yb6{bottom:213.386667pt;}
.y77{bottom:220.026667pt;}
.y21{bottom:221.786667pt;}
.y110{bottom:226.826667pt;}
.yd4{bottom:227.226667pt;}
.y9e{bottom:228.666667pt;}
.y12c{bottom:233.946667pt;}
.yf6{bottom:234.106667pt;}
.y20{bottom:237.386667pt;}
.yd3{bottom:238.666667pt;}
.y4e{bottom:239.626667pt;}
.y10f{bottom:242.506667pt;}
.yb5{bottom:244.986667pt;}
.y76{bottom:251.626667pt;}
.y1f{bottom:252.986667pt;}
.y4d{bottom:255.226667pt;}
.yf5{bottom:258.426667pt;}
.y9d{bottom:260.266667pt;}
.yb4{bottom:260.666667pt;}
.yd2{bottom:262.906667pt;}
.y12b{bottom:266.826667pt;}
.y75{bottom:267.306667pt;}
.y1e{bottom:268.666667pt;}
.y10e{bottom:273.466667pt;}
.y9c{bottom:275.946667pt;}
.yb3{bottom:276.266667pt;}
.y4c{bottom:278.906667pt;}
.y12a{bottom:282.506667pt;}
.yf4{bottom:282.746667pt;}
.y10d{bottom:285.946667pt;}
.yd1{bottom:287.226667pt;}
.y9b{bottom:291.546667pt;}
.yb2{bottom:291.946667pt;}
.y1d{bottom:292.586667pt;}
.y156{bottom:293.706667pt;}
.y106{bottom:296.746667pt;}
.y129{bottom:298.106667pt;}
.y74{bottom:298.266667pt;}
.yf3{bottom:306.986667pt;}
.y9a{bottom:307.146667pt;}
.yb1{bottom:307.546667pt;}
.y73{bottom:309.066667pt;}
.y155{bottom:309.306667pt;}
.y4b{bottom:310.506667pt;}
.yd0{bottom:311.546667pt;}
.y128{bottom:313.786667pt;}
.y10c{bottom:321.066667pt;}
.yb0{bottom:323.146667pt;}
.y4a{bottom:326.106667pt;}
.yf2{bottom:331.306667pt;}
.y154{bottom:332.986667pt;}
.y1c{bottom:335.786667pt;}
.y127{bottom:337.706667pt;}
.y99{bottom:338.826667pt;}
.y49{bottom:341.786667pt;}
.y10b{bottom:345.386667pt;}
.y153{bottom:348.586667pt;}
.y72{bottom:348.986667pt;}
.y98{bottom:354.426667pt;}
.yaf{bottom:354.826667pt;}
.yf1{bottom:355.626667pt;}
.y48{bottom:357.386667pt;}
.y1b{bottom:368.666667pt;}
.y10a{bottom:369.706667pt;}
.y97{bottom:370.106667pt;}
.yae{bottom:370.426667pt;}
.y126{bottom:370.826667pt;}
.y152{bottom:372.186667pt;}
.y71{bottom:373.306667pt;}
.yf0{bottom:379.946667pt;}
.y47{bottom:381.066667pt;}
.y1a{bottom:384.266667pt;}
.y96{bottom:385.706667pt;}
.yad{bottom:386.106667pt;}
.y151{bottom:387.866667pt;}
.y70{bottom:397.626667pt;}
.y19{bottom:399.946667pt;}
.yac{bottom:401.706667pt;}
.ycf{bottom:402.106667pt;}
.yef{bottom:404.186667pt;}
.y105{bottom:409.626667pt;}
.y150{bottom:411.466667pt;}
.y46{bottom:412.666667pt;}
.y125{bottom:413.786667pt;}
.y18{bottom:415.546667pt;}
.y95{bottom:417.306667pt;}
.yce{bottom:417.733333pt;}
.y6f{bottom:421.893333pt;}
.y14f{bottom:427.093333pt;}
.y45{bottom:428.293333pt;}
.yee{bottom:428.533333pt;}
.y124{bottom:429.413333pt;}
.y94{bottom:433.013333pt;}
.ycd{bottom:433.333333pt;}
.yfd{bottom:433.973333pt;}
.y14e{bottom:442.773333pt;}
.y44{bottom:443.973333pt;}
.y123{bottom:445.093333pt;}
.y6e{bottom:446.213333pt;}
.y17{bottom:447.253333pt;}
.y93{bottom:448.613333pt;}
.ycc{bottom:449.013333pt;}
.yed{bottom:452.853333pt;}
.y104{bottom:458.213333pt;}
.y43{bottom:459.573333pt;}
.y16{bottom:462.853333pt;}
.yab{bottom:464.613333pt;}
.y14d{bottom:466.373333pt;}
.y6d{bottom:470.533333pt;}
.y122{bottom:476.693333pt;}
.yec{bottom:477.093333pt;}
.y15{bottom:478.453333pt;}
.y92{bottom:480.293333pt;}
.y14c{bottom:482.053333pt;}
.y103{bottom:482.533333pt;}
.y42{bottom:483.253333pt;}
.y121{bottom:492.293333pt;}
.y14{bottom:494.133333pt;}
.y6c{bottom:494.853333pt;}
.y91{bottom:495.893333pt;}
.yeb{bottom:501.413333pt;}
.y14b{bottom:505.653333pt;}
.y101{bottom:506.853333pt;}
.y120{bottom:507.973333pt;}
.y13{bottom:509.733333pt;}
.y90{bottom:511.493333pt;}
.ycb{bottom:511.893333pt;}
.y41{bottom:514.853333pt;}
.y6b{bottom:519.093333pt;}
.y14a{bottom:521.253333pt;}
.y11f{bottom:523.573333pt;}
.y12{bottom:525.413333pt;}
.yaa{bottom:527.173333pt;}
.yca{bottom:527.493333pt;}
.y40{bottom:530.453333pt;}
.y11e{bottom:539.253333pt;}
.yea{bottom:541.333333pt;}
.ya9{bottom:542.773333pt;}
.y8f{bottom:543.173333pt;}
.y6a{bottom:543.413333pt;}
.y149{bottom:544.933333pt;}
.y3f{bottom:546.133333pt;}
.yfc{bottom:546.773333pt;}
.y11d{bottom:554.853333pt;}
.y11{bottom:557.013333pt;}
.ya8{bottom:558.453333pt;}
.y8e{bottom:558.773333pt;}
.yc9{bottom:559.173333pt;}
.y148{bottom:560.533333pt;}
.ye9{bottom:565.653333pt;}
.y69{bottom:567.733333pt;}
.y3e{bottom:569.733333pt;}
.y11c{bottom:570.453333pt;}
.y10{bottom:572.613333pt;}
.y8d{bottom:574.453333pt;}
.yc8{bottom:574.773333pt;}
.y147{bottom:576.213333pt;}
.y11b{bottom:586.133333pt;}
.yf{bottom:588.293333pt;}
.ye8{bottom:589.973333pt;}
.y8c{bottom:590.053333pt;}
.yc7{bottom:590.453333pt;}
.y67{bottom:592.053333pt;}
.y146{bottom:599.813333pt;}
.y3d{bottom:601.413333pt;}
.y11a{bottom:601.733333pt;}
.ye{bottom:603.893333pt;}
.y8b{bottom:605.653333pt;}
.yc6{bottom:606.053333pt;}
.y145{bottom:615.413333pt;}
.y61{bottom:616.293333pt;}
.y3c{bottom:617.013333pt;}
.yd{bottom:619.573333pt;}
.y8a{bottom:621.333333pt;}
.yc5{bottom:621.653333pt;}
.y119{bottom:625.653333pt;}
.ye7{bottom:629.893333pt;}
.y144{bottom:631.093333pt;}
.y3b{bottom:632.613333pt;}
.yc{bottom:635.173333pt;}
.y89{bottom:636.933333pt;}
.yc4{bottom:637.333333pt;}
.y3a{bottom:648.293333pt;}
.yb{bottom:650.773333pt;}
.y88{bottom:652.613333pt;}
.yc3{bottom:652.933333pt;}
.ye6{bottom:654.213333pt;}
.y143{bottom:654.693333pt;}
.y63{bottom:656.213333pt;}
.ya7{bottom:668.213333pt;}
.yc2{bottom:668.613333pt;}
.y142{bottom:670.373333pt;}
.ya{bottom:674.773333pt;}
.ye5{bottom:678.453333pt;}
.y39{bottom:679.893333pt;}
.y87{bottom:684.213333pt;}
.y141{bottom:685.973333pt;}
.y38{bottom:695.573333pt;}
.y86{bottom:699.813333pt;}
.ye2{bottom:702.773333pt;}
.y140{bottom:709.573333pt;}
.y85{bottom:715.493333pt;}
.yc1{bottom:715.813333pt;}
.y9{bottom:716.293333pt;}
.y37{bottom:719.173333pt;}
.y84{bottom:731.093333pt;}
.yc0{bottom:731.493333pt;}
.y13f{bottom:733.253333pt;}
.ye4{bottom:742.693333pt;}
.ya6{bottom:746.693333pt;}
.ybf{bottom:747.093333pt;}
.y8{bottom:747.893333pt;}
.y13e{bottom:748.853333pt;}
.y60{bottom:750.773333pt;}
.y36{bottom:751.093333pt;}
.y83{bottom:762.693333pt;}
.y13d{bottom:764.533333pt;}
.y5f{bottom:766.453333pt;}
.y82{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y5e{bottom:782.053333pt;}
.ye1{bottom:785.973333pt;}
.y13c{bottom:788.133333pt;}
.y35{bottom:793.973333pt;}
.y5d{bottom:797.733333pt;}
.ye0{bottom:801.653333pt;}
.y13b{bottom:803.733333pt;}
.y34{bottom:809.653333pt;}
.ybe{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y5c{bottom:813.333333pt;}
.y33{bottom:825.253333pt;}
.ybd{bottom:825.653333pt;}
.y13a{bottom:827.413333pt;}
.ydf{bottom:833.253333pt;}
.y5b{bottom:837.253333pt;}
.y32{bottom:840.853333pt;}
.ybc{bottom:841.253333pt;}
.y139{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.yde{bottom:848.853333pt;}
.y31{bottom:856.533333pt;}
.y81{bottom:856.853333pt;}
.ydd{bottom:864.533333pt;}
.y138{bottom:866.693333pt;}
.y80{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y5a{bottom:880.133333pt;}
.y137{bottom:882.293333pt;}
.y30{bottom:888.133333pt;}
.y59{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y136{bottom:905.920000pt;}
.y58{bottom:911.440000pt;}
.y2e{bottom:919.440000pt;}
.y118{bottom:919.840000pt;}
.y135{bottom:921.600000pt;}
.y57{bottom:927.040000pt;}
.y2d{bottom:935.040000pt;}
.y117{bottom:935.440000pt;}
.y56{bottom:942.720000pt;}
.ydc{bottom:943.040000pt;}
.y134{bottom:945.520000pt;}
.y2c{bottom:950.720000pt;}
.y7f{bottom:951.040000pt;}
.ydb{bottom:958.720000pt;}
.y55{bottom:966.320000pt;}
.y7e{bottom:966.720000pt;}
.yda{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y133{bottom:988.400000pt;}
.yd9{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y132{bottom:1012.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h13{height:39.200000pt;}
.hb{height:39.280000pt;}
.ha{height:43.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h15{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h10{height:63.600000pt;}
.h9{height:83.200000pt;}
.h12{height:112.080000pt;}
.h14{height:112.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:28.560000pt;}
.w1e{width:35.360000pt;}
.w6{width:38.880000pt;}
.w11{width:39.200000pt;}
.w1f{width:44.640000pt;}
.w1b{width:45.200000pt;}
.we{width:46.000000pt;}
.w17{width:46.560000pt;}
.w1d{width:46.880000pt;}
.w18{width:47.760000pt;}
.w19{width:49.120000pt;}
.w15{width:54.480000pt;}
.w1c{width:56.080000pt;}
.w1a{width:58.346667pt;}
.w12{width:64.826667pt;}
.w14{width:67.600000pt;}
.w5{width:78.240000pt;}
.w7{width:85.120000pt;}
.wd{width:93.306667pt;}
.w9{width:93.840000pt;}
.wb{width:107.440000pt;}
.wa{width:107.840000pt;}
.w13{width:111.360000pt;}
.w8{width:122.266667pt;}
.w16{width:132.906667pt;}
.w3{width:244.266667pt;}
.w10{width:245.146667pt;}
.w4{width:302.506667pt;}
.wf{width:346.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:1.520000pt;}
.x5{left:3.440000pt;}
.xc{left:6.800000pt;}
.x1{left:60.480000pt;}
.x18{left:61.440000pt;}
.x4{left:64.000000pt;}
.x25{left:71.279988pt;}
.xb{left:86.559988pt;}
.x27{left:98.879988pt;}
.x1a{left:116.560000pt;}
.x26{left:139.359988pt;}
.x2{left:180.266655pt;}
.x1b{left:250.106667pt;}
.xd{left:289.306667pt;}
.x1c{left:297.386667pt;}
.x6{left:308.986667pt;}
.x1d{left:344.586667pt;}
.x12{left:349.146655pt;}
.x1e{left:393.066667pt;}
.x9{left:394.746667pt;}
.xe{left:397.386667pt;}
.x13{left:408.346667pt;}
.xf{left:426.586667pt;}
.x1f{left:442.906667pt;}
.x16{left:473.893333pt;}
.x20{left:501.893333pt;}
.xa{left:517.653333pt;}
.x10{left:520.533333pt;}
.x21{left:547.733333pt;}
.x11{left:567.253333pt;}
.x17{left:585.893333pt;}
.x22{left:604.453333pt;}
.x7{left:612.213333pt;}
.x23{left:651.973333pt;}
.x14{left:654.133333pt;}
.x24{left:687.973333pt;}
.x8{left:691.093333pt;}
.x15{left:693.973333pt;}
.x3{left:704.053322pt;}
}




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