
    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_5ac1af4c9d86254b89efb9dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e596b747f2ad834aacdcebd7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3ce4e1a02ad0e5c46b387bac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128418;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_b3f477c2595f6a742f3ace48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128418;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_3f788f99719d3f9b54791c62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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:ff9;src:url('chunks/assets/font_74ba9838071a1c356304c765.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-3.240000px;}
.ls12{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106560px;}
.lsf{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.460080px;}
.ls7{letter-spacing:0.666720px;}
.ls1c{letter-spacing:16.506720px;}
.lsa{letter-spacing:41.706720px;}
.lse{letter-spacing:43.146720px;}
.ls9{letter-spacing:44.586720px;}
.ls0{letter-spacing:45.306720px;}
.lsc{letter-spacing:46.026720px;}
.ls14{letter-spacing:49.626720px;}
.lsb{letter-spacing:51.066720px;}
.ls19{letter-spacing:134.100000px;}
.ls17{letter-spacing:134.244000px;}
.ls1a{letter-spacing:167.940000px;}
.ls18{letter-spacing:201.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws5{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.wsb{word-spacing:-11.700000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1166.086080px;}
._6{margin-left:-501.240000px;}
._4a{margin-left:-199.658160px;}
._47{margin-left:-85.989600px;}
._4b{margin-left:-34.329360px;}
._4d{margin-left:-8.788320px;}
._3b{margin-left:-7.709040px;}
._29{margin-left:-5.733840px;}
._37{margin-left:-4.601520px;}
._8{margin-left:-3.355200px;}
._7{margin-left:-2.289360px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._c{width:2.514960px;}
._b{width:3.986400px;}
._a{width:5.497920px;}
._9{width:6.693120px;}
._1e{width:8.642400px;}
._e{width:10.196160px;}
._d{width:11.653200px;}
._13{width:12.778800px;}
._f{width:13.800240px;}
._11{width:16.158000px;}
._15{width:17.247840px;}
._14{width:18.525600px;}
._2a{width:19.698000px;}
._21{width:20.796480px;}
._20{width:21.812400px;}
._30{width:23.246640px;}
._19{width:25.136160px;}
._1a{width:26.174880px;}
._1b{width:27.728640px;}
._1c{width:28.750320px;}
._2e{width:30.395040px;}
._2f{width:31.448160px;}
._23{width:32.521920px;}
._27{width:33.806880px;}
._26{width:35.497440px;}
._35{width:36.908880px;}
._2c{width:38.067120px;}
._34{width:39.501360px;}
._33{width:40.655040px;}
._2d{width:41.680080px;}
._25{width:43.574640px;}
._12{width:45.537120px;}
._1f{width:47.247360px;}
._22{width:48.349440px;}
._4c{width:49.646400px;}
._10{width:50.713440px;}
._42{width:52.225200px;}
._41{width:53.425440px;}
._24{width:57.774480px;}
._45{width:58.875360px;}
._28{width:59.916480px;}
._1d{width:62.665440px;}
._2b{width:64.779840px;}
._17{width:71.541600px;}
._16{width:72.932640px;}
._31{width:75.573600px;}
._32{width:76.574160px;}
._18{width:78.083520px;}
._46{width:91.529520px;}
._3d{width:108.999120px;}
._3e{width:129.915120px;}
._40{width:157.049280px;}
._44{width:162.064080px;}
._43{width:163.739280px;}
._3a{width:171.451440px;}
._38{width:174.319920px;}
._48{width:200.320800px;}
._49{width:201.799200px;}
._3f{width:220.630800px;}
._39{width:221.829120px;}
._36{width:228.283200px;}
._3c{width:265.271520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y70{bottom:5.940000px;}
.y8{bottom:10.980000px;}
.y7c{bottom:25.560000px;}
.yf7{bottom:25.590000px;}
.y11d{bottom:25.605000px;}
.y74{bottom:25.740000px;}
.ybc{bottom:25.770000px;}
.y7f{bottom:25.785000px;}
.y9{bottom:35.460000px;}
.ye8{bottom:39.600000px;}
.y110{bottom:39.630000px;}
.y11c{bottom:39.645000px;}
.yeb{bottom:39.780000px;}
.yb6{bottom:45.360000px;}
.yed{bottom:45.390000px;}
.ye5{bottom:45.540000px;}
.ye3{bottom:45.585000px;}
.y6{bottom:49.500000px;}
.yee{bottom:59.430000px;}
.ye6{bottom:59.580000px;}
.ye2{bottom:59.625000px;}
.yb5{bottom:65.340000px;}
.yf2{bottom:65.385000px;}
.yba{bottom:73.440000px;}
.y112{bottom:74.160000px;}
.yb4{bottom:79.380000px;}
.yf1{bottom:79.425000px;}
.y8b{bottom:80.640000px;}
.yef{bottom:83.880000px;}
.y135{bottom:86.400000px;}
.y38{bottom:90.000000px;}
.y12a{bottom:91.260000px;}
.y69{bottom:92.700000px;}
.yb9{bottom:93.240000px;}
.y111{bottom:93.960000px;}
.y8a{bottom:95.580000px;}
.y134{bottom:106.200000px;}
.y37{bottom:109.980000px;}
.y68{bottom:112.500000px;}
.yb8{bottom:113.040000px;}
.y89{bottom:116.100000px;}
.yec{bottom:123.660000px;}
.y133{bottom:126.000000px;}
.y36{bottom:129.780000px;}
.y67{bottom:132.300000px;}
.yb7{bottom:132.840000px;}
.y10f{bottom:134.460000px;}
.y88{bottom:135.900000px;}
.y132{bottom:145.800000px;}
.y35{bottom:149.580000px;}
.y66{bottom:152.310000px;}
.yb3{bottom:153.570000px;}
.y87{bottom:155.730000px;}
.y131{bottom:165.630000px;}
.y34{bottom:169.410000px;}
.y65{bottom:172.110000px;}
.y86{bottom:175.530000px;}
.y10e{bottom:180.750000px;}
.yea{bottom:183.090000px;}
.y33{bottom:189.210000px;}
.y64{bottom:191.910000px;}
.y10d{bottom:200.550000px;}
.y32{bottom:209.190000px;}
.y63{bottom:211.710000px;}
.y85{bottom:216.030000px;}
.y10c{bottom:220.350000px;}
.ye9{bottom:222.870000px;}
.y31{bottom:228.990000px;}
.y62{bottom:231.510000px;}
.yb2{bottom:239.430000px;}
.y10b{bottom:240.150000px;}
.y30{bottom:248.790000px;}
.y61{bottom:251.490000px;}
.yb1{bottom:259.230000px;}
.y10a{bottom:259.950000px;}
.y84{bottom:262.290000px;}
.ye7{bottom:262.470000px;}
.y2f{bottom:268.590000px;}
.y60{bottom:271.290000px;}
.yb0{bottom:279.030000px;}
.y109{bottom:279.930000px;}
.y83{bottom:282.090000px;}
.y2e{bottom:288.390000px;}
.y5f{bottom:291.090000px;}
.y82{bottom:296.850000px;}
.yaf{bottom:299.010000px;}
.y108{bottom:299.730000px;}
.ye4{bottom:302.070000px;}
.y2d{bottom:308.370000px;}
.y5e{bottom:310.890000px;}
.y81{bottom:317.550000px;}
.yae{bottom:318.810000px;}
.y107{bottom:319.530000px;}
.y2c{bottom:328.170000px;}
.y5d{bottom:330.690000px;}
.yad{bottom:338.610000px;}
.y106{bottom:339.330000px;}
.y2b{bottom:347.970000px;}
.y5c{bottom:350.670000px;}
.y80{bottom:357.150000px;}
.yac{bottom:358.410000px;}
.y105{bottom:359.130000px;}
.ye1{bottom:362.370000px;}
.y2a{bottom:367.770000px;}
.y5b{bottom:370.470000px;}
.y7e{bottom:376.950000px;}
.y104{bottom:379.110000px;}
.yab{bottom:387.210000px;}
.y29{bottom:387.570000px;}
.y5a{bottom:390.270000px;}
.y103{bottom:398.910000px;}
.yaa{bottom:407.235000px;}
.y28{bottom:407.595000px;}
.y59{bottom:410.115000px;}
.y7d{bottom:416.775000px;}
.y102{bottom:418.755000px;}
.ya9{bottom:427.035000px;}
.y27{bottom:427.395000px;}
.ye0{bottom:428.475000px;}
.y58{bottom:429.915000px;}
.y7b{bottom:437.295000px;}
.y101{bottom:438.555000px;}
.ya8{bottom:446.835000px;}
.y26{bottom:447.195000px;}
.ydf{bottom:448.275000px;}
.y57{bottom:449.895000px;}
.y100{bottom:458.355000px;}
.ya7{bottom:466.635000px;}
.y25{bottom:466.995000px;}
.yde{bottom:468.075000px;}
.y56{bottom:469.695000px;}
.yff{bottom:478.335000px;}
.y7a{bottom:483.555000px;}
.ya6{bottom:486.435000px;}
.y24{bottom:486.795000px;}
.y129{bottom:487.335000px;}
.ydd{bottom:488.055000px;}
.y55{bottom:489.495000px;}
.yfe{bottom:498.135000px;}
.y79{bottom:503.355000px;}
.ya5{bottom:506.415000px;}
.y23{bottom:506.775000px;}
.y128{bottom:507.135000px;}
.ydc{bottom:507.855000px;}
.y54{bottom:509.295000px;}
.y78{bottom:523.155000px;}
.y11a{bottom:525.855000px;}
.ya4{bottom:526.215000px;}
.y22{bottom:526.575000px;}
.yfd{bottom:526.935000px;}
.ydb{bottom:527.655000px;}
.y53{bottom:529.095000px;}
.y77{bottom:537.915000px;}
.y119{bottom:540.975000px;}
.ya3{bottom:546.015000px;}
.y21{bottom:546.375000px;}
.yfc{bottom:546.735000px;}
.yda{bottom:547.455000px;}
.y52{bottom:549.075000px;}
.y76{bottom:558.615000px;}
.ya2{bottom:565.815000px;}
.y20{bottom:566.175000px;}
.yfb{bottom:566.535000px;}
.yd9{bottom:567.255000px;}
.y51{bottom:568.875000px;}
.y130{bottom:577.515000px;}
.y75{bottom:578.415000px;}
.y118{bottom:580.575000px;}
.ya1{bottom:585.615000px;}
.y1f{bottom:585.975000px;}
.yfa{bottom:586.515000px;}
.yd8{bottom:587.235000px;}
.y50{bottom:588.675000px;}
.y12f{bottom:597.315000px;}
.y73{bottom:598.935000px;}
.ya0{bottom:605.595000px;}
.y1e{bottom:605.955000px;}
.yf9{bottom:606.315000px;}
.yd7{bottom:607.035000px;}
.y4f{bottom:608.475000px;}
.y12e{bottom:617.115000px;}
.y117{bottom:620.355000px;}
.y9f{bottom:625.395000px;}
.y1d{bottom:625.755000px;}
.yf8{bottom:626.115000px;}
.yd6{bottom:626.835000px;}
.y4e{bottom:628.275000px;}
.y12d{bottom:636.915000px;}
.yf6{bottom:640.875000px;}
.y72{bottom:645.195000px;}
.y1c{bottom:645.555000px;}
.y127{bottom:645.915000px;}
.yd5{bottom:646.635000px;}
.y4d{bottom:648.255000px;}
.y116{bottom:659.985000px;}
.y71{bottom:665.025000px;}
.y1b{bottom:665.385000px;}
.y126{bottom:665.745000px;}
.yd4{bottom:666.465000px;}
.y4c{bottom:668.085000px;}
.y6f{bottom:679.785000px;}
.yf5{bottom:680.505000px;}
.y9e{bottom:684.825000px;}
.y1a{bottom:685.185000px;}
.y125{bottom:685.725000px;}
.yd3{bottom:686.445000px;}
.y4b{bottom:687.885000px;}
.y115{bottom:699.765000px;}
.y6e{bottom:700.485000px;}
.y9d{bottom:704.805000px;}
.y19{bottom:705.165000px;}
.y124{bottom:705.525000px;}
.yd2{bottom:706.245000px;}
.y4a{bottom:707.685000px;}
.y6d{bottom:720.285000px;}
.y9c{bottom:724.605000px;}
.y18{bottom:724.965000px;}
.y123{bottom:725.325000px;}
.yd1{bottom:726.045000px;}
.y49{bottom:727.485000px;}
.y114{bottom:739.365000px;}
.y6c{bottom:740.085000px;}
.y9b{bottom:744.405000px;}
.y122{bottom:745.125000px;}
.yd0{bottom:745.845000px;}
.y17{bottom:747.465000px;}
.y6b{bottom:759.885000px;}
.y9a{bottom:764.205000px;}
.y121{bottom:764.925000px;}
.ycf{bottom:765.645000px;}
.y16{bottom:767.265000px;}
.y12c{bottom:779.685000px;}
.y113{bottom:780.225000px;}
.y6a{bottom:780.585000px;}
.y99{bottom:784.005000px;}
.y120{bottom:784.725000px;}
.yce{bottom:785.625000px;}
.y15{bottom:787.065000px;}
.yf4{bottom:799.665000px;}
.y98{bottom:803.985000px;}
.y11f{bottom:804.705000px;}
.ycd{bottom:805.425000px;}
.y14{bottom:806.865000px;}
.yf3{bottom:819.465000px;}
.y97{bottom:823.785000px;}
.ycc{bottom:825.225000px;}
.y13{bottom:826.665000px;}
.y12b{bottom:839.265000px;}
.y96{bottom:843.585000px;}
.ycb{bottom:845.025000px;}
.y12{bottom:846.645000px;}
.y11e{bottom:859.065000px;}
.yf0{bottom:859.785000px;}
.y95{bottom:863.385000px;}
.yca{bottom:864.825000px;}
.y11{bottom:866.445000px;}
.y11b{bottom:879.765000px;}
.y94{bottom:883.185000px;}
.yc9{bottom:884.805000px;}
.y10{bottom:886.065000px;}
.y48{bottom:886.245000px;}
.y93{bottom:903.210000px;}
.yc8{bottom:904.650000px;}
.y47{bottom:906.090000px;}
.yf{bottom:908.430000px;}
.y92{bottom:923.010000px;}
.yc7{bottom:924.450000px;}
.y46{bottom:925.890000px;}
.ye{bottom:928.230000px;}
.y91{bottom:942.810000px;}
.yc6{bottom:944.250000px;}
.y45{bottom:945.870000px;}
.yd{bottom:948.570000px;}
.y90{bottom:957.570000px;}
.yc5{bottom:964.050000px;}
.y44{bottom:965.670000px;}
.yc{bottom:967.290000px;}
.y8f{bottom:978.090000px;}
.yc4{bottom:984.030000px;}
.y43{bottom:985.470000px;}
.yb{bottom:990.690000px;}
.yc3{bottom:1003.830000px;}
.y42{bottom:1005.270000px;}
.y8e{bottom:1017.870000px;}
.ya{bottom:1022.550000px;}
.yc2{bottom:1023.630000px;}
.y41{bottom:1025.070000px;}
.yc1{bottom:1043.430000px;}
.y40{bottom:1045.050000px;}
.y5{bottom:1050.630000px;}
.y8d{bottom:1057.470000px;}
.yc0{bottom:1063.230000px;}
.y3f{bottom:1064.850000px;}
.y4{bottom:1081.950000px;}
.ybf{bottom:1083.210000px;}
.y3e{bottom:1084.650000px;}
.y8c{bottom:1097.970000px;}
.ybe{bottom:1103.010000px;}
.y3d{bottom:1104.450000px;}
.y3{bottom:1112.730000px;}
.ybd{bottom:1117.770000px;}
.y3c{bottom:1124.250000px;}
.ybb{bottom:1137.570000px;}
.y2{bottom:1143.690000px;}
.y3b{bottom:1144.230000px;}
.y3a{bottom:1164.060000px;}
.y1{bottom:1177.560000px;}
.y39{bottom:1193.400000px;}
.ha{height:19.800000px;}
.hf{height:19.836000px;}
.hb{height:19.980000px;}
.h11{height:20.016000px;}
.h5{height:21.240000px;}
.h7{height:27.432422px;}
.hd{height:39.600000px;}
.h16{height:39.636000px;}
.hc{height:39.780000px;}
.he{height:39.816000px;}
.h8{height:42.164648px;}
.h9{height:43.506914px;}
.h17{height:45.461953px;}
.h3{height:46.736719px;}
.h4{height:54.536836px;}
.h14{height:59.436000px;}
.h13{height:59.580000px;}
.h12{height:59.616000px;}
.h6{height:60.450469px;}
.h2{height:67.565039px;}
.h10{height:79.380000px;}
.h15{height:79.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:28.620000px;}
.w2a{width:28.656000px;}
.w29{width:28.800000px;}
.w1a{width:35.100000px;}
.w1c{width:35.280000px;}
.w1d{width:35.316000px;}
.w1b{width:35.460000px;}
.w2c{width:39.060000px;}
.w2b{width:39.240000px;}
.w3{width:57.816000px;}
.w1e{width:60.480000px;}
.w24{width:61.596000px;}
.w2d{width:69.660000px;}
.w2f{width:76.140000px;}
.w26{width:76.536000px;}
.w21{width:84.060000px;}
.w10{width:86.760000px;}
.w20{width:89.496000px;}
.w30{width:92.376000px;}
.w19{width:93.636000px;}
.w22{width:93.816000px;}
.w7{width:94.140000px;}
.w5{width:95.436000px;}
.w8{width:95.976000px;}
.w1f{width:98.640000px;}
.w27{width:103.176000px;}
.w25{width:106.560000px;}
.w15{width:107.136000px;}
.w13{width:114.516000px;}
.wd{width:115.020000px;}
.w23{width:121.320000px;}
.wb{width:121.716000px;}
.w11{width:123.120000px;}
.w18{width:126.180000px;}
.w16{width:126.216000px;}
.wa{width:127.080000px;}
.w12{width:128.376000px;}
.wc{width:129.276000px;}
.w14{width:132.660000px;}
.w17{width:132.696000px;}
.we{width:138.096000px;}
.wf{width:141.156000px;}
.w32{width:142.596000px;}
.w9{width:142.956000px;}
.w31{width:144.576000px;}
.w34{width:153.750000px;}
.w33{width:158.250000px;}
.w6{width:176.430000px;}
.w35{width:185.970000px;}
.w2e{width:197.490000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x7{left:55.979987px;}
.x2{left:62.100000px;}
.x1b{left:80.999987px;}
.x37{left:108.035987px;}
.xd{left:113.615987px;}
.x4{left:120.636000px;}
.x1c{left:147.636000px;}
.xe{left:149.436000px;}
.x29{left:157.170000px;}
.x11{left:175.710000px;}
.x1d{left:182.730000px;}
.x1a{left:186.690000px;}
.x13{left:192.090000px;}
.x32{left:198.570000px;}
.x2a{left:214.590000px;}
.x1e{left:218.190000px;}
.x35{left:223.409987px;}
.xa{left:225.029987px;}
.x2b{left:243.390000px;}
.x1f{left:253.470000px;}
.x2c{left:272.055000px;}
.x31{left:278.714987px;}
.x20{left:288.795000px;}
.x10{left:292.935000px;}
.x6{left:296.679000px;}
.x12{left:304.995000px;}
.x2d{left:311.295000px;}
.x21{left:324.075000px;}
.xf{left:325.875000px;}
.x14{left:333.255000px;}
.x8{left:334.514987px;}
.x33{left:341.175000px;}
.x2e{left:350.355000px;}
.x22{left:359.535000px;}
.x9{left:388.154987px;}
.x5{left:427.029000px;}
.xb{left:446.504987px;}
.xc{left:473.144987px;}
.x17{left:499.964987px;}
.x36{left:527.144987px;}
.x23{left:571.785000px;}
.x26{left:594.465000px;}
.x15{left:596.265000px;}
.x18{left:605.805000px;}
.x34{left:653.190000px;}
.x27{left:656.070000px;}
.x24{left:661.290000px;}
.x2f{left:670.650000px;}
.x19{left:712.950000px;}
.x16{left:724.650000px;}
.x25{left:745.350000px;}
.x30{left:746.790000px;}
.x28{left:762.630000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-2.880000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094720pt;}
.lsf{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.408960pt;}
.ls7{letter-spacing:0.592640pt;}
.ls1c{letter-spacing:14.672640pt;}
.lsa{letter-spacing:37.072640pt;}
.lse{letter-spacing:38.352640pt;}
.ls9{letter-spacing:39.632640pt;}
.ls0{letter-spacing:40.272640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls14{letter-spacing:44.112640pt;}
.lsb{letter-spacing:45.392640pt;}
.ls19{letter-spacing:119.200000pt;}
.ls17{letter-spacing:119.328000pt;}
.ls1a{letter-spacing:149.280000pt;}
.ls18{letter-spacing:178.720000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.wsb{word-spacing:-10.400000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1036.520960pt;}
._6{margin-left:-445.546667pt;}
._4a{margin-left:-177.473920pt;}
._47{margin-left:-76.435200pt;}
._4b{margin-left:-30.514987pt;}
._4d{margin-left:-7.811840pt;}
._3b{margin-left:-6.852480pt;}
._29{margin-left:-5.096747pt;}
._37{margin-left:-4.090240pt;}
._8{margin-left:-2.982400pt;}
._7{margin-left:-2.034987pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._c{width:2.235520pt;}
._b{width:3.543467pt;}
._a{width:4.887040pt;}
._9{width:5.949440pt;}
._1e{width:7.682133pt;}
._e{width:9.063253pt;}
._d{width:10.358400pt;}
._13{width:11.358933pt;}
._f{width:12.266880pt;}
._11{width:14.362667pt;}
._15{width:15.331413pt;}
._14{width:16.467200pt;}
._2a{width:17.509333pt;}
._21{width:18.485760pt;}
._20{width:19.388800pt;}
._30{width:20.663680pt;}
._19{width:22.343253pt;}
._1a{width:23.266560pt;}
._1b{width:24.647680pt;}
._1c{width:25.555840pt;}
._2e{width:27.017813pt;}
._2f{width:27.953920pt;}
._23{width:28.908373pt;}
._27{width:30.050560pt;}
._26{width:31.553280pt;}
._35{width:32.807893pt;}
._2c{width:33.837440pt;}
._34{width:35.112320pt;}
._33{width:36.137813pt;}
._2d{width:37.048960pt;}
._25{width:38.733013pt;}
._12{width:40.477440pt;}
._1f{width:41.997653pt;}
._22{width:42.977280pt;}
._4c{width:44.130133pt;}
._10{width:45.078613pt;}
._42{width:46.422400pt;}
._41{width:47.489280pt;}
._24{width:51.355093pt;}
._45{width:52.333653pt;}
._28{width:53.259093pt;}
._1d{width:55.702613pt;}
._2b{width:57.582080pt;}
._17{width:63.592533pt;}
._16{width:64.829013pt;}
._31{width:67.176533pt;}
._32{width:68.065920pt;}
._18{width:69.407573pt;}
._46{width:81.359573pt;}
._3d{width:96.888107pt;}
._3e{width:115.480107pt;}
._40{width:139.599360pt;}
._44{width:144.056960pt;}
._43{width:145.546027pt;}
._3a{width:152.401280pt;}
._38{width:154.951040pt;}
._48{width:178.062933pt;}
._49{width:179.377067pt;}
._3f{width:196.116267pt;}
._39{width:197.181440pt;}
._36{width:202.918400pt;}
._3c{width:235.796907pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y70{bottom:5.280000pt;}
.y8{bottom:9.760000pt;}
.y7c{bottom:22.720000pt;}
.yf7{bottom:22.746667pt;}
.y11d{bottom:22.760000pt;}
.y74{bottom:22.880000pt;}
.ybc{bottom:22.906667pt;}
.y7f{bottom:22.920000pt;}
.y9{bottom:31.520000pt;}
.ye8{bottom:35.200000pt;}
.y110{bottom:35.226667pt;}
.y11c{bottom:35.240000pt;}
.yeb{bottom:35.360000pt;}
.yb6{bottom:40.320000pt;}
.yed{bottom:40.346667pt;}
.ye5{bottom:40.480000pt;}
.ye3{bottom:40.520000pt;}
.y6{bottom:44.000000pt;}
.yee{bottom:52.826667pt;}
.ye6{bottom:52.960000pt;}
.ye2{bottom:53.000000pt;}
.yb5{bottom:58.080000pt;}
.yf2{bottom:58.120000pt;}
.yba{bottom:65.280000pt;}
.y112{bottom:65.920000pt;}
.yb4{bottom:70.560000pt;}
.yf1{bottom:70.600000pt;}
.y8b{bottom:71.680000pt;}
.yef{bottom:74.560000pt;}
.y135{bottom:76.800000pt;}
.y38{bottom:80.000000pt;}
.y12a{bottom:81.120000pt;}
.y69{bottom:82.400000pt;}
.yb9{bottom:82.880000pt;}
.y111{bottom:83.520000pt;}
.y8a{bottom:84.960000pt;}
.y134{bottom:94.400000pt;}
.y37{bottom:97.760000pt;}
.y68{bottom:100.000000pt;}
.yb8{bottom:100.480000pt;}
.y89{bottom:103.200000pt;}
.yec{bottom:109.920000pt;}
.y133{bottom:112.000000pt;}
.y36{bottom:115.360000pt;}
.y67{bottom:117.600000pt;}
.yb7{bottom:118.080000pt;}
.y10f{bottom:119.520000pt;}
.y88{bottom:120.800000pt;}
.y132{bottom:129.600000pt;}
.y35{bottom:132.960000pt;}
.y66{bottom:135.386667pt;}
.yb3{bottom:136.506667pt;}
.y87{bottom:138.426667pt;}
.y131{bottom:147.226667pt;}
.y34{bottom:150.586667pt;}
.y65{bottom:152.986667pt;}
.y86{bottom:156.026667pt;}
.y10e{bottom:160.666667pt;}
.yea{bottom:162.746667pt;}
.y33{bottom:168.186667pt;}
.y64{bottom:170.586667pt;}
.y10d{bottom:178.266667pt;}
.y32{bottom:185.946667pt;}
.y63{bottom:188.186667pt;}
.y85{bottom:192.026667pt;}
.y10c{bottom:195.866667pt;}
.ye9{bottom:198.106667pt;}
.y31{bottom:203.546667pt;}
.y62{bottom:205.786667pt;}
.yb2{bottom:212.826667pt;}
.y10b{bottom:213.466667pt;}
.y30{bottom:221.146667pt;}
.y61{bottom:223.546667pt;}
.yb1{bottom:230.426667pt;}
.y10a{bottom:231.066667pt;}
.y84{bottom:233.146667pt;}
.ye7{bottom:233.306667pt;}
.y2f{bottom:238.746667pt;}
.y60{bottom:241.146667pt;}
.yb0{bottom:248.026667pt;}
.y109{bottom:248.826667pt;}
.y83{bottom:250.746667pt;}
.y2e{bottom:256.346667pt;}
.y5f{bottom:258.746667pt;}
.y82{bottom:263.866667pt;}
.yaf{bottom:265.786667pt;}
.y108{bottom:266.426667pt;}
.ye4{bottom:268.506667pt;}
.y2d{bottom:274.106667pt;}
.y5e{bottom:276.346667pt;}
.y81{bottom:282.266667pt;}
.yae{bottom:283.386667pt;}
.y107{bottom:284.026667pt;}
.y2c{bottom:291.706667pt;}
.y5d{bottom:293.946667pt;}
.yad{bottom:300.986667pt;}
.y106{bottom:301.626667pt;}
.y2b{bottom:309.306667pt;}
.y5c{bottom:311.706667pt;}
.y80{bottom:317.466667pt;}
.yac{bottom:318.586667pt;}
.y105{bottom:319.226667pt;}
.ye1{bottom:322.106667pt;}
.y2a{bottom:326.906667pt;}
.y5b{bottom:329.306667pt;}
.y7e{bottom:335.066667pt;}
.y104{bottom:336.986667pt;}
.yab{bottom:344.186667pt;}
.y29{bottom:344.506667pt;}
.y5a{bottom:346.906667pt;}
.y103{bottom:354.586667pt;}
.yaa{bottom:361.986667pt;}
.y28{bottom:362.306667pt;}
.y59{bottom:364.546667pt;}
.y7d{bottom:370.466667pt;}
.y102{bottom:372.226667pt;}
.ya9{bottom:379.586667pt;}
.y27{bottom:379.906667pt;}
.ye0{bottom:380.866667pt;}
.y58{bottom:382.146667pt;}
.y7b{bottom:388.706667pt;}
.y101{bottom:389.826667pt;}
.ya8{bottom:397.186667pt;}
.y26{bottom:397.506667pt;}
.ydf{bottom:398.466667pt;}
.y57{bottom:399.906667pt;}
.y100{bottom:407.426667pt;}
.ya7{bottom:414.786667pt;}
.y25{bottom:415.106667pt;}
.yde{bottom:416.066667pt;}
.y56{bottom:417.506667pt;}
.yff{bottom:425.186667pt;}
.y7a{bottom:429.826667pt;}
.ya6{bottom:432.386667pt;}
.y24{bottom:432.706667pt;}
.y129{bottom:433.186667pt;}
.ydd{bottom:433.826667pt;}
.y55{bottom:435.106667pt;}
.yfe{bottom:442.786667pt;}
.y79{bottom:447.426667pt;}
.ya5{bottom:450.146667pt;}
.y23{bottom:450.466667pt;}
.y128{bottom:450.786667pt;}
.ydc{bottom:451.426667pt;}
.y54{bottom:452.706667pt;}
.y78{bottom:465.026667pt;}
.y11a{bottom:467.426667pt;}
.ya4{bottom:467.746667pt;}
.y22{bottom:468.066667pt;}
.yfd{bottom:468.386667pt;}
.ydb{bottom:469.026667pt;}
.y53{bottom:470.306667pt;}
.y77{bottom:478.146667pt;}
.y119{bottom:480.866667pt;}
.ya3{bottom:485.346667pt;}
.y21{bottom:485.666667pt;}
.yfc{bottom:485.986667pt;}
.yda{bottom:486.626667pt;}
.y52{bottom:488.066667pt;}
.y76{bottom:496.546667pt;}
.ya2{bottom:502.946667pt;}
.y20{bottom:503.266667pt;}
.yfb{bottom:503.586667pt;}
.yd9{bottom:504.226667pt;}
.y51{bottom:505.666667pt;}
.y130{bottom:513.346667pt;}
.y75{bottom:514.146667pt;}
.y118{bottom:516.066667pt;}
.ya1{bottom:520.546667pt;}
.y1f{bottom:520.866667pt;}
.yfa{bottom:521.346667pt;}
.yd8{bottom:521.986667pt;}
.y50{bottom:523.266667pt;}
.y12f{bottom:530.946667pt;}
.y73{bottom:532.386667pt;}
.ya0{bottom:538.306667pt;}
.y1e{bottom:538.626667pt;}
.yf9{bottom:538.946667pt;}
.yd7{bottom:539.586667pt;}
.y4f{bottom:540.866667pt;}
.y12e{bottom:548.546667pt;}
.y117{bottom:551.426667pt;}
.y9f{bottom:555.906667pt;}
.y1d{bottom:556.226667pt;}
.yf8{bottom:556.546667pt;}
.yd6{bottom:557.186667pt;}
.y4e{bottom:558.466667pt;}
.y12d{bottom:566.146667pt;}
.yf6{bottom:569.666667pt;}
.y72{bottom:573.506667pt;}
.y1c{bottom:573.826667pt;}
.y127{bottom:574.146667pt;}
.yd5{bottom:574.786667pt;}
.y4d{bottom:576.226667pt;}
.y116{bottom:586.653333pt;}
.y71{bottom:591.133333pt;}
.y1b{bottom:591.453333pt;}
.y126{bottom:591.773333pt;}
.yd4{bottom:592.413333pt;}
.y4c{bottom:593.853333pt;}
.y6f{bottom:604.253333pt;}
.yf5{bottom:604.893333pt;}
.y9e{bottom:608.733333pt;}
.y1a{bottom:609.053333pt;}
.y125{bottom:609.533333pt;}
.yd3{bottom:610.173333pt;}
.y4b{bottom:611.453333pt;}
.y115{bottom:622.013333pt;}
.y6e{bottom:622.653333pt;}
.y9d{bottom:626.493333pt;}
.y19{bottom:626.813333pt;}
.y124{bottom:627.133333pt;}
.yd2{bottom:627.773333pt;}
.y4a{bottom:629.053333pt;}
.y6d{bottom:640.253333pt;}
.y9c{bottom:644.093333pt;}
.y18{bottom:644.413333pt;}
.y123{bottom:644.733333pt;}
.yd1{bottom:645.373333pt;}
.y49{bottom:646.653333pt;}
.y114{bottom:657.213333pt;}
.y6c{bottom:657.853333pt;}
.y9b{bottom:661.693333pt;}
.y122{bottom:662.333333pt;}
.yd0{bottom:662.973333pt;}
.y17{bottom:664.413333pt;}
.y6b{bottom:675.453333pt;}
.y9a{bottom:679.293333pt;}
.y121{bottom:679.933333pt;}
.ycf{bottom:680.573333pt;}
.y16{bottom:682.013333pt;}
.y12c{bottom:693.053333pt;}
.y113{bottom:693.533333pt;}
.y6a{bottom:693.853333pt;}
.y99{bottom:696.893333pt;}
.y120{bottom:697.533333pt;}
.yce{bottom:698.333333pt;}
.y15{bottom:699.613333pt;}
.yf4{bottom:710.813333pt;}
.y98{bottom:714.653333pt;}
.y11f{bottom:715.293333pt;}
.ycd{bottom:715.933333pt;}
.y14{bottom:717.213333pt;}
.yf3{bottom:728.413333pt;}
.y97{bottom:732.253333pt;}
.ycc{bottom:733.533333pt;}
.y13{bottom:734.813333pt;}
.y12b{bottom:746.013333pt;}
.y96{bottom:749.853333pt;}
.ycb{bottom:751.133333pt;}
.y12{bottom:752.573333pt;}
.y11e{bottom:763.613333pt;}
.yf0{bottom:764.253333pt;}
.y95{bottom:767.453333pt;}
.yca{bottom:768.733333pt;}
.y11{bottom:770.173333pt;}
.y11b{bottom:782.013333pt;}
.y94{bottom:785.053333pt;}
.yc9{bottom:786.493333pt;}
.y10{bottom:787.613333pt;}
.y48{bottom:787.773333pt;}
.y93{bottom:802.853333pt;}
.yc8{bottom:804.133333pt;}
.y47{bottom:805.413333pt;}
.yf{bottom:807.493333pt;}
.y92{bottom:820.453333pt;}
.yc7{bottom:821.733333pt;}
.y46{bottom:823.013333pt;}
.ye{bottom:825.093333pt;}
.y91{bottom:838.053333pt;}
.yc6{bottom:839.333333pt;}
.y45{bottom:840.773333pt;}
.yd{bottom:843.173333pt;}
.y90{bottom:851.173333pt;}
.yc5{bottom:856.933333pt;}
.y44{bottom:858.373333pt;}
.yc{bottom:859.813333pt;}
.y8f{bottom:869.413333pt;}
.yc4{bottom:874.693333pt;}
.y43{bottom:875.973333pt;}
.yb{bottom:880.613333pt;}
.yc3{bottom:892.293333pt;}
.y42{bottom:893.573333pt;}
.y8e{bottom:904.773333pt;}
.ya{bottom:908.933333pt;}
.yc2{bottom:909.893333pt;}
.y41{bottom:911.173333pt;}
.yc1{bottom:927.493333pt;}
.y40{bottom:928.933333pt;}
.y5{bottom:933.893333pt;}
.y8d{bottom:939.973333pt;}
.yc0{bottom:945.093333pt;}
.y3f{bottom:946.533333pt;}
.y4{bottom:961.733333pt;}
.ybf{bottom:962.853333pt;}
.y3e{bottom:964.133333pt;}
.y8c{bottom:975.973333pt;}
.ybe{bottom:980.453333pt;}
.y3d{bottom:981.733333pt;}
.y3{bottom:989.093333pt;}
.ybd{bottom:993.573333pt;}
.y3c{bottom:999.333333pt;}
.ybb{bottom:1011.173333pt;}
.y2{bottom:1016.613333pt;}
.y3b{bottom:1017.093333pt;}
.y3a{bottom:1034.720000pt;}
.y1{bottom:1046.720000pt;}
.y39{bottom:1060.800000pt;}
.ha{height:17.600000pt;}
.hf{height:17.632000pt;}
.hb{height:17.760000pt;}
.h11{height:17.792000pt;}
.h5{height:18.880000pt;}
.h7{height:24.384375pt;}
.hd{height:35.200000pt;}
.h16{height:35.232000pt;}
.hc{height:35.360000pt;}
.he{height:35.392000pt;}
.h8{height:37.479688pt;}
.h9{height:38.672812pt;}
.h17{height:40.410625pt;}
.h3{height:41.543750pt;}
.h4{height:48.477187pt;}
.h14{height:52.832000pt;}
.h13{height:52.960000pt;}
.h12{height:52.992000pt;}
.h6{height:53.733750pt;}
.h2{height:60.057813pt;}
.h10{height:70.560000pt;}
.h15{height:70.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:25.440000pt;}
.w2a{width:25.472000pt;}
.w29{width:25.600000pt;}
.w1a{width:31.200000pt;}
.w1c{width:31.360000pt;}
.w1d{width:31.392000pt;}
.w1b{width:31.520000pt;}
.w2c{width:34.720000pt;}
.w2b{width:34.880000pt;}
.w3{width:51.392000pt;}
.w1e{width:53.760000pt;}
.w24{width:54.752000pt;}
.w2d{width:61.920000pt;}
.w2f{width:67.680000pt;}
.w26{width:68.032000pt;}
.w21{width:74.720000pt;}
.w10{width:77.120000pt;}
.w20{width:79.552000pt;}
.w30{width:82.112000pt;}
.w19{width:83.232000pt;}
.w22{width:83.392000pt;}
.w7{width:83.680000pt;}
.w5{width:84.832000pt;}
.w8{width:85.312000pt;}
.w1f{width:87.680000pt;}
.w27{width:91.712000pt;}
.w25{width:94.720000pt;}
.w15{width:95.232000pt;}
.w13{width:101.792000pt;}
.wd{width:102.240000pt;}
.w23{width:107.840000pt;}
.wb{width:108.192000pt;}
.w11{width:109.440000pt;}
.w18{width:112.160000pt;}
.w16{width:112.192000pt;}
.wa{width:112.960000pt;}
.w12{width:114.112000pt;}
.wc{width:114.912000pt;}
.w14{width:117.920000pt;}
.w17{width:117.952000pt;}
.we{width:122.752000pt;}
.wf{width:125.472000pt;}
.w32{width:126.752000pt;}
.w9{width:127.072000pt;}
.w31{width:128.512000pt;}
.w34{width:136.666667pt;}
.w33{width:140.666667pt;}
.w6{width:156.826667pt;}
.w35{width:165.306667pt;}
.w2e{width:175.546667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x7{left:49.759988pt;}
.x2{left:55.200000pt;}
.x1b{left:71.999988pt;}
.x37{left:96.031988pt;}
.xd{left:100.991988pt;}
.x4{left:107.232000pt;}
.x1c{left:131.232000pt;}
.xe{left:132.832000pt;}
.x29{left:139.706667pt;}
.x11{left:156.186667pt;}
.x1d{left:162.426667pt;}
.x1a{left:165.946667pt;}
.x13{left:170.746667pt;}
.x32{left:176.506667pt;}
.x2a{left:190.746667pt;}
.x1e{left:193.946667pt;}
.x35{left:198.586655pt;}
.xa{left:200.026655pt;}
.x2b{left:216.346667pt;}
.x1f{left:225.306667pt;}
.x2c{left:241.826667pt;}
.x31{left:247.746655pt;}
.x20{left:256.706667pt;}
.x10{left:260.386667pt;}
.x6{left:263.714667pt;}
.x12{left:271.106667pt;}
.x2d{left:276.706667pt;}
.x21{left:288.066667pt;}
.xf{left:289.666667pt;}
.x14{left:296.226667pt;}
.x8{left:297.346655pt;}
.x33{left:303.266667pt;}
.x2e{left:311.426667pt;}
.x22{left:319.586667pt;}
.x9{left:345.026655pt;}
.x5{left:379.581333pt;}
.xb{left:396.893322pt;}
.xc{left:420.573322pt;}
.x17{left:444.413322pt;}
.x36{left:468.573322pt;}
.x23{left:508.253333pt;}
.x26{left:528.413333pt;}
.x15{left:530.013333pt;}
.x18{left:538.493333pt;}
.x34{left:580.613333pt;}
.x27{left:583.173333pt;}
.x24{left:587.813333pt;}
.x2f{left:596.133333pt;}
.x19{left:633.733333pt;}
.x16{left:644.133333pt;}
.x25{left:662.533333pt;}
.x30{left:663.813333pt;}
.x28{left:677.893333pt;}
}




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