
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_17e7b446d2fd1bd2ef4c1af2.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_b91508bf69d6f72a9bb3b14c.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_e6f587283a34510dfa8d1ee8.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_e7bc89973529427cd9ed3d40.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1967716c545d4b7fbfb825ae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9ee2caa8367753bc94a77641.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_dd318b9b1e614daf3d8011ca.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_533dd9a7d2a94fdb5fd42e25.woff')format("woff");}.ff9{font-family:ff9;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;}
.v6{vertical-align:2.520000px;}
.va{vertical-align:12.600000px;}
.v8{vertical-align:14.040000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:24.840000px;}
.vb{vertical-align:30.240000px;}
.v7{vertical-align:32.760000px;}
.v9{vertical-align:35.280000px;}
.v3{vertical-align:52.200000px;}
.v4{vertical-align:77.040000px;}
.ls15{letter-spacing:-0.984000px;}
.ls14{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.162000px;}
.ls1d{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.129000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.063600px;}
.ls23{letter-spacing:-0.038880px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls11{letter-spacing:0.024120px;}
.ls19{letter-spacing:0.028800px;}
.lse{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.048960px;}
.ls1f{letter-spacing:0.051840px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.147000px;}
.ls3{letter-spacing:0.155520px;}
.ls13{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.177000px;}
.ls21{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.188400px;}
.ls16{letter-spacing:0.267600px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:1.944000px;}
.ls22{letter-spacing:47.726640px;}
.ls10{letter-spacing:77.490360px;}
.ls20{letter-spacing:80.846640px;}
.lsf{letter-spacing:84.094920px;}
.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;}
}
.ws13{word-spacing:-46.949640px;}
.ws14{word-spacing:-42.308400px;}
.wse{word-spacing:-42.267000px;}
.ws11{word-spacing:-42.148800px;}
.wsf{word-spacing:-42.120000px;}
.wsc{word-spacing:-36.000000px;}
.ws12{word-spacing:-29.140200px;}
.ws9{word-spacing:-15.840000px;}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws18{word-spacing:-13.324800px;}
.ws19{word-spacing:-13.278240px;}
.ws15{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws1a{word-spacing:-13.187520px;}
.ws16{word-spacing:-13.162800px;}
.ws17{word-spacing:-13.084800px;}
.ws5{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-6.590520px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:0.057960px;}
.ws3{word-spacing:4.304880px;}
.ws10{word-spacing:91.452240px;}
._d{margin-left:-4.179720px;}
._c{margin-left:-3.066120px;}
._2{margin-left:-1.291200px;}
._1{width:1.577640px;}
._5{width:2.813400px;}
._6{width:3.847800px;}
._8{width:5.534756px;}
._b{width:6.640930px;}
._3{width:7.720200px;}
._4{width:9.179160px;}
._9{width:10.521000px;}
._e{width:12.009480px;}
._7{width:14.970000px;}
._13{width:16.199758px;}
._a{width:20.260200px;}
._11{width:22.454640px;}
._0{width:23.850360px;}
._f{width:25.870680px;}
._12{width:27.683880px;}
._10{width:96.391440px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.830000px;}
.y8e{bottom:7.860000px;}
.y8b{bottom:7.920000px;}
.y9e{bottom:26.550000px;}
.yc5{bottom:26.640000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5d{bottom:109.200000px;}
.y5c{bottom:116.760000px;}
.yd4{bottom:118.740000px;}
.yad{bottom:128.370000px;}
.y10d{bottom:136.740000px;}
.yd3{bottom:146.010000px;}
.y10c{bottom:154.290000px;}
.yac{bottom:155.730000px;}
.y5b{bottom:156.180000px;}
.y87{bottom:158.160000px;}
.y27{bottom:161.940000px;}
.y10b{bottom:171.930000px;}
.yd2{bottom:173.370000px;}
.yf5{bottom:175.260000px;}
.y86{bottom:175.800000px;}
.y26{bottom:179.580000px;}
.yab{bottom:183.090000px;}
.y5a{bottom:191.730000px;}
.y85{bottom:193.350000px;}
.y25{bottom:197.130000px;}
.y10a{bottom:198.840000px;}
.yd1{bottom:200.730000px;}
.yf4{bottom:210.810000px;}
.y84{bottom:210.990000px;}
.y24{bottom:214.680000px;}
.y57{bottom:226.290000px;}
.yd0{bottom:228.090000px;}
.yf3{bottom:228.450000px;}
.y83{bottom:228.540000px;}
.y59{bottom:230.340000px;}
.yaa{bottom:231.780000px;}
.y23{bottom:232.320000px;}
.y56{bottom:233.850000px;}
.y58{bottom:239.700000px;}
.y109{bottom:244.470000px;}
.yf2{bottom:246.000000px;}
.y22{bottom:249.870000px;}
.y82{bottom:255.090000px;}
.ycf{bottom:255.360000px;}
.yf1{bottom:263.550000px;}
.ya9{bottom:267.330000px;}
.y21{bottom:267.510000px;}
.y108{bottom:271.830000px;}
.y55{bottom:273.270000px;}
.yf0{bottom:281.190000px;}
.yce{bottom:282.720000px;}
.ya8{bottom:284.970000px;}
.y81{bottom:287.760000px;}
.y107{bottom:299.190000px;}
.y20{bottom:303.060000px;}
.y54{bottom:307.380000px;}
.yef{bottom:307.740000px;}
.ya7{bottom:311.520000px;}
.y53{bottom:312.690000px;}
.y1f{bottom:320.610000px;}
.y51{bottom:322.140000px;}
.y80{bottom:323.310000px;}
.y106{bottom:326.460000px;}
.y52{bottom:329.880000px;}
.ycd{bottom:331.410000px;}
.yee{bottom:337.710000px;}
.y1e{bottom:338.250000px;}
.y7f{bottom:340.860000px;}
.ya6{bottom:341.490000px;}
.y105{bottom:353.820000px;}
.y1d{bottom:355.800000px;}
.y7e{bottom:358.500000px;}
.yed{bottom:365.070000px;}
.ycc{bottom:367.050000px;}
.ya5{bottom:368.850000px;}
.y50{bottom:370.920000px;}
.y1c{bottom:373.440000px;}
.y7d{bottom:376.050000px;}
.y104{bottom:381.180000px;}
.ycb{bottom:384.600000px;}
.y4f{bottom:388.560000px;}
.y1b{bottom:390.990000px;}
.yec{bottom:392.430000px;}
.ya4{bottom:396.120000px;}
.yca{bottom:402.150000px;}
.y7c{bottom:402.600000px;}
.y103{bottom:408.450000px;}
.y1a{bottom:408.540000px;}
.yeb{bottom:419.700000px;}
.yc9{bottom:419.790000px;}
.ya3{bottom:423.480000px;}
.y4e{bottom:424.740000px;}
.y19{bottom:426.180000px;}
.yc8{bottom:437.340000px;}
.y7b{bottom:438.240000px;}
.y4d{bottom:445.260000px;}
.y12b{bottom:447.060000px;}
.ya2{bottom:450.840000px;}
.y18{bottom:453.090000px;}
.y7a{bottom:455.790000px;}
.y102{bottom:457.230000px;}
.y4c{bottom:462.810000px;}
.yc7{bottom:463.890000px;}
.yea{bottom:468.480000px;}
.y79{bottom:473.460000px;}
.y12a{bottom:473.730000px;}
.ya1{bottom:478.230000px;}
.y4b{bottom:480.390000px;}
.y78{bottom:491.010000px;}
.y129{bottom:491.280000px;}
.y101{bottom:492.810000px;}
.yc6{bottom:493.980000px;}
.y4a{bottom:498.030000px;}
.y17{bottom:501.720000px;}
.ye9{bottom:504.060000px;}
.ya0{bottom:505.500000px;}
.y77{bottom:508.560000px;}
.y100{bottom:510.360000px;}
.y49{bottom:515.580000px;}
.y128{bottom:517.830000px;}
.yc4{bottom:521.250000px;}
.ye8{bottom:521.610000px;}
.y9f{bottom:532.860000px;}
.y48{bottom:533.220000px;}
.y76{bottom:535.200000px;}
.y127{bottom:535.470000px;}
.yff{bottom:537.000000px;}
.y16{bottom:538.710000px;}
.ye7{bottom:548.160000px;}
.yc3{bottom:548.610000px;}
.y47{bottom:550.770000px;}
.y15{bottom:556.260000px;}
.y9d{bottom:560.220000px;}
.y126{bottom:562.020000px;}
.y46{bottom:568.320000px;}
.yfe{bottom:569.940000px;}
.y75{bottom:570.750000px;}
.y14{bottom:573.900000px;}
.yc2{bottom:575.970000px;}
.ye6{bottom:578.220000px;}
.y125{bottom:579.660000px;}
.y45{bottom:585.960000px;}
.y74{bottom:588.390000px;}
.y13{bottom:591.450000px;}
.yfd{bottom:597.300000px;}
.ye5{bottom:605.490000px;}
.y73{bottom:605.940000px;}
.y124{bottom:606.210000px;}
.y9c{bottom:608.910000px;}
.y12{bottom:609.090000px;}
.y44{bottom:612.870000px;}
.y72{bottom:623.490000px;}
.y123{bottom:623.760000px;}
.yc1{bottom:624.660000px;}
.y11{bottom:626.640000px;}
.ye4{bottom:632.850000px;}
.y122{bottom:641.400000px;}
.y10{bottom:644.190000px;}
.y9b{bottom:644.460000px;}
.y71{bottom:650.130000px;}
.yfc{bottom:651.930000px;}
.yc0{bottom:660.210000px;}
.y43{bottom:661.740000px;}
.yf{bottom:661.830000px;}
.y9a{bottom:662.100000px;}
.y121{bottom:667.950000px;}
.ybf{bottom:677.850000px;}
.yfb{bottom:679.290000px;}
.ye{bottom:679.380000px;}
.y99{bottom:679.650000px;}
.y42{bottom:682.260000px;}
.y70{bottom:685.680000px;}
.ye3{bottom:687.570000px;}
.y120{bottom:694.590000px;}
.yd{bottom:697.020000px;}
.y41{bottom:699.810000px;}
.y6f{bottom:703.320000px;}
.ybe{bottom:704.400000px;}
.y98{bottom:706.200000px;}
.yfa{bottom:706.650000px;}
.y11f{bottom:712.140000px;}
.yc{bottom:714.570000px;}
.ye2{bottom:714.840000px;}
.y40{bottom:717.360000px;}
.y6e{bottom:720.870000px;}
.yb{bottom:732.120000px;}
.yf9{bottom:733.920000px;}
.y3f{bottom:735.000000px;}
.y97{bottom:736.170000px;}
.ybd{bottom:736.980000px;}
.y6d{bottom:738.420000px;}
.y11e{bottom:738.690000px;}
.ye1{bottom:742.200000px;}
.y3e{bottom:752.550000px;}
.y11d{bottom:756.330000px;}
.ya{bottom:759.120000px;}
.y96{bottom:763.530000px;}
.y6c{bottom:765.060000px;}
.ye0{bottom:769.560000px;}
.ybc{bottom:769.920000px;}
.y3d{bottom:770.190000px;}
.yf8{bottom:782.700000px;}
.y11c{bottom:782.880000px;}
.y3c{bottom:787.740000px;}
.y95{bottom:790.890000px;}
.ybb{bottom:797.280000px;}
.y11b{bottom:800.520000px;}
.y6b{bottom:800.610000px;}
.y3b{bottom:805.290000px;}
.y9{bottom:805.830000px;}
.y11a{bottom:818.070000px;}
.y6a{bottom:818.250000px;}
.y3a{bottom:822.930000px;}
.yba{bottom:824.640000px;}
.y69{bottom:835.800000px;}
.y39{bottom:840.480000px;}
.y8{bottom:841.380000px;}
.y119{bottom:844.620000px;}
.y94{bottom:845.520000px;}
.y68{bottom:853.350000px;}
.yf7{bottom:853.440000px;}
.ydf{bottom:853.800000px;}
.y118{bottom:862.260000px;}
.y67{bottom:870.990000px;}
.yde{bottom:871.440000px;}
.y93{bottom:872.880000px;}
.yb9{bottom:873.330000px;}
.y38{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y66{bottom:888.540000px;}
.y117{bottom:888.810000px;}
.ydd{bottom:888.990000px;}
.y37{bottom:893.670000px;}
.yf6{bottom:897.540000px;}
.y92{bottom:900.240000px;}
.y116{bottom:906.450000px;}
.ydc{bottom:906.630000px;}
.yb8{bottom:908.880000px;}
.y36{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y65{bottom:915.180000px;}
.y115{bottom:924.000000px;}
.yb7{bottom:926.520000px;}
.y91{bottom:927.600000px;}
.y35{bottom:928.860000px;}
.ydb{bottom:933.180000px;}
.y114{bottom:941.550000px;}
.yb6{bottom:944.070000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y64{bottom:950.730000px;}
.y90{bottom:954.870000px;}
.yb5{bottom:961.710000px;}
.yda{bottom:963.150000px;}
.y33{bottom:963.960000px;}
.y113{bottom:968.190000px;}
.y63{bottom:968.280000px;}
.y32{bottom:981.600000px;}
.y8f{bottom:982.230000px;}
.y112{bottom:985.740000px;}
.y62{bottom:985.920000px;}
.y4{bottom:987.630000px;}
.yb4{bottom:988.260000px;}
.yd9{bottom:990.510000px;}
.y31{bottom:999.150000px;}
.y111{bottom:1003.290000px;}
.y8d{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y61{bottom:1012.500000px;}
.yd8{bottom:1017.810000px;}
.yb3{bottom:1023.840000px;}
.y110{bottom:1029.960000px;}
.y30{bottom:1034.820000px;}
.y8c{bottom:1036.890000px;}
.yb2{bottom:1041.480000px;}
.yd7{bottom:1045.170000px;}
.y10f{bottom:1047.510000px;}
.y60{bottom:1048.410000px;}
.y2f{bottom:1052.370000px;}
.yb1{bottom:1059.030000px;}
.y8a{bottom:1064.250000px;}
.y2e{bottom:1069.920000px;}
.yd6{bottom:1072.530000px;}
.y10e{bottom:1074.420000px;}
.yb0{bottom:1076.670000px;}
.y2d{bottom:1087.560000px;}
.y88{bottom:1091.610000px;}
.y5f{bottom:1093.410000px;}
.yaf{bottom:1094.220000px;}
.yd5{bottom:1099.890000px;}
.y5e{bottom:1100.970000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.yae{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h12{height:26.550000px;}
.h14{height:26.580000px;}
.h13{height:26.640000px;}
.h2{height:30.022383px;}
.ha{height:30.339844px;}
.hd{height:35.497617px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.hb{height:55.179844px;}
.h5{height:55.779258px;}
.h11{height:59.973223px;}
.h7{height:60.960938px;}
.h15{height:61.793886px;}
.h10{height:62.585859px;}
.he{height:64.942383px;}
.h8{height:68.582109px;}
.hc{height:70.777617px;}
.h4{height:71.019492px;}
.hf{height:81.142383px;}
.h9{height:107.379844px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:16.110000px;}
.w3{width:26.550000px;}
.w9{width:34.200000px;}
.we{width:41.220000px;}
.w1a{width:46.710000px;}
.wc{width:55.440000px;}
.w13{width:77.130000px;}
.w7{width:77.220000px;}
.w1c{width:80.010000px;}
.w10{width:88.770000px;}
.w11{width:97.560000px;}
.w15{width:115.110000px;}
.w14{width:122.430000px;}
.w16{width:122.610000px;}
.wa{width:122.670000px;}
.wf{width:122.940000px;}
.w8{width:124.770000px;}
.w12{width:129.270000px;}
.wb{width:132.420000px;}
.w18{width:133.920000px;}
.w17{width:142.380000px;}
.w1b{width:149.790000px;}
.w5{width:160.230000px;}
.wd{width:164.280000px;}
.w4{width:167.760000px;}
.w1d{width:168.780000px;}
.w19{width:192.270000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:3.870000px;}
.x17{left:7.650000px;}
.x1{left:68.040000px;}
.x29{left:111.239987px;}
.x2{left:202.799987px;}
.x24{left:262.200000px;}
.xf{left:268.680000px;}
.x11{left:295.950000px;}
.x16{left:301.260000px;}
.x25{left:304.140000px;}
.x21{left:313.770000px;}
.x1a{left:319.440000px;}
.x18{left:322.770000px;}
.x1f{left:332.850000px;}
.x13{left:336.900000px;}
.x22{left:341.040000px;}
.x1d{left:346.440000px;}
.x26{left:347.970000px;}
.x19{left:350.040000px;}
.x14{left:353.730000px;}
.xc{left:359.219987px;}
.x1b{left:361.380000px;}
.x9{left:393.239987px;}
.x27{left:395.490000px;}
.x28{left:402.600000px;}
.x4{left:406.559987px;}
.xd{left:414.929987px;}
.xe{left:416.279987px;}
.x15{left:431.670000px;}
.x20{left:438.060000px;}
.x1e{left:444.810000px;}
.xb{left:448.229987px;}
.x6{left:450.299987px;}
.x23{left:456.870000px;}
.x5{left:460.019987px;}
.x7{left:461.369987px;}
.x12{left:464.430000px;}
.xa{left:469.109987px;}
.x1c{left:485.040000px;}
.x8{left:486.659987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.240000pt;}
.va{vertical-align:11.200000pt;}
.v8{vertical-align:12.480000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:22.080000pt;}
.vb{vertical-align:26.880000pt;}
.v7{vertical-align:29.120000pt;}
.v9{vertical-align:31.360000pt;}
.v3{vertical-align:46.400000pt;}
.v4{vertical-align:68.480000pt;}
.ls15{letter-spacing:-0.874667pt;}
.ls14{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls1d{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.114667pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.056533pt;}
.ls23{letter-spacing:-0.034560pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls11{letter-spacing:0.021440pt;}
.ls19{letter-spacing:0.025600pt;}
.lse{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.043520pt;}
.ls1f{letter-spacing:0.046080pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.130667pt;}
.ls3{letter-spacing:0.138240pt;}
.ls13{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.157333pt;}
.ls21{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.167467pt;}
.ls16{letter-spacing:0.237867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:1.728000pt;}
.ls22{letter-spacing:42.423680pt;}
.ls10{letter-spacing:68.880320pt;}
.ls20{letter-spacing:71.863680pt;}
.lsf{letter-spacing:74.751040pt;}
.ws13{word-spacing:-41.733013pt;}
.ws14{word-spacing:-37.607467pt;}
.wse{word-spacing:-37.570667pt;}
.ws11{word-spacing:-37.465600pt;}
.wsf{word-spacing:-37.440000pt;}
.wsc{word-spacing:-32.000000pt;}
.ws12{word-spacing:-25.902400pt;}
.ws9{word-spacing:-14.080000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws18{word-spacing:-11.844267pt;}
.ws19{word-spacing:-11.802880pt;}
.ws15{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1a{word-spacing:-11.722240pt;}
.ws16{word-spacing:-11.700267pt;}
.ws17{word-spacing:-11.630933pt;}
.ws5{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-5.858240pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:0.051520pt;}
.ws3{word-spacing:3.826560pt;}
.ws10{word-spacing:81.290880pt;}
._d{margin-left:-3.715307pt;}
._c{margin-left:-2.725440pt;}
._2{margin-left:-1.147733pt;}
._1{width:1.402347pt;}
._5{width:2.500800pt;}
._6{width:3.420267pt;}
._8{width:4.919783pt;}
._b{width:5.903049pt;}
._3{width:6.862400pt;}
._4{width:8.159253pt;}
._9{width:9.352000pt;}
._e{width:10.675093pt;}
._7{width:13.306667pt;}
._13{width:14.399785pt;}
._a{width:18.009066pt;}
._11{width:19.959680pt;}
._0{width:21.200320pt;}
._f{width:22.996160pt;}
._12{width:24.607893pt;}
._10{width:85.681280pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.960000pt;}
.y8e{bottom:6.986667pt;}
.y8b{bottom:7.040000pt;}
.y9e{bottom:23.600000pt;}
.yc5{bottom:23.680000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5d{bottom:97.066667pt;}
.y5c{bottom:103.786667pt;}
.yd4{bottom:105.546667pt;}
.yad{bottom:114.106667pt;}
.y10d{bottom:121.546667pt;}
.yd3{bottom:129.786667pt;}
.y10c{bottom:137.146667pt;}
.yac{bottom:138.426667pt;}
.y5b{bottom:138.826667pt;}
.y87{bottom:140.586667pt;}
.y27{bottom:143.946667pt;}
.y10b{bottom:152.826667pt;}
.yd2{bottom:154.106667pt;}
.yf5{bottom:155.786667pt;}
.y86{bottom:156.266667pt;}
.y26{bottom:159.626667pt;}
.yab{bottom:162.746667pt;}
.y5a{bottom:170.426667pt;}
.y85{bottom:171.866667pt;}
.y25{bottom:175.226667pt;}
.y10a{bottom:176.746667pt;}
.yd1{bottom:178.426667pt;}
.yf4{bottom:187.386667pt;}
.y84{bottom:187.546667pt;}
.y24{bottom:190.826667pt;}
.y57{bottom:201.146667pt;}
.yd0{bottom:202.746667pt;}
.yf3{bottom:203.066667pt;}
.y83{bottom:203.146667pt;}
.y59{bottom:204.746667pt;}
.yaa{bottom:206.026667pt;}
.y23{bottom:206.506667pt;}
.y56{bottom:207.866667pt;}
.y58{bottom:213.066667pt;}
.y109{bottom:217.306667pt;}
.yf2{bottom:218.666667pt;}
.y22{bottom:222.106667pt;}
.y82{bottom:226.746667pt;}
.ycf{bottom:226.986667pt;}
.yf1{bottom:234.266667pt;}
.ya9{bottom:237.626667pt;}
.y21{bottom:237.786667pt;}
.y108{bottom:241.626667pt;}
.y55{bottom:242.906667pt;}
.yf0{bottom:249.946667pt;}
.yce{bottom:251.306667pt;}
.ya8{bottom:253.306667pt;}
.y81{bottom:255.786667pt;}
.y107{bottom:265.946667pt;}
.y20{bottom:269.386667pt;}
.y54{bottom:273.226667pt;}
.yef{bottom:273.546667pt;}
.ya7{bottom:276.906667pt;}
.y53{bottom:277.946667pt;}
.y1f{bottom:284.986667pt;}
.y51{bottom:286.346667pt;}
.y80{bottom:287.386667pt;}
.y106{bottom:290.186667pt;}
.y52{bottom:293.226667pt;}
.ycd{bottom:294.586667pt;}
.yee{bottom:300.186667pt;}
.y1e{bottom:300.666667pt;}
.y7f{bottom:302.986667pt;}
.ya6{bottom:303.546667pt;}
.y105{bottom:314.506667pt;}
.y1d{bottom:316.266667pt;}
.y7e{bottom:318.666667pt;}
.yed{bottom:324.506667pt;}
.ycc{bottom:326.266667pt;}
.ya5{bottom:327.866667pt;}
.y50{bottom:329.706667pt;}
.y1c{bottom:331.946667pt;}
.y7d{bottom:334.266667pt;}
.y104{bottom:338.826667pt;}
.ycb{bottom:341.866667pt;}
.y4f{bottom:345.386667pt;}
.y1b{bottom:347.546667pt;}
.yec{bottom:348.826667pt;}
.ya4{bottom:352.106667pt;}
.yca{bottom:357.466667pt;}
.y7c{bottom:357.866667pt;}
.y103{bottom:363.066667pt;}
.y1a{bottom:363.146667pt;}
.yeb{bottom:373.066667pt;}
.yc9{bottom:373.146667pt;}
.ya3{bottom:376.426667pt;}
.y4e{bottom:377.546667pt;}
.y19{bottom:378.826667pt;}
.yc8{bottom:388.746667pt;}
.y7b{bottom:389.546667pt;}
.y4d{bottom:395.786667pt;}
.y12b{bottom:397.386667pt;}
.ya2{bottom:400.746667pt;}
.y18{bottom:402.746667pt;}
.y7a{bottom:405.146667pt;}
.y102{bottom:406.426667pt;}
.y4c{bottom:411.386667pt;}
.yc7{bottom:412.346667pt;}
.yea{bottom:416.426667pt;}
.y79{bottom:420.853333pt;}
.y12a{bottom:421.093333pt;}
.ya1{bottom:425.093333pt;}
.y4b{bottom:427.013333pt;}
.y78{bottom:436.453333pt;}
.y129{bottom:436.693333pt;}
.y101{bottom:438.053333pt;}
.yc6{bottom:439.093333pt;}
.y4a{bottom:442.693333pt;}
.y17{bottom:445.973333pt;}
.ye9{bottom:448.053333pt;}
.ya0{bottom:449.333333pt;}
.y77{bottom:452.053333pt;}
.y100{bottom:453.653333pt;}
.y49{bottom:458.293333pt;}
.y128{bottom:460.293333pt;}
.yc4{bottom:463.333333pt;}
.ye8{bottom:463.653333pt;}
.y9f{bottom:473.653333pt;}
.y48{bottom:473.973333pt;}
.y76{bottom:475.733333pt;}
.y127{bottom:475.973333pt;}
.yff{bottom:477.333333pt;}
.y16{bottom:478.853333pt;}
.ye7{bottom:487.253333pt;}
.yc3{bottom:487.653333pt;}
.y47{bottom:489.573333pt;}
.y15{bottom:494.453333pt;}
.y9d{bottom:497.973333pt;}
.y126{bottom:499.573333pt;}
.y46{bottom:505.173333pt;}
.yfe{bottom:506.613333pt;}
.y75{bottom:507.333333pt;}
.y14{bottom:510.133333pt;}
.yc2{bottom:511.973333pt;}
.ye6{bottom:513.973333pt;}
.y125{bottom:515.253333pt;}
.y45{bottom:520.853333pt;}
.y74{bottom:523.013333pt;}
.y13{bottom:525.733333pt;}
.yfd{bottom:530.933333pt;}
.ye5{bottom:538.213333pt;}
.y73{bottom:538.613333pt;}
.y124{bottom:538.853333pt;}
.y9c{bottom:541.253333pt;}
.y12{bottom:541.413333pt;}
.y44{bottom:544.773333pt;}
.y72{bottom:554.213333pt;}
.y123{bottom:554.453333pt;}
.yc1{bottom:555.253333pt;}
.y11{bottom:557.013333pt;}
.ye4{bottom:562.533333pt;}
.y122{bottom:570.133333pt;}
.y10{bottom:572.613333pt;}
.y9b{bottom:572.853333pt;}
.y71{bottom:577.893333pt;}
.yfc{bottom:579.493333pt;}
.yc0{bottom:586.853333pt;}
.y43{bottom:588.213333pt;}
.yf{bottom:588.293333pt;}
.y9a{bottom:588.533333pt;}
.y121{bottom:593.733333pt;}
.ybf{bottom:602.533333pt;}
.yfb{bottom:603.813333pt;}
.ye{bottom:603.893333pt;}
.y99{bottom:604.133333pt;}
.y42{bottom:606.453333pt;}
.y70{bottom:609.493333pt;}
.ye3{bottom:611.173333pt;}
.y120{bottom:617.413333pt;}
.yd{bottom:619.573333pt;}
.y41{bottom:622.053333pt;}
.y6f{bottom:625.173333pt;}
.ybe{bottom:626.133333pt;}
.y98{bottom:627.733333pt;}
.yfa{bottom:628.133333pt;}
.y11f{bottom:633.013333pt;}
.yc{bottom:635.173333pt;}
.ye2{bottom:635.413333pt;}
.y40{bottom:637.653333pt;}
.y6e{bottom:640.773333pt;}
.yb{bottom:650.773333pt;}
.yf9{bottom:652.373333pt;}
.y3f{bottom:653.333333pt;}
.y97{bottom:654.373333pt;}
.ybd{bottom:655.093333pt;}
.y6d{bottom:656.373333pt;}
.y11e{bottom:656.613333pt;}
.ye1{bottom:659.733333pt;}
.y3e{bottom:668.933333pt;}
.y11d{bottom:672.293333pt;}
.ya{bottom:674.773333pt;}
.y96{bottom:678.693333pt;}
.y6c{bottom:680.053333pt;}
.ye0{bottom:684.053333pt;}
.ybc{bottom:684.373333pt;}
.y3d{bottom:684.613333pt;}
.yf8{bottom:695.733333pt;}
.y11c{bottom:695.893333pt;}
.y3c{bottom:700.213333pt;}
.y95{bottom:703.013333pt;}
.ybb{bottom:708.693333pt;}
.y11b{bottom:711.573333pt;}
.y6b{bottom:711.653333pt;}
.y3b{bottom:715.813333pt;}
.y9{bottom:716.293333pt;}
.y11a{bottom:727.173333pt;}
.y6a{bottom:727.333333pt;}
.y3a{bottom:731.493333pt;}
.yba{bottom:733.013333pt;}
.y69{bottom:742.933333pt;}
.y39{bottom:747.093333pt;}
.y8{bottom:747.893333pt;}
.y119{bottom:750.773333pt;}
.y94{bottom:751.573333pt;}
.y68{bottom:758.533333pt;}
.yf7{bottom:758.613333pt;}
.ydf{bottom:758.933333pt;}
.y118{bottom:766.453333pt;}
.y67{bottom:774.213333pt;}
.yde{bottom:774.613333pt;}
.y93{bottom:775.893333pt;}
.yb9{bottom:776.293333pt;}
.y38{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y66{bottom:789.813333pt;}
.y117{bottom:790.053333pt;}
.ydd{bottom:790.213333pt;}
.y37{bottom:794.373333pt;}
.yf6{bottom:797.813333pt;}
.y92{bottom:800.213333pt;}
.y116{bottom:805.733333pt;}
.ydc{bottom:805.893333pt;}
.yb8{bottom:807.893333pt;}
.y36{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y65{bottom:813.493333pt;}
.y115{bottom:821.333333pt;}
.yb7{bottom:823.573333pt;}
.y91{bottom:824.533333pt;}
.y35{bottom:825.653333pt;}
.ydb{bottom:829.493333pt;}
.y114{bottom:836.933333pt;}
.yb6{bottom:839.173333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y64{bottom:845.093333pt;}
.y90{bottom:848.773333pt;}
.yb5{bottom:854.853333pt;}
.yda{bottom:856.133333pt;}
.y33{bottom:856.853333pt;}
.y113{bottom:860.613333pt;}
.y63{bottom:860.693333pt;}
.y32{bottom:872.533333pt;}
.y8f{bottom:873.093333pt;}
.y112{bottom:876.213333pt;}
.y62{bottom:876.373333pt;}
.y4{bottom:877.893333pt;}
.yb4{bottom:878.453333pt;}
.yd9{bottom:880.453333pt;}
.y31{bottom:888.133333pt;}
.y111{bottom:891.813333pt;}
.y8d{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y61{bottom:900.000000pt;}
.yd8{bottom:904.720000pt;}
.yb3{bottom:910.080000pt;}
.y110{bottom:915.520000pt;}
.y30{bottom:919.840000pt;}
.y8c{bottom:921.680000pt;}
.yb2{bottom:925.760000pt;}
.yd7{bottom:929.040000pt;}
.y10f{bottom:931.120000pt;}
.y60{bottom:931.920000pt;}
.y2f{bottom:935.440000pt;}
.yb1{bottom:941.360000pt;}
.y8a{bottom:946.000000pt;}
.y2e{bottom:951.040000pt;}
.yd6{bottom:953.360000pt;}
.y10e{bottom:955.040000pt;}
.yb0{bottom:957.040000pt;}
.y2d{bottom:966.720000pt;}
.y88{bottom:970.320000pt;}
.y5f{bottom:971.920000pt;}
.yaf{bottom:972.640000pt;}
.yd5{bottom:977.680000pt;}
.y5e{bottom:978.640000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.yae{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h12{height:23.600000pt;}
.h14{height:23.626667pt;}
.h13{height:23.680000pt;}
.h2{height:26.686562pt;}
.ha{height:26.968750pt;}
.hd{height:31.553437pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.hb{height:49.048750pt;}
.h5{height:49.581562pt;}
.h11{height:53.309531pt;}
.h7{height:54.187500pt;}
.h15{height:54.927899pt;}
.h10{height:55.631875pt;}
.he{height:57.726563pt;}
.h8{height:60.961875pt;}
.hc{height:62.913437pt;}
.h4{height:63.128437pt;}
.hf{height:72.126563pt;}
.h9{height:95.448750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:14.320000pt;}
.w3{width:23.600000pt;}
.w9{width:30.400000pt;}
.we{width:36.640000pt;}
.w1a{width:41.520000pt;}
.wc{width:49.280000pt;}
.w13{width:68.560000pt;}
.w7{width:68.640000pt;}
.w1c{width:71.120000pt;}
.w10{width:78.906667pt;}
.w11{width:86.720000pt;}
.w15{width:102.320000pt;}
.w14{width:108.826667pt;}
.w16{width:108.986667pt;}
.wa{width:109.040000pt;}
.wf{width:109.280000pt;}
.w8{width:110.906667pt;}
.w12{width:114.906667pt;}
.wb{width:117.706667pt;}
.w18{width:119.040000pt;}
.w17{width:126.560000pt;}
.w1b{width:133.146667pt;}
.w5{width:142.426667pt;}
.wd{width:146.026667pt;}
.w4{width:149.120000pt;}
.w1d{width:150.026667pt;}
.w19{width:170.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:3.440000pt;}
.x17{left:6.800000pt;}
.x1{left:60.480000pt;}
.x29{left:98.879988pt;}
.x2{left:180.266655pt;}
.x24{left:233.066667pt;}
.xf{left:238.826667pt;}
.x11{left:263.066667pt;}
.x16{left:267.786667pt;}
.x25{left:270.346667pt;}
.x21{left:278.906667pt;}
.x1a{left:283.946667pt;}
.x18{left:286.906667pt;}
.x1f{left:295.866667pt;}
.x13{left:299.466667pt;}
.x22{left:303.146667pt;}
.x1d{left:307.946667pt;}
.x26{left:309.306667pt;}
.x19{left:311.146667pt;}
.x14{left:314.426667pt;}
.xc{left:319.306655pt;}
.x1b{left:321.226667pt;}
.x9{left:349.546655pt;}
.x27{left:351.546667pt;}
.x28{left:357.866667pt;}
.x4{left:361.386655pt;}
.xd{left:368.826655pt;}
.xe{left:370.026655pt;}
.x15{left:383.706667pt;}
.x20{left:389.386667pt;}
.x1e{left:395.386667pt;}
.xb{left:398.426655pt;}
.x6{left:400.266655pt;}
.x23{left:406.106667pt;}
.x5{left:408.906655pt;}
.x7{left:410.106655pt;}
.x12{left:412.826667pt;}
.xa{left:416.986655pt;}
.x1c{left:431.146667pt;}
.x8{left:432.586655pt;}
.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; }
  