
    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_44ab2ef4ff2bc355e74aa6bc.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_bc7fcd93cdc72ec92d24c662.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_5c4f459c236dcc88050136d4.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_253dea41e050cfa03824f24d.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_1f5542ecedbca471f501e7b6.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_49c99462e785f7102587bf37.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4e58ac581d0418efdd8180fe.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_04aad40247eda70850b959e1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0910a1c25950cd8c9c30b486.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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:ffa;src:url('chunks/assets/font_23fc5026b11c51b70c23772c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e7311c5e81f99765341d3317.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.048960px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.064800px;}
.ls10{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls17{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;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.342200px;}
.wsb{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.177440px;}
.wsd{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._3{margin-left:-3.705025px;}
._1{margin-left:-2.664684px;}
._0{margin-left:-1.110000px;}
._2{width:1.155096px;}
._4{width:2.379409px;}
._d{width:3.520132px;}
._8{width:4.569000px;}
._5{width:5.625120px;}
._b{width:6.699480px;}
._c{width:8.063639px;}
._a{width:9.941405px;}
._9{width:10.941600px;}
._f{width:12.144240px;}
._6{width:15.150000px;}
._7{width:16.372801px;}
._e{width:17.955719px;}
._10{width:19.298884px;}
._1a{width:20.580110px;}
._18{width:25.634880px;}
._19{width:26.705880px;}
._15{width:30.745080px;}
._13{width:36.492840px;}
._14{width:38.657160px;}
._16{width:49.108680px;}
._17{width:50.136120px;}
._12{width:53.867520px;}
._11{width:64.749240px;}
.fc2{color:transparent;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:78.120000px;}
.fs4{font-size:83.880000px;}
.ye9{bottom:-47.700000px;}
.ye8{bottom:-3.600000px;}
.y0{bottom:0.000000px;}
.yae{bottom:3.420000px;}
.yac{bottom:4.500000px;}
.y85{bottom:7.830000px;}
.y87{bottom:7.920000px;}
.y84{bottom:12.330000px;}
.y83{bottom:29.970000px;}
.ye7{bottom:32.670000px;}
.ya3{bottom:37.350000px;}
.y82{bottom:47.520000px;}
.ya2{bottom:59.940000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.ye6{bottom:76.440000px;}
.y1{bottom:101.640000px;}
.y92{bottom:114.300000px;}
.ya8{bottom:114.510000px;}
.y58{bottom:120.270000px;}
.yc5{bottom:122.070000px;}
.ye5{bottom:122.430000px;}
.y91{bottom:131.940000px;}
.yb1{bottom:135.750000px;}
.y57{bottom:137.910000px;}
.y27{bottom:141.600000px;}
.y116{bottom:149.970000px;}
.ya7{bottom:150.060000px;}
.y13f{bottom:151.320000px;}
.y90{bottom:153.990000px;}
.y56{bottom:155.460000px;}
.yc4{bottom:157.620000px;}
.ye4{bottom:158.070000px;}
.y26{bottom:159.240000px;}
.y115{bottom:167.520000px;}
.y13e{bottom:168.870000px;}
.yb0{bottom:171.300000px;}
.y55{bottom:173.100000px;}
.yc3{bottom:175.170000px;}
.y8f{bottom:176.040000px;}
.yf4{bottom:176.790000px;}
.y80{bottom:178.320000px;}
.ya6{bottom:182.280000px;}
.ye3{bottom:193.620000px;}
.y114{bottom:194.070000px;}
.yf3{bottom:194.340000px;}
.y25{bottom:194.790000px;}
.y13d{bottom:195.510000px;}
.y7f{bottom:195.960000px;}
.y8e{bottom:198.180000px;}
.y54{bottom:199.650000px;}
.yaf{bottom:203.520000px;}
.yc2{bottom:207.390000px;}
.y113{bottom:211.710000px;}
.yf2{bottom:211.980000px;}
.y24{bottom:212.340000px;}
.y13c{bottom:213.060000px;}
.y8d{bottom:220.230000px;}
.ye2{bottom:229.260000px;}
.y23{bottom:229.980000px;}
.y7e{bottom:231.420000px;}
.y53{bottom:235.200000px;}
.y112{bottom:238.260000px;}
.y13b{bottom:239.610000px;}
.y8c{bottom:242.370000px;}
.y22{bottom:247.530000px;}
.y7d{bottom:249.870000px;}
.y52{bottom:252.840000px;}
.y111{bottom:255.900000px;}
.y13a{bottom:257.250000px;}
.y8b{bottom:264.420000px;}
.ye1{bottom:264.810000px;}
.y21{bottom:265.170000px;}
.y7c{bottom:268.320000px;}
.y51{bottom:270.390000px;}
.y110{bottom:282.450000px;}
.y20{bottom:282.720000px;}
.y139{bottom:283.800000px;}
.y8a{bottom:286.500000px;}
.y7b{bottom:286.680000px;}
.y50{bottom:296.940000px;}
.y10f{bottom:300.000000px;}
.y1f{bottom:300.270000px;}
.ye0{bottom:300.360000px;}
.y138{bottom:301.440000px;}
.y89{bottom:308.640000px;}
.yd9{bottom:312.510000px;}
.yf1{bottom:317.910000px;}
.y7a{bottom:323.130000px;}
.y10e{bottom:326.640000px;}
.y137{bottom:327.990000px;}
.y4f{bottom:332.580000px;}
.yf0{bottom:335.460000px;}
.y1e{bottom:335.910000px;}
.ydf{bottom:336.000000px;}
.y79{bottom:340.770000px;}
.y10d{bottom:344.190000px;}
.y136{bottom:345.540000px;}
.yd8{bottom:348.060000px;}
.y4e{bottom:350.130000px;}
.yef{bottom:353.010000px;}
.y1d{bottom:353.460000px;}
.y78{bottom:358.320000px;}
.y10c{bottom:361.830000px;}
.y135{bottom:363.180000px;}
.y4d{bottom:367.770000px;}
.yee{bottom:370.650000px;}
.y1c{bottom:371.100000px;}
.yde{bottom:371.550000px;}
.y77{bottom:375.870000px;}
.y10b{bottom:379.380000px;}
.yd7{bottom:383.610000px;}
.y1b{bottom:388.650000px;}
.ydd{bottom:389.190000px;}
.y134{bottom:389.730000px;}
.y4c{bottom:394.320000px;}
.yed{bottom:397.560000px;}
.yd0{bottom:401.070000px;}
.y1a{bottom:406.200000px;}
.y10a{bottom:406.290000px;}
.y133{bottom:407.370000px;}
.y76{bottom:411.510000px;}
.ycf{bottom:418.620000px;}
.yd6{bottom:419.250000px;}
.ydc{bottom:421.410000px;}
.y19{bottom:423.840000px;}
.y75{bottom:429.060000px;}
.y4b{bottom:429.870000px;}
.y132{bottom:433.920000px;}
.yce{bottom:436.260000px;}
.yec{bottom:445.800000px;}
.y74{bottom:446.700000px;}
.y4a{bottom:447.510000px;}
.y18{bottom:450.750000px;}
.ycd{bottom:453.810000px;}
.y109{bottom:454.530000px;}
.yd5{bottom:454.800000px;}
.y131{bottom:460.470000px;}
.y49{bottom:465.060000px;}
.yd4{bottom:472.470000px;}
.yeb{bottom:478.050000px;}
.y130{bottom:478.140000px;}
.ycc{bottom:480.390000px;}
.y108{bottom:481.470000px;}
.y73{bottom:482.280000px;}
.yad{bottom:482.550000px;}
.y48{bottom:482.730000px;}
.y12f{bottom:495.690000px;}
.ya5{bottom:496.140000px;}
.y17{bottom:499.380000px;}
.y72{bottom:499.830000px;}
.y47{bottom:500.280000px;}
.yd3{bottom:504.690000px;}
.yab{bottom:509.190000px;}
.ycb{bottom:516.030000px;}
.y71{bottom:517.470000px;}
.y46{bottom:517.830000px;}
.y107{bottom:518.550000px;}
.y12e{bottom:522.330000px;}
.ya1{bottom:529.170000px;}
.yca{bottom:533.580000px;}
.y70{bottom:535.020000px;}
.y45{bottom:535.470000px;}
.y16{bottom:536.370000px;}
.y12d{bottom:539.880000px;}
.yc1{bottom:541.590000px;}
.y106{bottom:545.460000px;}
.y6f{bottom:552.660000px;}
.y44{bottom:553.020000px;}
.y15{bottom:553.920000px;}
.ya4{bottom:556.440000px;}
.y12c{bottom:557.430000px;}
.yc0{bottom:559.140000px;}
.yc9{bottom:565.800000px;}
.y6e{bottom:570.210000px;}
.y14{bottom:571.560000px;}
.ybf{bottom:576.780000px;}
.y43{bottom:579.660000px;}
.y105{bottom:582.450000px;}
.ya0{bottom:583.800000px;}
.y12b{bottom:584.070000px;}
.y6d{bottom:587.760000px;}
.y13{bottom:589.110000px;}
.y104{bottom:600.000000px;}
.y12a{bottom:601.620000px;}
.y12{bottom:606.750000px;}
.y9f{bottom:611.160000px;}
.ybe{bottom:612.330000px;}
.y42{bottom:615.570000px;}
.y6c{bottom:623.400000px;}
.y11{bottom:624.300000px;}
.y103{bottom:626.910000px;}
.y129{bottom:628.260000px;}
.ybd{bottom:629.880000px;}
.y6b{bottom:640.950000px;}
.y10{bottom:641.850000px;}
.y128{bottom:645.810000px;}
.ybc{bottom:647.520000px;}
.y6a{bottom:658.590000px;}
.yf{bottom:659.490000px;}
.y9e{bottom:659.850000px;}
.y41{bottom:663.810000px;}
.y102{bottom:664.260000px;}
.ybb{bottom:665.070000px;}
.y127{bottom:672.360000px;}
.y69{bottom:676.140000px;}
.ye{bottom:677.040000px;}
.y40{bottom:681.360000px;}
.yba{bottom:682.710000px;}
.y126{bottom:690.000000px;}
.y68{bottom:693.690000px;}
.yd{bottom:694.680000px;}
.y3f{bottom:699.000000px;}
.y9d{bottom:706.290000px;}
.y125{bottom:707.550000px;}
.yc{bottom:712.230000px;}
.y101{bottom:712.590000px;}
.y3e{bottom:716.550000px;}
.yb9{bottom:718.260000px;}
.y88{bottom:723.840000px;}
.y67{bottom:729.330000px;}
.y100{bottom:730.140000px;}
.y124{bottom:734.190000px;}
.yb8{bottom:735.810000px;}
.yb{bottom:739.140000px;}
.y66{bottom:746.880000px;}
.yff{bottom:747.690000px;}
.y9c{bottom:751.200000px;}
.y123{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.yb7{bottom:753.450000px;}
.y65{bottom:764.520000px;}
.yfe{bottom:765.330000px;}
.y122{bottom:769.290000px;}
.y3c{bottom:769.740000px;}
.yb6{bottom:771.000000px;}
.ydb{bottom:778.020000px;}
.y9b{bottom:778.560000px;}
.y3b{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y64{bottom:791.070000px;}
.y121{bottom:795.930000px;}
.yb5{bottom:797.550000px;}
.yd2{bottom:800.520000px;}
.yfd{bottom:800.880000px;}
.y3a{bottom:804.930000px;}
.y9a{bottom:805.920000px;}
.y63{bottom:808.620000px;}
.yda{bottom:810.240000px;}
.y120{bottom:813.480000px;}
.yea{bottom:814.470000px;}
.yfc{bottom:818.520000px;}
.y39{bottom:822.480000px;}
.y9{bottom:823.200000px;}
.yb4{bottom:830.220000px;}
.y11f{bottom:831.030000px;}
.yaa{bottom:832.020000px;}
.yd1{bottom:832.740000px;}
.y99{bottom:833.190000px;}
.yfb{bottom:836.070000px;}
.y62{bottom:844.530000px;}
.yc8{bottom:850.470000px;}
.yfa{bottom:853.620000px;}
.y11e{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y98{bottom:860.550000px;}
.ya9{bottom:864.240000px;}
.yb3{bottom:865.770000px;}
.yc7{bottom:868.020000px;}
.yf9{bottom:871.260000px;}
.y11d{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.y97{bottom:887.910000px;}
.y61{bottom:892.860000px;}
.y36{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.yb2{bottom:897.990000px;}
.yf8{bottom:898.170000px;}
.yc6{bottom:900.240000px;}
.y11c{bottom:901.860000px;}
.y60{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y96{bottom:915.180000px;}
.y11b{bottom:919.410000px;}
.y5f{bottom:927.960000px;}
.y34{bottom:928.410000px;}
.y95{bottom:942.540000px;}
.y5e{bottom:945.600000px;}
.y33{bottom:945.960000px;}
.yf7{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y11a{bottom:963.600000px;}
.yf6{bottom:963.960000px;}
.y94{bottom:969.900000px;}
.y5d{bottom:972.150000px;}
.y141{bottom:972.600000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y119{bottom:990.150000px;}
.y93{bottom:997.260000px;}
.y31{bottom:999.150000px;}
.y5c{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.y86{bottom:1024.560000px;}
.y5b{bottom:1025.370000px;}
.y2f{bottom:1034.370000px;}
.y5a{bottom:1042.920000px;}
.y81{bottom:1051.920000px;}
.y140{bottom:1060.920000px;}
.y59{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y118{bottom:1078.560000px;}
.yf5{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y117{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h10{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:50.667539px;}
.h16{height:50.850000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h15{height:59.973223px;}
.h7{height:60.960938px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:66.240000px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.h12{height:74.953125px;}
.h17{height:80.295050px;}
.h13{height:81.270000px;}
.h14{height:301.500000px;}
.hf{height:327.360000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:64.800000px;}
.wa{width:78.060000px;}
.w3{width:89.730000px;}
.w7{width:90.720000px;}
.we{width:96.840000px;}
.w8{width:108.450000px;}
.w6{width:115.410000px;}
.w4{width:126.480000px;}
.wd{width:153.990000px;}
.w5{width:155.610000px;}
.wc{width:173.010000px;}
.wb{width:182.880000px;}
.wf{width:360.480000px;}
.w10{width:396.480000px;}
.w12{width:501.000000px;}
.w11{width:756.960000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x30{left:10.830000px;}
.x1{left:68.040000px;}
.x1f{left:74.879987px;}
.x32{left:79.739987px;}
.x25{left:85.319987px;}
.x4{left:95.039987px;}
.x22{left:98.099987px;}
.xc{left:102.690000px;}
.x36{left:111.239987px;}
.x2c{left:156.599987px;}
.x6{left:159.210000px;}
.x2f{left:161.910000px;}
.x20{left:166.799987px;}
.x28{left:175.799987px;}
.x35{left:179.669987px;}
.xd{left:181.560000px;}
.x18{left:186.420000px;}
.x2a{left:199.379987px;}
.x2{left:201.539987px;}
.x2e{left:273.359987px;}
.x26{left:281.999987px;}
.x7{left:286.500000px;}
.x23{left:289.919987px;}
.x1d{left:310.799987px;}
.x12{left:313.229987px;}
.x33{left:319.709987px;}
.x14{left:329.969987px;}
.x1a{left:335.729987px;}
.x15{left:352.380000px;}
.xe{left:365.160000px;}
.x17{left:388.380000px;}
.x16{left:428.610000px;}
.x8{left:442.830000px;}
.x1b{left:446.609987px;}
.xf{left:538.980000px;}
.x9{left:558.960000px;}
.x11{left:590.639987px;}
.x13{left:624.389987px;}
.x19{left:645.809987px;}
.x1c{left:649.139987px;}
.xa{left:650.490000px;}
.x29{left:657.059987px;}
.x27{left:661.559987px;}
.x34{left:675.059987px;}
.x2b{left:676.139987px;}
.x1e{left:684.059987px;}
.x31{left:685.139987px;}
.x2d{left:687.389987px;}
.x10{left:693.690000px;}
.x24{left:718.889987px;}
.xb{left:759.660000px;}
.x21{left:769.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.043520pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.057600pt;}
.ls10{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.859733pt;}
.wsb{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.713280pt;}
.wsd{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._3{margin-left:-3.293356pt;}
._1{margin-left:-2.368608pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.026752pt;}
._4{width:2.115031pt;}
._d{width:3.129007pt;}
._8{width:4.061333pt;}
._5{width:5.000106pt;}
._b{width:5.955094pt;}
._c{width:7.167679pt;}
._a{width:8.836805pt;}
._9{width:9.725866pt;}
._f{width:10.794880pt;}
._6{width:13.466666pt;}
._7{width:14.553601pt;}
._e{width:15.960639pt;}
._10{width:17.154563pt;}
._1a{width:18.293431pt;}
._18{width:22.786560pt;}
._19{width:23.738560pt;}
._15{width:27.328960pt;}
._13{width:32.438080pt;}
._14{width:34.361920pt;}
._16{width:43.652160pt;}
._17{width:44.565440pt;}
._12{width:47.882240pt;}
._11{width:57.554880pt;}
.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;}
.fs8{font-size:69.440000pt;}
.fs4{font-size:74.560000pt;}
.ye9{bottom:-42.400000pt;}
.ye8{bottom:-3.200000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:3.040000pt;}
.yac{bottom:4.000000pt;}
.y85{bottom:6.960000pt;}
.y87{bottom:7.040000pt;}
.y84{bottom:10.960000pt;}
.y83{bottom:26.640000pt;}
.ye7{bottom:29.040000pt;}
.ya3{bottom:33.200000pt;}
.y82{bottom:42.240000pt;}
.ya2{bottom:53.280000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.ye6{bottom:67.946667pt;}
.y1{bottom:90.346667pt;}
.y92{bottom:101.600000pt;}
.ya8{bottom:101.786667pt;}
.y58{bottom:106.906667pt;}
.yc5{bottom:108.506667pt;}
.ye5{bottom:108.826667pt;}
.y91{bottom:117.280000pt;}
.yb1{bottom:120.666667pt;}
.y57{bottom:122.586667pt;}
.y27{bottom:125.866667pt;}
.y116{bottom:133.306667pt;}
.ya7{bottom:133.386667pt;}
.y13f{bottom:134.506667pt;}
.y90{bottom:136.880000pt;}
.y56{bottom:138.186667pt;}
.yc4{bottom:140.106667pt;}
.ye4{bottom:140.506667pt;}
.y26{bottom:141.546667pt;}
.y115{bottom:148.906667pt;}
.y13e{bottom:150.106667pt;}
.yb0{bottom:152.266667pt;}
.y55{bottom:153.866667pt;}
.yc3{bottom:155.706667pt;}
.y8f{bottom:156.480000pt;}
.yf4{bottom:157.146667pt;}
.y80{bottom:158.506667pt;}
.ya6{bottom:162.026667pt;}
.ye3{bottom:172.106667pt;}
.y114{bottom:172.506667pt;}
.yf3{bottom:172.746667pt;}
.y25{bottom:173.146667pt;}
.y13d{bottom:173.786667pt;}
.y7f{bottom:174.186667pt;}
.y8e{bottom:176.160000pt;}
.y54{bottom:177.466667pt;}
.yaf{bottom:180.906667pt;}
.yc2{bottom:184.346667pt;}
.y113{bottom:188.186667pt;}
.yf2{bottom:188.426667pt;}
.y24{bottom:188.746667pt;}
.y13c{bottom:189.386667pt;}
.y8d{bottom:195.760000pt;}
.ye2{bottom:203.786667pt;}
.y23{bottom:204.426667pt;}
.y7e{bottom:205.706667pt;}
.y53{bottom:209.066667pt;}
.y112{bottom:211.786667pt;}
.y13b{bottom:212.986667pt;}
.y8c{bottom:215.440000pt;}
.y22{bottom:220.026667pt;}
.y7d{bottom:222.106667pt;}
.y52{bottom:224.746667pt;}
.y111{bottom:227.466667pt;}
.y13a{bottom:228.666667pt;}
.y8b{bottom:235.040000pt;}
.ye1{bottom:235.386667pt;}
.y21{bottom:235.706667pt;}
.y7c{bottom:238.506667pt;}
.y51{bottom:240.346667pt;}
.y110{bottom:251.066667pt;}
.y20{bottom:251.306667pt;}
.y139{bottom:252.266667pt;}
.y8a{bottom:254.666667pt;}
.y7b{bottom:254.826667pt;}
.y50{bottom:263.946667pt;}
.y10f{bottom:266.666667pt;}
.y1f{bottom:266.906667pt;}
.ye0{bottom:266.986667pt;}
.y138{bottom:267.946667pt;}
.y89{bottom:274.346667pt;}
.yd9{bottom:277.786667pt;}
.yf1{bottom:282.586667pt;}
.y7a{bottom:287.226667pt;}
.y10e{bottom:290.346667pt;}
.y137{bottom:291.546667pt;}
.y4f{bottom:295.626667pt;}
.yf0{bottom:298.186667pt;}
.y1e{bottom:298.586667pt;}
.ydf{bottom:298.666667pt;}
.y79{bottom:302.906667pt;}
.y10d{bottom:305.946667pt;}
.y136{bottom:307.146667pt;}
.yd8{bottom:309.386667pt;}
.y4e{bottom:311.226667pt;}
.yef{bottom:313.786667pt;}
.y1d{bottom:314.186667pt;}
.y78{bottom:318.506667pt;}
.y10c{bottom:321.626667pt;}
.y135{bottom:322.826667pt;}
.y4d{bottom:326.906667pt;}
.yee{bottom:329.466667pt;}
.y1c{bottom:329.866667pt;}
.yde{bottom:330.266667pt;}
.y77{bottom:334.106667pt;}
.y10b{bottom:337.226667pt;}
.yd7{bottom:340.986667pt;}
.y1b{bottom:345.466667pt;}
.ydd{bottom:345.946667pt;}
.y134{bottom:346.426667pt;}
.y4c{bottom:350.506667pt;}
.yed{bottom:353.386667pt;}
.yd0{bottom:356.506667pt;}
.y1a{bottom:361.066667pt;}
.y10a{bottom:361.146667pt;}
.y133{bottom:362.106667pt;}
.y76{bottom:365.786667pt;}
.ycf{bottom:372.106667pt;}
.yd6{bottom:372.666667pt;}
.ydc{bottom:374.586667pt;}
.y19{bottom:376.746667pt;}
.y75{bottom:381.386667pt;}
.y4b{bottom:382.106667pt;}
.y132{bottom:385.706667pt;}
.yce{bottom:387.786667pt;}
.yec{bottom:396.266667pt;}
.y74{bottom:397.066667pt;}
.y4a{bottom:397.786667pt;}
.y18{bottom:400.666667pt;}
.ycd{bottom:403.386667pt;}
.y109{bottom:404.026667pt;}
.yd5{bottom:404.266667pt;}
.y131{bottom:409.306667pt;}
.y49{bottom:413.386667pt;}
.yd4{bottom:419.973333pt;}
.yeb{bottom:424.933333pt;}
.y130{bottom:425.013333pt;}
.ycc{bottom:427.013333pt;}
.y108{bottom:427.973333pt;}
.y73{bottom:428.693333pt;}
.yad{bottom:428.933333pt;}
.y48{bottom:429.093333pt;}
.y12f{bottom:440.613333pt;}
.ya5{bottom:441.013333pt;}
.y17{bottom:443.893333pt;}
.y72{bottom:444.293333pt;}
.y47{bottom:444.693333pt;}
.yd3{bottom:448.613333pt;}
.yab{bottom:452.613333pt;}
.ycb{bottom:458.693333pt;}
.y71{bottom:459.973333pt;}
.y46{bottom:460.293333pt;}
.y107{bottom:460.933333pt;}
.y12e{bottom:464.293333pt;}
.ya1{bottom:470.373333pt;}
.yca{bottom:474.293333pt;}
.y70{bottom:475.573333pt;}
.y45{bottom:475.973333pt;}
.y16{bottom:476.773333pt;}
.y12d{bottom:479.893333pt;}
.yc1{bottom:481.413333pt;}
.y106{bottom:484.853333pt;}
.y6f{bottom:491.253333pt;}
.y44{bottom:491.573333pt;}
.y15{bottom:492.373333pt;}
.ya4{bottom:494.613333pt;}
.y12c{bottom:495.493333pt;}
.yc0{bottom:497.013333pt;}
.yc9{bottom:502.933333pt;}
.y6e{bottom:506.853333pt;}
.y14{bottom:508.053333pt;}
.ybf{bottom:512.693333pt;}
.y43{bottom:515.253333pt;}
.y105{bottom:517.733333pt;}
.ya0{bottom:518.933333pt;}
.y12b{bottom:519.173333pt;}
.y6d{bottom:522.453333pt;}
.y13{bottom:523.653333pt;}
.y104{bottom:533.333333pt;}
.y12a{bottom:534.773333pt;}
.y12{bottom:539.333333pt;}
.y9f{bottom:543.253333pt;}
.ybe{bottom:544.293333pt;}
.y42{bottom:547.173333pt;}
.y6c{bottom:554.133333pt;}
.y11{bottom:554.933333pt;}
.y103{bottom:557.253333pt;}
.y129{bottom:558.453333pt;}
.ybd{bottom:559.893333pt;}
.y6b{bottom:569.733333pt;}
.y10{bottom:570.533333pt;}
.y128{bottom:574.053333pt;}
.ybc{bottom:575.573333pt;}
.y6a{bottom:585.413333pt;}
.yf{bottom:586.213333pt;}
.y9e{bottom:586.533333pt;}
.y41{bottom:590.053333pt;}
.y102{bottom:590.453333pt;}
.ybb{bottom:591.173333pt;}
.y127{bottom:597.653333pt;}
.y69{bottom:601.013333pt;}
.ye{bottom:601.813333pt;}
.y40{bottom:605.653333pt;}
.yba{bottom:606.853333pt;}
.y126{bottom:613.333333pt;}
.y68{bottom:616.613333pt;}
.yd{bottom:617.493333pt;}
.y3f{bottom:621.333333pt;}
.y9d{bottom:627.813333pt;}
.y125{bottom:628.933333pt;}
.yc{bottom:633.093333pt;}
.y101{bottom:633.413333pt;}
.y3e{bottom:636.933333pt;}
.yb9{bottom:638.453333pt;}
.y88{bottom:643.413333pt;}
.y67{bottom:648.293333pt;}
.y100{bottom:649.013333pt;}
.y124{bottom:652.613333pt;}
.yb8{bottom:654.053333pt;}
.yb{bottom:657.013333pt;}
.y66{bottom:663.893333pt;}
.yff{bottom:664.613333pt;}
.y9c{bottom:667.733333pt;}
.y123{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.yb7{bottom:669.733333pt;}
.y65{bottom:679.573333pt;}
.yfe{bottom:680.293333pt;}
.y122{bottom:683.813333pt;}
.y3c{bottom:684.213333pt;}
.yb6{bottom:685.333333pt;}
.ydb{bottom:691.573333pt;}
.y9b{bottom:692.053333pt;}
.y3b{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y64{bottom:703.173333pt;}
.y121{bottom:707.493333pt;}
.yb5{bottom:708.933333pt;}
.yd2{bottom:711.573333pt;}
.yfd{bottom:711.893333pt;}
.y3a{bottom:715.493333pt;}
.y9a{bottom:716.373333pt;}
.y63{bottom:718.773333pt;}
.yda{bottom:720.213333pt;}
.y120{bottom:723.093333pt;}
.yea{bottom:723.973333pt;}
.yfc{bottom:727.573333pt;}
.y39{bottom:731.093333pt;}
.y9{bottom:731.733333pt;}
.yb4{bottom:737.973333pt;}
.y11f{bottom:738.693333pt;}
.yaa{bottom:739.573333pt;}
.yd1{bottom:740.213333pt;}
.y99{bottom:740.613333pt;}
.yfb{bottom:743.173333pt;}
.y62{bottom:750.693333pt;}
.yc8{bottom:755.973333pt;}
.yfa{bottom:758.773333pt;}
.y11e{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y98{bottom:764.933333pt;}
.ya9{bottom:768.213333pt;}
.yb3{bottom:769.573333pt;}
.yc7{bottom:771.573333pt;}
.yf9{bottom:774.453333pt;}
.y11d{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.y97{bottom:789.253333pt;}
.y61{bottom:793.653333pt;}
.y36{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.yb2{bottom:798.213333pt;}
.yf8{bottom:798.373333pt;}
.yc6{bottom:800.213333pt;}
.y11c{bottom:801.653333pt;}
.y60{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y96{bottom:813.493333pt;}
.y11b{bottom:817.253333pt;}
.y5f{bottom:824.853333pt;}
.y34{bottom:825.253333pt;}
.y95{bottom:837.813333pt;}
.y5e{bottom:840.533333pt;}
.y33{bottom:840.853333pt;}
.yf7{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y11a{bottom:856.533333pt;}
.yf6{bottom:856.853333pt;}
.y94{bottom:862.133333pt;}
.y5d{bottom:864.133333pt;}
.y141{bottom:864.533333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y119{bottom:880.133333pt;}
.y93{bottom:886.453333pt;}
.y31{bottom:888.133333pt;}
.y5c{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.y86{bottom:910.720000pt;}
.y5b{bottom:911.440000pt;}
.y2f{bottom:919.440000pt;}
.y5a{bottom:927.040000pt;}
.y81{bottom:935.040000pt;}
.y140{bottom:943.040000pt;}
.y59{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y118{bottom:958.720000pt;}
.yf5{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y117{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h10{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:45.037812pt;}
.h16{height:45.200000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h15{height:53.309531pt;}
.h7{height:54.187500pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:58.880000pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.h12{height:66.625000pt;}
.h17{height:71.373378pt;}
.h13{height:72.240000pt;}
.h14{height:268.000000pt;}
.hf{height:290.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:57.600000pt;}
.wa{width:69.386667pt;}
.w3{width:79.760000pt;}
.w7{width:80.640000pt;}
.we{width:86.080000pt;}
.w8{width:96.400000pt;}
.w6{width:102.586667pt;}
.w4{width:112.426667pt;}
.wd{width:136.880000pt;}
.w5{width:138.320000pt;}
.wc{width:153.786667pt;}
.wb{width:162.560000pt;}
.wf{width:320.426667pt;}
.w10{width:352.426667pt;}
.w12{width:445.333333pt;}
.w11{width:672.853333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x30{left:9.626667pt;}
.x1{left:60.480000pt;}
.x1f{left:66.559988pt;}
.x32{left:70.879988pt;}
.x25{left:75.839988pt;}
.x4{left:84.479988pt;}
.x22{left:87.199988pt;}
.xc{left:91.280000pt;}
.x36{left:98.879988pt;}
.x2c{left:139.199988pt;}
.x6{left:141.520000pt;}
.x2f{left:143.920000pt;}
.x20{left:148.266655pt;}
.x28{left:156.266655pt;}
.x35{left:159.706655pt;}
.xd{left:161.386667pt;}
.x18{left:165.706667pt;}
.x2a{left:177.226655pt;}
.x2{left:179.146655pt;}
.x2e{left:242.986655pt;}
.x26{left:250.666655pt;}
.x7{left:254.666667pt;}
.x23{left:257.706655pt;}
.x1d{left:276.266655pt;}
.x12{left:278.426655pt;}
.x33{left:284.186655pt;}
.x14{left:293.306655pt;}
.x1a{left:298.426655pt;}
.x15{left:313.226667pt;}
.xe{left:324.586667pt;}
.x17{left:345.226667pt;}
.x16{left:380.986667pt;}
.x8{left:393.626667pt;}
.x1b{left:396.986655pt;}
.xf{left:479.093333pt;}
.x9{left:496.853333pt;}
.x11{left:525.013322pt;}
.x13{left:555.013322pt;}
.x19{left:574.053322pt;}
.x1c{left:577.013322pt;}
.xa{left:578.213333pt;}
.x29{left:584.053322pt;}
.x27{left:588.053322pt;}
.x34{left:600.053322pt;}
.x2b{left:601.013322pt;}
.x1e{left:608.053322pt;}
.x31{left:609.013322pt;}
.x2d{left:611.013322pt;}
.x10{left:616.613333pt;}
.x24{left:639.013322pt;}
.xb{left:675.253333pt;}
.x21{left:684.053322pt;}
.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; }
  